2 * linux/arch/sh/kernel/io_7751se.c
4 * Copyright (C) 2001 Ian da Silva, Jeremy Siegel
5 * Based largely on io_se.c.
7 * I/O routine for Hitachi 7751 SolutionEngine.
9 * Initial version only to support LAN access; some
10 * placeholder code from io_se.c left in with the
11 * expectation of later SuperIO and PCMCIA access.
14 #include <linux/kernel.h>
15 #include <linux/types.h>
17 #include <asm/se7751/se7751.h>
18 #include <asm/addrspace.h>
20 #include <linux/pci.h>
21 #include <asm/pci-sh7751.h>
24 /******************************************************************
25 * Variables from io_se.c, related to PCMCIA (not PCI); we're not
26 * compiling them in, and have removed references from functions
27 * which follow. [Many checked for IO ports in the range bounded
28 * by sh_pcic_io_start/stop, and used sh_pcic_io_wbase as offset.
29 * As start/stop are uninitialized, only port 0x0 would match?]
30 * When used, remember to adjust names to avoid clash with io_se?
31 *****************************************************************/
32 /* SH pcmcia io window base, start and end. */
33 int sh_pcic_io_wbase
= 0xb8400000;
38 /*************************************************************/
42 * The 7751 Solution Engine uses the built-in PCI controller (PCIC)
43 * of the 7751 processor, and has a SuperIO accessible via the PCI.
44 * The board also includes a PCMCIA controller on its memory bus,
45 * like the other Solution Engine boards.
48 #define PCIIOBR (volatile long *)PCI_REG(SH7751_PCIIOBR)
49 #define PCIMBR (volatile long *)PCI_REG(SH7751_PCIMBR)
50 #define PCI_IO_AREA SH7751_PCI_IO_BASE
51 #define PCI_MEM_AREA SH7751_PCI_CONFIG_BASE
53 #define PCI_IOMAP(adr) (PCI_IO_AREA + (adr & ~SH7751_PCIIOBR_MASK))
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))
59 static inline void delay(void)
64 static inline volatile __u16
*
65 port2adr(unsigned int port
)
68 return (volatile __u16
*) (PA_MRSHPC
+ (port
- 0x2000));
71 return (volatile __u16
*) (PA_SUPERIO
+ (port
<< 1));
73 maybebadio(name
,(unsigned long)port
);
74 return (volatile __u16
*)port
;
78 /* The 7751 Solution Engine seems to have everything hooked */
79 /* up pretty normally (nothing on high-bytes only...) so this */
80 /* shouldn't be needed */
82 shifted_port(unsigned long port
)
84 /* For IDE registers, value is not shifted */
85 if ((0x1f0 <= port
&& port
< 0x1f8) || port
== 0x3f6)
92 /* In case someone configures the kernel w/o PCI support: in that */
93 /* scenario, don't ever bother to check for PCI-window addresses */
95 /* NOTE: WINDOW CHECK MAY BE A BIT OFF, HIGH PCIBIOS_MIN_IO WRAPS? */
96 #if defined(CONFIG_PCI)
97 #define CHECK_SH7751_PCIIO(port) \
98 ((port >= PCIBIOS_MIN_IO) && (port < (PCIBIOS_MIN_IO + SH7751_PCI_IO_SIZE)))
100 #define CHECK_SH7751_PCIIO(port) (0)
104 * General outline: remap really low stuff [eventually] to SuperIO,
105 * stuff in PCI IO space (at or above window at pci.h:PCIBIOS_MIN_IO)
106 * is mapped through the PCI IO window. Stuff with high bits (PXSEG)
107 * should be way beyond the window, and is used w/o translation for
110 unsigned char sh7751se_inb(unsigned long port
)
113 return *(volatile unsigned char *)port
;
114 else if (CHECK_SH7751_PCIIO(port
))
115 return *(volatile unsigned char *)PCI_IOMAP(port
);
117 return (*port2adr(port
))&0xff;
120 unsigned char sh7751se_inb_p(unsigned long port
)
125 v
= *(volatile unsigned char *)port
;
126 else if (CHECK_SH7751_PCIIO(port
))
127 v
= *(volatile unsigned char *)PCI_IOMAP(port
);
129 v
= (*port2adr(port
))&0xff;
134 unsigned short sh7751se_inw(unsigned long port
)
137 return *(volatile unsigned short *)port
;
138 else if (CHECK_SH7751_PCIIO(port
))
139 return *(volatile unsigned short *)PCI_IOMAP(port
);
140 else if (port
>= 0x2000)
141 return *port2adr(port
);
143 maybebadio(inw
, port
);
147 unsigned int sh7751se_inl(unsigned long port
)
150 return *(volatile unsigned long *)port
;
151 else if (CHECK_SH7751_PCIIO(port
))
152 return *(volatile unsigned int *)PCI_IOMAP(port
);
153 else if (port
>= 0x2000)
154 return *port2adr(port
);
156 maybebadio(inl
, port
);
160 void sh7751se_outb(unsigned char value
, unsigned long port
)
164 *(volatile unsigned char *)port
= value
;
165 else if (CHECK_SH7751_PCIIO(port
))
166 *((unsigned char*)PCI_IOMAP(port
)) = value
;
168 *(port2adr(port
)) = value
;
171 void sh7751se_outb_p(unsigned char value
, unsigned long port
)
174 *(volatile unsigned char *)port
= value
;
175 else if (CHECK_SH7751_PCIIO(port
))
176 *((unsigned char*)PCI_IOMAP(port
)) = value
;
178 *(port2adr(port
)) = value
;
182 void sh7751se_outw(unsigned short value
, unsigned long port
)
185 *(volatile unsigned short *)port
= value
;
186 else if (CHECK_SH7751_PCIIO(port
))
187 *((unsigned short *)PCI_IOMAP(port
)) = value
;
188 else if (port
>= 0x2000)
189 *port2adr(port
) = value
;
191 maybebadio(outw
, port
);
194 void sh7751se_outl(unsigned int value
, unsigned long port
)
197 *(volatile unsigned long *)port
= value
;
198 else if (CHECK_SH7751_PCIIO(port
))
199 *((unsigned long*)PCI_IOMAP(port
)) = value
;
201 maybebadio(outl
, port
);
204 void sh7751se_insl(unsigned long port
, void *addr
, unsigned long count
)
206 maybebadio(insl
, port
);
209 void sh7751se_outsl(unsigned long port
, const void *addr
, unsigned long count
)
211 maybebadio(outsw
, port
);
214 /* Map ISA bus address to the real address. Only for PCMCIA. */
216 /* ISA page descriptor. */
217 static __u32 sh_isa_memmap
[256];
221 sh_isa_mmap(__u32 start
, __u32 length
, __u32 offset
)
225 if (start
>= 0x100000 || (start
& 0xfff) || (length
!= 0x1000))
229 sh_isa_memmap
[idx
] = 0xb8000000 + (offset
&~ 0xfff);
230 printk("sh_isa_mmap: start %x len %x offset %x (idx %x paddr %x)\n",
231 start
, length
, offset
, idx
, sh_isa_memmap
[idx
]);
237 sh7751se_isa_port2addr(unsigned long offset
)
241 idx
= (offset
>> 12) & 0xff;
243 return sh_isa_memmap
[idx
] + offset
;