blob: a456b5a68d9906b5c095872ce2f8935904cd8024 [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/*
130 * The default maximal physical memory size is -PAGE_OFFSET,
131 * limit the memory size via mem.
132 */
133static phys_addr_t memory_limit = -PAGE_OFFSET;
134
135static int __init early_mem(char *p)
136{
137 u64 size;
138
139 if (!p)
140 return 1;
141
142 size = memparse(p, &p) & PAGE_MASK;
143 memory_limit = min_t(u64, size, memory_limit);
144
145 pr_notice("Memory limited to %lldMB\n", (u64)memory_limit >> 20);
146
147 return 0;
148}
149early_param("mem", early_mem);
150
Kefeng Wangf842f5f2021-05-10 19:42:22 +0800151static void __init setup_bootmem(void)
Anup Patel0651c262019-02-21 11:25:49 +0530152{
Zong Liac51e002020-01-02 11:12:40 +0800153 phys_addr_t vmlinux_end = __pa_symbol(&_end);
154 phys_addr_t vmlinux_start = __pa_symbol(&_start);
Atish Patraabb8e862021-01-11 15:45:02 -0800155 phys_addr_t max_mapped_addr = __pa(~(ulong)0);
Kefeng Wangc9811e32021-06-02 16:55:17 +0800156 phys_addr_t dram_end;
Anup Patel0651c262019-02-21 11:25:49 +0530157
Vitaly Wool44c92252021-04-13 02:35:14 -0400158#ifdef CONFIG_XIP_KERNEL
159 vmlinux_start = __pa_symbol(&_sdata);
160#endif
161
Kefeng Wangc9811e32021-06-02 16:55:17 +0800162 memblock_enforce_memory_limit(memory_limit);
Anup Patel0651c262019-02-21 11:25:49 +0530163
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400164 /*
165 * Reserve from the start of the kernel to the end of the kernel
Geert Uytterhoeven8db6f932021-04-29 17:05:00 +0200166 */
167#if defined(CONFIG_64BIT) && defined(CONFIG_STRICT_KERNEL_RWX)
168 /*
169 * Make sure we align the reservation on PMD_SIZE since we will
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400170 * map the kernel in the linear mapping as read-only: we do not want
171 * any allocation to happen between _end and the next pmd aligned page.
172 */
Geert Uytterhoeven8db6f932021-04-29 17:05:00 +0200173 vmlinux_end = (vmlinux_end + PMD_SIZE - 1) & PMD_MASK;
174#endif
175 memblock_reserve(vmlinux_start, vmlinux_end - vmlinux_start);
Anup Pateld90d45d2019-06-07 06:01:29 +0000176
Kefeng Wangc9811e32021-06-02 16:55:17 +0800177 dram_end = memblock_end_of_DRAM();
Atish Patraabb8e862021-01-11 15:45:02 -0800178 /*
179 * memblock allocator is not aware of the fact that last 4K bytes of
180 * the addressable memory can not be mapped because of IS_ERR_VALUE
181 * macro. Make sure that last 4k bytes are not usable by memblock
182 * if end of dram is equal to maximum addressable memory.
183 */
184 if (max_mapped_addr == (dram_end - 1))
185 memblock_set_current_limit(max_mapped_addr - 4096);
186
Kefeng Wangf6e5aed2021-02-25 14:54:17 +0800187 min_low_pfn = PFN_UP(memblock_start_of_DRAM());
188 max_low_pfn = max_pfn = PFN_DOWN(dram_end);
189
Kefeng Wangda815582020-10-31 14:01:12 +0800190 dma32_phys_limit = min(4UL * SZ_1G, (unsigned long)PFN_PHYS(max_low_pfn));
Guo Ren336e8eb2021-01-21 14:31:17 +0800191 set_max_mapnr(max_low_pfn - ARCH_PFN_OFFSET);
Anup Patel0651c262019-02-21 11:25:49 +0530192
Kefeng Wangaec33b52021-01-15 13:46:06 +0800193 reserve_initrd_mem();
Albert Ou922b0372019-09-27 16:14:18 -0700194 /*
Vitaly Woolf105aa92021-01-16 01:49:48 +0200195 * If DTB is built in, no need to reserve its memblock.
196 * Otherwise, do reserve it but avoid using
197 * early_init_fdt_reserve_self() since __pa() does
Albert Ou922b0372019-09-27 16:14:18 -0700198 * not work for DTB pointers that are fixmap addresses
199 */
Vitaly Woolf105aa92021-01-16 01:49:48 +0200200 if (!IS_ENABLED(CONFIG_BUILTIN_DTB))
201 memblock_reserve(dtb_early_pa, fdt_totalsize(dtb_early_va));
Albert Ou922b0372019-09-27 16:14:18 -0700202
Anup Patel0651c262019-02-21 11:25:49 +0530203 early_init_fdt_scan_reserved_mem();
Kefeng Wangda815582020-10-31 14:01:12 +0800204 dma_contiguous_reserve(dma32_phys_limit);
Anup Patel0651c262019-02-21 11:25:49 +0530205 memblock_allow_resize();
Anup Patel0651c262019-02-21 11:25:49 +0530206}
Anup Patel6f1e9e92019-02-13 16:38:36 +0530207
Christoph Hellwig6bd33e12019-10-28 13:10:41 +0100208#ifdef CONFIG_MMU
Jisheng Zhang01062352021-05-16 21:15:56 +0800209static struct pt_alloc_ops _pt_ops __initdata;
Vitaly Wool44c92252021-04-13 02:35:14 -0400210
211#ifdef CONFIG_XIP_KERNEL
212#define pt_ops (*(struct pt_alloc_ops *)XIP_FIXUP(&_pt_ops))
213#else
214#define pt_ops _pt_ops
215#endif
Atish Patrae8dcb612020-09-17 15:37:12 -0700216
Jisheng Zhangde31ea42021-03-30 02:22:51 +0800217unsigned long pfn_base __ro_after_init;
Anup Patel387181d2019-03-26 08:03:47 +0000218EXPORT_SYMBOL(pfn_base);
219
Anup Patel6f1e9e92019-02-13 16:38:36 +0530220pgd_t swapper_pg_dir[PTRS_PER_PGD] __page_aligned_bss;
Anup Patel671f9a32019-06-28 13:36:21 -0700221pgd_t trampoline_pg_dir[PTRS_PER_PGD] __page_aligned_bss;
Jisheng Zhang01062352021-05-16 21:15:56 +0800222static pte_t fixmap_pte[PTRS_PER_PTE] __page_aligned_bss;
Anup Patel671f9a32019-06-28 13:36:21 -0700223
Anup Patel671f9a32019-06-28 13:36:21 -0700224pgd_t early_pg_dir[PTRS_PER_PGD] __initdata __aligned(PAGE_SIZE);
Anup Patelf2c17aa2019-01-07 20:57:01 +0530225
Vitaly Wool44c92252021-04-13 02:35:14 -0400226#ifdef CONFIG_XIP_KERNEL
227#define trampoline_pg_dir ((pgd_t *)XIP_FIXUP(trampoline_pg_dir))
228#define fixmap_pte ((pte_t *)XIP_FIXUP(fixmap_pte))
229#define early_pg_dir ((pgd_t *)XIP_FIXUP(early_pg_dir))
230#endif /* CONFIG_XIP_KERNEL */
231
Anup Patelf2c17aa2019-01-07 20:57:01 +0530232void __set_fixmap(enum fixed_addresses idx, phys_addr_t phys, pgprot_t prot)
233{
234 unsigned long addr = __fix_to_virt(idx);
235 pte_t *ptep;
236
237 BUG_ON(idx <= FIX_HOLE || idx >= __end_of_fixed_addresses);
238
239 ptep = &fixmap_pte[pte_index(addr)];
240
Greentime Hu21190b72020-08-04 11:02:05 +0800241 if (pgprot_val(prot))
Anup Patelf2c17aa2019-01-07 20:57:01 +0530242 set_pte(ptep, pfn_pte(phys >> PAGE_SHIFT, prot));
Greentime Hu21190b72020-08-04 11:02:05 +0800243 else
Anup Patelf2c17aa2019-01-07 20:57:01 +0530244 pte_clear(&init_mm, addr, ptep);
Greentime Hu21190b72020-08-04 11:02:05 +0800245 local_flush_tlb_page(addr);
Anup Patelf2c17aa2019-01-07 20:57:01 +0530246}
247
Atish Patrae8dcb612020-09-17 15:37:12 -0700248static inline pte_t *__init get_pte_virt_early(phys_addr_t pa)
Anup Patel671f9a32019-06-28 13:36:21 -0700249{
Atish Patrae8dcb612020-09-17 15:37:12 -0700250 return (pte_t *)((uintptr_t)pa);
Anup Patel671f9a32019-06-28 13:36:21 -0700251}
252
Atish Patrae8dcb612020-09-17 15:37:12 -0700253static inline pte_t *__init get_pte_virt_fixmap(phys_addr_t pa)
254{
255 clear_fixmap(FIX_PTE);
256 return (pte_t *)set_fixmap_offset(FIX_PTE, pa);
257}
258
Jisheng Zhang01062352021-05-16 21:15:56 +0800259static inline pte_t *__init get_pte_virt_late(phys_addr_t pa)
Atish Patrae8dcb612020-09-17 15:37:12 -0700260{
261 return (pte_t *) __va(pa);
262}
263
264static inline phys_addr_t __init alloc_pte_early(uintptr_t va)
Anup Patel671f9a32019-06-28 13:36:21 -0700265{
266 /*
267 * We only create PMD or PGD early mappings so we
268 * should never reach here with MMU disabled.
269 */
Atish Patrae8dcb612020-09-17 15:37:12 -0700270 BUG();
271}
Anup Patel671f9a32019-06-28 13:36:21 -0700272
Atish Patrae8dcb612020-09-17 15:37:12 -0700273static inline phys_addr_t __init alloc_pte_fixmap(uintptr_t va)
274{
Anup Patel671f9a32019-06-28 13:36:21 -0700275 return memblock_phys_alloc(PAGE_SIZE, PAGE_SIZE);
276}
277
Jisheng Zhang01062352021-05-16 21:15:56 +0800278static phys_addr_t __init alloc_pte_late(uintptr_t va)
Atish Patrae8dcb612020-09-17 15:37:12 -0700279{
280 unsigned long vaddr;
281
282 vaddr = __get_free_page(GFP_KERNEL);
zhouchuangaoe75e6bf2021-03-30 06:56:26 -0700283 BUG_ON(!vaddr || !pgtable_pte_page_ctor(virt_to_page(vaddr)));
284
Atish Patrae8dcb612020-09-17 15:37:12 -0700285 return __pa(vaddr);
286}
287
Anup Patel671f9a32019-06-28 13:36:21 -0700288static void __init create_pte_mapping(pte_t *ptep,
289 uintptr_t va, phys_addr_t pa,
290 phys_addr_t sz, pgprot_t prot)
291{
Mike Rapoport974b9b22020-06-08 21:33:10 -0700292 uintptr_t pte_idx = pte_index(va);
Anup Patel671f9a32019-06-28 13:36:21 -0700293
294 BUG_ON(sz != PAGE_SIZE);
295
Mike Rapoport974b9b22020-06-08 21:33:10 -0700296 if (pte_none(ptep[pte_idx]))
297 ptep[pte_idx] = pfn_pte(PFN_DOWN(pa), prot);
Anup Patel671f9a32019-06-28 13:36:21 -0700298}
299
300#ifndef __PAGETABLE_PMD_FOLDED
301
Jisheng Zhang01062352021-05-16 21:15:56 +0800302static pmd_t trampoline_pmd[PTRS_PER_PMD] __page_aligned_bss;
303static pmd_t fixmap_pmd[PTRS_PER_PMD] __page_aligned_bss;
304static pmd_t early_pmd[PTRS_PER_PMD] __initdata __aligned(PAGE_SIZE);
305static pmd_t early_dtb_pmd[PTRS_PER_PMD] __initdata __aligned(PAGE_SIZE);
Anup Patel671f9a32019-06-28 13:36:21 -0700306
Vitaly Wool44c92252021-04-13 02:35:14 -0400307#ifdef CONFIG_XIP_KERNEL
308#define trampoline_pmd ((pmd_t *)XIP_FIXUP(trampoline_pmd))
309#define fixmap_pmd ((pmd_t *)XIP_FIXUP(fixmap_pmd))
310#define early_pmd ((pmd_t *)XIP_FIXUP(early_pmd))
311#endif /* CONFIG_XIP_KERNEL */
312
Atish Patrae8dcb612020-09-17 15:37:12 -0700313static pmd_t *__init get_pmd_virt_early(phys_addr_t pa)
Anup Patel671f9a32019-06-28 13:36:21 -0700314{
Atish Patrae8dcb612020-09-17 15:37:12 -0700315 /* Before MMU is enabled */
316 return (pmd_t *)((uintptr_t)pa);
Anup Patel671f9a32019-06-28 13:36:21 -0700317}
318
Atish Patrae8dcb612020-09-17 15:37:12 -0700319static pmd_t *__init get_pmd_virt_fixmap(phys_addr_t pa)
320{
321 clear_fixmap(FIX_PMD);
322 return (pmd_t *)set_fixmap_offset(FIX_PMD, pa);
323}
324
Jisheng Zhang01062352021-05-16 21:15:56 +0800325static pmd_t *__init get_pmd_virt_late(phys_addr_t pa)
Atish Patrae8dcb612020-09-17 15:37:12 -0700326{
327 return (pmd_t *) __va(pa);
328}
329
330static phys_addr_t __init alloc_pmd_early(uintptr_t va)
Anup Patel671f9a32019-06-28 13:36:21 -0700331{
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200332 BUG_ON((va - kernel_map.virt_addr) >> PGDIR_SHIFT);
Anup Patel671f9a32019-06-28 13:36:21 -0700333
Alexandre Ghiti0f02de42021-02-21 09:22:33 -0500334 return (uintptr_t)early_pmd;
Anup Patel671f9a32019-06-28 13:36:21 -0700335}
336
Atish Patrae8dcb612020-09-17 15:37:12 -0700337static phys_addr_t __init alloc_pmd_fixmap(uintptr_t va)
338{
339 return memblock_phys_alloc(PAGE_SIZE, PAGE_SIZE);
340}
341
Jisheng Zhang01062352021-05-16 21:15:56 +0800342static phys_addr_t __init alloc_pmd_late(uintptr_t va)
Atish Patrae8dcb612020-09-17 15:37:12 -0700343{
344 unsigned long vaddr;
345
346 vaddr = __get_free_page(GFP_KERNEL);
347 BUG_ON(!vaddr);
348 return __pa(vaddr);
349}
350
Anup Patel671f9a32019-06-28 13:36:21 -0700351static void __init create_pmd_mapping(pmd_t *pmdp,
352 uintptr_t va, phys_addr_t pa,
353 phys_addr_t sz, pgprot_t prot)
354{
355 pte_t *ptep;
356 phys_addr_t pte_phys;
Mike Rapoport974b9b22020-06-08 21:33:10 -0700357 uintptr_t pmd_idx = pmd_index(va);
Anup Patel671f9a32019-06-28 13:36:21 -0700358
359 if (sz == PMD_SIZE) {
Mike Rapoport974b9b22020-06-08 21:33:10 -0700360 if (pmd_none(pmdp[pmd_idx]))
361 pmdp[pmd_idx] = pfn_pmd(PFN_DOWN(pa), prot);
Anup Patel671f9a32019-06-28 13:36:21 -0700362 return;
363 }
364
Mike Rapoport974b9b22020-06-08 21:33:10 -0700365 if (pmd_none(pmdp[pmd_idx])) {
Atish Patrae8dcb612020-09-17 15:37:12 -0700366 pte_phys = pt_ops.alloc_pte(va);
Mike Rapoport974b9b22020-06-08 21:33:10 -0700367 pmdp[pmd_idx] = pfn_pmd(PFN_DOWN(pte_phys), PAGE_TABLE);
Atish Patrae8dcb612020-09-17 15:37:12 -0700368 ptep = pt_ops.get_pte_virt(pte_phys);
Anup Patel671f9a32019-06-28 13:36:21 -0700369 memset(ptep, 0, PAGE_SIZE);
370 } else {
Mike Rapoport974b9b22020-06-08 21:33:10 -0700371 pte_phys = PFN_PHYS(_pmd_pfn(pmdp[pmd_idx]));
Atish Patrae8dcb612020-09-17 15:37:12 -0700372 ptep = pt_ops.get_pte_virt(pte_phys);
Anup Patel671f9a32019-06-28 13:36:21 -0700373 }
374
375 create_pte_mapping(ptep, va, pa, sz, prot);
376}
377
378#define pgd_next_t pmd_t
Atish Patrae8dcb612020-09-17 15:37:12 -0700379#define alloc_pgd_next(__va) pt_ops.alloc_pmd(__va)
380#define get_pgd_next_virt(__pa) pt_ops.get_pmd_virt(__pa)
Anup Patel671f9a32019-06-28 13:36:21 -0700381#define create_pgd_next_mapping(__nextp, __va, __pa, __sz, __prot) \
382 create_pmd_mapping(__nextp, __va, __pa, __sz, __prot)
Anup Patel671f9a32019-06-28 13:36:21 -0700383#define fixmap_pgd_next fixmap_pmd
384#else
385#define pgd_next_t pte_t
Atish Patrae8dcb612020-09-17 15:37:12 -0700386#define alloc_pgd_next(__va) pt_ops.alloc_pte(__va)
387#define get_pgd_next_virt(__pa) pt_ops.get_pte_virt(__pa)
Anup Patel671f9a32019-06-28 13:36:21 -0700388#define create_pgd_next_mapping(__nextp, __va, __pa, __sz, __prot) \
389 create_pte_mapping(__nextp, __va, __pa, __sz, __prot)
Anup Patel671f9a32019-06-28 13:36:21 -0700390#define fixmap_pgd_next fixmap_pte
391#endif
392
Atish Patrab91540d2020-09-17 15:37:15 -0700393void __init create_pgd_mapping(pgd_t *pgdp,
Anup Patel671f9a32019-06-28 13:36:21 -0700394 uintptr_t va, phys_addr_t pa,
395 phys_addr_t sz, pgprot_t prot)
396{
397 pgd_next_t *nextp;
398 phys_addr_t next_phys;
Mike Rapoport974b9b22020-06-08 21:33:10 -0700399 uintptr_t pgd_idx = pgd_index(va);
Anup Patel671f9a32019-06-28 13:36:21 -0700400
401 if (sz == PGDIR_SIZE) {
Mike Rapoport974b9b22020-06-08 21:33:10 -0700402 if (pgd_val(pgdp[pgd_idx]) == 0)
403 pgdp[pgd_idx] = pfn_pgd(PFN_DOWN(pa), prot);
Anup Patel671f9a32019-06-28 13:36:21 -0700404 return;
405 }
406
Mike Rapoport974b9b22020-06-08 21:33:10 -0700407 if (pgd_val(pgdp[pgd_idx]) == 0) {
Anup Patel671f9a32019-06-28 13:36:21 -0700408 next_phys = alloc_pgd_next(va);
Mike Rapoport974b9b22020-06-08 21:33:10 -0700409 pgdp[pgd_idx] = pfn_pgd(PFN_DOWN(next_phys), PAGE_TABLE);
Anup Patel671f9a32019-06-28 13:36:21 -0700410 nextp = get_pgd_next_virt(next_phys);
411 memset(nextp, 0, PAGE_SIZE);
412 } else {
Mike Rapoport974b9b22020-06-08 21:33:10 -0700413 next_phys = PFN_PHYS(_pgd_pfn(pgdp[pgd_idx]));
Anup Patel671f9a32019-06-28 13:36:21 -0700414 nextp = get_pgd_next_virt(next_phys);
415 }
416
417 create_pgd_next_mapping(nextp, va, pa, sz, prot);
418}
419
420static uintptr_t __init best_map_size(phys_addr_t base, phys_addr_t size)
421{
Zong Li0fdc6362019-11-08 01:00:40 -0800422 /* Upgrade to PMD_SIZE mappings whenever possible */
423 if ((base & (PMD_SIZE - 1)) || (size & (PMD_SIZE - 1)))
424 return PAGE_SIZE;
Anup Patel671f9a32019-06-28 13:36:21 -0700425
Zong Li0fdc6362019-11-08 01:00:40 -0800426 return PMD_SIZE;
Anup Patel671f9a32019-06-28 13:36:21 -0700427}
428
Vitaly Wool44c92252021-04-13 02:35:14 -0400429#ifdef CONFIG_XIP_KERNEL
430/* called from head.S with MMU off */
431asmlinkage void __init __copy_data(void)
432{
433 void *from = (void *)(&_sdata);
434 void *end = (void *)(&_end);
435 void *to = (void *)CONFIG_PHYS_RAM_BASE;
436 size_t sz = (size_t)(end - from + 1);
437
438 memcpy(to, from, sz);
439}
440#endif
441
Alexandre Ghitie5c35fa02021-06-24 14:00:41 +0200442#ifdef CONFIG_STRICT_KERNEL_RWX
443static __init pgprot_t pgprot_from_va(uintptr_t va)
444{
445 if (is_va_kernel_text(va))
446 return PAGE_KERNEL_READ_EXEC;
447
448 /*
449 * In 64-bit kernel, the kernel mapping is outside the linear mapping so
450 * we must protect its linear mapping alias from being executed and
451 * written.
452 * And rodata section is marked readonly in mark_rodata_ro.
453 */
454 if (IS_ENABLED(CONFIG_64BIT) && is_va_kernel_lm_alias_text(va))
455 return PAGE_KERNEL_READ;
456
457 return PAGE_KERNEL;
458}
459
460void mark_rodata_ro(void)
461{
462 set_kernel_memory(__start_rodata, _data, set_memory_ro);
463 if (IS_ENABLED(CONFIG_64BIT))
464 set_kernel_memory(lm_alias(__start_rodata), lm_alias(_data),
465 set_memory_ro);
466
467 debug_checkwx();
468}
469#else
470static __init pgprot_t pgprot_from_va(uintptr_t va)
471{
472 if (IS_ENABLED(CONFIG_64BIT) && !is_kernel_mapping(va))
473 return PAGE_KERNEL;
474
475 return PAGE_KERNEL_EXEC;
476}
477#endif /* CONFIG_STRICT_KERNEL_RWX */
478
Anup Patel387181d2019-03-26 08:03:47 +0000479/*
480 * setup_vm() is called from head.S with MMU-off.
481 *
482 * Following requirements should be honoured for setup_vm() to work
483 * correctly:
484 * 1) It should use PC-relative addressing for accessing kernel symbols.
485 * To achieve this we always use GCC cmodel=medany.
486 * 2) The compiler instrumentation for FTRACE will not work for setup_vm()
487 * so disable compiler instrumentation when FTRACE is enabled.
488 *
489 * Currently, the above requirements are honoured by using custom CFLAGS
490 * for init.o in mm/Makefile.
491 */
492
493#ifndef __riscv_cmodel_medany
Paul Walmsley6a527b62019-10-17 14:45:58 -0700494#error "setup_vm() is called from head.S before relocate so it should not use absolute addressing."
Anup Patel387181d2019-03-26 08:03:47 +0000495#endif
496
Vitaly Wool44c92252021-04-13 02:35:14 -0400497#ifdef CONFIG_XIP_KERNEL
Alexandre Ghiti526f83d2021-07-23 15:01:25 +0200498static void __init create_kernel_page_table(pgd_t *pgdir,
Alexandre Ghitie5c35fa02021-06-24 14:00:41 +0200499 __always_unused bool early)
Vitaly Wool44c92252021-04-13 02:35:14 -0400500{
501 uintptr_t va, end_va;
502
503 /* Map the flash resident part */
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200504 end_va = kernel_map.virt_addr + kernel_map.xiprom_sz;
Alexandre Ghiti526f83d2021-07-23 15:01:25 +0200505 for (va = kernel_map.virt_addr; va < end_va; va += PMD_SIZE)
Vitaly Wool44c92252021-04-13 02:35:14 -0400506 create_pgd_mapping(pgdir, va,
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200507 kernel_map.xiprom + (va - kernel_map.virt_addr),
Alexandre Ghiti526f83d2021-07-23 15:01:25 +0200508 PMD_SIZE, PAGE_KERNEL_EXEC);
Vitaly Wool44c92252021-04-13 02:35:14 -0400509
510 /* Map the data in RAM */
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200511 end_va = kernel_map.virt_addr + XIP_OFFSET + kernel_map.size;
Alexandre Ghiti526f83d2021-07-23 15:01:25 +0200512 for (va = kernel_map.virt_addr + XIP_OFFSET; va < end_va; va += PMD_SIZE)
Vitaly Wool44c92252021-04-13 02:35:14 -0400513 create_pgd_mapping(pgdir, va,
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200514 kernel_map.phys_addr + (va - (kernel_map.virt_addr + XIP_OFFSET)),
Alexandre Ghiti526f83d2021-07-23 15:01:25 +0200515 PMD_SIZE, PAGE_KERNEL);
Vitaly Wool44c92252021-04-13 02:35:14 -0400516}
517#else
Alexandre Ghiti526f83d2021-07-23 15:01:25 +0200518static void __init create_kernel_page_table(pgd_t *pgdir, bool early)
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400519{
520 uintptr_t va, end_va;
521
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200522 end_va = kernel_map.virt_addr + kernel_map.size;
Alexandre Ghiti526f83d2021-07-23 15:01:25 +0200523 for (va = kernel_map.virt_addr; va < end_va; va += PMD_SIZE)
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400524 create_pgd_mapping(pgdir, va,
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200525 kernel_map.phys_addr + (va - kernel_map.virt_addr),
Alexandre Ghiti526f83d2021-07-23 15:01:25 +0200526 PMD_SIZE,
Alexandre Ghitie5c35fa02021-06-24 14:00:41 +0200527 early ?
528 PAGE_KERNEL_EXEC : pgprot_from_va(va));
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400529}
Vitaly Wool44c92252021-04-13 02:35:14 -0400530#endif
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400531
Anup Patel671f9a32019-06-28 13:36:21 -0700532asmlinkage void __init setup_vm(uintptr_t dtb_pa)
Anup Patel6f1e9e92019-02-13 16:38:36 +0530533{
Vitaly Wool44c92252021-04-13 02:35:14 -0400534 uintptr_t __maybe_unused pa;
Alexandre Ghiti6f3e5fd2021-07-23 15:01:26 +0200535 pmd_t __maybe_unused fix_bmap_spmd, fix_bmap_epmd;
Anup Patel6f1e9e92019-02-13 16:38:36 +0530536
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200537 kernel_map.virt_addr = KERNEL_LINK_ADDR;
538
Vitaly Wool44c92252021-04-13 02:35:14 -0400539#ifdef CONFIG_XIP_KERNEL
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200540 kernel_map.xiprom = (uintptr_t)CONFIG_XIP_PHYS_ADDR;
541 kernel_map.xiprom_sz = (uintptr_t)(&_exiprom) - (uintptr_t)(&_xiprom);
Vitaly Wool44c92252021-04-13 02:35:14 -0400542
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200543 kernel_map.phys_addr = (uintptr_t)CONFIG_PHYS_RAM_BASE;
544 kernel_map.size = (uintptr_t)(&_end) - (uintptr_t)(&_sdata);
Vitaly Wool44c92252021-04-13 02:35:14 -0400545
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200546 kernel_map.va_kernel_xip_pa_offset = kernel_map.virt_addr - kernel_map.xiprom;
Vitaly Wool44c92252021-04-13 02:35:14 -0400547#else
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200548 kernel_map.phys_addr = (uintptr_t)(&_start);
549 kernel_map.size = (uintptr_t)(&_end) - kernel_map.phys_addr;
Vitaly Wool44c92252021-04-13 02:35:14 -0400550#endif
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200551 kernel_map.va_pa_offset = PAGE_OFFSET - kernel_map.phys_addr;
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200552 kernel_map.va_kernel_pa_offset = kernel_map.virt_addr - kernel_map.phys_addr;
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400553
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200554 pfn_base = PFN_DOWN(kernel_map.phys_addr);
Anup Patel671f9a32019-06-28 13:36:21 -0700555
Anup Patel6f1e9e92019-02-13 16:38:36 +0530556 /* Sanity check alignment and size */
557 BUG_ON((PAGE_OFFSET % PGDIR_SIZE) != 0);
Alexandre Ghiti526f83d2021-07-23 15:01:25 +0200558 BUG_ON((kernel_map.phys_addr % PMD_SIZE) != 0);
Anup Patel671f9a32019-06-28 13:36:21 -0700559
Atish Patrae8dcb612020-09-17 15:37:12 -0700560 pt_ops.alloc_pte = alloc_pte_early;
561 pt_ops.get_pte_virt = get_pte_virt_early;
562#ifndef __PAGETABLE_PMD_FOLDED
563 pt_ops.alloc_pmd = alloc_pmd_early;
564 pt_ops.get_pmd_virt = get_pmd_virt_early;
565#endif
Anup Patel671f9a32019-06-28 13:36:21 -0700566 /* Setup early PGD for fixmap */
567 create_pgd_mapping(early_pg_dir, FIXADDR_START,
568 (uintptr_t)fixmap_pgd_next, PGDIR_SIZE, PAGE_TABLE);
Anup Patel6f1e9e92019-02-13 16:38:36 +0530569
570#ifndef __PAGETABLE_PMD_FOLDED
Anup Patel671f9a32019-06-28 13:36:21 -0700571 /* Setup fixmap PMD */
572 create_pmd_mapping(fixmap_pmd, FIXADDR_START,
573 (uintptr_t)fixmap_pte, PMD_SIZE, PAGE_TABLE);
574 /* Setup trampoline PGD and PMD */
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200575 create_pgd_mapping(trampoline_pg_dir, kernel_map.virt_addr,
Anup Patel671f9a32019-06-28 13:36:21 -0700576 (uintptr_t)trampoline_pmd, PGDIR_SIZE, PAGE_TABLE);
Vitaly Wool44c92252021-04-13 02:35:14 -0400577#ifdef CONFIG_XIP_KERNEL
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200578 create_pmd_mapping(trampoline_pmd, kernel_map.virt_addr,
579 kernel_map.xiprom, PMD_SIZE, PAGE_KERNEL_EXEC);
Vitaly Wool44c92252021-04-13 02:35:14 -0400580#else
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200581 create_pmd_mapping(trampoline_pmd, kernel_map.virt_addr,
582 kernel_map.phys_addr, PMD_SIZE, PAGE_KERNEL_EXEC);
Vitaly Wool44c92252021-04-13 02:35:14 -0400583#endif
Anup Patel6f1e9e92019-02-13 16:38:36 +0530584#else
Anup Patel671f9a32019-06-28 13:36:21 -0700585 /* Setup trampoline PGD */
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200586 create_pgd_mapping(trampoline_pg_dir, kernel_map.virt_addr,
587 kernel_map.phys_addr, PGDIR_SIZE, PAGE_KERNEL_EXEC);
Anup Patel671f9a32019-06-28 13:36:21 -0700588#endif
Anup Patel6f1e9e92019-02-13 16:38:36 +0530589
Anup Patel671f9a32019-06-28 13:36:21 -0700590 /*
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400591 * Setup early PGD covering entire kernel which will allow
Anup Patel671f9a32019-06-28 13:36:21 -0700592 * us to reach paging_init(). We map all memory banks later
593 * in setup_vm_final() below.
594 */
Alexandre Ghiti526f83d2021-07-23 15:01:25 +0200595 create_kernel_page_table(early_pg_dir, true);
Anup Patelf2c17aa2019-01-07 20:57:01 +0530596
Anup Patel1074dd42020-11-04 12:07:13 +0530597#ifndef __PAGETABLE_PMD_FOLDED
598 /* Setup early PMD for DTB */
599 create_pgd_mapping(early_pg_dir, DTB_EARLY_BASE_VA,
600 (uintptr_t)early_dtb_pmd, PGDIR_SIZE, PAGE_TABLE);
Vitaly Woolf105aa92021-01-16 01:49:48 +0200601#ifndef CONFIG_BUILTIN_DTB
Anup Patel1074dd42020-11-04 12:07:13 +0530602 /* Create two consecutive PMD mappings for FDT early scan */
603 pa = dtb_pa & ~(PMD_SIZE - 1);
604 create_pmd_mapping(early_dtb_pmd, DTB_EARLY_BASE_VA,
605 pa, PMD_SIZE, PAGE_KERNEL);
606 create_pmd_mapping(early_dtb_pmd, DTB_EARLY_BASE_VA + PMD_SIZE,
607 pa + PMD_SIZE, PMD_SIZE, PAGE_KERNEL);
608 dtb_early_va = (void *)DTB_EARLY_BASE_VA + (dtb_pa & (PMD_SIZE - 1));
Vitaly Woolf105aa92021-01-16 01:49:48 +0200609#else /* CONFIG_BUILTIN_DTB */
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400610#ifdef CONFIG_64BIT
611 /*
612 * __va can't be used since it would return a linear mapping address
613 * whereas dtb_early_va will be used before setup_vm_final installs
614 * the linear mapping.
615 */
Vitaly Wool44c92252021-04-13 02:35:14 -0400616 dtb_early_va = kernel_mapping_pa_to_va(XIP_FIXUP(dtb_pa));
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400617#else
Vitaly Woolf105aa92021-01-16 01:49:48 +0200618 dtb_early_va = __va(dtb_pa);
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400619#endif /* CONFIG_64BIT */
Vitaly Woolf105aa92021-01-16 01:49:48 +0200620#endif /* CONFIG_BUILTIN_DTB */
Anup Patel1074dd42020-11-04 12:07:13 +0530621#else
Vitaly Woolf105aa92021-01-16 01:49:48 +0200622#ifndef CONFIG_BUILTIN_DTB
Anup Patel8f3a2b42020-09-17 15:37:10 -0700623 /* Create two consecutive PGD mappings for FDT early scan */
624 pa = dtb_pa & ~(PGDIR_SIZE - 1);
625 create_pgd_mapping(early_pg_dir, DTB_EARLY_BASE_VA,
626 pa, PGDIR_SIZE, PAGE_KERNEL);
627 create_pgd_mapping(early_pg_dir, DTB_EARLY_BASE_VA + PGDIR_SIZE,
628 pa + PGDIR_SIZE, PGDIR_SIZE, PAGE_KERNEL);
629 dtb_early_va = (void *)DTB_EARLY_BASE_VA + (dtb_pa & (PGDIR_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
Vitaly Wool44c92252021-04-13 02:35:14 -0400632 dtb_early_va = kernel_mapping_pa_to_va(XIP_FIXUP(dtb_pa));
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400633#else
Vitaly Woolf105aa92021-01-16 01:49:48 +0200634 dtb_early_va = __va(dtb_pa);
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400635#endif /* CONFIG_64BIT */
Vitaly Woolf105aa92021-01-16 01:49:48 +0200636#endif /* CONFIG_BUILTIN_DTB */
Anup Patel1074dd42020-11-04 12:07:13 +0530637#endif
Albert Ou922b0372019-09-27 16:14:18 -0700638 dtb_early_pa = dtb_pa;
Atish Patra6262f662020-09-17 15:37:11 -0700639
640 /*
641 * Bootime fixmap only can handle PMD_SIZE mapping. Thus, boot-ioremap
642 * range can not span multiple pmds.
643 */
644 BUILD_BUG_ON((__fix_to_virt(FIX_BTMAP_BEGIN) >> PMD_SHIFT)
645 != (__fix_to_virt(FIX_BTMAP_END) >> PMD_SHIFT));
646
647#ifndef __PAGETABLE_PMD_FOLDED
648 /*
649 * Early ioremap fixmap is already created as it lies within first 2MB
650 * of fixmap region. We always map PMD_SIZE. Thus, both FIX_BTMAP_END
651 * FIX_BTMAP_BEGIN should lie in the same pmd. Verify that and warn
652 * the user if not.
653 */
654 fix_bmap_spmd = fixmap_pmd[pmd_index(__fix_to_virt(FIX_BTMAP_BEGIN))];
655 fix_bmap_epmd = fixmap_pmd[pmd_index(__fix_to_virt(FIX_BTMAP_END))];
656 if (pmd_val(fix_bmap_spmd) != pmd_val(fix_bmap_epmd)) {
657 WARN_ON(1);
658 pr_warn("fixmap btmap start [%08lx] != end [%08lx]\n",
659 pmd_val(fix_bmap_spmd), pmd_val(fix_bmap_epmd));
660 pr_warn("fix_to_virt(FIX_BTMAP_BEGIN): %08lx\n",
661 fix_to_virt(FIX_BTMAP_BEGIN));
662 pr_warn("fix_to_virt(FIX_BTMAP_END): %08lx\n",
663 fix_to_virt(FIX_BTMAP_END));
664
665 pr_warn("FIX_BTMAP_END: %d\n", FIX_BTMAP_END);
666 pr_warn("FIX_BTMAP_BEGIN: %d\n", FIX_BTMAP_BEGIN);
667 }
668#endif
Anup Patel671f9a32019-06-28 13:36:21 -0700669}
670
671static void __init setup_vm_final(void)
672{
673 uintptr_t va, map_size;
674 phys_addr_t pa, start, end;
Mike Rapoportb10d6bc2020-10-13 16:58:08 -0700675 u64 i;
Anup Patel671f9a32019-06-28 13:36:21 -0700676
Atish Patrae8dcb612020-09-17 15:37:12 -0700677 /**
678 * MMU is enabled at this point. But page table setup is not complete yet.
679 * fixmap page table alloc functions should be used at this point
680 */
681 pt_ops.alloc_pte = alloc_pte_fixmap;
682 pt_ops.get_pte_virt = get_pte_virt_fixmap;
683#ifndef __PAGETABLE_PMD_FOLDED
684 pt_ops.alloc_pmd = alloc_pmd_fixmap;
685 pt_ops.get_pmd_virt = get_pmd_virt_fixmap;
686#endif
Anup Patel671f9a32019-06-28 13:36:21 -0700687 /* Setup swapper PGD for fixmap */
688 create_pgd_mapping(swapper_pg_dir, FIXADDR_START,
Zong Liac51e002020-01-02 11:12:40 +0800689 __pa_symbol(fixmap_pgd_next),
Anup Patel671f9a32019-06-28 13:36:21 -0700690 PGDIR_SIZE, PAGE_TABLE);
691
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400692 /* Map all memory banks in the linear mapping */
Mike Rapoportb10d6bc2020-10-13 16:58:08 -0700693 for_each_mem_range(i, &start, &end) {
Anup Patel671f9a32019-06-28 13:36:21 -0700694 if (start >= end)
695 break;
Anup Patel671f9a32019-06-28 13:36:21 -0700696 if (start <= __pa(PAGE_OFFSET) &&
697 __pa(PAGE_OFFSET) < end)
698 start = __pa(PAGE_OFFSET);
699
700 map_size = best_map_size(start, end - start);
701 for (pa = start; pa < end; pa += map_size) {
702 va = (uintptr_t)__va(pa);
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400703
Alexandre Ghitie5c35fa02021-06-24 14:00:41 +0200704 create_pgd_mapping(swapper_pg_dir, va, pa, map_size,
705 pgprot_from_va(va));
Anup Patel671f9a32019-06-28 13:36:21 -0700706 }
Anup Patel6f1e9e92019-02-13 16:38:36 +0530707 }
Anup Patelf2c17aa2019-01-07 20:57:01 +0530708
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400709#ifdef CONFIG_64BIT
710 /* Map the kernel */
Alexandre Ghiti526f83d2021-07-23 15:01:25 +0200711 create_kernel_page_table(swapper_pg_dir, false);
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400712#endif
713
Anup Patel671f9a32019-06-28 13:36:21 -0700714 /* Clear fixmap PTE and PMD mappings */
715 clear_fixmap(FIX_PTE);
716 clear_fixmap(FIX_PMD);
717
718 /* Move to swapper page table */
Zong Liac51e002020-01-02 11:12:40 +0800719 csr_write(CSR_SATP, PFN_DOWN(__pa_symbol(swapper_pg_dir)) | SATP_MODE);
Anup Patel671f9a32019-06-28 13:36:21 -0700720 local_flush_tlb_all();
Atish Patrae8dcb612020-09-17 15:37:12 -0700721
722 /* generic page allocation functions must be used to setup page table */
723 pt_ops.alloc_pte = alloc_pte_late;
724 pt_ops.get_pte_virt = get_pte_virt_late;
725#ifndef __PAGETABLE_PMD_FOLDED
726 pt_ops.alloc_pmd = alloc_pmd_late;
727 pt_ops.get_pmd_virt = get_pmd_virt_late;
728#endif
Anup Patel671f9a32019-06-28 13:36:21 -0700729}
Christoph Hellwig6bd33e12019-10-28 13:10:41 +0100730#else
731asmlinkage void __init setup_vm(uintptr_t dtb_pa)
732{
733 dtb_early_va = (void *)dtb_pa;
Atish Patraa78c6f52020-10-01 12:04:56 -0700734 dtb_early_pa = dtb_pa;
Christoph Hellwig6bd33e12019-10-28 13:10:41 +0100735}
736
737static inline void setup_vm_final(void)
738{
739}
740#endif /* CONFIG_MMU */
Anup Patel671f9a32019-06-28 13:36:21 -0700741
Nick Kossifidise53d2812021-04-19 03:55:38 +0300742#ifdef CONFIG_KEXEC_CORE
743/*
744 * reserve_crashkernel() - reserves memory for crash kernel
745 *
746 * This function reserves memory area given in "crashkernel=" kernel command
747 * line parameter. The memory reserved is used by dump capture kernel when
748 * primary kernel is crashing.
749 */
750static void __init reserve_crashkernel(void)
751{
752 unsigned long long crash_base = 0;
753 unsigned long long crash_size = 0;
754 unsigned long search_start = memblock_start_of_DRAM();
755 unsigned long search_end = memblock_end_of_DRAM();
756
757 int ret = 0;
758
Nick Kossifidis56409752021-04-19 03:55:39 +0300759 /*
760 * Don't reserve a region for a crash kernel on a crash kernel
761 * since it doesn't make much sense and we have limited memory
762 * resources.
763 */
764#ifdef CONFIG_CRASH_DUMP
765 if (is_kdump_kernel()) {
766 pr_info("crashkernel: ignoring reservation request\n");
767 return;
768 }
769#endif
770
Nick Kossifidise53d2812021-04-19 03:55:38 +0300771 ret = parse_crashkernel(boot_command_line, memblock_phys_mem_size(),
772 &crash_size, &crash_base);
773 if (ret || !crash_size)
774 return;
775
776 crash_size = PAGE_ALIGN(crash_size);
777
778 if (crash_base == 0) {
779 /*
780 * Current riscv boot protocol requires 2MB alignment for
781 * RV64 and 4MB alignment for RV32 (hugepage size)
782 */
783 crash_base = memblock_find_in_range(search_start, search_end,
784 crash_size, PMD_SIZE);
785
786 if (crash_base == 0) {
787 pr_warn("crashkernel: couldn't allocate %lldKB\n",
788 crash_size >> 10);
789 return;
790 }
791 } else {
792 /* User specifies base address explicitly. */
793 if (!memblock_is_region_memory(crash_base, crash_size)) {
794 pr_warn("crashkernel: requested region is not memory\n");
795 return;
796 }
797
798 if (memblock_is_region_reserved(crash_base, crash_size)) {
799 pr_warn("crashkernel: requested region is reserved\n");
800 return;
801 }
802
803
804 if (!IS_ALIGNED(crash_base, PMD_SIZE)) {
805 pr_warn("crashkernel: requested region is misaligned\n");
806 return;
807 }
808 }
809 memblock_reserve(crash_base, crash_size);
810
811 pr_info("crashkernel: reserved 0x%016llx - 0x%016llx (%lld MB)\n",
812 crash_base, crash_base + crash_size, crash_size >> 20);
813
814 crashk_res.start = crash_base;
815 crashk_res.end = crash_base + crash_size - 1;
816}
817#endif /* CONFIG_KEXEC_CORE */
818
Nick Kossifidis56409752021-04-19 03:55:39 +0300819#ifdef CONFIG_CRASH_DUMP
820/*
821 * We keep track of the ELF core header of the crashed
822 * kernel with a reserved-memory region with compatible
823 * string "linux,elfcorehdr". Here we register a callback
824 * to populate elfcorehdr_addr/size when this region is
825 * present. Note that this region will be marked as
826 * reserved once we call early_init_fdt_scan_reserved_mem()
827 * later on.
828 */
Jisheng Zhang01062352021-05-16 21:15:56 +0800829static int __init elfcore_hdr_setup(struct reserved_mem *rmem)
Nick Kossifidis56409752021-04-19 03:55:39 +0300830{
831 elfcorehdr_addr = rmem->base;
832 elfcorehdr_size = rmem->size;
833 return 0;
834}
835
836RESERVEDMEM_OF_DECLARE(elfcorehdr, "linux,elfcorehdr", elfcore_hdr_setup);
837#endif
838
Anup Patel671f9a32019-06-28 13:36:21 -0700839void __init paging_init(void)
840{
Kefeng Wangf842f5f2021-05-10 19:42:22 +0800841 setup_bootmem();
Anup Patel671f9a32019-06-28 13:36:21 -0700842 setup_vm_final();
Atish Patracbd34f42020-11-18 16:38:27 -0800843}
844
845void __init misc_mem_init(void)
846{
Kefeng Wangf6e5aed2021-02-25 14:54:17 +0800847 early_memtest(min_low_pfn << PAGE_SHIFT, max_low_pfn << PAGE_SHIFT);
Atish Patra4f0e8ee2020-11-18 16:38:29 -0800848 arch_numa_init();
Atish Patracbd34f42020-11-18 16:38:27 -0800849 sparse_init();
Anup Patel671f9a32019-06-28 13:36:21 -0700850 zone_sizes_init();
Nick Kossifidise53d2812021-04-19 03:55:38 +0300851#ifdef CONFIG_KEXEC_CORE
852 reserve_crashkernel();
853#endif
Atish Patra4f0e8ee2020-11-18 16:38:29 -0800854 memblock_dump_all();
Anup Patel6f1e9e92019-02-13 16:38:36 +0530855}
Logan Gunthorped95f1a52019-08-28 15:40:54 -0600856
Kefeng Wang9fe57d82019-10-23 11:23:02 +0800857#ifdef CONFIG_SPARSEMEM_VMEMMAP
Logan Gunthorped95f1a52019-08-28 15:40:54 -0600858int __meminit vmemmap_populate(unsigned long start, unsigned long end, int node,
859 struct vmem_altmap *altmap)
860{
Anshuman Khandual1d9cfee2020-08-06 23:23:19 -0700861 return vmemmap_populate_basepages(start, end, node, NULL);
Logan Gunthorped95f1a52019-08-28 15:40:54 -0600862}
863#endif