blob: 8d460eaf524f1d6f1a54b3853de221e7b38d9e6d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * legacy.c - traditional, old school PCI bus probing
3 */
4#include <linux/init.h>
5#include <linux/pci.h>
Jaswinder Singh Rajput82487712008-12-27 18:32:28 +05306#include <asm/pci_x86.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007
8/*
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.
11 */
12static void __devinit pcibios_fixup_peer_bridges(void)
13{
Aristeu Rozanski5707b242009-07-09 22:21:13 -030014 int n;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
Andi Kleen9dd1e9eb2008-08-11 23:11:05 +020016 if (pcibios_last_bus <= 0 || pcibios_last_bus > 0xff)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 return;
18 DBG("PCI: Peer bridge fixup\n");
19
Aristeu Rozanski5707b242009-07-09 22:21:13 -030020 for (n=0; n <= pcibios_last_bus; n++)
21 pcibios_scan_specific_bus(n);
Linus Torvalds1da177e2005-04-16 15:20:36 -070022}
23
Thomas Gleixnerb72d0db2009-08-29 16:24:51 +020024int __init pci_legacy_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070025{
26 if (!raw_pci_ops) {
27 printk("PCI: System does not support PCI\n");
28 return 0;
29 }
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 printk("PCI: Probing PCI hardware\n");
32 pci_root_bus = pcibios_scan_root(0);
Rajesh Shahc431ada2005-04-28 00:25:45 -070033 if (pci_root_bus)
34 pci_bus_add_devices(pci_root_bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 return 0;
37}
Aristeu Rozanski5707b242009-07-09 22:21:13 -030038
39void pcibios_scan_specific_bus(int busn)
40{
41 int devfn;
42 long node;
43 u32 l;
44
45 if (pci_find_bus(0, busn))
46 return;
47
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);
55 return;
56 }
57 }
58}
Mauro Carvalho Chehabd1fd4fb2009-07-10 18:39:53 -030059EXPORT_SYMBOL_GPL(pcibios_scan_specific_bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Robert Richter8dd779b2008-07-02 22:50:29 +020061int __init pci_subsys_init(void)
62{
Thomas Gleixnerb72d0db2009-08-29 16:24:51 +020063 /*
64 * The init function returns an non zero value when
65 * pci_legacy_init should be invoked.
66 */
67 if (x86_init.pci.init())
68 pci_legacy_init();
69
Yinghai Lue42d1fe2009-03-25 13:26:13 -070070 pcibios_fixup_peer_bridges();
Thomas Gleixnerab3b3792009-08-29 17:47:33 +020071 x86_init.pci.init_irq();
Robert Richter8dd779b2008-07-02 22:50:29 +020072 pcibios_init();
Robert Richter3a62ed72008-07-10 18:58:25 +020073
74 return 0;
Robert Richter8dd779b2008-07-02 22:50:29 +020075}
76subsys_initcall(pci_subsys_init);