blob: 00263bf07a88749f3ae92838465d3783fcdd6dd3 [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
Jan Beulicha3c60182009-01-16 11:59:33 +0000140static pte_t *__init page_table_kmap_check(pte_t *pte, pmd_t *pmd,
141 unsigned long vaddr, pte_t *lastpte)
142{
143#ifdef CONFIG_HIGHMEM
144 /*
145 * Something (early fixmap) may already have put a pte
146 * page here, which causes the page table allocation
147 * to become nonlinear. Attempt to fix it, and if it
148 * is still nonlinear then we have to bug.
149 */
150 int pmd_idx_kmap_begin = fix_to_virt(FIX_KMAP_END) >> PMD_SHIFT;
151 int pmd_idx_kmap_end = fix_to_virt(FIX_KMAP_BEGIN) >> PMD_SHIFT;
152
153 if (pmd_idx_kmap_begin != pmd_idx_kmap_end
154 && (vaddr >> PMD_SHIFT) >= pmd_idx_kmap_begin
155 && (vaddr >> PMD_SHIFT) <= pmd_idx_kmap_end
156 && ((__pa(pte) >> PAGE_SHIFT) < table_start
157 || (__pa(pte) >> PAGE_SHIFT) >= table_end)) {
158 pte_t *newpte;
159 int i;
160
161 BUG_ON(after_init_bootmem);
162 newpte = alloc_low_page();
163 for (i = 0; i < PTRS_PER_PTE; i++)
164 set_pte(newpte + i, pte[i]);
165
166 paravirt_alloc_pte(&init_mm, __pa(newpte) >> PAGE_SHIFT);
167 set_pmd(pmd, __pmd(__pa(newpte)|_PAGE_TABLE));
168 BUG_ON(newpte != pte_offset_kernel(pmd, 0));
169 __flush_tlb_all();
170
171 paravirt_release_pte(__pa(pte) >> PAGE_SHIFT);
172 pte = newpte;
173 }
174 BUG_ON(vaddr < fix_to_virt(FIX_KMAP_BEGIN - 1)
175 && vaddr > fix_to_virt(FIX_KMAP_END)
176 && lastpte && lastpte + PTRS_PER_PTE != pte);
177#endif
178 return pte;
179}
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181/*
Ingo Molnar8550eb92008-01-30 13:34:10 +0100182 * This function initializes a certain range of kernel virtual memory
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 * with new bootmem page tables, everywhere page tables are missing in
184 * the given range.
Ingo Molnar8550eb92008-01-30 13:34:10 +0100185 *
186 * NOTE: The pagetables are allocated contiguous on the physical space
187 * so we can cache the place of the first one and move around without
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 * checking the pgd every time.
189 */
Ingo Molnar8550eb92008-01-30 13:34:10 +0100190static void __init
191page_table_range_init(unsigned long start, unsigned long end, pgd_t *pgd_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 int pgd_idx, pmd_idx;
194 unsigned long vaddr;
Ingo Molnar8550eb92008-01-30 13:34:10 +0100195 pgd_t *pgd;
196 pmd_t *pmd;
Jan Beulicha3c60182009-01-16 11:59:33 +0000197 pte_t *pte = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 vaddr = start;
200 pgd_idx = pgd_index(vaddr);
201 pmd_idx = pmd_index(vaddr);
202 pgd = pgd_base + pgd_idx;
203
204 for ( ; (pgd_idx < PTRS_PER_PGD) && (vaddr != end); pgd++, pgd_idx++) {
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200205 pmd = one_md_table_init(pgd);
206 pmd = pmd + pmd_index(vaddr);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100207 for (; (pmd_idx < PTRS_PER_PMD) && (vaddr != end);
208 pmd++, pmd_idx++) {
Jan Beulicha3c60182009-01-16 11:59:33 +0000209 pte = page_table_kmap_check(one_page_table_init(pmd),
210 pmd, vaddr, pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212 vaddr += PMD_SIZE;
213 }
214 pmd_idx = 0;
215 }
216}
217
218static inline int is_kernel_text(unsigned long addr)
219{
220 if (addr >= PAGE_OFFSET && addr <= (unsigned long)__init_end)
221 return 1;
222 return 0;
223}
224
225/*
Ingo Molnar8550eb92008-01-30 13:34:10 +0100226 * This maps the physical memory to kernel virtual address space, a total
227 * of max_low_pfn pages, by creating page tables starting from address
228 * PAGE_OFFSET:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 */
Yinghai Lu4e296842008-06-24 12:18:14 -0700230static void __init kernel_physical_mapping_init(pgd_t *pgd_base,
Yinghai Lua04ad822008-06-29 00:39:06 -0700231 unsigned long start_pfn,
232 unsigned long end_pfn,
233 int use_pse)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
Ingo Molnar8550eb92008-01-30 13:34:10 +0100235 int pgd_idx, pmd_idx, pte_ofs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 unsigned long pfn;
237 pgd_t *pgd;
238 pmd_t *pmd;
239 pte_t *pte;
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700240 unsigned pages_2m, pages_4k;
241 int mapping_iter;
242
243 /*
244 * First iteration will setup identity mapping using large/small pages
245 * based on use_pse, with other attributes same as set by
246 * the early code in head_32.S
247 *
248 * Second iteration will setup the appropriate attributes (NX, GLOBAL..)
249 * as desired for the kernel identity mapping.
250 *
251 * This two pass mechanism conforms to the TLB app note which says:
252 *
253 * "Software should not write to a paging-structure entry in a way
254 * that would change, for any linear address, both the page size
255 * and either the page frame or attributes."
256 */
257 mapping_iter = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Yinghai Lua04ad822008-06-29 00:39:06 -0700259 if (!cpu_has_pse)
260 use_pse = 0;
261
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700262repeat:
263 pages_2m = pages_4k = 0;
Yinghai Lua04ad822008-06-29 00:39:06 -0700264 pfn = start_pfn;
265 pgd_idx = pgd_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 pgd = pgd_base + pgd_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 for (; pgd_idx < PTRS_PER_PGD; pgd++, pgd_idx++) {
268 pmd = one_md_table_init(pgd);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100269
Yinghai Lua04ad822008-06-29 00:39:06 -0700270 if (pfn >= end_pfn)
271 continue;
272#ifdef CONFIG_X86_PAE
273 pmd_idx = pmd_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
274 pmd += pmd_idx;
275#else
276 pmd_idx = 0;
277#endif
278 for (; pmd_idx < PTRS_PER_PMD && pfn < end_pfn;
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100279 pmd++, pmd_idx++) {
Ingo Molnar8550eb92008-01-30 13:34:10 +0100280 unsigned int addr = pfn * PAGE_SIZE + PAGE_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Ingo Molnar8550eb92008-01-30 13:34:10 +0100282 /*
283 * Map with big pages if possible, otherwise
284 * create normal page tables:
285 */
Yinghai Lua04ad822008-06-29 00:39:06 -0700286 if (use_pse) {
Ingo Molnar8550eb92008-01-30 13:34:10 +0100287 unsigned int addr2;
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100288 pgprot_t prot = PAGE_KERNEL_LARGE;
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700289 /*
290 * first pass will use the same initial
291 * identity mapping attribute + _PAGE_PSE.
292 */
293 pgprot_t init_prot =
294 __pgprot(PTE_IDENT_ATTR |
295 _PAGE_PSE);
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100296
Ingo Molnar8550eb92008-01-30 13:34:10 +0100297 addr2 = (pfn + PTRS_PER_PTE-1) * PAGE_SIZE +
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100298 PAGE_OFFSET + PAGE_SIZE-1;
299
Ingo Molnar8550eb92008-01-30 13:34:10 +0100300 if (is_kernel_text(addr) ||
301 is_kernel_text(addr2))
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100302 prot = PAGE_KERNEL_LARGE_EXEC;
303
Andi Kleence0c0e52008-05-02 11:46:49 +0200304 pages_2m++;
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700305 if (mapping_iter == 1)
306 set_pmd(pmd, pfn_pmd(pfn, init_prot));
307 else
308 set_pmd(pmd, pfn_pmd(pfn, prot));
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 pfn += PTRS_PER_PTE;
Ingo Molnar8550eb92008-01-30 13:34:10 +0100311 continue;
312 }
313 pte = one_page_table_init(pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Yinghai Lua04ad822008-06-29 00:39:06 -0700315 pte_ofs = pte_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
316 pte += pte_ofs;
317 for (; pte_ofs < PTRS_PER_PTE && pfn < end_pfn;
Ingo Molnar8550eb92008-01-30 13:34:10 +0100318 pte++, pfn++, pte_ofs++, addr += PAGE_SIZE) {
319 pgprot_t prot = PAGE_KERNEL;
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700320 /*
321 * first pass will use the same initial
322 * identity mapping attribute.
323 */
324 pgprot_t init_prot = __pgprot(PTE_IDENT_ATTR);
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100325
Ingo Molnar8550eb92008-01-30 13:34:10 +0100326 if (is_kernel_text(addr))
327 prot = PAGE_KERNEL_EXEC;
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100328
Andi Kleence0c0e52008-05-02 11:46:49 +0200329 pages_4k++;
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700330 if (mapping_iter == 1)
331 set_pte(pte, pfn_pte(pfn, init_prot));
332 else
333 set_pte(pte, pfn_pte(pfn, prot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 }
335 }
336 }
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700337 if (mapping_iter == 1) {
338 /*
339 * update direct mapping page count only in the first
340 * iteration.
341 */
342 update_page_count(PG_LEVEL_2M, pages_2m);
343 update_page_count(PG_LEVEL_4K, pages_4k);
344
345 /*
346 * local global flush tlb, which will flush the previous
347 * mappings present in both small and large page TLB's.
348 */
349 __flush_tlb_all();
350
351 /*
352 * Second iteration will set the actual desired PTE attributes.
353 */
354 mapping_iter = 2;
355 goto repeat;
356 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357}
358
Arjan van de Venae531c22008-04-24 23:40:47 +0200359/*
360 * devmem_is_allowed() checks to see if /dev/mem access to a certain address
361 * is valid. The argument is a physical page number.
362 *
363 *
364 * On x86, access has to be given to the first megabyte of ram because that area
365 * contains bios code and data regions used by X and dosemu and similar apps.
366 * Access has to be given to non-kernel-ram areas as well, these contain the PCI
367 * mmio resources as well as potential bios/acpi data regions.
368 */
369int devmem_is_allowed(unsigned long pagenr)
370{
371 if (pagenr <= 256)
372 return 1;
Arjan van de Vene8de1482008-10-22 19:55:31 -0700373 if (iomem_is_exclusive(pagenr << PAGE_SHIFT))
374 return 0;
Arjan van de Venae531c22008-04-24 23:40:47 +0200375 if (!page_is_ram(pagenr))
376 return 1;
377 return 0;
378}
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380pte_t *kmap_pte;
381pgprot_t kmap_prot;
382
Ingo Molnar8550eb92008-01-30 13:34:10 +0100383static inline pte_t *kmap_get_fixmap_pte(unsigned long vaddr)
384{
385 return pte_offset_kernel(pmd_offset(pud_offset(pgd_offset_k(vaddr),
386 vaddr), vaddr), vaddr);
387}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
389static void __init kmap_init(void)
390{
391 unsigned long kmap_vstart;
392
Ingo Molnar8550eb92008-01-30 13:34:10 +0100393 /*
394 * Cache the first kmap pte:
395 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 kmap_vstart = __fix_to_virt(FIX_KMAP_BEGIN);
397 kmap_pte = kmap_get_fixmap_pte(kmap_vstart);
398
399 kmap_prot = PAGE_KERNEL;
400}
401
Keith Packardfd940932008-10-30 19:37:09 -0700402#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403static void __init permanent_kmaps_init(pgd_t *pgd_base)
404{
Ingo Molnar8550eb92008-01-30 13:34:10 +0100405 unsigned long vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 pgd_t *pgd;
407 pud_t *pud;
408 pmd_t *pmd;
409 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411 vaddr = PKMAP_BASE;
412 page_table_range_init(vaddr, vaddr + PAGE_SIZE*LAST_PKMAP, pgd_base);
413
414 pgd = swapper_pg_dir + pgd_index(vaddr);
415 pud = pud_offset(pgd, vaddr);
416 pmd = pmd_offset(pud, vaddr);
417 pte = pte_offset_kernel(pmd, vaddr);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100418 pkmap_page_table = pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419}
420
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700421static void __init add_one_highpage_init(struct page *page, int pfn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422{
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700423 ClearPageReserved(page);
424 init_page_count(page);
425 __free_page(page);
426 totalhigh_pages++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427}
428
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700429struct add_highpages_data {
430 unsigned long start_pfn;
431 unsigned long end_pfn;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700432};
433
Yinghai Lud52d53b2008-06-16 20:10:55 -0700434static int __init add_highpages_work_fn(unsigned long start_pfn,
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700435 unsigned long end_pfn, void *datax)
436{
437 int node_pfn;
438 struct page *page;
439 unsigned long final_start_pfn, final_end_pfn;
440 struct add_highpages_data *data;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700441
442 data = (struct add_highpages_data *)datax;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700443
444 final_start_pfn = max(start_pfn, data->start_pfn);
445 final_end_pfn = min(end_pfn, data->end_pfn);
446 if (final_start_pfn >= final_end_pfn)
Yinghai Lud52d53b2008-06-16 20:10:55 -0700447 return 0;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700448
449 for (node_pfn = final_start_pfn; node_pfn < final_end_pfn;
450 node_pfn++) {
451 if (!pfn_valid(node_pfn))
452 continue;
453 page = pfn_to_page(node_pfn);
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700454 add_one_highpage_init(page, node_pfn);
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700455 }
456
Yinghai Lud52d53b2008-06-16 20:10:55 -0700457 return 0;
458
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700459}
460
461void __init add_highpages_with_active_regions(int nid, unsigned long start_pfn,
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700462 unsigned long end_pfn)
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700463{
464 struct add_highpages_data data;
465
466 data.start_pfn = start_pfn;
467 data.end_pfn = end_pfn;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700468
469 work_with_active_regions(nid, add_highpages_work_fn, &data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470}
471
Ingo Molnar8550eb92008-01-30 13:34:10 +0100472#ifndef CONFIG_NUMA
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700473static void __init set_highmem_pages_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700475 add_highpages_with_active_regions(0, highstart_pfn, highend_pfn);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100476
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 totalram_pages += totalhigh_pages;
478}
Ingo Molnar8550eb92008-01-30 13:34:10 +0100479#endif /* !CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
481#else
Ingo Brueckle8e32322009-01-02 14:42:00 +0100482static inline void permanent_kmaps_init(pgd_t *pgd_base)
483{
484}
485static inline void set_highmem_pages_init(void)
486{
487}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488#endif /* CONFIG_HIGHMEM */
489
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200490void __init native_pagetable_setup_start(pgd_t *base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
Ian Campbell551889a2008-02-09 23:24:09 +0100492 unsigned long pfn, va;
493 pgd_t *pgd;
494 pud_t *pud;
495 pmd_t *pmd;
496 pte_t *pte;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200497
498 /*
Ian Campbell551889a2008-02-09 23:24:09 +0100499 * Remove any mappings which extend past the end of physical
500 * memory from the boot time page table:
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200501 */
Ian Campbell551889a2008-02-09 23:24:09 +0100502 for (pfn = max_low_pfn + 1; pfn < 1<<(32-PAGE_SHIFT); pfn++) {
503 va = PAGE_OFFSET + (pfn<<PAGE_SHIFT);
504 pgd = base + pgd_index(va);
505 if (!pgd_present(*pgd))
506 break;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200507
Ian Campbell551889a2008-02-09 23:24:09 +0100508 pud = pud_offset(pgd, va);
509 pmd = pmd_offset(pud, va);
510 if (!pmd_present(*pmd))
511 break;
512
513 pte = pte_offset_kernel(pmd, va);
514 if (!pte_present(*pte))
515 break;
516
517 pte_clear(NULL, va, pte);
518 }
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700519 paravirt_alloc_pmd(&init_mm, __pa(base) >> PAGE_SHIFT);
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200520}
521
522void __init native_pagetable_setup_done(pgd_t *base)
523{
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200524}
525
526/*
527 * Build a proper pagetable for the kernel mappings. Up until this
528 * point, we've been running on some set of pagetables constructed by
529 * the boot process.
530 *
531 * If we're booting on native hardware, this will be a pagetable
Ian Campbell551889a2008-02-09 23:24:09 +0100532 * constructed in arch/x86/kernel/head_32.S. The root of the
533 * pagetable will be swapper_pg_dir.
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200534 *
535 * If we're booting paravirtualized under a hypervisor, then there are
536 * more options: we may already be running PAE, and the pagetable may
537 * or may not be based in swapper_pg_dir. In any case,
538 * paravirt_pagetable_setup_start() will set up swapper_pg_dir
539 * appropriately for the rest of the initialization to work.
540 *
541 * In general, pagetable_init() assumes that the pagetable may already
542 * be partially populated, and so it avoids stomping on any existing
543 * mappings.
544 */
Yinghai Lue7b37892008-06-25 21:51:28 -0700545static void __init early_ioremap_page_table_range_init(pgd_t *pgd_base)
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200546{
Ingo Molnar8550eb92008-01-30 13:34:10 +0100547 unsigned long vaddr, end;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 /*
550 * Fixed mappings, only the page table structure has to be
551 * created - mappings will be set by set_fixmap():
552 */
553 vaddr = __fix_to_virt(__end_of_fixed_addresses - 1) & PMD_MASK;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200554 end = (FIXADDR_TOP + PMD_SIZE - 1) & PMD_MASK;
555 page_table_range_init(vaddr, end, pgd_base);
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100556 early_ioremap_reset();
Yinghai Lue7b37892008-06-25 21:51:28 -0700557}
558
559static void __init pagetable_init(void)
560{
561 pgd_t *pgd_base = swapper_pg_dir;
562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 permanent_kmaps_init(pgd_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564}
565
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100566#ifdef CONFIG_ACPI_SLEEP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567/*
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100568 * ACPI suspend needs this for resume, because things like the intel-agp
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 * driver might have split up a kernel 4MB mapping.
570 */
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100571char swsusp_pg_dir[PAGE_SIZE]
Ingo Molnar8550eb92008-01-30 13:34:10 +0100572 __attribute__ ((aligned(PAGE_SIZE)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
574static inline void save_pg_dir(void)
575{
576 memcpy(swsusp_pg_dir, swapper_pg_dir, PAGE_SIZE);
577}
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100578#else /* !CONFIG_ACPI_SLEEP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579static inline void save_pg_dir(void)
580{
581}
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100582#endif /* !CONFIG_ACPI_SLEEP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Ingo Molnar8550eb92008-01-30 13:34:10 +0100584void zap_low_mappings(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585{
586 int i;
587
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 /*
589 * Zap initial low-memory mappings.
590 *
591 * Note that "pgd_clear()" doesn't do it for
592 * us, because pgd_clear() is a no-op on i386.
593 */
Jeremy Fitzhardinge68db0652008-03-17 16:37:13 -0700594 for (i = 0; i < KERNEL_PGD_BOUNDARY; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595#ifdef CONFIG_X86_PAE
596 set_pgd(swapper_pg_dir+i, __pgd(1 + __pa(empty_zero_page)));
597#else
598 set_pgd(swapper_pg_dir+i, __pgd(0));
599#endif
Ingo Molnar8550eb92008-01-30 13:34:10 +0100600 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 flush_tlb_all();
602}
603
Ingo Molnar8550eb92008-01-30 13:34:10 +0100604int nx_enabled;
Jan Beulichd5321ab2007-07-21 17:10:26 +0200605
Jeremy Fitzhardingebe43d722008-09-07 15:21:13 -0700606pteval_t __supported_pte_mask __read_mostly = ~(_PAGE_NX | _PAGE_GLOBAL | _PAGE_IOMAP);
Jeremy Fitzhardinge6fdc05d2008-01-30 13:32:57 +0100607EXPORT_SYMBOL_GPL(__supported_pte_mask);
608
Jan Beulichd5321ab2007-07-21 17:10:26 +0200609#ifdef CONFIG_X86_PAE
610
Ingo Molnar8550eb92008-01-30 13:34:10 +0100611static int disable_nx __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
613/*
614 * noexec = on|off
615 *
616 * Control non executable mappings.
617 *
618 * on Enable
619 * off Disable
620 */
Rusty Russell1a3f2392006-09-26 10:52:32 +0200621static int __init noexec_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622{
Rusty Russell1a3f2392006-09-26 10:52:32 +0200623 if (!str || !strcmp(str, "on")) {
624 if (cpu_has_nx) {
625 __supported_pte_mask |= _PAGE_NX;
626 disable_nx = 0;
627 }
Ingo Molnar8550eb92008-01-30 13:34:10 +0100628 } else {
629 if (!strcmp(str, "off")) {
630 disable_nx = 1;
631 __supported_pte_mask &= ~_PAGE_NX;
632 } else {
633 return -EINVAL;
634 }
635 }
Rusty Russell1a3f2392006-09-26 10:52:32 +0200636
637 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638}
Rusty Russell1a3f2392006-09-26 10:52:32 +0200639early_param("noexec", noexec_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641static void __init set_nx(void)
642{
643 unsigned int v[4], l, h;
644
645 if (cpu_has_pae && (cpuid_eax(0x80000000) > 0x80000001)) {
646 cpuid(0x80000001, &v[0], &v[1], &v[2], &v[3]);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100647
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 if ((v[3] & (1 << 20)) && !disable_nx) {
649 rdmsr(MSR_EFER, l, h);
650 l |= EFER_NX;
651 wrmsr(MSR_EFER, l, h);
652 nx_enabled = 1;
653 __supported_pte_mask |= _PAGE_NX;
654 }
655 }
656}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657#endif
658
Yinghai Lu90d967e2008-06-23 21:00:45 +0200659/* user-defined highmem size */
660static unsigned int highmem_pages = -1;
661
662/*
663 * highmem=size forces highmem to be exactly 'size' bytes.
664 * This works even on boxes that have no highmem otherwise.
665 * This also works to reduce highmem size on bigger boxes.
666 */
667static int __init parse_highmem(char *arg)
668{
669 if (!arg)
670 return -EINVAL;
671
672 highmem_pages = memparse(arg, &arg) >> PAGE_SHIFT;
673 return 0;
674}
675early_param("highmem", parse_highmem);
676
677/*
678 * Determine low and high memory ranges:
679 */
Yinghai Lu2ec65f82008-06-23 03:05:30 -0700680void __init find_low_pfn_range(void)
Yinghai Lu90d967e2008-06-23 21:00:45 +0200681{
Yinghai Lu2ec65f82008-06-23 03:05:30 -0700682 /* it could update max_pfn */
683
Yinghai Lu346cafe2008-06-23 03:06:14 -0700684 /* max_low_pfn is 0, we already have early_res support */
Yinghai Lu90d967e2008-06-23 21:00:45 +0200685
686 max_low_pfn = max_pfn;
687 if (max_low_pfn > MAXMEM_PFN) {
688 if (highmem_pages == -1)
689 highmem_pages = max_pfn - MAXMEM_PFN;
690 if (highmem_pages + MAXMEM_PFN < max_pfn)
691 max_pfn = MAXMEM_PFN + highmem_pages;
692 if (highmem_pages + MAXMEM_PFN > max_pfn) {
693 printk(KERN_WARNING "only %luMB highmem pages "
694 "available, ignoring highmem size of %uMB.\n",
695 pages_to_mb(max_pfn - MAXMEM_PFN),
696 pages_to_mb(highmem_pages));
697 highmem_pages = 0;
698 }
699 max_low_pfn = MAXMEM_PFN;
700#ifndef CONFIG_HIGHMEM
701 /* Maximum memory usable is what is directly addressable */
702 printk(KERN_WARNING "Warning only %ldMB will be used.\n",
703 MAXMEM>>20);
704 if (max_pfn > MAX_NONPAE_PFN)
705 printk(KERN_WARNING
706 "Use a HIGHMEM64G enabled kernel.\n");
707 else
708 printk(KERN_WARNING "Use a HIGHMEM enabled kernel.\n");
709 max_pfn = MAXMEM_PFN;
710#else /* !CONFIG_HIGHMEM */
711#ifndef CONFIG_HIGHMEM64G
712 if (max_pfn > MAX_NONPAE_PFN) {
713 max_pfn = MAX_NONPAE_PFN;
714 printk(KERN_WARNING "Warning only 4GB will be used."
715 "Use a HIGHMEM64G enabled kernel.\n");
716 }
717#endif /* !CONFIG_HIGHMEM64G */
718#endif /* !CONFIG_HIGHMEM */
719 } else {
720 if (highmem_pages == -1)
721 highmem_pages = 0;
722#ifdef CONFIG_HIGHMEM
723 if (highmem_pages >= max_pfn) {
724 printk(KERN_ERR "highmem size specified (%uMB) is "
725 "bigger than pages available (%luMB)!.\n",
726 pages_to_mb(highmem_pages),
727 pages_to_mb(max_pfn));
728 highmem_pages = 0;
729 }
730 if (highmem_pages) {
731 if (max_low_pfn - highmem_pages <
732 64*1024*1024/PAGE_SIZE){
733 printk(KERN_ERR "highmem size %uMB results in "
734 "smaller than 64MB lowmem, ignoring it.\n"
735 , pages_to_mb(highmem_pages));
736 highmem_pages = 0;
737 }
738 max_low_pfn -= highmem_pages;
739 }
740#else
741 if (highmem_pages)
742 printk(KERN_ERR "ignoring highmem size on non-highmem"
743 " kernel!\n");
744#endif
745 }
Yinghai Lu90d967e2008-06-23 21:00:45 +0200746}
747
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700748#ifndef CONFIG_NEED_MULTIPLE_NODES
Yinghai Lu2ec65f82008-06-23 03:05:30 -0700749void __init initmem_init(unsigned long start_pfn,
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700750 unsigned long end_pfn)
751{
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700752#ifdef CONFIG_HIGHMEM
753 highstart_pfn = highend_pfn = max_pfn;
754 if (max_pfn > max_low_pfn)
755 highstart_pfn = max_low_pfn;
756 memory_present(0, 0, highend_pfn);
Yinghai Lucb95a132008-07-02 00:31:02 -0700757 e820_register_active_regions(0, 0, highend_pfn);
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700758 printk(KERN_NOTICE "%ldMB HIGHMEM available.\n",
759 pages_to_mb(highend_pfn - highstart_pfn));
760 num_physpages = highend_pfn;
761 high_memory = (void *) __va(highstart_pfn * PAGE_SIZE - 1) + 1;
762#else
763 memory_present(0, 0, max_low_pfn);
Yinghai Lucb95a132008-07-02 00:31:02 -0700764 e820_register_active_regions(0, 0, max_low_pfn);
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700765 num_physpages = max_low_pfn;
766 high_memory = (void *) __va(max_low_pfn * PAGE_SIZE - 1) + 1;
767#endif
768#ifdef CONFIG_FLATMEM
769 max_mapnr = num_physpages;
770#endif
771 printk(KERN_NOTICE "%ldMB LOWMEM available.\n",
772 pages_to_mb(max_low_pfn));
773
774 setup_bootmem_allocator();
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700775}
Yinghai Lucb95a132008-07-02 00:31:02 -0700776#endif /* !CONFIG_NEED_MULTIPLE_NODES */
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700777
Yinghai Lucb95a132008-07-02 00:31:02 -0700778static void __init zone_sizes_init(void)
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700779{
780 unsigned long max_zone_pfns[MAX_NR_ZONES];
781 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
782 max_zone_pfns[ZONE_DMA] =
783 virt_to_phys((char *)MAX_DMA_ADDRESS) >> PAGE_SHIFT;
784 max_zone_pfns[ZONE_NORMAL] = max_low_pfn;
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700785#ifdef CONFIG_HIGHMEM
786 max_zone_pfns[ZONE_HIGHMEM] = highend_pfn;
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700787#endif
788
789 free_area_init_nodes(max_zone_pfns);
790}
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700791
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700792void __init setup_bootmem_allocator(void)
793{
794 int i;
795 unsigned long bootmap_size, bootmap;
796 /*
797 * Initialize the boot-time allocator (with low memory only):
798 */
799 bootmap_size = bootmem_bootmap_pages(max_low_pfn)<<PAGE_SHIFT;
800 bootmap = find_e820_area(min_low_pfn<<PAGE_SHIFT,
801 max_pfn_mapped<<PAGE_SHIFT, bootmap_size,
802 PAGE_SIZE);
803 if (bootmap == -1L)
804 panic("Cannot find bootmem map of size %ld\n", bootmap_size);
805 reserve_early(bootmap, bootmap + bootmap_size, "BOOTMAP");
Yinghai Lu225c37d2008-06-22 02:46:58 -0700806
Yinghai Lu346cafe2008-06-23 03:06:14 -0700807 /* don't touch min_low_pfn */
808 bootmap_size = init_bootmem_node(NODE_DATA(0), bootmap >> PAGE_SHIFT,
809 min_low_pfn, max_low_pfn);
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700810 printk(KERN_INFO " mapped low ram: 0 - %08lx\n",
811 max_pfn_mapped<<PAGE_SHIFT);
812 printk(KERN_INFO " low ram: %08lx - %08lx\n",
813 min_low_pfn<<PAGE_SHIFT, max_low_pfn<<PAGE_SHIFT);
814 printk(KERN_INFO " bootmap %08lx - %08lx\n",
815 bootmap, bootmap + bootmap_size);
816 for_each_online_node(i)
817 free_bootmem_with_active_regions(i, max_low_pfn);
818 early_res_to_bootmem(0, max_low_pfn<<PAGE_SHIFT);
819
Yinghai Lu4e296842008-06-24 12:18:14 -0700820 after_init_bootmem = 1;
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700821}
822
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700823static void __init find_early_table_space(unsigned long end, int use_pse)
Yinghai Lu4e296842008-06-24 12:18:14 -0700824{
Yinghai Lu7482b0e2008-06-28 03:30:39 -0700825 unsigned long puds, pmds, ptes, tables, start;
Yinghai Lu4e296842008-06-24 12:18:14 -0700826
827 puds = (end + PUD_SIZE - 1) >> PUD_SHIFT;
828 tables = PAGE_ALIGN(puds * sizeof(pud_t));
829
830 pmds = (end + PMD_SIZE - 1) >> PMD_SHIFT;
831 tables += PAGE_ALIGN(pmds * sizeof(pmd_t));
832
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700833 if (use_pse) {
Yinghai Lu7482b0e2008-06-28 03:30:39 -0700834 unsigned long extra;
Yinghai Lua04ad822008-06-29 00:39:06 -0700835
836 extra = end - ((end>>PMD_SHIFT) << PMD_SHIFT);
837 extra += PMD_SIZE;
Yinghai Lu7482b0e2008-06-28 03:30:39 -0700838 ptes = (extra + PAGE_SIZE - 1) >> PAGE_SHIFT;
839 } else
840 ptes = (end + PAGE_SIZE - 1) >> PAGE_SHIFT;
841
842 tables += PAGE_ALIGN(ptes * sizeof(pte_t));
Jeremy Fitzhardinge8207c252008-06-24 17:32:48 -0400843
Yinghai Lua04ad822008-06-29 00:39:06 -0700844 /* for fixmap */
Jan Beulicha3c60182009-01-16 11:59:33 +0000845 tables += PAGE_ALIGN(__end_of_fixed_addresses * sizeof(pte_t));
Yinghai Lua04ad822008-06-29 00:39:06 -0700846
Yinghai Lu4e296842008-06-24 12:18:14 -0700847 /*
848 * RED-PEN putting page tables only on node 0 could
849 * cause a hotspot and fill up ZONE_DMA. The page tables
850 * need roughly 0.5KB per GB.
851 */
852 start = 0x7000;
853 table_start = find_e820_area(start, max_pfn_mapped<<PAGE_SHIFT,
854 tables, PAGE_SIZE);
855 if (table_start == -1UL)
856 panic("Cannot find space for the kernel page tables");
857
858 table_start >>= PAGE_SHIFT;
859 table_end = table_start;
860 table_top = table_start + (tables>>PAGE_SHIFT);
861
862 printk(KERN_DEBUG "kernel direct mapping tables up to %lx @ %lx-%lx\n",
863 end, table_start << PAGE_SHIFT,
864 (table_start << PAGE_SHIFT) + tables);
865}
866
867unsigned long __init_refok init_memory_mapping(unsigned long start,
868 unsigned long end)
869{
870 pgd_t *pgd_base = swapper_pg_dir;
Yinghai Lua04ad822008-06-29 00:39:06 -0700871 unsigned long start_pfn, end_pfn;
872 unsigned long big_page_start;
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700873#ifdef CONFIG_DEBUG_PAGEALLOC
874 /*
875 * For CONFIG_DEBUG_PAGEALLOC, identity mapping will use small pages.
876 * This will simplify cpa(), which otherwise needs to support splitting
877 * large pages into small in interrupt context, etc.
878 */
879 int use_pse = 0;
880#else
881 int use_pse = cpu_has_pse;
882#endif
Yinghai Lu4e296842008-06-24 12:18:14 -0700883
884 /*
885 * Find space for the kernel direct mapping tables.
886 */
887 if (!after_init_bootmem)
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700888 find_early_table_space(end, use_pse);
Yinghai Lu4e296842008-06-24 12:18:14 -0700889
890#ifdef CONFIG_X86_PAE
891 set_nx();
892 if (nx_enabled)
893 printk(KERN_INFO "NX (Execute Disable) protection: active\n");
894#endif
895
896 /* Enable PSE if available */
897 if (cpu_has_pse)
898 set_in_cr4(X86_CR4_PSE);
899
900 /* Enable PGE if available */
901 if (cpu_has_pge) {
902 set_in_cr4(X86_CR4_PGE);
Jeremy Fitzhardingeef5e94a2008-07-01 16:46:36 -0700903 __supported_pte_mask |= _PAGE_GLOBAL;
Yinghai Lu4e296842008-06-24 12:18:14 -0700904 }
905
Yinghai Lua04ad822008-06-29 00:39:06 -0700906 /*
907 * Don't use a large page for the first 2/4MB of memory
908 * because there are often fixed size MTRRs in there
909 * and overlapping MTRRs into large pages can cause
910 * slowdowns.
911 */
912 big_page_start = PMD_SIZE;
913
914 if (start < big_page_start) {
915 start_pfn = start >> PAGE_SHIFT;
916 end_pfn = min(big_page_start>>PAGE_SHIFT, end>>PAGE_SHIFT);
917 } else {
918 /* head is not big page alignment ? */
919 start_pfn = start >> PAGE_SHIFT;
920 end_pfn = ((start + (PMD_SIZE - 1))>>PMD_SHIFT)
921 << (PMD_SHIFT - PAGE_SHIFT);
922 }
923 if (start_pfn < end_pfn)
924 kernel_physical_mapping_init(pgd_base, start_pfn, end_pfn, 0);
925
926 /* big page range */
927 start_pfn = ((start + (PMD_SIZE - 1))>>PMD_SHIFT)
928 << (PMD_SHIFT - PAGE_SHIFT);
929 if (start_pfn < (big_page_start >> PAGE_SHIFT))
930 start_pfn = big_page_start >> PAGE_SHIFT;
931 end_pfn = (end>>PMD_SHIFT) << (PMD_SHIFT - PAGE_SHIFT);
932 if (start_pfn < end_pfn)
933 kernel_physical_mapping_init(pgd_base, start_pfn, end_pfn,
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700934 use_pse);
Yinghai Lua04ad822008-06-29 00:39:06 -0700935
936 /* tail is not big page alignment ? */
937 start_pfn = end_pfn;
938 if (start_pfn > (big_page_start>>PAGE_SHIFT)) {
939 end_pfn = end >> PAGE_SHIFT;
940 if (start_pfn < end_pfn)
941 kernel_physical_mapping_init(pgd_base, start_pfn,
942 end_pfn, 0);
943 }
Yinghai Lu4e296842008-06-24 12:18:14 -0700944
Yinghai Lue7b37892008-06-25 21:51:28 -0700945 early_ioremap_page_table_range_init(pgd_base);
946
Yinghai Lu4e296842008-06-24 12:18:14 -0700947 load_cr3(swapper_pg_dir);
948
949 __flush_tlb_all();
950
951 if (!after_init_bootmem)
952 reserve_early(table_start << PAGE_SHIFT,
953 table_end << PAGE_SHIFT, "PGTABLE");
954
Yinghai Lucaadbdc2008-07-15 00:03:44 -0700955 if (!after_init_bootmem)
956 early_memtest(start, end);
957
Yinghai Lu4e296842008-06-24 12:18:14 -0700958 return end >> PAGE_SHIFT;
959}
960
Yinghai Lue7b37892008-06-25 21:51:28 -0700961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962/*
963 * paging_init() sets up the page tables - note that the first 8MB are
964 * already mapped by head.S.
965 *
966 * This routines also unmaps the page at virtual kernel address 0, so
967 * that we can trap those pesky NULL-reference errors in the kernel.
968 */
969void __init paging_init(void)
970{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 pagetable_init();
972
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 __flush_tlb_all();
974
975 kmap_init();
Yinghai Lu11cd0bc2008-06-23 19:51:10 -0700976
977 /*
978 * NOTE: at this point the bootmem allocator is fully available.
979 */
Yinghai Lu11cd0bc2008-06-23 19:51:10 -0700980 sparse_init();
981 zone_sizes_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982}
983
984/*
985 * Test if the WP bit works in supervisor mode. It isn't supported on 386's
Dmitri Vorobievf7f17a62008-04-21 00:47:55 +0400986 * and also on some strange 486's. All 586+'s are OK. This used to involve
987 * black magic jumps to work around some nasty CPU bugs, but fortunately the
988 * switch to using exceptions got rid of all that.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990static void __init test_wp_bit(void)
991{
Ingo Molnard7d119d2008-01-30 13:34:10 +0100992 printk(KERN_INFO
993 "Checking if this processor honours the WP bit even in supervisor mode...");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
995 /* Any page-aligned address will do, the test is non-destructive */
996 __set_fixmap(FIX_WP_TEST, __pa(&swapper_pg_dir), PAGE_READONLY);
997 boot_cpu_data.wp_works_ok = do_test_wp_bit();
998 clear_fixmap(FIX_WP_TEST);
999
1000 if (!boot_cpu_data.wp_works_ok) {
Ingo Molnard7d119d2008-01-30 13:34:10 +01001001 printk(KERN_CONT "No.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002#ifdef CONFIG_X86_WP_WORKS_OK
Ingo Molnard7d119d2008-01-30 13:34:10 +01001003 panic(
1004 "This kernel doesn't support CPU's with broken WP. Recompile it for a 386!");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005#endif
1006 } else {
Ingo Molnard7d119d2008-01-30 13:34:10 +01001007 printk(KERN_CONT "Ok.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 }
1009}
1010
Ingo Molnar8550eb92008-01-30 13:34:10 +01001011static struct kcore_list kcore_mem, kcore_vmalloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
1013void __init mem_init(void)
1014{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 int codesize, reservedpages, datasize, initsize;
Yinghai Lucc9f7a02008-06-16 16:11:08 -07001016 int tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
Jeremy Fitzhardingecfb80c92008-12-16 12:17:36 -08001018 pci_iommu_alloc();
1019
Andy Whitcroft05b79bd2005-06-23 00:07:57 -07001020#ifdef CONFIG_FLATMEM
Eric Sesterhenn8d8f3cb2006-10-03 23:34:58 +02001021 BUG_ON(!mem_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 /* this will put all low memory onto the freelists */
1024 totalram_pages += free_all_bootmem();
1025
1026 reservedpages = 0;
1027 for (tmp = 0; tmp < max_low_pfn; tmp++)
1028 /*
Ingo Molnar8550eb92008-01-30 13:34:10 +01001029 * Only count reserved RAM pages:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 */
1031 if (page_is_ram(tmp) && PageReserved(pfn_to_page(tmp)))
1032 reservedpages++;
1033
Yinghai Lucc9f7a02008-06-16 16:11:08 -07001034 set_highmem_pages_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
1036 codesize = (unsigned long) &_etext - (unsigned long) &_text;
1037 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
1038 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
1039
Ingo Molnar8550eb92008-01-30 13:34:10 +01001040 kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
1041 kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 VMALLOC_END-VMALLOC_START);
1043
Ingo Molnar8550eb92008-01-30 13:34:10 +01001044 printk(KERN_INFO "Memory: %luk/%luk available (%dk kernel code, "
1045 "%dk reserved, %dk data, %dk init, %ldk highmem)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
1047 num_physpages << (PAGE_SHIFT-10),
1048 codesize >> 10,
1049 reservedpages << (PAGE_SHIFT-10),
1050 datasize >> 10,
1051 initsize >> 10,
1052 (unsigned long) (totalhigh_pages << (PAGE_SHIFT-10))
1053 );
1054
Ingo Molnard7d119d2008-01-30 13:34:10 +01001055 printk(KERN_INFO "virtual kernel memory layout:\n"
Ingo Molnar8550eb92008-01-30 13:34:10 +01001056 " fixmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001057#ifdef CONFIG_HIGHMEM
Ingo Molnar8550eb92008-01-30 13:34:10 +01001058 " pkmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001059#endif
Ingo Molnar8550eb92008-01-30 13:34:10 +01001060 " vmalloc : 0x%08lx - 0x%08lx (%4ld MB)\n"
1061 " lowmem : 0x%08lx - 0x%08lx (%4ld MB)\n"
1062 " .init : 0x%08lx - 0x%08lx (%4ld kB)\n"
1063 " .data : 0x%08lx - 0x%08lx (%4ld kB)\n"
1064 " .text : 0x%08lx - 0x%08lx (%4ld kB)\n",
1065 FIXADDR_START, FIXADDR_TOP,
1066 (FIXADDR_TOP - FIXADDR_START) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001067
1068#ifdef CONFIG_HIGHMEM
Ingo Molnar8550eb92008-01-30 13:34:10 +01001069 PKMAP_BASE, PKMAP_BASE+LAST_PKMAP*PAGE_SIZE,
1070 (LAST_PKMAP*PAGE_SIZE) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001071#endif
1072
Ingo Molnar8550eb92008-01-30 13:34:10 +01001073 VMALLOC_START, VMALLOC_END,
1074 (VMALLOC_END - VMALLOC_START) >> 20,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001075
Ingo Molnar8550eb92008-01-30 13:34:10 +01001076 (unsigned long)__va(0), (unsigned long)high_memory,
1077 ((unsigned long)high_memory - (unsigned long)__va(0)) >> 20,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001078
Ingo Molnar8550eb92008-01-30 13:34:10 +01001079 (unsigned long)&__init_begin, (unsigned long)&__init_end,
1080 ((unsigned long)&__init_end -
1081 (unsigned long)&__init_begin) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001082
Ingo Molnar8550eb92008-01-30 13:34:10 +01001083 (unsigned long)&_etext, (unsigned long)&_edata,
1084 ((unsigned long)&_edata - (unsigned long)&_etext) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001085
Ingo Molnar8550eb92008-01-30 13:34:10 +01001086 (unsigned long)&_text, (unsigned long)&_etext,
1087 ((unsigned long)&_etext - (unsigned long)&_text) >> 10);
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001088
Jan Beulichbeeb4192008-12-16 11:45:56 +00001089 /*
1090 * Check boundaries twice: Some fundamental inconsistencies can
1091 * be detected at build time already.
1092 */
1093#define __FIXADDR_TOP (-PAGE_SIZE)
1094#ifdef CONFIG_HIGHMEM
1095 BUILD_BUG_ON(PKMAP_BASE + LAST_PKMAP*PAGE_SIZE > FIXADDR_START);
1096 BUILD_BUG_ON(VMALLOC_END > PKMAP_BASE);
1097#endif
1098#define high_memory (-128UL << 20)
1099 BUILD_BUG_ON(VMALLOC_START >= VMALLOC_END);
1100#undef high_memory
1101#undef __FIXADDR_TOP
1102
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001103#ifdef CONFIG_HIGHMEM
Ingo Molnar8550eb92008-01-30 13:34:10 +01001104 BUG_ON(PKMAP_BASE + LAST_PKMAP*PAGE_SIZE > FIXADDR_START);
1105 BUG_ON(VMALLOC_END > PKMAP_BASE);
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001106#endif
Jan Beulichbeeb4192008-12-16 11:45:56 +00001107 BUG_ON(VMALLOC_START >= VMALLOC_END);
Ingo Molnar8550eb92008-01-30 13:34:10 +01001108 BUG_ON((unsigned long)high_memory > VMALLOC_START);
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001109
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 if (boot_cpu_data.wp_works_ok < 0)
1111 test_wp_bit();
1112
Hugh Dickins61165d72008-05-13 14:26:57 +01001113 save_pg_dir();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 zap_low_mappings();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115}
1116
KAMEZAWA Hiroyukiad8f5792006-05-20 15:00:03 -07001117#ifdef CONFIG_MEMORY_HOTPLUG
Yasunori Gotobc02af92006-06-27 02:53:30 -07001118int arch_add_memory(int nid, u64 start, u64 size)
Dave Hansen05039b92005-10-29 18:16:57 -07001119{
Yasunori Goto7c7e9422006-12-22 01:11:13 -08001120 struct pglist_data *pgdata = NODE_DATA(nid);
Christoph Lameter776ed982006-09-25 23:31:09 -07001121 struct zone *zone = pgdata->node_zones + ZONE_HIGHMEM;
Dave Hansen05039b92005-10-29 18:16:57 -07001122 unsigned long start_pfn = start >> PAGE_SHIFT;
1123 unsigned long nr_pages = size >> PAGE_SHIFT;
1124
Gary Hadec04fc582009-01-06 14:39:14 -08001125 return __add_pages(nid, zone, start_pfn, nr_pages);
Dave Hansen05039b92005-10-29 18:16:57 -07001126}
Andi Kleen9d99aaa2006-04-07 19:49:15 +02001127#endif
Dave Hansen05039b92005-10-29 18:16:57 -07001128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129/*
1130 * This function cannot be __init, since exceptions don't work in that
1131 * section. Put this after the callers, so that it cannot be inlined.
1132 */
Ingo Molnar8550eb92008-01-30 13:34:10 +01001133static noinline int do_test_wp_bit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134{
1135 char tmp_reg;
1136 int flag;
1137
1138 __asm__ __volatile__(
Ingo Molnar8550eb92008-01-30 13:34:10 +01001139 " movb %0, %1 \n"
1140 "1: movb %1, %0 \n"
1141 " xorl %2, %2 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 "2: \n"
H. Peter Anvinf832ff12008-02-04 16:47:58 +01001143 _ASM_EXTABLE(1b,2b)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 :"=m" (*(char *)fix_to_virt(FIX_WP_TEST)),
1145 "=q" (tmp_reg),
1146 "=r" (flag)
1147 :"2" (1)
1148 :"memory");
Ingo Molnar8550eb92008-01-30 13:34:10 +01001149
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 return flag;
1151}
1152
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001153#ifdef CONFIG_DEBUG_RODATA
Arjan van de Venedeed302008-01-30 13:34:08 +01001154const int rodata_test_data = 0xC3;
1155EXPORT_SYMBOL_GPL(rodata_test_data);
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001156
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001157void mark_rodata_ro(void)
1158{
Jan Beulich6fb14752007-05-02 19:27:10 +02001159 unsigned long start = PFN_ALIGN(_text);
1160 unsigned long size = PFN_ALIGN(_etext) - start;
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001161
Steven Rostedt8f0f9962008-05-12 21:20:56 +02001162#ifndef CONFIG_DYNAMIC_FTRACE
1163 /* Dynamic tracing modifies the kernel text section */
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -05001164 set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
1165 printk(KERN_INFO "Write protecting the kernel text: %luk\n",
1166 size >> 10);
Andi Kleen0c42f392008-01-30 13:33:42 +01001167
1168#ifdef CONFIG_CPA_DEBUG
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -05001169 printk(KERN_INFO "Testing CPA: Reverting %lx-%lx\n",
1170 start, start+size);
1171 set_pages_rw(virt_to_page(start), size>>PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +01001172
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -05001173 printk(KERN_INFO "Testing CPA: write protecting again\n");
1174 set_pages_ro(virt_to_page(start), size>>PAGE_SHIFT);
Linus Torvalds602033e2007-07-26 12:07:21 -07001175#endif
Steven Rostedt8f0f9962008-05-12 21:20:56 +02001176#endif /* CONFIG_DYNAMIC_FTRACE */
1177
Jan Beulich6fb14752007-05-02 19:27:10 +02001178 start += size;
1179 size = (unsigned long)__end_rodata - start;
Arjan van de Ven6d238cc2008-01-30 13:34:06 +01001180 set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
Ingo Molnard7d119d2008-01-30 13:34:10 +01001181 printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
1182 size >> 10);
Arjan van de Venedeed302008-01-30 13:34:08 +01001183 rodata_test();
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001184
Andi Kleen0c42f392008-01-30 13:33:42 +01001185#ifdef CONFIG_CPA_DEBUG
Ingo Molnard7d119d2008-01-30 13:34:10 +01001186 printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, start + size);
Arjan van de Ven6d238cc2008-01-30 13:34:06 +01001187 set_pages_rw(virt_to_page(start), size >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +01001188
Ingo Molnard7d119d2008-01-30 13:34:10 +01001189 printk(KERN_INFO "Testing CPA: write protecting again\n");
Arjan van de Ven6d238cc2008-01-30 13:34:06 +01001190 set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +01001191#endif
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001192}
1193#endif
1194
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001195void free_init_pages(char *what, unsigned long begin, unsigned long end)
1196{
Ingo Molnaree01f112008-01-30 13:34:09 +01001197#ifdef CONFIG_DEBUG_PAGEALLOC
1198 /*
1199 * If debugging page accesses then do not free this memory but
1200 * mark them not present - any buggy init-section access will
1201 * create a kernel page fault:
1202 */
1203 printk(KERN_INFO "debug: unmapping init memory %08lx..%08lx\n",
1204 begin, PAGE_ALIGN(end));
1205 set_memory_np(begin, (end - begin) >> PAGE_SHIFT);
1206#else
Ingo Molnar86f03982008-01-30 13:34:09 +01001207 unsigned long addr;
1208
Arjan van de Ven3c1df682008-01-30 13:34:07 +01001209 /*
1210 * We just marked the kernel text read only above, now that
1211 * we are going to free part of that, we need to make that
1212 * writeable first.
1213 */
1214 set_memory_rw(begin, (end - begin) >> PAGE_SHIFT);
1215
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001216 for (addr = begin; addr < end; addr += PAGE_SIZE) {
Linus Torvaldse3ebadd2007-05-07 08:44:24 -07001217 ClearPageReserved(virt_to_page(addr));
1218 init_page_count(virt_to_page(addr));
1219 memset((void *)addr, POISON_FREE_INITMEM, PAGE_SIZE);
1220 free_page(addr);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001221 totalram_pages++;
1222 }
Jan Beulich6fb14752007-05-02 19:27:10 +02001223 printk(KERN_INFO "Freeing %s: %luk freed\n", what, (end - begin) >> 10);
Ingo Molnaree01f112008-01-30 13:34:09 +01001224#endif
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001225}
1226
1227void free_initmem(void)
1228{
1229 free_init_pages("unused kernel memory",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -07001230 (unsigned long)(&__init_begin),
1231 (unsigned long)(&__init_end));
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001232}
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001233
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234#ifdef CONFIG_BLK_DEV_INITRD
1235void free_initrd_mem(unsigned long start, unsigned long end)
1236{
Linus Torvaldse3ebadd2007-05-07 08:44:24 -07001237 free_init_pages("initrd memory", start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238}
1239#endif
Yinghai Lud2dbf342008-06-13 02:00:56 -07001240
1241int __init reserve_bootmem_generic(unsigned long phys, unsigned long len,
1242 int flags)
1243{
1244 return reserve_bootmem(phys, len, flags);
1245}