blob: d3a45d54547a87c5bf064c7ecebd98e0492f2f5f [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 Campbell551889a2008-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
70static __init void *alloc_low_page(unsigned long *phys)
71{
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);
80 *phys = pfn * PAGE_SIZE;
81 return adr;
82}
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084/*
85 * Creates a middle page table and puts a pointer to it in the
86 * given global directory entry. This only returns the gd entry
87 * in non-PAE compilation mode, since the middle layer is folded.
88 */
89static pmd_t * __init one_md_table_init(pgd_t *pgd)
90{
91 pud_t *pud;
92 pmd_t *pmd_table;
Ingo Molnar8550eb92008-01-30 13:34:10 +010093
Linus Torvalds1da177e2005-04-16 15:20:36 -070094#ifdef CONFIG_X86_PAE
Yinghai Lu4e296842008-06-24 12:18:14 -070095 unsigned long phys;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +020096 if (!(pgd_val(*pgd) & _PAGE_PRESENT)) {
Yinghai Lu4e296842008-06-24 12:18:14 -070097 if (after_init_bootmem)
98 pmd_table = (pmd_t *)alloc_bootmem_low_pages(PAGE_SIZE);
99 else
100 pmd_table = (pmd_t *)alloc_low_page(&phys);
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700101 paravirt_alloc_pmd(&init_mm, __pa(pmd_table) >> PAGE_SHIFT);
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200102 set_pgd(pgd, __pgd(__pa(pmd_table) | _PAGE_PRESENT));
103 pud = pud_offset(pgd, 0);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100104 BUG_ON(pmd_table != pmd_offset(pud, 0));
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);
Yinghai Lu4e296842008-06-24 12:18:14 -0700129 } else {
130 unsigned long phys;
131 page_table = (pte_t *)alloc_low_page(&phys);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100132 }
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200133
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700134 paravirt_alloc_pte(&init_mm, __pa(page_table) >> PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 set_pmd(pmd, __pmd(__pa(page_table) | _PAGE_TABLE));
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200136 BUG_ON(page_table != pte_offset_kernel(pmd, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 }
Ingo Molnar509a80c2007-10-17 18:04:34 +0200138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 return pte_offset_kernel(pmd, 0);
140}
141
142/*
Ingo Molnar8550eb92008-01-30 13:34:10 +0100143 * This function initializes a certain range of kernel virtual memory
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 * with new bootmem page tables, everywhere page tables are missing in
145 * the given range.
Ingo Molnar8550eb92008-01-30 13:34:10 +0100146 *
147 * NOTE: The pagetables are allocated contiguous on the physical space
148 * so we can cache the place of the first one and move around without
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 * checking the pgd every time.
150 */
Ingo Molnar8550eb92008-01-30 13:34:10 +0100151static void __init
152page_table_range_init(unsigned long start, unsigned long end, pgd_t *pgd_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 int pgd_idx, pmd_idx;
155 unsigned long vaddr;
Ingo Molnar8550eb92008-01-30 13:34:10 +0100156 pgd_t *pgd;
157 pmd_t *pmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159 vaddr = start;
160 pgd_idx = pgd_index(vaddr);
161 pmd_idx = pmd_index(vaddr);
162 pgd = pgd_base + pgd_idx;
163
164 for ( ; (pgd_idx < PTRS_PER_PGD) && (vaddr != end); pgd++, pgd_idx++) {
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200165 pmd = one_md_table_init(pgd);
166 pmd = pmd + pmd_index(vaddr);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100167 for (; (pmd_idx < PTRS_PER_PMD) && (vaddr != end);
168 pmd++, pmd_idx++) {
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200169 one_page_table_init(pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171 vaddr += PMD_SIZE;
172 }
173 pmd_idx = 0;
174 }
175}
176
177static inline int is_kernel_text(unsigned long addr)
178{
179 if (addr >= PAGE_OFFSET && addr <= (unsigned long)__init_end)
180 return 1;
181 return 0;
182}
183
184/*
Ingo Molnar8550eb92008-01-30 13:34:10 +0100185 * This maps the physical memory to kernel virtual address space, a total
186 * of max_low_pfn pages, by creating page tables starting from address
187 * PAGE_OFFSET:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 */
Yinghai Lu4e296842008-06-24 12:18:14 -0700189static void __init kernel_physical_mapping_init(pgd_t *pgd_base,
Yinghai Lua04ad822008-06-29 00:39:06 -0700190 unsigned long start_pfn,
191 unsigned long end_pfn,
192 int use_pse)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193{
Ingo Molnar8550eb92008-01-30 13:34:10 +0100194 int pgd_idx, pmd_idx, pte_ofs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 unsigned long pfn;
196 pgd_t *pgd;
197 pmd_t *pmd;
198 pte_t *pte;
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700199 unsigned pages_2m, pages_4k;
200 int mapping_iter;
201
202 /*
203 * First iteration will setup identity mapping using large/small pages
204 * based on use_pse, with other attributes same as set by
205 * the early code in head_32.S
206 *
207 * Second iteration will setup the appropriate attributes (NX, GLOBAL..)
208 * as desired for the kernel identity mapping.
209 *
210 * This two pass mechanism conforms to the TLB app note which says:
211 *
212 * "Software should not write to a paging-structure entry in a way
213 * that would change, for any linear address, both the page size
214 * and either the page frame or attributes."
215 */
216 mapping_iter = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Yinghai Lua04ad822008-06-29 00:39:06 -0700218 if (!cpu_has_pse)
219 use_pse = 0;
220
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700221repeat:
222 pages_2m = pages_4k = 0;
Yinghai Lua04ad822008-06-29 00:39:06 -0700223 pfn = start_pfn;
224 pgd_idx = pgd_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 pgd = pgd_base + pgd_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 for (; pgd_idx < PTRS_PER_PGD; pgd++, pgd_idx++) {
227 pmd = one_md_table_init(pgd);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100228
Yinghai Lua04ad822008-06-29 00:39:06 -0700229 if (pfn >= end_pfn)
230 continue;
231#ifdef CONFIG_X86_PAE
232 pmd_idx = pmd_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
233 pmd += pmd_idx;
234#else
235 pmd_idx = 0;
236#endif
237 for (; pmd_idx < PTRS_PER_PMD && pfn < end_pfn;
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100238 pmd++, pmd_idx++) {
Ingo Molnar8550eb92008-01-30 13:34:10 +0100239 unsigned int addr = pfn * PAGE_SIZE + PAGE_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Ingo Molnar8550eb92008-01-30 13:34:10 +0100241 /*
242 * Map with big pages if possible, otherwise
243 * create normal page tables:
244 */
Yinghai Lua04ad822008-06-29 00:39:06 -0700245 if (use_pse) {
Ingo Molnar8550eb92008-01-30 13:34:10 +0100246 unsigned int addr2;
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100247 pgprot_t prot = PAGE_KERNEL_LARGE;
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700248 /*
249 * first pass will use the same initial
250 * identity mapping attribute + _PAGE_PSE.
251 */
252 pgprot_t init_prot =
253 __pgprot(PTE_IDENT_ATTR |
254 _PAGE_PSE);
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100255
Ingo Molnar8550eb92008-01-30 13:34:10 +0100256 addr2 = (pfn + PTRS_PER_PTE-1) * PAGE_SIZE +
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100257 PAGE_OFFSET + PAGE_SIZE-1;
258
Ingo Molnar8550eb92008-01-30 13:34:10 +0100259 if (is_kernel_text(addr) ||
260 is_kernel_text(addr2))
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100261 prot = PAGE_KERNEL_LARGE_EXEC;
262
Andi Kleence0c0e52008-05-02 11:46:49 +0200263 pages_2m++;
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700264 if (mapping_iter == 1)
265 set_pmd(pmd, pfn_pmd(pfn, init_prot));
266 else
267 set_pmd(pmd, pfn_pmd(pfn, prot));
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 pfn += PTRS_PER_PTE;
Ingo Molnar8550eb92008-01-30 13:34:10 +0100270 continue;
271 }
272 pte = one_page_table_init(pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Yinghai Lua04ad822008-06-29 00:39:06 -0700274 pte_ofs = pte_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
275 pte += pte_ofs;
276 for (; pte_ofs < PTRS_PER_PTE && pfn < end_pfn;
Ingo Molnar8550eb92008-01-30 13:34:10 +0100277 pte++, pfn++, pte_ofs++, addr += PAGE_SIZE) {
278 pgprot_t prot = PAGE_KERNEL;
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700279 /*
280 * first pass will use the same initial
281 * identity mapping attribute.
282 */
283 pgprot_t init_prot = __pgprot(PTE_IDENT_ATTR);
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100284
Ingo Molnar8550eb92008-01-30 13:34:10 +0100285 if (is_kernel_text(addr))
286 prot = PAGE_KERNEL_EXEC;
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100287
Andi Kleence0c0e52008-05-02 11:46:49 +0200288 pages_4k++;
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700289 if (mapping_iter == 1)
290 set_pte(pte, pfn_pte(pfn, init_prot));
291 else
292 set_pte(pte, pfn_pte(pfn, prot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 }
294 }
295 }
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700296 if (mapping_iter == 1) {
297 /*
298 * update direct mapping page count only in the first
299 * iteration.
300 */
301 update_page_count(PG_LEVEL_2M, pages_2m);
302 update_page_count(PG_LEVEL_4K, pages_4k);
303
304 /*
305 * local global flush tlb, which will flush the previous
306 * mappings present in both small and large page TLB's.
307 */
308 __flush_tlb_all();
309
310 /*
311 * Second iteration will set the actual desired PTE attributes.
312 */
313 mapping_iter = 2;
314 goto repeat;
315 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316}
317
Arjan van de Venae531c22008-04-24 23:40:47 +0200318/*
319 * devmem_is_allowed() checks to see if /dev/mem access to a certain address
320 * is valid. The argument is a physical page number.
321 *
322 *
323 * On x86, access has to be given to the first megabyte of ram because that area
324 * contains bios code and data regions used by X and dosemu and similar apps.
325 * Access has to be given to non-kernel-ram areas as well, these contain the PCI
326 * mmio resources as well as potential bios/acpi data regions.
327 */
328int devmem_is_allowed(unsigned long pagenr)
329{
330 if (pagenr <= 256)
331 return 1;
332 if (!page_is_ram(pagenr))
333 return 1;
334 return 0;
335}
336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337pte_t *kmap_pte;
338pgprot_t kmap_prot;
339
Ingo Molnar8550eb92008-01-30 13:34:10 +0100340static inline pte_t *kmap_get_fixmap_pte(unsigned long vaddr)
341{
342 return pte_offset_kernel(pmd_offset(pud_offset(pgd_offset_k(vaddr),
343 vaddr), vaddr), vaddr);
344}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
346static void __init kmap_init(void)
347{
348 unsigned long kmap_vstart;
349
Ingo Molnar8550eb92008-01-30 13:34:10 +0100350 /*
351 * Cache the first kmap pte:
352 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 kmap_vstart = __fix_to_virt(FIX_KMAP_BEGIN);
354 kmap_pte = kmap_get_fixmap_pte(kmap_vstart);
355
356 kmap_prot = PAGE_KERNEL;
357}
358
Keith Packardfd940932008-10-30 19:37:09 -0700359#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360static void __init permanent_kmaps_init(pgd_t *pgd_base)
361{
Ingo Molnar8550eb92008-01-30 13:34:10 +0100362 unsigned long vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 pgd_t *pgd;
364 pud_t *pud;
365 pmd_t *pmd;
366 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
368 vaddr = PKMAP_BASE;
369 page_table_range_init(vaddr, vaddr + PAGE_SIZE*LAST_PKMAP, pgd_base);
370
371 pgd = swapper_pg_dir + pgd_index(vaddr);
372 pud = pud_offset(pgd, vaddr);
373 pmd = pmd_offset(pud, vaddr);
374 pte = pte_offset_kernel(pmd, vaddr);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100375 pkmap_page_table = pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376}
377
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700378static void __init add_one_highpage_init(struct page *page, int pfn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700380 ClearPageReserved(page);
381 init_page_count(page);
382 __free_page(page);
383 totalhigh_pages++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384}
385
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700386struct add_highpages_data {
387 unsigned long start_pfn;
388 unsigned long end_pfn;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700389};
390
Yinghai Lud52d53b2008-06-16 20:10:55 -0700391static int __init add_highpages_work_fn(unsigned long start_pfn,
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700392 unsigned long end_pfn, void *datax)
393{
394 int node_pfn;
395 struct page *page;
396 unsigned long final_start_pfn, final_end_pfn;
397 struct add_highpages_data *data;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700398
399 data = (struct add_highpages_data *)datax;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700400
401 final_start_pfn = max(start_pfn, data->start_pfn);
402 final_end_pfn = min(end_pfn, data->end_pfn);
403 if (final_start_pfn >= final_end_pfn)
Yinghai Lud52d53b2008-06-16 20:10:55 -0700404 return 0;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700405
406 for (node_pfn = final_start_pfn; node_pfn < final_end_pfn;
407 node_pfn++) {
408 if (!pfn_valid(node_pfn))
409 continue;
410 page = pfn_to_page(node_pfn);
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700411 add_one_highpage_init(page, node_pfn);
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700412 }
413
Yinghai Lud52d53b2008-06-16 20:10:55 -0700414 return 0;
415
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700416}
417
418void __init add_highpages_with_active_regions(int nid, unsigned long start_pfn,
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700419 unsigned long end_pfn)
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700420{
421 struct add_highpages_data data;
422
423 data.start_pfn = start_pfn;
424 data.end_pfn = end_pfn;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700425
426 work_with_active_regions(nid, add_highpages_work_fn, &data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427}
428
Ingo Molnar8550eb92008-01-30 13:34:10 +0100429#ifndef CONFIG_NUMA
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700430static void __init set_highmem_pages_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431{
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700432 add_highpages_with_active_regions(0, highstart_pfn, highend_pfn);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 totalram_pages += totalhigh_pages;
435}
Ingo Molnar8550eb92008-01-30 13:34:10 +0100436#endif /* !CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438#else
Ingo Molnar8550eb92008-01-30 13:34:10 +0100439# define permanent_kmaps_init(pgd_base) do { } while (0)
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700440# define set_highmem_pages_init() do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441#endif /* CONFIG_HIGHMEM */
442
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200443void __init native_pagetable_setup_start(pgd_t *base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
Ian Campbell551889a2008-02-09 23:24:09 +0100445 unsigned long pfn, va;
446 pgd_t *pgd;
447 pud_t *pud;
448 pmd_t *pmd;
449 pte_t *pte;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200450
451 /*
Ian Campbell551889a2008-02-09 23:24:09 +0100452 * Remove any mappings which extend past the end of physical
453 * memory from the boot time page table:
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200454 */
Ian Campbell551889a2008-02-09 23:24:09 +0100455 for (pfn = max_low_pfn + 1; pfn < 1<<(32-PAGE_SHIFT); pfn++) {
456 va = PAGE_OFFSET + (pfn<<PAGE_SHIFT);
457 pgd = base + pgd_index(va);
458 if (!pgd_present(*pgd))
459 break;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200460
Ian Campbell551889a2008-02-09 23:24:09 +0100461 pud = pud_offset(pgd, va);
462 pmd = pmd_offset(pud, va);
463 if (!pmd_present(*pmd))
464 break;
465
466 pte = pte_offset_kernel(pmd, va);
467 if (!pte_present(*pte))
468 break;
469
470 pte_clear(NULL, va, pte);
471 }
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700472 paravirt_alloc_pmd(&init_mm, __pa(base) >> PAGE_SHIFT);
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200473}
474
475void __init native_pagetable_setup_done(pgd_t *base)
476{
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200477}
478
479/*
480 * Build a proper pagetable for the kernel mappings. Up until this
481 * point, we've been running on some set of pagetables constructed by
482 * the boot process.
483 *
484 * If we're booting on native hardware, this will be a pagetable
Ian Campbell551889a2008-02-09 23:24:09 +0100485 * constructed in arch/x86/kernel/head_32.S. The root of the
486 * pagetable will be swapper_pg_dir.
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200487 *
488 * If we're booting paravirtualized under a hypervisor, then there are
489 * more options: we may already be running PAE, and the pagetable may
490 * or may not be based in swapper_pg_dir. In any case,
491 * paravirt_pagetable_setup_start() will set up swapper_pg_dir
492 * appropriately for the rest of the initialization to work.
493 *
494 * In general, pagetable_init() assumes that the pagetable may already
495 * be partially populated, and so it avoids stomping on any existing
496 * mappings.
497 */
Yinghai Lue7b37892008-06-25 21:51:28 -0700498static void __init early_ioremap_page_table_range_init(pgd_t *pgd_base)
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200499{
Ingo Molnar8550eb92008-01-30 13:34:10 +0100500 unsigned long vaddr, end;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200501
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 /*
503 * Fixed mappings, only the page table structure has to be
504 * created - mappings will be set by set_fixmap():
505 */
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100506 early_ioremap_clear();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 vaddr = __fix_to_virt(__end_of_fixed_addresses - 1) & PMD_MASK;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200508 end = (FIXADDR_TOP + PMD_SIZE - 1) & PMD_MASK;
509 page_table_range_init(vaddr, end, pgd_base);
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100510 early_ioremap_reset();
Yinghai Lue7b37892008-06-25 21:51:28 -0700511}
512
513static void __init pagetable_init(void)
514{
515 pgd_t *pgd_base = swapper_pg_dir;
516
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 permanent_kmaps_init(pgd_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518}
519
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100520#ifdef CONFIG_ACPI_SLEEP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521/*
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100522 * ACPI suspend needs this for resume, because things like the intel-agp
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 * driver might have split up a kernel 4MB mapping.
524 */
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100525char swsusp_pg_dir[PAGE_SIZE]
Ingo Molnar8550eb92008-01-30 13:34:10 +0100526 __attribute__ ((aligned(PAGE_SIZE)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
528static inline void save_pg_dir(void)
529{
530 memcpy(swsusp_pg_dir, swapper_pg_dir, PAGE_SIZE);
531}
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100532#else /* !CONFIG_ACPI_SLEEP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533static inline void save_pg_dir(void)
534{
535}
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100536#endif /* !CONFIG_ACPI_SLEEP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Ingo Molnar8550eb92008-01-30 13:34:10 +0100538void zap_low_mappings(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
540 int i;
541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 /*
543 * Zap initial low-memory mappings.
544 *
545 * Note that "pgd_clear()" doesn't do it for
546 * us, because pgd_clear() is a no-op on i386.
547 */
Jeremy Fitzhardinge68db0652008-03-17 16:37:13 -0700548 for (i = 0; i < KERNEL_PGD_BOUNDARY; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549#ifdef CONFIG_X86_PAE
550 set_pgd(swapper_pg_dir+i, __pgd(1 + __pa(empty_zero_page)));
551#else
552 set_pgd(swapper_pg_dir+i, __pgd(0));
553#endif
Ingo Molnar8550eb92008-01-30 13:34:10 +0100554 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 flush_tlb_all();
556}
557
Ingo Molnar8550eb92008-01-30 13:34:10 +0100558int nx_enabled;
Jan Beulichd5321ab2007-07-21 17:10:26 +0200559
Jeremy Fitzhardingebe43d722008-09-07 15:21:13 -0700560pteval_t __supported_pte_mask __read_mostly = ~(_PAGE_NX | _PAGE_GLOBAL | _PAGE_IOMAP);
Jeremy Fitzhardinge6fdc05d2008-01-30 13:32:57 +0100561EXPORT_SYMBOL_GPL(__supported_pte_mask);
562
Jan Beulichd5321ab2007-07-21 17:10:26 +0200563#ifdef CONFIG_X86_PAE
564
Ingo Molnar8550eb92008-01-30 13:34:10 +0100565static int disable_nx __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
567/*
568 * noexec = on|off
569 *
570 * Control non executable mappings.
571 *
572 * on Enable
573 * off Disable
574 */
Rusty Russell1a3f2392006-09-26 10:52:32 +0200575static int __init noexec_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576{
Rusty Russell1a3f2392006-09-26 10:52:32 +0200577 if (!str || !strcmp(str, "on")) {
578 if (cpu_has_nx) {
579 __supported_pte_mask |= _PAGE_NX;
580 disable_nx = 0;
581 }
Ingo Molnar8550eb92008-01-30 13:34:10 +0100582 } else {
583 if (!strcmp(str, "off")) {
584 disable_nx = 1;
585 __supported_pte_mask &= ~_PAGE_NX;
586 } else {
587 return -EINVAL;
588 }
589 }
Rusty Russell1a3f2392006-09-26 10:52:32 +0200590
591 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592}
Rusty Russell1a3f2392006-09-26 10:52:32 +0200593early_param("noexec", noexec_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595static void __init set_nx(void)
596{
597 unsigned int v[4], l, h;
598
599 if (cpu_has_pae && (cpuid_eax(0x80000000) > 0x80000001)) {
600 cpuid(0x80000001, &v[0], &v[1], &v[2], &v[3]);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 if ((v[3] & (1 << 20)) && !disable_nx) {
603 rdmsr(MSR_EFER, l, h);
604 l |= EFER_NX;
605 wrmsr(MSR_EFER, l, h);
606 nx_enabled = 1;
607 __supported_pte_mask |= _PAGE_NX;
608 }
609 }
610}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611#endif
612
Yinghai Lu90d967e2008-06-23 21:00:45 +0200613/* user-defined highmem size */
614static unsigned int highmem_pages = -1;
615
616/*
617 * highmem=size forces highmem to be exactly 'size' bytes.
618 * This works even on boxes that have no highmem otherwise.
619 * This also works to reduce highmem size on bigger boxes.
620 */
621static int __init parse_highmem(char *arg)
622{
623 if (!arg)
624 return -EINVAL;
625
626 highmem_pages = memparse(arg, &arg) >> PAGE_SHIFT;
627 return 0;
628}
629early_param("highmem", parse_highmem);
630
631/*
632 * Determine low and high memory ranges:
633 */
Yinghai Lu2ec65f82008-06-23 03:05:30 -0700634void __init find_low_pfn_range(void)
Yinghai Lu90d967e2008-06-23 21:00:45 +0200635{
Yinghai Lu2ec65f82008-06-23 03:05:30 -0700636 /* it could update max_pfn */
637
Yinghai Lu346cafe2008-06-23 03:06:14 -0700638 /* max_low_pfn is 0, we already have early_res support */
Yinghai Lu90d967e2008-06-23 21:00:45 +0200639
640 max_low_pfn = max_pfn;
641 if (max_low_pfn > MAXMEM_PFN) {
642 if (highmem_pages == -1)
643 highmem_pages = max_pfn - MAXMEM_PFN;
644 if (highmem_pages + MAXMEM_PFN < max_pfn)
645 max_pfn = MAXMEM_PFN + highmem_pages;
646 if (highmem_pages + MAXMEM_PFN > max_pfn) {
647 printk(KERN_WARNING "only %luMB highmem pages "
648 "available, ignoring highmem size of %uMB.\n",
649 pages_to_mb(max_pfn - MAXMEM_PFN),
650 pages_to_mb(highmem_pages));
651 highmem_pages = 0;
652 }
653 max_low_pfn = MAXMEM_PFN;
654#ifndef CONFIG_HIGHMEM
655 /* Maximum memory usable is what is directly addressable */
656 printk(KERN_WARNING "Warning only %ldMB will be used.\n",
657 MAXMEM>>20);
658 if (max_pfn > MAX_NONPAE_PFN)
659 printk(KERN_WARNING
660 "Use a HIGHMEM64G enabled kernel.\n");
661 else
662 printk(KERN_WARNING "Use a HIGHMEM enabled kernel.\n");
663 max_pfn = MAXMEM_PFN;
664#else /* !CONFIG_HIGHMEM */
665#ifndef CONFIG_HIGHMEM64G
666 if (max_pfn > MAX_NONPAE_PFN) {
667 max_pfn = MAX_NONPAE_PFN;
668 printk(KERN_WARNING "Warning only 4GB will be used."
669 "Use a HIGHMEM64G enabled kernel.\n");
670 }
671#endif /* !CONFIG_HIGHMEM64G */
672#endif /* !CONFIG_HIGHMEM */
673 } else {
674 if (highmem_pages == -1)
675 highmem_pages = 0;
676#ifdef CONFIG_HIGHMEM
677 if (highmem_pages >= max_pfn) {
678 printk(KERN_ERR "highmem size specified (%uMB) is "
679 "bigger than pages available (%luMB)!.\n",
680 pages_to_mb(highmem_pages),
681 pages_to_mb(max_pfn));
682 highmem_pages = 0;
683 }
684 if (highmem_pages) {
685 if (max_low_pfn - highmem_pages <
686 64*1024*1024/PAGE_SIZE){
687 printk(KERN_ERR "highmem size %uMB results in "
688 "smaller than 64MB lowmem, ignoring it.\n"
689 , pages_to_mb(highmem_pages));
690 highmem_pages = 0;
691 }
692 max_low_pfn -= highmem_pages;
693 }
694#else
695 if (highmem_pages)
696 printk(KERN_ERR "ignoring highmem size on non-highmem"
697 " kernel!\n");
698#endif
699 }
Yinghai Lu90d967e2008-06-23 21:00:45 +0200700}
701
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700702#ifndef CONFIG_NEED_MULTIPLE_NODES
Yinghai Lu2ec65f82008-06-23 03:05:30 -0700703void __init initmem_init(unsigned long start_pfn,
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700704 unsigned long end_pfn)
705{
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700706#ifdef CONFIG_HIGHMEM
707 highstart_pfn = highend_pfn = max_pfn;
708 if (max_pfn > max_low_pfn)
709 highstart_pfn = max_low_pfn;
710 memory_present(0, 0, highend_pfn);
Yinghai Lucb95a132008-07-02 00:31:02 -0700711 e820_register_active_regions(0, 0, highend_pfn);
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700712 printk(KERN_NOTICE "%ldMB HIGHMEM available.\n",
713 pages_to_mb(highend_pfn - highstart_pfn));
714 num_physpages = highend_pfn;
715 high_memory = (void *) __va(highstart_pfn * PAGE_SIZE - 1) + 1;
716#else
717 memory_present(0, 0, max_low_pfn);
Yinghai Lucb95a132008-07-02 00:31:02 -0700718 e820_register_active_regions(0, 0, max_low_pfn);
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700719 num_physpages = max_low_pfn;
720 high_memory = (void *) __va(max_low_pfn * PAGE_SIZE - 1) + 1;
721#endif
722#ifdef CONFIG_FLATMEM
723 max_mapnr = num_physpages;
724#endif
725 printk(KERN_NOTICE "%ldMB LOWMEM available.\n",
726 pages_to_mb(max_low_pfn));
727
728 setup_bootmem_allocator();
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700729}
Yinghai Lucb95a132008-07-02 00:31:02 -0700730#endif /* !CONFIG_NEED_MULTIPLE_NODES */
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700731
Yinghai Lucb95a132008-07-02 00:31:02 -0700732static void __init zone_sizes_init(void)
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700733{
734 unsigned long max_zone_pfns[MAX_NR_ZONES];
735 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
736 max_zone_pfns[ZONE_DMA] =
737 virt_to_phys((char *)MAX_DMA_ADDRESS) >> PAGE_SHIFT;
738 max_zone_pfns[ZONE_NORMAL] = max_low_pfn;
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700739#ifdef CONFIG_HIGHMEM
740 max_zone_pfns[ZONE_HIGHMEM] = highend_pfn;
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700741#endif
742
743 free_area_init_nodes(max_zone_pfns);
744}
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700745
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700746void __init setup_bootmem_allocator(void)
747{
748 int i;
749 unsigned long bootmap_size, bootmap;
750 /*
751 * Initialize the boot-time allocator (with low memory only):
752 */
753 bootmap_size = bootmem_bootmap_pages(max_low_pfn)<<PAGE_SHIFT;
754 bootmap = find_e820_area(min_low_pfn<<PAGE_SHIFT,
755 max_pfn_mapped<<PAGE_SHIFT, bootmap_size,
756 PAGE_SIZE);
757 if (bootmap == -1L)
758 panic("Cannot find bootmem map of size %ld\n", bootmap_size);
759 reserve_early(bootmap, bootmap + bootmap_size, "BOOTMAP");
Yinghai Lu225c37d2008-06-22 02:46:58 -0700760
Yinghai Lu346cafe2008-06-23 03:06:14 -0700761 /* don't touch min_low_pfn */
762 bootmap_size = init_bootmem_node(NODE_DATA(0), bootmap >> PAGE_SHIFT,
763 min_low_pfn, max_low_pfn);
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700764 printk(KERN_INFO " mapped low ram: 0 - %08lx\n",
765 max_pfn_mapped<<PAGE_SHIFT);
766 printk(KERN_INFO " low ram: %08lx - %08lx\n",
767 min_low_pfn<<PAGE_SHIFT, max_low_pfn<<PAGE_SHIFT);
768 printk(KERN_INFO " bootmap %08lx - %08lx\n",
769 bootmap, bootmap + bootmap_size);
770 for_each_online_node(i)
771 free_bootmem_with_active_regions(i, max_low_pfn);
772 early_res_to_bootmem(0, max_low_pfn<<PAGE_SHIFT);
773
Yinghai Lu4e296842008-06-24 12:18:14 -0700774 after_init_bootmem = 1;
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700775}
776
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700777static void __init find_early_table_space(unsigned long end, int use_pse)
Yinghai Lu4e296842008-06-24 12:18:14 -0700778{
Yinghai Lu7482b0e2008-06-28 03:30:39 -0700779 unsigned long puds, pmds, ptes, tables, start;
Yinghai Lu4e296842008-06-24 12:18:14 -0700780
781 puds = (end + PUD_SIZE - 1) >> PUD_SHIFT;
782 tables = PAGE_ALIGN(puds * sizeof(pud_t));
783
784 pmds = (end + PMD_SIZE - 1) >> PMD_SHIFT;
785 tables += PAGE_ALIGN(pmds * sizeof(pmd_t));
786
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700787 if (use_pse) {
Yinghai Lu7482b0e2008-06-28 03:30:39 -0700788 unsigned long extra;
Yinghai Lua04ad822008-06-29 00:39:06 -0700789
790 extra = end - ((end>>PMD_SHIFT) << PMD_SHIFT);
791 extra += PMD_SIZE;
Yinghai Lu7482b0e2008-06-28 03:30:39 -0700792 ptes = (extra + PAGE_SIZE - 1) >> PAGE_SHIFT;
793 } else
794 ptes = (end + PAGE_SIZE - 1) >> PAGE_SHIFT;
795
796 tables += PAGE_ALIGN(ptes * sizeof(pte_t));
Jeremy Fitzhardinge8207c252008-06-24 17:32:48 -0400797
Yinghai Lua04ad822008-06-29 00:39:06 -0700798 /* for fixmap */
799 tables += PAGE_SIZE * 2;
800
Yinghai Lu4e296842008-06-24 12:18:14 -0700801 /*
802 * RED-PEN putting page tables only on node 0 could
803 * cause a hotspot and fill up ZONE_DMA. The page tables
804 * need roughly 0.5KB per GB.
805 */
806 start = 0x7000;
807 table_start = find_e820_area(start, max_pfn_mapped<<PAGE_SHIFT,
808 tables, PAGE_SIZE);
809 if (table_start == -1UL)
810 panic("Cannot find space for the kernel page tables");
811
812 table_start >>= PAGE_SHIFT;
813 table_end = table_start;
814 table_top = table_start + (tables>>PAGE_SHIFT);
815
816 printk(KERN_DEBUG "kernel direct mapping tables up to %lx @ %lx-%lx\n",
817 end, table_start << PAGE_SHIFT,
818 (table_start << PAGE_SHIFT) + tables);
819}
820
821unsigned long __init_refok init_memory_mapping(unsigned long start,
822 unsigned long end)
823{
824 pgd_t *pgd_base = swapper_pg_dir;
Yinghai Lua04ad822008-06-29 00:39:06 -0700825 unsigned long start_pfn, end_pfn;
826 unsigned long big_page_start;
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700827#ifdef CONFIG_DEBUG_PAGEALLOC
828 /*
829 * For CONFIG_DEBUG_PAGEALLOC, identity mapping will use small pages.
830 * This will simplify cpa(), which otherwise needs to support splitting
831 * large pages into small in interrupt context, etc.
832 */
833 int use_pse = 0;
834#else
835 int use_pse = cpu_has_pse;
836#endif
Yinghai Lu4e296842008-06-24 12:18:14 -0700837
838 /*
839 * Find space for the kernel direct mapping tables.
840 */
841 if (!after_init_bootmem)
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700842 find_early_table_space(end, use_pse);
Yinghai Lu4e296842008-06-24 12:18:14 -0700843
844#ifdef CONFIG_X86_PAE
845 set_nx();
846 if (nx_enabled)
847 printk(KERN_INFO "NX (Execute Disable) protection: active\n");
848#endif
849
850 /* Enable PSE if available */
851 if (cpu_has_pse)
852 set_in_cr4(X86_CR4_PSE);
853
854 /* Enable PGE if available */
855 if (cpu_has_pge) {
856 set_in_cr4(X86_CR4_PGE);
Jeremy Fitzhardingeef5e94a2008-07-01 16:46:36 -0700857 __supported_pte_mask |= _PAGE_GLOBAL;
Yinghai Lu4e296842008-06-24 12:18:14 -0700858 }
859
Yinghai Lua04ad822008-06-29 00:39:06 -0700860 /*
861 * Don't use a large page for the first 2/4MB of memory
862 * because there are often fixed size MTRRs in there
863 * and overlapping MTRRs into large pages can cause
864 * slowdowns.
865 */
866 big_page_start = PMD_SIZE;
867
868 if (start < big_page_start) {
869 start_pfn = start >> PAGE_SHIFT;
870 end_pfn = min(big_page_start>>PAGE_SHIFT, end>>PAGE_SHIFT);
871 } else {
872 /* head is not big page alignment ? */
873 start_pfn = start >> PAGE_SHIFT;
874 end_pfn = ((start + (PMD_SIZE - 1))>>PMD_SHIFT)
875 << (PMD_SHIFT - PAGE_SHIFT);
876 }
877 if (start_pfn < end_pfn)
878 kernel_physical_mapping_init(pgd_base, start_pfn, end_pfn, 0);
879
880 /* big page range */
881 start_pfn = ((start + (PMD_SIZE - 1))>>PMD_SHIFT)
882 << (PMD_SHIFT - PAGE_SHIFT);
883 if (start_pfn < (big_page_start >> PAGE_SHIFT))
884 start_pfn = big_page_start >> PAGE_SHIFT;
885 end_pfn = (end>>PMD_SHIFT) << (PMD_SHIFT - PAGE_SHIFT);
886 if (start_pfn < end_pfn)
887 kernel_physical_mapping_init(pgd_base, start_pfn, end_pfn,
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700888 use_pse);
Yinghai Lua04ad822008-06-29 00:39:06 -0700889
890 /* tail is not big page alignment ? */
891 start_pfn = end_pfn;
892 if (start_pfn > (big_page_start>>PAGE_SHIFT)) {
893 end_pfn = end >> PAGE_SHIFT;
894 if (start_pfn < end_pfn)
895 kernel_physical_mapping_init(pgd_base, start_pfn,
896 end_pfn, 0);
897 }
Yinghai Lu4e296842008-06-24 12:18:14 -0700898
Yinghai Lue7b37892008-06-25 21:51:28 -0700899 early_ioremap_page_table_range_init(pgd_base);
900
Yinghai Lu4e296842008-06-24 12:18:14 -0700901 load_cr3(swapper_pg_dir);
902
903 __flush_tlb_all();
904
905 if (!after_init_bootmem)
906 reserve_early(table_start << PAGE_SHIFT,
907 table_end << PAGE_SHIFT, "PGTABLE");
908
Yinghai Lucaadbdc2008-07-15 00:03:44 -0700909 if (!after_init_bootmem)
910 early_memtest(start, end);
911
Yinghai Lu4e296842008-06-24 12:18:14 -0700912 return end >> PAGE_SHIFT;
913}
914
Yinghai Lue7b37892008-06-25 21:51:28 -0700915
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916/*
917 * paging_init() sets up the page tables - note that the first 8MB are
918 * already mapped by head.S.
919 *
920 * This routines also unmaps the page at virtual kernel address 0, so
921 * that we can trap those pesky NULL-reference errors in the kernel.
922 */
923void __init paging_init(void)
924{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 pagetable_init();
926
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 __flush_tlb_all();
928
929 kmap_init();
Yinghai Lu11cd0bc2008-06-23 19:51:10 -0700930
931 /*
932 * NOTE: at this point the bootmem allocator is fully available.
933 */
Yinghai Lu11cd0bc2008-06-23 19:51:10 -0700934 sparse_init();
935 zone_sizes_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936}
937
938/*
939 * Test if the WP bit works in supervisor mode. It isn't supported on 386's
Dmitri Vorobievf7f17a62008-04-21 00:47:55 +0400940 * and also on some strange 486's. All 586+'s are OK. This used to involve
941 * black magic jumps to work around some nasty CPU bugs, but fortunately the
942 * switch to using exceptions got rid of all that.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944static void __init test_wp_bit(void)
945{
Ingo Molnard7d119d2008-01-30 13:34:10 +0100946 printk(KERN_INFO
947 "Checking if this processor honours the WP bit even in supervisor mode...");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
949 /* Any page-aligned address will do, the test is non-destructive */
950 __set_fixmap(FIX_WP_TEST, __pa(&swapper_pg_dir), PAGE_READONLY);
951 boot_cpu_data.wp_works_ok = do_test_wp_bit();
952 clear_fixmap(FIX_WP_TEST);
953
954 if (!boot_cpu_data.wp_works_ok) {
Ingo Molnard7d119d2008-01-30 13:34:10 +0100955 printk(KERN_CONT "No.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956#ifdef CONFIG_X86_WP_WORKS_OK
Ingo Molnard7d119d2008-01-30 13:34:10 +0100957 panic(
958 "This kernel doesn't support CPU's with broken WP. Recompile it for a 386!");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959#endif
960 } else {
Ingo Molnard7d119d2008-01-30 13:34:10 +0100961 printk(KERN_CONT "Ok.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 }
963}
964
Ingo Molnar8550eb92008-01-30 13:34:10 +0100965static struct kcore_list kcore_mem, kcore_vmalloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
967void __init mem_init(void)
968{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 int codesize, reservedpages, datasize, initsize;
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700970 int tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
Hugh Dickinsbb577f92008-09-07 01:51:33 -0700972 start_periodic_check_for_corruption();
973
Andy Whitcroft05b79bd2005-06-23 00:07:57 -0700974#ifdef CONFIG_FLATMEM
Eric Sesterhenn8d8f3cb2006-10-03 23:34:58 +0200975 BUG_ON(!mem_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 /* this will put all low memory onto the freelists */
978 totalram_pages += free_all_bootmem();
979
980 reservedpages = 0;
981 for (tmp = 0; tmp < max_low_pfn; tmp++)
982 /*
Ingo Molnar8550eb92008-01-30 13:34:10 +0100983 * Only count reserved RAM pages:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 */
985 if (page_is_ram(tmp) && PageReserved(pfn_to_page(tmp)))
986 reservedpages++;
987
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700988 set_highmem_pages_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
990 codesize = (unsigned long) &_etext - (unsigned long) &_text;
991 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
992 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
993
Ingo Molnar8550eb92008-01-30 13:34:10 +0100994 kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
995 kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 VMALLOC_END-VMALLOC_START);
997
Ingo Molnar8550eb92008-01-30 13:34:10 +0100998 printk(KERN_INFO "Memory: %luk/%luk available (%dk kernel code, "
999 "%dk reserved, %dk data, %dk init, %ldk highmem)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
1001 num_physpages << (PAGE_SHIFT-10),
1002 codesize >> 10,
1003 reservedpages << (PAGE_SHIFT-10),
1004 datasize >> 10,
1005 initsize >> 10,
1006 (unsigned long) (totalhigh_pages << (PAGE_SHIFT-10))
1007 );
1008
Ingo Molnard7d119d2008-01-30 13:34:10 +01001009 printk(KERN_INFO "virtual kernel memory layout:\n"
Ingo Molnar8550eb92008-01-30 13:34:10 +01001010 " fixmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001011#ifdef CONFIG_HIGHMEM
Ingo Molnar8550eb92008-01-30 13:34:10 +01001012 " pkmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001013#endif
Ingo Molnar8550eb92008-01-30 13:34:10 +01001014 " vmalloc : 0x%08lx - 0x%08lx (%4ld MB)\n"
1015 " lowmem : 0x%08lx - 0x%08lx (%4ld MB)\n"
1016 " .init : 0x%08lx - 0x%08lx (%4ld kB)\n"
1017 " .data : 0x%08lx - 0x%08lx (%4ld kB)\n"
1018 " .text : 0x%08lx - 0x%08lx (%4ld kB)\n",
1019 FIXADDR_START, FIXADDR_TOP,
1020 (FIXADDR_TOP - FIXADDR_START) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001021
1022#ifdef CONFIG_HIGHMEM
Ingo Molnar8550eb92008-01-30 13:34:10 +01001023 PKMAP_BASE, PKMAP_BASE+LAST_PKMAP*PAGE_SIZE,
1024 (LAST_PKMAP*PAGE_SIZE) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001025#endif
1026
Ingo Molnar8550eb92008-01-30 13:34:10 +01001027 VMALLOC_START, VMALLOC_END,
1028 (VMALLOC_END - VMALLOC_START) >> 20,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001029
Ingo Molnar8550eb92008-01-30 13:34:10 +01001030 (unsigned long)__va(0), (unsigned long)high_memory,
1031 ((unsigned long)high_memory - (unsigned long)__va(0)) >> 20,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001032
Ingo Molnar8550eb92008-01-30 13:34:10 +01001033 (unsigned long)&__init_begin, (unsigned long)&__init_end,
1034 ((unsigned long)&__init_end -
1035 (unsigned long)&__init_begin) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001036
Ingo Molnar8550eb92008-01-30 13:34:10 +01001037 (unsigned long)&_etext, (unsigned long)&_edata,
1038 ((unsigned long)&_edata - (unsigned long)&_etext) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001039
Ingo Molnar8550eb92008-01-30 13:34:10 +01001040 (unsigned long)&_text, (unsigned long)&_etext,
1041 ((unsigned long)&_etext - (unsigned long)&_text) >> 10);
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001042
Jan Beulichbeeb4192008-12-16 11:45:56 +00001043 /*
1044 * Check boundaries twice: Some fundamental inconsistencies can
1045 * be detected at build time already.
1046 */
1047#define __FIXADDR_TOP (-PAGE_SIZE)
1048#ifdef CONFIG_HIGHMEM
1049 BUILD_BUG_ON(PKMAP_BASE + LAST_PKMAP*PAGE_SIZE > FIXADDR_START);
1050 BUILD_BUG_ON(VMALLOC_END > PKMAP_BASE);
1051#endif
1052#define high_memory (-128UL << 20)
1053 BUILD_BUG_ON(VMALLOC_START >= VMALLOC_END);
1054#undef high_memory
1055#undef __FIXADDR_TOP
1056
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001057#ifdef CONFIG_HIGHMEM
Ingo Molnar8550eb92008-01-30 13:34:10 +01001058 BUG_ON(PKMAP_BASE + LAST_PKMAP*PAGE_SIZE > FIXADDR_START);
1059 BUG_ON(VMALLOC_END > PKMAP_BASE);
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001060#endif
Jan Beulichbeeb4192008-12-16 11:45:56 +00001061 BUG_ON(VMALLOC_START >= VMALLOC_END);
Ingo Molnar8550eb92008-01-30 13:34:10 +01001062 BUG_ON((unsigned long)high_memory > VMALLOC_START);
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001063
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 if (boot_cpu_data.wp_works_ok < 0)
1065 test_wp_bit();
1066
Hugh Dickins61165d72008-05-13 14:26:57 +01001067 save_pg_dir();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 zap_low_mappings();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069}
1070
KAMEZAWA Hiroyukiad8f5792006-05-20 15:00:03 -07001071#ifdef CONFIG_MEMORY_HOTPLUG
Yasunori Gotobc02af92006-06-27 02:53:30 -07001072int arch_add_memory(int nid, u64 start, u64 size)
Dave Hansen05039b92005-10-29 18:16:57 -07001073{
Yasunori Goto7c7e9422006-12-22 01:11:13 -08001074 struct pglist_data *pgdata = NODE_DATA(nid);
Christoph Lameter776ed982006-09-25 23:31:09 -07001075 struct zone *zone = pgdata->node_zones + ZONE_HIGHMEM;
Dave Hansen05039b92005-10-29 18:16:57 -07001076 unsigned long start_pfn = start >> PAGE_SHIFT;
1077 unsigned long nr_pages = size >> PAGE_SHIFT;
1078
1079 return __add_pages(zone, start_pfn, nr_pages);
1080}
Andi Kleen9d99aaa2006-04-07 19:49:15 +02001081#endif
Dave Hansen05039b92005-10-29 18:16:57 -07001082
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083/*
1084 * This function cannot be __init, since exceptions don't work in that
1085 * section. Put this after the callers, so that it cannot be inlined.
1086 */
Ingo Molnar8550eb92008-01-30 13:34:10 +01001087static noinline int do_test_wp_bit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
1089 char tmp_reg;
1090 int flag;
1091
1092 __asm__ __volatile__(
Ingo Molnar8550eb92008-01-30 13:34:10 +01001093 " movb %0, %1 \n"
1094 "1: movb %1, %0 \n"
1095 " xorl %2, %2 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 "2: \n"
H. Peter Anvinf832ff12008-02-04 16:47:58 +01001097 _ASM_EXTABLE(1b,2b)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 :"=m" (*(char *)fix_to_virt(FIX_WP_TEST)),
1099 "=q" (tmp_reg),
1100 "=r" (flag)
1101 :"2" (1)
1102 :"memory");
Ingo Molnar8550eb92008-01-30 13:34:10 +01001103
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 return flag;
1105}
1106
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001107#ifdef CONFIG_DEBUG_RODATA
Arjan van de Venedeed302008-01-30 13:34:08 +01001108const int rodata_test_data = 0xC3;
1109EXPORT_SYMBOL_GPL(rodata_test_data);
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001110
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001111void mark_rodata_ro(void)
1112{
Jan Beulich6fb14752007-05-02 19:27:10 +02001113 unsigned long start = PFN_ALIGN(_text);
1114 unsigned long size = PFN_ALIGN(_etext) - start;
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001115
Steven Rostedt8f0f9962008-05-12 21:20:56 +02001116#ifndef CONFIG_DYNAMIC_FTRACE
1117 /* Dynamic tracing modifies the kernel text section */
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -05001118 set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
1119 printk(KERN_INFO "Write protecting the kernel text: %luk\n",
1120 size >> 10);
Andi Kleen0c42f392008-01-30 13:33:42 +01001121
1122#ifdef CONFIG_CPA_DEBUG
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -05001123 printk(KERN_INFO "Testing CPA: Reverting %lx-%lx\n",
1124 start, start+size);
1125 set_pages_rw(virt_to_page(start), size>>PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +01001126
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -05001127 printk(KERN_INFO "Testing CPA: write protecting again\n");
1128 set_pages_ro(virt_to_page(start), size>>PAGE_SHIFT);
Linus Torvalds602033e2007-07-26 12:07:21 -07001129#endif
Steven Rostedt8f0f9962008-05-12 21:20:56 +02001130#endif /* CONFIG_DYNAMIC_FTRACE */
1131
Jan Beulich6fb14752007-05-02 19:27:10 +02001132 start += size;
1133 size = (unsigned long)__end_rodata - start;
Arjan van de Ven6d238cc2008-01-30 13:34:06 +01001134 set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
Ingo Molnard7d119d2008-01-30 13:34:10 +01001135 printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
1136 size >> 10);
Arjan van de Venedeed302008-01-30 13:34:08 +01001137 rodata_test();
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001138
Andi Kleen0c42f392008-01-30 13:33:42 +01001139#ifdef CONFIG_CPA_DEBUG
Ingo Molnard7d119d2008-01-30 13:34:10 +01001140 printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, start + size);
Arjan van de Ven6d238cc2008-01-30 13:34:06 +01001141 set_pages_rw(virt_to_page(start), size >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +01001142
Ingo Molnard7d119d2008-01-30 13:34:10 +01001143 printk(KERN_INFO "Testing CPA: write protecting again\n");
Arjan van de Ven6d238cc2008-01-30 13:34:06 +01001144 set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +01001145#endif
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001146}
1147#endif
1148
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001149void free_init_pages(char *what, unsigned long begin, unsigned long end)
1150{
Ingo Molnaree01f112008-01-30 13:34:09 +01001151#ifdef CONFIG_DEBUG_PAGEALLOC
1152 /*
1153 * If debugging page accesses then do not free this memory but
1154 * mark them not present - any buggy init-section access will
1155 * create a kernel page fault:
1156 */
1157 printk(KERN_INFO "debug: unmapping init memory %08lx..%08lx\n",
1158 begin, PAGE_ALIGN(end));
1159 set_memory_np(begin, (end - begin) >> PAGE_SHIFT);
1160#else
Ingo Molnar86f03982008-01-30 13:34:09 +01001161 unsigned long addr;
1162
Arjan van de Ven3c1df682008-01-30 13:34:07 +01001163 /*
1164 * We just marked the kernel text read only above, now that
1165 * we are going to free part of that, we need to make that
1166 * writeable first.
1167 */
1168 set_memory_rw(begin, (end - begin) >> PAGE_SHIFT);
1169
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001170 for (addr = begin; addr < end; addr += PAGE_SIZE) {
Linus Torvaldse3ebadd2007-05-07 08:44:24 -07001171 ClearPageReserved(virt_to_page(addr));
1172 init_page_count(virt_to_page(addr));
1173 memset((void *)addr, POISON_FREE_INITMEM, PAGE_SIZE);
1174 free_page(addr);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001175 totalram_pages++;
1176 }
Jan Beulich6fb14752007-05-02 19:27:10 +02001177 printk(KERN_INFO "Freeing %s: %luk freed\n", what, (end - begin) >> 10);
Ingo Molnaree01f112008-01-30 13:34:09 +01001178#endif
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001179}
1180
1181void free_initmem(void)
1182{
1183 free_init_pages("unused kernel memory",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -07001184 (unsigned long)(&__init_begin),
1185 (unsigned long)(&__init_end));
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001186}
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001187
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188#ifdef CONFIG_BLK_DEV_INITRD
1189void free_initrd_mem(unsigned long start, unsigned long end)
1190{
Linus Torvaldse3ebadd2007-05-07 08:44:24 -07001191 free_init_pages("initrd memory", start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192}
1193#endif
Yinghai Lud2dbf342008-06-13 02:00:56 -07001194
1195int __init reserve_bootmem_generic(unsigned long phys, unsigned long len,
1196 int flags)
1197{
1198 return reserve_bootmem(phys, len, flags);
1199}