blob: 346fffd9e972695fa5e76aa56bcfce23d99d663d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * Copyright (C) 1994, 1995 Waldorf GmbH
Ralf Baechle966f4402006-03-15 11:36:31 +00007 * Copyright (C) 1994 - 2000, 06 Ralf Baechle
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
9 * Copyright (C) 2004, 2005 MIPS Technologies, Inc. All rights reserved.
Ralf Baechle70342282013-01-22 12:59:30 +010010 * Author: Maciej W. Rozycki <macro@mips.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
12#ifndef _ASM_IO_H
13#define _ASM_IO_H
14
Serge Semin9748e332018-07-09 16:57:12 +030015#define ARCH_HAS_IOREMAP_WC
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/compiler.h>
18#include <linux/kernel.h>
19#include <linux/types.h>
Jim Quinlan92d11592012-09-06 11:36:55 -040020#include <linux/irqflags.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22#include <asm/addrspace.h>
Maciej W. Rozycki4ae04522018-10-08 01:37:01 +010023#include <asm/barrier.h>
Yoichi Yuasa893a0572012-07-18 14:12:01 -070024#include <asm/bug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <asm/byteorder.h>
26#include <asm/cpu.h>
27#include <asm/cpu-features.h>
Ralf Baechle140c1722006-12-07 15:35:43 +010028#include <asm-generic/iomap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <asm/page.h>
30#include <asm/pgtable-bits.h>
31#include <asm/processor.h>
Ralf Baechlefe00f942005-03-01 19:22:29 +000032#include <asm/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <mangle-port.h>
34
35/*
Maciej W. Rozycki4912ba72005-02-22 21:49:17 +000036 * Raw operations are never swapped in software. OTOH values that raw
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 * operations are working on may or may not have been swapped by the bus
38 * hardware. An example use would be for flash memory that's used for
39 * execute in place.
40 */
Ralf Baechle21a151d2007-10-11 23:46:15 +010041# define __raw_ioswabb(a, x) (x)
42# define __raw_ioswabw(a, x) (x)
43# define __raw_ioswabl(a, x) (x)
44# define __raw_ioswabq(a, x) (x)
45# define ____raw_ioswabq(a, x) (x)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Maciej W. Rozycki8b656252018-10-08 01:37:23 +010047# define __relaxed_ioswabb ioswabb
48# define __relaxed_ioswabw ioswabw
49# define __relaxed_ioswabl ioswabl
50# define __relaxed_ioswabq ioswabq
51
Atsushi Nemotoa8433132006-02-17 01:36:24 +090052/* ioswab[bwlq], __mem_ioswab[bwlq] are defined in mangle-port.h */
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#define IO_SPACE_LIMIT 0xffff
55
56/*
57 * On MIPS I/O ports are memory mapped, so we access them using normal
58 * load/store instructions. mips_io_port_base is the virtual address to
59 * which all ports are being mapped. For sake of efficiency some code
60 * assumes that this is an address that can be loaded with a single lui
61 * instruction, so the lower 16 bits must be zero. Should be true on
62 * on any sane architecture; generic code does not use this assumption.
63 */
Nick Desaulniers12051b312019-07-29 14:10:12 -070064extern unsigned long mips_io_port_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Ralf Baechle966f4402006-03-15 11:36:31 +000066static inline void set_io_port_base(unsigned long base)
67{
Nick Desaulniers12051b312019-07-29 14:10:12 -070068 mips_io_port_base = base;
Ralf Baechle966f4402006-03-15 11:36:31 +000069}
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71/*
Paul Burtonb962aeb2018-08-29 14:54:00 -070072 * Provide the necessary definitions for generic iomap. We make use of
73 * mips_io_port_base for iomap(), but we don't reserve any low addresses for
74 * use with I/O ports.
75 */
Maciej W. Rozycki4ae04522018-10-08 01:37:01 +010076
Paul Burtonb962aeb2018-08-29 14:54:00 -070077#define HAVE_ARCH_PIO_SIZE
78#define PIO_OFFSET mips_io_port_base
79#define PIO_MASK IO_SPACE_LIMIT
80#define PIO_RESERVED 0x0UL
81
82/*
Maciej W. Rozycki4ae04522018-10-08 01:37:01 +010083 * Enforce in-order execution of data I/O. In the MIPS architecture
84 * these are equivalent to corresponding platform-specific memory
85 * barriers defined in <asm/barrier.h>. API pinched from PowerPC,
86 * with sync additionally defined.
87 */
88#define iobarrier_rw() mb()
89#define iobarrier_r() rmb()
90#define iobarrier_w() wmb()
91#define iobarrier_sync() iob()
92
93/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 * virt_to_phys - map virtual addresses to physical
95 * @address: address to remap
96 *
97 * The returned physical address is the physical (CPU) mapping for
98 * the memory address given. It is only valid to use this function on
99 * addresses directly mapped or allocated via kmalloc.
100 *
101 * This function does not give bus mappings for DMA transfers. In
102 * almost all conceivable cases a device driver should not be using
103 * this function
104 */
Franck Bui-Huu99e3b942006-10-19 13:19:59 +0200105static inline unsigned long virt_to_phys(volatile const void *address)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
David Daney49c426b2013-05-07 17:11:16 +0000107 return __pa(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108}
109
110/*
111 * phys_to_virt - map physical address to virtual
112 * @address: address to remap
113 *
114 * The returned virtual address is a current CPU mapping for
115 * the memory address given. It is only valid to use this function on
116 * addresses that have a kernel mapping
117 *
118 * This function does not handle bus mappings for DMA transfers. In
119 * almost all conceivable cases a device driver should not be using
120 * this function
121 */
122static inline void * phys_to_virt(unsigned long address)
123{
Franck Bui-Huu6f284a22007-01-10 09:44:05 +0100124 return (void *)(address + PAGE_OFFSET - PHYS_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125}
126
127/*
128 * ISA I/O bus memory addresses are 1:1 with the physical address.
129 */
Paul Burton0494d7f2018-07-27 18:23:19 -0700130static inline unsigned long isa_virt_to_bus(volatile void *address)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
Paul Burton0494d7f2018-07-27 18:23:19 -0700132 return virt_to_phys(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133}
134
Paul Burton0494d7f2018-07-27 18:23:19 -0700135static inline void *isa_bus_to_virt(unsigned long address)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136{
Paul Burton0494d7f2018-07-27 18:23:19 -0700137 return phys_to_virt(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138}
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140/*
141 * However PCI ones are not necessarily 1:1 and therefore these interfaces
142 * are forbidden in portable PCI drivers.
143 *
144 * Allow them for x86 for legacy drivers, though.
145 */
146#define virt_to_bus virt_to_phys
147#define bus_to_virt phys_to_virt
148
149/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 * Change "struct page" to physical address.
151 */
152#define page_to_phys(page) ((dma_addr_t)page_to_pfn(page) << PAGE_SHIFT)
153
Christoph Hellwigd257b8f2020-04-16 17:00:10 +0200154void __iomem *ioremap_prot(phys_addr_t offset, unsigned long size,
155 unsigned long prot_val);
156void iounmap(const volatile void __iomem *addr);
Christoph Hellwig8e487c12020-04-16 17:00:09 +0200157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158/*
159 * ioremap - map bus memory into CPU space
160 * @offset: bus address of the memory
161 * @size: size of the resource to map
162 *
163 * ioremap performs a platform specific sequence of operations to
164 * make bus memory CPU accessible via the readb/readw/readl/writeb/
165 * writew/writel functions and the other mmio helpers. The returned
166 * address is not guaranteed to be usable directly as a virtual
167 * address.
168 */
169#define ioremap(offset, size) \
Christoph Hellwig5c9ff5702020-04-16 17:00:08 +0200170 ioremap_prot((offset), (size), _CACHE_UNCACHED)
Christoph Hellwigd23cc632019-12-06 09:46:22 +0100171#define ioremap_uc ioremap
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173/*
Christoph Hellwig60af0d92019-08-17 09:32:31 +0200174 * ioremap_cache - map bus memory into CPU space
Ralf Baechle70342282013-01-22 12:59:30 +0100175 * @offset: bus address of the memory
176 * @size: size of the resource to map
Ralf Baechle778e2ac2006-02-28 17:04:20 +0000177 *
Christoph Hellwig60af0d92019-08-17 09:32:31 +0200178 * ioremap_cache performs a platform specific sequence of operations to
Ralf Baechle778e2ac2006-02-28 17:04:20 +0000179 * make bus memory CPU accessible via the readb/readw/readl/writeb/
180 * writew/writel functions and the other mmio helpers. The returned
181 * address is not guaranteed to be usable directly as a virtual
182 * address.
183 *
184 * This version of ioremap ensures that the memory is marked cachable by
Ralf Baechle70342282013-01-22 12:59:30 +0100185 * the CPU. Also enables full write-combining. Useful for some
Ralf Baechle778e2ac2006-02-28 17:04:20 +0000186 * memory-like regions on I/O busses.
187 */
Christoph Hellwig60af0d92019-08-17 09:32:31 +0200188#define ioremap_cache(offset, size) \
Christoph Hellwig5c9ff5702020-04-16 17:00:08 +0200189 ioremap_prot((offset), (size), _page_cachable_default)
Ralf Baechle778e2ac2006-02-28 17:04:20 +0000190
191/*
Serge Semin9748e332018-07-09 16:57:12 +0300192 * ioremap_wc - map bus memory into CPU space
193 * @offset: bus address of the memory
194 * @size: size of the resource to map
195 *
196 * ioremap_wc 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 uncachable
203 * but accelerated by means of write-combining feature. It is specifically
204 * useful for PCIe prefetchable windows, which may vastly improve a
205 * communications performance. If it was determined on boot stage, what
206 * CPU CCA doesn't support UCA, the method shall fall-back to the
207 * _CACHE_UNCACHED option (see cpu_probe() method).
208 */
209#define ioremap_wc(offset, size) \
Christoph Hellwig5c9ff5702020-04-16 17:00:08 +0200210 ioremap_prot((offset), (size), boot_cpu_data.writecombine)
Serge Semin9748e332018-07-09 16:57:12 +0300211
Jiaxun Yang268a2d62019-10-20 22:43:13 +0800212#if defined(CONFIG_CPU_CAVIUM_OCTEON) || defined(CONFIG_CPU_LOONGSON64)
Huacai Chen1e820da32016-03-03 09:45:13 +0800213#define war_io_reorder_wmb() wmb()
David Daney8faca492008-12-11 15:33:29 -0800214#else
Sinan Kayaf6b7aee2018-04-03 08:55:03 -0400215#define war_io_reorder_wmb() barrier()
David Daney8faca492008-12-11 15:33:29 -0800216#endif
217
Maciej W. Rozycki8b656252018-10-08 01:37:23 +0100218#define __BUILD_MEMORY_SINGLE(pfx, bwlq, type, barrier, relax, irq) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 \
220static inline void pfx##write##bwlq(type val, \
221 volatile void __iomem *mem) \
222{ \
223 volatile type *__mem; \
224 type __val; \
225 \
Maciej W. Rozycki3d474da2018-10-08 01:37:16 +0100226 if (barrier) \
227 iobarrier_rw(); \
228 else \
229 war_io_reorder_wmb(); \
David Daney8faca492008-12-11 15:33:29 -0800230 \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 __mem = (void *)__swizzle_addr_##bwlq((unsigned long)(mem)); \
232 \
Atsushi Nemotoa8433132006-02-17 01:36:24 +0900233 __val = pfx##ioswab##bwlq(__mem, val); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 \
Ralf Baechle70342282013-01-22 12:59:30 +0100235 if (sizeof(type) != sizeof(u64) || sizeof(u64) == sizeof(long)) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 *__mem = __val; \
237 else if (cpu_has_64bits) { \
238 unsigned long __flags; \
239 type __tmp; \
240 \
241 if (irq) \
242 local_irq_save(__flags); \
243 __asm__ __volatile__( \
Paul Burton378ed6f2018-11-08 20:14:38 +0000244 ".set push" "\t\t# __writeq""\n\t" \
245 ".set arch=r4000" "\n\t" \
Ralf Baechle70342282013-01-22 12:59:30 +0100246 "dsll32 %L0, %L0, 0" "\n\t" \
247 "dsrl32 %L0, %L0, 0" "\n\t" \
248 "dsll32 %M0, %M0, 0" "\n\t" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 "or %L0, %L0, %M0" "\n\t" \
250 "sd %L0, %2" "\n\t" \
Paul Burton378ed6f2018-11-08 20:14:38 +0000251 ".set pop" "\n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 : "=r" (__tmp) \
Ralf Baechleb77bb372011-06-30 14:43:14 +0100253 : "0" (__val), "m" (*__mem)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 if (irq) \
255 local_irq_restore(__flags); \
256 } else \
257 BUG(); \
258} \
259 \
Atsushi Nemotob887d3f2006-02-09 00:57:44 +0900260static inline type pfx##read##bwlq(const volatile void __iomem *mem) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{ \
262 volatile type *__mem; \
263 type __val; \
264 \
265 __mem = (void *)__swizzle_addr_##bwlq((unsigned long)(mem)); \
266 \
Maciej W. Rozycki3d474da2018-10-08 01:37:16 +0100267 if (barrier) \
268 iobarrier_rw(); \
269 \
Ralf Baechle70342282013-01-22 12:59:30 +0100270 if (sizeof(type) != sizeof(u64) || sizeof(u64) == sizeof(long)) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 __val = *__mem; \
272 else if (cpu_has_64bits) { \
273 unsigned long __flags; \
274 \
Thiemo Seufer049b13c2005-02-21 11:44:31 +0000275 if (irq) \
276 local_irq_save(__flags); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 __asm__ __volatile__( \
Paul Burton378ed6f2018-11-08 20:14:38 +0000278 ".set push" "\t\t# __readq" "\n\t" \
279 ".set arch=r4000" "\n\t" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 "ld %L0, %1" "\n\t" \
Ralf Baechle70342282013-01-22 12:59:30 +0100281 "dsra32 %M0, %L0, 0" "\n\t" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 "sll %L0, %L0, 0" "\n\t" \
Paul Burton378ed6f2018-11-08 20:14:38 +0000283 ".set pop" "\n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 : "=r" (__val) \
Ralf Baechleb77bb372011-06-30 14:43:14 +0100285 : "m" (*__mem)); \
Thiemo Seufer049b13c2005-02-21 11:44:31 +0000286 if (irq) \
287 local_irq_restore(__flags); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 } else { \
289 __val = 0; \
290 BUG(); \
291 } \
292 \
Sinan Kayaa1cc7032018-04-12 22:30:44 -0400293 /* prevent prefetching of coherent DMA data prematurely */ \
Maciej W. Rozycki8b656252018-10-08 01:37:23 +0100294 if (!relax) \
295 rmb(); \
Atsushi Nemotoa8433132006-02-17 01:36:24 +0900296 return pfx##ioswab##bwlq(__mem, __val); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297}
298
Maciej W. Rozycki8b656252018-10-08 01:37:23 +0100299#define __BUILD_IOPORT_SINGLE(pfx, bwlq, type, barrier, relax, p) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 \
301static inline void pfx##out##bwlq##p(type val, unsigned long port) \
302{ \
303 volatile type *__addr; \
304 type __val; \
305 \
Maciej W. Rozycki3d474da2018-10-08 01:37:16 +0100306 if (barrier) \
307 iobarrier_rw(); \
308 else \
309 war_io_reorder_wmb(); \
David Daney8faca492008-12-11 15:33:29 -0800310 \
Atsushi Nemotoa8433132006-02-17 01:36:24 +0900311 __addr = (void *)__swizzle_addr_##bwlq(mips_io_port_base + port); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 \
Atsushi Nemotoa8433132006-02-17 01:36:24 +0900313 __val = pfx##ioswab##bwlq(__addr, val); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 \
Ralf Baechle9d58f302005-09-23 20:02:38 +0000315 /* Really, we want this to be atomic */ \
316 BUILD_BUG_ON(sizeof(type) > sizeof(unsigned long)); \
317 \
318 *__addr = __val; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319} \
320 \
321static inline type pfx##in##bwlq##p(unsigned long port) \
322{ \
323 volatile type *__addr; \
324 type __val; \
325 \
Atsushi Nemotoa8433132006-02-17 01:36:24 +0900326 __addr = (void *)__swizzle_addr_##bwlq(mips_io_port_base + port); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 \
Ralf Baechle9d58f302005-09-23 20:02:38 +0000328 BUILD_BUG_ON(sizeof(type) > sizeof(unsigned long)); \
329 \
Maciej W. Rozycki3d474da2018-10-08 01:37:16 +0100330 if (barrier) \
331 iobarrier_rw(); \
332 \
Ralf Baechle9d58f302005-09-23 20:02:38 +0000333 __val = *__addr; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 \
Huacai Chen18f3e952018-06-12 17:54:42 +0800335 /* prevent prefetching of coherent DMA data prematurely */ \
Maciej W. Rozycki8b656252018-10-08 01:37:23 +0100336 if (!relax) \
337 rmb(); \
Atsushi Nemotoa8433132006-02-17 01:36:24 +0900338 return pfx##ioswab##bwlq(__addr, __val); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339}
340
Maciej W. Rozycki8b656252018-10-08 01:37:23 +0100341#define __BUILD_MEMORY_PFX(bus, bwlq, type, relax) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 \
Maciej W. Rozycki8b656252018-10-08 01:37:23 +0100343__BUILD_MEMORY_SINGLE(bus, bwlq, type, 1, relax, 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Ralf Baechle9d58f302005-09-23 20:02:38 +0000345#define BUILDIO_MEM(bwlq, type) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 \
Maciej W. Rozycki8b656252018-10-08 01:37:23 +0100347__BUILD_MEMORY_PFX(__raw_, bwlq, type, 0) \
348__BUILD_MEMORY_PFX(__relaxed_, bwlq, type, 1) \
349__BUILD_MEMORY_PFX(__mem_, bwlq, type, 0) \
350__BUILD_MEMORY_PFX(, bwlq, type, 0)
Ralf Baechle9d58f302005-09-23 20:02:38 +0000351
352BUILDIO_MEM(b, u8)
353BUILDIO_MEM(w, u16)
354BUILDIO_MEM(l, u32)
Serge Semin1e279142019-06-14 09:33:42 +0300355#ifdef CONFIG_64BIT
Ralf Baechle9d58f302005-09-23 20:02:38 +0000356BUILDIO_MEM(q, u64)
Serge Semin1e279142019-06-14 09:33:42 +0300357#else
358__BUILD_MEMORY_PFX(__raw_, q, u64, 0)
359__BUILD_MEMORY_PFX(__mem_, q, u64, 0)
360#endif
Ralf Baechle9d58f302005-09-23 20:02:38 +0000361
362#define __BUILD_IOPORT_PFX(bus, bwlq, type) \
Maciej W. Rozycki8b656252018-10-08 01:37:23 +0100363 __BUILD_IOPORT_SINGLE(bus, bwlq, type, 1, 0,) \
364 __BUILD_IOPORT_SINGLE(bus, bwlq, type, 1, 0, _p)
Ralf Baechle9d58f302005-09-23 20:02:38 +0000365
366#define BUILDIO_IOPORT(bwlq, type) \
367 __BUILD_IOPORT_PFX(, bwlq, type) \
Al Viro290f10a2005-12-07 23:12:54 -0500368 __BUILD_IOPORT_PFX(__mem_, bwlq, type)
Ralf Baechle9d58f302005-09-23 20:02:38 +0000369
370BUILDIO_IOPORT(b, u8)
371BUILDIO_IOPORT(w, u16)
372BUILDIO_IOPORT(l, u32)
373#ifdef CONFIG_64BIT
374BUILDIO_IOPORT(q, u64)
375#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
377#define __BUILDIO(bwlq, type) \
378 \
Maciej W. Rozycki8b656252018-10-08 01:37:23 +0100379__BUILD_MEMORY_SINGLE(____raw_, bwlq, type, 1, 0, 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381__BUILDIO(q, u64)
382
Maciej W. Rozycki8b656252018-10-08 01:37:23 +0100383#define readb_relaxed __relaxed_readb
384#define readw_relaxed __relaxed_readw
385#define readl_relaxed __relaxed_readl
Serge Semin1e279142019-06-14 09:33:42 +0300386#ifdef CONFIG_64BIT
Maciej W. Rozycki8b656252018-10-08 01:37:23 +0100387#define readq_relaxed __relaxed_readq
Serge Semin1e279142019-06-14 09:33:42 +0300388#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Maciej W. Rozycki8b656252018-10-08 01:37:23 +0100390#define writeb_relaxed __relaxed_writeb
391#define writew_relaxed __relaxed_writew
392#define writel_relaxed __relaxed_writel
Serge Semin1e279142019-06-14 09:33:42 +0300393#ifdef CONFIG_64BIT
Maciej W. Rozycki8b656252018-10-08 01:37:23 +0100394#define writeq_relaxed __relaxed_writeq
Serge Semin1e279142019-06-14 09:33:42 +0300395#endif
Florian Fainelliedd42012013-05-31 13:07:44 +0000396
Florian Fainellif868ba22009-12-16 11:29:06 +0100397#define readb_be(addr) \
398 __raw_readb((__force unsigned *)(addr))
399#define readw_be(addr) \
400 be16_to_cpu(__raw_readw((__force unsigned *)(addr)))
401#define readl_be(addr) \
402 be32_to_cpu(__raw_readl((__force unsigned *)(addr)))
403#define readq_be(addr) \
404 be64_to_cpu(__raw_readq((__force unsigned *)(addr)))
405
406#define writeb_be(val, addr) \
407 __raw_writeb((val), (__force unsigned *)(addr))
408#define writew_be(val, addr) \
409 __raw_writew(cpu_to_be16((val)), (__force unsigned *)(addr))
410#define writel_be(val, addr) \
411 __raw_writel(cpu_to_be32((val)), (__force unsigned *)(addr))
412#define writeq_be(val, addr) \
413 __raw_writeq(cpu_to_be64((val)), (__force unsigned *)(addr))
414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415/*
416 * Some code tests for these symbols
417 */
Serge Semin1e279142019-06-14 09:33:42 +0300418#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419#define readq readq
420#define writeq writeq
Serge Semin1e279142019-06-14 09:33:42 +0300421#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
423#define __BUILD_MEMORY_STRING(bwlq, type) \
424 \
Arnaud Giersch99289a42005-11-13 00:38:18 +0100425static inline void writes##bwlq(volatile void __iomem *mem, \
426 const void *addr, unsigned int count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427{ \
Arnaud Giersch99289a42005-11-13 00:38:18 +0100428 const volatile type *__addr = addr; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 \
430 while (count--) { \
Al Viro290f10a2005-12-07 23:12:54 -0500431 __mem_write##bwlq(*__addr, mem); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 __addr++; \
433 } \
434} \
435 \
436static inline void reads##bwlq(volatile void __iomem *mem, void *addr, \
437 unsigned int count) \
438{ \
439 volatile type *__addr = addr; \
440 \
441 while (count--) { \
Al Viro290f10a2005-12-07 23:12:54 -0500442 *__addr = __mem_read##bwlq(mem); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 __addr++; \
444 } \
445}
446
447#define __BUILD_IOPORT_STRING(bwlq, type) \
448 \
Ralf Baechleecba36d2005-04-18 14:54:43 +0000449static inline void outs##bwlq(unsigned long port, const void *addr, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 unsigned int count) \
451{ \
Ralf Baechleecba36d2005-04-18 14:54:43 +0000452 const volatile type *__addr = addr; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 \
454 while (count--) { \
Al Viro290f10a2005-12-07 23:12:54 -0500455 __mem_out##bwlq(*__addr, port); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 __addr++; \
457 } \
458} \
459 \
460static inline void ins##bwlq(unsigned long port, void *addr, \
461 unsigned int count) \
462{ \
463 volatile type *__addr = addr; \
464 \
465 while (count--) { \
Al Viro290f10a2005-12-07 23:12:54 -0500466 *__addr = __mem_in##bwlq(port); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 __addr++; \
468 } \
469}
470
471#define BUILDSTRING(bwlq, type) \
472 \
473__BUILD_MEMORY_STRING(bwlq, type) \
474__BUILD_IOPORT_STRING(bwlq, type)
475
476BUILDSTRING(b, u8)
477BUILDSTRING(w, u16)
478BUILDSTRING(l, u32)
Ralf Baechle9d58f302005-09-23 20:02:38 +0000479#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480BUILDSTRING(q, u64)
Ralf Baechle9d58f302005-09-23 20:02:38 +0000481#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Ralf Baechlefe00f942005-03-01 19:22:29 +0000483static inline void memset_io(volatile void __iomem *addr, unsigned char val, int count)
484{
485 memset((void __force *) addr, val, count);
486}
487static inline void memcpy_fromio(void *dst, const volatile void __iomem *src, int count)
488{
489 memcpy(dst, (void __force *) src, count);
490}
491static inline void memcpy_toio(volatile void __iomem *dst, const void *src, int count)
492{
493 memcpy((void __force *) dst, src, count);
494}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 * The caches on some architectures aren't dma-coherent and have need to
498 * handle this in software. There are three types of operations that
499 * can be applied to dma buffers.
500 *
501 * - dma_cache_wback_inv(start, size) makes caches and coherent by
502 * writing the content of the caches back to memory, if necessary.
503 * The function also invalidates the affected part of the caches as
504 * necessary before DMA transfers from outside to memory.
505 * - dma_cache_wback(start, size) makes caches and coherent by
506 * writing the content of the caches back to memory, if necessary.
507 * The function also invalidates the affected part of the caches as
508 * necessary before DMA transfers from outside to memory.
509 * - dma_cache_inv(start, size) invalidates the affected parts of the
510 * caches. Dirty lines of the caches may be written back or simply
511 * be discarded. This operation is necessary before dma operations
512 * to the memory.
Ralf Baechle622a9ed2007-10-16 23:29:42 -0700513 *
514 * This API used to be exported; it now is for arch code internal use only.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 */
Christoph Hellwig972dc3b2018-06-15 13:08:31 +0200516#ifdef CONFIG_DMA_NONCOHERENT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
518extern void (*_dma_cache_wback_inv)(unsigned long start, unsigned long size);
519extern void (*_dma_cache_wback)(unsigned long start, unsigned long size);
520extern void (*_dma_cache_inv)(unsigned long start, unsigned long size);
521
Ralf Baechle21a151d2007-10-11 23:46:15 +0100522#define dma_cache_wback_inv(start, size) _dma_cache_wback_inv(start, size)
523#define dma_cache_wback(start, size) _dma_cache_wback(start, size)
524#define dma_cache_inv(start, size) _dma_cache_inv(start, size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
526#else /* Sane hardware */
527
Ralf Baechle70342282013-01-22 12:59:30 +0100528#define dma_cache_wback_inv(start,size) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 do { (void) (start); (void) (size); } while (0)
530#define dma_cache_wback(start,size) \
531 do { (void) (start); (void) (size); } while (0)
532#define dma_cache_inv(start,size) \
533 do { (void) (start); (void) (size); } while (0)
534
Christoph Hellwig972dc3b2018-06-15 13:08:31 +0200535#endif /* CONFIG_DMA_NONCOHERENT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
537/*
538 * Read a 32-bit register that requires a 64-bit read cycle on the bus.
539 * Avoid interrupt mucking, just adjust the address for 4-byte access.
540 * Assume the addresses are 8-byte aligned.
541 */
542#ifdef __MIPSEB__
543#define __CSR_32_ADJUST 4
544#else
545#define __CSR_32_ADJUST 0
546#endif
547
Ralf Baechle21a151d2007-10-11 23:46:15 +0100548#define csr_out32(v, a) (*(volatile u32 *)((unsigned long)(a) + __CSR_32_ADJUST) = (v))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549#define csr_in32(a) (*(volatile u32 *)((unsigned long)(a) + __CSR_32_ADJUST))
550
551/*
552 * Convert a physical pointer to a virtual kernel pointer for /dev/mem
553 * access
554 */
555#define xlate_dev_mem_ptr(p) __va(p)
556
557/*
558 * Convert a virtual cached pointer to an uncached pointer
559 */
560#define xlate_dev_kmem_ptr(p) p
561
Paul Burtond8c825e2017-08-12 21:36:15 -0700562void __ioread64_copy(void *to, const void __iomem *from, size_t count);
563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564#endif /* _ASM_IO_H */