4 #include <linux/types.h>
5 #include <asm/pgtable.h>
7 #define virt_to_phys(a) ((unsigned long)__pa(a))
8 #define phys_to_virt(a) __va(a)
9 #define virt_to_bus virt_to_phys
10 #define bus_to_virt phys_to_virt
12 static inline unsigned long isa_bus_to_virt(unsigned long addr
) {
17 static inline unsigned long isa_virt_to_bus(void *addr
) {
25 * readX()/writeX() do byteswapping and take an ioremapped address
26 * __raw_readX()/__raw_writeX() don't byteswap and take an ioremapped address.
27 * gsc_*() don't byteswap and operate on physical addresses;
28 * eg dev->hpa or 0xfee00000.
31 static inline unsigned char gsc_readb(unsigned long addr
)
40 : "=&r" (flags
), "=r" (ret
) : "r" (addr
) );
45 static inline unsigned short gsc_readw(unsigned long addr
)
54 : "=&r" (flags
), "=r" (ret
) : "r" (addr
) );
59 static inline unsigned int gsc_readl(unsigned long addr
)
65 : "=r" (ret
) : "r" (addr
) );
70 static inline unsigned long long gsc_readq(unsigned long addr
)
72 unsigned long long ret
;
77 : "=r" (ret
) : "r" (addr
) );
79 /* two reads may have side effects.. */
80 ret
= ((u64
) gsc_readl(addr
)) << 32;
81 ret
|= gsc_readl(addr
+4);
86 static inline void gsc_writeb(unsigned char val
, unsigned long addr
)
93 : "=&r" (flags
) : "r" (val
), "r" (addr
) );
96 static inline void gsc_writew(unsigned short val
, unsigned long addr
)
103 : "=&r" (flags
) : "r" (val
), "r" (addr
) );
106 static inline void gsc_writel(unsigned int val
, unsigned long addr
)
108 __asm__
__volatile__(
110 : : "r" (val
), "r" (addr
) );
113 static inline void gsc_writeq(unsigned long long val
, unsigned long addr
)
116 __asm__
__volatile__(
118 : : "r" (val
), "r" (addr
) );
120 /* two writes may have side effects.. */
121 gsc_writel(val
>> 32, addr
);
122 gsc_writel(val
, addr
+4);
127 * The standard PCI ioremap interfaces
130 extern void __iomem
* __ioremap(unsigned long offset
, unsigned long size
, unsigned long flags
);
132 /* Most machines react poorly to I/O-space being cacheable... Instead let's
133 * define ioremap() in terms of ioremap_nocache().
135 static inline void __iomem
* ioremap(unsigned long offset
, unsigned long size
)
137 return __ioremap(offset
, size
, _PAGE_NO_CACHE
);
139 #define ioremap_nocache(off, sz) ioremap((off), (sz))
141 extern void iounmap(const volatile void __iomem
*addr
);
143 static inline unsigned char __raw_readb(const volatile void __iomem
*addr
)
145 return (*(volatile unsigned char __force
*) (addr
));
147 static inline unsigned short __raw_readw(const volatile void __iomem
*addr
)
149 return *(volatile unsigned short __force
*) addr
;
151 static inline unsigned int __raw_readl(const volatile void __iomem
*addr
)
153 return *(volatile unsigned int __force
*) addr
;
155 static inline unsigned long long __raw_readq(const volatile void __iomem
*addr
)
157 return *(volatile unsigned long long __force
*) addr
;
160 static inline void __raw_writeb(unsigned char b
, volatile void __iomem
*addr
)
162 *(volatile unsigned char __force
*) addr
= b
;
164 static inline void __raw_writew(unsigned short b
, volatile void __iomem
*addr
)
166 *(volatile unsigned short __force
*) addr
= b
;
168 static inline void __raw_writel(unsigned int b
, volatile void __iomem
*addr
)
170 *(volatile unsigned int __force
*) addr
= b
;
172 static inline void __raw_writeq(unsigned long long b
, volatile void __iomem
*addr
)
174 *(volatile unsigned long long __force
*) addr
= b
;
177 static inline unsigned char readb(const volatile void __iomem
*addr
)
179 return __raw_readb(addr
);
181 static inline unsigned short readw(const volatile void __iomem
*addr
)
183 return le16_to_cpu(__raw_readw(addr
));
185 static inline unsigned int readl(const volatile void __iomem
*addr
)
187 return le32_to_cpu(__raw_readl(addr
));
189 static inline unsigned long long readq(const volatile void __iomem
*addr
)
191 return le64_to_cpu(__raw_readq(addr
));
194 static inline void writeb(unsigned char b
, volatile void __iomem
*addr
)
196 __raw_writeb(b
, addr
);
198 static inline void writew(unsigned short w
, volatile void __iomem
*addr
)
200 __raw_writew(cpu_to_le16(w
), addr
);
202 static inline void writel(unsigned int l
, volatile void __iomem
*addr
)
204 __raw_writel(cpu_to_le32(l
), addr
);
206 static inline void writeq(unsigned long long q
, volatile void __iomem
*addr
)
208 __raw_writeq(cpu_to_le64(q
), addr
);
215 #define writeb writeb
216 #define writew writew
217 #define writel writel
218 #define writeq writeq
220 #define readb_relaxed(addr) readb(addr)
221 #define readw_relaxed(addr) readw(addr)
222 #define readl_relaxed(addr) readl(addr)
223 #define readq_relaxed(addr) readq(addr)
224 #define writeb_relaxed(b, addr) writeb(b, addr)
225 #define writew_relaxed(w, addr) writew(w, addr)
226 #define writel_relaxed(l, addr) writel(l, addr)
227 #define writeq_relaxed(q, addr) writeq(q, addr)
229 #define mmiowb() do { } while (0)
231 void memset_io(volatile void __iomem
*addr
, unsigned char val
, int count
);
232 void memcpy_fromio(void *dst
, const volatile void __iomem
*src
, int count
);
233 void memcpy_toio(volatile void __iomem
*dst
, const void *src
, int count
);
244 extern unsigned char eisa_in8(unsigned short port
);
245 extern unsigned short eisa_in16(unsigned short port
);
246 extern unsigned int eisa_in32(unsigned short port
);
247 extern void eisa_out8(unsigned char data
, unsigned short port
);
248 extern void eisa_out16(unsigned short data
, unsigned short port
);
249 extern void eisa_out32(unsigned int data
, unsigned short port
);
251 #if defined(CONFIG_PCI)
252 extern unsigned char inb(int addr
);
253 extern unsigned short inw(int addr
);
254 extern unsigned int inl(int addr
);
256 extern void outb(unsigned char b
, int addr
);
257 extern void outw(unsigned short b
, int addr
);
258 extern void outl(unsigned int b
, int addr
);
259 #elif defined(CONFIG_EISA)
261 #define inw eisa_in16
262 #define inl eisa_in32
263 #define outb eisa_out8
264 #define outw eisa_out16
265 #define outl eisa_out32
267 static inline char inb(unsigned long addr
)
273 static inline short inw(unsigned long addr
)
279 static inline int inl(unsigned long addr
)
285 #define outb(x, y) BUG()
286 #define outw(x, y) BUG()
287 #define outl(x, y) BUG()
291 * String versions of in/out ops:
293 extern void insb (unsigned long port
, void *dst
, unsigned long count
);
294 extern void insw (unsigned long port
, void *dst
, unsigned long count
);
295 extern void insl (unsigned long port
, void *dst
, unsigned long count
);
296 extern void outsb (unsigned long port
, const void *src
, unsigned long count
);
297 extern void outsw (unsigned long port
, const void *src
, unsigned long count
);
298 extern void outsl (unsigned long port
, const void *src
, unsigned long count
);
301 /* IO Port space is : BBiiii where BB is HBA number. */
302 #define IO_SPACE_LIMIT 0x00ffffff
304 /* PA machines have an MM I/O space from 0xf0000000-0xffffffff in 32
305 * bit mode and from 0xfffffffff0000000-0xfffffffffffffff in 64 bit
306 * mode (essentially just sign extending. This macro takes in a 32
307 * bit I/O address (still with the leading f) and outputs the correct
308 * value for either 32 or 64 bit mode */
309 #define F_EXTEND(x) ((unsigned long)((x) | (0xffffffff00000000ULL)))
311 #include <asm-generic/iomap.h>
314 * Convert a physical pointer to a virtual kernel pointer for /dev/mem
317 #define xlate_dev_mem_ptr(p) __va(p)
320 * Convert a virtual cached pointer to an uncached pointer
322 #define xlate_dev_kmem_ptr(p) p