Release 4.11 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% |
Andi Kleen | 1 | 2.22% | 1 | 25.00% |
Yinghai Lu | 1 | 2.22% | 1 | 25.00% |
Total | 45 | 100.00% | 4 | 100.00% |
int __init pci_legacy_init(void)
{
if (!raw_pci_ops) {
printk("PCI: System does not support PCI\n");
return 0;
}
printk("PCI: Probing PCI hardware\n");
pcibios_scan_root(0);
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Aristeu Sergio Rozanski Filho | 36 | 100.00% | 1 | 100.00% |
Total | 36 | 100.00% | 1 | 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);
printk(KERN_INFO "PCI: Discovered peer bus %02x\n", busn);
pcibios_scan_root(busn);
return;
}
}
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Patrick Mochel | 63 | 67.02% | 1 | 14.29% |
Aristeu Sergio Rozanski Filho | 16 | 17.02% | 1 | 14.29% |
Matthew Wilcox | 13 | 13.83% | 3 | 42.86% |
Björn Helgaas | 1 | 1.06% | 1 | 14.29% |
Greg Kroah-Hartman | 1 | 1.06% | 1 | 14.29% |
Total | 94 | 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())
pci_legacy_init();
pcibios_fixup_peer_bridges();
x86_init.pci.init_irq();
pcibios_init();
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Robert Richter | 20 | 52.63% | 3 | 42.86% |
Thomas Gleixner | 14 | 36.84% | 2 | 28.57% |
Yinghai Lu | 3 | 7.89% | 1 | 14.29% |
Alexander Kuleshov | 1 | 2.63% | 1 | 14.29% |
Total | 38 | 100.00% | 7 | 100.00% |
subsys_initcall(pci_subsys_init);
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Patrick Mochel | 111 | 46.84% | 1 | 5.00% |
Aristeu Sergio Rozanski Filho | 58 | 24.47% | 1 | 5.00% |
Robert Richter | 21 | 8.86% | 3 | 15.00% |
Thomas Gleixner | 14 | 5.91% | 2 | 10.00% |
Matthew Wilcox | 13 | 5.49% | 3 | 15.00% |
Mauro Carvalho Chehab | 5 | 2.11% | 1 | 5.00% |
Yinghai Lu | 4 | 1.69% | 2 | 10.00% |
Paul Gortmaker | 3 | 1.27% | 1 | 5.00% |
Tom Rini | 3 | 1.27% | 1 | 5.00% |
Björn Helgaas | 1 | 0.42% | 1 | 5.00% |
Jaswinder Singh Rajput | 1 | 0.42% | 1 | 5.00% |
Greg Kroah-Hartman | 1 | 0.42% | 1 | 5.00% |
Andi Kleen | 1 | 0.42% | 1 | 5.00% |
Alexander Kuleshov | 1 | 0.42% | 1 | 5.00% |
Total | 237 | 100.00% | 20 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.