blob: b27c910adf9d58a4935763ea62e9eaf247aedc1e [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)
Adrian Bunkfd245f02006-06-30 18:23:39 +020041 * of memory on the bus. The disadvantage of this is that every
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 * 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 *
Russell King3603ab22007-05-05 20:59:27 +010062__ixp4xx_ioremap(unsigned long addr, size_t size, unsigned int mtype)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063{
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 if((addr < 0x48000000) || (addr > 0x4fffffff))
Russell King3603ab22007-05-05 20:59:27 +010065 return __arm_ioremap(addr, size, mtype);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67 return (void *)addr;
68}
69
70static inline void
71__ixp4xx_iounmap(void __iomem *addr)
72{
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 if ((u32)addr >= VMALLOC_START)
74 __iounmap(addr);
75}
76
Russell King67a19012005-11-17 16:48:00 +000077#define __arch_ioremap(a, s, f) __ixp4xx_ioremap(a, s, f)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#define __arch_iounmap(a) __ixp4xx_iounmap(a)
79
John Bowlerbfca9452005-11-02 11:55:12 +000080#define writeb(v, p) __ixp4xx_writeb(v, p)
81#define writew(v, p) __ixp4xx_writew(v, p)
82#define writel(v, p) __ixp4xx_writel(v, p)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84#define writesb(p, v, l) __ixp4xx_writesb(p, v, l)
85#define writesw(p, v, l) __ixp4xx_writesw(p, v, l)
86#define writesl(p, v, l) __ixp4xx_writesl(p, v, l)
87
88#define readb(p) __ixp4xx_readb(p)
89#define readw(p) __ixp4xx_readw(p)
90#define readl(p) __ixp4xx_readl(p)
91
92#define readsb(p, v, l) __ixp4xx_readsb(p, v, l)
93#define readsw(p, v, l) __ixp4xx_readsw(p, v, l)
94#define readsl(p, v, l) __ixp4xx_readsl(p, v, l)
95
96static inline void
John Bowlerbfca9452005-11-02 11:55:12 +000097__ixp4xx_writeb(u8 value, volatile void __iomem *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
John Bowlerbfca9452005-11-02 11:55:12 +000099 u32 addr = (u32)p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 u32 n, byte_enables, data;
101
102 if (addr >= VMALLOC_START) {
103 __raw_writeb(value, addr);
104 return;
105 }
106
107 n = addr % 4;
108 byte_enables = (0xf & ~BIT(n)) << IXP4XX_PCI_NP_CBE_BESL;
109 data = value << (8*n);
110 ixp4xx_pci_write(addr, byte_enables | NP_CMD_MEMWRITE, data);
111}
112
113static inline void
John Bowlerbfca9452005-11-02 11:55:12 +0000114__ixp4xx_writesb(volatile void __iomem *bus_addr, const u8 *vaddr, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
116 while (count--)
117 writeb(*vaddr++, bus_addr);
118}
119
120static inline void
John Bowlerbfca9452005-11-02 11:55:12 +0000121__ixp4xx_writew(u16 value, volatile void __iomem *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
John Bowlerbfca9452005-11-02 11:55:12 +0000123 u32 addr = (u32)p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 u32 n, byte_enables, data;
125
126 if (addr >= VMALLOC_START) {
127 __raw_writew(value, addr);
128 return;
129 }
130
131 n = addr % 4;
132 byte_enables = (0xf & ~(BIT(n) | BIT(n+1))) << IXP4XX_PCI_NP_CBE_BESL;
133 data = value << (8*n);
134 ixp4xx_pci_write(addr, byte_enables | NP_CMD_MEMWRITE, data);
135}
136
137static inline void
John Bowlerbfca9452005-11-02 11:55:12 +0000138__ixp4xx_writesw(volatile void __iomem *bus_addr, const u16 *vaddr, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
140 while (count--)
141 writew(*vaddr++, bus_addr);
142}
143
144static inline void
John Bowlerbfca9452005-11-02 11:55:12 +0000145__ixp4xx_writel(u32 value, volatile void __iomem *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
John Bowlerbfca9452005-11-02 11:55:12 +0000147 u32 addr = (u32)p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 if (addr >= VMALLOC_START) {
149 __raw_writel(value, addr);
150 return;
151 }
152
153 ixp4xx_pci_write(addr, NP_CMD_MEMWRITE, value);
154}
155
156static inline void
John Bowlerbfca9452005-11-02 11:55:12 +0000157__ixp4xx_writesl(volatile void __iomem *bus_addr, const u32 *vaddr, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
159 while (count--)
160 writel(*vaddr++, bus_addr);
161}
162
163static inline unsigned char
John Bowlerbfca9452005-11-02 11:55:12 +0000164__ixp4xx_readb(const volatile void __iomem *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
John Bowlerbfca9452005-11-02 11:55:12 +0000166 u32 addr = (u32)p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 u32 n, byte_enables, data;
168
169 if (addr >= VMALLOC_START)
170 return __raw_readb(addr);
171
172 n = addr % 4;
173 byte_enables = (0xf & ~BIT(n)) << IXP4XX_PCI_NP_CBE_BESL;
174 if (ixp4xx_pci_read(addr, byte_enables | NP_CMD_MEMREAD, &data))
175 return 0xff;
176
177 return data >> (8*n);
178}
179
180static inline void
John Bowlerbfca9452005-11-02 11:55:12 +0000181__ixp4xx_readsb(const volatile void __iomem *bus_addr, u8 *vaddr, u32 count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
183 while (count--)
184 *vaddr++ = readb(bus_addr);
185}
186
187static inline unsigned short
John Bowlerbfca9452005-11-02 11:55:12 +0000188__ixp4xx_readw(const volatile void __iomem *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
John Bowlerbfca9452005-11-02 11:55:12 +0000190 u32 addr = (u32)p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 u32 n, byte_enables, data;
192
193 if (addr >= VMALLOC_START)
194 return __raw_readw(addr);
195
196 n = addr % 4;
197 byte_enables = (0xf & ~(BIT(n) | BIT(n+1))) << IXP4XX_PCI_NP_CBE_BESL;
198 if (ixp4xx_pci_read(addr, byte_enables | NP_CMD_MEMREAD, &data))
199 return 0xffff;
200
201 return data>>(8*n);
202}
203
204static inline void
John Bowlerbfca9452005-11-02 11:55:12 +0000205__ixp4xx_readsw(const volatile void __iomem *bus_addr, u16 *vaddr, u32 count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
207 while (count--)
208 *vaddr++ = readw(bus_addr);
209}
210
211static inline unsigned long
John Bowlerbfca9452005-11-02 11:55:12 +0000212__ixp4xx_readl(const volatile void __iomem *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213{
John Bowlerbfca9452005-11-02 11:55:12 +0000214 u32 addr = (u32)p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 u32 data;
216
217 if (addr >= VMALLOC_START)
218 return __raw_readl(addr);
219
220 if (ixp4xx_pci_read(addr, NP_CMD_MEMREAD, &data))
221 return 0xffffffff;
222
223 return data;
224}
225
226static inline void
John Bowlerbfca9452005-11-02 11:55:12 +0000227__ixp4xx_readsl(const volatile void __iomem *bus_addr, u32 *vaddr, u32 count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
229 while (count--)
230 *vaddr++ = readl(bus_addr);
231}
232
233
234/*
235 * We can use the built-in functions b/c they end up calling writeb/readb
236 */
237#define memset_io(c,v,l) _memset_io((c),(v),(l))
238#define memcpy_fromio(a,c,l) _memcpy_fromio((a),(c),(l))
239#define memcpy_toio(c,a,l) _memcpy_toio((c),(a),(l))
240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241#endif
242
Deepak Saxena76bbb002006-04-30 15:34:29 +0100243#ifndef CONFIG_PCI
244
245#define __io(v) v
246
247#else
248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249/*
250 * IXP4xx does not have a transparent cpu -> PCI I/O translation
251 * window. Instead, it has a set of registers that must be tweaked
252 * with the proper byte lanes, command types, and address for the
253 * transaction. This means that we need to override the default
254 * I/O functions.
255 */
256#define outb(p, v) __ixp4xx_outb(p, v)
257#define outw(p, v) __ixp4xx_outw(p, v)
258#define outl(p, v) __ixp4xx_outl(p, v)
259
260#define outsb(p, v, l) __ixp4xx_outsb(p, v, l)
261#define outsw(p, v, l) __ixp4xx_outsw(p, v, l)
262#define outsl(p, v, l) __ixp4xx_outsl(p, v, l)
263
264#define inb(p) __ixp4xx_inb(p)
265#define inw(p) __ixp4xx_inw(p)
266#define inl(p) __ixp4xx_inl(p)
267
268#define insb(p, v, l) __ixp4xx_insb(p, v, l)
269#define insw(p, v, l) __ixp4xx_insw(p, v, l)
270#define insl(p, v, l) __ixp4xx_insl(p, v, l)
271
272
273static inline void
274__ixp4xx_outb(u8 value, u32 addr)
275{
276 u32 n, byte_enables, data;
277 n = addr % 4;
278 byte_enables = (0xf & ~BIT(n)) << IXP4XX_PCI_NP_CBE_BESL;
279 data = value << (8*n);
280 ixp4xx_pci_write(addr, byte_enables | NP_CMD_IOWRITE, data);
281}
282
283static inline void
284__ixp4xx_outsb(u32 io_addr, const u8 *vaddr, u32 count)
285{
286 while (count--)
287 outb(*vaddr++, io_addr);
288}
289
290static inline void
291__ixp4xx_outw(u16 value, u32 addr)
292{
293 u32 n, byte_enables, data;
294 n = addr % 4;
295 byte_enables = (0xf & ~(BIT(n) | BIT(n+1))) << 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_outsw(u32 io_addr, const u16 *vaddr, u32 count)
302{
303 while (count--)
304 outw(cpu_to_le16(*vaddr++), io_addr);
305}
306
307static inline void
308__ixp4xx_outl(u32 value, u32 addr)
309{
310 ixp4xx_pci_write(addr, NP_CMD_IOWRITE, value);
311}
312
313static inline void
314__ixp4xx_outsl(u32 io_addr, const u32 *vaddr, u32 count)
315{
316 while (count--)
317 outl(*vaddr++, io_addr);
318}
319
320static inline u8
321__ixp4xx_inb(u32 addr)
322{
323 u32 n, byte_enables, data;
324 n = addr % 4;
325 byte_enables = (0xf & ~BIT(n)) << IXP4XX_PCI_NP_CBE_BESL;
326 if (ixp4xx_pci_read(addr, byte_enables | NP_CMD_IOREAD, &data))
327 return 0xff;
328
329 return data >> (8*n);
330}
331
332static inline void
333__ixp4xx_insb(u32 io_addr, u8 *vaddr, u32 count)
334{
335 while (count--)
336 *vaddr++ = inb(io_addr);
337}
338
339static inline u16
340__ixp4xx_inw(u32 addr)
341{
342 u32 n, byte_enables, data;
343 n = addr % 4;
344 byte_enables = (0xf & ~(BIT(n) | BIT(n+1))) << IXP4XX_PCI_NP_CBE_BESL;
345 if (ixp4xx_pci_read(addr, byte_enables | NP_CMD_IOREAD, &data))
346 return 0xffff;
347
348 return data>>(8*n);
349}
350
351static inline void
352__ixp4xx_insw(u32 io_addr, u16 *vaddr, u32 count)
353{
354 while (count--)
355 *vaddr++ = le16_to_cpu(inw(io_addr));
356}
357
358static inline u32
359__ixp4xx_inl(u32 addr)
360{
361 u32 data;
362 if (ixp4xx_pci_read(addr, NP_CMD_IOREAD, &data))
363 return 0xffffffff;
364
365 return data;
366}
367
368static inline void
369__ixp4xx_insl(u32 io_addr, u32 *vaddr, u32 count)
370{
371 while (count--)
372 *vaddr++ = inl(io_addr);
373}
374
David Vrabel147056f2005-08-31 21:45:14 +0100375#define PIO_OFFSET 0x10000UL
376#define PIO_MASK 0x0ffffUL
377
378#define __is_io_address(p) (((unsigned long)p >= PIO_OFFSET) && \
379 ((unsigned long)p <= (PIO_MASK + PIO_OFFSET)))
Deepak Saxena450008b2005-07-06 23:06:05 +0100380static inline unsigned int
John Bowlerbfca9452005-11-02 11:55:12 +0000381__ixp4xx_ioread8(const void __iomem *addr)
Deepak Saxena450008b2005-07-06 23:06:05 +0100382{
David Vrabel147056f2005-08-31 21:45:14 +0100383 unsigned long port = (unsigned long __force)addr;
Deepak Saxena450008b2005-07-06 23:06:05 +0100384 if (__is_io_address(port))
David Vrabel147056f2005-08-31 21:45:14 +0100385 return (unsigned int)__ixp4xx_inb(port & PIO_MASK);
Deepak Saxena450008b2005-07-06 23:06:05 +0100386 else
387#ifndef CONFIG_IXP4XX_INDIRECT_PCI
David Vrabel147056f2005-08-31 21:45:14 +0100388 return (unsigned int)__raw_readb(port);
Deepak Saxena450008b2005-07-06 23:06:05 +0100389#else
John Bowlerbfca9452005-11-02 11:55:12 +0000390 return (unsigned int)__ixp4xx_readb(addr);
Deepak Saxena450008b2005-07-06 23:06:05 +0100391#endif
392}
393
394static inline void
John Bowlerbfca9452005-11-02 11:55:12 +0000395__ixp4xx_ioread8_rep(const void __iomem *addr, void *vaddr, u32 count)
Deepak Saxena450008b2005-07-06 23:06:05 +0100396{
David Vrabel147056f2005-08-31 21:45:14 +0100397 unsigned long port = (unsigned long __force)addr;
Deepak Saxena450008b2005-07-06 23:06:05 +0100398 if (__is_io_address(port))
David Vrabel147056f2005-08-31 21:45:14 +0100399 __ixp4xx_insb(port & PIO_MASK, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100400 else
401#ifndef CONFIG_IXP4XX_INDIRECT_PCI
David Vrabel147056f2005-08-31 21:45:14 +0100402 __raw_readsb(addr, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100403#else
John Bowlerbfca9452005-11-02 11:55:12 +0000404 __ixp4xx_readsb(addr, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100405#endif
406}
407
408static inline unsigned int
John Bowlerbfca9452005-11-02 11:55:12 +0000409__ixp4xx_ioread16(const void __iomem *addr)
Deepak Saxena450008b2005-07-06 23:06:05 +0100410{
David Vrabel147056f2005-08-31 21:45:14 +0100411 unsigned long port = (unsigned long __force)addr;
Deepak Saxena450008b2005-07-06 23:06:05 +0100412 if (__is_io_address(port))
David Vrabel147056f2005-08-31 21:45:14 +0100413 return (unsigned int)__ixp4xx_inw(port & PIO_MASK);
Deepak Saxena450008b2005-07-06 23:06:05 +0100414 else
415#ifndef CONFIG_IXP4XX_INDIRECT_PCI
416 return le16_to_cpu(__raw_readw((u32)port));
417#else
John Bowlerbfca9452005-11-02 11:55:12 +0000418 return (unsigned int)__ixp4xx_readw(addr);
Deepak Saxena450008b2005-07-06 23:06:05 +0100419#endif
420}
421
422static inline void
John Bowlerbfca9452005-11-02 11:55:12 +0000423__ixp4xx_ioread16_rep(const void __iomem *addr, void *vaddr, u32 count)
Deepak Saxena450008b2005-07-06 23:06:05 +0100424{
David Vrabel147056f2005-08-31 21:45:14 +0100425 unsigned long port = (unsigned long __force)addr;
Deepak Saxena450008b2005-07-06 23:06:05 +0100426 if (__is_io_address(port))
David Vrabel147056f2005-08-31 21:45:14 +0100427 __ixp4xx_insw(port & PIO_MASK, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100428 else
429#ifndef CONFIG_IXP4XX_INDIRECT_PCI
David Vrabel147056f2005-08-31 21:45:14 +0100430 __raw_readsw(addr, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100431#else
John Bowlerbfca9452005-11-02 11:55:12 +0000432 __ixp4xx_readsw(addr, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100433#endif
434}
435
436static inline unsigned int
John Bowlerbfca9452005-11-02 11:55:12 +0000437__ixp4xx_ioread32(const void __iomem *addr)
Deepak Saxena450008b2005-07-06 23:06:05 +0100438{
David Vrabel147056f2005-08-31 21:45:14 +0100439 unsigned long port = (unsigned long __force)addr;
Deepak Saxena450008b2005-07-06 23:06:05 +0100440 if (__is_io_address(port))
David Vrabel147056f2005-08-31 21:45:14 +0100441 return (unsigned int)__ixp4xx_inl(port & PIO_MASK);
Deepak Saxena450008b2005-07-06 23:06:05 +0100442 else {
443#ifndef CONFIG_IXP4XX_INDIRECT_PCI
444 return le32_to_cpu(__raw_readl((u32)port));
445#else
John Bowlerbfca9452005-11-02 11:55:12 +0000446 return (unsigned int)__ixp4xx_readl(addr);
Deepak Saxena450008b2005-07-06 23:06:05 +0100447#endif
448 }
449}
450
451static inline void
John Bowlerbfca9452005-11-02 11:55:12 +0000452__ixp4xx_ioread32_rep(const void __iomem *addr, void *vaddr, u32 count)
Deepak Saxena450008b2005-07-06 23:06:05 +0100453{
David Vrabel147056f2005-08-31 21:45:14 +0100454 unsigned long port = (unsigned long __force)addr;
Deepak Saxena450008b2005-07-06 23:06:05 +0100455 if (__is_io_address(port))
David Vrabel147056f2005-08-31 21:45:14 +0100456 __ixp4xx_insl(port & PIO_MASK, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100457 else
458#ifndef CONFIG_IXP4XX_INDIRECT_PCI
David Vrabel147056f2005-08-31 21:45:14 +0100459 __raw_readsl(addr, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100460#else
John Bowlerbfca9452005-11-02 11:55:12 +0000461 __ixp4xx_readsl(addr, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100462#endif
463}
464
465static inline void
David Vrabel147056f2005-08-31 21:45:14 +0100466__ixp4xx_iowrite8(u8 value, void __iomem *addr)
Deepak Saxena450008b2005-07-06 23:06:05 +0100467{
David Vrabel147056f2005-08-31 21:45:14 +0100468 unsigned long port = (unsigned long __force)addr;
Deepak Saxena450008b2005-07-06 23:06:05 +0100469 if (__is_io_address(port))
David Vrabel147056f2005-08-31 21:45:14 +0100470 __ixp4xx_outb(value, port & PIO_MASK);
Deepak Saxena450008b2005-07-06 23:06:05 +0100471 else
472#ifndef CONFIG_IXP4XX_INDIRECT_PCI
David Vrabel147056f2005-08-31 21:45:14 +0100473 __raw_writeb(value, port);
Deepak Saxena450008b2005-07-06 23:06:05 +0100474#else
John Bowlerbfca9452005-11-02 11:55:12 +0000475 __ixp4xx_writeb(value, addr);
Deepak Saxena450008b2005-07-06 23:06:05 +0100476#endif
477}
478
479static inline void
David Vrabel147056f2005-08-31 21:45:14 +0100480__ixp4xx_iowrite8_rep(void __iomem *addr, const void *vaddr, u32 count)
Deepak Saxena450008b2005-07-06 23:06:05 +0100481{
David Vrabel147056f2005-08-31 21:45:14 +0100482 unsigned long port = (unsigned long __force)addr;
Deepak Saxena450008b2005-07-06 23:06:05 +0100483 if (__is_io_address(port))
David Vrabel147056f2005-08-31 21:45:14 +0100484 __ixp4xx_outsb(port & PIO_MASK, vaddr, count);
485 else
Deepak Saxena450008b2005-07-06 23:06:05 +0100486#ifndef CONFIG_IXP4XX_INDIRECT_PCI
David Vrabel147056f2005-08-31 21:45:14 +0100487 __raw_writesb(addr, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100488#else
John Bowlerbfca9452005-11-02 11:55:12 +0000489 __ixp4xx_writesb(addr, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100490#endif
491}
492
493static inline void
David Vrabel147056f2005-08-31 21:45:14 +0100494__ixp4xx_iowrite16(u16 value, void __iomem *addr)
Deepak Saxena450008b2005-07-06 23:06:05 +0100495{
David Vrabel147056f2005-08-31 21:45:14 +0100496 unsigned long port = (unsigned long __force)addr;
Deepak Saxena450008b2005-07-06 23:06:05 +0100497 if (__is_io_address(port))
David Vrabel147056f2005-08-31 21:45:14 +0100498 __ixp4xx_outw(value, port & PIO_MASK);
Deepak Saxena450008b2005-07-06 23:06:05 +0100499 else
500#ifndef CONFIG_IXP4XX_INDIRECT_PCI
David Vrabel147056f2005-08-31 21:45:14 +0100501 __raw_writew(cpu_to_le16(value), addr);
Deepak Saxena450008b2005-07-06 23:06:05 +0100502#else
John Bowlerbfca9452005-11-02 11:55:12 +0000503 __ixp4xx_writew(value, addr);
Deepak Saxena450008b2005-07-06 23:06:05 +0100504#endif
505}
506
507static inline void
David Vrabel147056f2005-08-31 21:45:14 +0100508__ixp4xx_iowrite16_rep(void __iomem *addr, const void *vaddr, u32 count)
Deepak Saxena450008b2005-07-06 23:06:05 +0100509{
David Vrabel147056f2005-08-31 21:45:14 +0100510 unsigned long port = (unsigned long __force)addr;
Deepak Saxena450008b2005-07-06 23:06:05 +0100511 if (__is_io_address(port))
David Vrabel147056f2005-08-31 21:45:14 +0100512 __ixp4xx_outsw(port & PIO_MASK, vaddr, count);
513 else
Deepak Saxena450008b2005-07-06 23:06:05 +0100514#ifndef CONFIG_IXP4XX_INDIRECT_PCI
David Vrabel147056f2005-08-31 21:45:14 +0100515 __raw_writesw(addr, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100516#else
John Bowlerbfca9452005-11-02 11:55:12 +0000517 __ixp4xx_writesw(addr, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100518#endif
519}
520
521static inline void
David Vrabel147056f2005-08-31 21:45:14 +0100522__ixp4xx_iowrite32(u32 value, void __iomem *addr)
Deepak Saxena450008b2005-07-06 23:06:05 +0100523{
David Vrabel147056f2005-08-31 21:45:14 +0100524 unsigned long port = (unsigned long __force)addr;
Deepak Saxena450008b2005-07-06 23:06:05 +0100525 if (__is_io_address(port))
David Vrabel147056f2005-08-31 21:45:14 +0100526 __ixp4xx_outl(value, port & PIO_MASK);
Deepak Saxena450008b2005-07-06 23:06:05 +0100527 else
528#ifndef CONFIG_IXP4XX_INDIRECT_PCI
David Vrabel147056f2005-08-31 21:45:14 +0100529 __raw_writel(cpu_to_le32(value), port);
Deepak Saxena450008b2005-07-06 23:06:05 +0100530#else
John Bowlerbfca9452005-11-02 11:55:12 +0000531 __ixp4xx_writel(value, addr);
Deepak Saxena450008b2005-07-06 23:06:05 +0100532#endif
533}
534
535static inline void
David Vrabel147056f2005-08-31 21:45:14 +0100536__ixp4xx_iowrite32_rep(void __iomem *addr, const void *vaddr, u32 count)
Deepak Saxena450008b2005-07-06 23:06:05 +0100537{
David Vrabel147056f2005-08-31 21:45:14 +0100538 unsigned long port = (unsigned long __force)addr;
Deepak Saxena450008b2005-07-06 23:06:05 +0100539 if (__is_io_address(port))
David Vrabel147056f2005-08-31 21:45:14 +0100540 __ixp4xx_outsl(port & PIO_MASK, vaddr, count);
541 else
Deepak Saxena450008b2005-07-06 23:06:05 +0100542#ifndef CONFIG_IXP4XX_INDIRECT_PCI
David Vrabel147056f2005-08-31 21:45:14 +0100543 __raw_writesl(addr, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100544#else
John Bowlerbfca9452005-11-02 11:55:12 +0000545 __ixp4xx_writesl(addr, vaddr, count);
Deepak Saxena450008b2005-07-06 23:06:05 +0100546#endif
547}
548
549#define ioread8(p) __ixp4xx_ioread8(p)
550#define ioread16(p) __ixp4xx_ioread16(p)
551#define ioread32(p) __ixp4xx_ioread32(p)
552
553#define ioread8_rep(p, v, c) __ixp4xx_ioread8_rep(p, v, c)
554#define ioread16_rep(p, v, c) __ixp4xx_ioread16_rep(p, v, c)
555#define ioread32_rep(p, v, c) __ixp4xx_ioread32_rep(p, v, c)
556
557#define iowrite8(v,p) __ixp4xx_iowrite8(v,p)
558#define iowrite16(v,p) __ixp4xx_iowrite16(v,p)
559#define iowrite32(v,p) __ixp4xx_iowrite32(v,p)
560
561#define iowrite8_rep(p, v, c) __ixp4xx_iowrite8_rep(p, v, c)
562#define iowrite16_rep(p, v, c) __ixp4xx_iowrite16_rep(p, v, c)
563#define iowrite32_rep(p, v, c) __ixp4xx_iowrite32_rep(p, v, c)
564
David Vrabel147056f2005-08-31 21:45:14 +0100565#define ioport_map(port, nr) ((void __iomem*)(port + PIO_OFFSET))
Deepak Saxena450008b2005-07-06 23:06:05 +0100566#define ioport_unmap(addr)
Deepak Saxena76bbb002006-04-30 15:34:29 +0100567#endif // !CONFIG_PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569#endif // __ASM_ARM_ARCH_IO_H
570