]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - include/asm-generic/io.h
Linux 2.6.38-rc2
[mirror_ubuntu-zesty-kernel.git] / include / asm-generic / io.h
CommitLineData
3f7e212d
AB
1/* Generic I/O port emulation, based on MN10300 code
2 *
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public Licence
8 * as published by the Free Software Foundation; either version
9 * 2 of the Licence, or (at your option) any later version.
10 */
11#ifndef __ASM_GENERIC_IO_H
12#define __ASM_GENERIC_IO_H
13
14#include <asm/page.h> /* I/O is all done through memory accesses */
15#include <asm/cacheflush.h>
16#include <linux/types.h>
17
18#ifdef CONFIG_GENERIC_IOMAP
19#include <asm-generic/iomap.h>
20#endif
21
35dbc0e0 22#ifndef mmiowb
3f7e212d 23#define mmiowb() do {} while (0)
35dbc0e0 24#endif
3f7e212d
AB
25
26/*****************************************************************************/
27/*
28 * readX/writeX() are used to access memory mapped devices. On some
29 * architectures the memory mapped IO stuff needs to be accessed
30 * differently. On the simple architectures, we just read/write the
31 * memory location directly.
32 */
35dbc0e0 33#ifndef __raw_readb
3f7e212d
AB
34static inline u8 __raw_readb(const volatile void __iomem *addr)
35{
36 return *(const volatile u8 __force *) addr;
37}
35dbc0e0 38#endif
3f7e212d 39
35dbc0e0 40#ifndef __raw_readw
3f7e212d
AB
41static inline u16 __raw_readw(const volatile void __iomem *addr)
42{
43 return *(const volatile u16 __force *) addr;
44}
35dbc0e0 45#endif
3f7e212d 46
35dbc0e0 47#ifndef __raw_readl
3f7e212d
AB
48static inline u32 __raw_readl(const volatile void __iomem *addr)
49{
50 return *(const volatile u32 __force *) addr;
51}
35dbc0e0 52#endif
3f7e212d
AB
53
54#define readb __raw_readb
55#define readw(addr) __le16_to_cpu(__raw_readw(addr))
56#define readl(addr) __le32_to_cpu(__raw_readl(addr))
57
35dbc0e0 58#ifndef __raw_writeb
3f7e212d
AB
59static inline void __raw_writeb(u8 b, volatile void __iomem *addr)
60{
61 *(volatile u8 __force *) addr = b;
62}
35dbc0e0 63#endif
3f7e212d 64
35dbc0e0 65#ifndef __raw_writew
3f7e212d
AB
66static inline void __raw_writew(u16 b, volatile void __iomem *addr)
67{
68 *(volatile u16 __force *) addr = b;
69}
35dbc0e0 70#endif
3f7e212d 71
35dbc0e0 72#ifndef __raw_writel
3f7e212d
AB
73static inline void __raw_writel(u32 b, volatile void __iomem *addr)
74{
75 *(volatile u32 __force *) addr = b;
76}
35dbc0e0 77#endif
3f7e212d
AB
78
79#define writeb __raw_writeb
80#define writew(b,addr) __raw_writew(__cpu_to_le16(b),addr)
81#define writel(b,addr) __raw_writel(__cpu_to_le32(b),addr)
82
83#ifdef CONFIG_64BIT
84static inline u64 __raw_readq(const volatile void __iomem *addr)
85{
86 return *(const volatile u64 __force *) addr;
87}
88#define readq(addr) __le64_to_cpu(__raw_readq(addr))
89
90static inline void __raw_writeq(u64 b, volatile void __iomem *addr)
91{
92 *(volatile u64 __force *) addr = b;
93}
94#define writeq(b,addr) __raw_writeq(__cpu_to_le64(b),addr)
95#endif
96
97/*****************************************************************************/
98/*
99 * traditional input/output functions
100 */
101
102static inline u8 inb(unsigned long addr)
103{
104 return readb((volatile void __iomem *) addr);
105}
106
107static inline u16 inw(unsigned long addr)
108{
109 return readw((volatile void __iomem *) addr);
110}
111
112static inline u32 inl(unsigned long addr)
113{
114 return readl((volatile void __iomem *) addr);
115}
116
117static inline void outb(u8 b, unsigned long addr)
118{
119 writeb(b, (volatile void __iomem *) addr);
120}
121
122static inline void outw(u16 b, unsigned long addr)
123{
124 writew(b, (volatile void __iomem *) addr);
125}
126
127static inline void outl(u32 b, unsigned long addr)
128{
129 writel(b, (volatile void __iomem *) addr);
130}
131
132#define inb_p(addr) inb(addr)
133#define inw_p(addr) inw(addr)
134#define inl_p(addr) inl(addr)
135#define outb_p(x, addr) outb((x), (addr))
136#define outw_p(x, addr) outw((x), (addr))
137#define outl_p(x, addr) outl((x), (addr))
138
35dbc0e0 139#ifndef insb
3f7e212d
AB
140static inline void insb(unsigned long addr, void *buffer, int count)
141{
142 if (count) {
143 u8 *buf = buffer;
144 do {
145 u8 x = inb(addr);
146 *buf++ = x;
147 } while (--count);
148 }
149}
35dbc0e0 150#endif
3f7e212d 151
35dbc0e0 152#ifndef insw
3f7e212d
AB
153static inline void insw(unsigned long addr, void *buffer, int count)
154{
155 if (count) {
156 u16 *buf = buffer;
157 do {
158 u16 x = inw(addr);
159 *buf++ = x;
160 } while (--count);
161 }
162}
35dbc0e0 163#endif
3f7e212d 164
35dbc0e0 165#ifndef insl
3f7e212d
AB
166static inline void insl(unsigned long addr, void *buffer, int count)
167{
168 if (count) {
169 u32 *buf = buffer;
170 do {
171 u32 x = inl(addr);
172 *buf++ = x;
173 } while (--count);
174 }
175}
35dbc0e0 176#endif
3f7e212d 177
35dbc0e0 178#ifndef outsb
3f7e212d
AB
179static inline void outsb(unsigned long addr, const void *buffer, int count)
180{
181 if (count) {
182 const u8 *buf = buffer;
183 do {
184 outb(*buf++, addr);
185 } while (--count);
186 }
187}
35dbc0e0 188#endif
3f7e212d 189
35dbc0e0 190#ifndef outsw
3f7e212d
AB
191static inline void outsw(unsigned long addr, const void *buffer, int count)
192{
193 if (count) {
194 const u16 *buf = buffer;
195 do {
196 outw(*buf++, addr);
197 } while (--count);
198 }
199}
35dbc0e0 200#endif
3f7e212d 201
35dbc0e0 202#ifndef outsl
3f7e212d
AB
203static inline void outsl(unsigned long addr, const void *buffer, int count)
204{
205 if (count) {
206 const u32 *buf = buffer;
207 do {
208 outl(*buf++, addr);
209 } while (--count);
210 }
211}
35dbc0e0 212#endif
3f7e212d 213
efb2d31c
MF
214static inline void readsl(const void __iomem *addr, void *buf, int len)
215{
216 insl((unsigned long)addr, buf, len);
217}
218
219static inline void readsw(const void __iomem *addr, void *buf, int len)
220{
221 insw((unsigned long)addr, buf, len);
222}
223
224static inline void readsb(const void __iomem *addr, void *buf, int len)
225{
226 insb((unsigned long)addr, buf, len);
227}
228
229static inline void writesl(const void __iomem *addr, const void *buf, int len)
230{
231 outsl((unsigned long)addr, buf, len);
232}
233
234static inline void writesw(const void __iomem *addr, const void *buf, int len)
235{
236 outsw((unsigned long)addr, buf, len);
237}
238
239static inline void writesb(const void __iomem *addr, const void *buf, int len)
240{
241 outsb((unsigned long)addr, buf, len);
242}
243
3f7e212d
AB
244#ifndef CONFIG_GENERIC_IOMAP
245#define ioread8(addr) readb(addr)
246#define ioread16(addr) readw(addr)
7387be33 247#define ioread16be(addr) be16_to_cpu(ioread16(addr))
3f7e212d 248#define ioread32(addr) readl(addr)
7387be33 249#define ioread32be(addr) be32_to_cpu(ioread32(addr))
3f7e212d
AB
250
251#define iowrite8(v, addr) writeb((v), (addr))
252#define iowrite16(v, addr) writew((v), (addr))
7387be33 253#define iowrite16be(v, addr) iowrite16(be16_to_cpu(v), (addr))
3f7e212d 254#define iowrite32(v, addr) writel((v), (addr))
7387be33 255#define iowrite32be(v, addr) iowrite32(be32_to_cpu(v), (addr))
3f7e212d
AB
256
257#define ioread8_rep(p, dst, count) \
258 insb((unsigned long) (p), (dst), (count))
259#define ioread16_rep(p, dst, count) \
260 insw((unsigned long) (p), (dst), (count))
261#define ioread32_rep(p, dst, count) \
262 insl((unsigned long) (p), (dst), (count))
263
264#define iowrite8_rep(p, src, count) \
265 outsb((unsigned long) (p), (src), (count))
266#define iowrite16_rep(p, src, count) \
267 outsw((unsigned long) (p), (src), (count))
268#define iowrite32_rep(p, src, count) \
269 outsl((unsigned long) (p), (src), (count))
270#endif /* CONFIG_GENERIC_IOMAP */
271
272
273#define IO_SPACE_LIMIT 0xffffffff
274
275#ifdef __KERNEL__
276
277#include <linux/vmalloc.h>
278#define __io_virt(x) ((void __force *) (x))
279
280#ifndef CONFIG_GENERIC_IOMAP
281/* Create a virtual mapping cookie for a PCI BAR (memory or IO) */
282struct pci_dev;
283extern void __iomem *pci_iomap(struct pci_dev *dev, int bar, unsigned long max);
284static inline void pci_iounmap(struct pci_dev *dev, void __iomem *p)
285{
286}
287#endif /* CONFIG_GENERIC_IOMAP */
288
289/*
290 * Change virtual addresses to physical addresses and vv.
291 * These are pretty trivial
292 */
293static inline unsigned long virt_to_phys(volatile void *address)
294{
295 return __pa((unsigned long)address);
296}
297
298static inline void *phys_to_virt(unsigned long address)
299{
300 return __va(address);
301}
302
303/*
304 * Change "struct page" to physical address.
305 */
306static inline void __iomem *ioremap(phys_addr_t offset, unsigned long size)
307{
308 return (void __iomem*) (unsigned long)offset;
309}
310
311#define __ioremap(offset, size, flags) ioremap(offset, size)
312
313#ifndef ioremap_nocache
314#define ioremap_nocache ioremap
315#endif
316
317#ifndef ioremap_wc
318#define ioremap_wc ioremap_nocache
319#endif
320
321static inline void iounmap(void *addr)
322{
323}
324
325#ifndef CONFIG_GENERIC_IOMAP
326static inline void __iomem *ioport_map(unsigned long port, unsigned int nr)
327{
328 return (void __iomem *) port;
329}
330
331static inline void ioport_unmap(void __iomem *p)
332{
333}
334#else /* CONFIG_GENERIC_IOMAP */
335extern void __iomem *ioport_map(unsigned long port, unsigned int nr);
336extern void ioport_unmap(void __iomem *p);
337#endif /* CONFIG_GENERIC_IOMAP */
338
339#define xlate_dev_kmem_ptr(p) p
340#define xlate_dev_mem_ptr(p) ((void *) (p))
341
342#ifndef virt_to_bus
343static inline unsigned long virt_to_bus(volatile void *address)
344{
345 return ((unsigned long) address);
346}
347
348static inline void *bus_to_virt(unsigned long address)
349{
350 return (void *) address;
351}
352#endif
353
354#define memset_io(a, b, c) memset(__io_virt(a), (b), (c))
355#define memcpy_fromio(a, b, c) memcpy((a), __io_virt(b), (c))
356#define memcpy_toio(a, b, c) memcpy(__io_virt(a), (b), (c))
357
358#endif /* __KERNEL__ */
359
360#endif /* __ASM_GENERIC_IO_H */