1 // SPDX-License-Identifier: GPL-2.0
3 * linux/arch/arm/mm/iomap.c
5 * Map IO port and PCI memory spaces so that {read,write}[bwl] can
6 * be used to access this memory.
8 #include <linux/module.h>
10 #include <linux/ioport.h>
13 unsigned long vga_base;
14 EXPORT_SYMBOL(vga_base);
17 void __iomem *ioport_map(unsigned long port, unsigned int nr)
21 EXPORT_SYMBOL(ioport_map);
23 void ioport_unmap(void __iomem *addr)
26 EXPORT_SYMBOL(ioport_unmap);
30 unsigned long pcibios_min_io = 0x1000;
31 EXPORT_SYMBOL(pcibios_min_io);
33 unsigned long pcibios_min_mem = 0x01000000;
34 EXPORT_SYMBOL(pcibios_min_mem);
36 void pci_iounmap(struct pci_dev *dev, void __iomem *addr)
38 if ((unsigned long)addr >= VMALLOC_START &&
39 (unsigned long)addr < VMALLOC_END)
42 EXPORT_SYMBOL(pci_iounmap);