blob: c6d90eb794a0230e0cefbc736d720f84c9d03cd5 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Bin Meng1f380a72017-08-03 22:52:44 -07002/*
3 * (C) Copyright 2000-2002
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Bin Meng1f380a72017-08-03 22:52:44 -07005 */
6
wdenk591dda52002-11-18 00:14:45 +00007#ifndef _ASM_IO_H
8#define _ASM_IO_H
9
Simon Glass3ba929a2020-10-30 21:38:53 -060010#include <compiler.h>
Gabe Black8f090ca2012-10-23 18:04:44 +000011
wdenk591dda52002-11-18 00:14:45 +000012/*
13 * This file contains the definitions for the x86 IO instructions
14 * inb/inw/inl/outb/outw/outl and the "string versions" of the same
15 * (insb/insw/insl/outsb/outsw/outsl). You can also use "pausing"
16 * versions of the single-IO instructions (inb_p/inw_p/..).
17 *
18 * This file is not meant to be obfuscating: it's just complicated
19 * to (a) handle it all in a way that makes gcc able to optimize it
20 * as well as possible and (b) trying to avoid writing the same thing
21 * over and over again with slight variations and possibly making a
22 * mistake somewhere.
23 */
24
25/*
26 * Thanks to James van Artsdalen for a better timing-fix than
27 * the two short jumps: using outb's to a nonexistent port seems
28 * to guarantee better timings even on fast machines.
29 *
30 * On the other hand, I'd like to be sure of a non-existent port:
31 * I feel a bit unsafe about using 0x80 (should be safe, though)
32 *
33 * Linus
34 */
35
36 /*
37 * Bit simplified and optimized by Jan Hubicka
38 * Support of BIGMEM added by Gerhard Wichert, Siemens AG, July 1999.
39 *
40 * isa_memset_io, isa_memcpy_fromio, isa_memcpy_toio added,
41 * isa_read[wl] and isa_write[wl] fixed
42 * - Arnaldo Carvalho de Melo <acme@conectiva.com.br>
43 */
44
45#define IO_SPACE_LIMIT 0xffff
46
Gabe Blackb74308d2012-10-20 12:33:13 +000047#include <asm/types.h>
48
wdenk591dda52002-11-18 00:14:45 +000049#ifdef __KERNEL__
50
wdenk591dda52002-11-18 00:14:45 +000051/*
52 * readX/writeX() are used to access memory mapped devices. On some
53 * architectures the memory mapped IO stuff needs to be accessed
54 * differently. On the x86 architecture, we just read/write the
55 * memory location directly.
56 */
57
Simon Glass4a827682019-02-16 20:24:46 -070058#define readb(addr) (*(volatile u8 *)(uintptr_t)(addr))
59#define readw(addr) (*(volatile u16 *)(uintptr_t)(addr))
60#define readl(addr) (*(volatile u32 *)(uintptr_t)(addr))
61#define readq(addr) (*(volatile u64 *)(uintptr_t)(addr))
wdenk591dda52002-11-18 00:14:45 +000062#define __raw_readb readb
63#define __raw_readw readw
64#define __raw_readl readl
Ivan Gorinov260fa772018-04-06 14:43:04 -070065#define __raw_readq readq
wdenk591dda52002-11-18 00:14:45 +000066
Simon Glass4a827682019-02-16 20:24:46 -070067#define writeb(b, addr) (*(volatile u8 *)(addr) = (b))
68#define writew(b, addr) (*(volatile u16 *)(addr) = (b))
69#define writel(b, addr) (*(volatile u32 *)(addr) = (b))
70#define writeq(b, addr) (*(volatile u64 *)(addr) = (b))
wdenk591dda52002-11-18 00:14:45 +000071#define __raw_writeb writeb
72#define __raw_writew writew
73#define __raw_writel writel
Ivan Gorinov260fa772018-04-06 14:43:04 -070074#define __raw_writeq writeq
wdenk591dda52002-11-18 00:14:45 +000075
76#define memset_io(a,b,c) memset((a),(b),(c))
77#define memcpy_fromio(a,b,c) memcpy((a),(b),(c))
78#define memcpy_toio(a,b,c) memcpy((a),(b),(c))
79
Lukasz Majewski04bd0f12018-03-29 16:41:11 +020080#define out_arch(type, endian, a, v) __raw_write##type(cpu_to_##endian(v), a)
81#define in_arch(type, endian, a) endian##_to_cpu(__raw_read##type(a))
Simon Glassd57ad482014-11-12 22:42:17 -070082
Lukasz Majewski04bd0f12018-03-29 16:41:11 +020083#define out_le64(a, v) out_arch(q, le64, a, v)
84#define out_le32(a, v) out_arch(l, le32, a, v)
85#define out_le16(a, v) out_arch(w, le16, a, v)
Simon Glassd57ad482014-11-12 22:42:17 -070086
Lukasz Majewski04bd0f12018-03-29 16:41:11 +020087#define in_le64(a) in_arch(q, le64, a)
88#define in_le32(a) in_arch(l, le32, a)
89#define in_le16(a) in_arch(w, le16, a)
Simon Glassd57ad482014-11-12 22:42:17 -070090
Lukasz Majewski04bd0f12018-03-29 16:41:11 +020091#define out_be32(a, v) out_arch(l, be32, a, v)
92#define out_be16(a, v) out_arch(w, be16, a, v)
Simon Glassd57ad482014-11-12 22:42:17 -070093
Lukasz Majewski04bd0f12018-03-29 16:41:11 +020094#define in_be32(a) in_arch(l, be32, a)
95#define in_be16(a) in_arch(w, be16, a)
Simon Glassd57ad482014-11-12 22:42:17 -070096
Lukasz Majewski04bd0f12018-03-29 16:41:11 +020097#define out_8(a, v) __raw_writeb(v, a)
98#define in_8(a) __raw_readb(a)
Simon Glassd57ad482014-11-12 22:42:17 -070099
100#define clrbits(type, addr, clear) \
Lukasz Majewski04bd0f12018-03-29 16:41:11 +0200101 out_##type((addr), in_##type(addr) & ~(clear))
Simon Glassd57ad482014-11-12 22:42:17 -0700102
103#define setbits(type, addr, set) \
Lukasz Majewski04bd0f12018-03-29 16:41:11 +0200104 out_##type((addr), in_##type(addr) | (set))
Simon Glassd57ad482014-11-12 22:42:17 -0700105
106#define clrsetbits(type, addr, clear, set) \
Lukasz Majewski04bd0f12018-03-29 16:41:11 +0200107 out_##type((addr), (in_##type(addr) & ~(clear)) | (set))
Simon Glassd57ad482014-11-12 22:42:17 -0700108
109#define clrbits_be32(addr, clear) clrbits(be32, addr, clear)
110#define setbits_be32(addr, set) setbits(be32, addr, set)
111#define clrsetbits_be32(addr, clear, set) clrsetbits(be32, addr, clear, set)
112
113#define clrbits_le32(addr, clear) clrbits(le32, addr, clear)
114#define setbits_le32(addr, set) setbits(le32, addr, set)
115#define clrsetbits_le32(addr, clear, set) clrsetbits(le32, addr, clear, set)
116
117#define clrbits_be16(addr, clear) clrbits(be16, addr, clear)
118#define setbits_be16(addr, set) setbits(be16, addr, set)
119#define clrsetbits_be16(addr, clear, set) clrsetbits(be16, addr, clear, set)
120
121#define clrbits_le16(addr, clear) clrbits(le16, addr, clear)
122#define setbits_le16(addr, set) setbits(le16, addr, set)
123#define clrsetbits_le16(addr, clear, set) clrsetbits(le16, addr, clear, set)
124
125#define clrbits_8(addr, clear) clrbits(8, addr, clear)
126#define setbits_8(addr, set) setbits(8, addr, set)
127#define clrsetbits_8(addr, clear, set) clrsetbits(8, addr, clear, set)
128
wdenk591dda52002-11-18 00:14:45 +0000129#endif /* __KERNEL__ */
130
131#ifdef SLOW_IO_BY_JUMPING
132#define __SLOW_DOWN_IO "\njmp 1f\n1:\tjmp 1f\n1:"
133#else
Stefan Reinauer87583072012-10-20 12:33:16 +0000134#define __SLOW_DOWN_IO "\noutb %%al,$0xed"
wdenk591dda52002-11-18 00:14:45 +0000135#endif
136
137#ifdef REALLY_SLOW_IO
138#define __FULL_SLOW_DOWN_IO __SLOW_DOWN_IO __SLOW_DOWN_IO __SLOW_DOWN_IO __SLOW_DOWN_IO
139#else
140#define __FULL_SLOW_DOWN_IO __SLOW_DOWN_IO
141#endif
142
wdenk591dda52002-11-18 00:14:45 +0000143/*
144 * Talk about misusing macros..
145 */
146#define __OUT1(s,x) \
Simon Glassb41d2e312016-03-11 22:07:07 -0700147static inline void _out##s(unsigned x value, unsigned short port) {
wdenk591dda52002-11-18 00:14:45 +0000148
149#define __OUT2(s,s1,s2) \
150__asm__ __volatile__ ("out" #s " %" s1 "0,%" s2 "1"
151
wdenk591dda52002-11-18 00:14:45 +0000152#define __OUT(s,s1,x) \
153__OUT1(s,x) __OUT2(s,s1,"w") : : "a" (value), "Nd" (port)); } \
wdenk57b2d802003-06-27 21:31:46 +0000154__OUT1(s##_p,x) __OUT2(s,s1,"w") __FULL_SLOW_DOWN_IO : : "a" (value), "Nd" (port));}
wdenk591dda52002-11-18 00:14:45 +0000155
156#define __IN1(s) \
Simon Glassb41d2e312016-03-11 22:07:07 -0700157static inline RETURN_TYPE _in##s(unsigned short port) { RETURN_TYPE _v;
wdenk591dda52002-11-18 00:14:45 +0000158
159#define __IN2(s,s1,s2) \
160__asm__ __volatile__ ("in" #s " %" s2 "1,%" s1 "0"
161
162#define __IN(s,s1,i...) \
163__IN1(s) __IN2(s,s1,"w") : "=a" (_v) : "Nd" (port) ,##i ); return _v; } \
wdenk57b2d802003-06-27 21:31:46 +0000164__IN1(s##_p) __IN2(s,s1,"w") __FULL_SLOW_DOWN_IO : "=a" (_v) : "Nd" (port) ,##i ); return _v; }
wdenk591dda52002-11-18 00:14:45 +0000165
166#define __INS(s) \
167static inline void ins##s(unsigned short port, void * addr, unsigned long count) \
168{ __asm__ __volatile__ ("rep ; ins" #s \
169: "=D" (addr), "=c" (count) : "d" (port),"0" (addr),"1" (count)); }
170
171#define __OUTS(s) \
172static inline void outs##s(unsigned short port, const void * addr, unsigned long count) \
173{ __asm__ __volatile__ ("rep ; outs" #s \
174: "=S" (addr), "=c" (count) : "d" (port),"0" (addr),"1" (count)); }
175
176#define RETURN_TYPE unsigned char
177__IN(b,"")
178#undef RETURN_TYPE
179#define RETURN_TYPE unsigned short
180__IN(w,"")
181#undef RETURN_TYPE
182#define RETURN_TYPE unsigned int
183__IN(l,"")
184#undef RETURN_TYPE
185
Simon Glassb41d2e312016-03-11 22:07:07 -0700186#define inb(port) _inb((uintptr_t)(port))
187#define inw(port) _inw((uintptr_t)(port))
188#define inl(port) _inl((uintptr_t)(port))
189
wdenk591dda52002-11-18 00:14:45 +0000190__OUT(b,"b",char)
191__OUT(w,"w",short)
192__OUT(l,,int)
193
Simon Glassb41d2e312016-03-11 22:07:07 -0700194#define outb(val, port) _outb(val, (uintptr_t)(port))
195#define outw(val, port) _outw(val, (uintptr_t)(port))
196#define outl(val, port) _outl(val, (uintptr_t)(port))
197
wdenk591dda52002-11-18 00:14:45 +0000198__INS(b)
199__INS(w)
200__INS(l)
Igor Prusova94fed42023-11-14 14:02:46 +0300201#define insb insb
202#define insw insw
203#define insl insl
wdenk591dda52002-11-18 00:14:45 +0000204
205__OUTS(b)
206__OUTS(w)
207__OUTS(l)
Igor Prusova94fed42023-11-14 14:02:46 +0300208#define outsb outsb
209#define outsw outsw
210#define outsl outsl
wdenk591dda52002-11-18 00:14:45 +0000211
Simon Glassc6c29972016-03-11 22:07:06 -0700212/* IO space accessors */
213#define clrio(type, addr, clear) \
214 out##type(in##type(addr) & ~(clear), (addr))
215
216#define setio(type, addr, set) \
217 out##type(in##type(addr) | (set), (addr))
218
219#define clrsetio(type, addr, clear, set) \
220 out##type((in##type(addr) & ~(clear)) | (set), (addr))
221
222#define clrio_32(addr, clear) clrio(l, addr, clear)
223#define clrio_16(addr, clear) clrio(w, addr, clear)
224#define clrio_8(addr, clear) clrio(b, addr, clear)
225
226#define setio_32(addr, set) setio(l, addr, set)
227#define setio_16(addr, set) setio(w, addr, set)
228#define setio_8(addr, set) setio(b, addr, set)
229
230#define clrsetio_32(addr, clear, set) clrsetio(l, addr, clear, set)
231#define clrsetio_16(addr, clear, set) clrsetio(w, addr, clear, set)
232#define clrsetio_8(addr, clear, set) clrsetio(b, addr, clear, set)
233
Haiying Wangc123a382007-02-21 16:52:31 +0100234static inline void sync(void)
235{
236}
237
Haavard Skinnemoenf9855512007-12-13 12:56:33 +0100238/*
Simon Glassbc474092012-10-10 13:12:53 +0000239 * TODO: The kernel offers some more advanced versions of barriers, it might
240 * have some advantages to use them instead of the simple one here.
241 */
242#define dmb() __asm__ __volatile__ ("" : : : "memory")
243#define __iormb() dmb()
244#define __iowmb() dmb()
245
Bin Meng59c4aa42018-10-15 02:21:16 -0700246/*
247 * Read/write from/to an (offsettable) iomem cookie. It might be a PIO
248 * access or a MMIO access, these functions don't care. The info is
249 * encoded in the hardware mapping set up by the mapping functions
250 * (or the cookie itself, depending on implementation and hw).
251 *
252 * The generic routines don't assume any hardware mappings, and just
253 * encode the PIO/MMIO as part of the cookie. They coldly assume that
254 * the MMIO IO mappings are not in the low address range.
255 *
256 * Architectures for which this is not true can't use this generic
257 * implementation and should do their own copy.
258 */
259
260/*
261 * We assume that all the low physical PIO addresses (0-0xffff) always
262 * PIO. That means we can do some sanity checks on the low bits, and
263 * don't need to just take things for granted.
264 */
265#define PIO_RESERVED 0x10000UL
266
267/*
268 * Ugly macros are a way of life.
269 */
270#define IO_COND(addr, is_pio, is_mmio) do { \
271 unsigned long port = (unsigned long __force)addr; \
272 if (port >= PIO_RESERVED) { \
273 is_mmio; \
274 } else { \
275 is_pio; \
276 } \
277} while (0)
278
279static inline u8 ioread8(const volatile void __iomem *addr)
280{
281 IO_COND(addr, return inb(port), return readb(addr));
282 return 0xff;
283}
284
285static inline u16 ioread16(const volatile void __iomem *addr)
286{
287 IO_COND(addr, return inw(port), return readw(addr));
288 return 0xffff;
289}
290
291static inline u32 ioread32(const volatile void __iomem *addr)
292{
293 IO_COND(addr, return inl(port), return readl(addr));
294 return 0xffffffff;
295}
296
297static inline void iowrite8(u8 value, volatile void __iomem *addr)
298{
299 IO_COND(addr, outb(value, port), writeb(value, addr));
300}
301
302static inline void iowrite16(u16 value, volatile void __iomem *addr)
303{
304 IO_COND(addr, outw(value, port), writew(value, addr));
305}
306
307static inline void iowrite32(u32 value, volatile void __iomem *addr)
308{
309 IO_COND(addr, outl(value, port), writel(value, addr));
310}
311
Paul Burton53eaabe2017-09-14 15:05:08 -0700312#include <asm-generic/io.h>
313
Bin Meng1f380a72017-08-03 22:52:44 -0700314#endif /* _ASM_IO_H */