blob: 5c668b7a31f97e6df35dcec53b79d5a70a9d1d0b [file] [log] [blame]
Russell King59244862006-06-22 15:05:36 +01001/*
2 * linux/arch/arm/mm/nommu.c
3 *
4 * ARM uCLinux supporting functions.
5 */
6#include <linux/module.h>
Russell Kinge6b1b382006-06-24 10:46:23 +01007#include <linux/mm.h>
8#include <linux/pagemap.h>
Russell Kingfced80c2008-09-06 12:10:45 +01009#include <linux/io.h>
Russell King2778f622010-07-09 16:27:52 +010010#include <linux/memblock.h>
Jonathan Austin5ad7dcb2013-02-28 17:46:36 +000011#include <linux/kernel.h>
Russell King59244862006-06-22 15:05:36 +010012
Russell Kinge6b1b382006-06-24 10:46:23 +010013#include <asm/cacheflush.h>
Russell King37efe642008-12-01 11:53:07 +000014#include <asm/sections.h>
Russell King59244862006-06-22 15:05:36 +010015#include <asm/page.h>
Catalin Marinasb32f3af2009-07-24 12:35:03 +010016#include <asm/setup.h>
Will Deacon6b8e5c92012-04-12 17:16:01 +010017#include <asm/traps.h>
Russell King3ff15592006-11-30 13:53:54 +000018#include <asm/mach/arch.h>
Jonathan Austin5ad7dcb2013-02-28 17:46:36 +000019#include <asm/cputype.h>
20#include <asm/mpu.h>
Russell King59244862006-06-22 15:05:36 +010021
Russell Kingd111e8f2006-09-27 15:27:33 +010022#include "mm.h"
23
Jonathan Austin5ad7dcb2013-02-28 17:46:36 +000024#ifdef CONFIG_ARM_MPU
25struct mpu_rgn_info mpu_rgn_info;
26
27/* Region number */
28static void rgnr_write(u32 v)
29{
30 asm("mcr p15, 0, %0, c6, c2, 0" : : "r" (v));
31}
32
33/* Data-side / unified region attributes */
34
35/* Region access control register */
36static void dracr_write(u32 v)
37{
38 asm("mcr p15, 0, %0, c6, c1, 4" : : "r" (v));
39}
40
41/* Region size register */
42static void drsr_write(u32 v)
43{
44 asm("mcr p15, 0, %0, c6, c1, 2" : : "r" (v));
45}
46
47/* Region base address register */
48static void drbar_write(u32 v)
49{
50 asm("mcr p15, 0, %0, c6, c1, 0" : : "r" (v));
51}
52
53static u32 drbar_read(void)
54{
55 u32 v;
56 asm("mrc p15, 0, %0, c6, c1, 0" : "=r" (v));
57 return v;
58}
59/* Optional instruction-side region attributes */
60
61/* I-side Region access control register */
62static void iracr_write(u32 v)
63{
64 asm("mcr p15, 0, %0, c6, c1, 5" : : "r" (v));
65}
66
67/* I-side Region size register */
68static void irsr_write(u32 v)
69{
70 asm("mcr p15, 0, %0, c6, c1, 3" : : "r" (v));
71}
72
73/* I-side Region base address register */
74static void irbar_write(u32 v)
75{
76 asm("mcr p15, 0, %0, c6, c1, 1" : : "r" (v));
77}
78
79static unsigned long irbar_read(void)
80{
81 unsigned long v;
82 asm("mrc p15, 0, %0, c6, c1, 1" : "=r" (v));
83 return v;
84}
85
86/* MPU initialisation functions */
87void __init sanity_check_meminfo_mpu(void)
88{
89 int i;
90 struct membank *bank = meminfo.bank;
91 phys_addr_t phys_offset = PHYS_OFFSET;
92 phys_addr_t aligned_region_size, specified_mem_size, rounded_mem_size;
93
94 /* Initially only use memory continuous from PHYS_OFFSET */
95 if (bank_phys_start(&bank[0]) != phys_offset)
96 panic("First memory bank must be contiguous from PHYS_OFFSET");
97
98 /* Banks have already been sorted by start address */
99 for (i = 1; i < meminfo.nr_banks; i++) {
100 if (bank[i].start <= bank_phys_end(&bank[0]) &&
101 bank_phys_end(&bank[i]) > bank_phys_end(&bank[0])) {
102 bank[0].size = bank_phys_end(&bank[i]) - bank[0].start;
103 } else {
104 pr_notice("Ignoring RAM after 0x%.8lx. "
105 "First non-contiguous (ignored) bank start: 0x%.8lx\n",
106 (unsigned long)bank_phys_end(&bank[0]),
107 (unsigned long)bank_phys_start(&bank[i]));
108 break;
109 }
110 }
111 /* All contiguous banks are now merged in to the first bank */
112 meminfo.nr_banks = 1;
113 specified_mem_size = bank[0].size;
114
115 /*
116 * MPU has curious alignment requirements: Size must be power of 2, and
117 * region start must be aligned to the region size
118 */
119 if (phys_offset != 0)
120 pr_info("PHYS_OFFSET != 0 => MPU Region size constrained by alignment requirements\n");
121
122 /*
123 * Maximum aligned region might overflow phys_addr_t if phys_offset is
124 * 0. Hence we keep everything below 4G until we take the smaller of
125 * the aligned_region_size and rounded_mem_size, one of which is
126 * guaranteed to be smaller than the maximum physical address.
127 */
128 aligned_region_size = (phys_offset - 1) ^ (phys_offset);
129 /* Find the max power-of-two sized region that fits inside our bank */
130 rounded_mem_size = (1 << __fls(bank[0].size)) - 1;
131
132 /* The actual region size is the smaller of the two */
133 aligned_region_size = aligned_region_size < rounded_mem_size
134 ? aligned_region_size + 1
135 : rounded_mem_size + 1;
136
137 if (aligned_region_size != specified_mem_size)
138 pr_warn("Truncating memory from 0x%.8lx to 0x%.8lx (MPU region constraints)",
139 (unsigned long)specified_mem_size,
140 (unsigned long)aligned_region_size);
141
142 meminfo.bank[0].size = aligned_region_size;
143 pr_debug("MPU Region from 0x%.8lx size 0x%.8lx (end 0x%.8lx))\n",
144 (unsigned long)phys_offset,
145 (unsigned long)aligned_region_size,
146 (unsigned long)bank_phys_end(&bank[0]));
147
148}
149
150static int mpu_present(void)
151{
152 return ((read_cpuid_ext(CPUID_EXT_MMFR0) & MMFR0_PMSA) == MMFR0_PMSAv7);
153}
154
155static int mpu_max_regions(void)
156{
157 /*
158 * We don't support a different number of I/D side regions so if we
159 * have separate instruction and data memory maps then return
160 * whichever side has a smaller number of supported regions.
161 */
162 u32 dregions, iregions, mpuir;
163 mpuir = read_cpuid(CPUID_MPUIR);
164
165 dregions = iregions = (mpuir & MPUIR_DREGION_SZMASK) >> MPUIR_DREGION;
166
167 /* Check for separate d-side and i-side memory maps */
168 if (mpuir & MPUIR_nU)
169 iregions = (mpuir & MPUIR_IREGION_SZMASK) >> MPUIR_IREGION;
170
171 /* Use the smallest of the two maxima */
172 return min(dregions, iregions);
173}
174
175static int mpu_iside_independent(void)
176{
177 /* MPUIR.nU specifies whether there is *not* a unified memory map */
178 return read_cpuid(CPUID_MPUIR) & MPUIR_nU;
179}
180
181static int mpu_min_region_order(void)
182{
183 u32 drbar_result, irbar_result;
184 /* We've kept a region free for this probing */
185 rgnr_write(MPU_PROBE_REGION);
186 isb();
187 /*
188 * As per ARM ARM, write 0xFFFFFFFC to DRBAR to find the minimum
189 * region order
190 */
191 drbar_write(0xFFFFFFFC);
192 drbar_result = irbar_result = drbar_read();
193 drbar_write(0x0);
194 /* If the MPU is non-unified, we use the larger of the two minima*/
195 if (mpu_iside_independent()) {
196 irbar_write(0xFFFFFFFC);
197 irbar_result = irbar_read();
198 irbar_write(0x0);
199 }
200 isb(); /* Ensure that MPU region operations have completed */
201 /* Return whichever result is larger */
202 return __ffs(max(drbar_result, irbar_result));
203}
204
205static int mpu_setup_region(unsigned int number, phys_addr_t start,
206 unsigned int size_order, unsigned int properties)
207{
208 u32 size_data;
209
210 /* We kept a region free for probing resolution of MPU regions*/
211 if (number > mpu_max_regions() || number == MPU_PROBE_REGION)
212 return -ENOENT;
213
214 if (size_order > 32)
215 return -ENOMEM;
216
217 if (size_order < mpu_min_region_order())
218 return -ENOMEM;
219
220 /* Writing N to bits 5:1 (RSR_SZ) specifies region size 2^N+1 */
221 size_data = ((size_order - 1) << MPU_RSR_SZ) | 1 << MPU_RSR_EN;
222
223 dsb(); /* Ensure all previous data accesses occur with old mappings */
224 rgnr_write(number);
225 isb();
226 drbar_write(start);
227 dracr_write(properties);
228 isb(); /* Propagate properties before enabling region */
229 drsr_write(size_data);
230
231 /* Check for independent I-side registers */
232 if (mpu_iside_independent()) {
233 irbar_write(start);
234 iracr_write(properties);
235 isb();
236 irsr_write(size_data);
237 }
238 isb();
239
240 /* Store region info (we treat i/d side the same, so only store d) */
241 mpu_rgn_info.rgns[number].dracr = properties;
242 mpu_rgn_info.rgns[number].drbar = start;
243 mpu_rgn_info.rgns[number].drsr = size_data;
244 return 0;
245}
246
247/*
248* Set up default MPU regions, doing nothing if there is no MPU
249*/
250void __init mpu_setup(void)
251{
252 int region_err;
253 if (!mpu_present())
254 return;
255
256 region_err = mpu_setup_region(MPU_RAM_REGION, PHYS_OFFSET,
257 ilog2(meminfo.bank[0].size),
258 MPU_AP_PL1RW_PL0RW | MPU_RGN_NORMAL);
259 if (region_err) {
260 panic("MPU region initialization failure! %d", region_err);
261 } else {
262 pr_info("Using ARMv7 PMSA Compliant MPU. "
263 "Region independence: %s, Max regions: %d\n",
264 mpu_iside_independent() ? "Yes" : "No",
265 mpu_max_regions());
266 }
267}
Jonathan Austin9a271562013-02-28 17:51:05 +0000268#else
269static void sanity_check_meminfo_mpu(void) {}
270static void __init mpu_setup(void) {}
Jonathan Austin5ad7dcb2013-02-28 17:46:36 +0000271#endif /* CONFIG_ARM_MPU */
272
Russell King2778f622010-07-09 16:27:52 +0100273void __init arm_mm_memblock_reserve(void)
Russell Kingd111e8f2006-09-27 15:27:33 +0100274{
Catalin Marinas55bdd692010-05-21 18:06:41 +0100275#ifndef CONFIG_CPU_V7M
Russell Kingd111e8f2006-09-27 15:27:33 +0100276 /*
Russell Kingd111e8f2006-09-27 15:27:33 +0100277 * Register the exception vector page.
278 * some architectures which the DRAM is the exception vector to trap,
279 * alloc_page breaks with error, although it is not NULL, but "0."
280 */
Russell King2778f622010-07-09 16:27:52 +0100281 memblock_reserve(CONFIG_VECTORS_BASE, PAGE_SIZE);
Catalin Marinas55bdd692010-05-21 18:06:41 +0100282#else /* ifndef CONFIG_CPU_V7M */
283 /*
284 * There is no dedicated vector page on V7-M. So nothing needs to be
285 * reserved here.
286 */
287#endif
Russell Kingd111e8f2006-09-27 15:27:33 +0100288}
289
Russell King0371d3f2011-07-05 19:58:29 +0100290void __init sanity_check_meminfo(void)
291{
Jonathan Austin9a271562013-02-28 17:51:05 +0000292 phys_addr_t end;
293 sanity_check_meminfo_mpu();
294 end = bank_phys_end(&meminfo.bank[meminfo.nr_banks - 1]);
Nicolas Pitre55a81732011-09-18 22:40:00 -0400295 high_memory = __va(end - 1) + 1;
Russell King0371d3f2011-07-05 19:58:29 +0100296}
297
Russell Kingd111e8f2006-09-27 15:27:33 +0100298/*
Thierry Reding70d42122013-11-06 09:12:40 +0100299 * early_paging_init() recreates boot time page table setup, allowing machines
300 * to switch over to a high (>4G) address space on LPAE systems
301 */
302void __init early_paging_init(const struct machine_desc *mdesc,
303 struct proc_info_list *procinfo)
304{
305}
306
307/*
Russell Kingd111e8f2006-09-27 15:27:33 +0100308 * paging_init() sets up the page tables, initialises the zone memory
309 * maps, and sets up the zero page, bad page and bad page tables.
310 */
Russell Kingff69a4c2013-07-26 14:55:59 +0100311void __init paging_init(const struct machine_desc *mdesc)
Russell Kingd111e8f2006-09-27 15:27:33 +0100312{
Will Deacon6b8e5c92012-04-12 17:16:01 +0100313 early_trap_init((void *)CONFIG_VECTORS_BASE);
Jonathan Austin9a271562013-02-28 17:51:05 +0000314 mpu_setup();
Russell King8d717a52010-05-22 19:47:18 +0100315 bootmem_init();
Russell Kingd111e8f2006-09-27 15:27:33 +0100316}
317
Russell King80878d62006-09-27 15:43:47 +0100318/*
319 * We don't need to do anything here for nommu machines.
320 */
Russell King5aafec12011-11-01 10:15:27 +0000321void setup_mm_for_reboot(void)
Russell King80878d62006-09-27 15:43:47 +0100322{
323}
324
Russell Kinge6b1b382006-06-24 10:46:23 +0100325void flush_dcache_page(struct page *page)
326{
Russell King2c9b9c82009-11-26 12:56:21 +0000327 __cpuc_flush_dcache_area(page_address(page), PAGE_SIZE);
Russell Kinge6b1b382006-06-24 10:46:23 +0100328}
Hyok S. Choi3e361222006-06-27 20:55:43 +0100329EXPORT_SYMBOL(flush_dcache_page);
Russell Kinge6b1b382006-06-24 10:46:23 +0100330
Simon Baatz63384fd2013-06-22 22:01:25 +0100331void flush_kernel_dcache_page(struct page *page)
332{
333 __cpuc_flush_dcache_area(page_address(page), PAGE_SIZE);
334}
335EXPORT_SYMBOL(flush_kernel_dcache_page);
336
Catalin Marinasb5a07fa2010-05-06 15:15:28 +0100337void copy_to_user_page(struct vm_area_struct *vma, struct page *page,
338 unsigned long uaddr, void *dst, const void *src,
339 unsigned long len)
340{
341 memcpy(dst, src, len);
342 if (vma->vm_flags & VM_EXEC)
343 __cpuc_coherent_user_range(uaddr, uaddr + len);
344}
345
Russell King3603ab22007-05-05 20:59:27 +0100346void __iomem *__arm_ioremap_pfn(unsigned long pfn, unsigned long offset,
347 size_t size, unsigned int mtype)
Russell King59244862006-06-22 15:05:36 +0100348{
349 if (pfn >= (0x100000000ULL >> PAGE_SHIFT))
350 return NULL;
351 return (void __iomem *) (offset + (pfn << PAGE_SHIFT));
352}
Russell King3603ab22007-05-05 20:59:27 +0100353EXPORT_SYMBOL(__arm_ioremap_pfn);
Russell King59244862006-06-22 15:05:36 +0100354
Russell King31aa8fd2009-12-18 11:10:03 +0000355void __iomem *__arm_ioremap_pfn_caller(unsigned long pfn, unsigned long offset,
356 size_t size, unsigned int mtype, void *caller)
357{
358 return __arm_ioremap_pfn(pfn, offset, size, mtype);
359}
360
Laura Abbott9b971732013-05-16 19:40:22 +0100361void __iomem *__arm_ioremap(phys_addr_t phys_addr, size_t size,
Russell King3603ab22007-05-05 20:59:27 +0100362 unsigned int mtype)
Russell King59244862006-06-22 15:05:36 +0100363{
364 return (void __iomem *)phys_addr;
365}
Russell King3603ab22007-05-05 20:59:27 +0100366EXPORT_SYMBOL(__arm_ioremap);
Russell King59244862006-06-22 15:05:36 +0100367
Laura Abbott9b971732013-05-16 19:40:22 +0100368void __iomem * (*arch_ioremap_caller)(phys_addr_t, size_t, unsigned int, void *);
Rob Herring8a2b6252012-03-10 21:24:04 -0600369
Laura Abbott9b971732013-05-16 19:40:22 +0100370void __iomem *__arm_ioremap_caller(phys_addr_t phys_addr, size_t size,
Catalin Marinasb1a9ceb2010-05-06 15:14:09 +0100371 unsigned int mtype, void *caller)
Russell King31aa8fd2009-12-18 11:10:03 +0000372{
373 return __arm_ioremap(phys_addr, size, mtype);
374}
375
Rob Herring8a2b6252012-03-10 21:24:04 -0600376void (*arch_iounmap)(volatile void __iomem *);
377
378void __arm_iounmap(volatile void __iomem *addr)
Russell King59244862006-06-22 15:05:36 +0100379{
380}
Rob Herring8a2b6252012-03-10 21:24:04 -0600381EXPORT_SYMBOL(__arm_iounmap);