blob: 688f7f90d93e6f323ea6c0ea2a6b46184bb2fcb8 [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
16#include <asm/hardware.h>
17
18#define IO_SPACE_LIMIT 0xffff0000
19
20#define BIT(x) ((1)<<(x))
21
22
23extern int (*ixp4xx_pci_read)(u32 addr, u32 cmd, u32* data);
24extern int ixp4xx_pci_write(u32 addr, u32 cmd, u32 data);
25
26
27/*
28 * IXP4xx provides two methods of accessing PCI memory space:
29 *
30 * 1) A direct mapped window from 0x48000000 to 0x4bffffff (64MB).
31 * To access PCI via this space, we simply ioremap() the BAR
32 * into the kernel and we can use the standard read[bwl]/write[bwl]
33 * macros. This is the preffered method due to speed but it
34 * limits the system to just 64MB of PCI memory. This can be
35 * problamatic if using video cards and other memory-heavy
36 * targets.
37 *
38 * 2) If > 64MB of memory space is required, the IXP4xx can be configured
39 * to use indirect registers to access PCI (as we do below for I/O
40 * transactions). This allows for up to 128MB (0x48000000 to 0x4fffffff)
41 * of memory on the bus. The disadvantadge of this is that every
42 * PCI access requires three local register accesses plus a spinlock,
43 * but in some cases the performance hit is acceptable. In addition,
44 * you cannot mmap() PCI devices in this case.
45 *
46 */
47#ifndef CONFIG_IXP4XX_INDIRECT_PCI
48
49#define __mem_pci(a) (a)
50
51#else
52
53#include <linux/mm.h>
54
55/*
56 * In the case of using indirect PCI, we simply return the actual PCI
57 * address and our read/write implementation use that to drive the
58 * access registers. If something outside of PCI is ioremap'd, we
59 * fallback to the default.
60 */
61static inline void __iomem *
62__ixp4xx_ioremap(unsigned long addr, size_t size, unsigned long flags, unsigned long align)
63{
64 extern void __iomem * __ioremap(unsigned long, size_t, unsigned long, unsigned long);
65 if((addr < 0x48000000) || (addr > 0x4fffffff))
66 return __ioremap(addr, size, flags, align);
67
68 return (void *)addr;
69}
70
71static inline void
72__ixp4xx_iounmap(void __iomem *addr)
73{
74 extern void __iounmap(void __iomem *addr);
75
76 if ((u32)addr >= VMALLOC_START)
77 __iounmap(addr);
78}
79
80#define __arch_ioremap(a, s, f, x) __ixp4xx_ioremap(a, s, f, x)
81#define __arch_iounmap(a) __ixp4xx_iounmap(a)
82
John Bowlerbfca9452005-11-02 11:55:12 +000083#define writeb(v, p) __ixp4xx_writeb(v, p)
84#define writew(v, p) __ixp4xx_writew(v, p)
85#define writel(v, p) __ixp4xx_writel(v, p)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87#define writesb(p, v, l) __ixp4xx_writesb(p, v, l)
88#define writesw(p, v, l) __ixp4xx_writesw(p, v, l)
89#define writesl(p, v, l) __ixp4xx_writesl(p, v, l)
90
91#define readb(p) __ixp4xx_readb(p)
92#define readw(p) __ixp4xx_readw(p)
93#define readl(p) __ixp4xx_readl(p)
94
95#define readsb(p, v, l) __ixp4xx_readsb(p, v, l)
96#define readsw(p, v, l) __ixp4xx_readsw(p, v, l)
97#define readsl(p, v, l) __ixp4xx_readsl(p, v, l)
98
99static inline void
John Bowlerbfca9452005-11-02 11:55:12 +0000100__ixp4xx_writeb(u8 value, volatile void __iomem *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
John Bowlerbfca9452005-11-02 11:55:12 +0000102 u32 addr = (u32)p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 u32 n, byte_enables, data;
104
105 if (addr >= VMALLOC_START) {
106 __raw_writeb(value, addr);
107 return;
108 }
109
110 n = addr % 4;
111 byte_enables = (0xf & ~BIT(n)) << IXP4XX_PCI_NP_CBE_BESL;
112 data = value << (8*n);
113 ixp4xx_pci_write(addr, byte_enables | NP_CMD_MEMWRITE, data);
114}
115
116static inline void
John Bowlerbfca9452005-11-02 11:55:12 +0000117__ixp4xx_writesb(volatile void __iomem *bus_addr, const u8 *vaddr, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
119 while (count--)
120 writeb(*vaddr++, bus_addr);
121}
122
123static inline void
John Bowlerbfca9452005-11-02 11:55:12 +0000124__ixp4xx_writew(u16 value, volatile void __iomem *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
John Bowlerbfca9452005-11-02 11:55:12 +0000126 u32 addr = (u32)p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 u32 n, byte_enables, data;
128
129 if (addr >= VMALLOC_START) {
130 __raw_writew(value, addr);
131 return;
132 }
133
134 n = addr % 4;
135 byte_enables = (0xf & ~(BIT(n) | BIT(n+1))) << IXP4XX_PCI_NP_CBE_BESL;
136 data = value << (8*n);
137 ixp4xx_pci_write(addr, byte_enables | NP_CMD_MEMWRITE, data);
138}
139
140static inline void
John Bowlerbfca9452005-11-02 11:55:12 +0000141__ixp4xx_writesw(volatile void __iomem *bus_addr, const u16 *vaddr, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
143 while (count--)
144 writew(*vaddr++, bus_addr);
145}
146
147static inline void
John Bowlerbfca9452005-11-02 11:55:12 +0000148__ixp4xx_writel(u32 value, volatile void __iomem *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
John Bowlerbfca9452005-11-02 11:55:12 +0000150 u32 addr = (u32)p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 if (addr >= VMALLOC_START) {
152 __raw_writel(value, addr);
153 return;
154 }
155
156 ixp4xx_pci_write(addr, NP_CMD_MEMWRITE, value);
157}
158
159static inline void
John Bowlerbfca9452005-11-02 11:55:12 +0000160__ixp4xx_writesl(volatile void __iomem *bus_addr, const u32 *vaddr, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
162 while (count--)
163 writel(*vaddr++, bus_addr);
164}
165
166static inline unsigned char
John Bowlerbfca9452005-11-02 11:55:12 +0000167__ixp4xx_readb(const volatile void __iomem *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
John Bowlerbfca9452005-11-02 11:55:12 +0000169 u32 addr = (u32)p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 u32 n, byte_enables, data;
171
172 if (addr >= VMALLOC_START)
173 return __raw_readb(addr);
174
175 n = addr % 4;
176 byte_enables = (0xf & ~BIT(n)) << IXP4XX_PCI_NP_CBE_BESL;
177 if (ixp4xx_pci_read(addr, byte_enables | NP_CMD_MEMREAD, &data))
178 return 0xff;
179
180 return data >> (8*n);
181}
182
183static inline void
John Bowlerbfca9452005-11-02 11:55:12 +0000184__ixp4xx_readsb(const volatile void __iomem *bus_addr, u8 *vaddr, u32 count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
186 while (count--)
187 *vaddr++ = readb(bus_addr);
188}
189
190static inline unsigned short
John Bowlerbfca9452005-11-02 11:55:12 +0000191__ixp4xx_readw(const volatile void __iomem *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
John Bowlerbfca9452005-11-02 11:55:12 +0000193 u32 addr = (u32)p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 u32 n, byte_enables, data;
195
196 if (addr >= VMALLOC_START)
197 return __raw_readw(addr);
198
199 n = addr % 4;
200 byte_enables = (0xf & ~(BIT(n) | BIT(n+1))) << IXP4XX_PCI_NP_CBE_BESL;
201 if (ixp4xx_pci_read(addr, byte_enables | NP_CMD_MEMREAD, &data))
202 return 0xffff;
203
204 return data>>(8*n);
205}
206
207static inline void
John Bowlerbfca9452005-11-02 11:55:12 +0000208__ixp4xx_readsw(const volatile void __iomem *bus_addr, u16 *vaddr, u32 count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
210 while (count--)
211 *vaddr++ = readw(bus_addr);
212}
213
214static inline unsigned long
John Bowlerbfca9452005-11-02 11:55:12 +0000215__ixp4xx_readl(const volatile void __iomem *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216{
John Bowlerbfca9452005-11-02 11:55:12 +0000217 u32 addr = (u32)p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 u32 data;
219
220 if (addr >= VMALLOC_START)
221 return __raw_readl(addr);
222
223 if (ixp4xx_pci_read(addr, NP_CMD_MEMREAD, &data))
224 return 0xffffffff;
225
226 return data;
227}
228
229static inline void
John Bowlerbfca9452005-11-02 11:55:12 +0000230__ixp4xx_readsl(const volatile void __iomem *bus_addr, u32 *vaddr, u32 count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
232 while (count--)
233 *vaddr++ = readl(bus_addr);
234}
235
236
237/*
238 * We can use the built-in functions b/c they end up calling writeb/readb
239 */
240#define memset_io(c,v,l) _memset_io((c),(v),(l))
241#define memcpy_fromio(a,c,l) _memcpy_fromio((a),(c),(l))
242#define memcpy_toio(c,a,l) _memcpy_toio((c),(a),(l))
243
244#define eth_io_copy_and_sum(s,c,l,b) \
245 eth_copy_and_sum((s),__mem_pci(c),(l),(b))
246
247static inline int
John Bowlerbfca9452005-11-02 11:55:12 +0000248check_signature(const unsigned char __iomem *bus_addr, const unsigned char *signature,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 int length)
250{
251 int retval = 0;
252 do {
253 if (readb(bus_addr) != *signature)
254 goto out;
255 bus_addr++;
256 signature++;
257 length--;
258 } while (length);
259 retval = 1;
260out:
261 return retval;
262}
263
264#endif
265
266/*
267 * IXP4xx does not have a transparent cpu -> PCI I/O translation
268 * window. Instead, it has a set of registers that must be tweaked
269 * with the proper byte lanes, command types, and address for the
270 * transaction. This means that we need to override the default
271 * I/O functions.
272 */
273#define outb(p, v) __ixp4xx_outb(p, v)
274#define outw(p, v) __ixp4xx_outw(p, v)
275#define outl(p, v) __ixp4xx_outl(p, v)
276
277#define outsb(p, v, l) __ixp4xx_outsb(p, v, l)
278#define outsw(p, v, l) __ixp4xx_outsw(p, v, l)
279#define outsl(p, v, l) __ixp4xx_outsl(p, v, l)
280
281#define inb(p) __ixp4xx_inb(p)
282#define inw(p) __ixp4xx_inw(p)
283#define inl(p) __ixp4xx_inl(p)
284
285#define insb(p, v, l) __ixp4xx_insb(p, v, l)
286#define insw(p, v, l) __ixp4xx_insw(p, v, l)
287#define insl(p, v, l) __ixp4xx_insl(p, v, l)
288
289
290static inline void
291__ixp4xx_outb(u8 value, u32 addr)
292{
293 u32 n, byte_enables, data;
294 n = addr % 4;
295 byte_enables = (0xf & ~BIT(n)) << IXP4XX_PCI_NP_CBE_BESL;
296 data = value << (8*n);
297 ixp4xx_pci_write(addr, byte_enables | NP_CMD_IOWRITE, data);
298}
299
300static inline void
301__ixp4xx_outsb(u32 io_addr, const u8 *vaddr, u32 count)
302{
303 while (count--)
304 outb(*vaddr++, io_addr);
305}
306
307static inline void
308__ixp4xx_outw(u16 value, u32 addr)
309{
310 u32 n, byte_enables, data;
311 n = addr % 4;
312 byte_enables = (0xf & ~(BIT(n) | BIT(n+1))) << IXP4XX_PCI_NP_CBE_BESL;
313 data = value << (8*n);
314 ixp4xx_pci_write(addr, byte_enables | NP_CMD_IOWRITE, data);
315}
316
317static inline void
318__ixp4xx_outsw(u32 io_addr, const u16 *vaddr, u32 count)
319{
320 while (count--)
321 outw(cpu_to_le16(*vaddr++), io_addr);
322}
323
324static inline void
325__ixp4xx_outl(u32 value, u32 addr)
326{
327 ixp4xx_pci_write(addr, NP_CMD_IOWRITE, value);
328}
329
330static inline void
331__ixp4xx_outsl(u32 io_addr, const u32 *vaddr, u32 count)
332{
333 while (count--)
334 outl(*vaddr++, io_addr);
335}
336
337static inline u8
338__ixp4xx_inb(u32 addr)
339{
340 u32 n, byte_enables, data;
341 n = addr % 4;
342 byte_enables = (0xf & ~BIT(n)) << IXP4XX_PCI_NP_CBE_BESL;
343 if (ixp4xx_pci_read(addr, byte_enables | NP_CMD_IOREAD, &data))
344 return 0xff;
345
346 return data >> (8*n);
347}
348
349static inline void
350__ixp4xx_insb(u32 io_addr, u8 *vaddr, u32 count)
351{
352 while (count--)
353 *vaddr++ = inb(io_addr);
354}
355
356static inline u16
357__ixp4xx_inw(u32 addr)
358{
359 u32 n, byte_enables, data;
360 n = addr % 4;
361 byte_enables = (0xf & ~(BIT(n) | BIT(n+1))) << IXP4XX_PCI_NP_CBE_BESL;
362 if (ixp4xx_pci_read(addr, byte_enables | NP_CMD_IOREAD, &data))
363 return 0xffff;
364
365 return data>>(8*n);
366}
367
368static inline void
369__ixp4xx_insw(u32 io_addr, u16 *vaddr, u32 count)
370{
371 while (count--)
372 *vaddr++ = le16_to_cpu(inw(io_addr));
373}
374
375static inline u32
376__ixp4xx_inl(u32 addr)
377{
378 u32 data;
379 if (ixp4xx_pci_read(addr, NP_CMD_IOREAD, &data))
380 return 0xffffffff;
381
382 return data;
383}
384
385static inline void
386__ixp4xx_insl(u32 io_addr, u32 *vaddr, u32 count)
387{
388 while (count--)
389 *vaddr++ = inl(io_addr);
390}
391
David Vrabel147056f2005-08-31 21:45:14 +0100392#define PIO_OFFSET 0x10000UL
393#define PIO_MASK 0x0ffffUL
394
395#define __is_io_address(p) (((unsigned long)p >= PIO_OFFSET) && \
396 ((unsigned long)p <= (PIO_MASK + PIO_OFFSET)))
Deepak Saxena450008b2005-07-06 23:06:05 +0100397static inline unsigned int
John Bowlerbfca9452005-11-02 11:55:12 +0000398__ixp4xx_ioread8(const void __iomem *addr)
Deepak Saxena450008b2005-07-06 23:06:05 +0100399{
David Vrabel147056f2005-08-31 21:45:14 +0100400 unsigned long port = (unsigned long __force)addr;
Deepak Saxena450008b2005-07-06 23:06:05 +0100401 if (__is_io_address(port))
David Vrabel147056f2005-08-31 21:45:14 +0100402 return (unsigned int)__ixp4xx_inb(port & PIO_MASK);
Deepak Saxena450008b2005-07-06 23:06:05 +0100403 else
404#ifndef CONFIG_IXP4XX_INDIRECT_PCI
David Vrabel147056f2005-08-31 21:45:14 +0100405 return (unsigned int)__raw_readb(port);
Deepak Saxena450008b2005-07-06 23:06:05 +0100406#else
John Bowlerbfca9452005-11-02 11:55:12 +0000407 return (unsigned int)__ixp4xx_readb(addr);
Deepak Saxena450008b2005-07-06 23:06:05 +0100408#endif
409}
410
411static inline void
John Bowlerbfca9452005-11-02 11:55:12 +0000412__ixp4xx_ioread8_rep(const void __iomem *addr, void *vaddr, u32 count)
Deepak Saxena450008b2005-07-06 23:06:05 +0100413{
David Vrabel147056f2005-08-31 21:45:14 +0100414 unsigned long port = (unsigned long __force)addr;
Deepak Saxena450008b2005-07-06 23:06:05 +0100415 if (__is_io_address(port))
David Vrabel147056f2005-08-31 21:45:14 +0100416 __ixp4xx_insb(port & PIO_MASK, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100417 else
418#ifndef CONFIG_IXP4XX_INDIRECT_PCI
David Vrabel147056f2005-08-31 21:45:14 +0100419 __raw_readsb(addr, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100420#else
John Bowlerbfca9452005-11-02 11:55:12 +0000421 __ixp4xx_readsb(addr, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100422#endif
423}
424
425static inline unsigned int
John Bowlerbfca9452005-11-02 11:55:12 +0000426__ixp4xx_ioread16(const void __iomem *addr)
Deepak Saxena450008b2005-07-06 23:06:05 +0100427{
David Vrabel147056f2005-08-31 21:45:14 +0100428 unsigned long port = (unsigned long __force)addr;
Deepak Saxena450008b2005-07-06 23:06:05 +0100429 if (__is_io_address(port))
David Vrabel147056f2005-08-31 21:45:14 +0100430 return (unsigned int)__ixp4xx_inw(port & PIO_MASK);
Deepak Saxena450008b2005-07-06 23:06:05 +0100431 else
432#ifndef CONFIG_IXP4XX_INDIRECT_PCI
433 return le16_to_cpu(__raw_readw((u32)port));
434#else
John Bowlerbfca9452005-11-02 11:55:12 +0000435 return (unsigned int)__ixp4xx_readw(addr);
Deepak Saxena450008b2005-07-06 23:06:05 +0100436#endif
437}
438
439static inline void
John Bowlerbfca9452005-11-02 11:55:12 +0000440__ixp4xx_ioread16_rep(const void __iomem *addr, void *vaddr, u32 count)
Deepak Saxena450008b2005-07-06 23:06:05 +0100441{
David Vrabel147056f2005-08-31 21:45:14 +0100442 unsigned long port = (unsigned long __force)addr;
Deepak Saxena450008b2005-07-06 23:06:05 +0100443 if (__is_io_address(port))
David Vrabel147056f2005-08-31 21:45:14 +0100444 __ixp4xx_insw(port & PIO_MASK, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100445 else
446#ifndef CONFIG_IXP4XX_INDIRECT_PCI
David Vrabel147056f2005-08-31 21:45:14 +0100447 __raw_readsw(addr, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100448#else
John Bowlerbfca9452005-11-02 11:55:12 +0000449 __ixp4xx_readsw(addr, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100450#endif
451}
452
453static inline unsigned int
John Bowlerbfca9452005-11-02 11:55:12 +0000454__ixp4xx_ioread32(const void __iomem *addr)
Deepak Saxena450008b2005-07-06 23:06:05 +0100455{
David Vrabel147056f2005-08-31 21:45:14 +0100456 unsigned long port = (unsigned long __force)addr;
Deepak Saxena450008b2005-07-06 23:06:05 +0100457 if (__is_io_address(port))
David Vrabel147056f2005-08-31 21:45:14 +0100458 return (unsigned int)__ixp4xx_inl(port & PIO_MASK);
Deepak Saxena450008b2005-07-06 23:06:05 +0100459 else {
460#ifndef CONFIG_IXP4XX_INDIRECT_PCI
461 return le32_to_cpu(__raw_readl((u32)port));
462#else
John Bowlerbfca9452005-11-02 11:55:12 +0000463 return (unsigned int)__ixp4xx_readl(addr);
Deepak Saxena450008b2005-07-06 23:06:05 +0100464#endif
465 }
466}
467
468static inline void
John Bowlerbfca9452005-11-02 11:55:12 +0000469__ixp4xx_ioread32_rep(const void __iomem *addr, void *vaddr, u32 count)
Deepak Saxena450008b2005-07-06 23:06:05 +0100470{
David Vrabel147056f2005-08-31 21:45:14 +0100471 unsigned long port = (unsigned long __force)addr;
Deepak Saxena450008b2005-07-06 23:06:05 +0100472 if (__is_io_address(port))
David Vrabel147056f2005-08-31 21:45:14 +0100473 __ixp4xx_insl(port & PIO_MASK, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100474 else
475#ifndef CONFIG_IXP4XX_INDIRECT_PCI
David Vrabel147056f2005-08-31 21:45:14 +0100476 __raw_readsl(addr, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100477#else
John Bowlerbfca9452005-11-02 11:55:12 +0000478 __ixp4xx_readsl(addr, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100479#endif
480}
481
482static inline void
David Vrabel147056f2005-08-31 21:45:14 +0100483__ixp4xx_iowrite8(u8 value, void __iomem *addr)
Deepak Saxena450008b2005-07-06 23:06:05 +0100484{
David Vrabel147056f2005-08-31 21:45:14 +0100485 unsigned long port = (unsigned long __force)addr;
Deepak Saxena450008b2005-07-06 23:06:05 +0100486 if (__is_io_address(port))
David Vrabel147056f2005-08-31 21:45:14 +0100487 __ixp4xx_outb(value, port & PIO_MASK);
Deepak Saxena450008b2005-07-06 23:06:05 +0100488 else
489#ifndef CONFIG_IXP4XX_INDIRECT_PCI
David Vrabel147056f2005-08-31 21:45:14 +0100490 __raw_writeb(value, port);
Deepak Saxena450008b2005-07-06 23:06:05 +0100491#else
John Bowlerbfca9452005-11-02 11:55:12 +0000492 __ixp4xx_writeb(value, addr);
Deepak Saxena450008b2005-07-06 23:06:05 +0100493#endif
494}
495
496static inline void
David Vrabel147056f2005-08-31 21:45:14 +0100497__ixp4xx_iowrite8_rep(void __iomem *addr, const void *vaddr, u32 count)
Deepak Saxena450008b2005-07-06 23:06:05 +0100498{
David Vrabel147056f2005-08-31 21:45:14 +0100499 unsigned long port = (unsigned long __force)addr;
Deepak Saxena450008b2005-07-06 23:06:05 +0100500 if (__is_io_address(port))
David Vrabel147056f2005-08-31 21:45:14 +0100501 __ixp4xx_outsb(port & PIO_MASK, vaddr, count);
502 else
Deepak Saxena450008b2005-07-06 23:06:05 +0100503#ifndef CONFIG_IXP4XX_INDIRECT_PCI
David Vrabel147056f2005-08-31 21:45:14 +0100504 __raw_writesb(addr, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100505#else
John Bowlerbfca9452005-11-02 11:55:12 +0000506 __ixp4xx_writesb(addr, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100507#endif
508}
509
510static inline void
David Vrabel147056f2005-08-31 21:45:14 +0100511__ixp4xx_iowrite16(u16 value, void __iomem *addr)
Deepak Saxena450008b2005-07-06 23:06:05 +0100512{
David Vrabel147056f2005-08-31 21:45:14 +0100513 unsigned long port = (unsigned long __force)addr;
Deepak Saxena450008b2005-07-06 23:06:05 +0100514 if (__is_io_address(port))
David Vrabel147056f2005-08-31 21:45:14 +0100515 __ixp4xx_outw(value, port & PIO_MASK);
Deepak Saxena450008b2005-07-06 23:06:05 +0100516 else
517#ifndef CONFIG_IXP4XX_INDIRECT_PCI
David Vrabel147056f2005-08-31 21:45:14 +0100518 __raw_writew(cpu_to_le16(value), addr);
Deepak Saxena450008b2005-07-06 23:06:05 +0100519#else
John Bowlerbfca9452005-11-02 11:55:12 +0000520 __ixp4xx_writew(value, addr);
Deepak Saxena450008b2005-07-06 23:06:05 +0100521#endif
522}
523
524static inline void
David Vrabel147056f2005-08-31 21:45:14 +0100525__ixp4xx_iowrite16_rep(void __iomem *addr, const void *vaddr, u32 count)
Deepak Saxena450008b2005-07-06 23:06:05 +0100526{
David Vrabel147056f2005-08-31 21:45:14 +0100527 unsigned long port = (unsigned long __force)addr;
Deepak Saxena450008b2005-07-06 23:06:05 +0100528 if (__is_io_address(port))
David Vrabel147056f2005-08-31 21:45:14 +0100529 __ixp4xx_outsw(port & PIO_MASK, vaddr, count);
530 else
Deepak Saxena450008b2005-07-06 23:06:05 +0100531#ifndef CONFIG_IXP4XX_INDIRECT_PCI
David Vrabel147056f2005-08-31 21:45:14 +0100532 __raw_writesw(addr, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100533#else
John Bowlerbfca9452005-11-02 11:55:12 +0000534 __ixp4xx_writesw(addr, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100535#endif
536}
537
538static inline void
David Vrabel147056f2005-08-31 21:45:14 +0100539__ixp4xx_iowrite32(u32 value, void __iomem *addr)
Deepak Saxena450008b2005-07-06 23:06:05 +0100540{
David Vrabel147056f2005-08-31 21:45:14 +0100541 unsigned long port = (unsigned long __force)addr;
Deepak Saxena450008b2005-07-06 23:06:05 +0100542 if (__is_io_address(port))
David Vrabel147056f2005-08-31 21:45:14 +0100543 __ixp4xx_outl(value, port & PIO_MASK);
Deepak Saxena450008b2005-07-06 23:06:05 +0100544 else
545#ifndef CONFIG_IXP4XX_INDIRECT_PCI
David Vrabel147056f2005-08-31 21:45:14 +0100546 __raw_writel(cpu_to_le32(value), port);
Deepak Saxena450008b2005-07-06 23:06:05 +0100547#else
John Bowlerbfca9452005-11-02 11:55:12 +0000548 __ixp4xx_writel(value, addr);
Deepak Saxena450008b2005-07-06 23:06:05 +0100549#endif
550}
551
552static inline void
David Vrabel147056f2005-08-31 21:45:14 +0100553__ixp4xx_iowrite32_rep(void __iomem *addr, const void *vaddr, u32 count)
Deepak Saxena450008b2005-07-06 23:06:05 +0100554{
David Vrabel147056f2005-08-31 21:45:14 +0100555 unsigned long port = (unsigned long __force)addr;
Deepak Saxena450008b2005-07-06 23:06:05 +0100556 if (__is_io_address(port))
David Vrabel147056f2005-08-31 21:45:14 +0100557 __ixp4xx_outsl(port & PIO_MASK, vaddr, count);
558 else
Deepak Saxena450008b2005-07-06 23:06:05 +0100559#ifndef CONFIG_IXP4XX_INDIRECT_PCI
David Vrabel147056f2005-08-31 21:45:14 +0100560 __raw_writesl(addr, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100561#else
John Bowlerbfca9452005-11-02 11:55:12 +0000562 __ixp4xx_writesl(addr, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100563#endif
564}
565
566#define ioread8(p) __ixp4xx_ioread8(p)
567#define ioread16(p) __ixp4xx_ioread16(p)
568#define ioread32(p) __ixp4xx_ioread32(p)
569
570#define ioread8_rep(p, v, c) __ixp4xx_ioread8_rep(p, v, c)
571#define ioread16_rep(p, v, c) __ixp4xx_ioread16_rep(p, v, c)
572#define ioread32_rep(p, v, c) __ixp4xx_ioread32_rep(p, v, c)
573
574#define iowrite8(v,p) __ixp4xx_iowrite8(v,p)
575#define iowrite16(v,p) __ixp4xx_iowrite16(v,p)
576#define iowrite32(v,p) __ixp4xx_iowrite32(v,p)
577
578#define iowrite8_rep(p, v, c) __ixp4xx_iowrite8_rep(p, v, c)
579#define iowrite16_rep(p, v, c) __ixp4xx_iowrite16_rep(p, v, c)
580#define iowrite32_rep(p, v, c) __ixp4xx_iowrite32_rep(p, v, c)
581
David Vrabel147056f2005-08-31 21:45:14 +0100582#define ioport_map(port, nr) ((void __iomem*)(port + PIO_OFFSET))
Deepak Saxena450008b2005-07-06 23:06:05 +0100583#define ioport_unmap(addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
585#endif // __ASM_ARM_ARCH_IO_H
586