Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / sh / boards / se / 7300 / io.c
blob3c89def46480332a3d9990450cea1c09488738f2
1 /*
2 * arch/sh/boards/se/7300/io.c
4 * Copyright (C) 2003 YOSHII Takashi <yoshii-takashi@hitachi-ul.co.jp>
5 * Based on arch/sh/kernel/io_shmse.c
7 * I/O routine for SH-Mobile3 73180 SolutionEngine.
9 */
11 #include <linux/config.h>
12 #include <linux/kernel.h>
13 #include <asm/mach/se7300.h>
14 #include <asm/io.h>
16 #define badio(fn, a) panic("bad i/o operation %s for %08lx.", #fn, a)
18 struct iop {
19 unsigned long start, end;
20 unsigned long base;
21 struct iop *(*check) (struct iop * p, unsigned long port);
22 unsigned char (*inb) (struct iop * p, unsigned long port);
23 unsigned short (*inw) (struct iop * p, unsigned long port);
24 void (*outb) (struct iop * p, unsigned char value, unsigned long port);
25 void (*outw) (struct iop * p, unsigned short value, unsigned long port);
28 struct iop *
29 simple_check(struct iop *p, unsigned long port)
31 if ((p->start <= port) && (port <= p->end))
32 return p;
33 else
34 badio(check, port);
37 struct iop *
38 ide_check(struct iop *p, unsigned long port)
40 if (((0x1f0 <= port) && (port <= 0x1f7)) || (port == 0x3f7))
41 return p;
42 return NULL;
45 unsigned char
46 simple_inb(struct iop *p, unsigned long port)
48 return *(unsigned char *) (p->base + port);
51 unsigned short
52 simple_inw(struct iop *p, unsigned long port)
54 return *(unsigned short *) (p->base + port);
57 void
58 simple_outb(struct iop *p, unsigned char value, unsigned long port)
60 *(unsigned char *) (p->base + port) = value;
63 void
64 simple_outw(struct iop *p, unsigned short value, unsigned long port)
66 *(unsigned short *) (p->base + port) = value;
69 unsigned char
70 pcc_inb(struct iop *p, unsigned long port)
72 unsigned long addr = p->base + port + 0x40000;
73 unsigned long v;
75 if (port & 1)
76 addr += 0x00400000;
77 v = *(volatile unsigned char *) addr;
78 return v;
81 void
82 pcc_outb(struct iop *p, unsigned char value, unsigned long port)
84 unsigned long addr = p->base + port + 0x40000;
86 if (port & 1)
87 addr += 0x00400000;
88 *(volatile unsigned char *) addr = value;
91 unsigned char
92 bad_inb(struct iop *p, unsigned long port)
94 badio(inb, port);
97 void
98 bad_outb(struct iop *p, unsigned char value, unsigned long port)
100 badio(inw, port);
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,
115 /* NE2000 pc card NIC */
116 static struct iop neiop = {
117 .start = 0x280,
118 .end = 0x29f,
119 .base = 0xb0600000 + 0x80, /* soft 0x280 -> hard 0x300 */
120 .check = simple_check,
121 .inb = pcc_inb,
122 .inw = simple_inw,
123 .outb = pcc_outb,
124 .outw = simple_outw,
127 /* CF in CF slot */
128 static struct iop cfiop = {
129 .base = 0xb0600000,
130 .check = ide_check,
131 .inb = pcc_inb,
132 .inw = simple_inw,
133 .outb = pcc_outb,
134 .outw = simple_outw,
137 static __inline__ struct iop *
138 port2iop(unsigned long port)
140 if (0) ;
141 #if defined(CONFIG_SMC91111)
142 else if (laniop.check(&laniop, port))
143 return &laniop;
144 #endif
145 #if defined(CONFIG_NE2000)
146 else if (neiop.check(&neiop, port))
147 return &neiop;
148 #endif
149 #if defined(CONFIG_IDE)
150 else if (cfiop.check(&cfiop, port))
151 return &cfiop;
152 #endif
153 else
154 return &neiop; /* fallback */
157 static inline void
158 delay(void)
160 ctrl_inw(0xac000000);
161 ctrl_inw(0xac000000);
164 unsigned char
165 sh7300se_inb(unsigned long port)
167 struct iop *p = port2iop(port);
168 return (p->inb) (p, port);
171 unsigned char
172 sh7300se_inb_p(unsigned long port)
174 unsigned char v = sh7300se_inb(port);
175 delay();
176 return v;
179 unsigned short
180 sh7300se_inw(unsigned long port)
182 struct iop *p = port2iop(port);
183 return (p->inw) (p, port);
186 unsigned int
187 sh7300se_inl(unsigned long port)
189 badio(inl, port);
192 void
193 sh7300se_outb(unsigned char value, unsigned long port)
195 struct iop *p = port2iop(port);
196 (p->outb) (p, value, port);
199 void
200 sh7300se_outb_p(unsigned char value, unsigned long port)
202 sh7300se_outb(value, port);
203 delay();
206 void
207 sh7300se_outw(unsigned short value, unsigned long port)
209 struct iop *p = port2iop(port);
210 (p->outw) (p, value, port);
213 void
214 sh7300se_outl(unsigned int value, unsigned long port)
216 badio(outl, port);
219 void
220 sh7300se_insb(unsigned long port, void *addr, unsigned long count)
222 unsigned char *a = addr;
223 struct iop *p = port2iop(port);
224 while (count--)
225 *a++ = (p->inb) (p, port);
228 void
229 sh7300se_insw(unsigned long port, void *addr, unsigned long count)
231 unsigned short *a = addr;
232 struct iop *p = port2iop(port);
233 while (count--)
234 *a++ = (p->inw) (p, port);
237 void
238 sh7300se_insl(unsigned long port, void *addr, unsigned long count)
240 badio(insl, port);
243 void
244 sh7300se_outsb(unsigned long port, const void *addr, unsigned long count)
246 unsigned char *a = (unsigned char *) addr;
247 struct iop *p = port2iop(port);
248 while (count--)
249 (p->outb) (p, *a++, port);
252 void
253 sh7300se_outsw(unsigned long port, const void *addr, unsigned long count)
255 unsigned short *a = (unsigned short *) addr;
256 struct iop *p = port2iop(port);
257 while (count--)
258 (p->outw) (p, *a++, port);
261 void
262 sh7300se_outsl(unsigned long port, const void *addr, unsigned long count)
264 badio(outsw, port);