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>
11 #include <linux/module.h>
13 #include <asm/system.h>
14 #include <asm/pgtable.h>
15 #include <asm/pgalloc.h>
16 #include <asm/fixmap.h>
19 #include <asm/tlbflush.h>
22 unsigned int __VMALLOC_RESERVE
= 128 << 20;
25 * Associate a virtual page frame with a given physical page frame
26 * and protection flags for that frame.
28 void set_pte_vaddr(unsigned long vaddr
, pte_t pteval
)
35 pgd
= swapper_pg_dir
+ pgd_index(vaddr
);
40 pud
= pud_offset(pgd
, vaddr
);
45 pmd
= pmd_offset(pud
, vaddr
);
50 pte
= pte_offset_kernel(pmd
, vaddr
);
52 set_pte_at(&init_mm
, vaddr
, pte
, pteval
);
54 pte_clear(&init_mm
, vaddr
, pte
);
57 * It's enough to flush this one mapping.
58 * (PGE mappings get flushed as well)
60 __flush_tlb_one(vaddr
);
64 * Associate a large virtual page frame with a given physical page frame
65 * and protection flags for that frame. pfn is for the base of the page,
66 * vaddr is what the page gets mapped to - both must be properly aligned.
67 * The pmd must already be instantiated. Assumes PAE mode.
69 void set_pmd_pfn(unsigned long vaddr
, unsigned long pfn
, pgprot_t flags
)
75 if (vaddr
& (PMD_SIZE
-1)) { /* vaddr is misaligned */
76 printk(KERN_WARNING
"set_pmd_pfn: vaddr misaligned\n");
79 if (pfn
& (PTRS_PER_PTE
-1)) { /* pfn is misaligned */
80 printk(KERN_WARNING
"set_pmd_pfn: pfn misaligned\n");
83 pgd
= swapper_pg_dir
+ pgd_index(vaddr
);
85 printk(KERN_WARNING
"set_pmd_pfn: pgd_none\n");
88 pud
= pud_offset(pgd
, vaddr
);
89 pmd
= pmd_offset(pud
, vaddr
);
90 set_pmd(pmd
, pfn_pmd(pfn
, flags
));
92 * It's enough to flush this one mapping.
93 * (PGE mappings get flushed as well)
95 __flush_tlb_one(vaddr
);
98 unsigned long __FIXADDR_TOP
= 0xfffff000;
99 EXPORT_SYMBOL(__FIXADDR_TOP
);
102 * vmalloc=size forces the vmalloc area to be exactly 'size'
103 * bytes. This can be used to increase (or decrease) the
104 * vmalloc area - the default is 128m.
106 static int __init
parse_vmalloc(char *arg
)
111 /* Add VMALLOC_OFFSET to the parsed value due to vm area guard hole*/
112 __VMALLOC_RESERVE
= memparse(arg
, &arg
) + VMALLOC_OFFSET
;
115 early_param("vmalloc", parse_vmalloc
);
118 * reservetop=size reserves a hole at the top of the kernel address space which
119 * a hypervisor can load into later. Needed for dynamically loaded hypervisors,
120 * so relocating the fixmap can be done before paging initialization.
122 static int __init
parse_reservetop(char *arg
)
124 unsigned long address
;
129 address
= memparse(arg
, &arg
);
130 reserve_top_address(address
);
131 fixup_early_ioremap();
134 early_param("reservetop", parse_reservetop
);