USB: serial: option: reimplement interface masking
[linux/fpc-iii.git] / arch / arm / include / asm / pci.h
blob1f0de808d111e91beb3d9aaf2f07d5a32842f390
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef ASMARM_PCI_H
3 #define ASMARM_PCI_H
5 #ifdef __KERNEL__
6 #include <asm/mach/pci.h> /* for pci_sys_data */
8 extern unsigned long pcibios_min_io;
9 #define PCIBIOS_MIN_IO pcibios_min_io
10 extern unsigned long pcibios_min_mem;
11 #define PCIBIOS_MIN_MEM pcibios_min_mem
13 #define pcibios_assign_all_busses() pci_has_flag(PCI_REASSIGN_ALL_BUS)
15 #ifdef CONFIG_PCI_DOMAINS
16 static inline int pci_proc_domain(struct pci_bus *bus)
18 return pci_domain_nr(bus);
20 #endif /* CONFIG_PCI_DOMAINS */
23 * The PCI address space does equal the physical memory address space.
24 * The networking and block device layers use this boolean for bounce
25 * buffer decisions.
27 #define PCI_DMA_BUS_IS_PHYS (1)
29 #define HAVE_PCI_MMAP
30 #define ARCH_GENERIC_PCI_MMAP_RESOURCE
32 static inline int pci_get_legacy_ide_irq(struct pci_dev *dev, int channel)
34 return channel ? 15 : 14;
37 #endif /* __KERNEL__ */
38 #endif