blob: 0db5eaf54560b3ec1d8083ee8e69d8a1057a045c [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{
14 int n, devfn;
Yinghai Lu871d5f82008-02-19 03:20:09 -080015 long node;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
Andi Kleen9dd1e9eb2008-08-11 23:11:05 +020017 if (pcibios_last_bus <= 0 || pcibios_last_bus > 0xff)
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 return;
19 DBG("PCI: Peer bridge fixup\n");
20
21 for (n=0; n <= pcibios_last_bus; n++) {
22 u32 l;
23 if (pci_find_bus(0, n))
24 continue;
Yinghai Lu871d5f82008-02-19 03:20:09 -080025 node = get_mp_bus_to_node(n);
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 for (devfn = 0; devfn < 256; devfn += 8) {
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -050027 if (!raw_pci_read(0, n, devfn, PCI_VENDOR_ID, 2, &l) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 l != 0x0000 && l != 0xffff) {
29 DBG("Found device at %02x:%02x [%04x]\n", n, devfn, l);
30 printk(KERN_INFO "PCI: Discovered peer bus %02x\n", n);
Yinghai Lu871d5f82008-02-19 03:20:09 -080031 pci_scan_bus_on_node(n, &pci_root_ops, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 break;
33 }
34 }
35 }
36}
37
Thomas Gleixnerb72d0db2009-08-29 16:24:51 +020038int __init pci_legacy_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039{
40 if (!raw_pci_ops) {
41 printk("PCI: System does not support PCI\n");
42 return 0;
43 }
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 printk("PCI: Probing PCI hardware\n");
46 pci_root_bus = pcibios_scan_root(0);
Rajesh Shahc431ada2005-04-28 00:25:45 -070047 if (pci_root_bus)
48 pci_bus_add_devices(pci_root_bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 return 0;
51}
52
Robert Richter8dd779b2008-07-02 22:50:29 +020053int __init pci_subsys_init(void)
54{
Thomas Gleixnerb72d0db2009-08-29 16:24:51 +020055 /*
56 * The init function returns an non zero value when
57 * pci_legacy_init should be invoked.
58 */
59 if (x86_init.pci.init())
60 pci_legacy_init();
61
Yinghai Lue42d1fe2009-03-25 13:26:13 -070062 pcibios_fixup_peer_bridges();
Thomas Gleixnerab3b3792009-08-29 17:47:33 +020063 x86_init.pci.init_irq();
Robert Richter8dd779b2008-07-02 22:50:29 +020064 pcibios_init();
Robert Richter3a62ed72008-07-10 18:58:25 +020065
66 return 0;
Robert Richter8dd779b2008-07-02 22:50:29 +020067}
68subsys_initcall(pci_subsys_init);