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/slab.h>
10 #include <linux/pagemap.h>
11 #include <linux/spinlock.h>
12 #include <linux/module.h>
13 #include <linux/quicklist.h>
15 #include <asm/system.h>
16 #include <asm/pgtable.h>
17 #include <asm/pgalloc.h>
18 #include <asm/fixmap.h>
21 #include <asm/tlbflush.h>
24 * Associate a virtual page frame with a given physical page frame
25 * and protection flags for that frame.
27 void set_pte_vaddr(unsigned long vaddr
, pte_t pteval
)
34 pgd
= swapper_pg_dir
+ pgd_index(vaddr
);
39 pud
= pud_offset(pgd
, vaddr
);
44 pmd
= pmd_offset(pud
, vaddr
);
49 pte
= pte_offset_kernel(pmd
, vaddr
);
51 set_pte_present(&init_mm
, vaddr
, pte
, pteval
);
53 pte_clear(&init_mm
, vaddr
, pte
);
56 * It's enough to flush this one mapping.
57 * (PGE mappings get flushed as well)
59 __flush_tlb_one(vaddr
);
63 * Associate a large virtual page frame with a given physical page frame
64 * and protection flags for that frame. pfn is for the base of the page,
65 * vaddr is what the page gets mapped to - both must be properly aligned.
66 * The pmd must already be instantiated. Assumes PAE mode.
68 void set_pmd_pfn(unsigned long vaddr
, unsigned long pfn
, pgprot_t flags
)
74 if (vaddr
& (PMD_SIZE
-1)) { /* vaddr is misaligned */
75 printk(KERN_WARNING
"set_pmd_pfn: vaddr misaligned\n");
78 if (pfn
& (PTRS_PER_PTE
-1)) { /* pfn is misaligned */
79 printk(KERN_WARNING
"set_pmd_pfn: pfn misaligned\n");
82 pgd
= swapper_pg_dir
+ pgd_index(vaddr
);
84 printk(KERN_WARNING
"set_pmd_pfn: pgd_none\n");
87 pud
= pud_offset(pgd
, vaddr
);
88 pmd
= pmd_offset(pud
, vaddr
);
89 set_pmd(pmd
, pfn_pmd(pfn
, flags
));
91 * It's enough to flush this one mapping.
92 * (PGE mappings get flushed as well)
94 __flush_tlb_one(vaddr
);
97 unsigned long __FIXADDR_TOP
= 0xfffff000;
98 EXPORT_SYMBOL(__FIXADDR_TOP
);
101 * reserve_top_address - reserves a hole in the top of kernel address space
102 * @reserve - size of hole to reserve
104 * Can be used to relocate the fixmap area and poke a hole in the top
105 * of kernel address space to make room for a hypervisor.
107 void __init
reserve_top_address(unsigned long reserve
)
109 BUG_ON(fixmaps_set
> 0);
110 printk(KERN_INFO
"Reserving virtual address space above 0x%08x\n",
112 __FIXADDR_TOP
= -reserve
- PAGE_SIZE
;
113 __VMALLOC_RESERVE
+= reserve
;
117 * vmalloc=size forces the vmalloc area to be exactly 'size'
118 * bytes. This can be used to increase (or decrease) the
119 * vmalloc area - the default is 128m.
121 static int __init
parse_vmalloc(char *arg
)
126 __VMALLOC_RESERVE
= memparse(arg
, &arg
);
129 early_param("vmalloc", parse_vmalloc
);
132 * reservetop=size reserves a hole at the top of the kernel address space which
133 * a hypervisor can load into later. Needed for dynamically loaded hypervisors,
134 * so relocating the fixmap can be done before paging initialization.
136 static int __init
parse_reservetop(char *arg
)
138 unsigned long address
;
143 address
= memparse(arg
, &arg
);
144 reserve_top_address(address
);
147 early_param("reservetop", parse_reservetop
);