blob: 8e7426081f0e031e50ade6379dff630f87e34d90 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/include/asm-arm/arch-ixp4xx/io.h
3 *
4 * Author: Deepak Saxena <dsaxena@plexity.net>
5 *
Deepak Saxena450008b2005-07-06 23:06:05 +01006 * Copyright (C) 2002-2005 MontaVista Software, Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
13#ifndef __ASM_ARM_ARCH_IO_H
14#define __ASM_ARM_ARCH_IO_H
15
Rod Whitby8e936752008-01-29 00:22:57 +010016#include <linux/bitops.h>
17
Russell Kingbe509722008-08-04 10:41:28 +010018#include <asm/arch/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20#define IO_SPACE_LIMIT 0xffff0000
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022extern int (*ixp4xx_pci_read)(u32 addr, u32 cmd, u32* data);
23extern int ixp4xx_pci_write(u32 addr, u32 cmd, u32 data);
24
25
26/*
27 * IXP4xx provides two methods of accessing PCI memory space:
28 *
29 * 1) A direct mapped window from 0x48000000 to 0x4bffffff (64MB).
30 * To access PCI via this space, we simply ioremap() the BAR
31 * into the kernel and we can use the standard read[bwl]/write[bwl]
32 * macros. This is the preffered method due to speed but it
33 * limits the system to just 64MB of PCI memory. This can be
34 * problamatic if using video cards and other memory-heavy
35 * targets.
36 *
37 * 2) If > 64MB of memory space is required, the IXP4xx can be configured
38 * to use indirect registers to access PCI (as we do below for I/O
39 * transactions). This allows for up to 128MB (0x48000000 to 0x4fffffff)
Adrian Bunkfd245f02006-06-30 18:23:39 +020040 * of memory on the bus. The disadvantage of this is that every
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 * PCI access requires three local register accesses plus a spinlock,
42 * but in some cases the performance hit is acceptable. In addition,
43 * you cannot mmap() PCI devices in this case.
44 *
45 */
46#ifndef CONFIG_IXP4XX_INDIRECT_PCI
47
48#define __mem_pci(a) (a)
49
50#else
51
52#include <linux/mm.h>
53
54/*
55 * In the case of using indirect PCI, we simply return the actual PCI
56 * address and our read/write implementation use that to drive the
57 * access registers. If something outside of PCI is ioremap'd, we
58 * fallback to the default.
59 */
60static inline void __iomem *
Russell King3603ab22007-05-05 20:59:27 +010061__ixp4xx_ioremap(unsigned long addr, size_t size, unsigned int mtype)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062{
Ruslan V. Sushko45fba082007-04-06 15:00:31 +010063 if((addr < PCIBIOS_MIN_MEM) || (addr > 0x4fffffff))
Russell King3603ab22007-05-05 20:59:27 +010064 return __arm_ioremap(addr, size, mtype);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Pavel Roskind2936b12007-11-25 02:12:39 +010066 return (void __iomem *)addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067}
68
69static inline void
70__ixp4xx_iounmap(void __iomem *addr)
71{
Pavel Roskind2936b12007-11-25 02:12:39 +010072 if ((__force u32)addr >= VMALLOC_START)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 __iounmap(addr);
74}
75
Russell King67a19012005-11-17 16:48:00 +000076#define __arch_ioremap(a, s, f) __ixp4xx_ioremap(a, s, f)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#define __arch_iounmap(a) __ixp4xx_iounmap(a)
78
John Bowlerbfca9452005-11-02 11:55:12 +000079#define writeb(v, p) __ixp4xx_writeb(v, p)
80#define writew(v, p) __ixp4xx_writew(v, p)
81#define writel(v, p) __ixp4xx_writel(v, p)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83#define writesb(p, v, l) __ixp4xx_writesb(p, v, l)
84#define writesw(p, v, l) __ixp4xx_writesw(p, v, l)
85#define writesl(p, v, l) __ixp4xx_writesl(p, v, l)
86
87#define readb(p) __ixp4xx_readb(p)
88#define readw(p) __ixp4xx_readw(p)
89#define readl(p) __ixp4xx_readl(p)
90
91#define readsb(p, v, l) __ixp4xx_readsb(p, v, l)
92#define readsw(p, v, l) __ixp4xx_readsw(p, v, l)
93#define readsl(p, v, l) __ixp4xx_readsl(p, v, l)
94
95static inline void
John Bowlerbfca9452005-11-02 11:55:12 +000096__ixp4xx_writeb(u8 value, volatile void __iomem *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
John Bowlerbfca9452005-11-02 11:55:12 +000098 u32 addr = (u32)p;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 u32 n, byte_enables, data;
100
101 if (addr >= VMALLOC_START) {
102 __raw_writeb(value, addr);
103 return;
104 }
105
106 n = addr % 4;
107 byte_enables = (0xf & ~BIT(n)) << IXP4XX_PCI_NP_CBE_BESL;
108 data = value << (8*n);
109 ixp4xx_pci_write(addr, byte_enables | NP_CMD_MEMWRITE, data);
110}
111
112static inline void
John Bowlerbfca9452005-11-02 11:55:12 +0000113__ixp4xx_writesb(volatile void __iomem *bus_addr, const u8 *vaddr, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
115 while (count--)
116 writeb(*vaddr++, bus_addr);
117}
118
119static inline void
John Bowlerbfca9452005-11-02 11:55:12 +0000120__ixp4xx_writew(u16 value, volatile void __iomem *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
John Bowlerbfca9452005-11-02 11:55:12 +0000122 u32 addr = (u32)p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 u32 n, byte_enables, data;
124
125 if (addr >= VMALLOC_START) {
126 __raw_writew(value, addr);
127 return;
128 }
129
130 n = addr % 4;
131 byte_enables = (0xf & ~(BIT(n) | BIT(n+1))) << IXP4XX_PCI_NP_CBE_BESL;
132 data = value << (8*n);
133 ixp4xx_pci_write(addr, byte_enables | NP_CMD_MEMWRITE, data);
134}
135
136static inline void
John Bowlerbfca9452005-11-02 11:55:12 +0000137__ixp4xx_writesw(volatile void __iomem *bus_addr, const u16 *vaddr, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
139 while (count--)
140 writew(*vaddr++, bus_addr);
141}
142
143static inline void
John Bowlerbfca9452005-11-02 11:55:12 +0000144__ixp4xx_writel(u32 value, volatile void __iomem *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
Pavel Roskind2936b12007-11-25 02:12:39 +0100146 u32 addr = (__force u32)p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 if (addr >= VMALLOC_START) {
Pavel Roskind2936b12007-11-25 02:12:39 +0100148 __raw_writel(value, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 return;
150 }
151
152 ixp4xx_pci_write(addr, NP_CMD_MEMWRITE, value);
153}
154
155static inline void
John Bowlerbfca9452005-11-02 11:55:12 +0000156__ixp4xx_writesl(volatile void __iomem *bus_addr, const u32 *vaddr, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
158 while (count--)
159 writel(*vaddr++, bus_addr);
160}
161
162static inline unsigned char
John Bowlerbfca9452005-11-02 11:55:12 +0000163__ixp4xx_readb(const volatile void __iomem *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
John Bowlerbfca9452005-11-02 11:55:12 +0000165 u32 addr = (u32)p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 u32 n, byte_enables, data;
167
168 if (addr >= VMALLOC_START)
169 return __raw_readb(addr);
170
171 n = addr % 4;
172 byte_enables = (0xf & ~BIT(n)) << IXP4XX_PCI_NP_CBE_BESL;
173 if (ixp4xx_pci_read(addr, byte_enables | NP_CMD_MEMREAD, &data))
174 return 0xff;
175
176 return data >> (8*n);
177}
178
179static inline void
John Bowlerbfca9452005-11-02 11:55:12 +0000180__ixp4xx_readsb(const volatile void __iomem *bus_addr, u8 *vaddr, u32 count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
182 while (count--)
183 *vaddr++ = readb(bus_addr);
184}
185
186static inline unsigned short
John Bowlerbfca9452005-11-02 11:55:12 +0000187__ixp4xx_readw(const volatile void __iomem *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
John Bowlerbfca9452005-11-02 11:55:12 +0000189 u32 addr = (u32)p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 u32 n, byte_enables, data;
191
192 if (addr >= VMALLOC_START)
193 return __raw_readw(addr);
194
195 n = addr % 4;
196 byte_enables = (0xf & ~(BIT(n) | BIT(n+1))) << IXP4XX_PCI_NP_CBE_BESL;
197 if (ixp4xx_pci_read(addr, byte_enables | NP_CMD_MEMREAD, &data))
198 return 0xffff;
199
200 return data>>(8*n);
201}
202
203static inline void
John Bowlerbfca9452005-11-02 11:55:12 +0000204__ixp4xx_readsw(const volatile void __iomem *bus_addr, u16 *vaddr, u32 count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
206 while (count--)
207 *vaddr++ = readw(bus_addr);
208}
209
210static inline unsigned long
John Bowlerbfca9452005-11-02 11:55:12 +0000211__ixp4xx_readl(const volatile void __iomem *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
Pavel Roskind2936b12007-11-25 02:12:39 +0100213 u32 addr = (__force u32)p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 u32 data;
215
216 if (addr >= VMALLOC_START)
Pavel Roskind2936b12007-11-25 02:12:39 +0100217 return __raw_readl(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219 if (ixp4xx_pci_read(addr, NP_CMD_MEMREAD, &data))
220 return 0xffffffff;
221
222 return data;
223}
224
225static inline void
John Bowlerbfca9452005-11-02 11:55:12 +0000226__ixp4xx_readsl(const volatile void __iomem *bus_addr, u32 *vaddr, u32 count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
228 while (count--)
229 *vaddr++ = readl(bus_addr);
230}
231
232
233/*
234 * We can use the built-in functions b/c they end up calling writeb/readb
235 */
236#define memset_io(c,v,l) _memset_io((c),(v),(l))
237#define memcpy_fromio(a,c,l) _memcpy_fromio((a),(c),(l))
238#define memcpy_toio(c,a,l) _memcpy_toio((c),(a),(l))
239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240#endif
241
Deepak Saxena76bbb002006-04-30 15:34:29 +0100242#ifndef CONFIG_PCI
243
244#define __io(v) v
245
246#else
247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248/*
249 * IXP4xx does not have a transparent cpu -> PCI I/O translation
250 * window. Instead, it has a set of registers that must be tweaked
251 * with the proper byte lanes, command types, and address for the
252 * transaction. This means that we need to override the default
253 * I/O functions.
254 */
255#define outb(p, v) __ixp4xx_outb(p, v)
256#define outw(p, v) __ixp4xx_outw(p, v)
257#define outl(p, v) __ixp4xx_outl(p, v)
258
259#define outsb(p, v, l) __ixp4xx_outsb(p, v, l)
260#define outsw(p, v, l) __ixp4xx_outsw(p, v, l)
261#define outsl(p, v, l) __ixp4xx_outsl(p, v, l)
262
263#define inb(p) __ixp4xx_inb(p)
264#define inw(p) __ixp4xx_inw(p)
265#define inl(p) __ixp4xx_inl(p)
266
267#define insb(p, v, l) __ixp4xx_insb(p, v, l)
268#define insw(p, v, l) __ixp4xx_insw(p, v, l)
269#define insl(p, v, l) __ixp4xx_insl(p, v, l)
270
271
272static inline void
273__ixp4xx_outb(u8 value, u32 addr)
274{
275 u32 n, byte_enables, data;
276 n = addr % 4;
277 byte_enables = (0xf & ~BIT(n)) << IXP4XX_PCI_NP_CBE_BESL;
278 data = value << (8*n);
279 ixp4xx_pci_write(addr, byte_enables | NP_CMD_IOWRITE, data);
280}
281
282static inline void
283__ixp4xx_outsb(u32 io_addr, const u8 *vaddr, u32 count)
284{
285 while (count--)
286 outb(*vaddr++, io_addr);
287}
288
289static inline void
290__ixp4xx_outw(u16 value, u32 addr)
291{
292 u32 n, byte_enables, data;
293 n = addr % 4;
294 byte_enables = (0xf & ~(BIT(n) | BIT(n+1))) << IXP4XX_PCI_NP_CBE_BESL;
295 data = value << (8*n);
296 ixp4xx_pci_write(addr, byte_enables | NP_CMD_IOWRITE, data);
297}
298
299static inline void
300__ixp4xx_outsw(u32 io_addr, const u16 *vaddr, u32 count)
301{
302 while (count--)
303 outw(cpu_to_le16(*vaddr++), io_addr);
304}
305
306static inline void
307__ixp4xx_outl(u32 value, u32 addr)
308{
309 ixp4xx_pci_write(addr, NP_CMD_IOWRITE, value);
310}
311
312static inline void
313__ixp4xx_outsl(u32 io_addr, const u32 *vaddr, u32 count)
314{
315 while (count--)
316 outl(*vaddr++, io_addr);
317}
318
319static inline u8
320__ixp4xx_inb(u32 addr)
321{
322 u32 n, byte_enables, data;
323 n = addr % 4;
324 byte_enables = (0xf & ~BIT(n)) << IXP4XX_PCI_NP_CBE_BESL;
325 if (ixp4xx_pci_read(addr, byte_enables | NP_CMD_IOREAD, &data))
326 return 0xff;
327
328 return data >> (8*n);
329}
330
331static inline void
332__ixp4xx_insb(u32 io_addr, u8 *vaddr, u32 count)
333{
334 while (count--)
335 *vaddr++ = inb(io_addr);
336}
337
338static inline u16
339__ixp4xx_inw(u32 addr)
340{
341 u32 n, byte_enables, data;
342 n = addr % 4;
343 byte_enables = (0xf & ~(BIT(n) | BIT(n+1))) << IXP4XX_PCI_NP_CBE_BESL;
344 if (ixp4xx_pci_read(addr, byte_enables | NP_CMD_IOREAD, &data))
345 return 0xffff;
346
347 return data>>(8*n);
348}
349
350static inline void
351__ixp4xx_insw(u32 io_addr, u16 *vaddr, u32 count)
352{
353 while (count--)
354 *vaddr++ = le16_to_cpu(inw(io_addr));
355}
356
357static inline u32
358__ixp4xx_inl(u32 addr)
359{
360 u32 data;
361 if (ixp4xx_pci_read(addr, NP_CMD_IOREAD, &data))
362 return 0xffffffff;
363
364 return data;
365}
366
367static inline void
368__ixp4xx_insl(u32 io_addr, u32 *vaddr, u32 count)
369{
370 while (count--)
371 *vaddr++ = inl(io_addr);
372}
373
David Vrabel147056f2005-08-31 21:45:14 +0100374#define PIO_OFFSET 0x10000UL
375#define PIO_MASK 0x0ffffUL
376
377#define __is_io_address(p) (((unsigned long)p >= PIO_OFFSET) && \
378 ((unsigned long)p <= (PIO_MASK + PIO_OFFSET)))
Deepak Saxena450008b2005-07-06 23:06:05 +0100379static inline unsigned int
John Bowlerbfca9452005-11-02 11:55:12 +0000380__ixp4xx_ioread8(const void __iomem *addr)
Deepak Saxena450008b2005-07-06 23:06:05 +0100381{
David Vrabel147056f2005-08-31 21:45:14 +0100382 unsigned long port = (unsigned long __force)addr;
Deepak Saxena450008b2005-07-06 23:06:05 +0100383 if (__is_io_address(port))
David Vrabel147056f2005-08-31 21:45:14 +0100384 return (unsigned int)__ixp4xx_inb(port & PIO_MASK);
Deepak Saxena450008b2005-07-06 23:06:05 +0100385 else
386#ifndef CONFIG_IXP4XX_INDIRECT_PCI
David Vrabel147056f2005-08-31 21:45:14 +0100387 return (unsigned int)__raw_readb(port);
Deepak Saxena450008b2005-07-06 23:06:05 +0100388#else
John Bowlerbfca9452005-11-02 11:55:12 +0000389 return (unsigned int)__ixp4xx_readb(addr);
Deepak Saxena450008b2005-07-06 23:06:05 +0100390#endif
391}
392
393static inline void
John Bowlerbfca9452005-11-02 11:55:12 +0000394__ixp4xx_ioread8_rep(const void __iomem *addr, void *vaddr, u32 count)
Deepak Saxena450008b2005-07-06 23:06:05 +0100395{
David Vrabel147056f2005-08-31 21:45:14 +0100396 unsigned long port = (unsigned long __force)addr;
Deepak Saxena450008b2005-07-06 23:06:05 +0100397 if (__is_io_address(port))
David Vrabel147056f2005-08-31 21:45:14 +0100398 __ixp4xx_insb(port & PIO_MASK, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100399 else
400#ifndef CONFIG_IXP4XX_INDIRECT_PCI
David Vrabel147056f2005-08-31 21:45:14 +0100401 __raw_readsb(addr, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100402#else
John Bowlerbfca9452005-11-02 11:55:12 +0000403 __ixp4xx_readsb(addr, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100404#endif
405}
406
407static inline unsigned int
John Bowlerbfca9452005-11-02 11:55:12 +0000408__ixp4xx_ioread16(const void __iomem *addr)
Deepak Saxena450008b2005-07-06 23:06:05 +0100409{
David Vrabel147056f2005-08-31 21:45:14 +0100410 unsigned long port = (unsigned long __force)addr;
Deepak Saxena450008b2005-07-06 23:06:05 +0100411 if (__is_io_address(port))
David Vrabel147056f2005-08-31 21:45:14 +0100412 return (unsigned int)__ixp4xx_inw(port & PIO_MASK);
Deepak Saxena450008b2005-07-06 23:06:05 +0100413 else
414#ifndef CONFIG_IXP4XX_INDIRECT_PCI
415 return le16_to_cpu(__raw_readw((u32)port));
416#else
John Bowlerbfca9452005-11-02 11:55:12 +0000417 return (unsigned int)__ixp4xx_readw(addr);
Deepak Saxena450008b2005-07-06 23:06:05 +0100418#endif
419}
420
421static inline void
John Bowlerbfca9452005-11-02 11:55:12 +0000422__ixp4xx_ioread16_rep(const void __iomem *addr, void *vaddr, u32 count)
Deepak Saxena450008b2005-07-06 23:06:05 +0100423{
David Vrabel147056f2005-08-31 21:45:14 +0100424 unsigned long port = (unsigned long __force)addr;
Deepak Saxena450008b2005-07-06 23:06:05 +0100425 if (__is_io_address(port))
David Vrabel147056f2005-08-31 21:45:14 +0100426 __ixp4xx_insw(port & PIO_MASK, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100427 else
428#ifndef CONFIG_IXP4XX_INDIRECT_PCI
David Vrabel147056f2005-08-31 21:45:14 +0100429 __raw_readsw(addr, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100430#else
John Bowlerbfca9452005-11-02 11:55:12 +0000431 __ixp4xx_readsw(addr, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100432#endif
433}
434
435static inline unsigned int
John Bowlerbfca9452005-11-02 11:55:12 +0000436__ixp4xx_ioread32(const void __iomem *addr)
Deepak Saxena450008b2005-07-06 23:06:05 +0100437{
David Vrabel147056f2005-08-31 21:45:14 +0100438 unsigned long port = (unsigned long __force)addr;
Deepak Saxena450008b2005-07-06 23:06:05 +0100439 if (__is_io_address(port))
David Vrabel147056f2005-08-31 21:45:14 +0100440 return (unsigned int)__ixp4xx_inl(port & PIO_MASK);
Deepak Saxena450008b2005-07-06 23:06:05 +0100441 else {
442#ifndef CONFIG_IXP4XX_INDIRECT_PCI
Pavel Roskind2936b12007-11-25 02:12:39 +0100443 return le32_to_cpu((__force __le32)__raw_readl(addr));
Deepak Saxena450008b2005-07-06 23:06:05 +0100444#else
John Bowlerbfca9452005-11-02 11:55:12 +0000445 return (unsigned int)__ixp4xx_readl(addr);
Deepak Saxena450008b2005-07-06 23:06:05 +0100446#endif
447 }
448}
449
450static inline void
John Bowlerbfca9452005-11-02 11:55:12 +0000451__ixp4xx_ioread32_rep(const void __iomem *addr, void *vaddr, u32 count)
Deepak Saxena450008b2005-07-06 23:06:05 +0100452{
David Vrabel147056f2005-08-31 21:45:14 +0100453 unsigned long port = (unsigned long __force)addr;
Deepak Saxena450008b2005-07-06 23:06:05 +0100454 if (__is_io_address(port))
David Vrabel147056f2005-08-31 21:45:14 +0100455 __ixp4xx_insl(port & PIO_MASK, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100456 else
457#ifndef CONFIG_IXP4XX_INDIRECT_PCI
David Vrabel147056f2005-08-31 21:45:14 +0100458 __raw_readsl(addr, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100459#else
John Bowlerbfca9452005-11-02 11:55:12 +0000460 __ixp4xx_readsl(addr, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100461#endif
462}
463
464static inline void
David Vrabel147056f2005-08-31 21:45:14 +0100465__ixp4xx_iowrite8(u8 value, void __iomem *addr)
Deepak Saxena450008b2005-07-06 23:06:05 +0100466{
David Vrabel147056f2005-08-31 21:45:14 +0100467 unsigned long port = (unsigned long __force)addr;
Deepak Saxena450008b2005-07-06 23:06:05 +0100468 if (__is_io_address(port))
David Vrabel147056f2005-08-31 21:45:14 +0100469 __ixp4xx_outb(value, port & PIO_MASK);
Deepak Saxena450008b2005-07-06 23:06:05 +0100470 else
471#ifndef CONFIG_IXP4XX_INDIRECT_PCI
David Vrabel147056f2005-08-31 21:45:14 +0100472 __raw_writeb(value, port);
Deepak Saxena450008b2005-07-06 23:06:05 +0100473#else
John Bowlerbfca9452005-11-02 11:55:12 +0000474 __ixp4xx_writeb(value, addr);
Deepak Saxena450008b2005-07-06 23:06:05 +0100475#endif
476}
477
478static inline void
David Vrabel147056f2005-08-31 21:45:14 +0100479__ixp4xx_iowrite8_rep(void __iomem *addr, const void *vaddr, u32 count)
Deepak Saxena450008b2005-07-06 23:06:05 +0100480{
David Vrabel147056f2005-08-31 21:45:14 +0100481 unsigned long port = (unsigned long __force)addr;
Deepak Saxena450008b2005-07-06 23:06:05 +0100482 if (__is_io_address(port))
David Vrabel147056f2005-08-31 21:45:14 +0100483 __ixp4xx_outsb(port & PIO_MASK, vaddr, count);
484 else
Deepak Saxena450008b2005-07-06 23:06:05 +0100485#ifndef CONFIG_IXP4XX_INDIRECT_PCI
David Vrabel147056f2005-08-31 21:45:14 +0100486 __raw_writesb(addr, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100487#else
John Bowlerbfca9452005-11-02 11:55:12 +0000488 __ixp4xx_writesb(addr, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100489#endif
490}
491
492static inline void
David Vrabel147056f2005-08-31 21:45:14 +0100493__ixp4xx_iowrite16(u16 value, void __iomem *addr)
Deepak Saxena450008b2005-07-06 23:06:05 +0100494{
David Vrabel147056f2005-08-31 21:45:14 +0100495 unsigned long port = (unsigned long __force)addr;
Deepak Saxena450008b2005-07-06 23:06:05 +0100496 if (__is_io_address(port))
David Vrabel147056f2005-08-31 21:45:14 +0100497 __ixp4xx_outw(value, port & PIO_MASK);
Deepak Saxena450008b2005-07-06 23:06:05 +0100498 else
499#ifndef CONFIG_IXP4XX_INDIRECT_PCI
David Vrabel147056f2005-08-31 21:45:14 +0100500 __raw_writew(cpu_to_le16(value), addr);
Deepak Saxena450008b2005-07-06 23:06:05 +0100501#else
John Bowlerbfca9452005-11-02 11:55:12 +0000502 __ixp4xx_writew(value, addr);
Deepak Saxena450008b2005-07-06 23:06:05 +0100503#endif
504}
505
506static inline void
David Vrabel147056f2005-08-31 21:45:14 +0100507__ixp4xx_iowrite16_rep(void __iomem *addr, const void *vaddr, u32 count)
Deepak Saxena450008b2005-07-06 23:06:05 +0100508{
David Vrabel147056f2005-08-31 21:45:14 +0100509 unsigned long port = (unsigned long __force)addr;
Deepak Saxena450008b2005-07-06 23:06:05 +0100510 if (__is_io_address(port))
David Vrabel147056f2005-08-31 21:45:14 +0100511 __ixp4xx_outsw(port & PIO_MASK, vaddr, count);
512 else
Deepak Saxena450008b2005-07-06 23:06:05 +0100513#ifndef CONFIG_IXP4XX_INDIRECT_PCI
David Vrabel147056f2005-08-31 21:45:14 +0100514 __raw_writesw(addr, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100515#else
John Bowlerbfca9452005-11-02 11:55:12 +0000516 __ixp4xx_writesw(addr, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100517#endif
518}
519
520static inline void
David Vrabel147056f2005-08-31 21:45:14 +0100521__ixp4xx_iowrite32(u32 value, void __iomem *addr)
Deepak Saxena450008b2005-07-06 23:06:05 +0100522{
David Vrabel147056f2005-08-31 21:45:14 +0100523 unsigned long port = (unsigned long __force)addr;
Deepak Saxena450008b2005-07-06 23:06:05 +0100524 if (__is_io_address(port))
David Vrabel147056f2005-08-31 21:45:14 +0100525 __ixp4xx_outl(value, port & PIO_MASK);
Deepak Saxena450008b2005-07-06 23:06:05 +0100526 else
527#ifndef CONFIG_IXP4XX_INDIRECT_PCI
Pavel Roskind2936b12007-11-25 02:12:39 +0100528 __raw_writel((u32 __force)cpu_to_le32(value), addr);
Deepak Saxena450008b2005-07-06 23:06:05 +0100529#else
John Bowlerbfca9452005-11-02 11:55:12 +0000530 __ixp4xx_writel(value, addr);
Deepak Saxena450008b2005-07-06 23:06:05 +0100531#endif
532}
533
534static inline void
David Vrabel147056f2005-08-31 21:45:14 +0100535__ixp4xx_iowrite32_rep(void __iomem *addr, const void *vaddr, u32 count)
Deepak Saxena450008b2005-07-06 23:06:05 +0100536{
David Vrabel147056f2005-08-31 21:45:14 +0100537 unsigned long port = (unsigned long __force)addr;
Deepak Saxena450008b2005-07-06 23:06:05 +0100538 if (__is_io_address(port))
David Vrabel147056f2005-08-31 21:45:14 +0100539 __ixp4xx_outsl(port & PIO_MASK, vaddr, count);
540 else
Deepak Saxena450008b2005-07-06 23:06:05 +0100541#ifndef CONFIG_IXP4XX_INDIRECT_PCI
David Vrabel147056f2005-08-31 21:45:14 +0100542 __raw_writesl(addr, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100543#else
John Bowlerbfca9452005-11-02 11:55:12 +0000544 __ixp4xx_writesl(addr, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100545#endif
546}
547
548#define ioread8(p) __ixp4xx_ioread8(p)
549#define ioread16(p) __ixp4xx_ioread16(p)
550#define ioread32(p) __ixp4xx_ioread32(p)
551
552#define ioread8_rep(p, v, c) __ixp4xx_ioread8_rep(p, v, c)
553#define ioread16_rep(p, v, c) __ixp4xx_ioread16_rep(p, v, c)
554#define ioread32_rep(p, v, c) __ixp4xx_ioread32_rep(p, v, c)
555
556#define iowrite8(v,p) __ixp4xx_iowrite8(v,p)
557#define iowrite16(v,p) __ixp4xx_iowrite16(v,p)
558#define iowrite32(v,p) __ixp4xx_iowrite32(v,p)
559
560#define iowrite8_rep(p, v, c) __ixp4xx_iowrite8_rep(p, v, c)
561#define iowrite16_rep(p, v, c) __ixp4xx_iowrite16_rep(p, v, c)
562#define iowrite32_rep(p, v, c) __ixp4xx_iowrite32_rep(p, v, c)
563
David Vrabel147056f2005-08-31 21:45:14 +0100564#define ioport_map(port, nr) ((void __iomem*)(port + PIO_OFFSET))
Deepak Saxena450008b2005-07-06 23:06:05 +0100565#define ioport_unmap(addr)
Deepak Saxena76bbb002006-04-30 15:34:29 +0100566#endif // !CONFIG_PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
568#endif // __ASM_ARM_ARCH_IO_H
569