blob: b5a0fd5f4c5f23d06858e0a77fb57ea21aa2b116 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
3 * Copyright (C) 1995 Linus Torvalds
4 *
5 * Support of BIGMEM added by Gerhard Wichert, Siemens AG, July 1999
6 */
7
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/module.h>
9#include <linux/signal.h>
10#include <linux/sched.h>
11#include <linux/kernel.h>
12#include <linux/errno.h>
13#include <linux/string.h>
14#include <linux/types.h>
15#include <linux/ptrace.h>
16#include <linux/mman.h>
17#include <linux/mm.h>
18#include <linux/hugetlb.h>
19#include <linux/swap.h>
20#include <linux/smp.h>
21#include <linux/init.h>
22#include <linux/highmem.h>
23#include <linux/pagemap.h>
Jan Beulich6fb14752007-05-02 19:27:10 +020024#include <linux/pfn.h>
Randy Dunlapc9cf5522006-06-27 02:53:52 -070025#include <linux/poison.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/bootmem.h>
27#include <linux/slab.h>
28#include <linux/proc_fs.h>
Dave Hansen05039b92005-10-29 18:16:57 -070029#include <linux/memory_hotplug.h>
Adrian Bunk27d99f72005-11-13 16:06:51 -080030#include <linux/initrd.h>
Shaohua Li55b23552006-06-23 02:04:49 -070031#include <linux/cpumask.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
H. Peter Anvinf832ff12008-02-04 16:47:58 +010033#include <asm/asm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/processor.h>
35#include <asm/system.h>
36#include <asm/uaccess.h>
37#include <asm/pgtable.h>
38#include <asm/dma.h>
39#include <asm/fixmap.h>
40#include <asm/e820.h>
41#include <asm/apic.h>
Ingo Molnar8550eb92008-01-30 13:34:10 +010042#include <asm/bugs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <asm/tlb.h>
44#include <asm/tlbflush.h>
Jeremy Fitzhardingea5a19c62008-01-30 13:33:39 +010045#include <asm/pgalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <asm/sections.h>
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +020047#include <asm/paravirt.h>
Ian Campbell551889a2008-02-09 23:24:09 +010048#include <asm/setup.h>
Harvey Harrison7bfeab92008-02-12 12:12:01 -080049#include <asm/cacheflush.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51unsigned int __VMALLOC_RESERVE = 128 << 20;
52
Thomas Gleixner67794292008-03-21 21:27:10 +010053unsigned long max_pfn_mapped;
Andi Kleen7d1116a2008-03-12 03:53:27 +010054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
56unsigned long highstart_pfn, highend_pfn;
57
Ingo Molnar8550eb92008-01-30 13:34:10 +010058static noinline int do_test_wp_bit(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Yinghai Lu4e296842008-06-24 12:18:14 -070060
61static unsigned long __initdata table_start;
62static unsigned long __meminitdata table_end;
63static unsigned long __meminitdata table_top;
64
65static int __initdata after_init_bootmem;
66
67static __init void *alloc_low_page(unsigned long *phys)
68{
69 unsigned long pfn = table_end++;
70 void *adr;
71
72 if (pfn >= table_top)
73 panic("alloc_low_page: ran out of memory");
74
75 adr = __va(pfn * PAGE_SIZE);
76 memset(adr, 0, PAGE_SIZE);
77 *phys = pfn * PAGE_SIZE;
78 return adr;
79}
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081/*
82 * Creates a middle page table and puts a pointer to it in the
83 * given global directory entry. This only returns the gd entry
84 * in non-PAE compilation mode, since the middle layer is folded.
85 */
86static pmd_t * __init one_md_table_init(pgd_t *pgd)
87{
88 pud_t *pud;
89 pmd_t *pmd_table;
Ingo Molnar8550eb92008-01-30 13:34:10 +010090
Linus Torvalds1da177e2005-04-16 15:20:36 -070091#ifdef CONFIG_X86_PAE
Yinghai Lu4e296842008-06-24 12:18:14 -070092 unsigned long phys;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +020093 if (!(pgd_val(*pgd) & _PAGE_PRESENT)) {
Yinghai Lu4e296842008-06-24 12:18:14 -070094 if (after_init_bootmem)
95 pmd_table = (pmd_t *)alloc_bootmem_low_pages(PAGE_SIZE);
96 else
97 pmd_table = (pmd_t *)alloc_low_page(&phys);
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -070098 paravirt_alloc_pmd(&init_mm, __pa(pmd_table) >> PAGE_SHIFT);
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +020099 set_pgd(pgd, __pgd(__pa(pmd_table) | _PAGE_PRESENT));
100 pud = pud_offset(pgd, 0);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100101 BUG_ON(pmd_table != pmd_offset(pud, 0));
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200102 }
103#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 pud = pud_offset(pgd, 0);
105 pmd_table = pmd_offset(pud, 0);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 return pmd_table;
108}
109
110/*
111 * Create a page table and place a pointer to it in a middle page
Ingo Molnar8550eb92008-01-30 13:34:10 +0100112 * directory entry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 */
114static pte_t * __init one_page_table_init(pmd_t *pmd)
115{
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200116 if (!(pmd_val(*pmd) & _PAGE_PRESENT)) {
Ingo Molnar509a80c2007-10-17 18:04:34 +0200117 pte_t *page_table = NULL;
118
Yinghai Lu4e296842008-06-24 12:18:14 -0700119 if (after_init_bootmem) {
Ingo Molnar509a80c2007-10-17 18:04:34 +0200120#ifdef CONFIG_DEBUG_PAGEALLOC
Yinghai Lu4e296842008-06-24 12:18:14 -0700121 page_table = (pte_t *) alloc_bootmem_pages(PAGE_SIZE);
Ingo Molnar509a80c2007-10-17 18:04:34 +0200122#endif
Yinghai Lu4e296842008-06-24 12:18:14 -0700123 if (!page_table)
124 page_table =
Ingo Molnar509a80c2007-10-17 18:04:34 +0200125 (pte_t *)alloc_bootmem_low_pages(PAGE_SIZE);
Yinghai Lu4e296842008-06-24 12:18:14 -0700126 } else {
127 unsigned long phys;
128 page_table = (pte_t *)alloc_low_page(&phys);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100129 }
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200130
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700131 paravirt_alloc_pte(&init_mm, __pa(page_table) >> PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 set_pmd(pmd, __pmd(__pa(page_table) | _PAGE_TABLE));
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200133 BUG_ON(page_table != pte_offset_kernel(pmd, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 }
Ingo Molnar509a80c2007-10-17 18:04:34 +0200135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 return pte_offset_kernel(pmd, 0);
137}
138
139/*
Ingo Molnar8550eb92008-01-30 13:34:10 +0100140 * This function initializes a certain range of kernel virtual memory
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 * with new bootmem page tables, everywhere page tables are missing in
142 * the given range.
Ingo Molnar8550eb92008-01-30 13:34:10 +0100143 *
144 * NOTE: The pagetables are allocated contiguous on the physical space
145 * so we can cache the place of the first one and move around without
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 * checking the pgd every time.
147 */
Ingo Molnar8550eb92008-01-30 13:34:10 +0100148static void __init
149page_table_range_init(unsigned long start, unsigned long end, pgd_t *pgd_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 int pgd_idx, pmd_idx;
152 unsigned long vaddr;
Ingo Molnar8550eb92008-01-30 13:34:10 +0100153 pgd_t *pgd;
154 pmd_t *pmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156 vaddr = start;
157 pgd_idx = pgd_index(vaddr);
158 pmd_idx = pmd_index(vaddr);
159 pgd = pgd_base + pgd_idx;
160
161 for ( ; (pgd_idx < PTRS_PER_PGD) && (vaddr != end); pgd++, pgd_idx++) {
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200162 pmd = one_md_table_init(pgd);
163 pmd = pmd + pmd_index(vaddr);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100164 for (; (pmd_idx < PTRS_PER_PMD) && (vaddr != end);
165 pmd++, pmd_idx++) {
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200166 one_page_table_init(pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168 vaddr += PMD_SIZE;
169 }
170 pmd_idx = 0;
171 }
172}
173
174static inline int is_kernel_text(unsigned long addr)
175{
176 if (addr >= PAGE_OFFSET && addr <= (unsigned long)__init_end)
177 return 1;
178 return 0;
179}
180
181/*
Ingo Molnar8550eb92008-01-30 13:34:10 +0100182 * This maps the physical memory to kernel virtual address space, a total
183 * of max_low_pfn pages, by creating page tables starting from address
184 * PAGE_OFFSET:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 */
Yinghai Lu4e296842008-06-24 12:18:14 -0700186static void __init kernel_physical_mapping_init(pgd_t *pgd_base,
Yinghai Lua04ad822008-06-29 00:39:06 -0700187 unsigned long start_pfn,
188 unsigned long end_pfn,
189 int use_pse)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
Ingo Molnar8550eb92008-01-30 13:34:10 +0100191 int pgd_idx, pmd_idx, pte_ofs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 unsigned long pfn;
193 pgd_t *pgd;
194 pmd_t *pmd;
195 pte_t *pte;
Andi Kleence0c0e52008-05-02 11:46:49 +0200196 unsigned pages_2m = 0, pages_4k = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Yinghai Lua04ad822008-06-29 00:39:06 -0700198 if (!cpu_has_pse)
199 use_pse = 0;
200
201 pfn = start_pfn;
202 pgd_idx = pgd_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 pgd = pgd_base + pgd_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 for (; pgd_idx < PTRS_PER_PGD; pgd++, pgd_idx++) {
205 pmd = one_md_table_init(pgd);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100206
Yinghai Lua04ad822008-06-29 00:39:06 -0700207 if (pfn >= end_pfn)
208 continue;
209#ifdef CONFIG_X86_PAE
210 pmd_idx = pmd_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
211 pmd += pmd_idx;
212#else
213 pmd_idx = 0;
214#endif
215 for (; pmd_idx < PTRS_PER_PMD && pfn < end_pfn;
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100216 pmd++, pmd_idx++) {
Ingo Molnar8550eb92008-01-30 13:34:10 +0100217 unsigned int addr = pfn * PAGE_SIZE + PAGE_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Ingo Molnar8550eb92008-01-30 13:34:10 +0100219 /*
220 * Map with big pages if possible, otherwise
221 * create normal page tables:
222 */
Yinghai Lua04ad822008-06-29 00:39:06 -0700223 if (use_pse) {
Ingo Molnar8550eb92008-01-30 13:34:10 +0100224 unsigned int addr2;
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100225 pgprot_t prot = PAGE_KERNEL_LARGE;
226
Ingo Molnar8550eb92008-01-30 13:34:10 +0100227 addr2 = (pfn + PTRS_PER_PTE-1) * PAGE_SIZE +
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100228 PAGE_OFFSET + PAGE_SIZE-1;
229
Ingo Molnar8550eb92008-01-30 13:34:10 +0100230 if (is_kernel_text(addr) ||
231 is_kernel_text(addr2))
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100232 prot = PAGE_KERNEL_LARGE_EXEC;
233
Andi Kleence0c0e52008-05-02 11:46:49 +0200234 pages_2m++;
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100235 set_pmd(pmd, pfn_pmd(pfn, prot));
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 pfn += PTRS_PER_PTE;
Ingo Molnar8550eb92008-01-30 13:34:10 +0100238 continue;
239 }
240 pte = one_page_table_init(pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Yinghai Lua04ad822008-06-29 00:39:06 -0700242 pte_ofs = pte_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
243 pte += pte_ofs;
244 for (; pte_ofs < PTRS_PER_PTE && pfn < end_pfn;
Ingo Molnar8550eb92008-01-30 13:34:10 +0100245 pte++, pfn++, pte_ofs++, addr += PAGE_SIZE) {
246 pgprot_t prot = PAGE_KERNEL;
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100247
Ingo Molnar8550eb92008-01-30 13:34:10 +0100248 if (is_kernel_text(addr))
249 prot = PAGE_KERNEL_EXEC;
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100250
Andi Kleence0c0e52008-05-02 11:46:49 +0200251 pages_4k++;
Ingo Molnar8550eb92008-01-30 13:34:10 +0100252 set_pte(pte, pfn_pte(pfn, prot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 }
254 }
255 }
Andi Kleence0c0e52008-05-02 11:46:49 +0200256 update_page_count(PG_LEVEL_2M, pages_2m);
257 update_page_count(PG_LEVEL_4K, pages_4k);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258}
259
Arjan van de Venae531c22008-04-24 23:40:47 +0200260/*
261 * devmem_is_allowed() checks to see if /dev/mem access to a certain address
262 * is valid. The argument is a physical page number.
263 *
264 *
265 * On x86, access has to be given to the first megabyte of ram because that area
266 * contains bios code and data regions used by X and dosemu and similar apps.
267 * Access has to be given to non-kernel-ram areas as well, these contain the PCI
268 * mmio resources as well as potential bios/acpi data regions.
269 */
270int devmem_is_allowed(unsigned long pagenr)
271{
272 if (pagenr <= 256)
273 return 1;
274 if (!page_is_ram(pagenr))
275 return 1;
276 return 0;
277}
278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279#ifdef CONFIG_HIGHMEM
280pte_t *kmap_pte;
281pgprot_t kmap_prot;
282
Ingo Molnar8550eb92008-01-30 13:34:10 +0100283static inline pte_t *kmap_get_fixmap_pte(unsigned long vaddr)
284{
285 return pte_offset_kernel(pmd_offset(pud_offset(pgd_offset_k(vaddr),
286 vaddr), vaddr), vaddr);
287}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
289static void __init kmap_init(void)
290{
291 unsigned long kmap_vstart;
292
Ingo Molnar8550eb92008-01-30 13:34:10 +0100293 /*
294 * Cache the first kmap pte:
295 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 kmap_vstart = __fix_to_virt(FIX_KMAP_BEGIN);
297 kmap_pte = kmap_get_fixmap_pte(kmap_vstart);
298
299 kmap_prot = PAGE_KERNEL;
300}
301
302static void __init permanent_kmaps_init(pgd_t *pgd_base)
303{
Ingo Molnar8550eb92008-01-30 13:34:10 +0100304 unsigned long vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 pgd_t *pgd;
306 pud_t *pud;
307 pmd_t *pmd;
308 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310 vaddr = PKMAP_BASE;
311 page_table_range_init(vaddr, vaddr + PAGE_SIZE*LAST_PKMAP, pgd_base);
312
313 pgd = swapper_pg_dir + pgd_index(vaddr);
314 pud = pud_offset(pgd, vaddr);
315 pmd = pmd_offset(pud, vaddr);
316 pte = pte_offset_kernel(pmd, vaddr);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100317 pkmap_page_table = pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318}
319
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700320static void __init add_one_highpage_init(struct page *page, int pfn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700322 ClearPageReserved(page);
323 init_page_count(page);
324 __free_page(page);
325 totalhigh_pages++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326}
327
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700328struct add_highpages_data {
329 unsigned long start_pfn;
330 unsigned long end_pfn;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700331};
332
Yinghai Lud52d53b2008-06-16 20:10:55 -0700333static int __init add_highpages_work_fn(unsigned long start_pfn,
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700334 unsigned long end_pfn, void *datax)
335{
336 int node_pfn;
337 struct page *page;
338 unsigned long final_start_pfn, final_end_pfn;
339 struct add_highpages_data *data;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700340
341 data = (struct add_highpages_data *)datax;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700342
343 final_start_pfn = max(start_pfn, data->start_pfn);
344 final_end_pfn = min(end_pfn, data->end_pfn);
345 if (final_start_pfn >= final_end_pfn)
Yinghai Lud52d53b2008-06-16 20:10:55 -0700346 return 0;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700347
348 for (node_pfn = final_start_pfn; node_pfn < final_end_pfn;
349 node_pfn++) {
350 if (!pfn_valid(node_pfn))
351 continue;
352 page = pfn_to_page(node_pfn);
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700353 add_one_highpage_init(page, node_pfn);
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700354 }
355
Yinghai Lud52d53b2008-06-16 20:10:55 -0700356 return 0;
357
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700358}
359
360void __init add_highpages_with_active_regions(int nid, unsigned long start_pfn,
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700361 unsigned long end_pfn)
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700362{
363 struct add_highpages_data data;
364
365 data.start_pfn = start_pfn;
366 data.end_pfn = end_pfn;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700367
368 work_with_active_regions(nid, add_highpages_work_fn, &data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369}
370
Ingo Molnar8550eb92008-01-30 13:34:10 +0100371#ifndef CONFIG_NUMA
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700372static void __init set_highmem_pages_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700374 add_highpages_with_active_regions(0, highstart_pfn, highend_pfn);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 totalram_pages += totalhigh_pages;
377}
Ingo Molnar8550eb92008-01-30 13:34:10 +0100378#endif /* !CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380#else
Ingo Molnar8550eb92008-01-30 13:34:10 +0100381# define kmap_init() do { } while (0)
382# define permanent_kmaps_init(pgd_base) do { } while (0)
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700383# define set_highmem_pages_init() do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384#endif /* CONFIG_HIGHMEM */
385
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200386void __init native_pagetable_setup_start(pgd_t *base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387{
Ian Campbell551889a2008-02-09 23:24:09 +0100388 unsigned long pfn, va;
389 pgd_t *pgd;
390 pud_t *pud;
391 pmd_t *pmd;
392 pte_t *pte;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200393
394 /*
Ian Campbell551889a2008-02-09 23:24:09 +0100395 * Remove any mappings which extend past the end of physical
396 * memory from the boot time page table:
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200397 */
Ian Campbell551889a2008-02-09 23:24:09 +0100398 for (pfn = max_low_pfn + 1; pfn < 1<<(32-PAGE_SHIFT); pfn++) {
399 va = PAGE_OFFSET + (pfn<<PAGE_SHIFT);
400 pgd = base + pgd_index(va);
401 if (!pgd_present(*pgd))
402 break;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200403
Ian Campbell551889a2008-02-09 23:24:09 +0100404 pud = pud_offset(pgd, va);
405 pmd = pmd_offset(pud, va);
406 if (!pmd_present(*pmd))
407 break;
408
409 pte = pte_offset_kernel(pmd, va);
410 if (!pte_present(*pte))
411 break;
412
413 pte_clear(NULL, va, pte);
414 }
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700415 paravirt_alloc_pmd(&init_mm, __pa(base) >> PAGE_SHIFT);
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200416}
417
418void __init native_pagetable_setup_done(pgd_t *base)
419{
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200420}
421
422/*
423 * Build a proper pagetable for the kernel mappings. Up until this
424 * point, we've been running on some set of pagetables constructed by
425 * the boot process.
426 *
427 * If we're booting on native hardware, this will be a pagetable
Ian Campbell551889a2008-02-09 23:24:09 +0100428 * constructed in arch/x86/kernel/head_32.S. The root of the
429 * pagetable will be swapper_pg_dir.
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200430 *
431 * If we're booting paravirtualized under a hypervisor, then there are
432 * more options: we may already be running PAE, and the pagetable may
433 * or may not be based in swapper_pg_dir. In any case,
434 * paravirt_pagetable_setup_start() will set up swapper_pg_dir
435 * appropriately for the rest of the initialization to work.
436 *
437 * In general, pagetable_init() assumes that the pagetable may already
438 * be partially populated, and so it avoids stomping on any existing
439 * mappings.
440 */
Yinghai Lue7b37892008-06-25 21:51:28 -0700441static void __init early_ioremap_page_table_range_init(pgd_t *pgd_base)
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200442{
Ingo Molnar8550eb92008-01-30 13:34:10 +0100443 unsigned long vaddr, end;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 /*
446 * Fixed mappings, only the page table structure has to be
447 * created - mappings will be set by set_fixmap():
448 */
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100449 early_ioremap_clear();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 vaddr = __fix_to_virt(__end_of_fixed_addresses - 1) & PMD_MASK;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200451 end = (FIXADDR_TOP + PMD_SIZE - 1) & PMD_MASK;
452 page_table_range_init(vaddr, end, pgd_base);
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100453 early_ioremap_reset();
Yinghai Lue7b37892008-06-25 21:51:28 -0700454}
455
456static void __init pagetable_init(void)
457{
458 pgd_t *pgd_base = swapper_pg_dir;
459
460 paravirt_pagetable_setup_start(pgd_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
462 permanent_kmaps_init(pgd_base);
463
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200464 paravirt_pagetable_setup_done(pgd_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465}
466
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100467#ifdef CONFIG_ACPI_SLEEP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468/*
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100469 * ACPI suspend needs this for resume, because things like the intel-agp
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 * driver might have split up a kernel 4MB mapping.
471 */
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100472char swsusp_pg_dir[PAGE_SIZE]
Ingo Molnar8550eb92008-01-30 13:34:10 +0100473 __attribute__ ((aligned(PAGE_SIZE)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475static inline void save_pg_dir(void)
476{
477 memcpy(swsusp_pg_dir, swapper_pg_dir, PAGE_SIZE);
478}
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100479#else /* !CONFIG_ACPI_SLEEP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480static inline void save_pg_dir(void)
481{
482}
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100483#endif /* !CONFIG_ACPI_SLEEP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Ingo Molnar8550eb92008-01-30 13:34:10 +0100485void zap_low_mappings(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486{
487 int i;
488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 /*
490 * Zap initial low-memory mappings.
491 *
492 * Note that "pgd_clear()" doesn't do it for
493 * us, because pgd_clear() is a no-op on i386.
494 */
Jeremy Fitzhardinge68db0652008-03-17 16:37:13 -0700495 for (i = 0; i < KERNEL_PGD_BOUNDARY; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496#ifdef CONFIG_X86_PAE
497 set_pgd(swapper_pg_dir+i, __pgd(1 + __pa(empty_zero_page)));
498#else
499 set_pgd(swapper_pg_dir+i, __pgd(0));
500#endif
Ingo Molnar8550eb92008-01-30 13:34:10 +0100501 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 flush_tlb_all();
503}
504
Ingo Molnar8550eb92008-01-30 13:34:10 +0100505int nx_enabled;
Jan Beulichd5321ab2007-07-21 17:10:26 +0200506
Jeremy Fitzhardingeef5e94a2008-07-01 16:46:36 -0700507pteval_t __supported_pte_mask __read_mostly = ~(_PAGE_NX | _PAGE_GLOBAL);
Jeremy Fitzhardinge6fdc05d2008-01-30 13:32:57 +0100508EXPORT_SYMBOL_GPL(__supported_pte_mask);
509
Jan Beulichd5321ab2007-07-21 17:10:26 +0200510#ifdef CONFIG_X86_PAE
511
Ingo Molnar8550eb92008-01-30 13:34:10 +0100512static int disable_nx __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
514/*
515 * noexec = on|off
516 *
517 * Control non executable mappings.
518 *
519 * on Enable
520 * off Disable
521 */
Rusty Russell1a3f2392006-09-26 10:52:32 +0200522static int __init noexec_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
Rusty Russell1a3f2392006-09-26 10:52:32 +0200524 if (!str || !strcmp(str, "on")) {
525 if (cpu_has_nx) {
526 __supported_pte_mask |= _PAGE_NX;
527 disable_nx = 0;
528 }
Ingo Molnar8550eb92008-01-30 13:34:10 +0100529 } else {
530 if (!strcmp(str, "off")) {
531 disable_nx = 1;
532 __supported_pte_mask &= ~_PAGE_NX;
533 } else {
534 return -EINVAL;
535 }
536 }
Rusty Russell1a3f2392006-09-26 10:52:32 +0200537
538 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539}
Rusty Russell1a3f2392006-09-26 10:52:32 +0200540early_param("noexec", noexec_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542static void __init set_nx(void)
543{
544 unsigned int v[4], l, h;
545
546 if (cpu_has_pae && (cpuid_eax(0x80000000) > 0x80000001)) {
547 cpuid(0x80000001, &v[0], &v[1], &v[2], &v[3]);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 if ((v[3] & (1 << 20)) && !disable_nx) {
550 rdmsr(MSR_EFER, l, h);
551 l |= EFER_NX;
552 wrmsr(MSR_EFER, l, h);
553 nx_enabled = 1;
554 __supported_pte_mask |= _PAGE_NX;
555 }
556 }
557}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558#endif
559
Yinghai Lu90d967e2008-06-23 21:00:45 +0200560/* user-defined highmem size */
561static unsigned int highmem_pages = -1;
562
563/*
564 * highmem=size forces highmem to be exactly 'size' bytes.
565 * This works even on boxes that have no highmem otherwise.
566 * This also works to reduce highmem size on bigger boxes.
567 */
568static int __init parse_highmem(char *arg)
569{
570 if (!arg)
571 return -EINVAL;
572
573 highmem_pages = memparse(arg, &arg) >> PAGE_SHIFT;
574 return 0;
575}
576early_param("highmem", parse_highmem);
577
578/*
579 * Determine low and high memory ranges:
580 */
Yinghai Lu2ec65f82008-06-23 03:05:30 -0700581void __init find_low_pfn_range(void)
Yinghai Lu90d967e2008-06-23 21:00:45 +0200582{
Yinghai Lu2ec65f82008-06-23 03:05:30 -0700583 /* it could update max_pfn */
584
Yinghai Lu346cafe2008-06-23 03:06:14 -0700585 /* max_low_pfn is 0, we already have early_res support */
Yinghai Lu90d967e2008-06-23 21:00:45 +0200586
587 max_low_pfn = max_pfn;
588 if (max_low_pfn > MAXMEM_PFN) {
589 if (highmem_pages == -1)
590 highmem_pages = max_pfn - MAXMEM_PFN;
591 if (highmem_pages + MAXMEM_PFN < max_pfn)
592 max_pfn = MAXMEM_PFN + highmem_pages;
593 if (highmem_pages + MAXMEM_PFN > max_pfn) {
594 printk(KERN_WARNING "only %luMB highmem pages "
595 "available, ignoring highmem size of %uMB.\n",
596 pages_to_mb(max_pfn - MAXMEM_PFN),
597 pages_to_mb(highmem_pages));
598 highmem_pages = 0;
599 }
600 max_low_pfn = MAXMEM_PFN;
601#ifndef CONFIG_HIGHMEM
602 /* Maximum memory usable is what is directly addressable */
603 printk(KERN_WARNING "Warning only %ldMB will be used.\n",
604 MAXMEM>>20);
605 if (max_pfn > MAX_NONPAE_PFN)
606 printk(KERN_WARNING
607 "Use a HIGHMEM64G enabled kernel.\n");
608 else
609 printk(KERN_WARNING "Use a HIGHMEM enabled kernel.\n");
610 max_pfn = MAXMEM_PFN;
611#else /* !CONFIG_HIGHMEM */
612#ifndef CONFIG_HIGHMEM64G
613 if (max_pfn > MAX_NONPAE_PFN) {
614 max_pfn = MAX_NONPAE_PFN;
615 printk(KERN_WARNING "Warning only 4GB will be used."
616 "Use a HIGHMEM64G enabled kernel.\n");
617 }
618#endif /* !CONFIG_HIGHMEM64G */
619#endif /* !CONFIG_HIGHMEM */
620 } else {
621 if (highmem_pages == -1)
622 highmem_pages = 0;
623#ifdef CONFIG_HIGHMEM
624 if (highmem_pages >= max_pfn) {
625 printk(KERN_ERR "highmem size specified (%uMB) is "
626 "bigger than pages available (%luMB)!.\n",
627 pages_to_mb(highmem_pages),
628 pages_to_mb(max_pfn));
629 highmem_pages = 0;
630 }
631 if (highmem_pages) {
632 if (max_low_pfn - highmem_pages <
633 64*1024*1024/PAGE_SIZE){
634 printk(KERN_ERR "highmem size %uMB results in "
635 "smaller than 64MB lowmem, ignoring it.\n"
636 , pages_to_mb(highmem_pages));
637 highmem_pages = 0;
638 }
639 max_low_pfn -= highmem_pages;
640 }
641#else
642 if (highmem_pages)
643 printk(KERN_ERR "ignoring highmem size on non-highmem"
644 " kernel!\n");
645#endif
646 }
Yinghai Lu90d967e2008-06-23 21:00:45 +0200647}
648
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700649#ifndef CONFIG_NEED_MULTIPLE_NODES
Yinghai Lu2ec65f82008-06-23 03:05:30 -0700650void __init initmem_init(unsigned long start_pfn,
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700651 unsigned long end_pfn)
652{
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700653#ifdef CONFIG_HIGHMEM
654 highstart_pfn = highend_pfn = max_pfn;
655 if (max_pfn > max_low_pfn)
656 highstart_pfn = max_low_pfn;
657 memory_present(0, 0, highend_pfn);
Yinghai Lucb95a132008-07-02 00:31:02 -0700658 e820_register_active_regions(0, 0, highend_pfn);
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700659 printk(KERN_NOTICE "%ldMB HIGHMEM available.\n",
660 pages_to_mb(highend_pfn - highstart_pfn));
661 num_physpages = highend_pfn;
662 high_memory = (void *) __va(highstart_pfn * PAGE_SIZE - 1) + 1;
663#else
664 memory_present(0, 0, max_low_pfn);
Yinghai Lucb95a132008-07-02 00:31:02 -0700665 e820_register_active_regions(0, 0, max_low_pfn);
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700666 num_physpages = max_low_pfn;
667 high_memory = (void *) __va(max_low_pfn * PAGE_SIZE - 1) + 1;
668#endif
669#ifdef CONFIG_FLATMEM
670 max_mapnr = num_physpages;
671#endif
672 printk(KERN_NOTICE "%ldMB LOWMEM available.\n",
673 pages_to_mb(max_low_pfn));
674
675 setup_bootmem_allocator();
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700676}
Yinghai Lucb95a132008-07-02 00:31:02 -0700677#endif /* !CONFIG_NEED_MULTIPLE_NODES */
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700678
Yinghai Lucb95a132008-07-02 00:31:02 -0700679static void __init zone_sizes_init(void)
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700680{
681 unsigned long max_zone_pfns[MAX_NR_ZONES];
682 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
683 max_zone_pfns[ZONE_DMA] =
684 virt_to_phys((char *)MAX_DMA_ADDRESS) >> PAGE_SHIFT;
685 max_zone_pfns[ZONE_NORMAL] = max_low_pfn;
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700686#ifdef CONFIG_HIGHMEM
687 max_zone_pfns[ZONE_HIGHMEM] = highend_pfn;
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700688#endif
689
690 free_area_init_nodes(max_zone_pfns);
691}
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700692
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700693void __init setup_bootmem_allocator(void)
694{
695 int i;
696 unsigned long bootmap_size, bootmap;
697 /*
698 * Initialize the boot-time allocator (with low memory only):
699 */
700 bootmap_size = bootmem_bootmap_pages(max_low_pfn)<<PAGE_SHIFT;
701 bootmap = find_e820_area(min_low_pfn<<PAGE_SHIFT,
702 max_pfn_mapped<<PAGE_SHIFT, bootmap_size,
703 PAGE_SIZE);
704 if (bootmap == -1L)
705 panic("Cannot find bootmem map of size %ld\n", bootmap_size);
706 reserve_early(bootmap, bootmap + bootmap_size, "BOOTMAP");
Yinghai Lu225c37d2008-06-22 02:46:58 -0700707
Yinghai Lu346cafe2008-06-23 03:06:14 -0700708 /* don't touch min_low_pfn */
709 bootmap_size = init_bootmem_node(NODE_DATA(0), bootmap >> PAGE_SHIFT,
710 min_low_pfn, max_low_pfn);
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700711 printk(KERN_INFO " mapped low ram: 0 - %08lx\n",
712 max_pfn_mapped<<PAGE_SHIFT);
713 printk(KERN_INFO " low ram: %08lx - %08lx\n",
714 min_low_pfn<<PAGE_SHIFT, max_low_pfn<<PAGE_SHIFT);
715 printk(KERN_INFO " bootmap %08lx - %08lx\n",
716 bootmap, bootmap + bootmap_size);
717 for_each_online_node(i)
718 free_bootmem_with_active_regions(i, max_low_pfn);
719 early_res_to_bootmem(0, max_low_pfn<<PAGE_SHIFT);
720
Yinghai Lu4e296842008-06-24 12:18:14 -0700721 after_init_bootmem = 1;
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700722}
723
Yinghai Lu4e296842008-06-24 12:18:14 -0700724static void __init find_early_table_space(unsigned long end)
725{
Yinghai Lu7482b0e2008-06-28 03:30:39 -0700726 unsigned long puds, pmds, ptes, tables, start;
Yinghai Lu4e296842008-06-24 12:18:14 -0700727
728 puds = (end + PUD_SIZE - 1) >> PUD_SHIFT;
729 tables = PAGE_ALIGN(puds * sizeof(pud_t));
730
731 pmds = (end + PMD_SIZE - 1) >> PMD_SHIFT;
732 tables += PAGE_ALIGN(pmds * sizeof(pmd_t));
733
Yinghai Lu7482b0e2008-06-28 03:30:39 -0700734 if (cpu_has_pse) {
735 unsigned long extra;
Yinghai Lua04ad822008-06-29 00:39:06 -0700736
737 extra = end - ((end>>PMD_SHIFT) << PMD_SHIFT);
738 extra += PMD_SIZE;
Yinghai Lu7482b0e2008-06-28 03:30:39 -0700739 ptes = (extra + PAGE_SIZE - 1) >> PAGE_SHIFT;
740 } else
741 ptes = (end + PAGE_SIZE - 1) >> PAGE_SHIFT;
742
743 tables += PAGE_ALIGN(ptes * sizeof(pte_t));
Jeremy Fitzhardinge8207c252008-06-24 17:32:48 -0400744
Yinghai Lua04ad822008-06-29 00:39:06 -0700745 /* for fixmap */
746 tables += PAGE_SIZE * 2;
747
Yinghai Lu4e296842008-06-24 12:18:14 -0700748 /*
749 * RED-PEN putting page tables only on node 0 could
750 * cause a hotspot and fill up ZONE_DMA. The page tables
751 * need roughly 0.5KB per GB.
752 */
753 start = 0x7000;
754 table_start = find_e820_area(start, max_pfn_mapped<<PAGE_SHIFT,
755 tables, PAGE_SIZE);
756 if (table_start == -1UL)
757 panic("Cannot find space for the kernel page tables");
758
759 table_start >>= PAGE_SHIFT;
760 table_end = table_start;
761 table_top = table_start + (tables>>PAGE_SHIFT);
762
763 printk(KERN_DEBUG "kernel direct mapping tables up to %lx @ %lx-%lx\n",
764 end, table_start << PAGE_SHIFT,
765 (table_start << PAGE_SHIFT) + tables);
766}
767
768unsigned long __init_refok init_memory_mapping(unsigned long start,
769 unsigned long end)
770{
771 pgd_t *pgd_base = swapper_pg_dir;
Yinghai Lua04ad822008-06-29 00:39:06 -0700772 unsigned long start_pfn, end_pfn;
773 unsigned long big_page_start;
Yinghai Lu4e296842008-06-24 12:18:14 -0700774
775 /*
776 * Find space for the kernel direct mapping tables.
777 */
778 if (!after_init_bootmem)
779 find_early_table_space(end);
780
781#ifdef CONFIG_X86_PAE
782 set_nx();
783 if (nx_enabled)
784 printk(KERN_INFO "NX (Execute Disable) protection: active\n");
785#endif
786
787 /* Enable PSE if available */
788 if (cpu_has_pse)
789 set_in_cr4(X86_CR4_PSE);
790
791 /* Enable PGE if available */
792 if (cpu_has_pge) {
793 set_in_cr4(X86_CR4_PGE);
Jeremy Fitzhardingeef5e94a2008-07-01 16:46:36 -0700794 __supported_pte_mask |= _PAGE_GLOBAL;
Yinghai Lu4e296842008-06-24 12:18:14 -0700795 }
796
Yinghai Lua04ad822008-06-29 00:39:06 -0700797 /*
798 * Don't use a large page for the first 2/4MB of memory
799 * because there are often fixed size MTRRs in there
800 * and overlapping MTRRs into large pages can cause
801 * slowdowns.
802 */
803 big_page_start = PMD_SIZE;
804
805 if (start < big_page_start) {
806 start_pfn = start >> PAGE_SHIFT;
807 end_pfn = min(big_page_start>>PAGE_SHIFT, end>>PAGE_SHIFT);
808 } else {
809 /* head is not big page alignment ? */
810 start_pfn = start >> PAGE_SHIFT;
811 end_pfn = ((start + (PMD_SIZE - 1))>>PMD_SHIFT)
812 << (PMD_SHIFT - PAGE_SHIFT);
813 }
814 if (start_pfn < end_pfn)
815 kernel_physical_mapping_init(pgd_base, start_pfn, end_pfn, 0);
816
817 /* big page range */
818 start_pfn = ((start + (PMD_SIZE - 1))>>PMD_SHIFT)
819 << (PMD_SHIFT - PAGE_SHIFT);
820 if (start_pfn < (big_page_start >> PAGE_SHIFT))
821 start_pfn = big_page_start >> PAGE_SHIFT;
822 end_pfn = (end>>PMD_SHIFT) << (PMD_SHIFT - PAGE_SHIFT);
823 if (start_pfn < end_pfn)
824 kernel_physical_mapping_init(pgd_base, start_pfn, end_pfn,
825 cpu_has_pse);
826
827 /* tail is not big page alignment ? */
828 start_pfn = end_pfn;
829 if (start_pfn > (big_page_start>>PAGE_SHIFT)) {
830 end_pfn = end >> PAGE_SHIFT;
831 if (start_pfn < end_pfn)
832 kernel_physical_mapping_init(pgd_base, start_pfn,
833 end_pfn, 0);
834 }
Yinghai Lu4e296842008-06-24 12:18:14 -0700835
Yinghai Lue7b37892008-06-25 21:51:28 -0700836 early_ioremap_page_table_range_init(pgd_base);
837
Yinghai Lu4e296842008-06-24 12:18:14 -0700838 load_cr3(swapper_pg_dir);
839
840 __flush_tlb_all();
841
842 if (!after_init_bootmem)
843 reserve_early(table_start << PAGE_SHIFT,
844 table_end << PAGE_SHIFT, "PGTABLE");
845
846 return end >> PAGE_SHIFT;
847}
848
Yinghai Lue7b37892008-06-25 21:51:28 -0700849
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850/*
851 * paging_init() sets up the page tables - note that the first 8MB are
852 * already mapped by head.S.
853 *
854 * This routines also unmaps the page at virtual kernel address 0, so
855 * that we can trap those pesky NULL-reference errors in the kernel.
856 */
857void __init paging_init(void)
858{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 pagetable_init();
860
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 __flush_tlb_all();
862
863 kmap_init();
Yinghai Lu11cd0bc2008-06-23 19:51:10 -0700864
865 /*
866 * NOTE: at this point the bootmem allocator is fully available.
867 */
Yinghai Lu11cd0bc2008-06-23 19:51:10 -0700868 sparse_init();
869 zone_sizes_init();
870
871 paravirt_post_allocator_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872}
873
874/*
875 * Test if the WP bit works in supervisor mode. It isn't supported on 386's
Dmitri Vorobievf7f17a62008-04-21 00:47:55 +0400876 * and also on some strange 486's. All 586+'s are OK. This used to involve
877 * black magic jumps to work around some nasty CPU bugs, but fortunately the
878 * switch to using exceptions got rid of all that.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880static void __init test_wp_bit(void)
881{
Ingo Molnard7d119d2008-01-30 13:34:10 +0100882 printk(KERN_INFO
883 "Checking if this processor honours the WP bit even in supervisor mode...");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
885 /* Any page-aligned address will do, the test is non-destructive */
886 __set_fixmap(FIX_WP_TEST, __pa(&swapper_pg_dir), PAGE_READONLY);
887 boot_cpu_data.wp_works_ok = do_test_wp_bit();
888 clear_fixmap(FIX_WP_TEST);
889
890 if (!boot_cpu_data.wp_works_ok) {
Ingo Molnard7d119d2008-01-30 13:34:10 +0100891 printk(KERN_CONT "No.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892#ifdef CONFIG_X86_WP_WORKS_OK
Ingo Molnard7d119d2008-01-30 13:34:10 +0100893 panic(
894 "This kernel doesn't support CPU's with broken WP. Recompile it for a 386!");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895#endif
896 } else {
Ingo Molnard7d119d2008-01-30 13:34:10 +0100897 printk(KERN_CONT "Ok.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 }
899}
900
Ingo Molnar8550eb92008-01-30 13:34:10 +0100901static struct kcore_list kcore_mem, kcore_vmalloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
903void __init mem_init(void)
904{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 int codesize, reservedpages, datasize, initsize;
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700906 int tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
Andy Whitcroft05b79bd2005-06-23 00:07:57 -0700908#ifdef CONFIG_FLATMEM
Eric Sesterhenn8d8f3cb2006-10-03 23:34:58 +0200909 BUG_ON(!mem_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 /* this will put all low memory onto the freelists */
912 totalram_pages += free_all_bootmem();
913
914 reservedpages = 0;
915 for (tmp = 0; tmp < max_low_pfn; tmp++)
916 /*
Ingo Molnar8550eb92008-01-30 13:34:10 +0100917 * Only count reserved RAM pages:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 */
919 if (page_is_ram(tmp) && PageReserved(pfn_to_page(tmp)))
920 reservedpages++;
921
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700922 set_highmem_pages_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
924 codesize = (unsigned long) &_etext - (unsigned long) &_text;
925 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
926 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
927
Ingo Molnar8550eb92008-01-30 13:34:10 +0100928 kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
929 kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 VMALLOC_END-VMALLOC_START);
931
Ingo Molnar8550eb92008-01-30 13:34:10 +0100932 printk(KERN_INFO "Memory: %luk/%luk available (%dk kernel code, "
933 "%dk reserved, %dk data, %dk init, %ldk highmem)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
935 num_physpages << (PAGE_SHIFT-10),
936 codesize >> 10,
937 reservedpages << (PAGE_SHIFT-10),
938 datasize >> 10,
939 initsize >> 10,
940 (unsigned long) (totalhigh_pages << (PAGE_SHIFT-10))
941 );
942
Ingo Molnard7d119d2008-01-30 13:34:10 +0100943 printk(KERN_INFO "virtual kernel memory layout:\n"
Ingo Molnar8550eb92008-01-30 13:34:10 +0100944 " fixmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700945#ifdef CONFIG_HIGHMEM
Ingo Molnar8550eb92008-01-30 13:34:10 +0100946 " pkmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700947#endif
Ingo Molnar8550eb92008-01-30 13:34:10 +0100948 " vmalloc : 0x%08lx - 0x%08lx (%4ld MB)\n"
949 " lowmem : 0x%08lx - 0x%08lx (%4ld MB)\n"
950 " .init : 0x%08lx - 0x%08lx (%4ld kB)\n"
951 " .data : 0x%08lx - 0x%08lx (%4ld kB)\n"
952 " .text : 0x%08lx - 0x%08lx (%4ld kB)\n",
953 FIXADDR_START, FIXADDR_TOP,
954 (FIXADDR_TOP - FIXADDR_START) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700955
956#ifdef CONFIG_HIGHMEM
Ingo Molnar8550eb92008-01-30 13:34:10 +0100957 PKMAP_BASE, PKMAP_BASE+LAST_PKMAP*PAGE_SIZE,
958 (LAST_PKMAP*PAGE_SIZE) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700959#endif
960
Ingo Molnar8550eb92008-01-30 13:34:10 +0100961 VMALLOC_START, VMALLOC_END,
962 (VMALLOC_END - VMALLOC_START) >> 20,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700963
Ingo Molnar8550eb92008-01-30 13:34:10 +0100964 (unsigned long)__va(0), (unsigned long)high_memory,
965 ((unsigned long)high_memory - (unsigned long)__va(0)) >> 20,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700966
Ingo Molnar8550eb92008-01-30 13:34:10 +0100967 (unsigned long)&__init_begin, (unsigned long)&__init_end,
968 ((unsigned long)&__init_end -
969 (unsigned long)&__init_begin) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700970
Ingo Molnar8550eb92008-01-30 13:34:10 +0100971 (unsigned long)&_etext, (unsigned long)&_edata,
972 ((unsigned long)&_edata - (unsigned long)&_etext) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700973
Ingo Molnar8550eb92008-01-30 13:34:10 +0100974 (unsigned long)&_text, (unsigned long)&_etext,
975 ((unsigned long)&_etext - (unsigned long)&_text) >> 10);
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700976
977#ifdef CONFIG_HIGHMEM
Ingo Molnar8550eb92008-01-30 13:34:10 +0100978 BUG_ON(PKMAP_BASE + LAST_PKMAP*PAGE_SIZE > FIXADDR_START);
979 BUG_ON(VMALLOC_END > PKMAP_BASE);
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700980#endif
Ingo Molnar8550eb92008-01-30 13:34:10 +0100981 BUG_ON(VMALLOC_START > VMALLOC_END);
982 BUG_ON((unsigned long)high_memory > VMALLOC_START);
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700983
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 if (boot_cpu_data.wp_works_ok < 0)
985 test_wp_bit();
986
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100987 cpa_init();
Hugh Dickins61165d72008-05-13 14:26:57 +0100988 save_pg_dir();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 zap_low_mappings();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990}
991
KAMEZAWA Hiroyukiad8f5792006-05-20 15:00:03 -0700992#ifdef CONFIG_MEMORY_HOTPLUG
Yasunori Gotobc02af92006-06-27 02:53:30 -0700993int arch_add_memory(int nid, u64 start, u64 size)
Dave Hansen05039b92005-10-29 18:16:57 -0700994{
Yasunori Goto7c7e9422006-12-22 01:11:13 -0800995 struct pglist_data *pgdata = NODE_DATA(nid);
Christoph Lameter776ed982006-09-25 23:31:09 -0700996 struct zone *zone = pgdata->node_zones + ZONE_HIGHMEM;
Dave Hansen05039b92005-10-29 18:16:57 -0700997 unsigned long start_pfn = start >> PAGE_SHIFT;
998 unsigned long nr_pages = size >> PAGE_SHIFT;
999
1000 return __add_pages(zone, start_pfn, nr_pages);
1001}
Andi Kleen9d99aaa2006-04-07 19:49:15 +02001002#endif
Dave Hansen05039b92005-10-29 18:16:57 -07001003
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004/*
1005 * This function cannot be __init, since exceptions don't work in that
1006 * section. Put this after the callers, so that it cannot be inlined.
1007 */
Ingo Molnar8550eb92008-01-30 13:34:10 +01001008static noinline int do_test_wp_bit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009{
1010 char tmp_reg;
1011 int flag;
1012
1013 __asm__ __volatile__(
Ingo Molnar8550eb92008-01-30 13:34:10 +01001014 " movb %0, %1 \n"
1015 "1: movb %1, %0 \n"
1016 " xorl %2, %2 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 "2: \n"
H. Peter Anvinf832ff12008-02-04 16:47:58 +01001018 _ASM_EXTABLE(1b,2b)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 :"=m" (*(char *)fix_to_virt(FIX_WP_TEST)),
1020 "=q" (tmp_reg),
1021 "=r" (flag)
1022 :"2" (1)
1023 :"memory");
Ingo Molnar8550eb92008-01-30 13:34:10 +01001024
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 return flag;
1026}
1027
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001028#ifdef CONFIG_DEBUG_RODATA
Arjan van de Venedeed302008-01-30 13:34:08 +01001029const int rodata_test_data = 0xC3;
1030EXPORT_SYMBOL_GPL(rodata_test_data);
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001031
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001032void mark_rodata_ro(void)
1033{
Jan Beulich6fb14752007-05-02 19:27:10 +02001034 unsigned long start = PFN_ALIGN(_text);
1035 unsigned long size = PFN_ALIGN(_etext) - start;
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001036
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -05001037 set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
1038 printk(KERN_INFO "Write protecting the kernel text: %luk\n",
1039 size >> 10);
Andi Kleen0c42f392008-01-30 13:33:42 +01001040
1041#ifdef CONFIG_CPA_DEBUG
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -05001042 printk(KERN_INFO "Testing CPA: Reverting %lx-%lx\n",
1043 start, start+size);
1044 set_pages_rw(virt_to_page(start), size>>PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +01001045
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -05001046 printk(KERN_INFO "Testing CPA: write protecting again\n");
1047 set_pages_ro(virt_to_page(start), size>>PAGE_SHIFT);
Linus Torvalds602033e2007-07-26 12:07:21 -07001048#endif
Jan Beulich6fb14752007-05-02 19:27:10 +02001049 start += size;
1050 size = (unsigned long)__end_rodata - start;
Arjan van de Ven6d238cc2008-01-30 13:34:06 +01001051 set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
Ingo Molnard7d119d2008-01-30 13:34:10 +01001052 printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
1053 size >> 10);
Arjan van de Venedeed302008-01-30 13:34:08 +01001054 rodata_test();
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001055
Andi Kleen0c42f392008-01-30 13:33:42 +01001056#ifdef CONFIG_CPA_DEBUG
Ingo Molnard7d119d2008-01-30 13:34:10 +01001057 printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, start + size);
Arjan van de Ven6d238cc2008-01-30 13:34:06 +01001058 set_pages_rw(virt_to_page(start), size >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +01001059
Ingo Molnard7d119d2008-01-30 13:34:10 +01001060 printk(KERN_INFO "Testing CPA: write protecting again\n");
Arjan van de Ven6d238cc2008-01-30 13:34:06 +01001061 set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +01001062#endif
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001063}
1064#endif
1065
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001066void free_init_pages(char *what, unsigned long begin, unsigned long end)
1067{
Ingo Molnaree01f112008-01-30 13:34:09 +01001068#ifdef CONFIG_DEBUG_PAGEALLOC
1069 /*
1070 * If debugging page accesses then do not free this memory but
1071 * mark them not present - any buggy init-section access will
1072 * create a kernel page fault:
1073 */
1074 printk(KERN_INFO "debug: unmapping init memory %08lx..%08lx\n",
1075 begin, PAGE_ALIGN(end));
1076 set_memory_np(begin, (end - begin) >> PAGE_SHIFT);
1077#else
Ingo Molnar86f03982008-01-30 13:34:09 +01001078 unsigned long addr;
1079
Arjan van de Ven3c1df682008-01-30 13:34:07 +01001080 /*
1081 * We just marked the kernel text read only above, now that
1082 * we are going to free part of that, we need to make that
1083 * writeable first.
1084 */
1085 set_memory_rw(begin, (end - begin) >> PAGE_SHIFT);
1086
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001087 for (addr = begin; addr < end; addr += PAGE_SIZE) {
Linus Torvaldse3ebadd2007-05-07 08:44:24 -07001088 ClearPageReserved(virt_to_page(addr));
1089 init_page_count(virt_to_page(addr));
1090 memset((void *)addr, POISON_FREE_INITMEM, PAGE_SIZE);
1091 free_page(addr);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001092 totalram_pages++;
1093 }
Jan Beulich6fb14752007-05-02 19:27:10 +02001094 printk(KERN_INFO "Freeing %s: %luk freed\n", what, (end - begin) >> 10);
Ingo Molnaree01f112008-01-30 13:34:09 +01001095#endif
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001096}
1097
1098void free_initmem(void)
1099{
1100 free_init_pages("unused kernel memory",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -07001101 (unsigned long)(&__init_begin),
1102 (unsigned long)(&__init_end));
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001103}
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105#ifdef CONFIG_BLK_DEV_INITRD
1106void free_initrd_mem(unsigned long start, unsigned long end)
1107{
Linus Torvaldse3ebadd2007-05-07 08:44:24 -07001108 free_init_pages("initrd memory", start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109}
1110#endif
Yinghai Lud2dbf342008-06-13 02:00:56 -07001111
1112int __init reserve_bootmem_generic(unsigned long phys, unsigned long len,
1113 int flags)
1114{
1115 return reserve_bootmem(phys, len, flags);
1116}