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>
24 #include <asm/idmap.h>
28 unsigned long vectors_base;
31 * empty_zero_page is a special page that is used for
32 * zero-initialized data and COW.
34 struct page *empty_zero_page;
35 EXPORT_SYMBOL(empty_zero_page);
38 struct mpu_rgn_info mpu_rgn_info;
41 #ifdef CONFIG_CPU_CP15
42 #ifdef CONFIG_CPU_HIGH_VECTOR
43 unsigned long setup_vectors_base(void)
45 unsigned long reg = get_cr();
50 #else /* CONFIG_CPU_HIGH_VECTOR */
51 /* Write exception base address to VBAR */
52 static inline void set_vbar(unsigned long val)
54 asm("mcr p15, 0, %0, c12, c0, 0" : : "r" (val) : "cc");
58 * Security extensions, bits[7:4], permitted values,
59 * 0b0000 - not implemented, 0b0001/0b0010 - implemented
61 static inline bool security_extensions_enabled(void)
63 /* Check CPUID Identification Scheme before ID_PFR1 read */
64 if ((read_cpuid_id() & 0x000f0000) == 0x000f0000)
65 return cpuid_feature_extract(CPUID_EXT_PFR1, 4) ||
66 cpuid_feature_extract(CPUID_EXT_PFR1, 20);
70 unsigned long setup_vectors_base(void)
72 unsigned long base = 0, reg = get_cr();
75 if (security_extensions_enabled()) {
76 if (IS_ENABLED(CONFIG_REMAP_VECTORS_TO_RAM))
77 base = CONFIG_DRAM_BASE;
79 } else if (IS_ENABLED(CONFIG_REMAP_VECTORS_TO_RAM)) {
80 if (CONFIG_DRAM_BASE != 0)
81 pr_err("Security extensions not enabled, vectors cannot be remapped to RAM, vectors base will be 0x00000000\n");
86 #endif /* CONFIG_CPU_HIGH_VECTOR */
87 #endif /* CONFIG_CPU_CP15 */
89 void __init arm_mm_memblock_reserve(void)
91 #ifndef CONFIG_CPU_V7M
92 vectors_base = IS_ENABLED(CONFIG_CPU_CP15) ? setup_vectors_base() : 0;
94 * Register the exception vector page.
95 * some architectures which the DRAM is the exception vector to trap,
96 * alloc_page breaks with error, although it is not NULL, but "0."
98 memblock_reserve(vectors_base, 2 * PAGE_SIZE);
99 #else /* ifndef CONFIG_CPU_V7M */
101 * There is no dedicated vector page on V7-M. So nothing needs to be
106 * In any case, always ensure address 0 is never used as many things
107 * get very confused if 0 is returned as a legitimate address.
109 memblock_reserve(0, 1);
112 static void __init adjust_lowmem_bounds_mpu(void)
114 unsigned long pmsa = read_cpuid_ext(CPUID_EXT_MMFR0) & MMFR0_PMSA;
118 pmsav7_adjust_lowmem_bounds();
121 pmsav8_adjust_lowmem_bounds();
128 static void __init mpu_setup(void)
130 unsigned long pmsa = read_cpuid_ext(CPUID_EXT_MMFR0) & MMFR0_PMSA;
144 void __init adjust_lowmem_bounds(void)
147 adjust_lowmem_bounds_mpu();
148 end = memblock_end_of_DRAM();
149 high_memory = __va(end - 1) + 1;
150 memblock_set_current_limit(end);
154 * paging_init() sets up the page tables, initialises the zone memory
155 * maps, and sets up the zero page, bad page and bad page tables.
157 void __init paging_init(const struct machine_desc *mdesc)
161 early_trap_init((void *)vectors_base);
164 /* allocate the zero page. */
165 zero_page = (void *)memblock_alloc_or_panic(PAGE_SIZE, PAGE_SIZE);
169 empty_zero_page = virt_to_page(zero_page);
170 flush_dcache_page(empty_zero_page);
174 * We don't need to do anything here for nommu machines.
176 void setup_mm_for_reboot(void)
180 void flush_dcache_folio(struct folio *folio)
182 __cpuc_flush_dcache_area(folio_address(folio), folio_size(folio));
184 EXPORT_SYMBOL(flush_dcache_folio);
186 void flush_dcache_page(struct page *page)
188 __cpuc_flush_dcache_area(page_address(page), PAGE_SIZE);
190 EXPORT_SYMBOL(flush_dcache_page);
192 void copy_to_user_page(struct vm_area_struct *vma, struct page *page,
193 unsigned long uaddr, void *dst, const void *src,
196 memcpy(dst, src, len);
197 if (vma->vm_flags & VM_EXEC)
198 __cpuc_coherent_user_range(uaddr, uaddr + len);
201 void __iomem *__arm_ioremap_pfn(unsigned long pfn, unsigned long offset,
202 size_t size, unsigned int mtype)
204 if (pfn >= (0x100000000ULL >> PAGE_SHIFT))
206 return (void __iomem *) (offset + (pfn << PAGE_SHIFT));
208 EXPORT_SYMBOL(__arm_ioremap_pfn);
210 void __iomem *__arm_ioremap_caller(phys_addr_t phys_addr, size_t size,
211 unsigned int mtype, void *caller)
213 return (void __iomem *)phys_addr;
216 void __iomem * (*arch_ioremap_caller)(phys_addr_t, size_t, unsigned int, void *);
218 void __iomem *ioremap(resource_size_t res_cookie, size_t size)
220 return __arm_ioremap_caller(res_cookie, size, MT_DEVICE,
221 __builtin_return_address(0));
223 EXPORT_SYMBOL(ioremap);
225 void __iomem *ioremap_cache(resource_size_t res_cookie, size_t size)
227 return __arm_ioremap_caller(res_cookie, size, MT_DEVICE_CACHED,
228 __builtin_return_address(0));
230 EXPORT_SYMBOL(ioremap_cache);
232 void __iomem *ioremap_wc(resource_size_t res_cookie, size_t size)
234 return __arm_ioremap_caller(res_cookie, size, MT_DEVICE_WC,
235 __builtin_return_address(0));
237 EXPORT_SYMBOL(ioremap_wc);
241 #include <asm/mach/map.h>
243 void __iomem *pci_remap_cfgspace(resource_size_t res_cookie, size_t size)
245 return arch_ioremap_caller(res_cookie, size, MT_UNCACHED,
246 __builtin_return_address(0));
248 EXPORT_SYMBOL_GPL(pci_remap_cfgspace);
251 void *arch_memremap_wb(phys_addr_t phys_addr, size_t size)
253 return (void *)phys_addr;
256 void iounmap(volatile void __iomem *io_addr)
259 EXPORT_SYMBOL(iounmap);