• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * IO definitions for the Hexagon architecture
4  *
5  * Copyright (c) 2010-2013, The Linux Foundation. All rights reserved.
6  */
7 
8 #ifndef _ASM_IO_H
9 #define _ASM_IO_H
10 
11 #ifdef __KERNEL__
12 
13 #include <linux/types.h>
14 #include <asm/iomap.h>
15 #include <asm/page.h>
16 #include <asm/cacheflush.h>
17 
18 /*
19  * We don't have PCI yet.
20  * _IO_BASE is pointing at what should be unused virtual space.
21  */
22 #define IO_SPACE_LIMIT 0xffff
23 #define _IO_BASE ((void __iomem *)0xfe000000)
24 
25 #define IOMEM(x)        ((void __force __iomem *)(x))
26 
27 extern int remap_area_pages(unsigned long start, unsigned long phys_addr,
28 				unsigned long end, unsigned long flags);
29 
30 extern void __iounmap(const volatile void __iomem *addr);
31 
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);
35 
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);
38 
39 #define readsw(p, d, l)	__raw_readsw(p, d, l)
40 #define writesw(p, d, l) __raw_writesw(p, d, l)
41 
42 #define readsl(p, d, l)   __raw_readsl(p, d, l)
43 #define writesl(p, d, l)  __raw_writesl(p, d, l)
44 
45 /*
46  * virt_to_phys - map virtual address to physical
47  * @address:  address to map
48  */
virt_to_phys(volatile void * address)49 static inline unsigned long virt_to_phys(volatile void *address)
50 {
51 	return __pa(address);
52 }
53 
54 /*
55  * phys_to_virt - map physical address to virtual
56  * @address: address to map
57  */
phys_to_virt(unsigned long address)58 static inline void *phys_to_virt(unsigned long address)
59 {
60 	return __va(address);
61 }
62 
63 /*
64  * convert a physical pointer to a virtual kernel pointer for
65  * /dev/mem access.
66  */
67 #define xlate_dev_kmem_ptr(p)    __va(p)
68 #define xlate_dev_mem_ptr(p)    __va(p)
69 
70 /*
71  * IO port access primitives.  Hexagon doesn't have special IO access
72  * instructions; all I/O is memory mapped.
73  *
74  * in/out are used for "ports", but we don't have "port instructions",
75  * so these are really just memory mapped too.
76  */
77 
78 /*
79  * readb - read byte from memory mapped device
80  * @addr:  pointer to memory
81  *
82  * Operates on "I/O bus memory space"
83  */
readb(const volatile void __iomem * addr)84 static inline u8 readb(const volatile void __iomem *addr)
85 {
86 	u8 val;
87 	asm volatile(
88 		"%0 = memb(%1);"
89 		: "=&r" (val)
90 		: "r" (addr)
91 	);
92 	return val;
93 }
94 
readw(const volatile void __iomem * addr)95 static inline u16 readw(const volatile void __iomem *addr)
96 {
97 	u16 val;
98 	asm volatile(
99 		"%0 = memh(%1);"
100 		: "=&r" (val)
101 		: "r" (addr)
102 	);
103 	return val;
104 }
105 
readl(const volatile void __iomem * addr)106 static inline u32 readl(const volatile void __iomem *addr)
107 {
108 	u32 val;
109 	asm volatile(
110 		"%0 = memw(%1);"
111 		: "=&r" (val)
112 		: "r" (addr)
113 	);
114 	return val;
115 }
116 
117 /*
118  * writeb - write a byte to a memory location
119  * @data: data to write to
120  * @addr:  pointer to memory
121  *
122  */
writeb(u8 data,volatile void __iomem * addr)123 static inline void writeb(u8 data, volatile void __iomem *addr)
124 {
125 	asm volatile(
126 		"memb(%0) = %1;"
127 		:
128 		: "r" (addr), "r" (data)
129 		: "memory"
130 	);
131 }
132 
writew(u16 data,volatile void __iomem * addr)133 static inline void writew(u16 data, volatile void __iomem *addr)
134 {
135 	asm volatile(
136 		"memh(%0) = %1;"
137 		:
138 		: "r" (addr), "r" (data)
139 		: "memory"
140 	);
141 
142 }
143 
writel(u32 data,volatile void __iomem * addr)144 static inline void writel(u32 data, volatile void __iomem *addr)
145 {
146 	asm volatile(
147 		"memw(%0) = %1;"
148 		:
149 		: "r" (addr), "r" (data)
150 		: "memory"
151 	);
152 }
153 
154 #define __raw_writeb writeb
155 #define __raw_writew writew
156 #define __raw_writel writel
157 
158 #define __raw_readb readb
159 #define __raw_readw readw
160 #define __raw_readl readl
161 
162 /*
163  * http://comments.gmane.org/gmane.linux.ports.arm.kernel/117626
164  */
165 
166 #define readb_relaxed __raw_readb
167 #define readw_relaxed __raw_readw
168 #define readl_relaxed __raw_readl
169 
170 #define writeb_relaxed __raw_writeb
171 #define writew_relaxed __raw_writew
172 #define writel_relaxed __raw_writel
173 
174 void __iomem *ioremap(unsigned long phys_addr, unsigned long size);
175 #define ioremap_nocache ioremap
176 #define ioremap_uc(X, Y) ioremap((X), (Y))
177 
178 
iounmap(volatile void __iomem * addr)179 static inline void iounmap(volatile void __iomem *addr)
180 {
181 	__iounmap(addr);
182 }
183 
184 #define __raw_writel writel
185 
memcpy_fromio(void * dst,const volatile void __iomem * src,int count)186 static inline void memcpy_fromio(void *dst, const volatile void __iomem *src,
187 	int count)
188 {
189 	memcpy(dst, (void *) src, count);
190 }
191 
memcpy_toio(volatile void __iomem * dst,const void * src,int count)192 static inline void memcpy_toio(volatile void __iomem *dst, const void *src,
193 	int count)
194 {
195 	memcpy((void *) dst, src, count);
196 }
197 
memset_io(volatile void __iomem * addr,int value,size_t size)198 static inline void memset_io(volatile void __iomem *addr, int value,
199 			     size_t size)
200 {
201 	memset((void __force *)addr, value, size);
202 }
203 
204 #define PCI_IO_ADDR	(volatile void __iomem *)
205 
206 /*
207  * inb - read byte from I/O port or something
208  * @port:  address in I/O space
209  *
210  * Operates on "I/O bus I/O space"
211  */
inb(unsigned long port)212 static inline u8 inb(unsigned long port)
213 {
214 	return readb(_IO_BASE + (port & IO_SPACE_LIMIT));
215 }
216 
inw(unsigned long port)217 static inline u16 inw(unsigned long port)
218 {
219 	return readw(_IO_BASE + (port & IO_SPACE_LIMIT));
220 }
221 
inl(unsigned long port)222 static inline u32 inl(unsigned long port)
223 {
224 	return readl(_IO_BASE + (port & IO_SPACE_LIMIT));
225 }
226 
227 /*
228  * outb - write a byte to a memory location
229  * @data: data to write to
230  * @addr:  address in I/O space
231  */
outb(u8 data,unsigned long port)232 static inline void outb(u8 data, unsigned long port)
233 {
234 	writeb(data, _IO_BASE + (port & IO_SPACE_LIMIT));
235 }
236 
outw(u16 data,unsigned long port)237 static inline void outw(u16 data, unsigned long port)
238 {
239 	writew(data, _IO_BASE + (port & IO_SPACE_LIMIT));
240 }
241 
outl(u32 data,unsigned long port)242 static inline void outl(u32 data, unsigned long port)
243 {
244 	writel(data, _IO_BASE + (port & IO_SPACE_LIMIT));
245 }
246 
247 #define outb_p outb
248 #define outw_p outw
249 #define outl_p outl
250 
251 #define inb_p inb
252 #define inw_p inw
253 #define inl_p inl
254 
insb(unsigned long port,void * buffer,int count)255 static inline void insb(unsigned long port, void *buffer, int count)
256 {
257 	if (count) {
258 		u8 *buf = buffer;
259 		do {
260 			u8 x = inb(port);
261 			*buf++ = x;
262 		} while (--count);
263 	}
264 }
265 
insw(unsigned long port,void * buffer,int count)266 static inline void insw(unsigned long port, void *buffer, int count)
267 {
268 	if (count) {
269 		u16 *buf = buffer;
270 		do {
271 			u16 x = inw(port);
272 			*buf++ = x;
273 		} while (--count);
274 	}
275 }
276 
insl(unsigned long port,void * buffer,int count)277 static inline void insl(unsigned long port, void *buffer, int count)
278 {
279 	if (count) {
280 		u32 *buf = buffer;
281 		do {
282 			u32 x = inw(port);
283 			*buf++ = x;
284 		} while (--count);
285 	}
286 }
287 
outsb(unsigned long port,const void * buffer,int count)288 static inline void outsb(unsigned long port, const void *buffer, int count)
289 {
290 	if (count) {
291 		const u8 *buf = buffer;
292 		do {
293 			outb(*buf++, port);
294 		} while (--count);
295 	}
296 }
297 
outsw(unsigned long port,const void * buffer,int count)298 static inline void outsw(unsigned long port, const void *buffer, int count)
299 {
300 	if (count) {
301 		const u16 *buf = buffer;
302 		do {
303 			outw(*buf++, port);
304 		} while (--count);
305 	}
306 }
307 
outsl(unsigned long port,const void * buffer,int count)308 static inline void outsl(unsigned long port, const void *buffer, int count)
309 {
310 	if (count) {
311 		const u32 *buf = buffer;
312 		do {
313 			outl(*buf++, port);
314 		} while (--count);
315 	}
316 }
317 
318 #endif /* __KERNEL__ */
319 
320 #endif
321