blob: c879979faa73b766cc1336bfacf0d3b6c65db5ea [file] [log] [blame]
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +10001/*
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 */
Michael Ellermanbd350f72017-08-30 17:41:29 +100011
12#define pr_fmt(fmt) "radix-mmu: " fmt
13
14#include <linux/kernel.h>
Ingo Molnar589ee622017-02-04 00:16:44 +010015#include <linux/sched/mm.h>
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +100016#include <linux/memblock.h>
17#include <linux/of_fdt.h>
Balbir Singh7614ff32017-06-29 03:04:09 +100018#include <linux/mm.h>
Michael Ellerman6deb6b42017-08-30 17:41:17 +100019#include <linux/string_helpers.h>
Balbir Singh4dd5f8a92018-02-07 17:35:51 +110020#include <linux/stop_machine.h>
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +100021
22#include <asm/pgtable.h>
23#include <asm/pgalloc.h>
Nicholas Piggineeb715c2018-02-07 11:20:02 +100024#include <asm/mmu_context.h>
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +100025#include <asm/dma.h>
26#include <asm/machdep.h>
27#include <asm/mmu.h>
28#include <asm/firmware.h>
Alistair Popple1d0761d2016-12-14 13:36:51 +110029#include <asm/powernv.h>
Michael Ellerman9abcc982017-06-06 15:48:57 +100030#include <asm/sections.h>
Balbir Singh04284912017-04-11 15:23:25 +100031#include <asm/trace.h>
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +100032
Aneesh Kumar K.Vbde3eb62016-04-29 23:26:30 +100033#include <trace/events/thp.h>
34
Benjamin Herrenschmidta25bd722017-07-24 14:26:06 +100035unsigned int mmu_pid_bits;
36unsigned int mmu_base_pid;
37
Aneesh Kumar K.V83209bc2016-07-13 15:05:28 +053038static int native_register_process_table(unsigned long base, unsigned long pg_sz,
39 unsigned long table_size)
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +100040{
Suraj Jitindar Singh7cd2a862017-08-03 14:15:51 +100041 unsigned long patb0, patb1;
Aneesh Kumar K.V83209bc2016-07-13 15:05:28 +053042
Suraj Jitindar Singh7cd2a862017-08-03 14:15:51 +100043 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);
47
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +100048 return 0;
49}
50
Nicholas Piggin2ad452f2018-02-14 01:08:24 +100051static __ref void *early_alloc_pgtable(unsigned long size, int nid,
52 unsigned long region_start, unsigned long region_end)
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +100053{
Nicholas Piggin2ad452f2018-02-14 01:08:24 +100054 unsigned long pa = 0;
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +100055 void *pt;
56
Nicholas Piggin2ad452f2018-02-14 01:08:24 +100057 if (region_start || region_end) /* has region hint */
58 pa = memblock_alloc_range(size, size, region_start, region_end,
59 MEMBLOCK_NONE);
60 else if (nid != -1) /* has node hint */
61 pa = memblock_alloc_base_nid(size, size,
62 MEMBLOCK_ALLOC_ANYWHERE,
63 nid, MEMBLOCK_NONE);
64
65 if (!pa)
66 pa = memblock_alloc_base(size, size, MEMBLOCK_ALLOC_ANYWHERE);
67
68 BUG_ON(!pa);
69
70 pt = __va(pa);
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +100071 memset(pt, 0, size);
72
73 return pt;
74}
75
Nicholas Piggin0633daf2018-02-14 01:08:23 +100076static int early_map_kernel_page(unsigned long ea, unsigned long pa,
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +100077 pgprot_t flags,
Nicholas Piggin2ad452f2018-02-14 01:08:24 +100078 unsigned int map_page_size,
79 int nid,
80 unsigned long region_start, unsigned long region_end)
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +100081{
Nicholas Piggin2ad452f2018-02-14 01:08:24 +100082 unsigned long pfn = pa >> PAGE_SHIFT;
Nicholas Piggin0633daf2018-02-14 01:08:23 +100083 pgd_t *pgdp;
84 pud_t *pudp;
85 pmd_t *pmdp;
86 pte_t *ptep;
87
88 pgdp = pgd_offset_k(ea);
89 if (pgd_none(*pgdp)) {
Nicholas Piggin2ad452f2018-02-14 01:08:24 +100090 pudp = early_alloc_pgtable(PUD_TABLE_SIZE, nid,
91 region_start, region_end);
Nicholas Piggin0633daf2018-02-14 01:08:23 +100092 pgd_populate(&init_mm, pgdp, pudp);
93 }
94 pudp = pud_offset(pgdp, ea);
95 if (map_page_size == PUD_SIZE) {
96 ptep = (pte_t *)pudp;
97 goto set_the_pte;
98 }
99 if (pud_none(*pudp)) {
Nicholas Piggin2ad452f2018-02-14 01:08:24 +1000100 pmdp = early_alloc_pgtable(PMD_TABLE_SIZE, nid,
101 region_start, region_end);
Nicholas Piggin0633daf2018-02-14 01:08:23 +1000102 pud_populate(&init_mm, pudp, pmdp);
103 }
104 pmdp = pmd_offset(pudp, ea);
105 if (map_page_size == PMD_SIZE) {
106 ptep = pmdp_ptep(pmdp);
107 goto set_the_pte;
108 }
109 if (!pmd_present(*pmdp)) {
Nicholas Piggin2ad452f2018-02-14 01:08:24 +1000110 ptep = early_alloc_pgtable(PAGE_SIZE, nid,
111 region_start, region_end);
Nicholas Piggin0633daf2018-02-14 01:08:23 +1000112 pmd_populate_kernel(&init_mm, pmdp, ptep);
113 }
114 ptep = pte_offset_kernel(pmdp, ea);
115
116set_the_pte:
Nicholas Piggin2ad452f2018-02-14 01:08:24 +1000117 set_pte_at(&init_mm, ea, ptep, pfn_pte(pfn, flags));
Nicholas Piggin0633daf2018-02-14 01:08:23 +1000118 smp_wmb();
119 return 0;
120}
121
Nicholas Piggin2ad452f2018-02-14 01:08:24 +1000122/*
123 * nid, region_start, and region_end are hints to try to place the page
124 * table memory in the same node or region.
125 */
126static int __map_kernel_page(unsigned long ea, unsigned long pa,
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000127 pgprot_t flags,
Nicholas Piggin2ad452f2018-02-14 01:08:24 +1000128 unsigned int map_page_size,
129 int nid,
130 unsigned long region_start, unsigned long region_end)
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000131{
Nicholas Piggin2ad452f2018-02-14 01:08:24 +1000132 unsigned long pfn = pa >> PAGE_SHIFT;
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000133 pgd_t *pgdp;
134 pud_t *pudp;
135 pmd_t *pmdp;
136 pte_t *ptep;
137 /*
138 * Make sure task size is correct as per the max adddr
139 */
140 BUILD_BUG_ON(TASK_SIZE_USER64 > RADIX_PGTABLE_RANGE);
Nicholas Piggin0633daf2018-02-14 01:08:23 +1000141
Nicholas Piggin2ad452f2018-02-14 01:08:24 +1000142 if (unlikely(!slab_is_available()))
143 return early_map_kernel_page(ea, pa, flags, map_page_size,
144 nid, region_start, region_end);
Nicholas Piggin0633daf2018-02-14 01:08:23 +1000145
Nicholas Piggin2ad452f2018-02-14 01:08:24 +1000146 /*
147 * Should make page table allocation functions be able to take a
148 * node, so we can place kernel page tables on the right nodes after
149 * boot.
150 */
Nicholas Piggin0633daf2018-02-14 01:08:23 +1000151 pgdp = pgd_offset_k(ea);
152 pudp = pud_alloc(&init_mm, pgdp, ea);
153 if (!pudp)
154 return -ENOMEM;
155 if (map_page_size == PUD_SIZE) {
156 ptep = (pte_t *)pudp;
157 goto set_the_pte;
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000158 }
Nicholas Piggin0633daf2018-02-14 01:08:23 +1000159 pmdp = pmd_alloc(&init_mm, pudp, ea);
160 if (!pmdp)
161 return -ENOMEM;
162 if (map_page_size == PMD_SIZE) {
163 ptep = pmdp_ptep(pmdp);
164 goto set_the_pte;
165 }
166 ptep = pte_alloc_kernel(pmdp, ea);
167 if (!ptep)
168 return -ENOMEM;
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000169
170set_the_pte:
Nicholas Piggin2ad452f2018-02-14 01:08:24 +1000171 set_pte_at(&init_mm, ea, ptep, pfn_pte(pfn, flags));
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000172 smp_wmb();
173 return 0;
174}
175
Nicholas Piggin2ad452f2018-02-14 01:08:24 +1000176int radix__map_kernel_page(unsigned long ea, unsigned long pa,
177 pgprot_t flags,
178 unsigned int map_page_size)
179{
180 return __map_kernel_page(ea, pa, flags, map_page_size, -1, 0, 0);
181}
182
Balbir Singh7614ff32017-06-29 03:04:09 +1000183#ifdef CONFIG_STRICT_KERNEL_RWX
Michael Ellermanb134bd92017-07-14 16:51:21 +1000184void radix__change_memory_range(unsigned long start, unsigned long end,
185 unsigned long clear)
Balbir Singh7614ff32017-06-29 03:04:09 +1000186{
Balbir Singh7614ff32017-06-29 03:04:09 +1000187 unsigned long idx;
188 pgd_t *pgdp;
189 pud_t *pudp;
190 pmd_t *pmdp;
191 pte_t *ptep;
192
193 start = ALIGN_DOWN(start, PAGE_SIZE);
194 end = PAGE_ALIGN(end); // aligns up
195
Michael Ellermanb134bd92017-07-14 16:51:21 +1000196 pr_debug("Changing flags on range %lx-%lx removing 0x%lx\n",
197 start, end, clear);
Balbir Singh7614ff32017-06-29 03:04:09 +1000198
199 for (idx = start; idx < end; idx += PAGE_SIZE) {
200 pgdp = pgd_offset_k(idx);
201 pudp = pud_alloc(&init_mm, pgdp, idx);
202 if (!pudp)
203 continue;
204 if (pud_huge(*pudp)) {
205 ptep = (pte_t *)pudp;
206 goto update_the_pte;
207 }
208 pmdp = pmd_alloc(&init_mm, pudp, idx);
209 if (!pmdp)
210 continue;
211 if (pmd_huge(*pmdp)) {
212 ptep = pmdp_ptep(pmdp);
213 goto update_the_pte;
214 }
215 ptep = pte_alloc_kernel(pmdp, idx);
216 if (!ptep)
217 continue;
218update_the_pte:
Michael Ellermanb134bd92017-07-14 16:51:21 +1000219 radix__pte_update(&init_mm, idx, ptep, clear, 0, 0);
Balbir Singh7614ff32017-06-29 03:04:09 +1000220 }
221
222 radix__flush_tlb_kernel_range(start, end);
223}
Michael Ellermanb134bd92017-07-14 16:51:21 +1000224
225void radix__mark_rodata_ro(void)
226{
227 unsigned long start, end;
228
229 start = (unsigned long)_stext;
230 end = (unsigned long)__init_begin;
231
232 radix__change_memory_range(start, end, _PAGE_WRITE);
233}
Michael Ellerman029d9252017-07-14 16:51:23 +1000234
235void radix__mark_initmem_nx(void)
236{
237 unsigned long start = (unsigned long)__init_begin;
238 unsigned long end = (unsigned long)__init_end;
239
240 radix__change_memory_range(start, end, _PAGE_EXEC);
241}
Balbir Singh7614ff32017-06-29 03:04:09 +1000242#endif /* CONFIG_STRICT_KERNEL_RWX */
243
Reza Arbabb5200ec2017-01-16 13:07:43 -0600244static inline void __meminit print_mapping(unsigned long start,
245 unsigned long end,
246 unsigned long size)
247{
Michael Ellerman6deb6b42017-08-30 17:41:17 +1000248 char buf[10];
249
Reza Arbabb5200ec2017-01-16 13:07:43 -0600250 if (end <= start)
251 return;
252
Michael Ellerman6deb6b42017-08-30 17:41:17 +1000253 string_get_size(size, 1, STRING_UNITS_2, buf, sizeof(buf));
254
255 pr_info("Mapped 0x%016lx-0x%016lx with %s pages\n", start, end, buf);
Reza Arbabb5200ec2017-01-16 13:07:43 -0600256}
257
258static int __meminit create_physical_mapping(unsigned long start,
Nicholas Piggin2ad452f2018-02-14 01:08:24 +1000259 unsigned long end,
260 int nid)
Reza Arbabb5200ec2017-01-16 13:07:43 -0600261{
Michael Ellerman9abcc982017-06-06 15:48:57 +1000262 unsigned long vaddr, addr, mapping_size = 0;
263 pgprot_t prot;
Balbir Singh7614ff32017-06-29 03:04:09 +1000264 unsigned long max_mapping_size;
265#ifdef CONFIG_STRICT_KERNEL_RWX
266 int split_text_mapping = 1;
267#else
268 int split_text_mapping = 0;
269#endif
Aneesh Kumar K.Va2dc0092018-08-13 11:14:57 +0530270 int psize;
Reza Arbabb5200ec2017-01-16 13:07:43 -0600271
272 start = _ALIGN_UP(start, PAGE_SIZE);
273 for (addr = start; addr < end; addr += mapping_size) {
274 unsigned long gap, previous_size;
275 int rc;
276
277 gap = end - addr;
278 previous_size = mapping_size;
Balbir Singh7614ff32017-06-29 03:04:09 +1000279 max_mapping_size = PUD_SIZE;
Reza Arbabb5200ec2017-01-16 13:07:43 -0600280
Balbir Singh7614ff32017-06-29 03:04:09 +1000281retry:
Reza Arbabb5200ec2017-01-16 13:07:43 -0600282 if (IS_ALIGNED(addr, PUD_SIZE) && gap >= PUD_SIZE &&
Balbir Singh7614ff32017-06-29 03:04:09 +1000283 mmu_psize_defs[MMU_PAGE_1G].shift &&
Aneesh Kumar K.Va2dc0092018-08-13 11:14:57 +0530284 PUD_SIZE <= max_mapping_size) {
Reza Arbabb5200ec2017-01-16 13:07:43 -0600285 mapping_size = PUD_SIZE;
Aneesh Kumar K.Va2dc0092018-08-13 11:14:57 +0530286 psize = MMU_PAGE_1G;
287 } else if (IS_ALIGNED(addr, PMD_SIZE) && gap >= PMD_SIZE &&
288 mmu_psize_defs[MMU_PAGE_2M].shift) {
Reza Arbabb5200ec2017-01-16 13:07:43 -0600289 mapping_size = PMD_SIZE;
Aneesh Kumar K.Va2dc0092018-08-13 11:14:57 +0530290 psize = MMU_PAGE_2M;
291 } else {
Reza Arbabb5200ec2017-01-16 13:07:43 -0600292 mapping_size = PAGE_SIZE;
Aneesh Kumar K.Va2dc0092018-08-13 11:14:57 +0530293 psize = mmu_virtual_psize;
294 }
Reza Arbabb5200ec2017-01-16 13:07:43 -0600295
Balbir Singh7614ff32017-06-29 03:04:09 +1000296 if (split_text_mapping && (mapping_size == PUD_SIZE) &&
297 (addr <= __pa_symbol(__init_begin)) &&
298 (addr + mapping_size) >= __pa_symbol(_stext)) {
299 max_mapping_size = PMD_SIZE;
300 goto retry;
301 }
302
303 if (split_text_mapping && (mapping_size == PMD_SIZE) &&
304 (addr <= __pa_symbol(__init_begin)) &&
Aneesh Kumar K.Va2dc0092018-08-13 11:14:57 +0530305 (addr + mapping_size) >= __pa_symbol(_stext)) {
Balbir Singh7614ff32017-06-29 03:04:09 +1000306 mapping_size = PAGE_SIZE;
Aneesh Kumar K.Va2dc0092018-08-13 11:14:57 +0530307 psize = mmu_virtual_psize;
308 }
Balbir Singh7614ff32017-06-29 03:04:09 +1000309
Reza Arbabb5200ec2017-01-16 13:07:43 -0600310 if (mapping_size != previous_size) {
311 print_mapping(start, addr, previous_size);
312 start = addr;
313 }
314
Michael Ellerman9abcc982017-06-06 15:48:57 +1000315 vaddr = (unsigned long)__va(addr);
316
Balbir Singh7f6d4982017-06-29 03:04:10 +1000317 if (overlaps_kernel_text(vaddr, vaddr + mapping_size) ||
318 overlaps_interrupt_vector_text(vaddr, vaddr + mapping_size))
Michael Ellerman9abcc982017-06-06 15:48:57 +1000319 prot = PAGE_KERNEL_X;
320 else
321 prot = PAGE_KERNEL;
322
Nicholas Piggin2ad452f2018-02-14 01:08:24 +1000323 rc = __map_kernel_page(vaddr, addr, prot, mapping_size, nid, start, end);
Reza Arbabb5200ec2017-01-16 13:07:43 -0600324 if (rc)
325 return rc;
Aneesh Kumar K.Va2dc0092018-08-13 11:14:57 +0530326
327 update_page_count(psize, 1);
Reza Arbabb5200ec2017-01-16 13:07:43 -0600328 }
329
330 print_mapping(start, addr, mapping_size);
331 return 0;
332}
333
Nicholas Piggin2ad452f2018-02-14 01:08:24 +1000334void __init radix_init_pgtable(void)
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000335{
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000336 unsigned long rts_field;
337 struct memblock_region *reg;
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000338
339 /* We don't support slb for radix */
340 mmu_slb_size = 0;
341 /*
342 * Create the linear mapping, using standard page size for now
343 */
Nicholas Piggin2ad452f2018-02-14 01:08:24 +1000344 for_each_memblock(memory, reg) {
345 /*
346 * The memblock allocator is up at this point, so the
347 * page tables will be allocated within the range. No
348 * need or a node (which we don't have yet).
349 */
Reza Arbabb5200ec2017-01-16 13:07:43 -0600350 WARN_ON(create_physical_mapping(reg->base,
Nicholas Piggin2ad452f2018-02-14 01:08:24 +1000351 reg->base + reg->size,
352 -1));
353 }
Benjamin Herrenschmidta25bd722017-07-24 14:26:06 +1000354
355 /* Find out how many PID bits are supported */
356 if (cpu_has_feature(CPU_FTR_HVMODE)) {
357 if (!mmu_pid_bits)
358 mmu_pid_bits = 20;
359#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
360 /*
361 * When KVM is possible, we only use the top half of the
362 * PID space to avoid collisions between host and guest PIDs
363 * which can cause problems due to prefetch when exiting the
364 * guest with AIL=3
365 */
366 mmu_base_pid = 1 << (mmu_pid_bits - 1);
367#else
368 mmu_base_pid = 1;
369#endif
370 } else {
371 /* The guest uses the bottom half of the PID space */
372 if (!mmu_pid_bits)
373 mmu_pid_bits = 19;
374 mmu_base_pid = 1;
375 }
376
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000377 /*
378 * Allocate Partition table and process table for the
379 * host.
380 */
Benjamin Herrenschmidta25bd722017-07-24 14:26:06 +1000381 BUG_ON(PRTB_SIZE_SHIFT > 36);
Nicholas Piggin2ad452f2018-02-14 01:08:24 +1000382 process_tb = early_alloc_pgtable(1UL << PRTB_SIZE_SHIFT, -1, 0, 0);
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000383 /*
384 * Fill in the process table.
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000385 */
Aneesh Kumar K.Vb23d9c52016-06-17 11:40:36 +0530386 rts_field = radix__get_tree_size();
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000387 process_tb->prtb0 = cpu_to_be64(rts_field | __pa(init_mm.pgd) | RADIX_PGD_INDEX_SIZE);
388 /*
389 * Fill in the partition table. We are suppose to use effective address
390 * of process table here. But our linear mapping also enable us to use
391 * physical address here.
392 */
Michael Ellermaneea81482016-08-04 15:32:06 +1000393 register_process_table(__pa(process_tb), 0, PRTB_SIZE_SHIFT - 12);
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000394 pr_info("Process table %p and radix root for kernel: %p\n", process_tb, init_mm.pgd);
Paul Mackerras7a70d722017-02-27 14:32:41 +1100395 asm volatile("ptesync" : : : "memory");
396 asm volatile(PPC_TLBIE_5(%0,%1,2,1,1) : :
397 "r" (TLBIEL_INVAL_SET_LPID), "r" (0));
398 asm volatile("eieio; tlbsync; ptesync" : : : "memory");
Balbir Singh04284912017-04-11 15:23:25 +1000399 trace_tlbie(0, 0, TLBIEL_INVAL_SET_LPID, 0, 2, 1, 1);
Nicholas Piggineeb715c2018-02-07 11:20:02 +1000400
401 /*
402 * The init_mm context is given the first available (non-zero) PID,
403 * which is the "guard PID" and contains no page table. PIDR should
404 * never be set to zero because that duplicates the kernel address
405 * space at the 0x0... offset (quadrant 0)!
406 *
407 * An arbitrary PID that may later be allocated by the PID allocator
408 * for userspace processes must not be used either, because that
409 * would cause stale user mappings for that PID on CPUs outside of
410 * the TLB invalidation scheme (because it won't be in mm_cpumask).
411 *
412 * So permanently carve out one PID for the purpose of a guard PID.
413 */
414 init_mm.context.id = mmu_base_pid;
415 mmu_base_pid++;
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000416}
417
418static void __init radix_init_partition_table(void)
419{
Paul Mackerras9d661952016-11-21 16:00:58 +1100420 unsigned long rts_field, dw0;
Aneesh Kumar K.Vb23d9c52016-06-17 11:40:36 +0530421
Paul Mackerras9d661952016-11-21 16:00:58 +1100422 mmu_partition_table_init();
Aneesh Kumar K.Vb23d9c52016-06-17 11:40:36 +0530423 rts_field = radix__get_tree_size();
Paul Mackerras9d661952016-11-21 16:00:58 +1100424 dw0 = rts_field | __pa(init_mm.pgd) | RADIX_PGD_INDEX_SIZE | PATB_HR;
425 mmu_partition_table_set_entry(0, dw0, 0);
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000426
Aneesh Kumar K.V56547412016-07-13 15:05:25 +0530427 pr_info("Initializing Radix MMU\n");
428 pr_info("Partition table %p\n", partition_tb);
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000429}
430
431void __init radix_init_native(void)
432{
Michael Ellermaneea81482016-08-04 15:32:06 +1000433 register_process_table = native_register_process_table;
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000434}
435
436static int __init get_idx_from_shift(unsigned int shift)
437{
438 int idx = -1;
439
440 switch (shift) {
441 case 0xc:
442 idx = MMU_PAGE_4K;
443 break;
444 case 0x10:
445 idx = MMU_PAGE_64K;
446 break;
447 case 0x15:
448 idx = MMU_PAGE_2M;
449 break;
450 case 0x1e:
451 idx = MMU_PAGE_1G;
452 break;
453 }
454 return idx;
455}
456
457static int __init radix_dt_scan_page_sizes(unsigned long node,
458 const char *uname, int depth,
459 void *data)
460{
461 int size = 0;
462 int shift, idx;
463 unsigned int ap;
464 const __be32 *prop;
465 const char *type = of_get_flat_dt_prop(node, "device_type", NULL);
466
467 /* We are scanning "cpu" nodes only */
468 if (type == NULL || strcmp(type, "cpu") != 0)
469 return 0;
470
Benjamin Herrenschmidta25bd722017-07-24 14:26:06 +1000471 /* Find MMU PID size */
472 prop = of_get_flat_dt_prop(node, "ibm,mmu-pid-bits", &size);
473 if (prop && size == 4)
474 mmu_pid_bits = be32_to_cpup(prop);
475
476 /* Grab page size encodings */
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000477 prop = of_get_flat_dt_prop(node, "ibm,processor-radix-AP-encodings", &size);
478 if (!prop)
479 return 0;
480
481 pr_info("Page sizes from device-tree:\n");
482 for (; size >= 4; size -= 4, ++prop) {
483
484 struct mmu_psize_def *def;
485
486 /* top 3 bit is AP encoding */
487 shift = be32_to_cpu(prop[0]) & ~(0xe << 28);
488 ap = be32_to_cpu(prop[0]) >> 29;
Balbir Singhac8d3812016-11-05 15:24:22 +1100489 pr_info("Page size shift = %d AP=0x%x\n", shift, ap);
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000490
491 idx = get_idx_from_shift(shift);
492 if (idx < 0)
493 continue;
494
495 def = &mmu_psize_defs[idx];
496 def->shift = shift;
497 def->ap = ap;
498 }
499
500 /* needed ? */
501 cur_cpu_spec->mmu_features &= ~MMU_FTR_NO_SLBIE_B;
502 return 1;
503}
504
Michael Ellerman2537b092016-07-26 21:55:27 +1000505void __init radix__early_init_devtree(void)
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000506{
507 int rc;
508
509 /*
510 * Try to find the available page sizes in the device-tree
511 */
512 rc = of_scan_flat_dt(radix_dt_scan_page_sizes, NULL);
513 if (rc != 0) /* Found */
514 goto found;
515 /*
516 * let's assume we have page 4k and 64k support
517 */
518 mmu_psize_defs[MMU_PAGE_4K].shift = 12;
519 mmu_psize_defs[MMU_PAGE_4K].ap = 0x0;
520
521 mmu_psize_defs[MMU_PAGE_64K].shift = 16;
522 mmu_psize_defs[MMU_PAGE_64K].ap = 0x5;
523found:
524#ifdef CONFIG_SPARSEMEM_VMEMMAP
525 if (mmu_psize_defs[MMU_PAGE_2M].shift) {
526 /*
527 * map vmemmap using 2M if available
528 */
529 mmu_vmemmap_psize = MMU_PAGE_2M;
530 }
531#endif /* CONFIG_SPARSEMEM_VMEMMAP */
532 return;
533}
534
Balbir Singhee97b6b2016-11-15 17:56:14 +1100535static void radix_init_amor(void)
536{
537 /*
538 * In HV mode, we init AMOR (Authority Mask Override Register) so that
539 * the hypervisor and guest can setup IAMR (Instruction Authority Mask
540 * Register), enable key 0 and set it to 1.
541 *
542 * AMOR = 0b1100 .... 0000 (Mask for key 0 is 11)
543 */
544 mtspr(SPRN_AMOR, (3ul << 62));
545}
546
Balbir Singh3b10d002016-11-15 17:56:16 +1100547static void radix_init_iamr(void)
548{
Balbir Singh3b10d002016-11-15 17:56:16 +1100549 /*
550 * Radix always uses key0 of the IAMR to determine if an access is
551 * allowed. We set bit 0 (IBM bit 1) of key0, to prevent instruction
552 * fetch.
553 */
Nicholas Piggin2bf10712018-07-05 18:47:00 +1000554 mtspr(SPRN_IAMR, (1ul << 62));
Balbir Singh3b10d002016-11-15 17:56:16 +1100555}
556
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000557void __init radix__early_init_mmu(void)
558{
559 unsigned long lpcr;
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000560
561#ifdef CONFIG_PPC_64K_PAGES
562 /* PAGE_SIZE mappings */
563 mmu_virtual_psize = MMU_PAGE_64K;
564#else
565 mmu_virtual_psize = MMU_PAGE_4K;
566#endif
567
568#ifdef CONFIG_SPARSEMEM_VMEMMAP
569 /* vmemmap mapping */
570 mmu_vmemmap_psize = mmu_virtual_psize;
571#endif
572 /*
573 * initialize page table size
574 */
575 __pte_index_size = RADIX_PTE_INDEX_SIZE;
576 __pmd_index_size = RADIX_PMD_INDEX_SIZE;
577 __pud_index_size = RADIX_PUD_INDEX_SIZE;
578 __pgd_index_size = RADIX_PGD_INDEX_SIZE;
Aneesh Kumar K.Vfae22112018-02-11 20:30:06 +0530579 __pud_cache_index = RADIX_PUD_INDEX_SIZE;
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000580 __pte_table_size = RADIX_PTE_TABLE_SIZE;
581 __pmd_table_size = RADIX_PMD_TABLE_SIZE;
582 __pud_table_size = RADIX_PUD_TABLE_SIZE;
583 __pgd_table_size = RADIX_PGD_TABLE_SIZE;
584
Aneesh Kumar K.Va2f41eb2016-04-29 23:26:19 +1000585 __pmd_val_bits = RADIX_PMD_VAL_BITS;
586 __pud_val_bits = RADIX_PUD_VAL_BITS;
587 __pgd_val_bits = RADIX_PGD_VAL_BITS;
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000588
Aneesh Kumar K.Vd6a99962016-04-29 23:26:21 +1000589 __kernel_virt_start = RADIX_KERN_VIRT_START;
590 __kernel_virt_size = RADIX_KERN_VIRT_SIZE;
591 __vmalloc_start = RADIX_VMALLOC_START;
592 __vmalloc_end = RADIX_VMALLOC_END;
Michael Ellerman63ee9b22017-08-01 20:29:22 +1000593 __kernel_io_start = RADIX_KERN_IO_START;
Aneesh Kumar K.Vd6a99962016-04-29 23:26:21 +1000594 vmemmap = (struct page *)RADIX_VMEMMAP_BASE;
595 ioremap_bot = IOREMAP_BASE;
Darren Stevensbfa37082016-06-29 21:06:28 +0100596
597#ifdef CONFIG_PCI
598 pci_io_base = ISA_IO_BASE;
599#endif
Aneesh Kumar K.Vfb4e5db2018-03-22 14:13:50 +0530600 __pte_frag_nr = RADIX_PTE_FRAG_NR;
601 __pte_frag_size_shift = RADIX_PTE_FRAG_SIZE_SHIFT;
Aneesh Kumar K.V8a6c6972018-04-16 16:57:22 +0530602 __pmd_frag_nr = RADIX_PMD_FRAG_NR;
603 __pmd_frag_size_shift = RADIX_PMD_FRAG_SIZE_SHIFT;
Aneesh Kumar K.Vd6a99962016-04-29 23:26:21 +1000604
Aneesh Kumar K.Vd6c88602016-05-31 11:56:29 +0530605 if (!firmware_has_feature(FW_FEATURE_LPAR)) {
Benjamin Herrenschmidt166dd7d2016-07-05 15:03:51 +1000606 radix_init_native();
Aneesh Kumar K.Vd6c88602016-05-31 11:56:29 +0530607 lpcr = mfspr(SPRN_LPCR);
Aneesh Kumar K.Vbf16cdf2016-07-13 15:05:21 +0530608 mtspr(SPRN_LPCR, lpcr | LPCR_UPRT | LPCR_HR);
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000609 radix_init_partition_table();
Balbir Singhee97b6b2016-11-15 17:56:14 +1100610 radix_init_amor();
Paul Mackerrascc3d2942017-01-30 21:21:36 +1100611 } else {
612 radix_init_pseries();
Aneesh Kumar K.Vd6c88602016-05-31 11:56:29 +0530613 }
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000614
Paul Mackerras9d661952016-11-21 16:00:58 +1100615 memblock_set_current_limit(MEMBLOCK_ALLOC_ANYWHERE);
616
Balbir Singh3b10d002016-11-15 17:56:16 +1100617 radix_init_iamr();
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000618 radix_init_pgtable();
Nicholas Piggineeb715c2018-02-07 11:20:02 +1000619 /* Switch to the guard PID before turning on MMU */
620 radix__switch_mmu_context(NULL, &init_mm);
Nicholas Piggind4748272017-12-24 01:15:50 +1000621 if (cpu_has_feature(CPU_FTR_HVMODE))
622 tlbiel_all();
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000623}
624
625void radix__early_init_mmu_secondary(void)
626{
627 unsigned long lpcr;
628 /*
Aneesh Kumar K.Vd6c88602016-05-31 11:56:29 +0530629 * update partition table control register and UPRT
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000630 */
Aneesh Kumar K.Vd6c88602016-05-31 11:56:29 +0530631 if (!firmware_has_feature(FW_FEATURE_LPAR)) {
632 lpcr = mfspr(SPRN_LPCR);
Aneesh Kumar K.Vbf16cdf2016-07-13 15:05:21 +0530633 mtspr(SPRN_LPCR, lpcr | LPCR_UPRT | LPCR_HR);
Aneesh Kumar K.Vd6c88602016-05-31 11:56:29 +0530634
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000635 mtspr(SPRN_PTCR,
636 __pa(partition_tb) | (PATB_SIZE_SHIFT - 12));
Balbir Singhee97b6b2016-11-15 17:56:14 +1100637 radix_init_amor();
Aneesh Kumar K.Vd6c88602016-05-31 11:56:29 +0530638 }
Balbir Singh3b10d002016-11-15 17:56:16 +1100639 radix_init_iamr();
Nicholas Piggind4748272017-12-24 01:15:50 +1000640
Nicholas Piggineeb715c2018-02-07 11:20:02 +1000641 radix__switch_mmu_context(NULL, &init_mm);
Nicholas Piggind4748272017-12-24 01:15:50 +1000642 if (cpu_has_feature(CPU_FTR_HVMODE))
643 tlbiel_all();
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000644}
645
Benjamin Herrenschmidtfe036a02016-08-19 14:22:37 +0530646void radix__mmu_cleanup_all(void)
647{
648 unsigned long lpcr;
649
650 if (!firmware_has_feature(FW_FEATURE_LPAR)) {
651 lpcr = mfspr(SPRN_LPCR);
652 mtspr(SPRN_LPCR, lpcr & ~LPCR_UPRT);
653 mtspr(SPRN_PTCR, 0);
Alistair Popple1d0761d2016-12-14 13:36:51 +1100654 powernv_set_nmmu_ptcr(0);
Benjamin Herrenschmidtfe036a02016-08-19 14:22:37 +0530655 radix__flush_tlb_all();
656 }
657}
658
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000659void radix__setup_initial_memory_limit(phys_addr_t first_memblock_base,
660 phys_addr_t first_memblock_size)
661{
Aneesh Kumar K.V177ba7c2016-04-29 23:26:10 +1000662 /* We don't currently support the first MEMBLOCK not mapping 0
663 * physical on those processors
664 */
665 BUG_ON(first_memblock_base != 0);
Nicholas Piggin1513c332017-12-22 21:17:08 +1000666
Nicholas Piggin5eae82c2017-12-22 21:17:11 +1000667 /*
668 * Radix mode is not limited by RMA / VRMA addressing.
669 */
670 ppc64_rma_size = ULONG_MAX;
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000671}
Aneesh Kumar K.Vd9225ad2016-04-29 23:26:00 +1000672
Reza Arbab6cc27342017-01-16 13:07:44 -0600673#ifdef CONFIG_MEMORY_HOTPLUG
Reza Arbab4b5d62c2017-01-16 13:07:45 -0600674static void free_pte_table(pte_t *pte_start, pmd_t *pmd)
675{
676 pte_t *pte;
677 int i;
678
679 for (i = 0; i < PTRS_PER_PTE; i++) {
680 pte = pte_start + i;
681 if (!pte_none(*pte))
682 return;
683 }
684
685 pte_free_kernel(&init_mm, pte_start);
686 pmd_clear(pmd);
687}
688
689static void free_pmd_table(pmd_t *pmd_start, pud_t *pud)
690{
691 pmd_t *pmd;
692 int i;
693
694 for (i = 0; i < PTRS_PER_PMD; i++) {
695 pmd = pmd_start + i;
696 if (!pmd_none(*pmd))
697 return;
698 }
699
700 pmd_free(&init_mm, pmd_start);
701 pud_clear(pud);
702}
703
Balbir Singh4dd5f8a92018-02-07 17:35:51 +1100704struct change_mapping_params {
705 pte_t *pte;
706 unsigned long start;
707 unsigned long end;
708 unsigned long aligned_start;
709 unsigned long aligned_end;
710};
711
Mauricio Faria de Oliveirabde709a2018-03-09 17:45:58 -0300712static int __meminit stop_machine_change_mapping(void *data)
Balbir Singh4dd5f8a92018-02-07 17:35:51 +1100713{
714 struct change_mapping_params *params =
715 (struct change_mapping_params *)data;
716
717 if (!data)
718 return -1;
719
720 spin_unlock(&init_mm.page_table_lock);
721 pte_clear(&init_mm, params->aligned_start, params->pte);
Michael Ellermanf437c512018-03-31 00:11:24 +1100722 create_physical_mapping(params->aligned_start, params->start, -1);
723 create_physical_mapping(params->end, params->aligned_end, -1);
Balbir Singh4dd5f8a92018-02-07 17:35:51 +1100724 spin_lock(&init_mm.page_table_lock);
725 return 0;
726}
727
Reza Arbab4b5d62c2017-01-16 13:07:45 -0600728static void remove_pte_table(pte_t *pte_start, unsigned long addr,
729 unsigned long end)
730{
731 unsigned long next;
732 pte_t *pte;
733
734 pte = pte_start + pte_index(addr);
735 for (; addr < end; addr = next, pte++) {
736 next = (addr + PAGE_SIZE) & PAGE_MASK;
737 if (next > end)
738 next = end;
739
740 if (!pte_present(*pte))
741 continue;
742
Reza Arbab0d0a4bc2017-01-16 13:07:46 -0600743 if (!PAGE_ALIGNED(addr) || !PAGE_ALIGNED(next)) {
744 /*
745 * The vmemmap_free() and remove_section_mapping()
746 * codepaths call us with aligned addresses.
747 */
748 WARN_ONCE(1, "%s: unaligned range\n", __func__);
749 continue;
750 }
751
Reza Arbab4b5d62c2017-01-16 13:07:45 -0600752 pte_clear(&init_mm, addr, pte);
753 }
754}
755
Balbir Singh4dd5f8a92018-02-07 17:35:51 +1100756/*
757 * clear the pte and potentially split the mapping helper
758 */
Mauricio Faria de Oliveirabde709a2018-03-09 17:45:58 -0300759static void __meminit split_kernel_mapping(unsigned long addr, unsigned long end,
Balbir Singh4dd5f8a92018-02-07 17:35:51 +1100760 unsigned long size, pte_t *pte)
761{
762 unsigned long mask = ~(size - 1);
763 unsigned long aligned_start = addr & mask;
764 unsigned long aligned_end = addr + size;
765 struct change_mapping_params params;
766 bool split_region = false;
767
768 if ((end - addr) < size) {
769 /*
770 * We're going to clear the PTE, but not flushed
771 * the mapping, time to remap and flush. The
772 * effects if visible outside the processor or
773 * if we are running in code close to the
774 * mapping we cleared, we are in trouble.
775 */
776 if (overlaps_kernel_text(aligned_start, addr) ||
777 overlaps_kernel_text(end, aligned_end)) {
778 /*
779 * Hack, just return, don't pte_clear
780 */
781 WARN_ONCE(1, "Linear mapping %lx->%lx overlaps kernel "
782 "text, not splitting\n", addr, end);
783 return;
784 }
785 split_region = true;
786 }
787
788 if (split_region) {
789 params.pte = pte;
790 params.start = addr;
791 params.end = end;
792 params.aligned_start = addr & ~(size - 1);
793 params.aligned_end = min_t(unsigned long, aligned_end,
794 (unsigned long)__va(memblock_end_of_DRAM()));
795 stop_machine(stop_machine_change_mapping, &params, NULL);
796 return;
797 }
798
799 pte_clear(&init_mm, addr, pte);
800}
801
Reza Arbab4b5d62c2017-01-16 13:07:45 -0600802static void remove_pmd_table(pmd_t *pmd_start, unsigned long addr,
803 unsigned long end)
804{
805 unsigned long next;
806 pte_t *pte_base;
807 pmd_t *pmd;
808
809 pmd = pmd_start + pmd_index(addr);
810 for (; addr < end; addr = next, pmd++) {
811 next = pmd_addr_end(addr, end);
812
813 if (!pmd_present(*pmd))
814 continue;
815
816 if (pmd_huge(*pmd)) {
Balbir Singh4dd5f8a92018-02-07 17:35:51 +1100817 split_kernel_mapping(addr, end, PMD_SIZE, (pte_t *)pmd);
Reza Arbab4b5d62c2017-01-16 13:07:45 -0600818 continue;
819 }
820
821 pte_base = (pte_t *)pmd_page_vaddr(*pmd);
822 remove_pte_table(pte_base, addr, next);
823 free_pte_table(pte_base, pmd);
824 }
825}
826
827static void remove_pud_table(pud_t *pud_start, unsigned long addr,
828 unsigned long end)
829{
830 unsigned long next;
831 pmd_t *pmd_base;
832 pud_t *pud;
833
834 pud = pud_start + pud_index(addr);
835 for (; addr < end; addr = next, pud++) {
836 next = pud_addr_end(addr, end);
837
838 if (!pud_present(*pud))
839 continue;
840
841 if (pud_huge(*pud)) {
Balbir Singh4dd5f8a92018-02-07 17:35:51 +1100842 split_kernel_mapping(addr, end, PUD_SIZE, (pte_t *)pud);
Reza Arbab4b5d62c2017-01-16 13:07:45 -0600843 continue;
844 }
845
846 pmd_base = (pmd_t *)pud_page_vaddr(*pud);
847 remove_pmd_table(pmd_base, addr, next);
848 free_pmd_table(pmd_base, pud);
849 }
850}
851
Mauricio Faria de Oliveirabde709a2018-03-09 17:45:58 -0300852static void __meminit remove_pagetable(unsigned long start, unsigned long end)
Reza Arbab4b5d62c2017-01-16 13:07:45 -0600853{
854 unsigned long addr, next;
855 pud_t *pud_base;
856 pgd_t *pgd;
857
858 spin_lock(&init_mm.page_table_lock);
859
860 for (addr = start; addr < end; addr = next) {
861 next = pgd_addr_end(addr, end);
862
863 pgd = pgd_offset_k(addr);
864 if (!pgd_present(*pgd))
865 continue;
866
867 if (pgd_huge(*pgd)) {
Balbir Singh4dd5f8a92018-02-07 17:35:51 +1100868 split_kernel_mapping(addr, end, PGDIR_SIZE, (pte_t *)pgd);
Reza Arbab4b5d62c2017-01-16 13:07:45 -0600869 continue;
870 }
871
872 pud_base = (pud_t *)pgd_page_vaddr(*pgd);
873 remove_pud_table(pud_base, addr, next);
874 }
875
876 spin_unlock(&init_mm.page_table_lock);
877 radix__flush_tlb_kernel_range(start, end);
878}
879
Michael Ellermanf437c512018-03-31 00:11:24 +1100880int __meminit radix__create_section_mapping(unsigned long start, unsigned long end, int nid)
Reza Arbab6cc27342017-01-16 13:07:44 -0600881{
Nicholas Piggin29ab6c42018-02-14 01:08:22 +1000882 return create_physical_mapping(start, end, nid);
Reza Arbab6cc27342017-01-16 13:07:44 -0600883}
Reza Arbab4b5d62c2017-01-16 13:07:45 -0600884
Mauricio Faria de Oliveirabde709a2018-03-09 17:45:58 -0300885int __meminit radix__remove_section_mapping(unsigned long start, unsigned long end)
Reza Arbab4b5d62c2017-01-16 13:07:45 -0600886{
887 remove_pagetable(start, end);
888 return 0;
889}
Reza Arbab6cc27342017-01-16 13:07:44 -0600890#endif /* CONFIG_MEMORY_HOTPLUG */
891
Aneesh Kumar K.Vd9225ad2016-04-29 23:26:00 +1000892#ifdef CONFIG_SPARSEMEM_VMEMMAP
Nicholas Piggin29ab6c42018-02-14 01:08:22 +1000893static int __map_kernel_page_nid(unsigned long ea, unsigned long pa,
894 pgprot_t flags, unsigned int map_page_size,
895 int nid)
896{
897 return __map_kernel_page(ea, pa, flags, map_page_size, nid, 0, 0);
898}
899
Aneesh Kumar K.Vd9225ad2016-04-29 23:26:00 +1000900int __meminit radix__vmemmap_create_mapping(unsigned long start,
901 unsigned long page_size,
902 unsigned long phys)
903{
904 /* Create a PTE encoding */
905 unsigned long flags = _PAGE_PRESENT | _PAGE_ACCESSED | _PAGE_KERNEL_RW;
Nicholas Piggin2ad452f2018-02-14 01:08:24 +1000906 int nid = early_pfn_to_nid(phys >> PAGE_SHIFT);
907 int ret;
Aneesh Kumar K.Vd9225ad2016-04-29 23:26:00 +1000908
Nicholas Piggin2ad452f2018-02-14 01:08:24 +1000909 ret = __map_kernel_page_nid(start, phys, __pgprot(flags), page_size, nid);
910 BUG_ON(ret);
911
Aneesh Kumar K.Vd9225ad2016-04-29 23:26:00 +1000912 return 0;
913}
914
915#ifdef CONFIG_MEMORY_HOTPLUG
Mauricio Faria de Oliveirabde709a2018-03-09 17:45:58 -0300916void __meminit radix__vmemmap_remove_mapping(unsigned long start, unsigned long page_size)
Aneesh Kumar K.Vd9225ad2016-04-29 23:26:00 +1000917{
Reza Arbab0d0a4bc2017-01-16 13:07:46 -0600918 remove_pagetable(start, start + page_size);
Aneesh Kumar K.Vd9225ad2016-04-29 23:26:00 +1000919}
920#endif
921#endif
Aneesh Kumar K.Vbde3eb62016-04-29 23:26:30 +1000922
923#ifdef CONFIG_TRANSPARENT_HUGEPAGE
924
925unsigned long radix__pmd_hugepage_update(struct mm_struct *mm, unsigned long addr,
926 pmd_t *pmdp, unsigned long clr,
927 unsigned long set)
928{
929 unsigned long old;
930
931#ifdef CONFIG_DEBUG_VM
Oliver O'Halloranebd31192017-06-28 11:32:34 +1000932 WARN_ON(!radix__pmd_trans_huge(*pmdp) && !pmd_devmap(*pmdp));
Aneesh Kumar K.Vaf60a4c2018-04-16 16:57:16 +0530933 assert_spin_locked(pmd_lockptr(mm, pmdp));
Aneesh Kumar K.Vbde3eb62016-04-29 23:26:30 +1000934#endif
935
936 old = radix__pte_update(mm, addr, (pte_t *)pmdp, clr, set, 1);
937 trace_hugepage_update(addr, old, clr, set);
938
939 return old;
940}
941
942pmd_t radix__pmdp_collapse_flush(struct vm_area_struct *vma, unsigned long address,
943 pmd_t *pmdp)
944
945{
946 pmd_t pmd;
947
948 VM_BUG_ON(address & ~HPAGE_PMD_MASK);
949 VM_BUG_ON(radix__pmd_trans_huge(*pmdp));
Oliver O'Halloranebd31192017-06-28 11:32:34 +1000950 VM_BUG_ON(pmd_devmap(*pmdp));
Aneesh Kumar K.Vbde3eb62016-04-29 23:26:30 +1000951 /*
952 * khugepaged calls this for normal pmd
953 */
954 pmd = *pmdp;
955 pmd_clear(pmdp);
Benjamin Herrenschmidt424de9c2017-07-19 14:49:06 +1000956
Aneesh Kumar K.Vbde3eb62016-04-29 23:26:30 +1000957 /*FIXME!! Verify whether we need this kick below */
Aneesh Kumar K.Vfa4531f2017-07-27 11:54:54 +0530958 serialize_against_pte_lookup(vma->vm_mm);
Benjamin Herrenschmidt424de9c2017-07-19 14:49:06 +1000959
960 radix__flush_tlb_collapsed_pmd(vma->vm_mm, address);
961
Aneesh Kumar K.Vbde3eb62016-04-29 23:26:30 +1000962 return pmd;
963}
964
965/*
966 * For us pgtable_t is pte_t *. Inorder to save the deposisted
967 * page table, we consider the allocated page table as a list
968 * head. On withdraw we need to make sure we zero out the used
969 * list_head memory area.
970 */
971void radix__pgtable_trans_huge_deposit(struct mm_struct *mm, pmd_t *pmdp,
972 pgtable_t pgtable)
973{
974 struct list_head *lh = (struct list_head *) pgtable;
975
976 assert_spin_locked(pmd_lockptr(mm, pmdp));
977
978 /* FIFO */
979 if (!pmd_huge_pte(mm, pmdp))
980 INIT_LIST_HEAD(lh);
981 else
982 list_add(lh, (struct list_head *) pmd_huge_pte(mm, pmdp));
983 pmd_huge_pte(mm, pmdp) = pgtable;
984}
985
986pgtable_t radix__pgtable_trans_huge_withdraw(struct mm_struct *mm, pmd_t *pmdp)
987{
988 pte_t *ptep;
989 pgtable_t pgtable;
990 struct list_head *lh;
991
992 assert_spin_locked(pmd_lockptr(mm, pmdp));
993
994 /* FIFO */
995 pgtable = pmd_huge_pte(mm, pmdp);
996 lh = (struct list_head *) pgtable;
997 if (list_empty(lh))
998 pmd_huge_pte(mm, pmdp) = NULL;
999 else {
1000 pmd_huge_pte(mm, pmdp) = (pgtable_t) lh->next;
1001 list_del(lh);
1002 }
1003 ptep = (pte_t *) pgtable;
1004 *ptep = __pte(0);
1005 ptep++;
1006 *ptep = __pte(0);
1007 return pgtable;
1008}
1009
1010
1011pmd_t radix__pmdp_huge_get_and_clear(struct mm_struct *mm,
1012 unsigned long addr, pmd_t *pmdp)
1013{
1014 pmd_t old_pmd;
1015 unsigned long old;
1016
1017 old = radix__pmd_hugepage_update(mm, addr, pmdp, ~0UL, 0);
1018 old_pmd = __pmd(old);
1019 /*
Aneesh Kumar K.Vfa4531f2017-07-27 11:54:54 +05301020 * Serialize against find_current_mm_pte which does lock-less
Aneesh Kumar K.Vbde3eb62016-04-29 23:26:30 +10001021 * lookup in page tables with local interrupts disabled. For huge pages
1022 * it casts pmd_t to pte_t. Since format of pte_t is different from
1023 * pmd_t we want to prevent transit from pmd pointing to page table
1024 * to pmd pointing to huge page (and back) while interrupts are disabled.
1025 * We clear pmd to possibly replace it with page table pointer in
1026 * different code paths. So make sure we wait for the parallel
Aneesh Kumar K.Vfa4531f2017-07-27 11:54:54 +05301027 * find_current_mm_pte to finish.
Aneesh Kumar K.Vbde3eb62016-04-29 23:26:30 +10001028 */
Aneesh Kumar K.Vfa4531f2017-07-27 11:54:54 +05301029 serialize_against_pte_lookup(mm);
Aneesh Kumar K.Vbde3eb62016-04-29 23:26:30 +10001030 return old_pmd;
1031}
1032
1033int radix__has_transparent_hugepage(void)
1034{
1035 /* For radix 2M at PMD level means thp */
1036 if (mmu_psize_defs[MMU_PAGE_2M].shift == PMD_SHIFT)
1037 return 1;
1038 return 0;
1039}
1040#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
Aneesh Kumar K.V044003b2018-05-29 19:58:39 +05301041
Aneesh Kumar K.Ve4c11122018-05-29 19:58:40 +05301042void radix__ptep_set_access_flags(struct vm_area_struct *vma, pte_t *ptep,
1043 pte_t entry, unsigned long address, int psize)
Aneesh Kumar K.V044003b2018-05-29 19:58:39 +05301044{
Aneesh Kumar K.Ve4c11122018-05-29 19:58:40 +05301045 struct mm_struct *mm = vma->vm_mm;
Aneesh Kumar K.V044003b2018-05-29 19:58:39 +05301046 unsigned long set = pte_val(entry) & (_PAGE_DIRTY | _PAGE_ACCESSED |
1047 _PAGE_RW | _PAGE_EXEC);
Aneesh Kumar K.Vf08d08f2018-08-22 22:46:05 +05301048
1049 unsigned long change = pte_val(entry) ^ pte_val(*ptep);
Aneesh Kumar K.Vbd5050e2018-05-29 19:58:41 +05301050 /*
1051 * To avoid NMMU hang while relaxing access, we need mark
1052 * the pte invalid in between.
1053 */
Aneesh Kumar K.Vf08d08f2018-08-22 22:46:05 +05301054 if ((change & _PAGE_RW) && atomic_read(&mm->context.copros) > 0) {
Aneesh Kumar K.V044003b2018-05-29 19:58:39 +05301055 unsigned long old_pte, new_pte;
1056
Aneesh Kumar K.Vf08d08f2018-08-22 22:46:05 +05301057 old_pte = __radix_pte_update(ptep, _PAGE_PRESENT, _PAGE_INVALID);
Aneesh Kumar K.V044003b2018-05-29 19:58:39 +05301058 /*
1059 * new value of pte
1060 */
1061 new_pte = old_pte | set;
Aneesh Kumar K.Vbd5050e2018-05-29 19:58:41 +05301062 radix__flush_tlb_page_psize(mm, address, psize);
Aneesh Kumar K.Vf08d08f2018-08-22 22:46:05 +05301063 __radix_pte_update(ptep, _PAGE_INVALID, new_pte);
Aneesh Kumar K.Vbd5050e2018-05-29 19:58:41 +05301064 } else {
Aneesh Kumar K.V044003b2018-05-29 19:58:39 +05301065 __radix_pte_update(ptep, 0, set);
Nicholas Piggine5f7cb52018-06-01 20:01:15 +10001066 /*
1067 * Book3S does not require a TLB flush when relaxing access
1068 * restrictions when the address space is not attached to a
1069 * NMMU, because the core MMU will reload the pte after taking
1070 * an access fault, which is defined by the architectue.
1071 */
Aneesh Kumar K.Vbd5050e2018-05-29 19:58:41 +05301072 }
Nicholas Pigginf1cb8f92018-06-01 20:01:19 +10001073 /* See ptesync comment in radix__set_pte_at */
Aneesh Kumar K.V044003b2018-05-29 19:58:39 +05301074}