Release 4.14 arch/x86/pci/legacy.c
/*
* legacy.c - traditional, old school PCI bus probing
*/
#include <linux/init.h>
#include <linux/export.h>
#include <linux/pci.h>
#include <asm/pci_x86.h>
/*
* Discover remaining PCI buses in case there are peer host bridges.
* We use the number of last PCI bus provided by the PCI BIOS.
*/
static void pcibios_fixup_peer_bridges(void)
{
int n;
if (pcibios_last_bus <= 0 || pcibios_last_bus > 0xff)
return;
DBG("PCI: Peer bridge fixup\n");
for (n=0; n <= pcibios_last_bus; n++)
pcibios_scan_specific_bus(n);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Patrick Mochel | 37 | 82.22% | 1 | 25.00% |
Aristeu Sergio Rozanski Filho | 6 | 13.33% | 1 | 25.00% |
Yinghai Lu | 1 | 2.22% | 1 | 25.00% |
Andi Kleen | 1 | 2.22% | 1 | 25.00% |
Total | 45 | 100.00% | 4 | 100.00% |
int __init pci_legacy_init(void)
{
if (!raw_pci_ops)
return 1;
pr_info("PCI: Probing PCI hardware\n");
pcibios_scan_root(0);
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Aristeu Sergio Rozanski Filho | 27 | 93.10% | 1 | 50.00% |
Thomas Gleixner | 2 | 6.90% | 1 | 50.00% |
Total | 29 | 100.00% | 2 | 100.00% |
void pcibios_scan_specific_bus(int busn)
{
int devfn;
u32 l;
if (pci_find_bus(0, busn))
return;
for (devfn = 0; devfn < 256; devfn += 8) {
if (!raw_pci_read(0, busn, devfn, PCI_VENDOR_ID, 2, &l) &&
l != 0x0000 && l != 0xffff) {
DBG("Found device at %02x:%02x [%04x]\n", busn, devfn, l);
pr_info("PCI: Discovered peer bus %02x\n", busn);
pcibios_scan_root(busn);
return;
}
}
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Patrick Mochel | 62 | 66.67% | 1 | 14.29% |
Aristeu Sergio Rozanski Filho | 16 | 17.20% | 1 | 14.29% |
Matthew Wilcox | 13 | 13.98% | 3 | 42.86% |
Björn Helgaas | 1 | 1.08% | 1 | 14.29% |
Thomas Gleixner | 1 | 1.08% | 1 | 14.29% |
Total | 93 | 100.00% | 7 | 100.00% |
EXPORT_SYMBOL_GPL(pcibios_scan_specific_bus);
static int __init pci_subsys_init(void)
{
/*
* The init function returns an non zero value when
* pci_legacy_init should be invoked.
*/
if (x86_init.pci.init()) {
if (pci_legacy_init()) {
pr_info("PCI: System does not support PCI\n");
return -ENODEV;
}
}
pcibios_fixup_peer_bridges();
x86_init.pci.init_irq();
pcibios_init();
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Thomas Gleixner | 29 | 54.72% | 3 | 37.50% |
Robert Richter | 20 | 37.74% | 3 | 37.50% |
Yinghai Lu | 3 | 5.66% | 1 | 12.50% |
Alexander Kuleshov | 1 | 1.89% | 1 | 12.50% |
Total | 53 | 100.00% | 8 | 100.00% |
subsys_initcall(pci_subsys_init);
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Patrick Mochel | 110 | 45.08% | 1 | 5.00% |
Aristeu Sergio Rozanski Filho | 49 | 20.08% | 1 | 5.00% |
Thomas Gleixner | 32 | 13.11% | 3 | 15.00% |
Robert Richter | 21 | 8.61% | 3 | 15.00% |
Matthew Wilcox | 13 | 5.33% | 3 | 15.00% |
Mauro Carvalho Chehab | 5 | 2.05% | 1 | 5.00% |
Yinghai Lu | 4 | 1.64% | 2 | 10.00% |
Tom Rini | 3 | 1.23% | 1 | 5.00% |
Paul Gortmaker | 3 | 1.23% | 1 | 5.00% |
Jaswinder Singh Rajput | 1 | 0.41% | 1 | 5.00% |
Alexander Kuleshov | 1 | 0.41% | 1 | 5.00% |
Björn Helgaas | 1 | 0.41% | 1 | 5.00% |
Andi Kleen | 1 | 0.41% | 1 | 5.00% |
Total | 244 | 100.00% | 20 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.