blob: 424d7777f4dfc437a55417e8638d776bdd6edebc [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>
Kefeng Wangce3aca02021-06-02 16:55:16 +080014#include <linux/swiotlb.h>
Christoph Hellwig5ec9c4f2018-01-16 09:37:50 +010015#include <linux/sizes.h>
Anup Patel0651c262019-02-21 11:25:49 +053016#include <linux/of_fdt.h>
Nick Kossifidis56409752021-04-19 03:55:39 +030017#include <linux/of_reserved_mem.h>
Albert Ou922b0372019-09-27 16:14:18 -070018#include <linux/libfdt.h>
Zong Lid27c3c92020-03-10 00:55:41 +080019#include <linux/set_memory.h>
Kefeng Wangda815582020-10-31 14:01:12 +080020#include <linux/dma-map-ops.h>
Nick Kossifidise53d2812021-04-19 03:55:38 +030021#include <linux/crash_dump.h>
Kefeng Wang8ba1a8b2021-07-30 20:48:41 +080022#include <linux/hugetlb.h>
Palmer Dabbelt76d2a042017-07-10 18:00:26 -070023
Anup Patelf2c17aa2019-01-07 20:57:01 +053024#include <asm/fixmap.h>
Palmer Dabbelt76d2a042017-07-10 18:00:26 -070025#include <asm/tlbflush.h>
26#include <asm/sections.h>
Palmer Dabbelt2d268252020-04-14 13:43:24 +090027#include <asm/soc.h>
Palmer Dabbelt76d2a042017-07-10 18:00:26 -070028#include <asm/io.h>
Zong Lib422d282020-06-03 16:03:55 -070029#include <asm/ptdump.h>
Atish Patra4f0e8ee2020-11-18 16:38:29 -080030#include <asm/numa.h>
Palmer Dabbelt76d2a042017-07-10 18:00:26 -070031
Paul Walmsleyffaee272019-10-17 15:00:17 -070032#include "../kernel/head.h"
33
Alexandre Ghiti658e2c52021-06-17 15:53:07 +020034struct kernel_mapping kernel_map __ro_after_init;
35EXPORT_SYMBOL(kernel_map);
Vitaly Wool44c92252021-04-13 02:35:14 -040036#ifdef CONFIG_XIP_KERNEL
Alexandre Ghiti658e2c52021-06-17 15:53:07 +020037#define kernel_map (*(struct kernel_mapping *)XIP_FIXUP(&kernel_map))
38#endif
39
Alexandre Ghiti6d7f91d2021-07-21 09:59:35 +020040phys_addr_t phys_ram_base __ro_after_init;
41EXPORT_SYMBOL(phys_ram_base);
42
Alexandre Ghiti658e2c52021-06-17 15:53:07 +020043#ifdef CONFIG_XIP_KERNEL
Vitaly Woolf9ace4e2021-10-11 11:14:14 +020044extern char _xiprom[], _exiprom[], __data_loc;
Vitaly Wool44c92252021-04-13 02:35:14 -040045#endif
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -040046
Anup Patel387181d2019-03-26 08:03:47 +000047unsigned long empty_zero_page[PAGE_SIZE / sizeof(unsigned long)]
48 __page_aligned_bss;
49EXPORT_SYMBOL(empty_zero_page);
50
Anup Pateld90d45d2019-06-07 06:01:29 +000051extern char _start[];
Anup Patel8f3a2b42020-09-17 15:37:10 -070052#define DTB_EARLY_BASE_VA PGDIR_SIZE
Vitaly Wool44c92252021-04-13 02:35:14 -040053void *_dtb_early_va __initdata;
54uintptr_t _dtb_early_pa __initdata;
Anup Pateld90d45d2019-06-07 06:01:29 +000055
Atish Patrae8dcb612020-09-17 15:37:12 -070056struct pt_alloc_ops {
57 pte_t *(*get_pte_virt)(phys_addr_t pa);
58 phys_addr_t (*alloc_pte)(uintptr_t va);
59#ifndef __PAGETABLE_PMD_FOLDED
60 pmd_t *(*get_pmd_virt)(phys_addr_t pa);
61 phys_addr_t (*alloc_pmd)(uintptr_t va);
62#endif
63};
Palmer Dabbelt76d2a042017-07-10 18:00:26 -070064
Jisheng Zhang01062352021-05-16 21:15:56 +080065static phys_addr_t dma32_phys_limit __initdata;
Kefeng Wangda815582020-10-31 14:01:12 +080066
Palmer Dabbelt76d2a042017-07-10 18:00:26 -070067static void __init zone_sizes_init(void)
68{
Christoph Hellwig5ec9c4f2018-01-16 09:37:50 +010069 unsigned long max_zone_pfns[MAX_NR_ZONES] = { 0, };
Palmer Dabbelt76d2a042017-07-10 18:00:26 -070070
Zong Lid5fad482018-06-25 16:49:37 +080071#ifdef CONFIG_ZONE_DMA32
Kefeng Wangda815582020-10-31 14:01:12 +080072 max_zone_pfns[ZONE_DMA32] = PFN_DOWN(dma32_phys_limit);
Zong Lid5fad482018-06-25 16:49:37 +080073#endif
Christoph Hellwig5ec9c4f2018-01-16 09:37:50 +010074 max_zone_pfns[ZONE_NORMAL] = max_low_pfn;
75
Mike Rapoport9691a072020-06-03 15:57:10 -070076 free_area_init(max_zone_pfns);
Palmer Dabbelt76d2a042017-07-10 18:00:26 -070077}
78
Kefeng Wang8fa3cdf2020-05-14 19:53:35 +080079#if defined(CONFIG_MMU) && defined(CONFIG_DEBUG_VM)
Yash Shah2cc6c4a2019-11-18 05:58:34 +000080static inline void print_mlk(char *name, unsigned long b, unsigned long t)
81{
82 pr_notice("%12s : 0x%08lx - 0x%08lx (%4ld kB)\n", name, b, t,
83 (((t) - (b)) >> 10));
84}
85
86static inline void print_mlm(char *name, unsigned long b, unsigned long t)
87{
88 pr_notice("%12s : 0x%08lx - 0x%08lx (%4ld MB)\n", name, b, t,
89 (((t) - (b)) >> 20));
90}
91
Jisheng Zhang19875012021-03-30 02:22:21 +080092static void __init print_vm_layout(void)
Yash Shah2cc6c4a2019-11-18 05:58:34 +000093{
94 pr_notice("Virtual kernel memory layout:\n");
95 print_mlk("fixmap", (unsigned long)FIXADDR_START,
96 (unsigned long)FIXADDR_TOP);
97 print_mlm("pci io", (unsigned long)PCI_IO_START,
98 (unsigned long)PCI_IO_END);
99 print_mlm("vmemmap", (unsigned long)VMEMMAP_START,
100 (unsigned long)VMEMMAP_END);
101 print_mlm("vmalloc", (unsigned long)VMALLOC_START,
102 (unsigned long)VMALLOC_END);
103 print_mlm("lowmem", (unsigned long)PAGE_OFFSET,
104 (unsigned long)high_memory);
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400105#ifdef CONFIG_64BIT
Alexandre Ghitif7ae0232021-12-06 11:46:45 +0100106#ifdef CONFIG_KASAN
107 print_mlm("kasan", KASAN_SHADOW_START, KASAN_SHADOW_END);
108#endif
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400109 print_mlm("kernel", (unsigned long)KERNEL_LINK_ADDR,
110 (unsigned long)ADDRESS_SPACE_END);
111#endif
Yash Shah2cc6c4a2019-11-18 05:58:34 +0000112}
113#else
114static void print_vm_layout(void) { }
115#endif /* CONFIG_DEBUG_VM */
116
Palmer Dabbelt76d2a042017-07-10 18:00:26 -0700117void __init mem_init(void)
118{
119#ifdef CONFIG_FLATMEM
120 BUG_ON(!mem_map);
121#endif /* CONFIG_FLATMEM */
122
Kefeng Wangce3aca02021-06-02 16:55:16 +0800123#ifdef CONFIG_SWIOTLB
124 if (swiotlb_force == SWIOTLB_FORCE ||
125 max_pfn > PFN_DOWN(dma32_phys_limit))
126 swiotlb_init(1);
127 else
128 swiotlb_force = SWIOTLB_NO_FORCE;
129#endif
Palmer Dabbelt76d2a042017-07-10 18:00:26 -0700130 high_memory = (void *)(__va(PFN_PHYS(max_low_pfn)));
Mike Rapoportc6ffc5c2018-10-30 15:09:30 -0700131 memblock_free_all();
Palmer Dabbelt76d2a042017-07-10 18:00:26 -0700132
Yash Shah2cc6c4a2019-11-18 05:58:34 +0000133 print_vm_layout();
Palmer Dabbelt76d2a042017-07-10 18:00:26 -0700134}
135
Alexandre Ghitif7ae0232021-12-06 11:46:45 +0100136/* Limit the memory size via mem. */
137static phys_addr_t memory_limit;
Kefeng Wangc9811e32021-06-02 16:55:17 +0800138
139static int __init early_mem(char *p)
140{
141 u64 size;
142
143 if (!p)
144 return 1;
145
146 size = memparse(p, &p) & PAGE_MASK;
147 memory_limit = min_t(u64, size, memory_limit);
148
149 pr_notice("Memory limited to %lldMB\n", (u64)memory_limit >> 20);
150
151 return 0;
152}
153early_param("mem", early_mem);
154
Kefeng Wangf842f5f2021-05-10 19:42:22 +0800155static void __init setup_bootmem(void)
Anup Patel0651c262019-02-21 11:25:49 +0530156{
Zong Liac51e002020-01-02 11:12:40 +0800157 phys_addr_t vmlinux_end = __pa_symbol(&_end);
158 phys_addr_t vmlinux_start = __pa_symbol(&_start);
Alexandre Ghitidb6b84a2021-06-29 11:13:48 +0200159 phys_addr_t __maybe_unused max_mapped_addr;
Alexandre Ghiti6d7f91d2021-07-21 09:59:35 +0200160 phys_addr_t phys_ram_end;
Anup Patel0651c262019-02-21 11:25:49 +0530161
Vitaly Wool44c92252021-04-13 02:35:14 -0400162#ifdef CONFIG_XIP_KERNEL
163 vmlinux_start = __pa_symbol(&_sdata);
164#endif
165
Kefeng Wangc9811e32021-06-02 16:55:17 +0800166 memblock_enforce_memory_limit(memory_limit);
Anup Patel0651c262019-02-21 11:25:49 +0530167
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400168 /*
169 * Reserve from the start of the kernel to the end of the kernel
Geert Uytterhoeven8db6f932021-04-29 17:05:00 +0200170 */
171#if defined(CONFIG_64BIT) && defined(CONFIG_STRICT_KERNEL_RWX)
172 /*
173 * Make sure we align the reservation on PMD_SIZE since we will
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400174 * map the kernel in the linear mapping as read-only: we do not want
175 * any allocation to happen between _end and the next pmd aligned page.
176 */
Geert Uytterhoeven8db6f932021-04-29 17:05:00 +0200177 vmlinux_end = (vmlinux_end + PMD_SIZE - 1) & PMD_MASK;
178#endif
179 memblock_reserve(vmlinux_start, vmlinux_end - vmlinux_start);
Anup Pateld90d45d2019-06-07 06:01:29 +0000180
Bin Mengd0e4dae2021-06-27 21:51:17 +0800181
Alexandre Ghiti6d7f91d2021-07-21 09:59:35 +0200182 phys_ram_end = memblock_end_of_DRAM();
Alexandre Ghitidb6b84a2021-06-29 11:13:48 +0200183#ifndef CONFIG_64BIT
Alexandre Ghiti6d7f91d2021-07-21 09:59:35 +0200184#ifndef CONFIG_XIP_KERNEL
185 phys_ram_base = memblock_start_of_DRAM();
186#endif
Atish Patraabb8e862021-01-11 15:45:02 -0800187 /*
188 * memblock allocator is not aware of the fact that last 4K bytes of
189 * the addressable memory can not be mapped because of IS_ERR_VALUE
190 * macro. Make sure that last 4k bytes are not usable by memblock
Alexandre Ghitidb6b84a2021-06-29 11:13:48 +0200191 * if end of dram is equal to maximum addressable memory. For 64-bit
192 * kernel, this problem can't happen here as the end of the virtual
193 * address space is occupied by the kernel mapping then this check must
Alexandre Ghitifdf3a7a2021-07-26 07:42:54 +0200194 * be done as soon as the kernel mapping base address is determined.
Atish Patraabb8e862021-01-11 15:45:02 -0800195 */
Alexandre Ghitidb6b84a2021-06-29 11:13:48 +0200196 max_mapped_addr = __pa(~(ulong)0);
Alexandre Ghiti6d7f91d2021-07-21 09:59:35 +0200197 if (max_mapped_addr == (phys_ram_end - 1))
Atish Patraabb8e862021-01-11 15:45:02 -0800198 memblock_set_current_limit(max_mapped_addr - 4096);
Alexandre Ghitidb6b84a2021-06-29 11:13:48 +0200199#endif
Atish Patraabb8e862021-01-11 15:45:02 -0800200
Alexandre Ghiti6d7f91d2021-07-21 09:59:35 +0200201 min_low_pfn = PFN_UP(phys_ram_base);
202 max_low_pfn = max_pfn = PFN_DOWN(phys_ram_end);
Kefeng Wangf6e5aed2021-02-25 14:54:17 +0800203
Kefeng Wangda815582020-10-31 14:01:12 +0800204 dma32_phys_limit = min(4UL * SZ_1G, (unsigned long)PFN_PHYS(max_low_pfn));
Guo Ren336e8eb2021-01-21 14:31:17 +0800205 set_max_mapnr(max_low_pfn - ARCH_PFN_OFFSET);
Anup Patel0651c262019-02-21 11:25:49 +0530206
Kefeng Wangaec33b52021-01-15 13:46:06 +0800207 reserve_initrd_mem();
Albert Ou922b0372019-09-27 16:14:18 -0700208 /*
Vitaly Woolf105aa92021-01-16 01:49:48 +0200209 * If DTB is built in, no need to reserve its memblock.
210 * Otherwise, do reserve it but avoid using
211 * early_init_fdt_reserve_self() since __pa() does
Albert Ou922b0372019-09-27 16:14:18 -0700212 * not work for DTB pointers that are fixmap addresses
213 */
Vitaly Woolf105aa92021-01-16 01:49:48 +0200214 if (!IS_ENABLED(CONFIG_BUILTIN_DTB))
215 memblock_reserve(dtb_early_pa, fdt_totalsize(dtb_early_va));
Albert Ou922b0372019-09-27 16:14:18 -0700216
Anup Patel0651c262019-02-21 11:25:49 +0530217 early_init_fdt_scan_reserved_mem();
Kefeng Wangda815582020-10-31 14:01:12 +0800218 dma_contiguous_reserve(dma32_phys_limit);
Kefeng Wang8ba1a8b2021-07-30 20:48:41 +0800219 if (IS_ENABLED(CONFIG_64BIT))
220 hugetlb_cma_reserve(PUD_SHIFT - PAGE_SHIFT);
Anup Patel0651c262019-02-21 11:25:49 +0530221 memblock_allow_resize();
Anup Patel0651c262019-02-21 11:25:49 +0530222}
Anup Patel6f1e9e92019-02-13 16:38:36 +0530223
Christoph Hellwig6bd33e12019-10-28 13:10:41 +0100224#ifdef CONFIG_MMU
Jisheng Zhang01062352021-05-16 21:15:56 +0800225static struct pt_alloc_ops _pt_ops __initdata;
Vitaly Wool44c92252021-04-13 02:35:14 -0400226
227#ifdef CONFIG_XIP_KERNEL
228#define pt_ops (*(struct pt_alloc_ops *)XIP_FIXUP(&_pt_ops))
229#else
230#define pt_ops _pt_ops
231#endif
Atish Patrae8dcb612020-09-17 15:37:12 -0700232
Kenneth Leefb31f0a2021-07-28 15:15:57 +0800233unsigned long riscv_pfn_base __ro_after_init;
234EXPORT_SYMBOL(riscv_pfn_base);
Anup Patel387181d2019-03-26 08:03:47 +0000235
Anup Patel6f1e9e92019-02-13 16:38:36 +0530236pgd_t swapper_pg_dir[PTRS_PER_PGD] __page_aligned_bss;
Anup Patel671f9a32019-06-28 13:36:21 -0700237pgd_t trampoline_pg_dir[PTRS_PER_PGD] __page_aligned_bss;
Jisheng Zhang01062352021-05-16 21:15:56 +0800238static pte_t fixmap_pte[PTRS_PER_PTE] __page_aligned_bss;
Anup Patel671f9a32019-06-28 13:36:21 -0700239
Anup Patel671f9a32019-06-28 13:36:21 -0700240pgd_t early_pg_dir[PTRS_PER_PGD] __initdata __aligned(PAGE_SIZE);
Alexandre Ghitife45ffa2021-07-23 15:01:28 +0200241static pmd_t __maybe_unused early_dtb_pmd[PTRS_PER_PMD] __initdata __aligned(PAGE_SIZE);
Anup Patelf2c17aa2019-01-07 20:57:01 +0530242
Vitaly Wool44c92252021-04-13 02:35:14 -0400243#ifdef CONFIG_XIP_KERNEL
244#define trampoline_pg_dir ((pgd_t *)XIP_FIXUP(trampoline_pg_dir))
245#define fixmap_pte ((pte_t *)XIP_FIXUP(fixmap_pte))
246#define early_pg_dir ((pgd_t *)XIP_FIXUP(early_pg_dir))
247#endif /* CONFIG_XIP_KERNEL */
248
Anup Patelf2c17aa2019-01-07 20:57:01 +0530249void __set_fixmap(enum fixed_addresses idx, phys_addr_t phys, pgprot_t prot)
250{
251 unsigned long addr = __fix_to_virt(idx);
252 pte_t *ptep;
253
254 BUG_ON(idx <= FIX_HOLE || idx >= __end_of_fixed_addresses);
255
256 ptep = &fixmap_pte[pte_index(addr)];
257
Greentime Hu21190b72020-08-04 11:02:05 +0800258 if (pgprot_val(prot))
Anup Patelf2c17aa2019-01-07 20:57:01 +0530259 set_pte(ptep, pfn_pte(phys >> PAGE_SHIFT, prot));
Greentime Hu21190b72020-08-04 11:02:05 +0800260 else
Anup Patelf2c17aa2019-01-07 20:57:01 +0530261 pte_clear(&init_mm, addr, ptep);
Greentime Hu21190b72020-08-04 11:02:05 +0800262 local_flush_tlb_page(addr);
Anup Patelf2c17aa2019-01-07 20:57:01 +0530263}
264
Atish Patrae8dcb612020-09-17 15:37:12 -0700265static inline pte_t *__init get_pte_virt_early(phys_addr_t pa)
Anup Patel671f9a32019-06-28 13:36:21 -0700266{
Atish Patrae8dcb612020-09-17 15:37:12 -0700267 return (pte_t *)((uintptr_t)pa);
Anup Patel671f9a32019-06-28 13:36:21 -0700268}
269
Atish Patrae8dcb612020-09-17 15:37:12 -0700270static inline pte_t *__init get_pte_virt_fixmap(phys_addr_t pa)
271{
272 clear_fixmap(FIX_PTE);
273 return (pte_t *)set_fixmap_offset(FIX_PTE, pa);
274}
275
Jisheng Zhang01062352021-05-16 21:15:56 +0800276static inline pte_t *__init get_pte_virt_late(phys_addr_t pa)
Atish Patrae8dcb612020-09-17 15:37:12 -0700277{
278 return (pte_t *) __va(pa);
279}
280
281static inline phys_addr_t __init alloc_pte_early(uintptr_t va)
Anup Patel671f9a32019-06-28 13:36:21 -0700282{
283 /*
284 * We only create PMD or PGD early mappings so we
285 * should never reach here with MMU disabled.
286 */
Atish Patrae8dcb612020-09-17 15:37:12 -0700287 BUG();
288}
Anup Patel671f9a32019-06-28 13:36:21 -0700289
Atish Patrae8dcb612020-09-17 15:37:12 -0700290static inline phys_addr_t __init alloc_pte_fixmap(uintptr_t va)
291{
Anup Patel671f9a32019-06-28 13:36:21 -0700292 return memblock_phys_alloc(PAGE_SIZE, PAGE_SIZE);
293}
294
Jisheng Zhang01062352021-05-16 21:15:56 +0800295static phys_addr_t __init alloc_pte_late(uintptr_t va)
Atish Patrae8dcb612020-09-17 15:37:12 -0700296{
297 unsigned long vaddr;
298
299 vaddr = __get_free_page(GFP_KERNEL);
zhouchuangaoe75e6bf2021-03-30 06:56:26 -0700300 BUG_ON(!vaddr || !pgtable_pte_page_ctor(virt_to_page(vaddr)));
301
Atish Patrae8dcb612020-09-17 15:37:12 -0700302 return __pa(vaddr);
303}
304
Anup Patel671f9a32019-06-28 13:36:21 -0700305static void __init create_pte_mapping(pte_t *ptep,
306 uintptr_t va, phys_addr_t pa,
307 phys_addr_t sz, pgprot_t prot)
308{
Mike Rapoport974b9b22020-06-08 21:33:10 -0700309 uintptr_t pte_idx = pte_index(va);
Anup Patel671f9a32019-06-28 13:36:21 -0700310
311 BUG_ON(sz != PAGE_SIZE);
312
Mike Rapoport974b9b22020-06-08 21:33:10 -0700313 if (pte_none(ptep[pte_idx]))
314 ptep[pte_idx] = pfn_pte(PFN_DOWN(pa), prot);
Anup Patel671f9a32019-06-28 13:36:21 -0700315}
316
317#ifndef __PAGETABLE_PMD_FOLDED
318
Jisheng Zhang01062352021-05-16 21:15:56 +0800319static pmd_t trampoline_pmd[PTRS_PER_PMD] __page_aligned_bss;
320static pmd_t fixmap_pmd[PTRS_PER_PMD] __page_aligned_bss;
321static pmd_t early_pmd[PTRS_PER_PMD] __initdata __aligned(PAGE_SIZE);
Anup Patel671f9a32019-06-28 13:36:21 -0700322
Vitaly Wool44c92252021-04-13 02:35:14 -0400323#ifdef CONFIG_XIP_KERNEL
324#define trampoline_pmd ((pmd_t *)XIP_FIXUP(trampoline_pmd))
325#define fixmap_pmd ((pmd_t *)XIP_FIXUP(fixmap_pmd))
326#define early_pmd ((pmd_t *)XIP_FIXUP(early_pmd))
327#endif /* CONFIG_XIP_KERNEL */
328
Atish Patrae8dcb612020-09-17 15:37:12 -0700329static pmd_t *__init get_pmd_virt_early(phys_addr_t pa)
Anup Patel671f9a32019-06-28 13:36:21 -0700330{
Atish Patrae8dcb612020-09-17 15:37:12 -0700331 /* Before MMU is enabled */
332 return (pmd_t *)((uintptr_t)pa);
Anup Patel671f9a32019-06-28 13:36:21 -0700333}
334
Atish Patrae8dcb612020-09-17 15:37:12 -0700335static pmd_t *__init get_pmd_virt_fixmap(phys_addr_t pa)
336{
337 clear_fixmap(FIX_PMD);
338 return (pmd_t *)set_fixmap_offset(FIX_PMD, pa);
339}
340
Jisheng Zhang01062352021-05-16 21:15:56 +0800341static pmd_t *__init get_pmd_virt_late(phys_addr_t pa)
Atish Patrae8dcb612020-09-17 15:37:12 -0700342{
343 return (pmd_t *) __va(pa);
344}
345
346static phys_addr_t __init alloc_pmd_early(uintptr_t va)
Anup Patel671f9a32019-06-28 13:36:21 -0700347{
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200348 BUG_ON((va - kernel_map.virt_addr) >> PGDIR_SHIFT);
Anup Patel671f9a32019-06-28 13:36:21 -0700349
Alexandre Ghiti0f02de42021-02-21 09:22:33 -0500350 return (uintptr_t)early_pmd;
Anup Patel671f9a32019-06-28 13:36:21 -0700351}
352
Atish Patrae8dcb612020-09-17 15:37:12 -0700353static phys_addr_t __init alloc_pmd_fixmap(uintptr_t va)
354{
355 return memblock_phys_alloc(PAGE_SIZE, PAGE_SIZE);
356}
357
Jisheng Zhang01062352021-05-16 21:15:56 +0800358static phys_addr_t __init alloc_pmd_late(uintptr_t va)
Atish Patrae8dcb612020-09-17 15:37:12 -0700359{
360 unsigned long vaddr;
361
362 vaddr = __get_free_page(GFP_KERNEL);
363 BUG_ON(!vaddr);
364 return __pa(vaddr);
365}
366
Anup Patel671f9a32019-06-28 13:36:21 -0700367static void __init create_pmd_mapping(pmd_t *pmdp,
368 uintptr_t va, phys_addr_t pa,
369 phys_addr_t sz, pgprot_t prot)
370{
371 pte_t *ptep;
372 phys_addr_t pte_phys;
Mike Rapoport974b9b22020-06-08 21:33:10 -0700373 uintptr_t pmd_idx = pmd_index(va);
Anup Patel671f9a32019-06-28 13:36:21 -0700374
375 if (sz == PMD_SIZE) {
Mike Rapoport974b9b22020-06-08 21:33:10 -0700376 if (pmd_none(pmdp[pmd_idx]))
377 pmdp[pmd_idx] = pfn_pmd(PFN_DOWN(pa), prot);
Anup Patel671f9a32019-06-28 13:36:21 -0700378 return;
379 }
380
Mike Rapoport974b9b22020-06-08 21:33:10 -0700381 if (pmd_none(pmdp[pmd_idx])) {
Atish Patrae8dcb612020-09-17 15:37:12 -0700382 pte_phys = pt_ops.alloc_pte(va);
Mike Rapoport974b9b22020-06-08 21:33:10 -0700383 pmdp[pmd_idx] = pfn_pmd(PFN_DOWN(pte_phys), PAGE_TABLE);
Atish Patrae8dcb612020-09-17 15:37:12 -0700384 ptep = pt_ops.get_pte_virt(pte_phys);
Anup Patel671f9a32019-06-28 13:36:21 -0700385 memset(ptep, 0, PAGE_SIZE);
386 } else {
Mike Rapoport974b9b22020-06-08 21:33:10 -0700387 pte_phys = PFN_PHYS(_pmd_pfn(pmdp[pmd_idx]));
Atish Patrae8dcb612020-09-17 15:37:12 -0700388 ptep = pt_ops.get_pte_virt(pte_phys);
Anup Patel671f9a32019-06-28 13:36:21 -0700389 }
390
391 create_pte_mapping(ptep, va, pa, sz, prot);
392}
393
394#define pgd_next_t pmd_t
Atish Patrae8dcb612020-09-17 15:37:12 -0700395#define alloc_pgd_next(__va) pt_ops.alloc_pmd(__va)
396#define get_pgd_next_virt(__pa) pt_ops.get_pmd_virt(__pa)
Anup Patel671f9a32019-06-28 13:36:21 -0700397#define create_pgd_next_mapping(__nextp, __va, __pa, __sz, __prot) \
398 create_pmd_mapping(__nextp, __va, __pa, __sz, __prot)
Anup Patel671f9a32019-06-28 13:36:21 -0700399#define fixmap_pgd_next fixmap_pmd
400#else
401#define pgd_next_t pte_t
Atish Patrae8dcb612020-09-17 15:37:12 -0700402#define alloc_pgd_next(__va) pt_ops.alloc_pte(__va)
403#define get_pgd_next_virt(__pa) pt_ops.get_pte_virt(__pa)
Anup Patel671f9a32019-06-28 13:36:21 -0700404#define create_pgd_next_mapping(__nextp, __va, __pa, __sz, __prot) \
405 create_pte_mapping(__nextp, __va, __pa, __sz, __prot)
Anup Patel671f9a32019-06-28 13:36:21 -0700406#define fixmap_pgd_next fixmap_pte
Alexandre Ghitife45ffa2021-07-23 15:01:28 +0200407#define create_pmd_mapping(__pmdp, __va, __pa, __sz, __prot)
Anup Patel671f9a32019-06-28 13:36:21 -0700408#endif
409
Atish Patrab91540d2020-09-17 15:37:15 -0700410void __init create_pgd_mapping(pgd_t *pgdp,
Anup Patel671f9a32019-06-28 13:36:21 -0700411 uintptr_t va, phys_addr_t pa,
412 phys_addr_t sz, pgprot_t prot)
413{
414 pgd_next_t *nextp;
415 phys_addr_t next_phys;
Mike Rapoport974b9b22020-06-08 21:33:10 -0700416 uintptr_t pgd_idx = pgd_index(va);
Anup Patel671f9a32019-06-28 13:36:21 -0700417
418 if (sz == PGDIR_SIZE) {
Mike Rapoport974b9b22020-06-08 21:33:10 -0700419 if (pgd_val(pgdp[pgd_idx]) == 0)
420 pgdp[pgd_idx] = pfn_pgd(PFN_DOWN(pa), prot);
Anup Patel671f9a32019-06-28 13:36:21 -0700421 return;
422 }
423
Mike Rapoport974b9b22020-06-08 21:33:10 -0700424 if (pgd_val(pgdp[pgd_idx]) == 0) {
Anup Patel671f9a32019-06-28 13:36:21 -0700425 next_phys = alloc_pgd_next(va);
Mike Rapoport974b9b22020-06-08 21:33:10 -0700426 pgdp[pgd_idx] = pfn_pgd(PFN_DOWN(next_phys), PAGE_TABLE);
Anup Patel671f9a32019-06-28 13:36:21 -0700427 nextp = get_pgd_next_virt(next_phys);
428 memset(nextp, 0, PAGE_SIZE);
429 } else {
Mike Rapoport974b9b22020-06-08 21:33:10 -0700430 next_phys = PFN_PHYS(_pgd_pfn(pgdp[pgd_idx]));
Anup Patel671f9a32019-06-28 13:36:21 -0700431 nextp = get_pgd_next_virt(next_phys);
432 }
433
434 create_pgd_next_mapping(nextp, va, pa, sz, prot);
435}
436
437static uintptr_t __init best_map_size(phys_addr_t base, phys_addr_t size)
438{
Zong Li0fdc6362019-11-08 01:00:40 -0800439 /* Upgrade to PMD_SIZE mappings whenever possible */
440 if ((base & (PMD_SIZE - 1)) || (size & (PMD_SIZE - 1)))
441 return PAGE_SIZE;
Anup Patel671f9a32019-06-28 13:36:21 -0700442
Zong Li0fdc6362019-11-08 01:00:40 -0800443 return PMD_SIZE;
Anup Patel671f9a32019-06-28 13:36:21 -0700444}
445
Vitaly Wool44c92252021-04-13 02:35:14 -0400446#ifdef CONFIG_XIP_KERNEL
447/* called from head.S with MMU off */
448asmlinkage void __init __copy_data(void)
449{
Vitaly Woolf9ace4e2021-10-11 11:14:14 +0200450 void *from = (void *)(&__data_loc);
Vitaly Wool44c92252021-04-13 02:35:14 -0400451 void *to = (void *)CONFIG_PHYS_RAM_BASE;
Vitaly Woolf9ace4e2021-10-11 11:14:14 +0200452 size_t sz = (size_t)((uintptr_t)(&_end) - (uintptr_t)(&_sdata));
Vitaly Wool44c92252021-04-13 02:35:14 -0400453
454 memcpy(to, from, sz);
455}
456#endif
457
Alexandre Ghitie5c35fa02021-06-24 14:00:41 +0200458#ifdef CONFIG_STRICT_KERNEL_RWX
459static __init pgprot_t pgprot_from_va(uintptr_t va)
460{
461 if (is_va_kernel_text(va))
462 return PAGE_KERNEL_READ_EXEC;
463
464 /*
465 * In 64-bit kernel, the kernel mapping is outside the linear mapping so
466 * we must protect its linear mapping alias from being executed and
467 * written.
468 * And rodata section is marked readonly in mark_rodata_ro.
469 */
470 if (IS_ENABLED(CONFIG_64BIT) && is_va_kernel_lm_alias_text(va))
471 return PAGE_KERNEL_READ;
472
473 return PAGE_KERNEL;
474}
475
476void mark_rodata_ro(void)
477{
478 set_kernel_memory(__start_rodata, _data, set_memory_ro);
479 if (IS_ENABLED(CONFIG_64BIT))
480 set_kernel_memory(lm_alias(__start_rodata), lm_alias(_data),
481 set_memory_ro);
482
483 debug_checkwx();
484}
485#else
486static __init pgprot_t pgprot_from_va(uintptr_t va)
487{
488 if (IS_ENABLED(CONFIG_64BIT) && !is_kernel_mapping(va))
489 return PAGE_KERNEL;
490
491 return PAGE_KERNEL_EXEC;
492}
493#endif /* CONFIG_STRICT_KERNEL_RWX */
494
Anup Patel387181d2019-03-26 08:03:47 +0000495/*
496 * setup_vm() is called from head.S with MMU-off.
497 *
498 * Following requirements should be honoured for setup_vm() to work
499 * correctly:
500 * 1) It should use PC-relative addressing for accessing kernel symbols.
501 * To achieve this we always use GCC cmodel=medany.
502 * 2) The compiler instrumentation for FTRACE will not work for setup_vm()
503 * so disable compiler instrumentation when FTRACE is enabled.
504 *
505 * Currently, the above requirements are honoured by using custom CFLAGS
506 * for init.o in mm/Makefile.
507 */
508
509#ifndef __riscv_cmodel_medany
Paul Walmsley6a527b62019-10-17 14:45:58 -0700510#error "setup_vm() is called from head.S before relocate so it should not use absolute addressing."
Anup Patel387181d2019-03-26 08:03:47 +0000511#endif
512
Vitaly Wool44c92252021-04-13 02:35:14 -0400513#ifdef CONFIG_XIP_KERNEL
Alexandre Ghiti526f83d2021-07-23 15:01:25 +0200514static void __init create_kernel_page_table(pgd_t *pgdir,
Alexandre Ghitie5c35fa02021-06-24 14:00:41 +0200515 __always_unused bool early)
Vitaly Wool44c92252021-04-13 02:35:14 -0400516{
517 uintptr_t va, end_va;
518
519 /* Map the flash resident part */
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200520 end_va = kernel_map.virt_addr + kernel_map.xiprom_sz;
Alexandre Ghiti526f83d2021-07-23 15:01:25 +0200521 for (va = kernel_map.virt_addr; va < end_va; va += PMD_SIZE)
Vitaly Wool44c92252021-04-13 02:35:14 -0400522 create_pgd_mapping(pgdir, va,
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200523 kernel_map.xiprom + (va - kernel_map.virt_addr),
Alexandre Ghiti526f83d2021-07-23 15:01:25 +0200524 PMD_SIZE, PAGE_KERNEL_EXEC);
Vitaly Wool44c92252021-04-13 02:35:14 -0400525
526 /* Map the data in RAM */
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200527 end_va = kernel_map.virt_addr + XIP_OFFSET + kernel_map.size;
Alexandre Ghiti526f83d2021-07-23 15:01:25 +0200528 for (va = kernel_map.virt_addr + XIP_OFFSET; va < end_va; va += PMD_SIZE)
Vitaly Wool44c92252021-04-13 02:35:14 -0400529 create_pgd_mapping(pgdir, va,
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200530 kernel_map.phys_addr + (va - (kernel_map.virt_addr + XIP_OFFSET)),
Alexandre Ghiti526f83d2021-07-23 15:01:25 +0200531 PMD_SIZE, PAGE_KERNEL);
Vitaly Wool44c92252021-04-13 02:35:14 -0400532}
533#else
Alexandre Ghiti526f83d2021-07-23 15:01:25 +0200534static void __init create_kernel_page_table(pgd_t *pgdir, bool early)
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400535{
536 uintptr_t va, end_va;
537
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200538 end_va = kernel_map.virt_addr + kernel_map.size;
Alexandre Ghiti526f83d2021-07-23 15:01:25 +0200539 for (va = kernel_map.virt_addr; va < end_va; va += PMD_SIZE)
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400540 create_pgd_mapping(pgdir, va,
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200541 kernel_map.phys_addr + (va - kernel_map.virt_addr),
Alexandre Ghiti526f83d2021-07-23 15:01:25 +0200542 PMD_SIZE,
Alexandre Ghitie5c35fa02021-06-24 14:00:41 +0200543 early ?
544 PAGE_KERNEL_EXEC : pgprot_from_va(va));
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400545}
Vitaly Wool44c92252021-04-13 02:35:14 -0400546#endif
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400547
Alexandre Ghitife45ffa2021-07-23 15:01:28 +0200548/*
549 * Setup a 4MB mapping that encompasses the device tree: for 64-bit kernel,
550 * this means 2 PMD entries whereas for 32-bit kernel, this is only 1 PGDIR
551 * entry.
552 */
553static void __init create_fdt_early_page_table(pgd_t *pgdir, uintptr_t dtb_pa)
554{
555#ifndef CONFIG_BUILTIN_DTB
556 uintptr_t pa = dtb_pa & ~(PMD_SIZE - 1);
557
558 create_pgd_mapping(early_pg_dir, DTB_EARLY_BASE_VA,
559 IS_ENABLED(CONFIG_64BIT) ? (uintptr_t)early_dtb_pmd : pa,
560 PGDIR_SIZE,
561 IS_ENABLED(CONFIG_64BIT) ? PAGE_TABLE : PAGE_KERNEL);
562
563 if (IS_ENABLED(CONFIG_64BIT)) {
564 create_pmd_mapping(early_dtb_pmd, DTB_EARLY_BASE_VA,
565 pa, PMD_SIZE, PAGE_KERNEL);
566 create_pmd_mapping(early_dtb_pmd, DTB_EARLY_BASE_VA + PMD_SIZE,
567 pa + PMD_SIZE, PMD_SIZE, PAGE_KERNEL);
568 }
569
570 dtb_early_va = (void *)DTB_EARLY_BASE_VA + (dtb_pa & (PMD_SIZE - 1));
571#else
572 /*
573 * For 64-bit kernel, __va can't be used since it would return a linear
574 * mapping address whereas dtb_early_va will be used before
575 * setup_vm_final installs the linear mapping. For 32-bit kernel, as the
576 * kernel is mapped in the linear mapping, that makes no difference.
577 */
578 dtb_early_va = kernel_mapping_pa_to_va(XIP_FIXUP(dtb_pa));
579#endif
580
581 dtb_early_pa = dtb_pa;
582}
583
Alexandre Ghiti840125a2021-12-06 11:46:47 +0100584/*
585 * MMU is not enabled, the page tables are allocated directly using
586 * early_pmd/pud/p4d and the address returned is the physical one.
587 */
588void pt_ops_set_early(void)
589{
590 pt_ops.alloc_pte = alloc_pte_early;
591 pt_ops.get_pte_virt = get_pte_virt_early;
592#ifndef __PAGETABLE_PMD_FOLDED
593 pt_ops.alloc_pmd = alloc_pmd_early;
594 pt_ops.get_pmd_virt = get_pmd_virt_early;
595#endif
596}
597
598/*
599 * MMU is enabled but page table setup is not complete yet.
600 * fixmap page table alloc functions must be used as a means to temporarily
601 * map the allocated physical pages since the linear mapping does not exist yet.
602 *
603 * Note that this is called with MMU disabled, hence kernel_mapping_pa_to_va,
604 * but it will be used as described above.
605 */
606void pt_ops_set_fixmap(void)
607{
608 pt_ops.alloc_pte = kernel_mapping_pa_to_va((uintptr_t)alloc_pte_fixmap);
609 pt_ops.get_pte_virt = kernel_mapping_pa_to_va((uintptr_t)get_pte_virt_fixmap);
610#ifndef __PAGETABLE_PMD_FOLDED
611 pt_ops.alloc_pmd = kernel_mapping_pa_to_va((uintptr_t)alloc_pmd_fixmap);
612 pt_ops.get_pmd_virt = kernel_mapping_pa_to_va((uintptr_t)get_pmd_virt_fixmap);
613#endif
614}
615
616/*
617 * MMU is enabled and page table setup is complete, so from now, we can use
618 * generic page allocation functions to setup page table.
619 */
620void pt_ops_set_late(void)
621{
622 pt_ops.alloc_pte = alloc_pte_late;
623 pt_ops.get_pte_virt = get_pte_virt_late;
624#ifndef __PAGETABLE_PMD_FOLDED
625 pt_ops.alloc_pmd = alloc_pmd_late;
626 pt_ops.get_pmd_virt = get_pmd_virt_late;
627#endif
628}
629
Anup Patel671f9a32019-06-28 13:36:21 -0700630asmlinkage void __init setup_vm(uintptr_t dtb_pa)
Anup Patel6f1e9e92019-02-13 16:38:36 +0530631{
Alexandre Ghiti6f3e5fd2021-07-23 15:01:26 +0200632 pmd_t __maybe_unused fix_bmap_spmd, fix_bmap_epmd;
Anup Patel6f1e9e92019-02-13 16:38:36 +0530633
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200634 kernel_map.virt_addr = KERNEL_LINK_ADDR;
635
Vitaly Wool44c92252021-04-13 02:35:14 -0400636#ifdef CONFIG_XIP_KERNEL
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200637 kernel_map.xiprom = (uintptr_t)CONFIG_XIP_PHYS_ADDR;
638 kernel_map.xiprom_sz = (uintptr_t)(&_exiprom) - (uintptr_t)(&_xiprom);
Vitaly Wool44c92252021-04-13 02:35:14 -0400639
Alexandre Ghiti6d7f91d2021-07-21 09:59:35 +0200640 phys_ram_base = CONFIG_PHYS_RAM_BASE;
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200641 kernel_map.phys_addr = (uintptr_t)CONFIG_PHYS_RAM_BASE;
642 kernel_map.size = (uintptr_t)(&_end) - (uintptr_t)(&_sdata);
Vitaly Wool44c92252021-04-13 02:35:14 -0400643
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200644 kernel_map.va_kernel_xip_pa_offset = kernel_map.virt_addr - kernel_map.xiprom;
Vitaly Wool44c92252021-04-13 02:35:14 -0400645#else
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200646 kernel_map.phys_addr = (uintptr_t)(&_start);
647 kernel_map.size = (uintptr_t)(&_end) - kernel_map.phys_addr;
Vitaly Wool44c92252021-04-13 02:35:14 -0400648#endif
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200649 kernel_map.va_pa_offset = PAGE_OFFSET - kernel_map.phys_addr;
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200650 kernel_map.va_kernel_pa_offset = kernel_map.virt_addr - kernel_map.phys_addr;
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400651
Kenneth Leefb31f0a2021-07-28 15:15:57 +0800652 riscv_pfn_base = PFN_DOWN(kernel_map.phys_addr);
Anup Patel6f1e9e92019-02-13 16:38:36 +0530653
Alexandre Ghitif7ae0232021-12-06 11:46:45 +0100654 /*
655 * The default maximal physical memory size is KERN_VIRT_SIZE for 32-bit
656 * kernel, whereas for 64-bit kernel, the end of the virtual address
657 * space is occupied by the modules/BPF/kernel mappings which reduces
658 * the available size of the linear mapping.
659 */
660 memory_limit = KERN_VIRT_SIZE - (IS_ENABLED(CONFIG_64BIT) ? SZ_4G : 0);
661
Anup Patel6f1e9e92019-02-13 16:38:36 +0530662 /* Sanity check alignment and size */
663 BUG_ON((PAGE_OFFSET % PGDIR_SIZE) != 0);
Alexandre Ghiti526f83d2021-07-23 15:01:25 +0200664 BUG_ON((kernel_map.phys_addr % PMD_SIZE) != 0);
Anup Patel671f9a32019-06-28 13:36:21 -0700665
Alexandre Ghitidb6b84a2021-06-29 11:13:48 +0200666#ifdef CONFIG_64BIT
667 /*
668 * The last 4K bytes of the addressable memory can not be mapped because
669 * of IS_ERR_VALUE macro.
670 */
671 BUG_ON((kernel_map.virt_addr + kernel_map.size) > ADDRESS_SPACE_END - SZ_4K);
672#endif
673
Alexandre Ghiti840125a2021-12-06 11:46:47 +0100674 pt_ops_set_early();
675
Anup Patel671f9a32019-06-28 13:36:21 -0700676 /* Setup early PGD for fixmap */
677 create_pgd_mapping(early_pg_dir, FIXADDR_START,
678 (uintptr_t)fixmap_pgd_next, PGDIR_SIZE, PAGE_TABLE);
Anup Patel6f1e9e92019-02-13 16:38:36 +0530679
680#ifndef __PAGETABLE_PMD_FOLDED
Anup Patel671f9a32019-06-28 13:36:21 -0700681 /* Setup fixmap PMD */
682 create_pmd_mapping(fixmap_pmd, FIXADDR_START,
683 (uintptr_t)fixmap_pte, PMD_SIZE, PAGE_TABLE);
684 /* Setup trampoline PGD and PMD */
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200685 create_pgd_mapping(trampoline_pg_dir, kernel_map.virt_addr,
Anup Patel671f9a32019-06-28 13:36:21 -0700686 (uintptr_t)trampoline_pmd, PGDIR_SIZE, PAGE_TABLE);
Vitaly Wool44c92252021-04-13 02:35:14 -0400687#ifdef CONFIG_XIP_KERNEL
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200688 create_pmd_mapping(trampoline_pmd, kernel_map.virt_addr,
689 kernel_map.xiprom, PMD_SIZE, PAGE_KERNEL_EXEC);
Vitaly Wool44c92252021-04-13 02:35:14 -0400690#else
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200691 create_pmd_mapping(trampoline_pmd, kernel_map.virt_addr,
692 kernel_map.phys_addr, PMD_SIZE, PAGE_KERNEL_EXEC);
Vitaly Wool44c92252021-04-13 02:35:14 -0400693#endif
Anup Patel6f1e9e92019-02-13 16:38:36 +0530694#else
Anup Patel671f9a32019-06-28 13:36:21 -0700695 /* Setup trampoline PGD */
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200696 create_pgd_mapping(trampoline_pg_dir, kernel_map.virt_addr,
697 kernel_map.phys_addr, PGDIR_SIZE, PAGE_KERNEL_EXEC);
Anup Patel671f9a32019-06-28 13:36:21 -0700698#endif
Anup Patel6f1e9e92019-02-13 16:38:36 +0530699
Anup Patel671f9a32019-06-28 13:36:21 -0700700 /*
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400701 * Setup early PGD covering entire kernel which will allow
Anup Patel671f9a32019-06-28 13:36:21 -0700702 * us to reach paging_init(). We map all memory banks later
703 * in setup_vm_final() below.
704 */
Alexandre Ghiti526f83d2021-07-23 15:01:25 +0200705 create_kernel_page_table(early_pg_dir, true);
Anup Patelf2c17aa2019-01-07 20:57:01 +0530706
Alexandre Ghitife45ffa2021-07-23 15:01:28 +0200707 /* Setup early mapping for FDT early scan */
708 create_fdt_early_page_table(early_pg_dir, dtb_pa);
Atish Patra6262f662020-09-17 15:37:11 -0700709
710 /*
711 * Bootime fixmap only can handle PMD_SIZE mapping. Thus, boot-ioremap
712 * range can not span multiple pmds.
713 */
714 BUILD_BUG_ON((__fix_to_virt(FIX_BTMAP_BEGIN) >> PMD_SHIFT)
715 != (__fix_to_virt(FIX_BTMAP_END) >> PMD_SHIFT));
716
717#ifndef __PAGETABLE_PMD_FOLDED
718 /*
719 * Early ioremap fixmap is already created as it lies within first 2MB
720 * of fixmap region. We always map PMD_SIZE. Thus, both FIX_BTMAP_END
721 * FIX_BTMAP_BEGIN should lie in the same pmd. Verify that and warn
722 * the user if not.
723 */
724 fix_bmap_spmd = fixmap_pmd[pmd_index(__fix_to_virt(FIX_BTMAP_BEGIN))];
725 fix_bmap_epmd = fixmap_pmd[pmd_index(__fix_to_virt(FIX_BTMAP_END))];
726 if (pmd_val(fix_bmap_spmd) != pmd_val(fix_bmap_epmd)) {
727 WARN_ON(1);
728 pr_warn("fixmap btmap start [%08lx] != end [%08lx]\n",
729 pmd_val(fix_bmap_spmd), pmd_val(fix_bmap_epmd));
730 pr_warn("fix_to_virt(FIX_BTMAP_BEGIN): %08lx\n",
731 fix_to_virt(FIX_BTMAP_BEGIN));
732 pr_warn("fix_to_virt(FIX_BTMAP_END): %08lx\n",
733 fix_to_virt(FIX_BTMAP_END));
734
735 pr_warn("FIX_BTMAP_END: %d\n", FIX_BTMAP_END);
736 pr_warn("FIX_BTMAP_BEGIN: %d\n", FIX_BTMAP_BEGIN);
737 }
738#endif
Alexandre Ghiti840125a2021-12-06 11:46:47 +0100739
740 pt_ops_set_fixmap();
Anup Patel671f9a32019-06-28 13:36:21 -0700741}
742
743static void __init setup_vm_final(void)
744{
745 uintptr_t va, map_size;
746 phys_addr_t pa, start, end;
Mike Rapoportb10d6bc2020-10-13 16:58:08 -0700747 u64 i;
Anup Patel671f9a32019-06-28 13:36:21 -0700748
Anup Patel671f9a32019-06-28 13:36:21 -0700749 /* Setup swapper PGD for fixmap */
750 create_pgd_mapping(swapper_pg_dir, FIXADDR_START,
Zong Liac51e002020-01-02 11:12:40 +0800751 __pa_symbol(fixmap_pgd_next),
Anup Patel671f9a32019-06-28 13:36:21 -0700752 PGDIR_SIZE, PAGE_TABLE);
753
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400754 /* Map all memory banks in the linear mapping */
Mike Rapoportb10d6bc2020-10-13 16:58:08 -0700755 for_each_mem_range(i, &start, &end) {
Anup Patel671f9a32019-06-28 13:36:21 -0700756 if (start >= end)
757 break;
Anup Patel671f9a32019-06-28 13:36:21 -0700758 if (start <= __pa(PAGE_OFFSET) &&
759 __pa(PAGE_OFFSET) < end)
760 start = __pa(PAGE_OFFSET);
Alexandre Ghitic99127c2021-06-29 11:13:47 +0200761 if (end >= __pa(PAGE_OFFSET) + memory_limit)
762 end = __pa(PAGE_OFFSET) + memory_limit;
Anup Patel671f9a32019-06-28 13:36:21 -0700763
764 map_size = best_map_size(start, end - start);
765 for (pa = start; pa < end; pa += map_size) {
766 va = (uintptr_t)__va(pa);
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400767
Alexandre Ghitie5c35fa02021-06-24 14:00:41 +0200768 create_pgd_mapping(swapper_pg_dir, va, pa, map_size,
769 pgprot_from_va(va));
Anup Patel671f9a32019-06-28 13:36:21 -0700770 }
Anup Patel6f1e9e92019-02-13 16:38:36 +0530771 }
Anup Patelf2c17aa2019-01-07 20:57:01 +0530772
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400773#ifdef CONFIG_64BIT
774 /* Map the kernel */
Alexandre Ghiti526f83d2021-07-23 15:01:25 +0200775 create_kernel_page_table(swapper_pg_dir, false);
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400776#endif
777
Alexandre Ghiti2efad172021-12-06 11:46:46 +0100778#ifdef CONFIG_KASAN
779 kasan_swapper_init();
780#endif
781
Anup Patel671f9a32019-06-28 13:36:21 -0700782 /* Clear fixmap PTE and PMD mappings */
783 clear_fixmap(FIX_PTE);
784 clear_fixmap(FIX_PMD);
785
786 /* Move to swapper page table */
Zong Liac51e002020-01-02 11:12:40 +0800787 csr_write(CSR_SATP, PFN_DOWN(__pa_symbol(swapper_pg_dir)) | SATP_MODE);
Anup Patel671f9a32019-06-28 13:36:21 -0700788 local_flush_tlb_all();
Atish Patrae8dcb612020-09-17 15:37:12 -0700789
Alexandre Ghiti840125a2021-12-06 11:46:47 +0100790 pt_ops_set_late();
Anup Patel671f9a32019-06-28 13:36:21 -0700791}
Christoph Hellwig6bd33e12019-10-28 13:10:41 +0100792#else
793asmlinkage void __init setup_vm(uintptr_t dtb_pa)
794{
795 dtb_early_va = (void *)dtb_pa;
Atish Patraa78c6f52020-10-01 12:04:56 -0700796 dtb_early_pa = dtb_pa;
Christoph Hellwig6bd33e12019-10-28 13:10:41 +0100797}
798
799static inline void setup_vm_final(void)
800{
801}
802#endif /* CONFIG_MMU */
Anup Patel671f9a32019-06-28 13:36:21 -0700803
Nick Kossifidise53d2812021-04-19 03:55:38 +0300804#ifdef CONFIG_KEXEC_CORE
805/*
806 * reserve_crashkernel() - reserves memory for crash kernel
807 *
808 * This function reserves memory area given in "crashkernel=" kernel command
809 * line parameter. The memory reserved is used by dump capture kernel when
810 * primary kernel is crashing.
811 */
812static void __init reserve_crashkernel(void)
813{
814 unsigned long long crash_base = 0;
815 unsigned long long crash_size = 0;
816 unsigned long search_start = memblock_start_of_DRAM();
817 unsigned long search_end = memblock_end_of_DRAM();
818
819 int ret = 0;
820
Nick Kossifidis56409752021-04-19 03:55:39 +0300821 /*
822 * Don't reserve a region for a crash kernel on a crash kernel
823 * since it doesn't make much sense and we have limited memory
824 * resources.
825 */
826#ifdef CONFIG_CRASH_DUMP
827 if (is_kdump_kernel()) {
828 pr_info("crashkernel: ignoring reservation request\n");
829 return;
830 }
831#endif
832
Nick Kossifidise53d2812021-04-19 03:55:38 +0300833 ret = parse_crashkernel(boot_command_line, memblock_phys_mem_size(),
834 &crash_size, &crash_base);
835 if (ret || !crash_size)
836 return;
837
838 crash_size = PAGE_ALIGN(crash_size);
839
Mike Rapoporta7259df2021-09-02 15:00:26 -0700840 if (crash_base) {
841 search_start = crash_base;
842 search_end = crash_base + crash_size;
Nick Kossifidise53d2812021-04-19 03:55:38 +0300843 }
Mike Rapoporta7259df2021-09-02 15:00:26 -0700844
845 /*
846 * Current riscv boot protocol requires 2MB alignment for
847 * RV64 and 4MB alignment for RV32 (hugepage size)
848 */
849 crash_base = memblock_phys_alloc_range(crash_size, PMD_SIZE,
850 search_start, search_end);
851 if (crash_base == 0) {
852 pr_warn("crashkernel: couldn't allocate %lldKB\n",
853 crash_size >> 10);
854 return;
855 }
Nick Kossifidise53d2812021-04-19 03:55:38 +0300856
857 pr_info("crashkernel: reserved 0x%016llx - 0x%016llx (%lld MB)\n",
858 crash_base, crash_base + crash_size, crash_size >> 20);
859
860 crashk_res.start = crash_base;
861 crashk_res.end = crash_base + crash_size - 1;
862}
863#endif /* CONFIG_KEXEC_CORE */
864
Anup Patel671f9a32019-06-28 13:36:21 -0700865void __init paging_init(void)
866{
Kefeng Wangf842f5f2021-05-10 19:42:22 +0800867 setup_bootmem();
Anup Patel671f9a32019-06-28 13:36:21 -0700868 setup_vm_final();
Atish Patracbd34f42020-11-18 16:38:27 -0800869}
870
871void __init misc_mem_init(void)
872{
Kefeng Wangf6e5aed2021-02-25 14:54:17 +0800873 early_memtest(min_low_pfn << PAGE_SHIFT, max_low_pfn << PAGE_SHIFT);
Atish Patra4f0e8ee2020-11-18 16:38:29 -0800874 arch_numa_init();
Atish Patracbd34f42020-11-18 16:38:27 -0800875 sparse_init();
Anup Patel671f9a32019-06-28 13:36:21 -0700876 zone_sizes_init();
Nick Kossifidise53d2812021-04-19 03:55:38 +0300877#ifdef CONFIG_KEXEC_CORE
878 reserve_crashkernel();
879#endif
Atish Patra4f0e8ee2020-11-18 16:38:29 -0800880 memblock_dump_all();
Anup Patel6f1e9e92019-02-13 16:38:36 +0530881}
Logan Gunthorped95f1a52019-08-28 15:40:54 -0600882
Kefeng Wang9fe57d82019-10-23 11:23:02 +0800883#ifdef CONFIG_SPARSEMEM_VMEMMAP
Logan Gunthorped95f1a52019-08-28 15:40:54 -0600884int __meminit vmemmap_populate(unsigned long start, unsigned long end, int node,
885 struct vmem_altmap *altmap)
886{
Anshuman Khandual1d9cfee2020-08-06 23:23:19 -0700887 return vmemmap_populate_basepages(start, end, node, NULL);
Logan Gunthorped95f1a52019-08-28 15:40:54 -0600888}
889#endif