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
6 * Copyright (C) 1994, 1995 Waldorf GmbH
7 * Copyright (C) 1994 - 2000, 06 Ralf Baechle
8 * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
9 * Copyright (C) 2004, 2005 MIPS Technologies, Inc. All rights reserved.
15 #include <linux/compiler.h>
16 #include <linux/kernel.h>
17 #include <linux/types.h>
18 #include <linux/irqflags.h>
20 #include <asm/addrspace.h>
21 #include <asm/barrier.h>
23 #include <asm/byteorder.h>
25 #include <asm/cpu-features.h>
27 #include <asm/pgtable-bits.h>
28 #include <asm/processor.h>
29 #include <asm/string.h>
30 #include <mangle-port.h>
33 * Raw operations are never swapped in software. OTOH values that raw
34 * operations are working on may or may not have been swapped by the bus
35 * hardware. An example use would be for flash memory that's used for
38 # define __raw_ioswabb(a, x) (x)
39 # define __raw_ioswabw(a, x) (x)
40 # define __raw_ioswabl(a, x) (x)
41 # define __raw_ioswabq(a, x) (x)
42 # define ____raw_ioswabq(a, x) (x)
44 # define __relaxed_ioswabb ioswabb
45 # define __relaxed_ioswabw ioswabw
46 # define __relaxed_ioswabl ioswabl
47 # define __relaxed_ioswabq ioswabq
49 /* ioswab[bwlq], __mem_ioswab[bwlq] are defined in mangle-port.h */
52 * On MIPS I/O ports are memory mapped, so we access them using normal
53 * load/store instructions. mips_io_port_base is the virtual address to
54 * which all ports are being mapped. For sake of efficiency some code
55 * assumes that this is an address that can be loaded with a single lui
56 * instruction, so the lower 16 bits must be zero. Should be true on
57 * any sane architecture; generic code does not use this assumption.
59 extern unsigned long mips_io_port_base;
61 static inline void set_io_port_base(unsigned long base)
63 mips_io_port_base = base;
67 * Provide the necessary definitions for generic iomap. We make use of
68 * mips_io_port_base for iomap(), but we don't reserve any low addresses for
72 #define HAVE_ARCH_PIO_SIZE
73 #define PIO_OFFSET mips_io_port_base
74 #define PIO_MASK IO_SPACE_LIMIT
75 #define PIO_RESERVED 0x0UL
78 * Enforce in-order execution of data I/O. In the MIPS architecture
79 * these are equivalent to corresponding platform-specific memory
80 * barriers defined in <asm/barrier.h>. API pinched from PowerPC,
81 * with sync additionally defined.
83 #define iobarrier_rw() mb()
84 #define iobarrier_r() rmb()
85 #define iobarrier_w() wmb()
86 #define iobarrier_sync() iob()
89 * virt_to_phys - map virtual addresses to physical
90 * @address: address to remap
92 * The returned physical address is the physical (CPU) mapping for
93 * the memory address given. It is only valid to use this function on
94 * addresses directly mapped or allocated via kmalloc.
96 * This function does not give bus mappings for DMA transfers. In
97 * almost all conceivable cases a device driver should not be using
100 static inline unsigned long __virt_to_phys_nodebug(volatile const void *address)
102 return __pa(address);
105 #ifdef CONFIG_DEBUG_VIRTUAL
106 extern phys_addr_t __virt_to_phys(volatile const void *x);
108 #define __virt_to_phys(x) __virt_to_phys_nodebug(x)
111 #define virt_to_phys virt_to_phys
112 static inline phys_addr_t virt_to_phys(const volatile void *x)
114 return __virt_to_phys(x);
118 * phys_to_virt - map physical address to virtual
119 * @address: address to remap
121 * The returned virtual address is a current CPU mapping for
122 * the memory address given. It is only valid to use this function on
123 * addresses that have a kernel mapping
125 * This function does not handle bus mappings for DMA transfers. In
126 * almost all conceivable cases a device driver should not be using
129 static inline void * phys_to_virt(unsigned long address)
131 return __va(address);
135 * ISA I/O bus memory addresses are 1:1 with the physical address.
137 static inline unsigned long isa_virt_to_bus(volatile void *address)
139 return virt_to_phys(address);
142 static inline void *isa_bus_to_virt(unsigned long address)
144 return phys_to_virt(address);
148 * Change "struct page" to physical address.
150 #define page_to_phys(page) ((dma_addr_t)page_to_pfn(page) << PAGE_SHIFT)
152 void __iomem *ioremap_prot(phys_addr_t offset, unsigned long size,
153 unsigned long prot_val);
154 void iounmap(const volatile void __iomem *addr);
157 * ioremap - map bus memory into CPU space
158 * @offset: bus address of the memory
159 * @size: size of the resource to map
161 * ioremap performs a platform specific sequence of operations to
162 * make bus memory CPU accessible via the readb/readw/readl/writeb/
163 * writew/writel functions and the other mmio helpers. The returned
164 * address is not guaranteed to be usable directly as a virtual
167 #define ioremap(offset, size) \
168 ioremap_prot((offset), (size), _CACHE_UNCACHED)
169 #define ioremap_uc ioremap
172 * ioremap_cache - map bus memory into CPU space
173 * @offset: bus address of the memory
174 * @size: size of the resource to map
176 * ioremap_cache performs a platform specific sequence of operations to
177 * make bus memory CPU accessible via the readb/readw/readl/writeb/
178 * writew/writel functions and the other mmio helpers. The returned
179 * address is not guaranteed to be usable directly as a virtual
182 * This version of ioremap ensures that the memory is marked cachable by
183 * the CPU. Also enables full write-combining. Useful for some
184 * memory-like regions on I/O busses.
186 #define ioremap_cache(offset, size) \
187 ioremap_prot((offset), (size), _page_cachable_default)
190 * ioremap_wc - map bus memory into CPU space
191 * @offset: bus address of the memory
192 * @size: size of the resource to map
194 * ioremap_wc performs a platform specific sequence of operations to
195 * make bus memory CPU accessible via the readb/readw/readl/writeb/
196 * writew/writel functions and the other mmio helpers. The returned
197 * address is not guaranteed to be usable directly as a virtual
200 * This version of ioremap ensures that the memory is marked uncachable
201 * but accelerated by means of write-combining feature. It is specifically
202 * useful for PCIe prefetchable windows, which may vastly improve a
203 * communications performance. If it was determined on boot stage, what
204 * CPU CCA doesn't support UCA, the method shall fall-back to the
205 * _CACHE_UNCACHED option (see cpu_probe() method).
207 #define ioremap_wc(offset, size) \
208 ioremap_prot((offset), (size), boot_cpu_data.writecombine)
210 #include <asm-generic/iomap.h>
212 #if defined(CONFIG_CPU_CAVIUM_OCTEON)
213 #define war_io_reorder_wmb() wmb()
215 #define war_io_reorder_wmb() barrier()
218 #define __BUILD_MEMORY_SINGLE(pfx, bwlq, type, barrier, relax, irq) \
220 static inline void pfx##write##bwlq(type val, \
221 volatile void __iomem *mem) \
223 volatile type *__mem; \
229 war_io_reorder_wmb(); \
231 __mem = (void *)__swizzle_addr_##bwlq((unsigned long)(mem)); \
233 __val = pfx##ioswab##bwlq(__mem, val); \
235 if (sizeof(type) != sizeof(u64) || sizeof(u64) == sizeof(long)) \
237 else if (cpu_has_64bits) { \
238 unsigned long __flags; \
242 local_irq_save(__flags); \
243 __asm__ __volatile__( \
244 ".set push" "\t\t# __writeq""\n\t" \
245 ".set arch=r4000" "\n\t" \
246 "dsll32 %L0, %L0, 0" "\n\t" \
247 "dsrl32 %L0, %L0, 0" "\n\t" \
248 "dsll32 %M0, %M0, 0" "\n\t" \
249 "or %L0, %L0, %M0" "\n\t" \
250 "sd %L0, %2" "\n\t" \
253 : "0" (__val), "m" (*__mem)); \
255 local_irq_restore(__flags); \
260 static inline type pfx##read##bwlq(const volatile void __iomem *mem) \
262 volatile type *__mem; \
265 __mem = (void *)__swizzle_addr_##bwlq((unsigned long)(mem)); \
270 if (sizeof(type) != sizeof(u64) || sizeof(u64) == sizeof(long)) \
272 else if (cpu_has_64bits) { \
273 unsigned long __flags; \
276 local_irq_save(__flags); \
277 __asm__ __volatile__( \
278 ".set push" "\t\t# __readq" "\n\t" \
279 ".set arch=r4000" "\n\t" \
280 "ld %L0, %1" "\n\t" \
281 "dsra32 %M0, %L0, 0" "\n\t" \
282 "sll %L0, %L0, 0" "\n\t" \
287 local_irq_restore(__flags); \
293 /* prevent prefetching of coherent DMA data prematurely */ \
296 return pfx##ioswab##bwlq(__mem, __val); \
299 #define __BUILD_IOPORT_SINGLE(pfx, bwlq, type, barrier, relax, p) \
301 static inline void pfx##out##bwlq##p(type val, unsigned long port) \
303 volatile type *__addr; \
309 war_io_reorder_wmb(); \
311 __addr = (void *)__swizzle_addr_##bwlq(mips_io_port_base + port); \
313 __val = pfx##ioswab##bwlq(__addr, val); \
315 /* Really, we want this to be atomic */ \
316 BUILD_BUG_ON(sizeof(type) > sizeof(unsigned long)); \
321 static inline type pfx##in##bwlq##p(unsigned long port) \
323 volatile type *__addr; \
326 __addr = (void *)__swizzle_addr_##bwlq(mips_io_port_base + port); \
328 BUILD_BUG_ON(sizeof(type) > sizeof(unsigned long)); \
335 /* prevent prefetching of coherent DMA data prematurely */ \
338 return pfx##ioswab##bwlq(__addr, __val); \
341 #define __BUILD_MEMORY_PFX(bus, bwlq, type, relax) \
343 __BUILD_MEMORY_SINGLE(bus, bwlq, type, 1, relax, 1)
345 #define BUILDIO_MEM(bwlq, type) \
347 __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)
358 __BUILD_MEMORY_PFX(__raw_, q, u64, 0)
359 __BUILD_MEMORY_PFX(__mem_, q, u64, 0)
362 #define __BUILD_IOPORT_PFX(bus, bwlq, type) \
363 __BUILD_IOPORT_SINGLE(bus, bwlq, type, 1, 0,) \
364 __BUILD_IOPORT_SINGLE(bus, bwlq, type, 1, 0, _p)
366 #define BUILDIO_IOPORT(bwlq, type) \
367 __BUILD_IOPORT_PFX(, bwlq, type) \
368 __BUILD_IOPORT_PFX(__mem_, bwlq, type)
370 BUILDIO_IOPORT(b, u8)
371 BUILDIO_IOPORT(w, u16)
372 BUILDIO_IOPORT(l, u32)
374 BUILDIO_IOPORT(q, u64)
377 #define __BUILDIO(bwlq, type) \
379 __BUILD_MEMORY_SINGLE(____raw_, bwlq, type, 1, 0, 0)
383 #define readb_relaxed __relaxed_readb
384 #define readw_relaxed __relaxed_readw
385 #define readl_relaxed __relaxed_readl
387 #define readq_relaxed __relaxed_readq
390 #define writeb_relaxed __relaxed_writeb
391 #define writew_relaxed __relaxed_writew
392 #define writel_relaxed __relaxed_writel
394 #define writeq_relaxed __relaxed_writeq
397 #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)))
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))
416 * Some code tests for these symbols
420 #define writeq writeq
423 #define __BUILD_MEMORY_STRING(bwlq, type) \
425 static inline void writes##bwlq(volatile void __iomem *mem, \
426 const void *addr, unsigned int count) \
428 const volatile type *__addr = addr; \
431 __mem_write##bwlq(*__addr, mem); \
436 static inline void reads##bwlq(volatile void __iomem *mem, void *addr, \
437 unsigned int count) \
439 volatile type *__addr = addr; \
442 *__addr = __mem_read##bwlq(mem); \
447 #define __BUILD_IOPORT_STRING(bwlq, type) \
449 static inline void outs##bwlq(unsigned long port, const void *addr, \
450 unsigned int count) \
452 const volatile type *__addr = addr; \
455 __mem_out##bwlq(*__addr, port); \
460 static inline void ins##bwlq(unsigned long port, void *addr, \
461 unsigned int count) \
463 volatile type *__addr = addr; \
466 *__addr = __mem_in##bwlq(port); \
471 #define BUILDSTRING(bwlq, type) \
473 __BUILD_MEMORY_STRING(bwlq, type) \
474 __BUILD_IOPORT_STRING(bwlq, type)
483 static inline void memset_io(volatile void __iomem *addr, unsigned char val, int count)
485 memset((void __force *) addr, val, count);
487 static inline void memcpy_fromio(void *dst, const volatile void __iomem *src, int count)
489 memcpy(dst, (void __force *) src, count);
491 static inline void memcpy_toio(volatile void __iomem *dst, const void *src, int count)
493 memcpy((void __force *) dst, src, count);
497 * 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.
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
514 * This API used to be exported; it now is for arch code internal use only.
516 #ifdef CONFIG_DMA_NONCOHERENT
518 extern void (*_dma_cache_wback_inv)(unsigned long start, unsigned long size);
519 extern void (*_dma_cache_wback)(unsigned long start, unsigned long size);
520 extern void (*_dma_cache_inv)(unsigned long start, unsigned long size);
522 #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)
526 #else /* Sane hardware */
528 #define dma_cache_wback_inv(start,size) \
529 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)
535 #endif /* CONFIG_DMA_NONCOHERENT */
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.
543 #define __CSR_32_ADJUST 4
545 #define __CSR_32_ADJUST 0
548 #define csr_out32(v, a) (*(volatile u32 *)((unsigned long)(a) + __CSR_32_ADJUST) = (v))
549 #define csr_in32(a) (*(volatile u32 *)((unsigned long)(a) + __CSR_32_ADJUST))
552 * Convert a physical pointer to a virtual kernel pointer for /dev/mem
555 #define xlate_dev_mem_ptr(p) __va(p)
556 #define unxlate_dev_mem_ptr(p, v) do { } while (0)
558 void __ioread64_copy(void *to, const void __iomem *from, size_t count);
560 #endif /* _ASM_IO_H */