x86/mm/pat: Don't report PAT on CPUs that don't support it
[linux/fpc-iii.git] / arch / sparc / include / asm / io_64.h
blobc32fa3f752c8ea4954d2d2faeb7bc3f1c2015453
1 #ifndef __SPARC64_IO_H
2 #define __SPARC64_IO_H
4 #include <linux/kernel.h>
5 #include <linux/compiler.h>
6 #include <linux/types.h>
8 #include <asm/page.h> /* IO address mapping routines need this */
9 #include <asm/asi.h>
10 #include <asm-generic/pci_iomap.h>
12 /* BIO layer definitions. */
13 extern unsigned long kern_base, kern_size;
15 /* __raw_{read,write}{b,w,l,q} uses direct access.
16 * Access the memory as big endian bypassing the cache
17 * by using ASI_PHYS_BYPASS_EC_E
19 #define __raw_readb __raw_readb
20 static inline u8 __raw_readb(const volatile void __iomem *addr)
22 u8 ret;
24 __asm__ __volatile__("lduba\t[%1] %2, %0\t/* pci_raw_readb */"
25 : "=r" (ret)
26 : "r" (addr), "i" (ASI_PHYS_BYPASS_EC_E));
28 return ret;
31 #define __raw_readw __raw_readw
32 static inline u16 __raw_readw(const volatile void __iomem *addr)
34 u16 ret;
36 __asm__ __volatile__("lduha\t[%1] %2, %0\t/* pci_raw_readw */"
37 : "=r" (ret)
38 : "r" (addr), "i" (ASI_PHYS_BYPASS_EC_E));
40 return ret;
43 #define __raw_readl __raw_readl
44 static inline u32 __raw_readl(const volatile void __iomem *addr)
46 u32 ret;
48 __asm__ __volatile__("lduwa\t[%1] %2, %0\t/* pci_raw_readl */"
49 : "=r" (ret)
50 : "r" (addr), "i" (ASI_PHYS_BYPASS_EC_E));
52 return ret;
55 #define __raw_readq __raw_readq
56 static inline u64 __raw_readq(const volatile void __iomem *addr)
58 u64 ret;
60 __asm__ __volatile__("ldxa\t[%1] %2, %0\t/* pci_raw_readq */"
61 : "=r" (ret)
62 : "r" (addr), "i" (ASI_PHYS_BYPASS_EC_E));
64 return ret;
67 #define __raw_writeb __raw_writeb
68 static inline void __raw_writeb(u8 b, const volatile void __iomem *addr)
70 __asm__ __volatile__("stba\t%r0, [%1] %2\t/* pci_raw_writeb */"
71 : /* no outputs */
72 : "Jr" (b), "r" (addr), "i" (ASI_PHYS_BYPASS_EC_E));
75 #define __raw_writew __raw_writew
76 static inline void __raw_writew(u16 w, const volatile void __iomem *addr)
78 __asm__ __volatile__("stha\t%r0, [%1] %2\t/* pci_raw_writew */"
79 : /* no outputs */
80 : "Jr" (w), "r" (addr), "i" (ASI_PHYS_BYPASS_EC_E));
83 #define __raw_writel __raw_writel
84 static inline void __raw_writel(u32 l, const volatile void __iomem *addr)
86 __asm__ __volatile__("stwa\t%r0, [%1] %2\t/* pci_raw_writel */"
87 : /* no outputs */
88 : "Jr" (l), "r" (addr), "i" (ASI_PHYS_BYPASS_EC_E));
91 #define __raw_writeq __raw_writeq
92 static inline void __raw_writeq(u64 q, const volatile void __iomem *addr)
94 __asm__ __volatile__("stxa\t%r0, [%1] %2\t/* pci_raw_writeq */"
95 : /* no outputs */
96 : "Jr" (q), "r" (addr), "i" (ASI_PHYS_BYPASS_EC_E));
99 /* Memory functions, same as I/O accesses on Ultra.
100 * Access memory as little endian bypassing
101 * the cache by using ASI_PHYS_BYPASS_EC_E_L
103 #define readb readb
104 #define readb_relaxed readb
105 static inline u8 readb(const volatile void __iomem *addr)
106 { u8 ret;
108 __asm__ __volatile__("lduba\t[%1] %2, %0\t/* pci_readb */"
109 : "=r" (ret)
110 : "r" (addr), "i" (ASI_PHYS_BYPASS_EC_E_L)
111 : "memory");
112 return ret;
115 #define readw readw
116 #define readw_relaxed readw
117 static inline u16 readw(const volatile void __iomem *addr)
118 { u16 ret;
120 __asm__ __volatile__("lduha\t[%1] %2, %0\t/* pci_readw */"
121 : "=r" (ret)
122 : "r" (addr), "i" (ASI_PHYS_BYPASS_EC_E_L)
123 : "memory");
125 return ret;
128 #define readl readl
129 #define readl_relaxed readl
130 static inline u32 readl(const volatile void __iomem *addr)
131 { u32 ret;
133 __asm__ __volatile__("lduwa\t[%1] %2, %0\t/* pci_readl */"
134 : "=r" (ret)
135 : "r" (addr), "i" (ASI_PHYS_BYPASS_EC_E_L)
136 : "memory");
138 return ret;
141 #define readq readq
142 #define readq_relaxed readq
143 static inline u64 readq(const volatile void __iomem *addr)
144 { u64 ret;
146 __asm__ __volatile__("ldxa\t[%1] %2, %0\t/* pci_readq */"
147 : "=r" (ret)
148 : "r" (addr), "i" (ASI_PHYS_BYPASS_EC_E_L)
149 : "memory");
151 return ret;
154 #define writeb writeb
155 #define writeb_relaxed writeb
156 static inline void writeb(u8 b, volatile void __iomem *addr)
158 __asm__ __volatile__("stba\t%r0, [%1] %2\t/* pci_writeb */"
159 : /* no outputs */
160 : "Jr" (b), "r" (addr), "i" (ASI_PHYS_BYPASS_EC_E_L)
161 : "memory");
164 #define writew writew
165 #define writew_relaxed writew
166 static inline void writew(u16 w, volatile void __iomem *addr)
168 __asm__ __volatile__("stha\t%r0, [%1] %2\t/* pci_writew */"
169 : /* no outputs */
170 : "Jr" (w), "r" (addr), "i" (ASI_PHYS_BYPASS_EC_E_L)
171 : "memory");
174 #define writel writel
175 #define writel_relaxed writel
176 static inline void writel(u32 l, volatile void __iomem *addr)
178 __asm__ __volatile__("stwa\t%r0, [%1] %2\t/* pci_writel */"
179 : /* no outputs */
180 : "Jr" (l), "r" (addr), "i" (ASI_PHYS_BYPASS_EC_E_L)
181 : "memory");
184 #define writeq writeq
185 #define writeq_relaxed writeq
186 static inline void writeq(u64 q, volatile void __iomem *addr)
188 __asm__ __volatile__("stxa\t%r0, [%1] %2\t/* pci_writeq */"
189 : /* no outputs */
190 : "Jr" (q), "r" (addr), "i" (ASI_PHYS_BYPASS_EC_E_L)
191 : "memory");
194 #define inb inb
195 static inline u8 inb(unsigned long addr)
197 return readb((volatile void __iomem *)addr);
200 #define inw inw
201 static inline u16 inw(unsigned long addr)
203 return readw((volatile void __iomem *)addr);
206 #define inl inl
207 static inline u32 inl(unsigned long addr)
209 return readl((volatile void __iomem *)addr);
212 #define outb outb
213 static inline void outb(u8 b, unsigned long addr)
215 writeb(b, (volatile void __iomem *)addr);
218 #define outw outw
219 static inline void outw(u16 w, unsigned long addr)
221 writew(w, (volatile void __iomem *)addr);
224 #define outl outl
225 static inline void outl(u32 l, unsigned long addr)
227 writel(l, (volatile void __iomem *)addr);
231 #define inb_p(__addr) inb(__addr)
232 #define outb_p(__b, __addr) outb(__b, __addr)
233 #define inw_p(__addr) inw(__addr)
234 #define outw_p(__w, __addr) outw(__w, __addr)
235 #define inl_p(__addr) inl(__addr)
236 #define outl_p(__l, __addr) outl(__l, __addr)
238 void outsb(unsigned long, const void *, unsigned long);
239 void outsw(unsigned long, const void *, unsigned long);
240 void outsl(unsigned long, const void *, unsigned long);
241 void insb(unsigned long, void *, unsigned long);
242 void insw(unsigned long, void *, unsigned long);
243 void insl(unsigned long, void *, unsigned long);
245 static inline void ioread8_rep(void __iomem *port, void *buf, unsigned long count)
247 insb((unsigned long __force)port, buf, count);
249 static inline void ioread16_rep(void __iomem *port, void *buf, unsigned long count)
251 insw((unsigned long __force)port, buf, count);
254 static inline void ioread32_rep(void __iomem *port, void *buf, unsigned long count)
256 insl((unsigned long __force)port, buf, count);
259 static inline void iowrite8_rep(void __iomem *port, const void *buf, unsigned long count)
261 outsb((unsigned long __force)port, buf, count);
264 static inline void iowrite16_rep(void __iomem *port, const void *buf, unsigned long count)
266 outsw((unsigned long __force)port, buf, count);
269 static inline void iowrite32_rep(void __iomem *port, const void *buf, unsigned long count)
271 outsl((unsigned long __force)port, buf, count);
274 /* Valid I/O Space regions are anywhere, because each PCI bus supported
275 * can live in an arbitrary area of the physical address range.
277 #define IO_SPACE_LIMIT 0xffffffffffffffffUL
279 /* Now, SBUS variants, only difference from PCI is that we do
280 * not use little-endian ASIs.
282 static inline u8 sbus_readb(const volatile void __iomem *addr)
284 return __raw_readb(addr);
287 static inline u16 sbus_readw(const volatile void __iomem *addr)
289 return __raw_readw(addr);
292 static inline u32 sbus_readl(const volatile void __iomem *addr)
294 return __raw_readl(addr);
297 static inline u64 sbus_readq(const volatile void __iomem *addr)
299 return __raw_readq(addr);
302 static inline void sbus_writeb(u8 b, volatile void __iomem *addr)
304 __raw_writeb(b, addr);
307 static inline void sbus_writew(u16 w, volatile void __iomem *addr)
309 __raw_writew(w, addr);
312 static inline void sbus_writel(u32 l, volatile void __iomem *addr)
314 __raw_writel(l, addr);
317 static inline void sbus_writeq(u64 q, volatile void __iomem *addr)
319 __raw_writeq(q, addr);
322 static inline void sbus_memset_io(volatile void __iomem *dst, int c, __kernel_size_t n)
324 while(n--) {
325 sbus_writeb(c, dst);
326 dst++;
330 static inline void memset_io(volatile void __iomem *dst, int c, __kernel_size_t n)
332 volatile void __iomem *d = dst;
334 while (n--) {
335 writeb(c, d);
336 d++;
340 static inline void sbus_memcpy_fromio(void *dst, const volatile void __iomem *src,
341 __kernel_size_t n)
343 char *d = dst;
345 while (n--) {
346 char tmp = sbus_readb(src);
347 *d++ = tmp;
348 src++;
353 static inline void memcpy_fromio(void *dst, const volatile void __iomem *src,
354 __kernel_size_t n)
356 char *d = dst;
358 while (n--) {
359 char tmp = readb(src);
360 *d++ = tmp;
361 src++;
365 static inline void sbus_memcpy_toio(volatile void __iomem *dst, const void *src,
366 __kernel_size_t n)
368 const char *s = src;
369 volatile void __iomem *d = dst;
371 while (n--) {
372 char tmp = *s++;
373 sbus_writeb(tmp, d);
374 d++;
378 static inline void memcpy_toio(volatile void __iomem *dst, const void *src,
379 __kernel_size_t n)
381 const char *s = src;
382 volatile void __iomem *d = dst;
384 while (n--) {
385 char tmp = *s++;
386 writeb(tmp, d);
387 d++;
391 #define mmiowb()
393 #ifdef __KERNEL__
395 /* On sparc64 we have the whole physical IO address space accessible
396 * using physically addressed loads and stores, so this does nothing.
398 static inline void __iomem *ioremap(unsigned long offset, unsigned long size)
400 return (void __iomem *)offset;
403 #define ioremap_nocache(X,Y) ioremap((X),(Y))
404 #define ioremap_wc(X,Y) ioremap((X),(Y))
405 #define ioremap_wt(X,Y) ioremap((X),(Y))
407 static inline void iounmap(volatile void __iomem *addr)
411 #define ioread8 readb
412 #define ioread16 readw
413 #define ioread16be __raw_readw
414 #define ioread32 readl
415 #define ioread32be __raw_readl
416 #define iowrite8 writeb
417 #define iowrite16 writew
418 #define iowrite16be __raw_writew
419 #define iowrite32 writel
420 #define iowrite32be __raw_writel
422 /* Create a virtual mapping cookie for an IO port range */
423 void __iomem *ioport_map(unsigned long port, unsigned int nr);
424 void ioport_unmap(void __iomem *);
426 /* Create a virtual mapping cookie for a PCI BAR (memory or IO) */
427 struct pci_dev;
428 void pci_iounmap(struct pci_dev *dev, void __iomem *);
430 static inline int sbus_can_dma_64bit(void)
432 return 1;
434 static inline int sbus_can_burst64(void)
436 return 1;
438 struct device;
439 void sbus_set_sbus64(struct device *, int);
442 * Convert a physical pointer to a virtual kernel pointer for /dev/mem
443 * access
445 #define xlate_dev_mem_ptr(p) __va(p)
448 * Convert a virtual cached pointer to an uncached pointer
450 #define xlate_dev_kmem_ptr(p) p
452 #endif
454 #endif /* !(__SPARC64_IO_H) */