blob: def04631a74d525322170fb36e06dc10d2b4b09e [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +10002/*
3 * Page table handling routines for radix page table.
4 *
5 * Copyright 2015-2016, Aneesh Kumar K.V, IBM Corporation.
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +10006 */
Michael Ellermanbd350f72017-08-30 17:41:29 +10007
8#define pr_fmt(fmt) "radix-mmu: " fmt
9
Nicholas Piggind38153f2019-06-10 13:08:17 +100010#include <linux/io.h>
Michael Ellermanbd350f72017-08-30 17:41:29 +100011#include <linux/kernel.h>
Ingo Molnar589ee622017-02-04 00:16:44 +010012#include <linux/sched/mm.h>
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +100013#include <linux/memblock.h>
Marc Zyngier13a9a5d2018-09-13 17:09:06 +010014#include <linux/of.h>
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +100015#include <linux/of_fdt.h>
Balbir Singh7614ff32017-06-29 03:04:09 +100016#include <linux/mm.h>
Mike Kravetz997cdcb2019-11-30 17:56:37 -080017#include <linux/hugetlb.h>
Michael Ellerman6deb6b42017-08-30 17:41:17 +100018#include <linux/string_helpers.h>
Aneesh Kumar K.Vaf9d00e2020-07-09 18:49:25 +053019#include <linux/memory.h>
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +100020
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +100021#include <asm/pgalloc.h>
Nicholas Piggineeb715c2018-02-07 11:20:02 +100022#include <asm/mmu_context.h>
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +100023#include <asm/dma.h>
24#include <asm/machdep.h>
25#include <asm/mmu.h>
26#include <asm/firmware.h>
Alistair Popple1d0761d2016-12-14 13:36:51 +110027#include <asm/powernv.h>
Michael Ellerman9abcc982017-06-06 15:48:57 +100028#include <asm/sections.h>
Nicholas Piggin993cfec2020-03-02 11:04:10 +100029#include <asm/smp.h>
Balbir Singh04284912017-04-11 15:23:25 +100030#include <asm/trace.h>
Michael Ellerman890274c2019-04-18 16:51:24 +100031#include <asm/uaccess.h>
Claudio Carvalho52231342019-08-22 00:48:36 -030032#include <asm/ultravisor.h>
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +100033
Aneesh Kumar K.Vbde3eb62016-04-29 23:26:30 +100034#include <trace/events/thp.h>
35
Benjamin Herrenschmidta25bd722017-07-24 14:26:06 +100036unsigned int mmu_base_pid;
Aneesh Kumar K.V950805f2020-10-07 17:18:35 +053037unsigned long radix_mem_block_size __ro_after_init;
Benjamin Herrenschmidta25bd722017-07-24 14:26:06 +100038
Nicholas Piggin2ad452f2018-02-14 01:08:24 +100039static __ref void *early_alloc_pgtable(unsigned long size, int nid,
40 unsigned long region_start, unsigned long region_end)
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +100041{
Mike Rapoportf8067142019-03-07 16:30:48 -080042 phys_addr_t min_addr = MEMBLOCK_LOW_LIMIT;
43 phys_addr_t max_addr = MEMBLOCK_ALLOC_ANYWHERE;
Mike Rapoport8a7f97b2019-03-11 23:30:31 -070044 void *ptr;
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +100045
Mike Rapoportf8067142019-03-07 16:30:48 -080046 if (region_start)
47 min_addr = region_start;
48 if (region_end)
49 max_addr = region_end;
Nicholas Piggin2ad452f2018-02-14 01:08:24 +100050
Mike Rapoport8a7f97b2019-03-11 23:30:31 -070051 ptr = memblock_alloc_try_nid(size, size, min_addr, max_addr, nid);
52
53 if (!ptr)
54 panic("%s: Failed to allocate %lu bytes align=0x%lx nid=%d from=%pa max_addr=%pa\n",
55 __func__, size, size, nid, &min_addr, &max_addr);
56
57 return ptr;
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +100058}
59
Aneesh Kumar K.V645d5ce2020-07-09 18:49:22 +053060/*
61 * When allocating pud or pmd pointers, we allocate a complete page
62 * of PAGE_SIZE rather than PUD_TABLE_SIZE or PMD_TABLE_SIZE. This
63 * is to ensure that the page obtained from the memblock allocator
64 * can be completely used as page table page and can be freed
65 * correctly when the page table entries are removed.
66 */
Nicholas Piggin0633daf2018-02-14 01:08:23 +100067static int early_map_kernel_page(unsigned long ea, unsigned long pa,
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +100068 pgprot_t flags,
Nicholas Piggin2ad452f2018-02-14 01:08:24 +100069 unsigned int map_page_size,
70 int nid,
71 unsigned long region_start, unsigned long region_end)
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +100072{
Nicholas Piggin2ad452f2018-02-14 01:08:24 +100073 unsigned long pfn = pa >> PAGE_SHIFT;
Nicholas Piggin0633daf2018-02-14 01:08:23 +100074 pgd_t *pgdp;
Mike Rapoport2fb47062020-06-04 16:46:44 -070075 p4d_t *p4dp;
Nicholas Piggin0633daf2018-02-14 01:08:23 +100076 pud_t *pudp;
77 pmd_t *pmdp;
78 pte_t *ptep;
79
80 pgdp = pgd_offset_k(ea);
Mike Rapoport2fb47062020-06-04 16:46:44 -070081 p4dp = p4d_offset(pgdp, ea);
82 if (p4d_none(*p4dp)) {
Aneesh Kumar K.V645d5ce2020-07-09 18:49:22 +053083 pudp = early_alloc_pgtable(PAGE_SIZE, nid,
84 region_start, region_end);
Mike Rapoport2fb47062020-06-04 16:46:44 -070085 p4d_populate(&init_mm, p4dp, pudp);
Nicholas Piggin0633daf2018-02-14 01:08:23 +100086 }
Mike Rapoport2fb47062020-06-04 16:46:44 -070087 pudp = pud_offset(p4dp, ea);
Nicholas Piggin0633daf2018-02-14 01:08:23 +100088 if (map_page_size == PUD_SIZE) {
89 ptep = (pte_t *)pudp;
90 goto set_the_pte;
91 }
92 if (pud_none(*pudp)) {
Aneesh Kumar K.V645d5ce2020-07-09 18:49:22 +053093 pmdp = early_alloc_pgtable(PAGE_SIZE, nid, region_start,
94 region_end);
Nicholas Piggin0633daf2018-02-14 01:08:23 +100095 pud_populate(&init_mm, pudp, pmdp);
96 }
97 pmdp = pmd_offset(pudp, ea);
98 if (map_page_size == PMD_SIZE) {
99 ptep = pmdp_ptep(pmdp);
100 goto set_the_pte;
101 }
102 if (!pmd_present(*pmdp)) {
Nicholas Piggin2ad452f2018-02-14 01:08:24 +1000103 ptep = early_alloc_pgtable(PAGE_SIZE, nid,
104 region_start, region_end);
Nicholas Piggin0633daf2018-02-14 01:08:23 +1000105 pmd_populate_kernel(&init_mm, pmdp, ptep);
106 }
107 ptep = pte_offset_kernel(pmdp, ea);
108
109set_the_pte:
Nicholas Piggin2ad452f2018-02-14 01:08:24 +1000110 set_pte_at(&init_mm, ea, ptep, pfn_pte(pfn, flags));
Jordan Nietheb8b2f372021-02-08 14:29:56 +1100111 asm volatile("ptesync": : :"memory");
Nicholas Piggin0633daf2018-02-14 01:08:23 +1000112 return 0;
113}
114
Nicholas Piggin2ad452f2018-02-14 01:08:24 +1000115/*
116 * nid, region_start, and region_end are hints to try to place the page
117 * table memory in the same node or region.
118 */
119static int __map_kernel_page(unsigned long ea, unsigned long pa,
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000120 pgprot_t flags,
Nicholas Piggin2ad452f2018-02-14 01:08:24 +1000121 unsigned int map_page_size,
122 int nid,
123 unsigned long region_start, unsigned long region_end)
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000124{
Nicholas Piggin2ad452f2018-02-14 01:08:24 +1000125 unsigned long pfn = pa >> PAGE_SHIFT;
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000126 pgd_t *pgdp;
Mike Rapoport2fb47062020-06-04 16:46:44 -0700127 p4d_t *p4dp;
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000128 pud_t *pudp;
129 pmd_t *pmdp;
130 pte_t *ptep;
131 /*
132 * Make sure task size is correct as per the max adddr
133 */
134 BUILD_BUG_ON(TASK_SIZE_USER64 > RADIX_PGTABLE_RANGE);
Nicholas Piggin0633daf2018-02-14 01:08:23 +1000135
Aneesh Kumar K.V0034d392019-04-17 18:29:14 +0530136#ifdef CONFIG_PPC_64K_PAGES
137 BUILD_BUG_ON(RADIX_KERN_MAP_SIZE != (1UL << MAX_EA_BITS_PER_CONTEXT));
138#endif
139
Nicholas Piggin2ad452f2018-02-14 01:08:24 +1000140 if (unlikely(!slab_is_available()))
141 return early_map_kernel_page(ea, pa, flags, map_page_size,
142 nid, region_start, region_end);
Nicholas Piggin0633daf2018-02-14 01:08:23 +1000143
Nicholas Piggin2ad452f2018-02-14 01:08:24 +1000144 /*
145 * Should make page table allocation functions be able to take a
146 * node, so we can place kernel page tables on the right nodes after
147 * boot.
148 */
Nicholas Piggin0633daf2018-02-14 01:08:23 +1000149 pgdp = pgd_offset_k(ea);
Mike Rapoport2fb47062020-06-04 16:46:44 -0700150 p4dp = p4d_offset(pgdp, ea);
151 pudp = pud_alloc(&init_mm, p4dp, ea);
Nicholas Piggin0633daf2018-02-14 01:08:23 +1000152 if (!pudp)
153 return -ENOMEM;
154 if (map_page_size == PUD_SIZE) {
155 ptep = (pte_t *)pudp;
156 goto set_the_pte;
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000157 }
Nicholas Piggin0633daf2018-02-14 01:08:23 +1000158 pmdp = pmd_alloc(&init_mm, pudp, ea);
159 if (!pmdp)
160 return -ENOMEM;
161 if (map_page_size == PMD_SIZE) {
162 ptep = pmdp_ptep(pmdp);
163 goto set_the_pte;
164 }
165 ptep = pte_alloc_kernel(pmdp, ea);
166 if (!ptep)
167 return -ENOMEM;
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000168
169set_the_pte:
Nicholas Piggin2ad452f2018-02-14 01:08:24 +1000170 set_pte_at(&init_mm, ea, ptep, pfn_pte(pfn, flags));
Jordan Nietheb8b2f372021-02-08 14:29:56 +1100171 asm volatile("ptesync": : :"memory");
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000172 return 0;
173}
174
Nicholas Piggin2ad452f2018-02-14 01:08:24 +1000175int radix__map_kernel_page(unsigned long ea, unsigned long pa,
176 pgprot_t flags,
177 unsigned int map_page_size)
178{
179 return __map_kernel_page(ea, pa, flags, map_page_size, -1, 0, 0);
180}
181
Balbir Singh7614ff32017-06-29 03:04:09 +1000182#ifdef CONFIG_STRICT_KERNEL_RWX
Michael Ellerman7098f8f2021-04-13 23:54:27 +1000183static void radix__change_memory_range(unsigned long start, unsigned long end,
184 unsigned long clear)
Balbir Singh7614ff32017-06-29 03:04:09 +1000185{
Balbir Singh7614ff32017-06-29 03:04:09 +1000186 unsigned long idx;
187 pgd_t *pgdp;
Mike Rapoport2fb47062020-06-04 16:46:44 -0700188 p4d_t *p4dp;
Balbir Singh7614ff32017-06-29 03:04:09 +1000189 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);
Mike Rapoport2fb47062020-06-04 16:46:44 -0700201 p4dp = p4d_offset(pgdp, idx);
202 pudp = pud_alloc(&init_mm, p4dp, idx);
Balbir Singh7614ff32017-06-29 03:04:09 +1000203 if (!pudp)
204 continue;
Aneesh Kumar K.Vd6eaced2019-05-14 11:33:00 +0530205 if (pud_is_leaf(*pudp)) {
Balbir Singh7614ff32017-06-29 03:04:09 +1000206 ptep = (pte_t *)pudp;
207 goto update_the_pte;
208 }
209 pmdp = pmd_alloc(&init_mm, pudp, idx);
210 if (!pmdp)
211 continue;
Aneesh Kumar K.Vd6eaced2019-05-14 11:33:00 +0530212 if (pmd_is_leaf(*pmdp)) {
Balbir Singh7614ff32017-06-29 03:04:09 +1000213 ptep = pmdp_ptep(pmdp);
214 goto update_the_pte;
215 }
216 ptep = pte_alloc_kernel(pmdp, idx);
217 if (!ptep)
218 continue;
219update_the_pte:
Michael Ellermanb134bd92017-07-14 16:51:21 +1000220 radix__pte_update(&init_mm, idx, ptep, clear, 0, 0);
Balbir Singh7614ff32017-06-29 03:04:09 +1000221 }
222
223 radix__flush_tlb_kernel_range(start, end);
224}
Michael Ellermanb134bd92017-07-14 16:51:21 +1000225
226void radix__mark_rodata_ro(void)
227{
228 unsigned long start, end;
229
230 start = (unsigned long)_stext;
231 end = (unsigned long)__init_begin;
232
233 radix__change_memory_range(start, end, _PAGE_WRITE);
234}
Michael Ellerman029d9252017-07-14 16:51:23 +1000235
236void radix__mark_initmem_nx(void)
237{
238 unsigned long start = (unsigned long)__init_begin;
239 unsigned long end = (unsigned long)__init_end;
240
241 radix__change_memory_range(start, end, _PAGE_EXEC);
242}
Balbir Singh7614ff32017-06-29 03:04:09 +1000243#endif /* CONFIG_STRICT_KERNEL_RWX */
244
Michael Ellermanafb6d062018-10-17 23:53:38 +1100245static inline void __meminit
246print_mapping(unsigned long start, unsigned long end, unsigned long size, bool exec)
Reza Arbabb5200ec2017-01-16 13:07:43 -0600247{
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
Michael Ellermanafb6d062018-10-17 23:53:38 +1100255 pr_info("Mapped 0x%016lx-0x%016lx with %s pages%s\n", start, end, buf,
256 exec ? " (exec)" : "");
Reza Arbabb5200ec2017-01-16 13:07:43 -0600257}
258
Michael Ellerman232aa402018-08-14 22:37:32 +1000259static unsigned long next_boundary(unsigned long addr, unsigned long end)
260{
261#ifdef CONFIG_STRICT_KERNEL_RWX
262 if (addr < __pa_symbol(__init_begin))
263 return __pa_symbol(__init_begin);
264#endif
265 return end;
266}
267
Reza Arbabb5200ec2017-01-16 13:07:43 -0600268static int __meminit create_physical_mapping(unsigned long start,
Nicholas Piggin2ad452f2018-02-14 01:08:24 +1000269 unsigned long end,
Aneesh Kumar K.Vaf9d00e2020-07-09 18:49:25 +0530270 unsigned long max_mapping_size,
Logan Gunthorpe4e00c5a2020-04-10 14:33:32 -0700271 int nid, pgprot_t _prot)
Reza Arbabb5200ec2017-01-16 13:07:43 -0600272{
Michael Ellerman9abcc982017-06-06 15:48:57 +1000273 unsigned long vaddr, addr, mapping_size = 0;
Michael Ellermanafb6d062018-10-17 23:53:38 +1100274 bool prev_exec, exec = false;
Michael Ellerman9abcc982017-06-06 15:48:57 +1000275 pgprot_t prot;
Aneesh Kumar K.Va2dc0092018-08-13 11:14:57 +0530276 int psize;
Reza Arbabb5200ec2017-01-16 13:07:43 -0600277
Christophe Leroyb7115312020-04-20 18:36:36 +0000278 start = ALIGN(start, PAGE_SIZE);
Aneesh Kumar K.V79b123cd2020-09-07 12:55:39 +0530279 end = ALIGN_DOWN(end, PAGE_SIZE);
Reza Arbabb5200ec2017-01-16 13:07:43 -0600280 for (addr = start; addr < end; addr += mapping_size) {
281 unsigned long gap, previous_size;
282 int rc;
283
Michael Ellerman232aa402018-08-14 22:37:32 +1000284 gap = next_boundary(addr, end) - addr;
Aneesh Kumar K.Vaf9d00e2020-07-09 18:49:25 +0530285 if (gap > max_mapping_size)
286 gap = max_mapping_size;
Reza Arbabb5200ec2017-01-16 13:07:43 -0600287 previous_size = mapping_size;
Michael Ellermanafb6d062018-10-17 23:53:38 +1100288 prev_exec = exec;
Reza Arbabb5200ec2017-01-16 13:07:43 -0600289
290 if (IS_ALIGNED(addr, PUD_SIZE) && gap >= PUD_SIZE &&
Michael Ellerman57306c62018-08-14 22:01:44 +1000291 mmu_psize_defs[MMU_PAGE_1G].shift) {
Reza Arbabb5200ec2017-01-16 13:07:43 -0600292 mapping_size = PUD_SIZE;
Aneesh Kumar K.Va2dc0092018-08-13 11:14:57 +0530293 psize = MMU_PAGE_1G;
294 } else if (IS_ALIGNED(addr, PMD_SIZE) && gap >= PMD_SIZE &&
295 mmu_psize_defs[MMU_PAGE_2M].shift) {
Reza Arbabb5200ec2017-01-16 13:07:43 -0600296 mapping_size = PMD_SIZE;
Aneesh Kumar K.Va2dc0092018-08-13 11:14:57 +0530297 psize = MMU_PAGE_2M;
298 } else {
Reza Arbabb5200ec2017-01-16 13:07:43 -0600299 mapping_size = PAGE_SIZE;
Aneesh Kumar K.Va2dc0092018-08-13 11:14:57 +0530300 psize = mmu_virtual_psize;
301 }
Reza Arbabb5200ec2017-01-16 13:07:43 -0600302
Michael Ellerman9abcc982017-06-06 15:48:57 +1000303 vaddr = (unsigned long)__va(addr);
304
Balbir Singh7f6d4982017-06-29 03:04:10 +1000305 if (overlaps_kernel_text(vaddr, vaddr + mapping_size) ||
Michael Ellermanafb6d062018-10-17 23:53:38 +1100306 overlaps_interrupt_vector_text(vaddr, vaddr + mapping_size)) {
Michael Ellerman9abcc982017-06-06 15:48:57 +1000307 prot = PAGE_KERNEL_X;
Michael Ellermanafb6d062018-10-17 23:53:38 +1100308 exec = true;
309 } else {
Logan Gunthorpe4e00c5a2020-04-10 14:33:32 -0700310 prot = _prot;
Michael Ellermanafb6d062018-10-17 23:53:38 +1100311 exec = false;
312 }
313
314 if (mapping_size != previous_size || exec != prev_exec) {
315 print_mapping(start, addr, previous_size, prev_exec);
316 start = addr;
317 }
Michael Ellerman9abcc982017-06-06 15:48:57 +1000318
Nicholas Piggin2ad452f2018-02-14 01:08:24 +1000319 rc = __map_kernel_page(vaddr, addr, prot, mapping_size, nid, start, end);
Reza Arbabb5200ec2017-01-16 13:07:43 -0600320 if (rc)
321 return rc;
Aneesh Kumar K.Va2dc0092018-08-13 11:14:57 +0530322
323 update_page_count(psize, 1);
Reza Arbabb5200ec2017-01-16 13:07:43 -0600324 }
325
Michael Ellermanafb6d062018-10-17 23:53:38 +1100326 print_mapping(start, addr, mapping_size, exec);
Reza Arbabb5200ec2017-01-16 13:07:43 -0600327 return 0;
328}
329
YueHaibingd667edc2019-05-04 18:24:27 +0800330static void __init radix_init_pgtable(void)
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000331{
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000332 unsigned long rts_field;
Mike Rapoportb10d6bc2020-10-13 16:58:08 -0700333 phys_addr_t start, end;
334 u64 i;
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000335
336 /* We don't support slb for radix */
Nicholas Piggin387e2202021-12-02 00:41:52 +1000337 slb_set_size(0);
Aneesh Kumar K.Vaf9d00e2020-07-09 18:49:25 +0530338
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000339 /*
Aneesh Kumar K.Vaf9d00e2020-07-09 18:49:25 +0530340 * Create the linear mapping
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000341 */
Mike Rapoportb10d6bc2020-10-13 16:58:08 -0700342 for_each_mem_range(i, &start, &end) {
Nicholas Piggin2ad452f2018-02-14 01:08:24 +1000343 /*
344 * The memblock allocator is up at this point, so the
345 * page tables will be allocated within the range. No
346 * need or a node (which we don't have yet).
347 */
Aneesh Kumar K.Ve0909392019-04-17 18:29:15 +0530348
Mike Rapoportb10d6bc2020-10-13 16:58:08 -0700349 if (end >= RADIX_VMALLOC_START) {
Colin Ian Kingf341d892019-04-23 16:10:17 +0100350 pr_warn("Outside the supported range\n");
Aneesh Kumar K.Ve0909392019-04-17 18:29:15 +0530351 continue;
352 }
353
Mike Rapoportb10d6bc2020-10-13 16:58:08 -0700354 WARN_ON(create_physical_mapping(start, end,
Aneesh Kumar K.Vaf9d00e2020-07-09 18:49:25 +0530355 radix_mem_block_size,
Logan Gunthorpe4e00c5a2020-04-10 14:33:32 -0700356 -1, PAGE_KERNEL));
Nicholas Piggin2ad452f2018-02-14 01:08:24 +1000357 }
Benjamin Herrenschmidta25bd722017-07-24 14:26:06 +1000358
Nicholas Piggin2e1ae9cd2021-05-28 19:07:41 +1000359 if (!cpu_has_feature(CPU_FTR_HVMODE) &&
360 cpu_has_feature(CPU_FTR_P9_RADIX_PREFETCH_BUG)) {
Benjamin Herrenschmidta25bd722017-07-24 14:26:06 +1000361 /*
Nicholas Piggin2e1ae9cd2021-05-28 19:07:41 +1000362 * Older versions of KVM on these machines perfer if the
363 * guest only uses the low 19 PID bits.
Benjamin Herrenschmidta25bd722017-07-24 14:26:06 +1000364 */
Nicholas Piggin5402e232021-11-29 13:09:15 +1000365 mmu_pid_bits = 19;
Benjamin Herrenschmidta25bd722017-07-24 14:26:06 +1000366 }
Nicholas Piggin2e1ae9cd2021-05-28 19:07:41 +1000367 mmu_base_pid = 1;
Benjamin Herrenschmidta25bd722017-07-24 14:26:06 +1000368
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000369 /*
370 * Allocate Partition table and process table for the
371 * host.
372 */
Benjamin Herrenschmidta25bd722017-07-24 14:26:06 +1000373 BUG_ON(PRTB_SIZE_SHIFT > 36);
Nicholas Piggin2ad452f2018-02-14 01:08:24 +1000374 process_tb = early_alloc_pgtable(1UL << PRTB_SIZE_SHIFT, -1, 0, 0);
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000375 /*
376 * Fill in the process table.
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000377 */
Aneesh Kumar K.Vb23d9c52016-06-17 11:40:36 +0530378 rts_field = radix__get_tree_size();
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000379 process_tb->prtb0 = cpu_to_be64(rts_field | __pa(init_mm.pgd) | RADIX_PGD_INDEX_SIZE);
Nicholas Piggined6546b2019-09-03 01:29:26 +1000380
Nicholas Piggineeb715c2018-02-07 11:20:02 +1000381 /*
382 * The init_mm context is given the first available (non-zero) PID,
383 * which is the "guard PID" and contains no page table. PIDR should
384 * never be set to zero because that duplicates the kernel address
385 * space at the 0x0... offset (quadrant 0)!
386 *
387 * An arbitrary PID that may later be allocated by the PID allocator
388 * for userspace processes must not be used either, because that
389 * would cause stale user mappings for that PID on CPUs outside of
390 * the TLB invalidation scheme (because it won't be in mm_cpumask).
391 *
392 * So permanently carve out one PID for the purpose of a guard PID.
393 */
394 init_mm.context.id = mmu_base_pid;
395 mmu_base_pid++;
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000396}
397
398static void __init radix_init_partition_table(void)
399{
Nicholas Piggined6546b2019-09-03 01:29:26 +1000400 unsigned long rts_field, dw0, dw1;
Aneesh Kumar K.Vb23d9c52016-06-17 11:40:36 +0530401
Paul Mackerras9d661952016-11-21 16:00:58 +1100402 mmu_partition_table_init();
Aneesh Kumar K.Vb23d9c52016-06-17 11:40:36 +0530403 rts_field = radix__get_tree_size();
Paul Mackerras9d661952016-11-21 16:00:58 +1100404 dw0 = rts_field | __pa(init_mm.pgd) | RADIX_PGD_INDEX_SIZE | PATB_HR;
Nicholas Piggined6546b2019-09-03 01:29:26 +1000405 dw1 = __pa(process_tb) | (PRTB_SIZE_SHIFT - 12) | PATB_GR;
Nicholas Piggin7d805ac2019-09-03 01:29:30 +1000406 mmu_partition_table_set_entry(0, dw0, dw1, false);
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000407
Aneesh Kumar K.V56547412016-07-13 15:05:25 +0530408 pr_info("Initializing Radix MMU\n");
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000409}
410
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000411static int __init get_idx_from_shift(unsigned int shift)
412{
413 int idx = -1;
414
415 switch (shift) {
416 case 0xc:
417 idx = MMU_PAGE_4K;
418 break;
419 case 0x10:
420 idx = MMU_PAGE_64K;
421 break;
422 case 0x15:
423 idx = MMU_PAGE_2M;
424 break;
425 case 0x1e:
426 idx = MMU_PAGE_1G;
427 break;
428 }
429 return idx;
430}
431
432static int __init radix_dt_scan_page_sizes(unsigned long node,
433 const char *uname, int depth,
434 void *data)
435{
436 int size = 0;
437 int shift, idx;
438 unsigned int ap;
439 const __be32 *prop;
440 const char *type = of_get_flat_dt_prop(node, "device_type", NULL);
441
442 /* We are scanning "cpu" nodes only */
443 if (type == NULL || strcmp(type, "cpu") != 0)
444 return 0;
445
Benjamin Herrenschmidta25bd722017-07-24 14:26:06 +1000446 /* Grab page size encodings */
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000447 prop = of_get_flat_dt_prop(node, "ibm,processor-radix-AP-encodings", &size);
448 if (!prop)
449 return 0;
450
451 pr_info("Page sizes from device-tree:\n");
452 for (; size >= 4; size -= 4, ++prop) {
453
454 struct mmu_psize_def *def;
455
456 /* top 3 bit is AP encoding */
457 shift = be32_to_cpu(prop[0]) & ~(0xe << 28);
458 ap = be32_to_cpu(prop[0]) >> 29;
Balbir Singhac8d3812016-11-05 15:24:22 +1100459 pr_info("Page size shift = %d AP=0x%x\n", shift, ap);
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000460
461 idx = get_idx_from_shift(shift);
462 if (idx < 0)
463 continue;
464
465 def = &mmu_psize_defs[idx];
466 def->shift = shift;
467 def->ap = ap;
Bharata B Raod6265cb2021-06-21 14:19:59 +0530468 def->h_rpt_pgsize = psize_to_rpti_pgsize(idx);
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000469 }
470
471 /* needed ? */
472 cur_cpu_spec->mmu_features &= ~MMU_FTR_NO_SLBIE_B;
473 return 1;
474}
475
Aneesh Kumar K.Vaf9d00e2020-07-09 18:49:25 +0530476#ifdef CONFIG_MEMORY_HOTPLUG
477static int __init probe_memory_block_size(unsigned long node, const char *uname, int
478 depth, void *data)
479{
480 unsigned long *mem_block_size = (unsigned long *)data;
Aneesh Kumar K.Vfbf2f132020-10-07 17:18:36 +0530481 const __be32 *prop;
Aneesh Kumar K.Vaf9d00e2020-07-09 18:49:25 +0530482 int len;
483
484 if (depth != 1)
485 return 0;
486
487 if (strcmp(uname, "ibm,dynamic-reconfiguration-memory"))
488 return 0;
489
490 prop = of_get_flat_dt_prop(node, "ibm,lmb-size", &len);
Aneesh Kumar K.Vfbf2f132020-10-07 17:18:36 +0530491
492 if (!prop || len < dt_root_size_cells * sizeof(__be32))
Aneesh Kumar K.Vaf9d00e2020-07-09 18:49:25 +0530493 /*
494 * Nothing in the device tree
495 */
496 *mem_block_size = MIN_MEMORY_BLOCK_SIZE;
497 else
Aneesh Kumar K.Vfbf2f132020-10-07 17:18:36 +0530498 *mem_block_size = of_read_number(prop, dt_root_size_cells);
Aneesh Kumar K.Vaf9d00e2020-07-09 18:49:25 +0530499 return 1;
500}
501
Nick Childc13f2b22021-12-16 17:00:18 -0500502static unsigned long __init radix_memory_block_size(void)
Aneesh Kumar K.Vaf9d00e2020-07-09 18:49:25 +0530503{
504 unsigned long mem_block_size = MIN_MEMORY_BLOCK_SIZE;
505
506 /*
507 * OPAL firmware feature is set by now. Hence we are ok
508 * to test OPAL feature.
509 */
510 if (firmware_has_feature(FW_FEATURE_OPAL))
511 mem_block_size = 1UL * 1024 * 1024 * 1024;
512 else
513 of_scan_flat_dt(probe_memory_block_size, &mem_block_size);
514
515 return mem_block_size;
516}
517
518#else /* CONFIG_MEMORY_HOTPLUG */
519
Nick Childc13f2b22021-12-16 17:00:18 -0500520static unsigned long __init radix_memory_block_size(void)
Aneesh Kumar K.Vaf9d00e2020-07-09 18:49:25 +0530521{
522 return 1UL * 1024 * 1024 * 1024;
523}
524
525#endif /* CONFIG_MEMORY_HOTPLUG */
526
527
Michael Ellerman2537b092016-07-26 21:55:27 +1000528void __init radix__early_init_devtree(void)
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000529{
530 int rc;
531
532 /*
533 * Try to find the available page sizes in the device-tree
534 */
535 rc = of_scan_flat_dt(radix_dt_scan_page_sizes, NULL);
Aneesh Kumar K.Vaf9d00e2020-07-09 18:49:25 +0530536 if (!rc) {
537 /*
538 * No page size details found in device tree.
539 * Let's assume we have page 4k and 64k support
540 */
541 mmu_psize_defs[MMU_PAGE_4K].shift = 12;
542 mmu_psize_defs[MMU_PAGE_4K].ap = 0x0;
Bharata B Raod6265cb2021-06-21 14:19:59 +0530543 mmu_psize_defs[MMU_PAGE_4K].h_rpt_pgsize =
544 psize_to_rpti_pgsize(MMU_PAGE_4K);
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000545
Aneesh Kumar K.Vaf9d00e2020-07-09 18:49:25 +0530546 mmu_psize_defs[MMU_PAGE_64K].shift = 16;
547 mmu_psize_defs[MMU_PAGE_64K].ap = 0x5;
Bharata B Raod6265cb2021-06-21 14:19:59 +0530548 mmu_psize_defs[MMU_PAGE_64K].h_rpt_pgsize =
549 psize_to_rpti_pgsize(MMU_PAGE_64K);
Aneesh Kumar K.Vaf9d00e2020-07-09 18:49:25 +0530550 }
551
552 /*
553 * Max mapping size used when mapping pages. We don't use
554 * ppc_md.memory_block_size() here because this get called
555 * early and we don't have machine probe called yet. Also
556 * the pseries implementation only check for ibm,lmb-size.
557 * All hypervisor supporting radix do expose that device
558 * tree node.
559 */
560 radix_mem_block_size = radix_memory_block_size();
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000561 return;
562}
563
564void __init radix__early_init_mmu(void)
565{
566 unsigned long lpcr;
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000567
Nicholas Piggin387e2202021-12-02 00:41:52 +1000568#ifdef CONFIG_PPC_64S_HASH_MMU
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000569#ifdef CONFIG_PPC_64K_PAGES
570 /* PAGE_SIZE mappings */
571 mmu_virtual_psize = MMU_PAGE_64K;
572#else
573 mmu_virtual_psize = MMU_PAGE_4K;
574#endif
575
576#ifdef CONFIG_SPARSEMEM_VMEMMAP
577 /* vmemmap mapping */
Aneesh Kumar K.V89a34962019-07-01 20:04:42 +0530578 if (mmu_psize_defs[MMU_PAGE_2M].shift) {
579 /*
580 * map vmemmap using 2M if available
581 */
582 mmu_vmemmap_psize = MMU_PAGE_2M;
583 } else
584 mmu_vmemmap_psize = mmu_virtual_psize;
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000585#endif
Nicholas Piggin387e2202021-12-02 00:41:52 +1000586#endif
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000587 /*
588 * initialize page table size
589 */
590 __pte_index_size = RADIX_PTE_INDEX_SIZE;
591 __pmd_index_size = RADIX_PMD_INDEX_SIZE;
592 __pud_index_size = RADIX_PUD_INDEX_SIZE;
593 __pgd_index_size = RADIX_PGD_INDEX_SIZE;
Aneesh Kumar K.Vfae22112018-02-11 20:30:06 +0530594 __pud_cache_index = RADIX_PUD_INDEX_SIZE;
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000595 __pte_table_size = RADIX_PTE_TABLE_SIZE;
596 __pmd_table_size = RADIX_PMD_TABLE_SIZE;
597 __pud_table_size = RADIX_PUD_TABLE_SIZE;
598 __pgd_table_size = RADIX_PGD_TABLE_SIZE;
599
Aneesh Kumar K.Va2f41eb2016-04-29 23:26:19 +1000600 __pmd_val_bits = RADIX_PMD_VAL_BITS;
601 __pud_val_bits = RADIX_PUD_VAL_BITS;
602 __pgd_val_bits = RADIX_PGD_VAL_BITS;
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000603
Aneesh Kumar K.Vd6a99962016-04-29 23:26:21 +1000604 __kernel_virt_start = RADIX_KERN_VIRT_START;
Aneesh Kumar K.Vd6a99962016-04-29 23:26:21 +1000605 __vmalloc_start = RADIX_VMALLOC_START;
606 __vmalloc_end = RADIX_VMALLOC_END;
Michael Ellerman63ee9b22017-08-01 20:29:22 +1000607 __kernel_io_start = RADIX_KERN_IO_START;
Aneesh Kumar K.Va35a3c62019-04-17 18:29:13 +0530608 __kernel_io_end = RADIX_KERN_IO_END;
Aneesh Kumar K.V0034d392019-04-17 18:29:14 +0530609 vmemmap = (struct page *)RADIX_VMEMMAP_START;
Aneesh Kumar K.Vd6a99962016-04-29 23:26:21 +1000610 ioremap_bot = IOREMAP_BASE;
Darren Stevensbfa37082016-06-29 21:06:28 +0100611
612#ifdef CONFIG_PCI
613 pci_io_base = ISA_IO_BASE;
614#endif
Aneesh Kumar K.Vfb4e5db2018-03-22 14:13:50 +0530615 __pte_frag_nr = RADIX_PTE_FRAG_NR;
616 __pte_frag_size_shift = RADIX_PTE_FRAG_SIZE_SHIFT;
Aneesh Kumar K.V8a6c6972018-04-16 16:57:22 +0530617 __pmd_frag_nr = RADIX_PMD_FRAG_NR;
618 __pmd_frag_size_shift = RADIX_PMD_FRAG_SIZE_SHIFT;
Aneesh Kumar K.Vd6a99962016-04-29 23:26:21 +1000619
Nicholas Piggined6546b2019-09-03 01:29:26 +1000620 radix_init_pgtable();
621
Aneesh Kumar K.Vd6c88602016-05-31 11:56:29 +0530622 if (!firmware_has_feature(FW_FEATURE_LPAR)) {
623 lpcr = mfspr(SPRN_LPCR);
Aneesh Kumar K.Vbf16cdf2016-07-13 15:05:21 +0530624 mtspr(SPRN_LPCR, lpcr | LPCR_UPRT | LPCR_HR);
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000625 radix_init_partition_table();
Paul Mackerrascc3d2942017-01-30 21:21:36 +1100626 } else {
627 radix_init_pseries();
Aneesh Kumar K.Vd6c88602016-05-31 11:56:29 +0530628 }
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000629
Paul Mackerras9d661952016-11-21 16:00:58 +1100630 memblock_set_current_limit(MEMBLOCK_ALLOC_ANYWHERE);
631
Nicholas Piggineeb715c2018-02-07 11:20:02 +1000632 /* Switch to the guard PID before turning on MMU */
633 radix__switch_mmu_context(NULL, &init_mm);
Nicholas Piggin7e71c422019-09-03 01:29:29 +1000634 tlbiel_all();
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000635}
636
637void radix__early_init_mmu_secondary(void)
638{
639 unsigned long lpcr;
640 /*
Aneesh Kumar K.Vd6c88602016-05-31 11:56:29 +0530641 * update partition table control register and UPRT
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000642 */
Aneesh Kumar K.Vd6c88602016-05-31 11:56:29 +0530643 if (!firmware_has_feature(FW_FEATURE_LPAR)) {
644 lpcr = mfspr(SPRN_LPCR);
Aneesh Kumar K.Vbf16cdf2016-07-13 15:05:21 +0530645 mtspr(SPRN_LPCR, lpcr | LPCR_UPRT | LPCR_HR);
Aneesh Kumar K.Vd6c88602016-05-31 11:56:29 +0530646
Claudio Carvalho52231342019-08-22 00:48:36 -0300647 set_ptcr_when_no_uv(__pa(partition_tb) |
648 (PATB_SIZE_SHIFT - 12));
Aneesh Kumar K.Vd6c88602016-05-31 11:56:29 +0530649 }
Nicholas Piggind4748272017-12-24 01:15:50 +1000650
Nicholas Piggineeb715c2018-02-07 11:20:02 +1000651 radix__switch_mmu_context(NULL, &init_mm);
Nicholas Piggin7e71c422019-09-03 01:29:29 +1000652 tlbiel_all();
Aneesh Kumar K.V39df17b2020-11-27 10:14:06 +0530653
654 /* Make sure userspace can't change the AMR */
655 mtspr(SPRN_UAMOR, 0);
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000656}
657
Hari Bathini8119cef2021-07-14 18:17:58 +0530658/* Called during kexec sequence with MMU off */
659notrace void radix__mmu_cleanup_all(void)
Benjamin Herrenschmidtfe036a02016-08-19 14:22:37 +0530660{
661 unsigned long lpcr;
662
663 if (!firmware_has_feature(FW_FEATURE_LPAR)) {
664 lpcr = mfspr(SPRN_LPCR);
665 mtspr(SPRN_LPCR, lpcr & ~LPCR_UPRT);
Claudio Carvalho52231342019-08-22 00:48:36 -0300666 set_ptcr_when_no_uv(0);
Alistair Popple1d0761d2016-12-14 13:36:51 +1100667 powernv_set_nmmu_ptcr(0);
Benjamin Herrenschmidtfe036a02016-08-19 14:22:37 +0530668 radix__flush_tlb_all();
669 }
670}
671
Reza Arbab6cc27342017-01-16 13:07:44 -0600672#ifdef CONFIG_MEMORY_HOTPLUG
Reza Arbab4b5d62c2017-01-16 13:07:45 -0600673static void free_pte_table(pte_t *pte_start, pmd_t *pmd)
674{
675 pte_t *pte;
676 int i;
677
678 for (i = 0; i < PTRS_PER_PTE; i++) {
679 pte = pte_start + i;
680 if (!pte_none(*pte))
681 return;
682 }
683
684 pte_free_kernel(&init_mm, pte_start);
685 pmd_clear(pmd);
686}
687
688static void free_pmd_table(pmd_t *pmd_start, pud_t *pud)
689{
690 pmd_t *pmd;
691 int i;
692
693 for (i = 0; i < PTRS_PER_PMD; i++) {
694 pmd = pmd_start + i;
695 if (!pmd_none(*pmd))
696 return;
697 }
698
699 pmd_free(&init_mm, pmd_start);
700 pud_clear(pud);
701}
702
Bharata B Rao9ce88532020-07-09 18:49:23 +0530703static void free_pud_table(pud_t *pud_start, p4d_t *p4d)
704{
705 pud_t *pud;
706 int i;
707
708 for (i = 0; i < PTRS_PER_PUD; i++) {
709 pud = pud_start + i;
710 if (!pud_none(*pud))
711 return;
712 }
713
714 pud_free(&init_mm, pud_start);
715 p4d_clear(p4d);
716}
717
Reza Arbab4b5d62c2017-01-16 13:07:45 -0600718static void remove_pte_table(pte_t *pte_start, unsigned long addr,
719 unsigned long end)
720{
721 unsigned long next;
722 pte_t *pte;
723
724 pte = pte_start + pte_index(addr);
725 for (; addr < end; addr = next, pte++) {
726 next = (addr + PAGE_SIZE) & PAGE_MASK;
727 if (next > end)
728 next = end;
729
730 if (!pte_present(*pte))
731 continue;
732
Reza Arbab0d0a4bc2017-01-16 13:07:46 -0600733 if (!PAGE_ALIGNED(addr) || !PAGE_ALIGNED(next)) {
734 /*
735 * The vmemmap_free() and remove_section_mapping()
736 * codepaths call us with aligned addresses.
737 */
738 WARN_ONCE(1, "%s: unaligned range\n", __func__);
739 continue;
740 }
741
Reza Arbab4b5d62c2017-01-16 13:07:45 -0600742 pte_clear(&init_mm, addr, pte);
743 }
744}
745
Vladis Dronovaff77952020-07-29 15:37:41 +0200746static void __meminit remove_pmd_table(pmd_t *pmd_start, unsigned long addr,
Reza Arbab4b5d62c2017-01-16 13:07:45 -0600747 unsigned long end)
748{
749 unsigned long next;
750 pte_t *pte_base;
751 pmd_t *pmd;
752
753 pmd = pmd_start + pmd_index(addr);
754 for (; addr < end; addr = next, pmd++) {
755 next = pmd_addr_end(addr, end);
756
757 if (!pmd_present(*pmd))
758 continue;
759
Aneesh Kumar K.Vd6eaced2019-05-14 11:33:00 +0530760 if (pmd_is_leaf(*pmd)) {
Bharata B Raod6d6ebf2020-07-09 18:49:24 +0530761 if (!IS_ALIGNED(addr, PMD_SIZE) ||
762 !IS_ALIGNED(next, PMD_SIZE)) {
763 WARN_ONCE(1, "%s: unaligned range\n", __func__);
764 continue;
765 }
766 pte_clear(&init_mm, addr, (pte_t *)pmd);
Reza Arbab4b5d62c2017-01-16 13:07:45 -0600767 continue;
768 }
769
770 pte_base = (pte_t *)pmd_page_vaddr(*pmd);
771 remove_pte_table(pte_base, addr, next);
772 free_pte_table(pte_base, pmd);
773 }
774}
775
Vladis Dronovaff77952020-07-29 15:37:41 +0200776static void __meminit remove_pud_table(pud_t *pud_start, unsigned long addr,
Reza Arbab4b5d62c2017-01-16 13:07:45 -0600777 unsigned long end)
778{
779 unsigned long next;
780 pmd_t *pmd_base;
781 pud_t *pud;
782
783 pud = pud_start + pud_index(addr);
784 for (; addr < end; addr = next, pud++) {
785 next = pud_addr_end(addr, end);
786
787 if (!pud_present(*pud))
788 continue;
789
Aneesh Kumar K.Vd6eaced2019-05-14 11:33:00 +0530790 if (pud_is_leaf(*pud)) {
Bharata B Raod6d6ebf2020-07-09 18:49:24 +0530791 if (!IS_ALIGNED(addr, PUD_SIZE) ||
792 !IS_ALIGNED(next, PUD_SIZE)) {
793 WARN_ONCE(1, "%s: unaligned range\n", __func__);
794 continue;
795 }
796 pte_clear(&init_mm, addr, (pte_t *)pud);
Reza Arbab4b5d62c2017-01-16 13:07:45 -0600797 continue;
798 }
799
Aneesh Kumar K.V9cf6fa22021-07-07 18:09:53 -0700800 pmd_base = pud_pgtable(*pud);
Reza Arbab4b5d62c2017-01-16 13:07:45 -0600801 remove_pmd_table(pmd_base, addr, next);
802 free_pmd_table(pmd_base, pud);
803 }
804}
805
Mauricio Faria de Oliveirabde709a2018-03-09 17:45:58 -0300806static void __meminit remove_pagetable(unsigned long start, unsigned long end)
Reza Arbab4b5d62c2017-01-16 13:07:45 -0600807{
808 unsigned long addr, next;
809 pud_t *pud_base;
810 pgd_t *pgd;
Mike Rapoport2fb47062020-06-04 16:46:44 -0700811 p4d_t *p4d;
Reza Arbab4b5d62c2017-01-16 13:07:45 -0600812
813 spin_lock(&init_mm.page_table_lock);
814
815 for (addr = start; addr < end; addr = next) {
816 next = pgd_addr_end(addr, end);
817
818 pgd = pgd_offset_k(addr);
Mike Rapoport2fb47062020-06-04 16:46:44 -0700819 p4d = p4d_offset(pgd, addr);
820 if (!p4d_present(*p4d))
Reza Arbab4b5d62c2017-01-16 13:07:45 -0600821 continue;
822
Mike Rapoport2fb47062020-06-04 16:46:44 -0700823 if (p4d_is_leaf(*p4d)) {
Bharata B Raod6d6ebf2020-07-09 18:49:24 +0530824 if (!IS_ALIGNED(addr, P4D_SIZE) ||
825 !IS_ALIGNED(next, P4D_SIZE)) {
826 WARN_ONCE(1, "%s: unaligned range\n", __func__);
827 continue;
828 }
829
830 pte_clear(&init_mm, addr, (pte_t *)pgd);
Reza Arbab4b5d62c2017-01-16 13:07:45 -0600831 continue;
832 }
833
Aneesh Kumar K.Vdc4875f2021-07-07 18:09:56 -0700834 pud_base = p4d_pgtable(*p4d);
Reza Arbab4b5d62c2017-01-16 13:07:45 -0600835 remove_pud_table(pud_base, addr, next);
Bharata B Rao9ce88532020-07-09 18:49:23 +0530836 free_pud_table(pud_base, p4d);
Reza Arbab4b5d62c2017-01-16 13:07:45 -0600837 }
838
839 spin_unlock(&init_mm.page_table_lock);
840 radix__flush_tlb_kernel_range(start, end);
841}
842
Logan Gunthorpe4e00c5a2020-04-10 14:33:32 -0700843int __meminit radix__create_section_mapping(unsigned long start,
844 unsigned long end, int nid,
845 pgprot_t prot)
Reza Arbab6cc27342017-01-16 13:07:44 -0600846{
Aneesh Kumar K.Ve0909392019-04-17 18:29:15 +0530847 if (end >= RADIX_VMALLOC_START) {
Colin Ian Kingf341d892019-04-23 16:10:17 +0100848 pr_warn("Outside the supported range\n");
Aneesh Kumar K.Ve0909392019-04-17 18:29:15 +0530849 return -1;
850 }
851
Aneesh Kumar K.Vaf9d00e2020-07-09 18:49:25 +0530852 return create_physical_mapping(__pa(start), __pa(end),
853 radix_mem_block_size, nid, prot);
Reza Arbab6cc27342017-01-16 13:07:44 -0600854}
Reza Arbab4b5d62c2017-01-16 13:07:45 -0600855
Mauricio Faria de Oliveirabde709a2018-03-09 17:45:58 -0300856int __meminit radix__remove_section_mapping(unsigned long start, unsigned long end)
Reza Arbab4b5d62c2017-01-16 13:07:45 -0600857{
858 remove_pagetable(start, end);
859 return 0;
860}
Reza Arbab6cc27342017-01-16 13:07:44 -0600861#endif /* CONFIG_MEMORY_HOTPLUG */
862
Aneesh Kumar K.Vd9225ad2016-04-29 23:26:00 +1000863#ifdef CONFIG_SPARSEMEM_VMEMMAP
Nicholas Piggin29ab6c42018-02-14 01:08:22 +1000864static int __map_kernel_page_nid(unsigned long ea, unsigned long pa,
865 pgprot_t flags, unsigned int map_page_size,
866 int nid)
867{
868 return __map_kernel_page(ea, pa, flags, map_page_size, nid, 0, 0);
869}
870
Aneesh Kumar K.Vd9225ad2016-04-29 23:26:00 +1000871int __meminit radix__vmemmap_create_mapping(unsigned long start,
872 unsigned long page_size,
873 unsigned long phys)
874{
875 /* Create a PTE encoding */
876 unsigned long flags = _PAGE_PRESENT | _PAGE_ACCESSED | _PAGE_KERNEL_RW;
Nicholas Piggin2ad452f2018-02-14 01:08:24 +1000877 int nid = early_pfn_to_nid(phys >> PAGE_SHIFT);
878 int ret;
Aneesh Kumar K.Vd9225ad2016-04-29 23:26:00 +1000879
Aneesh Kumar K.Ve0909392019-04-17 18:29:15 +0530880 if ((start + page_size) >= RADIX_VMEMMAP_END) {
Colin Ian Kingf341d892019-04-23 16:10:17 +0100881 pr_warn("Outside the supported range\n");
Aneesh Kumar K.Ve0909392019-04-17 18:29:15 +0530882 return -1;
883 }
884
Nicholas Piggin2ad452f2018-02-14 01:08:24 +1000885 ret = __map_kernel_page_nid(start, phys, __pgprot(flags), page_size, nid);
886 BUG_ON(ret);
887
Aneesh Kumar K.Vd9225ad2016-04-29 23:26:00 +1000888 return 0;
889}
890
891#ifdef CONFIG_MEMORY_HOTPLUG
Mauricio Faria de Oliveirabde709a2018-03-09 17:45:58 -0300892void __meminit radix__vmemmap_remove_mapping(unsigned long start, unsigned long page_size)
Aneesh Kumar K.Vd9225ad2016-04-29 23:26:00 +1000893{
Reza Arbab0d0a4bc2017-01-16 13:07:46 -0600894 remove_pagetable(start, start + page_size);
Aneesh Kumar K.Vd9225ad2016-04-29 23:26:00 +1000895}
896#endif
897#endif
Aneesh Kumar K.Vbde3eb62016-04-29 23:26:30 +1000898
Joel Stanley4f703e72021-10-14 08:04:38 +1030899#ifdef CONFIG_DEBUG_PAGEALLOC
900void radix__kernel_map_pages(struct page *page, int numpages, int enable)
901{
902 pr_warn_once("DEBUG_PAGEALLOC not supported in radix mode\n");
903}
904#endif
905
Aneesh Kumar K.Vbde3eb62016-04-29 23:26:30 +1000906#ifdef CONFIG_TRANSPARENT_HUGEPAGE
907
908unsigned long radix__pmd_hugepage_update(struct mm_struct *mm, unsigned long addr,
909 pmd_t *pmdp, unsigned long clr,
910 unsigned long set)
911{
912 unsigned long old;
913
914#ifdef CONFIG_DEBUG_VM
Oliver O'Halloranebd31192017-06-28 11:32:34 +1000915 WARN_ON(!radix__pmd_trans_huge(*pmdp) && !pmd_devmap(*pmdp));
Aneesh Kumar K.Vaf60a4c2018-04-16 16:57:16 +0530916 assert_spin_locked(pmd_lockptr(mm, pmdp));
Aneesh Kumar K.Vbde3eb62016-04-29 23:26:30 +1000917#endif
918
919 old = radix__pte_update(mm, addr, (pte_t *)pmdp, clr, set, 1);
920 trace_hugepage_update(addr, old, clr, set);
921
922 return old;
923}
924
925pmd_t radix__pmdp_collapse_flush(struct vm_area_struct *vma, unsigned long address,
926 pmd_t *pmdp)
927
928{
929 pmd_t pmd;
930
931 VM_BUG_ON(address & ~HPAGE_PMD_MASK);
932 VM_BUG_ON(radix__pmd_trans_huge(*pmdp));
Oliver O'Halloranebd31192017-06-28 11:32:34 +1000933 VM_BUG_ON(pmd_devmap(*pmdp));
Aneesh Kumar K.Vbde3eb62016-04-29 23:26:30 +1000934 /*
935 * khugepaged calls this for normal pmd
936 */
937 pmd = *pmdp;
938 pmd_clear(pmdp);
Benjamin Herrenschmidt424de9c2017-07-19 14:49:06 +1000939
Aneesh Kumar K.Ve21dfbf2020-05-05 12:47:27 +0530940 /*
941 * pmdp collapse_flush need to ensure that there are no parallel gup
942 * walk after this call. This is needed so that we can have stable
943 * page ref count when collapsing a page. We don't allow a collapse page
944 * if we have gup taken on the page. We can ensure that by sending IPI
945 * because gup walk happens with IRQ disabled.
946 */
Aneesh Kumar K.Vfa4531f2017-07-27 11:54:54 +0530947 serialize_against_pte_lookup(vma->vm_mm);
Benjamin Herrenschmidt424de9c2017-07-19 14:49:06 +1000948
949 radix__flush_tlb_collapsed_pmd(vma->vm_mm, address);
950
Aneesh Kumar K.Vbde3eb62016-04-29 23:26:30 +1000951 return pmd;
952}
953
954/*
955 * For us pgtable_t is pte_t *. Inorder to save the deposisted
956 * page table, we consider the allocated page table as a list
957 * head. On withdraw we need to make sure we zero out the used
958 * list_head memory area.
959 */
960void radix__pgtable_trans_huge_deposit(struct mm_struct *mm, pmd_t *pmdp,
961 pgtable_t pgtable)
962{
Christophe Leroy47d99942019-03-29 10:00:00 +0000963 struct list_head *lh = (struct list_head *) pgtable;
Aneesh Kumar K.Vbde3eb62016-04-29 23:26:30 +1000964
Christophe Leroy47d99942019-03-29 10:00:00 +0000965 assert_spin_locked(pmd_lockptr(mm, pmdp));
Aneesh Kumar K.Vbde3eb62016-04-29 23:26:30 +1000966
Christophe Leroy47d99942019-03-29 10:00:00 +0000967 /* FIFO */
968 if (!pmd_huge_pte(mm, pmdp))
969 INIT_LIST_HEAD(lh);
970 else
971 list_add(lh, (struct list_head *) pmd_huge_pte(mm, pmdp));
972 pmd_huge_pte(mm, pmdp) = pgtable;
Aneesh Kumar K.Vbde3eb62016-04-29 23:26:30 +1000973}
974
975pgtable_t radix__pgtable_trans_huge_withdraw(struct mm_struct *mm, pmd_t *pmdp)
976{
Christophe Leroy47d99942019-03-29 10:00:00 +0000977 pte_t *ptep;
978 pgtable_t pgtable;
979 struct list_head *lh;
Aneesh Kumar K.Vbde3eb62016-04-29 23:26:30 +1000980
Christophe Leroy47d99942019-03-29 10:00:00 +0000981 assert_spin_locked(pmd_lockptr(mm, pmdp));
Aneesh Kumar K.Vbde3eb62016-04-29 23:26:30 +1000982
Christophe Leroy47d99942019-03-29 10:00:00 +0000983 /* FIFO */
984 pgtable = pmd_huge_pte(mm, pmdp);
985 lh = (struct list_head *) pgtable;
986 if (list_empty(lh))
987 pmd_huge_pte(mm, pmdp) = NULL;
988 else {
989 pmd_huge_pte(mm, pmdp) = (pgtable_t) lh->next;
990 list_del(lh);
991 }
992 ptep = (pte_t *) pgtable;
993 *ptep = __pte(0);
994 ptep++;
995 *ptep = __pte(0);
996 return pgtable;
Aneesh Kumar K.Vbde3eb62016-04-29 23:26:30 +1000997}
998
Aneesh Kumar K.Vbde3eb62016-04-29 23:26:30 +1000999pmd_t radix__pmdp_huge_get_and_clear(struct mm_struct *mm,
Christophe Leroy47d99942019-03-29 10:00:00 +00001000 unsigned long addr, pmd_t *pmdp)
Aneesh Kumar K.Vbde3eb62016-04-29 23:26:30 +10001001{
1002 pmd_t old_pmd;
1003 unsigned long old;
1004
1005 old = radix__pmd_hugepage_update(mm, addr, pmdp, ~0UL, 0);
1006 old_pmd = __pmd(old);
Aneesh Kumar K.Vbde3eb62016-04-29 23:26:30 +10001007 return old_pmd;
1008}
1009
Aneesh Kumar K.Vbde3eb62016-04-29 23:26:30 +10001010#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
Aneesh Kumar K.V044003b2018-05-29 19:58:39 +05301011
Aneesh Kumar K.Ve4c11122018-05-29 19:58:40 +05301012void radix__ptep_set_access_flags(struct vm_area_struct *vma, pte_t *ptep,
1013 pte_t entry, unsigned long address, int psize)
Aneesh Kumar K.V044003b2018-05-29 19:58:39 +05301014{
Aneesh Kumar K.Ve4c11122018-05-29 19:58:40 +05301015 struct mm_struct *mm = vma->vm_mm;
Aneesh Kumar K.V044003b2018-05-29 19:58:39 +05301016 unsigned long set = pte_val(entry) & (_PAGE_DIRTY | _PAGE_ACCESSED |
1017 _PAGE_RW | _PAGE_EXEC);
Aneesh Kumar K.Vf08d08f2018-08-22 22:46:05 +05301018
1019 unsigned long change = pte_val(entry) ^ pte_val(*ptep);
Aneesh Kumar K.Vbd5050e2018-05-29 19:58:41 +05301020 /*
1021 * To avoid NMMU hang while relaxing access, we need mark
1022 * the pte invalid in between.
1023 */
Aneesh Kumar K.Vf08d08f2018-08-22 22:46:05 +05301024 if ((change & _PAGE_RW) && atomic_read(&mm->context.copros) > 0) {
Aneesh Kumar K.V044003b2018-05-29 19:58:39 +05301025 unsigned long old_pte, new_pte;
1026
Aneesh Kumar K.Vf08d08f2018-08-22 22:46:05 +05301027 old_pte = __radix_pte_update(ptep, _PAGE_PRESENT, _PAGE_INVALID);
Aneesh Kumar K.V044003b2018-05-29 19:58:39 +05301028 /*
1029 * new value of pte
1030 */
1031 new_pte = old_pte | set;
Aneesh Kumar K.Vbd5050e2018-05-29 19:58:41 +05301032 radix__flush_tlb_page_psize(mm, address, psize);
Aneesh Kumar K.Vf08d08f2018-08-22 22:46:05 +05301033 __radix_pte_update(ptep, _PAGE_INVALID, new_pte);
Aneesh Kumar K.Vbd5050e2018-05-29 19:58:41 +05301034 } else {
Aneesh Kumar K.V044003b2018-05-29 19:58:39 +05301035 __radix_pte_update(ptep, 0, set);
Nicholas Piggine5f7cb52018-06-01 20:01:15 +10001036 /*
1037 * Book3S does not require a TLB flush when relaxing access
1038 * restrictions when the address space is not attached to a
1039 * NMMU, because the core MMU will reload the pte after taking
Bhaskar Chowdhury4763d372021-01-20 19:50:21 +05301040 * an access fault, which is defined by the architecture.
Nicholas Piggine5f7cb52018-06-01 20:01:15 +10001041 */
Aneesh Kumar K.Vbd5050e2018-05-29 19:58:41 +05301042 }
Nicholas Pigginf1cb8f92018-06-01 20:01:19 +10001043 /* See ptesync comment in radix__set_pte_at */
Aneesh Kumar K.V044003b2018-05-29 19:58:39 +05301044}
Aneesh Kumar K.V5b323362019-03-05 15:46:33 -08001045
1046void radix__ptep_modify_prot_commit(struct vm_area_struct *vma,
1047 unsigned long addr, pte_t *ptep,
1048 pte_t old_pte, pte_t pte)
1049{
1050 struct mm_struct *mm = vma->vm_mm;
1051
1052 /*
1053 * To avoid NMMU hang while relaxing access we need to flush the tlb before
1054 * we set the new value. We need to do this only for radix, because hash
1055 * translation does flush when updating the linux pte.
1056 */
1057 if (is_pte_rw_upgrade(pte_val(old_pte), pte_val(pte)) &&
1058 (atomic_read(&mm->context.copros) > 0))
1059 radix__flush_tlb_page(vma, addr);
1060
1061 set_pte_at(mm, addr, ptep, pte);
1062}
Nicholas Piggind38153f2019-06-10 13:08:17 +10001063
Nicholas Piggind909f912019-06-10 13:08:18 +10001064int pud_set_huge(pud_t *pud, phys_addr_t addr, pgprot_t prot)
1065{
1066 pte_t *ptep = (pte_t *)pud;
1067 pte_t new_pud = pfn_pte(__phys_to_pfn(addr), prot);
1068
1069 if (!radix_enabled())
1070 return 0;
1071
1072 set_pte_at(&init_mm, 0 /* radix unused */, ptep, new_pud);
1073
1074 return 1;
1075}
1076
1077int pud_clear_huge(pud_t *pud)
1078{
Nicholas Piggin467ba142021-12-16 20:33:42 +10001079 if (pud_is_leaf(*pud)) {
Nicholas Piggind909f912019-06-10 13:08:18 +10001080 pud_clear(pud);
1081 return 1;
1082 }
1083
1084 return 0;
1085}
1086
1087int pud_free_pmd_page(pud_t *pud, unsigned long addr)
1088{
1089 pmd_t *pmd;
1090 int i;
1091
Aneesh Kumar K.V9cf6fa22021-07-07 18:09:53 -07001092 pmd = pud_pgtable(*pud);
Nicholas Piggind909f912019-06-10 13:08:18 +10001093 pud_clear(pud);
1094
1095 flush_tlb_kernel_range(addr, addr + PUD_SIZE);
1096
1097 for (i = 0; i < PTRS_PER_PMD; i++) {
1098 if (!pmd_none(pmd[i])) {
1099 pte_t *pte;
1100 pte = (pte_t *)pmd_page_vaddr(pmd[i]);
1101
1102 pte_free_kernel(&init_mm, pte);
1103 }
1104 }
1105
1106 pmd_free(&init_mm, pmd);
1107
1108 return 1;
1109}
1110
1111int pmd_set_huge(pmd_t *pmd, phys_addr_t addr, pgprot_t prot)
1112{
1113 pte_t *ptep = (pte_t *)pmd;
1114 pte_t new_pmd = pfn_pte(__phys_to_pfn(addr), prot);
1115
1116 if (!radix_enabled())
1117 return 0;
1118
1119 set_pte_at(&init_mm, 0 /* radix unused */, ptep, new_pmd);
1120
1121 return 1;
1122}
1123
1124int pmd_clear_huge(pmd_t *pmd)
1125{
Nicholas Piggin467ba142021-12-16 20:33:42 +10001126 if (pmd_is_leaf(*pmd)) {
Nicholas Piggind909f912019-06-10 13:08:18 +10001127 pmd_clear(pmd);
1128 return 1;
1129 }
1130
1131 return 0;
1132}
1133
1134int pmd_free_pte_page(pmd_t *pmd, unsigned long addr)
1135{
1136 pte_t *pte;
1137
1138 pte = (pte_t *)pmd_page_vaddr(*pmd);
1139 pmd_clear(pmd);
1140
1141 flush_tlb_kernel_range(addr, addr + PMD_SIZE);
1142
1143 pte_free_kernel(&init_mm, pte);
1144
1145 return 1;
1146}