2 * legacy.c - traditional, old school PCI bus probing
4 #include <linux/init.h>
6 #include <asm/pci_x86.h>
9 * Discover remaining PCI buses in case there are peer host bridges.
10 * We use the number of last PCI bus provided by the PCI BIOS.
12 static void __devinit
pcibios_fixup_peer_bridges(void)
16 if (pcibios_last_bus
<= 0 || pcibios_last_bus
> 0xff)
18 DBG("PCI: Peer bridge fixup\n");
20 for (n
=0; n
<= pcibios_last_bus
; n
++)
21 pcibios_scan_specific_bus(n
);
24 int __init
pci_legacy_init(void)
27 printk("PCI: System does not support PCI\n");
31 printk("PCI: Probing PCI hardware\n");
32 pci_root_bus
= pcibios_scan_root(0);
34 pci_bus_add_devices(pci_root_bus
);
39 void __devinit
pcibios_scan_specific_bus(int busn
)
45 if (pci_find_bus(0, busn
))
48 node
= get_mp_bus_to_node(busn
);
49 for (devfn
= 0; devfn
< 256; devfn
+= 8) {
50 if (!raw_pci_read(0, busn
, devfn
, PCI_VENDOR_ID
, 2, &l
) &&
51 l
!= 0x0000 && l
!= 0xffff) {
52 DBG("Found device at %02x:%02x [%04x]\n", busn
, devfn
, l
);
53 printk(KERN_INFO
"PCI: Discovered peer bus %02x\n", busn
);
54 pci_scan_bus_on_node(busn
, &pci_root_ops
, node
);
59 EXPORT_SYMBOL_GPL(pcibios_scan_specific_bus
);
61 int __init
pci_subsys_init(void)
64 * The init function returns an non zero value when
65 * pci_legacy_init should be invoked.
67 if (x86_init
.pci
.init())
70 pcibios_fixup_peer_bridges();
71 x86_init
.pci
.init_irq();
76 subsys_initcall(pci_subsys_init
);