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 | /* |
| 3 | * Implement the default iomap interfaces |
| 4 | * |
| 5 | * (C) Copyright 2004 Linus Torvalds |
| 6 | */ |
| 7 | #include <linux/pci.h> |
Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 8 | #include <linux/io.h> |
| 9 | |
Paul Gortmaker | 8bc3bcc | 2011-11-16 21:29:17 -0500 | [diff] [blame] | 10 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | |
| 12 | /* |
| 13 | * Read/write from/to an (offsettable) iomem cookie. It might be a PIO |
| 14 | * access or a MMIO access, these functions don't care. The info is |
| 15 | * encoded in the hardware mapping set up by the mapping functions |
| 16 | * (or the cookie itself, depending on implementation and hw). |
| 17 | * |
| 18 | * The generic routines don't assume any hardware mappings, and just |
| 19 | * encode the PIO/MMIO as part of the cookie. They coldly assume that |
| 20 | * the MMIO IO mappings are not in the low address range. |
| 21 | * |
| 22 | * Architectures for which this is not true can't use this generic |
| 23 | * implementation and should do their own copy. |
| 24 | */ |
| 25 | |
| 26 | #ifndef HAVE_ARCH_PIO_SIZE |
| 27 | /* |
| 28 | * We encode the physical PIO addresses (0-0xffff) into the |
| 29 | * pointer by offsetting them with a constant (0x10000) and |
| 30 | * assuming that all the low addresses are always PIO. That means |
| 31 | * we can do some sanity checks on the low bits, and don't |
| 32 | * need to just take things for granted. |
| 33 | */ |
| 34 | #define PIO_OFFSET 0x10000UL |
| 35 | #define PIO_MASK 0x0ffffUL |
| 36 | #define PIO_RESERVED 0x40000UL |
| 37 | #endif |
| 38 | |
Linus Torvalds | 6cbf0c7 | 2007-05-04 20:44:23 -0700 | [diff] [blame] | 39 | static void bad_io_access(unsigned long port, const char *access) |
| 40 | { |
| 41 | static int count = 10; |
| 42 | if (count) { |
| 43 | count--; |
Arjan van de Ven | 5cd2b45 | 2008-07-25 19:45:39 -0700 | [diff] [blame] | 44 | WARN(1, KERN_ERR "Bad IO access at port %#lx (%s)\n", port, access); |
Linus Torvalds | 6cbf0c7 | 2007-05-04 20:44:23 -0700 | [diff] [blame] | 45 | } |
| 46 | } |
| 47 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | /* |
| 49 | * Ugly macros are a way of life. |
| 50 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | #define IO_COND(addr, is_pio, is_mmio) do { \ |
| 52 | unsigned long port = (unsigned long __force)addr; \ |
Linus Torvalds | 6cbf0c7 | 2007-05-04 20:44:23 -0700 | [diff] [blame] | 53 | if (port >= PIO_RESERVED) { \ |
| 54 | is_mmio; \ |
| 55 | } else if (port > PIO_OFFSET) { \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | port &= PIO_MASK; \ |
| 57 | is_pio; \ |
Linus Torvalds | 6cbf0c7 | 2007-05-04 20:44:23 -0700 | [diff] [blame] | 58 | } else \ |
| 59 | bad_io_access(port, #is_pio ); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | } while (0) |
| 61 | |
Linus Torvalds | 34ba8a5 | 2006-11-11 17:24:46 +1100 | [diff] [blame] | 62 | #ifndef pio_read16be |
| 63 | #define pio_read16be(port) swab16(inw(port)) |
| 64 | #define pio_read32be(port) swab32(inl(port)) |
| 65 | #endif |
| 66 | |
| 67 | #ifndef mmio_read16be |
Logan Gunthorpe | aecc787 | 2019-01-16 11:25:18 -0700 | [diff] [blame] | 68 | #define mmio_read16be(addr) swab16(readw(addr)) |
| 69 | #define mmio_read32be(addr) swab32(readl(addr)) |
Logan Gunthorpe | 79bf0cb | 2019-01-16 11:25:20 -0700 | [diff] [blame] | 70 | #define mmio_read64be(addr) swab64(readq(addr)) |
Linus Torvalds | 34ba8a5 | 2006-11-11 17:24:46 +1100 | [diff] [blame] | 71 | #endif |
| 72 | |
Krzysztof Kozlowski | 8f28ca6 | 2020-08-14 17:32:07 -0700 | [diff] [blame] | 73 | unsigned int ioread8(const void __iomem *addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | { |
| 75 | IO_COND(addr, return inb(port), return readb(addr)); |
Linus Torvalds | 6cbf0c7 | 2007-05-04 20:44:23 -0700 | [diff] [blame] | 76 | return 0xff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | } |
Krzysztof Kozlowski | 8f28ca6 | 2020-08-14 17:32:07 -0700 | [diff] [blame] | 78 | unsigned int ioread16(const void __iomem *addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | { |
| 80 | IO_COND(addr, return inw(port), return readw(addr)); |
Linus Torvalds | 6cbf0c7 | 2007-05-04 20:44:23 -0700 | [diff] [blame] | 81 | return 0xffff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | } |
Krzysztof Kozlowski | 8f28ca6 | 2020-08-14 17:32:07 -0700 | [diff] [blame] | 83 | unsigned int ioread16be(const void __iomem *addr) |
James Bottomley | dae409a | 2005-04-16 15:25:54 -0700 | [diff] [blame] | 84 | { |
Linus Torvalds | 34ba8a5 | 2006-11-11 17:24:46 +1100 | [diff] [blame] | 85 | IO_COND(addr, return pio_read16be(port), return mmio_read16be(addr)); |
Linus Torvalds | 6cbf0c7 | 2007-05-04 20:44:23 -0700 | [diff] [blame] | 86 | return 0xffff; |
James Bottomley | dae409a | 2005-04-16 15:25:54 -0700 | [diff] [blame] | 87 | } |
Krzysztof Kozlowski | 8f28ca6 | 2020-08-14 17:32:07 -0700 | [diff] [blame] | 88 | unsigned int ioread32(const void __iomem *addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | { |
| 90 | IO_COND(addr, return inl(port), return readl(addr)); |
Linus Torvalds | 6cbf0c7 | 2007-05-04 20:44:23 -0700 | [diff] [blame] | 91 | return 0xffffffff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | } |
Krzysztof Kozlowski | 8f28ca6 | 2020-08-14 17:32:07 -0700 | [diff] [blame] | 93 | unsigned int ioread32be(const void __iomem *addr) |
James Bottomley | dae409a | 2005-04-16 15:25:54 -0700 | [diff] [blame] | 94 | { |
Linus Torvalds | 34ba8a5 | 2006-11-11 17:24:46 +1100 | [diff] [blame] | 95 | IO_COND(addr, return pio_read32be(port), return mmio_read32be(addr)); |
Linus Torvalds | 6cbf0c7 | 2007-05-04 20:44:23 -0700 | [diff] [blame] | 96 | return 0xffffffff; |
James Bottomley | dae409a | 2005-04-16 15:25:54 -0700 | [diff] [blame] | 97 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | EXPORT_SYMBOL(ioread8); |
| 99 | EXPORT_SYMBOL(ioread16); |
James Bottomley | dae409a | 2005-04-16 15:25:54 -0700 | [diff] [blame] | 100 | EXPORT_SYMBOL(ioread16be); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | EXPORT_SYMBOL(ioread32); |
James Bottomley | dae409a | 2005-04-16 15:25:54 -0700 | [diff] [blame] | 102 | EXPORT_SYMBOL(ioread32be); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | |
Logan Gunthorpe | 79bf0cb | 2019-01-16 11:25:20 -0700 | [diff] [blame] | 104 | #ifdef readq |
| 105 | static u64 pio_read64_lo_hi(unsigned long port) |
| 106 | { |
| 107 | u64 lo, hi; |
| 108 | |
| 109 | lo = inl(port); |
| 110 | hi = inl(port + sizeof(u32)); |
| 111 | |
| 112 | return lo | (hi << 32); |
| 113 | } |
| 114 | |
| 115 | static u64 pio_read64_hi_lo(unsigned long port) |
| 116 | { |
| 117 | u64 lo, hi; |
| 118 | |
| 119 | hi = inl(port + sizeof(u32)); |
| 120 | lo = inl(port); |
| 121 | |
| 122 | return lo | (hi << 32); |
| 123 | } |
| 124 | |
| 125 | static u64 pio_read64be_lo_hi(unsigned long port) |
| 126 | { |
| 127 | u64 lo, hi; |
| 128 | |
| 129 | lo = pio_read32be(port + sizeof(u32)); |
| 130 | hi = pio_read32be(port); |
| 131 | |
| 132 | return lo | (hi << 32); |
| 133 | } |
| 134 | |
| 135 | static u64 pio_read64be_hi_lo(unsigned long port) |
| 136 | { |
| 137 | u64 lo, hi; |
| 138 | |
| 139 | hi = pio_read32be(port); |
| 140 | lo = pio_read32be(port + sizeof(u32)); |
| 141 | |
| 142 | return lo | (hi << 32); |
| 143 | } |
| 144 | |
Krzysztof Kozlowski | 8f28ca6 | 2020-08-14 17:32:07 -0700 | [diff] [blame] | 145 | u64 ioread64_lo_hi(const void __iomem *addr) |
Logan Gunthorpe | 79bf0cb | 2019-01-16 11:25:20 -0700 | [diff] [blame] | 146 | { |
| 147 | IO_COND(addr, return pio_read64_lo_hi(port), return readq(addr)); |
| 148 | return 0xffffffffffffffffULL; |
| 149 | } |
| 150 | |
Krzysztof Kozlowski | 8f28ca6 | 2020-08-14 17:32:07 -0700 | [diff] [blame] | 151 | u64 ioread64_hi_lo(const void __iomem *addr) |
Logan Gunthorpe | 79bf0cb | 2019-01-16 11:25:20 -0700 | [diff] [blame] | 152 | { |
| 153 | IO_COND(addr, return pio_read64_hi_lo(port), return readq(addr)); |
| 154 | return 0xffffffffffffffffULL; |
| 155 | } |
| 156 | |
Krzysztof Kozlowski | 8f28ca6 | 2020-08-14 17:32:07 -0700 | [diff] [blame] | 157 | u64 ioread64be_lo_hi(const void __iomem *addr) |
Logan Gunthorpe | 79bf0cb | 2019-01-16 11:25:20 -0700 | [diff] [blame] | 158 | { |
| 159 | IO_COND(addr, return pio_read64be_lo_hi(port), |
| 160 | return mmio_read64be(addr)); |
| 161 | return 0xffffffffffffffffULL; |
| 162 | } |
| 163 | |
Krzysztof Kozlowski | 8f28ca6 | 2020-08-14 17:32:07 -0700 | [diff] [blame] | 164 | u64 ioread64be_hi_lo(const void __iomem *addr) |
Logan Gunthorpe | 79bf0cb | 2019-01-16 11:25:20 -0700 | [diff] [blame] | 165 | { |
| 166 | IO_COND(addr, return pio_read64be_hi_lo(port), |
| 167 | return mmio_read64be(addr)); |
| 168 | return 0xffffffffffffffffULL; |
| 169 | } |
| 170 | |
| 171 | EXPORT_SYMBOL(ioread64_lo_hi); |
| 172 | EXPORT_SYMBOL(ioread64_hi_lo); |
| 173 | EXPORT_SYMBOL(ioread64be_lo_hi); |
| 174 | EXPORT_SYMBOL(ioread64be_hi_lo); |
| 175 | |
| 176 | #endif /* readq */ |
| 177 | |
Linus Torvalds | 34ba8a5 | 2006-11-11 17:24:46 +1100 | [diff] [blame] | 178 | #ifndef pio_write16be |
| 179 | #define pio_write16be(val,port) outw(swab16(val),port) |
| 180 | #define pio_write32be(val,port) outl(swab32(val),port) |
| 181 | #endif |
| 182 | |
| 183 | #ifndef mmio_write16be |
Logan Gunthorpe | aecc787 | 2019-01-16 11:25:18 -0700 | [diff] [blame] | 184 | #define mmio_write16be(val,port) writew(swab16(val),port) |
| 185 | #define mmio_write32be(val,port) writel(swab32(val),port) |
Logan Gunthorpe | 79bf0cb | 2019-01-16 11:25:20 -0700 | [diff] [blame] | 186 | #define mmio_write64be(val,port) writeq(swab64(val),port) |
Linus Torvalds | 34ba8a5 | 2006-11-11 17:24:46 +1100 | [diff] [blame] | 187 | #endif |
| 188 | |
Harvey Harrison | 9f741cb | 2008-02-08 04:19:55 -0800 | [diff] [blame] | 189 | void iowrite8(u8 val, void __iomem *addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | { |
| 191 | IO_COND(addr, outb(val,port), writeb(val, addr)); |
| 192 | } |
Harvey Harrison | 9f741cb | 2008-02-08 04:19:55 -0800 | [diff] [blame] | 193 | void iowrite16(u16 val, void __iomem *addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | { |
| 195 | IO_COND(addr, outw(val,port), writew(val, addr)); |
| 196 | } |
Harvey Harrison | 9f741cb | 2008-02-08 04:19:55 -0800 | [diff] [blame] | 197 | void iowrite16be(u16 val, void __iomem *addr) |
James Bottomley | dae409a | 2005-04-16 15:25:54 -0700 | [diff] [blame] | 198 | { |
Linus Torvalds | 34ba8a5 | 2006-11-11 17:24:46 +1100 | [diff] [blame] | 199 | IO_COND(addr, pio_write16be(val,port), mmio_write16be(val, addr)); |
James Bottomley | dae409a | 2005-04-16 15:25:54 -0700 | [diff] [blame] | 200 | } |
Harvey Harrison | 9f741cb | 2008-02-08 04:19:55 -0800 | [diff] [blame] | 201 | void iowrite32(u32 val, void __iomem *addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | { |
| 203 | IO_COND(addr, outl(val,port), writel(val, addr)); |
| 204 | } |
Harvey Harrison | 9f741cb | 2008-02-08 04:19:55 -0800 | [diff] [blame] | 205 | void iowrite32be(u32 val, void __iomem *addr) |
James Bottomley | dae409a | 2005-04-16 15:25:54 -0700 | [diff] [blame] | 206 | { |
Linus Torvalds | 34ba8a5 | 2006-11-11 17:24:46 +1100 | [diff] [blame] | 207 | IO_COND(addr, pio_write32be(val,port), mmio_write32be(val, addr)); |
James Bottomley | dae409a | 2005-04-16 15:25:54 -0700 | [diff] [blame] | 208 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | EXPORT_SYMBOL(iowrite8); |
| 210 | EXPORT_SYMBOL(iowrite16); |
James Bottomley | dae409a | 2005-04-16 15:25:54 -0700 | [diff] [blame] | 211 | EXPORT_SYMBOL(iowrite16be); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | EXPORT_SYMBOL(iowrite32); |
James Bottomley | dae409a | 2005-04-16 15:25:54 -0700 | [diff] [blame] | 213 | EXPORT_SYMBOL(iowrite32be); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | |
Logan Gunthorpe | 79bf0cb | 2019-01-16 11:25:20 -0700 | [diff] [blame] | 215 | #ifdef writeq |
| 216 | static void pio_write64_lo_hi(u64 val, unsigned long port) |
| 217 | { |
| 218 | outl(val, port); |
| 219 | outl(val >> 32, port + sizeof(u32)); |
| 220 | } |
| 221 | |
| 222 | static void pio_write64_hi_lo(u64 val, unsigned long port) |
| 223 | { |
| 224 | outl(val >> 32, port + sizeof(u32)); |
| 225 | outl(val, port); |
| 226 | } |
| 227 | |
| 228 | static void pio_write64be_lo_hi(u64 val, unsigned long port) |
| 229 | { |
| 230 | pio_write32be(val, port + sizeof(u32)); |
| 231 | pio_write32be(val >> 32, port); |
| 232 | } |
| 233 | |
| 234 | static void pio_write64be_hi_lo(u64 val, unsigned long port) |
| 235 | { |
| 236 | pio_write32be(val >> 32, port); |
| 237 | pio_write32be(val, port + sizeof(u32)); |
| 238 | } |
| 239 | |
| 240 | void iowrite64_lo_hi(u64 val, void __iomem *addr) |
| 241 | { |
| 242 | IO_COND(addr, pio_write64_lo_hi(val, port), |
| 243 | writeq(val, addr)); |
| 244 | } |
| 245 | |
| 246 | void iowrite64_hi_lo(u64 val, void __iomem *addr) |
| 247 | { |
| 248 | IO_COND(addr, pio_write64_hi_lo(val, port), |
| 249 | writeq(val, addr)); |
| 250 | } |
| 251 | |
| 252 | void iowrite64be_lo_hi(u64 val, void __iomem *addr) |
| 253 | { |
| 254 | IO_COND(addr, pio_write64be_lo_hi(val, port), |
| 255 | mmio_write64be(val, addr)); |
| 256 | } |
| 257 | |
| 258 | void iowrite64be_hi_lo(u64 val, void __iomem *addr) |
| 259 | { |
| 260 | IO_COND(addr, pio_write64be_hi_lo(val, port), |
| 261 | mmio_write64be(val, addr)); |
| 262 | } |
| 263 | |
| 264 | EXPORT_SYMBOL(iowrite64_lo_hi); |
| 265 | EXPORT_SYMBOL(iowrite64_hi_lo); |
| 266 | EXPORT_SYMBOL(iowrite64be_lo_hi); |
| 267 | EXPORT_SYMBOL(iowrite64be_hi_lo); |
| 268 | |
| 269 | #endif /* readq */ |
| 270 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | /* |
| 272 | * These are the "repeat MMIO read/write" functions. |
| 273 | * Note the "__raw" accesses, since we don't want to |
| 274 | * convert to CPU byte order. We write in "IO byte |
| 275 | * order" (we also don't have IO barriers). |
| 276 | */ |
Linus Torvalds | 34ba8a5 | 2006-11-11 17:24:46 +1100 | [diff] [blame] | 277 | #ifndef mmio_insb |
Krzysztof Kozlowski | 8f28ca6 | 2020-08-14 17:32:07 -0700 | [diff] [blame] | 278 | static inline void mmio_insb(const void __iomem *addr, u8 *dst, int count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | { |
| 280 | while (--count >= 0) { |
| 281 | u8 data = __raw_readb(addr); |
| 282 | *dst = data; |
| 283 | dst++; |
| 284 | } |
| 285 | } |
Krzysztof Kozlowski | 8f28ca6 | 2020-08-14 17:32:07 -0700 | [diff] [blame] | 286 | static inline void mmio_insw(const void __iomem *addr, u16 *dst, int count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | { |
| 288 | while (--count >= 0) { |
| 289 | u16 data = __raw_readw(addr); |
| 290 | *dst = data; |
| 291 | dst++; |
| 292 | } |
| 293 | } |
Krzysztof Kozlowski | 8f28ca6 | 2020-08-14 17:32:07 -0700 | [diff] [blame] | 294 | static inline void mmio_insl(const void __iomem *addr, u32 *dst, int count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | { |
| 296 | while (--count >= 0) { |
| 297 | u32 data = __raw_readl(addr); |
| 298 | *dst = data; |
| 299 | dst++; |
| 300 | } |
| 301 | } |
Linus Torvalds | 34ba8a5 | 2006-11-11 17:24:46 +1100 | [diff] [blame] | 302 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | |
Linus Torvalds | 34ba8a5 | 2006-11-11 17:24:46 +1100 | [diff] [blame] | 304 | #ifndef mmio_outsb |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | static inline void mmio_outsb(void __iomem *addr, const u8 *src, int count) |
| 306 | { |
| 307 | while (--count >= 0) { |
| 308 | __raw_writeb(*src, addr); |
| 309 | src++; |
| 310 | } |
| 311 | } |
| 312 | static inline void mmio_outsw(void __iomem *addr, const u16 *src, int count) |
| 313 | { |
| 314 | while (--count >= 0) { |
| 315 | __raw_writew(*src, addr); |
| 316 | src++; |
| 317 | } |
| 318 | } |
| 319 | static inline void mmio_outsl(void __iomem *addr, const u32 *src, int count) |
| 320 | { |
| 321 | while (--count >= 0) { |
| 322 | __raw_writel(*src, addr); |
| 323 | src++; |
| 324 | } |
| 325 | } |
Linus Torvalds | 34ba8a5 | 2006-11-11 17:24:46 +1100 | [diff] [blame] | 326 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | |
Krzysztof Kozlowski | 8f28ca6 | 2020-08-14 17:32:07 -0700 | [diff] [blame] | 328 | void ioread8_rep(const void __iomem *addr, void *dst, unsigned long count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | { |
| 330 | IO_COND(addr, insb(port,dst,count), mmio_insb(addr, dst, count)); |
| 331 | } |
Krzysztof Kozlowski | 8f28ca6 | 2020-08-14 17:32:07 -0700 | [diff] [blame] | 332 | void ioread16_rep(const void __iomem *addr, void *dst, unsigned long count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | { |
| 334 | IO_COND(addr, insw(port,dst,count), mmio_insw(addr, dst, count)); |
| 335 | } |
Krzysztof Kozlowski | 8f28ca6 | 2020-08-14 17:32:07 -0700 | [diff] [blame] | 336 | void ioread32_rep(const void __iomem *addr, void *dst, unsigned long count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | { |
| 338 | IO_COND(addr, insl(port,dst,count), mmio_insl(addr, dst, count)); |
| 339 | } |
| 340 | EXPORT_SYMBOL(ioread8_rep); |
| 341 | EXPORT_SYMBOL(ioread16_rep); |
| 342 | EXPORT_SYMBOL(ioread32_rep); |
| 343 | |
Harvey Harrison | 9f741cb | 2008-02-08 04:19:55 -0800 | [diff] [blame] | 344 | void iowrite8_rep(void __iomem *addr, const void *src, unsigned long count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | { |
| 346 | IO_COND(addr, outsb(port, src, count), mmio_outsb(addr, src, count)); |
| 347 | } |
Harvey Harrison | 9f741cb | 2008-02-08 04:19:55 -0800 | [diff] [blame] | 348 | void iowrite16_rep(void __iomem *addr, const void *src, unsigned long count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | { |
| 350 | IO_COND(addr, outsw(port, src, count), mmio_outsw(addr, src, count)); |
| 351 | } |
Harvey Harrison | 9f741cb | 2008-02-08 04:19:55 -0800 | [diff] [blame] | 352 | void iowrite32_rep(void __iomem *addr, const void *src, unsigned long count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | { |
| 354 | IO_COND(addr, outsl(port, src,count), mmio_outsl(addr, src, count)); |
| 355 | } |
| 356 | EXPORT_SYMBOL(iowrite8_rep); |
| 357 | EXPORT_SYMBOL(iowrite16_rep); |
| 358 | EXPORT_SYMBOL(iowrite32_rep); |
| 359 | |
Uwe Kleine-König | ce816fa | 2014-04-07 15:39:19 -0700 | [diff] [blame] | 360 | #ifdef CONFIG_HAS_IOPORT_MAP |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | /* Create a virtual mapping cookie for an IO port range */ |
| 362 | void __iomem *ioport_map(unsigned long port, unsigned int nr) |
| 363 | { |
| 364 | if (port > PIO_MASK) |
| 365 | return NULL; |
| 366 | return (void __iomem *) (unsigned long) (port + PIO_OFFSET); |
| 367 | } |
| 368 | |
| 369 | void ioport_unmap(void __iomem *addr) |
| 370 | { |
| 371 | /* Nothing to do */ |
| 372 | } |
| 373 | EXPORT_SYMBOL(ioport_map); |
| 374 | EXPORT_SYMBOL(ioport_unmap); |
Uwe Kleine-König | ce816fa | 2014-04-07 15:39:19 -0700 | [diff] [blame] | 375 | #endif /* CONFIG_HAS_IOPORT_MAP */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | |
Jonas Bonn | 82ed223 | 2011-07-02 17:23:29 +0200 | [diff] [blame] | 377 | #ifdef CONFIG_PCI |
Michael S. Tsirkin | 66eab4d | 2011-11-24 20:45:20 +0200 | [diff] [blame] | 378 | /* Hide the details if this is a MMIO or PIO address space and just do what |
| 379 | * you expect in the correct way. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | void pci_iounmap(struct pci_dev *dev, void __iomem * addr) |
| 381 | { |
| 382 | IO_COND(addr, /* nothing */, iounmap(addr)); |
| 383 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | EXPORT_SYMBOL(pci_iounmap); |
Jonas Bonn | 82ed223 | 2011-07-02 17:23:29 +0200 | [diff] [blame] | 385 | #endif /* CONFIG_PCI */ |