~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/x86/pci/legacy.c

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 // SPDX-License-Identifier: GPL-2.0-only
  2 /*
  3  * legacy.c - traditional, old school PCI bus probing
  4  */
  5 #include <linux/init.h>
  6 #include <linux/export.h>
  7 #include <linux/pci.h>
  8 #include <asm/jailhouse_para.h>
  9 #include <asm/pci_x86.h>
 10 
 11 /*
 12  * Discover remaining PCI buses in case there are peer host bridges.
 13  * We use the number of last PCI bus provided by the PCI BIOS.
 14  */
 15 static void pcibios_fixup_peer_bridges(void)
 16 {
 17         int n;
 18 
 19         if (pcibios_last_bus <= 0 || pcibios_last_bus > 0xff)
 20                 return;
 21         DBG("PCI: Peer bridge fixup\n");
 22 
 23         for (n=0; n <= pcibios_last_bus; n++)
 24                 pcibios_scan_specific_bus(n);
 25 }
 26 
 27 int __init pci_legacy_init(void)
 28 {
 29         if (!raw_pci_ops)
 30                 return 1;
 31 
 32         pr_info("PCI: Probing PCI hardware\n");
 33         pcibios_scan_root(0);
 34         return 0;
 35 }
 36 
 37 void pcibios_scan_specific_bus(int busn)
 38 {
 39         int stride = jailhouse_paravirt() ? 1 : 8;
 40         int devfn;
 41         u32 l;
 42 
 43         if (pci_find_bus(0, busn))
 44                 return;
 45 
 46         for (devfn = 0; devfn < 256; devfn += stride) {
 47                 if (!raw_pci_read(0, busn, devfn, PCI_VENDOR_ID, 2, &l) &&
 48                     l != 0x0000 && l != 0xffff) {
 49                         DBG("Found device at %02x:%02x [%04x]\n", busn, devfn, l);
 50                         pr_info("PCI: Discovered peer bus %02x\n", busn);
 51                         pcibios_scan_root(busn);
 52                         return;
 53                 }
 54         }
 55 }
 56 EXPORT_SYMBOL_GPL(pcibios_scan_specific_bus);
 57 
 58 static int __init pci_subsys_init(void)
 59 {
 60         /*
 61          * The init function returns an non zero value when
 62          * pci_legacy_init should be invoked.
 63          */
 64         if (x86_init.pci.init()) {
 65                 if (pci_legacy_init()) {
 66                         pr_info("PCI: System does not support PCI\n");
 67                         return -ENODEV;
 68                 }
 69         }
 70 
 71         pcibios_fixup_peer_bridges();
 72         x86_init.pci.init_irq();
 73         pcibios_init();
 74 
 75         return 0;
 76 }
 77 subsys_initcall(pci_subsys_init);
 78 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php