blob: 248f9ec393c12aa5845bdaed9aaae700e8642dc9 [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
40#ifdef CONFIG_XIP_KERNEL
Kefeng Wang50bae952021-05-14 17:49:08 +080041extern char _xiprom[], _exiprom[];
Vitaly Wool44c92252021-04-13 02:35:14 -040042#endif
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -040043
Anup Patel387181d2019-03-26 08:03:47 +000044unsigned long empty_zero_page[PAGE_SIZE / sizeof(unsigned long)]
45 __page_aligned_bss;
46EXPORT_SYMBOL(empty_zero_page);
47
Anup Pateld90d45d2019-06-07 06:01:29 +000048extern char _start[];
Anup Patel8f3a2b42020-09-17 15:37:10 -070049#define DTB_EARLY_BASE_VA PGDIR_SIZE
Vitaly Wool44c92252021-04-13 02:35:14 -040050void *_dtb_early_va __initdata;
51uintptr_t _dtb_early_pa __initdata;
Anup Pateld90d45d2019-06-07 06:01:29 +000052
Atish Patrae8dcb612020-09-17 15:37:12 -070053struct pt_alloc_ops {
54 pte_t *(*get_pte_virt)(phys_addr_t pa);
55 phys_addr_t (*alloc_pte)(uintptr_t va);
56#ifndef __PAGETABLE_PMD_FOLDED
57 pmd_t *(*get_pmd_virt)(phys_addr_t pa);
58 phys_addr_t (*alloc_pmd)(uintptr_t va);
59#endif
60};
Palmer Dabbelt76d2a042017-07-10 18:00:26 -070061
Jisheng Zhang01062352021-05-16 21:15:56 +080062static phys_addr_t dma32_phys_limit __initdata;
Kefeng Wangda815582020-10-31 14:01:12 +080063
Palmer Dabbelt76d2a042017-07-10 18:00:26 -070064static void __init zone_sizes_init(void)
65{
Christoph Hellwig5ec9c4f2018-01-16 09:37:50 +010066 unsigned long max_zone_pfns[MAX_NR_ZONES] = { 0, };
Palmer Dabbelt76d2a042017-07-10 18:00:26 -070067
Zong Lid5fad482018-06-25 16:49:37 +080068#ifdef CONFIG_ZONE_DMA32
Kefeng Wangda815582020-10-31 14:01:12 +080069 max_zone_pfns[ZONE_DMA32] = PFN_DOWN(dma32_phys_limit);
Zong Lid5fad482018-06-25 16:49:37 +080070#endif
Christoph Hellwig5ec9c4f2018-01-16 09:37:50 +010071 max_zone_pfns[ZONE_NORMAL] = max_low_pfn;
72
Mike Rapoport9691a072020-06-03 15:57:10 -070073 free_area_init(max_zone_pfns);
Palmer Dabbelt76d2a042017-07-10 18:00:26 -070074}
75
Kefeng Wang8fa3cdf2020-05-14 19:53:35 +080076#if defined(CONFIG_MMU) && defined(CONFIG_DEBUG_VM)
Yash Shah2cc6c4a2019-11-18 05:58:34 +000077static inline void print_mlk(char *name, unsigned long b, unsigned long t)
78{
79 pr_notice("%12s : 0x%08lx - 0x%08lx (%4ld kB)\n", name, b, t,
80 (((t) - (b)) >> 10));
81}
82
83static inline void print_mlm(char *name, unsigned long b, unsigned long t)
84{
85 pr_notice("%12s : 0x%08lx - 0x%08lx (%4ld MB)\n", name, b, t,
86 (((t) - (b)) >> 20));
87}
88
Jisheng Zhang19875012021-03-30 02:22:21 +080089static void __init print_vm_layout(void)
Yash Shah2cc6c4a2019-11-18 05:58:34 +000090{
91 pr_notice("Virtual kernel memory layout:\n");
92 print_mlk("fixmap", (unsigned long)FIXADDR_START,
93 (unsigned long)FIXADDR_TOP);
94 print_mlm("pci io", (unsigned long)PCI_IO_START,
95 (unsigned long)PCI_IO_END);
96 print_mlm("vmemmap", (unsigned long)VMEMMAP_START,
97 (unsigned long)VMEMMAP_END);
98 print_mlm("vmalloc", (unsigned long)VMALLOC_START,
99 (unsigned long)VMALLOC_END);
100 print_mlm("lowmem", (unsigned long)PAGE_OFFSET,
101 (unsigned long)high_memory);
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400102#ifdef CONFIG_64BIT
103 print_mlm("kernel", (unsigned long)KERNEL_LINK_ADDR,
104 (unsigned long)ADDRESS_SPACE_END);
105#endif
Yash Shah2cc6c4a2019-11-18 05:58:34 +0000106}
107#else
108static void print_vm_layout(void) { }
109#endif /* CONFIG_DEBUG_VM */
110
Palmer Dabbelt76d2a042017-07-10 18:00:26 -0700111void __init mem_init(void)
112{
113#ifdef CONFIG_FLATMEM
114 BUG_ON(!mem_map);
115#endif /* CONFIG_FLATMEM */
116
Kefeng Wangce3aca02021-06-02 16:55:16 +0800117#ifdef CONFIG_SWIOTLB
118 if (swiotlb_force == SWIOTLB_FORCE ||
119 max_pfn > PFN_DOWN(dma32_phys_limit))
120 swiotlb_init(1);
121 else
122 swiotlb_force = SWIOTLB_NO_FORCE;
123#endif
Palmer Dabbelt76d2a042017-07-10 18:00:26 -0700124 high_memory = (void *)(__va(PFN_PHYS(max_low_pfn)));
Mike Rapoportc6ffc5c2018-10-30 15:09:30 -0700125 memblock_free_all();
Palmer Dabbelt76d2a042017-07-10 18:00:26 -0700126
Yash Shah2cc6c4a2019-11-18 05:58:34 +0000127 print_vm_layout();
Palmer Dabbelt76d2a042017-07-10 18:00:26 -0700128}
129
Kefeng Wangc9811e32021-06-02 16:55:17 +0800130/*
131 * The default maximal physical memory size is -PAGE_OFFSET,
132 * limit the memory size via mem.
133 */
134static phys_addr_t memory_limit = -PAGE_OFFSET;
135
136static int __init early_mem(char *p)
137{
138 u64 size;
139
140 if (!p)
141 return 1;
142
143 size = memparse(p, &p) & PAGE_MASK;
144 memory_limit = min_t(u64, size, memory_limit);
145
146 pr_notice("Memory limited to %lldMB\n", (u64)memory_limit >> 20);
147
148 return 0;
149}
150early_param("mem", early_mem);
151
Kefeng Wangf842f5f2021-05-10 19:42:22 +0800152static void __init setup_bootmem(void)
Anup Patel0651c262019-02-21 11:25:49 +0530153{
Zong Liac51e002020-01-02 11:12:40 +0800154 phys_addr_t vmlinux_end = __pa_symbol(&_end);
155 phys_addr_t vmlinux_start = __pa_symbol(&_start);
Atish Patraabb8e862021-01-11 15:45:02 -0800156 phys_addr_t max_mapped_addr = __pa(~(ulong)0);
Kefeng Wangc9811e32021-06-02 16:55:17 +0800157 phys_addr_t dram_end;
Anup Patel0651c262019-02-21 11:25:49 +0530158
Vitaly Wool44c92252021-04-13 02:35:14 -0400159#ifdef CONFIG_XIP_KERNEL
160 vmlinux_start = __pa_symbol(&_sdata);
161#endif
162
Kefeng Wangc9811e32021-06-02 16:55:17 +0800163 memblock_enforce_memory_limit(memory_limit);
Anup Patel0651c262019-02-21 11:25:49 +0530164
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400165 /*
166 * Reserve from the start of the kernel to the end of the kernel
Geert Uytterhoeven8db6f932021-04-29 17:05:00 +0200167 */
168#if defined(CONFIG_64BIT) && defined(CONFIG_STRICT_KERNEL_RWX)
169 /*
170 * Make sure we align the reservation on PMD_SIZE since we will
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400171 * map the kernel in the linear mapping as read-only: we do not want
172 * any allocation to happen between _end and the next pmd aligned page.
173 */
Geert Uytterhoeven8db6f932021-04-29 17:05:00 +0200174 vmlinux_end = (vmlinux_end + PMD_SIZE - 1) & PMD_MASK;
175#endif
176 memblock_reserve(vmlinux_start, vmlinux_end - vmlinux_start);
Anup Pateld90d45d2019-06-07 06:01:29 +0000177
Kefeng Wangc9811e32021-06-02 16:55:17 +0800178 dram_end = memblock_end_of_DRAM();
Atish Patraabb8e862021-01-11 15:45:02 -0800179 /*
180 * memblock allocator is not aware of the fact that last 4K bytes of
181 * the addressable memory can not be mapped because of IS_ERR_VALUE
182 * macro. Make sure that last 4k bytes are not usable by memblock
183 * if end of dram is equal to maximum addressable memory.
184 */
185 if (max_mapped_addr == (dram_end - 1))
186 memblock_set_current_limit(max_mapped_addr - 4096);
187
Kefeng Wangf6e5aed2021-02-25 14:54:17 +0800188 min_low_pfn = PFN_UP(memblock_start_of_DRAM());
189 max_low_pfn = max_pfn = PFN_DOWN(dram_end);
190
Kefeng Wangda815582020-10-31 14:01:12 +0800191 dma32_phys_limit = min(4UL * SZ_1G, (unsigned long)PFN_PHYS(max_low_pfn));
Guo Ren336e8eb2021-01-21 14:31:17 +0800192 set_max_mapnr(max_low_pfn - ARCH_PFN_OFFSET);
Anup Patel0651c262019-02-21 11:25:49 +0530193
Kefeng Wangaec33b52021-01-15 13:46:06 +0800194 reserve_initrd_mem();
Albert Ou922b0372019-09-27 16:14:18 -0700195 /*
Vitaly Woolf105aa92021-01-16 01:49:48 +0200196 * If DTB is built in, no need to reserve its memblock.
197 * Otherwise, do reserve it but avoid using
198 * early_init_fdt_reserve_self() since __pa() does
Albert Ou922b0372019-09-27 16:14:18 -0700199 * not work for DTB pointers that are fixmap addresses
200 */
Vitaly Woolf105aa92021-01-16 01:49:48 +0200201 if (!IS_ENABLED(CONFIG_BUILTIN_DTB))
202 memblock_reserve(dtb_early_pa, fdt_totalsize(dtb_early_va));
Albert Ou922b0372019-09-27 16:14:18 -0700203
Anup Patel0651c262019-02-21 11:25:49 +0530204 early_init_fdt_scan_reserved_mem();
Kefeng Wangda815582020-10-31 14:01:12 +0800205 dma_contiguous_reserve(dma32_phys_limit);
Kefeng Wang8ba1a8b2021-07-30 20:48:41 +0800206 if (IS_ENABLED(CONFIG_64BIT))
207 hugetlb_cma_reserve(PUD_SHIFT - PAGE_SHIFT);
Anup Patel0651c262019-02-21 11:25:49 +0530208 memblock_allow_resize();
Anup Patel0651c262019-02-21 11:25:49 +0530209}
Anup Patel6f1e9e92019-02-13 16:38:36 +0530210
Christoph Hellwig6bd33e12019-10-28 13:10:41 +0100211#ifdef CONFIG_MMU
Jisheng Zhang01062352021-05-16 21:15:56 +0800212static struct pt_alloc_ops _pt_ops __initdata;
Vitaly Wool44c92252021-04-13 02:35:14 -0400213
214#ifdef CONFIG_XIP_KERNEL
215#define pt_ops (*(struct pt_alloc_ops *)XIP_FIXUP(&_pt_ops))
216#else
217#define pt_ops _pt_ops
218#endif
Atish Patrae8dcb612020-09-17 15:37:12 -0700219
Kenneth Leefb31f0a2021-07-28 15:15:57 +0800220unsigned long riscv_pfn_base __ro_after_init;
221EXPORT_SYMBOL(riscv_pfn_base);
Anup Patel387181d2019-03-26 08:03:47 +0000222
Anup Patel6f1e9e92019-02-13 16:38:36 +0530223pgd_t swapper_pg_dir[PTRS_PER_PGD] __page_aligned_bss;
Anup Patel671f9a32019-06-28 13:36:21 -0700224pgd_t trampoline_pg_dir[PTRS_PER_PGD] __page_aligned_bss;
Jisheng Zhang01062352021-05-16 21:15:56 +0800225static pte_t fixmap_pte[PTRS_PER_PTE] __page_aligned_bss;
Anup Patel671f9a32019-06-28 13:36:21 -0700226
Anup Patel671f9a32019-06-28 13:36:21 -0700227pgd_t early_pg_dir[PTRS_PER_PGD] __initdata __aligned(PAGE_SIZE);
Alexandre Ghitife45ffa2021-07-23 15:01:28 +0200228static pmd_t __maybe_unused early_dtb_pmd[PTRS_PER_PMD] __initdata __aligned(PAGE_SIZE);
Anup Patelf2c17aa2019-01-07 20:57:01 +0530229
Vitaly Wool44c92252021-04-13 02:35:14 -0400230#ifdef CONFIG_XIP_KERNEL
231#define trampoline_pg_dir ((pgd_t *)XIP_FIXUP(trampoline_pg_dir))
232#define fixmap_pte ((pte_t *)XIP_FIXUP(fixmap_pte))
233#define early_pg_dir ((pgd_t *)XIP_FIXUP(early_pg_dir))
234#endif /* CONFIG_XIP_KERNEL */
235
Anup Patelf2c17aa2019-01-07 20:57:01 +0530236void __set_fixmap(enum fixed_addresses idx, phys_addr_t phys, pgprot_t prot)
237{
238 unsigned long addr = __fix_to_virt(idx);
239 pte_t *ptep;
240
241 BUG_ON(idx <= FIX_HOLE || idx >= __end_of_fixed_addresses);
242
243 ptep = &fixmap_pte[pte_index(addr)];
244
Greentime Hu21190b72020-08-04 11:02:05 +0800245 if (pgprot_val(prot))
Anup Patelf2c17aa2019-01-07 20:57:01 +0530246 set_pte(ptep, pfn_pte(phys >> PAGE_SHIFT, prot));
Greentime Hu21190b72020-08-04 11:02:05 +0800247 else
Anup Patelf2c17aa2019-01-07 20:57:01 +0530248 pte_clear(&init_mm, addr, ptep);
Greentime Hu21190b72020-08-04 11:02:05 +0800249 local_flush_tlb_page(addr);
Anup Patelf2c17aa2019-01-07 20:57:01 +0530250}
251
Atish Patrae8dcb612020-09-17 15:37:12 -0700252static inline pte_t *__init get_pte_virt_early(phys_addr_t pa)
Anup Patel671f9a32019-06-28 13:36:21 -0700253{
Atish Patrae8dcb612020-09-17 15:37:12 -0700254 return (pte_t *)((uintptr_t)pa);
Anup Patel671f9a32019-06-28 13:36:21 -0700255}
256
Atish Patrae8dcb612020-09-17 15:37:12 -0700257static inline pte_t *__init get_pte_virt_fixmap(phys_addr_t pa)
258{
259 clear_fixmap(FIX_PTE);
260 return (pte_t *)set_fixmap_offset(FIX_PTE, pa);
261}
262
Jisheng Zhang01062352021-05-16 21:15:56 +0800263static inline pte_t *__init get_pte_virt_late(phys_addr_t pa)
Atish Patrae8dcb612020-09-17 15:37:12 -0700264{
265 return (pte_t *) __va(pa);
266}
267
268static inline phys_addr_t __init alloc_pte_early(uintptr_t va)
Anup Patel671f9a32019-06-28 13:36:21 -0700269{
270 /*
271 * We only create PMD or PGD early mappings so we
272 * should never reach here with MMU disabled.
273 */
Atish Patrae8dcb612020-09-17 15:37:12 -0700274 BUG();
275}
Anup Patel671f9a32019-06-28 13:36:21 -0700276
Atish Patrae8dcb612020-09-17 15:37:12 -0700277static inline phys_addr_t __init alloc_pte_fixmap(uintptr_t va)
278{
Anup Patel671f9a32019-06-28 13:36:21 -0700279 return memblock_phys_alloc(PAGE_SIZE, PAGE_SIZE);
280}
281
Jisheng Zhang01062352021-05-16 21:15:56 +0800282static phys_addr_t __init alloc_pte_late(uintptr_t va)
Atish Patrae8dcb612020-09-17 15:37:12 -0700283{
284 unsigned long vaddr;
285
286 vaddr = __get_free_page(GFP_KERNEL);
zhouchuangaoe75e6bf2021-03-30 06:56:26 -0700287 BUG_ON(!vaddr || !pgtable_pte_page_ctor(virt_to_page(vaddr)));
288
Atish Patrae8dcb612020-09-17 15:37:12 -0700289 return __pa(vaddr);
290}
291
Anup Patel671f9a32019-06-28 13:36:21 -0700292static void __init create_pte_mapping(pte_t *ptep,
293 uintptr_t va, phys_addr_t pa,
294 phys_addr_t sz, pgprot_t prot)
295{
Mike Rapoport974b9b22020-06-08 21:33:10 -0700296 uintptr_t pte_idx = pte_index(va);
Anup Patel671f9a32019-06-28 13:36:21 -0700297
298 BUG_ON(sz != PAGE_SIZE);
299
Mike Rapoport974b9b22020-06-08 21:33:10 -0700300 if (pte_none(ptep[pte_idx]))
301 ptep[pte_idx] = pfn_pte(PFN_DOWN(pa), prot);
Anup Patel671f9a32019-06-28 13:36:21 -0700302}
303
304#ifndef __PAGETABLE_PMD_FOLDED
305
Jisheng Zhang01062352021-05-16 21:15:56 +0800306static pmd_t trampoline_pmd[PTRS_PER_PMD] __page_aligned_bss;
307static pmd_t fixmap_pmd[PTRS_PER_PMD] __page_aligned_bss;
308static pmd_t early_pmd[PTRS_PER_PMD] __initdata __aligned(PAGE_SIZE);
Anup Patel671f9a32019-06-28 13:36:21 -0700309
Vitaly Wool44c92252021-04-13 02:35:14 -0400310#ifdef CONFIG_XIP_KERNEL
311#define trampoline_pmd ((pmd_t *)XIP_FIXUP(trampoline_pmd))
312#define fixmap_pmd ((pmd_t *)XIP_FIXUP(fixmap_pmd))
313#define early_pmd ((pmd_t *)XIP_FIXUP(early_pmd))
314#endif /* CONFIG_XIP_KERNEL */
315
Atish Patrae8dcb612020-09-17 15:37:12 -0700316static pmd_t *__init get_pmd_virt_early(phys_addr_t pa)
Anup Patel671f9a32019-06-28 13:36:21 -0700317{
Atish Patrae8dcb612020-09-17 15:37:12 -0700318 /* Before MMU is enabled */
319 return (pmd_t *)((uintptr_t)pa);
Anup Patel671f9a32019-06-28 13:36:21 -0700320}
321
Atish Patrae8dcb612020-09-17 15:37:12 -0700322static pmd_t *__init get_pmd_virt_fixmap(phys_addr_t pa)
323{
324 clear_fixmap(FIX_PMD);
325 return (pmd_t *)set_fixmap_offset(FIX_PMD, pa);
326}
327
Jisheng Zhang01062352021-05-16 21:15:56 +0800328static pmd_t *__init get_pmd_virt_late(phys_addr_t pa)
Atish Patrae8dcb612020-09-17 15:37:12 -0700329{
330 return (pmd_t *) __va(pa);
331}
332
333static phys_addr_t __init alloc_pmd_early(uintptr_t va)
Anup Patel671f9a32019-06-28 13:36:21 -0700334{
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200335 BUG_ON((va - kernel_map.virt_addr) >> PGDIR_SHIFT);
Anup Patel671f9a32019-06-28 13:36:21 -0700336
Alexandre Ghiti0f02de42021-02-21 09:22:33 -0500337 return (uintptr_t)early_pmd;
Anup Patel671f9a32019-06-28 13:36:21 -0700338}
339
Atish Patrae8dcb612020-09-17 15:37:12 -0700340static phys_addr_t __init alloc_pmd_fixmap(uintptr_t va)
341{
342 return memblock_phys_alloc(PAGE_SIZE, PAGE_SIZE);
343}
344
Jisheng Zhang01062352021-05-16 21:15:56 +0800345static phys_addr_t __init alloc_pmd_late(uintptr_t va)
Atish Patrae8dcb612020-09-17 15:37:12 -0700346{
347 unsigned long vaddr;
348
349 vaddr = __get_free_page(GFP_KERNEL);
350 BUG_ON(!vaddr);
351 return __pa(vaddr);
352}
353
Anup Patel671f9a32019-06-28 13:36:21 -0700354static void __init create_pmd_mapping(pmd_t *pmdp,
355 uintptr_t va, phys_addr_t pa,
356 phys_addr_t sz, pgprot_t prot)
357{
358 pte_t *ptep;
359 phys_addr_t pte_phys;
Mike Rapoport974b9b22020-06-08 21:33:10 -0700360 uintptr_t pmd_idx = pmd_index(va);
Anup Patel671f9a32019-06-28 13:36:21 -0700361
362 if (sz == PMD_SIZE) {
Mike Rapoport974b9b22020-06-08 21:33:10 -0700363 if (pmd_none(pmdp[pmd_idx]))
364 pmdp[pmd_idx] = pfn_pmd(PFN_DOWN(pa), prot);
Anup Patel671f9a32019-06-28 13:36:21 -0700365 return;
366 }
367
Mike Rapoport974b9b22020-06-08 21:33:10 -0700368 if (pmd_none(pmdp[pmd_idx])) {
Atish Patrae8dcb612020-09-17 15:37:12 -0700369 pte_phys = pt_ops.alloc_pte(va);
Mike Rapoport974b9b22020-06-08 21:33:10 -0700370 pmdp[pmd_idx] = pfn_pmd(PFN_DOWN(pte_phys), PAGE_TABLE);
Atish Patrae8dcb612020-09-17 15:37:12 -0700371 ptep = pt_ops.get_pte_virt(pte_phys);
Anup Patel671f9a32019-06-28 13:36:21 -0700372 memset(ptep, 0, PAGE_SIZE);
373 } else {
Mike Rapoport974b9b22020-06-08 21:33:10 -0700374 pte_phys = PFN_PHYS(_pmd_pfn(pmdp[pmd_idx]));
Atish Patrae8dcb612020-09-17 15:37:12 -0700375 ptep = pt_ops.get_pte_virt(pte_phys);
Anup Patel671f9a32019-06-28 13:36:21 -0700376 }
377
378 create_pte_mapping(ptep, va, pa, sz, prot);
379}
380
381#define pgd_next_t pmd_t
Atish Patrae8dcb612020-09-17 15:37:12 -0700382#define alloc_pgd_next(__va) pt_ops.alloc_pmd(__va)
383#define get_pgd_next_virt(__pa) pt_ops.get_pmd_virt(__pa)
Anup Patel671f9a32019-06-28 13:36:21 -0700384#define create_pgd_next_mapping(__nextp, __va, __pa, __sz, __prot) \
385 create_pmd_mapping(__nextp, __va, __pa, __sz, __prot)
Anup Patel671f9a32019-06-28 13:36:21 -0700386#define fixmap_pgd_next fixmap_pmd
387#else
388#define pgd_next_t pte_t
Atish Patrae8dcb612020-09-17 15:37:12 -0700389#define alloc_pgd_next(__va) pt_ops.alloc_pte(__va)
390#define get_pgd_next_virt(__pa) pt_ops.get_pte_virt(__pa)
Anup Patel671f9a32019-06-28 13:36:21 -0700391#define create_pgd_next_mapping(__nextp, __va, __pa, __sz, __prot) \
392 create_pte_mapping(__nextp, __va, __pa, __sz, __prot)
Anup Patel671f9a32019-06-28 13:36:21 -0700393#define fixmap_pgd_next fixmap_pte
Alexandre Ghitife45ffa2021-07-23 15:01:28 +0200394#define create_pmd_mapping(__pmdp, __va, __pa, __sz, __prot)
Anup Patel671f9a32019-06-28 13:36:21 -0700395#endif
396
Atish Patrab91540d2020-09-17 15:37:15 -0700397void __init create_pgd_mapping(pgd_t *pgdp,
Anup Patel671f9a32019-06-28 13:36:21 -0700398 uintptr_t va, phys_addr_t pa,
399 phys_addr_t sz, pgprot_t prot)
400{
401 pgd_next_t *nextp;
402 phys_addr_t next_phys;
Mike Rapoport974b9b22020-06-08 21:33:10 -0700403 uintptr_t pgd_idx = pgd_index(va);
Anup Patel671f9a32019-06-28 13:36:21 -0700404
405 if (sz == PGDIR_SIZE) {
Mike Rapoport974b9b22020-06-08 21:33:10 -0700406 if (pgd_val(pgdp[pgd_idx]) == 0)
407 pgdp[pgd_idx] = pfn_pgd(PFN_DOWN(pa), prot);
Anup Patel671f9a32019-06-28 13:36:21 -0700408 return;
409 }
410
Mike Rapoport974b9b22020-06-08 21:33:10 -0700411 if (pgd_val(pgdp[pgd_idx]) == 0) {
Anup Patel671f9a32019-06-28 13:36:21 -0700412 next_phys = alloc_pgd_next(va);
Mike Rapoport974b9b22020-06-08 21:33:10 -0700413 pgdp[pgd_idx] = pfn_pgd(PFN_DOWN(next_phys), PAGE_TABLE);
Anup Patel671f9a32019-06-28 13:36:21 -0700414 nextp = get_pgd_next_virt(next_phys);
415 memset(nextp, 0, PAGE_SIZE);
416 } else {
Mike Rapoport974b9b22020-06-08 21:33:10 -0700417 next_phys = PFN_PHYS(_pgd_pfn(pgdp[pgd_idx]));
Anup Patel671f9a32019-06-28 13:36:21 -0700418 nextp = get_pgd_next_virt(next_phys);
419 }
420
421 create_pgd_next_mapping(nextp, va, pa, sz, prot);
422}
423
424static uintptr_t __init best_map_size(phys_addr_t base, phys_addr_t size)
425{
Zong Li0fdc6362019-11-08 01:00:40 -0800426 /* Upgrade to PMD_SIZE mappings whenever possible */
427 if ((base & (PMD_SIZE - 1)) || (size & (PMD_SIZE - 1)))
428 return PAGE_SIZE;
Anup Patel671f9a32019-06-28 13:36:21 -0700429
Zong Li0fdc6362019-11-08 01:00:40 -0800430 return PMD_SIZE;
Anup Patel671f9a32019-06-28 13:36:21 -0700431}
432
Vitaly Wool44c92252021-04-13 02:35:14 -0400433#ifdef CONFIG_XIP_KERNEL
434/* called from head.S with MMU off */
435asmlinkage void __init __copy_data(void)
436{
437 void *from = (void *)(&_sdata);
438 void *end = (void *)(&_end);
439 void *to = (void *)CONFIG_PHYS_RAM_BASE;
440 size_t sz = (size_t)(end - from + 1);
441
442 memcpy(to, from, sz);
443}
444#endif
445
Alexandre Ghitie5c35fa02021-06-24 14:00:41 +0200446#ifdef CONFIG_STRICT_KERNEL_RWX
447static __init pgprot_t pgprot_from_va(uintptr_t va)
448{
449 if (is_va_kernel_text(va))
450 return PAGE_KERNEL_READ_EXEC;
451
452 /*
453 * In 64-bit kernel, the kernel mapping is outside the linear mapping so
454 * we must protect its linear mapping alias from being executed and
455 * written.
456 * And rodata section is marked readonly in mark_rodata_ro.
457 */
458 if (IS_ENABLED(CONFIG_64BIT) && is_va_kernel_lm_alias_text(va))
459 return PAGE_KERNEL_READ;
460
461 return PAGE_KERNEL;
462}
463
464void mark_rodata_ro(void)
465{
466 set_kernel_memory(__start_rodata, _data, set_memory_ro);
467 if (IS_ENABLED(CONFIG_64BIT))
468 set_kernel_memory(lm_alias(__start_rodata), lm_alias(_data),
469 set_memory_ro);
470
471 debug_checkwx();
472}
473#else
474static __init pgprot_t pgprot_from_va(uintptr_t va)
475{
476 if (IS_ENABLED(CONFIG_64BIT) && !is_kernel_mapping(va))
477 return PAGE_KERNEL;
478
479 return PAGE_KERNEL_EXEC;
480}
481#endif /* CONFIG_STRICT_KERNEL_RWX */
482
Anup Patel387181d2019-03-26 08:03:47 +0000483/*
484 * setup_vm() is called from head.S with MMU-off.
485 *
486 * Following requirements should be honoured for setup_vm() to work
487 * correctly:
488 * 1) It should use PC-relative addressing for accessing kernel symbols.
489 * To achieve this we always use GCC cmodel=medany.
490 * 2) The compiler instrumentation for FTRACE will not work for setup_vm()
491 * so disable compiler instrumentation when FTRACE is enabled.
492 *
493 * Currently, the above requirements are honoured by using custom CFLAGS
494 * for init.o in mm/Makefile.
495 */
496
497#ifndef __riscv_cmodel_medany
Paul Walmsley6a527b62019-10-17 14:45:58 -0700498#error "setup_vm() is called from head.S before relocate so it should not use absolute addressing."
Anup Patel387181d2019-03-26 08:03:47 +0000499#endif
500
Vitaly Wool44c92252021-04-13 02:35:14 -0400501#ifdef CONFIG_XIP_KERNEL
Alexandre Ghiti526f83d2021-07-23 15:01:25 +0200502static void __init create_kernel_page_table(pgd_t *pgdir,
Alexandre Ghitie5c35fa02021-06-24 14:00:41 +0200503 __always_unused bool early)
Vitaly Wool44c92252021-04-13 02:35:14 -0400504{
505 uintptr_t va, end_va;
506
507 /* Map the flash resident part */
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200508 end_va = kernel_map.virt_addr + kernel_map.xiprom_sz;
Alexandre Ghiti526f83d2021-07-23 15:01:25 +0200509 for (va = kernel_map.virt_addr; va < end_va; va += PMD_SIZE)
Vitaly Wool44c92252021-04-13 02:35:14 -0400510 create_pgd_mapping(pgdir, va,
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200511 kernel_map.xiprom + (va - kernel_map.virt_addr),
Alexandre Ghiti526f83d2021-07-23 15:01:25 +0200512 PMD_SIZE, PAGE_KERNEL_EXEC);
Vitaly Wool44c92252021-04-13 02:35:14 -0400513
514 /* Map the data in RAM */
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200515 end_va = kernel_map.virt_addr + XIP_OFFSET + kernel_map.size;
Alexandre Ghiti526f83d2021-07-23 15:01:25 +0200516 for (va = kernel_map.virt_addr + XIP_OFFSET; va < end_va; va += PMD_SIZE)
Vitaly Wool44c92252021-04-13 02:35:14 -0400517 create_pgd_mapping(pgdir, va,
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200518 kernel_map.phys_addr + (va - (kernel_map.virt_addr + XIP_OFFSET)),
Alexandre Ghiti526f83d2021-07-23 15:01:25 +0200519 PMD_SIZE, PAGE_KERNEL);
Vitaly Wool44c92252021-04-13 02:35:14 -0400520}
521#else
Alexandre Ghiti526f83d2021-07-23 15:01:25 +0200522static void __init create_kernel_page_table(pgd_t *pgdir, bool early)
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400523{
524 uintptr_t va, end_va;
525
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200526 end_va = kernel_map.virt_addr + kernel_map.size;
Alexandre Ghiti526f83d2021-07-23 15:01:25 +0200527 for (va = kernel_map.virt_addr; va < end_va; va += PMD_SIZE)
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400528 create_pgd_mapping(pgdir, va,
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200529 kernel_map.phys_addr + (va - kernel_map.virt_addr),
Alexandre Ghiti526f83d2021-07-23 15:01:25 +0200530 PMD_SIZE,
Alexandre Ghitie5c35fa02021-06-24 14:00:41 +0200531 early ?
532 PAGE_KERNEL_EXEC : pgprot_from_va(va));
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400533}
Vitaly Wool44c92252021-04-13 02:35:14 -0400534#endif
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400535
Alexandre Ghitife45ffa2021-07-23 15:01:28 +0200536/*
537 * Setup a 4MB mapping that encompasses the device tree: for 64-bit kernel,
538 * this means 2 PMD entries whereas for 32-bit kernel, this is only 1 PGDIR
539 * entry.
540 */
541static void __init create_fdt_early_page_table(pgd_t *pgdir, uintptr_t dtb_pa)
542{
543#ifndef CONFIG_BUILTIN_DTB
544 uintptr_t pa = dtb_pa & ~(PMD_SIZE - 1);
545
546 create_pgd_mapping(early_pg_dir, DTB_EARLY_BASE_VA,
547 IS_ENABLED(CONFIG_64BIT) ? (uintptr_t)early_dtb_pmd : pa,
548 PGDIR_SIZE,
549 IS_ENABLED(CONFIG_64BIT) ? PAGE_TABLE : PAGE_KERNEL);
550
551 if (IS_ENABLED(CONFIG_64BIT)) {
552 create_pmd_mapping(early_dtb_pmd, DTB_EARLY_BASE_VA,
553 pa, PMD_SIZE, PAGE_KERNEL);
554 create_pmd_mapping(early_dtb_pmd, DTB_EARLY_BASE_VA + PMD_SIZE,
555 pa + PMD_SIZE, PMD_SIZE, PAGE_KERNEL);
556 }
557
558 dtb_early_va = (void *)DTB_EARLY_BASE_VA + (dtb_pa & (PMD_SIZE - 1));
559#else
560 /*
561 * For 64-bit kernel, __va can't be used since it would return a linear
562 * mapping address whereas dtb_early_va will be used before
563 * setup_vm_final installs the linear mapping. For 32-bit kernel, as the
564 * kernel is mapped in the linear mapping, that makes no difference.
565 */
566 dtb_early_va = kernel_mapping_pa_to_va(XIP_FIXUP(dtb_pa));
567#endif
568
569 dtb_early_pa = dtb_pa;
570}
571
Anup Patel671f9a32019-06-28 13:36:21 -0700572asmlinkage void __init setup_vm(uintptr_t dtb_pa)
Anup Patel6f1e9e92019-02-13 16:38:36 +0530573{
Alexandre Ghiti6f3e5fd2021-07-23 15:01:26 +0200574 pmd_t __maybe_unused fix_bmap_spmd, fix_bmap_epmd;
Anup Patel6f1e9e92019-02-13 16:38:36 +0530575
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200576 kernel_map.virt_addr = KERNEL_LINK_ADDR;
577
Vitaly Wool44c92252021-04-13 02:35:14 -0400578#ifdef CONFIG_XIP_KERNEL
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200579 kernel_map.xiprom = (uintptr_t)CONFIG_XIP_PHYS_ADDR;
580 kernel_map.xiprom_sz = (uintptr_t)(&_exiprom) - (uintptr_t)(&_xiprom);
Vitaly Wool44c92252021-04-13 02:35:14 -0400581
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200582 kernel_map.phys_addr = (uintptr_t)CONFIG_PHYS_RAM_BASE;
583 kernel_map.size = (uintptr_t)(&_end) - (uintptr_t)(&_sdata);
Vitaly Wool44c92252021-04-13 02:35:14 -0400584
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200585 kernel_map.va_kernel_xip_pa_offset = kernel_map.virt_addr - kernel_map.xiprom;
Vitaly Wool44c92252021-04-13 02:35:14 -0400586#else
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200587 kernel_map.phys_addr = (uintptr_t)(&_start);
588 kernel_map.size = (uintptr_t)(&_end) - kernel_map.phys_addr;
Vitaly Wool44c92252021-04-13 02:35:14 -0400589#endif
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200590 kernel_map.va_pa_offset = PAGE_OFFSET - kernel_map.phys_addr;
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200591 kernel_map.va_kernel_pa_offset = kernel_map.virt_addr - kernel_map.phys_addr;
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400592
Kenneth Leefb31f0a2021-07-28 15:15:57 +0800593 riscv_pfn_base = PFN_DOWN(kernel_map.phys_addr);
Anup Patel671f9a32019-06-28 13:36:21 -0700594
Anup Patel6f1e9e92019-02-13 16:38:36 +0530595 /* Sanity check alignment and size */
596 BUG_ON((PAGE_OFFSET % PGDIR_SIZE) != 0);
Alexandre Ghiti526f83d2021-07-23 15:01:25 +0200597 BUG_ON((kernel_map.phys_addr % PMD_SIZE) != 0);
Anup Patel671f9a32019-06-28 13:36:21 -0700598
Atish Patrae8dcb612020-09-17 15:37:12 -0700599 pt_ops.alloc_pte = alloc_pte_early;
600 pt_ops.get_pte_virt = get_pte_virt_early;
601#ifndef __PAGETABLE_PMD_FOLDED
602 pt_ops.alloc_pmd = alloc_pmd_early;
603 pt_ops.get_pmd_virt = get_pmd_virt_early;
604#endif
Anup Patel671f9a32019-06-28 13:36:21 -0700605 /* Setup early PGD for fixmap */
606 create_pgd_mapping(early_pg_dir, FIXADDR_START,
607 (uintptr_t)fixmap_pgd_next, PGDIR_SIZE, PAGE_TABLE);
Anup Patel6f1e9e92019-02-13 16:38:36 +0530608
609#ifndef __PAGETABLE_PMD_FOLDED
Anup Patel671f9a32019-06-28 13:36:21 -0700610 /* Setup fixmap PMD */
611 create_pmd_mapping(fixmap_pmd, FIXADDR_START,
612 (uintptr_t)fixmap_pte, PMD_SIZE, PAGE_TABLE);
613 /* Setup trampoline PGD and PMD */
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200614 create_pgd_mapping(trampoline_pg_dir, kernel_map.virt_addr,
Anup Patel671f9a32019-06-28 13:36:21 -0700615 (uintptr_t)trampoline_pmd, PGDIR_SIZE, PAGE_TABLE);
Vitaly Wool44c92252021-04-13 02:35:14 -0400616#ifdef CONFIG_XIP_KERNEL
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200617 create_pmd_mapping(trampoline_pmd, kernel_map.virt_addr,
618 kernel_map.xiprom, PMD_SIZE, PAGE_KERNEL_EXEC);
Vitaly Wool44c92252021-04-13 02:35:14 -0400619#else
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200620 create_pmd_mapping(trampoline_pmd, kernel_map.virt_addr,
621 kernel_map.phys_addr, PMD_SIZE, PAGE_KERNEL_EXEC);
Vitaly Wool44c92252021-04-13 02:35:14 -0400622#endif
Anup Patel6f1e9e92019-02-13 16:38:36 +0530623#else
Anup Patel671f9a32019-06-28 13:36:21 -0700624 /* Setup trampoline PGD */
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200625 create_pgd_mapping(trampoline_pg_dir, kernel_map.virt_addr,
626 kernel_map.phys_addr, PGDIR_SIZE, PAGE_KERNEL_EXEC);
Anup Patel671f9a32019-06-28 13:36:21 -0700627#endif
Anup Patel6f1e9e92019-02-13 16:38:36 +0530628
Anup Patel671f9a32019-06-28 13:36:21 -0700629 /*
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400630 * Setup early PGD covering entire kernel which will allow
Anup Patel671f9a32019-06-28 13:36:21 -0700631 * us to reach paging_init(). We map all memory banks later
632 * in setup_vm_final() below.
633 */
Alexandre Ghiti526f83d2021-07-23 15:01:25 +0200634 create_kernel_page_table(early_pg_dir, true);
Anup Patelf2c17aa2019-01-07 20:57:01 +0530635
Alexandre Ghitife45ffa2021-07-23 15:01:28 +0200636 /* Setup early mapping for FDT early scan */
637 create_fdt_early_page_table(early_pg_dir, dtb_pa);
Atish Patra6262f662020-09-17 15:37:11 -0700638
639 /*
640 * Bootime fixmap only can handle PMD_SIZE mapping. Thus, boot-ioremap
641 * range can not span multiple pmds.
642 */
643 BUILD_BUG_ON((__fix_to_virt(FIX_BTMAP_BEGIN) >> PMD_SHIFT)
644 != (__fix_to_virt(FIX_BTMAP_END) >> PMD_SHIFT));
645
646#ifndef __PAGETABLE_PMD_FOLDED
647 /*
648 * Early ioremap fixmap is already created as it lies within first 2MB
649 * of fixmap region. We always map PMD_SIZE. Thus, both FIX_BTMAP_END
650 * FIX_BTMAP_BEGIN should lie in the same pmd. Verify that and warn
651 * the user if not.
652 */
653 fix_bmap_spmd = fixmap_pmd[pmd_index(__fix_to_virt(FIX_BTMAP_BEGIN))];
654 fix_bmap_epmd = fixmap_pmd[pmd_index(__fix_to_virt(FIX_BTMAP_END))];
655 if (pmd_val(fix_bmap_spmd) != pmd_val(fix_bmap_epmd)) {
656 WARN_ON(1);
657 pr_warn("fixmap btmap start [%08lx] != end [%08lx]\n",
658 pmd_val(fix_bmap_spmd), pmd_val(fix_bmap_epmd));
659 pr_warn("fix_to_virt(FIX_BTMAP_BEGIN): %08lx\n",
660 fix_to_virt(FIX_BTMAP_BEGIN));
661 pr_warn("fix_to_virt(FIX_BTMAP_END): %08lx\n",
662 fix_to_virt(FIX_BTMAP_END));
663
664 pr_warn("FIX_BTMAP_END: %d\n", FIX_BTMAP_END);
665 pr_warn("FIX_BTMAP_BEGIN: %d\n", FIX_BTMAP_BEGIN);
666 }
667#endif
Anup Patel671f9a32019-06-28 13:36:21 -0700668}
669
670static void __init setup_vm_final(void)
671{
672 uintptr_t va, map_size;
673 phys_addr_t pa, start, end;
Mike Rapoportb10d6bc2020-10-13 16:58:08 -0700674 u64 i;
Anup Patel671f9a32019-06-28 13:36:21 -0700675
Atish Patrae8dcb612020-09-17 15:37:12 -0700676 /**
677 * MMU is enabled at this point. But page table setup is not complete yet.
678 * fixmap page table alloc functions should be used at this point
679 */
680 pt_ops.alloc_pte = alloc_pte_fixmap;
681 pt_ops.get_pte_virt = get_pte_virt_fixmap;
682#ifndef __PAGETABLE_PMD_FOLDED
683 pt_ops.alloc_pmd = alloc_pmd_fixmap;
684 pt_ops.get_pmd_virt = get_pmd_virt_fixmap;
685#endif
Anup Patel671f9a32019-06-28 13:36:21 -0700686 /* Setup swapper PGD for fixmap */
687 create_pgd_mapping(swapper_pg_dir, FIXADDR_START,
Zong Liac51e002020-01-02 11:12:40 +0800688 __pa_symbol(fixmap_pgd_next),
Anup Patel671f9a32019-06-28 13:36:21 -0700689 PGDIR_SIZE, PAGE_TABLE);
690
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400691 /* Map all memory banks in the linear mapping */
Mike Rapoportb10d6bc2020-10-13 16:58:08 -0700692 for_each_mem_range(i, &start, &end) {
Anup Patel671f9a32019-06-28 13:36:21 -0700693 if (start >= end)
694 break;
Anup Patel671f9a32019-06-28 13:36:21 -0700695 if (start <= __pa(PAGE_OFFSET) &&
696 __pa(PAGE_OFFSET) < end)
697 start = __pa(PAGE_OFFSET);
698
699 map_size = best_map_size(start, end - start);
700 for (pa = start; pa < end; pa += map_size) {
701 va = (uintptr_t)__va(pa);
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400702
Alexandre Ghitie5c35fa02021-06-24 14:00:41 +0200703 create_pgd_mapping(swapper_pg_dir, va, pa, map_size,
704 pgprot_from_va(va));
Anup Patel671f9a32019-06-28 13:36:21 -0700705 }
Anup Patel6f1e9e92019-02-13 16:38:36 +0530706 }
Anup Patelf2c17aa2019-01-07 20:57:01 +0530707
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400708#ifdef CONFIG_64BIT
709 /* Map the kernel */
Alexandre Ghiti526f83d2021-07-23 15:01:25 +0200710 create_kernel_page_table(swapper_pg_dir, false);
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400711#endif
712
Anup Patel671f9a32019-06-28 13:36:21 -0700713 /* Clear fixmap PTE and PMD mappings */
714 clear_fixmap(FIX_PTE);
715 clear_fixmap(FIX_PMD);
716
717 /* Move to swapper page table */
Zong Liac51e002020-01-02 11:12:40 +0800718 csr_write(CSR_SATP, PFN_DOWN(__pa_symbol(swapper_pg_dir)) | SATP_MODE);
Anup Patel671f9a32019-06-28 13:36:21 -0700719 local_flush_tlb_all();
Atish Patrae8dcb612020-09-17 15:37:12 -0700720
721 /* generic page allocation functions must be used to setup page table */
722 pt_ops.alloc_pte = alloc_pte_late;
723 pt_ops.get_pte_virt = get_pte_virt_late;
724#ifndef __PAGETABLE_PMD_FOLDED
725 pt_ops.alloc_pmd = alloc_pmd_late;
726 pt_ops.get_pmd_virt = get_pmd_virt_late;
727#endif
Anup Patel671f9a32019-06-28 13:36:21 -0700728}
Christoph Hellwig6bd33e12019-10-28 13:10:41 +0100729#else
730asmlinkage void __init setup_vm(uintptr_t dtb_pa)
731{
732 dtb_early_va = (void *)dtb_pa;
Atish Patraa78c6f52020-10-01 12:04:56 -0700733 dtb_early_pa = dtb_pa;
Christoph Hellwig6bd33e12019-10-28 13:10:41 +0100734}
735
736static inline void setup_vm_final(void)
737{
738}
739#endif /* CONFIG_MMU */
Anup Patel671f9a32019-06-28 13:36:21 -0700740
Nick Kossifidise53d2812021-04-19 03:55:38 +0300741#ifdef CONFIG_KEXEC_CORE
742/*
743 * reserve_crashkernel() - reserves memory for crash kernel
744 *
745 * This function reserves memory area given in "crashkernel=" kernel command
746 * line parameter. The memory reserved is used by dump capture kernel when
747 * primary kernel is crashing.
748 */
749static void __init reserve_crashkernel(void)
750{
751 unsigned long long crash_base = 0;
752 unsigned long long crash_size = 0;
753 unsigned long search_start = memblock_start_of_DRAM();
754 unsigned long search_end = memblock_end_of_DRAM();
755
756 int ret = 0;
757
Nick Kossifidis56409752021-04-19 03:55:39 +0300758 /*
759 * Don't reserve a region for a crash kernel on a crash kernel
760 * since it doesn't make much sense and we have limited memory
761 * resources.
762 */
763#ifdef CONFIG_CRASH_DUMP
764 if (is_kdump_kernel()) {
765 pr_info("crashkernel: ignoring reservation request\n");
766 return;
767 }
768#endif
769
Nick Kossifidise53d2812021-04-19 03:55:38 +0300770 ret = parse_crashkernel(boot_command_line, memblock_phys_mem_size(),
771 &crash_size, &crash_base);
772 if (ret || !crash_size)
773 return;
774
775 crash_size = PAGE_ALIGN(crash_size);
776
777 if (crash_base == 0) {
778 /*
779 * Current riscv boot protocol requires 2MB alignment for
780 * RV64 and 4MB alignment for RV32 (hugepage size)
781 */
782 crash_base = memblock_find_in_range(search_start, search_end,
783 crash_size, PMD_SIZE);
784
785 if (crash_base == 0) {
786 pr_warn("crashkernel: couldn't allocate %lldKB\n",
787 crash_size >> 10);
788 return;
789 }
790 } else {
791 /* User specifies base address explicitly. */
792 if (!memblock_is_region_memory(crash_base, crash_size)) {
793 pr_warn("crashkernel: requested region is not memory\n");
794 return;
795 }
796
797 if (memblock_is_region_reserved(crash_base, crash_size)) {
798 pr_warn("crashkernel: requested region is reserved\n");
799 return;
800 }
801
802
803 if (!IS_ALIGNED(crash_base, PMD_SIZE)) {
804 pr_warn("crashkernel: requested region is misaligned\n");
805 return;
806 }
807 }
808 memblock_reserve(crash_base, crash_size);
809
810 pr_info("crashkernel: reserved 0x%016llx - 0x%016llx (%lld MB)\n",
811 crash_base, crash_base + crash_size, crash_size >> 20);
812
813 crashk_res.start = crash_base;
814 crashk_res.end = crash_base + crash_size - 1;
815}
816#endif /* CONFIG_KEXEC_CORE */
817
Nick Kossifidis56409752021-04-19 03:55:39 +0300818#ifdef CONFIG_CRASH_DUMP
819/*
820 * We keep track of the ELF core header of the crashed
821 * kernel with a reserved-memory region with compatible
822 * string "linux,elfcorehdr". Here we register a callback
823 * to populate elfcorehdr_addr/size when this region is
824 * present. Note that this region will be marked as
825 * reserved once we call early_init_fdt_scan_reserved_mem()
826 * later on.
827 */
Jisheng Zhang01062352021-05-16 21:15:56 +0800828static int __init elfcore_hdr_setup(struct reserved_mem *rmem)
Nick Kossifidis56409752021-04-19 03:55:39 +0300829{
830 elfcorehdr_addr = rmem->base;
831 elfcorehdr_size = rmem->size;
832 return 0;
833}
834
835RESERVEDMEM_OF_DECLARE(elfcorehdr, "linux,elfcorehdr", elfcore_hdr_setup);
836#endif
837
Anup Patel671f9a32019-06-28 13:36:21 -0700838void __init paging_init(void)
839{
Kefeng Wangf842f5f2021-05-10 19:42:22 +0800840 setup_bootmem();
Anup Patel671f9a32019-06-28 13:36:21 -0700841 setup_vm_final();
Atish Patracbd34f42020-11-18 16:38:27 -0800842}
843
844void __init misc_mem_init(void)
845{
Kefeng Wangf6e5aed2021-02-25 14:54:17 +0800846 early_memtest(min_low_pfn << PAGE_SHIFT, max_low_pfn << PAGE_SHIFT);
Atish Patra4f0e8ee2020-11-18 16:38:29 -0800847 arch_numa_init();
Atish Patracbd34f42020-11-18 16:38:27 -0800848 sparse_init();
Anup Patel671f9a32019-06-28 13:36:21 -0700849 zone_sizes_init();
Nick Kossifidise53d2812021-04-19 03:55:38 +0300850#ifdef CONFIG_KEXEC_CORE
851 reserve_crashkernel();
852#endif
Atish Patra4f0e8ee2020-11-18 16:38:29 -0800853 memblock_dump_all();
Anup Patel6f1e9e92019-02-13 16:38:36 +0530854}
Logan Gunthorped95f1a52019-08-28 15:40:54 -0600855
Kefeng Wang9fe57d82019-10-23 11:23:02 +0800856#ifdef CONFIG_SPARSEMEM_VMEMMAP
Logan Gunthorped95f1a52019-08-28 15:40:54 -0600857int __meminit vmemmap_populate(unsigned long start, unsigned long end, int node,
858 struct vmem_altmap *altmap)
859{
Anshuman Khandual1d9cfee2020-08-06 23:23:19 -0700860 return vmemmap_populate_basepages(start, end, node, NULL);
Logan Gunthorped95f1a52019-08-28 15:40:54 -0600861}
862#endif