1 /* SPDX-License-Identifier: GPL-2.0-or-later */
4 * Based on powerpc version
7 #ifndef __ASM_MICROBLAZE_PCI_H
8 #define __ASM_MICROBLAZE_PCI_H
11 #include <linux/types.h>
12 #include <linux/slab.h>
13 #include <linux/string.h>
14 #include <linux/dma-mapping.h>
15 #include <linux/pci.h>
16 #include <linux/scatterlist.h>
19 #include <asm/pci-bridge.h>
21 #define PCIBIOS_MIN_IO 0x1000
22 #define PCIBIOS_MIN_MEM 0x10000000
24 /* Values for the `which' argument to sys_pciconfig_iobase syscall. */
25 #define IOBASE_BRIDGE_NUMBER 0
26 #define IOBASE_MEMORY 1
28 #define IOBASE_ISA_IO 3
29 #define IOBASE_ISA_MEM 4
31 #define pcibios_scan_all_fns(a, b) 0
34 * Set this to 1 if you want the kernel to re-assign all PCI
35 * bus numbers (don't do that on ppc64 yet !)
37 #define pcibios_assign_all_busses() 0
39 extern int pci_domain_nr(struct pci_bus
*bus
);
41 /* Decide whether to display the domain number in /proc */
42 extern int pci_proc_domain(struct pci_bus
*bus
);
44 struct vm_area_struct
;
46 /* Tell PCI code what kind of PCI resource mappings we support */
47 #define HAVE_PCI_MMAP 1
48 #define ARCH_GENERIC_PCI_MMAP_RESOURCE 1
49 #define arch_can_pci_mmap_io() 1
51 extern int pci_legacy_read(struct pci_bus
*bus
, loff_t port
, u32
*val
,
53 extern int pci_legacy_write(struct pci_bus
*bus
, loff_t port
, u32 val
,
55 extern int pci_mmap_legacy_page_range(struct pci_bus
*bus
,
56 struct vm_area_struct
*vma
,
57 enum pci_mmap_state mmap_state
);
59 #define HAVE_PCI_LEGACY 1
61 extern void pcibios_resource_survey(void);
64 extern pgprot_t
pci_phys_mem_access_prot(struct file
*file
,
69 /* This part of code was originally in xilinx-pci.h */
70 #ifdef CONFIG_PCI_XILINX
71 extern void __init
xilinx_pci_init(void);
73 static inline void __init
xilinx_pci_init(void) { return; }
76 #endif /* __KERNEL__ */
77 #endif /* __ASM_MICROBLAZE_PCI_H */