1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/sched.h>
3 #include <linux/kernel.h>
4 #include <linux/errno.h>
7 #include <linux/swap.h>
9 #include <linux/highmem.h>
10 #include <linux/pagemap.h>
11 #include <linux/spinlock.h>
13 #include <asm/cpu_entry_area.h>
14 #include <asm/pgtable.h>
15 #include <asm/pgalloc.h>
16 #include <asm/fixmap.h>
17 #include <asm/e820/api.h>
19 #include <asm/tlbflush.h>
21 #include <linux/vmalloc.h>
23 unsigned int __VMALLOC_RESERVE
= 128 << 20;
26 * Associate a virtual page frame with a given physical page frame
27 * and protection flags for that frame.
29 void set_pte_vaddr(unsigned long vaddr
, pte_t pteval
)
37 pgd
= swapper_pg_dir
+ pgd_index(vaddr
);
42 p4d
= p4d_offset(pgd
, vaddr
);
47 pud
= pud_offset(p4d
, vaddr
);
52 pmd
= pmd_offset(pud
, vaddr
);
57 pte
= pte_offset_kernel(pmd
, vaddr
);
58 if (!pte_none(pteval
))
59 set_pte_at(&init_mm
, vaddr
, pte
, pteval
);
61 pte_clear(&init_mm
, vaddr
, pte
);
64 * It's enough to flush this one mapping.
65 * (PGE mappings get flushed as well)
67 __flush_tlb_one_kernel(vaddr
);
70 unsigned long __FIXADDR_TOP
= 0xfffff000;
71 EXPORT_SYMBOL(__FIXADDR_TOP
);
74 * vmalloc=size forces the vmalloc area to be exactly 'size'
75 * bytes. This can be used to increase (or decrease) the
76 * vmalloc area - the default is 128m.
78 static int __init
parse_vmalloc(char *arg
)
83 /* Add VMALLOC_OFFSET to the parsed value due to vm area guard hole*/
84 __VMALLOC_RESERVE
= memparse(arg
, &arg
) + VMALLOC_OFFSET
;
87 early_param("vmalloc", parse_vmalloc
);
90 * reservetop=size reserves a hole at the top of the kernel address space which
91 * a hypervisor can load into later. Needed for dynamically loaded hypervisors,
92 * so relocating the fixmap can be done before paging initialization.
94 static int __init
parse_reservetop(char *arg
)
96 unsigned long address
;
101 address
= memparse(arg
, &arg
);
102 reserve_top_address(address
);
103 early_ioremap_init();
106 early_param("reservetop", parse_reservetop
);