blob: 79e01163a981424db584789f3936a37592e2d765 [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 Marinas41089352015-01-29 17:33:35 +000029#include <linux/slab.h>
Laura Abbottda141702015-01-21 17:36:06 -080030#include <linux/stop_machine.h>
Catalin Marinasc1cc1552012-03-05 11:49:27 +000031
32#include <asm/cputype.h>
Laura Abbottaf86e592014-11-21 21:50:42 +000033#include <asm/fixmap.h>
Catalin Marinasc1cc1552012-03-05 11:49:27 +000034#include <asm/sections.h>
35#include <asm/setup.h>
36#include <asm/sizes.h>
37#include <asm/tlb.h>
Jungseok Leec79b9542014-05-12 18:40:51 +090038#include <asm/memblock.h>
Catalin Marinasc1cc1552012-03-05 11:49:27 +000039#include <asm/mmu_context.h>
40
41#include "mm.h"
42
43/*
44 * Empty_zero_page is a special page that is used for zero-initialized data
45 * and COW.
46 */
47struct page *empty_zero_page;
48EXPORT_SYMBOL(empty_zero_page);
49
Catalin Marinasc1cc1552012-03-05 11:49:27 +000050pgprot_t phys_mem_access_prot(struct file *file, unsigned long pfn,
51 unsigned long size, pgprot_t vma_prot)
52{
53 if (!pfn_valid(pfn))
54 return pgprot_noncached(vma_prot);
55 else if (file->f_flags & O_SYNC)
56 return pgprot_writecombine(vma_prot);
57 return vma_prot;
58}
59EXPORT_SYMBOL(phys_mem_access_prot);
60
61static void __init *early_alloc(unsigned long sz)
62{
63 void *ptr = __va(memblock_alloc(sz, sz));
Laura Abbottda141702015-01-21 17:36:06 -080064 BUG_ON(!ptr);
Catalin Marinasc1cc1552012-03-05 11:49:27 +000065 memset(ptr, 0, sz);
66 return ptr;
67}
68
Laura Abbottda141702015-01-21 17:36:06 -080069/*
70 * remap a PMD into pages
71 */
72static void split_pmd(pmd_t *pmd, pte_t *pte)
73{
74 unsigned long pfn = pmd_pfn(*pmd);
75 int i = 0;
76
77 do {
78 /*
79 * Need to have the least restrictive permissions available
80 * permissions will be fixed up later
81 */
82 set_pte(pte, pfn_pte(pfn, PAGE_KERNEL_EXEC));
83 pfn++;
84 } while (pte++, i++, i < PTRS_PER_PTE);
85}
86
87static void alloc_init_pte(pmd_t *pmd, unsigned long addr,
Mark Salterd7ecbdd2014-03-12 12:28:06 -040088 unsigned long end, unsigned long pfn,
Laura Abbottda141702015-01-21 17:36:06 -080089 pgprot_t prot,
90 void *(*alloc)(unsigned long size))
Catalin Marinasc1cc1552012-03-05 11:49:27 +000091{
92 pte_t *pte;
93
Mark Rutlanda1c76572015-01-27 16:36:30 +000094 if (pmd_none(*pmd) || pmd_sect(*pmd)) {
Laura Abbottda141702015-01-21 17:36:06 -080095 pte = alloc(PTRS_PER_PTE * sizeof(pte_t));
96 if (pmd_sect(*pmd))
97 split_pmd(pmd, pte);
Catalin Marinasc1cc1552012-03-05 11:49:27 +000098 __pmd_populate(pmd, __pa(pte), PMD_TYPE_TABLE);
Laura Abbottda141702015-01-21 17:36:06 -080099 flush_tlb_all();
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000100 }
Mark Rutlanda1c76572015-01-27 16:36:30 +0000101 BUG_ON(pmd_bad(*pmd));
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000102
103 pte = pte_offset_kernel(pmd, addr);
104 do {
Mark Salterd7ecbdd2014-03-12 12:28:06 -0400105 set_pte(pte, pfn_pte(pfn, prot));
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000106 pfn++;
107 } while (pte++, addr += PAGE_SIZE, addr != end);
108}
109
Laura Abbottda141702015-01-21 17:36:06 -0800110void split_pud(pud_t *old_pud, pmd_t *pmd)
111{
112 unsigned long addr = pud_pfn(*old_pud) << PAGE_SHIFT;
113 pgprot_t prot = __pgprot(pud_val(*old_pud) ^ addr);
114 int i = 0;
115
116 do {
117 set_pmd(pmd, __pmd(addr | prot));
118 addr += PMD_SIZE;
119 } while (pmd++, i++, i < PTRS_PER_PMD);
120}
121
122static void alloc_init_pmd(struct mm_struct *mm, pud_t *pud,
Ard Biesheuvele1e1fdd2014-10-20 14:02:15 +0200123 unsigned long addr, unsigned long end,
Laura Abbottda141702015-01-21 17:36:06 -0800124 phys_addr_t phys, pgprot_t prot,
125 void *(*alloc)(unsigned long size))
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000126{
127 pmd_t *pmd;
128 unsigned long next;
129
130 /*
131 * Check for initial section mappings in the pgd/pud and remove them.
132 */
Mark Rutlanda1c76572015-01-27 16:36:30 +0000133 if (pud_none(*pud) || pud_sect(*pud)) {
Laura Abbottda141702015-01-21 17:36:06 -0800134 pmd = alloc(PTRS_PER_PMD * sizeof(pmd_t));
135 if (pud_sect(*pud)) {
136 /*
137 * need to have the 1G of mappings continue to be
138 * present
139 */
140 split_pud(pud, pmd);
141 }
Ard Biesheuvele1e1fdd2014-10-20 14:02:15 +0200142 pud_populate(mm, pud, pmd);
Laura Abbottda141702015-01-21 17:36:06 -0800143 flush_tlb_all();
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000144 }
Mark Rutlanda1c76572015-01-27 16:36:30 +0000145 BUG_ON(pud_bad(*pud));
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000146
147 pmd = pmd_offset(pud, addr);
148 do {
149 next = pmd_addr_end(addr, end);
150 /* try section mapping first */
Catalin Marinasa55f9922014-02-04 16:01:31 +0000151 if (((addr | next | phys) & ~SECTION_MASK) == 0) {
152 pmd_t old_pmd =*pmd;
Ard Biesheuvel8ce837c2014-10-20 15:42:07 +0200153 set_pmd(pmd, __pmd(phys |
154 pgprot_val(mk_sect_prot(prot))));
Catalin Marinasa55f9922014-02-04 16:01:31 +0000155 /*
156 * Check for previous table entries created during
157 * boot (__create_page_tables) and flush them.
158 */
zhichang.yuan523d6e92014-12-09 07:26:47 +0000159 if (!pmd_none(old_pmd)) {
Catalin Marinasa55f9922014-02-04 16:01:31 +0000160 flush_tlb_all();
zhichang.yuan523d6e92014-12-09 07:26:47 +0000161 if (pmd_table(old_pmd)) {
162 phys_addr_t table = __pa(pte_offset_map(&old_pmd, 0));
Catalin Marinas41089352015-01-29 17:33:35 +0000163 if (!WARN_ON_ONCE(slab_is_available()))
164 memblock_free(table, PAGE_SIZE);
zhichang.yuan523d6e92014-12-09 07:26:47 +0000165 }
166 }
Catalin Marinasa55f9922014-02-04 16:01:31 +0000167 } else {
Mark Salterd7ecbdd2014-03-12 12:28:06 -0400168 alloc_init_pte(pmd, addr, next, __phys_to_pfn(phys),
Laura Abbottda141702015-01-21 17:36:06 -0800169 prot, alloc);
Catalin Marinasa55f9922014-02-04 16:01:31 +0000170 }
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000171 phys += next - addr;
172 } while (pmd++, addr = next, addr != end);
173}
174
Laura Abbottda141702015-01-21 17:36:06 -0800175static inline bool use_1G_block(unsigned long addr, unsigned long next,
176 unsigned long phys)
177{
178 if (PAGE_SHIFT != 12)
179 return false;
180
181 if (((addr | next | phys) & ~PUD_MASK) != 0)
182 return false;
183
184 return true;
185}
186
187static void alloc_init_pud(struct mm_struct *mm, pgd_t *pgd,
Ard Biesheuvele1e1fdd2014-10-20 14:02:15 +0200188 unsigned long addr, unsigned long end,
Laura Abbottda141702015-01-21 17:36:06 -0800189 phys_addr_t phys, pgprot_t prot,
190 void *(*alloc)(unsigned long size))
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000191{
Jungseok Leec79b9542014-05-12 18:40:51 +0900192 pud_t *pud;
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000193 unsigned long next;
194
Jungseok Leec79b9542014-05-12 18:40:51 +0900195 if (pgd_none(*pgd)) {
Laura Abbottda141702015-01-21 17:36:06 -0800196 pud = alloc(PTRS_PER_PUD * sizeof(pud_t));
Ard Biesheuvele1e1fdd2014-10-20 14:02:15 +0200197 pgd_populate(mm, pgd, pud);
Jungseok Leec79b9542014-05-12 18:40:51 +0900198 }
199 BUG_ON(pgd_bad(*pgd));
200
201 pud = pud_offset(pgd, addr);
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000202 do {
203 next = pud_addr_end(addr, end);
Steve Capper206a2a72014-05-06 14:02:27 +0100204
205 /*
206 * For 4K granule only, attempt to put down a 1GB block
207 */
Laura Abbottda141702015-01-21 17:36:06 -0800208 if (use_1G_block(addr, next, phys)) {
Steve Capper206a2a72014-05-06 14:02:27 +0100209 pud_t old_pud = *pud;
Ard Biesheuvel8ce837c2014-10-20 15:42:07 +0200210 set_pud(pud, __pud(phys |
211 pgprot_val(mk_sect_prot(prot))));
Steve Capper206a2a72014-05-06 14:02:27 +0100212
213 /*
214 * If we have an old value for a pud, it will
215 * be pointing to a pmd table that we no longer
216 * need (from swapper_pg_dir).
217 *
218 * Look up the old pmd table and free it.
219 */
220 if (!pud_none(old_pud)) {
Steve Capper206a2a72014-05-06 14:02:27 +0100221 flush_tlb_all();
zhichang.yuan523d6e92014-12-09 07:26:47 +0000222 if (pud_table(old_pud)) {
223 phys_addr_t table = __pa(pmd_offset(&old_pud, 0));
Catalin Marinas41089352015-01-29 17:33:35 +0000224 if (!WARN_ON_ONCE(slab_is_available()))
225 memblock_free(table, PAGE_SIZE);
zhichang.yuan523d6e92014-12-09 07:26:47 +0000226 }
Steve Capper206a2a72014-05-06 14:02:27 +0100227 }
228 } else {
Laura Abbottda141702015-01-21 17:36:06 -0800229 alloc_init_pmd(mm, pud, addr, next, phys, prot, alloc);
Steve Capper206a2a72014-05-06 14:02:27 +0100230 }
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000231 phys += next - addr;
232 } while (pud++, addr = next, addr != end);
233}
234
235/*
236 * Create the page directory entries and any necessary page tables for the
237 * mapping specified by 'md'.
238 */
Laura Abbottda141702015-01-21 17:36:06 -0800239static void __create_mapping(struct mm_struct *mm, pgd_t *pgd,
Ard Biesheuvele1e1fdd2014-10-20 14:02:15 +0200240 phys_addr_t phys, unsigned long virt,
Laura Abbottda141702015-01-21 17:36:06 -0800241 phys_addr_t size, pgprot_t prot,
242 void *(*alloc)(unsigned long size))
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000243{
244 unsigned long addr, length, end, next;
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000245
246 addr = virt & PAGE_MASK;
247 length = PAGE_ALIGN(size + (virt & ~PAGE_MASK));
248
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000249 end = addr + length;
250 do {
251 next = pgd_addr_end(addr, end);
Laura Abbottda141702015-01-21 17:36:06 -0800252 alloc_init_pud(mm, pgd, addr, next, phys, prot, alloc);
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000253 phys += next - addr;
254 } while (pgd++, addr = next, addr != end);
255}
256
Laura Abbottda141702015-01-21 17:36:06 -0800257static void *late_alloc(unsigned long size)
258{
259 void *ptr;
260
261 BUG_ON(size > PAGE_SIZE);
262 ptr = (void *)__get_free_page(PGALLOC_GFP);
263 BUG_ON(!ptr);
264 return ptr;
265}
266
267static void __ref create_mapping(phys_addr_t phys, unsigned long virt,
268 phys_addr_t size, pgprot_t prot)
Mark Salterd7ecbdd2014-03-12 12:28:06 -0400269{
270 if (virt < VMALLOC_START) {
271 pr_warn("BUG: not creating mapping for %pa at 0x%016lx - outside kernel range\n",
272 &phys, virt);
273 return;
274 }
Ard Biesheuvele1e1fdd2014-10-20 14:02:15 +0200275 __create_mapping(&init_mm, pgd_offset_k(virt & PAGE_MASK), phys, virt,
Laura Abbottda141702015-01-21 17:36:06 -0800276 size, prot, early_alloc);
Mark Salterd7ecbdd2014-03-12 12:28:06 -0400277}
278
Ard Biesheuvel8ce837c2014-10-20 15:42:07 +0200279void __init create_pgd_mapping(struct mm_struct *mm, phys_addr_t phys,
280 unsigned long virt, phys_addr_t size,
281 pgprot_t prot)
282{
Laura Abbottda141702015-01-21 17:36:06 -0800283 __create_mapping(mm, pgd_offset(mm, virt), phys, virt, size, prot,
Ard Biesheuvel60305db2015-01-22 10:01:40 +0000284 late_alloc);
Mark Salterd7ecbdd2014-03-12 12:28:06 -0400285}
286
Laura Abbottda141702015-01-21 17:36:06 -0800287static void create_mapping_late(phys_addr_t phys, unsigned long virt,
288 phys_addr_t size, pgprot_t prot)
289{
290 if (virt < VMALLOC_START) {
291 pr_warn("BUG: not creating mapping for %pa at 0x%016lx - outside kernel range\n",
292 &phys, virt);
293 return;
294 }
295
296 return __create_mapping(&init_mm, pgd_offset_k(virt & PAGE_MASK),
297 phys, virt, size, prot, late_alloc);
298}
299
300#ifdef CONFIG_DEBUG_RODATA
301static void __init __map_memblock(phys_addr_t start, phys_addr_t end)
302{
303 /*
304 * Set up the executable regions using the existing section mappings
305 * for now. This will get more fine grained later once all memory
306 * is mapped
307 */
308 unsigned long kernel_x_start = round_down(__pa(_stext), SECTION_SIZE);
309 unsigned long kernel_x_end = round_up(__pa(__init_end), SECTION_SIZE);
310
311 if (end < kernel_x_start) {
312 create_mapping(start, __phys_to_virt(start),
313 end - start, PAGE_KERNEL);
314 } else if (start >= kernel_x_end) {
315 create_mapping(start, __phys_to_virt(start),
316 end - start, PAGE_KERNEL);
317 } else {
318 if (start < kernel_x_start)
319 create_mapping(start, __phys_to_virt(start),
320 kernel_x_start - start,
321 PAGE_KERNEL);
322 create_mapping(kernel_x_start,
323 __phys_to_virt(kernel_x_start),
324 kernel_x_end - kernel_x_start,
325 PAGE_KERNEL_EXEC);
326 if (kernel_x_end < end)
327 create_mapping(kernel_x_end,
328 __phys_to_virt(kernel_x_end),
329 end - kernel_x_end,
330 PAGE_KERNEL);
331 }
332
333}
334#else
335static void __init __map_memblock(phys_addr_t start, phys_addr_t end)
336{
337 create_mapping(start, __phys_to_virt(start), end - start,
338 PAGE_KERNEL_EXEC);
339}
340#endif
341
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000342static void __init map_mem(void)
343{
344 struct memblock_region *reg;
Catalin Marinase25208f2013-08-23 18:04:44 +0100345 phys_addr_t limit;
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000346
Steve Capperf6bc87c2013-04-30 11:00:33 +0100347 /*
348 * Temporarily limit the memblock range. We need to do this as
349 * create_mapping requires puds, pmds and ptes to be allocated from
350 * memory addressable from the initial direct kernel mapping.
351 *
Catalin Marinas3dec0fe2014-10-24 18:16:47 +0100352 * The initial direct kernel mapping, located at swapper_pg_dir, gives
353 * us PUD_SIZE (4K pages) or PMD_SIZE (64K pages) memory starting from
354 * PHYS_OFFSET (which must be aligned to 2MB as per
355 * Documentation/arm64/booting.txt).
Steve Capperf6bc87c2013-04-30 11:00:33 +0100356 */
Catalin Marinas3dec0fe2014-10-24 18:16:47 +0100357 if (IS_ENABLED(CONFIG_ARM64_64K_PAGES))
358 limit = PHYS_OFFSET + PMD_SIZE;
359 else
360 limit = PHYS_OFFSET + PUD_SIZE;
Catalin Marinase25208f2013-08-23 18:04:44 +0100361 memblock_set_current_limit(limit);
Steve Capperf6bc87c2013-04-30 11:00:33 +0100362
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000363 /* map all the memory banks */
364 for_each_memblock(memory, reg) {
365 phys_addr_t start = reg->base;
366 phys_addr_t end = start + reg->size;
367
368 if (start >= end)
369 break;
370
Catalin Marinase25208f2013-08-23 18:04:44 +0100371#ifndef CONFIG_ARM64_64K_PAGES
372 /*
373 * For the first memory bank align the start address and
374 * current memblock limit to prevent create_mapping() from
375 * allocating pte page tables from unmapped memory.
376 * When 64K pages are enabled, the pte page table for the
377 * first PGDIR_SIZE is already present in swapper_pg_dir.
378 */
379 if (start < limit)
380 start = ALIGN(start, PMD_SIZE);
381 if (end < limit) {
382 limit = end & PMD_MASK;
383 memblock_set_current_limit(limit);
384 }
385#endif
Laura Abbottda141702015-01-21 17:36:06 -0800386 __map_memblock(start, end);
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000387 }
Steve Capperf6bc87c2013-04-30 11:00:33 +0100388
389 /* Limit no longer required. */
390 memblock_set_current_limit(MEMBLOCK_ALLOC_ANYWHERE);
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000391}
392
Laura Abbottda141702015-01-21 17:36:06 -0800393void __init fixup_executable(void)
394{
395#ifdef CONFIG_DEBUG_RODATA
396 /* now that we are actually fully mapped, make the start/end more fine grained */
397 if (!IS_ALIGNED((unsigned long)_stext, SECTION_SIZE)) {
398 unsigned long aligned_start = round_down(__pa(_stext),
399 SECTION_SIZE);
400
401 create_mapping(aligned_start, __phys_to_virt(aligned_start),
402 __pa(_stext) - aligned_start,
403 PAGE_KERNEL);
404 }
405
406 if (!IS_ALIGNED((unsigned long)__init_end, SECTION_SIZE)) {
407 unsigned long aligned_end = round_up(__pa(__init_end),
408 SECTION_SIZE);
409 create_mapping(__pa(__init_end), (unsigned long)__init_end,
410 aligned_end - __pa(__init_end),
411 PAGE_KERNEL);
412 }
413#endif
414}
415
416#ifdef CONFIG_DEBUG_RODATA
417void mark_rodata_ro(void)
418{
419 create_mapping_late(__pa(_stext), (unsigned long)_stext,
420 (unsigned long)_etext - (unsigned long)_stext,
421 PAGE_KERNEL_EXEC | PTE_RDONLY);
422
423}
424#endif
425
426void fixup_init(void)
427{
428 create_mapping_late(__pa(__init_begin), (unsigned long)__init_begin,
429 (unsigned long)__init_end - (unsigned long)__init_begin,
430 PAGE_KERNEL);
431}
432
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000433/*
434 * paging_init() sets up the page tables, initialises the zone memory
435 * maps and sets up the zero page.
436 */
437void __init paging_init(void)
438{
439 void *zero_page;
440
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000441 map_mem();
Laura Abbottda141702015-01-21 17:36:06 -0800442 fixup_executable();
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000443
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000444 /* allocate the zero page. */
445 zero_page = early_alloc(PAGE_SIZE);
446
447 bootmem_init();
448
449 empty_zero_page = virt_to_page(zero_page);
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000450
451 /*
452 * TTBR0 is only used for the identity mapping at this stage. Make it
453 * point to zero page to avoid speculatively fetching new entries.
454 */
455 cpu_set_reserved_ttbr0();
456 flush_tlb_all();
457}
458
459/*
460 * Enable the identity mapping to allow the MMU disabling.
461 */
462void setup_mm_for_reboot(void)
463{
464 cpu_switch_mm(idmap_pg_dir, &init_mm);
465 flush_tlb_all();
466}
467
468/*
469 * Check whether a kernel address is valid (derived from arch/x86/).
470 */
471int kern_addr_valid(unsigned long addr)
472{
473 pgd_t *pgd;
474 pud_t *pud;
475 pmd_t *pmd;
476 pte_t *pte;
477
478 if ((((long)addr) >> VA_BITS) != -1UL)
479 return 0;
480
481 pgd = pgd_offset_k(addr);
482 if (pgd_none(*pgd))
483 return 0;
484
485 pud = pud_offset(pgd, addr);
486 if (pud_none(*pud))
487 return 0;
488
Steve Capper206a2a72014-05-06 14:02:27 +0100489 if (pud_sect(*pud))
490 return pfn_valid(pud_pfn(*pud));
491
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000492 pmd = pmd_offset(pud, addr);
493 if (pmd_none(*pmd))
494 return 0;
495
Dave Andersonda6e4cb2014-04-15 18:53:24 +0100496 if (pmd_sect(*pmd))
497 return pfn_valid(pmd_pfn(*pmd));
498
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000499 pte = pte_offset_kernel(pmd, addr);
500 if (pte_none(*pte))
501 return 0;
502
503 return pfn_valid(pte_pfn(*pte));
504}
505#ifdef CONFIG_SPARSEMEM_VMEMMAP
506#ifdef CONFIG_ARM64_64K_PAGES
Johannes Weiner0aad8182013-04-29 15:07:50 -0700507int __meminit vmemmap_populate(unsigned long start, unsigned long end, int node)
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000508{
Johannes Weiner0aad8182013-04-29 15:07:50 -0700509 return vmemmap_populate_basepages(start, end, node);
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000510}
511#else /* !CONFIG_ARM64_64K_PAGES */
Johannes Weiner0aad8182013-04-29 15:07:50 -0700512int __meminit vmemmap_populate(unsigned long start, unsigned long end, int node)
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000513{
Johannes Weiner0aad8182013-04-29 15:07:50 -0700514 unsigned long addr = start;
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000515 unsigned long next;
516 pgd_t *pgd;
517 pud_t *pud;
518 pmd_t *pmd;
519
520 do {
521 next = pmd_addr_end(addr, end);
522
523 pgd = vmemmap_pgd_populate(addr, node);
524 if (!pgd)
525 return -ENOMEM;
526
527 pud = vmemmap_pud_populate(pgd, addr, node);
528 if (!pud)
529 return -ENOMEM;
530
531 pmd = pmd_offset(pud, addr);
532 if (pmd_none(*pmd)) {
533 void *p = NULL;
534
535 p = vmemmap_alloc_block_buf(PMD_SIZE, node);
536 if (!p)
537 return -ENOMEM;
538
Catalin Marinasa501e322014-04-03 15:57:15 +0100539 set_pmd(pmd, __pmd(__pa(p) | PROT_SECT_NORMAL));
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000540 } else
541 vmemmap_verify((pte_t *)pmd, node, addr, next);
542 } while (addr = next, addr != end);
543
544 return 0;
545}
546#endif /* CONFIG_ARM64_64K_PAGES */
Johannes Weiner0aad8182013-04-29 15:07:50 -0700547void vmemmap_free(unsigned long start, unsigned long end)
Tang Chen01975182013-02-22 16:33:08 -0800548{
549}
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000550#endif /* CONFIG_SPARSEMEM_VMEMMAP */
Laura Abbottaf86e592014-11-21 21:50:42 +0000551
552static pte_t bm_pte[PTRS_PER_PTE] __page_aligned_bss;
Kirill A. Shutemov9f25e6a2015-04-14 15:45:39 -0700553#if CONFIG_PGTABLE_LEVELS > 2
Laura Abbottaf86e592014-11-21 21:50:42 +0000554static pmd_t bm_pmd[PTRS_PER_PMD] __page_aligned_bss;
555#endif
Kirill A. Shutemov9f25e6a2015-04-14 15:45:39 -0700556#if CONFIG_PGTABLE_LEVELS > 3
Laura Abbottaf86e592014-11-21 21:50:42 +0000557static pud_t bm_pud[PTRS_PER_PUD] __page_aligned_bss;
558#endif
559
560static inline pud_t * fixmap_pud(unsigned long addr)
561{
562 pgd_t *pgd = pgd_offset_k(addr);
563
564 BUG_ON(pgd_none(*pgd) || pgd_bad(*pgd));
565
566 return pud_offset(pgd, addr);
567}
568
569static inline pmd_t * fixmap_pmd(unsigned long addr)
570{
571 pud_t *pud = fixmap_pud(addr);
572
573 BUG_ON(pud_none(*pud) || pud_bad(*pud));
574
575 return pmd_offset(pud, addr);
576}
577
578static inline pte_t * fixmap_pte(unsigned long addr)
579{
580 pmd_t *pmd = fixmap_pmd(addr);
581
582 BUG_ON(pmd_none(*pmd) || pmd_bad(*pmd));
583
584 return pte_offset_kernel(pmd, addr);
585}
586
587void __init early_fixmap_init(void)
588{
589 pgd_t *pgd;
590 pud_t *pud;
591 pmd_t *pmd;
592 unsigned long addr = FIXADDR_START;
593
594 pgd = pgd_offset_k(addr);
595 pgd_populate(&init_mm, pgd, bm_pud);
596 pud = pud_offset(pgd, addr);
597 pud_populate(&init_mm, pud, bm_pmd);
598 pmd = pmd_offset(pud, addr);
599 pmd_populate_kernel(&init_mm, pmd, bm_pte);
600
601 /*
602 * The boot-ioremap range spans multiple pmds, for which
603 * we are not preparted:
604 */
605 BUILD_BUG_ON((__fix_to_virt(FIX_BTMAP_BEGIN) >> PMD_SHIFT)
606 != (__fix_to_virt(FIX_BTMAP_END) >> PMD_SHIFT));
607
608 if ((pmd != fixmap_pmd(fix_to_virt(FIX_BTMAP_BEGIN)))
609 || pmd != fixmap_pmd(fix_to_virt(FIX_BTMAP_END))) {
610 WARN_ON(1);
611 pr_warn("pmd %p != %p, %p\n",
612 pmd, fixmap_pmd(fix_to_virt(FIX_BTMAP_BEGIN)),
613 fixmap_pmd(fix_to_virt(FIX_BTMAP_END)));
614 pr_warn("fix_to_virt(FIX_BTMAP_BEGIN): %08lx\n",
615 fix_to_virt(FIX_BTMAP_BEGIN));
616 pr_warn("fix_to_virt(FIX_BTMAP_END): %08lx\n",
617 fix_to_virt(FIX_BTMAP_END));
618
619 pr_warn("FIX_BTMAP_END: %d\n", FIX_BTMAP_END);
620 pr_warn("FIX_BTMAP_BEGIN: %d\n", FIX_BTMAP_BEGIN);
621 }
622}
623
624void __set_fixmap(enum fixed_addresses idx,
625 phys_addr_t phys, pgprot_t flags)
626{
627 unsigned long addr = __fix_to_virt(idx);
628 pte_t *pte;
629
630 if (idx >= __end_of_fixed_addresses) {
631 BUG();
632 return;
633 }
634
635 pte = fixmap_pte(addr);
636
637 if (pgprot_val(flags)) {
638 set_pte(pte, pfn_pte(phys >> PAGE_SHIFT, flags));
639 } else {
640 pte_clear(&init_mm, addr, pte);
641 flush_tlb_kernel_range(addr, addr+PAGE_SIZE);
642 }
643}