blob: 88134cc288d9a60b1a881a04315c413a0b7e1988 [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
Alexandre Ghiti6d7f91d2021-07-21 09:59:35 +020039phys_addr_t phys_ram_base __ro_after_init;
40EXPORT_SYMBOL(phys_ram_base);
41
Alexandre Ghiti658e2c52021-06-17 15:53:07 +020042#ifdef CONFIG_XIP_KERNEL
Kefeng Wang50bae952021-05-14 17:49:08 +080043extern char _xiprom[], _exiprom[];
Vitaly Wool44c92252021-04-13 02:35:14 -040044#endif
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -040045
Anup Patel387181d2019-03-26 08:03:47 +000046unsigned long empty_zero_page[PAGE_SIZE / sizeof(unsigned long)]
47 __page_aligned_bss;
48EXPORT_SYMBOL(empty_zero_page);
49
Anup Pateld90d45d2019-06-07 06:01:29 +000050extern char _start[];
Anup Patel8f3a2b42020-09-17 15:37:10 -070051#define DTB_EARLY_BASE_VA PGDIR_SIZE
Vitaly Wool44c92252021-04-13 02:35:14 -040052void *_dtb_early_va __initdata;
53uintptr_t _dtb_early_pa __initdata;
Anup Pateld90d45d2019-06-07 06:01:29 +000054
Atish Patrae8dcb612020-09-17 15:37:12 -070055struct pt_alloc_ops {
56 pte_t *(*get_pte_virt)(phys_addr_t pa);
57 phys_addr_t (*alloc_pte)(uintptr_t va);
58#ifndef __PAGETABLE_PMD_FOLDED
59 pmd_t *(*get_pmd_virt)(phys_addr_t pa);
60 phys_addr_t (*alloc_pmd)(uintptr_t va);
61#endif
62};
Palmer Dabbelt76d2a042017-07-10 18:00:26 -070063
Jisheng Zhang01062352021-05-16 21:15:56 +080064static phys_addr_t dma32_phys_limit __initdata;
Kefeng Wangda815582020-10-31 14:01:12 +080065
Palmer Dabbelt76d2a042017-07-10 18:00:26 -070066static void __init zone_sizes_init(void)
67{
Christoph Hellwig5ec9c4f2018-01-16 09:37:50 +010068 unsigned long max_zone_pfns[MAX_NR_ZONES] = { 0, };
Palmer Dabbelt76d2a042017-07-10 18:00:26 -070069
Zong Lid5fad482018-06-25 16:49:37 +080070#ifdef CONFIG_ZONE_DMA32
Kefeng Wangda815582020-10-31 14:01:12 +080071 max_zone_pfns[ZONE_DMA32] = PFN_DOWN(dma32_phys_limit);
Zong Lid5fad482018-06-25 16:49:37 +080072#endif
Christoph Hellwig5ec9c4f2018-01-16 09:37:50 +010073 max_zone_pfns[ZONE_NORMAL] = max_low_pfn;
74
Mike Rapoport9691a072020-06-03 15:57:10 -070075 free_area_init(max_zone_pfns);
Palmer Dabbelt76d2a042017-07-10 18:00:26 -070076}
77
Kefeng Wang8fa3cdf2020-05-14 19:53:35 +080078#if defined(CONFIG_MMU) && defined(CONFIG_DEBUG_VM)
Yash Shah2cc6c4a2019-11-18 05:58:34 +000079static inline void print_mlk(char *name, unsigned long b, unsigned long t)
80{
81 pr_notice("%12s : 0x%08lx - 0x%08lx (%4ld kB)\n", name, b, t,
82 (((t) - (b)) >> 10));
83}
84
85static inline void print_mlm(char *name, unsigned long b, unsigned long t)
86{
87 pr_notice("%12s : 0x%08lx - 0x%08lx (%4ld MB)\n", name, b, t,
88 (((t) - (b)) >> 20));
89}
90
Jisheng Zhang19875012021-03-30 02:22:21 +080091static void __init print_vm_layout(void)
Yash Shah2cc6c4a2019-11-18 05:58:34 +000092{
93 pr_notice("Virtual kernel memory layout:\n");
94 print_mlk("fixmap", (unsigned long)FIXADDR_START,
95 (unsigned long)FIXADDR_TOP);
96 print_mlm("pci io", (unsigned long)PCI_IO_START,
97 (unsigned long)PCI_IO_END);
98 print_mlm("vmemmap", (unsigned long)VMEMMAP_START,
99 (unsigned long)VMEMMAP_END);
100 print_mlm("vmalloc", (unsigned long)VMALLOC_START,
101 (unsigned long)VMALLOC_END);
102 print_mlm("lowmem", (unsigned long)PAGE_OFFSET,
103 (unsigned long)high_memory);
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400104#ifdef CONFIG_64BIT
105 print_mlm("kernel", (unsigned long)KERNEL_LINK_ADDR,
106 (unsigned long)ADDRESS_SPACE_END);
107#endif
Yash Shah2cc6c4a2019-11-18 05:58:34 +0000108}
109#else
110static void print_vm_layout(void) { }
111#endif /* CONFIG_DEBUG_VM */
112
Palmer Dabbelt76d2a042017-07-10 18:00:26 -0700113void __init mem_init(void)
114{
115#ifdef CONFIG_FLATMEM
116 BUG_ON(!mem_map);
117#endif /* CONFIG_FLATMEM */
118
Kefeng Wangce3aca02021-06-02 16:55:16 +0800119#ifdef CONFIG_SWIOTLB
120 if (swiotlb_force == SWIOTLB_FORCE ||
121 max_pfn > PFN_DOWN(dma32_phys_limit))
122 swiotlb_init(1);
123 else
124 swiotlb_force = SWIOTLB_NO_FORCE;
125#endif
Palmer Dabbelt76d2a042017-07-10 18:00:26 -0700126 high_memory = (void *)(__va(PFN_PHYS(max_low_pfn)));
Mike Rapoportc6ffc5c2018-10-30 15:09:30 -0700127 memblock_free_all();
Palmer Dabbelt76d2a042017-07-10 18:00:26 -0700128
Yash Shah2cc6c4a2019-11-18 05:58:34 +0000129 print_vm_layout();
Palmer Dabbelt76d2a042017-07-10 18:00:26 -0700130}
131
Kefeng Wangc9811e32021-06-02 16:55:17 +0800132/*
Alexandre Ghitic09dc9e2021-06-29 11:13:46 +0200133 * The default maximal physical memory size is -PAGE_OFFSET for 32-bit kernel,
134 * whereas for 64-bit kernel, the end of the virtual address space is occupied
135 * by the modules/BPF/kernel mappings which reduces the available size of the
136 * linear mapping.
137 * Limit the memory size via mem.
Kefeng Wangc9811e32021-06-02 16:55:17 +0800138 */
Alexandre Ghitic09dc9e2021-06-29 11:13:46 +0200139#ifdef CONFIG_64BIT
140static phys_addr_t memory_limit = -PAGE_OFFSET - SZ_4G;
141#else
Kefeng Wangc9811e32021-06-02 16:55:17 +0800142static phys_addr_t memory_limit = -PAGE_OFFSET;
Alexandre Ghitic09dc9e2021-06-29 11:13:46 +0200143#endif
Kefeng Wangc9811e32021-06-02 16:55:17 +0800144
145static int __init early_mem(char *p)
146{
147 u64 size;
148
149 if (!p)
150 return 1;
151
152 size = memparse(p, &p) & PAGE_MASK;
153 memory_limit = min_t(u64, size, memory_limit);
154
155 pr_notice("Memory limited to %lldMB\n", (u64)memory_limit >> 20);
156
157 return 0;
158}
159early_param("mem", early_mem);
160
Kefeng Wangf842f5f2021-05-10 19:42:22 +0800161static void __init setup_bootmem(void)
Anup Patel0651c262019-02-21 11:25:49 +0530162{
Zong Liac51e002020-01-02 11:12:40 +0800163 phys_addr_t vmlinux_end = __pa_symbol(&_end);
164 phys_addr_t vmlinux_start = __pa_symbol(&_start);
Alexandre Ghitidb6b84a2021-06-29 11:13:48 +0200165 phys_addr_t __maybe_unused max_mapped_addr;
Alexandre Ghiti6d7f91d2021-07-21 09:59:35 +0200166 phys_addr_t phys_ram_end;
Anup Patel0651c262019-02-21 11:25:49 +0530167
Vitaly Wool44c92252021-04-13 02:35:14 -0400168#ifdef CONFIG_XIP_KERNEL
169 vmlinux_start = __pa_symbol(&_sdata);
170#endif
171
Kefeng Wangc9811e32021-06-02 16:55:17 +0800172 memblock_enforce_memory_limit(memory_limit);
Anup Patel0651c262019-02-21 11:25:49 +0530173
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400174 /*
175 * Reserve from the start of the kernel to the end of the kernel
Geert Uytterhoeven8db6f932021-04-29 17:05:00 +0200176 */
177#if defined(CONFIG_64BIT) && defined(CONFIG_STRICT_KERNEL_RWX)
178 /*
179 * Make sure we align the reservation on PMD_SIZE since we will
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400180 * map the kernel in the linear mapping as read-only: we do not want
181 * any allocation to happen between _end and the next pmd aligned page.
182 */
Geert Uytterhoeven8db6f932021-04-29 17:05:00 +0200183 vmlinux_end = (vmlinux_end + PMD_SIZE - 1) & PMD_MASK;
184#endif
185 memblock_reserve(vmlinux_start, vmlinux_end - vmlinux_start);
Anup Pateld90d45d2019-06-07 06:01:29 +0000186
Bin Mengd0e4dae2021-06-27 21:51:17 +0800187
Alexandre Ghiti6d7f91d2021-07-21 09:59:35 +0200188 phys_ram_end = memblock_end_of_DRAM();
Alexandre Ghitidb6b84a2021-06-29 11:13:48 +0200189#ifndef CONFIG_64BIT
Alexandre Ghiti6d7f91d2021-07-21 09:59:35 +0200190#ifndef CONFIG_XIP_KERNEL
191 phys_ram_base = memblock_start_of_DRAM();
192#endif
Atish Patraabb8e862021-01-11 15:45:02 -0800193 /*
194 * memblock allocator is not aware of the fact that last 4K bytes of
195 * the addressable memory can not be mapped because of IS_ERR_VALUE
196 * macro. Make sure that last 4k bytes are not usable by memblock
Alexandre Ghitidb6b84a2021-06-29 11:13:48 +0200197 * if end of dram is equal to maximum addressable memory. For 64-bit
198 * kernel, this problem can't happen here as the end of the virtual
199 * address space is occupied by the kernel mapping then this check must
200 * be done in create_kernel_page_table.
Atish Patraabb8e862021-01-11 15:45:02 -0800201 */
Alexandre Ghitidb6b84a2021-06-29 11:13:48 +0200202 max_mapped_addr = __pa(~(ulong)0);
Alexandre Ghiti6d7f91d2021-07-21 09:59:35 +0200203 if (max_mapped_addr == (phys_ram_end - 1))
Atish Patraabb8e862021-01-11 15:45:02 -0800204 memblock_set_current_limit(max_mapped_addr - 4096);
Alexandre Ghitidb6b84a2021-06-29 11:13:48 +0200205#endif
Atish Patraabb8e862021-01-11 15:45:02 -0800206
Alexandre Ghiti6d7f91d2021-07-21 09:59:35 +0200207 min_low_pfn = PFN_UP(phys_ram_base);
208 max_low_pfn = max_pfn = PFN_DOWN(phys_ram_end);
Kefeng Wangf6e5aed2021-02-25 14:54:17 +0800209
Kefeng Wangda815582020-10-31 14:01:12 +0800210 dma32_phys_limit = min(4UL * SZ_1G, (unsigned long)PFN_PHYS(max_low_pfn));
Guo Ren336e8eb2021-01-21 14:31:17 +0800211 set_max_mapnr(max_low_pfn - ARCH_PFN_OFFSET);
Anup Patel0651c262019-02-21 11:25:49 +0530212
Kefeng Wangaec33b52021-01-15 13:46:06 +0800213 reserve_initrd_mem();
Albert Ou922b0372019-09-27 16:14:18 -0700214 /*
Vitaly Woolf105aa92021-01-16 01:49:48 +0200215 * If DTB is built in, no need to reserve its memblock.
216 * Otherwise, do reserve it but avoid using
217 * early_init_fdt_reserve_self() since __pa() does
Albert Ou922b0372019-09-27 16:14:18 -0700218 * not work for DTB pointers that are fixmap addresses
219 */
Vitaly Woolf105aa92021-01-16 01:49:48 +0200220 if (!IS_ENABLED(CONFIG_BUILTIN_DTB))
221 memblock_reserve(dtb_early_pa, fdt_totalsize(dtb_early_va));
Albert Ou922b0372019-09-27 16:14:18 -0700222
Anup Patel0651c262019-02-21 11:25:49 +0530223 early_init_fdt_scan_reserved_mem();
Kefeng Wangda815582020-10-31 14:01:12 +0800224 dma_contiguous_reserve(dma32_phys_limit);
Anup Patel0651c262019-02-21 11:25:49 +0530225 memblock_allow_resize();
Anup Patel0651c262019-02-21 11:25:49 +0530226}
Anup Patel6f1e9e92019-02-13 16:38:36 +0530227
Christoph Hellwig6bd33e12019-10-28 13:10:41 +0100228#ifdef CONFIG_MMU
Jisheng Zhang01062352021-05-16 21:15:56 +0800229static struct pt_alloc_ops _pt_ops __initdata;
Vitaly Wool44c92252021-04-13 02:35:14 -0400230
231#ifdef CONFIG_XIP_KERNEL
232#define pt_ops (*(struct pt_alloc_ops *)XIP_FIXUP(&_pt_ops))
233#else
234#define pt_ops _pt_ops
235#endif
Atish Patrae8dcb612020-09-17 15:37:12 -0700236
Jisheng Zhangde31ea42021-03-30 02:22:51 +0800237unsigned long pfn_base __ro_after_init;
Anup Patel387181d2019-03-26 08:03:47 +0000238EXPORT_SYMBOL(pfn_base);
239
Anup Patel6f1e9e92019-02-13 16:38:36 +0530240pgd_t swapper_pg_dir[PTRS_PER_PGD] __page_aligned_bss;
Anup Patel671f9a32019-06-28 13:36:21 -0700241pgd_t trampoline_pg_dir[PTRS_PER_PGD] __page_aligned_bss;
Jisheng Zhang01062352021-05-16 21:15:56 +0800242static pte_t fixmap_pte[PTRS_PER_PTE] __page_aligned_bss;
Anup Patel671f9a32019-06-28 13:36:21 -0700243
Anup Patel671f9a32019-06-28 13:36:21 -0700244pgd_t early_pg_dir[PTRS_PER_PGD] __initdata __aligned(PAGE_SIZE);
Anup Patelf2c17aa2019-01-07 20:57:01 +0530245
Vitaly Wool44c92252021-04-13 02:35:14 -0400246#ifdef CONFIG_XIP_KERNEL
247#define trampoline_pg_dir ((pgd_t *)XIP_FIXUP(trampoline_pg_dir))
248#define fixmap_pte ((pte_t *)XIP_FIXUP(fixmap_pte))
249#define early_pg_dir ((pgd_t *)XIP_FIXUP(early_pg_dir))
250#endif /* CONFIG_XIP_KERNEL */
251
Anup Patelf2c17aa2019-01-07 20:57:01 +0530252void __set_fixmap(enum fixed_addresses idx, phys_addr_t phys, pgprot_t prot)
253{
254 unsigned long addr = __fix_to_virt(idx);
255 pte_t *ptep;
256
257 BUG_ON(idx <= FIX_HOLE || idx >= __end_of_fixed_addresses);
258
259 ptep = &fixmap_pte[pte_index(addr)];
260
Greentime Hu21190b72020-08-04 11:02:05 +0800261 if (pgprot_val(prot))
Anup Patelf2c17aa2019-01-07 20:57:01 +0530262 set_pte(ptep, pfn_pte(phys >> PAGE_SHIFT, prot));
Greentime Hu21190b72020-08-04 11:02:05 +0800263 else
Anup Patelf2c17aa2019-01-07 20:57:01 +0530264 pte_clear(&init_mm, addr, ptep);
Greentime Hu21190b72020-08-04 11:02:05 +0800265 local_flush_tlb_page(addr);
Anup Patelf2c17aa2019-01-07 20:57:01 +0530266}
267
Atish Patrae8dcb612020-09-17 15:37:12 -0700268static inline pte_t *__init get_pte_virt_early(phys_addr_t pa)
Anup Patel671f9a32019-06-28 13:36:21 -0700269{
Atish Patrae8dcb612020-09-17 15:37:12 -0700270 return (pte_t *)((uintptr_t)pa);
Anup Patel671f9a32019-06-28 13:36:21 -0700271}
272
Atish Patrae8dcb612020-09-17 15:37:12 -0700273static inline pte_t *__init get_pte_virt_fixmap(phys_addr_t pa)
274{
275 clear_fixmap(FIX_PTE);
276 return (pte_t *)set_fixmap_offset(FIX_PTE, pa);
277}
278
Jisheng Zhang01062352021-05-16 21:15:56 +0800279static inline pte_t *__init get_pte_virt_late(phys_addr_t pa)
Atish Patrae8dcb612020-09-17 15:37:12 -0700280{
281 return (pte_t *) __va(pa);
282}
283
284static inline phys_addr_t __init alloc_pte_early(uintptr_t va)
Anup Patel671f9a32019-06-28 13:36:21 -0700285{
286 /*
287 * We only create PMD or PGD early mappings so we
288 * should never reach here with MMU disabled.
289 */
Atish Patrae8dcb612020-09-17 15:37:12 -0700290 BUG();
291}
Anup Patel671f9a32019-06-28 13:36:21 -0700292
Atish Patrae8dcb612020-09-17 15:37:12 -0700293static inline phys_addr_t __init alloc_pte_fixmap(uintptr_t va)
294{
Anup Patel671f9a32019-06-28 13:36:21 -0700295 return memblock_phys_alloc(PAGE_SIZE, PAGE_SIZE);
296}
297
Jisheng Zhang01062352021-05-16 21:15:56 +0800298static phys_addr_t __init alloc_pte_late(uintptr_t va)
Atish Patrae8dcb612020-09-17 15:37:12 -0700299{
300 unsigned long vaddr;
301
302 vaddr = __get_free_page(GFP_KERNEL);
zhouchuangaoe75e6bf2021-03-30 06:56:26 -0700303 BUG_ON(!vaddr || !pgtable_pte_page_ctor(virt_to_page(vaddr)));
304
Atish Patrae8dcb612020-09-17 15:37:12 -0700305 return __pa(vaddr);
306}
307
Anup Patel671f9a32019-06-28 13:36:21 -0700308static void __init create_pte_mapping(pte_t *ptep,
309 uintptr_t va, phys_addr_t pa,
310 phys_addr_t sz, pgprot_t prot)
311{
Mike Rapoport974b9b22020-06-08 21:33:10 -0700312 uintptr_t pte_idx = pte_index(va);
Anup Patel671f9a32019-06-28 13:36:21 -0700313
314 BUG_ON(sz != PAGE_SIZE);
315
Mike Rapoport974b9b22020-06-08 21:33:10 -0700316 if (pte_none(ptep[pte_idx]))
317 ptep[pte_idx] = pfn_pte(PFN_DOWN(pa), prot);
Anup Patel671f9a32019-06-28 13:36:21 -0700318}
319
320#ifndef __PAGETABLE_PMD_FOLDED
321
Jisheng Zhang01062352021-05-16 21:15:56 +0800322static pmd_t trampoline_pmd[PTRS_PER_PMD] __page_aligned_bss;
323static pmd_t fixmap_pmd[PTRS_PER_PMD] __page_aligned_bss;
324static pmd_t early_pmd[PTRS_PER_PMD] __initdata __aligned(PAGE_SIZE);
325static pmd_t early_dtb_pmd[PTRS_PER_PMD] __initdata __aligned(PAGE_SIZE);
Anup Patel671f9a32019-06-28 13:36:21 -0700326
Vitaly Wool44c92252021-04-13 02:35:14 -0400327#ifdef CONFIG_XIP_KERNEL
328#define trampoline_pmd ((pmd_t *)XIP_FIXUP(trampoline_pmd))
329#define fixmap_pmd ((pmd_t *)XIP_FIXUP(fixmap_pmd))
330#define early_pmd ((pmd_t *)XIP_FIXUP(early_pmd))
331#endif /* CONFIG_XIP_KERNEL */
332
Atish Patrae8dcb612020-09-17 15:37:12 -0700333static pmd_t *__init get_pmd_virt_early(phys_addr_t pa)
Anup Patel671f9a32019-06-28 13:36:21 -0700334{
Atish Patrae8dcb612020-09-17 15:37:12 -0700335 /* Before MMU is enabled */
336 return (pmd_t *)((uintptr_t)pa);
Anup Patel671f9a32019-06-28 13:36:21 -0700337}
338
Atish Patrae8dcb612020-09-17 15:37:12 -0700339static pmd_t *__init get_pmd_virt_fixmap(phys_addr_t pa)
340{
341 clear_fixmap(FIX_PMD);
342 return (pmd_t *)set_fixmap_offset(FIX_PMD, pa);
343}
344
Jisheng Zhang01062352021-05-16 21:15:56 +0800345static pmd_t *__init get_pmd_virt_late(phys_addr_t pa)
Atish Patrae8dcb612020-09-17 15:37:12 -0700346{
347 return (pmd_t *) __va(pa);
348}
349
350static phys_addr_t __init alloc_pmd_early(uintptr_t va)
Anup Patel671f9a32019-06-28 13:36:21 -0700351{
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200352 BUG_ON((va - kernel_map.virt_addr) >> PGDIR_SHIFT);
Anup Patel671f9a32019-06-28 13:36:21 -0700353
Alexandre Ghiti0f02de42021-02-21 09:22:33 -0500354 return (uintptr_t)early_pmd;
Anup Patel671f9a32019-06-28 13:36:21 -0700355}
356
Atish Patrae8dcb612020-09-17 15:37:12 -0700357static phys_addr_t __init alloc_pmd_fixmap(uintptr_t va)
358{
359 return memblock_phys_alloc(PAGE_SIZE, PAGE_SIZE);
360}
361
Jisheng Zhang01062352021-05-16 21:15:56 +0800362static phys_addr_t __init alloc_pmd_late(uintptr_t va)
Atish Patrae8dcb612020-09-17 15:37:12 -0700363{
364 unsigned long vaddr;
365
366 vaddr = __get_free_page(GFP_KERNEL);
367 BUG_ON(!vaddr);
368 return __pa(vaddr);
369}
370
Anup Patel671f9a32019-06-28 13:36:21 -0700371static void __init create_pmd_mapping(pmd_t *pmdp,
372 uintptr_t va, phys_addr_t pa,
373 phys_addr_t sz, pgprot_t prot)
374{
375 pte_t *ptep;
376 phys_addr_t pte_phys;
Mike Rapoport974b9b22020-06-08 21:33:10 -0700377 uintptr_t pmd_idx = pmd_index(va);
Anup Patel671f9a32019-06-28 13:36:21 -0700378
379 if (sz == PMD_SIZE) {
Mike Rapoport974b9b22020-06-08 21:33:10 -0700380 if (pmd_none(pmdp[pmd_idx]))
381 pmdp[pmd_idx] = pfn_pmd(PFN_DOWN(pa), prot);
Anup Patel671f9a32019-06-28 13:36:21 -0700382 return;
383 }
384
Mike Rapoport974b9b22020-06-08 21:33:10 -0700385 if (pmd_none(pmdp[pmd_idx])) {
Atish Patrae8dcb612020-09-17 15:37:12 -0700386 pte_phys = pt_ops.alloc_pte(va);
Mike Rapoport974b9b22020-06-08 21:33:10 -0700387 pmdp[pmd_idx] = pfn_pmd(PFN_DOWN(pte_phys), PAGE_TABLE);
Atish Patrae8dcb612020-09-17 15:37:12 -0700388 ptep = pt_ops.get_pte_virt(pte_phys);
Anup Patel671f9a32019-06-28 13:36:21 -0700389 memset(ptep, 0, PAGE_SIZE);
390 } else {
Mike Rapoport974b9b22020-06-08 21:33:10 -0700391 pte_phys = PFN_PHYS(_pmd_pfn(pmdp[pmd_idx]));
Atish Patrae8dcb612020-09-17 15:37:12 -0700392 ptep = pt_ops.get_pte_virt(pte_phys);
Anup Patel671f9a32019-06-28 13:36:21 -0700393 }
394
395 create_pte_mapping(ptep, va, pa, sz, prot);
396}
397
398#define pgd_next_t pmd_t
Atish Patrae8dcb612020-09-17 15:37:12 -0700399#define alloc_pgd_next(__va) pt_ops.alloc_pmd(__va)
400#define get_pgd_next_virt(__pa) pt_ops.get_pmd_virt(__pa)
Anup Patel671f9a32019-06-28 13:36:21 -0700401#define create_pgd_next_mapping(__nextp, __va, __pa, __sz, __prot) \
402 create_pmd_mapping(__nextp, __va, __pa, __sz, __prot)
Anup Patel671f9a32019-06-28 13:36:21 -0700403#define fixmap_pgd_next fixmap_pmd
404#else
405#define pgd_next_t pte_t
Atish Patrae8dcb612020-09-17 15:37:12 -0700406#define alloc_pgd_next(__va) pt_ops.alloc_pte(__va)
407#define get_pgd_next_virt(__pa) pt_ops.get_pte_virt(__pa)
Anup Patel671f9a32019-06-28 13:36:21 -0700408#define create_pgd_next_mapping(__nextp, __va, __pa, __sz, __prot) \
409 create_pte_mapping(__nextp, __va, __pa, __sz, __prot)
Anup Patel671f9a32019-06-28 13:36:21 -0700410#define fixmap_pgd_next fixmap_pte
411#endif
412
Atish Patrab91540d2020-09-17 15:37:15 -0700413void __init create_pgd_mapping(pgd_t *pgdp,
Anup Patel671f9a32019-06-28 13:36:21 -0700414 uintptr_t va, phys_addr_t pa,
415 phys_addr_t sz, pgprot_t prot)
416{
417 pgd_next_t *nextp;
418 phys_addr_t next_phys;
Mike Rapoport974b9b22020-06-08 21:33:10 -0700419 uintptr_t pgd_idx = pgd_index(va);
Anup Patel671f9a32019-06-28 13:36:21 -0700420
421 if (sz == PGDIR_SIZE) {
Mike Rapoport974b9b22020-06-08 21:33:10 -0700422 if (pgd_val(pgdp[pgd_idx]) == 0)
423 pgdp[pgd_idx] = pfn_pgd(PFN_DOWN(pa), prot);
Anup Patel671f9a32019-06-28 13:36:21 -0700424 return;
425 }
426
Mike Rapoport974b9b22020-06-08 21:33:10 -0700427 if (pgd_val(pgdp[pgd_idx]) == 0) {
Anup Patel671f9a32019-06-28 13:36:21 -0700428 next_phys = alloc_pgd_next(va);
Mike Rapoport974b9b22020-06-08 21:33:10 -0700429 pgdp[pgd_idx] = pfn_pgd(PFN_DOWN(next_phys), PAGE_TABLE);
Anup Patel671f9a32019-06-28 13:36:21 -0700430 nextp = get_pgd_next_virt(next_phys);
431 memset(nextp, 0, PAGE_SIZE);
432 } else {
Mike Rapoport974b9b22020-06-08 21:33:10 -0700433 next_phys = PFN_PHYS(_pgd_pfn(pgdp[pgd_idx]));
Anup Patel671f9a32019-06-28 13:36:21 -0700434 nextp = get_pgd_next_virt(next_phys);
435 }
436
437 create_pgd_next_mapping(nextp, va, pa, sz, prot);
438}
439
440static uintptr_t __init best_map_size(phys_addr_t base, phys_addr_t size)
441{
Zong Li0fdc6362019-11-08 01:00:40 -0800442 /* Upgrade to PMD_SIZE mappings whenever possible */
443 if ((base & (PMD_SIZE - 1)) || (size & (PMD_SIZE - 1)))
444 return PAGE_SIZE;
Anup Patel671f9a32019-06-28 13:36:21 -0700445
Zong Li0fdc6362019-11-08 01:00:40 -0800446 return PMD_SIZE;
Anup Patel671f9a32019-06-28 13:36:21 -0700447}
448
Vitaly Wool44c92252021-04-13 02:35:14 -0400449#ifdef CONFIG_XIP_KERNEL
450/* called from head.S with MMU off */
451asmlinkage void __init __copy_data(void)
452{
453 void *from = (void *)(&_sdata);
454 void *end = (void *)(&_end);
455 void *to = (void *)CONFIG_PHYS_RAM_BASE;
456 size_t sz = (size_t)(end - from + 1);
457
458 memcpy(to, from, sz);
459}
460#endif
461
Alexandre Ghitie5c35fa02021-06-24 14:00:41 +0200462#ifdef CONFIG_STRICT_KERNEL_RWX
463static __init pgprot_t pgprot_from_va(uintptr_t va)
464{
465 if (is_va_kernel_text(va))
466 return PAGE_KERNEL_READ_EXEC;
467
468 /*
469 * In 64-bit kernel, the kernel mapping is outside the linear mapping so
470 * we must protect its linear mapping alias from being executed and
471 * written.
472 * And rodata section is marked readonly in mark_rodata_ro.
473 */
474 if (IS_ENABLED(CONFIG_64BIT) && is_va_kernel_lm_alias_text(va))
475 return PAGE_KERNEL_READ;
476
477 return PAGE_KERNEL;
478}
479
480void mark_rodata_ro(void)
481{
482 set_kernel_memory(__start_rodata, _data, set_memory_ro);
483 if (IS_ENABLED(CONFIG_64BIT))
484 set_kernel_memory(lm_alias(__start_rodata), lm_alias(_data),
485 set_memory_ro);
486
487 debug_checkwx();
488}
489#else
490static __init pgprot_t pgprot_from_va(uintptr_t va)
491{
492 if (IS_ENABLED(CONFIG_64BIT) && !is_kernel_mapping(va))
493 return PAGE_KERNEL;
494
495 return PAGE_KERNEL_EXEC;
496}
497#endif /* CONFIG_STRICT_KERNEL_RWX */
498
Anup Patel387181d2019-03-26 08:03:47 +0000499/*
500 * setup_vm() is called from head.S with MMU-off.
501 *
502 * Following requirements should be honoured for setup_vm() to work
503 * correctly:
504 * 1) It should use PC-relative addressing for accessing kernel symbols.
505 * To achieve this we always use GCC cmodel=medany.
506 * 2) The compiler instrumentation for FTRACE will not work for setup_vm()
507 * so disable compiler instrumentation when FTRACE is enabled.
508 *
509 * Currently, the above requirements are honoured by using custom CFLAGS
510 * for init.o in mm/Makefile.
511 */
512
513#ifndef __riscv_cmodel_medany
Paul Walmsley6a527b62019-10-17 14:45:58 -0700514#error "setup_vm() is called from head.S before relocate so it should not use absolute addressing."
Anup Patel387181d2019-03-26 08:03:47 +0000515#endif
516
Vitaly Wool44c92252021-04-13 02:35:14 -0400517#ifdef CONFIG_XIP_KERNEL
Alexandre Ghitie5c35fa02021-06-24 14:00:41 +0200518static void __init create_kernel_page_table(pgd_t *pgdir, uintptr_t map_size,
519 __always_unused bool early)
Vitaly Wool44c92252021-04-13 02:35:14 -0400520{
521 uintptr_t va, end_va;
522
523 /* Map the flash resident part */
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200524 end_va = kernel_map.virt_addr + kernel_map.xiprom_sz;
525 for (va = kernel_map.virt_addr; va < end_va; va += map_size)
Vitaly Wool44c92252021-04-13 02:35:14 -0400526 create_pgd_mapping(pgdir, va,
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200527 kernel_map.xiprom + (va - kernel_map.virt_addr),
Vitaly Wool44c92252021-04-13 02:35:14 -0400528 map_size, PAGE_KERNEL_EXEC);
529
530 /* Map the data in RAM */
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200531 end_va = kernel_map.virt_addr + XIP_OFFSET + kernel_map.size;
532 for (va = kernel_map.virt_addr + XIP_OFFSET; va < end_va; va += map_size)
Vitaly Wool44c92252021-04-13 02:35:14 -0400533 create_pgd_mapping(pgdir, va,
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200534 kernel_map.phys_addr + (va - (kernel_map.virt_addr + XIP_OFFSET)),
Vitaly Wool44c92252021-04-13 02:35:14 -0400535 map_size, PAGE_KERNEL);
536}
537#else
Alexandre Ghitie5c35fa02021-06-24 14:00:41 +0200538static void __init create_kernel_page_table(pgd_t *pgdir, uintptr_t map_size,
539 bool early)
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400540{
541 uintptr_t va, end_va;
542
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200543 end_va = kernel_map.virt_addr + kernel_map.size;
544 for (va = kernel_map.virt_addr; va < end_va; va += map_size)
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400545 create_pgd_mapping(pgdir, va,
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200546 kernel_map.phys_addr + (va - kernel_map.virt_addr),
Alexandre Ghitie5c35fa02021-06-24 14:00:41 +0200547 map_size,
548 early ?
549 PAGE_KERNEL_EXEC : pgprot_from_va(va));
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400550}
Vitaly Wool44c92252021-04-13 02:35:14 -0400551#endif
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400552
Anup Patel671f9a32019-06-28 13:36:21 -0700553asmlinkage void __init setup_vm(uintptr_t dtb_pa)
Anup Patel6f1e9e92019-02-13 16:38:36 +0530554{
Vitaly Wool44c92252021-04-13 02:35:14 -0400555 uintptr_t __maybe_unused pa;
Alexandre Ghiti0f02de42021-02-21 09:22:33 -0500556 uintptr_t map_size;
Atish Patra6262f662020-09-17 15:37:11 -0700557#ifndef __PAGETABLE_PMD_FOLDED
558 pmd_t fix_bmap_spmd, fix_bmap_epmd;
559#endif
Anup Patel6f1e9e92019-02-13 16:38:36 +0530560
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200561 kernel_map.virt_addr = KERNEL_LINK_ADDR;
562
Vitaly Wool44c92252021-04-13 02:35:14 -0400563#ifdef CONFIG_XIP_KERNEL
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200564 kernel_map.xiprom = (uintptr_t)CONFIG_XIP_PHYS_ADDR;
565 kernel_map.xiprom_sz = (uintptr_t)(&_exiprom) - (uintptr_t)(&_xiprom);
Vitaly Wool44c92252021-04-13 02:35:14 -0400566
Alexandre Ghiti6d7f91d2021-07-21 09:59:35 +0200567 phys_ram_base = CONFIG_PHYS_RAM_BASE;
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200568 kernel_map.phys_addr = (uintptr_t)CONFIG_PHYS_RAM_BASE;
569 kernel_map.size = (uintptr_t)(&_end) - (uintptr_t)(&_sdata);
Vitaly Wool44c92252021-04-13 02:35:14 -0400570
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200571 kernel_map.va_kernel_xip_pa_offset = kernel_map.virt_addr - kernel_map.xiprom;
Vitaly Wool44c92252021-04-13 02:35:14 -0400572#else
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200573 kernel_map.phys_addr = (uintptr_t)(&_start);
574 kernel_map.size = (uintptr_t)(&_end) - kernel_map.phys_addr;
Vitaly Wool44c92252021-04-13 02:35:14 -0400575#endif
Anup Patel6f1e9e92019-02-13 16:38:36 +0530576
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200577 kernel_map.va_pa_offset = PAGE_OFFSET - kernel_map.phys_addr;
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400578#ifdef CONFIG_64BIT
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200579 kernel_map.va_kernel_pa_offset = kernel_map.virt_addr - kernel_map.phys_addr;
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400580#endif
581
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200582 pfn_base = PFN_DOWN(kernel_map.phys_addr);
Anup Patel671f9a32019-06-28 13:36:21 -0700583
584 /*
585 * Enforce boot alignment requirements of RV32 and
586 * RV64 by only allowing PMD or PGD mappings.
587 */
Alexandre Ghiti0f02de42021-02-21 09:22:33 -0500588 map_size = PMD_SIZE;
Anup Patel6f1e9e92019-02-13 16:38:36 +0530589
590 /* Sanity check alignment and size */
591 BUG_ON((PAGE_OFFSET % PGDIR_SIZE) != 0);
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200592 BUG_ON((kernel_map.phys_addr % map_size) != 0);
Anup Patel671f9a32019-06-28 13:36:21 -0700593
Alexandre Ghitidb6b84a2021-06-29 11:13:48 +0200594#ifdef CONFIG_64BIT
595 /*
596 * The last 4K bytes of the addressable memory can not be mapped because
597 * of IS_ERR_VALUE macro.
598 */
599 BUG_ON((kernel_map.virt_addr + kernel_map.size) > ADDRESS_SPACE_END - SZ_4K);
600#endif
601
Atish Patrae8dcb612020-09-17 15:37:12 -0700602 pt_ops.alloc_pte = alloc_pte_early;
603 pt_ops.get_pte_virt = get_pte_virt_early;
604#ifndef __PAGETABLE_PMD_FOLDED
605 pt_ops.alloc_pmd = alloc_pmd_early;
606 pt_ops.get_pmd_virt = get_pmd_virt_early;
607#endif
Anup Patel671f9a32019-06-28 13:36:21 -0700608 /* Setup early PGD for fixmap */
609 create_pgd_mapping(early_pg_dir, FIXADDR_START,
610 (uintptr_t)fixmap_pgd_next, PGDIR_SIZE, PAGE_TABLE);
Anup Patel6f1e9e92019-02-13 16:38:36 +0530611
612#ifndef __PAGETABLE_PMD_FOLDED
Anup Patel671f9a32019-06-28 13:36:21 -0700613 /* Setup fixmap PMD */
614 create_pmd_mapping(fixmap_pmd, FIXADDR_START,
615 (uintptr_t)fixmap_pte, PMD_SIZE, PAGE_TABLE);
616 /* Setup trampoline PGD and PMD */
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200617 create_pgd_mapping(trampoline_pg_dir, kernel_map.virt_addr,
Anup Patel671f9a32019-06-28 13:36:21 -0700618 (uintptr_t)trampoline_pmd, PGDIR_SIZE, PAGE_TABLE);
Vitaly Wool44c92252021-04-13 02:35:14 -0400619#ifdef CONFIG_XIP_KERNEL
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200620 create_pmd_mapping(trampoline_pmd, kernel_map.virt_addr,
621 kernel_map.xiprom, PMD_SIZE, PAGE_KERNEL_EXEC);
Vitaly Wool44c92252021-04-13 02:35:14 -0400622#else
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200623 create_pmd_mapping(trampoline_pmd, kernel_map.virt_addr,
624 kernel_map.phys_addr, PMD_SIZE, PAGE_KERNEL_EXEC);
Vitaly Wool44c92252021-04-13 02:35:14 -0400625#endif
Anup Patel6f1e9e92019-02-13 16:38:36 +0530626#else
Anup Patel671f9a32019-06-28 13:36:21 -0700627 /* Setup trampoline PGD */
Alexandre Ghiti658e2c52021-06-17 15:53:07 +0200628 create_pgd_mapping(trampoline_pg_dir, kernel_map.virt_addr,
629 kernel_map.phys_addr, PGDIR_SIZE, PAGE_KERNEL_EXEC);
Anup Patel671f9a32019-06-28 13:36:21 -0700630#endif
Anup Patel6f1e9e92019-02-13 16:38:36 +0530631
Anup Patel671f9a32019-06-28 13:36:21 -0700632 /*
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400633 * Setup early PGD covering entire kernel which will allow
Anup Patel671f9a32019-06-28 13:36:21 -0700634 * us to reach paging_init(). We map all memory banks later
635 * in setup_vm_final() below.
636 */
Alexandre Ghitie5c35fa02021-06-24 14:00:41 +0200637 create_kernel_page_table(early_pg_dir, map_size, true);
Anup Patelf2c17aa2019-01-07 20:57:01 +0530638
Anup Patel1074dd42020-11-04 12:07:13 +0530639#ifndef __PAGETABLE_PMD_FOLDED
640 /* Setup early PMD for DTB */
641 create_pgd_mapping(early_pg_dir, DTB_EARLY_BASE_VA,
642 (uintptr_t)early_dtb_pmd, PGDIR_SIZE, PAGE_TABLE);
Vitaly Woolf105aa92021-01-16 01:49:48 +0200643#ifndef CONFIG_BUILTIN_DTB
Anup Patel1074dd42020-11-04 12:07:13 +0530644 /* Create two consecutive PMD mappings for FDT early scan */
645 pa = dtb_pa & ~(PMD_SIZE - 1);
646 create_pmd_mapping(early_dtb_pmd, DTB_EARLY_BASE_VA,
647 pa, PMD_SIZE, PAGE_KERNEL);
648 create_pmd_mapping(early_dtb_pmd, DTB_EARLY_BASE_VA + PMD_SIZE,
649 pa + PMD_SIZE, PMD_SIZE, PAGE_KERNEL);
650 dtb_early_va = (void *)DTB_EARLY_BASE_VA + (dtb_pa & (PMD_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
653 /*
654 * __va can't be used since it would return a linear mapping address
655 * whereas dtb_early_va will be used before setup_vm_final installs
656 * the linear mapping.
657 */
Vitaly Wool44c92252021-04-13 02:35:14 -0400658 dtb_early_va = kernel_mapping_pa_to_va(XIP_FIXUP(dtb_pa));
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400659#else
Vitaly Woolf105aa92021-01-16 01:49:48 +0200660 dtb_early_va = __va(dtb_pa);
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400661#endif /* CONFIG_64BIT */
Vitaly Woolf105aa92021-01-16 01:49:48 +0200662#endif /* CONFIG_BUILTIN_DTB */
Anup Patel1074dd42020-11-04 12:07:13 +0530663#else
Vitaly Woolf105aa92021-01-16 01:49:48 +0200664#ifndef CONFIG_BUILTIN_DTB
Anup Patel8f3a2b42020-09-17 15:37:10 -0700665 /* Create two consecutive PGD mappings for FDT early scan */
666 pa = dtb_pa & ~(PGDIR_SIZE - 1);
667 create_pgd_mapping(early_pg_dir, DTB_EARLY_BASE_VA,
668 pa, PGDIR_SIZE, PAGE_KERNEL);
669 create_pgd_mapping(early_pg_dir, DTB_EARLY_BASE_VA + PGDIR_SIZE,
670 pa + PGDIR_SIZE, PGDIR_SIZE, PAGE_KERNEL);
671 dtb_early_va = (void *)DTB_EARLY_BASE_VA + (dtb_pa & (PGDIR_SIZE - 1));
Vitaly Woolf105aa92021-01-16 01:49:48 +0200672#else /* CONFIG_BUILTIN_DTB */
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400673#ifdef CONFIG_64BIT
Vitaly Wool44c92252021-04-13 02:35:14 -0400674 dtb_early_va = kernel_mapping_pa_to_va(XIP_FIXUP(dtb_pa));
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400675#else
Vitaly Woolf105aa92021-01-16 01:49:48 +0200676 dtb_early_va = __va(dtb_pa);
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400677#endif /* CONFIG_64BIT */
Vitaly Woolf105aa92021-01-16 01:49:48 +0200678#endif /* CONFIG_BUILTIN_DTB */
Anup Patel1074dd42020-11-04 12:07:13 +0530679#endif
Albert Ou922b0372019-09-27 16:14:18 -0700680 dtb_early_pa = dtb_pa;
Atish Patra6262f662020-09-17 15:37:11 -0700681
682 /*
683 * Bootime fixmap only can handle PMD_SIZE mapping. Thus, boot-ioremap
684 * range can not span multiple pmds.
685 */
686 BUILD_BUG_ON((__fix_to_virt(FIX_BTMAP_BEGIN) >> PMD_SHIFT)
687 != (__fix_to_virt(FIX_BTMAP_END) >> PMD_SHIFT));
688
689#ifndef __PAGETABLE_PMD_FOLDED
690 /*
691 * Early ioremap fixmap is already created as it lies within first 2MB
692 * of fixmap region. We always map PMD_SIZE. Thus, both FIX_BTMAP_END
693 * FIX_BTMAP_BEGIN should lie in the same pmd. Verify that and warn
694 * the user if not.
695 */
696 fix_bmap_spmd = fixmap_pmd[pmd_index(__fix_to_virt(FIX_BTMAP_BEGIN))];
697 fix_bmap_epmd = fixmap_pmd[pmd_index(__fix_to_virt(FIX_BTMAP_END))];
698 if (pmd_val(fix_bmap_spmd) != pmd_val(fix_bmap_epmd)) {
699 WARN_ON(1);
700 pr_warn("fixmap btmap start [%08lx] != end [%08lx]\n",
701 pmd_val(fix_bmap_spmd), pmd_val(fix_bmap_epmd));
702 pr_warn("fix_to_virt(FIX_BTMAP_BEGIN): %08lx\n",
703 fix_to_virt(FIX_BTMAP_BEGIN));
704 pr_warn("fix_to_virt(FIX_BTMAP_END): %08lx\n",
705 fix_to_virt(FIX_BTMAP_END));
706
707 pr_warn("FIX_BTMAP_END: %d\n", FIX_BTMAP_END);
708 pr_warn("FIX_BTMAP_BEGIN: %d\n", FIX_BTMAP_BEGIN);
709 }
710#endif
Anup Patel671f9a32019-06-28 13:36:21 -0700711}
712
713static void __init setup_vm_final(void)
714{
715 uintptr_t va, map_size;
716 phys_addr_t pa, start, end;
Mike Rapoportb10d6bc2020-10-13 16:58:08 -0700717 u64 i;
Anup Patel671f9a32019-06-28 13:36:21 -0700718
Atish Patrae8dcb612020-09-17 15:37:12 -0700719 /**
720 * MMU is enabled at this point. But page table setup is not complete yet.
721 * fixmap page table alloc functions should be used at this point
722 */
723 pt_ops.alloc_pte = alloc_pte_fixmap;
724 pt_ops.get_pte_virt = get_pte_virt_fixmap;
725#ifndef __PAGETABLE_PMD_FOLDED
726 pt_ops.alloc_pmd = alloc_pmd_fixmap;
727 pt_ops.get_pmd_virt = get_pmd_virt_fixmap;
728#endif
Anup Patel671f9a32019-06-28 13:36:21 -0700729 /* Setup swapper PGD for fixmap */
730 create_pgd_mapping(swapper_pg_dir, FIXADDR_START,
Zong Liac51e002020-01-02 11:12:40 +0800731 __pa_symbol(fixmap_pgd_next),
Anup Patel671f9a32019-06-28 13:36:21 -0700732 PGDIR_SIZE, PAGE_TABLE);
733
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400734 /* Map all memory banks in the linear mapping */
Mike Rapoportb10d6bc2020-10-13 16:58:08 -0700735 for_each_mem_range(i, &start, &end) {
Anup Patel671f9a32019-06-28 13:36:21 -0700736 if (start >= end)
737 break;
Anup Patel671f9a32019-06-28 13:36:21 -0700738 if (start <= __pa(PAGE_OFFSET) &&
739 __pa(PAGE_OFFSET) < end)
740 start = __pa(PAGE_OFFSET);
Alexandre Ghitic99127c2021-06-29 11:13:47 +0200741 if (end >= __pa(PAGE_OFFSET) + memory_limit)
742 end = __pa(PAGE_OFFSET) + memory_limit;
Anup Patel671f9a32019-06-28 13:36:21 -0700743
744 map_size = best_map_size(start, end - start);
745 for (pa = start; pa < end; pa += map_size) {
746 va = (uintptr_t)__va(pa);
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400747
Alexandre Ghitie5c35fa02021-06-24 14:00:41 +0200748 create_pgd_mapping(swapper_pg_dir, va, pa, map_size,
749 pgprot_from_va(va));
Anup Patel671f9a32019-06-28 13:36:21 -0700750 }
Anup Patel6f1e9e92019-02-13 16:38:36 +0530751 }
Anup Patelf2c17aa2019-01-07 20:57:01 +0530752
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400753#ifdef CONFIG_64BIT
754 /* Map the kernel */
Alexandre Ghitie5c35fa02021-06-24 14:00:41 +0200755 create_kernel_page_table(swapper_pg_dir, PMD_SIZE, false);
Alexandre Ghiti2bfc6cd2021-04-11 12:41:44 -0400756#endif
757
Anup Patel671f9a32019-06-28 13:36:21 -0700758 /* Clear fixmap PTE and PMD mappings */
759 clear_fixmap(FIX_PTE);
760 clear_fixmap(FIX_PMD);
761
762 /* Move to swapper page table */
Zong Liac51e002020-01-02 11:12:40 +0800763 csr_write(CSR_SATP, PFN_DOWN(__pa_symbol(swapper_pg_dir)) | SATP_MODE);
Anup Patel671f9a32019-06-28 13:36:21 -0700764 local_flush_tlb_all();
Atish Patrae8dcb612020-09-17 15:37:12 -0700765
766 /* generic page allocation functions must be used to setup page table */
767 pt_ops.alloc_pte = alloc_pte_late;
768 pt_ops.get_pte_virt = get_pte_virt_late;
769#ifndef __PAGETABLE_PMD_FOLDED
770 pt_ops.alloc_pmd = alloc_pmd_late;
771 pt_ops.get_pmd_virt = get_pmd_virt_late;
772#endif
Anup Patel671f9a32019-06-28 13:36:21 -0700773}
Christoph Hellwig6bd33e12019-10-28 13:10:41 +0100774#else
775asmlinkage void __init setup_vm(uintptr_t dtb_pa)
776{
777 dtb_early_va = (void *)dtb_pa;
Atish Patraa78c6f52020-10-01 12:04:56 -0700778 dtb_early_pa = dtb_pa;
Christoph Hellwig6bd33e12019-10-28 13:10:41 +0100779}
780
781static inline void setup_vm_final(void)
782{
783}
784#endif /* CONFIG_MMU */
Anup Patel671f9a32019-06-28 13:36:21 -0700785
Nick Kossifidise53d2812021-04-19 03:55:38 +0300786#ifdef CONFIG_KEXEC_CORE
787/*
788 * reserve_crashkernel() - reserves memory for crash kernel
789 *
790 * This function reserves memory area given in "crashkernel=" kernel command
791 * line parameter. The memory reserved is used by dump capture kernel when
792 * primary kernel is crashing.
793 */
794static void __init reserve_crashkernel(void)
795{
796 unsigned long long crash_base = 0;
797 unsigned long long crash_size = 0;
798 unsigned long search_start = memblock_start_of_DRAM();
799 unsigned long search_end = memblock_end_of_DRAM();
800
801 int ret = 0;
802
Nick Kossifidis56409752021-04-19 03:55:39 +0300803 /*
804 * Don't reserve a region for a crash kernel on a crash kernel
805 * since it doesn't make much sense and we have limited memory
806 * resources.
807 */
808#ifdef CONFIG_CRASH_DUMP
809 if (is_kdump_kernel()) {
810 pr_info("crashkernel: ignoring reservation request\n");
811 return;
812 }
813#endif
814
Nick Kossifidise53d2812021-04-19 03:55:38 +0300815 ret = parse_crashkernel(boot_command_line, memblock_phys_mem_size(),
816 &crash_size, &crash_base);
817 if (ret || !crash_size)
818 return;
819
820 crash_size = PAGE_ALIGN(crash_size);
821
822 if (crash_base == 0) {
823 /*
824 * Current riscv boot protocol requires 2MB alignment for
825 * RV64 and 4MB alignment for RV32 (hugepage size)
826 */
827 crash_base = memblock_find_in_range(search_start, search_end,
828 crash_size, PMD_SIZE);
829
830 if (crash_base == 0) {
831 pr_warn("crashkernel: couldn't allocate %lldKB\n",
832 crash_size >> 10);
833 return;
834 }
835 } else {
836 /* User specifies base address explicitly. */
837 if (!memblock_is_region_memory(crash_base, crash_size)) {
838 pr_warn("crashkernel: requested region is not memory\n");
839 return;
840 }
841
842 if (memblock_is_region_reserved(crash_base, crash_size)) {
843 pr_warn("crashkernel: requested region is reserved\n");
844 return;
845 }
846
847
848 if (!IS_ALIGNED(crash_base, PMD_SIZE)) {
849 pr_warn("crashkernel: requested region is misaligned\n");
850 return;
851 }
852 }
853 memblock_reserve(crash_base, crash_size);
854
855 pr_info("crashkernel: reserved 0x%016llx - 0x%016llx (%lld MB)\n",
856 crash_base, crash_base + crash_size, crash_size >> 20);
857
858 crashk_res.start = crash_base;
859 crashk_res.end = crash_base + crash_size - 1;
860}
861#endif /* CONFIG_KEXEC_CORE */
862
Nick Kossifidis56409752021-04-19 03:55:39 +0300863#ifdef CONFIG_CRASH_DUMP
864/*
865 * We keep track of the ELF core header of the crashed
866 * kernel with a reserved-memory region with compatible
867 * string "linux,elfcorehdr". Here we register a callback
868 * to populate elfcorehdr_addr/size when this region is
869 * present. Note that this region will be marked as
870 * reserved once we call early_init_fdt_scan_reserved_mem()
871 * later on.
872 */
Jisheng Zhang01062352021-05-16 21:15:56 +0800873static int __init elfcore_hdr_setup(struct reserved_mem *rmem)
Nick Kossifidis56409752021-04-19 03:55:39 +0300874{
875 elfcorehdr_addr = rmem->base;
876 elfcorehdr_size = rmem->size;
877 return 0;
878}
879
880RESERVEDMEM_OF_DECLARE(elfcorehdr, "linux,elfcorehdr", elfcore_hdr_setup);
881#endif
882
Anup Patel671f9a32019-06-28 13:36:21 -0700883void __init paging_init(void)
884{
Kefeng Wangf842f5f2021-05-10 19:42:22 +0800885 setup_bootmem();
Anup Patel671f9a32019-06-28 13:36:21 -0700886 setup_vm_final();
Atish Patracbd34f42020-11-18 16:38:27 -0800887}
888
889void __init misc_mem_init(void)
890{
Kefeng Wangf6e5aed2021-02-25 14:54:17 +0800891 early_memtest(min_low_pfn << PAGE_SHIFT, max_low_pfn << PAGE_SHIFT);
Atish Patra4f0e8ee2020-11-18 16:38:29 -0800892 arch_numa_init();
Atish Patracbd34f42020-11-18 16:38:27 -0800893 sparse_init();
Anup Patel671f9a32019-06-28 13:36:21 -0700894 zone_sizes_init();
Nick Kossifidise53d2812021-04-19 03:55:38 +0300895#ifdef CONFIG_KEXEC_CORE
896 reserve_crashkernel();
897#endif
Atish Patra4f0e8ee2020-11-18 16:38:29 -0800898 memblock_dump_all();
Anup Patel6f1e9e92019-02-13 16:38:36 +0530899}
Logan Gunthorped95f1a52019-08-28 15:40:54 -0600900
Kefeng Wang9fe57d82019-10-23 11:23:02 +0800901#ifdef CONFIG_SPARSEMEM_VMEMMAP
Logan Gunthorped95f1a52019-08-28 15:40:54 -0600902int __meminit vmemmap_populate(unsigned long start, unsigned long end, int node,
903 struct vmem_altmap *altmap)
904{
Anshuman Khandual1d9cfee2020-08-06 23:23:19 -0700905 return vmemmap_populate_basepages(start, end, node, NULL);
Logan Gunthorped95f1a52019-08-28 15:40:54 -0600906}
907#endif