wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 1 | /* |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 2 | * Copyright (C) 1994, 1995 Waldorf GmbH |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 3 | * Copyright (C) 1994 - 2000, 06 Ralf Baechle |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 4 | * Copyright (C) 1999, 2000 Silicon Graphics, Inc. |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 5 | * Copyright (C) 2004, 2005 MIPS Technologies, Inc. All rights reserved. |
| 6 | * Author: Maciej W. Rozycki <macro@mips.com> |
| 7 | * |
| 8 | * SPDX-License-Identifier: GPL-2.0 |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 9 | */ |
| 10 | #ifndef _ASM_IO_H |
| 11 | #define _ASM_IO_H |
| 12 | |
Tom Rini | 434dc7b | 2016-01-25 18:52:23 -0500 | [diff] [blame] | 13 | #include <linux/bug.h> |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 14 | #include <linux/compiler.h> |
| 15 | #include <linux/types.h> |
| 16 | |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 17 | #include <asm/addrspace.h> |
| 18 | #include <asm/byteorder.h> |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 19 | #include <asm/cpu-features.h> |
| 20 | #include <asm/pgtable-bits.h> |
| 21 | #include <asm/processor.h> |
| 22 | #include <asm/string.h> |
| 23 | |
| 24 | #include <ioremap.h> |
| 25 | #include <mangle-port.h> |
| 26 | #include <spaces.h> |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 27 | |
| 28 | /* |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 29 | * Raw operations are never swapped in software. OTOH values that raw |
| 30 | * operations are working on may or may not have been swapped by the bus |
| 31 | * hardware. An example use would be for flash memory that's used for |
| 32 | * execute in place. |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 33 | */ |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 34 | # define __raw_ioswabb(a, x) (x) |
| 35 | # define __raw_ioswabw(a, x) (x) |
| 36 | # define __raw_ioswabl(a, x) (x) |
| 37 | # define __raw_ioswabq(a, x) (x) |
| 38 | # define ____raw_ioswabq(a, x) (x) |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 39 | |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 40 | /* ioswab[bwlq], __mem_ioswab[bwlq] are defined in mangle-port.h */ |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 41 | |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 42 | #define IO_SPACE_LIMIT 0xffff |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 43 | |
Paul Burton | 8d6600b | 2016-01-29 13:54:52 +0000 | [diff] [blame] | 44 | #ifdef CONFIG_DYNAMIC_IO_PORT_BASE |
Jean-Christophe PLAGNIOL-VILLARD | 089dbb7 | 2007-11-13 09:11:05 +0100 | [diff] [blame] | 45 | |
Paul Burton | 8d6600b | 2016-01-29 13:54:52 +0000 | [diff] [blame] | 46 | static inline ulong mips_io_port_base(void) |
| 47 | { |
| 48 | DECLARE_GLOBAL_DATA_PTR; |
| 49 | |
| 50 | return gd->arch.io_port_base; |
| 51 | } |
| 52 | |
Jean-Christophe PLAGNIOL-VILLARD | 089dbb7 | 2007-11-13 09:11:05 +0100 | [diff] [blame] | 53 | static inline void set_io_port_base(unsigned long base) |
| 54 | { |
Paul Burton | 8d6600b | 2016-01-29 13:54:52 +0000 | [diff] [blame] | 55 | DECLARE_GLOBAL_DATA_PTR; |
| 56 | |
| 57 | gd->arch.io_port_base = base; |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 58 | barrier(); |
Jean-Christophe PLAGNIOL-VILLARD | 089dbb7 | 2007-11-13 09:11:05 +0100 | [diff] [blame] | 59 | } |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 60 | |
Paul Burton | 8d6600b | 2016-01-29 13:54:52 +0000 | [diff] [blame] | 61 | #else /* !CONFIG_DYNAMIC_IO_PORT_BASE */ |
| 62 | |
| 63 | static inline ulong mips_io_port_base(void) |
| 64 | { |
| 65 | return 0; |
| 66 | } |
| 67 | |
| 68 | static inline void set_io_port_base(unsigned long base) |
| 69 | { |
| 70 | BUG_ON(base); |
| 71 | } |
| 72 | |
| 73 | #endif /* !CONFIG_DYNAMIC_IO_PORT_BASE */ |
| 74 | |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 75 | /* |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 76 | * virt_to_phys - map virtual addresses to physical |
| 77 | * @address: address to remap |
| 78 | * |
| 79 | * The returned physical address is the physical (CPU) mapping for |
| 80 | * the memory address given. It is only valid to use this function on |
| 81 | * addresses directly mapped or allocated via kmalloc. |
| 82 | * |
| 83 | * This function does not give bus mappings for DMA transfers. In |
| 84 | * almost all conceivable cases a device driver should not be using |
| 85 | * this function |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 86 | */ |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 87 | static inline unsigned long virt_to_phys(volatile const void *address) |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 88 | { |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 89 | unsigned long addr = (unsigned long)address; |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 90 | |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 91 | /* this corresponds to kernel implementation of __pa() */ |
| 92 | #ifdef CONFIG_64BIT |
| 93 | if (addr < CKSEG0) |
| 94 | return XPHYSADDR(addr); |
Zhi-zhou Zhang | dc3c251 | 2012-10-16 15:02:08 +0200 | [diff] [blame] | 95 | #endif |
Paul Burton | e683f1f | 2016-05-26 14:49:33 +0100 | [diff] [blame] | 96 | return CPHYSADDR(addr); |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 97 | } |
| 98 | |
| 99 | /* |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 100 | * phys_to_virt - map physical address to virtual |
| 101 | * @address: address to remap |
| 102 | * |
| 103 | * The returned virtual address is a current CPU mapping for |
| 104 | * the memory address given. It is only valid to use this function on |
| 105 | * addresses that have a kernel mapping |
| 106 | * |
| 107 | * This function does not handle bus mappings for DMA transfers. In |
| 108 | * almost all conceivable cases a device driver should not be using |
| 109 | * this function |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 110 | */ |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 111 | static inline void *phys_to_virt(unsigned long address) |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 112 | { |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 113 | return (void *)(address + PAGE_OFFSET - PHYS_OFFSET); |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 114 | } |
| 115 | |
| 116 | /* |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 117 | * ISA I/O bus memory addresses are 1:1 with the physical address. |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 118 | */ |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 119 | static inline unsigned long isa_virt_to_bus(volatile void *address) |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 120 | { |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 121 | return (unsigned long)address - PAGE_OFFSET; |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 122 | } |
| 123 | |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 124 | static inline void *isa_bus_to_virt(unsigned long address) |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 125 | { |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 126 | return (void *)(address + PAGE_OFFSET); |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 127 | } |
| 128 | |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 129 | #define isa_page_to_bus page_to_phys |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 130 | |
| 131 | /* |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 132 | * However PCI ones are not necessarily 1:1 and therefore these interfaces |
| 133 | * are forbidden in portable PCI drivers. |
| 134 | * |
| 135 | * Allow them for x86 for legacy drivers, though. |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 136 | */ |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 137 | #define virt_to_bus virt_to_phys |
| 138 | #define bus_to_virt phys_to_virt |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 139 | |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 140 | static inline void __iomem *__ioremap_mode(phys_addr_t offset, unsigned long size, |
| 141 | unsigned long flags) |
| 142 | { |
| 143 | void __iomem *addr; |
| 144 | phys_addr_t phys_addr; |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 145 | |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 146 | addr = plat_ioremap(offset, size, flags); |
| 147 | if (addr) |
| 148 | return addr; |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 149 | |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 150 | phys_addr = fixup_bigphys_addr(offset, size); |
| 151 | return (void __iomem *)(unsigned long)CKSEG1ADDR(phys_addr); |
| 152 | } |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 153 | |
| 154 | /* |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 155 | * ioremap - map bus memory into CPU space |
| 156 | * @offset: bus address of the memory |
| 157 | * @size: size of the resource to map |
| 158 | * |
| 159 | * ioremap performs a platform specific sequence of operations to |
| 160 | * make bus memory CPU accessible via the readb/readw/readl/writeb/ |
| 161 | * writew/writel functions and the other mmio helpers. The returned |
| 162 | * address is not guaranteed to be usable directly as a virtual |
| 163 | * address. |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 164 | */ |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 165 | #define ioremap(offset, size) \ |
| 166 | __ioremap_mode((offset), (size), _CACHE_UNCACHED) |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 167 | |
| 168 | /* |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 169 | * ioremap_nocache - map bus memory into CPU space |
| 170 | * @offset: bus address of the memory |
| 171 | * @size: size of the resource to map |
| 172 | * |
| 173 | * ioremap_nocache performs a platform specific sequence of operations to |
| 174 | * make bus memory CPU accessible via the readb/readw/readl/writeb/ |
| 175 | * writew/writel functions and the other mmio helpers. The returned |
| 176 | * address is not guaranteed to be usable directly as a virtual |
| 177 | * address. |
| 178 | * |
| 179 | * This version of ioremap ensures that the memory is marked uncachable |
| 180 | * on the CPU as well as honouring existing caching rules from things like |
| 181 | * the PCI bus. Note that there are other caches and buffers on many |
| 182 | * busses. In particular driver authors should read up on PCI writes |
| 183 | * |
| 184 | * It's useful if some control registers are in such an area and |
| 185 | * write combining or read caching is not desirable: |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 186 | */ |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 187 | #define ioremap_nocache(offset, size) \ |
| 188 | __ioremap_mode((offset), (size), _CACHE_UNCACHED) |
| 189 | #define ioremap_uc ioremap_nocache |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 190 | |
| 191 | /* |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 192 | * ioremap_cachable - map bus memory into CPU space |
| 193 | * @offset: bus address of the memory |
| 194 | * @size: size of the resource to map |
| 195 | * |
| 196 | * ioremap_nocache performs a platform specific sequence of operations to |
| 197 | * make bus memory CPU accessible via the readb/readw/readl/writeb/ |
| 198 | * writew/writel functions and the other mmio helpers. The returned |
| 199 | * address is not guaranteed to be usable directly as a virtual |
| 200 | * address. |
| 201 | * |
| 202 | * This version of ioremap ensures that the memory is marked cachable by |
| 203 | * the CPU. Also enables full write-combining. Useful for some |
| 204 | * memory-like regions on I/O busses. |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 205 | */ |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 206 | #define ioremap_cachable(offset, size) \ |
| 207 | __ioremap_mode((offset), (size), _page_cachable_default) |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 208 | |
| 209 | /* |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 210 | * These two are MIPS specific ioremap variant. ioremap_cacheable_cow |
| 211 | * requests a cachable mapping, ioremap_uncached_accelerated requests a |
| 212 | * mapping using the uncached accelerated mode which isn't supported on |
| 213 | * all processors. |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 214 | */ |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 215 | #define ioremap_cacheable_cow(offset, size) \ |
| 216 | __ioremap_mode((offset), (size), _CACHE_CACHABLE_COW) |
| 217 | #define ioremap_uncached_accelerated(offset, size) \ |
| 218 | __ioremap_mode((offset), (size), _CACHE_UNCACHED_ACCELERATED) |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 219 | |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 220 | static inline void iounmap(const volatile void __iomem *addr) |
| 221 | { |
| 222 | plat_iounmap(addr); |
| 223 | } |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 224 | |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 225 | #ifdef CONFIG_CPU_CAVIUM_OCTEON |
| 226 | #define war_octeon_io_reorder_wmb() wmb() |
| 227 | #else |
| 228 | #define war_octeon_io_reorder_wmb() do { } while (0) |
| 229 | #endif |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 230 | |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 231 | #define __BUILD_MEMORY_SINGLE(pfx, bwlq, type, irq) \ |
| 232 | \ |
| 233 | static inline void pfx##write##bwlq(type val, \ |
| 234 | volatile void __iomem *mem) \ |
| 235 | { \ |
| 236 | volatile type *__mem; \ |
| 237 | type __val; \ |
| 238 | \ |
| 239 | war_octeon_io_reorder_wmb(); \ |
| 240 | \ |
| 241 | __mem = (void *)__swizzle_addr_##bwlq((unsigned long)(mem)); \ |
| 242 | \ |
| 243 | __val = pfx##ioswab##bwlq(__mem, val); \ |
| 244 | \ |
| 245 | if (sizeof(type) != sizeof(u64) || sizeof(u64) == sizeof(long)) \ |
| 246 | *__mem = __val; \ |
| 247 | else if (cpu_has_64bits) { \ |
| 248 | type __tmp; \ |
| 249 | \ |
| 250 | __asm__ __volatile__( \ |
| 251 | ".set arch=r4000" "\t\t# __writeq""\n\t" \ |
| 252 | "dsll32 %L0, %L0, 0" "\n\t" \ |
| 253 | "dsrl32 %L0, %L0, 0" "\n\t" \ |
| 254 | "dsll32 %M0, %M0, 0" "\n\t" \ |
| 255 | "or %L0, %L0, %M0" "\n\t" \ |
| 256 | "sd %L0, %2" "\n\t" \ |
| 257 | ".set mips0" "\n" \ |
| 258 | : "=r" (__tmp) \ |
| 259 | : "0" (__val), "m" (*__mem)); \ |
| 260 | } else \ |
| 261 | BUG(); \ |
| 262 | } \ |
| 263 | \ |
| 264 | static inline type pfx##read##bwlq(const volatile void __iomem *mem) \ |
| 265 | { \ |
| 266 | volatile type *__mem; \ |
| 267 | type __val; \ |
| 268 | \ |
| 269 | __mem = (void *)__swizzle_addr_##bwlq((unsigned long)(mem)); \ |
| 270 | \ |
| 271 | if (sizeof(type) != sizeof(u64) || sizeof(u64) == sizeof(long)) \ |
| 272 | __val = *__mem; \ |
| 273 | else if (cpu_has_64bits) { \ |
| 274 | __asm__ __volatile__( \ |
| 275 | ".set arch=r4000" "\t\t# __readq" "\n\t" \ |
| 276 | "ld %L0, %1" "\n\t" \ |
| 277 | "dsra32 %M0, %L0, 0" "\n\t" \ |
| 278 | "sll %L0, %L0, 0" "\n\t" \ |
| 279 | ".set mips0" "\n" \ |
| 280 | : "=r" (__val) \ |
| 281 | : "m" (*__mem)); \ |
| 282 | } else { \ |
| 283 | __val = 0; \ |
| 284 | BUG(); \ |
| 285 | } \ |
| 286 | \ |
| 287 | return pfx##ioswab##bwlq(__mem, __val); \ |
| 288 | } |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 289 | |
Paul Burton | a053bb1 | 2016-01-29 13:54:51 +0000 | [diff] [blame] | 290 | #define __BUILD_IOPORT_SINGLE(pfx, bwlq, type, p) \ |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 291 | \ |
| 292 | static inline void pfx##out##bwlq##p(type val, unsigned long port) \ |
| 293 | { \ |
| 294 | volatile type *__addr; \ |
| 295 | type __val; \ |
| 296 | \ |
| 297 | war_octeon_io_reorder_wmb(); \ |
| 298 | \ |
Paul Burton | 8d6600b | 2016-01-29 13:54:52 +0000 | [diff] [blame] | 299 | __addr = (void *)__swizzle_addr_##bwlq(mips_io_port_base() + port); \ |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 300 | \ |
| 301 | __val = pfx##ioswab##bwlq(__addr, val); \ |
| 302 | \ |
| 303 | /* Really, we want this to be atomic */ \ |
| 304 | BUILD_BUG_ON(sizeof(type) > sizeof(unsigned long)); \ |
| 305 | \ |
| 306 | *__addr = __val; \ |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 307 | } \ |
| 308 | \ |
| 309 | static inline type pfx##in##bwlq##p(unsigned long port) \ |
| 310 | { \ |
| 311 | volatile type *__addr; \ |
| 312 | type __val; \ |
| 313 | \ |
Paul Burton | 8d6600b | 2016-01-29 13:54:52 +0000 | [diff] [blame] | 314 | __addr = (void *)__swizzle_addr_##bwlq(mips_io_port_base() + port); \ |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 315 | \ |
| 316 | BUILD_BUG_ON(sizeof(type) > sizeof(unsigned long)); \ |
| 317 | \ |
| 318 | __val = *__addr; \ |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 319 | \ |
| 320 | return pfx##ioswab##bwlq(__addr, __val); \ |
| 321 | } |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 322 | |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 323 | #define __BUILD_MEMORY_PFX(bus, bwlq, type) \ |
| 324 | \ |
| 325 | __BUILD_MEMORY_SINGLE(bus, bwlq, type, 1) |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 326 | |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 327 | #define BUILDIO_MEM(bwlq, type) \ |
| 328 | \ |
| 329 | __BUILD_MEMORY_PFX(__raw_, bwlq, type) \ |
| 330 | __BUILD_MEMORY_PFX(, bwlq, type) \ |
| 331 | __BUILD_MEMORY_PFX(__mem_, bwlq, type) \ |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 332 | |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 333 | BUILDIO_MEM(b, u8) |
| 334 | BUILDIO_MEM(w, u16) |
| 335 | BUILDIO_MEM(l, u32) |
| 336 | BUILDIO_MEM(q, u64) |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 337 | |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 338 | #define __BUILD_IOPORT_PFX(bus, bwlq, type) \ |
Paul Burton | a053bb1 | 2016-01-29 13:54:51 +0000 | [diff] [blame] | 339 | __BUILD_IOPORT_SINGLE(bus, bwlq, type, ) \ |
| 340 | __BUILD_IOPORT_SINGLE(bus, bwlq, type, _p) |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 341 | |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 342 | #define BUILDIO_IOPORT(bwlq, type) \ |
| 343 | __BUILD_IOPORT_PFX(, bwlq, type) \ |
| 344 | __BUILD_IOPORT_PFX(__mem_, bwlq, type) |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 345 | |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 346 | BUILDIO_IOPORT(b, u8) |
| 347 | BUILDIO_IOPORT(w, u16) |
| 348 | BUILDIO_IOPORT(l, u32) |
| 349 | #ifdef CONFIG_64BIT |
| 350 | BUILDIO_IOPORT(q, u64) |
| 351 | #endif |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 352 | |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 353 | #define __BUILDIO(bwlq, type) \ |
| 354 | \ |
| 355 | __BUILD_MEMORY_SINGLE(____raw_, bwlq, type, 0) |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 356 | |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 357 | __BUILDIO(q, u64) |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 358 | |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 359 | #define readb_relaxed readb |
| 360 | #define readw_relaxed readw |
| 361 | #define readl_relaxed readl |
| 362 | #define readq_relaxed readq |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 363 | |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 364 | #define writeb_relaxed writeb |
| 365 | #define writew_relaxed writew |
| 366 | #define writel_relaxed writel |
| 367 | #define writeq_relaxed writeq |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 368 | |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 369 | #define readb_be(addr) \ |
| 370 | __raw_readb((__force unsigned *)(addr)) |
| 371 | #define readw_be(addr) \ |
| 372 | be16_to_cpu(__raw_readw((__force unsigned *)(addr))) |
| 373 | #define readl_be(addr) \ |
| 374 | be32_to_cpu(__raw_readl((__force unsigned *)(addr))) |
| 375 | #define readq_be(addr) \ |
| 376 | be64_to_cpu(__raw_readq((__force unsigned *)(addr))) |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 377 | |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 378 | #define writeb_be(val, addr) \ |
| 379 | __raw_writeb((val), (__force unsigned *)(addr)) |
| 380 | #define writew_be(val, addr) \ |
| 381 | __raw_writew(cpu_to_be16((val)), (__force unsigned *)(addr)) |
| 382 | #define writel_be(val, addr) \ |
| 383 | __raw_writel(cpu_to_be32((val)), (__force unsigned *)(addr)) |
| 384 | #define writeq_be(val, addr) \ |
| 385 | __raw_writeq(cpu_to_be64((val)), (__force unsigned *)(addr)) |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 386 | |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 387 | /* |
| 388 | * Some code tests for these symbols |
| 389 | */ |
| 390 | #define readq readq |
| 391 | #define writeq writeq |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 392 | |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 393 | #define __BUILD_MEMORY_STRING(bwlq, type) \ |
| 394 | \ |
| 395 | static inline void writes##bwlq(volatile void __iomem *mem, \ |
| 396 | const void *addr, unsigned int count) \ |
| 397 | { \ |
| 398 | const volatile type *__addr = addr; \ |
| 399 | \ |
| 400 | while (count--) { \ |
| 401 | __mem_write##bwlq(*__addr, mem); \ |
| 402 | __addr++; \ |
| 403 | } \ |
| 404 | } \ |
| 405 | \ |
| 406 | static inline void reads##bwlq(volatile void __iomem *mem, void *addr, \ |
| 407 | unsigned int count) \ |
| 408 | { \ |
| 409 | volatile type *__addr = addr; \ |
| 410 | \ |
| 411 | while (count--) { \ |
| 412 | *__addr = __mem_read##bwlq(mem); \ |
| 413 | __addr++; \ |
| 414 | } \ |
| 415 | } |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 416 | |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 417 | #define __BUILD_IOPORT_STRING(bwlq, type) \ |
| 418 | \ |
| 419 | static inline void outs##bwlq(unsigned long port, const void *addr, \ |
| 420 | unsigned int count) \ |
| 421 | { \ |
| 422 | const volatile type *__addr = addr; \ |
| 423 | \ |
| 424 | while (count--) { \ |
| 425 | __mem_out##bwlq(*__addr, port); \ |
| 426 | __addr++; \ |
| 427 | } \ |
| 428 | } \ |
| 429 | \ |
| 430 | static inline void ins##bwlq(unsigned long port, void *addr, \ |
| 431 | unsigned int count) \ |
| 432 | { \ |
| 433 | volatile type *__addr = addr; \ |
| 434 | \ |
| 435 | while (count--) { \ |
| 436 | *__addr = __mem_in##bwlq(port); \ |
| 437 | __addr++; \ |
| 438 | } \ |
| 439 | } |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 440 | |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 441 | #define BUILDSTRING(bwlq, type) \ |
| 442 | \ |
| 443 | __BUILD_MEMORY_STRING(bwlq, type) \ |
| 444 | __BUILD_IOPORT_STRING(bwlq, type) |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 445 | |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 446 | BUILDSTRING(b, u8) |
| 447 | BUILDSTRING(w, u16) |
| 448 | BUILDSTRING(l, u32) |
| 449 | #ifdef CONFIG_64BIT |
| 450 | BUILDSTRING(q, u64) |
| 451 | #endif |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 452 | |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 453 | |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 454 | #ifdef CONFIG_CPU_CAVIUM_OCTEON |
| 455 | #define mmiowb() wmb() |
| 456 | #else |
| 457 | /* Depends on MIPS II instruction set */ |
| 458 | #define mmiowb() asm volatile ("sync" ::: "memory") |
| 459 | #endif |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 460 | |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 461 | static inline void memset_io(volatile void __iomem *addr, unsigned char val, int count) |
| 462 | { |
| 463 | memset((void __force *)addr, val, count); |
| 464 | } |
| 465 | static inline void memcpy_fromio(void *dst, const volatile void __iomem *src, int count) |
| 466 | { |
| 467 | memcpy(dst, (void __force *)src, count); |
| 468 | } |
| 469 | static inline void memcpy_toio(volatile void __iomem *dst, const void *src, int count) |
| 470 | { |
| 471 | memcpy((void __force *)dst, src, count); |
| 472 | } |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 473 | |
| 474 | /* |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 475 | * Read a 32-bit register that requires a 64-bit read cycle on the bus. |
| 476 | * Avoid interrupt mucking, just adjust the address for 4-byte access. |
| 477 | * Assume the addresses are 8-byte aligned. |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 478 | */ |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 479 | #ifdef __MIPSEB__ |
| 480 | #define __CSR_32_ADJUST 4 |
| 481 | #else |
| 482 | #define __CSR_32_ADJUST 0 |
| 483 | #endif |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 484 | |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 485 | #define csr_out32(v, a) (*(volatile u32 *)((unsigned long)(a) + __CSR_32_ADJUST) = (v)) |
| 486 | #define csr_in32(a) (*(volatile u32 *)((unsigned long)(a) + __CSR_32_ADJUST)) |
Haiying Wang | c123a38 | 2007-02-21 16:52:31 +0100 | [diff] [blame] | 487 | |
Haavard Skinnemoen | f985551 | 2007-12-13 12:56:33 +0100 | [diff] [blame] | 488 | /* |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 489 | * U-Boot specific |
Haavard Skinnemoen | f985551 | 2007-12-13 12:56:33 +0100 | [diff] [blame] | 490 | */ |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 491 | #define sync() mmiowb() |
| 492 | |
| 493 | #define MAP_NOCACHE (1) |
Haavard Skinnemoen | f985551 | 2007-12-13 12:56:33 +0100 | [diff] [blame] | 494 | #define MAP_WRCOMBINE (0) |
| 495 | #define MAP_WRBACK (0) |
| 496 | #define MAP_WRTHROUGH (0) |
| 497 | |
| 498 | static inline void * |
| 499 | map_physmem(phys_addr_t paddr, unsigned long len, unsigned long flags) |
| 500 | { |
Daniel Schwierzeck | b01d3e1 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 501 | if (flags == MAP_NOCACHE) |
| 502 | return ioremap(paddr, len); |
| 503 | |
Paul Burton | 9a7ca03 | 2016-09-26 19:28:57 +0100 | [diff] [blame^] | 504 | return (void *)CKSEG0ADDR(paddr); |
Haavard Skinnemoen | f985551 | 2007-12-13 12:56:33 +0100 | [diff] [blame] | 505 | } |
| 506 | |
| 507 | /* |
| 508 | * Take down a mapping set up by map_physmem(). |
| 509 | */ |
| 510 | static inline void unmap_physmem(void *vaddr, unsigned long flags) |
| 511 | { |
Haavard Skinnemoen | f985551 | 2007-12-13 12:56:33 +0100 | [diff] [blame] | 512 | } |
| 513 | |
Daniel Schwierzeck | 650f3f2 | 2016-01-15 15:54:48 +0100 | [diff] [blame] | 514 | #define __BUILD_CLRBITS(bwlq, sfx, end, type) \ |
| 515 | \ |
| 516 | static inline void clrbits_##sfx(volatile void __iomem *mem, type clr) \ |
| 517 | { \ |
| 518 | type __val = __raw_read##bwlq(mem); \ |
| 519 | __val = end##_to_cpu(__val); \ |
| 520 | __val &= ~clr; \ |
| 521 | __val = cpu_to_##end(__val); \ |
| 522 | __raw_write##bwlq(__val, mem); \ |
| 523 | } |
| 524 | |
| 525 | #define __BUILD_SETBITS(bwlq, sfx, end, type) \ |
| 526 | \ |
| 527 | static inline void setbits_##sfx(volatile void __iomem *mem, type set) \ |
| 528 | { \ |
| 529 | type __val = __raw_read##bwlq(mem); \ |
| 530 | __val = end##_to_cpu(__val); \ |
| 531 | __val |= set; \ |
| 532 | __val = cpu_to_##end(__val); \ |
| 533 | __raw_write##bwlq(__val, mem); \ |
| 534 | } |
| 535 | |
| 536 | #define __BUILD_CLRSETBITS(bwlq, sfx, end, type) \ |
| 537 | \ |
| 538 | static inline void clrsetbits_##sfx(volatile void __iomem *mem, \ |
| 539 | type clr, type set) \ |
| 540 | { \ |
| 541 | type __val = __raw_read##bwlq(mem); \ |
| 542 | __val = end##_to_cpu(__val); \ |
| 543 | __val &= ~clr; \ |
| 544 | __val |= set; \ |
| 545 | __val = cpu_to_##end(__val); \ |
| 546 | __raw_write##bwlq(__val, mem); \ |
| 547 | } |
| 548 | |
| 549 | #define BUILD_CLRSETBITS(bwlq, sfx, end, type) \ |
| 550 | \ |
| 551 | __BUILD_CLRBITS(bwlq, sfx, end, type) \ |
| 552 | __BUILD_SETBITS(bwlq, sfx, end, type) \ |
| 553 | __BUILD_CLRSETBITS(bwlq, sfx, end, type) |
| 554 | |
| 555 | #define __to_cpu(v) (v) |
| 556 | #define cpu_to__(v) (v) |
| 557 | |
| 558 | BUILD_CLRSETBITS(b, 8, _, u8) |
| 559 | BUILD_CLRSETBITS(w, le16, le16, u16) |
| 560 | BUILD_CLRSETBITS(w, be16, be16, u16) |
| 561 | BUILD_CLRSETBITS(w, 16, _, u16) |
| 562 | BUILD_CLRSETBITS(l, le32, le32, u32) |
| 563 | BUILD_CLRSETBITS(l, be32, be32, u32) |
| 564 | BUILD_CLRSETBITS(l, 32, _, u32) |
| 565 | BUILD_CLRSETBITS(q, le64, le64, u64) |
| 566 | BUILD_CLRSETBITS(q, be64, be64, u64) |
| 567 | BUILD_CLRSETBITS(q, 64, _, u64) |
| 568 | |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 569 | #endif /* _ASM_IO_H */ |