blob: 6b191d54a69f79b2b2edf749607f14636ea1eec5 [file] [log] [blame]
Daniel Schwierzeckb01d3e12016-01-12 21:48:25 +01001/*
2 * SPDX-License-Identifier: GPL-2.0
3 */
4#ifndef __ASM_MACH_GENERIC_IOREMAP_H
5#define __ASM_MACH_GENERIC_IOREMAP_H
6
7#include <linux/types.h>
8
9/*
10 * Allow physical addresses to be fixed up to help peripherals located
11 * outside the low 32-bit range -- generic pass-through version.
12 */
13static inline phys_addr_t fixup_bigphys_addr(phys_addr_t phys_addr,
14 phys_addr_t size)
15{
16 return phys_addr;
17}
18
19static inline void __iomem *plat_ioremap(phys_addr_t offset, unsigned long size,
20 unsigned long flags)
21{
22 return NULL;
23}
24
25static inline int plat_iounmap(const volatile void __iomem *addr)
26{
27 return 0;
28}
29
30#define _page_cachable_default _CACHE_CACHABLE_NONCOHERENT
31
32#endif /* __ASM_MACH_GENERIC_IOREMAP_H */