blob: 8b1a0ef7f87441ac8f324f74656a73b717a9f922 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
3 * Copyright (C) 1995 Linus Torvalds
4 *
5 * Support of BIGMEM added by Gerhard Wichert, Siemens AG, July 1999
6 */
7
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/module.h>
9#include <linux/signal.h>
10#include <linux/sched.h>
11#include <linux/kernel.h>
12#include <linux/errno.h>
13#include <linux/string.h>
14#include <linux/types.h>
15#include <linux/ptrace.h>
16#include <linux/mman.h>
17#include <linux/mm.h>
18#include <linux/hugetlb.h>
19#include <linux/swap.h>
20#include <linux/smp.h>
21#include <linux/init.h>
22#include <linux/highmem.h>
23#include <linux/pagemap.h>
Jeremy Fitzhardingecfb80c92008-12-16 12:17:36 -080024#include <linux/pci.h>
Jan Beulich6fb14752007-05-02 19:27:10 +020025#include <linux/pfn.h>
Randy Dunlapc9cf5522006-06-27 02:53:52 -070026#include <linux/poison.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/bootmem.h>
28#include <linux/slab.h>
29#include <linux/proc_fs.h>
Dave Hansen05039b92005-10-29 18:16:57 -070030#include <linux/memory_hotplug.h>
Adrian Bunk27d99f72005-11-13 16:06:51 -080031#include <linux/initrd.h>
Shaohua Li55b23552006-06-23 02:04:49 -070032#include <linux/cpumask.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
H. Peter Anvinf832ff12008-02-04 16:47:58 +010034#include <asm/asm.h>
Ingo Molnar46eaa672008-10-12 15:06:29 +020035#include <asm/bios_ebda.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <asm/processor.h>
37#include <asm/system.h>
38#include <asm/uaccess.h>
39#include <asm/pgtable.h>
40#include <asm/dma.h>
41#include <asm/fixmap.h>
42#include <asm/e820.h>
43#include <asm/apic.h>
Ingo Molnar8550eb92008-01-30 13:34:10 +010044#include <asm/bugs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <asm/tlb.h>
46#include <asm/tlbflush.h>
Jeremy Fitzhardingea5a19c62008-01-30 13:33:39 +010047#include <asm/pgalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <asm/sections.h>
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +020049#include <asm/paravirt.h>
Ian Campbell551889a2008-02-09 23:24:09 +010050#include <asm/setup.h>
Harvey Harrison7bfeab92008-02-12 12:12:01 -080051#include <asm/cacheflush.h>
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
Tejun Heo11124412009-02-20 16:29:09 +0900140void __init populate_extra_pte(unsigned long vaddr)
141{
142 int pgd_idx = pgd_index(vaddr);
143 int pmd_idx = pmd_index(vaddr);
144 pmd_t *pmd;
145
146 pmd = one_md_table_init(swapper_pg_dir + pgd_idx);
147 one_page_table_init(pmd + pmd_idx);
148}
149
Jan Beulicha3c60182009-01-16 11:59:33 +0000150static pte_t *__init page_table_kmap_check(pte_t *pte, pmd_t *pmd,
151 unsigned long vaddr, pte_t *lastpte)
152{
153#ifdef CONFIG_HIGHMEM
154 /*
155 * Something (early fixmap) may already have put a pte
156 * page here, which causes the page table allocation
157 * to become nonlinear. Attempt to fix it, and if it
158 * is still nonlinear then we have to bug.
159 */
160 int pmd_idx_kmap_begin = fix_to_virt(FIX_KMAP_END) >> PMD_SHIFT;
161 int pmd_idx_kmap_end = fix_to_virt(FIX_KMAP_BEGIN) >> PMD_SHIFT;
162
163 if (pmd_idx_kmap_begin != pmd_idx_kmap_end
164 && (vaddr >> PMD_SHIFT) >= pmd_idx_kmap_begin
165 && (vaddr >> PMD_SHIFT) <= pmd_idx_kmap_end
166 && ((__pa(pte) >> PAGE_SHIFT) < table_start
167 || (__pa(pte) >> PAGE_SHIFT) >= table_end)) {
168 pte_t *newpte;
169 int i;
170
171 BUG_ON(after_init_bootmem);
172 newpte = alloc_low_page();
173 for (i = 0; i < PTRS_PER_PTE; i++)
174 set_pte(newpte + i, pte[i]);
175
176 paravirt_alloc_pte(&init_mm, __pa(newpte) >> PAGE_SHIFT);
177 set_pmd(pmd, __pmd(__pa(newpte)|_PAGE_TABLE));
178 BUG_ON(newpte != pte_offset_kernel(pmd, 0));
179 __flush_tlb_all();
180
181 paravirt_release_pte(__pa(pte) >> PAGE_SHIFT);
182 pte = newpte;
183 }
184 BUG_ON(vaddr < fix_to_virt(FIX_KMAP_BEGIN - 1)
185 && vaddr > fix_to_virt(FIX_KMAP_END)
186 && lastpte && lastpte + PTRS_PER_PTE != pte);
187#endif
188 return pte;
189}
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191/*
Ingo Molnar8550eb92008-01-30 13:34:10 +0100192 * This function initializes a certain range of kernel virtual memory
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 * with new bootmem page tables, everywhere page tables are missing in
194 * the given range.
Ingo Molnar8550eb92008-01-30 13:34:10 +0100195 *
196 * NOTE: The pagetables are allocated contiguous on the physical space
197 * so we can cache the place of the first one and move around without
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 * checking the pgd every time.
199 */
Ingo Molnar8550eb92008-01-30 13:34:10 +0100200static void __init
201page_table_range_init(unsigned long start, unsigned long end, pgd_t *pgd_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 int pgd_idx, pmd_idx;
204 unsigned long vaddr;
Ingo Molnar8550eb92008-01-30 13:34:10 +0100205 pgd_t *pgd;
206 pmd_t *pmd;
Jan Beulicha3c60182009-01-16 11:59:33 +0000207 pte_t *pte = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209 vaddr = start;
210 pgd_idx = pgd_index(vaddr);
211 pmd_idx = pmd_index(vaddr);
212 pgd = pgd_base + pgd_idx;
213
214 for ( ; (pgd_idx < PTRS_PER_PGD) && (vaddr != end); pgd++, pgd_idx++) {
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200215 pmd = one_md_table_init(pgd);
216 pmd = pmd + pmd_index(vaddr);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100217 for (; (pmd_idx < PTRS_PER_PMD) && (vaddr != end);
218 pmd++, pmd_idx++) {
Jan Beulicha3c60182009-01-16 11:59:33 +0000219 pte = page_table_kmap_check(one_page_table_init(pmd),
220 pmd, vaddr, pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222 vaddr += PMD_SIZE;
223 }
224 pmd_idx = 0;
225 }
226}
227
228static inline int is_kernel_text(unsigned long addr)
229{
230 if (addr >= PAGE_OFFSET && addr <= (unsigned long)__init_end)
231 return 1;
232 return 0;
233}
234
235/*
Ingo Molnar8550eb92008-01-30 13:34:10 +0100236 * This maps the physical memory to kernel virtual address space, a total
237 * of max_low_pfn pages, by creating page tables starting from address
238 * PAGE_OFFSET:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 */
Yinghai Lu4e296842008-06-24 12:18:14 -0700240static void __init kernel_physical_mapping_init(pgd_t *pgd_base,
Yinghai Lua04ad822008-06-29 00:39:06 -0700241 unsigned long start_pfn,
242 unsigned long end_pfn,
243 int use_pse)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
Ingo Molnar8550eb92008-01-30 13:34:10 +0100245 int pgd_idx, pmd_idx, pte_ofs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 unsigned long pfn;
247 pgd_t *pgd;
248 pmd_t *pmd;
249 pte_t *pte;
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700250 unsigned pages_2m, pages_4k;
251 int mapping_iter;
252
253 /*
254 * First iteration will setup identity mapping using large/small pages
255 * based on use_pse, with other attributes same as set by
256 * the early code in head_32.S
257 *
258 * Second iteration will setup the appropriate attributes (NX, GLOBAL..)
259 * as desired for the kernel identity mapping.
260 *
261 * This two pass mechanism conforms to the TLB app note which says:
262 *
263 * "Software should not write to a paging-structure entry in a way
264 * that would change, for any linear address, both the page size
265 * and either the page frame or attributes."
266 */
267 mapping_iter = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Yinghai Lua04ad822008-06-29 00:39:06 -0700269 if (!cpu_has_pse)
270 use_pse = 0;
271
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700272repeat:
273 pages_2m = pages_4k = 0;
Yinghai Lua04ad822008-06-29 00:39:06 -0700274 pfn = start_pfn;
275 pgd_idx = pgd_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 pgd = pgd_base + pgd_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 for (; pgd_idx < PTRS_PER_PGD; pgd++, pgd_idx++) {
278 pmd = one_md_table_init(pgd);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100279
Yinghai Lua04ad822008-06-29 00:39:06 -0700280 if (pfn >= end_pfn)
281 continue;
282#ifdef CONFIG_X86_PAE
283 pmd_idx = pmd_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
284 pmd += pmd_idx;
285#else
286 pmd_idx = 0;
287#endif
288 for (; pmd_idx < PTRS_PER_PMD && pfn < end_pfn;
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100289 pmd++, pmd_idx++) {
Ingo Molnar8550eb92008-01-30 13:34:10 +0100290 unsigned int addr = pfn * PAGE_SIZE + PAGE_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Ingo Molnar8550eb92008-01-30 13:34:10 +0100292 /*
293 * Map with big pages if possible, otherwise
294 * create normal page tables:
295 */
Yinghai Lua04ad822008-06-29 00:39:06 -0700296 if (use_pse) {
Ingo Molnar8550eb92008-01-30 13:34:10 +0100297 unsigned int addr2;
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100298 pgprot_t prot = PAGE_KERNEL_LARGE;
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700299 /*
300 * first pass will use the same initial
301 * identity mapping attribute + _PAGE_PSE.
302 */
303 pgprot_t init_prot =
304 __pgprot(PTE_IDENT_ATTR |
305 _PAGE_PSE);
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100306
Ingo Molnar8550eb92008-01-30 13:34:10 +0100307 addr2 = (pfn + PTRS_PER_PTE-1) * PAGE_SIZE +
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100308 PAGE_OFFSET + PAGE_SIZE-1;
309
Ingo Molnar8550eb92008-01-30 13:34:10 +0100310 if (is_kernel_text(addr) ||
311 is_kernel_text(addr2))
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100312 prot = PAGE_KERNEL_LARGE_EXEC;
313
Andi Kleence0c0e52008-05-02 11:46:49 +0200314 pages_2m++;
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700315 if (mapping_iter == 1)
316 set_pmd(pmd, pfn_pmd(pfn, init_prot));
317 else
318 set_pmd(pmd, pfn_pmd(pfn, prot));
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 pfn += PTRS_PER_PTE;
Ingo Molnar8550eb92008-01-30 13:34:10 +0100321 continue;
322 }
323 pte = one_page_table_init(pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Yinghai Lua04ad822008-06-29 00:39:06 -0700325 pte_ofs = pte_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
326 pte += pte_ofs;
327 for (; pte_ofs < PTRS_PER_PTE && pfn < end_pfn;
Ingo Molnar8550eb92008-01-30 13:34:10 +0100328 pte++, pfn++, pte_ofs++, addr += PAGE_SIZE) {
329 pgprot_t prot = PAGE_KERNEL;
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700330 /*
331 * first pass will use the same initial
332 * identity mapping attribute.
333 */
334 pgprot_t init_prot = __pgprot(PTE_IDENT_ATTR);
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100335
Ingo Molnar8550eb92008-01-30 13:34:10 +0100336 if (is_kernel_text(addr))
337 prot = PAGE_KERNEL_EXEC;
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100338
Andi Kleence0c0e52008-05-02 11:46:49 +0200339 pages_4k++;
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700340 if (mapping_iter == 1)
341 set_pte(pte, pfn_pte(pfn, init_prot));
342 else
343 set_pte(pte, pfn_pte(pfn, prot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 }
345 }
346 }
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700347 if (mapping_iter == 1) {
348 /*
349 * update direct mapping page count only in the first
350 * iteration.
351 */
352 update_page_count(PG_LEVEL_2M, pages_2m);
353 update_page_count(PG_LEVEL_4K, pages_4k);
354
355 /*
356 * local global flush tlb, which will flush the previous
357 * mappings present in both small and large page TLB's.
358 */
359 __flush_tlb_all();
360
361 /*
362 * Second iteration will set the actual desired PTE attributes.
363 */
364 mapping_iter = 2;
365 goto repeat;
366 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367}
368
Arjan van de Venae531c22008-04-24 23:40:47 +0200369/*
370 * devmem_is_allowed() checks to see if /dev/mem access to a certain address
371 * is valid. The argument is a physical page number.
372 *
373 *
374 * On x86, access has to be given to the first megabyte of ram because that area
375 * contains bios code and data regions used by X and dosemu and similar apps.
376 * Access has to be given to non-kernel-ram areas as well, these contain the PCI
377 * mmio resources as well as potential bios/acpi data regions.
378 */
379int devmem_is_allowed(unsigned long pagenr)
380{
381 if (pagenr <= 256)
382 return 1;
Arjan van de Vene8de1482008-10-22 19:55:31 -0700383 if (iomem_is_exclusive(pagenr << PAGE_SHIFT))
384 return 0;
Arjan van de Venae531c22008-04-24 23:40:47 +0200385 if (!page_is_ram(pagenr))
386 return 1;
387 return 0;
388}
389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390pte_t *kmap_pte;
391pgprot_t kmap_prot;
392
Ingo Molnar8550eb92008-01-30 13:34:10 +0100393static inline pte_t *kmap_get_fixmap_pte(unsigned long vaddr)
394{
395 return pte_offset_kernel(pmd_offset(pud_offset(pgd_offset_k(vaddr),
396 vaddr), vaddr), vaddr);
397}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399static void __init kmap_init(void)
400{
401 unsigned long kmap_vstart;
402
Ingo Molnar8550eb92008-01-30 13:34:10 +0100403 /*
404 * Cache the first kmap pte:
405 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 kmap_vstart = __fix_to_virt(FIX_KMAP_BEGIN);
407 kmap_pte = kmap_get_fixmap_pte(kmap_vstart);
408
409 kmap_prot = PAGE_KERNEL;
410}
411
Keith Packardfd940932008-10-30 19:37:09 -0700412#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413static void __init permanent_kmaps_init(pgd_t *pgd_base)
414{
Ingo Molnar8550eb92008-01-30 13:34:10 +0100415 unsigned long vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 pgd_t *pgd;
417 pud_t *pud;
418 pmd_t *pmd;
419 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 vaddr = PKMAP_BASE;
422 page_table_range_init(vaddr, vaddr + PAGE_SIZE*LAST_PKMAP, pgd_base);
423
424 pgd = swapper_pg_dir + pgd_index(vaddr);
425 pud = pud_offset(pgd, vaddr);
426 pmd = pmd_offset(pud, vaddr);
427 pte = pte_offset_kernel(pmd, vaddr);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100428 pkmap_page_table = pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429}
430
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700431static void __init add_one_highpage_init(struct page *page, int pfn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432{
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700433 ClearPageReserved(page);
434 init_page_count(page);
435 __free_page(page);
436 totalhigh_pages++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437}
438
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700439struct add_highpages_data {
440 unsigned long start_pfn;
441 unsigned long end_pfn;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700442};
443
Yinghai Lud52d53b2008-06-16 20:10:55 -0700444static int __init add_highpages_work_fn(unsigned long start_pfn,
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700445 unsigned long end_pfn, void *datax)
446{
447 int node_pfn;
448 struct page *page;
449 unsigned long final_start_pfn, final_end_pfn;
450 struct add_highpages_data *data;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700451
452 data = (struct add_highpages_data *)datax;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700453
454 final_start_pfn = max(start_pfn, data->start_pfn);
455 final_end_pfn = min(end_pfn, data->end_pfn);
456 if (final_start_pfn >= final_end_pfn)
Yinghai Lud52d53b2008-06-16 20:10:55 -0700457 return 0;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700458
459 for (node_pfn = final_start_pfn; node_pfn < final_end_pfn;
460 node_pfn++) {
461 if (!pfn_valid(node_pfn))
462 continue;
463 page = pfn_to_page(node_pfn);
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700464 add_one_highpage_init(page, node_pfn);
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700465 }
466
Yinghai Lud52d53b2008-06-16 20:10:55 -0700467 return 0;
468
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700469}
470
471void __init add_highpages_with_active_regions(int nid, unsigned long start_pfn,
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700472 unsigned long end_pfn)
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700473{
474 struct add_highpages_data data;
475
476 data.start_pfn = start_pfn;
477 data.end_pfn = end_pfn;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700478
479 work_with_active_regions(nid, add_highpages_work_fn, &data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480}
481
Ingo Molnar8550eb92008-01-30 13:34:10 +0100482#ifndef CONFIG_NUMA
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700483static void __init set_highmem_pages_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484{
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700485 add_highpages_with_active_regions(0, highstart_pfn, highend_pfn);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 totalram_pages += totalhigh_pages;
488}
Ingo Molnar8550eb92008-01-30 13:34:10 +0100489#endif /* !CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
491#else
Ingo Brueckle8e32322009-01-02 14:42:00 +0100492static inline void permanent_kmaps_init(pgd_t *pgd_base)
493{
494}
495static inline void set_highmem_pages_init(void)
496{
497}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498#endif /* CONFIG_HIGHMEM */
499
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200500void __init native_pagetable_setup_start(pgd_t *base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501{
Ian Campbell551889a2008-02-09 23:24:09 +0100502 unsigned long pfn, va;
503 pgd_t *pgd;
504 pud_t *pud;
505 pmd_t *pmd;
506 pte_t *pte;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200507
508 /*
Ian Campbell551889a2008-02-09 23:24:09 +0100509 * Remove any mappings which extend past the end of physical
510 * memory from the boot time page table:
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200511 */
Ian Campbell551889a2008-02-09 23:24:09 +0100512 for (pfn = max_low_pfn + 1; pfn < 1<<(32-PAGE_SHIFT); pfn++) {
513 va = PAGE_OFFSET + (pfn<<PAGE_SHIFT);
514 pgd = base + pgd_index(va);
515 if (!pgd_present(*pgd))
516 break;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200517
Ian Campbell551889a2008-02-09 23:24:09 +0100518 pud = pud_offset(pgd, va);
519 pmd = pmd_offset(pud, va);
520 if (!pmd_present(*pmd))
521 break;
522
523 pte = pte_offset_kernel(pmd, va);
524 if (!pte_present(*pte))
525 break;
526
527 pte_clear(NULL, va, pte);
528 }
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700529 paravirt_alloc_pmd(&init_mm, __pa(base) >> PAGE_SHIFT);
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200530}
531
532void __init native_pagetable_setup_done(pgd_t *base)
533{
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200534}
535
536/*
537 * Build a proper pagetable for the kernel mappings. Up until this
538 * point, we've been running on some set of pagetables constructed by
539 * the boot process.
540 *
541 * If we're booting on native hardware, this will be a pagetable
Ian Campbell551889a2008-02-09 23:24:09 +0100542 * constructed in arch/x86/kernel/head_32.S. The root of the
543 * pagetable will be swapper_pg_dir.
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200544 *
545 * If we're booting paravirtualized under a hypervisor, then there are
546 * more options: we may already be running PAE, and the pagetable may
547 * or may not be based in swapper_pg_dir. In any case,
548 * paravirt_pagetable_setup_start() will set up swapper_pg_dir
549 * appropriately for the rest of the initialization to work.
550 *
551 * In general, pagetable_init() assumes that the pagetable may already
552 * be partially populated, and so it avoids stomping on any existing
553 * mappings.
554 */
Yinghai Lue7b37892008-06-25 21:51:28 -0700555static void __init early_ioremap_page_table_range_init(pgd_t *pgd_base)
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200556{
Ingo Molnar8550eb92008-01-30 13:34:10 +0100557 unsigned long vaddr, end;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 /*
560 * Fixed mappings, only the page table structure has to be
561 * created - mappings will be set by set_fixmap():
562 */
563 vaddr = __fix_to_virt(__end_of_fixed_addresses - 1) & PMD_MASK;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200564 end = (FIXADDR_TOP + PMD_SIZE - 1) & PMD_MASK;
565 page_table_range_init(vaddr, end, pgd_base);
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100566 early_ioremap_reset();
Yinghai Lue7b37892008-06-25 21:51:28 -0700567}
568
569static void __init pagetable_init(void)
570{
571 pgd_t *pgd_base = swapper_pg_dir;
572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 permanent_kmaps_init(pgd_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574}
575
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100576#ifdef CONFIG_ACPI_SLEEP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577/*
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100578 * ACPI suspend needs this for resume, because things like the intel-agp
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 * driver might have split up a kernel 4MB mapping.
580 */
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100581char swsusp_pg_dir[PAGE_SIZE]
Ingo Molnar8550eb92008-01-30 13:34:10 +0100582 __attribute__ ((aligned(PAGE_SIZE)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584static inline void save_pg_dir(void)
585{
586 memcpy(swsusp_pg_dir, swapper_pg_dir, PAGE_SIZE);
587}
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100588#else /* !CONFIG_ACPI_SLEEP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589static inline void save_pg_dir(void)
590{
591}
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100592#endif /* !CONFIG_ACPI_SLEEP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Ingo Molnar8550eb92008-01-30 13:34:10 +0100594void zap_low_mappings(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
596 int i;
597
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 /*
599 * Zap initial low-memory mappings.
600 *
601 * Note that "pgd_clear()" doesn't do it for
602 * us, because pgd_clear() is a no-op on i386.
603 */
Jeremy Fitzhardinge68db0652008-03-17 16:37:13 -0700604 for (i = 0; i < KERNEL_PGD_BOUNDARY; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605#ifdef CONFIG_X86_PAE
606 set_pgd(swapper_pg_dir+i, __pgd(1 + __pa(empty_zero_page)));
607#else
608 set_pgd(swapper_pg_dir+i, __pgd(0));
609#endif
Ingo Molnar8550eb92008-01-30 13:34:10 +0100610 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 flush_tlb_all();
612}
613
Ingo Molnar8550eb92008-01-30 13:34:10 +0100614int nx_enabled;
Jan Beulichd5321ab2007-07-21 17:10:26 +0200615
Jeremy Fitzhardingebe43d722008-09-07 15:21:13 -0700616pteval_t __supported_pte_mask __read_mostly = ~(_PAGE_NX | _PAGE_GLOBAL | _PAGE_IOMAP);
Jeremy Fitzhardinge6fdc05d2008-01-30 13:32:57 +0100617EXPORT_SYMBOL_GPL(__supported_pte_mask);
618
Jan Beulichd5321ab2007-07-21 17:10:26 +0200619#ifdef CONFIG_X86_PAE
620
Ingo Molnar8550eb92008-01-30 13:34:10 +0100621static int disable_nx __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
623/*
624 * noexec = on|off
625 *
626 * Control non executable mappings.
627 *
628 * on Enable
629 * off Disable
630 */
Rusty Russell1a3f2392006-09-26 10:52:32 +0200631static int __init noexec_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632{
Rusty Russell1a3f2392006-09-26 10:52:32 +0200633 if (!str || !strcmp(str, "on")) {
634 if (cpu_has_nx) {
635 __supported_pte_mask |= _PAGE_NX;
636 disable_nx = 0;
637 }
Ingo Molnar8550eb92008-01-30 13:34:10 +0100638 } else {
639 if (!strcmp(str, "off")) {
640 disable_nx = 1;
641 __supported_pte_mask &= ~_PAGE_NX;
642 } else {
643 return -EINVAL;
644 }
645 }
Rusty Russell1a3f2392006-09-26 10:52:32 +0200646
647 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648}
Rusty Russell1a3f2392006-09-26 10:52:32 +0200649early_param("noexec", noexec_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651static void __init set_nx(void)
652{
653 unsigned int v[4], l, h;
654
655 if (cpu_has_pae && (cpuid_eax(0x80000000) > 0x80000001)) {
656 cpuid(0x80000001, &v[0], &v[1], &v[2], &v[3]);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100657
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 if ((v[3] & (1 << 20)) && !disable_nx) {
659 rdmsr(MSR_EFER, l, h);
660 l |= EFER_NX;
661 wrmsr(MSR_EFER, l, h);
662 nx_enabled = 1;
663 __supported_pte_mask |= _PAGE_NX;
664 }
665 }
666}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667#endif
668
Yinghai Lu90d967e2008-06-23 21:00:45 +0200669/* user-defined highmem size */
670static unsigned int highmem_pages = -1;
671
672/*
673 * highmem=size forces highmem to be exactly 'size' bytes.
674 * This works even on boxes that have no highmem otherwise.
675 * This also works to reduce highmem size on bigger boxes.
676 */
677static int __init parse_highmem(char *arg)
678{
679 if (!arg)
680 return -EINVAL;
681
682 highmem_pages = memparse(arg, &arg) >> PAGE_SHIFT;
683 return 0;
684}
685early_param("highmem", parse_highmem);
686
687/*
688 * Determine low and high memory ranges:
689 */
Yinghai Lu2ec65f82008-06-23 03:05:30 -0700690void __init find_low_pfn_range(void)
Yinghai Lu90d967e2008-06-23 21:00:45 +0200691{
Yinghai Lu2ec65f82008-06-23 03:05:30 -0700692 /* it could update max_pfn */
693
Yinghai Lu346cafe2008-06-23 03:06:14 -0700694 /* max_low_pfn is 0, we already have early_res support */
Yinghai Lu90d967e2008-06-23 21:00:45 +0200695
696 max_low_pfn = max_pfn;
697 if (max_low_pfn > MAXMEM_PFN) {
698 if (highmem_pages == -1)
699 highmem_pages = max_pfn - MAXMEM_PFN;
700 if (highmem_pages + MAXMEM_PFN < max_pfn)
701 max_pfn = MAXMEM_PFN + highmem_pages;
702 if (highmem_pages + MAXMEM_PFN > max_pfn) {
703 printk(KERN_WARNING "only %luMB highmem pages "
704 "available, ignoring highmem size of %uMB.\n",
705 pages_to_mb(max_pfn - MAXMEM_PFN),
706 pages_to_mb(highmem_pages));
707 highmem_pages = 0;
708 }
709 max_low_pfn = MAXMEM_PFN;
710#ifndef CONFIG_HIGHMEM
711 /* Maximum memory usable is what is directly addressable */
712 printk(KERN_WARNING "Warning only %ldMB will be used.\n",
713 MAXMEM>>20);
714 if (max_pfn > MAX_NONPAE_PFN)
715 printk(KERN_WARNING
716 "Use a HIGHMEM64G enabled kernel.\n");
717 else
718 printk(KERN_WARNING "Use a HIGHMEM enabled kernel.\n");
719 max_pfn = MAXMEM_PFN;
720#else /* !CONFIG_HIGHMEM */
721#ifndef CONFIG_HIGHMEM64G
722 if (max_pfn > MAX_NONPAE_PFN) {
723 max_pfn = MAX_NONPAE_PFN;
724 printk(KERN_WARNING "Warning only 4GB will be used."
725 "Use a HIGHMEM64G enabled kernel.\n");
726 }
727#endif /* !CONFIG_HIGHMEM64G */
728#endif /* !CONFIG_HIGHMEM */
729 } else {
730 if (highmem_pages == -1)
731 highmem_pages = 0;
732#ifdef CONFIG_HIGHMEM
733 if (highmem_pages >= max_pfn) {
734 printk(KERN_ERR "highmem size specified (%uMB) is "
735 "bigger than pages available (%luMB)!.\n",
736 pages_to_mb(highmem_pages),
737 pages_to_mb(max_pfn));
738 highmem_pages = 0;
739 }
740 if (highmem_pages) {
741 if (max_low_pfn - highmem_pages <
742 64*1024*1024/PAGE_SIZE){
743 printk(KERN_ERR "highmem size %uMB results in "
744 "smaller than 64MB lowmem, ignoring it.\n"
745 , pages_to_mb(highmem_pages));
746 highmem_pages = 0;
747 }
748 max_low_pfn -= highmem_pages;
749 }
750#else
751 if (highmem_pages)
752 printk(KERN_ERR "ignoring highmem size on non-highmem"
753 " kernel!\n");
754#endif
755 }
Yinghai Lu90d967e2008-06-23 21:00:45 +0200756}
757
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700758#ifndef CONFIG_NEED_MULTIPLE_NODES
Yinghai Lu2ec65f82008-06-23 03:05:30 -0700759void __init initmem_init(unsigned long start_pfn,
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700760 unsigned long end_pfn)
761{
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700762#ifdef CONFIG_HIGHMEM
763 highstart_pfn = highend_pfn = max_pfn;
764 if (max_pfn > max_low_pfn)
765 highstart_pfn = max_low_pfn;
766 memory_present(0, 0, highend_pfn);
Yinghai Lucb95a132008-07-02 00:31:02 -0700767 e820_register_active_regions(0, 0, highend_pfn);
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700768 printk(KERN_NOTICE "%ldMB HIGHMEM available.\n",
769 pages_to_mb(highend_pfn - highstart_pfn));
770 num_physpages = highend_pfn;
771 high_memory = (void *) __va(highstart_pfn * PAGE_SIZE - 1) + 1;
772#else
773 memory_present(0, 0, max_low_pfn);
Yinghai Lucb95a132008-07-02 00:31:02 -0700774 e820_register_active_regions(0, 0, max_low_pfn);
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700775 num_physpages = max_low_pfn;
776 high_memory = (void *) __va(max_low_pfn * PAGE_SIZE - 1) + 1;
777#endif
778#ifdef CONFIG_FLATMEM
779 max_mapnr = num_physpages;
780#endif
781 printk(KERN_NOTICE "%ldMB LOWMEM available.\n",
782 pages_to_mb(max_low_pfn));
783
784 setup_bootmem_allocator();
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700785}
Yinghai Lucb95a132008-07-02 00:31:02 -0700786#endif /* !CONFIG_NEED_MULTIPLE_NODES */
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700787
Yinghai Lucb95a132008-07-02 00:31:02 -0700788static void __init zone_sizes_init(void)
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700789{
790 unsigned long max_zone_pfns[MAX_NR_ZONES];
791 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
792 max_zone_pfns[ZONE_DMA] =
793 virt_to_phys((char *)MAX_DMA_ADDRESS) >> PAGE_SHIFT;
794 max_zone_pfns[ZONE_NORMAL] = max_low_pfn;
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700795#ifdef CONFIG_HIGHMEM
796 max_zone_pfns[ZONE_HIGHMEM] = highend_pfn;
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700797#endif
798
799 free_area_init_nodes(max_zone_pfns);
800}
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700801
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700802void __init setup_bootmem_allocator(void)
803{
804 int i;
805 unsigned long bootmap_size, bootmap;
806 /*
807 * Initialize the boot-time allocator (with low memory only):
808 */
809 bootmap_size = bootmem_bootmap_pages(max_low_pfn)<<PAGE_SHIFT;
810 bootmap = find_e820_area(min_low_pfn<<PAGE_SHIFT,
811 max_pfn_mapped<<PAGE_SHIFT, bootmap_size,
812 PAGE_SIZE);
813 if (bootmap == -1L)
814 panic("Cannot find bootmem map of size %ld\n", bootmap_size);
815 reserve_early(bootmap, bootmap + bootmap_size, "BOOTMAP");
Yinghai Lu225c37d2008-06-22 02:46:58 -0700816
Yinghai Lu346cafe2008-06-23 03:06:14 -0700817 /* don't touch min_low_pfn */
818 bootmap_size = init_bootmem_node(NODE_DATA(0), bootmap >> PAGE_SHIFT,
819 min_low_pfn, max_low_pfn);
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700820 printk(KERN_INFO " mapped low ram: 0 - %08lx\n",
821 max_pfn_mapped<<PAGE_SHIFT);
822 printk(KERN_INFO " low ram: %08lx - %08lx\n",
823 min_low_pfn<<PAGE_SHIFT, max_low_pfn<<PAGE_SHIFT);
824 printk(KERN_INFO " bootmap %08lx - %08lx\n",
825 bootmap, bootmap + bootmap_size);
826 for_each_online_node(i)
827 free_bootmem_with_active_regions(i, max_low_pfn);
828 early_res_to_bootmem(0, max_low_pfn<<PAGE_SHIFT);
829
Yinghai Lu4e296842008-06-24 12:18:14 -0700830 after_init_bootmem = 1;
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700831}
832
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700833static void __init find_early_table_space(unsigned long end, int use_pse)
Yinghai Lu4e296842008-06-24 12:18:14 -0700834{
Yinghai Lu7482b0e2008-06-28 03:30:39 -0700835 unsigned long puds, pmds, ptes, tables, start;
Yinghai Lu4e296842008-06-24 12:18:14 -0700836
837 puds = (end + PUD_SIZE - 1) >> PUD_SHIFT;
838 tables = PAGE_ALIGN(puds * sizeof(pud_t));
839
840 pmds = (end + PMD_SIZE - 1) >> PMD_SHIFT;
841 tables += PAGE_ALIGN(pmds * sizeof(pmd_t));
842
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700843 if (use_pse) {
Yinghai Lu7482b0e2008-06-28 03:30:39 -0700844 unsigned long extra;
Yinghai Lua04ad822008-06-29 00:39:06 -0700845
846 extra = end - ((end>>PMD_SHIFT) << PMD_SHIFT);
847 extra += PMD_SIZE;
Yinghai Lu7482b0e2008-06-28 03:30:39 -0700848 ptes = (extra + PAGE_SIZE - 1) >> PAGE_SHIFT;
849 } else
850 ptes = (end + PAGE_SIZE - 1) >> PAGE_SHIFT;
851
852 tables += PAGE_ALIGN(ptes * sizeof(pte_t));
Jeremy Fitzhardinge8207c252008-06-24 17:32:48 -0400853
Yinghai Lua04ad822008-06-29 00:39:06 -0700854 /* for fixmap */
Jan Beulicha3c60182009-01-16 11:59:33 +0000855 tables += PAGE_ALIGN(__end_of_fixed_addresses * sizeof(pte_t));
Yinghai Lua04ad822008-06-29 00:39:06 -0700856
Yinghai Lu4e296842008-06-24 12:18:14 -0700857 /*
858 * RED-PEN putting page tables only on node 0 could
859 * cause a hotspot and fill up ZONE_DMA. The page tables
860 * need roughly 0.5KB per GB.
861 */
862 start = 0x7000;
863 table_start = find_e820_area(start, max_pfn_mapped<<PAGE_SHIFT,
864 tables, PAGE_SIZE);
865 if (table_start == -1UL)
866 panic("Cannot find space for the kernel page tables");
867
868 table_start >>= PAGE_SHIFT;
869 table_end = table_start;
870 table_top = table_start + (tables>>PAGE_SHIFT);
871
872 printk(KERN_DEBUG "kernel direct mapping tables up to %lx @ %lx-%lx\n",
873 end, table_start << PAGE_SHIFT,
874 (table_start << PAGE_SHIFT) + tables);
875}
876
877unsigned long __init_refok init_memory_mapping(unsigned long start,
878 unsigned long end)
879{
880 pgd_t *pgd_base = swapper_pg_dir;
Yinghai Lua04ad822008-06-29 00:39:06 -0700881 unsigned long start_pfn, end_pfn;
882 unsigned long big_page_start;
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700883#ifdef CONFIG_DEBUG_PAGEALLOC
884 /*
885 * For CONFIG_DEBUG_PAGEALLOC, identity mapping will use small pages.
886 * This will simplify cpa(), which otherwise needs to support splitting
887 * large pages into small in interrupt context, etc.
888 */
889 int use_pse = 0;
890#else
891 int use_pse = cpu_has_pse;
892#endif
Yinghai Lu4e296842008-06-24 12:18:14 -0700893
894 /*
895 * Find space for the kernel direct mapping tables.
896 */
897 if (!after_init_bootmem)
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700898 find_early_table_space(end, use_pse);
Yinghai Lu4e296842008-06-24 12:18:14 -0700899
900#ifdef CONFIG_X86_PAE
901 set_nx();
902 if (nx_enabled)
903 printk(KERN_INFO "NX (Execute Disable) protection: active\n");
904#endif
905
906 /* Enable PSE if available */
907 if (cpu_has_pse)
908 set_in_cr4(X86_CR4_PSE);
909
910 /* Enable PGE if available */
911 if (cpu_has_pge) {
912 set_in_cr4(X86_CR4_PGE);
Jeremy Fitzhardingeef5e94a2008-07-01 16:46:36 -0700913 __supported_pte_mask |= _PAGE_GLOBAL;
Yinghai Lu4e296842008-06-24 12:18:14 -0700914 }
915
Yinghai Lua04ad822008-06-29 00:39:06 -0700916 /*
917 * Don't use a large page for the first 2/4MB of memory
918 * because there are often fixed size MTRRs in there
919 * and overlapping MTRRs into large pages can cause
920 * slowdowns.
921 */
922 big_page_start = PMD_SIZE;
923
924 if (start < big_page_start) {
925 start_pfn = start >> PAGE_SHIFT;
926 end_pfn = min(big_page_start>>PAGE_SHIFT, end>>PAGE_SHIFT);
927 } else {
928 /* head is not big page alignment ? */
929 start_pfn = start >> PAGE_SHIFT;
930 end_pfn = ((start + (PMD_SIZE - 1))>>PMD_SHIFT)
931 << (PMD_SHIFT - PAGE_SHIFT);
932 }
933 if (start_pfn < end_pfn)
934 kernel_physical_mapping_init(pgd_base, start_pfn, end_pfn, 0);
935
936 /* big page range */
937 start_pfn = ((start + (PMD_SIZE - 1))>>PMD_SHIFT)
938 << (PMD_SHIFT - PAGE_SHIFT);
939 if (start_pfn < (big_page_start >> PAGE_SHIFT))
940 start_pfn = big_page_start >> PAGE_SHIFT;
941 end_pfn = (end>>PMD_SHIFT) << (PMD_SHIFT - PAGE_SHIFT);
942 if (start_pfn < end_pfn)
943 kernel_physical_mapping_init(pgd_base, start_pfn, end_pfn,
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700944 use_pse);
Yinghai Lua04ad822008-06-29 00:39:06 -0700945
946 /* tail is not big page alignment ? */
947 start_pfn = end_pfn;
948 if (start_pfn > (big_page_start>>PAGE_SHIFT)) {
949 end_pfn = end >> PAGE_SHIFT;
950 if (start_pfn < end_pfn)
951 kernel_physical_mapping_init(pgd_base, start_pfn,
952 end_pfn, 0);
953 }
Yinghai Lu4e296842008-06-24 12:18:14 -0700954
Yinghai Lue7b37892008-06-25 21:51:28 -0700955 early_ioremap_page_table_range_init(pgd_base);
956
Yinghai Lu4e296842008-06-24 12:18:14 -0700957 load_cr3(swapper_pg_dir);
958
959 __flush_tlb_all();
960
961 if (!after_init_bootmem)
962 reserve_early(table_start << PAGE_SHIFT,
963 table_end << PAGE_SHIFT, "PGTABLE");
964
Yinghai Lucaadbdc2008-07-15 00:03:44 -0700965 if (!after_init_bootmem)
966 early_memtest(start, end);
967
Yinghai Lu4e296842008-06-24 12:18:14 -0700968 return end >> PAGE_SHIFT;
969}
970
Yinghai Lue7b37892008-06-25 21:51:28 -0700971
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972/*
973 * paging_init() sets up the page tables - note that the first 8MB are
974 * already mapped by head.S.
975 *
976 * This routines also unmaps the page at virtual kernel address 0, so
977 * that we can trap those pesky NULL-reference errors in the kernel.
978 */
979void __init paging_init(void)
980{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 pagetable_init();
982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 __flush_tlb_all();
984
985 kmap_init();
Yinghai Lu11cd0bc2008-06-23 19:51:10 -0700986
987 /*
988 * NOTE: at this point the bootmem allocator is fully available.
989 */
Yinghai Lu11cd0bc2008-06-23 19:51:10 -0700990 sparse_init();
991 zone_sizes_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992}
993
994/*
995 * Test if the WP bit works in supervisor mode. It isn't supported on 386's
Dmitri Vorobievf7f17a62008-04-21 00:47:55 +0400996 * and also on some strange 486's. All 586+'s are OK. This used to involve
997 * black magic jumps to work around some nasty CPU bugs, but fortunately the
998 * switch to using exceptions got rid of all that.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000static void __init test_wp_bit(void)
1001{
Ingo Molnard7d119d2008-01-30 13:34:10 +01001002 printk(KERN_INFO
1003 "Checking if this processor honours the WP bit even in supervisor mode...");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
1005 /* Any page-aligned address will do, the test is non-destructive */
1006 __set_fixmap(FIX_WP_TEST, __pa(&swapper_pg_dir), PAGE_READONLY);
1007 boot_cpu_data.wp_works_ok = do_test_wp_bit();
1008 clear_fixmap(FIX_WP_TEST);
1009
1010 if (!boot_cpu_data.wp_works_ok) {
Ingo Molnard7d119d2008-01-30 13:34:10 +01001011 printk(KERN_CONT "No.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012#ifdef CONFIG_X86_WP_WORKS_OK
Ingo Molnard7d119d2008-01-30 13:34:10 +01001013 panic(
1014 "This kernel doesn't support CPU's with broken WP. Recompile it for a 386!");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015#endif
1016 } else {
Ingo Molnard7d119d2008-01-30 13:34:10 +01001017 printk(KERN_CONT "Ok.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 }
1019}
1020
Ingo Molnar8550eb92008-01-30 13:34:10 +01001021static struct kcore_list kcore_mem, kcore_vmalloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
1023void __init mem_init(void)
1024{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 int codesize, reservedpages, datasize, initsize;
Yinghai Lucc9f7a02008-06-16 16:11:08 -07001026 int tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Jeremy Fitzhardingecfb80c92008-12-16 12:17:36 -08001028 pci_iommu_alloc();
1029
Andy Whitcroft05b79bd2005-06-23 00:07:57 -07001030#ifdef CONFIG_FLATMEM
Eric Sesterhenn8d8f3cb2006-10-03 23:34:58 +02001031 BUG_ON(!mem_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 /* this will put all low memory onto the freelists */
1034 totalram_pages += free_all_bootmem();
1035
1036 reservedpages = 0;
1037 for (tmp = 0; tmp < max_low_pfn; tmp++)
1038 /*
Ingo Molnar8550eb92008-01-30 13:34:10 +01001039 * Only count reserved RAM pages:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 */
1041 if (page_is_ram(tmp) && PageReserved(pfn_to_page(tmp)))
1042 reservedpages++;
1043
Yinghai Lucc9f7a02008-06-16 16:11:08 -07001044 set_highmem_pages_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
1046 codesize = (unsigned long) &_etext - (unsigned long) &_text;
1047 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
1048 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
1049
Ingo Molnar8550eb92008-01-30 13:34:10 +01001050 kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
1051 kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 VMALLOC_END-VMALLOC_START);
1053
Ingo Molnar8550eb92008-01-30 13:34:10 +01001054 printk(KERN_INFO "Memory: %luk/%luk available (%dk kernel code, "
1055 "%dk reserved, %dk data, %dk init, %ldk highmem)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
1057 num_physpages << (PAGE_SHIFT-10),
1058 codesize >> 10,
1059 reservedpages << (PAGE_SHIFT-10),
1060 datasize >> 10,
1061 initsize >> 10,
1062 (unsigned long) (totalhigh_pages << (PAGE_SHIFT-10))
1063 );
1064
Ingo Molnard7d119d2008-01-30 13:34:10 +01001065 printk(KERN_INFO "virtual kernel memory layout:\n"
Ingo Molnar8550eb92008-01-30 13:34:10 +01001066 " fixmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001067#ifdef CONFIG_HIGHMEM
Ingo Molnar8550eb92008-01-30 13:34:10 +01001068 " pkmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001069#endif
Ingo Molnar8550eb92008-01-30 13:34:10 +01001070 " vmalloc : 0x%08lx - 0x%08lx (%4ld MB)\n"
1071 " lowmem : 0x%08lx - 0x%08lx (%4ld MB)\n"
1072 " .init : 0x%08lx - 0x%08lx (%4ld kB)\n"
1073 " .data : 0x%08lx - 0x%08lx (%4ld kB)\n"
1074 " .text : 0x%08lx - 0x%08lx (%4ld kB)\n",
1075 FIXADDR_START, FIXADDR_TOP,
1076 (FIXADDR_TOP - FIXADDR_START) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001077
1078#ifdef CONFIG_HIGHMEM
Ingo Molnar8550eb92008-01-30 13:34:10 +01001079 PKMAP_BASE, PKMAP_BASE+LAST_PKMAP*PAGE_SIZE,
1080 (LAST_PKMAP*PAGE_SIZE) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001081#endif
1082
Ingo Molnar8550eb92008-01-30 13:34:10 +01001083 VMALLOC_START, VMALLOC_END,
1084 (VMALLOC_END - VMALLOC_START) >> 20,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001085
Ingo Molnar8550eb92008-01-30 13:34:10 +01001086 (unsigned long)__va(0), (unsigned long)high_memory,
1087 ((unsigned long)high_memory - (unsigned long)__va(0)) >> 20,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001088
Ingo Molnar8550eb92008-01-30 13:34:10 +01001089 (unsigned long)&__init_begin, (unsigned long)&__init_end,
1090 ((unsigned long)&__init_end -
1091 (unsigned long)&__init_begin) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001092
Ingo Molnar8550eb92008-01-30 13:34:10 +01001093 (unsigned long)&_etext, (unsigned long)&_edata,
1094 ((unsigned long)&_edata - (unsigned long)&_etext) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001095
Ingo Molnar8550eb92008-01-30 13:34:10 +01001096 (unsigned long)&_text, (unsigned long)&_etext,
1097 ((unsigned long)&_etext - (unsigned long)&_text) >> 10);
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001098
Jan Beulichbeeb4192008-12-16 11:45:56 +00001099 /*
1100 * Check boundaries twice: Some fundamental inconsistencies can
1101 * be detected at build time already.
1102 */
1103#define __FIXADDR_TOP (-PAGE_SIZE)
1104#ifdef CONFIG_HIGHMEM
1105 BUILD_BUG_ON(PKMAP_BASE + LAST_PKMAP*PAGE_SIZE > FIXADDR_START);
1106 BUILD_BUG_ON(VMALLOC_END > PKMAP_BASE);
1107#endif
1108#define high_memory (-128UL << 20)
1109 BUILD_BUG_ON(VMALLOC_START >= VMALLOC_END);
1110#undef high_memory
1111#undef __FIXADDR_TOP
1112
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001113#ifdef CONFIG_HIGHMEM
Ingo Molnar8550eb92008-01-30 13:34:10 +01001114 BUG_ON(PKMAP_BASE + LAST_PKMAP*PAGE_SIZE > FIXADDR_START);
1115 BUG_ON(VMALLOC_END > PKMAP_BASE);
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001116#endif
Jan Beulichbeeb4192008-12-16 11:45:56 +00001117 BUG_ON(VMALLOC_START >= VMALLOC_END);
Ingo Molnar8550eb92008-01-30 13:34:10 +01001118 BUG_ON((unsigned long)high_memory > VMALLOC_START);
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001119
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 if (boot_cpu_data.wp_works_ok < 0)
1121 test_wp_bit();
1122
Hugh Dickins61165d72008-05-13 14:26:57 +01001123 save_pg_dir();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 zap_low_mappings();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125}
1126
KAMEZAWA Hiroyukiad8f5792006-05-20 15:00:03 -07001127#ifdef CONFIG_MEMORY_HOTPLUG
Yasunori Gotobc02af92006-06-27 02:53:30 -07001128int arch_add_memory(int nid, u64 start, u64 size)
Dave Hansen05039b92005-10-29 18:16:57 -07001129{
Yasunori Goto7c7e9422006-12-22 01:11:13 -08001130 struct pglist_data *pgdata = NODE_DATA(nid);
Christoph Lameter776ed982006-09-25 23:31:09 -07001131 struct zone *zone = pgdata->node_zones + ZONE_HIGHMEM;
Dave Hansen05039b92005-10-29 18:16:57 -07001132 unsigned long start_pfn = start >> PAGE_SHIFT;
1133 unsigned long nr_pages = size >> PAGE_SHIFT;
1134
Gary Hadec04fc582009-01-06 14:39:14 -08001135 return __add_pages(nid, zone, start_pfn, nr_pages);
Dave Hansen05039b92005-10-29 18:16:57 -07001136}
Andi Kleen9d99aaa2006-04-07 19:49:15 +02001137#endif
Dave Hansen05039b92005-10-29 18:16:57 -07001138
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139/*
1140 * This function cannot be __init, since exceptions don't work in that
1141 * section. Put this after the callers, so that it cannot be inlined.
1142 */
Ingo Molnar8550eb92008-01-30 13:34:10 +01001143static noinline int do_test_wp_bit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144{
1145 char tmp_reg;
1146 int flag;
1147
1148 __asm__ __volatile__(
Ingo Molnar8550eb92008-01-30 13:34:10 +01001149 " movb %0, %1 \n"
1150 "1: movb %1, %0 \n"
1151 " xorl %2, %2 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 "2: \n"
H. Peter Anvinf832ff12008-02-04 16:47:58 +01001153 _ASM_EXTABLE(1b,2b)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 :"=m" (*(char *)fix_to_virt(FIX_WP_TEST)),
1155 "=q" (tmp_reg),
1156 "=r" (flag)
1157 :"2" (1)
1158 :"memory");
Ingo Molnar8550eb92008-01-30 13:34:10 +01001159
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 return flag;
1161}
1162
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001163#ifdef CONFIG_DEBUG_RODATA
Arjan van de Venedeed302008-01-30 13:34:08 +01001164const int rodata_test_data = 0xC3;
1165EXPORT_SYMBOL_GPL(rodata_test_data);
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001166
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001167void mark_rodata_ro(void)
1168{
Jan Beulich6fb14752007-05-02 19:27:10 +02001169 unsigned long start = PFN_ALIGN(_text);
1170 unsigned long size = PFN_ALIGN(_etext) - start;
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001171
Steven Rostedt8f0f9962008-05-12 21:20:56 +02001172#ifndef CONFIG_DYNAMIC_FTRACE
1173 /* Dynamic tracing modifies the kernel text section */
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -05001174 set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
1175 printk(KERN_INFO "Write protecting the kernel text: %luk\n",
1176 size >> 10);
Andi Kleen0c42f392008-01-30 13:33:42 +01001177
1178#ifdef CONFIG_CPA_DEBUG
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -05001179 printk(KERN_INFO "Testing CPA: Reverting %lx-%lx\n",
1180 start, start+size);
1181 set_pages_rw(virt_to_page(start), size>>PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +01001182
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -05001183 printk(KERN_INFO "Testing CPA: write protecting again\n");
1184 set_pages_ro(virt_to_page(start), size>>PAGE_SHIFT);
Linus Torvalds602033e2007-07-26 12:07:21 -07001185#endif
Steven Rostedt8f0f9962008-05-12 21:20:56 +02001186#endif /* CONFIG_DYNAMIC_FTRACE */
1187
Jan Beulich6fb14752007-05-02 19:27:10 +02001188 start += size;
1189 size = (unsigned long)__end_rodata - start;
Arjan van de Ven6d238cc2008-01-30 13:34:06 +01001190 set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
Ingo Molnard7d119d2008-01-30 13:34:10 +01001191 printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
1192 size >> 10);
Arjan van de Venedeed302008-01-30 13:34:08 +01001193 rodata_test();
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001194
Andi Kleen0c42f392008-01-30 13:33:42 +01001195#ifdef CONFIG_CPA_DEBUG
Ingo Molnard7d119d2008-01-30 13:34:10 +01001196 printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, start + size);
Arjan van de Ven6d238cc2008-01-30 13:34:06 +01001197 set_pages_rw(virt_to_page(start), size >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +01001198
Ingo Molnard7d119d2008-01-30 13:34:10 +01001199 printk(KERN_INFO "Testing CPA: write protecting again\n");
Arjan van de Ven6d238cc2008-01-30 13:34:06 +01001200 set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +01001201#endif
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001202}
1203#endif
1204
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001205void free_init_pages(char *what, unsigned long begin, unsigned long end)
1206{
Ingo Molnaree01f112008-01-30 13:34:09 +01001207#ifdef CONFIG_DEBUG_PAGEALLOC
1208 /*
1209 * If debugging page accesses then do not free this memory but
1210 * mark them not present - any buggy init-section access will
1211 * create a kernel page fault:
1212 */
1213 printk(KERN_INFO "debug: unmapping init memory %08lx..%08lx\n",
1214 begin, PAGE_ALIGN(end));
1215 set_memory_np(begin, (end - begin) >> PAGE_SHIFT);
1216#else
Ingo Molnar86f03982008-01-30 13:34:09 +01001217 unsigned long addr;
1218
Arjan van de Ven3c1df682008-01-30 13:34:07 +01001219 /*
1220 * We just marked the kernel text read only above, now that
1221 * we are going to free part of that, we need to make that
1222 * writeable first.
1223 */
1224 set_memory_rw(begin, (end - begin) >> PAGE_SHIFT);
1225
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001226 for (addr = begin; addr < end; addr += PAGE_SIZE) {
Linus Torvaldse3ebadd2007-05-07 08:44:24 -07001227 ClearPageReserved(virt_to_page(addr));
1228 init_page_count(virt_to_page(addr));
1229 memset((void *)addr, POISON_FREE_INITMEM, PAGE_SIZE);
1230 free_page(addr);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001231 totalram_pages++;
1232 }
Jan Beulich6fb14752007-05-02 19:27:10 +02001233 printk(KERN_INFO "Freeing %s: %luk freed\n", what, (end - begin) >> 10);
Ingo Molnaree01f112008-01-30 13:34:09 +01001234#endif
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001235}
1236
1237void free_initmem(void)
1238{
1239 free_init_pages("unused kernel memory",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -07001240 (unsigned long)(&__init_begin),
1241 (unsigned long)(&__init_end));
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001242}
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001243
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244#ifdef CONFIG_BLK_DEV_INITRD
1245void free_initrd_mem(unsigned long start, unsigned long end)
1246{
Linus Torvaldse3ebadd2007-05-07 08:44:24 -07001247 free_init_pages("initrd memory", start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248}
1249#endif
Yinghai Lud2dbf342008-06-13 02:00:56 -07001250
1251int __init reserve_bootmem_generic(unsigned long phys, unsigned long len,
1252 int flags)
1253{
1254 return reserve_bootmem(phys, len, flags);
1255}