6 * This file contains the definitions for the x86 IO instructions
7 * inb/inw/inl/outb/outw/outl and the "string versions" of the same
8 * (insb/insw/insl/outsb/outsw/outsl). You can also use "pausing"
9 * versions of the single-IO instructions (inb_p/inw_p/..).
11 * This file is not meant to be obfuscating: it's just complicated
12 * to (a) handle it all in a way that makes gcc able to optimize it
13 * as well as possible and (b) trying to avoid writing the same thing
14 * over and over again with slight variations and possibly making a
19 * Thanks to James van Artsdalen for a better timing-fix than
20 * the two short jumps: using outb's to a nonexistent port seems
21 * to guarantee better timings even on fast machines.
23 * On the other hand, I'd like to be sure of a non-existent port:
24 * I feel a bit unsafe about using 0x80 (should be safe, though)
30 * Bit simplified and optimized by Jan Hubicka
31 * Support of BIGMEM added by Gerhard Wichert, Siemens AG, July 1999.
33 * isa_memset_io, isa_memcpy_fromio, isa_memcpy_toio added,
34 * isa_read[wl] and isa_write[wl] fixed
35 * - Arnaldo Carvalho de Melo <acme@conectiva.com.br>
38 extern void native_io_delay(void);
40 extern int io_delay_type
;
41 extern void io_delay_init(void);
43 #if defined(CONFIG_PARAVIRT)
44 #include <asm/paravirt.h>
47 static inline void slow_down_io(void)
59 * Talk about misusing macros..
61 #define __OUT1(s, x) \
62 static inline void out##s(unsigned x value, unsigned short port) {
64 #define __OUT2(s, s1, s2) \
65 asm volatile ("out" #s " %" s1 "0,%" s2 "1"
67 #ifndef REALLY_SLOW_IO
68 #define REALLY_SLOW_IO
69 #define UNSET_REALLY_SLOW_IO
72 #define __OUT(s, s1, x) \
73 __OUT1(s, x) __OUT2(s, s1, "w") : : "a" (value), "Nd" (port)); \
75 __OUT1(s##_p, x) __OUT2(s, s1, "w") : : "a" (value), "Nd" (port)); \
80 static inline RETURN_TYPE in##s(unsigned short port) \
84 #define __IN2(s, s1, s2) \
85 asm volatile ("in" #s " %" s2 "1,%" s1 "0"
87 #define __IN(s, s1, i...) \
88 __IN1(s) __IN2(s, s1, "w") : "=a" (_v) : "Nd" (port), ##i); \
91 __IN1(s##_p) __IN2(s, s1, "w") : "=a" (_v) : "Nd" (port), ##i); \
95 #ifdef UNSET_REALLY_SLOW_IO
100 static inline void ins##s(unsigned short port, void *addr, \
101 unsigned long count) \
103 asm volatile ("rep ; ins" #s \
104 : "=D" (addr), "=c" (count) \
105 : "d" (port), "0" (addr), "1" (count)); \
109 static inline void outs##s(unsigned short port, const void *addr, \
110 unsigned long count) \
112 asm volatile ("rep ; outs" #s \
113 : "=S" (addr), "=c" (count) \
114 : "d" (port), "0" (addr), "1" (count)); \
117 #define RETURN_TYPE unsigned char
120 #define RETURN_TYPE unsigned short
123 #define RETURN_TYPE unsigned int
139 #define IO_SPACE_LIMIT 0xffff
141 #if defined(__KERNEL__) && defined(__x86_64__)
143 #include <linux/vmalloc.h>
147 * Change virtual addresses to physical addresses and vv.
148 * These are pretty trivial
150 static inline unsigned long virt_to_phys(volatile void *address
)
152 return __pa(address
);
155 static inline void *phys_to_virt(unsigned long address
)
157 return __va(address
);
162 * Change "struct page" to physical address.
164 #define page_to_phys(page) ((dma_addr_t)page_to_pfn(page) << PAGE_SHIFT)
166 #include <asm-generic/iomap.h>
168 extern void *early_ioremap(unsigned long addr
, unsigned long size
);
169 extern void early_iounmap(void *addr
, unsigned long size
);
172 * This one maps high address device memory and turns off caching for that area.
173 * it's useful if some control registers are in such an area and write combining
174 * or read caching is not desirable:
176 extern void __iomem
*ioremap_nocache(resource_size_t offset
, unsigned long size
);
177 extern void __iomem
*ioremap_cache(resource_size_t offset
, unsigned long size
);
178 extern void __iomem
*ioremap_prot(resource_size_t offset
, unsigned long size
,
179 unsigned long prot_val
);
182 * The default ioremap() behavior is non-cached:
184 static inline void __iomem
*ioremap(resource_size_t offset
, unsigned long size
)
186 return ioremap_nocache(offset
, size
);
189 extern void iounmap(volatile void __iomem
*addr
);
191 extern void __iomem
*fix_ioremap(unsigned idx
, unsigned long phys
);
194 * ISA I/O bus memory addresses are 1:1 with the physical address.
196 #define isa_virt_to_bus virt_to_phys
197 #define isa_page_to_bus page_to_phys
198 #define isa_bus_to_virt phys_to_virt
201 * However PCI ones are not necessarily 1:1 and therefore these interfaces
202 * are forbidden in portable PCI drivers.
204 * Allow them on x86 for legacy drivers, though.
206 #define virt_to_bus virt_to_phys
207 #define bus_to_virt phys_to_virt
209 void __memcpy_fromio(void *, unsigned long, unsigned);
210 void __memcpy_toio(unsigned long, const void *, unsigned);
212 static inline void memcpy_fromio(void *to
, const volatile void __iomem
*from
,
215 __memcpy_fromio(to
, (unsigned long)from
, len
);
218 static inline void memcpy_toio(volatile void __iomem
*to
, const void *from
,
221 __memcpy_toio((unsigned long)to
, from
, len
);
224 void memset_io(volatile void __iomem
*a
, int b
, size_t c
);
227 * ISA space is 'always mapped' on a typical x86 system, no need to
228 * explicitly ioremap() it. The fact that the ISA IO space is mapped
229 * to PAGE_OFFSET is pure coincidence - it does not mean ISA values
230 * are physical addresses. The following constant pointer can be
231 * used as the IO-area pointer (it can be iounmapped as well, so the
232 * analogy with PCI is quite large):
234 #define __ISA_IO_base ((char __iomem *)(PAGE_OFFSET))
236 #define flush_write_buffers()
238 extern int iommu_bio_merge
;
239 #define BIO_VMERGE_BOUNDARY iommu_bio_merge
242 * Convert a virtual cached pointer to an uncached pointer
244 #define xlate_dev_kmem_ptr(p) p
246 #endif /* __KERNEL__ */