Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | #ifndef _ASM_IA64_IO_H |
| 3 | #define _ASM_IA64_IO_H |
| 4 | |
| 5 | /* |
| 6 | * This file contains the definitions for the emulated IO instructions |
| 7 | * inb/inw/inl/outb/outw/outl and the "string versions" of the same |
| 8 | * (insb/insw/insl/outsb/outsw/outsl). You can also use "pausing" |
| 9 | * versions of the single-IO instructions (inb_p/inw_p/..). |
| 10 | * |
| 11 | * This file is not meant to be obfuscating: it's just complicated to |
| 12 | * (a) handle it all in a way that makes gcc able to optimize it as |
| 13 | * well as possible and (b) trying to avoid writing the same thing |
| 14 | * over and over again with slight variations and possibly making a |
| 15 | * mistake somewhere. |
| 16 | * |
| 17 | * Copyright (C) 1998-2003 Hewlett-Packard Co |
| 18 | * David Mosberger-Tang <davidm@hpl.hp.com> |
| 19 | * Copyright (C) 1999 Asit Mallick <asit.k.mallick@intel.com> |
| 20 | * Copyright (C) 1999 Don Dugger <don.dugger@intel.com> |
| 21 | */ |
| 22 | |
James Bottomley | 8a549f8 | 2008-08-22 16:15:22 -0500 | [diff] [blame] | 23 | #include <asm/unaligned.h> |
Ard Biesheuvel | 8092677 | 2016-01-12 14:22:45 +0100 | [diff] [blame] | 24 | #include <asm/early_ioremap.h> |
James Bottomley | 8a549f8 | 2008-08-22 16:15:22 -0500 | [diff] [blame] | 25 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | /* We don't use IO slowdowns on the ia64, but.. */ |
| 27 | #define __SLOW_DOWN_IO do { } while (0) |
| 28 | #define SLOW_DOWN_IO do { } while (0) |
| 29 | |
Peter Chubb | 0a41e25 | 2005-08-16 19:54:00 -0700 | [diff] [blame] | 30 | #define __IA64_UNCACHED_OFFSET RGN_BASE(RGN_UNCACHED) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
| 32 | /* |
| 33 | * The legacy I/O space defined by the ia64 architecture supports only 65536 ports, but |
| 34 | * large machines may have multiple other I/O spaces so we can't place any a priori limit |
| 35 | * on IO_SPACE_LIMIT. These additional spaces are described in ACPI. |
| 36 | */ |
| 37 | #define IO_SPACE_LIMIT 0xffffffffffffffffUL |
| 38 | |
John Keller | 8ea6091 | 2006-10-04 16:49:25 -0500 | [diff] [blame] | 39 | #define MAX_IO_SPACES_BITS 8 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | #define MAX_IO_SPACES (1UL << MAX_IO_SPACES_BITS) |
| 41 | #define IO_SPACE_BITS 24 |
| 42 | #define IO_SPACE_SIZE (1UL << IO_SPACE_BITS) |
| 43 | |
| 44 | #define IO_SPACE_NR(port) ((port) >> IO_SPACE_BITS) |
| 45 | #define IO_SPACE_BASE(space) ((space) << IO_SPACE_BITS) |
| 46 | #define IO_SPACE_PORT(port) ((port) & (IO_SPACE_SIZE - 1)) |
| 47 | |
Bjorn Helgaas | b5f3616 | 2005-08-23 09:24:00 -0700 | [diff] [blame] | 48 | #define IO_SPACE_SPARSE_ENCODING(p) ((((p) >> 2) << 12) | ((p) & 0xfff)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
| 50 | struct io_space { |
| 51 | unsigned long mmio_base; /* base in MMIO space */ |
| 52 | int sparse; |
| 53 | }; |
| 54 | |
| 55 | extern struct io_space io_space[]; |
| 56 | extern unsigned int num_io_spaces; |
| 57 | |
| 58 | # ifdef __KERNEL__ |
| 59 | |
| 60 | /* |
| 61 | * All MMIO iomem cookies are in region 6; anything less is a PIO cookie: |
| 62 | * 0xCxxxxxxxxxxxxxxx MMIO cookie (return from ioremap) |
| 63 | * 0x000000001SPPPPPP PIO cookie (S=space number, P..P=port) |
| 64 | * |
| 65 | * ioread/writeX() uses the leading 1 in PIO cookies (PIO_OFFSET) to catch |
| 66 | * code that uses bare port numbers without the prerequisite pci_iomap(). |
| 67 | */ |
| 68 | #define PIO_OFFSET (1UL << (MAX_IO_SPACES_BITS + IO_SPACE_BITS)) |
| 69 | #define PIO_MASK (PIO_OFFSET - 1) |
| 70 | #define PIO_RESERVED __IA64_UNCACHED_OFFSET |
| 71 | #define HAVE_ARCH_PIO_SIZE |
| 72 | |
| 73 | #include <asm/intrinsics.h> |
| 74 | #include <asm/machvec.h> |
| 75 | #include <asm/page.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | #include <asm-generic/iomap.h> |
| 77 | |
| 78 | /* |
| 79 | * Change virtual addresses to physical addresses and vv. |
| 80 | */ |
| 81 | static inline unsigned long |
| 82 | virt_to_phys (volatile void *address) |
| 83 | { |
| 84 | return (unsigned long) address - PAGE_OFFSET; |
| 85 | } |
| 86 | |
| 87 | static inline void* |
| 88 | phys_to_virt (unsigned long address) |
| 89 | { |
| 90 | return (void *) (address + PAGE_OFFSET); |
| 91 | } |
| 92 | |
| 93 | #define ARCH_HAS_VALID_PHYS_ADDR_RANGE |
Bjorn Helgaas | 32e62c6 | 2006-05-05 17:19:50 -0600 | [diff] [blame] | 94 | extern u64 kern_mem_attribute (unsigned long phys_addr, unsigned long size); |
Cyril Chemparathy | 7e6735c | 2012-09-12 14:05:58 -0400 | [diff] [blame] | 95 | extern int valid_phys_addr_range (phys_addr_t addr, size_t count); /* efi.c */ |
Lennert Buytenhek | 06c67be | 2006-07-10 04:45:27 -0700 | [diff] [blame] | 96 | extern int valid_mmap_phys_addr_range (unsigned long pfn, size_t count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | |
| 98 | /* |
| 99 | * The following two macros are deprecated and scheduled for removal. |
| 100 | * Please use the PCI-DMA interface defined in <asm/pci.h> instead. |
| 101 | */ |
| 102 | #define bus_to_virt phys_to_virt |
| 103 | #define virt_to_bus virt_to_phys |
| 104 | #define page_to_bus page_to_phys |
| 105 | |
| 106 | # endif /* KERNEL */ |
| 107 | |
| 108 | /* |
| 109 | * Memory fence w/accept. This should never be used in code that is |
| 110 | * not IA-64 specific. |
| 111 | */ |
| 112 | #define __ia64_mf_a() ia64_mfa() |
| 113 | |
| 114 | /** |
| 115 | * ___ia64_mmiowb - I/O write barrier |
| 116 | * |
| 117 | * Ensure ordering of I/O space writes. This will make sure that writes |
| 118 | * following the barrier will arrive after all previous writes. For most |
| 119 | * ia64 platforms, this is a simple 'mf.a' instruction. |
| 120 | * |
Mauro Carvalho Chehab | 2a76213 | 2017-05-14 11:54:11 -0300 | [diff] [blame] | 121 | * See Documentation/driver-api/device-io.rst for more information. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | */ |
| 123 | static inline void ___ia64_mmiowb(void) |
| 124 | { |
| 125 | ia64_mfa(); |
| 126 | } |
| 127 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | static inline void* |
| 129 | __ia64_mk_io_addr (unsigned long port) |
| 130 | { |
| 131 | struct io_space *space; |
| 132 | unsigned long offset; |
| 133 | |
| 134 | space = &io_space[IO_SPACE_NR(port)]; |
| 135 | port = IO_SPACE_PORT(port); |
| 136 | if (space->sparse) |
| 137 | offset = IO_SPACE_SPARSE_ENCODING(port); |
| 138 | else |
| 139 | offset = port; |
| 140 | |
| 141 | return (void *) (space->mmio_base | offset); |
| 142 | } |
| 143 | |
| 144 | #define __ia64_inb ___ia64_inb |
| 145 | #define __ia64_inw ___ia64_inw |
| 146 | #define __ia64_inl ___ia64_inl |
| 147 | #define __ia64_outb ___ia64_outb |
| 148 | #define __ia64_outw ___ia64_outw |
| 149 | #define __ia64_outl ___ia64_outl |
| 150 | #define __ia64_readb ___ia64_readb |
| 151 | #define __ia64_readw ___ia64_readw |
| 152 | #define __ia64_readl ___ia64_readl |
| 153 | #define __ia64_readq ___ia64_readq |
| 154 | #define __ia64_readb_relaxed ___ia64_readb |
| 155 | #define __ia64_readw_relaxed ___ia64_readw |
| 156 | #define __ia64_readl_relaxed ___ia64_readl |
| 157 | #define __ia64_readq_relaxed ___ia64_readq |
| 158 | #define __ia64_writeb ___ia64_writeb |
| 159 | #define __ia64_writew ___ia64_writew |
| 160 | #define __ia64_writel ___ia64_writel |
| 161 | #define __ia64_writeq ___ia64_writeq |
| 162 | #define __ia64_mmiowb ___ia64_mmiowb |
| 163 | |
| 164 | /* |
| 165 | * For the in/out routines, we need to do "mf.a" _after_ doing the I/O access to ensure |
| 166 | * that the access has completed before executing other I/O accesses. Since we're doing |
| 167 | * the accesses through an uncachable (UC) translation, the CPU will execute them in |
| 168 | * program order. However, we still need to tell the compiler not to shuffle them around |
| 169 | * during optimization, which is why we use "volatile" pointers. |
| 170 | */ |
| 171 | |
| 172 | static inline unsigned int |
| 173 | ___ia64_inb (unsigned long port) |
| 174 | { |
| 175 | volatile unsigned char *addr = __ia64_mk_io_addr(port); |
| 176 | unsigned char ret; |
| 177 | |
| 178 | ret = *addr; |
| 179 | __ia64_mf_a(); |
| 180 | return ret; |
| 181 | } |
| 182 | |
| 183 | static inline unsigned int |
| 184 | ___ia64_inw (unsigned long port) |
| 185 | { |
| 186 | volatile unsigned short *addr = __ia64_mk_io_addr(port); |
| 187 | unsigned short ret; |
| 188 | |
| 189 | ret = *addr; |
| 190 | __ia64_mf_a(); |
| 191 | return ret; |
| 192 | } |
| 193 | |
| 194 | static inline unsigned int |
| 195 | ___ia64_inl (unsigned long port) |
| 196 | { |
| 197 | volatile unsigned int *addr = __ia64_mk_io_addr(port); |
| 198 | unsigned int ret; |
| 199 | |
| 200 | ret = *addr; |
| 201 | __ia64_mf_a(); |
| 202 | return ret; |
| 203 | } |
| 204 | |
| 205 | static inline void |
| 206 | ___ia64_outb (unsigned char val, unsigned long port) |
| 207 | { |
| 208 | volatile unsigned char *addr = __ia64_mk_io_addr(port); |
| 209 | |
| 210 | *addr = val; |
| 211 | __ia64_mf_a(); |
| 212 | } |
| 213 | |
| 214 | static inline void |
| 215 | ___ia64_outw (unsigned short val, unsigned long port) |
| 216 | { |
| 217 | volatile unsigned short *addr = __ia64_mk_io_addr(port); |
| 218 | |
| 219 | *addr = val; |
| 220 | __ia64_mf_a(); |
| 221 | } |
| 222 | |
| 223 | static inline void |
| 224 | ___ia64_outl (unsigned int val, unsigned long port) |
| 225 | { |
| 226 | volatile unsigned int *addr = __ia64_mk_io_addr(port); |
| 227 | |
| 228 | *addr = val; |
| 229 | __ia64_mf_a(); |
| 230 | } |
| 231 | |
| 232 | static inline void |
| 233 | __insb (unsigned long port, void *dst, unsigned long count) |
| 234 | { |
| 235 | unsigned char *dp = dst; |
| 236 | |
| 237 | while (count--) |
| 238 | *dp++ = platform_inb(port); |
| 239 | } |
| 240 | |
| 241 | static inline void |
| 242 | __insw (unsigned long port, void *dst, unsigned long count) |
| 243 | { |
| 244 | unsigned short *dp = dst; |
| 245 | |
| 246 | while (count--) |
James Bottomley | 8a549f8 | 2008-08-22 16:15:22 -0500 | [diff] [blame] | 247 | put_unaligned(platform_inw(port), dp++); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | } |
| 249 | |
| 250 | static inline void |
| 251 | __insl (unsigned long port, void *dst, unsigned long count) |
| 252 | { |
| 253 | unsigned int *dp = dst; |
| 254 | |
| 255 | while (count--) |
James Bottomley | 8a549f8 | 2008-08-22 16:15:22 -0500 | [diff] [blame] | 256 | put_unaligned(platform_inl(port), dp++); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | } |
| 258 | |
| 259 | static inline void |
| 260 | __outsb (unsigned long port, const void *src, unsigned long count) |
| 261 | { |
| 262 | const unsigned char *sp = src; |
| 263 | |
| 264 | while (count--) |
| 265 | platform_outb(*sp++, port); |
| 266 | } |
| 267 | |
| 268 | static inline void |
| 269 | __outsw (unsigned long port, const void *src, unsigned long count) |
| 270 | { |
| 271 | const unsigned short *sp = src; |
| 272 | |
| 273 | while (count--) |
James Bottomley | 8a549f8 | 2008-08-22 16:15:22 -0500 | [diff] [blame] | 274 | platform_outw(get_unaligned(sp++), port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | } |
| 276 | |
| 277 | static inline void |
| 278 | __outsl (unsigned long port, const void *src, unsigned long count) |
| 279 | { |
| 280 | const unsigned int *sp = src; |
| 281 | |
| 282 | while (count--) |
James Bottomley | 8a549f8 | 2008-08-22 16:15:22 -0500 | [diff] [blame] | 283 | platform_outl(get_unaligned(sp++), port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | } |
| 285 | |
| 286 | /* |
| 287 | * Unfortunately, some platforms are broken and do not follow the IA-64 architecture |
| 288 | * specification regarding legacy I/O support. Thus, we have to make these operations |
| 289 | * platform dependent... |
| 290 | */ |
| 291 | #define __inb platform_inb |
| 292 | #define __inw platform_inw |
| 293 | #define __inl platform_inl |
| 294 | #define __outb platform_outb |
| 295 | #define __outw platform_outw |
| 296 | #define __outl platform_outl |
| 297 | #define __mmiowb platform_mmiowb |
| 298 | |
| 299 | #define inb(p) __inb(p) |
| 300 | #define inw(p) __inw(p) |
| 301 | #define inl(p) __inl(p) |
| 302 | #define insb(p,d,c) __insb(p,d,c) |
| 303 | #define insw(p,d,c) __insw(p,d,c) |
| 304 | #define insl(p,d,c) __insl(p,d,c) |
| 305 | #define outb(v,p) __outb(v,p) |
| 306 | #define outw(v,p) __outw(v,p) |
| 307 | #define outl(v,p) __outl(v,p) |
| 308 | #define outsb(p,s,c) __outsb(p,s,c) |
| 309 | #define outsw(p,s,c) __outsw(p,s,c) |
| 310 | #define outsl(p,s,c) __outsl(p,s,c) |
| 311 | #define mmiowb() __mmiowb() |
| 312 | |
| 313 | /* |
| 314 | * The address passed to these functions are ioremap()ped already. |
| 315 | * |
| 316 | * We need these to be machine vectors since some platforms don't provide |
| 317 | * DMA coherence via PIO reads (PCI drivers and the spec imply that this is |
| 318 | * a good idea). Writes are ok though for all existing ia64 platforms (and |
| 319 | * hopefully it'll stay that way). |
| 320 | */ |
| 321 | static inline unsigned char |
| 322 | ___ia64_readb (const volatile void __iomem *addr) |
| 323 | { |
| 324 | return *(volatile unsigned char __force *)addr; |
| 325 | } |
| 326 | |
| 327 | static inline unsigned short |
| 328 | ___ia64_readw (const volatile void __iomem *addr) |
| 329 | { |
| 330 | return *(volatile unsigned short __force *)addr; |
| 331 | } |
| 332 | |
| 333 | static inline unsigned int |
| 334 | ___ia64_readl (const volatile void __iomem *addr) |
| 335 | { |
| 336 | return *(volatile unsigned int __force *) addr; |
| 337 | } |
| 338 | |
| 339 | static inline unsigned long |
| 340 | ___ia64_readq (const volatile void __iomem *addr) |
| 341 | { |
| 342 | return *(volatile unsigned long __force *) addr; |
| 343 | } |
| 344 | |
| 345 | static inline void |
| 346 | __writeb (unsigned char val, volatile void __iomem *addr) |
| 347 | { |
| 348 | *(volatile unsigned char __force *) addr = val; |
| 349 | } |
| 350 | |
| 351 | static inline void |
| 352 | __writew (unsigned short val, volatile void __iomem *addr) |
| 353 | { |
| 354 | *(volatile unsigned short __force *) addr = val; |
| 355 | } |
| 356 | |
| 357 | static inline void |
| 358 | __writel (unsigned int val, volatile void __iomem *addr) |
| 359 | { |
| 360 | *(volatile unsigned int __force *) addr = val; |
| 361 | } |
| 362 | |
| 363 | static inline void |
| 364 | __writeq (unsigned long val, volatile void __iomem *addr) |
| 365 | { |
| 366 | *(volatile unsigned long __force *) addr = val; |
| 367 | } |
| 368 | |
| 369 | #define __readb platform_readb |
| 370 | #define __readw platform_readw |
| 371 | #define __readl platform_readl |
| 372 | #define __readq platform_readq |
| 373 | #define __readb_relaxed platform_readb_relaxed |
| 374 | #define __readw_relaxed platform_readw_relaxed |
| 375 | #define __readl_relaxed platform_readl_relaxed |
| 376 | #define __readq_relaxed platform_readq_relaxed |
| 377 | |
| 378 | #define readb(a) __readb((a)) |
| 379 | #define readw(a) __readw((a)) |
| 380 | #define readl(a) __readl((a)) |
| 381 | #define readq(a) __readq((a)) |
| 382 | #define readb_relaxed(a) __readb_relaxed((a)) |
| 383 | #define readw_relaxed(a) __readw_relaxed((a)) |
| 384 | #define readl_relaxed(a) __readl_relaxed((a)) |
| 385 | #define readq_relaxed(a) __readq_relaxed((a)) |
| 386 | #define __raw_readb readb |
| 387 | #define __raw_readw readw |
| 388 | #define __raw_readl readl |
| 389 | #define __raw_readq readq |
| 390 | #define __raw_readb_relaxed readb_relaxed |
| 391 | #define __raw_readw_relaxed readw_relaxed |
| 392 | #define __raw_readl_relaxed readl_relaxed |
| 393 | #define __raw_readq_relaxed readq_relaxed |
| 394 | #define writeb(v,a) __writeb((v), (a)) |
| 395 | #define writew(v,a) __writew((v), (a)) |
| 396 | #define writel(v,a) __writel((v), (a)) |
| 397 | #define writeq(v,a) __writeq((v), (a)) |
Will Deacon | f6b3b7a | 2013-09-03 19:10:11 +0100 | [diff] [blame] | 398 | #define writeb_relaxed(v,a) __writeb((v), (a)) |
| 399 | #define writew_relaxed(v,a) __writew((v), (a)) |
| 400 | #define writel_relaxed(v,a) __writel((v), (a)) |
| 401 | #define writeq_relaxed(v,a) __writeq((v), (a)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | #define __raw_writeb writeb |
| 403 | #define __raw_writew writew |
| 404 | #define __raw_writel writel |
| 405 | #define __raw_writeq writeq |
| 406 | |
| 407 | #ifndef inb_p |
| 408 | # define inb_p inb |
| 409 | #endif |
| 410 | #ifndef inw_p |
| 411 | # define inw_p inw |
| 412 | #endif |
| 413 | #ifndef inl_p |
| 414 | # define inl_p inl |
| 415 | #endif |
| 416 | |
| 417 | #ifndef outb_p |
| 418 | # define outb_p outb |
| 419 | #endif |
| 420 | #ifndef outw_p |
| 421 | # define outw_p outw |
| 422 | #endif |
| 423 | #ifndef outl_p |
| 424 | # define outl_p outl |
| 425 | #endif |
| 426 | |
Aron Griffis | ffc4557 | 2006-10-17 00:28:15 -0400 | [diff] [blame] | 427 | # ifdef __KERNEL__ |
| 428 | |
Bjorn Helgaas | e9b0a07 | 2006-03-26 01:37:06 -0800 | [diff] [blame] | 429 | extern void __iomem * ioremap(unsigned long offset, unsigned long size); |
| 430 | extern void __iomem * ioremap_nocache (unsigned long offset, unsigned long size); |
Bjorn Helgaas | 9b50ffb | 2007-03-30 10:34:05 -0600 | [diff] [blame] | 431 | extern void iounmap (volatile void __iomem *addr); |
Len Brown | 6d5bbf0 | 2011-01-07 01:46:40 +0100 | [diff] [blame] | 432 | static inline void __iomem * ioremap_cache (unsigned long phys_addr, unsigned long size) |
| 433 | { |
| 434 | return ioremap(phys_addr, size); |
| 435 | } |
Dan Williams | 92281dee | 2015-08-10 23:07:06 -0400 | [diff] [blame] | 436 | #define ioremap_cache ioremap_cache |
Luis R. Rodriguez | b0f84ac | 2016-03-17 14:17:16 -0700 | [diff] [blame] | 437 | #define ioremap_uc ioremap_nocache |
Len Brown | 6d5bbf0 | 2011-01-07 01:46:40 +0100 | [diff] [blame] | 438 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | /* |
| 441 | * String version of IO memory access ops: |
| 442 | */ |
| 443 | extern void memcpy_fromio(void *dst, const volatile void __iomem *src, long n); |
| 444 | extern void memcpy_toio(volatile void __iomem *dst, const void *src, long n); |
| 445 | extern void memset_io(volatile void __iomem *s, int c, long n); |
| 446 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | # endif /* __KERNEL__ */ |
| 448 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | #endif /* _ASM_IA64_IO_H */ |