1 /* SPDX-License-Identifier: GPL-2.0 */
5 #include <linux/types.h>
6 #include <linux/pgtable.h>
8 #define virt_to_phys(a) ((unsigned long)__pa(a))
9 #define phys_to_virt(a) __va(a)
10 #define virt_to_bus virt_to_phys
11 #define bus_to_virt phys_to_virt
13 static inline unsigned long isa_bus_to_virt(unsigned long addr
) {
18 static inline unsigned long isa_virt_to_bus(void *addr
) {
26 * readX()/writeX() do byteswapping and take an ioremapped address
27 * __raw_readX()/__raw_writeX() don't byteswap and take an ioremapped address.
28 * gsc_*() don't byteswap and operate on physical addresses;
29 * eg dev->hpa or 0xfee00000.
32 static inline unsigned char gsc_readb(unsigned long addr
)
41 : "=&r" (flags
), "=r" (ret
) : "r" (addr
), "i" (PSW_SM_D
) );
46 static inline unsigned short gsc_readw(unsigned long addr
)
55 : "=&r" (flags
), "=r" (ret
) : "r" (addr
), "i" (PSW_SM_D
) );
60 static inline unsigned int gsc_readl(unsigned long addr
)
66 : "=r" (ret
) : "r" (addr
) );
71 static inline unsigned long long gsc_readq(unsigned long addr
)
73 unsigned long long ret
;
78 : "=r" (ret
) : "r" (addr
) );
80 /* two reads may have side effects.. */
81 ret
= ((u64
) gsc_readl(addr
)) << 32;
82 ret
|= gsc_readl(addr
+4);
87 static inline void gsc_writeb(unsigned char val
, unsigned long addr
)
94 : "=&r" (flags
) : "r" (val
), "r" (addr
), "i" (PSW_SM_D
) );
97 static inline void gsc_writew(unsigned short val
, unsigned long addr
)
100 __asm__
__volatile__(
104 : "=&r" (flags
) : "r" (val
), "r" (addr
), "i" (PSW_SM_D
) );
107 static inline void gsc_writel(unsigned int val
, unsigned long addr
)
109 __asm__
__volatile__(
111 : : "r" (val
), "r" (addr
) );
114 static inline void gsc_writeq(unsigned long long val
, unsigned long addr
)
117 __asm__
__volatile__(
119 : : "r" (val
), "r" (addr
) );
121 /* two writes may have side effects.. */
122 gsc_writel(val
>> 32, addr
);
123 gsc_writel(val
, addr
+4);
128 * The standard PCI ioremap interfaces
130 void __iomem
*ioremap(unsigned long offset
, unsigned long size
);
131 #define ioremap_wc ioremap
132 #define ioremap_uc ioremap
134 extern void iounmap(const volatile void __iomem
*addr
);
136 static inline unsigned char __raw_readb(const volatile void __iomem
*addr
)
138 return (*(volatile unsigned char __force
*) (addr
));
140 static inline unsigned short __raw_readw(const volatile void __iomem
*addr
)
142 return *(volatile unsigned short __force
*) addr
;
144 static inline unsigned int __raw_readl(const volatile void __iomem
*addr
)
146 return *(volatile unsigned int __force
*) addr
;
148 static inline unsigned long long __raw_readq(const volatile void __iomem
*addr
)
150 return *(volatile unsigned long long __force
*) addr
;
153 static inline void __raw_writeb(unsigned char b
, volatile void __iomem
*addr
)
155 *(volatile unsigned char __force
*) addr
= b
;
157 static inline void __raw_writew(unsigned short b
, volatile void __iomem
*addr
)
159 *(volatile unsigned short __force
*) addr
= b
;
161 static inline void __raw_writel(unsigned int b
, volatile void __iomem
*addr
)
163 *(volatile unsigned int __force
*) addr
= b
;
165 static inline void __raw_writeq(unsigned long long b
, volatile void __iomem
*addr
)
167 *(volatile unsigned long long __force
*) addr
= b
;
170 static inline unsigned char readb(const volatile void __iomem
*addr
)
172 return __raw_readb(addr
);
174 static inline unsigned short readw(const volatile void __iomem
*addr
)
176 return le16_to_cpu((__le16 __force
) __raw_readw(addr
));
178 static inline unsigned int readl(const volatile void __iomem
*addr
)
180 return le32_to_cpu((__le32 __force
) __raw_readl(addr
));
182 static inline unsigned long long readq(const volatile void __iomem
*addr
)
184 return le64_to_cpu((__le64 __force
) __raw_readq(addr
));
187 static inline void writeb(unsigned char b
, volatile void __iomem
*addr
)
189 __raw_writeb(b
, addr
);
191 static inline void writew(unsigned short w
, volatile void __iomem
*addr
)
193 __raw_writew((__u16 __force
) cpu_to_le16(w
), addr
);
195 static inline void writel(unsigned int l
, volatile void __iomem
*addr
)
197 __raw_writel((__u32 __force
) cpu_to_le32(l
), addr
);
199 static inline void writeq(unsigned long long q
, volatile void __iomem
*addr
)
201 __raw_writeq((__u64 __force
) cpu_to_le64(q
), addr
);
208 #define writeb writeb
209 #define writew writew
210 #define writel writel
211 #define writeq writeq
213 #define readb_relaxed(addr) readb(addr)
214 #define readw_relaxed(addr) readw(addr)
215 #define readl_relaxed(addr) readl(addr)
216 #define readq_relaxed(addr) readq(addr)
217 #define writeb_relaxed(b, addr) writeb(b, addr)
218 #define writew_relaxed(w, addr) writew(w, addr)
219 #define writel_relaxed(l, addr) writel(l, addr)
220 #define writeq_relaxed(q, addr) writeq(q, addr)
222 void memset_io(volatile void __iomem
*addr
, unsigned char val
, int count
);
223 void memcpy_fromio(void *dst
, const volatile void __iomem
*src
, int count
);
224 void memcpy_toio(volatile void __iomem
*dst
, const void *src
, int count
);
235 extern unsigned char eisa_in8(unsigned short port
);
236 extern unsigned short eisa_in16(unsigned short port
);
237 extern unsigned int eisa_in32(unsigned short port
);
238 extern void eisa_out8(unsigned char data
, unsigned short port
);
239 extern void eisa_out16(unsigned short data
, unsigned short port
);
240 extern void eisa_out32(unsigned int data
, unsigned short port
);
242 #if defined(CONFIG_PCI)
243 extern unsigned char inb(int addr
);
244 extern unsigned short inw(int addr
);
245 extern unsigned int inl(int addr
);
247 extern void outb(unsigned char b
, int addr
);
248 extern void outw(unsigned short b
, int addr
);
249 extern void outl(unsigned int b
, int addr
);
250 #elif defined(CONFIG_EISA)
252 #define inw eisa_in16
253 #define inl eisa_in32
254 #define outb eisa_out8
255 #define outw eisa_out16
256 #define outl eisa_out32
258 static inline char inb(unsigned long addr
)
264 static inline short inw(unsigned long addr
)
270 static inline int inl(unsigned long addr
)
276 #define outb(x, y) BUG()
277 #define outw(x, y) BUG()
278 #define outl(x, y) BUG()
282 * String versions of in/out ops:
284 extern void insb (unsigned long port
, void *dst
, unsigned long count
);
285 extern void insw (unsigned long port
, void *dst
, unsigned long count
);
286 extern void insl (unsigned long port
, void *dst
, unsigned long count
);
287 extern void outsb (unsigned long port
, const void *src
, unsigned long count
);
288 extern void outsw (unsigned long port
, const void *src
, unsigned long count
);
289 extern void outsl (unsigned long port
, const void *src
, unsigned long count
);
292 /* IO Port space is : BBiiii where BB is HBA number. */
293 #define IO_SPACE_LIMIT 0x00ffffff
295 /* PA machines have an MM I/O space from 0xf0000000-0xffffffff in 32
296 * bit mode and from 0xfffffffff0000000-0xfffffffffffffff in 64 bit
297 * mode (essentially just sign extending. This macro takes in a 32
298 * bit I/O address (still with the leading f) and outputs the correct
299 * value for either 32 or 64 bit mode */
300 #define F_EXTEND(x) ((unsigned long)((x) | (0xffffffff00000000ULL)))
302 #define ioread64 ioread64
303 #define ioread64be ioread64be
304 #define iowrite64 iowrite64
305 #define iowrite64be iowrite64be
306 extern u64
ioread64(void __iomem
*addr
);
307 extern u64
ioread64be(void __iomem
*addr
);
308 extern void iowrite64(u64 val
, void __iomem
*addr
);
309 extern void iowrite64be(u64 val
, void __iomem
*addr
);
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