blob: cab0abbd1ebe6c42a9adfb46306220a893f86541 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#include <linux/sched.h>
2#include <linux/kernel.h>
3#include <linux/errno.h>
4#include <linux/mm.h>
Prarit Bhargava27eb0b22007-10-17 18:04:34 +02005#include <linux/nmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <linux/swap.h>
7#include <linux/smp.h>
8#include <linux/highmem.h>
9#include <linux/slab.h>
10#include <linux/pagemap.h>
11#include <linux/spinlock.h>
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -070012#include <linux/module.h>
Christoph Lameterf1d1a842007-05-12 11:15:24 -070013#include <linux/quicklist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
15#include <asm/system.h>
16#include <asm/pgtable.h>
17#include <asm/pgalloc.h>
18#include <asm/fixmap.h>
19#include <asm/e820.h>
20#include <asm/tlb.h>
21#include <asm/tlbflush.h>
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023/*
24 * Associate a virtual page frame with a given physical page frame
25 * and protection flags for that frame.
26 */
Jeremy Fitzhardinged494a962008-06-17 11:41:59 -070027void set_pte_vaddr(unsigned long vaddr, pte_t pteval)
Linus Torvalds1da177e2005-04-16 15:20:36 -070028{
29 pgd_t *pgd;
30 pud_t *pud;
31 pmd_t *pmd;
32 pte_t *pte;
33
34 pgd = swapper_pg_dir + pgd_index(vaddr);
35 if (pgd_none(*pgd)) {
36 BUG();
37 return;
38 }
39 pud = pud_offset(pgd, vaddr);
40 if (pud_none(*pud)) {
41 BUG();
42 return;
43 }
44 pmd = pmd_offset(pud, vaddr);
45 if (pmd_none(*pmd)) {
46 BUG();
47 return;
48 }
49 pte = pte_offset_kernel(pmd, vaddr);
Jeremy Fitzhardinged494a962008-06-17 11:41:59 -070050 if (pte_val(pteval))
51 set_pte_present(&init_mm, vaddr, pte, pteval);
Jan Beulichb0bfece2006-12-07 02:14:09 +010052 else
53 pte_clear(&init_mm, vaddr, pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55 /*
56 * It's enough to flush this one mapping.
57 * (PGE mappings get flushed as well)
58 */
59 __flush_tlb_one(vaddr);
60}
61
62/*
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.
67 */
68void set_pmd_pfn(unsigned long vaddr, unsigned long pfn, pgprot_t flags)
69{
70 pgd_t *pgd;
71 pud_t *pud;
72 pmd_t *pmd;
73
74 if (vaddr & (PMD_SIZE-1)) { /* vaddr is misaligned */
Christophe Lucasf90e7182005-06-25 14:59:24 -070075 printk(KERN_WARNING "set_pmd_pfn: vaddr misaligned\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 return; /* BUG(); */
77 }
78 if (pfn & (PTRS_PER_PTE-1)) { /* pfn is misaligned */
Christophe Lucasf90e7182005-06-25 14:59:24 -070079 printk(KERN_WARNING "set_pmd_pfn: pfn misaligned\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 return; /* BUG(); */
81 }
82 pgd = swapper_pg_dir + pgd_index(vaddr);
83 if (pgd_none(*pgd)) {
Christophe Lucasf90e7182005-06-25 14:59:24 -070084 printk(KERN_WARNING "set_pmd_pfn: pgd_none\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 return; /* BUG(); */
86 }
87 pud = pud_offset(pgd, vaddr);
88 pmd = pmd_offset(pud, vaddr);
89 set_pmd(pmd, pfn_pmd(pfn, flags));
90 /*
91 * It's enough to flush this one mapping.
92 * (PGE mappings get flushed as well)
93 */
94 __flush_tlb_one(vaddr);
95}
96
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -070097unsigned long __FIXADDR_TOP = 0xfffff000;
98EXPORT_SYMBOL(__FIXADDR_TOP);
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -070099
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700100/**
101 * reserve_top_address - reserves a hole in the top of kernel address space
102 * @reserve - size of hole to reserve
103 *
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.
106 */
Yinghai Lubef15682008-06-22 17:40:10 -0700107void __init reserve_top_address(unsigned long reserve)
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700108{
Jeremy Fitzhardinge7c7e6e02008-06-17 11:41:54 -0700109 BUG_ON(fixmaps_set > 0);
Zachary Amsden7ce0bcf2007-02-13 13:26:21 +0100110 printk(KERN_INFO "Reserving virtual address space above 0x%08x\n",
111 (int)-reserve);
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700112 __FIXADDR_TOP = -reserve - PAGE_SIZE;
113 __VMALLOC_RESERVE += reserve;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114}
Yinghai Lubef15682008-06-22 17:40:10 -0700115
116/*
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.
120 */
121static int __init parse_vmalloc(char *arg)
122{
123 if (!arg)
124 return -EINVAL;
125
126 __VMALLOC_RESERVE = memparse(arg, &arg);
127 return 0;
128}
129early_param("vmalloc", parse_vmalloc);
130
131/*
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.
135 */
136static int __init parse_reservetop(char *arg)
137{
138 unsigned long address;
139
140 if (!arg)
141 return -EINVAL;
142
143 address = memparse(arg, &arg);
144 reserve_top_address(address);
145 return 0;
146}
147early_param("reservetop", parse_reservetop);