blob: 415d0a454237e72df339215cf1d8d0602bb58056 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Russell King59244862006-06-22 15:05:36 +01002/*
3 * linux/arch/arm/mm/iomap.c
4 *
5 * Map IO port and PCI memory spaces so that {read,write}[bwl] can
6 * be used to access this memory.
7 */
8#include <linux/module.h>
9#include <linux/pci.h>
10#include <linux/ioport.h>
Russell Kingfced80c2008-09-06 12:10:45 +010011#include <linux/io.h>
Russell King59244862006-06-22 15:05:36 +010012
Ben Dooks (Codethink)c4e8fd02019-10-11 14:18:43 +010013#include <asm/vga.h>
14
Rob Herringcc22b4c2011-06-28 21:22:40 -050015unsigned long vga_base;
16EXPORT_SYMBOL(vga_base);
17
Russell King59244862006-06-22 15:05:36 +010018#ifdef __io
19void __iomem *ioport_map(unsigned long port, unsigned int nr)
20{
21 return __io(port);
22}
23EXPORT_SYMBOL(ioport_map);
24
25void ioport_unmap(void __iomem *addr)
26{
27}
28EXPORT_SYMBOL(ioport_unmap);
29#endif
30
31#ifdef CONFIG_PCI
Rob Herringc9d95fb2011-06-28 21:16:13 -050032unsigned long pcibios_min_io = 0x1000;
33EXPORT_SYMBOL(pcibios_min_io);
34
35unsigned long pcibios_min_mem = 0x01000000;
36EXPORT_SYMBOL(pcibios_min_mem);
37
Russell King59244862006-06-22 15:05:36 +010038void pci_iounmap(struct pci_dev *dev, void __iomem *addr)
39{
40 if ((unsigned long)addr >= VMALLOC_START &&
41 (unsigned long)addr < VMALLOC_END)
42 iounmap(addr);
43}
44EXPORT_SYMBOL(pci_iounmap);
45#endif