blob: 5b662c0faf8c2e1848d15d4dced105db9988c7c8 [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>
Paul Gortmaker69c60c82011-05-26 12:22:53 -04005#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <linux/pci.h>
Jaswinder Singh Rajput82487712008-12-27 18:32:28 +05307#include <asm/pci_x86.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
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-Hartmana18e3692012-12-21 14:02:53 -080013static void pcibios_fixup_peer_bridges(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014{
Aristeu Rozanski5707b242009-07-09 22:21:13 -030015 int n;
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
Aristeu Rozanski5707b242009-07-09 22:21:13 -030021 for (n=0; n <= pcibios_last_bus; n++)
22 pcibios_scan_specific_bus(n);
Linus Torvalds1da177e2005-04-16 15:20:36 -070023}
24
Thomas Gleixnerb72d0db2009-08-29 16:24:51 +020025int __init pci_legacy_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070026{
27 if (!raw_pci_ops) {
28 printk("PCI: System does not support PCI\n");
29 return 0;
30 }
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 printk("PCI: Probing PCI hardware\n");
Bjorn Helgaasb7869ba2013-01-03 15:28:34 -070033 pcibios_scan_root(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 return 0;
35}
Aristeu Rozanski5707b242009-07-09 22:21:13 -030036
Greg Kroah-Hartmana18e3692012-12-21 14:02:53 -080037void pcibios_scan_specific_bus(int busn)
Aristeu Rozanski5707b242009-07-09 22:21:13 -030038{
39 int devfn;
Aristeu Rozanski5707b242009-07-09 22:21:13 -030040 u32 l;
41
42 if (pci_find_bus(0, busn))
43 return;
44
Aristeu Rozanski5707b242009-07-09 22:21:13 -030045 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 Helgaas3d2a3662014-01-24 11:50:48 -070050 pcibios_scan_root(busn);
Aristeu Rozanski5707b242009-07-09 22:21:13 -030051 return;
52 }
53 }
54}
Mauro Carvalho Chehabd1fd4fb2009-07-10 18:39:53 -030055EXPORT_SYMBOL_GPL(pcibios_scan_specific_bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Robert Richter8dd779b2008-07-02 22:50:29 +020057int __init pci_subsys_init(void)
58{
Thomas Gleixnerb72d0db2009-08-29 16:24:51 +020059 /*
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 Lue42d1fe2009-03-25 13:26:13 -070066 pcibios_fixup_peer_bridges();
Thomas Gleixnerab3b3792009-08-29 17:47:33 +020067 x86_init.pci.init_irq();
Robert Richter8dd779b2008-07-02 22:50:29 +020068 pcibios_init();
Robert Richter3a62ed72008-07-10 18:58:25 +020069
70 return 0;
Robert Richter8dd779b2008-07-02 22:50:29 +020071}
72subsys_initcall(pci_subsys_init);