1
2
3
4
5
6
7
8
9
10
11#ifndef _ASM_MICROBLAZE_IO_H
12#define _ASM_MICROBLAZE_IO_H
13
14#include <asm/byteorder.h>
15#include <asm/page.h>
16#include <linux/types.h>
17#include <linux/mm.h>
18
19
20#define IO_SPACE_LIMIT (0xFFFFFFFF)
21
22static inline unsigned char __raw_readb(const volatile void __iomem *addr)
23{
24 return *(volatile unsigned char __force *)addr;
25}
26static inline unsigned short __raw_readw(const volatile void __iomem *addr)
27{
28 return *(volatile unsigned short __force *)addr;
29}
30static inline unsigned int __raw_readl(const volatile void __iomem *addr)
31{
32 return *(volatile unsigned int __force *)addr;
33}
34static inline unsigned long __raw_readq(const volatile void __iomem *addr)
35{
36 return *(volatile unsigned long __force *)addr;
37}
38static inline void __raw_writeb(unsigned char v, volatile void __iomem *addr)
39{
40 *(volatile unsigned char __force *)addr = v;
41}
42static inline void __raw_writew(unsigned short v, volatile void __iomem *addr)
43{
44 *(volatile unsigned short __force *)addr = v;
45}
46static inline void __raw_writel(unsigned int v, volatile void __iomem *addr)
47{
48 *(volatile unsigned int __force *)addr = v;
49}
50static inline void __raw_writeq(unsigned long v, volatile void __iomem *addr)
51{
52 *(volatile unsigned long __force *)addr = v;
53}
54
55
56
57
58
59
60static inline unsigned char readb(const volatile void __iomem *addr)
61{
62 return *(volatile unsigned char __force *)addr;
63}
64static inline unsigned short readw(const volatile void __iomem *addr)
65{
66 return le16_to_cpu(*(volatile unsigned short __force *)addr);
67}
68static inline unsigned int readl(const volatile void __iomem *addr)
69{
70 return le32_to_cpu(*(volatile unsigned int __force *)addr);
71}
72static inline void writeb(unsigned char v, volatile void __iomem *addr)
73{
74 *(volatile unsigned char __force *)addr = v;
75}
76static inline void writew(unsigned short v, volatile void __iomem *addr)
77{
78 *(volatile unsigned short __force *)addr = cpu_to_le16(v);
79}
80static inline void writel(unsigned int v, volatile void __iomem *addr)
81{
82 *(volatile unsigned int __force *)addr = cpu_to_le32(v);
83}
84
85
86
87
88#define ioread8(addr) __raw_readb((u8 *)(addr))
89#define ioread16(addr) __raw_readw((u16 *)(addr))
90#define ioread32(addr) __raw_readl((u32 *)(addr))
91#define iowrite8(v, addr) __raw_writeb((u8)(v), (u8 *)(addr))
92#define iowrite16(v, addr) __raw_writew((u16)(v), (u16 *)(addr))
93#define iowrite32(v, addr) __raw_writel((u32)(v), (u32 *)(addr))
94
95
96
97
98
99
100
101#define inb(port) readb((u8 *)((port)))
102#define outb(val, port) writeb((val), (u8 *)((unsigned long)(port)))
103#define inw(port) readw((u16 *)((port)))
104#define outw(val, port) writew((val), (u16 *)((unsigned long)(port)))
105#define inl(port) readl((u32 *)((port)))
106#define outl(val, port) writel((val), (u32 *)((unsigned long)(port)))
107
108#define inb_p(port) inb((port))
109#define outb_p(val, port) outb((val), (port))
110#define inw_p(port) inw((port))
111#define outw_p(val, port) outw((val), (port))
112#define inl_p(port) inl((port))
113#define outl_p(val, port) outl((val), (port))
114
115#define memset_io(a, b, c) memset((void *)(a), (b), (c))
116#define memcpy_fromio(a, b, c) memcpy((a), (void *)(b), (c))
117#define memcpy_toio(a, b, c) memcpy((void *)(a), (b), (c))
118
119#ifdef CONFIG_MMU
120
121#define mm_ptov(addr) ((void *)__phys_to_virt(addr))
122#define mm_vtop(addr) ((unsigned long)__virt_to_phys(addr))
123#define phys_to_virt(addr) ((void *)__phys_to_virt(addr))
124#define virt_to_phys(addr) ((unsigned long)__virt_to_phys(addr))
125#define virt_to_bus(addr) ((unsigned long)__virt_to_phys(addr))
126
127#define __page_address(page) \
128 (PAGE_OFFSET + (((page) - mem_map) << PAGE_SHIFT))
129#define page_to_phys(page) virt_to_phys((void *)__page_address(page))
130#define page_to_bus(page) (page_to_phys(page))
131#define bus_to_virt(addr) (phys_to_virt(addr))
132
133extern void iounmap(void *addr);
134
135
136extern void __iomem *ioremap(phys_addr_t address, unsigned long size);
137#define ioremap_writethrough(addr, size) ioremap((addr), (size))
138#define ioremap_nocache(addr, size) ioremap((addr), (size))
139#define ioremap_fullcache(addr, size) ioremap((addr), (size))
140
141#else
142
143
144
145
146
147
148
149
150
151
152
153
154
155static inline unsigned long __iomem virt_to_phys(volatile void *address)
156{
157 return __pa((unsigned long)address);
158}
159
160#define virt_to_bus virt_to_phys
161
162
163
164
165
166
167
168
169
170
171
172
173
174static inline void *phys_to_virt(unsigned long address)
175{
176 return (void *)__va(address);
177}
178
179#define bus_to_virt(a) phys_to_virt(a)
180
181static inline void __iomem *__ioremap(phys_addr_t address, unsigned long size,
182 unsigned long flags)
183{
184 return (void *)address;
185}
186
187#define ioremap(physaddr, size) ((void __iomem *)(unsigned long)(physaddr))
188#define iounmap(addr) ((void)0)
189#define ioremap_nocache(physaddr, size) ioremap(physaddr, size)
190
191#endif
192
193
194
195
196
197#define xlate_dev_mem_ptr(p) __va(p)
198
199
200
201
202#define xlate_dev_kmem_ptr(p) p
203
204
205
206
207#define out_be32(a, v) __raw_writel((v), (void __iomem __force *)(a))
208#define out_be16(a, v) __raw_writew((v), (a))
209
210#define in_be32(a) __raw_readl((const void __iomem __force *)(a))
211#define in_be16(a) __raw_readw(a)
212
213#define writel_be(v, a) out_be32((__force unsigned *)a, v)
214#define readl_be(a) in_be32((__force unsigned *)a)
215
216
217
218
219
220#define out_le32(a, v) __raw_writel(__cpu_to_le32(v), (a));
221#define out_le16(a, v) __raw_writew(__cpu_to_le16(v), (a))
222
223#define in_le32(a) __le32_to_cpu(__raw_readl(a))
224#define in_le16(a) __le16_to_cpu(__raw_readw(a))
225
226
227#define out_8(a, v) __raw_writeb((v), (a))
228#define in_8(a) __raw_readb(a)
229
230
231static inline void __iomem *ioport_map(unsigned long port, unsigned int len)
232{
233 return (void __iomem *) (port);
234}
235
236static inline void ioport_unmap(void __iomem *addr)
237{
238
239}
240
241#endif
242