Release 4.13 arch/arm/include/asm/pci.h
#ifndef ASMARM_PCI_H
#define ASMARM_PCI_H
#ifdef __KERNEL__
#include <asm/mach/pci.h> /* for pci_sys_data */
extern unsigned long pcibios_min_io;
#define PCIBIOS_MIN_IO pcibios_min_io
extern unsigned long pcibios_min_mem;
#define PCIBIOS_MIN_MEM pcibios_min_mem
static inline int pcibios_assign_all_busses(void)
{
return pci_has_flag(PCI_REASSIGN_ALL_RSRC);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Rob Herring | 15 | 100.00% | 1 | 100.00% |
Total | 15 | 100.00% | 1 | 100.00% |
#ifdef CONFIG_PCI_DOMAINS
static inline int pci_proc_domain(struct pci_bus *bus)
{
return pci_domain_nr(bus);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Anton Vorontsov | 18 | 100.00% | 1 | 100.00% |
Total | 18 | 100.00% | 1 | 100.00% |
#endif /* CONFIG_PCI_DOMAINS */
/*
* The PCI address space does equal the physical memory address space.
* The networking and block device layers use this boolean for bounce
* buffer decisions.
*/
#define PCI_DMA_BUS_IS_PHYS (1)
#define HAVE_PCI_MMAP
#define ARCH_GENERIC_PCI_MMAP_RESOURCE
static inline int pci_get_legacy_ide_irq(struct pci_dev *dev, int channel)
{
return channel ? 15 : 14;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Russell King | 22 | 100.00% | 2 | 100.00% |
Total | 22 | 100.00% | 2 | 100.00% |
#endif /* __KERNEL__ */
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Rob Herring | 33 | 30.56% | 2 | 13.33% |
Russell King | 27 | 25.00% | 5 | 33.33% |
Anton Vorontsov | 24 | 22.22% | 1 | 6.67% |
Linus Torvalds (pre-git) | 16 | 14.81% | 4 | 26.67% |
Linus Torvalds | 3 | 2.78% | 1 | 6.67% |
David Woodhouse | 3 | 2.78% | 1 | 6.67% |
Mike Rapoport | 2 | 1.85% | 1 | 6.67% |
Total | 108 | 100.00% | 15 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.