]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - arch/sparc/include/asm/io_64.h
Merge branches 'acpi-fan', 'acpi-video' and 'acpi-ec'
[mirror_ubuntu-focal-kernel.git] / arch / sparc / include / asm / io_64.h
CommitLineData
f5e706ad
SR
1#ifndef __SPARC64_IO_H
2#define __SPARC64_IO_H
3
4#include <linux/kernel.h>
5#include <linux/compiler.h>
6#include <linux/types.h>
7
8#include <asm/page.h> /* IO address mapping routines need this */
f5e706ad 9#include <asm/asi.h>
a21a2fd4 10#include <asm-generic/pci_iomap.h>
f5e706ad 11
f5e706ad
SR
12/* BIO layer definitions. */
13extern unsigned long kern_base, kern_size;
f5e706ad 14
add79d68
SR
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
18 */
19#define __raw_readb __raw_readb
20static inline u8 __raw_readb(const volatile void __iomem *addr)
f5e706ad
SR
21{
22 u8 ret;
23
add79d68 24 __asm__ __volatile__("lduba\t[%1] %2, %0\t/* pci_raw_readb */"
f5e706ad 25 : "=r" (ret)
add79d68 26 : "r" (addr), "i" (ASI_PHYS_BYPASS_EC_E));
f5e706ad
SR
27
28 return ret;
29}
30
add79d68
SR
31#define __raw_readw __raw_readw
32static inline u16 __raw_readw(const volatile void __iomem *addr)
f5e706ad
SR
33{
34 u16 ret;
35
add79d68 36 __asm__ __volatile__("lduha\t[%1] %2, %0\t/* pci_raw_readw */"
f5e706ad 37 : "=r" (ret)
add79d68 38 : "r" (addr), "i" (ASI_PHYS_BYPASS_EC_E));
f5e706ad
SR
39
40 return ret;
41}
42
add79d68
SR
43#define __raw_readl __raw_readl
44static inline u32 __raw_readl(const volatile void __iomem *addr)
f5e706ad
SR
45{
46 u32 ret;
47
add79d68 48 __asm__ __volatile__("lduwa\t[%1] %2, %0\t/* pci_raw_readl */"
f5e706ad 49 : "=r" (ret)
add79d68 50 : "r" (addr), "i" (ASI_PHYS_BYPASS_EC_E));
f5e706ad
SR
51
52 return ret;
53}
54
add79d68
SR
55#define __raw_readq __raw_readq
56static inline u64 __raw_readq(const volatile void __iomem *addr)
f5e706ad 57{
add79d68 58 u64 ret;
f5e706ad 59
add79d68
SR
60 __asm__ __volatile__("ldxa\t[%1] %2, %0\t/* pci_raw_readq */"
61 : "=r" (ret)
62 : "r" (addr), "i" (ASI_PHYS_BYPASS_EC_E));
f5e706ad 63
add79d68 64 return ret;
f5e706ad
SR
65}
66
add79d68
SR
67#define __raw_writeb __raw_writeb
68static inline void __raw_writeb(u8 b, const volatile void __iomem *addr)
f5e706ad 69{
add79d68
SR
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));
f5e706ad
SR
73}
74
add79d68
SR
75#define __raw_writew __raw_writew
76static inline void __raw_writew(u16 w, const volatile void __iomem *addr)
f5e706ad 77{
add79d68
SR
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));
f5e706ad
SR
81}
82
add79d68
SR
83#define __raw_writel __raw_writel
84static inline void __raw_writel(u32 l, const volatile void __iomem *addr)
f5e706ad 85{
add79d68
SR
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));
f5e706ad
SR
89}
90
add79d68
SR
91#define __raw_writeq __raw_writeq
92static inline void __raw_writeq(u64 q, const volatile void __iomem *addr)
f5e706ad 93{
add79d68
SR
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));
f5e706ad
SR
97}
98
add79d68
SR
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
102 */
79294d7e 103#define readb readb
7c3969c3 104#define readb_relaxed readb
79294d7e 105static inline u8 readb(const volatile void __iomem *addr)
f5e706ad
SR
106{ u8 ret;
107
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;
113}
114
79294d7e 115#define readw readw
7c3969c3 116#define readw_relaxed readw
79294d7e 117static inline u16 readw(const volatile void __iomem *addr)
f5e706ad
SR
118{ u16 ret;
119
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");
124
125 return ret;
126}
127
79294d7e 128#define readl readl
7c3969c3 129#define readl_relaxed readl
79294d7e 130static inline u32 readl(const volatile void __iomem *addr)
f5e706ad
SR
131{ u32 ret;
132
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");
137
138 return ret;
139}
140
79294d7e 141#define readq readq
1191ccb3 142#define readq_relaxed readq
79294d7e 143static inline u64 readq(const volatile void __iomem *addr)
f5e706ad
SR
144{ u64 ret;
145
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");
150
151 return ret;
152}
153
79294d7e 154#define writeb writeb
7c3969c3 155#define writeb_relaxed writeb
79294d7e 156static inline void writeb(u8 b, volatile void __iomem *addr)
f5e706ad
SR
157{
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");
162}
163
79294d7e 164#define writew writew
7c3969c3 165#define writew_relaxed writew
79294d7e 166static inline void writew(u16 w, volatile void __iomem *addr)
f5e706ad
SR
167{
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");
172}
173
79294d7e 174#define writel writel
7c3969c3 175#define writel_relaxed writel
79294d7e 176static inline void writel(u32 l, volatile void __iomem *addr)
f5e706ad
SR
177{
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");
182}
183
79294d7e 184#define writeq writeq
1191ccb3 185#define writeq_relaxed writeq
79294d7e 186static inline void writeq(u64 q, volatile void __iomem *addr)
f5e706ad
SR
187{
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");
192}
193
add79d68
SR
194#define inb inb
195static inline u8 inb(unsigned long addr)
f5e706ad 196{
453c9abd 197 return readb((volatile void __iomem *)addr);
f5e706ad
SR
198}
199
add79d68
SR
200#define inw inw
201static inline u16 inw(unsigned long addr)
f5e706ad 202{
453c9abd 203 return readw((volatile void __iomem *)addr);
f5e706ad
SR
204}
205
add79d68
SR
206#define inl inl
207static inline u32 inl(unsigned long addr)
f5e706ad 208{
453c9abd 209 return readl((volatile void __iomem *)addr);
f5e706ad
SR
210}
211
add79d68
SR
212#define outb outb
213static inline void outb(u8 b, unsigned long addr)
f5e706ad 214{
453c9abd 215 writeb(b, (volatile void __iomem *)addr);
f5e706ad
SR
216}
217
add79d68
SR
218#define outw outw
219static inline void outw(u16 w, unsigned long addr)
f5e706ad 220{
453c9abd 221 writew(w, (volatile void __iomem *)addr);
f5e706ad
SR
222}
223
add79d68
SR
224#define outl outl
225static inline void outl(u32 l, unsigned long addr)
f5e706ad 226{
453c9abd 227 writel(l, (volatile void __iomem *)addr);
f5e706ad
SR
228}
229
add79d68
SR
230
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)
237
238void outsb(unsigned long, const void *, unsigned long);
239void outsw(unsigned long, const void *, unsigned long);
240void outsl(unsigned long, const void *, unsigned long);
241void insb(unsigned long, void *, unsigned long);
242void insw(unsigned long, void *, unsigned long);
243void insl(unsigned long, void *, unsigned long);
244
245static inline void ioread8_rep(void __iomem *port, void *buf, unsigned long count)
f5e706ad 246{
add79d68
SR
247 insb((unsigned long __force)port, buf, count);
248}
249static inline void ioread16_rep(void __iomem *port, void *buf, unsigned long count)
250{
251 insw((unsigned long __force)port, buf, count);
f5e706ad
SR
252}
253
add79d68 254static inline void ioread32_rep(void __iomem *port, void *buf, unsigned long count)
f5e706ad 255{
add79d68
SR
256 insl((unsigned long __force)port, buf, count);
257}
258
259static inline void iowrite8_rep(void __iomem *port, const void *buf, unsigned long count)
260{
261 outsb((unsigned long __force)port, buf, count);
f5e706ad
SR
262}
263
add79d68
SR
264static inline void iowrite16_rep(void __iomem *port, const void *buf, unsigned long count)
265{
266 outsw((unsigned long __force)port, buf, count);
267}
268
269static inline void iowrite32_rep(void __iomem *port, const void *buf, unsigned long count)
270{
271 outsl((unsigned long __force)port, buf, count);
272}
273
f5e706ad
SR
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.
276 */
277#define IO_SPACE_LIMIT 0xffffffffffffffffUL
278
279/* Now, SBUS variants, only difference from PCI is that we do
280 * not use little-endian ASIs.
281 */
79294d7e 282static inline u8 sbus_readb(const volatile void __iomem *addr)
f5e706ad 283{
453c9abd 284 return __raw_readb(addr);
f5e706ad
SR
285}
286
79294d7e 287static inline u16 sbus_readw(const volatile void __iomem *addr)
f5e706ad 288{
453c9abd 289 return __raw_readw(addr);
f5e706ad
SR
290}
291
79294d7e 292static inline u32 sbus_readl(const volatile void __iomem *addr)
f5e706ad 293{
453c9abd 294 return __raw_readl(addr);
f5e706ad
SR
295}
296
79294d7e 297static inline u64 sbus_readq(const volatile void __iomem *addr)
f5e706ad 298{
453c9abd 299 return __raw_readq(addr);
f5e706ad
SR
300}
301
79294d7e 302static inline void sbus_writeb(u8 b, volatile void __iomem *addr)
f5e706ad 303{
453c9abd 304 __raw_writeb(b, addr);
f5e706ad
SR
305}
306
79294d7e 307static inline void sbus_writew(u16 w, volatile void __iomem *addr)
f5e706ad 308{
453c9abd 309 __raw_writew(w, addr);
f5e706ad
SR
310}
311
79294d7e 312static inline void sbus_writel(u32 l, volatile void __iomem *addr)
f5e706ad 313{
453c9abd 314 __raw_writel(l, addr);
f5e706ad
SR
315}
316
453c9abd 317static inline void sbus_writeq(u64 q, volatile void __iomem *addr)
f5e706ad 318{
453c9abd 319 __raw_writeq(q, addr);
f5e706ad
SR
320}
321
79294d7e 322static inline void sbus_memset_io(volatile void __iomem *dst, int c, __kernel_size_t n)
f5e706ad
SR
323{
324 while(n--) {
325 sbus_writeb(c, dst);
326 dst++;
327 }
328}
329
79294d7e 330static inline void memset_io(volatile void __iomem *dst, int c, __kernel_size_t n)
f5e706ad
SR
331{
332 volatile void __iomem *d = dst;
333
334 while (n--) {
335 writeb(c, d);
336 d++;
337 }
338}
339
79294d7e
SR
340static inline void sbus_memcpy_fromio(void *dst, const volatile void __iomem *src,
341 __kernel_size_t n)
f11b478d
JH
342{
343 char *d = dst;
344
345 while (n--) {
346 char tmp = sbus_readb(src);
347 *d++ = tmp;
348 src++;
349 }
350}
351
f11b478d 352
79294d7e
SR
353static inline void memcpy_fromio(void *dst, const volatile void __iomem *src,
354 __kernel_size_t n)
f5e706ad
SR
355{
356 char *d = dst;
357
358 while (n--) {
359 char tmp = readb(src);
360 *d++ = tmp;
361 src++;
362 }
363}
364
79294d7e
SR
365static inline void sbus_memcpy_toio(volatile void __iomem *dst, const void *src,
366 __kernel_size_t n)
f11b478d
JH
367{
368 const char *s = src;
369 volatile void __iomem *d = dst;
370
371 while (n--) {
372 char tmp = *s++;
373 sbus_writeb(tmp, d);
374 d++;
375 }
376}
377
79294d7e
SR
378static inline void memcpy_toio(volatile void __iomem *dst, const void *src,
379 __kernel_size_t n)
f5e706ad
SR
380{
381 const char *s = src;
382 volatile void __iomem *d = dst;
383
384 while (n--) {
385 char tmp = *s++;
386 writeb(tmp, d);
387 d++;
388 }
389}
390
f5e706ad
SR
391#define mmiowb()
392
393#ifdef __KERNEL__
394
395/* On sparc64 we have the whole physical IO address space accessible
396 * using physically addressed loads and stores, so this does nothing.
397 */
398static inline void __iomem *ioremap(unsigned long offset, unsigned long size)
399{
400 return (void __iomem *)offset;
401}
402
403#define ioremap_nocache(X,Y) ioremap((X),(Y))
428695b8 404#define ioremap_wc(X,Y) ioremap((X),(Y))
f5e706ad
SR
405
406static inline void iounmap(volatile void __iomem *addr)
407{
408}
409
410#define ioread8(X) readb(X)
411#define ioread16(X) readw(X)
1bff4dbb 412#define ioread16be(X) __raw_readw(X)
f5e706ad 413#define ioread32(X) readl(X)
1bff4dbb 414#define ioread32be(X) __raw_readl(X)
f5e706ad
SR
415#define iowrite8(val,X) writeb(val,X)
416#define iowrite16(val,X) writew(val,X)
1bff4dbb 417#define iowrite16be(val,X) __raw_writew(val,X)
f5e706ad 418#define iowrite32(val,X) writel(val,X)
1bff4dbb 419#define iowrite32be(val,X) __raw_writel(val,X)
f5e706ad
SR
420
421/* Create a virtual mapping cookie for an IO port range */
f05a6865
SR
422void __iomem *ioport_map(unsigned long port, unsigned int nr);
423void ioport_unmap(void __iomem *);
f5e706ad
SR
424
425/* Create a virtual mapping cookie for a PCI BAR (memory or IO) */
426struct pci_dev;
f05a6865 427void pci_iounmap(struct pci_dev *dev, void __iomem *);
f5e706ad 428
63237eeb
DM
429static inline int sbus_can_dma_64bit(void)
430{
431 return 1;
432}
433static inline int sbus_can_burst64(void)
434{
435 return 1;
436}
437struct device;
f05a6865 438void sbus_set_sbus64(struct device *, int);
63237eeb 439
f5e706ad
SR
440/*
441 * Convert a physical pointer to a virtual kernel pointer for /dev/mem
442 * access
443 */
444#define xlate_dev_mem_ptr(p) __va(p)
445
446/*
447 * Convert a virtual cached pointer to an uncached pointer
448 */
449#define xlate_dev_kmem_ptr(p) p
450
451#endif
452
453#endif /* !(__SPARC64_IO_H) */