1 // SPDX-License-Identifier: GPL-2.0-only
3 * linux/arch/arm/mm/nommu.c
5 * ARM uCLinux supporting functions.
7 #include <linux/module.h>
9 #include <linux/pagemap.h>
11 #include <linux/memblock.h>
12 #include <linux/kernel.h>
14 #include <asm/cacheflush.h>
16 #include <asm/sections.h>
18 #include <asm/setup.h>
19 #include <asm/traps.h>
20 #include <asm/mach/arch.h>
21 #include <asm/cputype.h>
23 #include <asm/procinfo.h>
27 unsigned long vectors_base
;
30 struct mpu_rgn_info mpu_rgn_info
;
33 #ifdef CONFIG_CPU_CP15
34 #ifdef CONFIG_CPU_HIGH_VECTOR
35 unsigned long setup_vectors_base(void)
37 unsigned long reg
= get_cr();
42 #else /* CONFIG_CPU_HIGH_VECTOR */
43 /* Write exception base address to VBAR */
44 static inline void set_vbar(unsigned long val
)
46 asm("mcr p15, 0, %0, c12, c0, 0" : : "r" (val
) : "cc");
50 * Security extensions, bits[7:4], permitted values,
51 * 0b0000 - not implemented, 0b0001/0b0010 - implemented
53 static inline bool security_extensions_enabled(void)
55 /* Check CPUID Identification Scheme before ID_PFR1 read */
56 if ((read_cpuid_id() & 0x000f0000) == 0x000f0000)
57 return cpuid_feature_extract(CPUID_EXT_PFR1
, 4) ||
58 cpuid_feature_extract(CPUID_EXT_PFR1
, 20);
62 unsigned long setup_vectors_base(void)
64 unsigned long base
= 0, reg
= get_cr();
67 if (security_extensions_enabled()) {
68 if (IS_ENABLED(CONFIG_REMAP_VECTORS_TO_RAM
))
69 base
= CONFIG_DRAM_BASE
;
71 } else if (IS_ENABLED(CONFIG_REMAP_VECTORS_TO_RAM
)) {
72 if (CONFIG_DRAM_BASE
!= 0)
73 pr_err("Security extensions not enabled, vectors cannot be remapped to RAM, vectors base will be 0x00000000\n");
78 #endif /* CONFIG_CPU_HIGH_VECTOR */
79 #endif /* CONFIG_CPU_CP15 */
81 void __init
arm_mm_memblock_reserve(void)
83 #ifndef CONFIG_CPU_V7M
84 vectors_base
= IS_ENABLED(CONFIG_CPU_CP15
) ? setup_vectors_base() : 0;
86 * Register the exception vector page.
87 * some architectures which the DRAM is the exception vector to trap,
88 * alloc_page breaks with error, although it is not NULL, but "0."
90 memblock_reserve(vectors_base
, 2 * PAGE_SIZE
);
91 #else /* ifndef CONFIG_CPU_V7M */
93 * There is no dedicated vector page on V7-M. So nothing needs to be
98 * In any case, always ensure address 0 is never used as many things
99 * get very confused if 0 is returned as a legitimate address.
101 memblock_reserve(0, 1);
104 static void __init
adjust_lowmem_bounds_mpu(void)
106 unsigned long pmsa
= read_cpuid_ext(CPUID_EXT_MMFR0
) & MMFR0_PMSA
;
110 pmsav7_adjust_lowmem_bounds();
113 pmsav8_adjust_lowmem_bounds();
120 static void __init
mpu_setup(void)
122 unsigned long pmsa
= read_cpuid_ext(CPUID_EXT_MMFR0
) & MMFR0_PMSA
;
136 void __init
adjust_lowmem_bounds(void)
139 adjust_lowmem_bounds_mpu();
140 end
= memblock_end_of_DRAM();
141 high_memory
= __va(end
- 1) + 1;
142 memblock_set_current_limit(end
);
146 * paging_init() sets up the page tables, initialises the zone memory
147 * maps, and sets up the zero page, bad page and bad page tables.
149 void __init
paging_init(const struct machine_desc
*mdesc
)
151 early_trap_init((void *)vectors_base
);
157 * We don't need to do anything here for nommu machines.
159 void setup_mm_for_reboot(void)
163 void flush_dcache_page(struct page
*page
)
165 __cpuc_flush_dcache_area(page_address(page
), PAGE_SIZE
);
167 EXPORT_SYMBOL(flush_dcache_page
);
169 void flush_kernel_dcache_page(struct page
*page
)
171 __cpuc_flush_dcache_area(page_address(page
), PAGE_SIZE
);
173 EXPORT_SYMBOL(flush_kernel_dcache_page
);
175 void copy_to_user_page(struct vm_area_struct
*vma
, struct page
*page
,
176 unsigned long uaddr
, void *dst
, const void *src
,
179 memcpy(dst
, src
, len
);
180 if (vma
->vm_flags
& VM_EXEC
)
181 __cpuc_coherent_user_range(uaddr
, uaddr
+ len
);
184 void __iomem
*__arm_ioremap_pfn(unsigned long pfn
, unsigned long offset
,
185 size_t size
, unsigned int mtype
)
187 if (pfn
>= (0x100000000ULL
>> PAGE_SHIFT
))
189 return (void __iomem
*) (offset
+ (pfn
<< PAGE_SHIFT
));
191 EXPORT_SYMBOL(__arm_ioremap_pfn
);
193 void __iomem
*__arm_ioremap_caller(phys_addr_t phys_addr
, size_t size
,
194 unsigned int mtype
, void *caller
)
196 return (void __iomem
*)phys_addr
;
199 void __iomem
* (*arch_ioremap_caller
)(phys_addr_t
, size_t, unsigned int, void *);
201 void __iomem
*ioremap(resource_size_t res_cookie
, size_t size
)
203 return __arm_ioremap_caller(res_cookie
, size
, MT_DEVICE
,
204 __builtin_return_address(0));
206 EXPORT_SYMBOL(ioremap
);
208 void __iomem
*ioremap_cache(resource_size_t res_cookie
, size_t size
)
210 return __arm_ioremap_caller(res_cookie
, size
, MT_DEVICE_CACHED
,
211 __builtin_return_address(0));
213 EXPORT_SYMBOL(ioremap_cache
);
215 void __iomem
*ioremap_wc(resource_size_t res_cookie
, size_t size
)
217 return __arm_ioremap_caller(res_cookie
, size
, MT_DEVICE_WC
,
218 __builtin_return_address(0));
220 EXPORT_SYMBOL(ioremap_wc
);
224 #include <asm/mach/map.h>
226 void __iomem
*pci_remap_cfgspace(resource_size_t res_cookie
, size_t size
)
228 return arch_ioremap_caller(res_cookie
, size
, MT_UNCACHED
,
229 __builtin_return_address(0));
231 EXPORT_SYMBOL_GPL(pci_remap_cfgspace
);
234 void *arch_memremap_wb(phys_addr_t phys_addr
, size_t size
)
236 return (void *)phys_addr
;
239 void __iounmap(volatile void __iomem
*addr
)
242 EXPORT_SYMBOL(__iounmap
);
244 void (*arch_iounmap
)(volatile void __iomem
*);
246 void iounmap(volatile void __iomem
*addr
)
249 EXPORT_SYMBOL(iounmap
);