blob: d9e794eff830363249ba21bdb6e2d21429ab1c53 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __ASM_SH_IO_H
2#define __ASM_SH_IO_H
3
4/*
5 * Convention:
6 * read{b,w,l}/write{b,w,l} are for PCI,
7 * while in{b,w,l}/out{b,w,l} are for ISA
8 * These may (will) be platform specific function.
9 * In addition we have 'pausing' versions: in{b,w,l}_p/out{b,w,l}_p
10 * and 'string' versions: ins{b,w,l}/outs{b,w,l}
11 * For read{b,w,l} and write{b,w,l} there are also __raw versions, which
12 * do not have a memory barrier after them.
13 *
Paul Mundtb66c1a32006-01-16 22:14:15 -080014 * In addition, we have
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 * ctrl_in{b,w,l}/ctrl_out{b,w,l} for SuperH specific I/O.
16 * which are processor specific.
17 */
18
19/*
20 * We follow the Alpha convention here:
21 * __inb expands to an inline function call (which calls via the mv)
22 * _inb is a real function call (note ___raw fns are _ version of __raw)
23 * inb by default expands to _inb, but the machine specific code may
24 * define it to __inb if it chooses.
25 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <asm/cache.h>
27#include <asm/system.h>
28#include <asm/addrspace.h>
29#include <asm/machvec.h>
Paul Mundtb66c1a32006-01-16 22:14:15 -080030#include <asm/pgtable.h>
31#include <asm-generic/iomap.h>
32
33#ifdef __KERNEL__
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35/*
36 * Depending on which platform we are running on, we need different
37 * I/O functions.
38 */
Paul Mundtb66c1a32006-01-16 22:14:15 -080039#define __IO_PREFIX generic
40#include <asm/io_generic.h>
Magnus Damme7cc9a72008-02-07 20:18:21 +090041#include <asm/io_trapped.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Paul Mundtb66c1a32006-01-16 22:14:15 -080043#define maybebadio(port) \
44 printk(KERN_ERR "bad PC-like io %s:%u for port 0x%lx at 0x%08x\n", \
45 __FUNCTION__, __LINE__, (port), (u32)__builtin_return_address(0))
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047/*
48 * Since boards are able to define their own set of I/O routines through
49 * their respective machine vector, we always wrap through the mv.
50 *
51 * Also, in the event that a board hasn't provided its own definition for
52 * a given routine, it will be wrapped to generic code at run-time.
53 */
54
Paul Mundtb66c1a32006-01-16 22:14:15 -080055#define __inb(p) sh_mv.mv_inb((p))
56#define __inw(p) sh_mv.mv_inw((p))
57#define __inl(p) sh_mv.mv_inl((p))
58#define __outb(x,p) sh_mv.mv_outb((x),(p))
59#define __outw(x,p) sh_mv.mv_outw((x),(p))
60#define __outl(x,p) sh_mv.mv_outl((x),(p))
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Paul Mundtb66c1a32006-01-16 22:14:15 -080062#define __inb_p(p) sh_mv.mv_inb_p((p))
63#define __inw_p(p) sh_mv.mv_inw_p((p))
64#define __inl_p(p) sh_mv.mv_inl_p((p))
65#define __outb_p(x,p) sh_mv.mv_outb_p((x),(p))
66#define __outw_p(x,p) sh_mv.mv_outw_p((x),(p))
67#define __outl_p(x,p) sh_mv.mv_outl_p((x),(p))
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Paul Mundtb66c1a32006-01-16 22:14:15 -080069#define __insb(p,b,c) sh_mv.mv_insb((p), (b), (c))
70#define __insw(p,b,c) sh_mv.mv_insw((p), (b), (c))
71#define __insl(p,b,c) sh_mv.mv_insl((p), (b), (c))
72#define __outsb(p,b,c) sh_mv.mv_outsb((p), (b), (c))
73#define __outsw(p,b,c) sh_mv.mv_outsw((p), (b), (c))
74#define __outsl(p,b,c) sh_mv.mv_outsl((p), (b), (c))
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Paul Mundtb66c1a32006-01-16 22:14:15 -080076#define __readb(a) sh_mv.mv_readb((a))
77#define __readw(a) sh_mv.mv_readw((a))
78#define __readl(a) sh_mv.mv_readl((a))
79#define __writeb(v,a) sh_mv.mv_writeb((v),(a))
80#define __writew(v,a) sh_mv.mv_writew((v),(a))
81#define __writel(v,a) sh_mv.mv_writel((v),(a))
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Paul Mundtb66c1a32006-01-16 22:14:15 -080083#define inb __inb
84#define inw __inw
85#define inl __inl
86#define outb __outb
87#define outw __outw
88#define outl __outl
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Paul Mundtb66c1a32006-01-16 22:14:15 -080090#define inb_p __inb_p
91#define inw_p __inw_p
92#define inl_p __inl_p
93#define outb_p __outb_p
94#define outw_p __outw_p
95#define outl_p __outl_p
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Paul Mundtb66c1a32006-01-16 22:14:15 -080097#define insb __insb
98#define insw __insw
99#define insl __insl
100#define outsb __outsb
101#define outsw __outsw
102#define outsl __outsl
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Paul Mundt64c96272008-10-01 15:12:27 +0900104#define __raw_writeb(v,a) (__chk_io_ptr(a), *(volatile unsigned char __force *)(a) = (v))
105#define __raw_writew(v,a) (__chk_io_ptr(a), *(volatile unsigned short __force *)(a) = (v))
106#define __raw_writel(v,a) (__chk_io_ptr(a), *(volatile unsigned int __force *)(a) = (v))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Paul Mundt64c96272008-10-01 15:12:27 +0900108#define __raw_readb(a) (__chk_io_ptr(a), *(volatile unsigned char __force *)(a))
109#define __raw_readw(a) (__chk_io_ptr(a), *(volatile unsigned short __force *)(a))
110#define __raw_readl(a) (__chk_io_ptr(a), *(volatile unsigned int __force *)(a))
111
112void __raw_writesl(void __iomem *addr, const void *data, int longlen);
113void __raw_readsl(const void __iomem *addr, void *data, int longlen);
Paul Mundt05ae9152006-09-27 18:25:24 +0900114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115/*
116 * The platform header files may define some of these macros to use
117 * the inlined versions where appropriate. These macros may also be
118 * redefined by userlevel programs.
119 */
Paul Mundt64c96272008-10-01 15:12:27 +0900120#define readb(a) ({ unsigned int r_ = __readb(a); mb(); r_; })
121#define readw(a) ({ unsigned int r_ = __readw(a); mb(); r_; })
122#define readl(a) ({ unsigned int r_ = __readl(a); mb(); r_; })
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Paul Mundt64c96272008-10-01 15:12:27 +0900124#define writeb(v,a) ({ __writeb((v),(a)); mb(); })
125#define writew(v,a) ({ __writew((v),(a)); mb(); })
126#define writel(v,a) ({ __writel((v),(a)); mb(); })
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Magnus Dammda6b0032007-09-10 12:08:42 +0900128#define __BUILD_MEMORY_STRING(bwlq, type) \
129 \
Paul Mundt64c96272008-10-01 15:12:27 +0900130static inline void __raw_writes##bwlq(volatile void __iomem *mem, \
Magnus Dammda6b0032007-09-10 12:08:42 +0900131 const void *addr, unsigned int count) \
132{ \
133 const volatile type *__addr = addr; \
134 \
135 while (count--) { \
136 __raw_write##bwlq(*__addr, mem); \
137 __addr++; \
138 } \
139} \
140 \
Paul Mundt64c96272008-10-01 15:12:27 +0900141static inline void __raw_reads##bwlq(volatile void __iomem *mem, \
142 void *addr, unsigned int count) \
Magnus Dammda6b0032007-09-10 12:08:42 +0900143{ \
144 volatile type *__addr = addr; \
145 \
146 while (count--) { \
147 *__addr = __raw_read##bwlq(mem); \
148 __addr++; \
149 } \
150}
151
152__BUILD_MEMORY_STRING(b, u8)
153__BUILD_MEMORY_STRING(w, u16)
Paul Mundt64c96272008-10-01 15:12:27 +0900154
155#define writesb __raw_writesb
156#define writesw __raw_writesw
Paul Mundt05ae9152006-09-27 18:25:24 +0900157#define writesl __raw_writesl
Paul Mundt64c96272008-10-01 15:12:27 +0900158
159#define readsb __raw_readsb
160#define readsw __raw_readsw
Paul Mundt05ae9152006-09-27 18:25:24 +0900161#define readsl __raw_readsl
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163#define readb_relaxed(a) readb(a)
164#define readw_relaxed(a) readw(a)
165#define readl_relaxed(a) readl(a)
166
Paul Mundtb66c1a32006-01-16 22:14:15 -0800167/* Simple MMIO */
Paul Mundt64c96272008-10-01 15:12:27 +0900168#define ioread8(a) __raw_readb(a)
169#define ioread16(a) __raw_readw(a)
Paul Mundtb66c1a32006-01-16 22:14:15 -0800170#define ioread16be(a) be16_to_cpu(__raw_readw((a)))
Paul Mundt64c96272008-10-01 15:12:27 +0900171#define ioread32(a) __raw_readl(a)
Paul Mundtb66c1a32006-01-16 22:14:15 -0800172#define ioread32be(a) be32_to_cpu(__raw_readl((a)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Paul Mundt64c96272008-10-01 15:12:27 +0900174#define iowrite8(v,a) __raw_writeb((v),(a))
175#define iowrite16(v,a) __raw_writew((v),(a))
Paul Mundtb66c1a32006-01-16 22:14:15 -0800176#define iowrite16be(v,a) __raw_writew(cpu_to_be16((v)),(a))
Paul Mundt64c96272008-10-01 15:12:27 +0900177#define iowrite32(v,a) __raw_writel((v),(a))
Paul Mundtb66c1a32006-01-16 22:14:15 -0800178#define iowrite32be(v,a) __raw_writel(cpu_to_be32((v)),(a))
179
Paul Mundt64c96272008-10-01 15:12:27 +0900180#define ioread8_rep(a, d, c) __raw_readsb((a), (d), (c))
181#define ioread16_rep(a, d, c) __raw_readsw((a), (d), (c))
182#define ioread32_rep(a, d, c) __raw_readsl((a), (d), (c))
Paul Mundtb66c1a32006-01-16 22:14:15 -0800183
Paul Mundt64c96272008-10-01 15:12:27 +0900184#define iowrite8_rep(a, s, c) __raw_writesb((a), (s), (c))
185#define iowrite16_rep(a, s, c) __raw_writesw((a), (s), (c))
186#define iowrite32_rep(a, s, c) __raw_writesl((a), (s), (c))
Paul Mundtb66c1a32006-01-16 22:14:15 -0800187
188#define mmiowb() wmb() /* synco on SH-4A, otherwise a nop */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Paul Mundt0f2c15c2007-11-21 18:06:34 +0900190#define IO_SPACE_LIMIT 0xffffffff
191
Paul Mundtfa439722008-09-04 18:53:58 +0900192extern unsigned long generic_io_base;
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194/*
195 * This function provides a method for the generic case where a board-specific
Paul Mundtb66c1a32006-01-16 22:14:15 -0800196 * ioport_map simply needs to return the port + some arbitrary port base.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 *
198 * We use this at board setup time to implicitly set the port base, and
Paul Mundtb66c1a32006-01-16 22:14:15 -0800199 * as a result, we can use the generic ioport_map.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 */
201static inline void __set_io_port_base(unsigned long pbase)
202{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 generic_io_base = pbase;
204}
205
Magnus Damme7cc9a72008-02-07 20:18:21 +0900206#define __ioport_map(p, n) sh_mv.mv_ioport_map((p), (n))
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208/* We really want to try and get these to memcpy etc */
Paul Mundtb66c1a32006-01-16 22:14:15 -0800209extern void memcpy_fromio(void *, volatile void __iomem *, unsigned long);
210extern void memcpy_toio(volatile void __iomem *, const void *, unsigned long);
211extern void memset_io(volatile void __iomem *, int, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213/* SuperH on-chip I/O functions */
Paul Mundtb66c1a32006-01-16 22:14:15 -0800214static inline unsigned char ctrl_inb(unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
216 return *(volatile unsigned char*)addr;
217}
218
Paul Mundtb66c1a32006-01-16 22:14:15 -0800219static inline unsigned short ctrl_inw(unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
221 return *(volatile unsigned short*)addr;
222}
223
Paul Mundtb66c1a32006-01-16 22:14:15 -0800224static inline unsigned int ctrl_inl(unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
226 return *(volatile unsigned long*)addr;
227}
228
Paul Mundt0f2c15c2007-11-21 18:06:34 +0900229static inline unsigned long long ctrl_inq(unsigned long addr)
230{
231 return *(volatile unsigned long long*)addr;
232}
233
Paul Mundtb66c1a32006-01-16 22:14:15 -0800234static inline void ctrl_outb(unsigned char b, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
236 *(volatile unsigned char*)addr = b;
237}
238
Paul Mundtb66c1a32006-01-16 22:14:15 -0800239static inline void ctrl_outw(unsigned short b, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240{
241 *(volatile unsigned short*)addr = b;
242}
243
Paul Mundtb66c1a32006-01-16 22:14:15 -0800244static inline void ctrl_outl(unsigned int b, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
246 *(volatile unsigned long*)addr = b;
247}
248
Paul Mundt0f2c15c2007-11-21 18:06:34 +0900249static inline void ctrl_outq(unsigned long long b, unsigned long addr)
250{
251 *(volatile unsigned long long*)addr = b;
252}
253
Paul Mundt959f85f2006-09-27 16:43:28 +0900254static inline void ctrl_delay(void)
255{
Paul Mundtda06b8d2007-11-09 12:58:12 +0900256#ifdef P2SEG
Paul Mundt959f85f2006-09-27 16:43:28 +0900257 ctrl_inw(P2SEG);
Paul Mundtda06b8d2007-11-09 12:58:12 +0900258#endif
Paul Mundt959f85f2006-09-27 16:43:28 +0900259}
260
Paul Mundtac490a42007-11-20 18:26:28 +0900261/* Quad-word real-mode I/O, don't ask.. */
262unsigned long long peek_real_address_q(unsigned long long addr);
263unsigned long long poke_real_address_q(unsigned long long addr,
264 unsigned long long val);
265
Paul Mundtda06b8d2007-11-09 12:58:12 +0900266#if !defined(CONFIG_MMU)
267#define virt_to_phys(address) ((unsigned long)(address))
268#define phys_to_virt(address) ((void *)(address))
Stuart Menefyd02b08f2007-11-30 17:52:53 +0900269#else
Paul Mundtda06b8d2007-11-09 12:58:12 +0900270#define virt_to_phys(address) (__pa(address))
271#define phys_to_virt(address) (__va(address))
Yoshinori Satoa2d1a5f2006-09-27 17:25:07 +0900272#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274/*
Paul Mundtda06b8d2007-11-09 12:58:12 +0900275 * On 32-bit SH, we traditionally have the whole physical address space
276 * mapped at all times (as MIPS does), so "ioremap()" and "iounmap()" do
277 * not need to do anything but place the address in the proper segment.
278 * This is true for P1 and P2 addresses, as well as some P3 ones.
279 * However, most of the P3 addresses and newer cores using extended
280 * addressing need to map through page tables, so the ioremap()
281 * implementation becomes a bit more complicated.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 *
Paul Mundtda06b8d2007-11-09 12:58:12 +0900283 * See arch/sh/mm/ioremap.c for additional notes on this.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 *
285 * We cheat a bit and always return uncachable areas until we've fixed
Paul Mundtb66c1a32006-01-16 22:14:15 -0800286 * the drivers to handle caching properly.
Paul Mundtda06b8d2007-11-09 12:58:12 +0900287 *
288 * On the SH-5 the concept of segmentation in the 1:1 PXSEG sense simply
289 * doesn't exist, so everything must go through page tables.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 */
Paul Mundtb66c1a32006-01-16 22:14:15 -0800291#ifdef CONFIG_MMU
292void __iomem *__ioremap(unsigned long offset, unsigned long size,
293 unsigned long flags);
294void __iounmap(void __iomem *addr);
Paul Mundtccd80582008-04-25 12:58:40 +0900295
296/* arch/sh/mm/ioremap_64.c */
297unsigned long onchip_remap(unsigned long addr, unsigned long size,
298 const char *name);
299extern void onchip_unmap(unsigned long vaddr);
Paul Mundtb66c1a32006-01-16 22:14:15 -0800300#else
301#define __ioremap(offset, size, flags) ((void __iomem *)(offset))
302#define __iounmap(addr) do { } while (0)
Paul Mundtccd80582008-04-25 12:58:40 +0900303#define onchip_remap(addr, size, name) (addr)
304#define onchip_unmap(addr) do { } while (0)
Paul Mundtb66c1a32006-01-16 22:14:15 -0800305#endif /* CONFIG_MMU */
306
307static inline void __iomem *
308__ioremap_mode(unsigned long offset, unsigned long size, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
Paul Mundtda06b8d2007-11-09 12:58:12 +0900310#ifdef CONFIG_SUPERH32
Paul Mundtb66c1a32006-01-16 22:14:15 -0800311 unsigned long last_addr = offset + size - 1;
Magnus Damme7cc9a72008-02-07 20:18:21 +0900312#endif
313 void __iomem *ret;
Paul Mundtb66c1a32006-01-16 22:14:15 -0800314
Magnus Damme7cc9a72008-02-07 20:18:21 +0900315 ret = __ioremap_trapped(offset, size);
316 if (ret)
317 return ret;
318
319#ifdef CONFIG_SUPERH32
Paul Mundtb66c1a32006-01-16 22:14:15 -0800320 /*
321 * For P1 and P2 space this is trivial, as everything is already
322 * mapped. Uncached access for P1 addresses are done through P2.
323 * In the P3 case or for addresses outside of the 29-bit space,
324 * mapping must be done by the PMB or by using page tables.
325 */
326 if (likely(PXSEG(offset) < P3SEG && PXSEG(last_addr) < P3SEG)) {
327 if (unlikely(flags & _PAGE_CACHABLE))
328 return (void __iomem *)P1SEGADDR(offset);
329
330 return (void __iomem *)P2SEGADDR(offset);
331 }
Paul Mundtda06b8d2007-11-09 12:58:12 +0900332#endif
Paul Mundtb66c1a32006-01-16 22:14:15 -0800333
334 return __ioremap(offset, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
336
Paul Mundtb66c1a32006-01-16 22:14:15 -0800337#define ioremap(offset, size) \
338 __ioremap_mode((offset), (size), 0)
339#define ioremap_nocache(offset, size) \
340 __ioremap_mode((offset), (size), 0)
341#define ioremap_cache(offset, size) \
342 __ioremap_mode((offset), (size), _PAGE_CACHABLE)
343#define p3_ioremap(offset, size, flags) \
344 __ioremap((offset), (size), (flags))
Paul Mundtcb700aa2008-09-12 20:41:05 +0900345#define ioremap_prot(offset, size, flags) \
346 __ioremap_mode((offset), (size), (flags))
Paul Mundtb66c1a32006-01-16 22:14:15 -0800347#define iounmap(addr) \
348 __iounmap((addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 * Convert a physical pointer to a virtual kernel pointer for /dev/mem
352 * access
353 */
354#define xlate_dev_mem_ptr(p) __va(p)
355
356/*
357 * Convert a virtual cached pointer to an uncached pointer
358 */
359#define xlate_dev_kmem_ptr(p) p
360
361#endif /* __KERNEL__ */
362
363#endif /* __ASM_SH_IO_H */