Merge tag 'sched-urgent-2020-12-27' of git://git.kernel.org/pub/scm/linux/kernel...
[linux/fpc-iii.git] / arch / hexagon / include / asm / io.h
blobbda2a9c2df78894f52d60e505fea72403816b126
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3 * IO definitions for the Hexagon architecture
5 * Copyright (c) 2010-2013, The Linux Foundation. All rights reserved.
6 */
8 #ifndef _ASM_IO_H
9 #define _ASM_IO_H
11 #ifdef __KERNEL__
13 #include <linux/types.h>
14 #include <asm/iomap.h>
15 #include <asm/page.h>
16 #include <asm/cacheflush.h>
19 * We don't have PCI yet.
20 * _IO_BASE is pointing at what should be unused virtual space.
22 #define IO_SPACE_LIMIT 0xffff
23 #define _IO_BASE ((void __iomem *)0xfe000000)
25 #define IOMEM(x) ((void __force __iomem *)(x))
27 extern int remap_area_pages(unsigned long start, unsigned long phys_addr,
28 unsigned long end, unsigned long flags);
30 extern void iounmap(const volatile void __iomem *addr);
32 /* Defined in lib/io.c, needed for smc91x driver. */
33 extern void __raw_readsw(const void __iomem *addr, void *data, int wordlen);
34 extern void __raw_writesw(void __iomem *addr, const void *data, int wordlen);
36 extern void __raw_readsl(const void __iomem *addr, void *data, int wordlen);
37 extern void __raw_writesl(void __iomem *addr, const void *data, int wordlen);
39 #define readsw(p, d, l) __raw_readsw(p, d, l)
40 #define writesw(p, d, l) __raw_writesw(p, d, l)
42 #define readsl(p, d, l) __raw_readsl(p, d, l)
43 #define writesl(p, d, l) __raw_writesl(p, d, l)
46 * virt_to_phys - map virtual address to physical
47 * @address: address to map
49 static inline unsigned long virt_to_phys(volatile void *address)
51 return __pa(address);
55 * phys_to_virt - map physical address to virtual
56 * @address: address to map
58 static inline void *phys_to_virt(unsigned long address)
60 return __va(address);
64 * convert a physical pointer to a virtual kernel pointer for
65 * /dev/mem access.
67 #define xlate_dev_kmem_ptr(p) __va(p)
68 #define xlate_dev_mem_ptr(p) __va(p)
71 * IO port access primitives. Hexagon doesn't have special IO access
72 * instructions; all I/O is memory mapped.
74 * in/out are used for "ports", but we don't have "port instructions",
75 * so these are really just memory mapped too.
79 * readb - read byte from memory mapped device
80 * @addr: pointer to memory
82 * Operates on "I/O bus memory space"
84 static inline u8 readb(const volatile void __iomem *addr)
86 u8 val;
87 asm volatile(
88 "%0 = memb(%1);"
89 : "=&r" (val)
90 : "r" (addr)
92 return val;
95 static inline u16 readw(const volatile void __iomem *addr)
97 u16 val;
98 asm volatile(
99 "%0 = memh(%1);"
100 : "=&r" (val)
101 : "r" (addr)
103 return val;
106 static inline u32 readl(const volatile void __iomem *addr)
108 u32 val;
109 asm volatile(
110 "%0 = memw(%1);"
111 : "=&r" (val)
112 : "r" (addr)
114 return val;
118 * writeb - write a byte to a memory location
119 * @data: data to write to
120 * @addr: pointer to memory
123 static inline void writeb(u8 data, volatile void __iomem *addr)
125 asm volatile(
126 "memb(%0) = %1;"
128 : "r" (addr), "r" (data)
129 : "memory"
133 static inline void writew(u16 data, volatile void __iomem *addr)
135 asm volatile(
136 "memh(%0) = %1;"
138 : "r" (addr), "r" (data)
139 : "memory"
144 static inline void writel(u32 data, volatile void __iomem *addr)
146 asm volatile(
147 "memw(%0) = %1;"
149 : "r" (addr), "r" (data)
150 : "memory"
154 #define __raw_writeb writeb
155 #define __raw_writew writew
156 #define __raw_writel writel
158 #define __raw_readb readb
159 #define __raw_readw readw
160 #define __raw_readl readl
163 * http://comments.gmane.org/gmane.linux.ports.arm.kernel/117626
166 #define readb_relaxed __raw_readb
167 #define readw_relaxed __raw_readw
168 #define readl_relaxed __raw_readl
170 #define writeb_relaxed __raw_writeb
171 #define writew_relaxed __raw_writew
172 #define writel_relaxed __raw_writel
174 void __iomem *ioremap(unsigned long phys_addr, unsigned long size);
175 #define ioremap_uc(X, Y) ioremap((X), (Y))
178 #define __raw_writel writel
180 static inline void memcpy_fromio(void *dst, const volatile void __iomem *src,
181 int count)
183 memcpy(dst, (void *) src, count);
186 static inline void memcpy_toio(volatile void __iomem *dst, const void *src,
187 int count)
189 memcpy((void *) dst, src, count);
192 static inline void memset_io(volatile void __iomem *addr, int value,
193 size_t size)
195 memset((void __force *)addr, value, size);
198 #define PCI_IO_ADDR (volatile void __iomem *)
201 * inb - read byte from I/O port or something
202 * @port: address in I/O space
204 * Operates on "I/O bus I/O space"
206 static inline u8 inb(unsigned long port)
208 return readb(_IO_BASE + (port & IO_SPACE_LIMIT));
211 static inline u16 inw(unsigned long port)
213 return readw(_IO_BASE + (port & IO_SPACE_LIMIT));
216 static inline u32 inl(unsigned long port)
218 return readl(_IO_BASE + (port & IO_SPACE_LIMIT));
222 * outb - write a byte to a memory location
223 * @data: data to write to
224 * @addr: address in I/O space
226 static inline void outb(u8 data, unsigned long port)
228 writeb(data, _IO_BASE + (port & IO_SPACE_LIMIT));
231 static inline void outw(u16 data, unsigned long port)
233 writew(data, _IO_BASE + (port & IO_SPACE_LIMIT));
236 static inline void outl(u32 data, unsigned long port)
238 writel(data, _IO_BASE + (port & IO_SPACE_LIMIT));
241 #define outb_p outb
242 #define outw_p outw
243 #define outl_p outl
245 #define inb_p inb
246 #define inw_p inw
247 #define inl_p inl
249 static inline void insb(unsigned long port, void *buffer, int count)
251 if (count) {
252 u8 *buf = buffer;
253 do {
254 u8 x = inb(port);
255 *buf++ = x;
256 } while (--count);
260 static inline void insw(unsigned long port, void *buffer, int count)
262 if (count) {
263 u16 *buf = buffer;
264 do {
265 u16 x = inw(port);
266 *buf++ = x;
267 } while (--count);
271 static inline void insl(unsigned long port, void *buffer, int count)
273 if (count) {
274 u32 *buf = buffer;
275 do {
276 u32 x = inw(port);
277 *buf++ = x;
278 } while (--count);
282 static inline void outsb(unsigned long port, const void *buffer, int count)
284 if (count) {
285 const u8 *buf = buffer;
286 do {
287 outb(*buf++, port);
288 } while (--count);
292 static inline void outsw(unsigned long port, const void *buffer, int count)
294 if (count) {
295 const u16 *buf = buffer;
296 do {
297 outw(*buf++, port);
298 } while (--count);
302 static inline void outsl(unsigned long port, const void *buffer, int count)
304 if (count) {
305 const u32 *buf = buffer;
306 do {
307 outl(*buf++, port);
308 } while (--count);
312 #endif /* __KERNEL__ */
314 #endif