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