Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[cris-mirror.git] / arch / arm64 / include / asm / pci.h
blob8747f7c5e0e75a88b509749f91744fb6f73725e6
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __ASM_PCI_H
3 #define __ASM_PCI_H
4 #ifdef __KERNEL__
6 #include <linux/types.h>
7 #include <linux/slab.h>
8 #include <linux/dma-mapping.h>
10 #include <asm/io.h>
12 #define PCIBIOS_MIN_IO 0x1000
13 #define PCIBIOS_MIN_MEM 0
16 * Set to 1 if the kernel should re-assign all PCI bus numbers
18 #define pcibios_assign_all_busses() \
19 (pci_has_flag(PCI_REASSIGN_ALL_BUS))
22 * PCI address space differs from physical memory address space
24 #define PCI_DMA_BUS_IS_PHYS (0)
26 #define ARCH_GENERIC_PCI_MMAP_RESOURCE 1
28 extern int isa_dma_bridge_buggy;
30 #ifdef CONFIG_PCI
31 static inline int pci_get_legacy_ide_irq(struct pci_dev *dev, int channel)
33 /* no legacy IRQ on arm64 */
34 return -ENODEV;
37 static inline int pci_proc_domain(struct pci_bus *bus)
39 return 1;
41 #endif /* CONFIG_PCI */
43 #endif /* __KERNEL__ */
44 #endif /* __ASM_PCI_H */