lkml.org 
[lkml]   [2004]   [Feb]   [12]   [last100]   RSS Feed
Views: [more markup]  [less markup]  [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Subject[PATCH] ppc64: fix OF <-> PCI linkage for G5 AGP bus
FromBenjamin Herrenschmidt <>
DateThu, 12 Feb 2004 19:24:10 +1100
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 */

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2005-03-22 14:00    [from the cache]
©2003-2008