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> |
Paul Gortmaker | 69c60c8 | 2011-05-26 12:22:53 -0400 | [diff] [blame] | 5 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | #include <linux/pci.h> |
Jaswinder Singh Rajput | 8248771 | 2008-12-27 18:32:28 +0530 | [diff] [blame] | 7 | #include <asm/pci_x86.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | |
| 9 | /* |
| 10 | * Discover remaining PCI buses in case there are peer host bridges. |
| 11 | * We use the number of last PCI bus provided by the PCI BIOS. |
| 12 | */ |
Greg Kroah-Hartman | a18e369 | 2012-12-21 14:02:53 -0800 | [diff] [blame] | 13 | static void pcibios_fixup_peer_bridges(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | { |
Aristeu Rozanski | 5707b24 | 2009-07-09 22:21:13 -0300 | [diff] [blame] | 15 | int n; |
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 | |
Aristeu Rozanski | 5707b24 | 2009-07-09 22:21:13 -0300 | [diff] [blame] | 21 | for (n=0; n <= pcibios_last_bus; n++) |
| 22 | pcibios_scan_specific_bus(n); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | } |
| 24 | |
Thomas Gleixner | b72d0db | 2009-08-29 16:24:51 +0200 | [diff] [blame] | 25 | int __init pci_legacy_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | { |
| 27 | if (!raw_pci_ops) { |
| 28 | printk("PCI: System does not support PCI\n"); |
| 29 | return 0; |
| 30 | } |
| 31 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | printk("PCI: Probing PCI hardware\n"); |
Bjorn Helgaas | b7869ba | 2013-01-03 15:28:34 -0700 | [diff] [blame] | 33 | pcibios_scan_root(0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | return 0; |
| 35 | } |
Aristeu Rozanski | 5707b24 | 2009-07-09 22:21:13 -0300 | [diff] [blame] | 36 | |
Greg Kroah-Hartman | a18e369 | 2012-12-21 14:02:53 -0800 | [diff] [blame] | 37 | void pcibios_scan_specific_bus(int busn) |
Aristeu Rozanski | 5707b24 | 2009-07-09 22:21:13 -0300 | [diff] [blame] | 38 | { |
| 39 | int devfn; |
Aristeu Rozanski | 5707b24 | 2009-07-09 22:21:13 -0300 | [diff] [blame] | 40 | u32 l; |
| 41 | |
| 42 | if (pci_find_bus(0, busn)) |
| 43 | return; |
| 44 | |
Aristeu Rozanski | 5707b24 | 2009-07-09 22:21:13 -0300 | [diff] [blame] | 45 | for (devfn = 0; devfn < 256; devfn += 8) { |
| 46 | if (!raw_pci_read(0, busn, devfn, PCI_VENDOR_ID, 2, &l) && |
| 47 | l != 0x0000 && l != 0xffff) { |
| 48 | DBG("Found device at %02x:%02x [%04x]\n", busn, devfn, l); |
| 49 | printk(KERN_INFO "PCI: Discovered peer bus %02x\n", busn); |
Bjorn Helgaas | 3d2a366 | 2014-01-24 11:50:48 -0700 | [diff] [blame] | 50 | pcibios_scan_root(busn); |
Aristeu Rozanski | 5707b24 | 2009-07-09 22:21:13 -0300 | [diff] [blame] | 51 | return; |
| 52 | } |
| 53 | } |
| 54 | } |
Mauro Carvalho Chehab | d1fd4fb | 2009-07-10 18:39:53 -0300 | [diff] [blame] | 55 | EXPORT_SYMBOL_GPL(pcibios_scan_specific_bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
Robert Richter | 8dd779b | 2008-07-02 22:50:29 +0200 | [diff] [blame] | 57 | int __init pci_subsys_init(void) |
| 58 | { |
Thomas Gleixner | b72d0db | 2009-08-29 16:24:51 +0200 | [diff] [blame] | 59 | /* |
| 60 | * The init function returns an non zero value when |
| 61 | * pci_legacy_init should be invoked. |
| 62 | */ |
| 63 | if (x86_init.pci.init()) |
| 64 | pci_legacy_init(); |
| 65 | |
Yinghai Lu | e42d1fe | 2009-03-25 13:26:13 -0700 | [diff] [blame] | 66 | pcibios_fixup_peer_bridges(); |
Thomas Gleixner | ab3b379 | 2009-08-29 17:47:33 +0200 | [diff] [blame] | 67 | x86_init.pci.init_irq(); |
Robert Richter | 8dd779b | 2008-07-02 22:50:29 +0200 | [diff] [blame] | 68 | pcibios_init(); |
Robert Richter | 3a62ed7 | 2008-07-10 18:58:25 +0200 | [diff] [blame] | 69 | |
| 70 | return 0; |
Robert Richter | 8dd779b | 2008-07-02 22:50:29 +0200 | [diff] [blame] | 71 | } |
| 72 | subsys_initcall(pci_subsys_init); |