blob: 3eb2ed188a4cbb85cb0b1adceeceb85541a9d177 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
3 * Copyright (C) 1995 Linus Torvalds
4 *
5 * Support of BIGMEM added by Gerhard Wichert, Siemens AG, July 1999
6 */
7
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/module.h>
9#include <linux/signal.h>
10#include <linux/sched.h>
11#include <linux/kernel.h>
12#include <linux/errno.h>
13#include <linux/string.h>
14#include <linux/types.h>
15#include <linux/ptrace.h>
16#include <linux/mman.h>
17#include <linux/mm.h>
18#include <linux/hugetlb.h>
19#include <linux/swap.h>
20#include <linux/smp.h>
21#include <linux/init.h>
22#include <linux/highmem.h>
23#include <linux/pagemap.h>
Jeremy Fitzhardingecfb80c92008-12-16 12:17:36 -080024#include <linux/pci.h>
Jan Beulich6fb14752007-05-02 19:27:10 +020025#include <linux/pfn.h>
Randy Dunlapc9cf5522006-06-27 02:53:52 -070026#include <linux/poison.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/bootmem.h>
28#include <linux/slab.h>
29#include <linux/proc_fs.h>
Dave Hansen05039b92005-10-29 18:16:57 -070030#include <linux/memory_hotplug.h>
Adrian Bunk27d99f72005-11-13 16:06:51 -080031#include <linux/initrd.h>
Shaohua Li55b23552006-06-23 02:04:49 -070032#include <linux/cpumask.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
H. Peter Anvinf832ff12008-02-04 16:47:58 +010034#include <asm/asm.h>
Ingo Molnar46eaa672008-10-12 15:06:29 +020035#include <asm/bios_ebda.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <asm/processor.h>
37#include <asm/system.h>
38#include <asm/uaccess.h>
39#include <asm/pgtable.h>
40#include <asm/dma.h>
41#include <asm/fixmap.h>
42#include <asm/e820.h>
43#include <asm/apic.h>
Ingo Molnar8550eb92008-01-30 13:34:10 +010044#include <asm/bugs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <asm/tlb.h>
46#include <asm/tlbflush.h>
Jeremy Fitzhardingea5a19c62008-01-30 13:33:39 +010047#include <asm/pgalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <asm/sections.h>
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +020049#include <asm/paravirt.h>
Ian Campbell551889a2008-02-09 23:24:09 +010050#include <asm/setup.h>
Harvey Harrison7bfeab92008-02-12 12:12:01 -080051#include <asm/cacheflush.h>
Jaswinder Singha80495e2008-07-23 17:33:57 +053052#include <asm/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54unsigned int __VMALLOC_RESERVE = 128 << 20;
55
Yinghai Luf361a452008-07-10 20:38:26 -070056unsigned long max_low_pfn_mapped;
Thomas Gleixner67794292008-03-21 21:27:10 +010057unsigned long max_pfn_mapped;
Andi Kleen7d1116a2008-03-12 03:53:27 +010058
Linus Torvalds1da177e2005-04-16 15:20:36 -070059DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
60unsigned long highstart_pfn, highend_pfn;
61
Ingo Molnar8550eb92008-01-30 13:34:10 +010062static noinline int do_test_wp_bit(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Yinghai Lu4e296842008-06-24 12:18:14 -070064
65static unsigned long __initdata table_start;
66static unsigned long __meminitdata table_end;
67static unsigned long __meminitdata table_top;
68
69static int __initdata after_init_bootmem;
70
Jan Beulichd6be89a2008-12-16 11:42:45 +000071static __init void *alloc_low_page(void)
Yinghai Lu4e296842008-06-24 12:18:14 -070072{
73 unsigned long pfn = table_end++;
74 void *adr;
75
76 if (pfn >= table_top)
77 panic("alloc_low_page: ran out of memory");
78
79 adr = __va(pfn * PAGE_SIZE);
80 memset(adr, 0, PAGE_SIZE);
Yinghai Lu4e296842008-06-24 12:18:14 -070081 return adr;
82}
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084/*
85 * Creates a middle page table and puts a pointer to it in the
86 * given global directory entry. This only returns the gd entry
87 * in non-PAE compilation mode, since the middle layer is folded.
88 */
89static pmd_t * __init one_md_table_init(pgd_t *pgd)
90{
91 pud_t *pud;
92 pmd_t *pmd_table;
Ingo Molnar8550eb92008-01-30 13:34:10 +010093
Linus Torvalds1da177e2005-04-16 15:20:36 -070094#ifdef CONFIG_X86_PAE
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +020095 if (!(pgd_val(*pgd) & _PAGE_PRESENT)) {
Yinghai Lu4e296842008-06-24 12:18:14 -070096 if (after_init_bootmem)
97 pmd_table = (pmd_t *)alloc_bootmem_low_pages(PAGE_SIZE);
98 else
Jan Beulichd6be89a2008-12-16 11:42:45 +000099 pmd_table = (pmd_t *)alloc_low_page();
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700100 paravirt_alloc_pmd(&init_mm, __pa(pmd_table) >> PAGE_SHIFT);
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200101 set_pgd(pgd, __pgd(__pa(pmd_table) | _PAGE_PRESENT));
102 pud = pud_offset(pgd, 0);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100103 BUG_ON(pmd_table != pmd_offset(pud, 0));
Zhaoleia376f302008-10-31 17:43:04 +0800104
105 return pmd_table;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200106 }
107#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 pud = pud_offset(pgd, 0);
109 pmd_table = pmd_offset(pud, 0);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 return pmd_table;
112}
113
114/*
115 * Create a page table and place a pointer to it in a middle page
Ingo Molnar8550eb92008-01-30 13:34:10 +0100116 * directory entry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 */
118static pte_t * __init one_page_table_init(pmd_t *pmd)
119{
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200120 if (!(pmd_val(*pmd) & _PAGE_PRESENT)) {
Ingo Molnar509a80c2007-10-17 18:04:34 +0200121 pte_t *page_table = NULL;
122
Yinghai Lu4e296842008-06-24 12:18:14 -0700123 if (after_init_bootmem) {
Ingo Molnar509a80c2007-10-17 18:04:34 +0200124#ifdef CONFIG_DEBUG_PAGEALLOC
Yinghai Lu4e296842008-06-24 12:18:14 -0700125 page_table = (pte_t *) alloc_bootmem_pages(PAGE_SIZE);
Ingo Molnar509a80c2007-10-17 18:04:34 +0200126#endif
Yinghai Lu4e296842008-06-24 12:18:14 -0700127 if (!page_table)
128 page_table =
Ingo Molnar509a80c2007-10-17 18:04:34 +0200129 (pte_t *)alloc_bootmem_low_pages(PAGE_SIZE);
Jan Beulichd6be89a2008-12-16 11:42:45 +0000130 } else
131 page_table = (pte_t *)alloc_low_page();
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200132
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700133 paravirt_alloc_pte(&init_mm, __pa(page_table) >> PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 set_pmd(pmd, __pmd(__pa(page_table) | _PAGE_TABLE));
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200135 BUG_ON(page_table != pte_offset_kernel(pmd, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 }
Ingo Molnar509a80c2007-10-17 18:04:34 +0200137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 return pte_offset_kernel(pmd, 0);
139}
140
Jan Beulicha3c60182009-01-16 11:59:33 +0000141static pte_t *__init page_table_kmap_check(pte_t *pte, pmd_t *pmd,
142 unsigned long vaddr, pte_t *lastpte)
143{
144#ifdef CONFIG_HIGHMEM
145 /*
146 * Something (early fixmap) may already have put a pte
147 * page here, which causes the page table allocation
148 * to become nonlinear. Attempt to fix it, and if it
149 * is still nonlinear then we have to bug.
150 */
151 int pmd_idx_kmap_begin = fix_to_virt(FIX_KMAP_END) >> PMD_SHIFT;
152 int pmd_idx_kmap_end = fix_to_virt(FIX_KMAP_BEGIN) >> PMD_SHIFT;
153
154 if (pmd_idx_kmap_begin != pmd_idx_kmap_end
155 && (vaddr >> PMD_SHIFT) >= pmd_idx_kmap_begin
156 && (vaddr >> PMD_SHIFT) <= pmd_idx_kmap_end
157 && ((__pa(pte) >> PAGE_SHIFT) < table_start
158 || (__pa(pte) >> PAGE_SHIFT) >= table_end)) {
159 pte_t *newpte;
160 int i;
161
162 BUG_ON(after_init_bootmem);
163 newpte = alloc_low_page();
164 for (i = 0; i < PTRS_PER_PTE; i++)
165 set_pte(newpte + i, pte[i]);
166
167 paravirt_alloc_pte(&init_mm, __pa(newpte) >> PAGE_SHIFT);
168 set_pmd(pmd, __pmd(__pa(newpte)|_PAGE_TABLE));
169 BUG_ON(newpte != pte_offset_kernel(pmd, 0));
170 __flush_tlb_all();
171
172 paravirt_release_pte(__pa(pte) >> PAGE_SHIFT);
173 pte = newpte;
174 }
175 BUG_ON(vaddr < fix_to_virt(FIX_KMAP_BEGIN - 1)
176 && vaddr > fix_to_virt(FIX_KMAP_END)
177 && lastpte && lastpte + PTRS_PER_PTE != pte);
178#endif
179 return pte;
180}
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182/*
Ingo Molnar8550eb92008-01-30 13:34:10 +0100183 * This function initializes a certain range of kernel virtual memory
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 * with new bootmem page tables, everywhere page tables are missing in
185 * the given range.
Ingo Molnar8550eb92008-01-30 13:34:10 +0100186 *
187 * NOTE: The pagetables are allocated contiguous on the physical space
188 * so we can cache the place of the first one and move around without
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 * checking the pgd every time.
190 */
Ingo Molnar8550eb92008-01-30 13:34:10 +0100191static void __init
192page_table_range_init(unsigned long start, unsigned long end, pgd_t *pgd_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 int pgd_idx, pmd_idx;
195 unsigned long vaddr;
Ingo Molnar8550eb92008-01-30 13:34:10 +0100196 pgd_t *pgd;
197 pmd_t *pmd;
Jan Beulicha3c60182009-01-16 11:59:33 +0000198 pte_t *pte = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 vaddr = start;
201 pgd_idx = pgd_index(vaddr);
202 pmd_idx = pmd_index(vaddr);
203 pgd = pgd_base + pgd_idx;
204
205 for ( ; (pgd_idx < PTRS_PER_PGD) && (vaddr != end); pgd++, pgd_idx++) {
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200206 pmd = one_md_table_init(pgd);
207 pmd = pmd + pmd_index(vaddr);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100208 for (; (pmd_idx < PTRS_PER_PMD) && (vaddr != end);
209 pmd++, pmd_idx++) {
Jan Beulicha3c60182009-01-16 11:59:33 +0000210 pte = page_table_kmap_check(one_page_table_init(pmd),
211 pmd, vaddr, pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213 vaddr += PMD_SIZE;
214 }
215 pmd_idx = 0;
216 }
217}
218
219static inline int is_kernel_text(unsigned long addr)
220{
221 if (addr >= PAGE_OFFSET && addr <= (unsigned long)__init_end)
222 return 1;
223 return 0;
224}
225
226/*
Ingo Molnar8550eb92008-01-30 13:34:10 +0100227 * This maps the physical memory to kernel virtual address space, a total
228 * of max_low_pfn pages, by creating page tables starting from address
229 * PAGE_OFFSET:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 */
Yinghai Lu4e296842008-06-24 12:18:14 -0700231static void __init kernel_physical_mapping_init(pgd_t *pgd_base,
Yinghai Lua04ad822008-06-29 00:39:06 -0700232 unsigned long start_pfn,
233 unsigned long end_pfn,
234 int use_pse)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
Ingo Molnar8550eb92008-01-30 13:34:10 +0100236 int pgd_idx, pmd_idx, pte_ofs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 unsigned long pfn;
238 pgd_t *pgd;
239 pmd_t *pmd;
240 pte_t *pte;
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700241 unsigned pages_2m, pages_4k;
242 int mapping_iter;
243
244 /*
245 * First iteration will setup identity mapping using large/small pages
246 * based on use_pse, with other attributes same as set by
247 * the early code in head_32.S
248 *
249 * Second iteration will setup the appropriate attributes (NX, GLOBAL..)
250 * as desired for the kernel identity mapping.
251 *
252 * This two pass mechanism conforms to the TLB app note which says:
253 *
254 * "Software should not write to a paging-structure entry in a way
255 * that would change, for any linear address, both the page size
256 * and either the page frame or attributes."
257 */
258 mapping_iter = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Yinghai Lua04ad822008-06-29 00:39:06 -0700260 if (!cpu_has_pse)
261 use_pse = 0;
262
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700263repeat:
264 pages_2m = pages_4k = 0;
Yinghai Lua04ad822008-06-29 00:39:06 -0700265 pfn = start_pfn;
266 pgd_idx = pgd_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 pgd = pgd_base + pgd_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 for (; pgd_idx < PTRS_PER_PGD; pgd++, pgd_idx++) {
269 pmd = one_md_table_init(pgd);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100270
Yinghai Lua04ad822008-06-29 00:39:06 -0700271 if (pfn >= end_pfn)
272 continue;
273#ifdef CONFIG_X86_PAE
274 pmd_idx = pmd_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
275 pmd += pmd_idx;
276#else
277 pmd_idx = 0;
278#endif
279 for (; pmd_idx < PTRS_PER_PMD && pfn < end_pfn;
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100280 pmd++, pmd_idx++) {
Ingo Molnar8550eb92008-01-30 13:34:10 +0100281 unsigned int addr = pfn * PAGE_SIZE + PAGE_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Ingo Molnar8550eb92008-01-30 13:34:10 +0100283 /*
284 * Map with big pages if possible, otherwise
285 * create normal page tables:
286 */
Yinghai Lua04ad822008-06-29 00:39:06 -0700287 if (use_pse) {
Ingo Molnar8550eb92008-01-30 13:34:10 +0100288 unsigned int addr2;
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100289 pgprot_t prot = PAGE_KERNEL_LARGE;
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700290 /*
291 * first pass will use the same initial
292 * identity mapping attribute + _PAGE_PSE.
293 */
294 pgprot_t init_prot =
295 __pgprot(PTE_IDENT_ATTR |
296 _PAGE_PSE);
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100297
Ingo Molnar8550eb92008-01-30 13:34:10 +0100298 addr2 = (pfn + PTRS_PER_PTE-1) * PAGE_SIZE +
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100299 PAGE_OFFSET + PAGE_SIZE-1;
300
Ingo Molnar8550eb92008-01-30 13:34:10 +0100301 if (is_kernel_text(addr) ||
302 is_kernel_text(addr2))
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100303 prot = PAGE_KERNEL_LARGE_EXEC;
304
Andi Kleence0c0e52008-05-02 11:46:49 +0200305 pages_2m++;
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700306 if (mapping_iter == 1)
307 set_pmd(pmd, pfn_pmd(pfn, init_prot));
308 else
309 set_pmd(pmd, pfn_pmd(pfn, prot));
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 pfn += PTRS_PER_PTE;
Ingo Molnar8550eb92008-01-30 13:34:10 +0100312 continue;
313 }
314 pte = one_page_table_init(pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Yinghai Lua04ad822008-06-29 00:39:06 -0700316 pte_ofs = pte_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
317 pte += pte_ofs;
318 for (; pte_ofs < PTRS_PER_PTE && pfn < end_pfn;
Ingo Molnar8550eb92008-01-30 13:34:10 +0100319 pte++, pfn++, pte_ofs++, addr += PAGE_SIZE) {
320 pgprot_t prot = PAGE_KERNEL;
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700321 /*
322 * first pass will use the same initial
323 * identity mapping attribute.
324 */
325 pgprot_t init_prot = __pgprot(PTE_IDENT_ATTR);
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100326
Ingo Molnar8550eb92008-01-30 13:34:10 +0100327 if (is_kernel_text(addr))
328 prot = PAGE_KERNEL_EXEC;
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100329
Andi Kleence0c0e52008-05-02 11:46:49 +0200330 pages_4k++;
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700331 if (mapping_iter == 1)
332 set_pte(pte, pfn_pte(pfn, init_prot));
333 else
334 set_pte(pte, pfn_pte(pfn, prot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 }
336 }
337 }
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700338 if (mapping_iter == 1) {
339 /*
340 * update direct mapping page count only in the first
341 * iteration.
342 */
343 update_page_count(PG_LEVEL_2M, pages_2m);
344 update_page_count(PG_LEVEL_4K, pages_4k);
345
346 /*
347 * local global flush tlb, which will flush the previous
348 * mappings present in both small and large page TLB's.
349 */
350 __flush_tlb_all();
351
352 /*
353 * Second iteration will set the actual desired PTE attributes.
354 */
355 mapping_iter = 2;
356 goto repeat;
357 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358}
359
Arjan van de Venae531c22008-04-24 23:40:47 +0200360/*
361 * devmem_is_allowed() checks to see if /dev/mem access to a certain address
362 * is valid. The argument is a physical page number.
363 *
364 *
365 * On x86, access has to be given to the first megabyte of ram because that area
366 * contains bios code and data regions used by X and dosemu and similar apps.
367 * Access has to be given to non-kernel-ram areas as well, these contain the PCI
368 * mmio resources as well as potential bios/acpi data regions.
369 */
370int devmem_is_allowed(unsigned long pagenr)
371{
372 if (pagenr <= 256)
373 return 1;
Arjan van de Vene8de1482008-10-22 19:55:31 -0700374 if (iomem_is_exclusive(pagenr << PAGE_SHIFT))
375 return 0;
Arjan van de Venae531c22008-04-24 23:40:47 +0200376 if (!page_is_ram(pagenr))
377 return 1;
378 return 0;
379}
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381pte_t *kmap_pte;
382pgprot_t kmap_prot;
383
Ingo Molnar8550eb92008-01-30 13:34:10 +0100384static inline pte_t *kmap_get_fixmap_pte(unsigned long vaddr)
385{
386 return pte_offset_kernel(pmd_offset(pud_offset(pgd_offset_k(vaddr),
387 vaddr), vaddr), vaddr);
388}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
390static void __init kmap_init(void)
391{
392 unsigned long kmap_vstart;
393
Ingo Molnar8550eb92008-01-30 13:34:10 +0100394 /*
395 * Cache the first kmap pte:
396 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 kmap_vstart = __fix_to_virt(FIX_KMAP_BEGIN);
398 kmap_pte = kmap_get_fixmap_pte(kmap_vstart);
399
400 kmap_prot = PAGE_KERNEL;
401}
402
Keith Packardfd940932008-10-30 19:37:09 -0700403#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404static void __init permanent_kmaps_init(pgd_t *pgd_base)
405{
Ingo Molnar8550eb92008-01-30 13:34:10 +0100406 unsigned long vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 pgd_t *pgd;
408 pud_t *pud;
409 pmd_t *pmd;
410 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
412 vaddr = PKMAP_BASE;
413 page_table_range_init(vaddr, vaddr + PAGE_SIZE*LAST_PKMAP, pgd_base);
414
415 pgd = swapper_pg_dir + pgd_index(vaddr);
416 pud = pud_offset(pgd, vaddr);
417 pmd = pmd_offset(pud, vaddr);
418 pte = pte_offset_kernel(pmd, vaddr);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100419 pkmap_page_table = pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420}
421
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700422static void __init add_one_highpage_init(struct page *page, int pfn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700424 ClearPageReserved(page);
425 init_page_count(page);
426 __free_page(page);
427 totalhigh_pages++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428}
429
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700430struct add_highpages_data {
431 unsigned long start_pfn;
432 unsigned long end_pfn;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700433};
434
Yinghai Lud52d53b2008-06-16 20:10:55 -0700435static int __init add_highpages_work_fn(unsigned long start_pfn,
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700436 unsigned long end_pfn, void *datax)
437{
438 int node_pfn;
439 struct page *page;
440 unsigned long final_start_pfn, final_end_pfn;
441 struct add_highpages_data *data;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700442
443 data = (struct add_highpages_data *)datax;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700444
445 final_start_pfn = max(start_pfn, data->start_pfn);
446 final_end_pfn = min(end_pfn, data->end_pfn);
447 if (final_start_pfn >= final_end_pfn)
Yinghai Lud52d53b2008-06-16 20:10:55 -0700448 return 0;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700449
450 for (node_pfn = final_start_pfn; node_pfn < final_end_pfn;
451 node_pfn++) {
452 if (!pfn_valid(node_pfn))
453 continue;
454 page = pfn_to_page(node_pfn);
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700455 add_one_highpage_init(page, node_pfn);
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700456 }
457
Yinghai Lud52d53b2008-06-16 20:10:55 -0700458 return 0;
459
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700460}
461
462void __init add_highpages_with_active_regions(int nid, unsigned long start_pfn,
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700463 unsigned long end_pfn)
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700464{
465 struct add_highpages_data data;
466
467 data.start_pfn = start_pfn;
468 data.end_pfn = end_pfn;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700469
470 work_with_active_regions(nid, add_highpages_work_fn, &data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471}
472
Ingo Molnar8550eb92008-01-30 13:34:10 +0100473#ifndef CONFIG_NUMA
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700474static void __init set_highmem_pages_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700476 add_highpages_with_active_regions(0, highstart_pfn, highend_pfn);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 totalram_pages += totalhigh_pages;
479}
Ingo Molnar8550eb92008-01-30 13:34:10 +0100480#endif /* !CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
482#else
Ingo Brueckle8e32322009-01-02 14:42:00 +0100483static inline void permanent_kmaps_init(pgd_t *pgd_base)
484{
485}
486static inline void set_highmem_pages_init(void)
487{
488}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489#endif /* CONFIG_HIGHMEM */
490
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200491void __init native_pagetable_setup_start(pgd_t *base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
Ian Campbell551889a2008-02-09 23:24:09 +0100493 unsigned long pfn, va;
494 pgd_t *pgd;
495 pud_t *pud;
496 pmd_t *pmd;
497 pte_t *pte;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200498
499 /*
Ian Campbell551889a2008-02-09 23:24:09 +0100500 * Remove any mappings which extend past the end of physical
501 * memory from the boot time page table:
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200502 */
Ian Campbell551889a2008-02-09 23:24:09 +0100503 for (pfn = max_low_pfn + 1; pfn < 1<<(32-PAGE_SHIFT); pfn++) {
504 va = PAGE_OFFSET + (pfn<<PAGE_SHIFT);
505 pgd = base + pgd_index(va);
506 if (!pgd_present(*pgd))
507 break;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200508
Ian Campbell551889a2008-02-09 23:24:09 +0100509 pud = pud_offset(pgd, va);
510 pmd = pmd_offset(pud, va);
511 if (!pmd_present(*pmd))
512 break;
513
514 pte = pte_offset_kernel(pmd, va);
515 if (!pte_present(*pte))
516 break;
517
518 pte_clear(NULL, va, pte);
519 }
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700520 paravirt_alloc_pmd(&init_mm, __pa(base) >> PAGE_SHIFT);
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200521}
522
523void __init native_pagetable_setup_done(pgd_t *base)
524{
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200525}
526
527/*
528 * Build a proper pagetable for the kernel mappings. Up until this
529 * point, we've been running on some set of pagetables constructed by
530 * the boot process.
531 *
532 * If we're booting on native hardware, this will be a pagetable
Ian Campbell551889a2008-02-09 23:24:09 +0100533 * constructed in arch/x86/kernel/head_32.S. The root of the
534 * pagetable will be swapper_pg_dir.
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200535 *
536 * If we're booting paravirtualized under a hypervisor, then there are
537 * more options: we may already be running PAE, and the pagetable may
538 * or may not be based in swapper_pg_dir. In any case,
539 * paravirt_pagetable_setup_start() will set up swapper_pg_dir
540 * appropriately for the rest of the initialization to work.
541 *
542 * In general, pagetable_init() assumes that the pagetable may already
543 * be partially populated, and so it avoids stomping on any existing
544 * mappings.
545 */
Yinghai Lue7b37892008-06-25 21:51:28 -0700546static void __init early_ioremap_page_table_range_init(pgd_t *pgd_base)
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200547{
Ingo Molnar8550eb92008-01-30 13:34:10 +0100548 unsigned long vaddr, end;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200549
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 /*
551 * Fixed mappings, only the page table structure has to be
552 * created - mappings will be set by set_fixmap():
553 */
554 vaddr = __fix_to_virt(__end_of_fixed_addresses - 1) & PMD_MASK;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200555 end = (FIXADDR_TOP + PMD_SIZE - 1) & PMD_MASK;
556 page_table_range_init(vaddr, end, pgd_base);
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100557 early_ioremap_reset();
Yinghai Lue7b37892008-06-25 21:51:28 -0700558}
559
560static void __init pagetable_init(void)
561{
562 pgd_t *pgd_base = swapper_pg_dir;
563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 permanent_kmaps_init(pgd_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565}
566
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100567#ifdef CONFIG_ACPI_SLEEP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568/*
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100569 * ACPI suspend needs this for resume, because things like the intel-agp
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 * driver might have split up a kernel 4MB mapping.
571 */
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100572char swsusp_pg_dir[PAGE_SIZE]
Ingo Molnar8550eb92008-01-30 13:34:10 +0100573 __attribute__ ((aligned(PAGE_SIZE)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
575static inline void save_pg_dir(void)
576{
577 memcpy(swsusp_pg_dir, swapper_pg_dir, PAGE_SIZE);
578}
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100579#else /* !CONFIG_ACPI_SLEEP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580static inline void save_pg_dir(void)
581{
582}
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100583#endif /* !CONFIG_ACPI_SLEEP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Ingo Molnar8550eb92008-01-30 13:34:10 +0100585void zap_low_mappings(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586{
587 int i;
588
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 /*
590 * Zap initial low-memory mappings.
591 *
592 * Note that "pgd_clear()" doesn't do it for
593 * us, because pgd_clear() is a no-op on i386.
594 */
Jeremy Fitzhardinge68db0652008-03-17 16:37:13 -0700595 for (i = 0; i < KERNEL_PGD_BOUNDARY; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596#ifdef CONFIG_X86_PAE
597 set_pgd(swapper_pg_dir+i, __pgd(1 + __pa(empty_zero_page)));
598#else
599 set_pgd(swapper_pg_dir+i, __pgd(0));
600#endif
Ingo Molnar8550eb92008-01-30 13:34:10 +0100601 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 flush_tlb_all();
603}
604
Ingo Molnar8550eb92008-01-30 13:34:10 +0100605int nx_enabled;
Jan Beulichd5321ab2007-07-21 17:10:26 +0200606
Jeremy Fitzhardingebe43d722008-09-07 15:21:13 -0700607pteval_t __supported_pte_mask __read_mostly = ~(_PAGE_NX | _PAGE_GLOBAL | _PAGE_IOMAP);
Jeremy Fitzhardinge6fdc05d2008-01-30 13:32:57 +0100608EXPORT_SYMBOL_GPL(__supported_pte_mask);
609
Jan Beulichd5321ab2007-07-21 17:10:26 +0200610#ifdef CONFIG_X86_PAE
611
Ingo Molnar8550eb92008-01-30 13:34:10 +0100612static int disable_nx __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
614/*
615 * noexec = on|off
616 *
617 * Control non executable mappings.
618 *
619 * on Enable
620 * off Disable
621 */
Rusty Russell1a3f2392006-09-26 10:52:32 +0200622static int __init noexec_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623{
Rusty Russell1a3f2392006-09-26 10:52:32 +0200624 if (!str || !strcmp(str, "on")) {
625 if (cpu_has_nx) {
626 __supported_pte_mask |= _PAGE_NX;
627 disable_nx = 0;
628 }
Ingo Molnar8550eb92008-01-30 13:34:10 +0100629 } else {
630 if (!strcmp(str, "off")) {
631 disable_nx = 1;
632 __supported_pte_mask &= ~_PAGE_NX;
633 } else {
634 return -EINVAL;
635 }
636 }
Rusty Russell1a3f2392006-09-26 10:52:32 +0200637
638 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639}
Rusty Russell1a3f2392006-09-26 10:52:32 +0200640early_param("noexec", noexec_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642static void __init set_nx(void)
643{
644 unsigned int v[4], l, h;
645
646 if (cpu_has_pae && (cpuid_eax(0x80000000) > 0x80000001)) {
647 cpuid(0x80000001, &v[0], &v[1], &v[2], &v[3]);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 if ((v[3] & (1 << 20)) && !disable_nx) {
650 rdmsr(MSR_EFER, l, h);
651 l |= EFER_NX;
652 wrmsr(MSR_EFER, l, h);
653 nx_enabled = 1;
654 __supported_pte_mask |= _PAGE_NX;
655 }
656 }
657}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658#endif
659
Yinghai Lu90d967e2008-06-23 21:00:45 +0200660/* user-defined highmem size */
661static unsigned int highmem_pages = -1;
662
663/*
664 * highmem=size forces highmem to be exactly 'size' bytes.
665 * This works even on boxes that have no highmem otherwise.
666 * This also works to reduce highmem size on bigger boxes.
667 */
668static int __init parse_highmem(char *arg)
669{
670 if (!arg)
671 return -EINVAL;
672
673 highmem_pages = memparse(arg, &arg) >> PAGE_SHIFT;
674 return 0;
675}
676early_param("highmem", parse_highmem);
677
678/*
679 * Determine low and high memory ranges:
680 */
Yinghai Lu2ec65f82008-06-23 03:05:30 -0700681void __init find_low_pfn_range(void)
Yinghai Lu90d967e2008-06-23 21:00:45 +0200682{
Yinghai Lu2ec65f82008-06-23 03:05:30 -0700683 /* it could update max_pfn */
684
Yinghai Lu346cafe2008-06-23 03:06:14 -0700685 /* max_low_pfn is 0, we already have early_res support */
Yinghai Lu90d967e2008-06-23 21:00:45 +0200686
687 max_low_pfn = max_pfn;
688 if (max_low_pfn > MAXMEM_PFN) {
689 if (highmem_pages == -1)
690 highmem_pages = max_pfn - MAXMEM_PFN;
691 if (highmem_pages + MAXMEM_PFN < max_pfn)
692 max_pfn = MAXMEM_PFN + highmem_pages;
693 if (highmem_pages + MAXMEM_PFN > max_pfn) {
694 printk(KERN_WARNING "only %luMB highmem pages "
695 "available, ignoring highmem size of %uMB.\n",
696 pages_to_mb(max_pfn - MAXMEM_PFN),
697 pages_to_mb(highmem_pages));
698 highmem_pages = 0;
699 }
700 max_low_pfn = MAXMEM_PFN;
701#ifndef CONFIG_HIGHMEM
702 /* Maximum memory usable is what is directly addressable */
703 printk(KERN_WARNING "Warning only %ldMB will be used.\n",
704 MAXMEM>>20);
705 if (max_pfn > MAX_NONPAE_PFN)
706 printk(KERN_WARNING
707 "Use a HIGHMEM64G enabled kernel.\n");
708 else
709 printk(KERN_WARNING "Use a HIGHMEM enabled kernel.\n");
710 max_pfn = MAXMEM_PFN;
711#else /* !CONFIG_HIGHMEM */
712#ifndef CONFIG_HIGHMEM64G
713 if (max_pfn > MAX_NONPAE_PFN) {
714 max_pfn = MAX_NONPAE_PFN;
715 printk(KERN_WARNING "Warning only 4GB will be used."
716 "Use a HIGHMEM64G enabled kernel.\n");
717 }
718#endif /* !CONFIG_HIGHMEM64G */
719#endif /* !CONFIG_HIGHMEM */
720 } else {
721 if (highmem_pages == -1)
722 highmem_pages = 0;
723#ifdef CONFIG_HIGHMEM
724 if (highmem_pages >= max_pfn) {
725 printk(KERN_ERR "highmem size specified (%uMB) is "
726 "bigger than pages available (%luMB)!.\n",
727 pages_to_mb(highmem_pages),
728 pages_to_mb(max_pfn));
729 highmem_pages = 0;
730 }
731 if (highmem_pages) {
732 if (max_low_pfn - highmem_pages <
733 64*1024*1024/PAGE_SIZE){
734 printk(KERN_ERR "highmem size %uMB results in "
735 "smaller than 64MB lowmem, ignoring it.\n"
736 , pages_to_mb(highmem_pages));
737 highmem_pages = 0;
738 }
739 max_low_pfn -= highmem_pages;
740 }
741#else
742 if (highmem_pages)
743 printk(KERN_ERR "ignoring highmem size on non-highmem"
744 " kernel!\n");
745#endif
746 }
Yinghai Lu90d967e2008-06-23 21:00:45 +0200747}
748
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700749#ifndef CONFIG_NEED_MULTIPLE_NODES
Yinghai Lu2ec65f82008-06-23 03:05:30 -0700750void __init initmem_init(unsigned long start_pfn,
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700751 unsigned long end_pfn)
752{
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700753#ifdef CONFIG_HIGHMEM
754 highstart_pfn = highend_pfn = max_pfn;
755 if (max_pfn > max_low_pfn)
756 highstart_pfn = max_low_pfn;
757 memory_present(0, 0, highend_pfn);
Yinghai Lucb95a132008-07-02 00:31:02 -0700758 e820_register_active_regions(0, 0, highend_pfn);
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700759 printk(KERN_NOTICE "%ldMB HIGHMEM available.\n",
760 pages_to_mb(highend_pfn - highstart_pfn));
761 num_physpages = highend_pfn;
762 high_memory = (void *) __va(highstart_pfn * PAGE_SIZE - 1) + 1;
763#else
764 memory_present(0, 0, max_low_pfn);
Yinghai Lucb95a132008-07-02 00:31:02 -0700765 e820_register_active_regions(0, 0, max_low_pfn);
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700766 num_physpages = max_low_pfn;
767 high_memory = (void *) __va(max_low_pfn * PAGE_SIZE - 1) + 1;
768#endif
769#ifdef CONFIG_FLATMEM
770 max_mapnr = num_physpages;
771#endif
772 printk(KERN_NOTICE "%ldMB LOWMEM available.\n",
773 pages_to_mb(max_low_pfn));
774
775 setup_bootmem_allocator();
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700776}
Yinghai Lucb95a132008-07-02 00:31:02 -0700777#endif /* !CONFIG_NEED_MULTIPLE_NODES */
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700778
Yinghai Lucb95a132008-07-02 00:31:02 -0700779static void __init zone_sizes_init(void)
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700780{
781 unsigned long max_zone_pfns[MAX_NR_ZONES];
782 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
783 max_zone_pfns[ZONE_DMA] =
784 virt_to_phys((char *)MAX_DMA_ADDRESS) >> PAGE_SHIFT;
785 max_zone_pfns[ZONE_NORMAL] = max_low_pfn;
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700786#ifdef CONFIG_HIGHMEM
787 max_zone_pfns[ZONE_HIGHMEM] = highend_pfn;
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700788#endif
789
790 free_area_init_nodes(max_zone_pfns);
791}
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700792
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700793void __init setup_bootmem_allocator(void)
794{
795 int i;
796 unsigned long bootmap_size, bootmap;
797 /*
798 * Initialize the boot-time allocator (with low memory only):
799 */
800 bootmap_size = bootmem_bootmap_pages(max_low_pfn)<<PAGE_SHIFT;
801 bootmap = find_e820_area(min_low_pfn<<PAGE_SHIFT,
802 max_pfn_mapped<<PAGE_SHIFT, bootmap_size,
803 PAGE_SIZE);
804 if (bootmap == -1L)
805 panic("Cannot find bootmem map of size %ld\n", bootmap_size);
806 reserve_early(bootmap, bootmap + bootmap_size, "BOOTMAP");
Yinghai Lu225c37d2008-06-22 02:46:58 -0700807
Yinghai Lu346cafe2008-06-23 03:06:14 -0700808 /* don't touch min_low_pfn */
809 bootmap_size = init_bootmem_node(NODE_DATA(0), bootmap >> PAGE_SHIFT,
810 min_low_pfn, max_low_pfn);
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700811 printk(KERN_INFO " mapped low ram: 0 - %08lx\n",
812 max_pfn_mapped<<PAGE_SHIFT);
813 printk(KERN_INFO " low ram: %08lx - %08lx\n",
814 min_low_pfn<<PAGE_SHIFT, max_low_pfn<<PAGE_SHIFT);
815 printk(KERN_INFO " bootmap %08lx - %08lx\n",
816 bootmap, bootmap + bootmap_size);
817 for_each_online_node(i)
818 free_bootmem_with_active_regions(i, max_low_pfn);
819 early_res_to_bootmem(0, max_low_pfn<<PAGE_SHIFT);
820
Yinghai Lu4e296842008-06-24 12:18:14 -0700821 after_init_bootmem = 1;
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700822}
823
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700824static void __init find_early_table_space(unsigned long end, int use_pse)
Yinghai Lu4e296842008-06-24 12:18:14 -0700825{
Yinghai Lu7482b0e2008-06-28 03:30:39 -0700826 unsigned long puds, pmds, ptes, tables, start;
Yinghai Lu4e296842008-06-24 12:18:14 -0700827
828 puds = (end + PUD_SIZE - 1) >> PUD_SHIFT;
829 tables = PAGE_ALIGN(puds * sizeof(pud_t));
830
831 pmds = (end + PMD_SIZE - 1) >> PMD_SHIFT;
832 tables += PAGE_ALIGN(pmds * sizeof(pmd_t));
833
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700834 if (use_pse) {
Yinghai Lu7482b0e2008-06-28 03:30:39 -0700835 unsigned long extra;
Yinghai Lua04ad822008-06-29 00:39:06 -0700836
837 extra = end - ((end>>PMD_SHIFT) << PMD_SHIFT);
838 extra += PMD_SIZE;
Yinghai Lu7482b0e2008-06-28 03:30:39 -0700839 ptes = (extra + PAGE_SIZE - 1) >> PAGE_SHIFT;
840 } else
841 ptes = (end + PAGE_SIZE - 1) >> PAGE_SHIFT;
842
843 tables += PAGE_ALIGN(ptes * sizeof(pte_t));
Jeremy Fitzhardinge8207c252008-06-24 17:32:48 -0400844
Yinghai Lua04ad822008-06-29 00:39:06 -0700845 /* for fixmap */
Jan Beulicha3c60182009-01-16 11:59:33 +0000846 tables += PAGE_ALIGN(__end_of_fixed_addresses * sizeof(pte_t));
Yinghai Lua04ad822008-06-29 00:39:06 -0700847
Yinghai Lu4e296842008-06-24 12:18:14 -0700848 /*
849 * RED-PEN putting page tables only on node 0 could
850 * cause a hotspot and fill up ZONE_DMA. The page tables
851 * need roughly 0.5KB per GB.
852 */
853 start = 0x7000;
854 table_start = find_e820_area(start, max_pfn_mapped<<PAGE_SHIFT,
855 tables, PAGE_SIZE);
856 if (table_start == -1UL)
857 panic("Cannot find space for the kernel page tables");
858
859 table_start >>= PAGE_SHIFT;
860 table_end = table_start;
861 table_top = table_start + (tables>>PAGE_SHIFT);
862
863 printk(KERN_DEBUG "kernel direct mapping tables up to %lx @ %lx-%lx\n",
864 end, table_start << PAGE_SHIFT,
865 (table_start << PAGE_SHIFT) + tables);
866}
867
868unsigned long __init_refok init_memory_mapping(unsigned long start,
869 unsigned long end)
870{
871 pgd_t *pgd_base = swapper_pg_dir;
Yinghai Lua04ad822008-06-29 00:39:06 -0700872 unsigned long start_pfn, end_pfn;
873 unsigned long big_page_start;
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700874#ifdef CONFIG_DEBUG_PAGEALLOC
875 /*
876 * For CONFIG_DEBUG_PAGEALLOC, identity mapping will use small pages.
877 * This will simplify cpa(), which otherwise needs to support splitting
878 * large pages into small in interrupt context, etc.
879 */
880 int use_pse = 0;
881#else
882 int use_pse = cpu_has_pse;
883#endif
Yinghai Lu4e296842008-06-24 12:18:14 -0700884
885 /*
886 * Find space for the kernel direct mapping tables.
887 */
888 if (!after_init_bootmem)
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700889 find_early_table_space(end, use_pse);
Yinghai Lu4e296842008-06-24 12:18:14 -0700890
891#ifdef CONFIG_X86_PAE
892 set_nx();
893 if (nx_enabled)
894 printk(KERN_INFO "NX (Execute Disable) protection: active\n");
895#endif
896
897 /* Enable PSE if available */
898 if (cpu_has_pse)
899 set_in_cr4(X86_CR4_PSE);
900
901 /* Enable PGE if available */
902 if (cpu_has_pge) {
903 set_in_cr4(X86_CR4_PGE);
Jeremy Fitzhardingeef5e94a2008-07-01 16:46:36 -0700904 __supported_pte_mask |= _PAGE_GLOBAL;
Yinghai Lu4e296842008-06-24 12:18:14 -0700905 }
906
Yinghai Lua04ad822008-06-29 00:39:06 -0700907 /*
908 * Don't use a large page for the first 2/4MB of memory
909 * because there are often fixed size MTRRs in there
910 * and overlapping MTRRs into large pages can cause
911 * slowdowns.
912 */
913 big_page_start = PMD_SIZE;
914
915 if (start < big_page_start) {
916 start_pfn = start >> PAGE_SHIFT;
917 end_pfn = min(big_page_start>>PAGE_SHIFT, end>>PAGE_SHIFT);
918 } else {
919 /* head is not big page alignment ? */
920 start_pfn = start >> PAGE_SHIFT;
921 end_pfn = ((start + (PMD_SIZE - 1))>>PMD_SHIFT)
922 << (PMD_SHIFT - PAGE_SHIFT);
923 }
924 if (start_pfn < end_pfn)
925 kernel_physical_mapping_init(pgd_base, start_pfn, end_pfn, 0);
926
927 /* big page range */
928 start_pfn = ((start + (PMD_SIZE - 1))>>PMD_SHIFT)
929 << (PMD_SHIFT - PAGE_SHIFT);
930 if (start_pfn < (big_page_start >> PAGE_SHIFT))
931 start_pfn = big_page_start >> PAGE_SHIFT;
932 end_pfn = (end>>PMD_SHIFT) << (PMD_SHIFT - PAGE_SHIFT);
933 if (start_pfn < end_pfn)
934 kernel_physical_mapping_init(pgd_base, start_pfn, end_pfn,
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700935 use_pse);
Yinghai Lua04ad822008-06-29 00:39:06 -0700936
937 /* tail is not big page alignment ? */
938 start_pfn = end_pfn;
939 if (start_pfn > (big_page_start>>PAGE_SHIFT)) {
940 end_pfn = end >> PAGE_SHIFT;
941 if (start_pfn < end_pfn)
942 kernel_physical_mapping_init(pgd_base, start_pfn,
943 end_pfn, 0);
944 }
Yinghai Lu4e296842008-06-24 12:18:14 -0700945
Yinghai Lue7b37892008-06-25 21:51:28 -0700946 early_ioremap_page_table_range_init(pgd_base);
947
Yinghai Lu4e296842008-06-24 12:18:14 -0700948 load_cr3(swapper_pg_dir);
949
950 __flush_tlb_all();
951
952 if (!after_init_bootmem)
953 reserve_early(table_start << PAGE_SHIFT,
954 table_end << PAGE_SHIFT, "PGTABLE");
955
Yinghai Lucaadbdc2008-07-15 00:03:44 -0700956 if (!after_init_bootmem)
957 early_memtest(start, end);
958
Yinghai Lu4e296842008-06-24 12:18:14 -0700959 return end >> PAGE_SHIFT;
960}
961
Yinghai Lue7b37892008-06-25 21:51:28 -0700962
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963/*
964 * paging_init() sets up the page tables - note that the first 8MB are
965 * already mapped by head.S.
966 *
967 * This routines also unmaps the page at virtual kernel address 0, so
968 * that we can trap those pesky NULL-reference errors in the kernel.
969 */
970void __init paging_init(void)
971{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 pagetable_init();
973
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 __flush_tlb_all();
975
976 kmap_init();
Yinghai Lu11cd0bc2008-06-23 19:51:10 -0700977
978 /*
979 * NOTE: at this point the bootmem allocator is fully available.
980 */
Yinghai Lu11cd0bc2008-06-23 19:51:10 -0700981 sparse_init();
982 zone_sizes_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983}
984
985/*
986 * Test if the WP bit works in supervisor mode. It isn't supported on 386's
Dmitri Vorobievf7f17a62008-04-21 00:47:55 +0400987 * and also on some strange 486's. All 586+'s are OK. This used to involve
988 * black magic jumps to work around some nasty CPU bugs, but fortunately the
989 * switch to using exceptions got rid of all that.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991static void __init test_wp_bit(void)
992{
Ingo Molnard7d119d2008-01-30 13:34:10 +0100993 printk(KERN_INFO
994 "Checking if this processor honours the WP bit even in supervisor mode...");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
996 /* Any page-aligned address will do, the test is non-destructive */
997 __set_fixmap(FIX_WP_TEST, __pa(&swapper_pg_dir), PAGE_READONLY);
998 boot_cpu_data.wp_works_ok = do_test_wp_bit();
999 clear_fixmap(FIX_WP_TEST);
1000
1001 if (!boot_cpu_data.wp_works_ok) {
Ingo Molnard7d119d2008-01-30 13:34:10 +01001002 printk(KERN_CONT "No.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003#ifdef CONFIG_X86_WP_WORKS_OK
Ingo Molnard7d119d2008-01-30 13:34:10 +01001004 panic(
1005 "This kernel doesn't support CPU's with broken WP. Recompile it for a 386!");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006#endif
1007 } else {
Ingo Molnard7d119d2008-01-30 13:34:10 +01001008 printk(KERN_CONT "Ok.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 }
1010}
1011
Ingo Molnar8550eb92008-01-30 13:34:10 +01001012static struct kcore_list kcore_mem, kcore_vmalloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
1014void __init mem_init(void)
1015{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 int codesize, reservedpages, datasize, initsize;
Yinghai Lucc9f7a02008-06-16 16:11:08 -07001017 int tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
Jeremy Fitzhardingecfb80c92008-12-16 12:17:36 -08001019 pci_iommu_alloc();
1020
Andy Whitcroft05b79bd2005-06-23 00:07:57 -07001021#ifdef CONFIG_FLATMEM
Eric Sesterhenn8d8f3cb2006-10-03 23:34:58 +02001022 BUG_ON(!mem_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 /* this will put all low memory onto the freelists */
1025 totalram_pages += free_all_bootmem();
1026
1027 reservedpages = 0;
1028 for (tmp = 0; tmp < max_low_pfn; tmp++)
1029 /*
Ingo Molnar8550eb92008-01-30 13:34:10 +01001030 * Only count reserved RAM pages:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 */
1032 if (page_is_ram(tmp) && PageReserved(pfn_to_page(tmp)))
1033 reservedpages++;
1034
Yinghai Lucc9f7a02008-06-16 16:11:08 -07001035 set_highmem_pages_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
1037 codesize = (unsigned long) &_etext - (unsigned long) &_text;
1038 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
1039 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
1040
Ingo Molnar8550eb92008-01-30 13:34:10 +01001041 kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
1042 kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 VMALLOC_END-VMALLOC_START);
1044
Ingo Molnar8550eb92008-01-30 13:34:10 +01001045 printk(KERN_INFO "Memory: %luk/%luk available (%dk kernel code, "
1046 "%dk reserved, %dk data, %dk init, %ldk highmem)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
1048 num_physpages << (PAGE_SHIFT-10),
1049 codesize >> 10,
1050 reservedpages << (PAGE_SHIFT-10),
1051 datasize >> 10,
1052 initsize >> 10,
1053 (unsigned long) (totalhigh_pages << (PAGE_SHIFT-10))
1054 );
1055
Ingo Molnard7d119d2008-01-30 13:34:10 +01001056 printk(KERN_INFO "virtual kernel memory layout:\n"
Ingo Molnar8550eb92008-01-30 13:34:10 +01001057 " fixmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001058#ifdef CONFIG_HIGHMEM
Ingo Molnar8550eb92008-01-30 13:34:10 +01001059 " pkmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001060#endif
Ingo Molnar8550eb92008-01-30 13:34:10 +01001061 " vmalloc : 0x%08lx - 0x%08lx (%4ld MB)\n"
1062 " lowmem : 0x%08lx - 0x%08lx (%4ld MB)\n"
1063 " .init : 0x%08lx - 0x%08lx (%4ld kB)\n"
1064 " .data : 0x%08lx - 0x%08lx (%4ld kB)\n"
1065 " .text : 0x%08lx - 0x%08lx (%4ld kB)\n",
1066 FIXADDR_START, FIXADDR_TOP,
1067 (FIXADDR_TOP - FIXADDR_START) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001068
1069#ifdef CONFIG_HIGHMEM
Ingo Molnar8550eb92008-01-30 13:34:10 +01001070 PKMAP_BASE, PKMAP_BASE+LAST_PKMAP*PAGE_SIZE,
1071 (LAST_PKMAP*PAGE_SIZE) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001072#endif
1073
Ingo Molnar8550eb92008-01-30 13:34:10 +01001074 VMALLOC_START, VMALLOC_END,
1075 (VMALLOC_END - VMALLOC_START) >> 20,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001076
Ingo Molnar8550eb92008-01-30 13:34:10 +01001077 (unsigned long)__va(0), (unsigned long)high_memory,
1078 ((unsigned long)high_memory - (unsigned long)__va(0)) >> 20,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001079
Ingo Molnar8550eb92008-01-30 13:34:10 +01001080 (unsigned long)&__init_begin, (unsigned long)&__init_end,
1081 ((unsigned long)&__init_end -
1082 (unsigned long)&__init_begin) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001083
Ingo Molnar8550eb92008-01-30 13:34:10 +01001084 (unsigned long)&_etext, (unsigned long)&_edata,
1085 ((unsigned long)&_edata - (unsigned long)&_etext) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001086
Ingo Molnar8550eb92008-01-30 13:34:10 +01001087 (unsigned long)&_text, (unsigned long)&_etext,
1088 ((unsigned long)&_etext - (unsigned long)&_text) >> 10);
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001089
Jan Beulichbeeb4192008-12-16 11:45:56 +00001090 /*
1091 * Check boundaries twice: Some fundamental inconsistencies can
1092 * be detected at build time already.
1093 */
1094#define __FIXADDR_TOP (-PAGE_SIZE)
1095#ifdef CONFIG_HIGHMEM
1096 BUILD_BUG_ON(PKMAP_BASE + LAST_PKMAP*PAGE_SIZE > FIXADDR_START);
1097 BUILD_BUG_ON(VMALLOC_END > PKMAP_BASE);
1098#endif
1099#define high_memory (-128UL << 20)
1100 BUILD_BUG_ON(VMALLOC_START >= VMALLOC_END);
1101#undef high_memory
1102#undef __FIXADDR_TOP
1103
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001104#ifdef CONFIG_HIGHMEM
Ingo Molnar8550eb92008-01-30 13:34:10 +01001105 BUG_ON(PKMAP_BASE + LAST_PKMAP*PAGE_SIZE > FIXADDR_START);
1106 BUG_ON(VMALLOC_END > PKMAP_BASE);
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001107#endif
Jan Beulichbeeb4192008-12-16 11:45:56 +00001108 BUG_ON(VMALLOC_START >= VMALLOC_END);
Ingo Molnar8550eb92008-01-30 13:34:10 +01001109 BUG_ON((unsigned long)high_memory > VMALLOC_START);
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -07001110
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 if (boot_cpu_data.wp_works_ok < 0)
1112 test_wp_bit();
1113
Hugh Dickins61165d72008-05-13 14:26:57 +01001114 save_pg_dir();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 zap_low_mappings();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116}
1117
KAMEZAWA Hiroyukiad8f5792006-05-20 15:00:03 -07001118#ifdef CONFIG_MEMORY_HOTPLUG
Yasunori Gotobc02af92006-06-27 02:53:30 -07001119int arch_add_memory(int nid, u64 start, u64 size)
Dave Hansen05039b92005-10-29 18:16:57 -07001120{
Yasunori Goto7c7e9422006-12-22 01:11:13 -08001121 struct pglist_data *pgdata = NODE_DATA(nid);
Christoph Lameter776ed982006-09-25 23:31:09 -07001122 struct zone *zone = pgdata->node_zones + ZONE_HIGHMEM;
Dave Hansen05039b92005-10-29 18:16:57 -07001123 unsigned long start_pfn = start >> PAGE_SHIFT;
1124 unsigned long nr_pages = size >> PAGE_SHIFT;
1125
Gary Hadec04fc582009-01-06 14:39:14 -08001126 return __add_pages(nid, zone, start_pfn, nr_pages);
Dave Hansen05039b92005-10-29 18:16:57 -07001127}
Andi Kleen9d99aaa2006-04-07 19:49:15 +02001128#endif
Dave Hansen05039b92005-10-29 18:16:57 -07001129
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130/*
1131 * This function cannot be __init, since exceptions don't work in that
1132 * section. Put this after the callers, so that it cannot be inlined.
1133 */
Ingo Molnar8550eb92008-01-30 13:34:10 +01001134static noinline int do_test_wp_bit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135{
1136 char tmp_reg;
1137 int flag;
1138
1139 __asm__ __volatile__(
Ingo Molnar8550eb92008-01-30 13:34:10 +01001140 " movb %0, %1 \n"
1141 "1: movb %1, %0 \n"
1142 " xorl %2, %2 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 "2: \n"
H. Peter Anvinf832ff12008-02-04 16:47:58 +01001144 _ASM_EXTABLE(1b,2b)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 :"=m" (*(char *)fix_to_virt(FIX_WP_TEST)),
1146 "=q" (tmp_reg),
1147 "=r" (flag)
1148 :"2" (1)
1149 :"memory");
Ingo Molnar8550eb92008-01-30 13:34:10 +01001150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 return flag;
1152}
1153
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001154#ifdef CONFIG_DEBUG_RODATA
Arjan van de Venedeed302008-01-30 13:34:08 +01001155const int rodata_test_data = 0xC3;
1156EXPORT_SYMBOL_GPL(rodata_test_data);
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001157
Steven Rostedt16239632009-02-17 17:57:30 -05001158static int kernel_set_to_readonly;
1159
1160void set_kernel_text_rw(void)
1161{
1162 unsigned long start = PFN_ALIGN(_text);
1163 unsigned long size = PFN_ALIGN(_etext) - start;
1164
1165 if (!kernel_set_to_readonly)
1166 return;
1167
1168 pr_debug("Set kernel text: %lx - %lx for read write\n",
1169 start, start+size);
1170
1171 set_pages_rw(virt_to_page(start), size >> PAGE_SHIFT);
1172}
1173
1174void set_kernel_text_ro(void)
1175{
1176 unsigned long start = PFN_ALIGN(_text);
1177 unsigned long size = PFN_ALIGN(_etext) - start;
1178
1179 if (!kernel_set_to_readonly)
1180 return;
1181
1182 pr_debug("Set kernel text: %lx - %lx for read only\n",
1183 start, start+size);
1184
1185 set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
1186}
1187
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001188void mark_rodata_ro(void)
1189{
Jan Beulich6fb14752007-05-02 19:27:10 +02001190 unsigned long start = PFN_ALIGN(_text);
1191 unsigned long size = PFN_ALIGN(_etext) - start;
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001192
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -05001193 set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
1194 printk(KERN_INFO "Write protecting the kernel text: %luk\n",
1195 size >> 10);
Andi Kleen0c42f392008-01-30 13:33:42 +01001196
Steven Rostedt16239632009-02-17 17:57:30 -05001197 kernel_set_to_readonly = 1;
1198
Andi Kleen0c42f392008-01-30 13:33:42 +01001199#ifdef CONFIG_CPA_DEBUG
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -05001200 printk(KERN_INFO "Testing CPA: Reverting %lx-%lx\n",
1201 start, start+size);
1202 set_pages_rw(virt_to_page(start), size>>PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +01001203
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -05001204 printk(KERN_INFO "Testing CPA: write protecting again\n");
1205 set_pages_ro(virt_to_page(start), size>>PAGE_SHIFT);
Linus Torvalds602033e2007-07-26 12:07:21 -07001206#endif
Steven Rostedt8f0f9962008-05-12 21:20:56 +02001207
Jan Beulich6fb14752007-05-02 19:27:10 +02001208 start += size;
1209 size = (unsigned long)__end_rodata - start;
Arjan van de Ven6d238cc2008-01-30 13:34:06 +01001210 set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
Ingo Molnard7d119d2008-01-30 13:34:10 +01001211 printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
1212 size >> 10);
Arjan van de Venedeed302008-01-30 13:34:08 +01001213 rodata_test();
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001214
Andi Kleen0c42f392008-01-30 13:33:42 +01001215#ifdef CONFIG_CPA_DEBUG
Ingo Molnard7d119d2008-01-30 13:34:10 +01001216 printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, start + size);
Arjan van de Ven6d238cc2008-01-30 13:34:06 +01001217 set_pages_rw(virt_to_page(start), size >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +01001218
Ingo Molnard7d119d2008-01-30 13:34:10 +01001219 printk(KERN_INFO "Testing CPA: write protecting again\n");
Arjan van de Ven6d238cc2008-01-30 13:34:06 +01001220 set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +01001221#endif
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001222}
1223#endif
1224
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001225void free_init_pages(char *what, unsigned long begin, unsigned long end)
1226{
Ingo Molnaree01f112008-01-30 13:34:09 +01001227#ifdef CONFIG_DEBUG_PAGEALLOC
1228 /*
1229 * If debugging page accesses then do not free this memory but
1230 * mark them not present - any buggy init-section access will
1231 * create a kernel page fault:
1232 */
1233 printk(KERN_INFO "debug: unmapping init memory %08lx..%08lx\n",
1234 begin, PAGE_ALIGN(end));
1235 set_memory_np(begin, (end - begin) >> PAGE_SHIFT);
1236#else
Ingo Molnar86f03982008-01-30 13:34:09 +01001237 unsigned long addr;
1238
Arjan van de Ven3c1df682008-01-30 13:34:07 +01001239 /*
1240 * We just marked the kernel text read only above, now that
1241 * we are going to free part of that, we need to make that
1242 * writeable first.
1243 */
1244 set_memory_rw(begin, (end - begin) >> PAGE_SHIFT);
1245
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001246 for (addr = begin; addr < end; addr += PAGE_SIZE) {
Linus Torvaldse3ebadd2007-05-07 08:44:24 -07001247 ClearPageReserved(virt_to_page(addr));
1248 init_page_count(virt_to_page(addr));
1249 memset((void *)addr, POISON_FREE_INITMEM, PAGE_SIZE);
1250 free_page(addr);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001251 totalram_pages++;
1252 }
Jan Beulich6fb14752007-05-02 19:27:10 +02001253 printk(KERN_INFO "Freeing %s: %luk freed\n", what, (end - begin) >> 10);
Ingo Molnaree01f112008-01-30 13:34:09 +01001254#endif
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001255}
1256
1257void free_initmem(void)
1258{
1259 free_init_pages("unused kernel memory",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -07001260 (unsigned long)(&__init_begin),
1261 (unsigned long)(&__init_end));
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001262}
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001263
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264#ifdef CONFIG_BLK_DEV_INITRD
1265void free_initrd_mem(unsigned long start, unsigned long end)
1266{
Linus Torvaldse3ebadd2007-05-07 08:44:24 -07001267 free_init_pages("initrd memory", start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268}
1269#endif
Yinghai Lud2dbf342008-06-13 02:00:56 -07001270
1271int __init reserve_bootmem_generic(unsigned long phys, unsigned long len,
1272 int flags)
1273{
1274 return reserve_bootmem(phys, len, flags);
1275}