]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/powerpc/mm/pgtable-radix.c
powerpc/64s/radix: Boot-time NULL pointer protection using a guard-PID
[mirror_ubuntu-bionic-kernel.git] / arch / powerpc / mm / pgtable-radix.c
CommitLineData
2bfd65e4
AK
1/*
2 * Page table handling routines for radix page table.
3 *
4 * Copyright 2015-2016, Aneesh Kumar K.V, IBM Corporation.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
bd350f71
ME
11
12#define pr_fmt(fmt) "radix-mmu: " fmt
13
14#include <linux/kernel.h>
589ee628 15#include <linux/sched/mm.h>
2bfd65e4
AK
16#include <linux/memblock.h>
17#include <linux/of_fdt.h>
7614ff32 18#include <linux/mm.h>
6deb6b47 19#include <linux/string_helpers.h>
68eafd13 20#include <linux/stop_machine.h>
2bfd65e4
AK
21
22#include <asm/pgtable.h>
23#include <asm/pgalloc.h>
0f812b03 24#include <asm/mmu_context.h>
2bfd65e4
AK
25#include <asm/dma.h>
26#include <asm/machdep.h>
27#include <asm/mmu.h>
28#include <asm/firmware.h>
1d0761d2 29#include <asm/powernv.h>
9abcc981 30#include <asm/sections.h>
0428491c 31#include <asm/trace.h>
2bfd65e4 32
bde3eb62
AK
33#include <trace/events/thp.h>
34
a25bd72b
BH
35unsigned int mmu_pid_bits;
36unsigned int mmu_base_pid;
37
83209bc8
AK
38static int native_register_process_table(unsigned long base, unsigned long pg_sz,
39 unsigned long table_size)
2bfd65e4 40{
7cd2a869
SJS
41 unsigned long patb0, patb1;
42
43 patb0 = be64_to_cpu(partition_tb[0].patb0);
44 patb1 = base | table_size | PATB_GR;
45
46 mmu_partition_table_set_entry(0, patb0, patb1);
83209bc8 47
2bfd65e4
AK
48 return 0;
49}
50
51static __ref void *early_alloc_pgtable(unsigned long size)
52{
53 void *pt;
54
55 pt = __va(memblock_alloc_base(size, size, MEMBLOCK_ALLOC_ANYWHERE));
56 memset(pt, 0, size);
57
58 return pt;
59}
60
61int radix__map_kernel_page(unsigned long ea, unsigned long pa,
62 pgprot_t flags,
63 unsigned int map_page_size)
64{
65 pgd_t *pgdp;
66 pud_t *pudp;
67 pmd_t *pmdp;
68 pte_t *ptep;
69 /*
70 * Make sure task size is correct as per the max adddr
71 */
72 BUILD_BUG_ON(TASK_SIZE_USER64 > RADIX_PGTABLE_RANGE);
73 if (slab_is_available()) {
74 pgdp = pgd_offset_k(ea);
75 pudp = pud_alloc(&init_mm, pgdp, ea);
76 if (!pudp)
77 return -ENOMEM;
78 if (map_page_size == PUD_SIZE) {
79 ptep = (pte_t *)pudp;
80 goto set_the_pte;
81 }
82 pmdp = pmd_alloc(&init_mm, pudp, ea);
83 if (!pmdp)
84 return -ENOMEM;
85 if (map_page_size == PMD_SIZE) {
a0615a16 86 ptep = pmdp_ptep(pmdp);
2bfd65e4
AK
87 goto set_the_pte;
88 }
89 ptep = pte_alloc_kernel(pmdp, ea);
90 if (!ptep)
91 return -ENOMEM;
92 } else {
93 pgdp = pgd_offset_k(ea);
94 if (pgd_none(*pgdp)) {
95 pudp = early_alloc_pgtable(PUD_TABLE_SIZE);
96 BUG_ON(pudp == NULL);
97 pgd_populate(&init_mm, pgdp, pudp);
98 }
99 pudp = pud_offset(pgdp, ea);
100 if (map_page_size == PUD_SIZE) {
101 ptep = (pte_t *)pudp;
102 goto set_the_pte;
103 }
104 if (pud_none(*pudp)) {
105 pmdp = early_alloc_pgtable(PMD_TABLE_SIZE);
106 BUG_ON(pmdp == NULL);
107 pud_populate(&init_mm, pudp, pmdp);
108 }
109 pmdp = pmd_offset(pudp, ea);
110 if (map_page_size == PMD_SIZE) {
a0615a16 111 ptep = pmdp_ptep(pmdp);
2bfd65e4
AK
112 goto set_the_pte;
113 }
114 if (!pmd_present(*pmdp)) {
115 ptep = early_alloc_pgtable(PAGE_SIZE);
116 BUG_ON(ptep == NULL);
117 pmd_populate_kernel(&init_mm, pmdp, ptep);
118 }
119 ptep = pte_offset_kernel(pmdp, ea);
120 }
121
122set_the_pte:
123 set_pte_at(&init_mm, ea, ptep, pfn_pte(pa >> PAGE_SHIFT, flags));
124 smp_wmb();
125 return 0;
126}
127
7614ff32 128#ifdef CONFIG_STRICT_KERNEL_RWX
b134bd90
ME
129void radix__change_memory_range(unsigned long start, unsigned long end,
130 unsigned long clear)
7614ff32 131{
7614ff32
BS
132 unsigned long idx;
133 pgd_t *pgdp;
134 pud_t *pudp;
135 pmd_t *pmdp;
136 pte_t *ptep;
137
138 start = ALIGN_DOWN(start, PAGE_SIZE);
139 end = PAGE_ALIGN(end); // aligns up
140
b134bd90
ME
141 pr_debug("Changing flags on range %lx-%lx removing 0x%lx\n",
142 start, end, clear);
7614ff32
BS
143
144 for (idx = start; idx < end; idx += PAGE_SIZE) {
145 pgdp = pgd_offset_k(idx);
146 pudp = pud_alloc(&init_mm, pgdp, idx);
147 if (!pudp)
148 continue;
149 if (pud_huge(*pudp)) {
150 ptep = (pte_t *)pudp;
151 goto update_the_pte;
152 }
153 pmdp = pmd_alloc(&init_mm, pudp, idx);
154 if (!pmdp)
155 continue;
156 if (pmd_huge(*pmdp)) {
157 ptep = pmdp_ptep(pmdp);
158 goto update_the_pte;
159 }
160 ptep = pte_alloc_kernel(pmdp, idx);
161 if (!ptep)
162 continue;
163update_the_pte:
b134bd90 164 radix__pte_update(&init_mm, idx, ptep, clear, 0, 0);
7614ff32
BS
165 }
166
167 radix__flush_tlb_kernel_range(start, end);
168}
b134bd90
ME
169
170void radix__mark_rodata_ro(void)
171{
172 unsigned long start, end;
173
f79ad50e
BS
174 /*
175 * mark_rodata_ro() will mark itself as !writable at some point.
176 * Due to DD1 workaround in radix__pte_update(), we'll end up with
177 * an invalid pte and the system will crash quite severly.
178 */
179 if (cpu_has_feature(CPU_FTR_POWER9_DD1)) {
180 pr_warn("Warning: Unable to mark rodata read only on P9 DD1\n");
181 return;
182 }
183
b134bd90
ME
184 start = (unsigned long)_stext;
185 end = (unsigned long)__init_begin;
186
187 radix__change_memory_range(start, end, _PAGE_WRITE);
188}
029d9252
ME
189
190void radix__mark_initmem_nx(void)
191{
192 unsigned long start = (unsigned long)__init_begin;
193 unsigned long end = (unsigned long)__init_end;
194
195 radix__change_memory_range(start, end, _PAGE_EXEC);
196}
7614ff32
BS
197#endif /* CONFIG_STRICT_KERNEL_RWX */
198
b5200ec9
RA
199static inline void __meminit print_mapping(unsigned long start,
200 unsigned long end,
201 unsigned long size)
202{
6deb6b47
ME
203 char buf[10];
204
b5200ec9
RA
205 if (end <= start)
206 return;
207
6deb6b47
ME
208 string_get_size(size, 1, STRING_UNITS_2, buf, sizeof(buf));
209
210 pr_info("Mapped 0x%016lx-0x%016lx with %s pages\n", start, end, buf);
b5200ec9
RA
211}
212
213static int __meminit create_physical_mapping(unsigned long start,
214 unsigned long end)
215{
9abcc981
ME
216 unsigned long vaddr, addr, mapping_size = 0;
217 pgprot_t prot;
7614ff32
BS
218 unsigned long max_mapping_size;
219#ifdef CONFIG_STRICT_KERNEL_RWX
220 int split_text_mapping = 1;
221#else
222 int split_text_mapping = 0;
223#endif
b5200ec9
RA
224
225 start = _ALIGN_UP(start, PAGE_SIZE);
226 for (addr = start; addr < end; addr += mapping_size) {
227 unsigned long gap, previous_size;
228 int rc;
229
230 gap = end - addr;
231 previous_size = mapping_size;
7614ff32 232 max_mapping_size = PUD_SIZE;
b5200ec9 233
7614ff32 234retry:
b5200ec9 235 if (IS_ALIGNED(addr, PUD_SIZE) && gap >= PUD_SIZE &&
7614ff32
BS
236 mmu_psize_defs[MMU_PAGE_1G].shift &&
237 PUD_SIZE <= max_mapping_size)
b5200ec9
RA
238 mapping_size = PUD_SIZE;
239 else if (IS_ALIGNED(addr, PMD_SIZE) && gap >= PMD_SIZE &&
240 mmu_psize_defs[MMU_PAGE_2M].shift)
241 mapping_size = PMD_SIZE;
242 else
243 mapping_size = PAGE_SIZE;
244
7614ff32
BS
245 if (split_text_mapping && (mapping_size == PUD_SIZE) &&
246 (addr <= __pa_symbol(__init_begin)) &&
247 (addr + mapping_size) >= __pa_symbol(_stext)) {
248 max_mapping_size = PMD_SIZE;
249 goto retry;
250 }
251
252 if (split_text_mapping && (mapping_size == PMD_SIZE) &&
253 (addr <= __pa_symbol(__init_begin)) &&
254 (addr + mapping_size) >= __pa_symbol(_stext))
255 mapping_size = PAGE_SIZE;
256
b5200ec9
RA
257 if (mapping_size != previous_size) {
258 print_mapping(start, addr, previous_size);
259 start = addr;
260 }
261
9abcc981
ME
262 vaddr = (unsigned long)__va(addr);
263
7f6d498e
BS
264 if (overlaps_kernel_text(vaddr, vaddr + mapping_size) ||
265 overlaps_interrupt_vector_text(vaddr, vaddr + mapping_size))
9abcc981
ME
266 prot = PAGE_KERNEL_X;
267 else
268 prot = PAGE_KERNEL;
269
270 rc = radix__map_kernel_page(vaddr, addr, prot, mapping_size);
b5200ec9
RA
271 if (rc)
272 return rc;
273 }
274
275 print_mapping(start, addr, mapping_size);
276 return 0;
277}
278
2bfd65e4
AK
279static void __init radix_init_pgtable(void)
280{
2bfd65e4
AK
281 unsigned long rts_field;
282 struct memblock_region *reg;
2bfd65e4
AK
283
284 /* We don't support slb for radix */
285 mmu_slb_size = 0;
286 /*
287 * Create the linear mapping, using standard page size for now
288 */
b5200ec9
RA
289 for_each_memblock(memory, reg)
290 WARN_ON(create_physical_mapping(reg->base,
291 reg->base + reg->size));
a25bd72b
BH
292
293 /* Find out how many PID bits are supported */
294 if (cpu_has_feature(CPU_FTR_HVMODE)) {
295 if (!mmu_pid_bits)
296 mmu_pid_bits = 20;
297#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
298 /*
299 * When KVM is possible, we only use the top half of the
300 * PID space to avoid collisions between host and guest PIDs
301 * which can cause problems due to prefetch when exiting the
302 * guest with AIL=3
303 */
304 mmu_base_pid = 1 << (mmu_pid_bits - 1);
305#else
306 mmu_base_pid = 1;
307#endif
308 } else {
309 /* The guest uses the bottom half of the PID space */
310 if (!mmu_pid_bits)
311 mmu_pid_bits = 19;
312 mmu_base_pid = 1;
313 }
314
2bfd65e4
AK
315 /*
316 * Allocate Partition table and process table for the
317 * host.
318 */
a25bd72b 319 BUG_ON(PRTB_SIZE_SHIFT > 36);
2bfd65e4
AK
320 process_tb = early_alloc_pgtable(1UL << PRTB_SIZE_SHIFT);
321 /*
322 * Fill in the process table.
2bfd65e4 323 */
b23d9c5b 324 rts_field = radix__get_tree_size();
2bfd65e4
AK
325 process_tb->prtb0 = cpu_to_be64(rts_field | __pa(init_mm.pgd) | RADIX_PGD_INDEX_SIZE);
326 /*
327 * Fill in the partition table. We are suppose to use effective address
328 * of process table here. But our linear mapping also enable us to use
329 * physical address here.
330 */
eea8148c 331 register_process_table(__pa(process_tb), 0, PRTB_SIZE_SHIFT - 12);
2bfd65e4 332 pr_info("Process table %p and radix root for kernel: %p\n", process_tb, init_mm.pgd);
7a70d728
PM
333 asm volatile("ptesync" : : : "memory");
334 asm volatile(PPC_TLBIE_5(%0,%1,2,1,1) : :
335 "r" (TLBIEL_INVAL_SET_LPID), "r" (0));
336 asm volatile("eieio; tlbsync; ptesync" : : : "memory");
0428491c 337 trace_tlbie(0, 0, TLBIEL_INVAL_SET_LPID, 0, 2, 1, 1);
0f812b03
NP
338
339 /*
340 * The init_mm context is given the first available (non-zero) PID,
341 * which is the "guard PID" and contains no page table. PIDR should
342 * never be set to zero because that duplicates the kernel address
343 * space at the 0x0... offset (quadrant 0)!
344 *
345 * An arbitrary PID that may later be allocated by the PID allocator
346 * for userspace processes must not be used either, because that
347 * would cause stale user mappings for that PID on CPUs outside of
348 * the TLB invalidation scheme (because it won't be in mm_cpumask).
349 *
350 * So permanently carve out one PID for the purpose of a guard PID.
351 */
352 init_mm.context.id = mmu_base_pid;
353 mmu_base_pid++;
2bfd65e4
AK
354}
355
356static void __init radix_init_partition_table(void)
357{
9d661958 358 unsigned long rts_field, dw0;
b23d9c5b 359
9d661958 360 mmu_partition_table_init();
b23d9c5b 361 rts_field = radix__get_tree_size();
9d661958
PM
362 dw0 = rts_field | __pa(init_mm.pgd) | RADIX_PGD_INDEX_SIZE | PATB_HR;
363 mmu_partition_table_set_entry(0, dw0, 0);
2bfd65e4 364
56547411
AK
365 pr_info("Initializing Radix MMU\n");
366 pr_info("Partition table %p\n", partition_tb);
2bfd65e4
AK
367}
368
369void __init radix_init_native(void)
370{
eea8148c 371 register_process_table = native_register_process_table;
2bfd65e4
AK
372}
373
374static int __init get_idx_from_shift(unsigned int shift)
375{
376 int idx = -1;
377
378 switch (shift) {
379 case 0xc:
380 idx = MMU_PAGE_4K;
381 break;
382 case 0x10:
383 idx = MMU_PAGE_64K;
384 break;
385 case 0x15:
386 idx = MMU_PAGE_2M;
387 break;
388 case 0x1e:
389 idx = MMU_PAGE_1G;
390 break;
391 }
392 return idx;
393}
394
395static int __init radix_dt_scan_page_sizes(unsigned long node,
396 const char *uname, int depth,
397 void *data)
398{
399 int size = 0;
400 int shift, idx;
401 unsigned int ap;
402 const __be32 *prop;
403 const char *type = of_get_flat_dt_prop(node, "device_type", NULL);
404
405 /* We are scanning "cpu" nodes only */
406 if (type == NULL || strcmp(type, "cpu") != 0)
407 return 0;
408
a25bd72b
BH
409 /* Find MMU PID size */
410 prop = of_get_flat_dt_prop(node, "ibm,mmu-pid-bits", &size);
411 if (prop && size == 4)
412 mmu_pid_bits = be32_to_cpup(prop);
413
414 /* Grab page size encodings */
2bfd65e4
AK
415 prop = of_get_flat_dt_prop(node, "ibm,processor-radix-AP-encodings", &size);
416 if (!prop)
417 return 0;
418
419 pr_info("Page sizes from device-tree:\n");
420 for (; size >= 4; size -= 4, ++prop) {
421
422 struct mmu_psize_def *def;
423
424 /* top 3 bit is AP encoding */
425 shift = be32_to_cpu(prop[0]) & ~(0xe << 28);
426 ap = be32_to_cpu(prop[0]) >> 29;
ac8d3818 427 pr_info("Page size shift = %d AP=0x%x\n", shift, ap);
2bfd65e4
AK
428
429 idx = get_idx_from_shift(shift);
430 if (idx < 0)
431 continue;
432
433 def = &mmu_psize_defs[idx];
434 def->shift = shift;
435 def->ap = ap;
436 }
437
438 /* needed ? */
439 cur_cpu_spec->mmu_features &= ~MMU_FTR_NO_SLBIE_B;
440 return 1;
441}
442
2537b09c 443void __init radix__early_init_devtree(void)
2bfd65e4
AK
444{
445 int rc;
446
447 /*
448 * Try to find the available page sizes in the device-tree
449 */
450 rc = of_scan_flat_dt(radix_dt_scan_page_sizes, NULL);
451 if (rc != 0) /* Found */
452 goto found;
453 /*
454 * let's assume we have page 4k and 64k support
455 */
456 mmu_psize_defs[MMU_PAGE_4K].shift = 12;
457 mmu_psize_defs[MMU_PAGE_4K].ap = 0x0;
458
459 mmu_psize_defs[MMU_PAGE_64K].shift = 16;
460 mmu_psize_defs[MMU_PAGE_64K].ap = 0x5;
461found:
462#ifdef CONFIG_SPARSEMEM_VMEMMAP
463 if (mmu_psize_defs[MMU_PAGE_2M].shift) {
464 /*
465 * map vmemmap using 2M if available
466 */
467 mmu_vmemmap_psize = MMU_PAGE_2M;
468 }
469#endif /* CONFIG_SPARSEMEM_VMEMMAP */
470 return;
471}
472
ad410674
AK
473static void update_hid_for_radix(void)
474{
475 unsigned long hid0;
476 unsigned long rb = 3UL << PPC_BITLSHIFT(53); /* IS = 3 */
477
478 asm volatile("ptesync": : :"memory");
479 /* prs = 0, ric = 2, rs = 0, r = 1 is = 3 */
480 asm volatile(PPC_TLBIE_5(%0, %4, %3, %2, %1)
481 : : "r"(rb), "i"(1), "i"(0), "i"(2), "r"(0) : "memory");
482 /* prs = 1, ric = 2, rs = 0, r = 1 is = 3 */
483 asm volatile(PPC_TLBIE_5(%0, %4, %3, %2, %1)
484 : : "r"(rb), "i"(1), "i"(1), "i"(2), "r"(0) : "memory");
485 asm volatile("eieio; tlbsync; ptesync; isync; slbia": : :"memory");
0428491c
BS
486 trace_tlbie(0, 0, rb, 0, 2, 0, 1);
487 trace_tlbie(0, 0, rb, 0, 2, 1, 1);
488
ad410674
AK
489 /*
490 * now switch the HID
491 */
492 hid0 = mfspr(SPRN_HID0);
493 hid0 |= HID0_POWER9_RADIX;
494 mtspr(SPRN_HID0, hid0);
495 asm volatile("isync": : :"memory");
496
497 /* Wait for it to happen */
498 while (!(mfspr(SPRN_HID0) & HID0_POWER9_RADIX))
499 cpu_relax();
500}
501
ee97b6b9
BS
502static void radix_init_amor(void)
503{
504 /*
505 * In HV mode, we init AMOR (Authority Mask Override Register) so that
506 * the hypervisor and guest can setup IAMR (Instruction Authority Mask
507 * Register), enable key 0 and set it to 1.
508 *
509 * AMOR = 0b1100 .... 0000 (Mask for key 0 is 11)
510 */
511 mtspr(SPRN_AMOR, (3ul << 62));
512}
513
3b10d009
BS
514static void radix_init_iamr(void)
515{
516 unsigned long iamr;
517
518 /*
519 * The IAMR should set to 0 on DD1.
520 */
521 if (cpu_has_feature(CPU_FTR_POWER9_DD1))
522 iamr = 0;
523 else
524 iamr = (1ul << 62);
525
526 /*
527 * Radix always uses key0 of the IAMR to determine if an access is
528 * allowed. We set bit 0 (IBM bit 1) of key0, to prevent instruction
529 * fetch.
530 */
531 mtspr(SPRN_IAMR, iamr);
532}
533
2bfd65e4
AK
534void __init radix__early_init_mmu(void)
535{
536 unsigned long lpcr;
2bfd65e4
AK
537
538#ifdef CONFIG_PPC_64K_PAGES
539 /* PAGE_SIZE mappings */
540 mmu_virtual_psize = MMU_PAGE_64K;
541#else
542 mmu_virtual_psize = MMU_PAGE_4K;
543#endif
544
545#ifdef CONFIG_SPARSEMEM_VMEMMAP
546 /* vmemmap mapping */
547 mmu_vmemmap_psize = mmu_virtual_psize;
548#endif
549 /*
550 * initialize page table size
551 */
552 __pte_index_size = RADIX_PTE_INDEX_SIZE;
553 __pmd_index_size = RADIX_PMD_INDEX_SIZE;
554 __pud_index_size = RADIX_PUD_INDEX_SIZE;
555 __pgd_index_size = RADIX_PGD_INDEX_SIZE;
556 __pmd_cache_index = RADIX_PMD_INDEX_SIZE;
557 __pte_table_size = RADIX_PTE_TABLE_SIZE;
558 __pmd_table_size = RADIX_PMD_TABLE_SIZE;
559 __pud_table_size = RADIX_PUD_TABLE_SIZE;
560 __pgd_table_size = RADIX_PGD_TABLE_SIZE;
561
a2f41eb9
AK
562 __pmd_val_bits = RADIX_PMD_VAL_BITS;
563 __pud_val_bits = RADIX_PUD_VAL_BITS;
564 __pgd_val_bits = RADIX_PGD_VAL_BITS;
2bfd65e4 565
d6a9996e
AK
566 __kernel_virt_start = RADIX_KERN_VIRT_START;
567 __kernel_virt_size = RADIX_KERN_VIRT_SIZE;
568 __vmalloc_start = RADIX_VMALLOC_START;
569 __vmalloc_end = RADIX_VMALLOC_END;
63ee9b2f 570 __kernel_io_start = RADIX_KERN_IO_START;
d6a9996e
AK
571 vmemmap = (struct page *)RADIX_VMEMMAP_BASE;
572 ioremap_bot = IOREMAP_BASE;
bfa37087
DS
573
574#ifdef CONFIG_PCI
575 pci_io_base = ISA_IO_BASE;
576#endif
577
5ed7ecd0
AK
578 /*
579 * For now radix also use the same frag size
580 */
581 __pte_frag_nr = H_PTE_FRAG_NR;
582 __pte_frag_size_shift = H_PTE_FRAG_SIZE_SHIFT;
d6a9996e 583
d6c88600 584 if (!firmware_has_feature(FW_FEATURE_LPAR)) {
166dd7d3 585 radix_init_native();
ad410674
AK
586 if (cpu_has_feature(CPU_FTR_POWER9_DD1))
587 update_hid_for_radix();
d6c88600 588 lpcr = mfspr(SPRN_LPCR);
bf16cdf4 589 mtspr(SPRN_LPCR, lpcr | LPCR_UPRT | LPCR_HR);
2bfd65e4 590 radix_init_partition_table();
ee97b6b9 591 radix_init_amor();
cc3d2940
PM
592 } else {
593 radix_init_pseries();
d6c88600 594 }
2bfd65e4 595
9d661958
PM
596 memblock_set_current_limit(MEMBLOCK_ALLOC_ANYWHERE);
597
3b10d009 598 radix_init_iamr();
2bfd65e4 599 radix_init_pgtable();
0f812b03
NP
600 /* Switch to the guard PID before turning on MMU */
601 radix__switch_mmu_context(NULL, &init_mm);
2bfd65e4
AK
602}
603
604void radix__early_init_mmu_secondary(void)
605{
606 unsigned long lpcr;
607 /*
d6c88600 608 * update partition table control register and UPRT
2bfd65e4 609 */
d6c88600 610 if (!firmware_has_feature(FW_FEATURE_LPAR)) {
cac4a185
AK
611
612 if (cpu_has_feature(CPU_FTR_POWER9_DD1))
613 update_hid_for_radix();
614
d6c88600 615 lpcr = mfspr(SPRN_LPCR);
bf16cdf4 616 mtspr(SPRN_LPCR, lpcr | LPCR_UPRT | LPCR_HR);
d6c88600 617
2bfd65e4
AK
618 mtspr(SPRN_PTCR,
619 __pa(partition_tb) | (PATB_SIZE_SHIFT - 12));
ee97b6b9 620 radix_init_amor();
d6c88600 621 }
3b10d009 622 radix_init_iamr();
0f812b03 623 radix__switch_mmu_context(NULL, &init_mm);
2bfd65e4
AK
624}
625
fe036a06
BH
626void radix__mmu_cleanup_all(void)
627{
628 unsigned long lpcr;
629
630 if (!firmware_has_feature(FW_FEATURE_LPAR)) {
631 lpcr = mfspr(SPRN_LPCR);
632 mtspr(SPRN_LPCR, lpcr & ~LPCR_UPRT);
633 mtspr(SPRN_PTCR, 0);
1d0761d2 634 powernv_set_nmmu_ptcr(0);
fe036a06
BH
635 radix__flush_tlb_all();
636 }
637}
638
2bfd65e4
AK
639void radix__setup_initial_memory_limit(phys_addr_t first_memblock_base,
640 phys_addr_t first_memblock_size)
641{
177ba7c6
AK
642 /* We don't currently support the first MEMBLOCK not mapping 0
643 * physical on those processors
644 */
645 BUG_ON(first_memblock_base != 0);
646 /*
647 * We limit the allocation that depend on ppc64_rma_size
648 * to first_memblock_size. We also clamp it to 1GB to
649 * avoid some funky things such as RTAS bugs.
650 *
651 * On radix config we really don't have a limitation
652 * on real mode access. But keeping it as above works
653 * well enough.
654 */
655 ppc64_rma_size = min_t(u64, first_memblock_size, 0x40000000);
656 /*
657 * Finally limit subsequent allocations. We really don't want
658 * to limit the memblock allocations to rma_size. FIXME!! should
659 * we even limit at all ?
660 */
2bfd65e4
AK
661 memblock_set_current_limit(first_memblock_base + first_memblock_size);
662}
d9225ad9 663
6cc27341 664#ifdef CONFIG_MEMORY_HOTPLUG
4b5d62ca
RA
665static void free_pte_table(pte_t *pte_start, pmd_t *pmd)
666{
667 pte_t *pte;
668 int i;
669
670 for (i = 0; i < PTRS_PER_PTE; i++) {
671 pte = pte_start + i;
672 if (!pte_none(*pte))
673 return;
674 }
675
676 pte_free_kernel(&init_mm, pte_start);
677 pmd_clear(pmd);
678}
679
680static void free_pmd_table(pmd_t *pmd_start, pud_t *pud)
681{
682 pmd_t *pmd;
683 int i;
684
685 for (i = 0; i < PTRS_PER_PMD; i++) {
686 pmd = pmd_start + i;
687 if (!pmd_none(*pmd))
688 return;
689 }
690
691 pmd_free(&init_mm, pmd_start);
692 pud_clear(pud);
693}
694
68eafd13
BS
695struct change_mapping_params {
696 pte_t *pte;
697 unsigned long start;
698 unsigned long end;
699 unsigned long aligned_start;
700 unsigned long aligned_end;
701};
702
703static int stop_machine_change_mapping(void *data)
704{
705 struct change_mapping_params *params =
706 (struct change_mapping_params *)data;
707
708 if (!data)
709 return -1;
710
711 spin_unlock(&init_mm.page_table_lock);
712 pte_clear(&init_mm, params->aligned_start, params->pte);
713 create_physical_mapping(params->aligned_start, params->start);
714 create_physical_mapping(params->end, params->aligned_end);
715 spin_lock(&init_mm.page_table_lock);
716 return 0;
717}
718
4b5d62ca
RA
719static void remove_pte_table(pte_t *pte_start, unsigned long addr,
720 unsigned long end)
721{
722 unsigned long next;
723 pte_t *pte;
724
725 pte = pte_start + pte_index(addr);
726 for (; addr < end; addr = next, pte++) {
727 next = (addr + PAGE_SIZE) & PAGE_MASK;
728 if (next > end)
729 next = end;
730
731 if (!pte_present(*pte))
732 continue;
733
0d0a4bc2
RA
734 if (!PAGE_ALIGNED(addr) || !PAGE_ALIGNED(next)) {
735 /*
736 * The vmemmap_free() and remove_section_mapping()
737 * codepaths call us with aligned addresses.
738 */
739 WARN_ONCE(1, "%s: unaligned range\n", __func__);
740 continue;
741 }
742
4b5d62ca
RA
743 pte_clear(&init_mm, addr, pte);
744 }
745}
746
68eafd13
BS
747/*
748 * clear the pte and potentially split the mapping helper
749 */
750static void split_kernel_mapping(unsigned long addr, unsigned long end,
751 unsigned long size, pte_t *pte)
752{
753 unsigned long mask = ~(size - 1);
754 unsigned long aligned_start = addr & mask;
755 unsigned long aligned_end = addr + size;
756 struct change_mapping_params params;
757 bool split_region = false;
758
759 if ((end - addr) < size) {
760 /*
761 * We're going to clear the PTE, but not flushed
762 * the mapping, time to remap and flush. The
763 * effects if visible outside the processor or
764 * if we are running in code close to the
765 * mapping we cleared, we are in trouble.
766 */
767 if (overlaps_kernel_text(aligned_start, addr) ||
768 overlaps_kernel_text(end, aligned_end)) {
769 /*
770 * Hack, just return, don't pte_clear
771 */
772 WARN_ONCE(1, "Linear mapping %lx->%lx overlaps kernel "
773 "text, not splitting\n", addr, end);
774 return;
775 }
776 split_region = true;
777 }
778
779 if (split_region) {
780 params.pte = pte;
781 params.start = addr;
782 params.end = end;
783 params.aligned_start = addr & ~(size - 1);
784 params.aligned_end = min_t(unsigned long, aligned_end,
785 (unsigned long)__va(memblock_end_of_DRAM()));
786 stop_machine(stop_machine_change_mapping, &params, NULL);
787 return;
788 }
789
790 pte_clear(&init_mm, addr, pte);
791}
792
4b5d62ca
RA
793static void remove_pmd_table(pmd_t *pmd_start, unsigned long addr,
794 unsigned long end)
795{
796 unsigned long next;
797 pte_t *pte_base;
798 pmd_t *pmd;
799
800 pmd = pmd_start + pmd_index(addr);
801 for (; addr < end; addr = next, pmd++) {
802 next = pmd_addr_end(addr, end);
803
804 if (!pmd_present(*pmd))
805 continue;
806
807 if (pmd_huge(*pmd)) {
68eafd13 808 split_kernel_mapping(addr, end, PMD_SIZE, (pte_t *)pmd);
4b5d62ca
RA
809 continue;
810 }
811
812 pte_base = (pte_t *)pmd_page_vaddr(*pmd);
813 remove_pte_table(pte_base, addr, next);
814 free_pte_table(pte_base, pmd);
815 }
816}
817
818static void remove_pud_table(pud_t *pud_start, unsigned long addr,
819 unsigned long end)
820{
821 unsigned long next;
822 pmd_t *pmd_base;
823 pud_t *pud;
824
825 pud = pud_start + pud_index(addr);
826 for (; addr < end; addr = next, pud++) {
827 next = pud_addr_end(addr, end);
828
829 if (!pud_present(*pud))
830 continue;
831
832 if (pud_huge(*pud)) {
68eafd13 833 split_kernel_mapping(addr, end, PUD_SIZE, (pte_t *)pud);
4b5d62ca
RA
834 continue;
835 }
836
837 pmd_base = (pmd_t *)pud_page_vaddr(*pud);
838 remove_pmd_table(pmd_base, addr, next);
839 free_pmd_table(pmd_base, pud);
840 }
841}
842
843static void remove_pagetable(unsigned long start, unsigned long end)
844{
845 unsigned long addr, next;
846 pud_t *pud_base;
847 pgd_t *pgd;
848
849 spin_lock(&init_mm.page_table_lock);
850
851 for (addr = start; addr < end; addr = next) {
852 next = pgd_addr_end(addr, end);
853
854 pgd = pgd_offset_k(addr);
855 if (!pgd_present(*pgd))
856 continue;
857
858 if (pgd_huge(*pgd)) {
68eafd13 859 split_kernel_mapping(addr, end, PGDIR_SIZE, (pte_t *)pgd);
4b5d62ca
RA
860 continue;
861 }
862
863 pud_base = (pud_t *)pgd_page_vaddr(*pgd);
864 remove_pud_table(pud_base, addr, next);
865 }
866
867 spin_unlock(&init_mm.page_table_lock);
868 radix__flush_tlb_kernel_range(start, end);
869}
870
6cc27341
RA
871int __ref radix__create_section_mapping(unsigned long start, unsigned long end)
872{
873 return create_physical_mapping(start, end);
874}
4b5d62ca
RA
875
876int radix__remove_section_mapping(unsigned long start, unsigned long end)
877{
878 remove_pagetable(start, end);
879 return 0;
880}
6cc27341
RA
881#endif /* CONFIG_MEMORY_HOTPLUG */
882
d9225ad9
AK
883#ifdef CONFIG_SPARSEMEM_VMEMMAP
884int __meminit radix__vmemmap_create_mapping(unsigned long start,
885 unsigned long page_size,
886 unsigned long phys)
887{
888 /* Create a PTE encoding */
889 unsigned long flags = _PAGE_PRESENT | _PAGE_ACCESSED | _PAGE_KERNEL_RW;
890
891 BUG_ON(radix__map_kernel_page(start, phys, __pgprot(flags), page_size));
892 return 0;
893}
894
895#ifdef CONFIG_MEMORY_HOTPLUG
896void radix__vmemmap_remove_mapping(unsigned long start, unsigned long page_size)
897{
0d0a4bc2 898 remove_pagetable(start, start + page_size);
d9225ad9
AK
899}
900#endif
901#endif
bde3eb62
AK
902
903#ifdef CONFIG_TRANSPARENT_HUGEPAGE
904
905unsigned long radix__pmd_hugepage_update(struct mm_struct *mm, unsigned long addr,
906 pmd_t *pmdp, unsigned long clr,
907 unsigned long set)
908{
909 unsigned long old;
910
911#ifdef CONFIG_DEBUG_VM
ebd31197 912 WARN_ON(!radix__pmd_trans_huge(*pmdp) && !pmd_devmap(*pmdp));
bde3eb62
AK
913 assert_spin_locked(&mm->page_table_lock);
914#endif
915
916 old = radix__pte_update(mm, addr, (pte_t *)pmdp, clr, set, 1);
917 trace_hugepage_update(addr, old, clr, set);
918
919 return old;
920}
921
922pmd_t radix__pmdp_collapse_flush(struct vm_area_struct *vma, unsigned long address,
923 pmd_t *pmdp)
924
925{
926 pmd_t pmd;
927
928 VM_BUG_ON(address & ~HPAGE_PMD_MASK);
929 VM_BUG_ON(radix__pmd_trans_huge(*pmdp));
ebd31197 930 VM_BUG_ON(pmd_devmap(*pmdp));
bde3eb62
AK
931 /*
932 * khugepaged calls this for normal pmd
933 */
934 pmd = *pmdp;
935 pmd_clear(pmdp);
424de9c6 936
bde3eb62 937 /*FIXME!! Verify whether we need this kick below */
fa4531f7 938 serialize_against_pte_lookup(vma->vm_mm);
424de9c6
BH
939
940 radix__flush_tlb_collapsed_pmd(vma->vm_mm, address);
941
bde3eb62
AK
942 return pmd;
943}
944
945/*
946 * For us pgtable_t is pte_t *. Inorder to save the deposisted
947 * page table, we consider the allocated page table as a list
948 * head. On withdraw we need to make sure we zero out the used
949 * list_head memory area.
950 */
951void radix__pgtable_trans_huge_deposit(struct mm_struct *mm, pmd_t *pmdp,
952 pgtable_t pgtable)
953{
954 struct list_head *lh = (struct list_head *) pgtable;
955
956 assert_spin_locked(pmd_lockptr(mm, pmdp));
957
958 /* FIFO */
959 if (!pmd_huge_pte(mm, pmdp))
960 INIT_LIST_HEAD(lh);
961 else
962 list_add(lh, (struct list_head *) pmd_huge_pte(mm, pmdp));
963 pmd_huge_pte(mm, pmdp) = pgtable;
964}
965
966pgtable_t radix__pgtable_trans_huge_withdraw(struct mm_struct *mm, pmd_t *pmdp)
967{
968 pte_t *ptep;
969 pgtable_t pgtable;
970 struct list_head *lh;
971
972 assert_spin_locked(pmd_lockptr(mm, pmdp));
973
974 /* FIFO */
975 pgtable = pmd_huge_pte(mm, pmdp);
976 lh = (struct list_head *) pgtable;
977 if (list_empty(lh))
978 pmd_huge_pte(mm, pmdp) = NULL;
979 else {
980 pmd_huge_pte(mm, pmdp) = (pgtable_t) lh->next;
981 list_del(lh);
982 }
983 ptep = (pte_t *) pgtable;
984 *ptep = __pte(0);
985 ptep++;
986 *ptep = __pte(0);
987 return pgtable;
988}
989
990
991pmd_t radix__pmdp_huge_get_and_clear(struct mm_struct *mm,
992 unsigned long addr, pmd_t *pmdp)
993{
994 pmd_t old_pmd;
995 unsigned long old;
996
997 old = radix__pmd_hugepage_update(mm, addr, pmdp, ~0UL, 0);
998 old_pmd = __pmd(old);
999 /*
fa4531f7 1000 * Serialize against find_current_mm_pte which does lock-less
bde3eb62
AK
1001 * lookup in page tables with local interrupts disabled. For huge pages
1002 * it casts pmd_t to pte_t. Since format of pte_t is different from
1003 * pmd_t we want to prevent transit from pmd pointing to page table
1004 * to pmd pointing to huge page (and back) while interrupts are disabled.
1005 * We clear pmd to possibly replace it with page table pointer in
1006 * different code paths. So make sure we wait for the parallel
fa4531f7 1007 * find_current_mm_pte to finish.
bde3eb62 1008 */
fa4531f7 1009 serialize_against_pte_lookup(mm);
bde3eb62
AK
1010 return old_pmd;
1011}
1012
1013int radix__has_transparent_hugepage(void)
1014{
1015 /* For radix 2M at PMD level means thp */
1016 if (mmu_psize_defs[MMU_PAGE_2M].shift == PMD_SHIFT)
1017 return 1;
1018 return 0;
1019}
1020#endif /* CONFIG_TRANSPARENT_HUGEPAGE */