* [PATCH] ppc64: fix OF <-> PCI linkage for G5 AGP bus
@ 2004-02-12 8:24 Benjamin Herrenschmidt
0 siblings, 0 replies; only message in thread
From: Benjamin Herrenschmidt @ 2004-02-12 8:24 UTC (permalink / raw)
To: Linus Torvalds, Andrew Morton; +Cc: Linux Kernel list
Hi Linus !
This patch fixes the failure of radeonfb to retreive the clock
and EDID data from Open Firmware. The linkage between the PCI device
and the OF node couldn't be established properly at boot because of
the renumbering we do to the G5's AGP bus.
Please apply,
Ben.
===== arch/ppc64/kernel/pmac_pci.c 1.1 vs edited =====
--- 1.1/arch/ppc64/kernel/pmac_pci.c Thu Feb 12 14:47:58 2004
+++ edited/arch/ppc64/kernel/pmac_pci.c Thu Feb 12 19:18:24 2004
@@ -709,10 +709,24 @@
* does it only for childs of the host bridges
*/
pmac_fixup_phb_resources();
-
+
/* Setup the linkage between OF nodes and PHBs */
pci_devs_phb_init();
+ /* We have to deal with the renumbering we do for the AGP bus and update
+ * the device-node accordingly
+ */
+ if (u3_agp) {
+ struct device_node *np = (struct device_node *)u3_agp->arch_data;
+ np->busno = 0xf0;
+ np = np->child;
+ while(np) {
+ np->busno = 0xf0;
+ np = np->sibling;
+ }
+ }
+
+ /* Check HyperTransport link speed */
pmac_check_ht_link();
/* Tell pci.c to use the common resource allocation mecanism */
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2004-02-12 8:27 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-02-12 8:24 [PATCH] ppc64: fix OF <-> PCI linkage for G5 AGP bus Benjamin Herrenschmidt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®