blob: 122419f1e6b81184ce77ce242dd7d7fc4764f80e [file] [log] [blame]
wdenk041b1de2002-09-07 21:30:09 +00001/*
2 * linux/include/asm-arm/io.h
3 *
4 * Copyright (C) 1996-2000 Russell King
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * Modifications:
11 * 16-Sep-1996 RMK Inlined the inx/outx functions & optimised for both
12 * constant addresses and variable addresses.
13 * 04-Dec-1997 RMK Moved a lot of this stuff to the new architecture
14 * specific IO header files.
15 * 27-Mar-1999 PJB Second parameter of memcpy_toio is const..
16 * 04-Apr-1999 PJB Added check_signature.
17 * 12-Dec-1999 RMK More cleanups
18 * 18-Jun-2000 RMK Removed virt_to_* and friends definitions
19 */
20#ifndef __ASM_ARM_IO_H
21#define __ASM_ARM_IO_H
22
23#include <linux/types.h>
24#include <asm/byteorder.h>
25#include <asm/memory.h>
26#include <asm/arch/hardware.h>
27
28/*
29 * Generic virtual read/write. Note that we don't support half-word
30 * read/writes. We define __arch_*[bl] here, and leave __arch_*w
31 * to the architecture specific code.
32 */
33#define __arch_getb(a) (*(volatile unsigned char *)(a))
34#define __arch_getl(a) (*(volatile unsigned int *)(a))
35
36#define __arch_putb(v,a) (*(volatile unsigned char *)(a) = (v))
37#define __arch_putl(v,a) (*(volatile unsigned int *)(a) = (v))
38
39extern void __raw_writesb(unsigned int addr, const void *data, int bytelen);
40extern void __raw_writesw(unsigned int addr, const void *data, int wordlen);
41extern void __raw_writesl(unsigned int addr, const void *data, int longlen);
42
43extern void __raw_readsb(unsigned int addr, void *data, int bytelen);
44extern void __raw_readsw(unsigned int addr, void *data, int wordlen);
45extern void __raw_readsl(unsigned int addr, void *data, int longlen);
46
47#define __raw_writeb(v,a) __arch_putb(v,a)
48#define __raw_writew(v,a) __arch_putw(v,a)
49#define __raw_writel(v,a) __arch_putl(v,a)
50
51#define __raw_readb(a) __arch_getb(a)
52#define __raw_readw(a) __arch_getw(a)
53#define __raw_readl(a) __arch_getl(a)
54
55/*
56 * The compiler seems to be incapable of optimising constants
57 * properly. Spell it out to the compiler in some cases.
58 * These are only valid for small values of "off" (< 1<<12)
59 */
60#define __raw_base_writeb(val,base,off) __arch_base_putb(val,base,off)
61#define __raw_base_writew(val,base,off) __arch_base_putw(val,base,off)
62#define __raw_base_writel(val,base,off) __arch_base_putl(val,base,off)
63
64#define __raw_base_readb(base,off) __arch_base_getb(base,off)
65#define __raw_base_readw(base,off) __arch_base_getw(base,off)
66#define __raw_base_readl(base,off) __arch_base_getl(base,off)
67
68/*
69 * Now, pick up the machine-defined IO definitions
70 */
71#include <asm/arch/io.h>
72
73/*
wdenk6b58f332003-03-14 20:47:52 +000074 * IO port access primitives
75 * -------------------------
76 *
77 * The ARM doesn't have special IO access instructions; all IO is memory
78 * mapped. Note that these are defined to perform little endian accesses
79 * only. Their primary purpose is to access PCI and ISA peripherals.
80 *
81 * Note that for a big endian machine, this implies that the following
82 * big endian mode connectivity is in place, as described by numerious
83 * ARM documents:
84 *
85 * PCI: D0-D7 D8-D15 D16-D23 D24-D31
86 * ARM: D24-D31 D16-D23 D8-D15 D0-D7
87 *
88 * The machine specific io.h include defines __io to translate an "IO"
89 * address to a memory address.
wdenk041b1de2002-09-07 21:30:09 +000090 *
91 * Note that we prevent GCC re-ordering or caching values in expressions
92 * by introducing sequence points into the in*() definitions. Note that
93 * __raw_* do not guarantee this behaviour.
wdenk6b58f332003-03-14 20:47:52 +000094 *
95 * The {in,out}[bwl] macros are for emulating x86-style PCI/ISA IO space.
wdenk041b1de2002-09-07 21:30:09 +000096 */
97#ifdef __io
98#define outb(v,p) __raw_writeb(v,__io(p))
wdenk6b58f332003-03-14 20:47:52 +000099#define outw(v,p) __raw_writew(cpu_to_le16(v),__io(p))
100#define outl(v,p) __raw_writel(cpu_to_le32(v),__io(p))
wdenk041b1de2002-09-07 21:30:09 +0000101
wdenk6b58f332003-03-14 20:47:52 +0000102#define inb(p) ({ unsigned int __v = __raw_readb(__io(p)); __v; })
103#define inw(p) ({ unsigned int __v = le16_to_cpu(__raw_readw(__io(p))); __v; })
104#define inl(p) ({ unsigned int __v = le32_to_cpu(__raw_readl(__io(p))); __v; })
wdenk041b1de2002-09-07 21:30:09 +0000105
106#define outsb(p,d,l) __raw_writesb(__io(p),d,l)
107#define outsw(p,d,l) __raw_writesw(__io(p),d,l)
108#define outsl(p,d,l) __raw_writesl(__io(p),d,l)
109
110#define insb(p,d,l) __raw_readsb(__io(p),d,l)
111#define insw(p,d,l) __raw_readsw(__io(p),d,l)
112#define insl(p,d,l) __raw_readsl(__io(p),d,l)
113#endif
114
115#define outb_p(val,port) outb((val),(port))
116#define outw_p(val,port) outw((val),(port))
117#define outl_p(val,port) outl((val),(port))
118#define inb_p(port) inb((port))
119#define inw_p(port) inw((port))
120#define inl_p(port) inl((port))
121
122#define outsb_p(port,from,len) outsb(port,from,len)
123#define outsw_p(port,from,len) outsw(port,from,len)
124#define outsl_p(port,from,len) outsl(port,from,len)
125#define insb_p(port,to,len) insb(port,to,len)
126#define insw_p(port,to,len) insw(port,to,len)
127#define insl_p(port,to,len) insl(port,to,len)
128
129/*
130 * ioremap and friends.
131 *
132 * ioremap takes a PCI memory address, as specified in
133 * linux/Documentation/IO-mapping.txt. If you want a
134 * physical address, use __ioremap instead.
135 */
136extern void * __ioremap(unsigned long offset, size_t size, unsigned long flags);
137extern void __iounmap(void *addr);
138
139/*
140 * Generic ioremap support.
141 *
142 * Define:
143 * iomem_valid_addr(off,size)
144 * iomem_to_phys(off)
145 */
146#ifdef iomem_valid_addr
147#define __arch_ioremap(off,sz,nocache) \
148 ({ \
149 unsigned long _off = (off), _size = (sz); \
150 void *_ret = (void *)0; \
151 if (iomem_valid_addr(_off, _size)) \
152 _ret = __ioremap(iomem_to_phys(_off),_size,0); \
153 _ret; \
154 })
155
156#define __arch_iounmap __iounmap
157#endif
158
159#define ioremap(off,sz) __arch_ioremap((off),(sz),0)
160#define ioremap_nocache(off,sz) __arch_ioremap((off),(sz),1)
161#define iounmap(_addr) __arch_iounmap(_addr)
162
163/*
164 * DMA-consistent mapping functions. These allocate/free a region of
165 * uncached, unwrite-buffered mapped memory space for use with DMA
166 * devices. This is the "generic" version. The PCI specific version
167 * is in pci.h
168 */
169extern void *consistent_alloc(int gfp, size_t size, dma_addr_t *handle);
170extern void consistent_free(void *vaddr, size_t size, dma_addr_t handle);
171extern void consistent_sync(void *vaddr, size_t size, int rw);
172
173/*
174 * String version of IO memory access ops:
175 */
176extern void _memcpy_fromio(void *, unsigned long, size_t);
177extern void _memcpy_toio(unsigned long, const void *, size_t);
178extern void _memset_io(unsigned long, int, size_t);
179
180extern void __readwrite_bug(const char *fn);
181
182/*
183 * If this architecture has PCI memory IO, then define the read/write
184 * macros. These should only be used with the cookie passed from
185 * ioremap.
186 */
187#ifdef __mem_pci
188
wdenk6b58f332003-03-14 20:47:52 +0000189#define readb(c) ({ unsigned int __v = __raw_readb(__mem_pci(c)); __v; })
190#define readw(c) ({ unsigned int __v = le16_to_cpu(__raw_readw(__mem_pci(c))); __v; })
191#define readl(c) ({ unsigned int __v = le32_to_cpu(__raw_readl(__mem_pci(c))); __v; })
wdenk041b1de2002-09-07 21:30:09 +0000192
wdenk6b58f332003-03-14 20:47:52 +0000193#define writeb(v,c) __raw_writeb(v,__mem_pci(c))
194#define writew(v,c) __raw_writew(cpu_to_le16(v),__mem_pci(c))
195#define writel(v,c) __raw_writel(cpu_to_le32(v),__mem_pci(c))
wdenk041b1de2002-09-07 21:30:09 +0000196
wdenk6b58f332003-03-14 20:47:52 +0000197#define memset_io(c,v,l) _memset_io(__mem_pci(c),(v),(l))
198#define memcpy_fromio(a,c,l) _memcpy_fromio((a),__mem_pci(c),(l))
199#define memcpy_toio(c,a,l) _memcpy_toio(__mem_pci(c),(a),(l))
wdenk041b1de2002-09-07 21:30:09 +0000200
wdenk6b58f332003-03-14 20:47:52 +0000201#define eth_io_copy_and_sum(s,c,l,b) \
202 eth_copy_and_sum((s),__mem_pci(c),(l),(b))
wdenk041b1de2002-09-07 21:30:09 +0000203
204static inline int
205check_signature(unsigned long io_addr, const unsigned char *signature,
206 int length)
207{
208 int retval = 0;
209 do {
210 if (readb(io_addr) != *signature)
211 goto out;
212 io_addr++;
213 signature++;
214 length--;
215 } while (length);
216 retval = 1;
217out:
218 return retval;
219}
220
221#elif !defined(readb)
222
223#define readb(addr) (__readwrite_bug("readb"),0)
224#define readw(addr) (__readwrite_bug("readw"),0)
225#define readl(addr) (__readwrite_bug("readl"),0)
226#define writeb(v,addr) __readwrite_bug("writeb")
227#define writew(v,addr) __readwrite_bug("writew")
228#define writel(v,addr) __readwrite_bug("writel")
229
230#define eth_io_copy_and_sum(a,b,c,d) __readwrite_bug("eth_io_copy_and_sum")
231
232#define check_signature(io,sig,len) (0)
233
234#endif /* __mem_pci */
235
236/*
wdenk041b1de2002-09-07 21:30:09 +0000237 * If this architecture has ISA IO, then define the isa_read/isa_write
238 * macros.
239 */
240#ifdef __mem_isa
241
242#define isa_readb(addr) __raw_readb(__mem_isa(addr))
243#define isa_readw(addr) __raw_readw(__mem_isa(addr))
244#define isa_readl(addr) __raw_readl(__mem_isa(addr))
245#define isa_writeb(val,addr) __raw_writeb(val,__mem_isa(addr))
246#define isa_writew(val,addr) __raw_writew(val,__mem_isa(addr))
247#define isa_writel(val,addr) __raw_writel(val,__mem_isa(addr))
248#define isa_memset_io(a,b,c) _memset_io(__mem_isa(a),(b),(c))
249#define isa_memcpy_fromio(a,b,c) _memcpy_fromio((a),__mem_isa(b),(c))
250#define isa_memcpy_toio(a,b,c) _memcpy_toio(__mem_isa((a)),(b),(c))
251
252#define isa_eth_io_copy_and_sum(a,b,c,d) \
253 eth_copy_and_sum((a),__mem_isa(b),(c),(d))
254
wdenk6b58f332003-03-14 20:47:52 +0000255#ifndef PCI_MEMORY_VADDR /* XXX problem not understood -- wd */
256#define PCI_MEMORY_VADDR 0
257#endif /* XXX */
258
wdenk041b1de2002-09-07 21:30:09 +0000259static inline int
260isa_check_signature(unsigned long io_addr, const unsigned char *signature,
261 int length)
262{
263 int retval = 0;
264 do {
265 if (isa_readb(io_addr) != *signature)
266 goto out;
267 io_addr++;
268 signature++;
269 length--;
270 } while (length);
271 retval = 1;
272out:
273 return retval;
274}
275
276#else /* __mem_isa */
277
278#define isa_readb(addr) (__readwrite_bug("isa_readb"),0)
279#define isa_readw(addr) (__readwrite_bug("isa_readw"),0)
280#define isa_readl(addr) (__readwrite_bug("isa_readl"),0)
281#define isa_writeb(val,addr) __readwrite_bug("isa_writeb")
282#define isa_writew(val,addr) __readwrite_bug("isa_writew")
283#define isa_writel(val,addr) __readwrite_bug("isa_writel")
284#define isa_memset_io(a,b,c) __readwrite_bug("isa_memset_io")
285#define isa_memcpy_fromio(a,b,c) __readwrite_bug("isa_memcpy_fromio")
286#define isa_memcpy_toio(a,b,c) __readwrite_bug("isa_memcpy_toio")
287
288#define isa_eth_io_copy_and_sum(a,b,c,d) \
289 __readwrite_bug("isa_eth_io_copy_and_sum")
290
291#define isa_check_signature(io,sig,len) (0)
292
293#endif /* __mem_isa */
294
295#endif /* __ASM_ARM_IO_H */