diff options
Diffstat (limited to 'arch/sh/boards/snapgear/io.c')
-rw-r--r-- | arch/sh/boards/snapgear/io.c | 63 |
1 files changed, 8 insertions, 55 deletions
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 | } |