blob: 971eb45e8bda1bf1fbbc2dd8d6ff6cf71d68c339 [file] [log] [blame]
Catalin Marinasc1cc1552012-03-05 11:49:27 +00001/*
2 * Based on arch/arm/mm/mmu.c
3 *
4 * Copyright (C) 1995-2005 Russell King
5 * Copyright (C) 2012 ARM Ltd.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#include <linux/export.h>
21#include <linux/kernel.h>
22#include <linux/errno.h>
23#include <linux/init.h>
24#include <linux/mman.h>
25#include <linux/nodemask.h>
26#include <linux/memblock.h>
27#include <linux/fs.h>
Catalin Marinas2475ff92012-10-23 14:55:08 +010028#include <linux/io.h>
Catalin Marinasc1cc1552012-03-05 11:49:27 +000029
30#include <asm/cputype.h>
31#include <asm/sections.h>
32#include <asm/setup.h>
33#include <asm/sizes.h>
34#include <asm/tlb.h>
35#include <asm/mmu_context.h>
36
37#include "mm.h"
38
39/*
40 * Empty_zero_page is a special page that is used for zero-initialized data
41 * and COW.
42 */
43struct page *empty_zero_page;
44EXPORT_SYMBOL(empty_zero_page);
45
46pgprot_t pgprot_default;
47EXPORT_SYMBOL(pgprot_default);
48
49static pmdval_t prot_sect_kernel;
50
51struct cachepolicy {
52 const char policy[16];
53 u64 mair;
54 u64 tcr;
55};
56
57static struct cachepolicy cache_policies[] __initdata = {
58 {
59 .policy = "uncached",
60 .mair = 0x44, /* inner, outer non-cacheable */
61 .tcr = TCR_IRGN_NC | TCR_ORGN_NC,
62 }, {
63 .policy = "writethrough",
64 .mair = 0xaa, /* inner, outer write-through, read-allocate */
65 .tcr = TCR_IRGN_WT | TCR_ORGN_WT,
66 }, {
67 .policy = "writeback",
68 .mair = 0xee, /* inner, outer write-back, read-allocate */
69 .tcr = TCR_IRGN_WBnWA | TCR_ORGN_WBnWA,
70 }
71};
72
73/*
74 * These are useful for identifying cache coherency problems by allowing the
75 * cache or the cache and writebuffer to be turned off. It changes the Normal
76 * memory caching attributes in the MAIR_EL1 register.
77 */
78static int __init early_cachepolicy(char *p)
79{
80 int i;
81 u64 tmp;
82
83 for (i = 0; i < ARRAY_SIZE(cache_policies); i++) {
84 int len = strlen(cache_policies[i].policy);
85
86 if (memcmp(p, cache_policies[i].policy, len) == 0)
87 break;
88 }
89 if (i == ARRAY_SIZE(cache_policies)) {
90 pr_err("ERROR: unknown or unsupported cache policy: %s\n", p);
91 return 0;
92 }
93
94 flush_cache_all();
95
96 /*
97 * Modify MT_NORMAL attributes in MAIR_EL1.
98 */
99 asm volatile(
100 " mrs %0, mair_el1\n"
101 " bfi %0, %1, #%2, #8\n"
102 " msr mair_el1, %0\n"
103 " isb\n"
104 : "=&r" (tmp)
105 : "r" (cache_policies[i].mair), "i" (MT_NORMAL * 8));
106
107 /*
108 * Modify TCR PTW cacheability attributes.
109 */
110 asm volatile(
111 " mrs %0, tcr_el1\n"
112 " bic %0, %0, %2\n"
113 " orr %0, %0, %1\n"
114 " msr tcr_el1, %0\n"
115 " isb\n"
116 : "=&r" (tmp)
117 : "r" (cache_policies[i].tcr), "r" (TCR_IRGN_MASK | TCR_ORGN_MASK));
118
119 flush_cache_all();
120
121 return 0;
122}
123early_param("cachepolicy", early_cachepolicy);
124
125/*
126 * Adjust the PMD section entries according to the CPU in use.
127 */
Mark Salter0bf757c2014-04-07 15:39:51 -0700128void __init init_mem_pgprot(void)
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000129{
130 pteval_t default_pgprot;
131 int i;
132
133 default_pgprot = PTE_ATTRINDX(MT_NORMAL);
134 prot_sect_kernel = PMD_TYPE_SECT | PMD_SECT_AF | PMD_ATTRINDX(MT_NORMAL);
135
136#ifdef CONFIG_SMP
137 /*
138 * Mark memory with the "shared" attribute for SMP systems
139 */
140 default_pgprot |= PTE_SHARED;
141 prot_sect_kernel |= PMD_SECT_S;
142#endif
143
144 for (i = 0; i < 16; i++) {
145 unsigned long v = pgprot_val(protection_map[i]);
146 protection_map[i] = __pgprot(v | default_pgprot);
147 }
148
149 pgprot_default = __pgprot(PTE_TYPE_PAGE | PTE_AF | default_pgprot);
150}
151
152pgprot_t phys_mem_access_prot(struct file *file, unsigned long pfn,
153 unsigned long size, pgprot_t vma_prot)
154{
155 if (!pfn_valid(pfn))
156 return pgprot_noncached(vma_prot);
157 else if (file->f_flags & O_SYNC)
158 return pgprot_writecombine(vma_prot);
159 return vma_prot;
160}
161EXPORT_SYMBOL(phys_mem_access_prot);
162
163static void __init *early_alloc(unsigned long sz)
164{
165 void *ptr = __va(memblock_alloc(sz, sz));
166 memset(ptr, 0, sz);
167 return ptr;
168}
169
170static void __init alloc_init_pte(pmd_t *pmd, unsigned long addr,
Mark Salterd7ecbdd2014-03-12 12:28:06 -0400171 unsigned long end, unsigned long pfn,
172 pgprot_t prot)
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000173{
174 pte_t *pte;
175
176 if (pmd_none(*pmd)) {
177 pte = early_alloc(PTRS_PER_PTE * sizeof(pte_t));
178 __pmd_populate(pmd, __pa(pte), PMD_TYPE_TABLE);
179 }
180 BUG_ON(pmd_bad(*pmd));
181
182 pte = pte_offset_kernel(pmd, addr);
183 do {
Mark Salterd7ecbdd2014-03-12 12:28:06 -0400184 set_pte(pte, pfn_pte(pfn, prot));
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000185 pfn++;
186 } while (pte++, addr += PAGE_SIZE, addr != end);
187}
188
189static void __init alloc_init_pmd(pud_t *pud, unsigned long addr,
Mark Salterd7ecbdd2014-03-12 12:28:06 -0400190 unsigned long end, phys_addr_t phys,
191 int map_io)
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000192{
193 pmd_t *pmd;
194 unsigned long next;
Mark Salterd7ecbdd2014-03-12 12:28:06 -0400195 pmdval_t prot_sect;
196 pgprot_t prot_pte;
197
198 if (map_io) {
199 prot_sect = PMD_TYPE_SECT | PMD_SECT_AF |
200 PMD_ATTRINDX(MT_DEVICE_nGnRE);
201 prot_pte = __pgprot(PROT_DEVICE_nGnRE);
202 } else {
203 prot_sect = prot_sect_kernel;
204 prot_pte = PAGE_KERNEL_EXEC;
205 }
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000206
207 /*
208 * Check for initial section mappings in the pgd/pud and remove them.
209 */
210 if (pud_none(*pud) || pud_bad(*pud)) {
211 pmd = early_alloc(PTRS_PER_PMD * sizeof(pmd_t));
212 pud_populate(&init_mm, pud, pmd);
213 }
214
215 pmd = pmd_offset(pud, addr);
216 do {
217 next = pmd_addr_end(addr, end);
218 /* try section mapping first */
Catalin Marinasa55f9922014-02-04 16:01:31 +0000219 if (((addr | next | phys) & ~SECTION_MASK) == 0) {
220 pmd_t old_pmd =*pmd;
Mark Salterd7ecbdd2014-03-12 12:28:06 -0400221 set_pmd(pmd, __pmd(phys | prot_sect));
Catalin Marinasa55f9922014-02-04 16:01:31 +0000222 /*
223 * Check for previous table entries created during
224 * boot (__create_page_tables) and flush them.
225 */
226 if (!pmd_none(old_pmd))
227 flush_tlb_all();
228 } else {
Mark Salterd7ecbdd2014-03-12 12:28:06 -0400229 alloc_init_pte(pmd, addr, next, __phys_to_pfn(phys),
230 prot_pte);
Catalin Marinasa55f9922014-02-04 16:01:31 +0000231 }
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000232 phys += next - addr;
233 } while (pmd++, addr = next, addr != end);
234}
235
236static void __init alloc_init_pud(pgd_t *pgd, unsigned long addr,
Mark Salterd7ecbdd2014-03-12 12:28:06 -0400237 unsigned long end, unsigned long phys,
238 int map_io)
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000239{
240 pud_t *pud = pud_offset(pgd, addr);
241 unsigned long next;
242
243 do {
244 next = pud_addr_end(addr, end);
Mark Salterd7ecbdd2014-03-12 12:28:06 -0400245 alloc_init_pmd(pud, addr, next, phys, map_io);
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000246 phys += next - addr;
247 } while (pud++, addr = next, addr != end);
248}
249
250/*
251 * Create the page directory entries and any necessary page tables for the
252 * mapping specified by 'md'.
253 */
Mark Salterd7ecbdd2014-03-12 12:28:06 -0400254static void __init __create_mapping(pgd_t *pgd, phys_addr_t phys,
255 unsigned long virt, phys_addr_t size,
256 int map_io)
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000257{
258 unsigned long addr, length, end, next;
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000259
260 addr = virt & PAGE_MASK;
261 length = PAGE_ALIGN(size + (virt & ~PAGE_MASK));
262
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000263 end = addr + length;
264 do {
265 next = pgd_addr_end(addr, end);
Mark Salterd7ecbdd2014-03-12 12:28:06 -0400266 alloc_init_pud(pgd, addr, next, phys, map_io);
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000267 phys += next - addr;
268 } while (pgd++, addr = next, addr != end);
269}
270
Mark Salterd7ecbdd2014-03-12 12:28:06 -0400271static void __init create_mapping(phys_addr_t phys, unsigned long virt,
272 phys_addr_t size)
273{
274 if (virt < VMALLOC_START) {
275 pr_warn("BUG: not creating mapping for %pa at 0x%016lx - outside kernel range\n",
276 &phys, virt);
277 return;
278 }
279 __create_mapping(pgd_offset_k(virt & PAGE_MASK), phys, virt, size, 0);
280}
281
282void __init create_id_mapping(phys_addr_t addr, phys_addr_t size, int map_io)
283{
284 if ((addr >> PGDIR_SHIFT) >= ARRAY_SIZE(idmap_pg_dir)) {
285 pr_warn("BUG: not creating id mapping for %pa\n", &addr);
286 return;
287 }
288 __create_mapping(&idmap_pg_dir[pgd_index(addr)],
289 addr, addr, size, map_io);
290}
291
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000292static void __init map_mem(void)
293{
294 struct memblock_region *reg;
Catalin Marinase25208f2013-08-23 18:04:44 +0100295 phys_addr_t limit;
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000296
Steve Capperf6bc87c2013-04-30 11:00:33 +0100297 /*
298 * Temporarily limit the memblock range. We need to do this as
299 * create_mapping requires puds, pmds and ptes to be allocated from
300 * memory addressable from the initial direct kernel mapping.
301 *
302 * The initial direct kernel mapping, located at swapper_pg_dir,
Catalin Marinase25208f2013-08-23 18:04:44 +0100303 * gives us PGDIR_SIZE memory starting from PHYS_OFFSET (which must be
304 * aligned to 2MB as per Documentation/arm64/booting.txt).
Steve Capperf6bc87c2013-04-30 11:00:33 +0100305 */
Catalin Marinase25208f2013-08-23 18:04:44 +0100306 limit = PHYS_OFFSET + PGDIR_SIZE;
307 memblock_set_current_limit(limit);
Steve Capperf6bc87c2013-04-30 11:00:33 +0100308
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000309 /* map all the memory banks */
310 for_each_memblock(memory, reg) {
311 phys_addr_t start = reg->base;
312 phys_addr_t end = start + reg->size;
313
314 if (start >= end)
315 break;
316
Catalin Marinase25208f2013-08-23 18:04:44 +0100317#ifndef CONFIG_ARM64_64K_PAGES
318 /*
319 * For the first memory bank align the start address and
320 * current memblock limit to prevent create_mapping() from
321 * allocating pte page tables from unmapped memory.
322 * When 64K pages are enabled, the pte page table for the
323 * first PGDIR_SIZE is already present in swapper_pg_dir.
324 */
325 if (start < limit)
326 start = ALIGN(start, PMD_SIZE);
327 if (end < limit) {
328 limit = end & PMD_MASK;
329 memblock_set_current_limit(limit);
330 }
331#endif
332
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000333 create_mapping(start, __phys_to_virt(start), end - start);
334 }
Steve Capperf6bc87c2013-04-30 11:00:33 +0100335
336 /* Limit no longer required. */
337 memblock_set_current_limit(MEMBLOCK_ALLOC_ANYWHERE);
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000338}
339
340/*
341 * paging_init() sets up the page tables, initialises the zone memory
342 * maps and sets up the zero page.
343 */
344void __init paging_init(void)
345{
346 void *zero_page;
347
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000348 map_mem();
349
350 /*
351 * Finally flush the caches and tlb to ensure that we're in a
352 * consistent state.
353 */
354 flush_cache_all();
355 flush_tlb_all();
356
357 /* allocate the zero page. */
358 zero_page = early_alloc(PAGE_SIZE);
359
360 bootmem_init();
361
362 empty_zero_page = virt_to_page(zero_page);
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000363
364 /*
365 * TTBR0 is only used for the identity mapping at this stage. Make it
366 * point to zero page to avoid speculatively fetching new entries.
367 */
368 cpu_set_reserved_ttbr0();
369 flush_tlb_all();
370}
371
372/*
373 * Enable the identity mapping to allow the MMU disabling.
374 */
375void setup_mm_for_reboot(void)
376{
377 cpu_switch_mm(idmap_pg_dir, &init_mm);
378 flush_tlb_all();
379}
380
381/*
382 * Check whether a kernel address is valid (derived from arch/x86/).
383 */
384int kern_addr_valid(unsigned long addr)
385{
386 pgd_t *pgd;
387 pud_t *pud;
388 pmd_t *pmd;
389 pte_t *pte;
390
391 if ((((long)addr) >> VA_BITS) != -1UL)
392 return 0;
393
394 pgd = pgd_offset_k(addr);
395 if (pgd_none(*pgd))
396 return 0;
397
398 pud = pud_offset(pgd, addr);
399 if (pud_none(*pud))
400 return 0;
401
402 pmd = pmd_offset(pud, addr);
403 if (pmd_none(*pmd))
404 return 0;
405
406 pte = pte_offset_kernel(pmd, addr);
407 if (pte_none(*pte))
408 return 0;
409
410 return pfn_valid(pte_pfn(*pte));
411}
412#ifdef CONFIG_SPARSEMEM_VMEMMAP
413#ifdef CONFIG_ARM64_64K_PAGES
Johannes Weiner0aad8182013-04-29 15:07:50 -0700414int __meminit vmemmap_populate(unsigned long start, unsigned long end, int node)
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000415{
Johannes Weiner0aad8182013-04-29 15:07:50 -0700416 return vmemmap_populate_basepages(start, end, node);
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000417}
418#else /* !CONFIG_ARM64_64K_PAGES */
Johannes Weiner0aad8182013-04-29 15:07:50 -0700419int __meminit vmemmap_populate(unsigned long start, unsigned long end, int node)
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000420{
Johannes Weiner0aad8182013-04-29 15:07:50 -0700421 unsigned long addr = start;
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000422 unsigned long next;
423 pgd_t *pgd;
424 pud_t *pud;
425 pmd_t *pmd;
426
427 do {
428 next = pmd_addr_end(addr, end);
429
430 pgd = vmemmap_pgd_populate(addr, node);
431 if (!pgd)
432 return -ENOMEM;
433
434 pud = vmemmap_pud_populate(pgd, addr, node);
435 if (!pud)
436 return -ENOMEM;
437
438 pmd = pmd_offset(pud, addr);
439 if (pmd_none(*pmd)) {
440 void *p = NULL;
441
442 p = vmemmap_alloc_block_buf(PMD_SIZE, node);
443 if (!p)
444 return -ENOMEM;
445
446 set_pmd(pmd, __pmd(__pa(p) | prot_sect_kernel));
447 } else
448 vmemmap_verify((pte_t *)pmd, node, addr, next);
449 } while (addr = next, addr != end);
450
451 return 0;
452}
453#endif /* CONFIG_ARM64_64K_PAGES */
Johannes Weiner0aad8182013-04-29 15:07:50 -0700454void vmemmap_free(unsigned long start, unsigned long end)
Tang Chen01975182013-02-22 16:33:08 -0800455{
456}
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000457#endif /* CONFIG_SPARSEMEM_VMEMMAP */