1 // SPDX-License-Identifier: GPL-2.0-only << 2 /* 1 /* 3 * Copyright (C) 2004, 2007-2010, 2011-2012 Sy !! 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 * (C) Copyright 1995 1996 Linus Torvalds >> 7 * (C) Copyright 2001, 2002 Ralf Baechle 4 */ 8 */ 5 !! 9 #include <linux/export.h> >> 10 #include <asm/addrspace.h> >> 11 #include <asm/byteorder.h> >> 12 #include <linux/ioport.h> >> 13 #include <linux/sched.h> >> 14 #include <linux/slab.h> 6 #include <linux/vmalloc.h> 15 #include <linux/vmalloc.h> 7 #include <linux/init.h> !! 16 #include <linux/mm_types.h> 8 #include <linux/module.h> << 9 #include <linux/io.h> 17 #include <linux/io.h> 10 #include <linux/mm.h> !! 18 #include <asm/cacheflush.h> 11 #include <linux/cache.h> !! 19 #include <asm/tlbflush.h> >> 20 #include <ioremap.h> >> 21 >> 22 #define IS_LOW512(addr) (!((phys_addr_t)(addr) & (phys_addr_t) ~0x1fffffffULL)) >> 23 #define IS_KSEG1(addr) (((unsigned long)(addr) & ~0x1fffffffUL) == CKSEG1) 12 24 13 static inline bool arc_uncached_addr_space(phy !! 25 static int __ioremap_check_ram(unsigned long start_pfn, unsigned long nr_pages, >> 26 void *arg) 14 { 27 { 15 if (is_isa_arcompact()) { !! 28 unsigned long i; 16 if (paddr >= ARC_UNCACHED_ADDR !! 29 17 return true; !! 30 for (i = 0; i < nr_pages; i++) { 18 } else if (paddr >= perip_base && padd !! 31 if (pfn_valid(start_pfn + i) && 19 return true; !! 32 !PageReserved(pfn_to_page(start_pfn + i))) >> 33 return 1; 20 } 34 } 21 35 22 return false; !! 36 return 0; 23 } 37 } 24 38 25 void __iomem *ioremap(phys_addr_t paddr, unsig !! 39 /* >> 40 * ioremap_prot - map bus memory into CPU space >> 41 * @phys_addr: bus address of the memory >> 42 * @size: size of the resource to map >> 43 * >> 44 * ioremap_prot gives the caller control over cache coherency attributes (CCA) >> 45 */ >> 46 void __iomem *ioremap_prot(phys_addr_t phys_addr, unsigned long size, >> 47 unsigned long prot_val) 26 { 48 { >> 49 unsigned long flags = prot_val & _CACHE_MASK; >> 50 unsigned long offset, pfn, last_pfn; >> 51 struct vm_struct *area; >> 52 phys_addr_t last_addr; >> 53 unsigned long vaddr; >> 54 void __iomem *cpu_addr; >> 55 >> 56 cpu_addr = plat_ioremap(phys_addr, size, flags); >> 57 if (cpu_addr) >> 58 return cpu_addr; >> 59 >> 60 phys_addr = fixup_bigphys_addr(phys_addr, size); >> 61 >> 62 /* Don't allow wraparound or zero size */ >> 63 last_addr = phys_addr + size - 1; >> 64 if (!size || last_addr < phys_addr) >> 65 return NULL; >> 66 27 /* 67 /* 28 * If the region is h/w uncached, MMU !! 68 * Map uncached objects in the low 512mb of address space using KSEG1, 29 * The cast to u32 is fine as this reg !! 69 * otherwise map using page tables. 30 */ 70 */ 31 if (arc_uncached_addr_space(paddr)) !! 71 if (IS_LOW512(phys_addr) && IS_LOW512(last_addr) && 32 return (void __iomem *)(u32)pa !! 72 flags == _CACHE_UNCACHED) >> 73 return (void __iomem *) CKSEG1ADDR(phys_addr); >> 74 >> 75 /* Early remaps should use the unmapped regions til' VM is available */ >> 76 if (WARN_ON_ONCE(!slab_is_available())) >> 77 return NULL; 33 78 34 return ioremap_prot(paddr, size, !! 79 /* 35 pgprot_val(pgprot_ !! 80 * Don't allow anybody to remap RAM that may be allocated by the page 36 } !! 81 * allocator, since that could lead to races & data clobbering. 37 EXPORT_SYMBOL(ioremap); !! 82 */ >> 83 pfn = PFN_DOWN(phys_addr); >> 84 last_pfn = PFN_DOWN(last_addr); >> 85 if (walk_system_ram_range(pfn, last_pfn - pfn + 1, NULL, >> 86 __ioremap_check_ram) == 1) { >> 87 WARN_ONCE(1, "ioremap on RAM at %pa - %pa\n", >> 88 &phys_addr, &last_addr); >> 89 return NULL; >> 90 } 38 91 39 /* !! 92 /* 40 * ioremap with access flags !! 93 * Mappings have to be page-aligned 41 * Cache semantics wise it is same as ioremap !! 94 */ 42 * However unlike vanilla ioremap which bypass !! 95 offset = phys_addr & ~PAGE_MASK; 43 * ARC hardware uncached region, this one stil !! 96 phys_addr &= PAGE_MASK; 44 * might need finer access control (R/W/X) !! 97 size = PAGE_ALIGN(last_addr + 1) - phys_addr; 45 */ << 46 void __iomem *ioremap_prot(phys_addr_t paddr, << 47 unsigned long flags << 48 { << 49 pgprot_t prot = __pgprot(flags); << 50 98 51 /* force uncached */ !! 99 /* 52 return generic_ioremap_prot(paddr, siz !! 100 * Ok, go for it.. >> 101 */ >> 102 area = get_vm_area(size, VM_IOREMAP); >> 103 if (!area) >> 104 return NULL; >> 105 vaddr = (unsigned long)area->addr; >> 106 >> 107 flags |= _PAGE_GLOBAL | _PAGE_PRESENT | __READABLE | __WRITEABLE; >> 108 if (ioremap_page_range(vaddr, vaddr + size, phys_addr, >> 109 __pgprot(flags))) { >> 110 free_vm_area(area); >> 111 return NULL; >> 112 } >> 113 >> 114 return (void __iomem *)(vaddr + offset); 53 } 115 } 54 EXPORT_SYMBOL(ioremap_prot); 116 EXPORT_SYMBOL(ioremap_prot); 55 117 56 void iounmap(volatile void __iomem *addr) !! 118 void iounmap(const volatile void __iomem *addr) 57 { 119 { 58 /* weird double cast to handle phys_ad !! 120 if (!plat_iounmap(addr) && !IS_KSEG1(addr)) 59 if (arc_uncached_addr_space((phys_addr !! 121 vunmap((void *)((unsigned long)addr & PAGE_MASK)); 60 return; << 61 << 62 generic_iounmap(addr); << 63 } 122 } 64 EXPORT_SYMBOL(iounmap); 123 EXPORT_SYMBOL(iounmap); 65 124
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.