]> git.sur5r.net Git - u-boot/blob - include/asm-ppc/io.h
Merge with /home/wd/git/u-boot/custodian/u-boot-ppc4xx
[u-boot] / include / asm-ppc / io.h
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
5  */
6
7 #ifndef _PPC_IO_H
8 #define _PPC_IO_H
9
10 #include <linux/config.h>
11 #include <asm/byteorder.h>
12
13 #define SIO_CONFIG_RA   0x398
14 #define SIO_CONFIG_RD   0x399
15
16 #ifndef _IO_BASE
17 #define _IO_BASE 0
18 #endif
19
20 #define readb(addr) in_8((volatile u8 *)(addr))
21 #define writeb(b,addr) out_8((volatile u8 *)(addr), (b))
22 #if !defined(__BIG_ENDIAN)
23 #define readw(addr) (*(volatile u16 *) (addr))
24 #define readl(addr) (*(volatile u32 *) (addr))
25 #define writew(b,addr) ((*(volatile u16 *) (addr)) = (b))
26 #define writel(b,addr) ((*(volatile u32 *) (addr)) = (b))
27 #else
28 #define readw(addr) in_le16((volatile u16 *)(addr))
29 #define readl(addr) in_le32((volatile u32 *)(addr))
30 #define writew(b,addr) out_le16((volatile u16 *)(addr),(b))
31 #define writel(b,addr) out_le32((volatile u32 *)(addr),(b))
32 #endif
33
34 /*
35  * The insw/outsw/insl/outsl macros don't do byte-swapping.
36  * They are only used in practice for transferring buffers which
37  * are arrays of bytes, and byte-swapping is not appropriate in
38  * that case.  - paulus
39  */
40 #define insb(port, buf, ns) _insb((u8 *)((port)+_IO_BASE), (buf), (ns))
41 #define outsb(port, buf, ns)    _outsb((u8 *)((port)+_IO_BASE), (buf), (ns))
42 #define insw(port, buf, ns) _insw_ns((u16 *)((port)+_IO_BASE), (buf), (ns))
43 #define outsw(port, buf, ns)    _outsw_ns((u16 *)((port)+_IO_BASE), (buf), (ns))
44 #define insl(port, buf, nl) _insl_ns((u32 *)((port)+_IO_BASE), (buf), (nl))
45 #define outsl(port, buf, nl)    _outsl_ns((u32 *)((port)+_IO_BASE), (buf), (nl))
46
47 #define inb(port)       in_8((u8 *)((port)+_IO_BASE))
48 #define outb(val, port)     out_8((u8 *)((port)+_IO_BASE), (val))
49 #if !defined(__BIG_ENDIAN)
50 #define inw(port)       in_be16((u16 *)((port)+_IO_BASE))
51 #define outw(val, port)     out_be16((u16 *)((port)+_IO_BASE), (val))
52 #define inl(port)       in_be32((u32 *)((port)+_IO_BASE))
53 #define outl(val, port)     out_be32((u32 *)((port)+_IO_BASE), (val))
54 #else
55 #define inw(port)       in_le16((u16 *)((port)+_IO_BASE))
56 #define outw(val, port)     out_le16((u16 *)((port)+_IO_BASE), (val))
57 #define inl(port)       in_le32((u32 *)((port)+_IO_BASE))
58 #define outl(val, port)     out_le32((u32 *)((port)+_IO_BASE), (val))
59 #endif
60
61 #define inb_p(port)     in_8((u8 *)((port)+_IO_BASE))
62 #define outb_p(val, port)   out_8((u8 *)((port)+_IO_BASE), (val))
63 #define inw_p(port)     in_le16((u16 *)((port)+_IO_BASE))
64 #define outw_p(val, port)   out_le16((u16 *)((port)+_IO_BASE), (val))
65 #define inl_p(port)     in_le32((u32 *)((port)+_IO_BASE))
66 #define outl_p(val, port)   out_le32((u32 *)((port)+_IO_BASE), (val))
67
68 extern void _insb(volatile u8 *port, void *buf, int ns);
69 extern void _outsb(volatile u8 *port, const void *buf, int ns);
70 extern void _insw(volatile u16 *port, void *buf, int ns);
71 extern void _outsw(volatile u16 *port, const void *buf, int ns);
72 extern void _insl(volatile u32 *port, void *buf, int nl);
73 extern void _outsl(volatile u32 *port, const void *buf, int nl);
74 extern void _insw_ns(volatile u16 *port, void *buf, int ns);
75 extern void _outsw_ns(volatile u16 *port, const void *buf, int ns);
76 extern void _insl_ns(volatile u32 *port, void *buf, int nl);
77 extern void _outsl_ns(volatile u32 *port, const void *buf, int nl);
78
79 /*
80  * The *_ns versions below don't do byte-swapping.
81  * Neither do the standard versions now, these are just here
82  * for older code.
83  */
84 #define insw_ns(port, buf, ns)  _insw_ns((u16 *)((port)+_IO_BASE), (buf), (ns))
85 #define outsw_ns(port, buf, ns) _outsw_ns((u16 *)((port)+_IO_BASE), (buf), (ns))
86 #define insl_ns(port, buf, nl)  _insl_ns((u32 *)((port)+_IO_BASE), (buf), (nl))
87 #define outsl_ns(port, buf, nl) _outsl_ns((u32 *)((port)+_IO_BASE), (buf), (nl))
88
89
90 #define IO_SPACE_LIMIT ~0
91
92 #define memset_io(a,b,c)       memset((void *)(a),(b),(c))
93 #define memcpy_fromio(a,b,c)   memcpy((a),(void *)(b),(c))
94 #define memcpy_toio(a,b,c)  memcpy((void *)(a),(b),(c))
95
96 /*
97  * Enforce In-order Execution of I/O:
98  * Acts as a barrier to ensure all previous I/O accesses have
99  * completed before any further ones are issued.
100  */
101 static inline void eieio(void)
102 {
103         __asm__ __volatile__ ("eieio" : : : "memory");
104 }
105
106 static inline void sync(void)
107 {
108         __asm__ __volatile__ ("sync" : : : "memory");
109 }
110
111 static inline void isync(void)
112 {
113         __asm__ __volatile__ ("isync" : : : "memory");
114 }
115
116 /* Enforce in-order execution of data I/O.
117  * No distinction between read/write on PPC; use eieio for all three.
118  */
119 #define iobarrier_rw() eieio()
120 #define iobarrier_r()  eieio()
121 #define iobarrier_w()  eieio()
122
123 /*
124  * 8, 16 and 32 bit, big and little endian I/O operations, with barrier.
125  *
126  * Read operations have additional twi & isync to make sure the read
127  * is actually performed (i.e. the data has come back) before we start
128  * executing any following instructions.
129  */
130 #define __iomem
131 extern inline int in_8(const volatile unsigned char __iomem *addr)
132 {
133         int ret;
134
135         __asm__ __volatile__(
136                 "sync; lbz%U1%X1 %0,%1;\n"
137                 "twi 0,%0,0;\n"
138                 "isync" : "=r" (ret) : "m" (*addr));
139         return ret;
140 }
141
142 extern inline void out_8(volatile unsigned char __iomem *addr, int val)
143 {
144         __asm__ __volatile__("stb%U0%X0 %1,%0; eieio" : "=m" (*addr) : "r" (val));
145 }
146
147 extern inline int in_le16(const volatile unsigned short __iomem *addr)
148 {
149         int ret;
150
151         __asm__ __volatile__("sync; lhbrx %0,0,%1;\n"
152                              "twi 0,%0,0;\n"
153                              "isync" : "=r" (ret) :
154                               "r" (addr), "m" (*addr));
155         return ret;
156 }
157
158 extern inline int in_be16(const volatile unsigned short __iomem *addr)
159 {
160         int ret;
161
162         __asm__ __volatile__("sync; lhz%U1%X1 %0,%1;\n"
163                              "twi 0,%0,0;\n"
164                              "isync" : "=r" (ret) : "m" (*addr));
165         return ret;
166 }
167
168 extern inline void out_le16(volatile unsigned short __iomem *addr, int val)
169 {
170         __asm__ __volatile__("sync; sthbrx %1,0,%2" : "=m" (*addr) :
171                               "r" (val), "r" (addr));
172 }
173
174 extern inline void out_be16(volatile unsigned short __iomem *addr, int val)
175 {
176         __asm__ __volatile__("sync; sth%U0%X0 %1,%0" : "=m" (*addr) : "r" (val));
177 }
178
179 extern inline unsigned in_le32(const volatile unsigned __iomem *addr)
180 {
181         unsigned ret;
182
183         __asm__ __volatile__("sync; lwbrx %0,0,%1;\n"
184                              "twi 0,%0,0;\n"
185                              "isync" : "=r" (ret) :
186                              "r" (addr), "m" (*addr));
187         return ret;
188 }
189
190 extern inline unsigned in_be32(const volatile unsigned __iomem *addr)
191 {
192         unsigned ret;
193
194         __asm__ __volatile__("sync; lwz%U1%X1 %0,%1;\n"
195                              "twi 0,%0,0;\n"
196                              "isync" : "=r" (ret) : "m" (*addr));
197         return ret;
198 }
199
200 extern inline void out_le32(volatile unsigned __iomem *addr, int val)
201 {
202         __asm__ __volatile__("sync; stwbrx %1,0,%2" : "=m" (*addr) :
203                              "r" (val), "r" (addr));
204 }
205
206 extern inline void out_be32(volatile unsigned __iomem *addr, int val)
207 {
208         __asm__ __volatile__("sync; stw%U0%X0 %1,%0" : "=m" (*addr) : "r" (val));
209 }
210
211 #endif