Merge remote-tracking branch 'lsk/v3.10/topic/gator' into linux-linaro-lsk
[firefly-linux-kernel-4.4.55.git] / arch / arm64 / mm / mmu.c
1 /*
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>
28 #include <linux/io.h>
29
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  */
43 struct page *empty_zero_page;
44 EXPORT_SYMBOL(empty_zero_page);
45
46 struct cachepolicy {
47         const char      policy[16];
48         u64             mair;
49         u64             tcr;
50 };
51
52 static struct cachepolicy cache_policies[] __initdata = {
53         {
54                 .policy         = "uncached",
55                 .mair           = 0x44,                 /* inner, outer non-cacheable */
56                 .tcr            = TCR_IRGN_NC | TCR_ORGN_NC,
57         }, {
58                 .policy         = "writethrough",
59                 .mair           = 0xaa,                 /* inner, outer write-through, read-allocate */
60                 .tcr            = TCR_IRGN_WT | TCR_ORGN_WT,
61         }, {
62                 .policy         = "writeback",
63                 .mair           = 0xee,                 /* inner, outer write-back, read-allocate */
64                 .tcr            = TCR_IRGN_WBnWA | TCR_ORGN_WBnWA,
65         }
66 };
67
68 /*
69  * These are useful for identifying cache coherency problems by allowing the
70  * cache or the cache and writebuffer to be turned off. It changes the Normal
71  * memory caching attributes in the MAIR_EL1 register.
72  */
73 static int __init early_cachepolicy(char *p)
74 {
75         int i;
76         u64 tmp;
77
78         for (i = 0; i < ARRAY_SIZE(cache_policies); i++) {
79                 int len = strlen(cache_policies[i].policy);
80
81                 if (memcmp(p, cache_policies[i].policy, len) == 0)
82                         break;
83         }
84         if (i == ARRAY_SIZE(cache_policies)) {
85                 pr_err("ERROR: unknown or unsupported cache policy: %s\n", p);
86                 return 0;
87         }
88
89         flush_cache_all();
90
91         /*
92          * Modify MT_NORMAL attributes in MAIR_EL1.
93          */
94         asm volatile(
95         "       mrs     %0, mair_el1\n"
96         "       bfi     %0, %1, #%2, #8\n"
97         "       msr     mair_el1, %0\n"
98         "       isb\n"
99         : "=&r" (tmp)
100         : "r" (cache_policies[i].mair), "i" (MT_NORMAL * 8));
101
102         /*
103          * Modify TCR PTW cacheability attributes.
104          */
105         asm volatile(
106         "       mrs     %0, tcr_el1\n"
107         "       bic     %0, %0, %2\n"
108         "       orr     %0, %0, %1\n"
109         "       msr     tcr_el1, %0\n"
110         "       isb\n"
111         : "=&r" (tmp)
112         : "r" (cache_policies[i].tcr), "r" (TCR_IRGN_MASK | TCR_ORGN_MASK));
113
114         flush_cache_all();
115
116         return 0;
117 }
118 early_param("cachepolicy", early_cachepolicy);
119
120 pgprot_t phys_mem_access_prot(struct file *file, unsigned long pfn,
121                               unsigned long size, pgprot_t vma_prot)
122 {
123         if (!pfn_valid(pfn))
124                 return pgprot_noncached(vma_prot);
125         else if (file->f_flags & O_SYNC)
126                 return pgprot_writecombine(vma_prot);
127         return vma_prot;
128 }
129 EXPORT_SYMBOL(phys_mem_access_prot);
130
131 static void __init *early_alloc(unsigned long sz)
132 {
133         void *ptr = __va(memblock_alloc(sz, sz));
134         memset(ptr, 0, sz);
135         return ptr;
136 }
137
138 static void __init alloc_init_pte(pmd_t *pmd, unsigned long addr,
139                                   unsigned long end, unsigned long pfn,
140                                   pgprot_t prot)
141 {
142         pte_t *pte;
143
144         if (pmd_none(*pmd)) {
145                 pte = early_alloc(PTRS_PER_PTE * sizeof(pte_t));
146                 __pmd_populate(pmd, __pa(pte), PMD_TYPE_TABLE);
147         }
148         BUG_ON(pmd_bad(*pmd));
149
150         pte = pte_offset_kernel(pmd, addr);
151         do {
152                 set_pte(pte, pfn_pte(pfn, prot));
153                 pfn++;
154         } while (pte++, addr += PAGE_SIZE, addr != end);
155 }
156
157 static void __init alloc_init_pmd(pud_t *pud, unsigned long addr,
158                                   unsigned long end, phys_addr_t phys,
159                                   int map_io)
160 {
161         pmd_t *pmd;
162         unsigned long next;
163         pmdval_t prot_sect;
164         pgprot_t prot_pte;
165
166         if (map_io) {
167                 prot_sect = PMD_TYPE_SECT | PMD_SECT_AF |
168                             PMD_ATTRINDX(MT_DEVICE_nGnRE);
169                 prot_pte = __pgprot(PROT_DEVICE_nGnRE);
170         } else {
171                 prot_sect = PROT_SECT_NORMAL_EXEC;
172                 prot_pte = PAGE_KERNEL_EXEC;
173         }
174
175         /*
176          * Check for initial section mappings in the pgd/pud and remove them.
177          */
178         if (pud_none(*pud) || pud_bad(*pud)) {
179                 pmd = early_alloc(PTRS_PER_PMD * sizeof(pmd_t));
180                 pud_populate(&init_mm, pud, pmd);
181         }
182
183         pmd = pmd_offset(pud, addr);
184         do {
185                 next = pmd_addr_end(addr, end);
186                 /* try section mapping first */
187                 if (((addr | next | phys) & ~SECTION_MASK) == 0) {
188                         pmd_t old_pmd =*pmd;
189                         set_pmd(pmd, __pmd(phys | prot_sect));
190                         /*
191                          * Check for previous table entries created during
192                          * boot (__create_page_tables) and flush them.
193                          */
194                         if (!pmd_none(old_pmd))
195                                 flush_tlb_all();
196                 } else {
197                         alloc_init_pte(pmd, addr, next, __phys_to_pfn(phys),
198                                        prot_pte);
199                 }
200                 phys += next - addr;
201         } while (pmd++, addr = next, addr != end);
202 }
203
204 static void __init alloc_init_pud(pgd_t *pgd, unsigned long addr,
205                                   unsigned long end, unsigned long phys,
206                                   int map_io)
207 {
208         pud_t *pud = pud_offset(pgd, addr);
209         unsigned long next;
210
211         do {
212                 next = pud_addr_end(addr, end);
213                 alloc_init_pmd(pud, addr, next, phys, map_io);
214                 phys += next - addr;
215         } while (pud++, addr = next, addr != end);
216 }
217
218 /*
219  * Create the page directory entries and any necessary page tables for the
220  * mapping specified by 'md'.
221  */
222 static void __init __create_mapping(pgd_t *pgd, phys_addr_t phys,
223                                     unsigned long virt, phys_addr_t size,
224                                     int map_io)
225 {
226         unsigned long addr, length, end, next;
227
228         addr = virt & PAGE_MASK;
229         length = PAGE_ALIGN(size + (virt & ~PAGE_MASK));
230
231         end = addr + length;
232         do {
233                 next = pgd_addr_end(addr, end);
234                 alloc_init_pud(pgd, addr, next, phys, map_io);
235                 phys += next - addr;
236         } while (pgd++, addr = next, addr != end);
237 }
238
239 static void __init create_mapping(phys_addr_t phys, unsigned long virt,
240                                   phys_addr_t size)
241 {
242         if (virt < VMALLOC_START) {
243                 pr_warn("BUG: not creating mapping for %pa at 0x%016lx - outside kernel range\n",
244                         &phys, virt);
245                 return;
246         }
247         __create_mapping(pgd_offset_k(virt & PAGE_MASK), phys, virt, size, 0);
248 }
249
250 void __init create_id_mapping(phys_addr_t addr, phys_addr_t size, int map_io)
251 {
252         if ((addr >> PGDIR_SHIFT) >= ARRAY_SIZE(idmap_pg_dir)) {
253                 pr_warn("BUG: not creating id mapping for %pa\n", &addr);
254                 return;
255         }
256         __create_mapping(&idmap_pg_dir[pgd_index(addr)],
257                          addr, addr, size, map_io);
258 }
259
260 static void __init map_mem(void)
261 {
262         struct memblock_region *reg;
263         phys_addr_t limit;
264
265         /*
266          * Temporarily limit the memblock range. We need to do this as
267          * create_mapping requires puds, pmds and ptes to be allocated from
268          * memory addressable from the initial direct kernel mapping.
269          *
270          * The initial direct kernel mapping, located at swapper_pg_dir,
271          * gives us PGDIR_SIZE memory starting from PHYS_OFFSET (which must be
272          * aligned to 2MB as per Documentation/arm64/booting.txt).
273          */
274         limit = PHYS_OFFSET + PGDIR_SIZE;
275         memblock_set_current_limit(limit);
276
277         /* map all the memory banks */
278         for_each_memblock(memory, reg) {
279                 phys_addr_t start = reg->base;
280                 phys_addr_t end = start + reg->size;
281
282                 if (start >= end)
283                         break;
284
285 #ifndef CONFIG_ARM64_64K_PAGES
286                 /*
287                  * For the first memory bank align the start address and
288                  * current memblock limit to prevent create_mapping() from
289                  * allocating pte page tables from unmapped memory.
290                  * When 64K pages are enabled, the pte page table for the
291                  * first PGDIR_SIZE is already present in swapper_pg_dir.
292                  */
293                 if (start < limit)
294                         start = ALIGN(start, PMD_SIZE);
295                 if (end < limit) {
296                         limit = end & PMD_MASK;
297                         memblock_set_current_limit(limit);
298                 }
299 #endif
300
301                 create_mapping(start, __phys_to_virt(start), end - start);
302         }
303
304         /* Limit no longer required. */
305         memblock_set_current_limit(MEMBLOCK_ALLOC_ANYWHERE);
306 }
307
308 /*
309  * paging_init() sets up the page tables, initialises the zone memory
310  * maps and sets up the zero page.
311  */
312 void __init paging_init(void)
313 {
314         void *zero_page;
315
316         map_mem();
317
318         /*
319          * Finally flush the caches and tlb to ensure that we're in a
320          * consistent state.
321          */
322         flush_cache_all();
323         flush_tlb_all();
324
325         /* allocate the zero page. */
326         zero_page = early_alloc(PAGE_SIZE);
327
328         bootmem_init();
329
330         empty_zero_page = virt_to_page(zero_page);
331
332         /*
333          * TTBR0 is only used for the identity mapping at this stage. Make it
334          * point to zero page to avoid speculatively fetching new entries.
335          */
336         cpu_set_reserved_ttbr0();
337         flush_tlb_all();
338 }
339
340 /*
341  * Enable the identity mapping to allow the MMU disabling.
342  */
343 void setup_mm_for_reboot(void)
344 {
345         cpu_switch_mm(idmap_pg_dir, &init_mm);
346         flush_tlb_all();
347 }
348
349 /*
350  * Check whether a kernel address is valid (derived from arch/x86/).
351  */
352 int kern_addr_valid(unsigned long addr)
353 {
354         pgd_t *pgd;
355         pud_t *pud;
356         pmd_t *pmd;
357         pte_t *pte;
358
359         if ((((long)addr) >> VA_BITS) != -1UL)
360                 return 0;
361
362         pgd = pgd_offset_k(addr);
363         if (pgd_none(*pgd))
364                 return 0;
365
366         pud = pud_offset(pgd, addr);
367         if (pud_none(*pud))
368                 return 0;
369
370         pmd = pmd_offset(pud, addr);
371         if (pmd_none(*pmd))
372                 return 0;
373
374         if (pmd_sect(*pmd))
375                 return pfn_valid(pmd_pfn(*pmd));
376
377         pte = pte_offset_kernel(pmd, addr);
378         if (pte_none(*pte))
379                 return 0;
380
381         return pfn_valid(pte_pfn(*pte));
382 }
383 #ifdef CONFIG_SPARSEMEM_VMEMMAP
384 #ifdef CONFIG_ARM64_64K_PAGES
385 int __meminit vmemmap_populate(unsigned long start, unsigned long end, int node)
386 {
387         return vmemmap_populate_basepages(start, end, node);
388 }
389 #else   /* !CONFIG_ARM64_64K_PAGES */
390 int __meminit vmemmap_populate(unsigned long start, unsigned long end, int node)
391 {
392         unsigned long addr = start;
393         unsigned long next;
394         pgd_t *pgd;
395         pud_t *pud;
396         pmd_t *pmd;
397
398         do {
399                 next = pmd_addr_end(addr, end);
400
401                 pgd = vmemmap_pgd_populate(addr, node);
402                 if (!pgd)
403                         return -ENOMEM;
404
405                 pud = vmemmap_pud_populate(pgd, addr, node);
406                 if (!pud)
407                         return -ENOMEM;
408
409                 pmd = pmd_offset(pud, addr);
410                 if (pmd_none(*pmd)) {
411                         void *p = NULL;
412
413                         p = vmemmap_alloc_block_buf(PMD_SIZE, node);
414                         if (!p)
415                                 return -ENOMEM;
416
417                         set_pmd(pmd, __pmd(__pa(p) | PROT_SECT_NORMAL));
418                 } else
419                         vmemmap_verify((pte_t *)pmd, node, addr, next);
420         } while (addr = next, addr != end);
421
422         return 0;
423 }
424 #endif  /* CONFIG_ARM64_64K_PAGES */
425 void vmemmap_free(unsigned long start, unsigned long end)
426 {
427 }
428 #endif  /* CONFIG_SPARSEMEM_VMEMMAP */