blob: 52ff269fe05473ff255d8ced8c87f80a274e57b9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _ASM_IO_H
2#define _ASM_IO_H
3
4#include <linux/config.h>
5
6/*
7 * This file contains the definitions for the x86 IO instructions
8 * inb/inw/inl/outb/outw/outl and the "string versions" of the same
9 * (insb/insw/insl/outsb/outsw/outsl). You can also use "pausing"
10 * versions of the single-IO instructions (inb_p/inw_p/..).
11 *
12 * This file is not meant to be obfuscating: it's just complicated
13 * to (a) handle it all in a way that makes gcc able to optimize it
14 * as well as possible and (b) trying to avoid writing the same thing
15 * over and over again with slight variations and possibly making a
16 * mistake somewhere.
17 */
18
19/*
20 * Thanks to James van Artsdalen for a better timing-fix than
21 * the two short jumps: using outb's to a nonexistent port seems
22 * to guarantee better timings even on fast machines.
23 *
24 * On the other hand, I'd like to be sure of a non-existent port:
25 * I feel a bit unsafe about using 0x80 (should be safe, though)
26 *
27 * Linus
28 */
29
30 /*
31 * Bit simplified and optimized by Jan Hubicka
32 * Support of BIGMEM added by Gerhard Wichert, Siemens AG, July 1999.
33 *
34 * isa_memset_io, isa_memcpy_fromio, isa_memcpy_toio added,
35 * isa_read[wl] and isa_write[wl] fixed
36 * - Arnaldo Carvalho de Melo <acme@conectiva.com.br>
37 */
38
39#define __SLOW_DOWN_IO "\noutb %%al,$0x80"
40
41#ifdef REALLY_SLOW_IO
42#define __FULL_SLOW_DOWN_IO __SLOW_DOWN_IO __SLOW_DOWN_IO __SLOW_DOWN_IO __SLOW_DOWN_IO
43#else
44#define __FULL_SLOW_DOWN_IO __SLOW_DOWN_IO
45#endif
46
47/*
48 * Talk about misusing macros..
49 */
50#define __OUT1(s,x) \
Adrian Bunk9c0aa0f2005-09-12 18:49:24 +020051static inline void out##s(unsigned x value, unsigned short port) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53#define __OUT2(s,s1,s2) \
54__asm__ __volatile__ ("out" #s " %" s1 "0,%" s2 "1"
55
56#define __OUT(s,s1,x) \
57__OUT1(s,x) __OUT2(s,s1,"w") : : "a" (value), "Nd" (port)); } \
58__OUT1(s##_p,x) __OUT2(s,s1,"w") __FULL_SLOW_DOWN_IO : : "a" (value), "Nd" (port));} \
59
60#define __IN1(s) \
Adrian Bunk9c0aa0f2005-09-12 18:49:24 +020061static inline RETURN_TYPE in##s(unsigned short port) { RETURN_TYPE _v;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63#define __IN2(s,s1,s2) \
64__asm__ __volatile__ ("in" #s " %" s2 "1,%" s1 "0"
65
66#define __IN(s,s1,i...) \
67__IN1(s) __IN2(s,s1,"w") : "=a" (_v) : "Nd" (port) ,##i ); return _v; } \
68__IN1(s##_p) __IN2(s,s1,"w") __FULL_SLOW_DOWN_IO : "=a" (_v) : "Nd" (port) ,##i ); return _v; } \
69
70#define __INS(s) \
Adrian Bunk9c0aa0f2005-09-12 18:49:24 +020071static inline void ins##s(unsigned short port, void * addr, unsigned long count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{ __asm__ __volatile__ ("rep ; ins" #s \
73: "=D" (addr), "=c" (count) : "d" (port),"0" (addr),"1" (count)); }
74
75#define __OUTS(s) \
Adrian Bunk9c0aa0f2005-09-12 18:49:24 +020076static inline void outs##s(unsigned short port, const void * addr, unsigned long count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{ __asm__ __volatile__ ("rep ; outs" #s \
78: "=S" (addr), "=c" (count) : "d" (port),"0" (addr),"1" (count)); }
79
80#define RETURN_TYPE unsigned char
81__IN(b,"")
82#undef RETURN_TYPE
83#define RETURN_TYPE unsigned short
84__IN(w,"")
85#undef RETURN_TYPE
86#define RETURN_TYPE unsigned int
87__IN(l,"")
88#undef RETURN_TYPE
89
90__OUT(b,"b",char)
91__OUT(w,"w",short)
92__OUT(l,,int)
93
94__INS(b)
95__INS(w)
96__INS(l)
97
98__OUTS(b)
99__OUTS(w)
100__OUTS(l)
101
102#define IO_SPACE_LIMIT 0xffff
103
104#if defined(__KERNEL__) && __x86_64__
105
106#include <linux/vmalloc.h>
107
108#ifndef __i386__
109/*
110 * Change virtual addresses to physical addresses and vv.
111 * These are pretty trivial
112 */
Adrian Bunk9c0aa0f2005-09-12 18:49:24 +0200113static inline unsigned long virt_to_phys(volatile void * address)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
115 return __pa(address);
116}
117
Adrian Bunk9c0aa0f2005-09-12 18:49:24 +0200118static inline void * phys_to_virt(unsigned long address)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
120 return __va(address);
121}
122#endif
123
124/*
125 * Change "struct page" to physical address.
126 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127#define page_to_phys(page) ((dma_addr_t)page_to_pfn(page) << PAGE_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129#include <asm-generic/iomap.h>
130
131extern void __iomem *__ioremap(unsigned long offset, unsigned long size, unsigned long flags);
132
Adrian Bunk9c0aa0f2005-09-12 18:49:24 +0200133static inline void __iomem * ioremap (unsigned long offset, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
135 return __ioremap(offset, size, 0);
136}
137
138/*
139 * This one maps high address device memory and turns off caching for that area.
140 * it's useful if some control registers are in such an area and write combining
141 * or read caching is not desirable:
142 */
143extern void __iomem * ioremap_nocache (unsigned long offset, unsigned long size);
144extern void iounmap(volatile void __iomem *addr);
145
146/*
147 * ISA I/O bus memory addresses are 1:1 with the physical address.
148 */
149#define isa_virt_to_bus virt_to_phys
150#define isa_page_to_bus page_to_phys
151#define isa_bus_to_virt phys_to_virt
152
153/*
154 * However PCI ones are not necessarily 1:1 and therefore these interfaces
155 * are forbidden in portable PCI drivers.
156 *
157 * Allow them on x86 for legacy drivers, though.
158 */
159#define virt_to_bus virt_to_phys
160#define bus_to_virt phys_to_virt
161
162/*
163 * readX/writeX() are used to access memory mapped devices. On some
164 * architectures the memory mapped IO stuff needs to be accessed
165 * differently. On the x86 architecture, we just read/write the
166 * memory location directly.
167 */
168
169static inline __u8 __readb(const volatile void __iomem *addr)
170{
171 return *(__force volatile __u8 *)addr;
172}
173static inline __u16 __readw(const volatile void __iomem *addr)
174{
175 return *(__force volatile __u16 *)addr;
176}
177static inline __u32 __readl(const volatile void __iomem *addr)
178{
179 return *(__force volatile __u32 *)addr;
180}
181static inline __u64 __readq(const volatile void __iomem *addr)
182{
183 return *(__force volatile __u64 *)addr;
184}
185#define readb(x) __readb(x)
186#define readw(x) __readw(x)
187#define readl(x) __readl(x)
188#define readq(x) __readq(x)
189#define readb_relaxed(a) readb(a)
190#define readw_relaxed(a) readw(a)
191#define readl_relaxed(a) readl(a)
192#define readq_relaxed(a) readq(a)
193#define __raw_readb readb
194#define __raw_readw readw
195#define __raw_readl readl
196#define __raw_readq readq
197
198#define mmiowb()
199
200#ifdef CONFIG_UNORDERED_IO
201static inline void __writel(__u32 val, volatile void __iomem *addr)
202{
203 volatile __u32 __iomem *target = addr;
204 asm volatile("movnti %1,%0"
205 : "=m" (*target)
206 : "r" (val) : "memory");
207}
208
209static inline void __writeq(__u64 val, volatile void __iomem *addr)
210{
211 volatile __u64 __iomem *target = addr;
212 asm volatile("movnti %1,%0"
213 : "=m" (*target)
214 : "r" (val) : "memory");
215}
216#else
217static inline void __writel(__u32 b, volatile void __iomem *addr)
218{
219 *(__force volatile __u32 *)addr = b;
220}
221static inline void __writeq(__u64 b, volatile void __iomem *addr)
222{
223 *(__force volatile __u64 *)addr = b;
224}
225#endif
226static inline void __writeb(__u8 b, volatile void __iomem *addr)
227{
228 *(__force volatile __u8 *)addr = b;
229}
230static inline void __writew(__u16 b, volatile void __iomem *addr)
231{
232 *(__force volatile __u16 *)addr = b;
233}
234#define writeq(val,addr) __writeq((val),(addr))
235#define writel(val,addr) __writel((val),(addr))
236#define writew(val,addr) __writew((val),(addr))
237#define writeb(val,addr) __writeb((val),(addr))
238#define __raw_writeb writeb
239#define __raw_writew writew
240#define __raw_writel writel
241#define __raw_writeq writeq
242
243void __memcpy_fromio(void*,unsigned long,unsigned);
244void __memcpy_toio(unsigned long,const void*,unsigned);
245
246static inline void memcpy_fromio(void *to, const volatile void __iomem *from, unsigned len)
247{
248 __memcpy_fromio(to,(unsigned long)from,len);
249}
250static inline void memcpy_toio(volatile void __iomem *to, const void *from, unsigned len)
251{
252 __memcpy_toio((unsigned long)to,from,len);
253}
254
255void memset_io(volatile void __iomem *a, int b, size_t c);
256
257/*
258 * ISA space is 'always mapped' on a typical x86 system, no need to
259 * explicitly ioremap() it. The fact that the ISA IO space is mapped
260 * to PAGE_OFFSET is pure coincidence - it does not mean ISA values
261 * are physical addresses. The following constant pointer can be
262 * used as the IO-area pointer (it can be iounmapped as well, so the
263 * analogy with PCI is quite large):
264 */
265#define __ISA_IO_base ((char __iomem *)(PAGE_OFFSET))
266
267#define isa_readb(a) readb(__ISA_IO_base + (a))
268#define isa_readw(a) readw(__ISA_IO_base + (a))
269#define isa_readl(a) readl(__ISA_IO_base + (a))
270#define isa_writeb(b,a) writeb(b,__ISA_IO_base + (a))
271#define isa_writew(w,a) writew(w,__ISA_IO_base + (a))
272#define isa_writel(l,a) writel(l,__ISA_IO_base + (a))
273#define isa_memset_io(a,b,c) memset_io(__ISA_IO_base + (a),(b),(c))
274#define isa_memcpy_fromio(a,b,c) memcpy_fromio((a),__ISA_IO_base + (b),(c))
275#define isa_memcpy_toio(a,b,c) memcpy_toio(__ISA_IO_base + (a),(b),(c))
276
277
278/*
279 * Again, x86-64 does not require mem IO specific function.
280 */
281
282#define eth_io_copy_and_sum(a,b,c,d) eth_copy_and_sum((a),(void *)(b),(c),(d))
283#define isa_eth_io_copy_and_sum(a,b,c,d) eth_copy_and_sum((a),(void *)(__ISA_IO_base + (b)),(c),(d))
284
285/**
286 * check_signature - find BIOS signatures
287 * @io_addr: mmio address to check
288 * @signature: signature block
289 * @length: length of signature
290 *
291 * Perform a signature comparison with the mmio address io_addr. This
292 * address should have been obtained by ioremap.
293 * Returns 1 on a match.
294 */
295
296static inline int check_signature(void __iomem *io_addr,
297 const unsigned char *signature, int length)
298{
299 int retval = 0;
300 do {
301 if (readb(io_addr) != *signature)
302 goto out;
303 io_addr++;
304 signature++;
305 length--;
306 } while (length);
307 retval = 1;
308out:
309 return retval;
310}
311
312/* Nothing to do */
313
314#define dma_cache_inv(_start,_size) do { } while (0)
315#define dma_cache_wback(_start,_size) do { } while (0)
316#define dma_cache_wback_inv(_start,_size) do { } while (0)
317
318#define flush_write_buffers()
319
320extern int iommu_bio_merge;
321#define BIO_VMERGE_BOUNDARY iommu_bio_merge
322
323/*
324 * Convert a physical pointer to a virtual kernel pointer for /dev/mem
325 * access
326 */
327#define xlate_dev_mem_ptr(p) __va(p)
328
329/*
330 * Convert a virtual cached pointer to an uncached pointer
331 */
332#define xlate_dev_kmem_ptr(p) p
333
334#endif /* __KERNEL__ */
335
336#endif