1 /* originally from linux source.
2 * removed the dependencies on CONFIG_ values
3 * removed virt_to_phys stuff (and in fact everything surrounded by #if __KERNEL__)
4 * Modified By Rob Taylor, Flying Pig Systems, 2000
10 #include <linux/config.h>
11 #include <asm/byteorder.h>
13 #ifdef CONFIG_ADDR_MAP
17 #define SIO_CONFIG_RA 0x398
18 #define SIO_CONFIG_RD 0x399
24 #define readb(addr) in_8((volatile u8 *)(addr))
25 #define writeb(b,addr) out_8((volatile u8 *)(addr), (b))
26 #if !defined(__BIG_ENDIAN)
27 #define readw(addr) (*(volatile u16 *) (addr))
28 #define readl(addr) (*(volatile u32 *) (addr))
29 #define writew(b,addr) ((*(volatile u16 *) (addr)) = (b))
30 #define writel(b,addr) ((*(volatile u32 *) (addr)) = (b))
32 #define readw(addr) in_le16((volatile u16 *)(addr))
33 #define readl(addr) in_le32((volatile u32 *)(addr))
34 #define writew(b,addr) out_le16((volatile u16 *)(addr),(b))
35 #define writel(b,addr) out_le32((volatile u32 *)(addr),(b))
39 * The insw/outsw/insl/outsl macros don't do byte-swapping.
40 * They are only used in practice for transferring buffers which
41 * are arrays of bytes, and byte-swapping is not appropriate in
44 #define insb(port, buf, ns) _insb((u8 *)((port)+_IO_BASE), (buf), (ns))
45 #define outsb(port, buf, ns) _outsb((u8 *)((port)+_IO_BASE), (buf), (ns))
46 #define insw(port, buf, ns) _insw_ns((u16 *)((port)+_IO_BASE), (buf), (ns))
47 #define outsw(port, buf, ns) _outsw_ns((u16 *)((port)+_IO_BASE), (buf), (ns))
48 #define insl(port, buf, nl) _insl_ns((u32 *)((port)+_IO_BASE), (buf), (nl))
49 #define outsl(port, buf, nl) _outsl_ns((u32 *)((port)+_IO_BASE), (buf), (nl))
51 #define inb(port) in_8((u8 *)((port)+_IO_BASE))
52 #define outb(val, port) out_8((u8 *)((port)+_IO_BASE), (val))
53 #if !defined(__BIG_ENDIAN)
54 #define inw(port) in_be16((u16 *)((port)+_IO_BASE))
55 #define outw(val, port) out_be16((u16 *)((port)+_IO_BASE), (val))
56 #define inl(port) in_be32((u32 *)((port)+_IO_BASE))
57 #define outl(val, port) out_be32((u32 *)((port)+_IO_BASE), (val))
59 #define inw(port) in_le16((u16 *)((port)+_IO_BASE))
60 #define outw(val, port) out_le16((u16 *)((port)+_IO_BASE), (val))
61 #define inl(port) in_le32((u32 *)((port)+_IO_BASE))
62 #define outl(val, port) out_le32((u32 *)((port)+_IO_BASE), (val))
65 #define inb_p(port) in_8((u8 *)((port)+_IO_BASE))
66 #define outb_p(val, port) out_8((u8 *)((port)+_IO_BASE), (val))
67 #define inw_p(port) in_le16((u16 *)((port)+_IO_BASE))
68 #define outw_p(val, port) out_le16((u16 *)((port)+_IO_BASE), (val))
69 #define inl_p(port) in_le32((u32 *)((port)+_IO_BASE))
70 #define outl_p(val, port) out_le32((u32 *)((port)+_IO_BASE), (val))
72 extern void _insb(volatile u8 *port, void *buf, int ns);
73 extern void _outsb(volatile u8 *port, const void *buf, int ns);
74 extern void _insw(volatile u16 *port, void *buf, int ns);
75 extern void _outsw(volatile u16 *port, const void *buf, int ns);
76 extern void _insl(volatile u32 *port, void *buf, int nl);
77 extern void _outsl(volatile u32 *port, const void *buf, int nl);
78 extern void _insw_ns(volatile u16 *port, void *buf, int ns);
79 extern void _outsw_ns(volatile u16 *port, const void *buf, int ns);
80 extern void _insl_ns(volatile u32 *port, void *buf, int nl);
81 extern void _outsl_ns(volatile u32 *port, const void *buf, int nl);
84 * The *_ns versions below don't do byte-swapping.
85 * Neither do the standard versions now, these are just here
88 #define insw_ns(port, buf, ns) _insw_ns((u16 *)((port)+_IO_BASE), (buf), (ns))
89 #define outsw_ns(port, buf, ns) _outsw_ns((u16 *)((port)+_IO_BASE), (buf), (ns))
90 #define insl_ns(port, buf, nl) _insl_ns((u32 *)((port)+_IO_BASE), (buf), (nl))
91 #define outsl_ns(port, buf, nl) _outsl_ns((u32 *)((port)+_IO_BASE), (buf), (nl))
94 #define IO_SPACE_LIMIT ~0
96 #define memset_io(a,b,c) memset((void *)(a),(b),(c))
97 #define memcpy_fromio(a,b,c) memcpy((a),(void *)(b),(c))
98 #define memcpy_toio(a,b,c) memcpy((void *)(a),(b),(c))
101 * Enforce In-order Execution of I/O:
102 * Acts as a barrier to ensure all previous I/O accesses have
103 * completed before any further ones are issued.
105 static inline void eieio(void)
107 __asm__ __volatile__ ("eieio" : : : "memory");
110 static inline void sync(void)
112 __asm__ __volatile__ ("sync" : : : "memory");
115 static inline void isync(void)
117 __asm__ __volatile__ ("isync" : : : "memory");
120 /* Enforce in-order execution of data I/O.
121 * No distinction between read/write on PPC; use eieio for all three.
123 #define iobarrier_rw() eieio()
124 #define iobarrier_r() eieio()
125 #define iobarrier_w() eieio()
128 * Non ordered and non-swapping "raw" accessors
131 #define PCI_FIX_ADDR(addr) (addr)
133 static inline unsigned char __raw_readb(const volatile void __iomem *addr)
135 return *(volatile unsigned char *)PCI_FIX_ADDR(addr);
137 static inline unsigned short __raw_readw(const volatile void __iomem *addr)
139 return *(volatile unsigned short *)PCI_FIX_ADDR(addr);
141 static inline unsigned int __raw_readl(const volatile void __iomem *addr)
143 return *(volatile unsigned int *)PCI_FIX_ADDR(addr);
145 static inline void __raw_writeb(unsigned char v, volatile void __iomem *addr)
147 *(volatile unsigned char *)PCI_FIX_ADDR(addr) = v;
149 static inline void __raw_writew(unsigned short v, volatile void __iomem *addr)
151 *(volatile unsigned short *)PCI_FIX_ADDR(addr) = v;
153 static inline void __raw_writel(unsigned int v, volatile void __iomem *addr)
155 *(volatile unsigned int *)PCI_FIX_ADDR(addr) = v;
159 * 8, 16 and 32 bit, big and little endian I/O operations, with barrier.
161 * Read operations have additional twi & isync to make sure the read
162 * is actually performed (i.e. the data has come back) before we start
163 * executing any following instructions.
165 static inline u8 in_8(const volatile unsigned char __iomem *addr)
169 __asm__ __volatile__(
170 "sync; lbz%U1%X1 %0,%1;\n"
172 "isync" : "=r" (ret) : "m" (*addr));
176 static inline void out_8(volatile unsigned char __iomem *addr, u8 val)
178 __asm__ __volatile__("sync;\n"
184 static inline u16 in_le16(const volatile unsigned short __iomem *addr)
188 __asm__ __volatile__("sync; lhbrx %0,0,%1;\n"
190 "isync" : "=r" (ret) :
191 "r" (addr), "m" (*addr));
195 static inline u16 in_be16(const volatile unsigned short __iomem *addr)
199 __asm__ __volatile__("sync; lhz%U1%X1 %0,%1;\n"
201 "isync" : "=r" (ret) : "m" (*addr));
205 static inline void out_le16(volatile unsigned short __iomem *addr, u16 val)
207 __asm__ __volatile__("sync; sthbrx %1,0,%2" : "=m" (*addr) :
208 "r" (val), "r" (addr));
211 static inline void out_be16(volatile unsigned short __iomem *addr, u16 val)
213 __asm__ __volatile__("sync; sth%U0%X0 %1,%0" : "=m" (*addr) : "r" (val));
216 static inline u32 in_le32(const volatile unsigned __iomem *addr)
220 __asm__ __volatile__("sync; lwbrx %0,0,%1;\n"
222 "isync" : "=r" (ret) :
223 "r" (addr), "m" (*addr));
227 static inline u32 in_be32(const volatile unsigned __iomem *addr)
231 __asm__ __volatile__("sync; lwz%U1%X1 %0,%1;\n"
233 "isync" : "=r" (ret) : "m" (*addr));
237 static inline void out_le32(volatile unsigned __iomem *addr, u32 val)
239 __asm__ __volatile__("sync; stwbrx %1,0,%2" : "=m" (*addr) :
240 "r" (val), "r" (addr));
243 static inline void out_be32(volatile unsigned __iomem *addr, u32 val)
245 __asm__ __volatile__("sync; stw%U0%X0 %1,%0" : "=m" (*addr) : "r" (val));
248 /* Clear and set bits in one shot. These macros can be used to clear and
249 * set multiple bits in a register using a single call. These macros can
250 * also be used to set a multiple-bit bit pattern using a mask, by
251 * specifying the mask in the 'clear' parameter and the new bit pattern
252 * in the 'set' parameter.
255 #define clrbits(type, addr, clear) \
256 out_##type((addr), in_##type(addr) & ~(clear))
258 #define setbits(type, addr, set) \
259 out_##type((addr), in_##type(addr) | (set))
261 #define clrsetbits(type, addr, clear, set) \
262 out_##type((addr), (in_##type(addr) & ~(clear)) | (set))
264 #define clrbits_be32(addr, clear) clrbits(be32, addr, clear)
265 #define setbits_be32(addr, set) setbits(be32, addr, set)
266 #define clrsetbits_be32(addr, clear, set) clrsetbits(be32, addr, clear, set)
268 #define clrbits_le32(addr, clear) clrbits(le32, addr, clear)
269 #define setbits_le32(addr, set) setbits(le32, addr, set)
270 #define clrsetbits_le32(addr, clear, set) clrsetbits(le32, addr, clear, set)
272 #define clrbits_be16(addr, clear) clrbits(be16, addr, clear)
273 #define setbits_be16(addr, set) setbits(be16, addr, set)
274 #define clrsetbits_be16(addr, clear, set) clrsetbits(be16, addr, clear, set)
276 #define clrbits_le16(addr, clear) clrbits(le16, addr, clear)
277 #define setbits_le16(addr, set) setbits(le16, addr, set)
278 #define clrsetbits_le16(addr, clear, set) clrsetbits(le16, addr, clear, set)
280 #define clrbits_8(addr, clear) clrbits(8, addr, clear)
281 #define setbits_8(addr, set) setbits(8, addr, set)
282 #define clrsetbits_8(addr, clear, set) clrsetbits(8, addr, clear, set)
285 * Given a physical address and a length, return a virtual address
286 * that can be used to access the memory range with the caching
287 * properties specified by "flags".
289 #define MAP_NOCACHE (0)
290 #define MAP_WRCOMBINE (0)
291 #define MAP_WRBACK (0)
292 #define MAP_WRTHROUGH (0)
295 map_physmem(phys_addr_t paddr, unsigned long len, unsigned long flags)
297 #ifdef CONFIG_ADDR_MAP
298 return addrmap_phys_to_virt(paddr);
300 return (void *)((unsigned long)paddr);
305 * Take down a mapping set up by map_physmem().
307 static inline void unmap_physmem(void *vaddr, unsigned long flags)
312 static inline phys_addr_t virt_to_phys(void * vaddr)
314 #ifdef CONFIG_ADDR_MAP
315 return addrmap_virt_to_phys(vaddr);
317 return (phys_addr_t)((unsigned long)vaddr);