vserver 1.9.3
[linux-2.6.git] / include / asm-ppc64 / io.h
1 #ifndef _PPC64_IO_H
2 #define _PPC64_IO_H
3
4 /* 
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License
7  * as published by the Free Software Foundation; either version
8  * 2 of the License, or (at your option) any later version.
9  */
10
11 #include <linux/config.h>
12 #include <linux/compiler.h>
13 #include <asm/page.h>
14 #include <asm/byteorder.h>
15 #ifdef CONFIG_PPC_ISERIES 
16 #include <asm/iSeries/iSeries_io.h>
17 #endif  
18 #include <asm/memory.h>
19 #include <asm/delay.h>
20
21 #include <asm-generic/iomap.h>
22
23 #define __ide_mm_insw(p, a, c) _insw_ns((volatile u16 *)(p), (a), (c))
24 #define __ide_mm_insl(p, a, c) _insl_ns((volatile u32 *)(p), (a), (c))
25 #define __ide_mm_outsw(p, a, c) _outsw_ns((volatile u16 *)(p), (a), (c))
26 #define __ide_mm_outsl(p, a, c) _outsl_ns((volatile u32 *)(p), (a), (c))
27
28
29 #define SIO_CONFIG_RA   0x398
30 #define SIO_CONFIG_RD   0x399
31
32 #define SLOW_DOWN_IO
33
34 extern unsigned long isa_io_base;
35 extern unsigned long pci_io_base;
36
37 #ifdef CONFIG_PPC_ISERIES
38 /* __raw_* accessors aren't supported on iSeries */
39 #define __raw_readb(addr)       { BUG(); 0; }
40 #define __raw_readw(addr)       { BUG(); 0; }
41 #define __raw_readl(addr)       { BUG(); 0; }
42 #define __raw_readq(addr)       { BUG(); 0; }
43 #define __raw_writeb(v, addr)   { BUG(); 0; }
44 #define __raw_writew(v, addr)   { BUG(); 0; }
45 #define __raw_writel(v, addr)   { BUG(); 0; }
46 #define __raw_writeq(v, addr)   { BUG(); 0; }
47 #define readb(addr)             iSeries_Read_Byte(addr)
48 #define readw(addr)             iSeries_Read_Word(addr)
49 #define readl(addr)             iSeries_Read_Long(addr)
50 #define writeb(data, addr)      iSeries_Write_Byte((data),(addr))
51 #define writew(data, addr)      iSeries_Write_Word((data),(addr))
52 #define writel(data, addr)      iSeries_Write_Long((data),(addr))
53 #define memset_io(a,b,c)        iSeries_memset_io((a),(b),(c))
54 #define memcpy_fromio(a,b,c)    iSeries_memcpy_fromio((a), (b), (c))
55 #define memcpy_toio(a,b,c)      iSeries_memcpy_toio((a), (b), (c))
56
57 #define inb(addr)               readb(((void __iomem *)(long)(addr)))
58 #define inw(addr)               readw(((void __iomem *)(long)(addr)))
59 #define inl(addr)               readl(((void __iomem *)(long)(addr)))
60 #define outb(data,addr)         writeb(data,((void __iomem *)(long)(addr)))
61 #define outw(data,addr)         writew(data,((void __iomem *)(long)(addr)))
62 #define outl(data,addr)         writel(data,((void __iomem *)(long)(addr)))
63 /*
64  * The *_ns versions below don't do byte-swapping.
65  * Neither do the standard versions now, these are just here
66  * for older code.
67  */
68 #define insw_ns(port, buf, ns)  _insw_ns((u16 *)((port)+pci_io_base), (buf), (ns))
69 #define insl_ns(port, buf, nl)  _insl_ns((u32 *)((port)+pci_io_base), (buf), (nl))
70 #else
71
72 static inline unsigned char __raw_readb(const volatile void __iomem *addr)
73 {
74         return *(volatile unsigned char __force *)addr;
75 }
76 static inline unsigned short __raw_readw(const volatile void __iomem *addr)
77 {
78         return *(volatile unsigned short __force *)addr;
79 }
80 static inline unsigned int __raw_readl(const volatile void __iomem *addr)
81 {
82         return *(volatile unsigned int __force *)addr;
83 }
84 static inline unsigned long __raw_readq(const volatile void __iomem *addr)
85 {
86         return *(volatile unsigned long __force *)addr;
87 }
88 static inline void __raw_writeb(unsigned char v, volatile void __iomem *addr)
89 {
90         *(volatile unsigned char __force *)addr = v;
91 }
92 static inline void __raw_writew(unsigned short v, volatile void __iomem *addr)
93 {
94         *(volatile unsigned short __force *)addr = v;
95 }
96 static inline void __raw_writel(unsigned int v, volatile void __iomem *addr)
97 {
98         *(volatile unsigned int __force *)addr = v;
99 }
100 static inline void __raw_writeq(unsigned long v, volatile void __iomem *addr)
101 {
102         *(volatile unsigned long __force *)addr = v;
103 }
104 #define readb(addr)             eeh_readb(addr)
105 #define readw(addr)             eeh_readw(addr)
106 #define readl(addr)             eeh_readl(addr)
107 #define readq(addr)             eeh_readq(addr)
108 #define writeb(data, addr)      eeh_writeb((data), (addr))
109 #define writew(data, addr)      eeh_writew((data), (addr))
110 #define writel(data, addr)      eeh_writel((data), (addr))
111 #define writeq(data, addr)      eeh_writeq((data), (addr))
112 #define memset_io(a,b,c)        eeh_memset_io((a),(b),(c))
113 #define memcpy_fromio(a,b,c)    eeh_memcpy_fromio((a),(b),(c))
114 #define memcpy_toio(a,b,c)      eeh_memcpy_toio((a),(b),(c))
115 #define inb(port)               eeh_inb((unsigned long)port)
116 #define outb(val, port)         eeh_outb(val, (unsigned long)port)
117 #define inw(port)               eeh_inw((unsigned long)port)
118 #define outw(val, port)         eeh_outw(val, (unsigned long)port)
119 #define inl(port)               eeh_inl((unsigned long)port)
120 #define outl(val, port)         eeh_outl(val, (unsigned long)port)
121
122 /*
123  * The insw/outsw/insl/outsl macros don't do byte-swapping.
124  * They are only used in practice for transferring buffers which
125  * are arrays of bytes, and byte-swapping is not appropriate in
126  * that case.  - paulus */
127 #define insb(port, buf, ns)     eeh_insb((port), (buf), (ns))
128 #define insw(port, buf, ns)     eeh_insw_ns((port), (buf), (ns))
129 #define insl(port, buf, nl)     eeh_insl_ns((port), (buf), (nl))
130 #define insw_ns(port, buf, ns)  eeh_insw_ns((port), (buf), (ns))
131 #define insl_ns(port, buf, nl)  eeh_insl_ns((port), (buf), (nl))
132
133 #define outsb(port, buf, ns)  _outsb((u8 *)((port)+pci_io_base), (buf), (ns))
134 #define outsw(port, buf, ns)  _outsw_ns((u16 *)((port)+pci_io_base), (buf), (ns))
135 #define outsl(port, buf, nl)  _outsl_ns((u32 *)((port)+pci_io_base), (buf), (nl))
136
137 #endif
138
139 #define readb_relaxed(addr) readb(addr)
140 #define readw_relaxed(addr) readw(addr)
141 #define readl_relaxed(addr) readl(addr)
142 #define readq_relaxed(addr) readq(addr)
143
144 extern void _insb(volatile u8 *port, void *buf, int ns);
145 extern void _outsb(volatile u8 *port, const void *buf, int ns);
146 extern void _insw(volatile u16 *port, void *buf, int ns);
147 extern void _outsw(volatile u16 *port, const void *buf, int ns);
148 extern void _insl(volatile u32 *port, void *buf, int nl);
149 extern void _outsl(volatile u32 *port, const void *buf, int nl);
150 extern void _insw_ns(volatile u16 *port, void *buf, int ns);
151 extern void _outsw_ns(volatile u16 *port, const void *buf, int ns);
152 extern void _insl_ns(volatile u32 *port, void *buf, int nl);
153 extern void _outsl_ns(volatile u32 *port, const void *buf, int nl);
154
155 /*
156  * output pause versions need a delay at least for the
157  * w83c105 ide controller in a p610.
158  */
159 #define inb_p(port)             inb(port)
160 #define outb_p(val, port)       (udelay(1), outb((val), (port)))
161 #define inw_p(port)             inw(port)
162 #define outw_p(val, port)       (udelay(1), outw((val), (port)))
163 #define inl_p(port)             inl(port)
164 #define outl_p(val, port)       (udelay(1), outl((val), (port)))
165
166 /*
167  * The *_ns versions below don't do byte-swapping.
168  * Neither do the standard versions now, these are just here
169  * for older code.
170  */
171 #define outsw_ns(port, buf, ns) _outsw_ns((u16 *)((port)+pci_io_base), (buf), (ns))
172 #define outsl_ns(port, buf, nl) _outsl_ns((u32 *)((port)+pci_io_base), (buf), (nl))
173
174
175 #define IO_SPACE_LIMIT ~(0UL)
176
177
178 #ifdef __KERNEL__
179 extern int __ioremap_explicit(unsigned long p_addr, unsigned long v_addr,
180                               unsigned long size, unsigned long flags);
181 extern void __iomem *__ioremap(unsigned long address, unsigned long size,
182                        unsigned long flags);
183
184 /**
185  * ioremap     -   map bus memory into CPU space
186  * @address:   bus address of the memory
187  * @size:      size of the resource to map
188  *
189  * ioremap performs a platform specific sequence of operations to
190  * make bus memory CPU accessible via the readb/readw/readl/writeb/
191  * writew/writel functions and the other mmio helpers. The returned
192  * address is not guaranteed to be usable directly as a virtual
193  * address.
194  */
195 extern void __iomem *ioremap(unsigned long address, unsigned long size);
196
197 #define ioremap_nocache(addr, size)     ioremap((addr), (size))
198 extern int iounmap_explicit(volatile void __iomem *addr, unsigned long size);
199 extern void iounmap(volatile void __iomem *addr);
200 extern void * reserve_phb_iospace(unsigned long size);
201
202 /**
203  *      virt_to_phys    -       map virtual addresses to physical
204  *      @address: address to remap
205  *
206  *      The returned physical address is the physical (CPU) mapping for
207  *      the memory address given. It is only valid to use this function on
208  *      addresses directly mapped or allocated via kmalloc.
209  *
210  *      This function does not give bus mappings for DMA transfers. In
211  *      almost all conceivable cases a device driver should not be using
212  *      this function
213  */
214 static inline unsigned long virt_to_phys(volatile void * address)
215 {
216         return __pa((unsigned long)address);
217 }
218
219 /**
220  *      phys_to_virt    -       map physical address to virtual
221  *      @address: address to remap
222  *
223  *      The returned virtual address is a current CPU mapping for
224  *      the memory address given. It is only valid to use this function on
225  *      addresses that have a kernel mapping
226  *
227  *      This function does not handle bus mappings for DMA transfers. In
228  *      almost all conceivable cases a device driver should not be using
229  *      this function
230  */
231 static inline void * phys_to_virt(unsigned long address)
232 {
233         return (void *)__va(address);
234 }
235
236 /*
237  * Change "struct page" to physical address.
238  */
239 #define page_to_phys(page)      (page_to_pfn(page) << PAGE_SHIFT)
240
241 /* We do NOT want virtual merging, it would put too much pressure on
242  * our iommu allocator. Instead, we want drivers to be smart enough
243  * to coalesce sglists that happen to have been mapped in a contiguous
244  * way by the iommu
245  */
246 #define BIO_VMERGE_BOUNDARY     0
247
248 #endif /* __KERNEL__ */
249
250 static inline void iosync(void)
251 {
252         __asm__ __volatile__ ("sync" : : : "memory");
253 }
254
255 /* Enforce in-order execution of data I/O. 
256  * No distinction between read/write on PPC; use eieio for all three.
257  */
258 #define iobarrier_rw() eieio()
259 #define iobarrier_r()  eieio()
260 #define iobarrier_w()  eieio()
261
262 /*
263  * 8, 16 and 32 bit, big and little endian I/O operations, with barrier.
264  * These routines do not perform EEH-related I/O address translation,
265  * and should not be used directly by device drivers.  Use inb/readb
266  * instead.
267  */
268 static inline int in_8(volatile unsigned char *addr)
269 {
270         int ret;
271
272         __asm__ __volatile__("lbz%U1%X1 %0,%1; twi 0,%0,0; isync"
273                              : "=r" (ret) : "m" (*addr));
274         return ret;
275 }
276
277 static inline void out_8(volatile unsigned char *addr, int val)
278 {
279         __asm__ __volatile__("stb%U0%X0 %1,%0; sync"
280                              : "=m" (*addr) : "r" (val));
281 }
282
283 static inline int in_le16(volatile unsigned short *addr)
284 {
285         int ret;
286
287         __asm__ __volatile__("lhbrx %0,0,%1; twi 0,%0,0; isync"
288                              : "=r" (ret) : "r" (addr), "m" (*addr));
289         return ret;
290 }
291
292 static inline int in_be16(volatile unsigned short *addr)
293 {
294         int ret;
295
296         __asm__ __volatile__("lhz%U1%X1 %0,%1; twi 0,%0,0; isync"
297                              : "=r" (ret) : "m" (*addr));
298         return ret;
299 }
300
301 static inline void out_le16(volatile unsigned short *addr, int val)
302 {
303         __asm__ __volatile__("sthbrx %1,0,%2; sync"
304                              : "=m" (*addr) : "r" (val), "r" (addr));
305 }
306
307 static inline void out_be16(volatile unsigned short *addr, int val)
308 {
309         __asm__ __volatile__("sth%U0%X0 %1,%0; sync"
310                              : "=m" (*addr) : "r" (val));
311 }
312
313 static inline unsigned in_le32(volatile unsigned *addr)
314 {
315         unsigned ret;
316
317         __asm__ __volatile__("lwbrx %0,0,%1; twi 0,%0,0; isync"
318                              : "=r" (ret) : "r" (addr), "m" (*addr));
319         return ret;
320 }
321
322 static inline unsigned in_be32(volatile unsigned *addr)
323 {
324         unsigned ret;
325
326         __asm__ __volatile__("lwz%U1%X1 %0,%1; twi 0,%0,0; isync"
327                              : "=r" (ret) : "m" (*addr));
328         return ret;
329 }
330
331 static inline void out_le32(volatile unsigned *addr, int val)
332 {
333         __asm__ __volatile__("stwbrx %1,0,%2; sync" : "=m" (*addr)
334                              : "r" (val), "r" (addr));
335 }
336
337 static inline void out_be32(volatile unsigned *addr, int val)
338 {
339         __asm__ __volatile__("stw%U0%X0 %1,%0; sync"
340                              : "=m" (*addr) : "r" (val));
341 }
342
343 static inline unsigned long in_le64(volatile unsigned long *addr)
344 {
345         unsigned long tmp, ret;
346
347         __asm__ __volatile__(
348                              "ld %1,0(%2)\n"
349                              "twi 0,%1,0\n"
350                              "isync\n"
351                              "rldimi %0,%1,5*8,1*8\n"
352                              "rldimi %0,%1,3*8,2*8\n"
353                              "rldimi %0,%1,1*8,3*8\n"
354                              "rldimi %0,%1,7*8,4*8\n"
355                              "rldicl %1,%1,32,0\n"
356                              "rlwimi %0,%1,8,8,31\n"
357                              "rlwimi %0,%1,24,16,23\n"
358                              : "=r" (ret) , "=r" (tmp) : "b" (addr) , "m" (*addr));
359         return ret;
360 }
361
362 static inline unsigned long in_be64(volatile unsigned long *addr)
363 {
364         unsigned long ret;
365
366         __asm__ __volatile__("ld %0,0(%1); twi 0,%0,0; isync"
367                              : "=r" (ret) : "m" (*addr));
368         return ret;
369 }
370
371 static inline void out_le64(volatile unsigned long *addr, unsigned long val)
372 {
373         unsigned long tmp;
374
375         __asm__ __volatile__(
376                              "rldimi %0,%1,5*8,1*8\n"
377                              "rldimi %0,%1,3*8,2*8\n"
378                              "rldimi %0,%1,1*8,3*8\n"
379                              "rldimi %0,%1,7*8,4*8\n"
380                              "rldicl %1,%1,32,0\n"
381                              "rlwimi %0,%1,8,8,31\n"
382                              "rlwimi %0,%1,24,16,23\n"
383                              "std %0,0(%3)\n"
384                              "sync"
385                              : "=&r" (tmp) , "=&r" (val) : "1" (val) , "b" (addr) , "m" (*addr));
386 }
387
388 static inline void out_be64(volatile unsigned long *addr, unsigned long val)
389 {
390         __asm__ __volatile__("std%U0%X0 %1,%0; sync" : "=m" (*addr) : "r" (val));
391 }
392
393 #ifndef CONFIG_PPC_ISERIES 
394 #include <asm/eeh.h>
395 #endif
396
397 #ifdef __KERNEL__
398
399 /**
400  *      check_signature         -       find BIOS signatures
401  *      @io_addr: mmio address to check
402  *      @signature:  signature block
403  *      @length: length of signature
404  *
405  *      Perform a signature comparison with the mmio address io_addr. This
406  *      address should have been obtained by ioremap.
407  *      Returns 1 on a match.
408  */
409 static inline int check_signature(const volatile void __iomem * io_addr,
410         const unsigned char *signature, int length)
411 {
412         int retval = 0;
413 #ifndef CONFIG_PPC_ISERIES 
414         do {
415                 if (readb(io_addr) != *signature)
416                         goto out;
417                 io_addr++;
418                 signature++;
419                 length--;
420         } while (length);
421         retval = 1;
422 out:
423 #endif
424         return retval;
425 }
426
427 /* Nothing to do */
428
429 #define dma_cache_inv(_start,_size)             do { } while (0)
430 #define dma_cache_wback(_start,_size)           do { } while (0)
431 #define dma_cache_wback_inv(_start,_size)       do { } while (0)
432
433 #endif /* __KERNEL__ */
434
435 #endif /* _PPC64_IO_H */