2 * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
12 #include <linux/types.h>
13 #include <asm/byteorder.h>
16 #ifdef CONFIG_ISA_ARCV2
17 #include <asm/barrier.h>
18 #define __iormb() rmb()
19 #define __iowmb() wmb()
21 #define __iormb() do { } while (0)
22 #define __iowmb() do { } while (0)
25 extern void __iomem
*ioremap(phys_addr_t paddr
, unsigned long size
);
26 extern void __iomem
*ioremap_prot(phys_addr_t paddr
, unsigned long size
,
28 static inline void __iomem
*ioport_map(unsigned long port
, unsigned int nr
)
30 return (void __iomem
*)port
;
33 static inline void ioport_unmap(void __iomem
*addr
)
37 extern void iounmap(const void __iomem
*addr
);
39 #define ioremap_nocache(phy, sz) ioremap(phy, sz)
40 #define ioremap_wc(phy, sz) ioremap(phy, sz)
41 #define ioremap_wt(phy, sz) ioremap(phy, sz)
44 * io{read,write}{16,32}be() macros
46 #define ioread16be(p) ({ u16 __v = be16_to_cpu((__force __be16)__raw_readw(p)); __iormb(); __v; })
47 #define ioread32be(p) ({ u32 __v = be32_to_cpu((__force __be32)__raw_readl(p)); __iormb(); __v; })
49 #define iowrite16be(v,p) ({ __iowmb(); __raw_writew((__force u16)cpu_to_be16(v), p); })
50 #define iowrite32be(v,p) ({ __iowmb(); __raw_writel((__force u32)cpu_to_be32(v), p); })
52 /* Change struct page to physical address */
53 #define page_to_phys(page) (page_to_pfn(page) << PAGE_SHIFT)
55 #define __raw_readb __raw_readb
56 static inline u8
__raw_readb(const volatile void __iomem
*addr
)
63 : "m" (*(volatile u8 __force
*)addr
)
69 #define __raw_readw __raw_readw
70 static inline u16
__raw_readw(const volatile void __iomem
*addr
)
77 : "m" (*(volatile u16 __force
*)addr
)
83 #define __raw_readl __raw_readl
84 static inline u32
__raw_readl(const volatile void __iomem
*addr
)
91 : "m" (*(volatile u32 __force
*)addr
)
97 #define __raw_writeb __raw_writeb
98 static inline void __raw_writeb(u8 b
, volatile void __iomem
*addr
)
100 __asm__
__volatile__(
103 : "r" (b
), "m" (*(volatile u8 __force
*)addr
)
107 #define __raw_writew __raw_writew
108 static inline void __raw_writew(u16 s
, volatile void __iomem
*addr
)
110 __asm__
__volatile__(
113 : "r" (s
), "m" (*(volatile u16 __force
*)addr
)
118 #define __raw_writel __raw_writel
119 static inline void __raw_writel(u32 w
, volatile void __iomem
*addr
)
121 __asm__
__volatile__(
124 : "r" (w
), "m" (*(volatile u32 __force
*)addr
)
130 * MMIO can also get buffered/optimized in micro-arch, so barriers needed
131 * Based on ARM model for the typical use case
134 * <writel MMIO "go" reg>
136 * <readl MMIO "status" reg>
139 * http://lkml.kernel.org/r/20150622133656.GG1583@arm.com
141 #define readb(c) ({ u8 __v = readb_relaxed(c); __iormb(); __v; })
142 #define readw(c) ({ u16 __v = readw_relaxed(c); __iormb(); __v; })
143 #define readl(c) ({ u32 __v = readl_relaxed(c); __iormb(); __v; })
145 #define writeb(v,c) ({ __iowmb(); writeb_relaxed(v,c); })
146 #define writew(v,c) ({ __iowmb(); writew_relaxed(v,c); })
147 #define writel(v,c) ({ __iowmb(); writel_relaxed(v,c); })
150 * Relaxed API for drivers which can handle barrier ordering themselves
152 * Also these are defined to perform little endian accesses.
153 * To provide the typical device register semantics of fixed endian,
154 * swap the byte order for Big Endian
156 * http://lkml.kernel.org/r/201603100845.30602.arnd@arndb.de
158 #define readb_relaxed(c) __raw_readb(c)
159 #define readw_relaxed(c) ({ u16 __r = le16_to_cpu((__force __le16) \
160 __raw_readw(c)); __r; })
161 #define readl_relaxed(c) ({ u32 __r = le32_to_cpu((__force __le32) \
162 __raw_readl(c)); __r; })
164 #define writeb_relaxed(v,c) __raw_writeb(v,c)
165 #define writew_relaxed(v,c) __raw_writew((__force u16) cpu_to_le16(v),c)
166 #define writel_relaxed(v,c) __raw_writel((__force u32) cpu_to_le32(v),c)
168 #include <asm-generic/io.h>
170 #endif /* _ASM_ARC_IO_H */