This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / include / asm-ppc / io.h
1 #ifdef __KERNEL__
2 #ifndef _PPC_IO_H
3 #define _PPC_IO_H
4
5 #include <linux/config.h>
6 #include <linux/types.h>
7 #include <linux/mm.h>
8
9 #include <asm/page.h>
10 #include <asm/byteorder.h>
11 #include <asm/mmu.h>
12
13 #define SIO_CONFIG_RA   0x398
14 #define SIO_CONFIG_RD   0x399
15
16 #define SLOW_DOWN_IO
17
18 #define PMAC_ISA_MEM_BASE       0
19 #define PMAC_PCI_DRAM_OFFSET    0
20 #define CHRP_ISA_IO_BASE        0xf8000000
21 #define CHRP_ISA_MEM_BASE       0xf7000000
22 #define CHRP_PCI_DRAM_OFFSET    0
23 #define PREP_ISA_IO_BASE        0x80000000
24 #define PREP_ISA_MEM_BASE       0xc0000000
25 #define PREP_PCI_DRAM_OFFSET    0x80000000
26
27 #if defined(CONFIG_4xx)
28 #include <asm/ibm4xx.h>
29 #elif defined(CONFIG_8xx)
30 #include <asm/mpc8xx.h>
31 #elif defined(CONFIG_8260)
32 #include <asm/mpc8260.h>
33 #elif defined(CONFIG_85xx)
34 #include <asm/mpc85xx.h>
35 #elif defined(CONFIG_APUS)
36 #define _IO_BASE        0
37 #define _ISA_MEM_BASE   0
38 #define PCI_DRAM_OFFSET 0
39 #else /* Everyone else */
40 #define _IO_BASE        isa_io_base
41 #define _ISA_MEM_BASE   isa_mem_base
42 #define PCI_DRAM_OFFSET pci_dram_offset
43 #endif /* Platform-dependent I/O */
44
45 extern unsigned long isa_io_base;
46 extern unsigned long isa_mem_base;
47 extern unsigned long pci_dram_offset;
48
49 #define readb(addr) in_8((volatile u8 *)(addr))
50 #define writeb(b,addr) out_8((volatile u8 *)(addr), (b))
51 #if defined(CONFIG_APUS)
52 #define readw(addr) (*(volatile u16 *) (addr))
53 #define readl(addr) (*(volatile u32 *) (addr))
54 #define writew(b,addr) ((*(volatile u16 *) (addr)) = (b))
55 #define writel(b,addr) ((*(volatile u32 *) (addr)) = (b))
56 #else
57 #define readw(addr) in_le16((volatile u16 *)(addr))
58 #define readl(addr) in_le32((volatile u32 *)(addr))
59 #define writew(b,addr) out_le16((volatile u16 *)(addr),(b))
60 #define writel(b,addr) out_le32((volatile u32 *)(addr),(b))
61 #endif /* CONFIG_APUS */
62
63 #define readb_relaxed(addr) readb(addr)
64 #define readw_relaxed(addr) readw(addr)
65 #define readl_relaxed(addr) readl(addr)
66
67 #define __raw_readb(addr)       (*(volatile unsigned char *)(addr))
68 #define __raw_readw(addr)       (*(volatile unsigned short *)(addr))
69 #define __raw_readl(addr)       (*(volatile unsigned int *)(addr))
70 #define __raw_writeb(v, addr)   (*(volatile unsigned char *)(addr) = (v))
71 #define __raw_writew(v, addr)   (*(volatile unsigned short *)(addr) = (v))
72 #define __raw_writel(v, addr)   (*(volatile unsigned int *)(addr) = (v))
73
74 /*
75  * The insw/outsw/insl/outsl macros don't do byte-swapping.
76  * They are only used in practice for transferring buffers which
77  * are arrays of bytes, and byte-swapping is not appropriate in
78  * that case.  - paulus
79  */
80 #define insb(port, buf, ns)     _insb((u8 *)((port)+_IO_BASE), (buf), (ns))
81 #define outsb(port, buf, ns)    _outsb((u8 *)((port)+_IO_BASE), (buf), (ns))
82 #define insw(port, buf, ns)     _insw_ns((u16 *)((port)+_IO_BASE), (buf), (ns))
83 #define outsw(port, buf, ns)    _outsw_ns((u16 *)((port)+_IO_BASE), (buf), (ns))
84 #define insl(port, buf, nl)     _insl_ns((u32 *)((port)+_IO_BASE), (buf), (nl))
85 #define outsl(port, buf, nl)    _outsl_ns((u32 *)((port)+_IO_BASE), (buf), (nl))
86
87 /*
88  * On powermacs, we will get a machine check exception if we
89  * try to read data from a non-existent I/O port.  Because the
90  * machine check is an asynchronous exception, it isn't
91  * well-defined which instruction SRR0 will point to when the
92  * exception occurs.
93  * With the sequence below (twi; isync; nop), we have found that
94  * the machine check occurs on one of the three instructions on
95  * all PPC implementations tested so far.  The twi and isync are
96  * needed on the 601 (in fact twi; sync works too), the isync and
97  * nop are needed on 604[e|r], and any of twi, sync or isync will
98  * work on 603[e], 750, 74xx.
99  * The twi creates an explicit data dependency on the returned
100  * value which seems to be needed to make the 601 wait for the
101  * load to finish.
102  */
103
104 #define __do_in_asm(name, op)                           \
105 extern __inline__ unsigned int name(unsigned int port)  \
106 {                                                       \
107         unsigned int x;                                 \
108         __asm__ __volatile__(                           \
109                         op "    %0,0,%1\n"              \
110                 "1:     twi     0,%0,0\n"               \
111                 "2:     isync\n"                        \
112                 "3:     nop\n"                          \
113                 "4:\n"                                  \
114                 ".section .fixup,\"ax\"\n"              \
115                 "5:     li      %0,-1\n"                \
116                 "       b       4b\n"                   \
117                 ".previous\n"                           \
118                 ".section __ex_table,\"a\"\n"           \
119                 "       .align  2\n"                    \
120                 "       .long   1b,5b\n"                \
121                 "       .long   2b,5b\n"                \
122                 "       .long   3b,5b\n"                \
123                 ".previous"                             \
124                 : "=&r" (x)                             \
125                 : "r" (port + _IO_BASE));               \
126         return x;                                       \
127 }
128
129 #define __do_out_asm(name, op)                          \
130 extern __inline__ void name(unsigned int val, unsigned int port) \
131 {                                                       \
132         __asm__ __volatile__(                           \
133                 op " %0,0,%1\n"                         \
134                 "1:     sync\n"                         \
135                 "2:\n"                                  \
136                 ".section __ex_table,\"a\"\n"           \
137                 "       .align  2\n"                    \
138                 "       .long   1b,2b\n"                \
139                 ".previous"                             \
140                 : : "r" (val), "r" (port + _IO_BASE));  \
141 }
142
143 __do_in_asm(inb, "lbzx")
144 __do_out_asm(outb, "stbx")
145 #ifdef CONFIG_APUS
146 __do_in_asm(inw, "lhz%U1%X1")
147 __do_in_asm(inl, "lwz%U1%X1")
148 __do_out_asm(outl,"stw%U0%X0")
149 __do_out_asm(outw, "sth%U0%X0")
150 #else
151 __do_in_asm(inw, "lhbrx")
152 __do_in_asm(inl, "lwbrx")
153 __do_out_asm(outw, "sthbrx")
154 __do_out_asm(outl, "stwbrx")
155 #endif
156
157 #define inb_p(port)             inb((port))
158 #define outb_p(val, port)       outb((val), (port))
159 #define inw_p(port)             inw((port))
160 #define outw_p(val, port)       outw((val), (port))
161 #define inl_p(port)             inl((port))
162 #define outl_p(val, port)       outl((val), (port))
163
164 extern void _insb(volatile u8 *port, void *buf, int ns);
165 extern void _outsb(volatile u8 *port, const void *buf, int ns);
166 extern void _insw(volatile u16 *port, void *buf, int ns);
167 extern void _outsw(volatile u16 *port, const void *buf, int ns);
168 extern void _insl(volatile u32 *port, void *buf, int nl);
169 extern void _outsl(volatile u32 *port, const void *buf, int nl);
170 extern void _insw_ns(volatile u16 *port, void *buf, int ns);
171 extern void _outsw_ns(volatile u16 *port, const void *buf, int ns);
172 extern void _insl_ns(volatile u32 *port, void *buf, int nl);
173 extern void _outsl_ns(volatile u32 *port, const void *buf, int nl);
174
175 /*
176  * The *_ns versions below don't do byte-swapping.
177  * Neither do the standard versions now, these are just here
178  * for older code.
179  */
180 #define insw_ns(port, buf, ns)  _insw_ns((u16 *)((port)+_IO_BASE), (buf), (ns))
181 #define outsw_ns(port, buf, ns) _outsw_ns((u16 *)((port)+_IO_BASE), (buf), (ns))
182 #define insl_ns(port, buf, nl)  _insl_ns((u32 *)((port)+_IO_BASE), (buf), (nl))
183 #define outsl_ns(port, buf, nl) _outsl_ns((u32 *)((port)+_IO_BASE), (buf), (nl))
184
185
186 #define IO_SPACE_LIMIT ~0
187
188 #define memset_io(a,b,c)       memset((void *)(a),(b),(c))
189 #define memcpy_fromio(a,b,c)   memcpy((a),(void *)(b),(c))
190 #define memcpy_toio(a,b,c)      memcpy((void *)(a),(b),(c))
191
192 /*
193  * Map in an area of physical address space, for accessing
194  * I/O devices etc.
195  */
196 extern void *__ioremap(phys_addr_t address, unsigned long size,
197                        unsigned long flags);
198 extern void *ioremap(phys_addr_t address, unsigned long size);
199 #ifdef CONFIG_44x
200 extern void *ioremap64(unsigned long long address, unsigned long size);
201 #endif
202 #define ioremap_nocache(addr, size)     ioremap((addr), (size))
203 extern void iounmap(void *addr);
204 extern unsigned long iopa(unsigned long addr);
205 extern unsigned long mm_ptov(unsigned long addr) __attribute_const__;
206 extern void io_block_mapping(unsigned long virt, phys_addr_t phys,
207                              unsigned int size, int flags);
208
209 /*
210  * The PCI bus is inherently Little-Endian.  The PowerPC is being
211  * run Big-Endian.  Thus all values which cross the [PCI] barrier
212  * must be endian-adjusted.  Also, the local DRAM has a different
213  * address from the PCI point of view, thus buffer addresses also
214  * have to be modified [mapped] appropriately.
215  */
216 extern inline unsigned long virt_to_bus(volatile void * address)
217 {
218 #ifndef CONFIG_APUS
219         if (address == (void *)0)
220                 return 0;
221         return (unsigned long)address - KERNELBASE + PCI_DRAM_OFFSET;
222 #else
223         return iopa ((unsigned long) address);
224 #endif
225 }
226
227 extern inline void * bus_to_virt(unsigned long address)
228 {
229 #ifndef CONFIG_APUS
230         if (address == 0)
231                 return 0;
232         return (void *)(address - PCI_DRAM_OFFSET + KERNELBASE);
233 #else
234         return (void*) mm_ptov (address);
235 #endif
236 }
237
238 /*
239  * Change virtual addresses to physical addresses and vv, for
240  * addresses in the area where the kernel has the RAM mapped.
241  */
242 extern inline unsigned long virt_to_phys(volatile void * address)
243 {
244 #ifndef CONFIG_APUS
245         return (unsigned long) address - KERNELBASE;
246 #else
247         return iopa ((unsigned long) address);
248 #endif
249 }
250
251 extern inline void * phys_to_virt(unsigned long address)
252 {
253 #ifndef CONFIG_APUS
254         return (void *) (address + KERNELBASE);
255 #else
256         return (void*) mm_ptov (address);
257 #endif
258 }
259
260 /*
261  * Change "struct page" to physical address.
262  */
263 #define page_to_phys(page)      (page_to_pfn(page) << PAGE_SHIFT)
264 #define page_to_bus(page)       (page_to_phys(page) + PCI_DRAM_OFFSET)
265
266 /*
267  * Enforce In-order Execution of I/O:
268  * Acts as a barrier to ensure all previous I/O accesses have
269  * completed before any further ones are issued.
270  */
271 extern inline void eieio(void)
272 {
273         __asm__ __volatile__ ("eieio" : : : "memory");
274 }
275
276 /* Enforce in-order execution of data I/O.
277  * No distinction between read/write on PPC; use eieio for all three.
278  */
279 #define iobarrier_rw() eieio()
280 #define iobarrier_r()  eieio()
281 #define iobarrier_w()  eieio()
282
283 /*
284  * 8, 16 and 32 bit, big and little endian I/O operations, with barrier.
285  *
286  * Read operations have additional twi & isync to make sure the read
287  * is actually performed (i.e. the data has come back) before we start
288  * executing any following instructions.
289  */
290 extern inline int in_8(volatile unsigned char *addr)
291 {
292         int ret;
293
294         __asm__ __volatile__(
295                 "lbz%U1%X1 %0,%1;\n"
296                 "twi 0,%0,0;\n"
297                 "isync" : "=r" (ret) : "m" (*addr));
298         return ret;
299 }
300
301 extern inline void out_8(volatile unsigned char *addr, int val)
302 {
303         __asm__ __volatile__("stb%U0%X0 %1,%0; eieio" : "=m" (*addr) : "r" (val));
304 }
305
306 extern inline int in_le16(volatile unsigned short *addr)
307 {
308         int ret;
309
310         __asm__ __volatile__("lhbrx %0,0,%1;\n"
311                              "twi 0,%0,0;\n"
312                              "isync" : "=r" (ret) :
313                               "r" (addr), "m" (*addr));
314         return ret;
315 }
316
317 extern inline int in_be16(volatile unsigned short *addr)
318 {
319         int ret;
320
321         __asm__ __volatile__("lhz%U1%X1 %0,%1;\n"
322                              "twi 0,%0,0;\n"
323                              "isync" : "=r" (ret) : "m" (*addr));
324         return ret;
325 }
326
327 extern inline void out_le16(volatile unsigned short *addr, int val)
328 {
329         __asm__ __volatile__("sthbrx %1,0,%2; eieio" : "=m" (*addr) :
330                               "r" (val), "r" (addr));
331 }
332
333 extern inline void out_be16(volatile unsigned short *addr, int val)
334 {
335         __asm__ __volatile__("sth%U0%X0 %1,%0; eieio" : "=m" (*addr) : "r" (val));
336 }
337
338 extern inline unsigned in_le32(volatile unsigned *addr)
339 {
340         unsigned ret;
341
342         __asm__ __volatile__("lwbrx %0,0,%1;\n"
343                              "twi 0,%0,0;\n"
344                              "isync" : "=r" (ret) :
345                              "r" (addr), "m" (*addr));
346         return ret;
347 }
348
349 extern inline unsigned in_be32(volatile unsigned *addr)
350 {
351         unsigned ret;
352
353         __asm__ __volatile__("lwz%U1%X1 %0,%1;\n"
354                              "twi 0,%0,0;\n"
355                              "isync" : "=r" (ret) : "m" (*addr));
356         return ret;
357 }
358
359 extern inline void out_le32(volatile unsigned *addr, int val)
360 {
361         __asm__ __volatile__("stwbrx %1,0,%2; eieio" : "=m" (*addr) :
362                              "r" (val), "r" (addr));
363 }
364
365 extern inline void out_be32(volatile unsigned *addr, int val)
366 {
367         __asm__ __volatile__("stw%U0%X0 %1,%0; eieio" : "=m" (*addr) : "r" (val));
368 }
369
370 static inline int check_signature(unsigned long io_addr,
371         const unsigned char *signature, int length)
372 {
373         int retval = 0;
374         do {
375                 if (readb(io_addr) != *signature)
376                         goto out;
377                 io_addr++;
378                 signature++;
379                 length--;
380         } while (length);
381         retval = 1;
382 out:
383         return retval;
384 }
385
386 /* Make some pcmcia drivers happy */
387 static inline int isa_check_signature(unsigned long io_addr,
388         const unsigned char *signature, int length)
389 {
390         return 0;
391 }
392
393 #endif /* _PPC_IO_H */
394 #endif /* __KERNEL__ */