[ARM] 1/4: Move include of asm/hardware.h to asm-arm/arch-*/io.h
[firewire-audio.git] / include / asm-arm / arch-ixp2000 / io.h
blob7fbcdf9931eecfd7ac2d7e088a5fd56befee8616
1 /*
2 * linux/include/asm-arm/arch-ixp2000/io.h
4 * Original Author: Naeem M Afzal <naeem.m.afzal@intel.com>
5 * Maintainer: Deepak Saxena <dsaxena@plexity.net>
7 * Copyright (C) 2002 Intel Corp.
8 * Copyrgiht (C) 2003-2004 MontaVista Software, Inc.
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
15 #ifndef __ASM_ARM_ARCH_IO_H
16 #define __ASM_ARM_ARCH_IO_H
18 #include <asm/hardware.h>
20 #define IO_SPACE_LIMIT 0xffffffff
21 #define __mem_pci(a) (a)
24 * The A? revisions of the IXP2000s assert byte lanes for PCI I/O
25 * transactions the other way round (MEM transactions don't have this
26 * issue), so if we want to support those models, we need to override
27 * the standard I/O functions.
29 * B0 and later have a bit that can be set to 1 to get the proper
30 * behavior for I/O transactions, which then allows us to use the
31 * standard I/O functions. This is what we do if the user does not
32 * explicitly ask for support for pre-B0.
34 #ifdef CONFIG_IXP2000_SUPPORT_BROKEN_PCI_IO
35 #define ___io(p) ((void __iomem *)((p)+IXP2000_PCI_IO_VIRT_BASE))
37 #define alignb(addr) (void __iomem *)((unsigned long)(addr) ^ 3)
38 #define alignw(addr) (void __iomem *)((unsigned long)(addr) ^ 2)
40 #define outb(v,p) __raw_writeb((v),alignb(___io(p)))
41 #define outw(v,p) __raw_writew((v),alignw(___io(p)))
42 #define outl(v,p) __raw_writel((v),___io(p))
44 #define inb(p) ({ unsigned int __v = __raw_readb(alignb(___io(p))); __v; })
45 #define inw(p) \
46 ({ unsigned int __v = (__raw_readw(alignw(___io(p)))); __v; })
47 #define inl(p) \
48 ({ unsigned int __v = (__raw_readl(___io(p))); __v; })
50 #define outsb(p,d,l) __raw_writesb(alignb(___io(p)),d,l)
51 #define outsw(p,d,l) __raw_writesw(alignw(___io(p)),d,l)
52 #define outsl(p,d,l) __raw_writesl(___io(p),d,l)
54 #define insb(p,d,l) __raw_readsb(alignb(___io(p)),d,l)
55 #define insw(p,d,l) __raw_readsw(alignw(___io(p)),d,l)
56 #define insl(p,d,l) __raw_readsl(___io(p),d,l)
58 #define __is_io_address(p) ((((unsigned long)(p)) & ~(IXP2000_PCI_IO_SIZE - 1)) == IXP2000_PCI_IO_VIRT_BASE)
60 #define ioread8(p) \
61 ({ \
62 unsigned int __v; \
64 if (__is_io_address(p)) { \
65 __v = __raw_readb(alignb(p)); \
66 } else { \
67 __v = __raw_readb(p); \
68 } \
70 __v; \
71 }) \
73 #define ioread16(p) \
74 ({ \
75 unsigned int __v; \
77 if (__is_io_address(p)) { \
78 __v = __raw_readw(alignw(p)); \
79 } else { \
80 __v = le16_to_cpu(__raw_readw(p)); \
81 } \
83 __v; \
86 #define ioread32(p) \
87 ({ \
88 unsigned int __v; \
90 if (__is_io_address(p)) { \
91 __v = __raw_readl(p); \
92 } else { \
93 __v = le32_to_cpu(__raw_readl(p)); \
94 } \
96 __v; \
99 #define iowrite8(v,p) \
100 ({ \
101 if (__is_io_address(p)) { \
102 __raw_writeb((v), alignb(p)); \
103 } else { \
104 __raw_writeb((v), p); \
108 #define iowrite16(v,p) \
109 ({ \
110 if (__is_io_address(p)) { \
111 __raw_writew((v), alignw(p)); \
112 } else { \
113 __raw_writew(cpu_to_le16(v), p); \
117 #define iowrite32(v,p) \
118 ({ \
119 if (__is_io_address(p)) { \
120 __raw_writel((v), p); \
121 } else { \
122 __raw_writel(cpu_to_le32(v), p); \
126 #define ioport_map(port, nr) ___io(port)
128 #define ioport_unmap(addr)
129 #else
130 #define __io(p) ((void __iomem *)((p)+IXP2000_PCI_IO_VIRT_BASE))
131 #endif
134 #ifdef CONFIG_ARCH_IXDP2X01
136 * This is an ugly hack but the CS8900 on the 2x01's does not sit in any sort
137 * of "I/O space" and is just direct mapped into a 32-bit-only addressable
138 * bus. The address space for this bus is such that we can't really easily
139 * make it contiguous to the PCI I/O address range, and it also does not
140 * need swapping like PCI addresses do (IXDP2x01 is a BE platform).
141 * B/C of this we can't use the standard in/out functions and need to
142 * runtime check if the incoming address is a PCI address or for
143 * the CS89x0.
145 #undef inw
146 #undef outw
147 #undef insw
148 #undef outsw
150 #include <asm/mach-types.h>
152 static inline void insw(u32 ptr, void *buf, int length)
154 register volatile u32 *port = (volatile u32 *)ptr;
157 * Is this cycle meant for the CS8900?
159 if ((machine_is_ixdp2401() || machine_is_ixdp2801()) &&
160 (((u32)port >= (u32)IXDP2X01_CS8900_VIRT_BASE) &&
161 ((u32)port <= (u32)IXDP2X01_CS8900_VIRT_END))) {
162 u8 *buf8 = (u8*)buf;
163 register u32 tmp32;
165 do {
166 tmp32 = *port;
167 *buf8++ = (u8)tmp32;
168 *buf8++ = (u8)(tmp32 >> 8);
169 } while(--length);
171 return;
174 __raw_readsw(alignw(___io(ptr)),buf,length);
177 static inline void outsw(u32 ptr, void *buf, int length)
179 register volatile u32 *port = (volatile u32 *)ptr;
182 * Is this cycle meant for the CS8900?
184 if ((machine_is_ixdp2401() || machine_is_ixdp2801()) &&
185 (((u32)port >= (u32)IXDP2X01_CS8900_VIRT_BASE) &&
186 ((u32)port <= (u32)IXDP2X01_CS8900_VIRT_END))) {
187 register u32 tmp32;
188 u8 *buf8 = (u8*)buf;
189 do {
190 tmp32 = *buf8++;
191 tmp32 |= (*buf8++) << 8;
192 *port = tmp32;
193 } while(--length);
194 return;
197 __raw_writesw(alignw(___io(ptr)),buf,length);
201 static inline u16 inw(u32 ptr)
203 register volatile u32 *port = (volatile u32 *)ptr;
206 * Is this cycle meant for the CS8900?
208 if ((machine_is_ixdp2401() || machine_is_ixdp2801()) &&
209 (((u32)port >= (u32)IXDP2X01_CS8900_VIRT_BASE) &&
210 ((u32)port <= (u32)IXDP2X01_CS8900_VIRT_END))) {
211 return (u16)(*port);
214 return __raw_readw(alignw(___io(ptr)));
217 static inline void outw(u16 value, u32 ptr)
219 register volatile u32 *port = (volatile u32 *)ptr;
221 if ((machine_is_ixdp2401() || machine_is_ixdp2801()) &&
222 (((u32)port >= (u32)IXDP2X01_CS8900_VIRT_BASE) &&
223 ((u32)port <= (u32)IXDP2X01_CS8900_VIRT_END))) {
224 *port = value;
225 return;
228 __raw_writew((value),alignw(___io(ptr)));
230 #endif /* IXDP2x01 */
232 #endif