mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 08:14:15 +08:00
eab4002660
This tag contains the patches I'd like to target for 5.7. It has a handful of new features: * Partial support for the Kendryte K210. There are still a few outstanding issues that I have patches for, but I don't actually have a board to test them so they're not included yet. * SBI v0.2 support. * Fixes to support for building with LLVM-based toolchains. The resulting images are known not to boot yet. This builds and boots for me. There is one merge conflict, it's just a Kconfig merge issue. I can publish a resolved branch if you'd like. I don't anticipate a part two, but I'll probably have something early in the RCs to finish up the K210 support. -----BEGIN PGP SIGNATURE----- iQJHBAABCgAxFiEEKzw3R0RoQ7JKlDp6LhMZ81+7GIkFAl6OAAoTHHBhbG1lckBk YWJiZWx0LmNvbQAKCRAuExnzX7sYiUqKEACidkNwwFf10hN6ojnIsBeh0mvZ0QuD qw5Uj0L5rmKdf84IRUGH8A3tyal39BoNz41Eo0mvZoInj542fVMArrqpAIKHN6e+ GMOoHgeZO329zQYMqBX1RN/W9MV80KPKZcROeWkL+AbAmbQBaVRq08Ur1QIg2bHI 84H0LzlCd1xz9k827ypOyz7ix4OYkli7DcUgdiPTK95CjaseALQXvSYA237lcXpB 3g2L+/TDrjtGHn+vy3XWLJISY/BY4ZKfWN0UL4CJHvGuL61tJ+VRXaA3DQcBNd56 7du41GTz9BU6J5wZTVnB5HstebwiXyP8pY34Pp8S4/wWyVdoi5hZ0Jn7sC9oDdnA r/CjawrGCZv6IEt69YA1edo3AoR13gXCbylRovdxVMRYa0OLmcTfFr843svTZzbQ ECSt6te2J2YwtYeLO6AlZeu2gBLW0Mxh5JBmiB8sy9C8tVlD/EFTYrnhEQnjUEVx wV76wfbeYL1be5IS4Tu/d0F5My6miIL+JafUND0bJQ7igp08po/YY4NIg/xyYlM2 Aqie3MuTYlA3/I20N1K2mQkQnjKS4Y5AqNDj5povew2mPUvTGuLhZDZ/asKxdBIf BSq3V74V/Vc+qsh1d5IhUCDVthGYqBoJoBSUjcbItrpgmhLyvhbbSCLeF8ehDPeI Y9074bg5YH79pg== =P1DO -----END PGP SIGNATURE----- Merge tag 'riscv-for-linus-5.7' of git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux Pull RISC-V updates from Palmer Dabbelt: "This contains a handful of new features: - Partial support for the Kendryte K210. There are still a few outstanding issues that I have patches for, but I don't actually have a board to test them so they're not included yet. - SBI v0.2 support. - Fixes to support for building with LLVM-based toolchains. The resulting images are known not to boot yet. I don't anticipate a part two, but I'll probably have something early in the RCs to finish up the K210 support" * tag 'riscv-for-linus-5.7' of git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux: (38 commits) riscv: create a loader.bin boot image for Kendryte SoC riscv: Kendryte K210 default config riscv: Add Kendryte K210 device tree riscv: Select required drivers for Kendryte SOC riscv: Add Kendryte K210 SoC support riscv: Add SOC early init support riscv: Unaligned load/store handling for M_MODE RISC-V: Support cpu hotplug RISC-V: Add supported for ordered booting method using HSM RISC-V: Add SBI HSM extension definitions RISC-V: Export SBI error to linux error mapping function RISC-V: Add cpu_ops and modify default booting method RISC-V: Move relocate and few other functions out of __init RISC-V: Implement new SBI v0.2 extensions RISC-V: Introduce a new config for SBI v0.1 RISC-V: Add SBI v0.2 extension definitions RISC-V: Add basic support for SBI v0.2 RISC-V: Mark existing SBI as 0.1 SBI. riscv: Use macro definition instead of magic number riscv: Add support to dump the kernel page tables ...
551 lines
14 KiB
C
551 lines
14 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Copyright (C) 2012 Regents of the University of California
|
|
* Copyright (C) 2019 Western Digital Corporation or its affiliates.
|
|
*/
|
|
|
|
#include <linux/init.h>
|
|
#include <linux/mm.h>
|
|
#include <linux/memblock.h>
|
|
#include <linux/initrd.h>
|
|
#include <linux/swap.h>
|
|
#include <linux/sizes.h>
|
|
#include <linux/of_fdt.h>
|
|
#include <linux/libfdt.h>
|
|
#include <linux/set_memory.h>
|
|
|
|
#include <asm/fixmap.h>
|
|
#include <asm/tlbflush.h>
|
|
#include <asm/sections.h>
|
|
#include <asm/pgtable.h>
|
|
#include <asm/io.h>
|
|
|
|
#include "../kernel/head.h"
|
|
|
|
unsigned long empty_zero_page[PAGE_SIZE / sizeof(unsigned long)]
|
|
__page_aligned_bss;
|
|
EXPORT_SYMBOL(empty_zero_page);
|
|
|
|
extern char _start[];
|
|
void *dtb_early_va;
|
|
|
|
static void __init zone_sizes_init(void)
|
|
{
|
|
unsigned long max_zone_pfns[MAX_NR_ZONES] = { 0, };
|
|
|
|
#ifdef CONFIG_ZONE_DMA32
|
|
max_zone_pfns[ZONE_DMA32] = PFN_DOWN(min(4UL * SZ_1G,
|
|
(unsigned long) PFN_PHYS(max_low_pfn)));
|
|
#endif
|
|
max_zone_pfns[ZONE_NORMAL] = max_low_pfn;
|
|
|
|
free_area_init_nodes(max_zone_pfns);
|
|
}
|
|
|
|
static void setup_zero_page(void)
|
|
{
|
|
memset((void *)empty_zero_page, 0, PAGE_SIZE);
|
|
}
|
|
|
|
#ifdef CONFIG_DEBUG_VM
|
|
static inline void print_mlk(char *name, unsigned long b, unsigned long t)
|
|
{
|
|
pr_notice("%12s : 0x%08lx - 0x%08lx (%4ld kB)\n", name, b, t,
|
|
(((t) - (b)) >> 10));
|
|
}
|
|
|
|
static inline void print_mlm(char *name, unsigned long b, unsigned long t)
|
|
{
|
|
pr_notice("%12s : 0x%08lx - 0x%08lx (%4ld MB)\n", name, b, t,
|
|
(((t) - (b)) >> 20));
|
|
}
|
|
|
|
static void print_vm_layout(void)
|
|
{
|
|
pr_notice("Virtual kernel memory layout:\n");
|
|
print_mlk("fixmap", (unsigned long)FIXADDR_START,
|
|
(unsigned long)FIXADDR_TOP);
|
|
print_mlm("pci io", (unsigned long)PCI_IO_START,
|
|
(unsigned long)PCI_IO_END);
|
|
print_mlm("vmemmap", (unsigned long)VMEMMAP_START,
|
|
(unsigned long)VMEMMAP_END);
|
|
print_mlm("vmalloc", (unsigned long)VMALLOC_START,
|
|
(unsigned long)VMALLOC_END);
|
|
print_mlm("lowmem", (unsigned long)PAGE_OFFSET,
|
|
(unsigned long)high_memory);
|
|
}
|
|
#else
|
|
static void print_vm_layout(void) { }
|
|
#endif /* CONFIG_DEBUG_VM */
|
|
|
|
void __init mem_init(void)
|
|
{
|
|
#ifdef CONFIG_FLATMEM
|
|
BUG_ON(!mem_map);
|
|
#endif /* CONFIG_FLATMEM */
|
|
|
|
high_memory = (void *)(__va(PFN_PHYS(max_low_pfn)));
|
|
memblock_free_all();
|
|
|
|
mem_init_print_info(NULL);
|
|
print_vm_layout();
|
|
}
|
|
|
|
#ifdef CONFIG_BLK_DEV_INITRD
|
|
static void __init setup_initrd(void)
|
|
{
|
|
unsigned long size;
|
|
|
|
if (initrd_start >= initrd_end) {
|
|
pr_info("initrd not found or empty");
|
|
goto disable;
|
|
}
|
|
if (__pa_symbol(initrd_end) > PFN_PHYS(max_low_pfn)) {
|
|
pr_err("initrd extends beyond end of memory");
|
|
goto disable;
|
|
}
|
|
|
|
size = initrd_end - initrd_start;
|
|
memblock_reserve(__pa_symbol(initrd_start), size);
|
|
initrd_below_start_ok = 1;
|
|
|
|
pr_info("Initial ramdisk at: 0x%p (%lu bytes)\n",
|
|
(void *)(initrd_start), size);
|
|
return;
|
|
disable:
|
|
pr_cont(" - disabling initrd\n");
|
|
initrd_start = 0;
|
|
initrd_end = 0;
|
|
}
|
|
#endif /* CONFIG_BLK_DEV_INITRD */
|
|
|
|
static phys_addr_t dtb_early_pa __initdata;
|
|
|
|
void __init setup_bootmem(void)
|
|
{
|
|
struct memblock_region *reg;
|
|
phys_addr_t mem_size = 0;
|
|
phys_addr_t vmlinux_end = __pa_symbol(&_end);
|
|
phys_addr_t vmlinux_start = __pa_symbol(&_start);
|
|
|
|
/* Find the memory region containing the kernel */
|
|
for_each_memblock(memory, reg) {
|
|
phys_addr_t end = reg->base + reg->size;
|
|
|
|
if (reg->base <= vmlinux_start && vmlinux_end <= end) {
|
|
mem_size = min(reg->size, (phys_addr_t)-PAGE_OFFSET);
|
|
|
|
/*
|
|
* Remove memblock from the end of usable area to the
|
|
* end of region
|
|
*/
|
|
if (reg->base + mem_size < end)
|
|
memblock_remove(reg->base + mem_size,
|
|
end - reg->base - mem_size);
|
|
}
|
|
}
|
|
BUG_ON(mem_size == 0);
|
|
|
|
/* Reserve from the start of the kernel to the end of the kernel */
|
|
memblock_reserve(vmlinux_start, vmlinux_end - vmlinux_start);
|
|
|
|
set_max_mapnr(PFN_DOWN(mem_size));
|
|
max_low_pfn = PFN_DOWN(memblock_end_of_DRAM());
|
|
|
|
#ifdef CONFIG_BLK_DEV_INITRD
|
|
setup_initrd();
|
|
#endif /* CONFIG_BLK_DEV_INITRD */
|
|
|
|
/*
|
|
* Avoid using early_init_fdt_reserve_self() since __pa() does
|
|
* not work for DTB pointers that are fixmap addresses
|
|
*/
|
|
memblock_reserve(dtb_early_pa, fdt_totalsize(dtb_early_va));
|
|
|
|
early_init_fdt_scan_reserved_mem();
|
|
memblock_allow_resize();
|
|
memblock_dump_all();
|
|
|
|
for_each_memblock(memory, reg) {
|
|
unsigned long start_pfn = memblock_region_memory_base_pfn(reg);
|
|
unsigned long end_pfn = memblock_region_memory_end_pfn(reg);
|
|
|
|
memblock_set_node(PFN_PHYS(start_pfn),
|
|
PFN_PHYS(end_pfn - start_pfn),
|
|
&memblock.memory, 0);
|
|
}
|
|
}
|
|
|
|
#ifdef CONFIG_MMU
|
|
unsigned long va_pa_offset;
|
|
EXPORT_SYMBOL(va_pa_offset);
|
|
unsigned long pfn_base;
|
|
EXPORT_SYMBOL(pfn_base);
|
|
|
|
pgd_t swapper_pg_dir[PTRS_PER_PGD] __page_aligned_bss;
|
|
pgd_t trampoline_pg_dir[PTRS_PER_PGD] __page_aligned_bss;
|
|
pte_t fixmap_pte[PTRS_PER_PTE] __page_aligned_bss;
|
|
static bool mmu_enabled;
|
|
|
|
#define MAX_EARLY_MAPPING_SIZE SZ_128M
|
|
|
|
pgd_t early_pg_dir[PTRS_PER_PGD] __initdata __aligned(PAGE_SIZE);
|
|
|
|
void __set_fixmap(enum fixed_addresses idx, phys_addr_t phys, pgprot_t prot)
|
|
{
|
|
unsigned long addr = __fix_to_virt(idx);
|
|
pte_t *ptep;
|
|
|
|
BUG_ON(idx <= FIX_HOLE || idx >= __end_of_fixed_addresses);
|
|
|
|
ptep = &fixmap_pte[pte_index(addr)];
|
|
|
|
if (pgprot_val(prot)) {
|
|
set_pte(ptep, pfn_pte(phys >> PAGE_SHIFT, prot));
|
|
} else {
|
|
pte_clear(&init_mm, addr, ptep);
|
|
local_flush_tlb_page(addr);
|
|
}
|
|
}
|
|
|
|
static pte_t *__init get_pte_virt(phys_addr_t pa)
|
|
{
|
|
if (mmu_enabled) {
|
|
clear_fixmap(FIX_PTE);
|
|
return (pte_t *)set_fixmap_offset(FIX_PTE, pa);
|
|
} else {
|
|
return (pte_t *)((uintptr_t)pa);
|
|
}
|
|
}
|
|
|
|
static phys_addr_t __init alloc_pte(uintptr_t va)
|
|
{
|
|
/*
|
|
* We only create PMD or PGD early mappings so we
|
|
* should never reach here with MMU disabled.
|
|
*/
|
|
BUG_ON(!mmu_enabled);
|
|
|
|
return memblock_phys_alloc(PAGE_SIZE, PAGE_SIZE);
|
|
}
|
|
|
|
static void __init create_pte_mapping(pte_t *ptep,
|
|
uintptr_t va, phys_addr_t pa,
|
|
phys_addr_t sz, pgprot_t prot)
|
|
{
|
|
uintptr_t pte_index = pte_index(va);
|
|
|
|
BUG_ON(sz != PAGE_SIZE);
|
|
|
|
if (pte_none(ptep[pte_index]))
|
|
ptep[pte_index] = pfn_pte(PFN_DOWN(pa), prot);
|
|
}
|
|
|
|
#ifndef __PAGETABLE_PMD_FOLDED
|
|
|
|
pmd_t trampoline_pmd[PTRS_PER_PMD] __page_aligned_bss;
|
|
pmd_t fixmap_pmd[PTRS_PER_PMD] __page_aligned_bss;
|
|
|
|
#if MAX_EARLY_MAPPING_SIZE < PGDIR_SIZE
|
|
#define NUM_EARLY_PMDS 1UL
|
|
#else
|
|
#define NUM_EARLY_PMDS (1UL + MAX_EARLY_MAPPING_SIZE / PGDIR_SIZE)
|
|
#endif
|
|
pmd_t early_pmd[PTRS_PER_PMD * NUM_EARLY_PMDS] __initdata __aligned(PAGE_SIZE);
|
|
|
|
static pmd_t *__init get_pmd_virt(phys_addr_t pa)
|
|
{
|
|
if (mmu_enabled) {
|
|
clear_fixmap(FIX_PMD);
|
|
return (pmd_t *)set_fixmap_offset(FIX_PMD, pa);
|
|
} else {
|
|
return (pmd_t *)((uintptr_t)pa);
|
|
}
|
|
}
|
|
|
|
static phys_addr_t __init alloc_pmd(uintptr_t va)
|
|
{
|
|
uintptr_t pmd_num;
|
|
|
|
if (mmu_enabled)
|
|
return memblock_phys_alloc(PAGE_SIZE, PAGE_SIZE);
|
|
|
|
pmd_num = (va - PAGE_OFFSET) >> PGDIR_SHIFT;
|
|
BUG_ON(pmd_num >= NUM_EARLY_PMDS);
|
|
return (uintptr_t)&early_pmd[pmd_num * PTRS_PER_PMD];
|
|
}
|
|
|
|
static void __init create_pmd_mapping(pmd_t *pmdp,
|
|
uintptr_t va, phys_addr_t pa,
|
|
phys_addr_t sz, pgprot_t prot)
|
|
{
|
|
pte_t *ptep;
|
|
phys_addr_t pte_phys;
|
|
uintptr_t pmd_index = pmd_index(va);
|
|
|
|
if (sz == PMD_SIZE) {
|
|
if (pmd_none(pmdp[pmd_index]))
|
|
pmdp[pmd_index] = pfn_pmd(PFN_DOWN(pa), prot);
|
|
return;
|
|
}
|
|
|
|
if (pmd_none(pmdp[pmd_index])) {
|
|
pte_phys = alloc_pte(va);
|
|
pmdp[pmd_index] = pfn_pmd(PFN_DOWN(pte_phys), PAGE_TABLE);
|
|
ptep = get_pte_virt(pte_phys);
|
|
memset(ptep, 0, PAGE_SIZE);
|
|
} else {
|
|
pte_phys = PFN_PHYS(_pmd_pfn(pmdp[pmd_index]));
|
|
ptep = get_pte_virt(pte_phys);
|
|
}
|
|
|
|
create_pte_mapping(ptep, va, pa, sz, prot);
|
|
}
|
|
|
|
#define pgd_next_t pmd_t
|
|
#define alloc_pgd_next(__va) alloc_pmd(__va)
|
|
#define get_pgd_next_virt(__pa) get_pmd_virt(__pa)
|
|
#define create_pgd_next_mapping(__nextp, __va, __pa, __sz, __prot) \
|
|
create_pmd_mapping(__nextp, __va, __pa, __sz, __prot)
|
|
#define fixmap_pgd_next fixmap_pmd
|
|
#else
|
|
#define pgd_next_t pte_t
|
|
#define alloc_pgd_next(__va) alloc_pte(__va)
|
|
#define get_pgd_next_virt(__pa) get_pte_virt(__pa)
|
|
#define create_pgd_next_mapping(__nextp, __va, __pa, __sz, __prot) \
|
|
create_pte_mapping(__nextp, __va, __pa, __sz, __prot)
|
|
#define fixmap_pgd_next fixmap_pte
|
|
#endif
|
|
|
|
static void __init create_pgd_mapping(pgd_t *pgdp,
|
|
uintptr_t va, phys_addr_t pa,
|
|
phys_addr_t sz, pgprot_t prot)
|
|
{
|
|
pgd_next_t *nextp;
|
|
phys_addr_t next_phys;
|
|
uintptr_t pgd_index = pgd_index(va);
|
|
|
|
if (sz == PGDIR_SIZE) {
|
|
if (pgd_val(pgdp[pgd_index]) == 0)
|
|
pgdp[pgd_index] = pfn_pgd(PFN_DOWN(pa), prot);
|
|
return;
|
|
}
|
|
|
|
if (pgd_val(pgdp[pgd_index]) == 0) {
|
|
next_phys = alloc_pgd_next(va);
|
|
pgdp[pgd_index] = pfn_pgd(PFN_DOWN(next_phys), PAGE_TABLE);
|
|
nextp = get_pgd_next_virt(next_phys);
|
|
memset(nextp, 0, PAGE_SIZE);
|
|
} else {
|
|
next_phys = PFN_PHYS(_pgd_pfn(pgdp[pgd_index]));
|
|
nextp = get_pgd_next_virt(next_phys);
|
|
}
|
|
|
|
create_pgd_next_mapping(nextp, va, pa, sz, prot);
|
|
}
|
|
|
|
static uintptr_t __init best_map_size(phys_addr_t base, phys_addr_t size)
|
|
{
|
|
/* Upgrade to PMD_SIZE mappings whenever possible */
|
|
if ((base & (PMD_SIZE - 1)) || (size & (PMD_SIZE - 1)))
|
|
return PAGE_SIZE;
|
|
|
|
return PMD_SIZE;
|
|
}
|
|
|
|
/*
|
|
* setup_vm() is called from head.S with MMU-off.
|
|
*
|
|
* Following requirements should be honoured for setup_vm() to work
|
|
* correctly:
|
|
* 1) It should use PC-relative addressing for accessing kernel symbols.
|
|
* To achieve this we always use GCC cmodel=medany.
|
|
* 2) The compiler instrumentation for FTRACE will not work for setup_vm()
|
|
* so disable compiler instrumentation when FTRACE is enabled.
|
|
*
|
|
* Currently, the above requirements are honoured by using custom CFLAGS
|
|
* for init.o in mm/Makefile.
|
|
*/
|
|
|
|
#ifndef __riscv_cmodel_medany
|
|
#error "setup_vm() is called from head.S before relocate so it should not use absolute addressing."
|
|
#endif
|
|
|
|
asmlinkage void __init setup_vm(uintptr_t dtb_pa)
|
|
{
|
|
uintptr_t va, end_va;
|
|
uintptr_t load_pa = (uintptr_t)(&_start);
|
|
uintptr_t load_sz = (uintptr_t)(&_end) - load_pa;
|
|
uintptr_t map_size = best_map_size(load_pa, MAX_EARLY_MAPPING_SIZE);
|
|
|
|
va_pa_offset = PAGE_OFFSET - load_pa;
|
|
pfn_base = PFN_DOWN(load_pa);
|
|
|
|
/*
|
|
* Enforce boot alignment requirements of RV32 and
|
|
* RV64 by only allowing PMD or PGD mappings.
|
|
*/
|
|
BUG_ON(map_size == PAGE_SIZE);
|
|
|
|
/* Sanity check alignment and size */
|
|
BUG_ON((PAGE_OFFSET % PGDIR_SIZE) != 0);
|
|
BUG_ON((load_pa % map_size) != 0);
|
|
BUG_ON(load_sz > MAX_EARLY_MAPPING_SIZE);
|
|
|
|
/* Setup early PGD for fixmap */
|
|
create_pgd_mapping(early_pg_dir, FIXADDR_START,
|
|
(uintptr_t)fixmap_pgd_next, PGDIR_SIZE, PAGE_TABLE);
|
|
|
|
#ifndef __PAGETABLE_PMD_FOLDED
|
|
/* Setup fixmap PMD */
|
|
create_pmd_mapping(fixmap_pmd, FIXADDR_START,
|
|
(uintptr_t)fixmap_pte, PMD_SIZE, PAGE_TABLE);
|
|
/* Setup trampoline PGD and PMD */
|
|
create_pgd_mapping(trampoline_pg_dir, PAGE_OFFSET,
|
|
(uintptr_t)trampoline_pmd, PGDIR_SIZE, PAGE_TABLE);
|
|
create_pmd_mapping(trampoline_pmd, PAGE_OFFSET,
|
|
load_pa, PMD_SIZE, PAGE_KERNEL_EXEC);
|
|
#else
|
|
/* Setup trampoline PGD */
|
|
create_pgd_mapping(trampoline_pg_dir, PAGE_OFFSET,
|
|
load_pa, PGDIR_SIZE, PAGE_KERNEL_EXEC);
|
|
#endif
|
|
|
|
/*
|
|
* Setup early PGD covering entire kernel which will allows
|
|
* us to reach paging_init(). We map all memory banks later
|
|
* in setup_vm_final() below.
|
|
*/
|
|
end_va = PAGE_OFFSET + load_sz;
|
|
for (va = PAGE_OFFSET; va < end_va; va += map_size)
|
|
create_pgd_mapping(early_pg_dir, va,
|
|
load_pa + (va - PAGE_OFFSET),
|
|
map_size, PAGE_KERNEL_EXEC);
|
|
|
|
/* Create fixed mapping for early FDT parsing */
|
|
end_va = __fix_to_virt(FIX_FDT) + FIX_FDT_SIZE;
|
|
for (va = __fix_to_virt(FIX_FDT); va < end_va; va += PAGE_SIZE)
|
|
create_pte_mapping(fixmap_pte, va,
|
|
dtb_pa + (va - __fix_to_virt(FIX_FDT)),
|
|
PAGE_SIZE, PAGE_KERNEL);
|
|
|
|
/* Save pointer to DTB for early FDT parsing */
|
|
dtb_early_va = (void *)fix_to_virt(FIX_FDT) + (dtb_pa & ~PAGE_MASK);
|
|
/* Save physical address for memblock reservation */
|
|
dtb_early_pa = dtb_pa;
|
|
}
|
|
|
|
static void __init setup_vm_final(void)
|
|
{
|
|
uintptr_t va, map_size;
|
|
phys_addr_t pa, start, end;
|
|
struct memblock_region *reg;
|
|
|
|
/* Set mmu_enabled flag */
|
|
mmu_enabled = true;
|
|
|
|
/* Setup swapper PGD for fixmap */
|
|
create_pgd_mapping(swapper_pg_dir, FIXADDR_START,
|
|
__pa_symbol(fixmap_pgd_next),
|
|
PGDIR_SIZE, PAGE_TABLE);
|
|
|
|
/* Map all memory banks */
|
|
for_each_memblock(memory, reg) {
|
|
start = reg->base;
|
|
end = start + reg->size;
|
|
|
|
if (start >= end)
|
|
break;
|
|
if (memblock_is_nomap(reg))
|
|
continue;
|
|
if (start <= __pa(PAGE_OFFSET) &&
|
|
__pa(PAGE_OFFSET) < end)
|
|
start = __pa(PAGE_OFFSET);
|
|
|
|
map_size = best_map_size(start, end - start);
|
|
for (pa = start; pa < end; pa += map_size) {
|
|
va = (uintptr_t)__va(pa);
|
|
create_pgd_mapping(swapper_pg_dir, va, pa,
|
|
map_size, PAGE_KERNEL_EXEC);
|
|
}
|
|
}
|
|
|
|
/* Clear fixmap PTE and PMD mappings */
|
|
clear_fixmap(FIX_PTE);
|
|
clear_fixmap(FIX_PMD);
|
|
|
|
/* Move to swapper page table */
|
|
csr_write(CSR_SATP, PFN_DOWN(__pa_symbol(swapper_pg_dir)) | SATP_MODE);
|
|
local_flush_tlb_all();
|
|
}
|
|
|
|
void free_initmem(void)
|
|
{
|
|
unsigned long init_begin = (unsigned long)__init_begin;
|
|
unsigned long init_end = (unsigned long)__init_end;
|
|
|
|
/* Make the region as non-execuatble. */
|
|
set_memory_nx(init_begin, (init_end - init_begin) >> PAGE_SHIFT);
|
|
free_initmem_default(POISON_FREE_INITMEM);
|
|
}
|
|
|
|
#else
|
|
asmlinkage void __init setup_vm(uintptr_t dtb_pa)
|
|
{
|
|
dtb_early_va = (void *)dtb_pa;
|
|
}
|
|
|
|
static inline void setup_vm_final(void)
|
|
{
|
|
}
|
|
#endif /* CONFIG_MMU */
|
|
|
|
#ifdef CONFIG_STRICT_KERNEL_RWX
|
|
void set_kernel_text_rw(void)
|
|
{
|
|
unsigned long text_start = (unsigned long)_text;
|
|
unsigned long text_end = (unsigned long)_etext;
|
|
|
|
set_memory_rw(text_start, (text_end - text_start) >> PAGE_SHIFT);
|
|
}
|
|
|
|
void set_kernel_text_ro(void)
|
|
{
|
|
unsigned long text_start = (unsigned long)_text;
|
|
unsigned long text_end = (unsigned long)_etext;
|
|
|
|
set_memory_ro(text_start, (text_end - text_start) >> PAGE_SHIFT);
|
|
}
|
|
|
|
void mark_rodata_ro(void)
|
|
{
|
|
unsigned long text_start = (unsigned long)_text;
|
|
unsigned long text_end = (unsigned long)_etext;
|
|
unsigned long rodata_start = (unsigned long)__start_rodata;
|
|
unsigned long data_start = (unsigned long)_data;
|
|
unsigned long max_low = (unsigned long)(__va(PFN_PHYS(max_low_pfn)));
|
|
|
|
set_memory_ro(text_start, (text_end - text_start) >> PAGE_SHIFT);
|
|
set_memory_ro(rodata_start, (data_start - rodata_start) >> PAGE_SHIFT);
|
|
set_memory_nx(rodata_start, (data_start - rodata_start) >> PAGE_SHIFT);
|
|
set_memory_nx(data_start, (max_low - data_start) >> PAGE_SHIFT);
|
|
}
|
|
#endif
|
|
|
|
void __init paging_init(void)
|
|
{
|
|
setup_vm_final();
|
|
memblocks_present();
|
|
sparse_init();
|
|
setup_zero_page();
|
|
zone_sizes_init();
|
|
}
|
|
|
|
#ifdef CONFIG_SPARSEMEM_VMEMMAP
|
|
int __meminit vmemmap_populate(unsigned long start, unsigned long end, int node,
|
|
struct vmem_altmap *altmap)
|
|
{
|
|
return vmemmap_populate_basepages(start, end, node);
|
|
}
|
|
#endif
|