GNU Linux-libre 4.9.337-gnu1
[releases.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/cache.h>
21 #include <linux/export.h>
22 #include <linux/kernel.h>
23 #include <linux/errno.h>
24 #include <linux/init.h>
25 #include <linux/libfdt.h>
26 #include <linux/mman.h>
27 #include <linux/nodemask.h>
28 #include <linux/memblock.h>
29 #include <linux/fs.h>
30 #include <linux/io.h>
31
32 #include <asm/barrier.h>
33 #include <asm/cputype.h>
34 #include <asm/fixmap.h>
35 #include <asm/kasan.h>
36 #include <asm/kernel-pgtable.h>
37 #include <asm/sections.h>
38 #include <asm/setup.h>
39 #include <asm/sizes.h>
40 #include <asm/tlb.h>
41 #include <asm/memblock.h>
42 #include <asm/mmu_context.h>
43
44 u64 idmap_t0sz = TCR_T0SZ(VA_BITS);
45
46 u64 kimage_voffset __ro_after_init;
47 EXPORT_SYMBOL(kimage_voffset);
48
49 /*
50  * Empty_zero_page is a special page that is used for zero-initialized data
51  * and COW.
52  */
53 unsigned long empty_zero_page[PAGE_SIZE / sizeof(unsigned long)] __page_aligned_bss;
54 EXPORT_SYMBOL(empty_zero_page);
55
56 static pte_t bm_pte[PTRS_PER_PTE] __page_aligned_bss;
57 static pmd_t bm_pmd[PTRS_PER_PMD] __page_aligned_bss __maybe_unused;
58 static pud_t bm_pud[PTRS_PER_PUD] __page_aligned_bss __maybe_unused;
59
60 pgprot_t phys_mem_access_prot(struct file *file, unsigned long pfn,
61                               unsigned long size, pgprot_t vma_prot)
62 {
63         if (!pfn_valid(pfn))
64                 return pgprot_noncached(vma_prot);
65         else if (file->f_flags & O_SYNC)
66                 return pgprot_writecombine(vma_prot);
67         return vma_prot;
68 }
69 EXPORT_SYMBOL(phys_mem_access_prot);
70
71 static phys_addr_t __init early_pgtable_alloc(void)
72 {
73         phys_addr_t phys;
74         void *ptr;
75
76         phys = memblock_alloc(PAGE_SIZE, PAGE_SIZE);
77
78         /*
79          * The FIX_{PGD,PUD,PMD} slots may be in active use, but the FIX_PTE
80          * slot will be free, so we can (ab)use the FIX_PTE slot to initialise
81          * any level of table.
82          */
83         ptr = pte_set_fixmap(phys);
84
85         memset(ptr, 0, PAGE_SIZE);
86
87         /*
88          * Implicit barriers also ensure the zeroed page is visible to the page
89          * table walker
90          */
91         pte_clear_fixmap();
92
93         return phys;
94 }
95
96 static bool pgattr_change_is_safe(u64 old, u64 new)
97 {
98         /*
99          * The following mapping attributes may be updated in live
100          * kernel mappings without the need for break-before-make.
101          */
102         static const pteval_t mask = PTE_PXN | PTE_RDONLY | PTE_WRITE;
103
104         return old  == 0 || new  == 0 || ((old ^ new) & ~mask) == 0;
105 }
106
107 static void alloc_init_pte(pmd_t *pmd, unsigned long addr,
108                                   unsigned long end, unsigned long pfn,
109                                   pgprot_t prot,
110                                   phys_addr_t (*pgtable_alloc)(void))
111 {
112         pte_t *pte;
113
114         BUG_ON(pmd_sect(*pmd));
115         if (pmd_none(*pmd)) {
116                 phys_addr_t pte_phys;
117                 BUG_ON(!pgtable_alloc);
118                 pte_phys = pgtable_alloc();
119                 pte = pte_set_fixmap(pte_phys);
120                 __pmd_populate(pmd, pte_phys, PMD_TYPE_TABLE);
121                 pte_clear_fixmap();
122         }
123         BUG_ON(pmd_bad(*pmd));
124
125         pte = pte_set_fixmap_offset(pmd, addr);
126         do {
127                 pte_t old_pte = *pte;
128
129                 set_pte(pte, pfn_pte(pfn, prot));
130                 pfn++;
131
132                 /*
133                  * After the PTE entry has been populated once, we
134                  * only allow updates to the permission attributes.
135                  */
136                 BUG_ON(!pgattr_change_is_safe(pte_val(old_pte), pte_val(*pte)));
137
138         } while (pte++, addr += PAGE_SIZE, addr != end);
139
140         pte_clear_fixmap();
141 }
142
143 static void alloc_init_pmd(pud_t *pud, unsigned long addr, unsigned long end,
144                                   phys_addr_t phys, pgprot_t prot,
145                                   phys_addr_t (*pgtable_alloc)(void),
146                                   bool allow_block_mappings)
147 {
148         pmd_t *pmd;
149         unsigned long next;
150
151         /*
152          * Check for initial section mappings in the pgd/pud and remove them.
153          */
154         BUG_ON(pud_sect(*pud));
155         if (pud_none(*pud)) {
156                 phys_addr_t pmd_phys;
157                 BUG_ON(!pgtable_alloc);
158                 pmd_phys = pgtable_alloc();
159                 pmd = pmd_set_fixmap(pmd_phys);
160                 __pud_populate(pud, pmd_phys, PUD_TYPE_TABLE);
161                 pmd_clear_fixmap();
162         }
163         BUG_ON(pud_bad(*pud));
164
165         pmd = pmd_set_fixmap_offset(pud, addr);
166         do {
167                 pmd_t old_pmd = *pmd;
168
169                 next = pmd_addr_end(addr, end);
170
171                 /* try section mapping first */
172                 if (((addr | next | phys) & ~SECTION_MASK) == 0 &&
173                       allow_block_mappings) {
174                         pmd_set_huge(pmd, phys, prot);
175
176                         /*
177                          * After the PMD entry has been populated once, we
178                          * only allow updates to the permission attributes.
179                          */
180                         BUG_ON(!pgattr_change_is_safe(pmd_val(old_pmd),
181                                                       pmd_val(*pmd)));
182                 } else {
183                         alloc_init_pte(pmd, addr, next, __phys_to_pfn(phys),
184                                        prot, pgtable_alloc);
185
186                         BUG_ON(pmd_val(old_pmd) != 0 &&
187                                pmd_val(old_pmd) != pmd_val(*pmd));
188                 }
189                 phys += next - addr;
190         } while (pmd++, addr = next, addr != end);
191
192         pmd_clear_fixmap();
193 }
194
195 static inline bool use_1G_block(unsigned long addr, unsigned long next,
196                         unsigned long phys)
197 {
198         if (PAGE_SHIFT != 12)
199                 return false;
200
201         if (((addr | next | phys) & ~PUD_MASK) != 0)
202                 return false;
203
204         return true;
205 }
206
207 static void alloc_init_pud(pgd_t *pgd, unsigned long addr, unsigned long end,
208                                   phys_addr_t phys, pgprot_t prot,
209                                   phys_addr_t (*pgtable_alloc)(void),
210                                   bool allow_block_mappings)
211 {
212         pud_t *pud;
213         unsigned long next;
214
215         if (pgd_none(*pgd)) {
216                 phys_addr_t pud_phys;
217                 BUG_ON(!pgtable_alloc);
218                 pud_phys = pgtable_alloc();
219                 __pgd_populate(pgd, pud_phys, PUD_TYPE_TABLE);
220         }
221         BUG_ON(pgd_bad(*pgd));
222
223         pud = pud_set_fixmap_offset(pgd, addr);
224         do {
225                 pud_t old_pud = *pud;
226
227                 next = pud_addr_end(addr, end);
228
229                 /*
230                  * For 4K granule only, attempt to put down a 1GB block
231                  */
232                 if (use_1G_block(addr, next, phys) && allow_block_mappings) {
233                         pud_set_huge(pud, phys, prot);
234
235                         /*
236                          * After the PUD entry has been populated once, we
237                          * only allow updates to the permission attributes.
238                          */
239                         BUG_ON(!pgattr_change_is_safe(pud_val(old_pud),
240                                                       pud_val(*pud)));
241                 } else {
242                         alloc_init_pmd(pud, addr, next, phys, prot,
243                                        pgtable_alloc, allow_block_mappings);
244
245                         BUG_ON(pud_val(old_pud) != 0 &&
246                                pud_val(old_pud) != pud_val(*pud));
247                 }
248                 phys += next - addr;
249         } while (pud++, addr = next, addr != end);
250
251         pud_clear_fixmap();
252 }
253
254 static void __create_pgd_mapping(pgd_t *pgdir, phys_addr_t phys,
255                                  unsigned long virt, phys_addr_t size,
256                                  pgprot_t prot,
257                                  phys_addr_t (*pgtable_alloc)(void),
258                                  bool allow_block_mappings)
259 {
260         unsigned long addr, length, end, next;
261         pgd_t *pgd = pgd_offset_raw(pgdir, virt);
262
263         /*
264          * If the virtual and physical address don't have the same offset
265          * within a page, we cannot map the region as the caller expects.
266          */
267         if (WARN_ON((phys ^ virt) & ~PAGE_MASK))
268                 return;
269
270         phys &= PAGE_MASK;
271         addr = virt & PAGE_MASK;
272         length = PAGE_ALIGN(size + (virt & ~PAGE_MASK));
273
274         end = addr + length;
275         do {
276                 next = pgd_addr_end(addr, end);
277                 alloc_init_pud(pgd, addr, next, phys, prot, pgtable_alloc,
278                                allow_block_mappings);
279                 phys += next - addr;
280         } while (pgd++, addr = next, addr != end);
281 }
282
283 static phys_addr_t pgd_pgtable_alloc(void)
284 {
285         void *ptr = (void *)__get_free_page(PGALLOC_GFP);
286         if (!ptr || !pgtable_page_ctor(virt_to_page(ptr)))
287                 BUG();
288
289         /* Ensure the zeroed page is visible to the page table walker */
290         dsb(ishst);
291         return __pa(ptr);
292 }
293
294 /*
295  * This function can only be used to modify existing table entries,
296  * without allocating new levels of table. Note that this permits the
297  * creation of new section or page entries.
298  */
299 static void __init create_mapping_noalloc(phys_addr_t phys, unsigned long virt,
300                                   phys_addr_t size, pgprot_t prot)
301 {
302         if (virt < VMALLOC_START) {
303                 pr_warn("BUG: not creating mapping for %pa at 0x%016lx - outside kernel range\n",
304                         &phys, virt);
305                 return;
306         }
307         __create_pgd_mapping(init_mm.pgd, phys, virt, size, prot, NULL, true);
308 }
309
310 void __init create_pgd_mapping(struct mm_struct *mm, phys_addr_t phys,
311                                unsigned long virt, phys_addr_t size,
312                                pgprot_t prot, bool allow_block_mappings)
313 {
314         BUG_ON(mm == &init_mm);
315
316         __create_pgd_mapping(mm->pgd, phys, virt, size, prot,
317                              pgd_pgtable_alloc, allow_block_mappings);
318 }
319
320 static void create_mapping_late(phys_addr_t phys, unsigned long virt,
321                                   phys_addr_t size, pgprot_t prot)
322 {
323         if (virt < VMALLOC_START) {
324                 pr_warn("BUG: not creating mapping for %pa at 0x%016lx - outside kernel range\n",
325                         &phys, virt);
326                 return;
327         }
328
329         __create_pgd_mapping(init_mm.pgd, phys, virt, size, prot,
330                              NULL, !debug_pagealloc_enabled());
331 }
332
333 static void __init __map_memblock(pgd_t *pgd, phys_addr_t start, phys_addr_t end)
334 {
335         unsigned long kernel_start = __pa(_text);
336         unsigned long kernel_end = __pa(__init_begin);
337
338         /*
339          * Take care not to create a writable alias for the
340          * read-only text and rodata sections of the kernel image.
341          */
342
343         /* No overlap with the kernel text/rodata */
344         if (end < kernel_start || start >= kernel_end) {
345                 __create_pgd_mapping(pgd, start, __phys_to_virt(start),
346                                      end - start, PAGE_KERNEL,
347                                      early_pgtable_alloc,
348                                      !debug_pagealloc_enabled());
349                 return;
350         }
351
352         /*
353          * This block overlaps the kernel text/rodata mappings.
354          * Map the portion(s) which don't overlap.
355          */
356         if (start < kernel_start)
357                 __create_pgd_mapping(pgd, start,
358                                      __phys_to_virt(start),
359                                      kernel_start - start, PAGE_KERNEL,
360                                      early_pgtable_alloc,
361                                      !debug_pagealloc_enabled());
362         if (kernel_end < end)
363                 __create_pgd_mapping(pgd, kernel_end,
364                                      __phys_to_virt(kernel_end),
365                                      end - kernel_end, PAGE_KERNEL,
366                                      early_pgtable_alloc,
367                                      !debug_pagealloc_enabled());
368
369         /*
370          * Map the linear alias of the [_text, __init_begin) interval as
371          * read-only/non-executable. This makes the contents of the
372          * region accessible to subsystems such as hibernate, but
373          * protects it from inadvertent modification or execution.
374          */
375         __create_pgd_mapping(pgd, kernel_start, __phys_to_virt(kernel_start),
376                              kernel_end - kernel_start, PAGE_KERNEL_RO,
377                              early_pgtable_alloc, !debug_pagealloc_enabled());
378 }
379
380 static void __init map_mem(pgd_t *pgd)
381 {
382         struct memblock_region *reg;
383
384         /* map all the memory banks */
385         for_each_memblock(memory, reg) {
386                 phys_addr_t start = reg->base;
387                 phys_addr_t end = start + reg->size;
388
389                 if (start >= end)
390                         break;
391                 if (memblock_is_nomap(reg))
392                         continue;
393
394                 __map_memblock(pgd, start, end);
395         }
396 }
397
398 void mark_rodata_ro(void)
399 {
400         unsigned long section_size;
401
402         section_size = (unsigned long)_etext - (unsigned long)_text;
403         create_mapping_late(__pa(_text), (unsigned long)_text,
404                             section_size, PAGE_KERNEL_ROX);
405         /*
406          * mark .rodata as read only. Use __init_begin rather than __end_rodata
407          * to cover NOTES and EXCEPTION_TABLE.
408          */
409         section_size = (unsigned long)__init_begin - (unsigned long)__start_rodata;
410         create_mapping_late(__pa(__start_rodata), (unsigned long)__start_rodata,
411                             section_size, PAGE_KERNEL_RO);
412
413         /* flush the TLBs after updating live kernel mappings */
414         flush_tlb_all();
415 }
416
417 static void __init map_kernel_segment(pgd_t *pgd, void *va_start, void *va_end,
418                                       pgprot_t prot, struct vm_struct *vma)
419 {
420         phys_addr_t pa_start = __pa(va_start);
421         unsigned long size = va_end - va_start;
422
423         BUG_ON(!PAGE_ALIGNED(pa_start));
424         BUG_ON(!PAGE_ALIGNED(size));
425
426         __create_pgd_mapping(pgd, pa_start, (unsigned long)va_start, size, prot,
427                              early_pgtable_alloc, !debug_pagealloc_enabled());
428
429         vma->addr       = va_start;
430         vma->phys_addr  = pa_start;
431         vma->size       = size;
432         vma->flags      = VM_MAP;
433         vma->caller     = __builtin_return_address(0);
434
435         vm_area_add_early(vma);
436 }
437
438 #ifdef CONFIG_UNMAP_KERNEL_AT_EL0
439 static int __init map_entry_trampoline(void)
440 {
441         int i;
442         extern char __entry_tramp_text_start[];
443
444         pgprot_t prot = rodata_enabled ? PAGE_KERNEL_ROX : PAGE_KERNEL_EXEC;
445         phys_addr_t pa_start = __pa_symbol(__entry_tramp_text_start);
446
447         /* The trampoline is always mapped and can therefore be global */
448         pgprot_val(prot) &= ~PTE_NG;
449
450         /* Map only the text into the trampoline page table */
451         memset(tramp_pg_dir, 0, PGD_SIZE);
452         __create_pgd_mapping(tramp_pg_dir, pa_start, TRAMP_VALIAS,
453                              entry_tramp_text_size(), prot, pgd_pgtable_alloc,
454                              0);
455
456         /* Map both the text and data into the kernel page table */
457         for (i = 0; i < DIV_ROUND_UP(entry_tramp_text_size(), PAGE_SIZE); i++)
458                 __set_fixmap(FIX_ENTRY_TRAMP_TEXT1 - i,
459                              pa_start + i * PAGE_SIZE, prot);
460
461         if (IS_ENABLED(CONFIG_RANDOMIZE_BASE)) {
462                 extern char __entry_tramp_data_start[];
463
464                 __set_fixmap(FIX_ENTRY_TRAMP_DATA,
465                              __pa_symbol(__entry_tramp_data_start),
466                              PAGE_KERNEL_RO);
467         }
468
469         return 0;
470 }
471 core_initcall(map_entry_trampoline);
472 #endif
473
474 /*
475  * Create fine-grained mappings for the kernel.
476  */
477 static void __init map_kernel(pgd_t *pgd)
478 {
479         static struct vm_struct vmlinux_text, vmlinux_rodata, vmlinux_init, vmlinux_data;
480
481         map_kernel_segment(pgd, _text, _etext, PAGE_KERNEL_EXEC, &vmlinux_text);
482         map_kernel_segment(pgd, __start_rodata, __init_begin, PAGE_KERNEL, &vmlinux_rodata);
483         map_kernel_segment(pgd, __init_begin, __init_end, PAGE_KERNEL_EXEC,
484                            &vmlinux_init);
485         map_kernel_segment(pgd, _data, _end, PAGE_KERNEL, &vmlinux_data);
486
487         if (!pgd_val(*pgd_offset_raw(pgd, FIXADDR_START))) {
488                 /*
489                  * The fixmap falls in a separate pgd to the kernel, and doesn't
490                  * live in the carveout for the swapper_pg_dir. We can simply
491                  * re-use the existing dir for the fixmap.
492                  */
493                 set_pgd(pgd_offset_raw(pgd, FIXADDR_START),
494                         *pgd_offset_k(FIXADDR_START));
495         } else if (CONFIG_PGTABLE_LEVELS > 3) {
496                 /*
497                  * The fixmap shares its top level pgd entry with the kernel
498                  * mapping. This can really only occur when we are running
499                  * with 16k/4 levels, so we can simply reuse the pud level
500                  * entry instead.
501                  */
502                 BUG_ON(!IS_ENABLED(CONFIG_ARM64_16K_PAGES));
503                 pud_populate(&init_mm, pud_set_fixmap_offset(pgd, FIXADDR_START),
504                              lm_alias(bm_pmd));
505                 pud_clear_fixmap();
506         } else {
507                 BUG();
508         }
509
510         kasan_copy_shadow(pgd);
511 }
512
513 /*
514  * paging_init() sets up the page tables, initialises the zone memory
515  * maps and sets up the zero page.
516  */
517 void __init paging_init(void)
518 {
519         phys_addr_t pgd_phys = early_pgtable_alloc();
520         pgd_t *pgd = pgd_set_fixmap(pgd_phys);
521
522         map_kernel(pgd);
523         map_mem(pgd);
524
525         /*
526          * We want to reuse the original swapper_pg_dir so we don't have to
527          * communicate the new address to non-coherent secondaries in
528          * secondary_entry, and so cpu_switch_mm can generate the address with
529          * adrp+add rather than a load from some global variable.
530          *
531          * To do this we need to go via a temporary pgd.
532          */
533         cpu_replace_ttbr1(__va(pgd_phys));
534         memcpy(swapper_pg_dir, pgd, PGD_SIZE);
535         cpu_replace_ttbr1(swapper_pg_dir);
536
537         pgd_clear_fixmap();
538         memblock_free(pgd_phys, PAGE_SIZE);
539
540         /*
541          * We only reuse the PGD from the swapper_pg_dir, not the pud + pmd
542          * allocated with it.
543          */
544         memblock_free(__pa(swapper_pg_dir) + PAGE_SIZE,
545                       SWAPPER_DIR_SIZE - PAGE_SIZE);
546 }
547
548 /*
549  * Check whether a kernel address is valid (derived from arch/x86/).
550  */
551 int kern_addr_valid(unsigned long addr)
552 {
553         pgd_t *pgd;
554         pud_t *pud;
555         pmd_t *pmd;
556         pte_t *pte;
557
558         if ((((long)addr) >> VA_BITS) != -1UL)
559                 return 0;
560
561         pgd = pgd_offset_k(addr);
562         if (pgd_none(*pgd))
563                 return 0;
564
565         pud = pud_offset(pgd, addr);
566         if (pud_none(*pud))
567                 return 0;
568
569         if (pud_sect(*pud))
570                 return pfn_valid(pud_pfn(*pud));
571
572         pmd = pmd_offset(pud, addr);
573         if (pmd_none(*pmd))
574                 return 0;
575
576         if (pmd_sect(*pmd))
577                 return pfn_valid(pmd_pfn(*pmd));
578
579         pte = pte_offset_kernel(pmd, addr);
580         if (pte_none(*pte))
581                 return 0;
582
583         return pfn_valid(pte_pfn(*pte));
584 }
585 #ifdef CONFIG_SPARSEMEM_VMEMMAP
586 #if !ARM64_SWAPPER_USES_SECTION_MAPS
587 int __meminit vmemmap_populate(unsigned long start, unsigned long end, int node)
588 {
589         return vmemmap_populate_basepages(start, end, node);
590 }
591 #else   /* !ARM64_SWAPPER_USES_SECTION_MAPS */
592 int __meminit vmemmap_populate(unsigned long start, unsigned long end, int node)
593 {
594         unsigned long addr = start;
595         unsigned long next;
596         pgd_t *pgd;
597         pud_t *pud;
598         pmd_t *pmd;
599
600         do {
601                 next = pmd_addr_end(addr, end);
602
603                 pgd = vmemmap_pgd_populate(addr, node);
604                 if (!pgd)
605                         return -ENOMEM;
606
607                 pud = vmemmap_pud_populate(pgd, addr, node);
608                 if (!pud)
609                         return -ENOMEM;
610
611                 pmd = pmd_offset(pud, addr);
612                 if (pmd_none(*pmd)) {
613                         void *p = NULL;
614
615                         p = vmemmap_alloc_block_buf(PMD_SIZE, node);
616                         if (!p)
617                                 return -ENOMEM;
618
619                         pmd_set_huge(pmd, __pa(p), __pgprot(PROT_SECT_NORMAL));
620                 } else
621                         vmemmap_verify((pte_t *)pmd, node, addr, next);
622         } while (addr = next, addr != end);
623
624         return 0;
625 }
626 #endif  /* CONFIG_ARM64_64K_PAGES */
627 void vmemmap_free(unsigned long start, unsigned long end)
628 {
629 }
630 #endif  /* CONFIG_SPARSEMEM_VMEMMAP */
631
632 static inline pud_t * fixmap_pud(unsigned long addr)
633 {
634         pgd_t *pgd = pgd_offset_k(addr);
635
636         BUG_ON(pgd_none(*pgd) || pgd_bad(*pgd));
637
638         return pud_offset_kimg(pgd, addr);
639 }
640
641 static inline pmd_t * fixmap_pmd(unsigned long addr)
642 {
643         pud_t *pud = fixmap_pud(addr);
644
645         BUG_ON(pud_none(*pud) || pud_bad(*pud));
646
647         return pmd_offset_kimg(pud, addr);
648 }
649
650 static inline pte_t * fixmap_pte(unsigned long addr)
651 {
652         return &bm_pte[pte_index(addr)];
653 }
654
655 void __init early_fixmap_init(void)
656 {
657         pgd_t *pgd;
658         pud_t *pud;
659         pmd_t *pmd;
660         unsigned long addr = FIXADDR_START;
661
662         pgd = pgd_offset_k(addr);
663         if (CONFIG_PGTABLE_LEVELS > 3 &&
664             !(pgd_none(*pgd) || pgd_page_paddr(*pgd) == __pa(bm_pud))) {
665                 /*
666                  * We only end up here if the kernel mapping and the fixmap
667                  * share the top level pgd entry, which should only happen on
668                  * 16k/4 levels configurations.
669                  */
670                 BUG_ON(!IS_ENABLED(CONFIG_ARM64_16K_PAGES));
671                 pud = pud_offset_kimg(pgd, addr);
672         } else {
673                 pgd_populate(&init_mm, pgd, bm_pud);
674                 pud = fixmap_pud(addr);
675         }
676         pud_populate(&init_mm, pud, bm_pmd);
677         pmd = fixmap_pmd(addr);
678         pmd_populate_kernel(&init_mm, pmd, bm_pte);
679
680         /*
681          * The boot-ioremap range spans multiple pmds, for which
682          * we are not prepared:
683          */
684         BUILD_BUG_ON((__fix_to_virt(FIX_BTMAP_BEGIN) >> PMD_SHIFT)
685                      != (__fix_to_virt(FIX_BTMAP_END) >> PMD_SHIFT));
686
687         if ((pmd != fixmap_pmd(fix_to_virt(FIX_BTMAP_BEGIN)))
688              || pmd != fixmap_pmd(fix_to_virt(FIX_BTMAP_END))) {
689                 WARN_ON(1);
690                 pr_warn("pmd %p != %p, %p\n",
691                         pmd, fixmap_pmd(fix_to_virt(FIX_BTMAP_BEGIN)),
692                         fixmap_pmd(fix_to_virt(FIX_BTMAP_END)));
693                 pr_warn("fix_to_virt(FIX_BTMAP_BEGIN): %08lx\n",
694                         fix_to_virt(FIX_BTMAP_BEGIN));
695                 pr_warn("fix_to_virt(FIX_BTMAP_END):   %08lx\n",
696                         fix_to_virt(FIX_BTMAP_END));
697
698                 pr_warn("FIX_BTMAP_END:       %d\n", FIX_BTMAP_END);
699                 pr_warn("FIX_BTMAP_BEGIN:     %d\n", FIX_BTMAP_BEGIN);
700         }
701 }
702
703 void __set_fixmap(enum fixed_addresses idx,
704                                phys_addr_t phys, pgprot_t flags)
705 {
706         unsigned long addr = __fix_to_virt(idx);
707         pte_t *pte;
708
709         BUG_ON(idx <= FIX_HOLE || idx >= __end_of_fixed_addresses);
710
711         pte = fixmap_pte(addr);
712
713         if (pgprot_val(flags)) {
714                 set_pte(pte, pfn_pte(phys >> PAGE_SHIFT, flags));
715         } else {
716                 pte_clear(&init_mm, addr, pte);
717                 flush_tlb_kernel_range(addr, addr+PAGE_SIZE);
718         }
719 }
720
721 void *__init fixmap_remap_fdt(phys_addr_t dt_phys, int *size, pgprot_t prot)
722 {
723         const u64 dt_virt_base = __fix_to_virt(FIX_FDT);
724         int offset;
725         void *dt_virt;
726
727         /*
728          * Check whether the physical FDT address is set and meets the minimum
729          * alignment requirement. Since we are relying on MIN_FDT_ALIGN to be
730          * at least 8 bytes so that we can always access the magic and size
731          * fields of the FDT header after mapping the first chunk, double check
732          * here if that is indeed the case.
733          */
734         BUILD_BUG_ON(MIN_FDT_ALIGN < 8);
735         if (!dt_phys || dt_phys % MIN_FDT_ALIGN)
736                 return NULL;
737
738         /*
739          * Make sure that the FDT region can be mapped without the need to
740          * allocate additional translation table pages, so that it is safe
741          * to call create_mapping_noalloc() this early.
742          *
743          * On 64k pages, the FDT will be mapped using PTEs, so we need to
744          * be in the same PMD as the rest of the fixmap.
745          * On 4k pages, we'll use section mappings for the FDT so we only
746          * have to be in the same PUD.
747          */
748         BUILD_BUG_ON(dt_virt_base % SZ_2M);
749
750         BUILD_BUG_ON(__fix_to_virt(FIX_FDT_END) >> SWAPPER_TABLE_SHIFT !=
751                      __fix_to_virt(FIX_BTMAP_BEGIN) >> SWAPPER_TABLE_SHIFT);
752
753         offset = dt_phys % SWAPPER_BLOCK_SIZE;
754         dt_virt = (void *)dt_virt_base + offset;
755
756         /* map the first chunk so we can read the size from the header */
757         create_mapping_noalloc(round_down(dt_phys, SWAPPER_BLOCK_SIZE),
758                         dt_virt_base, SWAPPER_BLOCK_SIZE, prot);
759
760         if (fdt_magic(dt_virt) != FDT_MAGIC)
761                 return NULL;
762
763         *size = fdt_totalsize(dt_virt);
764         if (*size > MAX_FDT_SIZE)
765                 return NULL;
766
767         if (offset + *size > SWAPPER_BLOCK_SIZE)
768                 create_mapping_noalloc(round_down(dt_phys, SWAPPER_BLOCK_SIZE), dt_virt_base,
769                                round_up(offset + *size, SWAPPER_BLOCK_SIZE), prot);
770
771         return dt_virt;
772 }
773
774 int __init arch_ioremap_pud_supported(void)
775 {
776         /*
777          * Only 4k granule supports level 1 block mappings.
778          * SW table walks can't handle removal of intermediate entries.
779          */
780         return IS_ENABLED(CONFIG_ARM64_4K_PAGES) &&
781                !IS_ENABLED(CONFIG_ARM64_PTDUMP_DEBUGFS);
782 }
783
784 int __init arch_ioremap_pmd_supported(void)
785 {
786         /* See arch_ioremap_pud_supported() */
787         return !IS_ENABLED(CONFIG_ARM64_PTDUMP_DEBUGFS);
788 }
789
790 int pud_set_huge(pud_t *pudp, phys_addr_t phys, pgprot_t prot)
791 {
792         pgprot_t sect_prot = __pgprot(PUD_TYPE_SECT |
793                                         pgprot_val(mk_sect_prot(prot)));
794         pud_t new_pud = pfn_pud(__phys_to_pfn(phys), sect_prot);
795
796         /* Only allow permission changes for now */
797         if (!pgattr_change_is_safe(READ_ONCE(pud_val(*pudp)),
798                                    pud_val(new_pud)))
799                 return 0;
800
801         BUG_ON(phys & ~PUD_MASK);
802         set_pud(pudp, new_pud);
803         return 1;
804 }
805
806 int pmd_set_huge(pmd_t *pmdp, phys_addr_t phys, pgprot_t prot)
807 {
808         pgprot_t sect_prot = __pgprot(PMD_TYPE_SECT |
809                                         pgprot_val(mk_sect_prot(prot)));
810         pmd_t new_pmd = pfn_pmd(__phys_to_pfn(phys), sect_prot);
811
812         /* Only allow permission changes for now */
813         if (!pgattr_change_is_safe(READ_ONCE(pmd_val(*pmdp)),
814                                    pmd_val(new_pmd)))
815                 return 0;
816
817         BUG_ON(phys & ~PMD_MASK);
818         set_pmd(pmdp, new_pmd);
819         return 1;
820 }
821
822 int pud_clear_huge(pud_t *pud)
823 {
824         if (!pud_sect(*pud))
825                 return 0;
826         pud_clear(pud);
827         return 1;
828 }
829
830 int pmd_clear_huge(pmd_t *pmd)
831 {
832         if (!pmd_sect(*pmd))
833                 return 0;
834         pmd_clear(pmd);
835         return 1;
836 }
837
838 int pud_free_pmd_page(pud_t *pud, unsigned long addr)
839 {
840         return pud_none(*pud);
841 }
842
843 int pmd_free_pte_page(pmd_t *pmd, unsigned long addr)
844 {
845         return pmd_none(*pmd);
846 }