1 #include <linux/sched.h>
2 #include <linux/kernel.h>
3 #include <linux/errno.h>
6 #include <linux/swap.h>
8 #include <linux/highmem.h>
9 #include <linux/pagemap.h>
10 #include <linux/spinlock.h>
12 #include <asm/pgtable.h>
13 #include <asm/pgalloc.h>
14 #include <asm/fixmap.h>
15 #include <asm/e820/api.h>
17 #include <asm/tlbflush.h>
20 unsigned int __VMALLOC_RESERVE = 128 << 20;
23 * Associate a virtual page frame with a given physical page frame
24 * and protection flags for that frame.
26 void set_pte_vaddr(unsigned long vaddr, pte_t pteval)
34 pgd = swapper_pg_dir + pgd_index(vaddr);
39 p4d = p4d_offset(pgd, vaddr);
44 pud = pud_offset(p4d, vaddr);
49 pmd = pmd_offset(pud, vaddr);
54 pte = pte_offset_kernel(pmd, vaddr);
55 if (!pte_none(pteval))
56 set_pte_at(&init_mm, vaddr, pte, pteval);
58 pte_clear(&init_mm, vaddr, pte);
61 * It's enough to flush this one mapping.
62 * (PGE mappings get flushed as well)
64 __flush_tlb_one(vaddr);
67 unsigned long __FIXADDR_TOP = 0xfffff000;
68 EXPORT_SYMBOL(__FIXADDR_TOP);
71 * vmalloc=size forces the vmalloc area to be exactly 'size'
72 * bytes. This can be used to increase (or decrease) the
73 * vmalloc area - the default is 128m.
75 static int __init parse_vmalloc(char *arg)
80 /* Add VMALLOC_OFFSET to the parsed value due to vm area guard hole*/
81 __VMALLOC_RESERVE = memparse(arg, &arg) + VMALLOC_OFFSET;
84 early_param("vmalloc", parse_vmalloc);
87 * reservetop=size reserves a hole at the top of the kernel address space which
88 * a hypervisor can load into later. Needed for dynamically loaded hypervisors,
89 * so relocating the fixmap can be done before paging initialization.
91 static int __init parse_reservetop(char *arg)
93 unsigned long address;
98 address = memparse(arg, &arg);
99 reserve_top_address(address);
100 early_ioremap_init();
103 early_param("reservetop", parse_reservetop);