blob: 4974e97dedfedad5adcdebc142c3ef2771f99c3a [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>
Jaswinder Singha80495e2008-07-23 17:33:57 +053050#include <asm/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52unsigned int __VMALLOC_RESERVE = 128 << 20;
53
Yinghai Luf361a452008-07-10 20:38:26 -070054unsigned long max_low_pfn_mapped;
Thomas Gleixner67794292008-03-21 21:27:10 +010055unsigned long max_pfn_mapped;
Andi Kleen7d1116a2008-03-12 03:53:27 +010056
Linus Torvalds1da177e2005-04-16 15:20:36 -070057DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
58unsigned long highstart_pfn, highend_pfn;
59
Ingo Molnar8550eb92008-01-30 13:34:10 +010060static noinline int do_test_wp_bit(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Yinghai Lu4e296842008-06-24 12:18:14 -070062
63static unsigned long __initdata table_start;
64static unsigned long __meminitdata table_end;
65static unsigned long __meminitdata table_top;
66
67static int __initdata after_init_bootmem;
68
69static __init void *alloc_low_page(unsigned long *phys)
70{
71 unsigned long pfn = table_end++;
72 void *adr;
73
74 if (pfn >= table_top)
75 panic("alloc_low_page: ran out of memory");
76
77 adr = __va(pfn * PAGE_SIZE);
78 memset(adr, 0, PAGE_SIZE);
79 *phys = pfn * PAGE_SIZE;
80 return adr;
81}
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083/*
84 * Creates a middle page table and puts a pointer to it in the
85 * given global directory entry. This only returns the gd entry
86 * in non-PAE compilation mode, since the middle layer is folded.
87 */
88static pmd_t * __init one_md_table_init(pgd_t *pgd)
89{
90 pud_t *pud;
91 pmd_t *pmd_table;
Ingo Molnar8550eb92008-01-30 13:34:10 +010092
Linus Torvalds1da177e2005-04-16 15:20:36 -070093#ifdef CONFIG_X86_PAE
Yinghai Lu4e296842008-06-24 12:18:14 -070094 unsigned long phys;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +020095 if (!(pgd_val(*pgd) & _PAGE_PRESENT)) {
Yinghai Lu4e296842008-06-24 12:18:14 -070096 if (after_init_bootmem)
97 pmd_table = (pmd_t *)alloc_bootmem_low_pages(PAGE_SIZE);
98 else
99 pmd_table = (pmd_t *)alloc_low_page(&phys);
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700100 paravirt_alloc_pmd(&init_mm, __pa(pmd_table) >> PAGE_SHIFT);
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200101 set_pgd(pgd, __pgd(__pa(pmd_table) | _PAGE_PRESENT));
102 pud = pud_offset(pgd, 0);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100103 BUG_ON(pmd_table != pmd_offset(pud, 0));
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200104 }
105#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 pud = pud_offset(pgd, 0);
107 pmd_table = pmd_offset(pud, 0);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 return pmd_table;
110}
111
112/*
113 * Create a page table and place a pointer to it in a middle page
Ingo Molnar8550eb92008-01-30 13:34:10 +0100114 * directory entry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 */
116static pte_t * __init one_page_table_init(pmd_t *pmd)
117{
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200118 if (!(pmd_val(*pmd) & _PAGE_PRESENT)) {
Ingo Molnar509a80c2007-10-17 18:04:34 +0200119 pte_t *page_table = NULL;
120
Yinghai Lu4e296842008-06-24 12:18:14 -0700121 if (after_init_bootmem) {
Ingo Molnar509a80c2007-10-17 18:04:34 +0200122#ifdef CONFIG_DEBUG_PAGEALLOC
Yinghai Lu4e296842008-06-24 12:18:14 -0700123 page_table = (pte_t *) alloc_bootmem_pages(PAGE_SIZE);
Ingo Molnar509a80c2007-10-17 18:04:34 +0200124#endif
Yinghai Lu4e296842008-06-24 12:18:14 -0700125 if (!page_table)
126 page_table =
Ingo Molnar509a80c2007-10-17 18:04:34 +0200127 (pte_t *)alloc_bootmem_low_pages(PAGE_SIZE);
Yinghai Lu4e296842008-06-24 12:18:14 -0700128 } else {
129 unsigned long phys;
130 page_table = (pte_t *)alloc_low_page(&phys);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100131 }
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200132
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700133 paravirt_alloc_pte(&init_mm, __pa(page_table) >> PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 set_pmd(pmd, __pmd(__pa(page_table) | _PAGE_TABLE));
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200135 BUG_ON(page_table != pte_offset_kernel(pmd, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 }
Ingo Molnar509a80c2007-10-17 18:04:34 +0200137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 return pte_offset_kernel(pmd, 0);
139}
140
141/*
Ingo Molnar8550eb92008-01-30 13:34:10 +0100142 * This function initializes a certain range of kernel virtual memory
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 * with new bootmem page tables, everywhere page tables are missing in
144 * the given range.
Ingo Molnar8550eb92008-01-30 13:34:10 +0100145 *
146 * NOTE: The pagetables are allocated contiguous on the physical space
147 * so we can cache the place of the first one and move around without
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 * checking the pgd every time.
149 */
Ingo Molnar8550eb92008-01-30 13:34:10 +0100150static void __init
151page_table_range_init(unsigned long start, unsigned long end, pgd_t *pgd_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 int pgd_idx, pmd_idx;
154 unsigned long vaddr;
Ingo Molnar8550eb92008-01-30 13:34:10 +0100155 pgd_t *pgd;
156 pmd_t *pmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158 vaddr = start;
159 pgd_idx = pgd_index(vaddr);
160 pmd_idx = pmd_index(vaddr);
161 pgd = pgd_base + pgd_idx;
162
163 for ( ; (pgd_idx < PTRS_PER_PGD) && (vaddr != end); pgd++, pgd_idx++) {
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200164 pmd = one_md_table_init(pgd);
165 pmd = pmd + pmd_index(vaddr);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100166 for (; (pmd_idx < PTRS_PER_PMD) && (vaddr != end);
167 pmd++, pmd_idx++) {
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200168 one_page_table_init(pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170 vaddr += PMD_SIZE;
171 }
172 pmd_idx = 0;
173 }
174}
175
176static inline int is_kernel_text(unsigned long addr)
177{
178 if (addr >= PAGE_OFFSET && addr <= (unsigned long)__init_end)
179 return 1;
180 return 0;
181}
182
183/*
Ingo Molnar8550eb92008-01-30 13:34:10 +0100184 * This maps the physical memory to kernel virtual address space, a total
185 * of max_low_pfn pages, by creating page tables starting from address
186 * PAGE_OFFSET:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 */
Yinghai Lu4e296842008-06-24 12:18:14 -0700188static void __init kernel_physical_mapping_init(pgd_t *pgd_base,
Yinghai Lua04ad822008-06-29 00:39:06 -0700189 unsigned long start_pfn,
190 unsigned long end_pfn,
191 int use_pse)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
Ingo Molnar8550eb92008-01-30 13:34:10 +0100193 int pgd_idx, pmd_idx, pte_ofs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 unsigned long pfn;
195 pgd_t *pgd;
196 pmd_t *pmd;
197 pte_t *pte;
Andi Kleence0c0e52008-05-02 11:46:49 +0200198 unsigned pages_2m = 0, pages_4k = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Yinghai Lua04ad822008-06-29 00:39:06 -0700200 if (!cpu_has_pse)
201 use_pse = 0;
202
203 pfn = start_pfn;
204 pgd_idx = pgd_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 pgd = pgd_base + pgd_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 for (; pgd_idx < PTRS_PER_PGD; pgd++, pgd_idx++) {
207 pmd = one_md_table_init(pgd);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100208
Yinghai Lua04ad822008-06-29 00:39:06 -0700209 if (pfn >= end_pfn)
210 continue;
211#ifdef CONFIG_X86_PAE
212 pmd_idx = pmd_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
213 pmd += pmd_idx;
214#else
215 pmd_idx = 0;
216#endif
217 for (; pmd_idx < PTRS_PER_PMD && pfn < end_pfn;
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100218 pmd++, pmd_idx++) {
Ingo Molnar8550eb92008-01-30 13:34:10 +0100219 unsigned int addr = pfn * PAGE_SIZE + PAGE_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Ingo Molnar8550eb92008-01-30 13:34:10 +0100221 /*
222 * Map with big pages if possible, otherwise
223 * create normal page tables:
224 */
Yinghai Lua04ad822008-06-29 00:39:06 -0700225 if (use_pse) {
Ingo Molnar8550eb92008-01-30 13:34:10 +0100226 unsigned int addr2;
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100227 pgprot_t prot = PAGE_KERNEL_LARGE;
228
Ingo Molnar8550eb92008-01-30 13:34:10 +0100229 addr2 = (pfn + PTRS_PER_PTE-1) * PAGE_SIZE +
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100230 PAGE_OFFSET + PAGE_SIZE-1;
231
Ingo Molnar8550eb92008-01-30 13:34:10 +0100232 if (is_kernel_text(addr) ||
233 is_kernel_text(addr2))
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100234 prot = PAGE_KERNEL_LARGE_EXEC;
235
Andi Kleence0c0e52008-05-02 11:46:49 +0200236 pages_2m++;
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100237 set_pmd(pmd, pfn_pmd(pfn, prot));
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 pfn += PTRS_PER_PTE;
Ingo Molnar8550eb92008-01-30 13:34:10 +0100240 continue;
241 }
242 pte = one_page_table_init(pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Yinghai Lua04ad822008-06-29 00:39:06 -0700244 pte_ofs = pte_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
245 pte += pte_ofs;
246 for (; pte_ofs < PTRS_PER_PTE && pfn < end_pfn;
Ingo Molnar8550eb92008-01-30 13:34:10 +0100247 pte++, pfn++, pte_ofs++, addr += PAGE_SIZE) {
248 pgprot_t prot = PAGE_KERNEL;
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100249
Ingo Molnar8550eb92008-01-30 13:34:10 +0100250 if (is_kernel_text(addr))
251 prot = PAGE_KERNEL_EXEC;
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100252
Andi Kleence0c0e52008-05-02 11:46:49 +0200253 pages_4k++;
Ingo Molnar8550eb92008-01-30 13:34:10 +0100254 set_pte(pte, pfn_pte(pfn, prot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 }
256 }
257 }
Andi Kleence0c0e52008-05-02 11:46:49 +0200258 update_page_count(PG_LEVEL_2M, pages_2m);
259 update_page_count(PG_LEVEL_4K, pages_4k);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}
261
Arjan van de Venae531c22008-04-24 23:40:47 +0200262/*
263 * devmem_is_allowed() checks to see if /dev/mem access to a certain address
264 * is valid. The argument is a physical page number.
265 *
266 *
267 * On x86, access has to be given to the first megabyte of ram because that area
268 * contains bios code and data regions used by X and dosemu and similar apps.
269 * Access has to be given to non-kernel-ram areas as well, these contain the PCI
270 * mmio resources as well as potential bios/acpi data regions.
271 */
272int devmem_is_allowed(unsigned long pagenr)
273{
274 if (pagenr <= 256)
275 return 1;
276 if (!page_is_ram(pagenr))
277 return 1;
278 return 0;
279}
280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281#ifdef CONFIG_HIGHMEM
282pte_t *kmap_pte;
283pgprot_t kmap_prot;
284
Ingo Molnar8550eb92008-01-30 13:34:10 +0100285static inline pte_t *kmap_get_fixmap_pte(unsigned long vaddr)
286{
287 return pte_offset_kernel(pmd_offset(pud_offset(pgd_offset_k(vaddr),
288 vaddr), vaddr), vaddr);
289}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
291static void __init kmap_init(void)
292{
293 unsigned long kmap_vstart;
294
Ingo Molnar8550eb92008-01-30 13:34:10 +0100295 /*
296 * Cache the first kmap pte:
297 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 kmap_vstart = __fix_to_virt(FIX_KMAP_BEGIN);
299 kmap_pte = kmap_get_fixmap_pte(kmap_vstart);
300
301 kmap_prot = PAGE_KERNEL;
302}
303
304static void __init permanent_kmaps_init(pgd_t *pgd_base)
305{
Ingo Molnar8550eb92008-01-30 13:34:10 +0100306 unsigned long vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 pgd_t *pgd;
308 pud_t *pud;
309 pmd_t *pmd;
310 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
312 vaddr = PKMAP_BASE;
313 page_table_range_init(vaddr, vaddr + PAGE_SIZE*LAST_PKMAP, pgd_base);
314
315 pgd = swapper_pg_dir + pgd_index(vaddr);
316 pud = pud_offset(pgd, vaddr);
317 pmd = pmd_offset(pud, vaddr);
318 pte = pte_offset_kernel(pmd, vaddr);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100319 pkmap_page_table = pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320}
321
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700322static void __init add_one_highpage_init(struct page *page, int pfn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700324 ClearPageReserved(page);
325 init_page_count(page);
326 __free_page(page);
327 totalhigh_pages++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328}
329
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700330struct add_highpages_data {
331 unsigned long start_pfn;
332 unsigned long end_pfn;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700333};
334
Yinghai Lud52d53b2008-06-16 20:10:55 -0700335static int __init add_highpages_work_fn(unsigned long start_pfn,
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700336 unsigned long end_pfn, void *datax)
337{
338 int node_pfn;
339 struct page *page;
340 unsigned long final_start_pfn, final_end_pfn;
341 struct add_highpages_data *data;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700342
343 data = (struct add_highpages_data *)datax;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700344
345 final_start_pfn = max(start_pfn, data->start_pfn);
346 final_end_pfn = min(end_pfn, data->end_pfn);
347 if (final_start_pfn >= final_end_pfn)
Yinghai Lud52d53b2008-06-16 20:10:55 -0700348 return 0;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700349
350 for (node_pfn = final_start_pfn; node_pfn < final_end_pfn;
351 node_pfn++) {
352 if (!pfn_valid(node_pfn))
353 continue;
354 page = pfn_to_page(node_pfn);
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700355 add_one_highpage_init(page, node_pfn);
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700356 }
357
Yinghai Lud52d53b2008-06-16 20:10:55 -0700358 return 0;
359
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700360}
361
362void __init add_highpages_with_active_regions(int nid, unsigned long start_pfn,
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700363 unsigned long end_pfn)
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700364{
365 struct add_highpages_data data;
366
367 data.start_pfn = start_pfn;
368 data.end_pfn = end_pfn;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700369
370 work_with_active_regions(nid, add_highpages_work_fn, &data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371}
372
Ingo Molnar8550eb92008-01-30 13:34:10 +0100373#ifndef CONFIG_NUMA
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700374static void __init set_highmem_pages_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375{
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700376 add_highpages_with_active_regions(0, highstart_pfn, highend_pfn);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 totalram_pages += totalhigh_pages;
379}
Ingo Molnar8550eb92008-01-30 13:34:10 +0100380#endif /* !CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
382#else
Ingo Molnar8550eb92008-01-30 13:34:10 +0100383# define kmap_init() do { } while (0)
384# define permanent_kmaps_init(pgd_base) do { } while (0)
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700385# define set_highmem_pages_init() do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386#endif /* CONFIG_HIGHMEM */
387
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200388void __init native_pagetable_setup_start(pgd_t *base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
Ian Campbell551889a2008-02-09 23:24:09 +0100390 unsigned long pfn, va;
391 pgd_t *pgd;
392 pud_t *pud;
393 pmd_t *pmd;
394 pte_t *pte;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200395
396 /*
Ian Campbell551889a2008-02-09 23:24:09 +0100397 * Remove any mappings which extend past the end of physical
398 * memory from the boot time page table:
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200399 */
Ian Campbell551889a2008-02-09 23:24:09 +0100400 for (pfn = max_low_pfn + 1; pfn < 1<<(32-PAGE_SHIFT); pfn++) {
401 va = PAGE_OFFSET + (pfn<<PAGE_SHIFT);
402 pgd = base + pgd_index(va);
403 if (!pgd_present(*pgd))
404 break;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200405
Ian Campbell551889a2008-02-09 23:24:09 +0100406 pud = pud_offset(pgd, va);
407 pmd = pmd_offset(pud, va);
408 if (!pmd_present(*pmd))
409 break;
410
411 pte = pte_offset_kernel(pmd, va);
412 if (!pte_present(*pte))
413 break;
414
415 pte_clear(NULL, va, pte);
416 }
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700417 paravirt_alloc_pmd(&init_mm, __pa(base) >> PAGE_SHIFT);
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200418}
419
420void __init native_pagetable_setup_done(pgd_t *base)
421{
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200422}
423
424/*
425 * Build a proper pagetable for the kernel mappings. Up until this
426 * point, we've been running on some set of pagetables constructed by
427 * the boot process.
428 *
429 * If we're booting on native hardware, this will be a pagetable
Ian Campbell551889a2008-02-09 23:24:09 +0100430 * constructed in arch/x86/kernel/head_32.S. The root of the
431 * pagetable will be swapper_pg_dir.
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200432 *
433 * If we're booting paravirtualized under a hypervisor, then there are
434 * more options: we may already be running PAE, and the pagetable may
435 * or may not be based in swapper_pg_dir. In any case,
436 * paravirt_pagetable_setup_start() will set up swapper_pg_dir
437 * appropriately for the rest of the initialization to work.
438 *
439 * In general, pagetable_init() assumes that the pagetable may already
440 * be partially populated, and so it avoids stomping on any existing
441 * mappings.
442 */
Yinghai Lue7b37892008-06-25 21:51:28 -0700443static void __init early_ioremap_page_table_range_init(pgd_t *pgd_base)
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200444{
Ingo Molnar8550eb92008-01-30 13:34:10 +0100445 unsigned long vaddr, end;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 /*
448 * Fixed mappings, only the page table structure has to be
449 * created - mappings will be set by set_fixmap():
450 */
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100451 early_ioremap_clear();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 vaddr = __fix_to_virt(__end_of_fixed_addresses - 1) & PMD_MASK;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200453 end = (FIXADDR_TOP + PMD_SIZE - 1) & PMD_MASK;
454 page_table_range_init(vaddr, end, pgd_base);
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100455 early_ioremap_reset();
Yinghai Lue7b37892008-06-25 21:51:28 -0700456}
457
458static void __init pagetable_init(void)
459{
460 pgd_t *pgd_base = swapper_pg_dir;
461
462 paravirt_pagetable_setup_start(pgd_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
464 permanent_kmaps_init(pgd_base);
465
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200466 paravirt_pagetable_setup_done(pgd_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467}
468
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100469#ifdef CONFIG_ACPI_SLEEP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470/*
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100471 * ACPI suspend needs this for resume, because things like the intel-agp
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 * driver might have split up a kernel 4MB mapping.
473 */
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100474char swsusp_pg_dir[PAGE_SIZE]
Ingo Molnar8550eb92008-01-30 13:34:10 +0100475 __attribute__ ((aligned(PAGE_SIZE)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
477static inline void save_pg_dir(void)
478{
479 memcpy(swsusp_pg_dir, swapper_pg_dir, PAGE_SIZE);
480}
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100481#else /* !CONFIG_ACPI_SLEEP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482static inline void save_pg_dir(void)
483{
484}
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100485#endif /* !CONFIG_ACPI_SLEEP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Ingo Molnar8550eb92008-01-30 13:34:10 +0100487void zap_low_mappings(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488{
489 int i;
490
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 /*
492 * Zap initial low-memory mappings.
493 *
494 * Note that "pgd_clear()" doesn't do it for
495 * us, because pgd_clear() is a no-op on i386.
496 */
Jeremy Fitzhardinge68db0652008-03-17 16:37:13 -0700497 for (i = 0; i < KERNEL_PGD_BOUNDARY; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498#ifdef CONFIG_X86_PAE
499 set_pgd(swapper_pg_dir+i, __pgd(1 + __pa(empty_zero_page)));
500#else
501 set_pgd(swapper_pg_dir+i, __pgd(0));
502#endif
Ingo Molnar8550eb92008-01-30 13:34:10 +0100503 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 flush_tlb_all();
505}
506
Ingo Molnar8550eb92008-01-30 13:34:10 +0100507int nx_enabled;
Jan Beulichd5321ab2007-07-21 17:10:26 +0200508
Jeremy Fitzhardingeef5e94a2008-07-01 16:46:36 -0700509pteval_t __supported_pte_mask __read_mostly = ~(_PAGE_NX | _PAGE_GLOBAL);
Jeremy Fitzhardinge6fdc05d2008-01-30 13:32:57 +0100510EXPORT_SYMBOL_GPL(__supported_pte_mask);
511
Jan Beulichd5321ab2007-07-21 17:10:26 +0200512#ifdef CONFIG_X86_PAE
513
Ingo Molnar8550eb92008-01-30 13:34:10 +0100514static int disable_nx __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
516/*
517 * noexec = on|off
518 *
519 * Control non executable mappings.
520 *
521 * on Enable
522 * off Disable
523 */
Rusty Russell1a3f2392006-09-26 10:52:32 +0200524static int __init noexec_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525{
Rusty Russell1a3f2392006-09-26 10:52:32 +0200526 if (!str || !strcmp(str, "on")) {
527 if (cpu_has_nx) {
528 __supported_pte_mask |= _PAGE_NX;
529 disable_nx = 0;
530 }
Ingo Molnar8550eb92008-01-30 13:34:10 +0100531 } else {
532 if (!strcmp(str, "off")) {
533 disable_nx = 1;
534 __supported_pte_mask &= ~_PAGE_NX;
535 } else {
536 return -EINVAL;
537 }
538 }
Rusty Russell1a3f2392006-09-26 10:52:32 +0200539
540 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541}
Rusty Russell1a3f2392006-09-26 10:52:32 +0200542early_param("noexec", noexec_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544static void __init set_nx(void)
545{
546 unsigned int v[4], l, h;
547
548 if (cpu_has_pae && (cpuid_eax(0x80000000) > 0x80000001)) {
549 cpuid(0x80000001, &v[0], &v[1], &v[2], &v[3]);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 if ((v[3] & (1 << 20)) && !disable_nx) {
552 rdmsr(MSR_EFER, l, h);
553 l |= EFER_NX;
554 wrmsr(MSR_EFER, l, h);
555 nx_enabled = 1;
556 __supported_pte_mask |= _PAGE_NX;
557 }
558 }
559}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560#endif
561
Yinghai Lu90d967e2008-06-23 21:00:45 +0200562/* user-defined highmem size */
563static unsigned int highmem_pages = -1;
564
565/*
566 * highmem=size forces highmem to be exactly 'size' bytes.
567 * This works even on boxes that have no highmem otherwise.
568 * This also works to reduce highmem size on bigger boxes.
569 */
570static int __init parse_highmem(char *arg)
571{
572 if (!arg)
573 return -EINVAL;
574
575 highmem_pages = memparse(arg, &arg) >> PAGE_SHIFT;
576 return 0;
577}
578early_param("highmem", parse_highmem);
579
580/*
581 * Determine low and high memory ranges:
582 */
Yinghai Lu2ec65f82008-06-23 03:05:30 -0700583void __init find_low_pfn_range(void)
Yinghai Lu90d967e2008-06-23 21:00:45 +0200584{
Yinghai Lu2ec65f82008-06-23 03:05:30 -0700585 /* it could update max_pfn */
586
Yinghai Lu346cafe2008-06-23 03:06:14 -0700587 /* max_low_pfn is 0, we already have early_res support */
Yinghai Lu90d967e2008-06-23 21:00:45 +0200588
589 max_low_pfn = max_pfn;
590 if (max_low_pfn > MAXMEM_PFN) {
591 if (highmem_pages == -1)
592 highmem_pages = max_pfn - MAXMEM_PFN;
593 if (highmem_pages + MAXMEM_PFN < max_pfn)
594 max_pfn = MAXMEM_PFN + highmem_pages;
595 if (highmem_pages + MAXMEM_PFN > max_pfn) {
596 printk(KERN_WARNING "only %luMB highmem pages "
597 "available, ignoring highmem size of %uMB.\n",
598 pages_to_mb(max_pfn - MAXMEM_PFN),
599 pages_to_mb(highmem_pages));
600 highmem_pages = 0;
601 }
602 max_low_pfn = MAXMEM_PFN;
603#ifndef CONFIG_HIGHMEM
604 /* Maximum memory usable is what is directly addressable */
605 printk(KERN_WARNING "Warning only %ldMB will be used.\n",
606 MAXMEM>>20);
607 if (max_pfn > MAX_NONPAE_PFN)
608 printk(KERN_WARNING
609 "Use a HIGHMEM64G enabled kernel.\n");
610 else
611 printk(KERN_WARNING "Use a HIGHMEM enabled kernel.\n");
612 max_pfn = MAXMEM_PFN;
613#else /* !CONFIG_HIGHMEM */
614#ifndef CONFIG_HIGHMEM64G
615 if (max_pfn > MAX_NONPAE_PFN) {
616 max_pfn = MAX_NONPAE_PFN;
617 printk(KERN_WARNING "Warning only 4GB will be used."
618 "Use a HIGHMEM64G enabled kernel.\n");
619 }
620#endif /* !CONFIG_HIGHMEM64G */
621#endif /* !CONFIG_HIGHMEM */
622 } else {
623 if (highmem_pages == -1)
624 highmem_pages = 0;
625#ifdef CONFIG_HIGHMEM
626 if (highmem_pages >= max_pfn) {
627 printk(KERN_ERR "highmem size specified (%uMB) is "
628 "bigger than pages available (%luMB)!.\n",
629 pages_to_mb(highmem_pages),
630 pages_to_mb(max_pfn));
631 highmem_pages = 0;
632 }
633 if (highmem_pages) {
634 if (max_low_pfn - highmem_pages <
635 64*1024*1024/PAGE_SIZE){
636 printk(KERN_ERR "highmem size %uMB results in "
637 "smaller than 64MB lowmem, ignoring it.\n"
638 , pages_to_mb(highmem_pages));
639 highmem_pages = 0;
640 }
641 max_low_pfn -= highmem_pages;
642 }
643#else
644 if (highmem_pages)
645 printk(KERN_ERR "ignoring highmem size on non-highmem"
646 " kernel!\n");
647#endif
648 }
Yinghai Lu90d967e2008-06-23 21:00:45 +0200649}
650
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700651#ifndef CONFIG_NEED_MULTIPLE_NODES
Yinghai Lu2ec65f82008-06-23 03:05:30 -0700652void __init initmem_init(unsigned long start_pfn,
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700653 unsigned long end_pfn)
654{
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700655#ifdef CONFIG_HIGHMEM
656 highstart_pfn = highend_pfn = max_pfn;
657 if (max_pfn > max_low_pfn)
658 highstart_pfn = max_low_pfn;
659 memory_present(0, 0, highend_pfn);
Yinghai Lucb95a132008-07-02 00:31:02 -0700660 e820_register_active_regions(0, 0, highend_pfn);
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700661 printk(KERN_NOTICE "%ldMB HIGHMEM available.\n",
662 pages_to_mb(highend_pfn - highstart_pfn));
663 num_physpages = highend_pfn;
664 high_memory = (void *) __va(highstart_pfn * PAGE_SIZE - 1) + 1;
665#else
666 memory_present(0, 0, max_low_pfn);
Yinghai Lucb95a132008-07-02 00:31:02 -0700667 e820_register_active_regions(0, 0, max_low_pfn);
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700668 num_physpages = max_low_pfn;
669 high_memory = (void *) __va(max_low_pfn * PAGE_SIZE - 1) + 1;
670#endif
671#ifdef CONFIG_FLATMEM
672 max_mapnr = num_physpages;
673#endif
674 printk(KERN_NOTICE "%ldMB LOWMEM available.\n",
675 pages_to_mb(max_low_pfn));
676
677 setup_bootmem_allocator();
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700678}
Yinghai Lucb95a132008-07-02 00:31:02 -0700679#endif /* !CONFIG_NEED_MULTIPLE_NODES */
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700680
Yinghai Lucb95a132008-07-02 00:31:02 -0700681static void __init zone_sizes_init(void)
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700682{
683 unsigned long max_zone_pfns[MAX_NR_ZONES];
684 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
685 max_zone_pfns[ZONE_DMA] =
686 virt_to_phys((char *)MAX_DMA_ADDRESS) >> PAGE_SHIFT;
687 max_zone_pfns[ZONE_NORMAL] = max_low_pfn;
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700688#ifdef CONFIG_HIGHMEM
689 max_zone_pfns[ZONE_HIGHMEM] = highend_pfn;
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700690#endif
691
692 free_area_init_nodes(max_zone_pfns);
693}
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700694
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700695void __init setup_bootmem_allocator(void)
696{
697 int i;
698 unsigned long bootmap_size, bootmap;
699 /*
700 * Initialize the boot-time allocator (with low memory only):
701 */
702 bootmap_size = bootmem_bootmap_pages(max_low_pfn)<<PAGE_SHIFT;
703 bootmap = find_e820_area(min_low_pfn<<PAGE_SHIFT,
704 max_pfn_mapped<<PAGE_SHIFT, bootmap_size,
705 PAGE_SIZE);
706 if (bootmap == -1L)
707 panic("Cannot find bootmem map of size %ld\n", bootmap_size);
708 reserve_early(bootmap, bootmap + bootmap_size, "BOOTMAP");
Yinghai Lu225c37d2008-06-22 02:46:58 -0700709
Yinghai Lu346cafe2008-06-23 03:06:14 -0700710 /* don't touch min_low_pfn */
711 bootmap_size = init_bootmem_node(NODE_DATA(0), bootmap >> PAGE_SHIFT,
712 min_low_pfn, max_low_pfn);
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700713 printk(KERN_INFO " mapped low ram: 0 - %08lx\n",
714 max_pfn_mapped<<PAGE_SHIFT);
715 printk(KERN_INFO " low ram: %08lx - %08lx\n",
716 min_low_pfn<<PAGE_SHIFT, max_low_pfn<<PAGE_SHIFT);
717 printk(KERN_INFO " bootmap %08lx - %08lx\n",
718 bootmap, bootmap + bootmap_size);
719 for_each_online_node(i)
720 free_bootmem_with_active_regions(i, max_low_pfn);
721 early_res_to_bootmem(0, max_low_pfn<<PAGE_SHIFT);
722
Yinghai Lu4e296842008-06-24 12:18:14 -0700723 after_init_bootmem = 1;
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700724}
725
Yinghai Lu4e296842008-06-24 12:18:14 -0700726static void __init find_early_table_space(unsigned long end)
727{
Yinghai Lu7482b0e2008-06-28 03:30:39 -0700728 unsigned long puds, pmds, ptes, tables, start;
Yinghai Lu4e296842008-06-24 12:18:14 -0700729
730 puds = (end + PUD_SIZE - 1) >> PUD_SHIFT;
731 tables = PAGE_ALIGN(puds * sizeof(pud_t));
732
733 pmds = (end + PMD_SIZE - 1) >> PMD_SHIFT;
734 tables += PAGE_ALIGN(pmds * sizeof(pmd_t));
735
Yinghai Lu7482b0e2008-06-28 03:30:39 -0700736 if (cpu_has_pse) {
737 unsigned long extra;
Yinghai Lua04ad822008-06-29 00:39:06 -0700738
739 extra = end - ((end>>PMD_SHIFT) << PMD_SHIFT);
740 extra += PMD_SIZE;
Yinghai Lu7482b0e2008-06-28 03:30:39 -0700741 ptes = (extra + PAGE_SIZE - 1) >> PAGE_SHIFT;
742 } else
743 ptes = (end + PAGE_SIZE - 1) >> PAGE_SHIFT;
744
745 tables += PAGE_ALIGN(ptes * sizeof(pte_t));
Jeremy Fitzhardinge8207c252008-06-24 17:32:48 -0400746
Yinghai Lua04ad822008-06-29 00:39:06 -0700747 /* for fixmap */
748 tables += PAGE_SIZE * 2;
749
Yinghai Lu4e296842008-06-24 12:18:14 -0700750 /*
751 * RED-PEN putting page tables only on node 0 could
752 * cause a hotspot and fill up ZONE_DMA. The page tables
753 * need roughly 0.5KB per GB.
754 */
755 start = 0x7000;
756 table_start = find_e820_area(start, max_pfn_mapped<<PAGE_SHIFT,
757 tables, PAGE_SIZE);
758 if (table_start == -1UL)
759 panic("Cannot find space for the kernel page tables");
760
761 table_start >>= PAGE_SHIFT;
762 table_end = table_start;
763 table_top = table_start + (tables>>PAGE_SHIFT);
764
765 printk(KERN_DEBUG "kernel direct mapping tables up to %lx @ %lx-%lx\n",
766 end, table_start << PAGE_SHIFT,
767 (table_start << PAGE_SHIFT) + tables);
768}
769
770unsigned long __init_refok init_memory_mapping(unsigned long start,
771 unsigned long end)
772{
773 pgd_t *pgd_base = swapper_pg_dir;
Yinghai Lua04ad822008-06-29 00:39:06 -0700774 unsigned long start_pfn, end_pfn;
775 unsigned long big_page_start;
Yinghai Lu4e296842008-06-24 12:18:14 -0700776
777 /*
778 * Find space for the kernel direct mapping tables.
779 */
780 if (!after_init_bootmem)
781 find_early_table_space(end);
782
783#ifdef CONFIG_X86_PAE
784 set_nx();
785 if (nx_enabled)
786 printk(KERN_INFO "NX (Execute Disable) protection: active\n");
787#endif
788
789 /* Enable PSE if available */
790 if (cpu_has_pse)
791 set_in_cr4(X86_CR4_PSE);
792
793 /* Enable PGE if available */
794 if (cpu_has_pge) {
795 set_in_cr4(X86_CR4_PGE);
Jeremy Fitzhardingeef5e94a2008-07-01 16:46:36 -0700796 __supported_pte_mask |= _PAGE_GLOBAL;
Yinghai Lu4e296842008-06-24 12:18:14 -0700797 }
798
Yinghai Lua04ad822008-06-29 00:39:06 -0700799 /*
800 * Don't use a large page for the first 2/4MB of memory
801 * because there are often fixed size MTRRs in there
802 * and overlapping MTRRs into large pages can cause
803 * slowdowns.
804 */
805 big_page_start = PMD_SIZE;
806
807 if (start < big_page_start) {
808 start_pfn = start >> PAGE_SHIFT;
809 end_pfn = min(big_page_start>>PAGE_SHIFT, end>>PAGE_SHIFT);
810 } else {
811 /* head is not big page alignment ? */
812 start_pfn = start >> PAGE_SHIFT;
813 end_pfn = ((start + (PMD_SIZE - 1))>>PMD_SHIFT)
814 << (PMD_SHIFT - PAGE_SHIFT);
815 }
816 if (start_pfn < end_pfn)
817 kernel_physical_mapping_init(pgd_base, start_pfn, end_pfn, 0);
818
819 /* big page range */
820 start_pfn = ((start + (PMD_SIZE - 1))>>PMD_SHIFT)
821 << (PMD_SHIFT - PAGE_SHIFT);
822 if (start_pfn < (big_page_start >> PAGE_SHIFT))
823 start_pfn = big_page_start >> PAGE_SHIFT;
824 end_pfn = (end>>PMD_SHIFT) << (PMD_SHIFT - PAGE_SHIFT);
825 if (start_pfn < end_pfn)
826 kernel_physical_mapping_init(pgd_base, start_pfn, end_pfn,
827 cpu_has_pse);
828
829 /* tail is not big page alignment ? */
830 start_pfn = end_pfn;
831 if (start_pfn > (big_page_start>>PAGE_SHIFT)) {
832 end_pfn = end >> PAGE_SHIFT;
833 if (start_pfn < end_pfn)
834 kernel_physical_mapping_init(pgd_base, start_pfn,
835 end_pfn, 0);
836 }
Yinghai Lu4e296842008-06-24 12:18:14 -0700837
Yinghai Lue7b37892008-06-25 21:51:28 -0700838 early_ioremap_page_table_range_init(pgd_base);
839
Yinghai Lu4e296842008-06-24 12:18:14 -0700840 load_cr3(swapper_pg_dir);
841
842 __flush_tlb_all();
843
844 if (!after_init_bootmem)
845 reserve_early(table_start << PAGE_SHIFT,
846 table_end << PAGE_SHIFT, "PGTABLE");
847
Yinghai Lucaadbdc2008-07-15 00:03:44 -0700848 if (!after_init_bootmem)
849 early_memtest(start, end);
850
Yinghai Lu4e296842008-06-24 12:18:14 -0700851 return end >> PAGE_SHIFT;
852}
853
Yinghai Lue7b37892008-06-25 21:51:28 -0700854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855/*
856 * paging_init() sets up the page tables - note that the first 8MB are
857 * already mapped by head.S.
858 *
859 * This routines also unmaps the page at virtual kernel address 0, so
860 * that we can trap those pesky NULL-reference errors in the kernel.
861 */
862void __init paging_init(void)
863{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 pagetable_init();
865
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 __flush_tlb_all();
867
868 kmap_init();
Yinghai Lu11cd0bc2008-06-23 19:51:10 -0700869
870 /*
871 * NOTE: at this point the bootmem allocator is fully available.
872 */
Yinghai Lu11cd0bc2008-06-23 19:51:10 -0700873 sparse_init();
874 zone_sizes_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875}
876
877/*
878 * Test if the WP bit works in supervisor mode. It isn't supported on 386's
Dmitri Vorobievf7f17a62008-04-21 00:47:55 +0400879 * and also on some strange 486's. All 586+'s are OK. This used to involve
880 * black magic jumps to work around some nasty CPU bugs, but fortunately the
881 * switch to using exceptions got rid of all that.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883static void __init test_wp_bit(void)
884{
Ingo Molnard7d119d2008-01-30 13:34:10 +0100885 printk(KERN_INFO
886 "Checking if this processor honours the WP bit even in supervisor mode...");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
888 /* Any page-aligned address will do, the test is non-destructive */
889 __set_fixmap(FIX_WP_TEST, __pa(&swapper_pg_dir), PAGE_READONLY);
890 boot_cpu_data.wp_works_ok = do_test_wp_bit();
891 clear_fixmap(FIX_WP_TEST);
892
893 if (!boot_cpu_data.wp_works_ok) {
Ingo Molnard7d119d2008-01-30 13:34:10 +0100894 printk(KERN_CONT "No.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895#ifdef CONFIG_X86_WP_WORKS_OK
Ingo Molnard7d119d2008-01-30 13:34:10 +0100896 panic(
897 "This kernel doesn't support CPU's with broken WP. Recompile it for a 386!");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898#endif
899 } else {
Ingo Molnard7d119d2008-01-30 13:34:10 +0100900 printk(KERN_CONT "Ok.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 }
902}
903
Ingo Molnar8550eb92008-01-30 13:34:10 +0100904static struct kcore_list kcore_mem, kcore_vmalloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
906void __init mem_init(void)
907{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 int codesize, reservedpages, datasize, initsize;
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700909 int tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
Andy Whitcroft05b79bd2005-06-23 00:07:57 -0700911#ifdef CONFIG_FLATMEM
Eric Sesterhenn8d8f3cb2006-10-03 23:34:58 +0200912 BUG_ON(!mem_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 /* this will put all low memory onto the freelists */
915 totalram_pages += free_all_bootmem();
916
917 reservedpages = 0;
918 for (tmp = 0; tmp < max_low_pfn; tmp++)
919 /*
Ingo Molnar8550eb92008-01-30 13:34:10 +0100920 * Only count reserved RAM pages:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 */
922 if (page_is_ram(tmp) && PageReserved(pfn_to_page(tmp)))
923 reservedpages++;
924
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700925 set_highmem_pages_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
927 codesize = (unsigned long) &_etext - (unsigned long) &_text;
928 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
929 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
930
Ingo Molnar8550eb92008-01-30 13:34:10 +0100931 kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
932 kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 VMALLOC_END-VMALLOC_START);
934
Ingo Molnar8550eb92008-01-30 13:34:10 +0100935 printk(KERN_INFO "Memory: %luk/%luk available (%dk kernel code, "
936 "%dk reserved, %dk data, %dk init, %ldk highmem)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
938 num_physpages << (PAGE_SHIFT-10),
939 codesize >> 10,
940 reservedpages << (PAGE_SHIFT-10),
941 datasize >> 10,
942 initsize >> 10,
943 (unsigned long) (totalhigh_pages << (PAGE_SHIFT-10))
944 );
945
Ingo Molnard7d119d2008-01-30 13:34:10 +0100946 printk(KERN_INFO "virtual kernel memory layout:\n"
Ingo Molnar8550eb92008-01-30 13:34:10 +0100947 " fixmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700948#ifdef CONFIG_HIGHMEM
Ingo Molnar8550eb92008-01-30 13:34:10 +0100949 " pkmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700950#endif
Ingo Molnar8550eb92008-01-30 13:34:10 +0100951 " vmalloc : 0x%08lx - 0x%08lx (%4ld MB)\n"
952 " lowmem : 0x%08lx - 0x%08lx (%4ld MB)\n"
953 " .init : 0x%08lx - 0x%08lx (%4ld kB)\n"
954 " .data : 0x%08lx - 0x%08lx (%4ld kB)\n"
955 " .text : 0x%08lx - 0x%08lx (%4ld kB)\n",
956 FIXADDR_START, FIXADDR_TOP,
957 (FIXADDR_TOP - FIXADDR_START) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700958
959#ifdef CONFIG_HIGHMEM
Ingo Molnar8550eb92008-01-30 13:34:10 +0100960 PKMAP_BASE, PKMAP_BASE+LAST_PKMAP*PAGE_SIZE,
961 (LAST_PKMAP*PAGE_SIZE) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700962#endif
963
Ingo Molnar8550eb92008-01-30 13:34:10 +0100964 VMALLOC_START, VMALLOC_END,
965 (VMALLOC_END - VMALLOC_START) >> 20,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700966
Ingo Molnar8550eb92008-01-30 13:34:10 +0100967 (unsigned long)__va(0), (unsigned long)high_memory,
968 ((unsigned long)high_memory - (unsigned long)__va(0)) >> 20,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700969
Ingo Molnar8550eb92008-01-30 13:34:10 +0100970 (unsigned long)&__init_begin, (unsigned long)&__init_end,
971 ((unsigned long)&__init_end -
972 (unsigned long)&__init_begin) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700973
Ingo Molnar8550eb92008-01-30 13:34:10 +0100974 (unsigned long)&_etext, (unsigned long)&_edata,
975 ((unsigned long)&_edata - (unsigned long)&_etext) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700976
Ingo Molnar8550eb92008-01-30 13:34:10 +0100977 (unsigned long)&_text, (unsigned long)&_etext,
978 ((unsigned long)&_etext - (unsigned long)&_text) >> 10);
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700979
980#ifdef CONFIG_HIGHMEM
Ingo Molnar8550eb92008-01-30 13:34:10 +0100981 BUG_ON(PKMAP_BASE + LAST_PKMAP*PAGE_SIZE > FIXADDR_START);
982 BUG_ON(VMALLOC_END > PKMAP_BASE);
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700983#endif
Ingo Molnar8550eb92008-01-30 13:34:10 +0100984 BUG_ON(VMALLOC_START > VMALLOC_END);
985 BUG_ON((unsigned long)high_memory > VMALLOC_START);
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 if (boot_cpu_data.wp_works_ok < 0)
988 test_wp_bit();
989
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100990 cpa_init();
Hugh Dickins61165d72008-05-13 14:26:57 +0100991 save_pg_dir();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 zap_low_mappings();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993}
994
KAMEZAWA Hiroyukiad8f5792006-05-20 15:00:03 -0700995#ifdef CONFIG_MEMORY_HOTPLUG
Yasunori Gotobc02af92006-06-27 02:53:30 -0700996int arch_add_memory(int nid, u64 start, u64 size)
Dave Hansen05039b92005-10-29 18:16:57 -0700997{
Yasunori Goto7c7e9422006-12-22 01:11:13 -0800998 struct pglist_data *pgdata = NODE_DATA(nid);
Christoph Lameter776ed982006-09-25 23:31:09 -0700999 struct zone *zone = pgdata->node_zones + ZONE_HIGHMEM;
Dave Hansen05039b92005-10-29 18:16:57 -07001000 unsigned long start_pfn = start >> PAGE_SHIFT;
1001 unsigned long nr_pages = size >> PAGE_SHIFT;
1002
1003 return __add_pages(zone, start_pfn, nr_pages);
1004}
Andi Kleen9d99aaa2006-04-07 19:49:15 +02001005#endif
Dave Hansen05039b92005-10-29 18:16:57 -07001006
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007/*
1008 * This function cannot be __init, since exceptions don't work in that
1009 * section. Put this after the callers, so that it cannot be inlined.
1010 */
Ingo Molnar8550eb92008-01-30 13:34:10 +01001011static noinline int do_test_wp_bit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012{
1013 char tmp_reg;
1014 int flag;
1015
1016 __asm__ __volatile__(
Ingo Molnar8550eb92008-01-30 13:34:10 +01001017 " movb %0, %1 \n"
1018 "1: movb %1, %0 \n"
1019 " xorl %2, %2 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 "2: \n"
H. Peter Anvinf832ff12008-02-04 16:47:58 +01001021 _ASM_EXTABLE(1b,2b)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 :"=m" (*(char *)fix_to_virt(FIX_WP_TEST)),
1023 "=q" (tmp_reg),
1024 "=r" (flag)
1025 :"2" (1)
1026 :"memory");
Ingo Molnar8550eb92008-01-30 13:34:10 +01001027
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 return flag;
1029}
1030
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001031#ifdef CONFIG_DEBUG_RODATA
Arjan van de Venedeed302008-01-30 13:34:08 +01001032const int rodata_test_data = 0xC3;
1033EXPORT_SYMBOL_GPL(rodata_test_data);
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001034
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001035void mark_rodata_ro(void)
1036{
Jan Beulich6fb14752007-05-02 19:27:10 +02001037 unsigned long start = PFN_ALIGN(_text);
1038 unsigned long size = PFN_ALIGN(_etext) - start;
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001039
Steven Rostedt8f0f9962008-05-12 21:20:56 +02001040#ifndef CONFIG_DYNAMIC_FTRACE
1041 /* Dynamic tracing modifies the kernel text section */
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -05001042 set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
1043 printk(KERN_INFO "Write protecting the kernel text: %luk\n",
1044 size >> 10);
Andi Kleen0c42f392008-01-30 13:33:42 +01001045
1046#ifdef CONFIG_CPA_DEBUG
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -05001047 printk(KERN_INFO "Testing CPA: Reverting %lx-%lx\n",
1048 start, start+size);
1049 set_pages_rw(virt_to_page(start), size>>PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +01001050
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -05001051 printk(KERN_INFO "Testing CPA: write protecting again\n");
1052 set_pages_ro(virt_to_page(start), size>>PAGE_SHIFT);
Linus Torvalds602033e2007-07-26 12:07:21 -07001053#endif
Steven Rostedt8f0f9962008-05-12 21:20:56 +02001054#endif /* CONFIG_DYNAMIC_FTRACE */
1055
Jan Beulich6fb14752007-05-02 19:27:10 +02001056 start += size;
1057 size = (unsigned long)__end_rodata - start;
Arjan van de Ven6d238cc2008-01-30 13:34:06 +01001058 set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
Ingo Molnard7d119d2008-01-30 13:34:10 +01001059 printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
1060 size >> 10);
Arjan van de Venedeed302008-01-30 13:34:08 +01001061 rodata_test();
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001062
Andi Kleen0c42f392008-01-30 13:33:42 +01001063#ifdef CONFIG_CPA_DEBUG
Ingo Molnard7d119d2008-01-30 13:34:10 +01001064 printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, start + size);
Arjan van de Ven6d238cc2008-01-30 13:34:06 +01001065 set_pages_rw(virt_to_page(start), size >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +01001066
Ingo Molnard7d119d2008-01-30 13:34:10 +01001067 printk(KERN_INFO "Testing CPA: write protecting again\n");
Arjan van de Ven6d238cc2008-01-30 13:34:06 +01001068 set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +01001069#endif
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001070}
1071#endif
1072
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001073void free_init_pages(char *what, unsigned long begin, unsigned long end)
1074{
Ingo Molnaree01f112008-01-30 13:34:09 +01001075#ifdef CONFIG_DEBUG_PAGEALLOC
1076 /*
1077 * If debugging page accesses then do not free this memory but
1078 * mark them not present - any buggy init-section access will
1079 * create a kernel page fault:
1080 */
1081 printk(KERN_INFO "debug: unmapping init memory %08lx..%08lx\n",
1082 begin, PAGE_ALIGN(end));
1083 set_memory_np(begin, (end - begin) >> PAGE_SHIFT);
1084#else
Ingo Molnar86f03982008-01-30 13:34:09 +01001085 unsigned long addr;
1086
Arjan van de Ven3c1df682008-01-30 13:34:07 +01001087 /*
1088 * We just marked the kernel text read only above, now that
1089 * we are going to free part of that, we need to make that
1090 * writeable first.
1091 */
1092 set_memory_rw(begin, (end - begin) >> PAGE_SHIFT);
1093
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001094 for (addr = begin; addr < end; addr += PAGE_SIZE) {
Linus Torvaldse3ebadd2007-05-07 08:44:24 -07001095 ClearPageReserved(virt_to_page(addr));
1096 init_page_count(virt_to_page(addr));
1097 memset((void *)addr, POISON_FREE_INITMEM, PAGE_SIZE);
1098 free_page(addr);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001099 totalram_pages++;
1100 }
Jan Beulich6fb14752007-05-02 19:27:10 +02001101 printk(KERN_INFO "Freeing %s: %luk freed\n", what, (end - begin) >> 10);
Ingo Molnaree01f112008-01-30 13:34:09 +01001102#endif
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001103}
1104
1105void free_initmem(void)
1106{
1107 free_init_pages("unused kernel memory",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -07001108 (unsigned long)(&__init_begin),
1109 (unsigned long)(&__init_end));
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001110}
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112#ifdef CONFIG_BLK_DEV_INITRD
1113void free_initrd_mem(unsigned long start, unsigned long end)
1114{
Linus Torvaldse3ebadd2007-05-07 08:44:24 -07001115 free_init_pages("initrd memory", start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116}
1117#endif
Yinghai Lud2dbf342008-06-13 02:00:56 -07001118
1119int __init reserve_bootmem_generic(unsigned long phys, unsigned long len,
1120 int flags)
1121{
1122 return reserve_bootmem(phys, len, flags);
1123}