blob: 2b4b14fc0c048ba683776f59282b5d64574c4bd9 [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>
Jeremy Fitzhardingecfb80c92008-12-16 12:17:36 -080024#include <linux/pci.h>
Jan Beulich6fb14752007-05-02 19:27:10 +020025#include <linux/pfn.h>
Randy Dunlapc9cf5522006-06-27 02:53:52 -070026#include <linux/poison.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/bootmem.h>
28#include <linux/slab.h>
29#include <linux/proc_fs.h>
Dave Hansen05039b92005-10-29 18:16:57 -070030#include <linux/memory_hotplug.h>
Adrian Bunk27d99f72005-11-13 16:06:51 -080031#include <linux/initrd.h>
Shaohua Li55b23552006-06-23 02:04:49 -070032#include <linux/cpumask.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
H. Peter Anvinf832ff12008-02-04 16:47:58 +010034#include <asm/asm.h>
Ingo Molnar46eaa672008-10-12 15:06:29 +020035#include <asm/bios_ebda.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <asm/processor.h>
37#include <asm/system.h>
38#include <asm/uaccess.h>
39#include <asm/pgtable.h>
40#include <asm/dma.h>
41#include <asm/fixmap.h>
42#include <asm/e820.h>
43#include <asm/apic.h>
Ingo Molnar8550eb92008-01-30 13:34:10 +010044#include <asm/bugs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <asm/tlb.h>
46#include <asm/tlbflush.h>
Jeremy Fitzhardingea5a19c62008-01-30 13:33:39 +010047#include <asm/pgalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <asm/sections.h>
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +020049#include <asm/paravirt.h>
Ian Campbell551889a2008-02-09 23:24:09 +010050#include <asm/setup.h>
Harvey Harrison7bfeab92008-02-12 12:12:01 -080051#include <asm/cacheflush.h>
Jaswinder Singha80495e2008-07-23 17:33:57 +053052#include <asm/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54unsigned int __VMALLOC_RESERVE = 128 << 20;
55
Yinghai Luf361a452008-07-10 20:38:26 -070056unsigned long max_low_pfn_mapped;
Thomas Gleixner67794292008-03-21 21:27:10 +010057unsigned long max_pfn_mapped;
Andi Kleen7d1116a2008-03-12 03:53:27 +010058
Linus Torvalds1da177e2005-04-16 15:20:36 -070059DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
60unsigned long highstart_pfn, highend_pfn;
61
Ingo Molnar8550eb92008-01-30 13:34:10 +010062static noinline int do_test_wp_bit(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Yinghai Lu4e296842008-06-24 12:18:14 -070064
65static unsigned long __initdata table_start;
66static unsigned long __meminitdata table_end;
67static unsigned long __meminitdata table_top;
68
69static int __initdata after_init_bootmem;
70
71static __init void *alloc_low_page(unsigned long *phys)
72{
73 unsigned long pfn = table_end++;
74 void *adr;
75
76 if (pfn >= table_top)
77 panic("alloc_low_page: ran out of memory");
78
79 adr = __va(pfn * PAGE_SIZE);
80 memset(adr, 0, PAGE_SIZE);
81 *phys = pfn * PAGE_SIZE;
82 return adr;
83}
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085/*
86 * Creates a middle page table and puts a pointer to it in the
87 * given global directory entry. This only returns the gd entry
88 * in non-PAE compilation mode, since the middle layer is folded.
89 */
90static pmd_t * __init one_md_table_init(pgd_t *pgd)
91{
92 pud_t *pud;
93 pmd_t *pmd_table;
Ingo Molnar8550eb92008-01-30 13:34:10 +010094
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#ifdef CONFIG_X86_PAE
Yinghai Lu4e296842008-06-24 12:18:14 -070096 unsigned long phys;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +020097 if (!(pgd_val(*pgd) & _PAGE_PRESENT)) {
Yinghai Lu4e296842008-06-24 12:18:14 -070098 if (after_init_bootmem)
99 pmd_table = (pmd_t *)alloc_bootmem_low_pages(PAGE_SIZE);
100 else
101 pmd_table = (pmd_t *)alloc_low_page(&phys);
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700102 paravirt_alloc_pmd(&init_mm, __pa(pmd_table) >> PAGE_SHIFT);
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200103 set_pgd(pgd, __pgd(__pa(pmd_table) | _PAGE_PRESENT));
104 pud = pud_offset(pgd, 0);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100105 BUG_ON(pmd_table != pmd_offset(pud, 0));
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200106 }
107#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 pud = pud_offset(pgd, 0);
109 pmd_table = pmd_offset(pud, 0);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 return pmd_table;
112}
113
114/*
115 * Create a page table and place a pointer to it in a middle page
Ingo Molnar8550eb92008-01-30 13:34:10 +0100116 * directory entry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 */
118static pte_t * __init one_page_table_init(pmd_t *pmd)
119{
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200120 if (!(pmd_val(*pmd) & _PAGE_PRESENT)) {
Ingo Molnar509a80c2007-10-17 18:04:34 +0200121 pte_t *page_table = NULL;
122
Yinghai Lu4e296842008-06-24 12:18:14 -0700123 if (after_init_bootmem) {
Ingo Molnar509a80c2007-10-17 18:04:34 +0200124#ifdef CONFIG_DEBUG_PAGEALLOC
Yinghai Lu4e296842008-06-24 12:18:14 -0700125 page_table = (pte_t *) alloc_bootmem_pages(PAGE_SIZE);
Ingo Molnar509a80c2007-10-17 18:04:34 +0200126#endif
Yinghai Lu4e296842008-06-24 12:18:14 -0700127 if (!page_table)
128 page_table =
Ingo Molnar509a80c2007-10-17 18:04:34 +0200129 (pte_t *)alloc_bootmem_low_pages(PAGE_SIZE);
Yinghai Lu4e296842008-06-24 12:18:14 -0700130 } else {
131 unsigned long phys;
132 page_table = (pte_t *)alloc_low_page(&phys);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100133 }
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200134
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700135 paravirt_alloc_pte(&init_mm, __pa(page_table) >> PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 set_pmd(pmd, __pmd(__pa(page_table) | _PAGE_TABLE));
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200137 BUG_ON(page_table != pte_offset_kernel(pmd, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 }
Ingo Molnar509a80c2007-10-17 18:04:34 +0200139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 return pte_offset_kernel(pmd, 0);
141}
142
143/*
Ingo Molnar8550eb92008-01-30 13:34:10 +0100144 * This function initializes a certain range of kernel virtual memory
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 * with new bootmem page tables, everywhere page tables are missing in
146 * the given range.
Ingo Molnar8550eb92008-01-30 13:34:10 +0100147 *
148 * NOTE: The pagetables are allocated contiguous on the physical space
149 * so we can cache the place of the first one and move around without
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 * checking the pgd every time.
151 */
Ingo Molnar8550eb92008-01-30 13:34:10 +0100152static void __init
153page_table_range_init(unsigned long start, unsigned long end, pgd_t *pgd_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 int pgd_idx, pmd_idx;
156 unsigned long vaddr;
Ingo Molnar8550eb92008-01-30 13:34:10 +0100157 pgd_t *pgd;
158 pmd_t *pmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160 vaddr = start;
161 pgd_idx = pgd_index(vaddr);
162 pmd_idx = pmd_index(vaddr);
163 pgd = pgd_base + pgd_idx;
164
165 for ( ; (pgd_idx < PTRS_PER_PGD) && (vaddr != end); pgd++, pgd_idx++) {
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200166 pmd = one_md_table_init(pgd);
167 pmd = pmd + pmd_index(vaddr);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100168 for (; (pmd_idx < PTRS_PER_PMD) && (vaddr != end);
169 pmd++, pmd_idx++) {
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200170 one_page_table_init(pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172 vaddr += PMD_SIZE;
173 }
174 pmd_idx = 0;
175 }
176}
177
178static inline int is_kernel_text(unsigned long addr)
179{
180 if (addr >= PAGE_OFFSET && addr <= (unsigned long)__init_end)
181 return 1;
182 return 0;
183}
184
185/*
Ingo Molnar8550eb92008-01-30 13:34:10 +0100186 * This maps the physical memory to kernel virtual address space, a total
187 * of max_low_pfn pages, by creating page tables starting from address
188 * PAGE_OFFSET:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 */
Yinghai Lu4e296842008-06-24 12:18:14 -0700190static void __init kernel_physical_mapping_init(pgd_t *pgd_base,
Yinghai Lua04ad822008-06-29 00:39:06 -0700191 unsigned long start_pfn,
192 unsigned long end_pfn,
193 int use_pse)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
Ingo Molnar8550eb92008-01-30 13:34:10 +0100195 int pgd_idx, pmd_idx, pte_ofs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 unsigned long pfn;
197 pgd_t *pgd;
198 pmd_t *pmd;
199 pte_t *pte;
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700200 unsigned pages_2m, pages_4k;
201 int mapping_iter;
202
203 /*
204 * First iteration will setup identity mapping using large/small pages
205 * based on use_pse, with other attributes same as set by
206 * the early code in head_32.S
207 *
208 * Second iteration will setup the appropriate attributes (NX, GLOBAL..)
209 * as desired for the kernel identity mapping.
210 *
211 * This two pass mechanism conforms to the TLB app note which says:
212 *
213 * "Software should not write to a paging-structure entry in a way
214 * that would change, for any linear address, both the page size
215 * and either the page frame or attributes."
216 */
217 mapping_iter = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Yinghai Lua04ad822008-06-29 00:39:06 -0700219 if (!cpu_has_pse)
220 use_pse = 0;
221
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700222repeat:
223 pages_2m = pages_4k = 0;
Yinghai Lua04ad822008-06-29 00:39:06 -0700224 pfn = start_pfn;
225 pgd_idx = pgd_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 pgd = pgd_base + pgd_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 for (; pgd_idx < PTRS_PER_PGD; pgd++, pgd_idx++) {
228 pmd = one_md_table_init(pgd);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100229
Yinghai Lua04ad822008-06-29 00:39:06 -0700230 if (pfn >= end_pfn)
231 continue;
232#ifdef CONFIG_X86_PAE
233 pmd_idx = pmd_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
234 pmd += pmd_idx;
235#else
236 pmd_idx = 0;
237#endif
238 for (; pmd_idx < PTRS_PER_PMD && pfn < end_pfn;
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100239 pmd++, pmd_idx++) {
Ingo Molnar8550eb92008-01-30 13:34:10 +0100240 unsigned int addr = pfn * PAGE_SIZE + PAGE_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Ingo Molnar8550eb92008-01-30 13:34:10 +0100242 /*
243 * Map with big pages if possible, otherwise
244 * create normal page tables:
245 */
Yinghai Lua04ad822008-06-29 00:39:06 -0700246 if (use_pse) {
Ingo Molnar8550eb92008-01-30 13:34:10 +0100247 unsigned int addr2;
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100248 pgprot_t prot = PAGE_KERNEL_LARGE;
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700249 /*
250 * first pass will use the same initial
251 * identity mapping attribute + _PAGE_PSE.
252 */
253 pgprot_t init_prot =
254 __pgprot(PTE_IDENT_ATTR |
255 _PAGE_PSE);
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100256
Ingo Molnar8550eb92008-01-30 13:34:10 +0100257 addr2 = (pfn + PTRS_PER_PTE-1) * PAGE_SIZE +
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100258 PAGE_OFFSET + PAGE_SIZE-1;
259
Ingo Molnar8550eb92008-01-30 13:34:10 +0100260 if (is_kernel_text(addr) ||
261 is_kernel_text(addr2))
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100262 prot = PAGE_KERNEL_LARGE_EXEC;
263
Andi Kleence0c0e52008-05-02 11:46:49 +0200264 pages_2m++;
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700265 if (mapping_iter == 1)
266 set_pmd(pmd, pfn_pmd(pfn, init_prot));
267 else
268 set_pmd(pmd, pfn_pmd(pfn, prot));
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200269
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 pfn += PTRS_PER_PTE;
Ingo Molnar8550eb92008-01-30 13:34:10 +0100271 continue;
272 }
273 pte = one_page_table_init(pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Yinghai Lua04ad822008-06-29 00:39:06 -0700275 pte_ofs = pte_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
276 pte += pte_ofs;
277 for (; pte_ofs < PTRS_PER_PTE && pfn < end_pfn;
Ingo Molnar8550eb92008-01-30 13:34:10 +0100278 pte++, pfn++, pte_ofs++, addr += PAGE_SIZE) {
279 pgprot_t prot = PAGE_KERNEL;
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700280 /*
281 * first pass will use the same initial
282 * identity mapping attribute.
283 */
284 pgprot_t init_prot = __pgprot(PTE_IDENT_ATTR);
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100285
Ingo Molnar8550eb92008-01-30 13:34:10 +0100286 if (is_kernel_text(addr))
287 prot = PAGE_KERNEL_EXEC;
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100288
Andi Kleence0c0e52008-05-02 11:46:49 +0200289 pages_4k++;
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700290 if (mapping_iter == 1)
291 set_pte(pte, pfn_pte(pfn, init_prot));
292 else
293 set_pte(pte, pfn_pte(pfn, prot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 }
295 }
296 }
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700297 if (mapping_iter == 1) {
298 /*
299 * update direct mapping page count only in the first
300 * iteration.
301 */
302 update_page_count(PG_LEVEL_2M, pages_2m);
303 update_page_count(PG_LEVEL_4K, pages_4k);
304
305 /*
306 * local global flush tlb, which will flush the previous
307 * mappings present in both small and large page TLB's.
308 */
309 __flush_tlb_all();
310
311 /*
312 * Second iteration will set the actual desired PTE attributes.
313 */
314 mapping_iter = 2;
315 goto repeat;
316 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317}
318
Arjan van de Venae531c22008-04-24 23:40:47 +0200319/*
320 * devmem_is_allowed() checks to see if /dev/mem access to a certain address
321 * is valid. The argument is a physical page number.
322 *
323 *
324 * On x86, access has to be given to the first megabyte of ram because that area
325 * contains bios code and data regions used by X and dosemu and similar apps.
326 * Access has to be given to non-kernel-ram areas as well, these contain the PCI
327 * mmio resources as well as potential bios/acpi data regions.
328 */
329int devmem_is_allowed(unsigned long pagenr)
330{
331 if (pagenr <= 256)
332 return 1;
333 if (!page_is_ram(pagenr))
334 return 1;
335 return 0;
336}
337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338pte_t *kmap_pte;
339pgprot_t kmap_prot;
340
Ingo Molnar8550eb92008-01-30 13:34:10 +0100341static inline pte_t *kmap_get_fixmap_pte(unsigned long vaddr)
342{
343 return pte_offset_kernel(pmd_offset(pud_offset(pgd_offset_k(vaddr),
344 vaddr), vaddr), vaddr);
345}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
347static void __init kmap_init(void)
348{
349 unsigned long kmap_vstart;
350
Ingo Molnar8550eb92008-01-30 13:34:10 +0100351 /*
352 * Cache the first kmap pte:
353 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 kmap_vstart = __fix_to_virt(FIX_KMAP_BEGIN);
355 kmap_pte = kmap_get_fixmap_pte(kmap_vstart);
356
357 kmap_prot = PAGE_KERNEL;
358}
359
Keith Packardfd940932008-10-30 19:37:09 -0700360#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361static void __init permanent_kmaps_init(pgd_t *pgd_base)
362{
Ingo Molnar8550eb92008-01-30 13:34:10 +0100363 unsigned long vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 pgd_t *pgd;
365 pud_t *pud;
366 pmd_t *pmd;
367 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369 vaddr = PKMAP_BASE;
370 page_table_range_init(vaddr, vaddr + PAGE_SIZE*LAST_PKMAP, pgd_base);
371
372 pgd = swapper_pg_dir + pgd_index(vaddr);
373 pud = pud_offset(pgd, vaddr);
374 pmd = pmd_offset(pud, vaddr);
375 pte = pte_offset_kernel(pmd, vaddr);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100376 pkmap_page_table = pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377}
378
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700379static void __init add_one_highpage_init(struct page *page, int pfn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700381 ClearPageReserved(page);
382 init_page_count(page);
383 __free_page(page);
384 totalhigh_pages++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385}
386
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700387struct add_highpages_data {
388 unsigned long start_pfn;
389 unsigned long end_pfn;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700390};
391
Yinghai Lud52d53b2008-06-16 20:10:55 -0700392static int __init add_highpages_work_fn(unsigned long start_pfn,
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700393 unsigned long end_pfn, void *datax)
394{
395 int node_pfn;
396 struct page *page;
397 unsigned long final_start_pfn, final_end_pfn;
398 struct add_highpages_data *data;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700399
400 data = (struct add_highpages_data *)datax;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700401
402 final_start_pfn = max(start_pfn, data->start_pfn);
403 final_end_pfn = min(end_pfn, data->end_pfn);
404 if (final_start_pfn >= final_end_pfn)
Yinghai Lud52d53b2008-06-16 20:10:55 -0700405 return 0;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700406
407 for (node_pfn = final_start_pfn; node_pfn < final_end_pfn;
408 node_pfn++) {
409 if (!pfn_valid(node_pfn))
410 continue;
411 page = pfn_to_page(node_pfn);
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700412 add_one_highpage_init(page, node_pfn);
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700413 }
414
Yinghai Lud52d53b2008-06-16 20:10:55 -0700415 return 0;
416
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700417}
418
419void __init add_highpages_with_active_regions(int nid, unsigned long start_pfn,
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700420 unsigned long end_pfn)
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700421{
422 struct add_highpages_data data;
423
424 data.start_pfn = start_pfn;
425 data.end_pfn = end_pfn;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700426
427 work_with_active_regions(nid, add_highpages_work_fn, &data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428}
429
Ingo Molnar8550eb92008-01-30 13:34:10 +0100430#ifndef CONFIG_NUMA
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700431static void __init set_highmem_pages_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432{
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700433 add_highpages_with_active_regions(0, highstart_pfn, highend_pfn);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 totalram_pages += totalhigh_pages;
436}
Ingo Molnar8550eb92008-01-30 13:34:10 +0100437#endif /* !CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
439#else
Ingo Molnar8550eb92008-01-30 13:34:10 +0100440# define permanent_kmaps_init(pgd_base) do { } while (0)
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700441# define set_highmem_pages_init() do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442#endif /* CONFIG_HIGHMEM */
443
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200444void __init native_pagetable_setup_start(pgd_t *base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
Ian Campbell551889a2008-02-09 23:24:09 +0100446 unsigned long pfn, va;
447 pgd_t *pgd;
448 pud_t *pud;
449 pmd_t *pmd;
450 pte_t *pte;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200451
452 /*
Ian Campbell551889a2008-02-09 23:24:09 +0100453 * Remove any mappings which extend past the end of physical
454 * memory from the boot time page table:
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200455 */
Ian Campbell551889a2008-02-09 23:24:09 +0100456 for (pfn = max_low_pfn + 1; pfn < 1<<(32-PAGE_SHIFT); pfn++) {
457 va = PAGE_OFFSET + (pfn<<PAGE_SHIFT);
458 pgd = base + pgd_index(va);
459 if (!pgd_present(*pgd))
460 break;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200461
Ian Campbell551889a2008-02-09 23:24:09 +0100462 pud = pud_offset(pgd, va);
463 pmd = pmd_offset(pud, va);
464 if (!pmd_present(*pmd))
465 break;
466
467 pte = pte_offset_kernel(pmd, va);
468 if (!pte_present(*pte))
469 break;
470
471 pte_clear(NULL, va, pte);
472 }
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700473 paravirt_alloc_pmd(&init_mm, __pa(base) >> PAGE_SHIFT);
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200474}
475
476void __init native_pagetable_setup_done(pgd_t *base)
477{
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200478}
479
480/*
481 * Build a proper pagetable for the kernel mappings. Up until this
482 * point, we've been running on some set of pagetables constructed by
483 * the boot process.
484 *
485 * If we're booting on native hardware, this will be a pagetable
Ian Campbell551889a2008-02-09 23:24:09 +0100486 * constructed in arch/x86/kernel/head_32.S. The root of the
487 * pagetable will be swapper_pg_dir.
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200488 *
489 * If we're booting paravirtualized under a hypervisor, then there are
490 * more options: we may already be running PAE, and the pagetable may
491 * or may not be based in swapper_pg_dir. In any case,
492 * paravirt_pagetable_setup_start() will set up swapper_pg_dir
493 * appropriately for the rest of the initialization to work.
494 *
495 * In general, pagetable_init() assumes that the pagetable may already
496 * be partially populated, and so it avoids stomping on any existing
497 * mappings.
498 */
Yinghai Lue7b37892008-06-25 21:51:28 -0700499static void __init early_ioremap_page_table_range_init(pgd_t *pgd_base)
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200500{
Ingo Molnar8550eb92008-01-30 13:34:10 +0100501 unsigned long vaddr, end;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 /*
504 * Fixed mappings, only the page table structure has to be
505 * created - mappings will be set by set_fixmap():
506 */
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100507 early_ioremap_clear();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 vaddr = __fix_to_virt(__end_of_fixed_addresses - 1) & PMD_MASK;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200509 end = (FIXADDR_TOP + PMD_SIZE - 1) & PMD_MASK;
510 page_table_range_init(vaddr, end, pgd_base);
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100511 early_ioremap_reset();
Yinghai Lue7b37892008-06-25 21:51:28 -0700512}
513
514static void __init pagetable_init(void)
515{
516 pgd_t *pgd_base = swapper_pg_dir;
517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 permanent_kmaps_init(pgd_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519}
520
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100521#ifdef CONFIG_ACPI_SLEEP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522/*
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100523 * ACPI suspend needs this for resume, because things like the intel-agp
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 * driver might have split up a kernel 4MB mapping.
525 */
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100526char swsusp_pg_dir[PAGE_SIZE]
Ingo Molnar8550eb92008-01-30 13:34:10 +0100527 __attribute__ ((aligned(PAGE_SIZE)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
529static inline void save_pg_dir(void)
530{
531 memcpy(swsusp_pg_dir, swapper_pg_dir, PAGE_SIZE);
532}
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100533#else /* !CONFIG_ACPI_SLEEP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534static inline void save_pg_dir(void)
535{
536}
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100537#endif /* !CONFIG_ACPI_SLEEP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Ingo Molnar8550eb92008-01-30 13:34:10 +0100539void zap_low_mappings(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
541 int i;
542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 /*
544 * Zap initial low-memory mappings.
545 *
546 * Note that "pgd_clear()" doesn't do it for
547 * us, because pgd_clear() is a no-op on i386.
548 */
Jeremy Fitzhardinge68db0652008-03-17 16:37:13 -0700549 for (i = 0; i < KERNEL_PGD_BOUNDARY; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550#ifdef CONFIG_X86_PAE
551 set_pgd(swapper_pg_dir+i, __pgd(1 + __pa(empty_zero_page)));
552#else
553 set_pgd(swapper_pg_dir+i, __pgd(0));
554#endif
Ingo Molnar8550eb92008-01-30 13:34:10 +0100555 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 flush_tlb_all();
557}
558
Ingo Molnar8550eb92008-01-30 13:34:10 +0100559int nx_enabled;
Jan Beulichd5321ab2007-07-21 17:10:26 +0200560
Jeremy Fitzhardingebe43d722008-09-07 15:21:13 -0700561pteval_t __supported_pte_mask __read_mostly = ~(_PAGE_NX | _PAGE_GLOBAL | _PAGE_IOMAP);
Jeremy Fitzhardinge6fdc05d2008-01-30 13:32:57 +0100562EXPORT_SYMBOL_GPL(__supported_pte_mask);
563
Jan Beulichd5321ab2007-07-21 17:10:26 +0200564#ifdef CONFIG_X86_PAE
565
Ingo Molnar8550eb92008-01-30 13:34:10 +0100566static int disable_nx __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
568/*
569 * noexec = on|off
570 *
571 * Control non executable mappings.
572 *
573 * on Enable
574 * off Disable
575 */
Rusty Russell1a3f2392006-09-26 10:52:32 +0200576static int __init noexec_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577{
Rusty Russell1a3f2392006-09-26 10:52:32 +0200578 if (!str || !strcmp(str, "on")) {
579 if (cpu_has_nx) {
580 __supported_pte_mask |= _PAGE_NX;
581 disable_nx = 0;
582 }
Ingo Molnar8550eb92008-01-30 13:34:10 +0100583 } else {
584 if (!strcmp(str, "off")) {
585 disable_nx = 1;
586 __supported_pte_mask &= ~_PAGE_NX;
587 } else {
588 return -EINVAL;
589 }
590 }
Rusty Russell1a3f2392006-09-26 10:52:32 +0200591
592 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593}
Rusty Russell1a3f2392006-09-26 10:52:32 +0200594early_param("noexec", noexec_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596static void __init set_nx(void)
597{
598 unsigned int v[4], l, h;
599
600 if (cpu_has_pae && (cpuid_eax(0x80000000) > 0x80000001)) {
601 cpuid(0x80000001, &v[0], &v[1], &v[2], &v[3]);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 if ((v[3] & (1 << 20)) && !disable_nx) {
604 rdmsr(MSR_EFER, l, h);
605 l |= EFER_NX;
606 wrmsr(MSR_EFER, l, h);
607 nx_enabled = 1;
608 __supported_pte_mask |= _PAGE_NX;
609 }
610 }
611}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612#endif
613
Yinghai Lu90d967e2008-06-23 21:00:45 +0200614/* user-defined highmem size */
615static unsigned int highmem_pages = -1;
616
617/*
618 * highmem=size forces highmem to be exactly 'size' bytes.
619 * This works even on boxes that have no highmem otherwise.
620 * This also works to reduce highmem size on bigger boxes.
621 */
622static int __init parse_highmem(char *arg)
623{
624 if (!arg)
625 return -EINVAL;
626
627 highmem_pages = memparse(arg, &arg) >> PAGE_SHIFT;
628 return 0;
629}
630early_param("highmem", parse_highmem);
631
632/*
633 * Determine low and high memory ranges:
634 */
Yinghai Lu2ec65f82008-06-23 03:05:30 -0700635void __init find_low_pfn_range(void)
Yinghai Lu90d967e2008-06-23 21:00:45 +0200636{
Yinghai Lu2ec65f82008-06-23 03:05:30 -0700637 /* it could update max_pfn */
638
Yinghai Lu346cafe2008-06-23 03:06:14 -0700639 /* max_low_pfn is 0, we already have early_res support */
Yinghai Lu90d967e2008-06-23 21:00:45 +0200640
641 max_low_pfn = max_pfn;
642 if (max_low_pfn > MAXMEM_PFN) {
643 if (highmem_pages == -1)
644 highmem_pages = max_pfn - MAXMEM_PFN;
645 if (highmem_pages + MAXMEM_PFN < max_pfn)
646 max_pfn = MAXMEM_PFN + highmem_pages;
647 if (highmem_pages + MAXMEM_PFN > max_pfn) {
648 printk(KERN_WARNING "only %luMB highmem pages "
649 "available, ignoring highmem size of %uMB.\n",
650 pages_to_mb(max_pfn - MAXMEM_PFN),
651 pages_to_mb(highmem_pages));
652 highmem_pages = 0;
653 }
654 max_low_pfn = MAXMEM_PFN;
655#ifndef CONFIG_HIGHMEM
656 /* Maximum memory usable is what is directly addressable */
657 printk(KERN_WARNING "Warning only %ldMB will be used.\n",
658 MAXMEM>>20);
659 if (max_pfn > MAX_NONPAE_PFN)
660 printk(KERN_WARNING
661 "Use a HIGHMEM64G enabled kernel.\n");
662 else
663 printk(KERN_WARNING "Use a HIGHMEM enabled kernel.\n");
664 max_pfn = MAXMEM_PFN;
665#else /* !CONFIG_HIGHMEM */
666#ifndef CONFIG_HIGHMEM64G
667 if (max_pfn > MAX_NONPAE_PFN) {
668 max_pfn = MAX_NONPAE_PFN;
669 printk(KERN_WARNING "Warning only 4GB will be used."
670 "Use a HIGHMEM64G enabled kernel.\n");
671 }
672#endif /* !CONFIG_HIGHMEM64G */
673#endif /* !CONFIG_HIGHMEM */
674 } else {
675 if (highmem_pages == -1)
676 highmem_pages = 0;
677#ifdef CONFIG_HIGHMEM
678 if (highmem_pages >= max_pfn) {
679 printk(KERN_ERR "highmem size specified (%uMB) is "
680 "bigger than pages available (%luMB)!.\n",
681 pages_to_mb(highmem_pages),
682 pages_to_mb(max_pfn));
683 highmem_pages = 0;
684 }
685 if (highmem_pages) {
686 if (max_low_pfn - highmem_pages <
687 64*1024*1024/PAGE_SIZE){
688 printk(KERN_ERR "highmem size %uMB results in "
689 "smaller than 64MB lowmem, ignoring it.\n"
690 , pages_to_mb(highmem_pages));
691 highmem_pages = 0;
692 }
693 max_low_pfn -= highmem_pages;
694 }
695#else
696 if (highmem_pages)
697 printk(KERN_ERR "ignoring highmem size on non-highmem"
698 " kernel!\n");
699#endif
700 }
Yinghai Lu90d967e2008-06-23 21:00:45 +0200701}
702
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700703#ifndef CONFIG_NEED_MULTIPLE_NODES
Yinghai Lu2ec65f82008-06-23 03:05:30 -0700704void __init initmem_init(unsigned long start_pfn,
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700705 unsigned long end_pfn)
706{
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700707#ifdef CONFIG_HIGHMEM
708 highstart_pfn = highend_pfn = max_pfn;
709 if (max_pfn > max_low_pfn)
710 highstart_pfn = max_low_pfn;
711 memory_present(0, 0, highend_pfn);
Yinghai Lucb95a132008-07-02 00:31:02 -0700712 e820_register_active_regions(0, 0, highend_pfn);
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700713 printk(KERN_NOTICE "%ldMB HIGHMEM available.\n",
714 pages_to_mb(highend_pfn - highstart_pfn));
715 num_physpages = highend_pfn;
716 high_memory = (void *) __va(highstart_pfn * PAGE_SIZE - 1) + 1;
717#else
718 memory_present(0, 0, max_low_pfn);
Yinghai Lucb95a132008-07-02 00:31:02 -0700719 e820_register_active_regions(0, 0, max_low_pfn);
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700720 num_physpages = max_low_pfn;
721 high_memory = (void *) __va(max_low_pfn * PAGE_SIZE - 1) + 1;
722#endif
723#ifdef CONFIG_FLATMEM
724 max_mapnr = num_physpages;
725#endif
726 printk(KERN_NOTICE "%ldMB LOWMEM available.\n",
727 pages_to_mb(max_low_pfn));
728
729 setup_bootmem_allocator();
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700730}
Yinghai Lucb95a132008-07-02 00:31:02 -0700731#endif /* !CONFIG_NEED_MULTIPLE_NODES */
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700732
Yinghai Lucb95a132008-07-02 00:31:02 -0700733static void __init zone_sizes_init(void)
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700734{
735 unsigned long max_zone_pfns[MAX_NR_ZONES];
736 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
737 max_zone_pfns[ZONE_DMA] =
738 virt_to_phys((char *)MAX_DMA_ADDRESS) >> PAGE_SHIFT;
739 max_zone_pfns[ZONE_NORMAL] = max_low_pfn;
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700740#ifdef CONFIG_HIGHMEM
741 max_zone_pfns[ZONE_HIGHMEM] = highend_pfn;
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700742#endif
743
744 free_area_init_nodes(max_zone_pfns);
745}
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700746
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700747void __init setup_bootmem_allocator(void)
748{
749 int i;
750 unsigned long bootmap_size, bootmap;
751 /*
752 * Initialize the boot-time allocator (with low memory only):
753 */
754 bootmap_size = bootmem_bootmap_pages(max_low_pfn)<<PAGE_SHIFT;
755 bootmap = find_e820_area(min_low_pfn<<PAGE_SHIFT,
756 max_pfn_mapped<<PAGE_SHIFT, bootmap_size,
757 PAGE_SIZE);
758 if (bootmap == -1L)
759 panic("Cannot find bootmem map of size %ld\n", bootmap_size);
760 reserve_early(bootmap, bootmap + bootmap_size, "BOOTMAP");
Yinghai Lu225c37d2008-06-22 02:46:58 -0700761
Yinghai Lu346cafe2008-06-23 03:06:14 -0700762 /* don't touch min_low_pfn */
763 bootmap_size = init_bootmem_node(NODE_DATA(0), bootmap >> PAGE_SHIFT,
764 min_low_pfn, max_low_pfn);
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700765 printk(KERN_INFO " mapped low ram: 0 - %08lx\n",
766 max_pfn_mapped<<PAGE_SHIFT);
767 printk(KERN_INFO " low ram: %08lx - %08lx\n",
768 min_low_pfn<<PAGE_SHIFT, max_low_pfn<<PAGE_SHIFT);
769 printk(KERN_INFO " bootmap %08lx - %08lx\n",
770 bootmap, bootmap + bootmap_size);
771 for_each_online_node(i)
772 free_bootmem_with_active_regions(i, max_low_pfn);
773 early_res_to_bootmem(0, max_low_pfn<<PAGE_SHIFT);
774
Yinghai Lu4e296842008-06-24 12:18:14 -0700775 after_init_bootmem = 1;
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700776}
777
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700778static void __init find_early_table_space(unsigned long end, int use_pse)
Yinghai Lu4e296842008-06-24 12:18:14 -0700779{
Yinghai Lu7482b0e2008-06-28 03:30:39 -0700780 unsigned long puds, pmds, ptes, tables, start;
Yinghai Lu4e296842008-06-24 12:18:14 -0700781
782 puds = (end + PUD_SIZE - 1) >> PUD_SHIFT;
783 tables = PAGE_ALIGN(puds * sizeof(pud_t));
784
785 pmds = (end + PMD_SIZE - 1) >> PMD_SHIFT;
786 tables += PAGE_ALIGN(pmds * sizeof(pmd_t));
787
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700788 if (use_pse) {
Yinghai Lu7482b0e2008-06-28 03:30:39 -0700789 unsigned long extra;
Yinghai Lua04ad822008-06-29 00:39:06 -0700790
791 extra = end - ((end>>PMD_SHIFT) << PMD_SHIFT);
792 extra += PMD_SIZE;
Yinghai Lu7482b0e2008-06-28 03:30:39 -0700793 ptes = (extra + PAGE_SIZE - 1) >> PAGE_SHIFT;
794 } else
795 ptes = (end + PAGE_SIZE - 1) >> PAGE_SHIFT;
796
797 tables += PAGE_ALIGN(ptes * sizeof(pte_t));
Jeremy Fitzhardinge8207c252008-06-24 17:32:48 -0400798
Yinghai Lua04ad822008-06-29 00:39:06 -0700799 /* for fixmap */
800 tables += PAGE_SIZE * 2;
801
Yinghai Lu4e296842008-06-24 12:18:14 -0700802 /*
803 * RED-PEN putting page tables only on node 0 could
804 * cause a hotspot and fill up ZONE_DMA. The page tables
805 * need roughly 0.5KB per GB.
806 */
807 start = 0x7000;
808 table_start = find_e820_area(start, max_pfn_mapped<<PAGE_SHIFT,
809 tables, PAGE_SIZE);
810 if (table_start == -1UL)
811 panic("Cannot find space for the kernel page tables");
812
813 table_start >>= PAGE_SHIFT;
814 table_end = table_start;
815 table_top = table_start + (tables>>PAGE_SHIFT);
816
817 printk(KERN_DEBUG "kernel direct mapping tables up to %lx @ %lx-%lx\n",
818 end, table_start << PAGE_SHIFT,
819 (table_start << PAGE_SHIFT) + tables);
820}
821
822unsigned long __init_refok init_memory_mapping(unsigned long start,
823 unsigned long end)
824{
825 pgd_t *pgd_base = swapper_pg_dir;
Yinghai Lua04ad822008-06-29 00:39:06 -0700826 unsigned long start_pfn, end_pfn;
827 unsigned long big_page_start;
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700828#ifdef CONFIG_DEBUG_PAGEALLOC
829 /*
830 * For CONFIG_DEBUG_PAGEALLOC, identity mapping will use small pages.
831 * This will simplify cpa(), which otherwise needs to support splitting
832 * large pages into small in interrupt context, etc.
833 */
834 int use_pse = 0;
835#else
836 int use_pse = cpu_has_pse;
837#endif
Yinghai Lu4e296842008-06-24 12:18:14 -0700838
839 /*
840 * Find space for the kernel direct mapping tables.
841 */
842 if (!after_init_bootmem)
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700843 find_early_table_space(end, use_pse);
Yinghai Lu4e296842008-06-24 12:18:14 -0700844
845#ifdef CONFIG_X86_PAE
846 set_nx();
847 if (nx_enabled)
848 printk(KERN_INFO "NX (Execute Disable) protection: active\n");
849#endif
850
851 /* Enable PSE if available */
852 if (cpu_has_pse)
853 set_in_cr4(X86_CR4_PSE);
854
855 /* Enable PGE if available */
856 if (cpu_has_pge) {
857 set_in_cr4(X86_CR4_PGE);
Jeremy Fitzhardingeef5e94a2008-07-01 16:46:36 -0700858 __supported_pte_mask |= _PAGE_GLOBAL;
Yinghai Lu4e296842008-06-24 12:18:14 -0700859 }
860
Yinghai Lua04ad822008-06-29 00:39:06 -0700861 /*
862 * Don't use a large page for the first 2/4MB of memory
863 * because there are often fixed size MTRRs in there
864 * and overlapping MTRRs into large pages can cause
865 * slowdowns.
866 */
867 big_page_start = PMD_SIZE;
868
869 if (start < big_page_start) {
870 start_pfn = start >> PAGE_SHIFT;
871 end_pfn = min(big_page_start>>PAGE_SHIFT, end>>PAGE_SHIFT);
872 } else {
873 /* head is not big page alignment ? */
874 start_pfn = start >> PAGE_SHIFT;
875 end_pfn = ((start + (PMD_SIZE - 1))>>PMD_SHIFT)
876 << (PMD_SHIFT - PAGE_SHIFT);
877 }
878 if (start_pfn < end_pfn)
879 kernel_physical_mapping_init(pgd_base, start_pfn, end_pfn, 0);
880
881 /* big page range */
882 start_pfn = ((start + (PMD_SIZE - 1))>>PMD_SHIFT)
883 << (PMD_SHIFT - PAGE_SHIFT);
884 if (start_pfn < (big_page_start >> PAGE_SHIFT))
885 start_pfn = big_page_start >> PAGE_SHIFT;
886 end_pfn = (end>>PMD_SHIFT) << (PMD_SHIFT - PAGE_SHIFT);
887 if (start_pfn < end_pfn)
888 kernel_physical_mapping_init(pgd_base, start_pfn, end_pfn,
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700889 use_pse);
Yinghai Lua04ad822008-06-29 00:39:06 -0700890
891 /* tail is not big page alignment ? */
892 start_pfn = end_pfn;
893 if (start_pfn > (big_page_start>>PAGE_SHIFT)) {
894 end_pfn = end >> PAGE_SHIFT;
895 if (start_pfn < end_pfn)
896 kernel_physical_mapping_init(pgd_base, start_pfn,
897 end_pfn, 0);
898 }
Yinghai Lu4e296842008-06-24 12:18:14 -0700899
Yinghai Lue7b37892008-06-25 21:51:28 -0700900 early_ioremap_page_table_range_init(pgd_base);
901
Yinghai Lu4e296842008-06-24 12:18:14 -0700902 load_cr3(swapper_pg_dir);
903
904 __flush_tlb_all();
905
906 if (!after_init_bootmem)
907 reserve_early(table_start << PAGE_SHIFT,
908 table_end << PAGE_SHIFT, "PGTABLE");
909
Yinghai Lucaadbdc2008-07-15 00:03:44 -0700910 if (!after_init_bootmem)
911 early_memtest(start, end);
912
Yinghai Lu4e296842008-06-24 12:18:14 -0700913 return end >> PAGE_SHIFT;
914}
915
Yinghai Lue7b37892008-06-25 21:51:28 -0700916
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917/*
918 * paging_init() sets up the page tables - note that the first 8MB are
919 * already mapped by head.S.
920 *
921 * This routines also unmaps the page at virtual kernel address 0, so
922 * that we can trap those pesky NULL-reference errors in the kernel.
923 */
924void __init paging_init(void)
925{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 pagetable_init();
927
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 __flush_tlb_all();
929
930 kmap_init();
Yinghai Lu11cd0bc2008-06-23 19:51:10 -0700931
932 /*
933 * NOTE: at this point the bootmem allocator is fully available.
934 */
Yinghai Lu11cd0bc2008-06-23 19:51:10 -0700935 sparse_init();
936 zone_sizes_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937}
938
939/*
940 * Test if the WP bit works in supervisor mode. It isn't supported on 386's
Dmitri Vorobievf7f17a62008-04-21 00:47:55 +0400941 * and also on some strange 486's. All 586+'s are OK. This used to involve
942 * black magic jumps to work around some nasty CPU bugs, but fortunately the
943 * switch to using exceptions got rid of all that.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945static void __init test_wp_bit(void)
946{
Ingo Molnard7d119d2008-01-30 13:34:10 +0100947 printk(KERN_INFO
948 "Checking if this processor honours the WP bit even in supervisor mode...");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
950 /* Any page-aligned address will do, the test is non-destructive */
951 __set_fixmap(FIX_WP_TEST, __pa(&swapper_pg_dir), PAGE_READONLY);
952 boot_cpu_data.wp_works_ok = do_test_wp_bit();
953 clear_fixmap(FIX_WP_TEST);
954
955 if (!boot_cpu_data.wp_works_ok) {
Ingo Molnard7d119d2008-01-30 13:34:10 +0100956 printk(KERN_CONT "No.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957#ifdef CONFIG_X86_WP_WORKS_OK
Ingo Molnard7d119d2008-01-30 13:34:10 +0100958 panic(
959 "This kernel doesn't support CPU's with broken WP. Recompile it for a 386!");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960#endif
961 } else {
Ingo Molnard7d119d2008-01-30 13:34:10 +0100962 printk(KERN_CONT "Ok.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 }
964}
965
Ingo Molnar8550eb92008-01-30 13:34:10 +0100966static struct kcore_list kcore_mem, kcore_vmalloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
968void __init mem_init(void)
969{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 int codesize, reservedpages, datasize, initsize;
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700971 int tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
Hugh Dickinsbb577f92008-09-07 01:51:33 -0700973 start_periodic_check_for_corruption();
974
Jeremy Fitzhardingecfb80c92008-12-16 12:17:36 -0800975 pci_iommu_alloc();
976
Andy Whitcroft05b79bd2005-06-23 00:07:57 -0700977#ifdef CONFIG_FLATMEM
Eric Sesterhenn8d8f3cb2006-10-03 23:34:58 +0200978 BUG_ON(!mem_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 /* this will put all low memory onto the freelists */
981 totalram_pages += free_all_bootmem();
982
983 reservedpages = 0;
984 for (tmp = 0; tmp < max_low_pfn; tmp++)
985 /*
Ingo Molnar8550eb92008-01-30 13:34:10 +0100986 * Only count reserved RAM pages:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 */
988 if (page_is_ram(tmp) && PageReserved(pfn_to_page(tmp)))
989 reservedpages++;
990
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700991 set_highmem_pages_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
993 codesize = (unsigned long) &_etext - (unsigned long) &_text;
994 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
995 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
996
Ingo Molnar8550eb92008-01-30 13:34:10 +0100997 kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
998 kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 VMALLOC_END-VMALLOC_START);
1000
Ingo Molnar8550eb92008-01-30 13:34:10 +01001001 printk(KERN_INFO "Memory: %luk/%luk available (%dk kernel code, "
1002 "%dk reserved, %dk data, %dk init, %ldk highmem)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
1004 num_physpages << (PAGE_SHIFT-10),
1005 codesize >> 10,
1006 reservedpages << (PAGE_SHIFT-10),
1007 datasize >> 10,
1008 initsize >> 10,
1009 (unsigned long) (totalhigh_pages << (PAGE_SHIFT-10))
1010 );
1011
Ingo Molnard7d119d2008-01-30 13:34:10 +01001012 printk(KERN_INFO "virtual kernel memory layout:\n"
Ingo Molnar8550eb92008-01-30 13:34:10 +01001013 " fixmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001014#ifdef CONFIG_HIGHMEM
Ingo Molnar8550eb92008-01-30 13:34:10 +01001015 " pkmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001016#endif
Ingo Molnar8550eb92008-01-30 13:34:10 +01001017 " vmalloc : 0x%08lx - 0x%08lx (%4ld MB)\n"
1018 " lowmem : 0x%08lx - 0x%08lx (%4ld MB)\n"
1019 " .init : 0x%08lx - 0x%08lx (%4ld kB)\n"
1020 " .data : 0x%08lx - 0x%08lx (%4ld kB)\n"
1021 " .text : 0x%08lx - 0x%08lx (%4ld kB)\n",
1022 FIXADDR_START, FIXADDR_TOP,
1023 (FIXADDR_TOP - FIXADDR_START) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001024
1025#ifdef CONFIG_HIGHMEM
Ingo Molnar8550eb92008-01-30 13:34:10 +01001026 PKMAP_BASE, PKMAP_BASE+LAST_PKMAP*PAGE_SIZE,
1027 (LAST_PKMAP*PAGE_SIZE) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001028#endif
1029
Ingo Molnar8550eb92008-01-30 13:34:10 +01001030 VMALLOC_START, VMALLOC_END,
1031 (VMALLOC_END - VMALLOC_START) >> 20,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001032
Ingo Molnar8550eb92008-01-30 13:34:10 +01001033 (unsigned long)__va(0), (unsigned long)high_memory,
1034 ((unsigned long)high_memory - (unsigned long)__va(0)) >> 20,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001035
Ingo Molnar8550eb92008-01-30 13:34:10 +01001036 (unsigned long)&__init_begin, (unsigned long)&__init_end,
1037 ((unsigned long)&__init_end -
1038 (unsigned long)&__init_begin) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001039
Ingo Molnar8550eb92008-01-30 13:34:10 +01001040 (unsigned long)&_etext, (unsigned long)&_edata,
1041 ((unsigned long)&_edata - (unsigned long)&_etext) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001042
Ingo Molnar8550eb92008-01-30 13:34:10 +01001043 (unsigned long)&_text, (unsigned long)&_etext,
1044 ((unsigned long)&_etext - (unsigned long)&_text) >> 10);
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001045
1046#ifdef CONFIG_HIGHMEM
Ingo Molnar8550eb92008-01-30 13:34:10 +01001047 BUG_ON(PKMAP_BASE + LAST_PKMAP*PAGE_SIZE > FIXADDR_START);
1048 BUG_ON(VMALLOC_END > PKMAP_BASE);
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001049#endif
Ingo Molnar8550eb92008-01-30 13:34:10 +01001050 BUG_ON(VMALLOC_START > VMALLOC_END);
1051 BUG_ON((unsigned long)high_memory > VMALLOC_START);
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001052
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 if (boot_cpu_data.wp_works_ok < 0)
1054 test_wp_bit();
1055
Hugh Dickins61165d72008-05-13 14:26:57 +01001056 save_pg_dir();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 zap_low_mappings();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058}
1059
KAMEZAWA Hiroyukiad8f5792006-05-20 15:00:03 -07001060#ifdef CONFIG_MEMORY_HOTPLUG
Yasunori Gotobc02af92006-06-27 02:53:30 -07001061int arch_add_memory(int nid, u64 start, u64 size)
Dave Hansen05039b92005-10-29 18:16:57 -07001062{
Yasunori Goto7c7e9422006-12-22 01:11:13 -08001063 struct pglist_data *pgdata = NODE_DATA(nid);
Christoph Lameter776ed982006-09-25 23:31:09 -07001064 struct zone *zone = pgdata->node_zones + ZONE_HIGHMEM;
Dave Hansen05039b92005-10-29 18:16:57 -07001065 unsigned long start_pfn = start >> PAGE_SHIFT;
1066 unsigned long nr_pages = size >> PAGE_SHIFT;
1067
1068 return __add_pages(zone, start_pfn, nr_pages);
1069}
Andi Kleen9d99aaa2006-04-07 19:49:15 +02001070#endif
Dave Hansen05039b92005-10-29 18:16:57 -07001071
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072/*
1073 * This function cannot be __init, since exceptions don't work in that
1074 * section. Put this after the callers, so that it cannot be inlined.
1075 */
Ingo Molnar8550eb92008-01-30 13:34:10 +01001076static noinline int do_test_wp_bit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077{
1078 char tmp_reg;
1079 int flag;
1080
1081 __asm__ __volatile__(
Ingo Molnar8550eb92008-01-30 13:34:10 +01001082 " movb %0, %1 \n"
1083 "1: movb %1, %0 \n"
1084 " xorl %2, %2 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 "2: \n"
H. Peter Anvinf832ff12008-02-04 16:47:58 +01001086 _ASM_EXTABLE(1b,2b)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 :"=m" (*(char *)fix_to_virt(FIX_WP_TEST)),
1088 "=q" (tmp_reg),
1089 "=r" (flag)
1090 :"2" (1)
1091 :"memory");
Ingo Molnar8550eb92008-01-30 13:34:10 +01001092
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 return flag;
1094}
1095
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001096#ifdef CONFIG_DEBUG_RODATA
Arjan van de Venedeed302008-01-30 13:34:08 +01001097const int rodata_test_data = 0xC3;
1098EXPORT_SYMBOL_GPL(rodata_test_data);
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001099
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001100void mark_rodata_ro(void)
1101{
Jan Beulich6fb14752007-05-02 19:27:10 +02001102 unsigned long start = PFN_ALIGN(_text);
1103 unsigned long size = PFN_ALIGN(_etext) - start;
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001104
Steven Rostedt8f0f9962008-05-12 21:20:56 +02001105#ifndef CONFIG_DYNAMIC_FTRACE
1106 /* Dynamic tracing modifies the kernel text section */
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -05001107 set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
1108 printk(KERN_INFO "Write protecting the kernel text: %luk\n",
1109 size >> 10);
Andi Kleen0c42f392008-01-30 13:33:42 +01001110
1111#ifdef CONFIG_CPA_DEBUG
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -05001112 printk(KERN_INFO "Testing CPA: Reverting %lx-%lx\n",
1113 start, start+size);
1114 set_pages_rw(virt_to_page(start), size>>PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +01001115
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -05001116 printk(KERN_INFO "Testing CPA: write protecting again\n");
1117 set_pages_ro(virt_to_page(start), size>>PAGE_SHIFT);
Linus Torvalds602033e2007-07-26 12:07:21 -07001118#endif
Steven Rostedt8f0f9962008-05-12 21:20:56 +02001119#endif /* CONFIG_DYNAMIC_FTRACE */
1120
Jan Beulich6fb14752007-05-02 19:27:10 +02001121 start += size;
1122 size = (unsigned long)__end_rodata - start;
Arjan van de Ven6d238cc2008-01-30 13:34:06 +01001123 set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
Ingo Molnard7d119d2008-01-30 13:34:10 +01001124 printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
1125 size >> 10);
Arjan van de Venedeed302008-01-30 13:34:08 +01001126 rodata_test();
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001127
Andi Kleen0c42f392008-01-30 13:33:42 +01001128#ifdef CONFIG_CPA_DEBUG
Ingo Molnard7d119d2008-01-30 13:34:10 +01001129 printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, start + size);
Arjan van de Ven6d238cc2008-01-30 13:34:06 +01001130 set_pages_rw(virt_to_page(start), size >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +01001131
Ingo Molnard7d119d2008-01-30 13:34:10 +01001132 printk(KERN_INFO "Testing CPA: write protecting again\n");
Arjan van de Ven6d238cc2008-01-30 13:34:06 +01001133 set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +01001134#endif
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001135}
1136#endif
1137
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001138void free_init_pages(char *what, unsigned long begin, unsigned long end)
1139{
Ingo Molnaree01f112008-01-30 13:34:09 +01001140#ifdef CONFIG_DEBUG_PAGEALLOC
1141 /*
1142 * If debugging page accesses then do not free this memory but
1143 * mark them not present - any buggy init-section access will
1144 * create a kernel page fault:
1145 */
1146 printk(KERN_INFO "debug: unmapping init memory %08lx..%08lx\n",
1147 begin, PAGE_ALIGN(end));
1148 set_memory_np(begin, (end - begin) >> PAGE_SHIFT);
1149#else
Ingo Molnar86f03982008-01-30 13:34:09 +01001150 unsigned long addr;
1151
Arjan van de Ven3c1df682008-01-30 13:34:07 +01001152 /*
1153 * We just marked the kernel text read only above, now that
1154 * we are going to free part of that, we need to make that
1155 * writeable first.
1156 */
1157 set_memory_rw(begin, (end - begin) >> PAGE_SHIFT);
1158
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001159 for (addr = begin; addr < end; addr += PAGE_SIZE) {
Linus Torvaldse3ebadd2007-05-07 08:44:24 -07001160 ClearPageReserved(virt_to_page(addr));
1161 init_page_count(virt_to_page(addr));
1162 memset((void *)addr, POISON_FREE_INITMEM, PAGE_SIZE);
1163 free_page(addr);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001164 totalram_pages++;
1165 }
Jan Beulich6fb14752007-05-02 19:27:10 +02001166 printk(KERN_INFO "Freeing %s: %luk freed\n", what, (end - begin) >> 10);
Ingo Molnaree01f112008-01-30 13:34:09 +01001167#endif
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001168}
1169
1170void free_initmem(void)
1171{
1172 free_init_pages("unused kernel memory",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -07001173 (unsigned long)(&__init_begin),
1174 (unsigned long)(&__init_end));
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001175}
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001176
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177#ifdef CONFIG_BLK_DEV_INITRD
1178void free_initrd_mem(unsigned long start, unsigned long end)
1179{
Linus Torvaldse3ebadd2007-05-07 08:44:24 -07001180 free_init_pages("initrd memory", start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181}
1182#endif
Yinghai Lud2dbf342008-06-13 02:00:56 -07001183
1184int __init reserve_bootmem_generic(unsigned long phys, unsigned long len,
1185 int flags)
1186{
1187 return reserve_bootmem(phys, len, flags);
1188}