Release 4.10 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 | patrick mochel | 37 | 82.22% | 1 | 25.00% |
aristeu sergio rozanski filho | aristeu sergio rozanski filho | 6 | 13.33% | 1 | 25.00% |
yinghai lu | yinghai lu | 1 | 2.22% | 1 | 25.00% |
andi kleen | 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) {
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 | 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 | patrick mochel | 63 | 67.02% | 1 | 14.29% |
aristeu sergio rozanski filho | aristeu sergio rozanski filho | 16 | 17.02% | 1 | 14.29% |
matthew wilcox | matthew wilcox | 13 | 13.83% | 3 | 42.86% |
greg kroah-hartman | greg kroah-hartman | 1 | 1.06% | 1 | 14.29% |
bjorn helgaas | bjorn helgaas | 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 | robert richter | 20 | 52.63% | 3 | 42.86% |
thomas gleixner | thomas gleixner | 14 | 36.84% | 2 | 28.57% |
yinghai lu | yinghai lu | 3 | 7.89% | 1 | 14.29% |
alexander kuleshov | 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 | patrick mochel | 111 | 46.84% | 1 | 5.00% |
aristeu sergio rozanski filho | aristeu sergio rozanski filho | 58 | 24.47% | 1 | 5.00% |
robert richter | robert richter | 21 | 8.86% | 3 | 15.00% |
thomas gleixner | thomas gleixner | 14 | 5.91% | 2 | 10.00% |
matthew wilcox | matthew wilcox | 13 | 5.49% | 3 | 15.00% |
mauro carvalho chehab | mauro carvalho chehab | 5 | 2.11% | 1 | 5.00% |
yinghai lu | yinghai lu | 4 | 1.69% | 2 | 10.00% |
paul gortmaker | paul gortmaker | 3 | 1.27% | 1 | 5.00% |
tom rini | tom rini | 3 | 1.27% | 1 | 5.00% |
alexander kuleshov | alexander kuleshov | 1 | 0.42% | 1 | 5.00% |
andi kleen | andi kleen | 1 | 0.42% | 1 | 5.00% |
bjorn helgaas | bjorn helgaas | 1 | 0.42% | 1 | 5.00% |
greg kroah-hartman | greg kroah-hartman | 1 | 0.42% | 1 | 5.00% |
jaswinder singh rajput | jaswinder singh rajput | 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.