blob: 212428db0d8b648df0c4911c9e76db0bd5a711ba [file] [log] [blame]
Paul Mackerras047ea782005-11-19 20:17:32 +11001#ifndef _ASM_POWERPC_IO_H
2#define _ASM_POWERPC_IO_H
Arnd Bergmann88ced032005-12-16 22:43:46 +01003#ifdef __KERNEL__
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
5/*
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
David Woodhouse12692772006-04-24 23:22:17 +010012/* Check of existence of legacy devices */
13extern int check_legacy_ioport(unsigned long base_port);
14
Paul Mackerras047ea782005-11-19 20:17:32 +110015#ifndef CONFIG_PPC64
16#include <asm-ppc/io.h>
17#else
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/compiler.h>
20#include <asm/page.h>
21#include <asm/byteorder.h>
Paul Mackerrasf007cac2006-09-13 22:08:26 +100022#include <asm/paca.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#ifdef CONFIG_PPC_ISERIES
Kelly Daly6cbbdab2005-11-02 15:07:51 +110024#include <asm/iseries/iseries_io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#endif
Becky Brucefeaf7cf2005-09-22 14:20:04 -050026#include <asm/synch.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <asm/delay.h>
28
29#include <asm-generic/iomap.h>
30
viro@ZenIV.linux.org.uk6c9afc62005-09-09 16:50:43 +010031#define __ide_mm_insw(p, a, c) _insw_ns((volatile u16 __iomem *)(p), (a), (c))
32#define __ide_mm_insl(p, a, c) _insl_ns((volatile u32 __iomem *)(p), (a), (c))
33#define __ide_mm_outsw(p, a, c) _outsw_ns((volatile u16 __iomem *)(p), (a), (c))
34#define __ide_mm_outsl(p, a, c) _outsl_ns((volatile u32 __iomem *)(p), (a), (c))
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36
37#define SIO_CONFIG_RA 0x398
38#define SIO_CONFIG_RD 0x399
39
40#define SLOW_DOWN_IO
41
42extern unsigned long isa_io_base;
43extern unsigned long pci_io_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45#ifdef CONFIG_PPC_ISERIES
46/* __raw_* accessors aren't supported on iSeries */
47#define __raw_readb(addr) { BUG(); 0; }
48#define __raw_readw(addr) { BUG(); 0; }
49#define __raw_readl(addr) { BUG(); 0; }
50#define __raw_readq(addr) { BUG(); 0; }
51#define __raw_writeb(v, addr) { BUG(); 0; }
52#define __raw_writew(v, addr) { BUG(); 0; }
53#define __raw_writel(v, addr) { BUG(); 0; }
54#define __raw_writeq(v, addr) { BUG(); 0; }
55#define readb(addr) iSeries_Read_Byte(addr)
56#define readw(addr) iSeries_Read_Word(addr)
57#define readl(addr) iSeries_Read_Long(addr)
58#define writeb(data, addr) iSeries_Write_Byte((data),(addr))
59#define writew(data, addr) iSeries_Write_Word((data),(addr))
60#define writel(data, addr) iSeries_Write_Long((data),(addr))
61#define memset_io(a,b,c) iSeries_memset_io((a),(b),(c))
62#define memcpy_fromio(a,b,c) iSeries_memcpy_fromio((a), (b), (c))
63#define memcpy_toio(a,b,c) iSeries_memcpy_toio((a), (b), (c))
64
65#define inb(addr) readb(((void __iomem *)(long)(addr)))
66#define inw(addr) readw(((void __iomem *)(long)(addr)))
67#define inl(addr) readl(((void __iomem *)(long)(addr)))
68#define outb(data,addr) writeb(data,((void __iomem *)(long)(addr)))
69#define outw(data,addr) writew(data,((void __iomem *)(long)(addr)))
70#define outl(data,addr) writel(data,((void __iomem *)(long)(addr)))
71/*
72 * The *_ns versions below don't do byte-swapping.
73 * Neither do the standard versions now, these are just here
74 * for older code.
75 */
Stephen Rothwelle7498652006-08-30 17:11:34 +100076#define insb(port, buf, ns) _insb((u8 __iomem *)((port)+pci_io_base), (buf), (ns))
77#define insw(port, buf, ns) _insw_ns((u8 __iomem *)((port)+pci_io_base), (buf), (ns))
78#define insl(port, buf, nl) _insl_ns((u8 __iomem *)((port)+pci_io_base), (buf), (nl))
viro@ZenIV.linux.org.uk6c9afc62005-09-09 16:50:43 +010079#define insw_ns(port, buf, ns) _insw_ns((u16 __iomem *)((port)+pci_io_base), (buf), (ns))
80#define insl_ns(port, buf, nl) _insl_ns((u32 __iomem *)((port)+pci_io_base), (buf), (nl))
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#else
82
83static inline unsigned char __raw_readb(const volatile void __iomem *addr)
84{
85 return *(volatile unsigned char __force *)addr;
86}
87static inline unsigned short __raw_readw(const volatile void __iomem *addr)
88{
89 return *(volatile unsigned short __force *)addr;
90}
91static inline unsigned int __raw_readl(const volatile void __iomem *addr)
92{
93 return *(volatile unsigned int __force *)addr;
94}
95static inline unsigned long __raw_readq(const volatile void __iomem *addr)
96{
97 return *(volatile unsigned long __force *)addr;
98}
99static inline void __raw_writeb(unsigned char v, volatile void __iomem *addr)
100{
101 *(volatile unsigned char __force *)addr = v;
102}
103static inline void __raw_writew(unsigned short v, volatile void __iomem *addr)
104{
105 *(volatile unsigned short __force *)addr = v;
106}
107static inline void __raw_writel(unsigned int v, volatile void __iomem *addr)
108{
109 *(volatile unsigned int __force *)addr = v;
110}
111static inline void __raw_writeq(unsigned long v, volatile void __iomem *addr)
112{
113 *(volatile unsigned long __force *)addr = v;
114}
115#define readb(addr) eeh_readb(addr)
116#define readw(addr) eeh_readw(addr)
117#define readl(addr) eeh_readl(addr)
118#define readq(addr) eeh_readq(addr)
119#define writeb(data, addr) eeh_writeb((data), (addr))
120#define writew(data, addr) eeh_writew((data), (addr))
121#define writel(data, addr) eeh_writel((data), (addr))
122#define writeq(data, addr) eeh_writeq((data), (addr))
123#define memset_io(a,b,c) eeh_memset_io((a),(b),(c))
124#define memcpy_fromio(a,b,c) eeh_memcpy_fromio((a),(b),(c))
125#define memcpy_toio(a,b,c) eeh_memcpy_toio((a),(b),(c))
126#define inb(port) eeh_inb((unsigned long)port)
127#define outb(val, port) eeh_outb(val, (unsigned long)port)
128#define inw(port) eeh_inw((unsigned long)port)
129#define outw(val, port) eeh_outw(val, (unsigned long)port)
130#define inl(port) eeh_inl((unsigned long)port)
131#define outl(val, port) eeh_outl(val, (unsigned long)port)
132
133/*
134 * The insw/outsw/insl/outsl macros don't do byte-swapping.
135 * They are only used in practice for transferring buffers which
136 * are arrays of bytes, and byte-swapping is not appropriate in
137 * that case. - paulus */
138#define insb(port, buf, ns) eeh_insb((port), (buf), (ns))
139#define insw(port, buf, ns) eeh_insw_ns((port), (buf), (ns))
140#define insl(port, buf, nl) eeh_insl_ns((port), (buf), (nl))
141#define insw_ns(port, buf, ns) eeh_insw_ns((port), (buf), (ns))
142#define insl_ns(port, buf, nl) eeh_insl_ns((port), (buf), (nl))
143
Stephen Rothwelle7498652006-08-30 17:11:34 +1000144#endif
145
viro@ZenIV.linux.org.uk6c9afc62005-09-09 16:50:43 +0100146#define outsb(port, buf, ns) _outsb((u8 __iomem *)((port)+pci_io_base), (buf), (ns))
147#define outsw(port, buf, ns) _outsw_ns((u16 __iomem *)((port)+pci_io_base), (buf), (ns))
148#define outsl(port, buf, nl) _outsl_ns((u32 __iomem *)((port)+pci_io_base), (buf), (nl))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150#define readb_relaxed(addr) readb(addr)
151#define readw_relaxed(addr) readw(addr)
152#define readl_relaxed(addr) readl(addr)
153#define readq_relaxed(addr) readq(addr)
154
viro@ZenIV.linux.org.uk6c9afc62005-09-09 16:50:43 +0100155extern void _insb(volatile u8 __iomem *port, void *buf, int ns);
156extern void _outsb(volatile u8 __iomem *port, const void *buf, int ns);
157extern void _insw(volatile u16 __iomem *port, void *buf, int ns);
158extern void _outsw(volatile u16 __iomem *port, const void *buf, int ns);
159extern void _insl(volatile u32 __iomem *port, void *buf, int nl);
160extern void _outsl(volatile u32 __iomem *port, const void *buf, int nl);
161extern void _insw_ns(volatile u16 __iomem *port, void *buf, int ns);
162extern void _outsw_ns(volatile u16 __iomem *port, const void *buf, int ns);
163extern void _insl_ns(volatile u32 __iomem *port, void *buf, int nl);
164extern void _outsl_ns(volatile u32 __iomem *port, const void *buf, int nl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000166static inline void mmiowb(void)
167{
168 __asm__ __volatile__ ("sync" : : : "memory");
169 get_paca()->io_sync = 0;
170}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172/*
173 * output pause versions need a delay at least for the
174 * w83c105 ide controller in a p610.
175 */
176#define inb_p(port) inb(port)
177#define outb_p(val, port) (udelay(1), outb((val), (port)))
178#define inw_p(port) inw(port)
179#define outw_p(val, port) (udelay(1), outw((val), (port)))
180#define inl_p(port) inl(port)
181#define outl_p(val, port) (udelay(1), outl((val), (port)))
182
183/*
184 * The *_ns versions below don't do byte-swapping.
185 * Neither do the standard versions now, these are just here
186 * for older code.
187 */
viro@ZenIV.linux.org.uk6c9afc62005-09-09 16:50:43 +0100188#define outsw_ns(port, buf, ns) _outsw_ns((u16 __iomem *)((port)+pci_io_base), (buf), (ns))
189#define outsl_ns(port, buf, nl) _outsl_ns((u32 __iomem *)((port)+pci_io_base), (buf), (nl))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
191
192#define IO_SPACE_LIMIT ~(0UL)
193
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195extern int __ioremap_explicit(unsigned long p_addr, unsigned long v_addr,
196 unsigned long size, unsigned long flags);
197extern void __iomem *__ioremap(unsigned long address, unsigned long size,
198 unsigned long flags);
199
200/**
201 * ioremap - map bus memory into CPU space
202 * @address: bus address of the memory
203 * @size: size of the resource to map
204 *
205 * ioremap performs a platform specific sequence of operations to
206 * make bus memory CPU accessible via the readb/readw/readl/writeb/
207 * writew/writel functions and the other mmio helpers. The returned
208 * address is not guaranteed to be usable directly as a virtual
209 * address.
210 */
211extern void __iomem *ioremap(unsigned long address, unsigned long size);
212
213#define ioremap_nocache(addr, size) ioremap((addr), (size))
214extern int iounmap_explicit(volatile void __iomem *addr, unsigned long size);
215extern void iounmap(volatile void __iomem *addr);
216extern void __iomem * reserve_phb_iospace(unsigned long size);
217
218/**
219 * virt_to_phys - map virtual addresses to physical
220 * @address: address to remap
221 *
222 * The returned physical address is the physical (CPU) mapping for
223 * the memory address given. It is only valid to use this function on
224 * addresses directly mapped or allocated via kmalloc.
225 *
226 * This function does not give bus mappings for DMA transfers. In
227 * almost all conceivable cases a device driver should not be using
228 * this function
229 */
230static inline unsigned long virt_to_phys(volatile void * address)
231{
232 return __pa((unsigned long)address);
233}
234
235/**
236 * phys_to_virt - map physical address to virtual
237 * @address: address to remap
238 *
239 * The returned virtual address is a current CPU mapping for
240 * the memory address given. It is only valid to use this function on
241 * addresses that have a kernel mapping
242 *
243 * This function does not handle bus mappings for DMA transfers. In
244 * almost all conceivable cases a device driver should not be using
245 * this function
246 */
247static inline void * phys_to_virt(unsigned long address)
248{
249 return (void *)__va(address);
250}
251
252/*
253 * Change "struct page" to physical address.
254 */
255#define page_to_phys(page) (page_to_pfn(page) << PAGE_SHIFT)
256
257/* We do NOT want virtual merging, it would put too much pressure on
258 * our iommu allocator. Instead, we want drivers to be smart enough
259 * to coalesce sglists that happen to have been mapped in a contiguous
260 * way by the iommu
261 */
262#define BIO_VMERGE_BOUNDARY 0
263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264static inline void iosync(void)
265{
266 __asm__ __volatile__ ("sync" : : : "memory");
267}
268
269/* Enforce in-order execution of data I/O.
270 * No distinction between read/write on PPC; use eieio for all three.
271 */
272#define iobarrier_rw() eieio()
273#define iobarrier_r() eieio()
274#define iobarrier_w() eieio()
275
276/*
277 * 8, 16 and 32 bit, big and little endian I/O operations, with barrier.
278 * These routines do not perform EEH-related I/O address translation,
279 * and should not be used directly by device drivers. Use inb/readb
280 * instead.
281 */
282static inline int in_8(const volatile unsigned char __iomem *addr)
283{
284 int ret;
285
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000286 __asm__ __volatile__("sync; lbz%U1%X1 %0,%1; twi 0,%0,0; isync"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 : "=r" (ret) : "m" (*addr));
288 return ret;
289}
290
291static inline void out_8(volatile unsigned char __iomem *addr, int val)
292{
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000293 __asm__ __volatile__("sync; stb%U0%X0 %1,%0"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 : "=m" (*addr) : "r" (val));
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000295 get_paca()->io_sync = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296}
297
298static inline int in_le16(const volatile unsigned short __iomem *addr)
299{
300 int ret;
301
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000302 __asm__ __volatile__("sync; lhbrx %0,0,%1; twi 0,%0,0; isync"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 : "=r" (ret) : "r" (addr), "m" (*addr));
304 return ret;
305}
306
307static inline int in_be16(const volatile unsigned short __iomem *addr)
308{
309 int ret;
310
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000311 __asm__ __volatile__("sync; lhz%U1%X1 %0,%1; twi 0,%0,0; isync"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 : "=r" (ret) : "m" (*addr));
313 return ret;
314}
315
316static inline void out_le16(volatile unsigned short __iomem *addr, int val)
317{
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000318 __asm__ __volatile__("sync; sthbrx %1,0,%2"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 : "=m" (*addr) : "r" (val), "r" (addr));
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000320 get_paca()->io_sync = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321}
322
323static inline void out_be16(volatile unsigned short __iomem *addr, int val)
324{
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000325 __asm__ __volatile__("sync; sth%U0%X0 %1,%0"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 : "=m" (*addr) : "r" (val));
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000327 get_paca()->io_sync = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328}
329
330static inline unsigned in_le32(const volatile unsigned __iomem *addr)
331{
332 unsigned ret;
333
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000334 __asm__ __volatile__("sync; lwbrx %0,0,%1; twi 0,%0,0; isync"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 : "=r" (ret) : "r" (addr), "m" (*addr));
336 return ret;
337}
338
339static inline unsigned in_be32(const volatile unsigned __iomem *addr)
340{
341 unsigned ret;
342
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000343 __asm__ __volatile__("sync; lwz%U1%X1 %0,%1; twi 0,%0,0; isync"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 : "=r" (ret) : "m" (*addr));
345 return ret;
346}
347
348static inline void out_le32(volatile unsigned __iomem *addr, int val)
349{
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000350 __asm__ __volatile__("sync; stwbrx %1,0,%2" : "=m" (*addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 : "r" (val), "r" (addr));
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000352 get_paca()->io_sync = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353}
354
355static inline void out_be32(volatile unsigned __iomem *addr, int val)
356{
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000357 __asm__ __volatile__("sync; stw%U0%X0 %1,%0"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 : "=m" (*addr) : "r" (val));
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000359 get_paca()->io_sync = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360}
361
362static inline unsigned long in_le64(const volatile unsigned long __iomem *addr)
363{
364 unsigned long tmp, ret;
365
366 __asm__ __volatile__(
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000367 "sync\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 "ld %1,0(%2)\n"
369 "twi 0,%1,0\n"
370 "isync\n"
371 "rldimi %0,%1,5*8,1*8\n"
372 "rldimi %0,%1,3*8,2*8\n"
373 "rldimi %0,%1,1*8,3*8\n"
374 "rldimi %0,%1,7*8,4*8\n"
375 "rldicl %1,%1,32,0\n"
376 "rlwimi %0,%1,8,8,31\n"
377 "rlwimi %0,%1,24,16,23\n"
378 : "=r" (ret) , "=r" (tmp) : "b" (addr) , "m" (*addr));
379 return ret;
380}
381
382static inline unsigned long in_be64(const volatile unsigned long __iomem *addr)
383{
384 unsigned long ret;
385
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000386 __asm__ __volatile__("sync; ld%U1%X1 %0,%1; twi 0,%0,0; isync"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 : "=r" (ret) : "m" (*addr));
388 return ret;
389}
390
391static inline void out_le64(volatile unsigned long __iomem *addr, unsigned long val)
392{
393 unsigned long tmp;
394
395 __asm__ __volatile__(
396 "rldimi %0,%1,5*8,1*8\n"
397 "rldimi %0,%1,3*8,2*8\n"
398 "rldimi %0,%1,1*8,3*8\n"
399 "rldimi %0,%1,7*8,4*8\n"
400 "rldicl %1,%1,32,0\n"
401 "rlwimi %0,%1,8,8,31\n"
402 "rlwimi %0,%1,24,16,23\n"
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000403 "sync\n"
404 "std %0,0(%3)"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 : "=&r" (tmp) , "=&r" (val) : "1" (val) , "b" (addr) , "m" (*addr));
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000406 get_paca()->io_sync = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407}
408
409static inline void out_be64(volatile unsigned long __iomem *addr, unsigned long val)
410{
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000411 __asm__ __volatile__("sync; std%U0%X0 %1,%0" : "=m" (*addr) : "r" (val));
412 get_paca()->io_sync = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413}
414
415#ifndef CONFIG_PPC_ISERIES
416#include <asm/eeh.h>
417#endif
418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419/**
420 * check_signature - find BIOS signatures
421 * @io_addr: mmio address to check
422 * @signature: signature block
423 * @length: length of signature
424 *
425 * Perform a signature comparison with the mmio address io_addr. This
426 * address should have been obtained by ioremap.
427 * Returns 1 on a match.
428 */
429static inline int check_signature(const volatile void __iomem * io_addr,
430 const unsigned char *signature, int length)
431{
432 int retval = 0;
433#ifndef CONFIG_PPC_ISERIES
434 do {
435 if (readb(io_addr) != *signature)
436 goto out;
437 io_addr++;
438 signature++;
439 length--;
440 } while (length);
441 retval = 1;
442out:
443#endif
444 return retval;
445}
446
447/* Nothing to do */
448
449#define dma_cache_inv(_start,_size) do { } while (0)
450#define dma_cache_wback(_start,_size) do { } while (0)
451#define dma_cache_wback_inv(_start,_size) do { } while (0)
452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
454/*
455 * Convert a physical pointer to a virtual kernel pointer for /dev/mem
456 * access
457 */
458#define xlate_dev_mem_ptr(p) __va(p)
459
460/*
461 * Convert a virtual cached pointer to an uncached pointer
462 */
463#define xlate_dev_kmem_ptr(p) p
464
465#endif /* __KERNEL__ */
466
Paul Mackerras047ea782005-11-19 20:17:32 +1100467#endif /* CONFIG_PPC64 */
468#endif /* _ASM_POWERPC_IO_H */