allow coexistance of N build and AC build.
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / arch / sh / boards / se / 73180 / io.c
blob72715575458b81b2f217738d2fb6dd0df0bb8566
1 /*
2 * arch/sh/boards/se/73180/io.c
4 * Copyright (C) 2003 YOSHII Takashi <yoshii-takashi@hitachi-ul.co.jp>
5 * Based on arch/sh/boards/se/7300/io.c
7 * I/O routine for SH-Mobile3 73180 SolutionEngine.
9 */
11 #include <linux/kernel.h>
12 #include <asm/mach/se73180.h>
13 #include <asm/io.h>
15 #define badio(fn, a) panic("bad i/o operation %s for %08lx.", #fn, a)
17 struct iop {
18 unsigned long start, end;
19 unsigned long base;
20 struct iop *(*check) (struct iop * p, unsigned long port);
21 unsigned char (*inb) (struct iop * p, unsigned long port);
22 unsigned short (*inw) (struct iop * p, unsigned long port);
23 void (*outb) (struct iop * p, unsigned char value, unsigned long port);
24 void (*outw) (struct iop * p, unsigned short value, unsigned long port);
27 struct iop *
28 simple_check(struct iop *p, unsigned long port)
30 if ((p->start <= port) && (port <= p->end))
31 return p;
32 else
33 badio(check, port);
36 struct iop *
37 ide_check(struct iop *p, unsigned long port)
39 if (((0x1f0 <= port) && (port <= 0x1f7)) || (port == 0x3f7))
40 return p;
41 return NULL;
44 unsigned char
45 simple_inb(struct iop *p, unsigned long port)
47 return *(unsigned char *) (p->base + port);
50 unsigned short
51 simple_inw(struct iop *p, unsigned long port)
53 return *(unsigned short *) (p->base + port);
56 void
57 simple_outb(struct iop *p, unsigned char value, unsigned long port)
59 *(unsigned char *) (p->base + port) = value;
62 void
63 simple_outw(struct iop *p, unsigned short value, unsigned long port)
65 *(unsigned short *) (p->base + port) = value;
68 unsigned char
69 pcc_inb(struct iop *p, unsigned long port)
71 unsigned long addr = p->base + port + 0x40000;
72 unsigned long v;
74 if (port & 1)
75 addr += 0x00400000;
76 v = *(volatile unsigned char *) addr;
77 return v;
80 void
81 pcc_outb(struct iop *p, unsigned char value, unsigned long port)
83 unsigned long addr = p->base + port + 0x40000;
85 if (port & 1)
86 addr += 0x00400000;
87 *(volatile unsigned char *) addr = value;
90 unsigned char
91 bad_inb(struct iop *p, unsigned long port)
93 badio(inb, port);
96 void
97 bad_outb(struct iop *p, unsigned char value, unsigned long port)
99 badio(inw, port);
102 #ifdef CONFIG_SMC91X
103 /* MSTLANEX01 LAN at 0xb400:0000 */
104 static struct iop laniop = {
105 .start = 0x300,
106 .end = 0x30f,
107 .base = 0xb4000000,
108 .check = simple_check,
109 .inb = simple_inb,
110 .inw = simple_inw,
111 .outb = simple_outb,
112 .outw = simple_outw,
114 #endif
116 /* NE2000 pc card NIC */
117 static struct iop neiop = {
118 .start = 0x280,
119 .end = 0x29f,
120 .base = 0xb0600000 + 0x80, /* soft 0x280 -> hard 0x300 */
121 .check = simple_check,
122 .inb = pcc_inb,
123 .inw = simple_inw,
124 .outb = pcc_outb,
125 .outw = simple_outw,
128 #ifdef CONFIG_IDE
129 /* CF in CF slot */
130 static struct iop cfiop = {
131 .base = 0xb0600000,
132 .check = ide_check,
133 .inb = pcc_inb,
134 .inw = simple_inw,
135 .outb = pcc_outb,
136 .outw = simple_outw,
138 #endif
140 static __inline__ struct iop *
141 port2iop(unsigned long port)
143 if (0) ;
144 #if defined(CONFIG_SMC91X)
145 else if (laniop.check(&laniop, port))
146 return &laniop;
147 #endif
148 #if defined(CONFIG_NE2000)
149 else if (neiop.check(&neiop, port))
150 return &neiop;
151 #endif
152 #if defined(CONFIG_IDE)
153 else if (cfiop.check(&cfiop, port))
154 return &cfiop;
155 #endif
156 else
157 return &neiop; /* fallback */
160 static inline void
161 delay(void)
163 ctrl_inw(0xac000000);
164 ctrl_inw(0xac000000);
167 unsigned char
168 sh73180se_inb(unsigned long port)
170 struct iop *p = port2iop(port);
171 return (p->inb) (p, port);
174 unsigned char
175 sh73180se_inb_p(unsigned long port)
177 unsigned char v = sh73180se_inb(port);
178 delay();
179 return v;
182 unsigned short
183 sh73180se_inw(unsigned long port)
185 struct iop *p = port2iop(port);
186 return (p->inw) (p, port);
189 unsigned int
190 sh73180se_inl(unsigned long port)
192 badio(inl, port);
195 void
196 sh73180se_outb(unsigned char value, unsigned long port)
198 struct iop *p = port2iop(port);
199 (p->outb) (p, value, port);
202 void
203 sh73180se_outb_p(unsigned char value, unsigned long port)
205 sh73180se_outb(value, port);
206 delay();
209 void
210 sh73180se_outw(unsigned short value, unsigned long port)
212 struct iop *p = port2iop(port);
213 (p->outw) (p, value, port);
216 void
217 sh73180se_outl(unsigned int value, unsigned long port)
219 badio(outl, port);
222 void
223 sh73180se_insb(unsigned long port, void *addr, unsigned long count)
225 unsigned char *a = addr;
226 struct iop *p = port2iop(port);
227 while (count--)
228 *a++ = (p->inb) (p, port);
231 void
232 sh73180se_insw(unsigned long port, void *addr, unsigned long count)
234 unsigned short *a = addr;
235 struct iop *p = port2iop(port);
236 while (count--)
237 *a++ = (p->inw) (p, port);
240 void
241 sh73180se_insl(unsigned long port, void *addr, unsigned long count)
243 badio(insl, port);
246 void
247 sh73180se_outsb(unsigned long port, const void *addr, unsigned long count)
249 unsigned char *a = (unsigned char *) addr;
250 struct iop *p = port2iop(port);
251 while (count--)
252 (p->outb) (p, *a++, port);
255 void
256 sh73180se_outsw(unsigned long port, const void *addr, unsigned long count)
258 unsigned short *a = (unsigned short *) addr;
259 struct iop *p = port2iop(port);
260 while (count--)
261 (p->outw) (p, *a++, port);
264 void
265 sh73180se_outsl(unsigned long port, const void *addr, unsigned long count)
267 badio(outsw, port);