diff options
43 files changed, 201 insertions, 671 deletions
diff --git a/arch/sh/Makefile b/arch/sh/Makefile index 55dcba2c06fc..65676c33822e 100644 --- a/arch/sh/Makefile +++ b/arch/sh/Makefile | |||
@@ -111,10 +111,7 @@ machdir-$(CONFIG_SH_UNKNOWN) := unknown | |||
111 | 111 | ||
112 | incdir-y := $(notdir $(machdir-y)) | 112 | incdir-y := $(notdir $(machdir-y)) |
113 | 113 | ||
114 | incdir-$(CONFIG_SH_SOLUTION_ENGINE) := se | ||
115 | incdir-$(CONFIG_SH_7751_SOLUTION_ENGINE) := se7751 | 114 | incdir-$(CONFIG_SH_7751_SOLUTION_ENGINE) := se7751 |
116 | incdir-$(CONFIG_SH_7300_SOLUTION_ENGINE) := se7300 | ||
117 | incdir-$(CONFIG_SH_73180_SOLUTION_ENGINE) := se73180 | ||
118 | incdir-$(CONFIG_SH_HP6XX) := hp6xx | 115 | incdir-$(CONFIG_SH_HP6XX) := hp6xx |
119 | 116 | ||
120 | ifneq ($(machdir-y),) | 117 | ifneq ($(machdir-y),) |
diff --git a/arch/sh/boards/renesas/hs7751rvoip/io.c b/arch/sh/boards/renesas/hs7751rvoip/io.c index edecf107fc13..ecdce7ef6a34 100644 --- a/arch/sh/boards/renesas/hs7751rvoip/io.c +++ b/arch/sh/boards/renesas/hs7751rvoip/io.c | |||
@@ -21,10 +21,8 @@ | |||
21 | #include <linux/pci.h> | 21 | #include <linux/pci.h> |
22 | #include "../../../drivers/pci/pci-sh7751.h" | 22 | #include "../../../drivers/pci/pci-sh7751.h" |
23 | 23 | ||
24 | extern void *area5_io8_base; /* Area 5 8bit I/O Base address */ | ||
25 | extern void *area6_io8_base; /* Area 6 8bit I/O Base address */ | 24 | extern void *area6_io8_base; /* Area 6 8bit I/O Base address */ |
26 | extern void *area5_io16_base; /* Area 5 16bit I/O Base address */ | 25 | extern void *area5_io16_base; /* Area 5 16bit I/O Base address */ |
27 | extern void *area6_io16_base; /* Area 6 16bit I/O Base address */ | ||
28 | 26 | ||
29 | /* | 27 | /* |
30 | * The 7751R HS7751RVoIP uses the built-in PCI controller (PCIC) | 28 | * The 7751R HS7751RVoIP uses the built-in PCI controller (PCIC) |
@@ -37,16 +35,10 @@ extern void *area6_io16_base; /* Area 6 16bit I/O Base address */ | |||
37 | #define PCIMBR (volatile long *)PCI_REG(SH7751_PCIMBR) | 35 | #define PCIMBR (volatile long *)PCI_REG(SH7751_PCIMBR) |
38 | #define PCI_IO_AREA SH7751_PCI_IO_BASE | 36 | #define PCI_IO_AREA SH7751_PCI_IO_BASE |
39 | #define PCI_MEM_AREA SH7751_PCI_CONFIG_BASE | 37 | #define PCI_MEM_AREA SH7751_PCI_CONFIG_BASE |
40 | |||
41 | #define PCI_IOMAP(adr) (PCI_IO_AREA + (adr & ~SH7751_PCIIOBR_MASK)) | 38 | #define PCI_IOMAP(adr) (PCI_IO_AREA + (adr & ~SH7751_PCIIOBR_MASK)) |
42 | 39 | ||
43 | #if defined(CONFIG_HS7751RVOIP_CODEC) | ||
44 | #define CODEC_IO_BASE 0x1000 | 40 | #define CODEC_IO_BASE 0x1000 |
45 | #endif | 41 | #define CODEC_IOMAP(a) ((unsigned long)area6_io8_base + ((a) - CODEC_IO_BASE)) |
46 | |||
47 | #define maybebadio(name,port) \ | ||
48 | printk("bad PC-like io %s for port 0x%lx at 0x%08x\n", \ | ||
49 | #name, (port), (__u32) __builtin_return_address(0)) | ||
50 | 42 | ||
51 | static inline void delay(void) | 43 | static inline void delay(void) |
52 | { | 44 | { |
@@ -61,7 +53,7 @@ static inline unsigned long port2adr(unsigned int port) | |||
61 | else | 53 | else |
62 | return ((unsigned long)area5_io16_base + 0x800 + ((port-0x1f0) << 1)); | 54 | return ((unsigned long)area5_io16_base + 0x800 + ((port-0x1f0) << 1)); |
63 | else | 55 | else |
64 | maybebadio(port2adr, (unsigned long)port); | 56 | maybebadio((unsigned long)port); |
65 | return port; | 57 | return port; |
66 | } | 58 | } |
67 | 59 | ||
@@ -109,15 +101,15 @@ codec_port(unsigned long port) | |||
109 | unsigned char hs7751rvoip_inb(unsigned long port) | 101 | unsigned char hs7751rvoip_inb(unsigned long port) |
110 | { | 102 | { |
111 | if (PXSEG(port)) | 103 | if (PXSEG(port)) |
112 | return *(volatile unsigned char *)port; | 104 | return ctrl_inb(port); |
113 | #if defined(CONFIG_HS7751RVOIP_CODEC) | 105 | #if defined(CONFIG_HS7751RVOIP_CODEC) |
114 | else if (codec_port(port)) | 106 | else if (codec_port(port)) |
115 | return *(volatile unsigned char *)((unsigned long)area6_io8_base+(port-CODEC_IO_BASE)); | 107 | return ctrl_inb(CODEC_IOMAP(port)); |
116 | #endif | 108 | #endif |
117 | else if (CHECK_SH7751_PCIIO(port) || shifted_port(port)) | 109 | else if (CHECK_SH7751_PCIIO(port) || shifted_port(port)) |
118 | return *(volatile unsigned char *)PCI_IOMAP(port); | 110 | return ctrl_inb(PCI_IOMAP(port)); |
119 | else | 111 | else |
120 | return (*(volatile unsigned short *)port2adr(port) & 0xff); | 112 | return ctrl_inw(port2adr(port)) & 0xff; |
121 | } | 113 | } |
122 | 114 | ||
123 | unsigned char hs7751rvoip_inb_p(unsigned long port) | 115 | unsigned char hs7751rvoip_inb_p(unsigned long port) |
@@ -125,15 +117,15 @@ unsigned char hs7751rvoip_inb_p(unsigned long port) | |||
125 | unsigned char v; | 117 | unsigned char v; |
126 | 118 | ||
127 | if (PXSEG(port)) | 119 | if (PXSEG(port)) |
128 | v = *(volatile unsigned char *)port; | 120 | v = ctrl_inb(port); |
129 | #if defined(CONFIG_HS7751RVOIP_CODEC) | 121 | #if defined(CONFIG_HS7751RVOIP_CODEC) |
130 | else if (codec_port(port)) | 122 | else if (codec_port(port)) |
131 | v = *(volatile unsigned char *)((unsigned long)area6_io8_base+(port-CODEC_IO_BASE)); | 123 | v = ctrl_inb(CODEC_IOMAP(port)); |
132 | #endif | 124 | #endif |
133 | else if (CHECK_SH7751_PCIIO(port) || shifted_port(port)) | 125 | else if (CHECK_SH7751_PCIIO(port) || shifted_port(port)) |
134 | v = *(volatile unsigned char *)PCI_IOMAP(port); | 126 | v = ctrl_inb(PCI_IOMAP(port)); |
135 | else | 127 | else |
136 | v = (*(volatile unsigned short *)port2adr(port) & 0xff); | 128 | v = ctrl_inw(port2adr(port)) & 0xff; |
137 | delay(); | 129 | delay(); |
138 | return v; | 130 | return v; |
139 | } | 131 | } |
@@ -141,22 +133,22 @@ unsigned char hs7751rvoip_inb_p(unsigned long port) | |||
141 | unsigned short hs7751rvoip_inw(unsigned long port) | 133 | unsigned short hs7751rvoip_inw(unsigned long port) |
142 | { | 134 | { |
143 | if (PXSEG(port)) | 135 | if (PXSEG(port)) |
144 | return *(volatile unsigned short *)port; | 136 | return ctrl_inw(port); |
145 | else if (CHECK_SH7751_PCIIO(port) || shifted_port(port)) | 137 | else if (CHECK_SH7751_PCIIO(port) || shifted_port(port)) |
146 | return *(volatile unsigned short *)PCI_IOMAP(port); | 138 | return ctrl_inw(PCI_IOMAP(port)); |
147 | else | 139 | else |
148 | maybebadio(inw, port); | 140 | maybebadio(port); |
149 | return 0; | 141 | return 0; |
150 | } | 142 | } |
151 | 143 | ||
152 | unsigned int hs7751rvoip_inl(unsigned long port) | 144 | unsigned int hs7751rvoip_inl(unsigned long port) |
153 | { | 145 | { |
154 | if (PXSEG(port)) | 146 | if (PXSEG(port)) |
155 | return *(volatile unsigned long *)port; | 147 | return ctrl_inl(port); |
156 | else if (CHECK_SH7751_PCIIO(port) || shifted_port(port)) | 148 | else if (CHECK_SH7751_PCIIO(port) || shifted_port(port)) |
157 | return *(volatile unsigned long *)PCI_IOMAP(port); | 149 | return ctrl_inl(PCI_IOMAP(port)); |
158 | else | 150 | else |
159 | maybebadio(inl, port); | 151 | maybebadio(port); |
160 | return 0; | 152 | return 0; |
161 | } | 153 | } |
162 | 154 | ||
@@ -164,137 +156,168 @@ void hs7751rvoip_outb(unsigned char value, unsigned long port) | |||
164 | { | 156 | { |
165 | 157 | ||
166 | if (PXSEG(port)) | 158 | if (PXSEG(port)) |
167 | *(volatile unsigned char *)port = value; | 159 | ctrl_outb(value, port); |
168 | #if defined(CONFIG_HS7751RVOIP_CODEC) | 160 | #if defined(CONFIG_HS7751RVOIP_CODEC) |
169 | else if (codec_port(port)) | 161 | else if (codec_port(port)) |
170 | *(volatile unsigned char *)((unsigned long)area6_io8_base+(port-CODEC_IO_BASE)) = value; | 162 | ctrl_outb(value, CODEC_IOMAP(port)); |
171 | #endif | 163 | #endif |
172 | else if (CHECK_SH7751_PCIIO(port) || shifted_port(port)) | 164 | else if (CHECK_SH7751_PCIIO(port) || shifted_port(port)) |
173 | *(unsigned char *)PCI_IOMAP(port) = value; | 165 | ctrl_outb(value, PCI_IOMAP(port)); |
174 | else | 166 | else |
175 | *(volatile unsigned short *)port2adr(port) = value; | 167 | ctrl_outb(value, port2adr(port)); |
176 | } | 168 | } |
177 | 169 | ||
178 | void hs7751rvoip_outb_p(unsigned char value, unsigned long port) | 170 | void hs7751rvoip_outb_p(unsigned char value, unsigned long port) |
179 | { | 171 | { |
180 | if (PXSEG(port)) | 172 | if (PXSEG(port)) |
181 | *(volatile unsigned char *)port = value; | 173 | ctrl_outb(value, port); |
182 | #if defined(CONFIG_HS7751RVOIP_CODEC) | 174 | #if defined(CONFIG_HS7751RVOIP_CODEC) |
183 | else if (codec_port(port)) | 175 | else if (codec_port(port)) |
184 | *(volatile unsigned char *)((unsigned long)area6_io8_base+(port-CODEC_IO_BASE)) = value; | 176 | ctrl_outb(value, CODEC_IOMAP(port)); |
185 | #endif | 177 | #endif |
186 | else if (CHECK_SH7751_PCIIO(port) || shifted_port(port)) | 178 | else if (CHECK_SH7751_PCIIO(port) || shifted_port(port)) |
187 | *(unsigned char *)PCI_IOMAP(port) = value; | 179 | ctrl_outb(value, PCI_IOMAP(port)); |
188 | else | 180 | else |
189 | *(volatile unsigned short *)port2adr(port) = value; | 181 | ctrl_outw(value, port2adr(port)); |
182 | |||
190 | delay(); | 183 | delay(); |
191 | } | 184 | } |
192 | 185 | ||
193 | void hs7751rvoip_outw(unsigned short value, unsigned long port) | 186 | void hs7751rvoip_outw(unsigned short value, unsigned long port) |
194 | { | 187 | { |
195 | if (PXSEG(port)) | 188 | if (PXSEG(port)) |
196 | *(volatile unsigned short *)port = value; | 189 | ctrl_outw(value, port); |
197 | else if (CHECK_SH7751_PCIIO(port) || shifted_port(port)) | 190 | else if (CHECK_SH7751_PCIIO(port) || shifted_port(port)) |
198 | *(unsigned short *)PCI_IOMAP(port) = value; | 191 | ctrl_outw(value, PCI_IOMAP(port)); |
199 | else | 192 | else |
200 | maybebadio(outw, port); | 193 | maybebadio(port); |
201 | } | 194 | } |
202 | 195 | ||
203 | void hs7751rvoip_outl(unsigned int value, unsigned long port) | 196 | void hs7751rvoip_outl(unsigned int value, unsigned long port) |
204 | { | 197 | { |
205 | if (PXSEG(port)) | 198 | if (PXSEG(port)) |
206 | *(volatile unsigned long *)port = value; | 199 | ctrl_outl(value, port); |
207 | else if (CHECK_SH7751_PCIIO(port) || shifted_port(port)) | 200 | else if (CHECK_SH7751_PCIIO(port) || shifted_port(port)) |
208 | *((unsigned long *)PCI_IOMAP(port)) = value; | 201 | ctrl_outl(value, PCI_IOMAP(port)); |
209 | else | 202 | else |
210 | maybebadio(outl, port); | 203 | maybebadio(port); |
211 | } | 204 | } |
212 | 205 | ||
213 | void hs7751rvoip_insb(unsigned long port, void *addr, unsigned long count) | 206 | void hs7751rvoip_insb(unsigned long port, void *addr, unsigned long count) |
214 | { | 207 | { |
208 | u8 *buf = addr; | ||
209 | |||
215 | if (PXSEG(port)) | 210 | if (PXSEG(port)) |
216 | while (count--) *((unsigned char *) addr)++ = *(volatile unsigned char *)port; | 211 | while (count--) |
212 | *buf++ = ctrl_inb(port); | ||
217 | #if defined(CONFIG_HS7751RVOIP_CODEC) | 213 | #if defined(CONFIG_HS7751RVOIP_CODEC) |
218 | else if (codec_port(port)) | 214 | else if (codec_port(port)) |
219 | while (count--) *((unsigned char *) addr)++ = *(volatile unsigned char *)((unsigned long)area6_io8_base+(port-CODEC_IO_BASE)); | 215 | while (count--) |
216 | *buf++ = ctrl_inb(CODEC_IOMAP(port)); | ||
220 | #endif | 217 | #endif |
221 | else if (CHECK_SH7751_PCIIO(port) || shifted_port(port)) { | 218 | else if (CHECK_SH7751_PCIIO(port) || shifted_port(port)) { |
222 | volatile __u8 *bp = (__u8 *)PCI_IOMAP(port); | 219 | volatile u8 *bp = (volatile u8 *)PCI_IOMAP(port); |
223 | 220 | ||
224 | while (count--) *((volatile unsigned char *) addr)++ = *bp; | 221 | while (count--) |
222 | *buf++ = *bp; | ||
225 | } else { | 223 | } else { |
226 | volatile __u16 *p = (volatile unsigned short *)port2adr(port); | 224 | volatile u16 *p = (volatile u16 *)port2adr(port); |
227 | 225 | ||
228 | while (count--) *((unsigned char *) addr)++ = *p & 0xff; | 226 | while (count--) |
227 | *buf++ = *p & 0xff; | ||
229 | } | 228 | } |
230 | } | 229 | } |
231 | 230 | ||
232 | void hs7751rvoip_insw(unsigned long port, void *addr, unsigned long count) | 231 | void hs7751rvoip_insw(unsigned long port, void *addr, unsigned long count) |
233 | { | 232 | { |
234 | volatile __u16 *p; | 233 | volatile u16 *p; |
234 | u16 *buf = addr; | ||
235 | 235 | ||
236 | if (PXSEG(port)) | 236 | if (PXSEG(port)) |
237 | p = (volatile unsigned short *)port; | 237 | p = (volatile u16 *)port; |
238 | else if (CHECK_SH7751_PCIIO(port) || shifted_port(port)) | 238 | else if (CHECK_SH7751_PCIIO(port) || shifted_port(port)) |
239 | p = (volatile unsigned short *)PCI_IOMAP(port); | 239 | p = (volatile u16 *)PCI_IOMAP(port); |
240 | else | 240 | else |
241 | p = (volatile unsigned short *)port2adr(port); | 241 | p = (volatile u16 *)port2adr(port); |
242 | while (count--) *((__u16 *) addr)++ = *p; | 242 | while (count--) |
243 | *buf++ = *p; | ||
243 | } | 244 | } |
244 | 245 | ||
245 | void hs7751rvoip_insl(unsigned long port, void *addr, unsigned long count) | 246 | void hs7751rvoip_insl(unsigned long port, void *addr, unsigned long count) |
246 | { | 247 | { |
248 | |||
247 | if (CHECK_SH7751_PCIIO(port) || shifted_port(port)) { | 249 | if (CHECK_SH7751_PCIIO(port) || shifted_port(port)) { |
248 | volatile __u32 *p = (__u32 *)PCI_IOMAP(port); | 250 | volatile u32 *p = (volatile u32 *)PCI_IOMAP(port); |
251 | u32 *buf = addr; | ||
249 | 252 | ||
250 | while (count--) *((__u32 *) addr)++ = *p; | 253 | while (count--) |
254 | *buf++ = *p; | ||
251 | } else | 255 | } else |
252 | maybebadio(insl, port); | 256 | maybebadio(port); |
253 | } | 257 | } |
254 | 258 | ||
255 | void hs7751rvoip_outsb(unsigned long port, const void *addr, unsigned long count) | 259 | void hs7751rvoip_outsb(unsigned long port, const void *addr, unsigned long count) |
256 | { | 260 | { |
261 | const u8 *buf = addr; | ||
262 | |||
257 | if (PXSEG(port)) | 263 | if (PXSEG(port)) |
258 | while (count--) *(volatile unsigned char *)port = *((unsigned char *) addr)++; | 264 | while (count--) |
265 | ctrl_outb(*buf++, port); | ||
259 | #if defined(CONFIG_HS7751RVOIP_CODEC) | 266 | #if defined(CONFIG_HS7751RVOIP_CODEC) |
260 | else if (codec_port(port)) | 267 | else if (codec_port(port)) |
261 | while (count--) *(volatile unsigned char *)((unsigned long)area6_io8_base+(port-CODEC_IO_BASE)) = *((unsigned char *) addr)++; | 268 | while (count--) |
269 | ctrl_outb(*buf++, CODEC_IOMAP(port)); | ||
262 | #endif | 270 | #endif |
263 | else if (CHECK_SH7751_PCIIO(port) || shifted_port(port)) { | 271 | else if (CHECK_SH7751_PCIIO(port) || shifted_port(port)) { |
264 | volatile __u8 *bp = (__u8 *)PCI_IOMAP(port); | 272 | volatile u8 *bp = (volatile u8 *)PCI_IOMAP(port); |
265 | 273 | ||
266 | while (count--) *bp = *((volatile unsigned char *) addr)++; | 274 | while (count--) |
275 | *bp = *buf++; | ||
267 | } else { | 276 | } else { |
268 | volatile __u16 *p = (volatile unsigned short *)port2adr(port); | 277 | volatile u16 *p = (volatile u16 *)port2adr(port); |
269 | 278 | ||
270 | while (count--) *p = *((unsigned char *) addr)++; | 279 | while (count--) |
280 | *p = *buf++; | ||
271 | } | 281 | } |
272 | } | 282 | } |
273 | 283 | ||
274 | void hs7751rvoip_outsw(unsigned long port, const void *addr, unsigned long count) | 284 | void hs7751rvoip_outsw(unsigned long port, const void *addr, unsigned long count) |
275 | { | 285 | { |
276 | volatile __u16 *p; | 286 | volatile u16 *p; |
287 | const u16 *buf = addr; | ||
277 | 288 | ||
278 | if (PXSEG(port)) | 289 | if (PXSEG(port)) |
279 | p = (volatile unsigned short *)port; | 290 | p = (volatile u16 *)port; |
280 | else if (CHECK_SH7751_PCIIO(port) || shifted_port(port)) | 291 | else if (CHECK_SH7751_PCIIO(port) || shifted_port(port)) |
281 | p = (volatile unsigned short *)PCI_IOMAP(port); | 292 | p = (volatile u16 *)PCI_IOMAP(port); |
282 | else | 293 | else |
283 | p = (volatile unsigned short *)port2adr(port); | 294 | p = (volatile u16 *)port2adr(port); |
284 | while (count--) *p = *((__u16 *) addr)++; | 295 | |
296 | while (count--) | ||
297 | *p = *buf++; | ||
285 | } | 298 | } |
286 | 299 | ||
287 | void hs7751rvoip_outsl(unsigned long port, const void *addr, unsigned long count) | 300 | void hs7751rvoip_outsl(unsigned long port, const void *addr, unsigned long count) |
288 | { | 301 | { |
302 | const u32 *buf = addr; | ||
303 | |||
289 | if (CHECK_SH7751_PCIIO(port) || shifted_port(port)) { | 304 | if (CHECK_SH7751_PCIIO(port) || shifted_port(port)) { |
290 | volatile __u32 *p = (__u32 *)PCI_IOMAP(port); | 305 | volatile u32 *p = (volatile u32 *)PCI_IOMAP(port); |
291 | 306 | ||
292 | while (count--) *p = *((__u32 *) addr)++; | 307 | while (count--) |
308 | *p = *buf++; | ||
293 | } else | 309 | } else |
294 | maybebadio(outsl, port); | 310 | maybebadio(port); |
295 | } | 311 | } |
296 | 312 | ||
297 | unsigned long hs7751rvoip_isa_port2addr(unsigned long offset) | 313 | void __iomem *hs7751rvoip_ioport_map(unsigned long port, unsigned int size) |
298 | { | 314 | { |
299 | return port2adr(offset); | 315 | if (PXSEG(port)) |
316 | return (void __iomem *)port; | ||
317 | else if (unlikely(codec_port(port) && (size == 1))) | ||
318 | return (void __iomem *)CODEC_IOMAP(port); | ||
319 | else if (CHECK_SH7751_PCIIO(port)) | ||
320 | return (void __iomem *)PCI_IOMAP(port); | ||
321 | |||
322 | return (void __iomem *)port2adr(port); | ||
300 | } | 323 | } |
diff --git a/arch/sh/boards/renesas/hs7751rvoip/setup.c b/arch/sh/boards/renesas/hs7751rvoip/setup.c index aa51bda931f6..a2cbcc5d530f 100644 --- a/arch/sh/boards/renesas/hs7751rvoip/setup.c +++ b/arch/sh/boards/renesas/hs7751rvoip/setup.c | |||
@@ -17,9 +17,8 @@ | |||
17 | #include <linux/hdreg.h> | 17 | #include <linux/hdreg.h> |
18 | #include <linux/ide.h> | 18 | #include <linux/ide.h> |
19 | #include <linux/pm.h> | 19 | #include <linux/pm.h> |
20 | #include <asm/hs7751rvoip/hs7751rvoip.h> | ||
21 | #include <asm/hs7751rvoip/io.h> | ||
22 | #include <asm/io.h> | 20 | #include <asm/io.h> |
21 | #include <asm/hs7751rvoip/hs7751rvoip.h> | ||
23 | #include <asm/machvec.h> | 22 | #include <asm/machvec.h> |
24 | #include <asm/rtc.h> | 23 | #include <asm/rtc.h> |
25 | #include <asm/irq.h> | 24 | #include <asm/irq.h> |
@@ -60,8 +59,8 @@ struct sh_machine_vector mv_hs7751rvoip __initmv = { | |||
60 | .mv_outsw = hs7751rvoip_outsw, | 59 | .mv_outsw = hs7751rvoip_outsw, |
61 | .mv_outsl = hs7751rvoip_outsl, | 60 | .mv_outsl = hs7751rvoip_outsl, |
62 | 61 | ||
63 | .mv_isa_port2addr = hs7751rvoip_isa_port2addr, | ||
64 | .mv_init_irq = hs7751rvoip_init_irq, | 62 | .mv_init_irq = hs7751rvoip_init_irq, |
63 | .mv_ioport_map = hs7751rvoip_ioport_map, | ||
65 | }; | 64 | }; |
66 | ALIAS_MV(hs7751rvoip) | 65 | ALIAS_MV(hs7751rvoip) |
67 | 66 | ||
diff --git a/arch/sh/boards/renesas/systemh/io.c b/arch/sh/boards/renesas/systemh/io.c index 85511576d414..0befd4f9894c 100644 --- a/arch/sh/boards/renesas/systemh/io.c +++ b/arch/sh/boards/renesas/systemh/io.c | |||
@@ -10,11 +10,10 @@ | |||
10 | 10 | ||
11 | #include <linux/kernel.h> | 11 | #include <linux/kernel.h> |
12 | #include <linux/types.h> | 12 | #include <linux/types.h> |
13 | #include <asm/systemh/7751systemh.h> | 13 | #include <linux/pci.h> |
14 | #include <asm/systemh7751.h> | ||
14 | #include <asm/addrspace.h> | 15 | #include <asm/addrspace.h> |
15 | #include <asm/io.h> | 16 | #include <asm/io.h> |
16 | |||
17 | #include <linux/pci.h> | ||
18 | #include "../../../drivers/pci/pci-sh7751.h" | 17 | #include "../../../drivers/pci/pci-sh7751.h" |
19 | 18 | ||
20 | /* | 19 | /* |
@@ -31,11 +30,6 @@ | |||
31 | #define PCI_IOMAP(adr) (PCI_IO_AREA + (adr & ~SH7751_PCIIOBR_MASK)) | 30 | #define PCI_IOMAP(adr) (PCI_IO_AREA + (adr & ~SH7751_PCIIOBR_MASK)) |
32 | #define ETHER_IOMAP(adr) (0xB3000000 + (adr)) /*map to 16bits access area | 31 | #define ETHER_IOMAP(adr) (0xB3000000 + (adr)) /*map to 16bits access area |
33 | of smc lan chip*/ | 32 | of smc lan chip*/ |
34 | |||
35 | #define maybebadio(name,port) \ | ||
36 | printk("bad PC-like io %s for port 0x%lx at 0x%08x\n", \ | ||
37 | #name, (port), (__u32) __builtin_return_address(0)) | ||
38 | |||
39 | static inline void delay(void) | 33 | static inline void delay(void) |
40 | { | 34 | { |
41 | ctrl_inw(0xa0000000); | 35 | ctrl_inw(0xa0000000); |
@@ -46,11 +40,7 @@ port2adr(unsigned int port) | |||
46 | { | 40 | { |
47 | if (port >= 0x2000) | 41 | if (port >= 0x2000) |
48 | return (volatile __u16 *) (PA_MRSHPC + (port - 0x2000)); | 42 | return (volatile __u16 *) (PA_MRSHPC + (port - 0x2000)); |
49 | #if 0 | 43 | maybebadio((unsigned long)port); |
50 | else | ||
51 | return (volatile __u16 *) (PA_SUPERIO + (port << 1)); | ||
52 | #endif | ||
53 | maybebadio(name,(unsigned long)port); | ||
54 | return (volatile __u16*)port; | 44 | return (volatile __u16*)port; |
55 | } | 45 | } |
56 | 46 | ||
@@ -111,7 +101,7 @@ unsigned short sh7751systemh_inw(unsigned long port) | |||
111 | else if (port <= 0x3F1) | 101 | else if (port <= 0x3F1) |
112 | return *(volatile unsigned int *)ETHER_IOMAP(port); | 102 | return *(volatile unsigned int *)ETHER_IOMAP(port); |
113 | else | 103 | else |
114 | maybebadio(inw, port); | 104 | maybebadio(port); |
115 | return 0; | 105 | return 0; |
116 | } | 106 | } |
117 | 107 | ||
@@ -126,7 +116,7 @@ unsigned int sh7751systemh_inl(unsigned long port) | |||
126 | else if (port <= 0x3F1) | 116 | else if (port <= 0x3F1) |
127 | return *(volatile unsigned int *)ETHER_IOMAP(port); | 117 | return *(volatile unsigned int *)ETHER_IOMAP(port); |
128 | else | 118 | else |
129 | maybebadio(inl, port); | 119 | maybebadio(port); |
130 | return 0; | 120 | return 0; |
131 | } | 121 | } |
132 | 122 | ||
@@ -167,7 +157,7 @@ void sh7751systemh_outw(unsigned short value, unsigned long port) | |||
167 | else if (port <= 0x3F1) | 157 | else if (port <= 0x3F1) |
168 | *(volatile unsigned short *)ETHER_IOMAP(port) = value; | 158 | *(volatile unsigned short *)ETHER_IOMAP(port) = value; |
169 | else | 159 | else |
170 | maybebadio(outw, port); | 160 | maybebadio(port); |
171 | } | 161 | } |
172 | 162 | ||
173 | void sh7751systemh_outl(unsigned int value, unsigned long port) | 163 | void sh7751systemh_outl(unsigned int value, unsigned long port) |
@@ -177,7 +167,7 @@ void sh7751systemh_outl(unsigned int value, unsigned long port) | |||
177 | else if (CHECK_SH7751_PCIIO(port)) | 167 | else if (CHECK_SH7751_PCIIO(port)) |
178 | *((unsigned long*)PCI_IOMAP(port)) = value; | 168 | *((unsigned long*)PCI_IOMAP(port)) = value; |
179 | else | 169 | else |
180 | maybebadio(outl, port); | 170 | maybebadio(port); |
181 | } | 171 | } |
182 | 172 | ||
183 | void sh7751systemh_insb(unsigned long port, void *addr, unsigned long count) | 173 | void sh7751systemh_insb(unsigned long port, void *addr, unsigned long count) |
@@ -194,7 +184,7 @@ void sh7751systemh_insw(unsigned long port, void *addr, unsigned long count) | |||
194 | 184 | ||
195 | void sh7751systemh_insl(unsigned long port, void *addr, unsigned long count) | 185 | void sh7751systemh_insl(unsigned long port, void *addr, unsigned long count) |
196 | { | 186 | { |
197 | maybebadio(insl, port); | 187 | maybebadio(port); |
198 | } | 188 | } |
199 | 189 | ||
200 | void sh7751systemh_outsb(unsigned long port, const void *addr, unsigned long count) | 190 | void sh7751systemh_outsb(unsigned long port, const void *addr, unsigned long count) |
@@ -211,73 +201,5 @@ void sh7751systemh_outsw(unsigned long port, const void *addr, unsigned long cou | |||
211 | 201 | ||
212 | void sh7751systemh_outsl(unsigned long port, const void *addr, unsigned long count) | 202 | void sh7751systemh_outsl(unsigned long port, const void *addr, unsigned long count) |
213 | { | 203 | { |
214 | maybebadio(outsw, port); | 204 | maybebadio(port); |
215 | } | ||
216 | |||
217 | /* For read/write calls, just copy generic (pass-thru); PCIMBR is */ | ||
218 | /* already set up. For a larger memory space, these would need to */ | ||
219 | /* reset PCIMBR as needed on a per-call basis... */ | ||
220 | |||
221 | unsigned char sh7751systemh_readb(unsigned long addr) | ||
222 | { | ||
223 | return *(volatile unsigned char*)addr; | ||
224 | } | ||
225 | |||
226 | unsigned short sh7751systemh_readw(unsigned long addr) | ||
227 | { | ||
228 | return *(volatile unsigned short*)addr; | ||
229 | } | ||
230 | |||
231 | unsigned int sh7751systemh_readl(unsigned long addr) | ||
232 | { | ||
233 | return *(volatile unsigned long*)addr; | ||
234 | } | ||
235 | |||
236 | void sh7751systemh_writeb(unsigned char b, unsigned long addr) | ||
237 | { | ||
238 | *(volatile unsigned char*)addr = b; | ||
239 | } | ||
240 | |||
241 | void sh7751systemh_writew(unsigned short b, unsigned long addr) | ||
242 | { | ||
243 | *(volatile unsigned short*)addr = b; | ||
244 | } | ||
245 | |||
246 | void sh7751systemh_writel(unsigned int b, unsigned long addr) | ||
247 | { | ||
248 | *(volatile unsigned long*)addr = b; | ||
249 | } | ||
250 | |||
251 | |||
252 | |||
253 | /* Map ISA bus address to the real address. Only for PCMCIA. */ | ||
254 | |||
255 | /* ISA page descriptor. */ | ||
256 | static __u32 sh_isa_memmap[256]; | ||
257 | |||
258 | #if 0 | ||
259 | static int | ||
260 | sh_isa_mmap(__u32 start, __u32 length, __u32 offset) | ||
261 | { | ||
262 | int idx; | ||
263 | |||
264 | if (start >= 0x100000 || (start & 0xfff) || (length != 0x1000)) | ||
265 | return -1; | ||
266 | |||
267 | idx = start >> 12; | ||
268 | sh_isa_memmap[idx] = 0xb8000000 + (offset &~ 0xfff); | ||
269 | printk("sh_isa_mmap: start %x len %x offset %x (idx %x paddr %x)\n", | ||
270 | start, length, offset, idx, sh_isa_memmap[idx]); | ||
271 | return 0; | ||
272 | } | ||
273 | #endif | ||
274 | |||
275 | unsigned long | ||
276 | sh7751systemh_isa_port2addr(unsigned long offset) | ||
277 | { | ||
278 | int idx; | ||
279 | |||
280 | idx = (offset >> 12) & 0xff; | ||
281 | offset &= 0xfff; | ||
282 | return sh_isa_memmap[idx] + offset; | ||
283 | } | 205 | } |
diff --git a/arch/sh/boards/renesas/systemh/irq.c b/arch/sh/boards/renesas/systemh/irq.c index 8372d967f601..53731a0abb8f 100644 --- a/arch/sh/boards/renesas/systemh/irq.c +++ b/arch/sh/boards/renesas/systemh/irq.c | |||
@@ -15,7 +15,7 @@ | |||
15 | #include <linux/hdreg.h> | 15 | #include <linux/hdreg.h> |
16 | #include <linux/ide.h> | 16 | #include <linux/ide.h> |
17 | #include <asm/io.h> | 17 | #include <asm/io.h> |
18 | #include <asm/mach/7751systemh.h> | 18 | #include <asm/systemh7751.h> |
19 | #include <asm/smc37c93x.h> | 19 | #include <asm/smc37c93x.h> |
20 | 20 | ||
21 | /* address of external interrupt mask register | 21 | /* address of external interrupt mask register |
diff --git a/arch/sh/boards/renesas/systemh/setup.c b/arch/sh/boards/renesas/systemh/setup.c index 826fa3d7669c..433c7c3f35e2 100644 --- a/arch/sh/boards/renesas/systemh/setup.c +++ b/arch/sh/boards/renesas/systemh/setup.c | |||
@@ -15,9 +15,8 @@ | |||
15 | * for more details. | 15 | * for more details. |
16 | */ | 16 | */ |
17 | #include <linux/init.h> | 17 | #include <linux/init.h> |
18 | #include <asm/mach/7751systemh.h> | ||
19 | #include <asm/mach/io.h> | ||
20 | #include <asm/machvec.h> | 18 | #include <asm/machvec.h> |
19 | #include <asm/systemh7751.h> | ||
21 | 20 | ||
22 | extern void make_systemh_irq(unsigned int irq); | 21 | extern void make_systemh_irq(unsigned int irq); |
23 | 22 | ||
@@ -31,8 +30,6 @@ const char *get_system_type(void) | |||
31 | */ | 30 | */ |
32 | void __init init_7751systemh_IRQ(void) | 31 | void __init init_7751systemh_IRQ(void) |
33 | { | 32 | { |
34 | /* make_ipr_irq(10, BCR_ILCRD, 1, 0x0f-10); LAN */ | ||
35 | /* make_ipr_irq(14, BCR_ILCRA, 2, 0x0f-4); */ | ||
36 | make_systemh_irq(0xb); /* Ethernet interrupt */ | 33 | make_systemh_irq(0xb); /* Ethernet interrupt */ |
37 | } | 34 | } |
38 | 35 | ||
@@ -60,15 +57,6 @@ struct sh_machine_vector mv_7751systemh __initmv = { | |||
60 | .mv_outsw = sh7751systemh_outsw, | 57 | .mv_outsw = sh7751systemh_outsw, |
61 | .mv_outsl = sh7751systemh_outsl, | 58 | .mv_outsl = sh7751systemh_outsl, |
62 | 59 | ||
63 | .mv_readb = sh7751systemh_readb, | ||
64 | .mv_readw = sh7751systemh_readw, | ||
65 | .mv_readl = sh7751systemh_readl, | ||
66 | .mv_writeb = sh7751systemh_writeb, | ||
67 | .mv_writew = sh7751systemh_writew, | ||
68 | .mv_writel = sh7751systemh_writel, | ||
69 | |||
70 | .mv_isa_port2addr = sh7751systemh_isa_port2addr, | ||
71 | |||
72 | .mv_init_irq = init_7751systemh_IRQ, | 60 | .mv_init_irq = init_7751systemh_IRQ, |
73 | }; | 61 | }; |
74 | ALIAS_MV(7751systemh) | 62 | ALIAS_MV(7751systemh) |
diff --git a/arch/sh/boards/se/7300/io.c b/arch/sh/boards/se/7300/io.c index f449a94ddffd..8a03d7a52a7c 100644 --- a/arch/sh/boards/se/7300/io.c +++ b/arch/sh/boards/se/7300/io.c | |||
@@ -9,8 +9,8 @@ | |||
9 | */ | 9 | */ |
10 | 10 | ||
11 | #include <linux/kernel.h> | 11 | #include <linux/kernel.h> |
12 | #include <asm/mach/se7300.h> | ||
13 | #include <asm/io.h> | 12 | #include <asm/io.h> |
13 | #include <asm/se7300.h> | ||
14 | 14 | ||
15 | #define badio(fn, a) panic("bad i/o operation %s for %08lx.", #fn, a) | 15 | #define badio(fn, a) panic("bad i/o operation %s for %08lx.", #fn, a) |
16 | 16 | ||
@@ -99,6 +99,7 @@ bad_outb(struct iop *p, unsigned char value, unsigned long port) | |||
99 | badio(inw, port); | 99 | badio(inw, port); |
100 | } | 100 | } |
101 | 101 | ||
102 | #ifdef CONFIG_SMC91X | ||
102 | /* MSTLANEX01 LAN at 0xb400:0000 */ | 103 | /* MSTLANEX01 LAN at 0xb400:0000 */ |
103 | static struct iop laniop = { | 104 | static struct iop laniop = { |
104 | .start = 0x300, | 105 | .start = 0x300, |
@@ -110,6 +111,7 @@ static struct iop laniop = { | |||
110 | .outb = simple_outb, | 111 | .outb = simple_outb, |
111 | .outw = simple_outw, | 112 | .outw = simple_outw, |
112 | }; | 113 | }; |
114 | #endif | ||
113 | 115 | ||
114 | /* NE2000 pc card NIC */ | 116 | /* NE2000 pc card NIC */ |
115 | static struct iop neiop = { | 117 | static struct iop neiop = { |
@@ -123,6 +125,7 @@ static struct iop neiop = { | |||
123 | .outw = simple_outw, | 125 | .outw = simple_outw, |
124 | }; | 126 | }; |
125 | 127 | ||
128 | #ifdef CONFIG_IDE | ||
126 | /* CF in CF slot */ | 129 | /* CF in CF slot */ |
127 | static struct iop cfiop = { | 130 | static struct iop cfiop = { |
128 | .base = 0xb0600000, | 131 | .base = 0xb0600000, |
@@ -132,12 +135,13 @@ static struct iop cfiop = { | |||
132 | .outb = pcc_outb, | 135 | .outb = pcc_outb, |
133 | .outw = simple_outw, | 136 | .outw = simple_outw, |
134 | }; | 137 | }; |
138 | #endif | ||
135 | 139 | ||
136 | static __inline__ struct iop * | 140 | static __inline__ struct iop * |
137 | port2iop(unsigned long port) | 141 | port2iop(unsigned long port) |
138 | { | 142 | { |
139 | if (0) ; | 143 | if (0) ; |
140 | #if defined(CONFIG_SMC91111) | 144 | #if defined(CONFIG_SMC91X) |
141 | else if (laniop.check(&laniop, port)) | 145 | else if (laniop.check(&laniop, port)) |
142 | return &laniop; | 146 | return &laniop; |
143 | #endif | 147 | #endif |
diff --git a/arch/sh/boards/se/7300/irq.c b/arch/sh/boards/se/7300/irq.c index 216a78d1a108..ad1034f98a29 100644 --- a/arch/sh/boards/se/7300/irq.c +++ b/arch/sh/boards/se/7300/irq.c | |||
@@ -11,7 +11,7 @@ | |||
11 | #include <linux/irq.h> | 11 | #include <linux/irq.h> |
12 | #include <asm/irq.h> | 12 | #include <asm/irq.h> |
13 | #include <asm/io.h> | 13 | #include <asm/io.h> |
14 | #include <asm/mach/se7300.h> | 14 | #include <asm/se7300.h> |
15 | 15 | ||
16 | /* | 16 | /* |
17 | * Initialize IRQ setting | 17 | * Initialize IRQ setting |
diff --git a/arch/sh/boards/se/7300/led.c b/arch/sh/boards/se/7300/led.c index ad51f0a9c1e3..4d03bb7774be 100644 --- a/arch/sh/boards/se/7300/led.c +++ b/arch/sh/boards/se/7300/led.c | |||
@@ -12,24 +12,10 @@ | |||
12 | */ | 12 | */ |
13 | 13 | ||
14 | #include <linux/sched.h> | 14 | #include <linux/sched.h> |
15 | #include <asm/mach/se7300.h> | 15 | #include <asm/se7300.h> |
16 | |||
17 | static void | ||
18 | mach_led(int position, int value) | ||
19 | { | ||
20 | volatile unsigned short *p = (volatile unsigned short *) PA_LED; | ||
21 | |||
22 | if (value) { | ||
23 | *p |= (1 << 8); | ||
24 | } else { | ||
25 | *p &= ~(1 << 8); | ||
26 | } | ||
27 | } | ||
28 | |||
29 | 16 | ||
30 | /* Cycle the LED's in the clasic Knightrider/Sun pattern */ | 17 | /* Cycle the LED's in the clasic Knightrider/Sun pattern */ |
31 | void | 18 | void heartbeat_7300se(void) |
32 | heartbeat_7300se(void) | ||
33 | { | 19 | { |
34 | static unsigned int cnt = 0, period = 0; | 20 | static unsigned int cnt = 0, period = 0; |
35 | volatile unsigned short *p = (volatile unsigned short *) PA_LED; | 21 | volatile unsigned short *p = (volatile unsigned short *) PA_LED; |
diff --git a/arch/sh/boards/se/7300/setup.c b/arch/sh/boards/se/7300/setup.c index ebcd98d4c081..bb7e1a189be8 100644 --- a/arch/sh/boards/se/7300/setup.c +++ b/arch/sh/boards/se/7300/setup.c | |||
@@ -9,8 +9,7 @@ | |||
9 | 9 | ||
10 | #include <linux/init.h> | 10 | #include <linux/init.h> |
11 | #include <asm/machvec.h> | 11 | #include <asm/machvec.h> |
12 | #include <asm/machvec_init.h> | 12 | #include <asm/se7300.h> |
13 | #include <asm/mach/io.h> | ||
14 | 13 | ||
15 | void heartbeat_7300se(void); | 14 | void heartbeat_7300se(void); |
16 | void init_7300se_IRQ(void); | 15 | void init_7300se_IRQ(void); |
diff --git a/arch/sh/boards/se/73180/setup.c b/arch/sh/boards/se/73180/setup.c index cdb7b5f8d942..cddc7a2b858f 100644 --- a/arch/sh/boards/se/73180/setup.c +++ b/arch/sh/boards/se/73180/setup.c | |||
@@ -11,8 +11,7 @@ | |||
11 | 11 | ||
12 | #include <linux/init.h> | 12 | #include <linux/init.h> |
13 | #include <asm/machvec.h> | 13 | #include <asm/machvec.h> |
14 | #include <asm/machvec_init.h> | 14 | #include <asm/se73180.h> |
15 | #include <asm/mach/io.h> | ||
16 | 15 | ||
17 | void heartbeat_73180se(void); | 16 | void heartbeat_73180se(void); |
18 | void init_73180se_IRQ(void); | 17 | void init_73180se_IRQ(void); |
diff --git a/arch/sh/boards/se/770x/io.c b/arch/sh/boards/se/770x/io.c index 9a39ee963143..5102201c97ab 100644 --- a/arch/sh/boards/se/770x/io.c +++ b/arch/sh/boards/se/770x/io.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $Id: io.c,v 1.5 2004/02/22 23:08:43 kkojima Exp $ | 1 | /* $Id: io.c,v 1.6 2006/01/04 17:53:54 lethal Exp $ |
2 | * | 2 | * |
3 | * linux/arch/sh/kernel/io_se.c | 3 | * linux/arch/sh/kernel/io_se.c |
4 | * | 4 | * |
@@ -11,7 +11,7 @@ | |||
11 | #include <linux/kernel.h> | 11 | #include <linux/kernel.h> |
12 | #include <linux/types.h> | 12 | #include <linux/types.h> |
13 | #include <asm/io.h> | 13 | #include <asm/io.h> |
14 | #include <asm/se/se.h> | 14 | #include <asm/se.h> |
15 | 15 | ||
16 | /* SH pcmcia io window base, start and end. */ | 16 | /* SH pcmcia io window base, start and end. */ |
17 | int sh_pcic_io_wbase = 0xb8400000; | 17 | int sh_pcic_io_wbase = 0xb8400000; |
@@ -52,10 +52,6 @@ shifted_port(unsigned long port) | |||
52 | return 1; | 52 | return 1; |
53 | } | 53 | } |
54 | 54 | ||
55 | #define maybebadio(name,port) \ | ||
56 | printk("bad PC-like io %s for port 0x%lx at 0x%08x\n", \ | ||
57 | #name, (port), (__u32) __builtin_return_address(0)) | ||
58 | |||
59 | unsigned char se_inb(unsigned long port) | 55 | unsigned char se_inb(unsigned long port) |
60 | { | 56 | { |
61 | if (sh_pcic_io_start <= port && port <= sh_pcic_io_stop) | 57 | if (sh_pcic_io_start <= port && port <= sh_pcic_io_stop) |
@@ -86,13 +82,13 @@ unsigned short se_inw(unsigned long port) | |||
86 | (sh_pcic_io_start <= port && port <= sh_pcic_io_stop)) | 82 | (sh_pcic_io_start <= port && port <= sh_pcic_io_stop)) |
87 | return *port2adr(port); | 83 | return *port2adr(port); |
88 | else | 84 | else |
89 | maybebadio(inw, port); | 85 | maybebadio(port); |
90 | return 0; | 86 | return 0; |
91 | } | 87 | } |
92 | 88 | ||
93 | unsigned int se_inl(unsigned long port) | 89 | unsigned int se_inl(unsigned long port) |
94 | { | 90 | { |
95 | maybebadio(inl, port); | 91 | maybebadio(port); |
96 | return 0; | 92 | return 0; |
97 | } | 93 | } |
98 | 94 | ||
@@ -123,12 +119,12 @@ void se_outw(unsigned short value, unsigned long port) | |||
123 | (sh_pcic_io_start <= port && port <= sh_pcic_io_stop)) | 119 | (sh_pcic_io_start <= port && port <= sh_pcic_io_stop)) |
124 | *port2adr(port) = value; | 120 | *port2adr(port) = value; |
125 | else | 121 | else |
126 | maybebadio(outw, port); | 122 | maybebadio(port); |
127 | } | 123 | } |
128 | 124 | ||
129 | void se_outl(unsigned int value, unsigned long port) | 125 | void se_outl(unsigned int value, unsigned long port) |
130 | { | 126 | { |
131 | maybebadio(outl, port); | 127 | maybebadio(port); |
132 | } | 128 | } |
133 | 129 | ||
134 | void se_insb(unsigned long port, void *addr, unsigned long count) | 130 | void se_insb(unsigned long port, void *addr, unsigned long count) |
@@ -159,7 +155,7 @@ void se_insw(unsigned long port, void *addr, unsigned long count) | |||
159 | 155 | ||
160 | void se_insl(unsigned long port, void *addr, unsigned long count) | 156 | void se_insl(unsigned long port, void *addr, unsigned long count) |
161 | { | 157 | { |
162 | maybebadio(insl, port); | 158 | maybebadio(port); |
163 | } | 159 | } |
164 | 160 | ||
165 | void se_outsb(unsigned long port, const void *addr, unsigned long count) | 161 | void se_outsb(unsigned long port, const void *addr, unsigned long count) |
@@ -190,37 +186,5 @@ void se_outsw(unsigned long port, const void *addr, unsigned long count) | |||
190 | 186 | ||
191 | void se_outsl(unsigned long port, const void *addr, unsigned long count) | 187 | void se_outsl(unsigned long port, const void *addr, unsigned long count) |
192 | { | 188 | { |
193 | maybebadio(outsw, port); | 189 | maybebadio(port); |
194 | } | ||
195 | |||
196 | /* Map ISA bus address to the real address. Only for PCMCIA. */ | ||
197 | |||
198 | /* ISA page descriptor. */ | ||
199 | static __u32 sh_isa_memmap[256]; | ||
200 | |||
201 | static int | ||
202 | sh_isa_mmap(__u32 start, __u32 length, __u32 offset) | ||
203 | { | ||
204 | int idx; | ||
205 | |||
206 | if (start >= 0x100000 || (start & 0xfff) || (length != 0x1000)) | ||
207 | return -1; | ||
208 | |||
209 | idx = start >> 12; | ||
210 | sh_isa_memmap[idx] = 0xb8000000 + (offset &~ 0xfff); | ||
211 | #if 0 | ||
212 | printk("sh_isa_mmap: start %x len %x offset %x (idx %x paddr %x)\n", | ||
213 | start, length, offset, idx, sh_isa_memmap[idx]); | ||
214 | #endif | ||
215 | return 0; | ||
216 | } | ||
217 | |||
218 | unsigned long | ||
219 | se_isa_port2addr(unsigned long offset) | ||
220 | { | ||
221 | int idx; | ||
222 | |||
223 | idx = (offset >> 12) & 0xff; | ||
224 | offset &= 0xfff; | ||
225 | return sh_isa_memmap[idx] + offset; | ||
226 | } | 190 | } |
diff --git a/arch/sh/boards/se/770x/irq.c b/arch/sh/boards/se/770x/irq.c index 3e558716ce10..cff6700bbafd 100644 --- a/arch/sh/boards/se/770x/irq.c +++ b/arch/sh/boards/se/770x/irq.c | |||
@@ -11,7 +11,7 @@ | |||
11 | #include <linux/irq.h> | 11 | #include <linux/irq.h> |
12 | #include <asm/irq.h> | 12 | #include <asm/irq.h> |
13 | #include <asm/io.h> | 13 | #include <asm/io.h> |
14 | #include <asm/se/se.h> | 14 | #include <asm/se.h> |
15 | 15 | ||
16 | /* | 16 | /* |
17 | * Initialize IRQ setting | 17 | * Initialize IRQ setting |
diff --git a/arch/sh/boards/se/770x/led.c b/arch/sh/boards/se/770x/led.c index 73e9848387ea..daf7b1ee786a 100644 --- a/arch/sh/boards/se/770x/led.c +++ b/arch/sh/boards/se/770x/led.c | |||
@@ -10,7 +10,7 @@ | |||
10 | */ | 10 | */ |
11 | 11 | ||
12 | #include <linux/sched.h> | 12 | #include <linux/sched.h> |
13 | #include <asm/se/se.h> | 13 | #include <asm/se.h> |
14 | 14 | ||
15 | /* Cycle the LED's in the clasic Knightrider/Sun pattern */ | 15 | /* Cycle the LED's in the clasic Knightrider/Sun pattern */ |
16 | void heartbeat_se(void) | 16 | void heartbeat_se(void) |
diff --git a/arch/sh/boards/se/770x/mach.c b/arch/sh/boards/se/770x/mach.c index 6ec07bd3dcf1..e8968b71c353 100644 --- a/arch/sh/boards/se/770x/mach.c +++ b/arch/sh/boards/se/770x/mach.c | |||
@@ -13,12 +13,9 @@ | |||
13 | 13 | ||
14 | #include <asm/machvec.h> | 14 | #include <asm/machvec.h> |
15 | #include <asm/rtc.h> | 15 | #include <asm/rtc.h> |
16 | #include <asm/machvec_init.h> | 16 | #include <asm/se.h> |
17 | |||
18 | #include <asm/se/io.h> | ||
19 | 17 | ||
20 | void heartbeat_se(void); | 18 | void heartbeat_se(void); |
21 | void setup_se(void); | ||
22 | void init_se_IRQ(void); | 19 | void init_se_IRQ(void); |
23 | 20 | ||
24 | /* | 21 | /* |
@@ -57,8 +54,6 @@ struct sh_machine_vector mv_se __initmv = { | |||
57 | .mv_outsw = se_outsw, | 54 | .mv_outsw = se_outsw, |
58 | .mv_outsl = se_outsl, | 55 | .mv_outsl = se_outsl, |
59 | 56 | ||
60 | .mv_isa_port2addr = se_isa_port2addr, | ||
61 | |||
62 | .mv_init_irq = init_se_IRQ, | 57 | .mv_init_irq = init_se_IRQ, |
63 | #ifdef CONFIG_HEARTBEAT | 58 | #ifdef CONFIG_HEARTBEAT |
64 | .mv_heartbeat = heartbeat_se, | 59 | .mv_heartbeat = heartbeat_se, |
diff --git a/arch/sh/boards/se/770x/setup.c b/arch/sh/boards/se/770x/setup.c index b6730ea57502..c9f75272e751 100644 --- a/arch/sh/boards/se/770x/setup.c +++ b/arch/sh/boards/se/770x/setup.c | |||
@@ -14,7 +14,7 @@ | |||
14 | #include <linux/hdreg.h> | 14 | #include <linux/hdreg.h> |
15 | #include <linux/ide.h> | 15 | #include <linux/ide.h> |
16 | #include <asm/io.h> | 16 | #include <asm/io.h> |
17 | #include <asm/se/se.h> | 17 | #include <asm/se.h> |
18 | #include <asm/smc37c93x.h> | 18 | #include <asm/smc37c93x.h> |
19 | 19 | ||
20 | /* | 20 | /* |
diff --git a/arch/sh/boards/se/7751/io.c b/arch/sh/boards/se/7751/io.c index 99041b269261..0e8a3ba48316 100644 --- a/arch/sh/boards/se/7751/io.c +++ b/arch/sh/boards/se/7751/io.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* | 1 | /* |
2 | * linux/arch/sh/kernel/io_7751se.c | 2 | * linux/arch/sh/kernel/io_7751se.c |
3 | * | 3 | * |
4 | * Copyright (C) 2001 Ian da Silva, Jeremy Siegel | 4 | * Copyright (C) 2001 Ian da Silva, Jeremy Siegel |
@@ -14,7 +14,7 @@ | |||
14 | #include <linux/kernel.h> | 14 | #include <linux/kernel.h> |
15 | #include <linux/types.h> | 15 | #include <linux/types.h> |
16 | #include <asm/io.h> | 16 | #include <asm/io.h> |
17 | #include <asm/se7751/se7751.h> | 17 | #include <asm/se7751.h> |
18 | #include <asm/addrspace.h> | 18 | #include <asm/addrspace.h> |
19 | 19 | ||
20 | #include <linux/pci.h> | 20 | #include <linux/pci.h> |
@@ -52,10 +52,6 @@ int sh_pcic_io_dummy; | |||
52 | 52 | ||
53 | #define PCI_IOMAP(adr) (PCI_IO_AREA + (adr & ~SH7751_PCIIOBR_MASK)) | 53 | #define PCI_IOMAP(adr) (PCI_IO_AREA + (adr & ~SH7751_PCIIOBR_MASK)) |
54 | 54 | ||
55 | #define maybebadio(name,port) \ | ||
56 | printk("bad PC-like io %s for port 0x%lx at 0x%08x\n", \ | ||
57 | #name, (port), (__u32) __builtin_return_address(0)) | ||
58 | |||
59 | static inline void delay(void) | 55 | static inline void delay(void) |
60 | { | 56 | { |
61 | ctrl_inw(0xa0000000); | 57 | ctrl_inw(0xa0000000); |
@@ -66,11 +62,7 @@ port2adr(unsigned int port) | |||
66 | { | 62 | { |
67 | if (port >= 0x2000) | 63 | if (port >= 0x2000) |
68 | return (volatile __u16 *) (PA_MRSHPC + (port - 0x2000)); | 64 | return (volatile __u16 *) (PA_MRSHPC + (port - 0x2000)); |
69 | #if 0 | 65 | maybebadio((unsigned long)port); |
70 | else | ||
71 | return (volatile __u16 *) (PA_SUPERIO + (port << 1)); | ||
72 | #endif | ||
73 | maybebadio(name,(unsigned long)port); | ||
74 | return (volatile __u16*)port; | 66 | return (volatile __u16*)port; |
75 | } | 67 | } |
76 | 68 | ||
@@ -140,7 +132,7 @@ unsigned short sh7751se_inw(unsigned long port) | |||
140 | else if (port >= 0x2000) | 132 | else if (port >= 0x2000) |
141 | return *port2adr(port); | 133 | return *port2adr(port); |
142 | else | 134 | else |
143 | maybebadio(inw, port); | 135 | maybebadio(port); |
144 | return 0; | 136 | return 0; |
145 | } | 137 | } |
146 | 138 | ||
@@ -153,7 +145,7 @@ unsigned int sh7751se_inl(unsigned long port) | |||
153 | else if (port >= 0x2000) | 145 | else if (port >= 0x2000) |
154 | return *port2adr(port); | 146 | return *port2adr(port); |
155 | else | 147 | else |
156 | maybebadio(inl, port); | 148 | maybebadio(port); |
157 | return 0; | 149 | return 0; |
158 | } | 150 | } |
159 | 151 | ||
@@ -188,7 +180,7 @@ void sh7751se_outw(unsigned short value, unsigned long port) | |||
188 | else if (port >= 0x2000) | 180 | else if (port >= 0x2000) |
189 | *port2adr(port) = value; | 181 | *port2adr(port) = value; |
190 | else | 182 | else |
191 | maybebadio(outw, port); | 183 | maybebadio(port); |
192 | } | 184 | } |
193 | 185 | ||
194 | void sh7751se_outl(unsigned int value, unsigned long port) | 186 | void sh7751se_outl(unsigned int value, unsigned long port) |
@@ -198,17 +190,17 @@ void sh7751se_outl(unsigned int value, unsigned long port) | |||
198 | else if (CHECK_SH7751_PCIIO(port)) | 190 | else if (CHECK_SH7751_PCIIO(port)) |
199 | *((unsigned long*)PCI_IOMAP(port)) = value; | 191 | *((unsigned long*)PCI_IOMAP(port)) = value; |
200 | else | 192 | else |
201 | maybebadio(outl, port); | 193 | maybebadio(port); |
202 | } | 194 | } |
203 | 195 | ||
204 | void sh7751se_insl(unsigned long port, void *addr, unsigned long count) | 196 | void sh7751se_insl(unsigned long port, void *addr, unsigned long count) |
205 | { | 197 | { |
206 | maybebadio(insl, port); | 198 | maybebadio(port); |
207 | } | 199 | } |
208 | 200 | ||
209 | void sh7751se_outsl(unsigned long port, const void *addr, unsigned long count) | 201 | void sh7751se_outsl(unsigned long port, const void *addr, unsigned long count) |
210 | { | 202 | { |
211 | maybebadio(outsw, port); | 203 | maybebadio(port); |
212 | } | 204 | } |
213 | 205 | ||
214 | /* Map ISA bus address to the real address. Only for PCMCIA. */ | 206 | /* Map ISA bus address to the real address. Only for PCMCIA. */ |
diff --git a/arch/sh/boards/se/7751/irq.c b/arch/sh/boards/se/7751/irq.c index bf6c023615df..c607b0a48479 100644 --- a/arch/sh/boards/se/7751/irq.c +++ b/arch/sh/boards/se/7751/irq.c | |||
@@ -12,7 +12,7 @@ | |||
12 | #include <linux/init.h> | 12 | #include <linux/init.h> |
13 | #include <linux/irq.h> | 13 | #include <linux/irq.h> |
14 | #include <asm/irq.h> | 14 | #include <asm/irq.h> |
15 | #include <asm/se7751/se7751.h> | 15 | #include <asm/se7751.h> |
16 | 16 | ||
17 | /* | 17 | /* |
18 | * Initialize IRQ setting | 18 | * Initialize IRQ setting |
diff --git a/arch/sh/boards/se/7751/led.c b/arch/sh/boards/se/7751/led.c index 4405e26cf866..ff0355dea81b 100644 --- a/arch/sh/boards/se/7751/led.c +++ b/arch/sh/boards/se/7751/led.c | |||
@@ -8,9 +8,8 @@ | |||
8 | * | 8 | * |
9 | * This file contains Solution Engine specific LED code. | 9 | * This file contains Solution Engine specific LED code. |
10 | */ | 10 | */ |
11 | |||
12 | #include <asm/se7751/se7751.h> | ||
13 | #include <linux/sched.h> | 11 | #include <linux/sched.h> |
12 | #include <asm/se7751.h> | ||
14 | 13 | ||
15 | /* Cycle the LED's in the clasic Knightrider/Sun pattern */ | 14 | /* Cycle the LED's in the clasic Knightrider/Sun pattern */ |
16 | void heartbeat_7751se(void) | 15 | void heartbeat_7751se(void) |
diff --git a/arch/sh/boards/se/7751/mach.c b/arch/sh/boards/se/7751/mach.c index 62d8d3e62590..1bb9047d863b 100644 --- a/arch/sh/boards/se/7751/mach.c +++ b/arch/sh/boards/se/7751/mach.c | |||
@@ -10,12 +10,8 @@ | |||
10 | */ | 10 | */ |
11 | 11 | ||
12 | #include <linux/init.h> | 12 | #include <linux/init.h> |
13 | |||
14 | #include <asm/machvec.h> | 13 | #include <asm/machvec.h> |
15 | #include <asm/rtc.h> | 14 | #include <asm/se7751.h> |
16 | #include <asm/machvec_init.h> | ||
17 | |||
18 | #include <asm/se7751/io.h> | ||
19 | 15 | ||
20 | void heartbeat_7751se(void); | 16 | void heartbeat_7751se(void); |
21 | void init_7751se_IRQ(void); | 17 | void init_7751se_IRQ(void); |
@@ -44,8 +40,6 @@ struct sh_machine_vector mv_7751se __initmv = { | |||
44 | .mv_insl = sh7751se_insl, | 40 | .mv_insl = sh7751se_insl, |
45 | .mv_outsl = sh7751se_outsl, | 41 | .mv_outsl = sh7751se_outsl, |
46 | 42 | ||
47 | .mv_isa_port2addr = sh7751se_isa_port2addr, | ||
48 | |||
49 | .mv_init_irq = init_7751se_IRQ, | 43 | .mv_init_irq = init_7751se_IRQ, |
50 | #ifdef CONFIG_HEARTBEAT | 44 | #ifdef CONFIG_HEARTBEAT |
51 | .mv_heartbeat = heartbeat_7751se, | 45 | .mv_heartbeat = heartbeat_7751se, |
diff --git a/arch/sh/boards/se/7751/setup.c b/arch/sh/boards/se/7751/setup.c index 48dc5aee67d4..8b693105893c 100644 --- a/arch/sh/boards/se/7751/setup.c +++ b/arch/sh/boards/se/7751/setup.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* | 1 | /* |
2 | * linux/arch/sh/kernel/setup_7751se.c | 2 | * linux/arch/sh/kernel/setup_7751se.c |
3 | * | 3 | * |
4 | * Copyright (C) 2000 Kazumoto Kojima | 4 | * Copyright (C) 2000 Kazumoto Kojima |
@@ -11,11 +11,9 @@ | |||
11 | 11 | ||
12 | #include <linux/init.h> | 12 | #include <linux/init.h> |
13 | #include <linux/irq.h> | 13 | #include <linux/irq.h> |
14 | |||
15 | #include <linux/hdreg.h> | ||
16 | #include <linux/ide.h> | 14 | #include <linux/ide.h> |
17 | #include <asm/io.h> | 15 | #include <asm/io.h> |
18 | #include <asm/se7751/se7751.h> | 16 | #include <asm/se7751.h> |
19 | 17 | ||
20 | #ifdef CONFIG_SH_KGDB | 18 | #ifdef CONFIG_SH_KGDB |
21 | #include <asm/kgdb.h> | 19 | #include <asm/kgdb.h> |
diff --git a/arch/sh/boards/sh03/setup.c b/arch/sh/boards/sh03/setup.c index 60290f8f289c..dab742a00c6f 100644 --- a/arch/sh/boards/sh03/setup.c +++ b/arch/sh/boards/sh03/setup.c | |||
@@ -7,22 +7,19 @@ | |||
7 | 7 | ||
8 | #include <linux/init.h> | 8 | #include <linux/init.h> |
9 | #include <linux/irq.h> | 9 | #include <linux/irq.h> |
10 | #include <linux/hdreg.h> | ||
11 | #include <linux/ide.h> | ||
12 | #include <asm/io.h> | 10 | #include <asm/io.h> |
11 | #include <asm/rtc.h> | ||
13 | #include <asm/sh03/io.h> | 12 | #include <asm/sh03/io.h> |
14 | #include <asm/sh03/sh03.h> | 13 | #include <asm/sh03/sh03.h> |
15 | #include <asm/addrspace.h> | 14 | #include <asm/addrspace.h> |
16 | #include "../../drivers/pci/pci-sh7751.h" | 15 | #include "../../drivers/pci/pci-sh7751.h" |
17 | 16 | ||
18 | extern void (*board_time_init)(void); | ||
19 | |||
20 | const char *get_system_type(void) | 17 | const char *get_system_type(void) |
21 | { | 18 | { |
22 | return "Interface CTP/PCI-SH03)"; | 19 | return "Interface CTP/PCI-SH03)"; |
23 | } | 20 | } |
24 | 21 | ||
25 | void init_sh03_IRQ(void) | 22 | static void init_sh03_IRQ(void) |
26 | { | 23 | { |
27 | ctrl_outw(ctrl_inw(INTC_ICR) | INTC_ICR_IRLM, INTC_ICR); | 24 | ctrl_outw(ctrl_inw(INTC_ICR) | INTC_ICR_IRLM, INTC_ICR); |
28 | 25 | ||
@@ -34,24 +31,20 @@ void init_sh03_IRQ(void) | |||
34 | 31 | ||
35 | extern void *cf_io_base; | 32 | extern void *cf_io_base; |
36 | 33 | ||
37 | unsigned long sh03_isa_port2addr(unsigned long port) | 34 | static void __iomem *sh03_ioport_map(unsigned long port, unsigned int size) |
38 | { | 35 | { |
39 | if (PXSEG(port)) | 36 | if (PXSEG(port)) |
40 | return port; | 37 | return (void __iomem *)port; |
41 | /* CompactFlash (IDE) */ | 38 | /* CompactFlash (IDE) */ |
42 | if (((port >= 0x1f0) && (port <= 0x1f7)) || (port == 0x3f6)) { | 39 | if (((port >= 0x1f0) && (port <= 0x1f7)) || (port == 0x3f6)) |
43 | return (unsigned long)cf_io_base + port; | 40 | return (void __iomem *)((unsigned long)cf_io_base + port); |
44 | } | ||
45 | return port + SH7751_PCI_IO_BASE; | ||
46 | } | ||
47 | 41 | ||
48 | /* | 42 | return (void __iomem *)(port + SH7751_PCI_IO_BASE); |
49 | * The Machine Vector | 43 | } |
50 | */ | ||
51 | 44 | ||
52 | struct sh_machine_vector mv_sh03 __initmv = { | 45 | struct sh_machine_vector mv_sh03 __initmv = { |
53 | .mv_nr_irqs = 48, | 46 | .mv_nr_irqs = 48, |
54 | .mv_isa_port2addr = sh03_isa_port2addr, | 47 | .mv_ioport_map = sh03_ioport_map, |
55 | .mv_init_irq = init_sh03_IRQ, | 48 | .mv_init_irq = init_sh03_IRQ, |
56 | 49 | ||
57 | #ifdef CONFIG_HEARTBEAT | 50 | #ifdef CONFIG_HEARTBEAT |
diff --git a/arch/sh/boards/snapgear/io.c b/arch/sh/boards/snapgear/io.c index e2eb78fc381d..9f700b8392bb 100644 --- a/arch/sh/boards/snapgear/io.c +++ b/arch/sh/boards/snapgear/io.c | |||
@@ -28,39 +28,26 @@ unsigned short secureedge5410_ioport; | |||
28 | /* | 28 | /* |
29 | * The SnapGear uses the built-in PCI controller (PCIC) | 29 | * The SnapGear uses the built-in PCI controller (PCIC) |
30 | * of the 7751 processor | 30 | * of the 7751 processor |
31 | */ | 31 | */ |
32 | 32 | ||
33 | #define PCIIOBR (volatile long *)PCI_REG(SH7751_PCIIOBR) | 33 | #define PCIIOBR (volatile long *)PCI_REG(SH7751_PCIIOBR) |
34 | #define PCIMBR (volatile long *)PCI_REG(SH7751_PCIMBR) | 34 | #define PCIMBR (volatile long *)PCI_REG(SH7751_PCIMBR) |
35 | #define PCI_IO_AREA SH7751_PCI_IO_BASE | 35 | #define PCI_IO_AREA SH7751_PCI_IO_BASE |
36 | #define PCI_MEM_AREA SH7751_PCI_CONFIG_BASE | 36 | #define PCI_MEM_AREA SH7751_PCI_CONFIG_BASE |
37 | 37 | ||
38 | |||
39 | #define PCI_IOMAP(adr) (PCI_IO_AREA + (adr & ~SH7751_PCIIOBR_MASK)) | 38 | #define PCI_IOMAP(adr) (PCI_IO_AREA + (adr & ~SH7751_PCIIOBR_MASK)) |
40 | 39 | ||
41 | |||
42 | #define maybebadio(name,port) \ | ||
43 | printk("bad PC-like io %s for port 0x%lx at 0x%08x\n", \ | ||
44 | #name, (port), (__u32) __builtin_return_address(0)) | ||
45 | |||
46 | |||
47 | static inline void delay(void) | 40 | static inline void delay(void) |
48 | { | 41 | { |
49 | ctrl_inw(0xa0000000); | 42 | ctrl_inw(0xa0000000); |
50 | } | 43 | } |
51 | 44 | ||
52 | |||
53 | static inline volatile __u16 *port2adr(unsigned int port) | 45 | static inline volatile __u16 *port2adr(unsigned int port) |
54 | { | 46 | { |
55 | #if 0 | 47 | maybebadio((unsigned long)port); |
56 | if (port >= 0x2000) | ||
57 | return (volatile __u16 *) (PA_MRSHPC + (port - 0x2000)); | ||
58 | #endif | ||
59 | maybebadio(name,(unsigned long)port); | ||
60 | return (volatile __u16*)port; | 48 | return (volatile __u16*)port; |
61 | } | 49 | } |
62 | 50 | ||
63 | |||
64 | /* In case someone configures the kernel w/o PCI support: in that */ | 51 | /* In case someone configures the kernel w/o PCI support: in that */ |
65 | /* scenario, don't ever bother to check for PCI-window addresses */ | 52 | /* scenario, don't ever bother to check for PCI-window addresses */ |
66 | 53 | ||
@@ -115,7 +102,7 @@ unsigned short snapgear_inw(unsigned long port) | |||
115 | else if (port >= 0x2000) | 102 | else if (port >= 0x2000) |
116 | return *port2adr(port); | 103 | return *port2adr(port); |
117 | else | 104 | else |
118 | maybebadio(inw, port); | 105 | maybebadio(port); |
119 | return 0; | 106 | return 0; |
120 | } | 107 | } |
121 | 108 | ||
@@ -129,7 +116,7 @@ unsigned int snapgear_inl(unsigned long port) | |||
129 | else if (port >= 0x2000) | 116 | else if (port >= 0x2000) |
130 | return *port2adr(port); | 117 | return *port2adr(port); |
131 | else | 118 | else |
132 | maybebadio(inl, port); | 119 | maybebadio(port); |
133 | return 0; | 120 | return 0; |
134 | } | 121 | } |
135 | 122 | ||
@@ -167,7 +154,7 @@ void snapgear_outw(unsigned short value, unsigned long port) | |||
167 | else if (port >= 0x2000) | 154 | else if (port >= 0x2000) |
168 | *port2adr(port) = value; | 155 | *port2adr(port) = value; |
169 | else | 156 | else |
170 | maybebadio(outw, port); | 157 | maybebadio(port); |
171 | } | 158 | } |
172 | 159 | ||
173 | 160 | ||
@@ -178,49 +165,15 @@ void snapgear_outl(unsigned int value, unsigned long port) | |||
178 | else if (CHECK_SH7751_PCIIO(port)) | 165 | else if (CHECK_SH7751_PCIIO(port)) |
179 | *((unsigned long*)PCI_IOMAP(port)) = value; | 166 | *((unsigned long*)PCI_IOMAP(port)) = value; |
180 | else | 167 | else |
181 | maybebadio(outl, port); | 168 | maybebadio(port); |
182 | } | 169 | } |
183 | 170 | ||
184 | void snapgear_insl(unsigned long port, void *addr, unsigned long count) | 171 | void snapgear_insl(unsigned long port, void *addr, unsigned long count) |
185 | { | 172 | { |
186 | maybebadio(insl, port); | 173 | maybebadio(port); |
187 | } | 174 | } |
188 | 175 | ||
189 | void snapgear_outsl(unsigned long port, const void *addr, unsigned long count) | 176 | void snapgear_outsl(unsigned long port, const void *addr, unsigned long count) |
190 | { | 177 | { |
191 | maybebadio(outsw, port); | 178 | maybebadio(port); |
192 | } | ||
193 | |||
194 | /* Map ISA bus address to the real address. Only for PCMCIA. */ | ||
195 | |||
196 | |||
197 | /* ISA page descriptor. */ | ||
198 | static __u32 sh_isa_memmap[256]; | ||
199 | |||
200 | |||
201 | #if 0 | ||
202 | static int sh_isa_mmap(__u32 start, __u32 length, __u32 offset) | ||
203 | { | ||
204 | int idx; | ||
205 | |||
206 | if (start >= 0x100000 || (start & 0xfff) || (length != 0x1000)) | ||
207 | return -1; | ||
208 | |||
209 | idx = start >> 12; | ||
210 | sh_isa_memmap[idx] = 0xb8000000 + (offset &~ 0xfff); | ||
211 | #if 0 | ||
212 | printk("sh_isa_mmap: start %x len %x offset %x (idx %x paddr %x)\n", | ||
213 | start, length, offset, idx, sh_isa_memmap[idx]); | ||
214 | #endif | ||
215 | return 0; | ||
216 | } | ||
217 | #endif | ||
218 | |||
219 | unsigned long snapgear_isa_port2addr(unsigned long offset) | ||
220 | { | ||
221 | int idx; | ||
222 | |||
223 | idx = (offset >> 12) & 0xff; | ||
224 | offset &= 0xfff; | ||
225 | return sh_isa_memmap[idx] + offset; | ||
226 | } | 179 | } |
diff --git a/arch/sh/boards/snapgear/rtc.c b/arch/sh/boards/snapgear/rtc.c index b71e009da35c..287bc4ed3ac7 100644 --- a/arch/sh/boards/snapgear/rtc.c +++ b/arch/sh/boards/snapgear/rtc.c | |||
@@ -17,10 +17,7 @@ | |||
17 | #include <linux/time.h> | 17 | #include <linux/time.h> |
18 | #include <linux/rtc.h> | 18 | #include <linux/rtc.h> |
19 | #include <linux/mc146818rtc.h> | 19 | #include <linux/mc146818rtc.h> |
20 | |||
21 | #include <asm/io.h> | 20 | #include <asm/io.h> |
22 | #include <asm/rtc.h> | ||
23 | #include <asm/mc146818rtc.h> | ||
24 | 21 | ||
25 | /****************************************************************************/ | 22 | /****************************************************************************/ |
26 | 23 | ||
diff --git a/arch/sh/boards/snapgear/setup.c b/arch/sh/boards/snapgear/setup.c index f1f7c70c9402..66ce32f8b13c 100644 --- a/arch/sh/boards/snapgear/setup.c +++ b/arch/sh/boards/snapgear/setup.c | |||
@@ -1,5 +1,4 @@ | |||
1 | /****************************************************************************/ | 1 | /* |
2 | /* | ||
3 | * linux/arch/sh/boards/snapgear/setup.c | 2 | * linux/arch/sh/boards/snapgear/setup.c |
4 | * | 3 | * |
5 | * Copyright (C) 2002 David McCullough <davidm@snapgear.com> | 4 | * Copyright (C) 2002 David McCullough <davidm@snapgear.com> |
@@ -12,8 +11,6 @@ | |||
12 | * Modified for 7751 Solution Engine by | 11 | * Modified for 7751 Solution Engine by |
13 | * Ian da Silva and Jeremy Siegel, 2001. | 12 | * Ian da Silva and Jeremy Siegel, 2001. |
14 | */ | 13 | */ |
15 | /****************************************************************************/ | ||
16 | |||
17 | #include <linux/init.h> | 14 | #include <linux/init.h> |
18 | #include <linux/irq.h> | 15 | #include <linux/irq.h> |
19 | #include <linux/interrupt.h> | 16 | #include <linux/interrupt.h> |
@@ -21,14 +18,13 @@ | |||
21 | #include <linux/delay.h> | 18 | #include <linux/delay.h> |
22 | #include <linux/module.h> | 19 | #include <linux/module.h> |
23 | #include <linux/sched.h> | 20 | #include <linux/sched.h> |
24 | |||
25 | #include <asm/machvec.h> | 21 | #include <asm/machvec.h> |
26 | #include <asm/mach/io.h> | 22 | #include <asm/snapgear.h> |
27 | #include <asm/irq.h> | 23 | #include <asm/irq.h> |
28 | #include <asm/io.h> | 24 | #include <asm/io.h> |
25 | #include <asm/rtc.h> | ||
29 | #include <asm/cpu/timer.h> | 26 | #include <asm/cpu/timer.h> |
30 | 27 | ||
31 | extern void (*board_time_init)(void); | ||
32 | extern void secureedge5410_rtc_init(void); | 28 | extern void secureedge5410_rtc_init(void); |
33 | extern void pcibios_init(void); | 29 | extern void pcibios_init(void); |
34 | 30 | ||
@@ -85,91 +81,6 @@ static void __init init_snapgear_IRQ(void) | |||
85 | make_ipr_irq(IRL3_IRQ, IRL3_IPR_ADDR, IRL3_IPR_POS, IRL3_PRIORITY); | 81 | make_ipr_irq(IRL3_IRQ, IRL3_IPR_ADDR, IRL3_IPR_POS, IRL3_PRIORITY); |
86 | } | 82 | } |
87 | 83 | ||
88 | /****************************************************************************/ | ||
89 | /* | ||
90 | * Fast poll interrupt simulator. | ||
91 | */ | ||
92 | |||
93 | /* | ||
94 | * Leave all of the fast timer/fast poll stuff commented out for now, since | ||
95 | * it's not clear whether it actually works or not. Since it wasn't being used | ||
96 | * at all in 2.4, we'll assume it's not sane for 2.6 either.. -- PFM | ||
97 | */ | ||
98 | #if 0 | ||
99 | #define FAST_POLL 1000 | ||
100 | //#define FAST_POLL_INTR | ||
101 | |||
102 | #define FASTTIMER_IRQ 17 | ||
103 | #define FASTTIMER_IPR_ADDR INTC_IPRA | ||
104 | #define FASTTIMER_IPR_POS 2 | ||
105 | #define FASTTIMER_PRIORITY 3 | ||
106 | |||
107 | #ifdef FAST_POLL_INTR | ||
108 | #define TMU1_TCR_INIT 0x0020 | ||
109 | #else | ||
110 | #define TMU1_TCR_INIT 0 | ||
111 | #endif | ||
112 | #define TMU_TSTR_INIT 1 | ||
113 | #define TMU1_TCR_CALIB 0x0000 | ||
114 | |||
115 | |||
116 | #ifdef FAST_POLL_INTR | ||
117 | static void fast_timer_irq(int irq, void *dev_instance, struct pt_regs *regs) | ||
118 | { | ||
119 | unsigned long timer_status; | ||
120 | timer_status = ctrl_inw(TMU1_TCR); | ||
121 | timer_status &= ~0x100; | ||
122 | ctrl_outw(timer_status, TMU1_TCR); | ||
123 | } | ||
124 | #endif | ||
125 | |||
126 | /* | ||
127 | * return the current ticks on the fast timer | ||
128 | */ | ||
129 | |||
130 | unsigned long fast_timer_count(void) | ||
131 | { | ||
132 | return(ctrl_inl(TMU1_TCNT)); | ||
133 | } | ||
134 | |||
135 | /* | ||
136 | * setup a fast timer for profiling etc etc | ||
137 | */ | ||
138 | |||
139 | static void setup_fast_timer() | ||
140 | { | ||
141 | unsigned long interval; | ||
142 | |||
143 | #ifdef FAST_POLL_INTR | ||
144 | interval = (current_cpu_data.module_clock/4 + FAST_POLL/2) / FAST_POLL; | ||
145 | |||
146 | make_ipr_irq(FASTTIMER_IRQ, FASTTIMER_IPR_ADDR, FASTTIMER_IPR_POS, | ||
147 | FASTTIMER_PRIORITY); | ||
148 | |||
149 | printk("SnapGear: %dHz fast timer on IRQ %d\n",FAST_POLL,FASTTIMER_IRQ); | ||
150 | |||
151 | if (request_irq(FASTTIMER_IRQ, fast_timer_irq, 0, "SnapGear fast timer", | ||
152 | NULL) != 0) | ||
153 | printk("%s(%d): request_irq() failed?\n", __FILE__, __LINE__); | ||
154 | #else | ||
155 | printk("SnapGear: fast timer running\n",FAST_POLL,FASTTIMER_IRQ); | ||
156 | interval = 0xffffffff; | ||
157 | #endif | ||
158 | |||
159 | ctrl_outb(ctrl_inb(TMU_TSTR) & ~0x2, TMU_TSTR); /* disable timer 1 */ | ||
160 | ctrl_outw(TMU1_TCR_INIT, TMU1_TCR); | ||
161 | ctrl_outl(interval, TMU1_TCOR); | ||
162 | ctrl_outl(interval, TMU1_TCNT); | ||
163 | ctrl_outb(ctrl_inb(TMU_TSTR) | 0x2, TMU_TSTR); /* enable timer 1 */ | ||
164 | |||
165 | printk("Timer count 1 = 0x%x\n", fast_timer_count()); | ||
166 | udelay(1000); | ||
167 | printk("Timer count 2 = 0x%x\n", fast_timer_count()); | ||
168 | } | ||
169 | #endif | ||
170 | |||
171 | /****************************************************************************/ | ||
172 | |||
173 | const char *get_system_type(void) | 84 | const char *get_system_type(void) |
174 | { | 85 | { |
175 | return "SnapGear SecureEdge5410"; | 86 | return "SnapGear SecureEdge5410"; |
@@ -196,8 +107,6 @@ struct sh_machine_vector mv_snapgear __initmv = { | |||
196 | .mv_outw_p = snapgear_outw, | 107 | .mv_outw_p = snapgear_outw, |
197 | .mv_outl_p = snapgear_outl, | 108 | .mv_outl_p = snapgear_outl, |
198 | 109 | ||
199 | .mv_isa_port2addr = snapgear_isa_port2addr, | ||
200 | |||
201 | .mv_init_irq = init_snapgear_IRQ, | 110 | .mv_init_irq = init_snapgear_IRQ, |
202 | }; | 111 | }; |
203 | ALIAS_MV(snapgear) | 112 | ALIAS_MV(snapgear) |
diff --git a/arch/sh/boards/titan/io.c b/arch/sh/boards/titan/io.c index b886fd233a66..48f3494f55b1 100644 --- a/arch/sh/boards/titan/io.c +++ b/arch/sh/boards/titan/io.c | |||
@@ -30,10 +30,10 @@ static inline void delay(void) | |||
30 | ctrl_inw(0xa0000000); | 30 | ctrl_inw(0xa0000000); |
31 | } | 31 | } |
32 | 32 | ||
33 | static inline volatile u16 *port2adr(unsigned int port) | 33 | static inline unsigned int port2adr(unsigned int port) |
34 | { | 34 | { |
35 | maybebadio((unsigned long)port); | 35 | maybebadio((unsigned long)port); |
36 | return (volatile u16*)port; | 36 | return port; |
37 | } | 37 | } |
38 | 38 | ||
39 | u8 titan_inb(unsigned long port) | 39 | u8 titan_inb(unsigned long port) |
diff --git a/arch/sh/cchips/Kconfig b/arch/sh/cchips/Kconfig index 155d139884c3..0582ca8346b6 100644 --- a/arch/sh/cchips/Kconfig +++ b/arch/sh/cchips/Kconfig | |||
@@ -65,6 +65,11 @@ config HD64461_IRQ | |||
65 | 65 | ||
66 | Do not change this unless you know what you are doing. | 66 | Do not change this unless you know what you are doing. |
67 | 67 | ||
68 | config HD64461_IOBASE | ||
69 | hex "HD64461 start address" | ||
70 | depends on HD64461 | ||
71 | default "0xb0000000" | ||
72 | |||
68 | config HD64461_ENABLER | 73 | config HD64461_ENABLER |
69 | bool "HD64461 PCMCIA enabler" | 74 | bool "HD64461 PCMCIA enabler" |
70 | depends on HD64461 | 75 | depends on HD64461 |
@@ -73,7 +78,6 @@ config HD64461_ENABLER | |||
73 | via the HD64461 companion chip. | 78 | via the HD64461 companion chip. |
74 | Otherwise, say N. | 79 | Otherwise, say N. |
75 | 80 | ||
76 | |||
77 | config HD64465_IOBASE | 81 | config HD64465_IOBASE |
78 | hex "HD64465 start address" | 82 | hex "HD64465 start address" |
79 | depends on HD64465 | 83 | depends on HD64465 |
diff --git a/arch/sh/kernel/cf-enabler.c b/arch/sh/kernel/cf-enabler.c index c9b823d1d073..3e5fa1e24df0 100644 --- a/arch/sh/kernel/cf-enabler.c +++ b/arch/sh/kernel/cf-enabler.c | |||
@@ -10,7 +10,8 @@ | |||
10 | */ | 10 | */ |
11 | 11 | ||
12 | #include <linux/init.h> | 12 | #include <linux/init.h> |
13 | 13 | #include <linux/mm.h> | |
14 | #include <linux/vmalloc.h> | ||
14 | #include <asm/io.h> | 15 | #include <asm/io.h> |
15 | #include <asm/irq.h> | 16 | #include <asm/irq.h> |
16 | 17 | ||
@@ -32,8 +33,6 @@ | |||
32 | /* SH4 can't access PCMCIA interface through P2 area. | 33 | /* SH4 can't access PCMCIA interface through P2 area. |
33 | * we must remap it with appropreate attribute bit of the page set. | 34 | * we must remap it with appropreate attribute bit of the page set. |
34 | * this part is based on Greg Banks' hd64465_ss.c implementation - Masahiro Abe */ | 35 | * this part is based on Greg Banks' hd64465_ss.c implementation - Masahiro Abe */ |
35 | #include <linux/mm.h> | ||
36 | #include <linux/vmalloc.h> | ||
37 | 36 | ||
38 | #if defined(CONFIG_CF_AREA6) | 37 | #if defined(CONFIG_CF_AREA6) |
39 | #define slot_no 0 | 38 | #define slot_no 0 |
@@ -84,7 +83,7 @@ static int __init cf_init_default(void) | |||
84 | } | 83 | } |
85 | 84 | ||
86 | #if defined(CONFIG_SH_SOLUTION_ENGINE) | 85 | #if defined(CONFIG_SH_SOLUTION_ENGINE) |
87 | #include <asm/se/se.h> | 86 | #include <asm/se.h> |
88 | 87 | ||
89 | /* | 88 | /* |
90 | * SolutionEngine | 89 | * SolutionEngine |
diff --git a/drivers/net/stnic.c b/drivers/net/stnic.c index 3fd7a4fee665..e6f90427160c 100644 --- a/drivers/net/stnic.c +++ b/drivers/net/stnic.c | |||
@@ -19,7 +19,7 @@ | |||
19 | 19 | ||
20 | #include <asm/system.h> | 20 | #include <asm/system.h> |
21 | #include <asm/io.h> | 21 | #include <asm/io.h> |
22 | #include <asm/se/se.h> | 22 | #include <asm/se.h> |
23 | #include <asm/machvec.h> | 23 | #include <asm/machvec.h> |
24 | #ifdef CONFIG_SH_STANDARD_BIOS | 24 | #ifdef CONFIG_SH_STANDARD_BIOS |
25 | #include <asm/sh_bios.h> | 25 | #include <asm/sh_bios.h> |
diff --git a/include/asm-sh/hs7751rvoip/hs7751rvoip.h b/include/asm-sh/hs7751rvoip/hs7751rvoip.h index 857cc2ebbc69..69faf0171473 100644 --- a/include/asm-sh/hs7751rvoip/hs7751rvoip.h +++ b/include/asm-sh/hs7751rvoip/hs7751rvoip.h | |||
@@ -44,6 +44,9 @@ | |||
44 | #define IRQ_RINGING 4 /* Ringing IRQ */ | 44 | #define IRQ_RINGING 4 /* Ringing IRQ */ |
45 | #define IRQ_CODEC 5 /* CODEC IRQ */ | 45 | #define IRQ_CODEC 5 /* CODEC IRQ */ |
46 | 46 | ||
47 | #define __IO_PREFIX hs7751rvoip | ||
48 | #include <asm/io_generic.h> | ||
49 | |||
47 | /* arch/sh/boards/renesas/hs7751rvoip/irq.c */ | 50 | /* arch/sh/boards/renesas/hs7751rvoip/irq.c */ |
48 | void init_hs7751rvoip_IRQ(void); | 51 | void init_hs7751rvoip_IRQ(void); |
49 | 52 | ||
diff --git a/include/asm-sh/mc146818rtc.h b/include/asm-sh/mc146818rtc.h index 1707cfb2915d..adc6e67c6b75 100644 --- a/include/asm-sh/mc146818rtc.h +++ b/include/asm-sh/mc146818rtc.h | |||
@@ -24,7 +24,7 @@ | |||
24 | #define CMOS_WRITE(val,addr) __CMOS_WRITE(val,addr,b) | 24 | #define CMOS_WRITE(val,addr) __CMOS_WRITE(val,addr,b) |
25 | 25 | ||
26 | #elif defined(CONFIG_SH_SECUREEDGE5410) | 26 | #elif defined(CONFIG_SH_SECUREEDGE5410) |
27 | #include <asm/snapgear/io.h> | 27 | #include <asm/snapgear.h> |
28 | 28 | ||
29 | #define RTC_PORT(n) SECUREEDGE_IOPORT_ADDR | 29 | #define RTC_PORT(n) SECUREEDGE_IOPORT_ADDR |
30 | #define CMOS_READ(addr) secureedge5410_cmos_read(addr) | 30 | #define CMOS_READ(addr) secureedge5410_cmos_read(addr) |
diff --git a/include/asm-sh/se/se.h b/include/asm-sh/se.h index 791c5da0388a..a1832154a3aa 100644 --- a/include/asm-sh/se/se.h +++ b/include/asm-sh/se.h | |||
@@ -74,4 +74,7 @@ | |||
74 | #define IRQ_STNIC 10 | 74 | #define IRQ_STNIC 10 |
75 | #endif | 75 | #endif |
76 | 76 | ||
77 | #define __IO_PREFIX se | ||
78 | #include <asm/io_generic.h> | ||
79 | |||
77 | #endif /* __ASM_SH_HITACHI_SE_H */ | 80 | #endif /* __ASM_SH_HITACHI_SE_H */ |
diff --git a/include/asm-sh/se/io.h b/include/asm-sh/se/io.h deleted file mode 100644 index 9eeb86cd6cef..000000000000 --- a/include/asm-sh/se/io.h +++ /dev/null | |||
@@ -1,35 +0,0 @@ | |||
1 | /* | ||
2 | * include/asm-sh/io_se.h | ||
3 | * | ||
4 | * Copyright 2000 Stuart Menefy (stuart.menefy@st.com) | ||
5 | * | ||
6 | * May be copied or modified under the terms of the GNU General Public | ||
7 | * License. See linux/COPYING for more information. | ||
8 | * | ||
9 | * IO functions for an Hitachi SolutionEngine | ||
10 | */ | ||
11 | |||
12 | #ifndef _ASM_SH_IO_SE_H | ||
13 | #define _ASM_SH_IO_SE_H | ||
14 | |||
15 | extern unsigned char se_inb(unsigned long port); | ||
16 | extern unsigned short se_inw(unsigned long port); | ||
17 | extern unsigned int se_inl(unsigned long port); | ||
18 | |||
19 | extern void se_outb(unsigned char value, unsigned long port); | ||
20 | extern void se_outw(unsigned short value, unsigned long port); | ||
21 | extern void se_outl(unsigned int value, unsigned long port); | ||
22 | |||
23 | extern unsigned char se_inb_p(unsigned long port); | ||
24 | extern void se_outb_p(unsigned char value, unsigned long port); | ||
25 | |||
26 | extern void se_insb(unsigned long port, void *addr, unsigned long count); | ||
27 | extern void se_insw(unsigned long port, void *addr, unsigned long count); | ||
28 | extern void se_insl(unsigned long port, void *addr, unsigned long count); | ||
29 | extern void se_outsb(unsigned long port, const void *addr, unsigned long count); | ||
30 | extern void se_outsw(unsigned long port, const void *addr, unsigned long count); | ||
31 | extern void se_outsl(unsigned long port, const void *addr, unsigned long count); | ||
32 | |||
33 | extern unsigned long se_isa_port2addr(unsigned long offset); | ||
34 | |||
35 | #endif /* _ASM_SH_IO_SE_H */ | ||
diff --git a/include/asm-sh/se7300/se7300.h b/include/asm-sh/se7300.h index 3ec1ded86c97..4e24edccb30d 100644 --- a/include/asm-sh/se7300/se7300.h +++ b/include/asm-sh/se7300.h | |||
@@ -58,4 +58,7 @@ | |||
58 | #define PA_LCD1 0xb8000000 | 58 | #define PA_LCD1 0xb8000000 |
59 | #define PA_LCD2 0xb8800000 | 59 | #define PA_LCD2 0xb8800000 |
60 | 60 | ||
61 | #define __IO_PREFIX sh7300se | ||
62 | #include <asm/io_generic.h> | ||
63 | |||
61 | #endif /* __ASM_SH_HITACHI_SE7300_H */ | 64 | #endif /* __ASM_SH_HITACHI_SE7300_H */ |
diff --git a/include/asm-sh/se7300/io.h b/include/asm-sh/se7300/io.h deleted file mode 100644 index c6af85529714..000000000000 --- a/include/asm-sh/se7300/io.h +++ /dev/null | |||
@@ -1,29 +0,0 @@ | |||
1 | /* | ||
2 | * include/asm-sh/se7300/io.h | ||
3 | * | ||
4 | * Copyright (C) 2003 Takashi Kusuda <kusuda-takashi@hitachi-ul.co.jp> | ||
5 | * IO functions for SH-Mobile(SH7300) SolutionEngine | ||
6 | */ | ||
7 | |||
8 | #ifndef _ASM_SH_IO_7300SE_H | ||
9 | #define _ASM_SH_IO_7300SE_H | ||
10 | |||
11 | extern unsigned char sh7300se_inb(unsigned long port); | ||
12 | extern unsigned short sh7300se_inw(unsigned long port); | ||
13 | extern unsigned int sh7300se_inl(unsigned long port); | ||
14 | |||
15 | extern void sh7300se_outb(unsigned char value, unsigned long port); | ||
16 | extern void sh7300se_outw(unsigned short value, unsigned long port); | ||
17 | extern void sh7300se_outl(unsigned int value, unsigned long port); | ||
18 | |||
19 | extern unsigned char sh7300se_inb_p(unsigned long port); | ||
20 | extern void sh7300se_outb_p(unsigned char value, unsigned long port); | ||
21 | |||
22 | extern void sh7300se_insb(unsigned long port, void *addr, unsigned long count); | ||
23 | extern void sh7300se_insw(unsigned long port, void *addr, unsigned long count); | ||
24 | extern void sh7300se_insl(unsigned long port, void *addr, unsigned long count); | ||
25 | extern void sh7300se_outsb(unsigned long port, const void *addr, unsigned long count); | ||
26 | extern void sh7300se_outsw(unsigned long port, const void *addr, unsigned long count); | ||
27 | extern void sh7300se_outsl(unsigned long port, const void *addr, unsigned long count); | ||
28 | |||
29 | #endif /* _ASM_SH_IO_7300SE_H */ | ||
diff --git a/include/asm-sh/se73180/se73180.h b/include/asm-sh/se73180.h index f5b93e39e768..3a4acb3e38a1 100644 --- a/include/asm-sh/se73180/se73180.h +++ b/include/asm-sh/se73180.h | |||
@@ -59,4 +59,7 @@ | |||
59 | #define PA_LCD1 0xb8000000 | 59 | #define PA_LCD1 0xb8000000 |
60 | #define PA_LCD2 0xb8800000 | 60 | #define PA_LCD2 0xb8800000 |
61 | 61 | ||
62 | #define __IO_PREFIX sh73180se | ||
63 | #include <asm/io_generic.h> | ||
64 | |||
62 | #endif /* __ASM_SH_HITACHI_SE73180_H */ | 65 | #endif /* __ASM_SH_HITACHI_SE73180_H */ |
diff --git a/include/asm-sh/se73180/io.h b/include/asm-sh/se73180/io.h deleted file mode 100644 index c9cb1b9412c6..000000000000 --- a/include/asm-sh/se73180/io.h +++ /dev/null | |||
@@ -1,32 +0,0 @@ | |||
1 | /* | ||
2 | * include/asm-sh/se73180/io.h | ||
3 | * | ||
4 | * Copyright (C) 2003 Takashi Kusuda <kusuda-takashi@hitachi-ul.co.jp> | ||
5 | * Based on include/asm-sh/se7300/io.h | ||
6 | * | ||
7 | * IO functions for SH-Mobile3(SH73180) SolutionEngine | ||
8 | * | ||
9 | */ | ||
10 | |||
11 | #ifndef _ASM_SH_IO_73180SE_H | ||
12 | #define _ASM_SH_IO_73180SE_H | ||
13 | |||
14 | extern unsigned char sh73180se_inb(unsigned long port); | ||
15 | extern unsigned short sh73180se_inw(unsigned long port); | ||
16 | extern unsigned int sh73180se_inl(unsigned long port); | ||
17 | |||
18 | extern void sh73180se_outb(unsigned char value, unsigned long port); | ||
19 | extern void sh73180se_outw(unsigned short value, unsigned long port); | ||
20 | extern void sh73180se_outl(unsigned int value, unsigned long port); | ||
21 | |||
22 | extern unsigned char sh73180se_inb_p(unsigned long port); | ||
23 | extern void sh73180se_outb_p(unsigned char value, unsigned long port); | ||
24 | |||
25 | extern void sh73180se_insb(unsigned long port, void *addr, unsigned long count); | ||
26 | extern void sh73180se_insw(unsigned long port, void *addr, unsigned long count); | ||
27 | extern void sh73180se_insl(unsigned long port, void *addr, unsigned long count); | ||
28 | extern void sh73180se_outsb(unsigned long port, const void *addr, unsigned long count); | ||
29 | extern void sh73180se_outsw(unsigned long port, const void *addr, unsigned long count); | ||
30 | extern void sh73180se_outsl(unsigned long port, const void *addr, unsigned long count); | ||
31 | |||
32 | #endif /* _ASM_SH_IO_73180SE_H */ | ||
diff --git a/include/asm-sh/se7751/se7751.h b/include/asm-sh/se7751.h index 738e22bebdfb..88cd379d9084 100644 --- a/include/asm-sh/se7751/se7751.h +++ b/include/asm-sh/se7751.h | |||
@@ -65,4 +65,7 @@ | |||
65 | 65 | ||
66 | #define IRQ_79C973 13 | 66 | #define IRQ_79C973 13 |
67 | 67 | ||
68 | #define __IO_PREFIX sh7751se | ||
69 | #include <asm/io_generic.h> | ||
70 | |||
68 | #endif /* __ASM_SH_HITACHI_7751SE_H */ | 71 | #endif /* __ASM_SH_HITACHI_7751SE_H */ |
diff --git a/include/asm-sh/se7751/io.h b/include/asm-sh/se7751/io.h deleted file mode 100644 index 78d8f5744bc5..000000000000 --- a/include/asm-sh/se7751/io.h +++ /dev/null | |||
@@ -1,42 +0,0 @@ | |||
1 | /* | ||
2 | * include/asm-sh/io_7751se.h | ||
3 | * | ||
4 | * Modified version of io_se.h for the 7751se-specific functions. | ||
5 | * | ||
6 | * May be copied or modified under the terms of the GNU General Public | ||
7 | * License. See linux/COPYING for more information. | ||
8 | * | ||
9 | * IO functions for an Hitachi SolutionEngine | ||
10 | */ | ||
11 | |||
12 | #ifndef _ASM_SH_IO_7751SE_H | ||
13 | #define _ASM_SH_IO_7751SE_H | ||
14 | |||
15 | extern unsigned char sh7751se_inb(unsigned long port); | ||
16 | extern unsigned short sh7751se_inw(unsigned long port); | ||
17 | extern unsigned int sh7751se_inl(unsigned long port); | ||
18 | |||
19 | extern void sh7751se_outb(unsigned char value, unsigned long port); | ||
20 | extern void sh7751se_outw(unsigned short value, unsigned long port); | ||
21 | extern void sh7751se_outl(unsigned int value, unsigned long port); | ||
22 | |||
23 | extern unsigned char sh7751se_inb_p(unsigned long port); | ||
24 | extern void sh7751se_outb_p(unsigned char value, unsigned long port); | ||
25 | |||
26 | extern void sh7751se_insb(unsigned long port, void *addr, unsigned long count); | ||
27 | extern void sh7751se_insw(unsigned long port, void *addr, unsigned long count); | ||
28 | extern void sh7751se_insl(unsigned long port, void *addr, unsigned long count); | ||
29 | extern void sh7751se_outsb(unsigned long port, const void *addr, unsigned long count); | ||
30 | extern void sh7751se_outsw(unsigned long port, const void *addr, unsigned long count); | ||
31 | extern void sh7751se_outsl(unsigned long port, const void *addr, unsigned long count); | ||
32 | |||
33 | extern unsigned char sh7751se_readb(unsigned long addr); | ||
34 | extern unsigned short sh7751se_readw(unsigned long addr); | ||
35 | extern unsigned int sh7751se_readl(unsigned long addr); | ||
36 | extern void sh7751se_writeb(unsigned char b, unsigned long addr); | ||
37 | extern void sh7751se_writew(unsigned short b, unsigned long addr); | ||
38 | extern void sh7751se_writel(unsigned int b, unsigned long addr); | ||
39 | |||
40 | extern unsigned long sh7751se_isa_port2addr(unsigned long offset); | ||
41 | |||
42 | #endif /* _ASM_SH_IO_7751SE_H */ | ||
diff --git a/include/asm-sh/sh03/io.h b/include/asm-sh/sh03/io.h index 25792e9831ea..df3b187ef883 100644 --- a/include/asm-sh/sh03/io.h +++ b/include/asm-sh/sh03/io.h | |||
@@ -33,14 +33,6 @@ | |||
33 | #define IRL3_IPR_POS 0 | 33 | #define IRL3_IPR_POS 0 |
34 | #define IRL3_PRIORITY 4 | 34 | #define IRL3_PRIORITY 4 |
35 | 35 | ||
36 | 36 | void heartbeat_sh03(void); | |
37 | extern unsigned long sh03_isa_port2addr(unsigned long offset); | ||
38 | |||
39 | extern void setup_sh03(void); | ||
40 | extern void init_sh03_IRQ(void); | ||
41 | extern void heartbeat_sh03(void); | ||
42 | |||
43 | extern void sh03_rtc_gettimeofday(struct timeval *tv); | ||
44 | extern int sh03_rtc_settimeofday(const struct timeval *tv); | ||
45 | 37 | ||
46 | #endif /* _ASM_SH_IO_SH03_H */ | 38 | #endif /* _ASM_SH_IO_SH03_H */ |
diff --git a/include/asm-sh/snapgear/io.h b/include/asm-sh/snapgear.h index bfa97ac06280..6b5e4ddc073a 100644 --- a/include/asm-sh/snapgear/io.h +++ b/include/asm-sh/snapgear.h | |||
@@ -40,21 +40,8 @@ | |||
40 | #define IRL3_PRIORITY 4 | 40 | #define IRL3_PRIORITY 4 |
41 | #endif | 41 | #endif |
42 | 42 | ||
43 | extern unsigned char snapgear_inb(unsigned long port); | 43 | #define __IO_PREFIX snapgear |
44 | extern unsigned short snapgear_inw(unsigned long port); | 44 | #include <asm/io_generic.h> |
45 | extern unsigned int snapgear_inl(unsigned long port); | ||
46 | |||
47 | extern void snapgear_outb(unsigned char value, unsigned long port); | ||
48 | extern void snapgear_outw(unsigned short value, unsigned long port); | ||
49 | extern void snapgear_outl(unsigned int value, unsigned long port); | ||
50 | |||
51 | extern unsigned char snapgear_inb_p(unsigned long port); | ||
52 | extern void snapgear_outb_p(unsigned char value, unsigned long port); | ||
53 | |||
54 | extern void snapgear_insl(unsigned long port, void *addr, unsigned long count); | ||
55 | extern void snapgear_outsl(unsigned long port, const void *addr, unsigned long count); | ||
56 | |||
57 | extern unsigned long snapgear_isa_port2addr(unsigned long offset); | ||
58 | 45 | ||
59 | #ifdef CONFIG_SH_SECUREEDGE5410 | 46 | #ifdef CONFIG_SH_SECUREEDGE5410 |
60 | /* | 47 | /* |
@@ -79,14 +66,14 @@ extern unsigned long snapgear_isa_port2addr(unsigned long offset); | |||
79 | * D12 - RTS RESET | 66 | * D12 - RTS RESET |
80 | */ | 67 | */ |
81 | 68 | ||
82 | #define SECUREEDGE_IOPORT_ADDR ((volatile short *) 0xb0000000) | 69 | #define SECUREEDGE_IOPORT_ADDR ((volatile short *) 0xb0000000) |
83 | extern unsigned short secureedge5410_ioport; | 70 | extern unsigned short secureedge5410_ioport; |
84 | 71 | ||
85 | #define SECUREEDGE_WRITE_IOPORT(val, mask) (*SECUREEDGE_IOPORT_ADDR = \ | 72 | #define SECUREEDGE_WRITE_IOPORT(val, mask) (*SECUREEDGE_IOPORT_ADDR = \ |
86 | (secureedge5410_ioport = \ | 73 | (secureedge5410_ioport = \ |
87 | ((secureedge5410_ioport & ~(mask)) | ((val) & (mask))))) | 74 | ((secureedge5410_ioport & ~(mask)) | ((val) & (mask))))) |
88 | #define SECUREEDGE_READ_IOPORT() \ | 75 | #define SECUREEDGE_READ_IOPORT() \ |
89 | ((*SECUREEDGE_IOPORT_ADDR&0x0817) | (secureedge5410_ioport&~0x0817)) | 76 | ((*SECUREEDGE_IOPORT_ADDR&0x0817) | (secureedge5410_ioport&~0x0817)) |
90 | #endif | 77 | #endif |
91 | 78 | ||
92 | #endif /* _ASM_SH_IO_SNAPGEAR_H */ | 79 | #endif /* _ASM_SH_IO_SNAPGEAR_H */ |
diff --git a/include/asm-sh/systemh/io.h b/include/asm-sh/systemh/io.h deleted file mode 100644 index 327849b49db8..000000000000 --- a/include/asm-sh/systemh/io.h +++ /dev/null | |||
@@ -1,43 +0,0 @@ | |||
1 | /* | ||
2 | * include/asm-sh/systemh/io.h | ||
3 | * | ||
4 | * Stupid I/O definitions for SystemH, cloned from SE7751. | ||
5 | * | ||
6 | * Copyright (C) 2003 Paul Mundt | ||
7 | * | ||
8 | * This file is subject to the terms and conditions of the GNU General Public | ||
9 | * License. See the file "COPYING" in the main directory of this archive | ||
10 | * for more details. | ||
11 | */ | ||
12 | #ifndef __ASM_SH_SYSTEMH_IO_H | ||
13 | #define __ASM_SH_SYSTEMH_IO_H | ||
14 | |||
15 | extern unsigned char sh7751systemh_inb(unsigned long port); | ||
16 | extern unsigned short sh7751systemh_inw(unsigned long port); | ||
17 | extern unsigned int sh7751systemh_inl(unsigned long port); | ||
18 | |||
19 | extern void sh7751systemh_outb(unsigned char value, unsigned long port); | ||
20 | extern void sh7751systemh_outw(unsigned short value, unsigned long port); | ||
21 | extern void sh7751systemh_outl(unsigned int value, unsigned long port); | ||
22 | |||
23 | extern unsigned char sh7751systemh_inb_p(unsigned long port); | ||
24 | extern void sh7751systemh_outb_p(unsigned char value, unsigned long port); | ||
25 | |||
26 | extern void sh7751systemh_insb(unsigned long port, void *addr, unsigned long count); | ||
27 | extern void sh7751systemh_insw(unsigned long port, void *addr, unsigned long count); | ||
28 | extern void sh7751systemh_insl(unsigned long port, void *addr, unsigned long count); | ||
29 | extern void sh7751systemh_outsb(unsigned long port, const void *addr, unsigned long count); | ||
30 | extern void sh7751systemh_outsw(unsigned long port, const void *addr, unsigned long count); | ||
31 | extern void sh7751systemh_outsl(unsigned long port, const void *addr, unsigned long count); | ||
32 | |||
33 | extern unsigned char sh7751systemh_readb(unsigned long addr); | ||
34 | extern unsigned short sh7751systemh_readw(unsigned long addr); | ||
35 | extern unsigned int sh7751systemh_readl(unsigned long addr); | ||
36 | extern void sh7751systemh_writeb(unsigned char b, unsigned long addr); | ||
37 | extern void sh7751systemh_writew(unsigned short b, unsigned long addr); | ||
38 | extern void sh7751systemh_writel(unsigned int b, unsigned long addr); | ||
39 | |||
40 | extern unsigned long sh7751systemh_isa_port2addr(unsigned long offset); | ||
41 | |||
42 | #endif /* __ASM_SH_SYSTEMH_IO_H */ | ||
43 | |||
diff --git a/include/asm-sh/systemh/7751systemh.h b/include/asm-sh/systemh7751.h index 4170531bdbd9..b143bb2a2ca7 100644 --- a/include/asm-sh/systemh/7751systemh.h +++ b/include/asm-sh/systemh7751.h | |||
@@ -65,4 +65,7 @@ | |||
65 | 65 | ||
66 | #define IRQ_79C973 13 | 66 | #define IRQ_79C973 13 |
67 | 67 | ||
68 | #define __IO_PREFIX sh7751systemh | ||
69 | #include <asm/io_generic.h> | ||
70 | |||
68 | #endif /* __ASM_SH_SYSTEMH_7751SYSTEMH_H */ | 71 | #endif /* __ASM_SH_SYSTEMH_7751SYSTEMH_H */ |