blob: 788eb222deacf99498f06ec871d0b244c868054f [file] [log] [blame]
Thomas Gleixner50acfb22019-05-29 07:18:00 -07001// SPDX-License-Identifier: GPL-2.0-only
Palmer Dabbelt76d2a042017-07-10 18:00:26 -07002/*
3 * Copyright (C) 2012 Regents of the University of California
Anup Patel671f9a32019-06-28 13:36:21 -07004 * Copyright (C) 2019 Western Digital Corporation or its affiliates.
Nick Kossifidise53d2812021-04-19 03:55:38 +03005 * Copyright (C) 2020 FORTH-ICS/CARV
6 * Nick Kossifidis <mick@ics.forth.gr>
Palmer Dabbelt76d2a042017-07-10 18:00:26 -07007 */
8
9#include <linux/init.h>
10#include <linux/mm.h>
Palmer Dabbelt76d2a042017-07-10 18:00:26 -070011#include <linux/memblock.h>
Mike Rapoport57c8a662018-10-30 15:09:49 -070012#include <linux/initrd.h>
Palmer Dabbelt76d2a042017-07-10 18:00:26 -070013#include <linux/swap.h>
Christoph Hellwig5ec9c4f2018-01-16 09:37:50 +010014#include <linux/sizes.h>
Anup Patel0651c262019-02-21 11:25:49 +053015#include <linux/of_fdt.h>
Nick Kossifidis56409752021-04-19 03:55:39 +030016#include <linux/of_reserved_mem.h>
Albert Ou922b0372019-09-27 16:14:18 -070017#include <linux/libfdt.h>
Zong Lid27c3c92020-03-10 00:55:41 +080018#include <linux/set_memory.h>
Kefeng Wangda815582020-10-31 14:01:12 +080019#include <linux/dma-map-ops.h>
Nick Kossifidise53d2812021-04-19 03:55:38 +030020#include <linux/crash_dump.h>
Palmer Dabbelt76d2a042017-07-10 18:00:26 -070021
Anup Patelf2c17aa2019-01-07 20:57:01 +053022#include <asm/fixmap.h>
Palmer Dabbelt76d2a042017-07-10 18:00:26 -070023#include <asm/tlbflush.h>
24#include <asm/sections.h>
Palmer Dabbelt2d268252020-04-14 13:43:24 +090025#include <asm/soc.h>
Palmer Dabbelt76d2a042017-07-10 18:00:26 -070026#include <asm/io.h>
Zong Lib422d282020-06-03 16:03:55 -070027#include <asm/ptdump.h>
Atish Patra4f0e8ee2020-11-18 16:38:29 -080028#include <asm/numa.h>
Palmer Dabbelt76d2a042017-07-10 18:00:26 -070029
Paul Walmsleyffaee272019-10-17 15:00:17 -070030#include "../kernel/head.h"
31
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -040032unsigned long kernel_virt_addr = KERNEL_LINK_ADDR;
33EXPORT_SYMBOL(kernel_virt_addr);
Vitaly Wool44c92252021-04-13 02:35:14 -040034#ifdef CONFIG_XIP_KERNEL
35#define kernel_virt_addr (*((unsigned long *)XIP_FIXUP(&kernel_virt_addr)))
36#endif
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -040037
Anup Patel387181d2019-03-26 08:03:47 +000038unsigned long empty_zero_page[PAGE_SIZE / sizeof(unsigned long)]
39 __page_aligned_bss;
40EXPORT_SYMBOL(empty_zero_page);
41
Anup Pateld90d45d2019-06-07 06:01:29 +000042extern char _start[];
Anup Patel8f3a2b42020-09-17 15:37:10 -070043#define DTB_EARLY_BASE_VA PGDIR_SIZE
Vitaly Wool44c92252021-04-13 02:35:14 -040044void *_dtb_early_va __initdata;
45uintptr_t _dtb_early_pa __initdata;
Anup Pateld90d45d2019-06-07 06:01:29 +000046
Atish Patrae8dcb612020-09-17 15:37:12 -070047struct pt_alloc_ops {
48 pte_t *(*get_pte_virt)(phys_addr_t pa);
49 phys_addr_t (*alloc_pte)(uintptr_t va);
50#ifndef __PAGETABLE_PMD_FOLDED
51 pmd_t *(*get_pmd_virt)(phys_addr_t pa);
52 phys_addr_t (*alloc_pmd)(uintptr_t va);
53#endif
54};
Palmer Dabbelt76d2a042017-07-10 18:00:26 -070055
Kefeng Wangda815582020-10-31 14:01:12 +080056static phys_addr_t dma32_phys_limit __ro_after_init;
57
Palmer Dabbelt76d2a042017-07-10 18:00:26 -070058static void __init zone_sizes_init(void)
59{
Christoph Hellwig5ec9c4f2018-01-16 09:37:50 +010060 unsigned long max_zone_pfns[MAX_NR_ZONES] = { 0, };
Palmer Dabbelt76d2a042017-07-10 18:00:26 -070061
Zong Lid5fad482018-06-25 16:49:37 +080062#ifdef CONFIG_ZONE_DMA32
Kefeng Wangda815582020-10-31 14:01:12 +080063 max_zone_pfns[ZONE_DMA32] = PFN_DOWN(dma32_phys_limit);
Zong Lid5fad482018-06-25 16:49:37 +080064#endif
Christoph Hellwig5ec9c4f2018-01-16 09:37:50 +010065 max_zone_pfns[ZONE_NORMAL] = max_low_pfn;
66
Mike Rapoport9691a072020-06-03 15:57:10 -070067 free_area_init(max_zone_pfns);
Palmer Dabbelt76d2a042017-07-10 18:00:26 -070068}
69
Jisheng Zhang19875012021-03-30 02:22:21 +080070static void __init setup_zero_page(void)
Palmer Dabbelt76d2a042017-07-10 18:00:26 -070071{
72 memset((void *)empty_zero_page, 0, PAGE_SIZE);
73}
74
Kefeng Wang8fa3cdf2020-05-14 19:53:35 +080075#if defined(CONFIG_MMU) && defined(CONFIG_DEBUG_VM)
Yash Shah2cc6c4a2019-11-18 05:58:34 +000076static inline void print_mlk(char *name, unsigned long b, unsigned long t)
77{
78 pr_notice("%12s : 0x%08lx - 0x%08lx (%4ld kB)\n", name, b, t,
79 (((t) - (b)) >> 10));
80}
81
82static inline void print_mlm(char *name, unsigned long b, unsigned long t)
83{
84 pr_notice("%12s : 0x%08lx - 0x%08lx (%4ld MB)\n", name, b, t,
85 (((t) - (b)) >> 20));
86}
87
Jisheng Zhang19875012021-03-30 02:22:21 +080088static void __init print_vm_layout(void)
Yash Shah2cc6c4a2019-11-18 05:58:34 +000089{
90 pr_notice("Virtual kernel memory layout:\n");
91 print_mlk("fixmap", (unsigned long)FIXADDR_START,
92 (unsigned long)FIXADDR_TOP);
93 print_mlm("pci io", (unsigned long)PCI_IO_START,
94 (unsigned long)PCI_IO_END);
95 print_mlm("vmemmap", (unsigned long)VMEMMAP_START,
96 (unsigned long)VMEMMAP_END);
97 print_mlm("vmalloc", (unsigned long)VMALLOC_START,
98 (unsigned long)VMALLOC_END);
99 print_mlm("lowmem", (unsigned long)PAGE_OFFSET,
100 (unsigned long)high_memory);
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400101#ifdef CONFIG_64BIT
102 print_mlm("kernel", (unsigned long)KERNEL_LINK_ADDR,
103 (unsigned long)ADDRESS_SPACE_END);
104#endif
Yash Shah2cc6c4a2019-11-18 05:58:34 +0000105}
106#else
107static void print_vm_layout(void) { }
108#endif /* CONFIG_DEBUG_VM */
109
Palmer Dabbelt76d2a042017-07-10 18:00:26 -0700110void __init mem_init(void)
111{
112#ifdef CONFIG_FLATMEM
113 BUG_ON(!mem_map);
114#endif /* CONFIG_FLATMEM */
115
116 high_memory = (void *)(__va(PFN_PHYS(max_low_pfn)));
Mike Rapoportc6ffc5c2018-10-30 15:09:30 -0700117 memblock_free_all();
Palmer Dabbelt76d2a042017-07-10 18:00:26 -0700118
119 mem_init_print_info(NULL);
Yash Shah2cc6c4a2019-11-18 05:58:34 +0000120 print_vm_layout();
Palmer Dabbelt76d2a042017-07-10 18:00:26 -0700121}
122
Anup Patel0651c262019-02-21 11:25:49 +0530123void __init setup_bootmem(void)
124{
Zong Liac51e002020-01-02 11:12:40 +0800125 phys_addr_t vmlinux_end = __pa_symbol(&_end);
126 phys_addr_t vmlinux_start = __pa_symbol(&_start);
Kefeng Wangdd2d0822021-02-09 09:01:51 +0800127 phys_addr_t dram_end = memblock_end_of_DRAM();
Atish Patraabb8e862021-01-11 15:45:02 -0800128 phys_addr_t max_mapped_addr = __pa(~(ulong)0);
Anup Patel0651c262019-02-21 11:25:49 +0530129
Vitaly Wool44c92252021-04-13 02:35:14 -0400130#ifdef CONFIG_XIP_KERNEL
131 vmlinux_start = __pa_symbol(&_sdata);
132#endif
133
Kefeng Wangdd2d0822021-02-09 09:01:51 +0800134 /* The maximal physical memory size is -PAGE_OFFSET. */
Atish Patrade043da2020-12-18 16:13:56 -0800135 memblock_enforce_memory_limit(-PAGE_OFFSET);
Anup Patel0651c262019-02-21 11:25:49 +0530136
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400137 /*
138 * Reserve from the start of the kernel to the end of the kernel
139 * and make sure we align the reservation on PMD_SIZE since we will
140 * map the kernel in the linear mapping as read-only: we do not want
141 * any allocation to happen between _end and the next pmd aligned page.
142 */
143 memblock_reserve(vmlinux_start, (vmlinux_end - vmlinux_start + PMD_SIZE - 1) & PMD_MASK);
Anup Pateld90d45d2019-06-07 06:01:29 +0000144
Atish Patraabb8e862021-01-11 15:45:02 -0800145 /*
146 * memblock allocator is not aware of the fact that last 4K bytes of
147 * the addressable memory can not be mapped because of IS_ERR_VALUE
148 * macro. Make sure that last 4k bytes are not usable by memblock
149 * if end of dram is equal to maximum addressable memory.
150 */
151 if (max_mapped_addr == (dram_end - 1))
152 memblock_set_current_limit(max_mapped_addr - 4096);
153
Kefeng Wangf6e5aed2021-02-25 14:54:17 +0800154 min_low_pfn = PFN_UP(memblock_start_of_DRAM());
155 max_low_pfn = max_pfn = PFN_DOWN(dram_end);
156
Kefeng Wangda815582020-10-31 14:01:12 +0800157 dma32_phys_limit = min(4UL * SZ_1G, (unsigned long)PFN_PHYS(max_low_pfn));
Guo Ren336e8eb2021-01-21 14:31:17 +0800158 set_max_mapnr(max_low_pfn - ARCH_PFN_OFFSET);
Anup Patel0651c262019-02-21 11:25:49 +0530159
Kefeng Wangaec33b52021-01-15 13:46:06 +0800160 reserve_initrd_mem();
Albert Ou922b0372019-09-27 16:14:18 -0700161 /*
Vitaly Woolf105aa92021-01-16 01:49:48 +0200162 * If DTB is built in, no need to reserve its memblock.
163 * Otherwise, do reserve it but avoid using
164 * early_init_fdt_reserve_self() since __pa() does
Albert Ou922b0372019-09-27 16:14:18 -0700165 * not work for DTB pointers that are fixmap addresses
166 */
Vitaly Woolf105aa92021-01-16 01:49:48 +0200167 if (!IS_ENABLED(CONFIG_BUILTIN_DTB))
168 memblock_reserve(dtb_early_pa, fdt_totalsize(dtb_early_va));
Albert Ou922b0372019-09-27 16:14:18 -0700169
Anup Patel0651c262019-02-21 11:25:49 +0530170 early_init_fdt_scan_reserved_mem();
Kefeng Wangda815582020-10-31 14:01:12 +0800171 dma_contiguous_reserve(dma32_phys_limit);
Anup Patel0651c262019-02-21 11:25:49 +0530172 memblock_allow_resize();
Anup Patel0651c262019-02-21 11:25:49 +0530173}
Anup Patel6f1e9e92019-02-13 16:38:36 +0530174
Vitaly Wool44c92252021-04-13 02:35:14 -0400175#ifdef CONFIG_XIP_KERNEL
176
177extern char _xiprom[], _exiprom[];
178extern char _sdata[], _edata[];
179
180#endif /* CONFIG_XIP_KERNEL */
181
Christoph Hellwig6bd33e12019-10-28 13:10:41 +0100182#ifdef CONFIG_MMU
Vitaly Wool44c92252021-04-13 02:35:14 -0400183static struct pt_alloc_ops _pt_ops __ro_after_init;
184
185#ifdef CONFIG_XIP_KERNEL
186#define pt_ops (*(struct pt_alloc_ops *)XIP_FIXUP(&_pt_ops))
187#else
188#define pt_ops _pt_ops
189#endif
Atish Patrae8dcb612020-09-17 15:37:12 -0700190
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400191/* Offset between linear mapping virtual address and kernel load address */
Jisheng Zhangde31ea42021-03-30 02:22:51 +0800192unsigned long va_pa_offset __ro_after_init;
Anup Patel387181d2019-03-26 08:03:47 +0000193EXPORT_SYMBOL(va_pa_offset);
Vitaly Wool44c92252021-04-13 02:35:14 -0400194#ifdef CONFIG_XIP_KERNEL
195#define va_pa_offset (*((unsigned long *)XIP_FIXUP(&va_pa_offset)))
196#endif
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400197/* Offset between kernel mapping virtual address and kernel load address */
Vitaly Wool44c92252021-04-13 02:35:14 -0400198#ifdef CONFIG_64BIT
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400199unsigned long va_kernel_pa_offset;
200EXPORT_SYMBOL(va_kernel_pa_offset);
201#endif
Vitaly Wool44c92252021-04-13 02:35:14 -0400202#ifdef CONFIG_XIP_KERNEL
203#define va_kernel_pa_offset (*((unsigned long *)XIP_FIXUP(&va_kernel_pa_offset)))
204#endif
205unsigned long va_kernel_xip_pa_offset;
206EXPORT_SYMBOL(va_kernel_xip_pa_offset);
207#ifdef CONFIG_XIP_KERNEL
208#define va_kernel_xip_pa_offset (*((unsigned long *)XIP_FIXUP(&va_kernel_xip_pa_offset)))
209#endif
Jisheng Zhangde31ea42021-03-30 02:22:51 +0800210unsigned long pfn_base __ro_after_init;
Anup Patel387181d2019-03-26 08:03:47 +0000211EXPORT_SYMBOL(pfn_base);
212
Anup Patel6f1e9e92019-02-13 16:38:36 +0530213pgd_t swapper_pg_dir[PTRS_PER_PGD] __page_aligned_bss;
Anup Patel671f9a32019-06-28 13:36:21 -0700214pgd_t trampoline_pg_dir[PTRS_PER_PGD] __page_aligned_bss;
Anup Patelf2c17aa2019-01-07 20:57:01 +0530215pte_t fixmap_pte[PTRS_PER_PTE] __page_aligned_bss;
Anup Patel671f9a32019-06-28 13:36:21 -0700216
Anup Patel671f9a32019-06-28 13:36:21 -0700217pgd_t early_pg_dir[PTRS_PER_PGD] __initdata __aligned(PAGE_SIZE);
Anup Patelf2c17aa2019-01-07 20:57:01 +0530218
Vitaly Wool44c92252021-04-13 02:35:14 -0400219#ifdef CONFIG_XIP_KERNEL
220#define trampoline_pg_dir ((pgd_t *)XIP_FIXUP(trampoline_pg_dir))
221#define fixmap_pte ((pte_t *)XIP_FIXUP(fixmap_pte))
222#define early_pg_dir ((pgd_t *)XIP_FIXUP(early_pg_dir))
223#endif /* CONFIG_XIP_KERNEL */
224
Anup Patelf2c17aa2019-01-07 20:57:01 +0530225void __set_fixmap(enum fixed_addresses idx, phys_addr_t phys, pgprot_t prot)
226{
227 unsigned long addr = __fix_to_virt(idx);
228 pte_t *ptep;
229
230 BUG_ON(idx <= FIX_HOLE || idx >= __end_of_fixed_addresses);
231
232 ptep = &fixmap_pte[pte_index(addr)];
233
Greentime Hu21190b72020-08-04 11:02:05 +0800234 if (pgprot_val(prot))
Anup Patelf2c17aa2019-01-07 20:57:01 +0530235 set_pte(ptep, pfn_pte(phys >> PAGE_SHIFT, prot));
Greentime Hu21190b72020-08-04 11:02:05 +0800236 else
Anup Patelf2c17aa2019-01-07 20:57:01 +0530237 pte_clear(&init_mm, addr, ptep);
Greentime Hu21190b72020-08-04 11:02:05 +0800238 local_flush_tlb_page(addr);
Anup Patelf2c17aa2019-01-07 20:57:01 +0530239}
240
Atish Patrae8dcb612020-09-17 15:37:12 -0700241static inline pte_t *__init get_pte_virt_early(phys_addr_t pa)
Anup Patel671f9a32019-06-28 13:36:21 -0700242{
Atish Patrae8dcb612020-09-17 15:37:12 -0700243 return (pte_t *)((uintptr_t)pa);
Anup Patel671f9a32019-06-28 13:36:21 -0700244}
245
Atish Patrae8dcb612020-09-17 15:37:12 -0700246static inline pte_t *__init get_pte_virt_fixmap(phys_addr_t pa)
247{
248 clear_fixmap(FIX_PTE);
249 return (pte_t *)set_fixmap_offset(FIX_PTE, pa);
250}
251
252static inline pte_t *get_pte_virt_late(phys_addr_t pa)
253{
254 return (pte_t *) __va(pa);
255}
256
257static inline phys_addr_t __init alloc_pte_early(uintptr_t va)
Anup Patel671f9a32019-06-28 13:36:21 -0700258{
259 /*
260 * We only create PMD or PGD early mappings so we
261 * should never reach here with MMU disabled.
262 */
Atish Patrae8dcb612020-09-17 15:37:12 -0700263 BUG();
264}
Anup Patel671f9a32019-06-28 13:36:21 -0700265
Atish Patrae8dcb612020-09-17 15:37:12 -0700266static inline phys_addr_t __init alloc_pte_fixmap(uintptr_t va)
267{
Anup Patel671f9a32019-06-28 13:36:21 -0700268 return memblock_phys_alloc(PAGE_SIZE, PAGE_SIZE);
269}
270
Atish Patrae8dcb612020-09-17 15:37:12 -0700271static phys_addr_t alloc_pte_late(uintptr_t va)
272{
273 unsigned long vaddr;
274
275 vaddr = __get_free_page(GFP_KERNEL);
zhouchuangaoe75e6bf2021-03-30 06:56:26 -0700276 BUG_ON(!vaddr || !pgtable_pte_page_ctor(virt_to_page(vaddr)));
277
Atish Patrae8dcb612020-09-17 15:37:12 -0700278 return __pa(vaddr);
279}
280
Anup Patel671f9a32019-06-28 13:36:21 -0700281static void __init create_pte_mapping(pte_t *ptep,
282 uintptr_t va, phys_addr_t pa,
283 phys_addr_t sz, pgprot_t prot)
284{
Mike Rapoport974b9b22020-06-08 21:33:10 -0700285 uintptr_t pte_idx = pte_index(va);
Anup Patel671f9a32019-06-28 13:36:21 -0700286
287 BUG_ON(sz != PAGE_SIZE);
288
Mike Rapoport974b9b22020-06-08 21:33:10 -0700289 if (pte_none(ptep[pte_idx]))
290 ptep[pte_idx] = pfn_pte(PFN_DOWN(pa), prot);
Anup Patel671f9a32019-06-28 13:36:21 -0700291}
292
293#ifndef __PAGETABLE_PMD_FOLDED
294
295pmd_t trampoline_pmd[PTRS_PER_PMD] __page_aligned_bss;
296pmd_t fixmap_pmd[PTRS_PER_PMD] __page_aligned_bss;
Alexandre Ghiti0f02de42021-02-21 09:22:33 -0500297pmd_t early_pmd[PTRS_PER_PMD] __initdata __aligned(PAGE_SIZE);
Anup Patel1074dd42020-11-04 12:07:13 +0530298pmd_t early_dtb_pmd[PTRS_PER_PMD] __initdata __aligned(PAGE_SIZE);
Anup Patel671f9a32019-06-28 13:36:21 -0700299
Vitaly Wool44c92252021-04-13 02:35:14 -0400300#ifdef CONFIG_XIP_KERNEL
301#define trampoline_pmd ((pmd_t *)XIP_FIXUP(trampoline_pmd))
302#define fixmap_pmd ((pmd_t *)XIP_FIXUP(fixmap_pmd))
303#define early_pmd ((pmd_t *)XIP_FIXUP(early_pmd))
304#endif /* CONFIG_XIP_KERNEL */
305
Atish Patrae8dcb612020-09-17 15:37:12 -0700306static pmd_t *__init get_pmd_virt_early(phys_addr_t pa)
Anup Patel671f9a32019-06-28 13:36:21 -0700307{
Atish Patrae8dcb612020-09-17 15:37:12 -0700308 /* Before MMU is enabled */
309 return (pmd_t *)((uintptr_t)pa);
Anup Patel671f9a32019-06-28 13:36:21 -0700310}
311
Atish Patrae8dcb612020-09-17 15:37:12 -0700312static pmd_t *__init get_pmd_virt_fixmap(phys_addr_t pa)
313{
314 clear_fixmap(FIX_PMD);
315 return (pmd_t *)set_fixmap_offset(FIX_PMD, pa);
316}
317
318static pmd_t *get_pmd_virt_late(phys_addr_t pa)
319{
320 return (pmd_t *) __va(pa);
321}
322
323static phys_addr_t __init alloc_pmd_early(uintptr_t va)
Anup Patel671f9a32019-06-28 13:36:21 -0700324{
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400325 BUG_ON((va - kernel_virt_addr) >> PGDIR_SHIFT);
Anup Patel671f9a32019-06-28 13:36:21 -0700326
Alexandre Ghiti0f02de42021-02-21 09:22:33 -0500327 return (uintptr_t)early_pmd;
Anup Patel671f9a32019-06-28 13:36:21 -0700328}
329
Atish Patrae8dcb612020-09-17 15:37:12 -0700330static phys_addr_t __init alloc_pmd_fixmap(uintptr_t va)
331{
332 return memblock_phys_alloc(PAGE_SIZE, PAGE_SIZE);
333}
334
335static phys_addr_t alloc_pmd_late(uintptr_t va)
336{
337 unsigned long vaddr;
338
339 vaddr = __get_free_page(GFP_KERNEL);
340 BUG_ON(!vaddr);
341 return __pa(vaddr);
342}
343
Anup Patel671f9a32019-06-28 13:36:21 -0700344static void __init create_pmd_mapping(pmd_t *pmdp,
345 uintptr_t va, phys_addr_t pa,
346 phys_addr_t sz, pgprot_t prot)
347{
348 pte_t *ptep;
349 phys_addr_t pte_phys;
Mike Rapoport974b9b22020-06-08 21:33:10 -0700350 uintptr_t pmd_idx = pmd_index(va);
Anup Patel671f9a32019-06-28 13:36:21 -0700351
352 if (sz == PMD_SIZE) {
Mike Rapoport974b9b22020-06-08 21:33:10 -0700353 if (pmd_none(pmdp[pmd_idx]))
354 pmdp[pmd_idx] = pfn_pmd(PFN_DOWN(pa), prot);
Anup Patel671f9a32019-06-28 13:36:21 -0700355 return;
356 }
357
Mike Rapoport974b9b22020-06-08 21:33:10 -0700358 if (pmd_none(pmdp[pmd_idx])) {
Atish Patrae8dcb612020-09-17 15:37:12 -0700359 pte_phys = pt_ops.alloc_pte(va);
Mike Rapoport974b9b22020-06-08 21:33:10 -0700360 pmdp[pmd_idx] = pfn_pmd(PFN_DOWN(pte_phys), PAGE_TABLE);
Atish Patrae8dcb612020-09-17 15:37:12 -0700361 ptep = pt_ops.get_pte_virt(pte_phys);
Anup Patel671f9a32019-06-28 13:36:21 -0700362 memset(ptep, 0, PAGE_SIZE);
363 } else {
Mike Rapoport974b9b22020-06-08 21:33:10 -0700364 pte_phys = PFN_PHYS(_pmd_pfn(pmdp[pmd_idx]));
Atish Patrae8dcb612020-09-17 15:37:12 -0700365 ptep = pt_ops.get_pte_virt(pte_phys);
Anup Patel671f9a32019-06-28 13:36:21 -0700366 }
367
368 create_pte_mapping(ptep, va, pa, sz, prot);
369}
370
371#define pgd_next_t pmd_t
Atish Patrae8dcb612020-09-17 15:37:12 -0700372#define alloc_pgd_next(__va) pt_ops.alloc_pmd(__va)
373#define get_pgd_next_virt(__pa) pt_ops.get_pmd_virt(__pa)
Anup Patel671f9a32019-06-28 13:36:21 -0700374#define create_pgd_next_mapping(__nextp, __va, __pa, __sz, __prot) \
375 create_pmd_mapping(__nextp, __va, __pa, __sz, __prot)
Anup Patel671f9a32019-06-28 13:36:21 -0700376#define fixmap_pgd_next fixmap_pmd
377#else
378#define pgd_next_t pte_t
Atish Patrae8dcb612020-09-17 15:37:12 -0700379#define alloc_pgd_next(__va) pt_ops.alloc_pte(__va)
380#define get_pgd_next_virt(__pa) pt_ops.get_pte_virt(__pa)
Anup Patel671f9a32019-06-28 13:36:21 -0700381#define create_pgd_next_mapping(__nextp, __va, __pa, __sz, __prot) \
382 create_pte_mapping(__nextp, __va, __pa, __sz, __prot)
Anup Patel671f9a32019-06-28 13:36:21 -0700383#define fixmap_pgd_next fixmap_pte
384#endif
385
Atish Patrab91540d2020-09-17 15:37:15 -0700386void __init create_pgd_mapping(pgd_t *pgdp,
Anup Patel671f9a32019-06-28 13:36:21 -0700387 uintptr_t va, phys_addr_t pa,
388 phys_addr_t sz, pgprot_t prot)
389{
390 pgd_next_t *nextp;
391 phys_addr_t next_phys;
Mike Rapoport974b9b22020-06-08 21:33:10 -0700392 uintptr_t pgd_idx = pgd_index(va);
Anup Patel671f9a32019-06-28 13:36:21 -0700393
394 if (sz == PGDIR_SIZE) {
Mike Rapoport974b9b22020-06-08 21:33:10 -0700395 if (pgd_val(pgdp[pgd_idx]) == 0)
396 pgdp[pgd_idx] = pfn_pgd(PFN_DOWN(pa), prot);
Anup Patel671f9a32019-06-28 13:36:21 -0700397 return;
398 }
399
Mike Rapoport974b9b22020-06-08 21:33:10 -0700400 if (pgd_val(pgdp[pgd_idx]) == 0) {
Anup Patel671f9a32019-06-28 13:36:21 -0700401 next_phys = alloc_pgd_next(va);
Mike Rapoport974b9b22020-06-08 21:33:10 -0700402 pgdp[pgd_idx] = pfn_pgd(PFN_DOWN(next_phys), PAGE_TABLE);
Anup Patel671f9a32019-06-28 13:36:21 -0700403 nextp = get_pgd_next_virt(next_phys);
404 memset(nextp, 0, PAGE_SIZE);
405 } else {
Mike Rapoport974b9b22020-06-08 21:33:10 -0700406 next_phys = PFN_PHYS(_pgd_pfn(pgdp[pgd_idx]));
Anup Patel671f9a32019-06-28 13:36:21 -0700407 nextp = get_pgd_next_virt(next_phys);
408 }
409
410 create_pgd_next_mapping(nextp, va, pa, sz, prot);
411}
412
413static uintptr_t __init best_map_size(phys_addr_t base, phys_addr_t size)
414{
Zong Li0fdc6362019-11-08 01:00:40 -0800415 /* Upgrade to PMD_SIZE mappings whenever possible */
416 if ((base & (PMD_SIZE - 1)) || (size & (PMD_SIZE - 1)))
417 return PAGE_SIZE;
Anup Patel671f9a32019-06-28 13:36:21 -0700418
Zong Li0fdc6362019-11-08 01:00:40 -0800419 return PMD_SIZE;
Anup Patel671f9a32019-06-28 13:36:21 -0700420}
421
Vitaly Wool44c92252021-04-13 02:35:14 -0400422#ifdef CONFIG_XIP_KERNEL
423/* called from head.S with MMU off */
424asmlinkage void __init __copy_data(void)
425{
426 void *from = (void *)(&_sdata);
427 void *end = (void *)(&_end);
428 void *to = (void *)CONFIG_PHYS_RAM_BASE;
429 size_t sz = (size_t)(end - from + 1);
430
431 memcpy(to, from, sz);
432}
433#endif
434
Anup Patel387181d2019-03-26 08:03:47 +0000435/*
436 * setup_vm() is called from head.S with MMU-off.
437 *
438 * Following requirements should be honoured for setup_vm() to work
439 * correctly:
440 * 1) It should use PC-relative addressing for accessing kernel symbols.
441 * To achieve this we always use GCC cmodel=medany.
442 * 2) The compiler instrumentation for FTRACE will not work for setup_vm()
443 * so disable compiler instrumentation when FTRACE is enabled.
444 *
445 * Currently, the above requirements are honoured by using custom CFLAGS
446 * for init.o in mm/Makefile.
447 */
448
449#ifndef __riscv_cmodel_medany
Paul Walmsley6a527b62019-10-17 14:45:58 -0700450#error "setup_vm() is called from head.S before relocate so it should not use absolute addressing."
Anup Patel387181d2019-03-26 08:03:47 +0000451#endif
452
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400453uintptr_t load_pa, load_sz;
Vitaly Wool44c92252021-04-13 02:35:14 -0400454#ifdef CONFIG_XIP_KERNEL
455#define load_pa (*((uintptr_t *)XIP_FIXUP(&load_pa)))
456#define load_sz (*((uintptr_t *)XIP_FIXUP(&load_sz)))
457#endif
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400458
Vitaly Wool44c92252021-04-13 02:35:14 -0400459#ifdef CONFIG_XIP_KERNEL
460uintptr_t xiprom, xiprom_sz;
461#define xiprom_sz (*((uintptr_t *)XIP_FIXUP(&xiprom_sz)))
462#define xiprom (*((uintptr_t *)XIP_FIXUP(&xiprom)))
463
464static void __init create_kernel_page_table(pgd_t *pgdir, uintptr_t map_size)
465{
466 uintptr_t va, end_va;
467
468 /* Map the flash resident part */
469 end_va = kernel_virt_addr + xiprom_sz;
470 for (va = kernel_virt_addr; va < end_va; va += map_size)
471 create_pgd_mapping(pgdir, va,
472 xiprom + (va - kernel_virt_addr),
473 map_size, PAGE_KERNEL_EXEC);
474
475 /* Map the data in RAM */
476 end_va = kernel_virt_addr + XIP_OFFSET + load_sz;
477 for (va = kernel_virt_addr + XIP_OFFSET; va < end_va; va += map_size)
478 create_pgd_mapping(pgdir, va,
479 load_pa + (va - (kernel_virt_addr + XIP_OFFSET)),
480 map_size, PAGE_KERNEL);
481}
482#else
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400483static void __init create_kernel_page_table(pgd_t *pgdir, uintptr_t map_size)
484{
485 uintptr_t va, end_va;
486
487 end_va = kernel_virt_addr + load_sz;
488 for (va = kernel_virt_addr; va < end_va; va += map_size)
489 create_pgd_mapping(pgdir, va,
490 load_pa + (va - kernel_virt_addr),
491 map_size, PAGE_KERNEL_EXEC);
492}
Vitaly Wool44c92252021-04-13 02:35:14 -0400493#endif
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400494
Anup Patel671f9a32019-06-28 13:36:21 -0700495asmlinkage void __init setup_vm(uintptr_t dtb_pa)
Anup Patel6f1e9e92019-02-13 16:38:36 +0530496{
Vitaly Wool44c92252021-04-13 02:35:14 -0400497 uintptr_t __maybe_unused pa;
Alexandre Ghiti0f02de42021-02-21 09:22:33 -0500498 uintptr_t map_size;
Atish Patra6262f662020-09-17 15:37:11 -0700499#ifndef __PAGETABLE_PMD_FOLDED
500 pmd_t fix_bmap_spmd, fix_bmap_epmd;
501#endif
Vitaly Wool44c92252021-04-13 02:35:14 -0400502
503#ifdef CONFIG_XIP_KERNEL
504 xiprom = (uintptr_t)CONFIG_XIP_PHYS_ADDR;
505 xiprom_sz = (uintptr_t)(&_exiprom) - (uintptr_t)(&_xiprom);
506
507 load_pa = (uintptr_t)CONFIG_PHYS_RAM_BASE;
508 load_sz = (uintptr_t)(&_end) - (uintptr_t)(&_sdata);
509
510 va_kernel_xip_pa_offset = kernel_virt_addr - xiprom;
511#else
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400512 load_pa = (uintptr_t)(&_start);
513 load_sz = (uintptr_t)(&_end) - load_pa;
Vitaly Wool44c92252021-04-13 02:35:14 -0400514#endif
Anup Patel6f1e9e92019-02-13 16:38:36 +0530515
Anup Patel671f9a32019-06-28 13:36:21 -0700516 va_pa_offset = PAGE_OFFSET - load_pa;
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400517#ifdef CONFIG_64BIT
518 va_kernel_pa_offset = kernel_virt_addr - load_pa;
519#endif
520
Anup Patel671f9a32019-06-28 13:36:21 -0700521 pfn_base = PFN_DOWN(load_pa);
522
523 /*
524 * Enforce boot alignment requirements of RV32 and
525 * RV64 by only allowing PMD or PGD mappings.
526 */
Alexandre Ghiti0f02de42021-02-21 09:22:33 -0500527 map_size = PMD_SIZE;
Anup Patel6f1e9e92019-02-13 16:38:36 +0530528
529 /* Sanity check alignment and size */
530 BUG_ON((PAGE_OFFSET % PGDIR_SIZE) != 0);
Anup Patel671f9a32019-06-28 13:36:21 -0700531 BUG_ON((load_pa % map_size) != 0);
Anup Patel671f9a32019-06-28 13:36:21 -0700532
Atish Patrae8dcb612020-09-17 15:37:12 -0700533 pt_ops.alloc_pte = alloc_pte_early;
534 pt_ops.get_pte_virt = get_pte_virt_early;
535#ifndef __PAGETABLE_PMD_FOLDED
536 pt_ops.alloc_pmd = alloc_pmd_early;
537 pt_ops.get_pmd_virt = get_pmd_virt_early;
538#endif
Anup Patel671f9a32019-06-28 13:36:21 -0700539 /* Setup early PGD for fixmap */
540 create_pgd_mapping(early_pg_dir, FIXADDR_START,
541 (uintptr_t)fixmap_pgd_next, PGDIR_SIZE, PAGE_TABLE);
Anup Patel6f1e9e92019-02-13 16:38:36 +0530542
543#ifndef __PAGETABLE_PMD_FOLDED
Anup Patel671f9a32019-06-28 13:36:21 -0700544 /* Setup fixmap PMD */
545 create_pmd_mapping(fixmap_pmd, FIXADDR_START,
546 (uintptr_t)fixmap_pte, PMD_SIZE, PAGE_TABLE);
547 /* Setup trampoline PGD and PMD */
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400548 create_pgd_mapping(trampoline_pg_dir, kernel_virt_addr,
Anup Patel671f9a32019-06-28 13:36:21 -0700549 (uintptr_t)trampoline_pmd, PGDIR_SIZE, PAGE_TABLE);
Vitaly Wool44c92252021-04-13 02:35:14 -0400550#ifdef CONFIG_XIP_KERNEL
551 create_pmd_mapping(trampoline_pmd, kernel_virt_addr,
552 xiprom, PMD_SIZE, PAGE_KERNEL_EXEC);
553#else
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400554 create_pmd_mapping(trampoline_pmd, kernel_virt_addr,
Anup Patel671f9a32019-06-28 13:36:21 -0700555 load_pa, PMD_SIZE, PAGE_KERNEL_EXEC);
Vitaly Wool44c92252021-04-13 02:35:14 -0400556#endif
Anup Patel6f1e9e92019-02-13 16:38:36 +0530557#else
Anup Patel671f9a32019-06-28 13:36:21 -0700558 /* Setup trampoline PGD */
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400559 create_pgd_mapping(trampoline_pg_dir, kernel_virt_addr,
Anup Patel671f9a32019-06-28 13:36:21 -0700560 load_pa, PGDIR_SIZE, PAGE_KERNEL_EXEC);
561#endif
Anup Patel6f1e9e92019-02-13 16:38:36 +0530562
Anup Patel671f9a32019-06-28 13:36:21 -0700563 /*
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400564 * Setup early PGD covering entire kernel which will allow
Anup Patel671f9a32019-06-28 13:36:21 -0700565 * us to reach paging_init(). We map all memory banks later
566 * in setup_vm_final() below.
567 */
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400568 create_kernel_page_table(early_pg_dir, map_size);
Anup Patelf2c17aa2019-01-07 20:57:01 +0530569
Anup Patel1074dd42020-11-04 12:07:13 +0530570#ifndef __PAGETABLE_PMD_FOLDED
571 /* Setup early PMD for DTB */
572 create_pgd_mapping(early_pg_dir, DTB_EARLY_BASE_VA,
573 (uintptr_t)early_dtb_pmd, PGDIR_SIZE, PAGE_TABLE);
Vitaly Woolf105aa92021-01-16 01:49:48 +0200574#ifndef CONFIG_BUILTIN_DTB
Anup Patel1074dd42020-11-04 12:07:13 +0530575 /* Create two consecutive PMD mappings for FDT early scan */
576 pa = dtb_pa & ~(PMD_SIZE - 1);
577 create_pmd_mapping(early_dtb_pmd, DTB_EARLY_BASE_VA,
578 pa, PMD_SIZE, PAGE_KERNEL);
579 create_pmd_mapping(early_dtb_pmd, DTB_EARLY_BASE_VA + PMD_SIZE,
580 pa + PMD_SIZE, PMD_SIZE, PAGE_KERNEL);
581 dtb_early_va = (void *)DTB_EARLY_BASE_VA + (dtb_pa & (PMD_SIZE - 1));
Vitaly Woolf105aa92021-01-16 01:49:48 +0200582#else /* CONFIG_BUILTIN_DTB */
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400583#ifdef CONFIG_64BIT
584 /*
585 * __va can't be used since it would return a linear mapping address
586 * whereas dtb_early_va will be used before setup_vm_final installs
587 * the linear mapping.
588 */
Vitaly Wool44c92252021-04-13 02:35:14 -0400589 dtb_early_va = kernel_mapping_pa_to_va(XIP_FIXUP(dtb_pa));
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400590#else
Vitaly Woolf105aa92021-01-16 01:49:48 +0200591 dtb_early_va = __va(dtb_pa);
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400592#endif /* CONFIG_64BIT */
Vitaly Woolf105aa92021-01-16 01:49:48 +0200593#endif /* CONFIG_BUILTIN_DTB */
Anup Patel1074dd42020-11-04 12:07:13 +0530594#else
Vitaly Woolf105aa92021-01-16 01:49:48 +0200595#ifndef CONFIG_BUILTIN_DTB
Anup Patel8f3a2b42020-09-17 15:37:10 -0700596 /* Create two consecutive PGD mappings for FDT early scan */
597 pa = dtb_pa & ~(PGDIR_SIZE - 1);
598 create_pgd_mapping(early_pg_dir, DTB_EARLY_BASE_VA,
599 pa, PGDIR_SIZE, PAGE_KERNEL);
600 create_pgd_mapping(early_pg_dir, DTB_EARLY_BASE_VA + PGDIR_SIZE,
601 pa + PGDIR_SIZE, PGDIR_SIZE, PAGE_KERNEL);
602 dtb_early_va = (void *)DTB_EARLY_BASE_VA + (dtb_pa & (PGDIR_SIZE - 1));
Vitaly Woolf105aa92021-01-16 01:49:48 +0200603#else /* CONFIG_BUILTIN_DTB */
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400604#ifdef CONFIG_64BIT
Vitaly Wool44c92252021-04-13 02:35:14 -0400605 dtb_early_va = kernel_mapping_pa_to_va(XIP_FIXUP(dtb_pa));
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400606#else
Vitaly Woolf105aa92021-01-16 01:49:48 +0200607 dtb_early_va = __va(dtb_pa);
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400608#endif /* CONFIG_64BIT */
Vitaly Woolf105aa92021-01-16 01:49:48 +0200609#endif /* CONFIG_BUILTIN_DTB */
Anup Patel1074dd42020-11-04 12:07:13 +0530610#endif
Albert Ou922b0372019-09-27 16:14:18 -0700611 dtb_early_pa = dtb_pa;
Atish Patra6262f662020-09-17 15:37:11 -0700612
613 /*
614 * Bootime fixmap only can handle PMD_SIZE mapping. Thus, boot-ioremap
615 * range can not span multiple pmds.
616 */
617 BUILD_BUG_ON((__fix_to_virt(FIX_BTMAP_BEGIN) >> PMD_SHIFT)
618 != (__fix_to_virt(FIX_BTMAP_END) >> PMD_SHIFT));
619
620#ifndef __PAGETABLE_PMD_FOLDED
621 /*
622 * Early ioremap fixmap is already created as it lies within first 2MB
623 * of fixmap region. We always map PMD_SIZE. Thus, both FIX_BTMAP_END
624 * FIX_BTMAP_BEGIN should lie in the same pmd. Verify that and warn
625 * the user if not.
626 */
627 fix_bmap_spmd = fixmap_pmd[pmd_index(__fix_to_virt(FIX_BTMAP_BEGIN))];
628 fix_bmap_epmd = fixmap_pmd[pmd_index(__fix_to_virt(FIX_BTMAP_END))];
629 if (pmd_val(fix_bmap_spmd) != pmd_val(fix_bmap_epmd)) {
630 WARN_ON(1);
631 pr_warn("fixmap btmap start [%08lx] != end [%08lx]\n",
632 pmd_val(fix_bmap_spmd), pmd_val(fix_bmap_epmd));
633 pr_warn("fix_to_virt(FIX_BTMAP_BEGIN): %08lx\n",
634 fix_to_virt(FIX_BTMAP_BEGIN));
635 pr_warn("fix_to_virt(FIX_BTMAP_END): %08lx\n",
636 fix_to_virt(FIX_BTMAP_END));
637
638 pr_warn("FIX_BTMAP_END: %d\n", FIX_BTMAP_END);
639 pr_warn("FIX_BTMAP_BEGIN: %d\n", FIX_BTMAP_BEGIN);
640 }
641#endif
Anup Patel671f9a32019-06-28 13:36:21 -0700642}
643
Vitaly Wool44c92252021-04-13 02:35:14 -0400644#if defined(CONFIG_64BIT) && !defined(CONFIG_XIP_KERNEL)
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400645void protect_kernel_linear_mapping_text_rodata(void)
646{
647 unsigned long text_start = (unsigned long)lm_alias(_start);
648 unsigned long init_text_start = (unsigned long)lm_alias(__init_text_begin);
649 unsigned long rodata_start = (unsigned long)lm_alias(__start_rodata);
650 unsigned long data_start = (unsigned long)lm_alias(_data);
651
652 set_memory_ro(text_start, (init_text_start - text_start) >> PAGE_SHIFT);
653 set_memory_nx(text_start, (init_text_start - text_start) >> PAGE_SHIFT);
654
655 set_memory_ro(rodata_start, (data_start - rodata_start) >> PAGE_SHIFT);
656 set_memory_nx(rodata_start, (data_start - rodata_start) >> PAGE_SHIFT);
657}
658#endif
659
Anup Patel671f9a32019-06-28 13:36:21 -0700660static void __init setup_vm_final(void)
661{
662 uintptr_t va, map_size;
663 phys_addr_t pa, start, end;
Mike Rapoportb10d6bc2020-10-13 16:58:08 -0700664 u64 i;
Anup Patel671f9a32019-06-28 13:36:21 -0700665
Atish Patrae8dcb612020-09-17 15:37:12 -0700666 /**
667 * MMU is enabled at this point. But page table setup is not complete yet.
668 * fixmap page table alloc functions should be used at this point
669 */
670 pt_ops.alloc_pte = alloc_pte_fixmap;
671 pt_ops.get_pte_virt = get_pte_virt_fixmap;
672#ifndef __PAGETABLE_PMD_FOLDED
673 pt_ops.alloc_pmd = alloc_pmd_fixmap;
674 pt_ops.get_pmd_virt = get_pmd_virt_fixmap;
675#endif
Anup Patel671f9a32019-06-28 13:36:21 -0700676 /* Setup swapper PGD for fixmap */
677 create_pgd_mapping(swapper_pg_dir, FIXADDR_START,
Zong Liac51e002020-01-02 11:12:40 +0800678 __pa_symbol(fixmap_pgd_next),
Anup Patel671f9a32019-06-28 13:36:21 -0700679 PGDIR_SIZE, PAGE_TABLE);
680
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400681 /* Map all memory banks in the linear mapping */
Mike Rapoportb10d6bc2020-10-13 16:58:08 -0700682 for_each_mem_range(i, &start, &end) {
Anup Patel671f9a32019-06-28 13:36:21 -0700683 if (start >= end)
684 break;
Anup Patel671f9a32019-06-28 13:36:21 -0700685 if (start <= __pa(PAGE_OFFSET) &&
686 __pa(PAGE_OFFSET) < end)
687 start = __pa(PAGE_OFFSET);
688
689 map_size = best_map_size(start, end - start);
690 for (pa = start; pa < end; pa += map_size) {
691 va = (uintptr_t)__va(pa);
692 create_pgd_mapping(swapper_pg_dir, va, pa,
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400693 map_size,
694#ifdef CONFIG_64BIT
695 PAGE_KERNEL
696#else
697 PAGE_KERNEL_EXEC
698#endif
699 );
700
Anup Patel671f9a32019-06-28 13:36:21 -0700701 }
Anup Patel6f1e9e92019-02-13 16:38:36 +0530702 }
Anup Patelf2c17aa2019-01-07 20:57:01 +0530703
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400704#ifdef CONFIG_64BIT
705 /* Map the kernel */
706 create_kernel_page_table(swapper_pg_dir, PMD_SIZE);
707#endif
708
Anup Patel671f9a32019-06-28 13:36:21 -0700709 /* Clear fixmap PTE and PMD mappings */
710 clear_fixmap(FIX_PTE);
711 clear_fixmap(FIX_PMD);
712
713 /* Move to swapper page table */
Zong Liac51e002020-01-02 11:12:40 +0800714 csr_write(CSR_SATP, PFN_DOWN(__pa_symbol(swapper_pg_dir)) | SATP_MODE);
Anup Patel671f9a32019-06-28 13:36:21 -0700715 local_flush_tlb_all();
Atish Patrae8dcb612020-09-17 15:37:12 -0700716
717 /* generic page allocation functions must be used to setup page table */
718 pt_ops.alloc_pte = alloc_pte_late;
719 pt_ops.get_pte_virt = get_pte_virt_late;
720#ifndef __PAGETABLE_PMD_FOLDED
721 pt_ops.alloc_pmd = alloc_pmd_late;
722 pt_ops.get_pmd_virt = get_pmd_virt_late;
723#endif
Anup Patel671f9a32019-06-28 13:36:21 -0700724}
Christoph Hellwig6bd33e12019-10-28 13:10:41 +0100725#else
726asmlinkage void __init setup_vm(uintptr_t dtb_pa)
727{
728 dtb_early_va = (void *)dtb_pa;
Atish Patraa78c6f52020-10-01 12:04:56 -0700729 dtb_early_pa = dtb_pa;
Christoph Hellwig6bd33e12019-10-28 13:10:41 +0100730}
731
732static inline void setup_vm_final(void)
733{
734}
735#endif /* CONFIG_MMU */
Anup Patel671f9a32019-06-28 13:36:21 -0700736
Zong Lid27c3c92020-03-10 00:55:41 +0800737#ifdef CONFIG_STRICT_KERNEL_RWX
Jisheng Zhang19875012021-03-30 02:22:21 +0800738void __init protect_kernel_text_data(void)
Zong Lid27c3c92020-03-10 00:55:41 +0800739{
Atish Patra19a00862020-11-04 16:04:38 -0800740 unsigned long text_start = (unsigned long)_start;
741 unsigned long init_text_start = (unsigned long)__init_text_begin;
742 unsigned long init_data_start = (unsigned long)__init_data_begin;
Zong Lid27c3c92020-03-10 00:55:41 +0800743 unsigned long rodata_start = (unsigned long)__start_rodata;
744 unsigned long data_start = (unsigned long)_data;
745 unsigned long max_low = (unsigned long)(__va(PFN_PHYS(max_low_pfn)));
746
Atish Patra19a00862020-11-04 16:04:38 -0800747 set_memory_ro(text_start, (init_text_start - text_start) >> PAGE_SHIFT);
748 set_memory_ro(init_text_start, (init_data_start - init_text_start) >> PAGE_SHIFT);
749 set_memory_nx(init_data_start, (rodata_start - init_data_start) >> PAGE_SHIFT);
750 /* rodata section is marked readonly in mark_rodata_ro */
Zong Lid27c3c92020-03-10 00:55:41 +0800751 set_memory_nx(rodata_start, (data_start - rodata_start) >> PAGE_SHIFT);
752 set_memory_nx(data_start, (max_low - data_start) >> PAGE_SHIFT);
Atish Patra19a00862020-11-04 16:04:38 -0800753}
754
755void mark_rodata_ro(void)
756{
757 unsigned long rodata_start = (unsigned long)__start_rodata;
758 unsigned long data_start = (unsigned long)_data;
759
760 set_memory_ro(rodata_start, (data_start - rodata_start) >> PAGE_SHIFT);
Zong Lib422d282020-06-03 16:03:55 -0700761
762 debug_checkwx();
Zong Lid27c3c92020-03-10 00:55:41 +0800763}
764#endif
765
Nick Kossifidise53d2812021-04-19 03:55:38 +0300766#ifdef CONFIG_KEXEC_CORE
767/*
768 * reserve_crashkernel() - reserves memory for crash kernel
769 *
770 * This function reserves memory area given in "crashkernel=" kernel command
771 * line parameter. The memory reserved is used by dump capture kernel when
772 * primary kernel is crashing.
773 */
774static void __init reserve_crashkernel(void)
775{
776 unsigned long long crash_base = 0;
777 unsigned long long crash_size = 0;
778 unsigned long search_start = memblock_start_of_DRAM();
779 unsigned long search_end = memblock_end_of_DRAM();
780
781 int ret = 0;
782
Nick Kossifidis56409752021-04-19 03:55:39 +0300783 /*
784 * Don't reserve a region for a crash kernel on a crash kernel
785 * since it doesn't make much sense and we have limited memory
786 * resources.
787 */
788#ifdef CONFIG_CRASH_DUMP
789 if (is_kdump_kernel()) {
790 pr_info("crashkernel: ignoring reservation request\n");
791 return;
792 }
793#endif
794
Nick Kossifidise53d2812021-04-19 03:55:38 +0300795 ret = parse_crashkernel(boot_command_line, memblock_phys_mem_size(),
796 &crash_size, &crash_base);
797 if (ret || !crash_size)
798 return;
799
800 crash_size = PAGE_ALIGN(crash_size);
801
802 if (crash_base == 0) {
803 /*
804 * Current riscv boot protocol requires 2MB alignment for
805 * RV64 and 4MB alignment for RV32 (hugepage size)
806 */
807 crash_base = memblock_find_in_range(search_start, search_end,
808 crash_size, PMD_SIZE);
809
810 if (crash_base == 0) {
811 pr_warn("crashkernel: couldn't allocate %lldKB\n",
812 crash_size >> 10);
813 return;
814 }
815 } else {
816 /* User specifies base address explicitly. */
817 if (!memblock_is_region_memory(crash_base, crash_size)) {
818 pr_warn("crashkernel: requested region is not memory\n");
819 return;
820 }
821
822 if (memblock_is_region_reserved(crash_base, crash_size)) {
823 pr_warn("crashkernel: requested region is reserved\n");
824 return;
825 }
826
827
828 if (!IS_ALIGNED(crash_base, PMD_SIZE)) {
829 pr_warn("crashkernel: requested region is misaligned\n");
830 return;
831 }
832 }
833 memblock_reserve(crash_base, crash_size);
834
835 pr_info("crashkernel: reserved 0x%016llx - 0x%016llx (%lld MB)\n",
836 crash_base, crash_base + crash_size, crash_size >> 20);
837
838 crashk_res.start = crash_base;
839 crashk_res.end = crash_base + crash_size - 1;
840}
841#endif /* CONFIG_KEXEC_CORE */
842
Nick Kossifidis56409752021-04-19 03:55:39 +0300843#ifdef CONFIG_CRASH_DUMP
844/*
845 * We keep track of the ELF core header of the crashed
846 * kernel with a reserved-memory region with compatible
847 * string "linux,elfcorehdr". Here we register a callback
848 * to populate elfcorehdr_addr/size when this region is
849 * present. Note that this region will be marked as
850 * reserved once we call early_init_fdt_scan_reserved_mem()
851 * later on.
852 */
853static int elfcore_hdr_setup(struct reserved_mem *rmem)
854{
855 elfcorehdr_addr = rmem->base;
856 elfcorehdr_size = rmem->size;
857 return 0;
858}
859
860RESERVEDMEM_OF_DECLARE(elfcorehdr, "linux,elfcorehdr", elfcore_hdr_setup);
861#endif
862
Anup Patel671f9a32019-06-28 13:36:21 -0700863void __init paging_init(void)
864{
865 setup_vm_final();
866 setup_zero_page();
Atish Patracbd34f42020-11-18 16:38:27 -0800867}
868
869void __init misc_mem_init(void)
870{
Kefeng Wangf6e5aed2021-02-25 14:54:17 +0800871 early_memtest(min_low_pfn << PAGE_SHIFT, max_low_pfn << PAGE_SHIFT);
Atish Patra4f0e8ee2020-11-18 16:38:29 -0800872 arch_numa_init();
Atish Patracbd34f42020-11-18 16:38:27 -0800873 sparse_init();
Anup Patel671f9a32019-06-28 13:36:21 -0700874 zone_sizes_init();
Nick Kossifidise53d2812021-04-19 03:55:38 +0300875#ifdef CONFIG_KEXEC_CORE
876 reserve_crashkernel();
877#endif
Atish Patra4f0e8ee2020-11-18 16:38:29 -0800878 memblock_dump_all();
Anup Patel6f1e9e92019-02-13 16:38:36 +0530879}
Logan Gunthorped95f1a52019-08-28 15:40:54 -0600880
Kefeng Wang9fe57d82019-10-23 11:23:02 +0800881#ifdef CONFIG_SPARSEMEM_VMEMMAP
Logan Gunthorped95f1a52019-08-28 15:40:54 -0600882int __meminit vmemmap_populate(unsigned long start, unsigned long end, int node,
883 struct vmem_altmap *altmap)
884{
Anshuman Khandual1d9cfee2020-08-06 23:23:19 -0700885 return vmemmap_populate_basepages(start, end, node, NULL);
Logan Gunthorped95f1a52019-08-28 15:40:54 -0600886}
887#endif