blob: 644a34b0d77de1889675212b6d8278f88d1ada77 [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>
Palmer Dabbelt76d2a042017-07-10 18:00:26 -070022
Anup Patelf2c17aa2019-01-07 20:57:01 +053023#include <asm/fixmap.h>
Palmer Dabbelt76d2a042017-07-10 18:00:26 -070024#include <asm/tlbflush.h>
25#include <asm/sections.h>
Palmer Dabbelt2d268252020-04-14 13:43:24 +090026#include <asm/soc.h>
Palmer Dabbelt76d2a042017-07-10 18:00:26 -070027#include <asm/io.h>
Zong Lib422d282020-06-03 16:03:55 -070028#include <asm/ptdump.h>
Atish Patra4f0e8ee2020-11-18 16:38:29 -080029#include <asm/numa.h>
Palmer Dabbelt76d2a042017-07-10 18:00:26 -070030
Paul Walmsleyffaee272019-10-17 15:00:17 -070031#include "../kernel/head.h"
32
Alexandre Ghiti658e2c52021-06-17 15:53:07 +020033struct kernel_mapping kernel_map __ro_after_init;
34EXPORT_SYMBOL(kernel_map);
Vitaly Wool44c92252021-04-13 02:35:14 -040035#ifdef CONFIG_XIP_KERNEL
Alexandre Ghiti658e2c52021-06-17 15:53:07 +020036#define kernel_map (*(struct kernel_mapping *)XIP_FIXUP(&kernel_map))
37#endif
38
39#ifdef CONFIG_XIP_KERNEL
Kefeng Wang50bae952021-05-14 17:49:08 +080040extern char _xiprom[], _exiprom[];
Vitaly Wool44c92252021-04-13 02:35:14 -040041#endif
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -040042
Anup Patel387181d2019-03-26 08:03:47 +000043unsigned long empty_zero_page[PAGE_SIZE / sizeof(unsigned long)]
44 __page_aligned_bss;
45EXPORT_SYMBOL(empty_zero_page);
46
Anup Pateld90d45d2019-06-07 06:01:29 +000047extern char _start[];
Anup Patel8f3a2b42020-09-17 15:37:10 -070048#define DTB_EARLY_BASE_VA PGDIR_SIZE
Vitaly Wool44c92252021-04-13 02:35:14 -040049void *_dtb_early_va __initdata;
50uintptr_t _dtb_early_pa __initdata;
Anup Pateld90d45d2019-06-07 06:01:29 +000051
Atish Patrae8dcb612020-09-17 15:37:12 -070052struct pt_alloc_ops {
53 pte_t *(*get_pte_virt)(phys_addr_t pa);
54 phys_addr_t (*alloc_pte)(uintptr_t va);
55#ifndef __PAGETABLE_PMD_FOLDED
56 pmd_t *(*get_pmd_virt)(phys_addr_t pa);
57 phys_addr_t (*alloc_pmd)(uintptr_t va);
58#endif
59};
Palmer Dabbelt76d2a042017-07-10 18:00:26 -070060
Jisheng Zhang01062352021-05-16 21:15:56 +080061static phys_addr_t dma32_phys_limit __initdata;
Kefeng Wangda815582020-10-31 14:01:12 +080062
Palmer Dabbelt76d2a042017-07-10 18:00:26 -070063static void __init zone_sizes_init(void)
64{
Christoph Hellwig5ec9c4f2018-01-16 09:37:50 +010065 unsigned long max_zone_pfns[MAX_NR_ZONES] = { 0, };
Palmer Dabbelt76d2a042017-07-10 18:00:26 -070066
Zong Lid5fad482018-06-25 16:49:37 +080067#ifdef CONFIG_ZONE_DMA32
Kefeng Wangda815582020-10-31 14:01:12 +080068 max_zone_pfns[ZONE_DMA32] = PFN_DOWN(dma32_phys_limit);
Zong Lid5fad482018-06-25 16:49:37 +080069#endif
Christoph Hellwig5ec9c4f2018-01-16 09:37:50 +010070 max_zone_pfns[ZONE_NORMAL] = max_low_pfn;
71
Mike Rapoport9691a072020-06-03 15:57:10 -070072 free_area_init(max_zone_pfns);
Palmer Dabbelt76d2a042017-07-10 18:00:26 -070073}
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
Kefeng Wangce3aca02021-06-02 16:55:16 +0800116#ifdef CONFIG_SWIOTLB
117 if (swiotlb_force == SWIOTLB_FORCE ||
118 max_pfn > PFN_DOWN(dma32_phys_limit))
119 swiotlb_init(1);
120 else
121 swiotlb_force = SWIOTLB_NO_FORCE;
122#endif
Palmer Dabbelt76d2a042017-07-10 18:00:26 -0700123 high_memory = (void *)(__va(PFN_PHYS(max_low_pfn)));
Mike Rapoportc6ffc5c2018-10-30 15:09:30 -0700124 memblock_free_all();
Palmer Dabbelt76d2a042017-07-10 18:00:26 -0700125
Yash Shah2cc6c4a2019-11-18 05:58:34 +0000126 print_vm_layout();
Palmer Dabbelt76d2a042017-07-10 18:00:26 -0700127}
128
Kefeng Wangc9811e32021-06-02 16:55:17 +0800129/*
Alexandre Ghitic09dc9e2021-06-29 11:13:46 +0200130 * The default maximal physical memory size is -PAGE_OFFSET for 32-bit kernel,
131 * whereas for 64-bit kernel, the end of the virtual address space is occupied
132 * by the modules/BPF/kernel mappings which reduces the available size of the
133 * linear mapping.
134 * Limit the memory size via mem.
Kefeng Wangc9811e32021-06-02 16:55:17 +0800135 */
Alexandre Ghitic09dc9e2021-06-29 11:13:46 +0200136#ifdef CONFIG_64BIT
137static phys_addr_t memory_limit = -PAGE_OFFSET - SZ_4G;
138#else
Kefeng Wangc9811e32021-06-02 16:55:17 +0800139static phys_addr_t memory_limit = -PAGE_OFFSET;
Alexandre Ghitic09dc9e2021-06-29 11:13:46 +0200140#endif
Kefeng Wangc9811e32021-06-02 16:55:17 +0800141
142static int __init early_mem(char *p)
143{
144 u64 size;
145
146 if (!p)
147 return 1;
148
149 size = memparse(p, &p) & PAGE_MASK;
150 memory_limit = min_t(u64, size, memory_limit);
151
152 pr_notice("Memory limited to %lldMB\n", (u64)memory_limit >> 20);
153
154 return 0;
155}
156early_param("mem", early_mem);
157
Kefeng Wangf842f5f2021-05-10 19:42:22 +0800158static void __init setup_bootmem(void)
Anup Patel0651c262019-02-21 11:25:49 +0530159{
Zong Liac51e002020-01-02 11:12:40 +0800160 phys_addr_t vmlinux_end = __pa_symbol(&_end);
161 phys_addr_t vmlinux_start = __pa_symbol(&_start);
Atish Patraabb8e862021-01-11 15:45:02 -0800162 phys_addr_t max_mapped_addr = __pa(~(ulong)0);
Kefeng Wangc9811e32021-06-02 16:55:17 +0800163 phys_addr_t dram_end;
Anup Patel0651c262019-02-21 11:25:49 +0530164
Vitaly Wool44c92252021-04-13 02:35:14 -0400165#ifdef CONFIG_XIP_KERNEL
166 vmlinux_start = __pa_symbol(&_sdata);
167#endif
168
Kefeng Wangc9811e32021-06-02 16:55:17 +0800169 memblock_enforce_memory_limit(memory_limit);
Anup Patel0651c262019-02-21 11:25:49 +0530170
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400171 /*
172 * Reserve from the start of the kernel to the end of the kernel
Geert Uytterhoeven8db6f932021-04-29 17:05:00 +0200173 */
174#if defined(CONFIG_64BIT) && defined(CONFIG_STRICT_KERNEL_RWX)
175 /*
176 * Make sure we align the reservation on PMD_SIZE since we will
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400177 * map the kernel in the linear mapping as read-only: we do not want
178 * any allocation to happen between _end and the next pmd aligned page.
179 */
Geert Uytterhoeven8db6f932021-04-29 17:05:00 +0200180 vmlinux_end = (vmlinux_end + PMD_SIZE - 1) & PMD_MASK;
181#endif
182 memblock_reserve(vmlinux_start, vmlinux_end - vmlinux_start);
Anup Pateld90d45d2019-06-07 06:01:29 +0000183
Kefeng Wangc9811e32021-06-02 16:55:17 +0800184 dram_end = memblock_end_of_DRAM();
Bin Mengd0e4dae2021-06-27 21:51:17 +0800185
Atish Patraabb8e862021-01-11 15:45:02 -0800186 /*
187 * memblock allocator is not aware of the fact that last 4K bytes of
188 * the addressable memory can not be mapped because of IS_ERR_VALUE
189 * macro. Make sure that last 4k bytes are not usable by memblock
190 * if end of dram is equal to maximum addressable memory.
191 */
192 if (max_mapped_addr == (dram_end - 1))
193 memblock_set_current_limit(max_mapped_addr - 4096);
194
Kefeng Wangf6e5aed2021-02-25 14:54:17 +0800195 min_low_pfn = PFN_UP(memblock_start_of_DRAM());
196 max_low_pfn = max_pfn = PFN_DOWN(dram_end);
197
Kefeng Wangda815582020-10-31 14:01:12 +0800198 dma32_phys_limit = min(4UL * SZ_1G, (unsigned long)PFN_PHYS(max_low_pfn));
Guo Ren336e8eb2021-01-21 14:31:17 +0800199 set_max_mapnr(max_low_pfn - ARCH_PFN_OFFSET);
Anup Patel0651c262019-02-21 11:25:49 +0530200
Kefeng Wangaec33b52021-01-15 13:46:06 +0800201 reserve_initrd_mem();
Albert Ou922b0372019-09-27 16:14:18 -0700202 /*
Vitaly Woolf105aa92021-01-16 01:49:48 +0200203 * If DTB is built in, no need to reserve its memblock.
204 * Otherwise, do reserve it but avoid using
205 * early_init_fdt_reserve_self() since __pa() does
Albert Ou922b0372019-09-27 16:14:18 -0700206 * not work for DTB pointers that are fixmap addresses
207 */
Vitaly Woolf105aa92021-01-16 01:49:48 +0200208 if (!IS_ENABLED(CONFIG_BUILTIN_DTB))
209 memblock_reserve(dtb_early_pa, fdt_totalsize(dtb_early_va));
Albert Ou922b0372019-09-27 16:14:18 -0700210
Anup Patel0651c262019-02-21 11:25:49 +0530211 early_init_fdt_scan_reserved_mem();
Kefeng Wangda815582020-10-31 14:01:12 +0800212 dma_contiguous_reserve(dma32_phys_limit);
Anup Patel0651c262019-02-21 11:25:49 +0530213 memblock_allow_resize();
Anup Patel0651c262019-02-21 11:25:49 +0530214}
Anup Patel6f1e9e92019-02-13 16:38:36 +0530215
Christoph Hellwig6bd33e12019-10-28 13:10:41 +0100216#ifdef CONFIG_MMU
Jisheng Zhang01062352021-05-16 21:15:56 +0800217static struct pt_alloc_ops _pt_ops __initdata;
Vitaly Wool44c92252021-04-13 02:35:14 -0400218
219#ifdef CONFIG_XIP_KERNEL
220#define pt_ops (*(struct pt_alloc_ops *)XIP_FIXUP(&_pt_ops))
221#else
222#define pt_ops _pt_ops
223#endif
Atish Patrae8dcb612020-09-17 15:37:12 -0700224
Jisheng Zhangde31ea42021-03-30 02:22:51 +0800225unsigned long pfn_base __ro_after_init;
Anup Patel387181d2019-03-26 08:03:47 +0000226EXPORT_SYMBOL(pfn_base);
227
Anup Patel6f1e9e92019-02-13 16:38:36 +0530228pgd_t swapper_pg_dir[PTRS_PER_PGD] __page_aligned_bss;
Anup Patel671f9a32019-06-28 13:36:21 -0700229pgd_t trampoline_pg_dir[PTRS_PER_PGD] __page_aligned_bss;
Jisheng Zhang01062352021-05-16 21:15:56 +0800230static pte_t fixmap_pte[PTRS_PER_PTE] __page_aligned_bss;
Anup Patel671f9a32019-06-28 13:36:21 -0700231
Anup Patel671f9a32019-06-28 13:36:21 -0700232pgd_t early_pg_dir[PTRS_PER_PGD] __initdata __aligned(PAGE_SIZE);
Anup Patelf2c17aa2019-01-07 20:57:01 +0530233
Vitaly Wool44c92252021-04-13 02:35:14 -0400234#ifdef CONFIG_XIP_KERNEL
235#define trampoline_pg_dir ((pgd_t *)XIP_FIXUP(trampoline_pg_dir))
236#define fixmap_pte ((pte_t *)XIP_FIXUP(fixmap_pte))
237#define early_pg_dir ((pgd_t *)XIP_FIXUP(early_pg_dir))
238#endif /* CONFIG_XIP_KERNEL */
239
Anup Patelf2c17aa2019-01-07 20:57:01 +0530240void __set_fixmap(enum fixed_addresses idx, phys_addr_t phys, pgprot_t prot)
241{
242 unsigned long addr = __fix_to_virt(idx);
243 pte_t *ptep;
244
245 BUG_ON(idx <= FIX_HOLE || idx >= __end_of_fixed_addresses);
246
247 ptep = &fixmap_pte[pte_index(addr)];
248
Greentime Hu21190b72020-08-04 11:02:05 +0800249 if (pgprot_val(prot))
Anup Patelf2c17aa2019-01-07 20:57:01 +0530250 set_pte(ptep, pfn_pte(phys >> PAGE_SHIFT, prot));
Greentime Hu21190b72020-08-04 11:02:05 +0800251 else
Anup Patelf2c17aa2019-01-07 20:57:01 +0530252 pte_clear(&init_mm, addr, ptep);
Greentime Hu21190b72020-08-04 11:02:05 +0800253 local_flush_tlb_page(addr);
Anup Patelf2c17aa2019-01-07 20:57:01 +0530254}
255
Atish Patrae8dcb612020-09-17 15:37:12 -0700256static inline pte_t *__init get_pte_virt_early(phys_addr_t pa)
Anup Patel671f9a32019-06-28 13:36:21 -0700257{
Atish Patrae8dcb612020-09-17 15:37:12 -0700258 return (pte_t *)((uintptr_t)pa);
Anup Patel671f9a32019-06-28 13:36:21 -0700259}
260
Atish Patrae8dcb612020-09-17 15:37:12 -0700261static inline pte_t *__init get_pte_virt_fixmap(phys_addr_t pa)
262{
263 clear_fixmap(FIX_PTE);
264 return (pte_t *)set_fixmap_offset(FIX_PTE, pa);
265}
266
Jisheng Zhang01062352021-05-16 21:15:56 +0800267static inline pte_t *__init get_pte_virt_late(phys_addr_t pa)
Atish Patrae8dcb612020-09-17 15:37:12 -0700268{
269 return (pte_t *) __va(pa);
270}
271
272static inline phys_addr_t __init alloc_pte_early(uintptr_t va)
Anup Patel671f9a32019-06-28 13:36:21 -0700273{
274 /*
275 * We only create PMD or PGD early mappings so we
276 * should never reach here with MMU disabled.
277 */
Atish Patrae8dcb612020-09-17 15:37:12 -0700278 BUG();
279}
Anup Patel671f9a32019-06-28 13:36:21 -0700280
Atish Patrae8dcb612020-09-17 15:37:12 -0700281static inline phys_addr_t __init alloc_pte_fixmap(uintptr_t va)
282{
Anup Patel671f9a32019-06-28 13:36:21 -0700283 return memblock_phys_alloc(PAGE_SIZE, PAGE_SIZE);
284}
285
Jisheng Zhang01062352021-05-16 21:15:56 +0800286static phys_addr_t __init alloc_pte_late(uintptr_t va)
Atish Patrae8dcb612020-09-17 15:37:12 -0700287{
288 unsigned long vaddr;
289
290 vaddr = __get_free_page(GFP_KERNEL);
zhouchuangaoe75e6bf2021-03-30 06:56:26 -0700291 BUG_ON(!vaddr || !pgtable_pte_page_ctor(virt_to_page(vaddr)));
292
Atish Patrae8dcb612020-09-17 15:37:12 -0700293 return __pa(vaddr);
294}
295
Anup Patel671f9a32019-06-28 13:36:21 -0700296static void __init create_pte_mapping(pte_t *ptep,
297 uintptr_t va, phys_addr_t pa,
298 phys_addr_t sz, pgprot_t prot)
299{
Mike Rapoport974b9b22020-06-08 21:33:10 -0700300 uintptr_t pte_idx = pte_index(va);
Anup Patel671f9a32019-06-28 13:36:21 -0700301
302 BUG_ON(sz != PAGE_SIZE);
303
Mike Rapoport974b9b22020-06-08 21:33:10 -0700304 if (pte_none(ptep[pte_idx]))
305 ptep[pte_idx] = pfn_pte(PFN_DOWN(pa), prot);
Anup Patel671f9a32019-06-28 13:36:21 -0700306}
307
308#ifndef __PAGETABLE_PMD_FOLDED
309
Jisheng Zhang01062352021-05-16 21:15:56 +0800310static pmd_t trampoline_pmd[PTRS_PER_PMD] __page_aligned_bss;
311static pmd_t fixmap_pmd[PTRS_PER_PMD] __page_aligned_bss;
312static pmd_t early_pmd[PTRS_PER_PMD] __initdata __aligned(PAGE_SIZE);
313static pmd_t early_dtb_pmd[PTRS_PER_PMD] __initdata __aligned(PAGE_SIZE);
Anup Patel671f9a32019-06-28 13:36:21 -0700314
Vitaly Wool44c92252021-04-13 02:35:14 -0400315#ifdef CONFIG_XIP_KERNEL
316#define trampoline_pmd ((pmd_t *)XIP_FIXUP(trampoline_pmd))
317#define fixmap_pmd ((pmd_t *)XIP_FIXUP(fixmap_pmd))
318#define early_pmd ((pmd_t *)XIP_FIXUP(early_pmd))
319#endif /* CONFIG_XIP_KERNEL */
320
Atish Patrae8dcb612020-09-17 15:37:12 -0700321static pmd_t *__init get_pmd_virt_early(phys_addr_t pa)
Anup Patel671f9a32019-06-28 13:36:21 -0700322{
Atish Patrae8dcb612020-09-17 15:37:12 -0700323 /* Before MMU is enabled */
324 return (pmd_t *)((uintptr_t)pa);
Anup Patel671f9a32019-06-28 13:36:21 -0700325}
326
Atish Patrae8dcb612020-09-17 15:37:12 -0700327static pmd_t *__init get_pmd_virt_fixmap(phys_addr_t pa)
328{
329 clear_fixmap(FIX_PMD);
330 return (pmd_t *)set_fixmap_offset(FIX_PMD, pa);
331}
332
Jisheng Zhang01062352021-05-16 21:15:56 +0800333static pmd_t *__init get_pmd_virt_late(phys_addr_t pa)
Atish Patrae8dcb612020-09-17 15:37:12 -0700334{
335 return (pmd_t *) __va(pa);
336}
337
338static phys_addr_t __init alloc_pmd_early(uintptr_t va)
Anup Patel671f9a32019-06-28 13:36:21 -0700339{
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200340 BUG_ON((va - kernel_map.virt_addr) >> PGDIR_SHIFT);
Anup Patel671f9a32019-06-28 13:36:21 -0700341
Alexandre Ghiti0f02de42021-02-21 09:22:33 -0500342 return (uintptr_t)early_pmd;
Anup Patel671f9a32019-06-28 13:36:21 -0700343}
344
Atish Patrae8dcb612020-09-17 15:37:12 -0700345static phys_addr_t __init alloc_pmd_fixmap(uintptr_t va)
346{
347 return memblock_phys_alloc(PAGE_SIZE, PAGE_SIZE);
348}
349
Jisheng Zhang01062352021-05-16 21:15:56 +0800350static phys_addr_t __init alloc_pmd_late(uintptr_t va)
Atish Patrae8dcb612020-09-17 15:37:12 -0700351{
352 unsigned long vaddr;
353
354 vaddr = __get_free_page(GFP_KERNEL);
355 BUG_ON(!vaddr);
356 return __pa(vaddr);
357}
358
Anup Patel671f9a32019-06-28 13:36:21 -0700359static void __init create_pmd_mapping(pmd_t *pmdp,
360 uintptr_t va, phys_addr_t pa,
361 phys_addr_t sz, pgprot_t prot)
362{
363 pte_t *ptep;
364 phys_addr_t pte_phys;
Mike Rapoport974b9b22020-06-08 21:33:10 -0700365 uintptr_t pmd_idx = pmd_index(va);
Anup Patel671f9a32019-06-28 13:36:21 -0700366
367 if (sz == PMD_SIZE) {
Mike Rapoport974b9b22020-06-08 21:33:10 -0700368 if (pmd_none(pmdp[pmd_idx]))
369 pmdp[pmd_idx] = pfn_pmd(PFN_DOWN(pa), prot);
Anup Patel671f9a32019-06-28 13:36:21 -0700370 return;
371 }
372
Mike Rapoport974b9b22020-06-08 21:33:10 -0700373 if (pmd_none(pmdp[pmd_idx])) {
Atish Patrae8dcb612020-09-17 15:37:12 -0700374 pte_phys = pt_ops.alloc_pte(va);
Mike Rapoport974b9b22020-06-08 21:33:10 -0700375 pmdp[pmd_idx] = pfn_pmd(PFN_DOWN(pte_phys), PAGE_TABLE);
Atish Patrae8dcb612020-09-17 15:37:12 -0700376 ptep = pt_ops.get_pte_virt(pte_phys);
Anup Patel671f9a32019-06-28 13:36:21 -0700377 memset(ptep, 0, PAGE_SIZE);
378 } else {
Mike Rapoport974b9b22020-06-08 21:33:10 -0700379 pte_phys = PFN_PHYS(_pmd_pfn(pmdp[pmd_idx]));
Atish Patrae8dcb612020-09-17 15:37:12 -0700380 ptep = pt_ops.get_pte_virt(pte_phys);
Anup Patel671f9a32019-06-28 13:36:21 -0700381 }
382
383 create_pte_mapping(ptep, va, pa, sz, prot);
384}
385
386#define pgd_next_t pmd_t
Atish Patrae8dcb612020-09-17 15:37:12 -0700387#define alloc_pgd_next(__va) pt_ops.alloc_pmd(__va)
388#define get_pgd_next_virt(__pa) pt_ops.get_pmd_virt(__pa)
Anup Patel671f9a32019-06-28 13:36:21 -0700389#define create_pgd_next_mapping(__nextp, __va, __pa, __sz, __prot) \
390 create_pmd_mapping(__nextp, __va, __pa, __sz, __prot)
Anup Patel671f9a32019-06-28 13:36:21 -0700391#define fixmap_pgd_next fixmap_pmd
392#else
393#define pgd_next_t pte_t
Atish Patrae8dcb612020-09-17 15:37:12 -0700394#define alloc_pgd_next(__va) pt_ops.alloc_pte(__va)
395#define get_pgd_next_virt(__pa) pt_ops.get_pte_virt(__pa)
Anup Patel671f9a32019-06-28 13:36:21 -0700396#define create_pgd_next_mapping(__nextp, __va, __pa, __sz, __prot) \
397 create_pte_mapping(__nextp, __va, __pa, __sz, __prot)
Anup Patel671f9a32019-06-28 13:36:21 -0700398#define fixmap_pgd_next fixmap_pte
399#endif
400
Atish Patrab91540d2020-09-17 15:37:15 -0700401void __init create_pgd_mapping(pgd_t *pgdp,
Anup Patel671f9a32019-06-28 13:36:21 -0700402 uintptr_t va, phys_addr_t pa,
403 phys_addr_t sz, pgprot_t prot)
404{
405 pgd_next_t *nextp;
406 phys_addr_t next_phys;
Mike Rapoport974b9b22020-06-08 21:33:10 -0700407 uintptr_t pgd_idx = pgd_index(va);
Anup Patel671f9a32019-06-28 13:36:21 -0700408
409 if (sz == PGDIR_SIZE) {
Mike Rapoport974b9b22020-06-08 21:33:10 -0700410 if (pgd_val(pgdp[pgd_idx]) == 0)
411 pgdp[pgd_idx] = pfn_pgd(PFN_DOWN(pa), prot);
Anup Patel671f9a32019-06-28 13:36:21 -0700412 return;
413 }
414
Mike Rapoport974b9b22020-06-08 21:33:10 -0700415 if (pgd_val(pgdp[pgd_idx]) == 0) {
Anup Patel671f9a32019-06-28 13:36:21 -0700416 next_phys = alloc_pgd_next(va);
Mike Rapoport974b9b22020-06-08 21:33:10 -0700417 pgdp[pgd_idx] = pfn_pgd(PFN_DOWN(next_phys), PAGE_TABLE);
Anup Patel671f9a32019-06-28 13:36:21 -0700418 nextp = get_pgd_next_virt(next_phys);
419 memset(nextp, 0, PAGE_SIZE);
420 } else {
Mike Rapoport974b9b22020-06-08 21:33:10 -0700421 next_phys = PFN_PHYS(_pgd_pfn(pgdp[pgd_idx]));
Anup Patel671f9a32019-06-28 13:36:21 -0700422 nextp = get_pgd_next_virt(next_phys);
423 }
424
425 create_pgd_next_mapping(nextp, va, pa, sz, prot);
426}
427
428static uintptr_t __init best_map_size(phys_addr_t base, phys_addr_t size)
429{
Zong Li0fdc6362019-11-08 01:00:40 -0800430 /* Upgrade to PMD_SIZE mappings whenever possible */
431 if ((base & (PMD_SIZE - 1)) || (size & (PMD_SIZE - 1)))
432 return PAGE_SIZE;
Anup Patel671f9a32019-06-28 13:36:21 -0700433
Zong Li0fdc6362019-11-08 01:00:40 -0800434 return PMD_SIZE;
Anup Patel671f9a32019-06-28 13:36:21 -0700435}
436
Vitaly Wool44c92252021-04-13 02:35:14 -0400437#ifdef CONFIG_XIP_KERNEL
438/* called from head.S with MMU off */
439asmlinkage void __init __copy_data(void)
440{
441 void *from = (void *)(&_sdata);
442 void *end = (void *)(&_end);
443 void *to = (void *)CONFIG_PHYS_RAM_BASE;
444 size_t sz = (size_t)(end - from + 1);
445
446 memcpy(to, from, sz);
447}
448#endif
449
Alexandre Ghitie5c35fa02021-06-24 14:00:41 +0200450#ifdef CONFIG_STRICT_KERNEL_RWX
451static __init pgprot_t pgprot_from_va(uintptr_t va)
452{
453 if (is_va_kernel_text(va))
454 return PAGE_KERNEL_READ_EXEC;
455
456 /*
457 * In 64-bit kernel, the kernel mapping is outside the linear mapping so
458 * we must protect its linear mapping alias from being executed and
459 * written.
460 * And rodata section is marked readonly in mark_rodata_ro.
461 */
462 if (IS_ENABLED(CONFIG_64BIT) && is_va_kernel_lm_alias_text(va))
463 return PAGE_KERNEL_READ;
464
465 return PAGE_KERNEL;
466}
467
468void mark_rodata_ro(void)
469{
470 set_kernel_memory(__start_rodata, _data, set_memory_ro);
471 if (IS_ENABLED(CONFIG_64BIT))
472 set_kernel_memory(lm_alias(__start_rodata), lm_alias(_data),
473 set_memory_ro);
474
475 debug_checkwx();
476}
477#else
478static __init pgprot_t pgprot_from_va(uintptr_t va)
479{
480 if (IS_ENABLED(CONFIG_64BIT) && !is_kernel_mapping(va))
481 return PAGE_KERNEL;
482
483 return PAGE_KERNEL_EXEC;
484}
485#endif /* CONFIG_STRICT_KERNEL_RWX */
486
Anup Patel387181d2019-03-26 08:03:47 +0000487/*
488 * setup_vm() is called from head.S with MMU-off.
489 *
490 * Following requirements should be honoured for setup_vm() to work
491 * correctly:
492 * 1) It should use PC-relative addressing for accessing kernel symbols.
493 * To achieve this we always use GCC cmodel=medany.
494 * 2) The compiler instrumentation for FTRACE will not work for setup_vm()
495 * so disable compiler instrumentation when FTRACE is enabled.
496 *
497 * Currently, the above requirements are honoured by using custom CFLAGS
498 * for init.o in mm/Makefile.
499 */
500
501#ifndef __riscv_cmodel_medany
Paul Walmsley6a527b62019-10-17 14:45:58 -0700502#error "setup_vm() is called from head.S before relocate so it should not use absolute addressing."
Anup Patel387181d2019-03-26 08:03:47 +0000503#endif
504
Vitaly Wool44c92252021-04-13 02:35:14 -0400505#ifdef CONFIG_XIP_KERNEL
Alexandre Ghitie5c35fa02021-06-24 14:00:41 +0200506static void __init create_kernel_page_table(pgd_t *pgdir, uintptr_t map_size,
507 __always_unused bool early)
Vitaly Wool44c92252021-04-13 02:35:14 -0400508{
509 uintptr_t va, end_va;
510
511 /* Map the flash resident part */
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200512 end_va = kernel_map.virt_addr + kernel_map.xiprom_sz;
513 for (va = kernel_map.virt_addr; va < end_va; va += map_size)
Vitaly Wool44c92252021-04-13 02:35:14 -0400514 create_pgd_mapping(pgdir, va,
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200515 kernel_map.xiprom + (va - kernel_map.virt_addr),
Vitaly Wool44c92252021-04-13 02:35:14 -0400516 map_size, PAGE_KERNEL_EXEC);
517
518 /* Map the data in RAM */
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200519 end_va = kernel_map.virt_addr + XIP_OFFSET + kernel_map.size;
520 for (va = kernel_map.virt_addr + XIP_OFFSET; va < end_va; va += map_size)
Vitaly Wool44c92252021-04-13 02:35:14 -0400521 create_pgd_mapping(pgdir, va,
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200522 kernel_map.phys_addr + (va - (kernel_map.virt_addr + XIP_OFFSET)),
Vitaly Wool44c92252021-04-13 02:35:14 -0400523 map_size, PAGE_KERNEL);
524}
525#else
Alexandre Ghitie5c35fa02021-06-24 14:00:41 +0200526static void __init create_kernel_page_table(pgd_t *pgdir, uintptr_t map_size,
527 bool early)
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400528{
529 uintptr_t va, end_va;
530
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200531 end_va = kernel_map.virt_addr + kernel_map.size;
532 for (va = kernel_map.virt_addr; va < end_va; va += map_size)
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400533 create_pgd_mapping(pgdir, va,
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200534 kernel_map.phys_addr + (va - kernel_map.virt_addr),
Alexandre Ghitie5c35fa02021-06-24 14:00:41 +0200535 map_size,
536 early ?
537 PAGE_KERNEL_EXEC : pgprot_from_va(va));
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400538}
Vitaly Wool44c92252021-04-13 02:35:14 -0400539#endif
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400540
Anup Patel671f9a32019-06-28 13:36:21 -0700541asmlinkage void __init setup_vm(uintptr_t dtb_pa)
Anup Patel6f1e9e92019-02-13 16:38:36 +0530542{
Vitaly Wool44c92252021-04-13 02:35:14 -0400543 uintptr_t __maybe_unused pa;
Alexandre Ghiti0f02de42021-02-21 09:22:33 -0500544 uintptr_t map_size;
Atish Patra6262f662020-09-17 15:37:11 -0700545#ifndef __PAGETABLE_PMD_FOLDED
546 pmd_t fix_bmap_spmd, fix_bmap_epmd;
547#endif
Anup Patel6f1e9e92019-02-13 16:38:36 +0530548
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200549 kernel_map.virt_addr = KERNEL_LINK_ADDR;
550
Vitaly Wool44c92252021-04-13 02:35:14 -0400551#ifdef CONFIG_XIP_KERNEL
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200552 kernel_map.xiprom = (uintptr_t)CONFIG_XIP_PHYS_ADDR;
553 kernel_map.xiprom_sz = (uintptr_t)(&_exiprom) - (uintptr_t)(&_xiprom);
Vitaly Wool44c92252021-04-13 02:35:14 -0400554
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200555 kernel_map.phys_addr = (uintptr_t)CONFIG_PHYS_RAM_BASE;
556 kernel_map.size = (uintptr_t)(&_end) - (uintptr_t)(&_sdata);
Vitaly Wool44c92252021-04-13 02:35:14 -0400557
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200558 kernel_map.va_kernel_xip_pa_offset = kernel_map.virt_addr - kernel_map.xiprom;
Vitaly Wool44c92252021-04-13 02:35:14 -0400559#else
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200560 kernel_map.phys_addr = (uintptr_t)(&_start);
561 kernel_map.size = (uintptr_t)(&_end) - kernel_map.phys_addr;
Vitaly Wool44c92252021-04-13 02:35:14 -0400562#endif
Anup Patel6f1e9e92019-02-13 16:38:36 +0530563
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200564 kernel_map.va_pa_offset = PAGE_OFFSET - kernel_map.phys_addr;
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400565#ifdef CONFIG_64BIT
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200566 kernel_map.va_kernel_pa_offset = kernel_map.virt_addr - kernel_map.phys_addr;
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400567#endif
568
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200569 pfn_base = PFN_DOWN(kernel_map.phys_addr);
Anup Patel671f9a32019-06-28 13:36:21 -0700570
571 /*
572 * Enforce boot alignment requirements of RV32 and
573 * RV64 by only allowing PMD or PGD mappings.
574 */
Alexandre Ghiti0f02de42021-02-21 09:22:33 -0500575 map_size = PMD_SIZE;
Anup Patel6f1e9e92019-02-13 16:38:36 +0530576
577 /* Sanity check alignment and size */
578 BUG_ON((PAGE_OFFSET % PGDIR_SIZE) != 0);
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200579 BUG_ON((kernel_map.phys_addr % map_size) != 0);
Anup Patel671f9a32019-06-28 13:36:21 -0700580
Atish Patrae8dcb612020-09-17 15:37:12 -0700581 pt_ops.alloc_pte = alloc_pte_early;
582 pt_ops.get_pte_virt = get_pte_virt_early;
583#ifndef __PAGETABLE_PMD_FOLDED
584 pt_ops.alloc_pmd = alloc_pmd_early;
585 pt_ops.get_pmd_virt = get_pmd_virt_early;
586#endif
Anup Patel671f9a32019-06-28 13:36:21 -0700587 /* Setup early PGD for fixmap */
588 create_pgd_mapping(early_pg_dir, FIXADDR_START,
589 (uintptr_t)fixmap_pgd_next, PGDIR_SIZE, PAGE_TABLE);
Anup Patel6f1e9e92019-02-13 16:38:36 +0530590
591#ifndef __PAGETABLE_PMD_FOLDED
Anup Patel671f9a32019-06-28 13:36:21 -0700592 /* Setup fixmap PMD */
593 create_pmd_mapping(fixmap_pmd, FIXADDR_START,
594 (uintptr_t)fixmap_pte, PMD_SIZE, PAGE_TABLE);
595 /* Setup trampoline PGD and PMD */
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200596 create_pgd_mapping(trampoline_pg_dir, kernel_map.virt_addr,
Anup Patel671f9a32019-06-28 13:36:21 -0700597 (uintptr_t)trampoline_pmd, PGDIR_SIZE, PAGE_TABLE);
Vitaly Wool44c92252021-04-13 02:35:14 -0400598#ifdef CONFIG_XIP_KERNEL
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200599 create_pmd_mapping(trampoline_pmd, kernel_map.virt_addr,
600 kernel_map.xiprom, PMD_SIZE, PAGE_KERNEL_EXEC);
Vitaly Wool44c92252021-04-13 02:35:14 -0400601#else
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200602 create_pmd_mapping(trampoline_pmd, kernel_map.virt_addr,
603 kernel_map.phys_addr, PMD_SIZE, PAGE_KERNEL_EXEC);
Vitaly Wool44c92252021-04-13 02:35:14 -0400604#endif
Anup Patel6f1e9e92019-02-13 16:38:36 +0530605#else
Anup Patel671f9a32019-06-28 13:36:21 -0700606 /* Setup trampoline PGD */
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200607 create_pgd_mapping(trampoline_pg_dir, kernel_map.virt_addr,
608 kernel_map.phys_addr, PGDIR_SIZE, PAGE_KERNEL_EXEC);
Anup Patel671f9a32019-06-28 13:36:21 -0700609#endif
Anup Patel6f1e9e92019-02-13 16:38:36 +0530610
Anup Patel671f9a32019-06-28 13:36:21 -0700611 /*
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400612 * Setup early PGD covering entire kernel which will allow
Anup Patel671f9a32019-06-28 13:36:21 -0700613 * us to reach paging_init(). We map all memory banks later
614 * in setup_vm_final() below.
615 */
Alexandre Ghitie5c35fa02021-06-24 14:00:41 +0200616 create_kernel_page_table(early_pg_dir, map_size, true);
Anup Patelf2c17aa2019-01-07 20:57:01 +0530617
Anup Patel1074dd42020-11-04 12:07:13 +0530618#ifndef __PAGETABLE_PMD_FOLDED
619 /* Setup early PMD for DTB */
620 create_pgd_mapping(early_pg_dir, DTB_EARLY_BASE_VA,
621 (uintptr_t)early_dtb_pmd, PGDIR_SIZE, PAGE_TABLE);
Vitaly Woolf105aa92021-01-16 01:49:48 +0200622#ifndef CONFIG_BUILTIN_DTB
Anup Patel1074dd42020-11-04 12:07:13 +0530623 /* Create two consecutive PMD mappings for FDT early scan */
624 pa = dtb_pa & ~(PMD_SIZE - 1);
625 create_pmd_mapping(early_dtb_pmd, DTB_EARLY_BASE_VA,
626 pa, PMD_SIZE, PAGE_KERNEL);
627 create_pmd_mapping(early_dtb_pmd, DTB_EARLY_BASE_VA + PMD_SIZE,
628 pa + PMD_SIZE, PMD_SIZE, PAGE_KERNEL);
629 dtb_early_va = (void *)DTB_EARLY_BASE_VA + (dtb_pa & (PMD_SIZE - 1));
Vitaly Woolf105aa92021-01-16 01:49:48 +0200630#else /* CONFIG_BUILTIN_DTB */
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400631#ifdef CONFIG_64BIT
632 /*
633 * __va can't be used since it would return a linear mapping address
634 * whereas dtb_early_va will be used before setup_vm_final installs
635 * the linear mapping.
636 */
Vitaly Wool44c92252021-04-13 02:35:14 -0400637 dtb_early_va = kernel_mapping_pa_to_va(XIP_FIXUP(dtb_pa));
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400638#else
Vitaly Woolf105aa92021-01-16 01:49:48 +0200639 dtb_early_va = __va(dtb_pa);
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400640#endif /* CONFIG_64BIT */
Vitaly Woolf105aa92021-01-16 01:49:48 +0200641#endif /* CONFIG_BUILTIN_DTB */
Anup Patel1074dd42020-11-04 12:07:13 +0530642#else
Vitaly Woolf105aa92021-01-16 01:49:48 +0200643#ifndef CONFIG_BUILTIN_DTB
Anup Patel8f3a2b42020-09-17 15:37:10 -0700644 /* Create two consecutive PGD mappings for FDT early scan */
645 pa = dtb_pa & ~(PGDIR_SIZE - 1);
646 create_pgd_mapping(early_pg_dir, DTB_EARLY_BASE_VA,
647 pa, PGDIR_SIZE, PAGE_KERNEL);
648 create_pgd_mapping(early_pg_dir, DTB_EARLY_BASE_VA + PGDIR_SIZE,
649 pa + PGDIR_SIZE, PGDIR_SIZE, PAGE_KERNEL);
650 dtb_early_va = (void *)DTB_EARLY_BASE_VA + (dtb_pa & (PGDIR_SIZE - 1));
Vitaly Woolf105aa92021-01-16 01:49:48 +0200651#else /* CONFIG_BUILTIN_DTB */
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400652#ifdef CONFIG_64BIT
Vitaly Wool44c92252021-04-13 02:35:14 -0400653 dtb_early_va = kernel_mapping_pa_to_va(XIP_FIXUP(dtb_pa));
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400654#else
Vitaly Woolf105aa92021-01-16 01:49:48 +0200655 dtb_early_va = __va(dtb_pa);
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400656#endif /* CONFIG_64BIT */
Vitaly Woolf105aa92021-01-16 01:49:48 +0200657#endif /* CONFIG_BUILTIN_DTB */
Anup Patel1074dd42020-11-04 12:07:13 +0530658#endif
Albert Ou922b0372019-09-27 16:14:18 -0700659 dtb_early_pa = dtb_pa;
Atish Patra6262f662020-09-17 15:37:11 -0700660
661 /*
662 * Bootime fixmap only can handle PMD_SIZE mapping. Thus, boot-ioremap
663 * range can not span multiple pmds.
664 */
665 BUILD_BUG_ON((__fix_to_virt(FIX_BTMAP_BEGIN) >> PMD_SHIFT)
666 != (__fix_to_virt(FIX_BTMAP_END) >> PMD_SHIFT));
667
668#ifndef __PAGETABLE_PMD_FOLDED
669 /*
670 * Early ioremap fixmap is already created as it lies within first 2MB
671 * of fixmap region. We always map PMD_SIZE. Thus, both FIX_BTMAP_END
672 * FIX_BTMAP_BEGIN should lie in the same pmd. Verify that and warn
673 * the user if not.
674 */
675 fix_bmap_spmd = fixmap_pmd[pmd_index(__fix_to_virt(FIX_BTMAP_BEGIN))];
676 fix_bmap_epmd = fixmap_pmd[pmd_index(__fix_to_virt(FIX_BTMAP_END))];
677 if (pmd_val(fix_bmap_spmd) != pmd_val(fix_bmap_epmd)) {
678 WARN_ON(1);
679 pr_warn("fixmap btmap start [%08lx] != end [%08lx]\n",
680 pmd_val(fix_bmap_spmd), pmd_val(fix_bmap_epmd));
681 pr_warn("fix_to_virt(FIX_BTMAP_BEGIN): %08lx\n",
682 fix_to_virt(FIX_BTMAP_BEGIN));
683 pr_warn("fix_to_virt(FIX_BTMAP_END): %08lx\n",
684 fix_to_virt(FIX_BTMAP_END));
685
686 pr_warn("FIX_BTMAP_END: %d\n", FIX_BTMAP_END);
687 pr_warn("FIX_BTMAP_BEGIN: %d\n", FIX_BTMAP_BEGIN);
688 }
689#endif
Anup Patel671f9a32019-06-28 13:36:21 -0700690}
691
692static void __init setup_vm_final(void)
693{
694 uintptr_t va, map_size;
695 phys_addr_t pa, start, end;
Mike Rapoportb10d6bc2020-10-13 16:58:08 -0700696 u64 i;
Anup Patel671f9a32019-06-28 13:36:21 -0700697
Atish Patrae8dcb612020-09-17 15:37:12 -0700698 /**
699 * MMU is enabled at this point. But page table setup is not complete yet.
700 * fixmap page table alloc functions should be used at this point
701 */
702 pt_ops.alloc_pte = alloc_pte_fixmap;
703 pt_ops.get_pte_virt = get_pte_virt_fixmap;
704#ifndef __PAGETABLE_PMD_FOLDED
705 pt_ops.alloc_pmd = alloc_pmd_fixmap;
706 pt_ops.get_pmd_virt = get_pmd_virt_fixmap;
707#endif
Anup Patel671f9a32019-06-28 13:36:21 -0700708 /* Setup swapper PGD for fixmap */
709 create_pgd_mapping(swapper_pg_dir, FIXADDR_START,
Zong Liac51e002020-01-02 11:12:40 +0800710 __pa_symbol(fixmap_pgd_next),
Anup Patel671f9a32019-06-28 13:36:21 -0700711 PGDIR_SIZE, PAGE_TABLE);
712
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400713 /* Map all memory banks in the linear mapping */
Mike Rapoportb10d6bc2020-10-13 16:58:08 -0700714 for_each_mem_range(i, &start, &end) {
Anup Patel671f9a32019-06-28 13:36:21 -0700715 if (start >= end)
716 break;
Anup Patel671f9a32019-06-28 13:36:21 -0700717 if (start <= __pa(PAGE_OFFSET) &&
718 __pa(PAGE_OFFSET) < end)
719 start = __pa(PAGE_OFFSET);
Alexandre Ghitic99127c2021-06-29 11:13:47 +0200720 if (end >= __pa(PAGE_OFFSET) + memory_limit)
721 end = __pa(PAGE_OFFSET) + memory_limit;
Anup Patel671f9a32019-06-28 13:36:21 -0700722
723 map_size = best_map_size(start, end - start);
724 for (pa = start; pa < end; pa += map_size) {
725 va = (uintptr_t)__va(pa);
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400726
Alexandre Ghitie5c35fa02021-06-24 14:00:41 +0200727 create_pgd_mapping(swapper_pg_dir, va, pa, map_size,
728 pgprot_from_va(va));
Anup Patel671f9a32019-06-28 13:36:21 -0700729 }
Anup Patel6f1e9e92019-02-13 16:38:36 +0530730 }
Anup Patelf2c17aa2019-01-07 20:57:01 +0530731
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400732#ifdef CONFIG_64BIT
733 /* Map the kernel */
Alexandre Ghitie5c35fa02021-06-24 14:00:41 +0200734 create_kernel_page_table(swapper_pg_dir, PMD_SIZE, false);
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400735#endif
736
Anup Patel671f9a32019-06-28 13:36:21 -0700737 /* Clear fixmap PTE and PMD mappings */
738 clear_fixmap(FIX_PTE);
739 clear_fixmap(FIX_PMD);
740
741 /* Move to swapper page table */
Zong Liac51e002020-01-02 11:12:40 +0800742 csr_write(CSR_SATP, PFN_DOWN(__pa_symbol(swapper_pg_dir)) | SATP_MODE);
Anup Patel671f9a32019-06-28 13:36:21 -0700743 local_flush_tlb_all();
Atish Patrae8dcb612020-09-17 15:37:12 -0700744
745 /* generic page allocation functions must be used to setup page table */
746 pt_ops.alloc_pte = alloc_pte_late;
747 pt_ops.get_pte_virt = get_pte_virt_late;
748#ifndef __PAGETABLE_PMD_FOLDED
749 pt_ops.alloc_pmd = alloc_pmd_late;
750 pt_ops.get_pmd_virt = get_pmd_virt_late;
751#endif
Anup Patel671f9a32019-06-28 13:36:21 -0700752}
Christoph Hellwig6bd33e12019-10-28 13:10:41 +0100753#else
754asmlinkage void __init setup_vm(uintptr_t dtb_pa)
755{
756 dtb_early_va = (void *)dtb_pa;
Atish Patraa78c6f52020-10-01 12:04:56 -0700757 dtb_early_pa = dtb_pa;
Christoph Hellwig6bd33e12019-10-28 13:10:41 +0100758}
759
760static inline void setup_vm_final(void)
761{
762}
763#endif /* CONFIG_MMU */
Anup Patel671f9a32019-06-28 13:36:21 -0700764
Nick Kossifidise53d2812021-04-19 03:55:38 +0300765#ifdef CONFIG_KEXEC_CORE
766/*
767 * reserve_crashkernel() - reserves memory for crash kernel
768 *
769 * This function reserves memory area given in "crashkernel=" kernel command
770 * line parameter. The memory reserved is used by dump capture kernel when
771 * primary kernel is crashing.
772 */
773static void __init reserve_crashkernel(void)
774{
775 unsigned long long crash_base = 0;
776 unsigned long long crash_size = 0;
777 unsigned long search_start = memblock_start_of_DRAM();
778 unsigned long search_end = memblock_end_of_DRAM();
779
780 int ret = 0;
781
Nick Kossifidis56409752021-04-19 03:55:39 +0300782 /*
783 * Don't reserve a region for a crash kernel on a crash kernel
784 * since it doesn't make much sense and we have limited memory
785 * resources.
786 */
787#ifdef CONFIG_CRASH_DUMP
788 if (is_kdump_kernel()) {
789 pr_info("crashkernel: ignoring reservation request\n");
790 return;
791 }
792#endif
793
Nick Kossifidise53d2812021-04-19 03:55:38 +0300794 ret = parse_crashkernel(boot_command_line, memblock_phys_mem_size(),
795 &crash_size, &crash_base);
796 if (ret || !crash_size)
797 return;
798
799 crash_size = PAGE_ALIGN(crash_size);
800
801 if (crash_base == 0) {
802 /*
803 * Current riscv boot protocol requires 2MB alignment for
804 * RV64 and 4MB alignment for RV32 (hugepage size)
805 */
806 crash_base = memblock_find_in_range(search_start, search_end,
807 crash_size, PMD_SIZE);
808
809 if (crash_base == 0) {
810 pr_warn("crashkernel: couldn't allocate %lldKB\n",
811 crash_size >> 10);
812 return;
813 }
814 } else {
815 /* User specifies base address explicitly. */
816 if (!memblock_is_region_memory(crash_base, crash_size)) {
817 pr_warn("crashkernel: requested region is not memory\n");
818 return;
819 }
820
821 if (memblock_is_region_reserved(crash_base, crash_size)) {
822 pr_warn("crashkernel: requested region is reserved\n");
823 return;
824 }
825
826
827 if (!IS_ALIGNED(crash_base, PMD_SIZE)) {
828 pr_warn("crashkernel: requested region is misaligned\n");
829 return;
830 }
831 }
832 memblock_reserve(crash_base, crash_size);
833
834 pr_info("crashkernel: reserved 0x%016llx - 0x%016llx (%lld MB)\n",
835 crash_base, crash_base + crash_size, crash_size >> 20);
836
837 crashk_res.start = crash_base;
838 crashk_res.end = crash_base + crash_size - 1;
839}
840#endif /* CONFIG_KEXEC_CORE */
841
Nick Kossifidis56409752021-04-19 03:55:39 +0300842#ifdef CONFIG_CRASH_DUMP
843/*
844 * We keep track of the ELF core header of the crashed
845 * kernel with a reserved-memory region with compatible
846 * string "linux,elfcorehdr". Here we register a callback
847 * to populate elfcorehdr_addr/size when this region is
848 * present. Note that this region will be marked as
849 * reserved once we call early_init_fdt_scan_reserved_mem()
850 * later on.
851 */
Jisheng Zhang01062352021-05-16 21:15:56 +0800852static int __init elfcore_hdr_setup(struct reserved_mem *rmem)
Nick Kossifidis56409752021-04-19 03:55:39 +0300853{
854 elfcorehdr_addr = rmem->base;
855 elfcorehdr_size = rmem->size;
856 return 0;
857}
858
859RESERVEDMEM_OF_DECLARE(elfcorehdr, "linux,elfcorehdr", elfcore_hdr_setup);
860#endif
861
Anup Patel671f9a32019-06-28 13:36:21 -0700862void __init paging_init(void)
863{
Kefeng Wangf842f5f2021-05-10 19:42:22 +0800864 setup_bootmem();
Anup Patel671f9a32019-06-28 13:36:21 -0700865 setup_vm_final();
Atish Patracbd34f42020-11-18 16:38:27 -0800866}
867
868void __init misc_mem_init(void)
869{
Kefeng Wangf6e5aed2021-02-25 14:54:17 +0800870 early_memtest(min_low_pfn << PAGE_SHIFT, max_low_pfn << PAGE_SHIFT);
Atish Patra4f0e8ee2020-11-18 16:38:29 -0800871 arch_numa_init();
Atish Patracbd34f42020-11-18 16:38:27 -0800872 sparse_init();
Anup Patel671f9a32019-06-28 13:36:21 -0700873 zone_sizes_init();
Nick Kossifidise53d2812021-04-19 03:55:38 +0300874#ifdef CONFIG_KEXEC_CORE
875 reserve_crashkernel();
876#endif
Atish Patra4f0e8ee2020-11-18 16:38:29 -0800877 memblock_dump_all();
Anup Patel6f1e9e92019-02-13 16:38:36 +0530878}
Logan Gunthorped95f1a52019-08-28 15:40:54 -0600879
Kefeng Wang9fe57d82019-10-23 11:23:02 +0800880#ifdef CONFIG_SPARSEMEM_VMEMMAP
Logan Gunthorped95f1a52019-08-28 15:40:54 -0600881int __meminit vmemmap_populate(unsigned long start, unsigned long end, int node,
882 struct vmem_altmap *altmap)
883{
Anshuman Khandual1d9cfee2020-08-06 23:23:19 -0700884 return vmemmap_populate_basepages(start, end, node, NULL);
Logan Gunthorped95f1a52019-08-28 15:40:54 -0600885}
886#endif