blob: 333c9e79d46f9fc78c52771d95478c46090deefd [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>
Ingo Molnar46eaa672008-10-12 15:06:29 +020034#include <asm/bios_ebda.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/processor.h>
36#include <asm/system.h>
37#include <asm/uaccess.h>
38#include <asm/pgtable.h>
39#include <asm/dma.h>
40#include <asm/fixmap.h>
41#include <asm/e820.h>
42#include <asm/apic.h>
Ingo Molnar8550eb92008-01-30 13:34:10 +010043#include <asm/bugs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <asm/tlb.h>
45#include <asm/tlbflush.h>
Jeremy Fitzhardingea5a19c62008-01-30 13:33:39 +010046#include <asm/pgalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <asm/sections.h>
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +020048#include <asm/paravirt.h>
Ian Campbell551889a62008-02-09 23:24:09 +010049#include <asm/setup.h>
Harvey Harrison7bfeab92008-02-12 12:12:01 -080050#include <asm/cacheflush.h>
Jaswinder Singha80495e2008-07-23 17:33:57 +053051#include <asm/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53unsigned int __VMALLOC_RESERVE = 128 << 20;
54
Yinghai Luf361a452008-07-10 20:38:26 -070055unsigned long max_low_pfn_mapped;
Thomas Gleixner67794292008-03-21 21:27:10 +010056unsigned long max_pfn_mapped;
Andi Kleen7d1116a2008-03-12 03:53:27 +010057
Linus Torvalds1da177e2005-04-16 15:20:36 -070058DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
59unsigned long highstart_pfn, highend_pfn;
60
Ingo Molnar8550eb92008-01-30 13:34:10 +010061static noinline int do_test_wp_bit(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Yinghai Lu4e296842008-06-24 12:18:14 -070063
64static unsigned long __initdata table_start;
65static unsigned long __meminitdata table_end;
66static unsigned long __meminitdata table_top;
67
68static int __initdata after_init_bootmem;
69
Jan Beulichd6be89a2008-12-16 11:42:45 +000070static __init void *alloc_low_page(void)
Yinghai Lu4e296842008-06-24 12:18:14 -070071{
72 unsigned long pfn = table_end++;
73 void *adr;
74
75 if (pfn >= table_top)
76 panic("alloc_low_page: ran out of memory");
77
78 adr = __va(pfn * PAGE_SIZE);
79 memset(adr, 0, PAGE_SIZE);
Yinghai Lu4e296842008-06-24 12:18:14 -070080 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
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +020094 if (!(pgd_val(*pgd) & _PAGE_PRESENT)) {
Yinghai Lu4e296842008-06-24 12:18:14 -070095 if (after_init_bootmem)
96 pmd_table = (pmd_t *)alloc_bootmem_low_pages(PAGE_SIZE);
97 else
Jan Beulichd6be89a2008-12-16 11:42:45 +000098 pmd_table = (pmd_t *)alloc_low_page();
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -070099 paravirt_alloc_pmd(&init_mm, __pa(pmd_table) >> PAGE_SHIFT);
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200100 set_pgd(pgd, __pgd(__pa(pmd_table) | _PAGE_PRESENT));
101 pud = pud_offset(pgd, 0);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100102 BUG_ON(pmd_table != pmd_offset(pud, 0));
Zhaoleia376f302008-10-31 17:43:04 +0800103
104 return pmd_table;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200105 }
106#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 pud = pud_offset(pgd, 0);
108 pmd_table = pmd_offset(pud, 0);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 return pmd_table;
111}
112
113/*
114 * Create a page table and place a pointer to it in a middle page
Ingo Molnar8550eb92008-01-30 13:34:10 +0100115 * directory entry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 */
117static pte_t * __init one_page_table_init(pmd_t *pmd)
118{
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200119 if (!(pmd_val(*pmd) & _PAGE_PRESENT)) {
Ingo Molnar509a80c2007-10-17 18:04:34 +0200120 pte_t *page_table = NULL;
121
Yinghai Lu4e296842008-06-24 12:18:14 -0700122 if (after_init_bootmem) {
Ingo Molnar509a80c2007-10-17 18:04:34 +0200123#ifdef CONFIG_DEBUG_PAGEALLOC
Yinghai Lu4e296842008-06-24 12:18:14 -0700124 page_table = (pte_t *) alloc_bootmem_pages(PAGE_SIZE);
Ingo Molnar509a80c2007-10-17 18:04:34 +0200125#endif
Yinghai Lu4e296842008-06-24 12:18:14 -0700126 if (!page_table)
127 page_table =
Ingo Molnar509a80c2007-10-17 18:04:34 +0200128 (pte_t *)alloc_bootmem_low_pages(PAGE_SIZE);
Jan Beulichd6be89a2008-12-16 11:42:45 +0000129 } else
130 page_table = (pte_t *)alloc_low_page();
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200131
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700132 paravirt_alloc_pte(&init_mm, __pa(page_table) >> PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 set_pmd(pmd, __pmd(__pa(page_table) | _PAGE_TABLE));
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200134 BUG_ON(page_table != pte_offset_kernel(pmd, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 }
Ingo Molnar509a80c2007-10-17 18:04:34 +0200136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 return pte_offset_kernel(pmd, 0);
138}
139
140/*
Ingo Molnar8550eb92008-01-30 13:34:10 +0100141 * This function initializes a certain range of kernel virtual memory
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 * with new bootmem page tables, everywhere page tables are missing in
143 * the given range.
Ingo Molnar8550eb92008-01-30 13:34:10 +0100144 *
145 * NOTE: The pagetables are allocated contiguous on the physical space
146 * so we can cache the place of the first one and move around without
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 * checking the pgd every time.
148 */
Ingo Molnar8550eb92008-01-30 13:34:10 +0100149static void __init
150page_table_range_init(unsigned long start, unsigned long end, pgd_t *pgd_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 int pgd_idx, pmd_idx;
153 unsigned long vaddr;
Ingo Molnar8550eb92008-01-30 13:34:10 +0100154 pgd_t *pgd;
155 pmd_t *pmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157 vaddr = start;
158 pgd_idx = pgd_index(vaddr);
159 pmd_idx = pmd_index(vaddr);
160 pgd = pgd_base + pgd_idx;
161
162 for ( ; (pgd_idx < PTRS_PER_PGD) && (vaddr != end); pgd++, pgd_idx++) {
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200163 pmd = one_md_table_init(pgd);
164 pmd = pmd + pmd_index(vaddr);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100165 for (; (pmd_idx < PTRS_PER_PMD) && (vaddr != end);
166 pmd++, pmd_idx++) {
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200167 one_page_table_init(pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169 vaddr += PMD_SIZE;
170 }
171 pmd_idx = 0;
172 }
173}
174
175static inline int is_kernel_text(unsigned long addr)
176{
177 if (addr >= PAGE_OFFSET && addr <= (unsigned long)__init_end)
178 return 1;
179 return 0;
180}
181
182/*
Ingo Molnar8550eb92008-01-30 13:34:10 +0100183 * This maps the physical memory to kernel virtual address space, a total
184 * of max_low_pfn pages, by creating page tables starting from address
185 * PAGE_OFFSET:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 */
Yinghai Lu4e296842008-06-24 12:18:14 -0700187static void __init kernel_physical_mapping_init(pgd_t *pgd_base,
Yinghai Lua04ad822008-06-29 00:39:06 -0700188 unsigned long start_pfn,
189 unsigned long end_pfn,
190 int use_pse)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
Ingo Molnar8550eb92008-01-30 13:34:10 +0100192 int pgd_idx, pmd_idx, pte_ofs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 unsigned long pfn;
194 pgd_t *pgd;
195 pmd_t *pmd;
196 pte_t *pte;
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700197 unsigned pages_2m, pages_4k;
198 int mapping_iter;
199
200 /*
201 * First iteration will setup identity mapping using large/small pages
202 * based on use_pse, with other attributes same as set by
203 * the early code in head_32.S
204 *
205 * Second iteration will setup the appropriate attributes (NX, GLOBAL..)
206 * as desired for the kernel identity mapping.
207 *
208 * This two pass mechanism conforms to the TLB app note which says:
209 *
210 * "Software should not write to a paging-structure entry in a way
211 * that would change, for any linear address, both the page size
212 * and either the page frame or attributes."
213 */
214 mapping_iter = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Yinghai Lua04ad822008-06-29 00:39:06 -0700216 if (!cpu_has_pse)
217 use_pse = 0;
218
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700219repeat:
220 pages_2m = pages_4k = 0;
Yinghai Lua04ad822008-06-29 00:39:06 -0700221 pfn = start_pfn;
222 pgd_idx = pgd_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 pgd = pgd_base + pgd_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 for (; pgd_idx < PTRS_PER_PGD; pgd++, pgd_idx++) {
225 pmd = one_md_table_init(pgd);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100226
Yinghai Lua04ad822008-06-29 00:39:06 -0700227 if (pfn >= end_pfn)
228 continue;
229#ifdef CONFIG_X86_PAE
230 pmd_idx = pmd_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
231 pmd += pmd_idx;
232#else
233 pmd_idx = 0;
234#endif
235 for (; pmd_idx < PTRS_PER_PMD && pfn < end_pfn;
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100236 pmd++, pmd_idx++) {
Ingo Molnar8550eb92008-01-30 13:34:10 +0100237 unsigned int addr = pfn * PAGE_SIZE + PAGE_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Ingo Molnar8550eb92008-01-30 13:34:10 +0100239 /*
240 * Map with big pages if possible, otherwise
241 * create normal page tables:
242 */
Yinghai Lua04ad822008-06-29 00:39:06 -0700243 if (use_pse) {
Ingo Molnar8550eb92008-01-30 13:34:10 +0100244 unsigned int addr2;
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100245 pgprot_t prot = PAGE_KERNEL_LARGE;
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700246 /*
247 * first pass will use the same initial
248 * identity mapping attribute + _PAGE_PSE.
249 */
250 pgprot_t init_prot =
251 __pgprot(PTE_IDENT_ATTR |
252 _PAGE_PSE);
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100253
Ingo Molnar8550eb92008-01-30 13:34:10 +0100254 addr2 = (pfn + PTRS_PER_PTE-1) * PAGE_SIZE +
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100255 PAGE_OFFSET + PAGE_SIZE-1;
256
Ingo Molnar8550eb92008-01-30 13:34:10 +0100257 if (is_kernel_text(addr) ||
258 is_kernel_text(addr2))
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100259 prot = PAGE_KERNEL_LARGE_EXEC;
260
Andi Kleence0c0e52008-05-02 11:46:49 +0200261 pages_2m++;
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700262 if (mapping_iter == 1)
263 set_pmd(pmd, pfn_pmd(pfn, init_prot));
264 else
265 set_pmd(pmd, pfn_pmd(pfn, prot));
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 pfn += PTRS_PER_PTE;
Ingo Molnar8550eb92008-01-30 13:34:10 +0100268 continue;
269 }
270 pte = one_page_table_init(pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Yinghai Lua04ad822008-06-29 00:39:06 -0700272 pte_ofs = pte_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
273 pte += pte_ofs;
274 for (; pte_ofs < PTRS_PER_PTE && pfn < end_pfn;
Ingo Molnar8550eb92008-01-30 13:34:10 +0100275 pte++, pfn++, pte_ofs++, addr += PAGE_SIZE) {
276 pgprot_t prot = PAGE_KERNEL;
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700277 /*
278 * first pass will use the same initial
279 * identity mapping attribute.
280 */
281 pgprot_t init_prot = __pgprot(PTE_IDENT_ATTR);
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100282
Ingo Molnar8550eb92008-01-30 13:34:10 +0100283 if (is_kernel_text(addr))
284 prot = PAGE_KERNEL_EXEC;
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100285
Andi Kleence0c0e52008-05-02 11:46:49 +0200286 pages_4k++;
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700287 if (mapping_iter == 1)
288 set_pte(pte, pfn_pte(pfn, init_prot));
289 else
290 set_pte(pte, pfn_pte(pfn, prot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 }
292 }
293 }
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700294 if (mapping_iter == 1) {
295 /*
296 * update direct mapping page count only in the first
297 * iteration.
298 */
299 update_page_count(PG_LEVEL_2M, pages_2m);
300 update_page_count(PG_LEVEL_4K, pages_4k);
301
302 /*
303 * local global flush tlb, which will flush the previous
304 * mappings present in both small and large page TLB's.
305 */
306 __flush_tlb_all();
307
308 /*
309 * Second iteration will set the actual desired PTE attributes.
310 */
311 mapping_iter = 2;
312 goto repeat;
313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314}
315
Arjan van de Venae531c22008-04-24 23:40:47 +0200316/*
317 * devmem_is_allowed() checks to see if /dev/mem access to a certain address
318 * is valid. The argument is a physical page number.
319 *
320 *
321 * On x86, access has to be given to the first megabyte of ram because that area
322 * contains bios code and data regions used by X and dosemu and similar apps.
323 * Access has to be given to non-kernel-ram areas as well, these contain the PCI
324 * mmio resources as well as potential bios/acpi data regions.
325 */
326int devmem_is_allowed(unsigned long pagenr)
327{
328 if (pagenr <= 256)
329 return 1;
330 if (!page_is_ram(pagenr))
331 return 1;
332 return 0;
333}
334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335pte_t *kmap_pte;
336pgprot_t kmap_prot;
337
Ingo Molnar8550eb92008-01-30 13:34:10 +0100338static inline pte_t *kmap_get_fixmap_pte(unsigned long vaddr)
339{
340 return pte_offset_kernel(pmd_offset(pud_offset(pgd_offset_k(vaddr),
341 vaddr), vaddr), vaddr);
342}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
344static void __init kmap_init(void)
345{
346 unsigned long kmap_vstart;
347
Ingo Molnar8550eb92008-01-30 13:34:10 +0100348 /*
349 * Cache the first kmap pte:
350 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 kmap_vstart = __fix_to_virt(FIX_KMAP_BEGIN);
352 kmap_pte = kmap_get_fixmap_pte(kmap_vstart);
353
354 kmap_prot = PAGE_KERNEL;
355}
356
Keith Packardfd940932008-10-30 19:37:09 -0700357#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358static void __init permanent_kmaps_init(pgd_t *pgd_base)
359{
Ingo Molnar8550eb92008-01-30 13:34:10 +0100360 unsigned long vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 pgd_t *pgd;
362 pud_t *pud;
363 pmd_t *pmd;
364 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366 vaddr = PKMAP_BASE;
367 page_table_range_init(vaddr, vaddr + PAGE_SIZE*LAST_PKMAP, pgd_base);
368
369 pgd = swapper_pg_dir + pgd_index(vaddr);
370 pud = pud_offset(pgd, vaddr);
371 pmd = pmd_offset(pud, vaddr);
372 pte = pte_offset_kernel(pmd, vaddr);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100373 pkmap_page_table = pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374}
375
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700376static void __init add_one_highpage_init(struct page *page, int pfn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700378 ClearPageReserved(page);
379 init_page_count(page);
380 __free_page(page);
381 totalhigh_pages++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382}
383
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700384struct add_highpages_data {
385 unsigned long start_pfn;
386 unsigned long end_pfn;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700387};
388
Yinghai Lud52d53b2008-06-16 20:10:55 -0700389static int __init add_highpages_work_fn(unsigned long start_pfn,
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700390 unsigned long end_pfn, void *datax)
391{
392 int node_pfn;
393 struct page *page;
394 unsigned long final_start_pfn, final_end_pfn;
395 struct add_highpages_data *data;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700396
397 data = (struct add_highpages_data *)datax;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700398
399 final_start_pfn = max(start_pfn, data->start_pfn);
400 final_end_pfn = min(end_pfn, data->end_pfn);
401 if (final_start_pfn >= final_end_pfn)
Yinghai Lud52d53b2008-06-16 20:10:55 -0700402 return 0;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700403
404 for (node_pfn = final_start_pfn; node_pfn < final_end_pfn;
405 node_pfn++) {
406 if (!pfn_valid(node_pfn))
407 continue;
408 page = pfn_to_page(node_pfn);
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700409 add_one_highpage_init(page, node_pfn);
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700410 }
411
Yinghai Lud52d53b2008-06-16 20:10:55 -0700412 return 0;
413
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700414}
415
416void __init add_highpages_with_active_regions(int nid, unsigned long start_pfn,
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700417 unsigned long end_pfn)
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700418{
419 struct add_highpages_data data;
420
421 data.start_pfn = start_pfn;
422 data.end_pfn = end_pfn;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700423
424 work_with_active_regions(nid, add_highpages_work_fn, &data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425}
426
Ingo Molnar8550eb92008-01-30 13:34:10 +0100427#ifndef CONFIG_NUMA
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700428static void __init set_highmem_pages_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429{
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700430 add_highpages_with_active_regions(0, highstart_pfn, highend_pfn);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 totalram_pages += totalhigh_pages;
433}
Ingo Molnar8550eb92008-01-30 13:34:10 +0100434#endif /* !CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
436#else
Ingo Molnar8550eb92008-01-30 13:34:10 +0100437# define permanent_kmaps_init(pgd_base) do { } while (0)
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700438# define set_highmem_pages_init() do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439#endif /* CONFIG_HIGHMEM */
440
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200441void __init native_pagetable_setup_start(pgd_t *base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
Ian Campbell551889a62008-02-09 23:24:09 +0100443 unsigned long pfn, va;
444 pgd_t *pgd;
445 pud_t *pud;
446 pmd_t *pmd;
447 pte_t *pte;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200448
449 /*
Ian Campbell551889a62008-02-09 23:24:09 +0100450 * Remove any mappings which extend past the end of physical
451 * memory from the boot time page table:
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200452 */
Ian Campbell551889a62008-02-09 23:24:09 +0100453 for (pfn = max_low_pfn + 1; pfn < 1<<(32-PAGE_SHIFT); pfn++) {
454 va = PAGE_OFFSET + (pfn<<PAGE_SHIFT);
455 pgd = base + pgd_index(va);
456 if (!pgd_present(*pgd))
457 break;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200458
Ian Campbell551889a62008-02-09 23:24:09 +0100459 pud = pud_offset(pgd, va);
460 pmd = pmd_offset(pud, va);
461 if (!pmd_present(*pmd))
462 break;
463
464 pte = pte_offset_kernel(pmd, va);
465 if (!pte_present(*pte))
466 break;
467
468 pte_clear(NULL, va, pte);
469 }
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700470 paravirt_alloc_pmd(&init_mm, __pa(base) >> PAGE_SHIFT);
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200471}
472
473void __init native_pagetable_setup_done(pgd_t *base)
474{
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200475}
476
477/*
478 * Build a proper pagetable for the kernel mappings. Up until this
479 * point, we've been running on some set of pagetables constructed by
480 * the boot process.
481 *
482 * If we're booting on native hardware, this will be a pagetable
Ian Campbell551889a62008-02-09 23:24:09 +0100483 * constructed in arch/x86/kernel/head_32.S. The root of the
484 * pagetable will be swapper_pg_dir.
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200485 *
486 * If we're booting paravirtualized under a hypervisor, then there are
487 * more options: we may already be running PAE, and the pagetable may
488 * or may not be based in swapper_pg_dir. In any case,
489 * paravirt_pagetable_setup_start() will set up swapper_pg_dir
490 * appropriately for the rest of the initialization to work.
491 *
492 * In general, pagetable_init() assumes that the pagetable may already
493 * be partially populated, and so it avoids stomping on any existing
494 * mappings.
495 */
Yinghai Lue7b37892008-06-25 21:51:28 -0700496static void __init early_ioremap_page_table_range_init(pgd_t *pgd_base)
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200497{
Ingo Molnar8550eb92008-01-30 13:34:10 +0100498 unsigned long vaddr, end;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 /*
501 * Fixed mappings, only the page table structure has to be
502 * created - mappings will be set by set_fixmap():
503 */
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100504 early_ioremap_clear();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 vaddr = __fix_to_virt(__end_of_fixed_addresses - 1) & PMD_MASK;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200506 end = (FIXADDR_TOP + PMD_SIZE - 1) & PMD_MASK;
507 page_table_range_init(vaddr, end, pgd_base);
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100508 early_ioremap_reset();
Yinghai Lue7b37892008-06-25 21:51:28 -0700509}
510
511static void __init pagetable_init(void)
512{
513 pgd_t *pgd_base = swapper_pg_dir;
514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 permanent_kmaps_init(pgd_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516}
517
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100518#ifdef CONFIG_ACPI_SLEEP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519/*
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100520 * ACPI suspend needs this for resume, because things like the intel-agp
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 * driver might have split up a kernel 4MB mapping.
522 */
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100523char swsusp_pg_dir[PAGE_SIZE]
Ingo Molnar8550eb92008-01-30 13:34:10 +0100524 __attribute__ ((aligned(PAGE_SIZE)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
526static inline void save_pg_dir(void)
527{
528 memcpy(swsusp_pg_dir, swapper_pg_dir, PAGE_SIZE);
529}
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100530#else /* !CONFIG_ACPI_SLEEP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531static inline void save_pg_dir(void)
532{
533}
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100534#endif /* !CONFIG_ACPI_SLEEP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
Ingo Molnar8550eb92008-01-30 13:34:10 +0100536void zap_low_mappings(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537{
538 int i;
539
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 /*
541 * Zap initial low-memory mappings.
542 *
543 * Note that "pgd_clear()" doesn't do it for
544 * us, because pgd_clear() is a no-op on i386.
545 */
Jeremy Fitzhardinge68db0652008-03-17 16:37:13 -0700546 for (i = 0; i < KERNEL_PGD_BOUNDARY; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547#ifdef CONFIG_X86_PAE
548 set_pgd(swapper_pg_dir+i, __pgd(1 + __pa(empty_zero_page)));
549#else
550 set_pgd(swapper_pg_dir+i, __pgd(0));
551#endif
Ingo Molnar8550eb92008-01-30 13:34:10 +0100552 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 flush_tlb_all();
554}
555
Ingo Molnar8550eb92008-01-30 13:34:10 +0100556int nx_enabled;
Jan Beulichd5321ab2007-07-21 17:10:26 +0200557
Jeremy Fitzhardingebe43d722008-09-07 15:21:13 -0700558pteval_t __supported_pte_mask __read_mostly = ~(_PAGE_NX | _PAGE_GLOBAL | _PAGE_IOMAP);
Jeremy Fitzhardinge6fdc05d2008-01-30 13:32:57 +0100559EXPORT_SYMBOL_GPL(__supported_pte_mask);
560
Jan Beulichd5321ab2007-07-21 17:10:26 +0200561#ifdef CONFIG_X86_PAE
562
Ingo Molnar8550eb92008-01-30 13:34:10 +0100563static int disable_nx __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
565/*
566 * noexec = on|off
567 *
568 * Control non executable mappings.
569 *
570 * on Enable
571 * off Disable
572 */
Rusty Russell1a3f2392006-09-26 10:52:32 +0200573static int __init noexec_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574{
Rusty Russell1a3f2392006-09-26 10:52:32 +0200575 if (!str || !strcmp(str, "on")) {
576 if (cpu_has_nx) {
577 __supported_pte_mask |= _PAGE_NX;
578 disable_nx = 0;
579 }
Ingo Molnar8550eb92008-01-30 13:34:10 +0100580 } else {
581 if (!strcmp(str, "off")) {
582 disable_nx = 1;
583 __supported_pte_mask &= ~_PAGE_NX;
584 } else {
585 return -EINVAL;
586 }
587 }
Rusty Russell1a3f2392006-09-26 10:52:32 +0200588
589 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590}
Rusty Russell1a3f2392006-09-26 10:52:32 +0200591early_param("noexec", noexec_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593static void __init set_nx(void)
594{
595 unsigned int v[4], l, h;
596
597 if (cpu_has_pae && (cpuid_eax(0x80000000) > 0x80000001)) {
598 cpuid(0x80000001, &v[0], &v[1], &v[2], &v[3]);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 if ((v[3] & (1 << 20)) && !disable_nx) {
601 rdmsr(MSR_EFER, l, h);
602 l |= EFER_NX;
603 wrmsr(MSR_EFER, l, h);
604 nx_enabled = 1;
605 __supported_pte_mask |= _PAGE_NX;
606 }
607 }
608}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609#endif
610
Yinghai Lu90d967e2008-06-23 21:00:45 +0200611/* user-defined highmem size */
612static unsigned int highmem_pages = -1;
613
614/*
615 * highmem=size forces highmem to be exactly 'size' bytes.
616 * This works even on boxes that have no highmem otherwise.
617 * This also works to reduce highmem size on bigger boxes.
618 */
619static int __init parse_highmem(char *arg)
620{
621 if (!arg)
622 return -EINVAL;
623
624 highmem_pages = memparse(arg, &arg) >> PAGE_SHIFT;
625 return 0;
626}
627early_param("highmem", parse_highmem);
628
629/*
630 * Determine low and high memory ranges:
631 */
Yinghai Lu2ec65f82008-06-23 03:05:30 -0700632void __init find_low_pfn_range(void)
Yinghai Lu90d967e2008-06-23 21:00:45 +0200633{
Yinghai Lu2ec65f82008-06-23 03:05:30 -0700634 /* it could update max_pfn */
635
Yinghai Lu346cafe2008-06-23 03:06:14 -0700636 /* max_low_pfn is 0, we already have early_res support */
Yinghai Lu90d967e2008-06-23 21:00:45 +0200637
638 max_low_pfn = max_pfn;
639 if (max_low_pfn > MAXMEM_PFN) {
640 if (highmem_pages == -1)
641 highmem_pages = max_pfn - MAXMEM_PFN;
642 if (highmem_pages + MAXMEM_PFN < max_pfn)
643 max_pfn = MAXMEM_PFN + highmem_pages;
644 if (highmem_pages + MAXMEM_PFN > max_pfn) {
645 printk(KERN_WARNING "only %luMB highmem pages "
646 "available, ignoring highmem size of %uMB.\n",
647 pages_to_mb(max_pfn - MAXMEM_PFN),
648 pages_to_mb(highmem_pages));
649 highmem_pages = 0;
650 }
651 max_low_pfn = MAXMEM_PFN;
652#ifndef CONFIG_HIGHMEM
653 /* Maximum memory usable is what is directly addressable */
654 printk(KERN_WARNING "Warning only %ldMB will be used.\n",
655 MAXMEM>>20);
656 if (max_pfn > MAX_NONPAE_PFN)
657 printk(KERN_WARNING
658 "Use a HIGHMEM64G enabled kernel.\n");
659 else
660 printk(KERN_WARNING "Use a HIGHMEM enabled kernel.\n");
661 max_pfn = MAXMEM_PFN;
662#else /* !CONFIG_HIGHMEM */
663#ifndef CONFIG_HIGHMEM64G
664 if (max_pfn > MAX_NONPAE_PFN) {
665 max_pfn = MAX_NONPAE_PFN;
666 printk(KERN_WARNING "Warning only 4GB will be used."
667 "Use a HIGHMEM64G enabled kernel.\n");
668 }
669#endif /* !CONFIG_HIGHMEM64G */
670#endif /* !CONFIG_HIGHMEM */
671 } else {
672 if (highmem_pages == -1)
673 highmem_pages = 0;
674#ifdef CONFIG_HIGHMEM
675 if (highmem_pages >= max_pfn) {
676 printk(KERN_ERR "highmem size specified (%uMB) is "
677 "bigger than pages available (%luMB)!.\n",
678 pages_to_mb(highmem_pages),
679 pages_to_mb(max_pfn));
680 highmem_pages = 0;
681 }
682 if (highmem_pages) {
683 if (max_low_pfn - highmem_pages <
684 64*1024*1024/PAGE_SIZE){
685 printk(KERN_ERR "highmem size %uMB results in "
686 "smaller than 64MB lowmem, ignoring it.\n"
687 , pages_to_mb(highmem_pages));
688 highmem_pages = 0;
689 }
690 max_low_pfn -= highmem_pages;
691 }
692#else
693 if (highmem_pages)
694 printk(KERN_ERR "ignoring highmem size on non-highmem"
695 " kernel!\n");
696#endif
697 }
Yinghai Lu90d967e2008-06-23 21:00:45 +0200698}
699
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700700#ifndef CONFIG_NEED_MULTIPLE_NODES
Yinghai Lu2ec65f82008-06-23 03:05:30 -0700701void __init initmem_init(unsigned long start_pfn,
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700702 unsigned long end_pfn)
703{
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700704#ifdef CONFIG_HIGHMEM
705 highstart_pfn = highend_pfn = max_pfn;
706 if (max_pfn > max_low_pfn)
707 highstart_pfn = max_low_pfn;
708 memory_present(0, 0, highend_pfn);
Yinghai Lucb95a132008-07-02 00:31:02 -0700709 e820_register_active_regions(0, 0, highend_pfn);
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700710 printk(KERN_NOTICE "%ldMB HIGHMEM available.\n",
711 pages_to_mb(highend_pfn - highstart_pfn));
712 num_physpages = highend_pfn;
713 high_memory = (void *) __va(highstart_pfn * PAGE_SIZE - 1) + 1;
714#else
715 memory_present(0, 0, max_low_pfn);
Yinghai Lucb95a132008-07-02 00:31:02 -0700716 e820_register_active_regions(0, 0, max_low_pfn);
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700717 num_physpages = max_low_pfn;
718 high_memory = (void *) __va(max_low_pfn * PAGE_SIZE - 1) + 1;
719#endif
720#ifdef CONFIG_FLATMEM
721 max_mapnr = num_physpages;
722#endif
723 printk(KERN_NOTICE "%ldMB LOWMEM available.\n",
724 pages_to_mb(max_low_pfn));
725
726 setup_bootmem_allocator();
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700727}
Yinghai Lucb95a132008-07-02 00:31:02 -0700728#endif /* !CONFIG_NEED_MULTIPLE_NODES */
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700729
Yinghai Lucb95a132008-07-02 00:31:02 -0700730static void __init zone_sizes_init(void)
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700731{
732 unsigned long max_zone_pfns[MAX_NR_ZONES];
733 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
734 max_zone_pfns[ZONE_DMA] =
735 virt_to_phys((char *)MAX_DMA_ADDRESS) >> PAGE_SHIFT;
736 max_zone_pfns[ZONE_NORMAL] = max_low_pfn;
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700737#ifdef CONFIG_HIGHMEM
738 max_zone_pfns[ZONE_HIGHMEM] = highend_pfn;
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700739#endif
740
741 free_area_init_nodes(max_zone_pfns);
742}
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700743
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700744void __init setup_bootmem_allocator(void)
745{
746 int i;
747 unsigned long bootmap_size, bootmap;
748 /*
749 * Initialize the boot-time allocator (with low memory only):
750 */
751 bootmap_size = bootmem_bootmap_pages(max_low_pfn)<<PAGE_SHIFT;
752 bootmap = find_e820_area(min_low_pfn<<PAGE_SHIFT,
753 max_pfn_mapped<<PAGE_SHIFT, bootmap_size,
754 PAGE_SIZE);
755 if (bootmap == -1L)
756 panic("Cannot find bootmem map of size %ld\n", bootmap_size);
757 reserve_early(bootmap, bootmap + bootmap_size, "BOOTMAP");
Yinghai Lu225c37d2008-06-22 02:46:58 -0700758
Yinghai Lu346cafe2008-06-23 03:06:14 -0700759 /* don't touch min_low_pfn */
760 bootmap_size = init_bootmem_node(NODE_DATA(0), bootmap >> PAGE_SHIFT,
761 min_low_pfn, max_low_pfn);
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700762 printk(KERN_INFO " mapped low ram: 0 - %08lx\n",
763 max_pfn_mapped<<PAGE_SHIFT);
764 printk(KERN_INFO " low ram: %08lx - %08lx\n",
765 min_low_pfn<<PAGE_SHIFT, max_low_pfn<<PAGE_SHIFT);
766 printk(KERN_INFO " bootmap %08lx - %08lx\n",
767 bootmap, bootmap + bootmap_size);
768 for_each_online_node(i)
769 free_bootmem_with_active_regions(i, max_low_pfn);
770 early_res_to_bootmem(0, max_low_pfn<<PAGE_SHIFT);
771
Yinghai Lu4e296842008-06-24 12:18:14 -0700772 after_init_bootmem = 1;
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700773}
774
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700775static void __init find_early_table_space(unsigned long end, int use_pse)
Yinghai Lu4e296842008-06-24 12:18:14 -0700776{
Yinghai Lu7482b0e2008-06-28 03:30:39 -0700777 unsigned long puds, pmds, ptes, tables, start;
Yinghai Lu4e296842008-06-24 12:18:14 -0700778
779 puds = (end + PUD_SIZE - 1) >> PUD_SHIFT;
780 tables = PAGE_ALIGN(puds * sizeof(pud_t));
781
782 pmds = (end + PMD_SIZE - 1) >> PMD_SHIFT;
783 tables += PAGE_ALIGN(pmds * sizeof(pmd_t));
784
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700785 if (use_pse) {
Yinghai Lu7482b0e2008-06-28 03:30:39 -0700786 unsigned long extra;
Yinghai Lua04ad822008-06-29 00:39:06 -0700787
788 extra = end - ((end>>PMD_SHIFT) << PMD_SHIFT);
789 extra += PMD_SIZE;
Yinghai Lu7482b0e2008-06-28 03:30:39 -0700790 ptes = (extra + PAGE_SIZE - 1) >> PAGE_SHIFT;
791 } else
792 ptes = (end + PAGE_SIZE - 1) >> PAGE_SHIFT;
793
794 tables += PAGE_ALIGN(ptes * sizeof(pte_t));
Jeremy Fitzhardinge8207c252008-06-24 17:32:48 -0400795
Yinghai Lua04ad822008-06-29 00:39:06 -0700796 /* for fixmap */
797 tables += PAGE_SIZE * 2;
798
Yinghai Lu4e296842008-06-24 12:18:14 -0700799 /*
800 * RED-PEN putting page tables only on node 0 could
801 * cause a hotspot and fill up ZONE_DMA. The page tables
802 * need roughly 0.5KB per GB.
803 */
804 start = 0x7000;
805 table_start = find_e820_area(start, max_pfn_mapped<<PAGE_SHIFT,
806 tables, PAGE_SIZE);
807 if (table_start == -1UL)
808 panic("Cannot find space for the kernel page tables");
809
810 table_start >>= PAGE_SHIFT;
811 table_end = table_start;
812 table_top = table_start + (tables>>PAGE_SHIFT);
813
814 printk(KERN_DEBUG "kernel direct mapping tables up to %lx @ %lx-%lx\n",
815 end, table_start << PAGE_SHIFT,
816 (table_start << PAGE_SHIFT) + tables);
817}
818
819unsigned long __init_refok init_memory_mapping(unsigned long start,
820 unsigned long end)
821{
822 pgd_t *pgd_base = swapper_pg_dir;
Yinghai Lua04ad822008-06-29 00:39:06 -0700823 unsigned long start_pfn, end_pfn;
824 unsigned long big_page_start;
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700825#ifdef CONFIG_DEBUG_PAGEALLOC
826 /*
827 * For CONFIG_DEBUG_PAGEALLOC, identity mapping will use small pages.
828 * This will simplify cpa(), which otherwise needs to support splitting
829 * large pages into small in interrupt context, etc.
830 */
831 int use_pse = 0;
832#else
833 int use_pse = cpu_has_pse;
834#endif
Yinghai Lu4e296842008-06-24 12:18:14 -0700835
836 /*
837 * Find space for the kernel direct mapping tables.
838 */
839 if (!after_init_bootmem)
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700840 find_early_table_space(end, use_pse);
Yinghai Lu4e296842008-06-24 12:18:14 -0700841
842#ifdef CONFIG_X86_PAE
843 set_nx();
844 if (nx_enabled)
845 printk(KERN_INFO "NX (Execute Disable) protection: active\n");
846#endif
847
848 /* Enable PSE if available */
849 if (cpu_has_pse)
850 set_in_cr4(X86_CR4_PSE);
851
852 /* Enable PGE if available */
853 if (cpu_has_pge) {
854 set_in_cr4(X86_CR4_PGE);
Jeremy Fitzhardingeef5e94a2008-07-01 16:46:36 -0700855 __supported_pte_mask |= _PAGE_GLOBAL;
Yinghai Lu4e296842008-06-24 12:18:14 -0700856 }
857
Yinghai Lua04ad822008-06-29 00:39:06 -0700858 /*
859 * Don't use a large page for the first 2/4MB of memory
860 * because there are often fixed size MTRRs in there
861 * and overlapping MTRRs into large pages can cause
862 * slowdowns.
863 */
864 big_page_start = PMD_SIZE;
865
866 if (start < big_page_start) {
867 start_pfn = start >> PAGE_SHIFT;
868 end_pfn = min(big_page_start>>PAGE_SHIFT, end>>PAGE_SHIFT);
869 } else {
870 /* head is not big page alignment ? */
871 start_pfn = start >> PAGE_SHIFT;
872 end_pfn = ((start + (PMD_SIZE - 1))>>PMD_SHIFT)
873 << (PMD_SHIFT - PAGE_SHIFT);
874 }
875 if (start_pfn < end_pfn)
876 kernel_physical_mapping_init(pgd_base, start_pfn, end_pfn, 0);
877
878 /* big page range */
879 start_pfn = ((start + (PMD_SIZE - 1))>>PMD_SHIFT)
880 << (PMD_SHIFT - PAGE_SHIFT);
881 if (start_pfn < (big_page_start >> PAGE_SHIFT))
882 start_pfn = big_page_start >> PAGE_SHIFT;
883 end_pfn = (end>>PMD_SHIFT) << (PMD_SHIFT - PAGE_SHIFT);
884 if (start_pfn < end_pfn)
885 kernel_physical_mapping_init(pgd_base, start_pfn, end_pfn,
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700886 use_pse);
Yinghai Lua04ad822008-06-29 00:39:06 -0700887
888 /* tail is not big page alignment ? */
889 start_pfn = end_pfn;
890 if (start_pfn > (big_page_start>>PAGE_SHIFT)) {
891 end_pfn = end >> PAGE_SHIFT;
892 if (start_pfn < end_pfn)
893 kernel_physical_mapping_init(pgd_base, start_pfn,
894 end_pfn, 0);
895 }
Yinghai Lu4e296842008-06-24 12:18:14 -0700896
Yinghai Lue7b37892008-06-25 21:51:28 -0700897 early_ioremap_page_table_range_init(pgd_base);
898
Yinghai Lu4e296842008-06-24 12:18:14 -0700899 load_cr3(swapper_pg_dir);
900
901 __flush_tlb_all();
902
903 if (!after_init_bootmem)
904 reserve_early(table_start << PAGE_SHIFT,
905 table_end << PAGE_SHIFT, "PGTABLE");
906
Yinghai Lucaadbdc2008-07-15 00:03:44 -0700907 if (!after_init_bootmem)
908 early_memtest(start, end);
909
Yinghai Lu4e296842008-06-24 12:18:14 -0700910 return end >> PAGE_SHIFT;
911}
912
Yinghai Lue7b37892008-06-25 21:51:28 -0700913
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914/*
915 * paging_init() sets up the page tables - note that the first 8MB are
916 * already mapped by head.S.
917 *
918 * This routines also unmaps the page at virtual kernel address 0, so
919 * that we can trap those pesky NULL-reference errors in the kernel.
920 */
921void __init paging_init(void)
922{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 pagetable_init();
924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 __flush_tlb_all();
926
927 kmap_init();
Yinghai Lu11cd0bc2008-06-23 19:51:10 -0700928
929 /*
930 * NOTE: at this point the bootmem allocator is fully available.
931 */
Yinghai Lu11cd0bc2008-06-23 19:51:10 -0700932 sparse_init();
933 zone_sizes_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934}
935
936/*
937 * Test if the WP bit works in supervisor mode. It isn't supported on 386's
Dmitri Vorobievf7f17a62008-04-21 00:47:55 +0400938 * and also on some strange 486's. All 586+'s are OK. This used to involve
939 * black magic jumps to work around some nasty CPU bugs, but fortunately the
940 * switch to using exceptions got rid of all that.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942static void __init test_wp_bit(void)
943{
Ingo Molnard7d119d2008-01-30 13:34:10 +0100944 printk(KERN_INFO
945 "Checking if this processor honours the WP bit even in supervisor mode...");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
947 /* Any page-aligned address will do, the test is non-destructive */
948 __set_fixmap(FIX_WP_TEST, __pa(&swapper_pg_dir), PAGE_READONLY);
949 boot_cpu_data.wp_works_ok = do_test_wp_bit();
950 clear_fixmap(FIX_WP_TEST);
951
952 if (!boot_cpu_data.wp_works_ok) {
Ingo Molnard7d119d2008-01-30 13:34:10 +0100953 printk(KERN_CONT "No.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954#ifdef CONFIG_X86_WP_WORKS_OK
Ingo Molnard7d119d2008-01-30 13:34:10 +0100955 panic(
956 "This kernel doesn't support CPU's with broken WP. Recompile it for a 386!");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957#endif
958 } else {
Ingo Molnard7d119d2008-01-30 13:34:10 +0100959 printk(KERN_CONT "Ok.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 }
961}
962
Ingo Molnar8550eb92008-01-30 13:34:10 +0100963static struct kcore_list kcore_mem, kcore_vmalloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
965void __init mem_init(void)
966{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 int codesize, reservedpages, datasize, initsize;
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700968 int tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Hugh Dickinsbb577f92008-09-07 01:51:33 -0700970 start_periodic_check_for_corruption();
971
Andy Whitcroft05b79bd2005-06-23 00:07:57 -0700972#ifdef CONFIG_FLATMEM
Eric Sesterhenn8d8f3cb2006-10-03 23:34:58 +0200973 BUG_ON(!mem_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 /* this will put all low memory onto the freelists */
976 totalram_pages += free_all_bootmem();
977
978 reservedpages = 0;
979 for (tmp = 0; tmp < max_low_pfn; tmp++)
980 /*
Ingo Molnar8550eb92008-01-30 13:34:10 +0100981 * Only count reserved RAM pages:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 */
983 if (page_is_ram(tmp) && PageReserved(pfn_to_page(tmp)))
984 reservedpages++;
985
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700986 set_highmem_pages_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
988 codesize = (unsigned long) &_etext - (unsigned long) &_text;
989 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
990 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
991
Ingo Molnar8550eb92008-01-30 13:34:10 +0100992 kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
993 kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 VMALLOC_END-VMALLOC_START);
995
Ingo Molnar8550eb92008-01-30 13:34:10 +0100996 printk(KERN_INFO "Memory: %luk/%luk available (%dk kernel code, "
997 "%dk reserved, %dk data, %dk init, %ldk highmem)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
999 num_physpages << (PAGE_SHIFT-10),
1000 codesize >> 10,
1001 reservedpages << (PAGE_SHIFT-10),
1002 datasize >> 10,
1003 initsize >> 10,
1004 (unsigned long) (totalhigh_pages << (PAGE_SHIFT-10))
1005 );
1006
Ingo Molnard7d119d2008-01-30 13:34:10 +01001007 printk(KERN_INFO "virtual kernel memory layout:\n"
Ingo Molnar8550eb92008-01-30 13:34:10 +01001008 " fixmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001009#ifdef CONFIG_HIGHMEM
Ingo Molnar8550eb92008-01-30 13:34:10 +01001010 " pkmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001011#endif
Ingo Molnar8550eb92008-01-30 13:34:10 +01001012 " vmalloc : 0x%08lx - 0x%08lx (%4ld MB)\n"
1013 " lowmem : 0x%08lx - 0x%08lx (%4ld MB)\n"
1014 " .init : 0x%08lx - 0x%08lx (%4ld kB)\n"
1015 " .data : 0x%08lx - 0x%08lx (%4ld kB)\n"
1016 " .text : 0x%08lx - 0x%08lx (%4ld kB)\n",
1017 FIXADDR_START, FIXADDR_TOP,
1018 (FIXADDR_TOP - FIXADDR_START) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001019
1020#ifdef CONFIG_HIGHMEM
Ingo Molnar8550eb92008-01-30 13:34:10 +01001021 PKMAP_BASE, PKMAP_BASE+LAST_PKMAP*PAGE_SIZE,
1022 (LAST_PKMAP*PAGE_SIZE) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001023#endif
1024
Ingo Molnar8550eb92008-01-30 13:34:10 +01001025 VMALLOC_START, VMALLOC_END,
1026 (VMALLOC_END - VMALLOC_START) >> 20,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001027
Ingo Molnar8550eb92008-01-30 13:34:10 +01001028 (unsigned long)__va(0), (unsigned long)high_memory,
1029 ((unsigned long)high_memory - (unsigned long)__va(0)) >> 20,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001030
Ingo Molnar8550eb92008-01-30 13:34:10 +01001031 (unsigned long)&__init_begin, (unsigned long)&__init_end,
1032 ((unsigned long)&__init_end -
1033 (unsigned long)&__init_begin) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001034
Ingo Molnar8550eb92008-01-30 13:34:10 +01001035 (unsigned long)&_etext, (unsigned long)&_edata,
1036 ((unsigned long)&_edata - (unsigned long)&_etext) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001037
Ingo Molnar8550eb92008-01-30 13:34:10 +01001038 (unsigned long)&_text, (unsigned long)&_etext,
1039 ((unsigned long)&_etext - (unsigned long)&_text) >> 10);
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001040
1041#ifdef CONFIG_HIGHMEM
Ingo Molnar8550eb92008-01-30 13:34:10 +01001042 BUG_ON(PKMAP_BASE + LAST_PKMAP*PAGE_SIZE > FIXADDR_START);
1043 BUG_ON(VMALLOC_END > PKMAP_BASE);
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001044#endif
Ingo Molnar8550eb92008-01-30 13:34:10 +01001045 BUG_ON(VMALLOC_START > VMALLOC_END);
1046 BUG_ON((unsigned long)high_memory > VMALLOC_START);
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001047
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 if (boot_cpu_data.wp_works_ok < 0)
1049 test_wp_bit();
1050
Hugh Dickins61165d72008-05-13 14:26:57 +01001051 save_pg_dir();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 zap_low_mappings();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053}
1054
KAMEZAWA Hiroyukiad8f5792006-05-20 15:00:03 -07001055#ifdef CONFIG_MEMORY_HOTPLUG
Yasunori Gotobc02af92006-06-27 02:53:30 -07001056int arch_add_memory(int nid, u64 start, u64 size)
Dave Hansen05039b92005-10-29 18:16:57 -07001057{
Yasunori Goto7c7e9422006-12-22 01:11:13 -08001058 struct pglist_data *pgdata = NODE_DATA(nid);
Christoph Lameter776ed982006-09-25 23:31:09 -07001059 struct zone *zone = pgdata->node_zones + ZONE_HIGHMEM;
Dave Hansen05039b92005-10-29 18:16:57 -07001060 unsigned long start_pfn = start >> PAGE_SHIFT;
1061 unsigned long nr_pages = size >> PAGE_SHIFT;
1062
1063 return __add_pages(zone, start_pfn, nr_pages);
1064}
Andi Kleen9d99aaa2006-04-07 19:49:15 +02001065#endif
Dave Hansen05039b92005-10-29 18:16:57 -07001066
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067/*
1068 * This function cannot be __init, since exceptions don't work in that
1069 * section. Put this after the callers, so that it cannot be inlined.
1070 */
Ingo Molnar8550eb92008-01-30 13:34:10 +01001071static noinline int do_test_wp_bit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072{
1073 char tmp_reg;
1074 int flag;
1075
1076 __asm__ __volatile__(
Ingo Molnar8550eb92008-01-30 13:34:10 +01001077 " movb %0, %1 \n"
1078 "1: movb %1, %0 \n"
1079 " xorl %2, %2 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 "2: \n"
H. Peter Anvinf832ff12008-02-04 16:47:58 +01001081 _ASM_EXTABLE(1b,2b)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 :"=m" (*(char *)fix_to_virt(FIX_WP_TEST)),
1083 "=q" (tmp_reg),
1084 "=r" (flag)
1085 :"2" (1)
1086 :"memory");
Ingo Molnar8550eb92008-01-30 13:34:10 +01001087
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 return flag;
1089}
1090
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001091#ifdef CONFIG_DEBUG_RODATA
Arjan van de Venedeed302008-01-30 13:34:08 +01001092const int rodata_test_data = 0xC3;
1093EXPORT_SYMBOL_GPL(rodata_test_data);
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001094
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001095void mark_rodata_ro(void)
1096{
Jan Beulich6fb14752007-05-02 19:27:10 +02001097 unsigned long start = PFN_ALIGN(_text);
1098 unsigned long size = PFN_ALIGN(_etext) - start;
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001099
Steven Rostedt8f0f9962008-05-12 21:20:56 +02001100#ifndef CONFIG_DYNAMIC_FTRACE
1101 /* Dynamic tracing modifies the kernel text section */
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -05001102 set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
1103 printk(KERN_INFO "Write protecting the kernel text: %luk\n",
1104 size >> 10);
Andi Kleen0c42f392008-01-30 13:33:42 +01001105
1106#ifdef CONFIG_CPA_DEBUG
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -05001107 printk(KERN_INFO "Testing CPA: Reverting %lx-%lx\n",
1108 start, start+size);
1109 set_pages_rw(virt_to_page(start), size>>PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +01001110
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -05001111 printk(KERN_INFO "Testing CPA: write protecting again\n");
1112 set_pages_ro(virt_to_page(start), size>>PAGE_SHIFT);
Linus Torvalds602033e2007-07-26 12:07:21 -07001113#endif
Steven Rostedt8f0f9962008-05-12 21:20:56 +02001114#endif /* CONFIG_DYNAMIC_FTRACE */
1115
Jan Beulich6fb14752007-05-02 19:27:10 +02001116 start += size;
1117 size = (unsigned long)__end_rodata - start;
Arjan van de Ven6d238cc2008-01-30 13:34:06 +01001118 set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
Ingo Molnard7d119d2008-01-30 13:34:10 +01001119 printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
1120 size >> 10);
Arjan van de Venedeed302008-01-30 13:34:08 +01001121 rodata_test();
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001122
Andi Kleen0c42f392008-01-30 13:33:42 +01001123#ifdef CONFIG_CPA_DEBUG
Ingo Molnard7d119d2008-01-30 13:34:10 +01001124 printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, start + size);
Arjan van de Ven6d238cc2008-01-30 13:34:06 +01001125 set_pages_rw(virt_to_page(start), size >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +01001126
Ingo Molnard7d119d2008-01-30 13:34:10 +01001127 printk(KERN_INFO "Testing CPA: write protecting again\n");
Arjan van de Ven6d238cc2008-01-30 13:34:06 +01001128 set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +01001129#endif
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001130}
1131#endif
1132
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001133void free_init_pages(char *what, unsigned long begin, unsigned long end)
1134{
Ingo Molnaree01f112008-01-30 13:34:09 +01001135#ifdef CONFIG_DEBUG_PAGEALLOC
1136 /*
1137 * If debugging page accesses then do not free this memory but
1138 * mark them not present - any buggy init-section access will
1139 * create a kernel page fault:
1140 */
1141 printk(KERN_INFO "debug: unmapping init memory %08lx..%08lx\n",
1142 begin, PAGE_ALIGN(end));
1143 set_memory_np(begin, (end - begin) >> PAGE_SHIFT);
1144#else
Ingo Molnar86f03989d2008-01-30 13:34:09 +01001145 unsigned long addr;
1146
Arjan van de Ven3c1df682008-01-30 13:34:07 +01001147 /*
1148 * We just marked the kernel text read only above, now that
1149 * we are going to free part of that, we need to make that
1150 * writeable first.
1151 */
1152 set_memory_rw(begin, (end - begin) >> PAGE_SHIFT);
1153
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001154 for (addr = begin; addr < end; addr += PAGE_SIZE) {
Linus Torvaldse3ebadd2007-05-07 08:44:24 -07001155 ClearPageReserved(virt_to_page(addr));
1156 init_page_count(virt_to_page(addr));
1157 memset((void *)addr, POISON_FREE_INITMEM, PAGE_SIZE);
1158 free_page(addr);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001159 totalram_pages++;
1160 }
Jan Beulich6fb14752007-05-02 19:27:10 +02001161 printk(KERN_INFO "Freeing %s: %luk freed\n", what, (end - begin) >> 10);
Ingo Molnaree01f112008-01-30 13:34:09 +01001162#endif
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001163}
1164
1165void free_initmem(void)
1166{
1167 free_init_pages("unused kernel memory",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -07001168 (unsigned long)(&__init_begin),
1169 (unsigned long)(&__init_end));
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001170}
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001171
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172#ifdef CONFIG_BLK_DEV_INITRD
1173void free_initrd_mem(unsigned long start, unsigned long end)
1174{
Linus Torvaldse3ebadd2007-05-07 08:44:24 -07001175 free_init_pages("initrd memory", start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176}
1177#endif
Yinghai Lud2dbf342008-06-13 02:00:56 -07001178
1179int __init reserve_bootmem_generic(unsigned long phys, unsigned long len,
1180 int flags)
1181{
1182 return reserve_bootmem(phys, len, flags);
1183}