blob: d1e93284d72a6ebdc4e246732a11e398e6ba5d7f [file] [log] [blame]
Arnd Bergmann3f7e2122009-05-13 22:56:35 +00001/* 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
Michael S. Tsirkin66eab4d2011-11-24 20:45:20 +020022#include <asm-generic/pci_iomap.h>
23
Mike Frysinger35dbc0e2010-10-18 03:09:39 -040024#ifndef mmiowb
Arnd Bergmann3f7e2122009-05-13 22:56:35 +000025#define mmiowb() do {} while (0)
Mike Frysinger35dbc0e2010-10-18 03:09:39 -040026#endif
Arnd Bergmann3f7e2122009-05-13 22:56:35 +000027
28/*****************************************************************************/
29/*
30 * readX/writeX() are used to access memory mapped devices. On some
31 * architectures the memory mapped IO stuff needs to be accessed
32 * differently. On the simple architectures, we just read/write the
33 * memory location directly.
34 */
Mike Frysinger35dbc0e2010-10-18 03:09:39 -040035#ifndef __raw_readb
Arnd Bergmann3f7e2122009-05-13 22:56:35 +000036static inline u8 __raw_readb(const volatile void __iomem *addr)
37{
38 return *(const volatile u8 __force *) addr;
39}
Mike Frysinger35dbc0e2010-10-18 03:09:39 -040040#endif
Arnd Bergmann3f7e2122009-05-13 22:56:35 +000041
Mike Frysinger35dbc0e2010-10-18 03:09:39 -040042#ifndef __raw_readw
Arnd Bergmann3f7e2122009-05-13 22:56:35 +000043static inline u16 __raw_readw(const volatile void __iomem *addr)
44{
45 return *(const volatile u16 __force *) addr;
46}
Mike Frysinger35dbc0e2010-10-18 03:09:39 -040047#endif
Arnd Bergmann3f7e2122009-05-13 22:56:35 +000048
Mike Frysinger35dbc0e2010-10-18 03:09:39 -040049#ifndef __raw_readl
Arnd Bergmann3f7e2122009-05-13 22:56:35 +000050static inline u32 __raw_readl(const volatile void __iomem *addr)
51{
52 return *(const volatile u32 __force *) addr;
53}
Mike Frysinger35dbc0e2010-10-18 03:09:39 -040054#endif
Arnd Bergmann3f7e2122009-05-13 22:56:35 +000055
56#define readb __raw_readb
57#define readw(addr) __le16_to_cpu(__raw_readw(addr))
58#define readl(addr) __le32_to_cpu(__raw_readl(addr))
59
Mike Frysinger35dbc0e2010-10-18 03:09:39 -040060#ifndef __raw_writeb
Arnd Bergmann3f7e2122009-05-13 22:56:35 +000061static inline void __raw_writeb(u8 b, volatile void __iomem *addr)
62{
63 *(volatile u8 __force *) addr = b;
64}
Mike Frysinger35dbc0e2010-10-18 03:09:39 -040065#endif
Arnd Bergmann3f7e2122009-05-13 22:56:35 +000066
Mike Frysinger35dbc0e2010-10-18 03:09:39 -040067#ifndef __raw_writew
Arnd Bergmann3f7e2122009-05-13 22:56:35 +000068static inline void __raw_writew(u16 b, volatile void __iomem *addr)
69{
70 *(volatile u16 __force *) addr = b;
71}
Mike Frysinger35dbc0e2010-10-18 03:09:39 -040072#endif
Arnd Bergmann3f7e2122009-05-13 22:56:35 +000073
Mike Frysinger35dbc0e2010-10-18 03:09:39 -040074#ifndef __raw_writel
Arnd Bergmann3f7e2122009-05-13 22:56:35 +000075static inline void __raw_writel(u32 b, volatile void __iomem *addr)
76{
77 *(volatile u32 __force *) addr = b;
78}
Mike Frysinger35dbc0e2010-10-18 03:09:39 -040079#endif
Arnd Bergmann3f7e2122009-05-13 22:56:35 +000080
81#define writeb __raw_writeb
82#define writew(b,addr) __raw_writew(__cpu_to_le16(b),addr)
83#define writel(b,addr) __raw_writel(__cpu_to_le32(b),addr)
84
85#ifdef CONFIG_64BIT
Jan Glaubercd248342012-11-29 12:50:30 +010086#ifndef __raw_readq
Arnd Bergmann3f7e2122009-05-13 22:56:35 +000087static inline u64 __raw_readq(const volatile void __iomem *addr)
88{
89 return *(const volatile u64 __force *) addr;
90}
Jan Glaubercd248342012-11-29 12:50:30 +010091#endif
92
Arnd Bergmann3f7e2122009-05-13 22:56:35 +000093#define readq(addr) __le64_to_cpu(__raw_readq(addr))
94
Jan Glaubercd248342012-11-29 12:50:30 +010095#ifndef __raw_writeq
Arnd Bergmann3f7e2122009-05-13 22:56:35 +000096static inline void __raw_writeq(u64 b, volatile void __iomem *addr)
97{
98 *(volatile u64 __force *) addr = b;
99}
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000100#endif
101
Jan Glaubercd248342012-11-29 12:50:30 +0100102#define writeq(b, addr) __raw_writeq(__cpu_to_le64(b), addr)
103#endif /* CONFIG_64BIT */
104
GuanXuetao7dc59bd2011-02-22 19:06:43 +0800105#ifndef PCI_IOBASE
106#define PCI_IOBASE ((void __iomem *) 0)
107#endif
108
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000109/*****************************************************************************/
110/*
111 * traditional input/output functions
112 */
113
114static inline u8 inb(unsigned long addr)
115{
GuanXuetao7dc59bd2011-02-22 19:06:43 +0800116 return readb(addr + PCI_IOBASE);
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000117}
118
119static inline u16 inw(unsigned long addr)
120{
GuanXuetao7dc59bd2011-02-22 19:06:43 +0800121 return readw(addr + PCI_IOBASE);
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000122}
123
124static inline u32 inl(unsigned long addr)
125{
GuanXuetao7dc59bd2011-02-22 19:06:43 +0800126 return readl(addr + PCI_IOBASE);
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000127}
128
129static inline void outb(u8 b, unsigned long addr)
130{
GuanXuetao7dc59bd2011-02-22 19:06:43 +0800131 writeb(b, addr + PCI_IOBASE);
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000132}
133
134static inline void outw(u16 b, unsigned long addr)
135{
GuanXuetao7dc59bd2011-02-22 19:06:43 +0800136 writew(b, addr + PCI_IOBASE);
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000137}
138
139static inline void outl(u32 b, unsigned long addr)
140{
GuanXuetao7dc59bd2011-02-22 19:06:43 +0800141 writel(b, addr + PCI_IOBASE);
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000142}
143
144#define inb_p(addr) inb(addr)
145#define inw_p(addr) inw(addr)
146#define inl_p(addr) inl(addr)
147#define outb_p(x, addr) outb((x), (addr))
148#define outw_p(x, addr) outw((x), (addr))
149#define outl_p(x, addr) outl((x), (addr))
150
Mike Frysinger35dbc0e2010-10-18 03:09:39 -0400151#ifndef insb
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000152static inline void insb(unsigned long addr, void *buffer, int count)
153{
154 if (count) {
155 u8 *buf = buffer;
156 do {
Will Deacon41739ee2012-12-17 15:59:42 -0800157 u8 x = __raw_readb(addr + PCI_IOBASE);
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000158 *buf++ = x;
159 } while (--count);
160 }
161}
Mike Frysinger35dbc0e2010-10-18 03:09:39 -0400162#endif
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000163
Mike Frysinger35dbc0e2010-10-18 03:09:39 -0400164#ifndef insw
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000165static inline void insw(unsigned long addr, void *buffer, int count)
166{
167 if (count) {
168 u16 *buf = buffer;
169 do {
Will Deacon41739ee2012-12-17 15:59:42 -0800170 u16 x = __raw_readw(addr + PCI_IOBASE);
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000171 *buf++ = x;
172 } while (--count);
173 }
174}
Mike Frysinger35dbc0e2010-10-18 03:09:39 -0400175#endif
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000176
Mike Frysinger35dbc0e2010-10-18 03:09:39 -0400177#ifndef insl
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000178static inline void insl(unsigned long addr, void *buffer, int count)
179{
180 if (count) {
181 u32 *buf = buffer;
182 do {
Will Deacon41739ee2012-12-17 15:59:42 -0800183 u32 x = __raw_readl(addr + PCI_IOBASE);
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000184 *buf++ = x;
185 } while (--count);
186 }
187}
Mike Frysinger35dbc0e2010-10-18 03:09:39 -0400188#endif
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000189
Mike Frysinger35dbc0e2010-10-18 03:09:39 -0400190#ifndef outsb
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000191static inline void outsb(unsigned long addr, const void *buffer, int count)
192{
193 if (count) {
194 const u8 *buf = buffer;
195 do {
Will Deacon41739ee2012-12-17 15:59:42 -0800196 __raw_writeb(*buf++, addr + PCI_IOBASE);
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000197 } while (--count);
198 }
199}
Mike Frysinger35dbc0e2010-10-18 03:09:39 -0400200#endif
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000201
Mike Frysinger35dbc0e2010-10-18 03:09:39 -0400202#ifndef outsw
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000203static inline void outsw(unsigned long addr, const void *buffer, int count)
204{
205 if (count) {
206 const u16 *buf = buffer;
207 do {
Will Deacon41739ee2012-12-17 15:59:42 -0800208 __raw_writew(*buf++, addr + PCI_IOBASE);
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000209 } while (--count);
210 }
211}
Mike Frysinger35dbc0e2010-10-18 03:09:39 -0400212#endif
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000213
Mike Frysinger35dbc0e2010-10-18 03:09:39 -0400214#ifndef outsl
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000215static inline void outsl(unsigned long addr, const void *buffer, int count)
216{
217 if (count) {
218 const u32 *buf = buffer;
219 do {
Will Deacon41739ee2012-12-17 15:59:42 -0800220 __raw_writel(*buf++, addr + PCI_IOBASE);
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000221 } while (--count);
222 }
223}
Mike Frysinger35dbc0e2010-10-18 03:09:39 -0400224#endif
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000225
Mike Frysingerefb2d312010-10-26 21:52:59 -0400226static inline void readsl(const void __iomem *addr, void *buf, int len)
227{
GuanXuetao7dc59bd2011-02-22 19:06:43 +0800228 insl(addr - PCI_IOBASE, buf, len);
Mike Frysingerefb2d312010-10-26 21:52:59 -0400229}
230
231static inline void readsw(const void __iomem *addr, void *buf, int len)
232{
GuanXuetao7dc59bd2011-02-22 19:06:43 +0800233 insw(addr - PCI_IOBASE, buf, len);
Mike Frysingerefb2d312010-10-26 21:52:59 -0400234}
235
236static inline void readsb(const void __iomem *addr, void *buf, int len)
237{
GuanXuetao7dc59bd2011-02-22 19:06:43 +0800238 insb(addr - PCI_IOBASE, buf, len);
Mike Frysingerefb2d312010-10-26 21:52:59 -0400239}
240
241static inline void writesl(const void __iomem *addr, const void *buf, int len)
242{
GuanXuetao7dc59bd2011-02-22 19:06:43 +0800243 outsl(addr - PCI_IOBASE, buf, len);
Mike Frysingerefb2d312010-10-26 21:52:59 -0400244}
245
246static inline void writesw(const void __iomem *addr, const void *buf, int len)
247{
GuanXuetao7dc59bd2011-02-22 19:06:43 +0800248 outsw(addr - PCI_IOBASE, buf, len);
Mike Frysingerefb2d312010-10-26 21:52:59 -0400249}
250
251static inline void writesb(const void __iomem *addr, const void *buf, int len)
252{
GuanXuetao7dc59bd2011-02-22 19:06:43 +0800253 outsb(addr - PCI_IOBASE, buf, len);
Mike Frysingerefb2d312010-10-26 21:52:59 -0400254}
255
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000256#ifndef CONFIG_GENERIC_IOMAP
257#define ioread8(addr) readb(addr)
258#define ioread16(addr) readw(addr)
Mike Frysinger7387be32010-08-09 17:20:17 -0700259#define ioread16be(addr) be16_to_cpu(ioread16(addr))
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000260#define ioread32(addr) readl(addr)
Mike Frysinger7387be32010-08-09 17:20:17 -0700261#define ioread32be(addr) be32_to_cpu(ioread32(addr))
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000262
263#define iowrite8(v, addr) writeb((v), (addr))
264#define iowrite16(v, addr) writew((v), (addr))
Mike Frysinger7387be32010-08-09 17:20:17 -0700265#define iowrite16be(v, addr) iowrite16(be16_to_cpu(v), (addr))
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000266#define iowrite32(v, addr) writel((v), (addr))
Mike Frysinger7387be32010-08-09 17:20:17 -0700267#define iowrite32be(v, addr) iowrite32(be32_to_cpu(v), (addr))
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000268
269#define ioread8_rep(p, dst, count) \
270 insb((unsigned long) (p), (dst), (count))
271#define ioread16_rep(p, dst, count) \
272 insw((unsigned long) (p), (dst), (count))
273#define ioread32_rep(p, dst, count) \
274 insl((unsigned long) (p), (dst), (count))
275
276#define iowrite8_rep(p, src, count) \
277 outsb((unsigned long) (p), (src), (count))
278#define iowrite16_rep(p, src, count) \
279 outsw((unsigned long) (p), (src), (count))
280#define iowrite32_rep(p, src, count) \
281 outsl((unsigned long) (p), (src), (count))
282#endif /* CONFIG_GENERIC_IOMAP */
283
GuanXuetao7dc59bd2011-02-22 19:06:43 +0800284#ifndef IO_SPACE_LIMIT
285#define IO_SPACE_LIMIT 0xffff
286#endif
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000287
288#ifdef __KERNEL__
289
290#include <linux/vmalloc.h>
291#define __io_virt(x) ((void __force *) (x))
292
293#ifndef CONFIG_GENERIC_IOMAP
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000294struct pci_dev;
Jan Glaubercd248342012-11-29 12:50:30 +0100295extern void __iomem *pci_iomap(struct pci_dev *dev, int bar, unsigned long max);
296
297#ifndef pci_iounmap
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000298static inline void pci_iounmap(struct pci_dev *dev, void __iomem *p)
299{
300}
Jan Glaubercd248342012-11-29 12:50:30 +0100301#endif
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000302#endif /* CONFIG_GENERIC_IOMAP */
303
304/*
305 * Change virtual addresses to physical addresses and vv.
306 * These are pretty trivial
307 */
Jan Glaubercd248342012-11-29 12:50:30 +0100308#ifndef virt_to_phys
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000309static inline unsigned long virt_to_phys(volatile void *address)
310{
311 return __pa((unsigned long)address);
312}
313
314static inline void *phys_to_virt(unsigned long address)
315{
316 return __va(address);
317}
Jan Glaubercd248342012-11-29 12:50:30 +0100318#endif
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000319
320/*
321 * Change "struct page" to physical address.
Jonas Bonnf1ecc692011-07-02 17:17:35 +0200322 *
323 * This implementation is for the no-MMU case only... if you have an MMU
324 * you'll need to provide your own definitions.
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000325 */
Jonas Bonnf1ecc692011-07-02 17:17:35 +0200326#ifndef CONFIG_MMU
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000327static inline void __iomem *ioremap(phys_addr_t offset, unsigned long size)
328{
329 return (void __iomem*) (unsigned long)offset;
330}
331
332#define __ioremap(offset, size, flags) ioremap(offset, size)
333
334#ifndef ioremap_nocache
335#define ioremap_nocache ioremap
336#endif
337
338#ifndef ioremap_wc
339#define ioremap_wc ioremap_nocache
340#endif
341
Mark Saltere66d3c42011-10-04 09:25:56 -0400342static inline void iounmap(void __iomem *addr)
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000343{
344}
Jonas Bonnf1ecc692011-07-02 17:17:35 +0200345#endif /* CONFIG_MMU */
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000346
Jonas Bonn82ed2232011-07-02 17:23:29 +0200347#ifdef CONFIG_HAS_IOPORT
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000348#ifndef CONFIG_GENERIC_IOMAP
349static inline void __iomem *ioport_map(unsigned long port, unsigned int nr)
350{
351 return (void __iomem *) port;
352}
353
354static inline void ioport_unmap(void __iomem *p)
355{
356}
357#else /* CONFIG_GENERIC_IOMAP */
358extern void __iomem *ioport_map(unsigned long port, unsigned int nr);
359extern void ioport_unmap(void __iomem *p);
360#endif /* CONFIG_GENERIC_IOMAP */
Jonas Bonn82ed2232011-07-02 17:23:29 +0200361#endif /* CONFIG_HAS_IOPORT */
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000362
363#define xlate_dev_kmem_ptr(p) p
Jonas Bonnf1ecc692011-07-02 17:17:35 +0200364#define xlate_dev_mem_ptr(p) __va(p)
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000365
366#ifndef virt_to_bus
367static inline unsigned long virt_to_bus(volatile void *address)
368{
369 return ((unsigned long) address);
370}
371
372static inline void *bus_to_virt(unsigned long address)
373{
374 return (void *) address;
375}
376#endif
377
Jan Glaubercd248342012-11-29 12:50:30 +0100378#ifndef memset_io
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000379#define memset_io(a, b, c) memset(__io_virt(a), (b), (c))
Jan Glaubercd248342012-11-29 12:50:30 +0100380#endif
381
382#ifndef memcpy_fromio
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000383#define memcpy_fromio(a, b, c) memcpy((a), __io_virt(b), (c))
Jan Glaubercd248342012-11-29 12:50:30 +0100384#endif
385#ifndef memcpy_toio
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000386#define memcpy_toio(a, b, c) memcpy(__io_virt(a), (b), (c))
Jan Glaubercd248342012-11-29 12:50:30 +0100387#endif
Arnd Bergmann3f7e2122009-05-13 22:56:35 +0000388
389#endif /* __KERNEL__ */
390
391#endif /* __ASM_GENERIC_IO_H */