Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * legacy.c - traditional, old school PCI bus probing |
| 3 | */ |
| 4 | #include <linux/init.h> |
| 5 | #include <linux/pci.h> |
Jaswinder Singh Rajput | 8248771 | 2008-12-27 18:32:28 +0530 | [diff] [blame] | 6 | #include <asm/pci_x86.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | |
| 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 | */ |
| 12 | static void __devinit pcibios_fixup_peer_bridges(void) |
| 13 | { |
| 14 | int n, devfn; |
Yinghai Lu | 871d5f8 | 2008-02-19 03:20:09 -0800 | [diff] [blame] | 15 | long node; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | |
Andi Kleen | 9dd1e9eb | 2008-08-11 23:11:05 +0200 | [diff] [blame] | 17 | if (pcibios_last_bus <= 0 || pcibios_last_bus > 0xff) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | 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 Lu | 871d5f8 | 2008-02-19 03:20:09 -0800 | [diff] [blame] | 25 | node = get_mp_bus_to_node(n); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | for (devfn = 0; devfn < 256; devfn += 8) { |
Matthew Wilcox | b6ce068 | 2008-02-10 09:45:28 -0500 | [diff] [blame] | 27 | if (!raw_pci_read(0, n, devfn, PCI_VENDOR_ID, 2, &l) && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | 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 Lu | 871d5f8 | 2008-02-19 03:20:09 -0800 | [diff] [blame] | 31 | pci_scan_bus_on_node(n, &pci_root_ops, node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | break; |
| 33 | } |
| 34 | } |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | static int __init pci_legacy_init(void) |
| 39 | { |
| 40 | if (!raw_pci_ops) { |
| 41 | printk("PCI: System does not support PCI\n"); |
| 42 | return 0; |
| 43 | } |
| 44 | |
| 45 | if (pcibios_scanned++) |
| 46 | return 0; |
| 47 | |
| 48 | printk("PCI: Probing PCI hardware\n"); |
| 49 | pci_root_bus = pcibios_scan_root(0); |
Rajesh Shah | c431ada | 2005-04-28 00:25:45 -0700 | [diff] [blame] | 50 | if (pci_root_bus) |
| 51 | pci_bus_add_devices(pci_root_bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | return 0; |
| 54 | } |
| 55 | |
Robert Richter | 8dd779b | 2008-07-02 22:50:29 +0200 | [diff] [blame] | 56 | int __init pci_subsys_init(void) |
| 57 | { |
Robert Richter | 060b970 | 2008-07-11 12:14:27 +0200 | [diff] [blame] | 58 | #ifdef CONFIG_X86_NUMAQ |
Robert Richter | e27cf3a | 2008-07-11 12:18:41 +0200 | [diff] [blame] | 59 | pci_numaq_init(); |
Robert Richter | 060b970 | 2008-07-11 12:14:27 +0200 | [diff] [blame] | 60 | #endif |
Robert Richter | 8dd779b | 2008-07-02 22:50:29 +0200 | [diff] [blame] | 61 | #ifdef CONFIG_ACPI |
| 62 | pci_acpi_init(); |
| 63 | #endif |
Robert Richter | 3cabf37 | 2008-07-11 12:26:59 +0200 | [diff] [blame] | 64 | #ifdef CONFIG_X86_VISWS |
| 65 | pci_visws_init(); |
| 66 | #endif |
Robert Richter | 8dd779b | 2008-07-02 22:50:29 +0200 | [diff] [blame] | 67 | pci_legacy_init(); |
Yinghai Lu | e42d1fe | 2009-03-25 13:26:13 -0700 | [diff] [blame^] | 68 | pcibios_fixup_peer_bridges(); |
Robert Richter | 8dd779b | 2008-07-02 22:50:29 +0200 | [diff] [blame] | 69 | pcibios_irq_init(); |
| 70 | pcibios_init(); |
Robert Richter | 3a62ed7 | 2008-07-10 18:58:25 +0200 | [diff] [blame] | 71 | |
| 72 | return 0; |
Robert Richter | 8dd779b | 2008-07-02 22:50:29 +0200 | [diff] [blame] | 73 | } |
| 74 | subsys_initcall(pci_subsys_init); |