]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blame - arch/x86/mm/init_32.c
Merge branch 'linus' into x86/memory-corruption-check
[mirror_ubuntu-eoan-kernel.git] / arch / x86 / mm / init_32.c
CommitLineData
1da177e4 1/*
1da177e4
LT
2 *
3 * Copyright (C) 1995 Linus Torvalds
4 *
5 * Support of BIGMEM added by Gerhard Wichert, Siemens AG, July 1999
6 */
7
1da177e4
LT
8#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>
6fb14755 24#include <linux/pfn.h>
c9cf5528 25#include <linux/poison.h>
1da177e4
LT
26#include <linux/bootmem.h>
27#include <linux/slab.h>
28#include <linux/proc_fs.h>
05039b92 29#include <linux/memory_hotplug.h>
27d99f7e 30#include <linux/initrd.h>
55b2355e 31#include <linux/cpumask.h>
1da177e4 32
f832ff18 33#include <asm/asm.h>
1da177e4
LT
34#include <asm/processor.h>
35#include <asm/system.h>
36#include <asm/uaccess.h>
37#include <asm/pgtable.h>
38#include <asm/dma.h>
39#include <asm/fixmap.h>
40#include <asm/e820.h>
41#include <asm/apic.h>
8550eb99 42#include <asm/bugs.h>
1da177e4
LT
43#include <asm/tlb.h>
44#include <asm/tlbflush.h>
a5a19c63 45#include <asm/pgalloc.h>
1da177e4 46#include <asm/sections.h>
b239fb25 47#include <asm/paravirt.h>
551889a6 48#include <asm/setup.h>
7bfeab9a 49#include <asm/cacheflush.h>
a80495ec 50#include <asm/smp.h>
1da177e4
LT
51
52unsigned int __VMALLOC_RESERVE = 128 << 20;
53
f361a450 54unsigned long max_low_pfn_mapped;
67794292 55unsigned long max_pfn_mapped;
7d1116a9 56
1da177e4
LT
57DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
58unsigned long highstart_pfn, highend_pfn;
59
8550eb99 60static noinline int do_test_wp_bit(void);
1da177e4 61
4e29684c
YL
62
63static unsigned long __initdata table_start;
64static unsigned long __meminitdata table_end;
65static unsigned long __meminitdata table_top;
66
67static int __initdata after_init_bootmem;
68
69static __init void *alloc_low_page(unsigned long *phys)
70{
71 unsigned long pfn = table_end++;
72 void *adr;
73
74 if (pfn >= table_top)
75 panic("alloc_low_page: ran out of memory");
76
77 adr = __va(pfn * PAGE_SIZE);
78 memset(adr, 0, PAGE_SIZE);
79 *phys = pfn * PAGE_SIZE;
80 return adr;
81}
82
1da177e4
LT
83/*
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;
8550eb99 92
1da177e4 93#ifdef CONFIG_X86_PAE
4e29684c 94 unsigned long phys;
b239fb25 95 if (!(pgd_val(*pgd) & _PAGE_PRESENT)) {
4e29684c
YL
96 if (after_init_bootmem)
97 pmd_table = (pmd_t *)alloc_bootmem_low_pages(PAGE_SIZE);
98 else
99 pmd_table = (pmd_t *)alloc_low_page(&phys);
6944a9c8 100 paravirt_alloc_pmd(&init_mm, __pa(pmd_table) >> PAGE_SHIFT);
b239fb25
JF
101 set_pgd(pgd, __pgd(__pa(pmd_table) | _PAGE_PRESENT));
102 pud = pud_offset(pgd, 0);
8550eb99 103 BUG_ON(pmd_table != pmd_offset(pud, 0));
b239fb25
JF
104 }
105#endif
1da177e4
LT
106 pud = pud_offset(pgd, 0);
107 pmd_table = pmd_offset(pud, 0);
8550eb99 108
1da177e4
LT
109 return pmd_table;
110}
111
112/*
113 * Create a page table and place a pointer to it in a middle page
8550eb99 114 * directory entry:
1da177e4
LT
115 */
116static pte_t * __init one_page_table_init(pmd_t *pmd)
117{
b239fb25 118 if (!(pmd_val(*pmd) & _PAGE_PRESENT)) {
509a80c4
IM
119 pte_t *page_table = NULL;
120
4e29684c 121 if (after_init_bootmem) {
509a80c4 122#ifdef CONFIG_DEBUG_PAGEALLOC
4e29684c 123 page_table = (pte_t *) alloc_bootmem_pages(PAGE_SIZE);
509a80c4 124#endif
4e29684c
YL
125 if (!page_table)
126 page_table =
509a80c4 127 (pte_t *)alloc_bootmem_low_pages(PAGE_SIZE);
4e29684c
YL
128 } else {
129 unsigned long phys;
130 page_table = (pte_t *)alloc_low_page(&phys);
8550eb99 131 }
b239fb25 132
6944a9c8 133 paravirt_alloc_pte(&init_mm, __pa(page_table) >> PAGE_SHIFT);
1da177e4 134 set_pmd(pmd, __pmd(__pa(page_table) | _PAGE_TABLE));
b239fb25 135 BUG_ON(page_table != pte_offset_kernel(pmd, 0));
1da177e4 136 }
509a80c4 137
1da177e4
LT
138 return pte_offset_kernel(pmd, 0);
139}
140
141/*
8550eb99 142 * This function initializes a certain range of kernel virtual memory
1da177e4
LT
143 * with new bootmem page tables, everywhere page tables are missing in
144 * the given range.
8550eb99
IM
145 *
146 * NOTE: The pagetables are allocated contiguous on the physical space
147 * so we can cache the place of the first one and move around without
1da177e4
LT
148 * checking the pgd every time.
149 */
8550eb99
IM
150static void __init
151page_table_range_init(unsigned long start, unsigned long end, pgd_t *pgd_base)
1da177e4 152{
1da177e4
LT
153 int pgd_idx, pmd_idx;
154 unsigned long vaddr;
8550eb99
IM
155 pgd_t *pgd;
156 pmd_t *pmd;
1da177e4
LT
157
158 vaddr = start;
159 pgd_idx = pgd_index(vaddr);
160 pmd_idx = pmd_index(vaddr);
161 pgd = pgd_base + pgd_idx;
162
163 for ( ; (pgd_idx < PTRS_PER_PGD) && (vaddr != end); pgd++, pgd_idx++) {
b239fb25
JF
164 pmd = one_md_table_init(pgd);
165 pmd = pmd + pmd_index(vaddr);
8550eb99
IM
166 for (; (pmd_idx < PTRS_PER_PMD) && (vaddr != end);
167 pmd++, pmd_idx++) {
b239fb25 168 one_page_table_init(pmd);
1da177e4
LT
169
170 vaddr += PMD_SIZE;
171 }
172 pmd_idx = 0;
173 }
174}
175
176static inline int is_kernel_text(unsigned long addr)
177{
178 if (addr >= PAGE_OFFSET && addr <= (unsigned long)__init_end)
179 return 1;
180 return 0;
181}
182
183/*
8550eb99
IM
184 * This maps the physical memory to kernel virtual address space, a total
185 * of max_low_pfn pages, by creating page tables starting from address
186 * PAGE_OFFSET:
1da177e4 187 */
4e29684c 188static void __init kernel_physical_mapping_init(pgd_t *pgd_base,
a04ad82d
YL
189 unsigned long start_pfn,
190 unsigned long end_pfn,
191 int use_pse)
1da177e4 192{
8550eb99 193 int pgd_idx, pmd_idx, pte_ofs;
1da177e4
LT
194 unsigned long pfn;
195 pgd_t *pgd;
196 pmd_t *pmd;
197 pte_t *pte;
a2699e47
SS
198 unsigned pages_2m, pages_4k;
199 int mapping_iter;
200
201 /*
202 * First iteration will setup identity mapping using large/small pages
203 * based on use_pse, with other attributes same as set by
204 * the early code in head_32.S
205 *
206 * Second iteration will setup the appropriate attributes (NX, GLOBAL..)
207 * as desired for the kernel identity mapping.
208 *
209 * This two pass mechanism conforms to the TLB app note which says:
210 *
211 * "Software should not write to a paging-structure entry in a way
212 * that would change, for any linear address, both the page size
213 * and either the page frame or attributes."
214 */
215 mapping_iter = 1;
1da177e4 216
a04ad82d
YL
217 if (!cpu_has_pse)
218 use_pse = 0;
1da177e4 219
a2699e47
SS
220repeat:
221 pages_2m = pages_4k = 0;
a04ad82d
YL
222 pfn = start_pfn;
223 pgd_idx = pgd_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
224 pgd = pgd_base + pgd_idx;
1da177e4
LT
225 for (; pgd_idx < PTRS_PER_PGD; pgd++, pgd_idx++) {
226 pmd = one_md_table_init(pgd);
8550eb99 227
a04ad82d
YL
228 if (pfn >= end_pfn)
229 continue;
230#ifdef CONFIG_X86_PAE
231 pmd_idx = pmd_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
232 pmd += pmd_idx;
233#else
234 pmd_idx = 0;
235#endif
236 for (; pmd_idx < PTRS_PER_PMD && pfn < end_pfn;
f3f20de8 237 pmd++, pmd_idx++) {
8550eb99 238 unsigned int addr = pfn * PAGE_SIZE + PAGE_OFFSET;
1da177e4 239
8550eb99
IM
240 /*
241 * Map with big pages if possible, otherwise
242 * create normal page tables:
243 */
a04ad82d 244 if (use_pse) {
8550eb99 245 unsigned int addr2;
f3f20de8 246 pgprot_t prot = PAGE_KERNEL_LARGE;
a2699e47
SS
247 /*
248 * first pass will use the same initial
249 * identity mapping attribute + _PAGE_PSE.
250 */
251 pgprot_t init_prot =
252 __pgprot(PTE_IDENT_ATTR |
253 _PAGE_PSE);
f3f20de8 254
8550eb99 255 addr2 = (pfn + PTRS_PER_PTE-1) * PAGE_SIZE +
f3f20de8
JF
256 PAGE_OFFSET + PAGE_SIZE-1;
257
8550eb99
IM
258 if (is_kernel_text(addr) ||
259 is_kernel_text(addr2))
f3f20de8
JF
260 prot = PAGE_KERNEL_LARGE_EXEC;
261
ce0c0e50 262 pages_2m++;
a2699e47
SS
263 if (mapping_iter == 1)
264 set_pmd(pmd, pfn_pmd(pfn, init_prot));
265 else
266 set_pmd(pmd, pfn_pmd(pfn, prot));
b239fb25 267
1da177e4 268 pfn += PTRS_PER_PTE;
8550eb99
IM
269 continue;
270 }
271 pte = one_page_table_init(pmd);
1da177e4 272
a04ad82d
YL
273 pte_ofs = pte_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
274 pte += pte_ofs;
275 for (; pte_ofs < PTRS_PER_PTE && pfn < end_pfn;
8550eb99
IM
276 pte++, pfn++, pte_ofs++, addr += PAGE_SIZE) {
277 pgprot_t prot = PAGE_KERNEL;
a2699e47
SS
278 /*
279 * first pass will use the same initial
280 * identity mapping attribute.
281 */
282 pgprot_t init_prot = __pgprot(PTE_IDENT_ATTR);
f3f20de8 283
8550eb99
IM
284 if (is_kernel_text(addr))
285 prot = PAGE_KERNEL_EXEC;
f3f20de8 286
ce0c0e50 287 pages_4k++;
a2699e47
SS
288 if (mapping_iter == 1)
289 set_pte(pte, pfn_pte(pfn, init_prot));
290 else
291 set_pte(pte, pfn_pte(pfn, prot));
1da177e4
LT
292 }
293 }
294 }
a2699e47
SS
295 if (mapping_iter == 1) {
296 /*
297 * update direct mapping page count only in the first
298 * iteration.
299 */
300 update_page_count(PG_LEVEL_2M, pages_2m);
301 update_page_count(PG_LEVEL_4K, pages_4k);
302
303 /*
304 * local global flush tlb, which will flush the previous
305 * mappings present in both small and large page TLB's.
306 */
307 __flush_tlb_all();
308
309 /*
310 * Second iteration will set the actual desired PTE attributes.
311 */
312 mapping_iter = 2;
313 goto repeat;
314 }
1da177e4
LT
315}
316
ae531c26
AV
317/*
318 * devmem_is_allowed() checks to see if /dev/mem access to a certain address
319 * is valid. The argument is a physical page number.
320 *
321 *
322 * On x86, access has to be given to the first megabyte of ram because that area
323 * contains bios code and data regions used by X and dosemu and similar apps.
324 * Access has to be given to non-kernel-ram areas as well, these contain the PCI
325 * mmio resources as well as potential bios/acpi data regions.
326 */
327int devmem_is_allowed(unsigned long pagenr)
328{
329 if (pagenr <= 256)
330 return 1;
331 if (!page_is_ram(pagenr))
332 return 1;
333 return 0;
334}
335
1da177e4
LT
336#ifdef CONFIG_HIGHMEM
337pte_t *kmap_pte;
338pgprot_t kmap_prot;
339
8550eb99
IM
340static inline pte_t *kmap_get_fixmap_pte(unsigned long vaddr)
341{
342 return pte_offset_kernel(pmd_offset(pud_offset(pgd_offset_k(vaddr),
343 vaddr), vaddr), vaddr);
344}
1da177e4
LT
345
346static void __init kmap_init(void)
347{
348 unsigned long kmap_vstart;
349
8550eb99
IM
350 /*
351 * Cache the first kmap pte:
352 */
1da177e4
LT
353 kmap_vstart = __fix_to_virt(FIX_KMAP_BEGIN);
354 kmap_pte = kmap_get_fixmap_pte(kmap_vstart);
355
356 kmap_prot = PAGE_KERNEL;
357}
358
359static void __init permanent_kmaps_init(pgd_t *pgd_base)
360{
8550eb99 361 unsigned long vaddr;
1da177e4
LT
362 pgd_t *pgd;
363 pud_t *pud;
364 pmd_t *pmd;
365 pte_t *pte;
1da177e4
LT
366
367 vaddr = PKMAP_BASE;
368 page_table_range_init(vaddr, vaddr + PAGE_SIZE*LAST_PKMAP, pgd_base);
369
370 pgd = swapper_pg_dir + pgd_index(vaddr);
371 pud = pud_offset(pgd, vaddr);
372 pmd = pmd_offset(pud, vaddr);
373 pte = pte_offset_kernel(pmd, vaddr);
8550eb99 374 pkmap_page_table = pte;
1da177e4
LT
375}
376
cc9f7a0c 377static void __init add_one_highpage_init(struct page *page, int pfn)
1da177e4 378{
cc9f7a0c
YL
379 ClearPageReserved(page);
380 init_page_count(page);
381 __free_page(page);
382 totalhigh_pages++;
1da177e4
LT
383}
384
b5bc6c0e
YL
385struct add_highpages_data {
386 unsigned long start_pfn;
387 unsigned long end_pfn;
b5bc6c0e
YL
388};
389
d52d53b8 390static int __init add_highpages_work_fn(unsigned long start_pfn,
b5bc6c0e 391 unsigned long end_pfn, void *datax)
1da177e4 392{
b5bc6c0e
YL
393 int node_pfn;
394 struct page *page;
395 unsigned long final_start_pfn, final_end_pfn;
396 struct add_highpages_data *data;
8550eb99 397
b5bc6c0e 398 data = (struct add_highpages_data *)datax;
b5bc6c0e
YL
399
400 final_start_pfn = max(start_pfn, data->start_pfn);
401 final_end_pfn = min(end_pfn, data->end_pfn);
402 if (final_start_pfn >= final_end_pfn)
d52d53b8 403 return 0;
b5bc6c0e
YL
404
405 for (node_pfn = final_start_pfn; node_pfn < final_end_pfn;
406 node_pfn++) {
407 if (!pfn_valid(node_pfn))
408 continue;
409 page = pfn_to_page(node_pfn);
cc9f7a0c 410 add_one_highpage_init(page, node_pfn);
23be8c7d 411 }
b5bc6c0e 412
d52d53b8
YL
413 return 0;
414
b5bc6c0e
YL
415}
416
417void __init add_highpages_with_active_regions(int nid, unsigned long start_pfn,
cc9f7a0c 418 unsigned long end_pfn)
b5bc6c0e
YL
419{
420 struct add_highpages_data data;
421
422 data.start_pfn = start_pfn;
423 data.end_pfn = end_pfn;
b5bc6c0e
YL
424
425 work_with_active_regions(nid, add_highpages_work_fn, &data);
426}
427
8550eb99 428#ifndef CONFIG_NUMA
cc9f7a0c 429static void __init set_highmem_pages_init(void)
1da177e4 430{
cc9f7a0c 431 add_highpages_with_active_regions(0, highstart_pfn, highend_pfn);
b5bc6c0e 432
1da177e4
LT
433 totalram_pages += totalhigh_pages;
434}
8550eb99 435#endif /* !CONFIG_NUMA */
1da177e4
LT
436
437#else
8550eb99
IM
438# define kmap_init() do { } while (0)
439# define permanent_kmaps_init(pgd_base) do { } while (0)
cc9f7a0c 440# define set_highmem_pages_init() do { } while (0)
1da177e4
LT
441#endif /* CONFIG_HIGHMEM */
442
b239fb25 443void __init native_pagetable_setup_start(pgd_t *base)
1da177e4 444{
551889a6
IC
445 unsigned long pfn, va;
446 pgd_t *pgd;
447 pud_t *pud;
448 pmd_t *pmd;
449 pte_t *pte;
b239fb25
JF
450
451 /*
551889a6
IC
452 * Remove any mappings which extend past the end of physical
453 * memory from the boot time page table:
b239fb25 454 */
551889a6
IC
455 for (pfn = max_low_pfn + 1; pfn < 1<<(32-PAGE_SHIFT); pfn++) {
456 va = PAGE_OFFSET + (pfn<<PAGE_SHIFT);
457 pgd = base + pgd_index(va);
458 if (!pgd_present(*pgd))
459 break;
460
461 pud = pud_offset(pgd, va);
462 pmd = pmd_offset(pud, va);
463 if (!pmd_present(*pmd))
464 break;
465
466 pte = pte_offset_kernel(pmd, va);
467 if (!pte_present(*pte))
468 break;
469
470 pte_clear(NULL, va, pte);
471 }
6944a9c8 472 paravirt_alloc_pmd(&init_mm, __pa(base) >> PAGE_SHIFT);
b239fb25
JF
473}
474
475void __init native_pagetable_setup_done(pgd_t *base)
476{
b239fb25
JF
477}
478
479/*
480 * Build a proper pagetable for the kernel mappings. Up until this
481 * point, we've been running on some set of pagetables constructed by
482 * the boot process.
483 *
484 * If we're booting on native hardware, this will be a pagetable
551889a6
IC
485 * constructed in arch/x86/kernel/head_32.S. The root of the
486 * pagetable will be swapper_pg_dir.
b239fb25
JF
487 *
488 * If we're booting paravirtualized under a hypervisor, then there are
489 * more options: we may already be running PAE, and the pagetable may
490 * or may not be based in swapper_pg_dir. In any case,
491 * paravirt_pagetable_setup_start() will set up swapper_pg_dir
492 * appropriately for the rest of the initialization to work.
493 *
494 * In general, pagetable_init() assumes that the pagetable may already
495 * be partially populated, and so it avoids stomping on any existing
496 * mappings.
497 */
e7b37895 498static void __init early_ioremap_page_table_range_init(pgd_t *pgd_base)
b239fb25 499{
8550eb99 500 unsigned long vaddr, end;
b239fb25 501
1da177e4
LT
502 /*
503 * Fixed mappings, only the page table structure has to be
504 * created - mappings will be set by set_fixmap():
505 */
beacfaac 506 early_ioremap_clear();
1da177e4 507 vaddr = __fix_to_virt(__end_of_fixed_addresses - 1) & PMD_MASK;
b239fb25
JF
508 end = (FIXADDR_TOP + PMD_SIZE - 1) & PMD_MASK;
509 page_table_range_init(vaddr, end, pgd_base);
beacfaac 510 early_ioremap_reset();
e7b37895
YL
511}
512
513static void __init pagetable_init(void)
514{
515 pgd_t *pgd_base = swapper_pg_dir;
516
1da177e4 517 permanent_kmaps_init(pgd_base);
1da177e4
LT
518}
519
a6eb84bc 520#ifdef CONFIG_ACPI_SLEEP
1da177e4 521/*
a6eb84bc 522 * ACPI suspend needs this for resume, because things like the intel-agp
1da177e4
LT
523 * driver might have split up a kernel 4MB mapping.
524 */
a6eb84bc 525char swsusp_pg_dir[PAGE_SIZE]
8550eb99 526 __attribute__ ((aligned(PAGE_SIZE)));
1da177e4
LT
527
528static inline void save_pg_dir(void)
529{
530 memcpy(swsusp_pg_dir, swapper_pg_dir, PAGE_SIZE);
531}
a6eb84bc 532#else /* !CONFIG_ACPI_SLEEP */
1da177e4
LT
533static inline void save_pg_dir(void)
534{
535}
a6eb84bc 536#endif /* !CONFIG_ACPI_SLEEP */
1da177e4 537
8550eb99 538void zap_low_mappings(void)
1da177e4
LT
539{
540 int i;
541
1da177e4
LT
542 /*
543 * Zap initial low-memory mappings.
544 *
545 * Note that "pgd_clear()" doesn't do it for
546 * us, because pgd_clear() is a no-op on i386.
547 */
68db065c 548 for (i = 0; i < KERNEL_PGD_BOUNDARY; i++) {
1da177e4
LT
549#ifdef CONFIG_X86_PAE
550 set_pgd(swapper_pg_dir+i, __pgd(1 + __pa(empty_zero_page)));
551#else
552 set_pgd(swapper_pg_dir+i, __pgd(0));
553#endif
8550eb99 554 }
1da177e4
LT
555 flush_tlb_all();
556}
557
8550eb99 558int nx_enabled;
d5321abe 559
ef5e94af 560pteval_t __supported_pte_mask __read_mostly = ~(_PAGE_NX | _PAGE_GLOBAL);
6fdc05d4
JF
561EXPORT_SYMBOL_GPL(__supported_pte_mask);
562
d5321abe
JB
563#ifdef CONFIG_X86_PAE
564
8550eb99 565static int disable_nx __initdata;
1da177e4
LT
566
567/*
568 * noexec = on|off
569 *
570 * Control non executable mappings.
571 *
572 * on Enable
573 * off Disable
574 */
1a3f239d 575static int __init noexec_setup(char *str)
1da177e4 576{
1a3f239d
RR
577 if (!str || !strcmp(str, "on")) {
578 if (cpu_has_nx) {
579 __supported_pte_mask |= _PAGE_NX;
580 disable_nx = 0;
581 }
8550eb99
IM
582 } else {
583 if (!strcmp(str, "off")) {
584 disable_nx = 1;
585 __supported_pte_mask &= ~_PAGE_NX;
586 } else {
587 return -EINVAL;
588 }
589 }
1a3f239d
RR
590
591 return 0;
1da177e4 592}
1a3f239d 593early_param("noexec", noexec_setup);
1da177e4 594
1da177e4
LT
595static void __init set_nx(void)
596{
597 unsigned int v[4], l, h;
598
599 if (cpu_has_pae && (cpuid_eax(0x80000000) > 0x80000001)) {
600 cpuid(0x80000001, &v[0], &v[1], &v[2], &v[3]);
8550eb99 601
1da177e4
LT
602 if ((v[3] & (1 << 20)) && !disable_nx) {
603 rdmsr(MSR_EFER, l, h);
604 l |= EFER_NX;
605 wrmsr(MSR_EFER, l, h);
606 nx_enabled = 1;
607 __supported_pte_mask |= _PAGE_NX;
608 }
609 }
610}
1da177e4
LT
611#endif
612
90d967e0
YL
613/* user-defined highmem size */
614static unsigned int highmem_pages = -1;
615
616/*
617 * highmem=size forces highmem to be exactly 'size' bytes.
618 * This works even on boxes that have no highmem otherwise.
619 * This also works to reduce highmem size on bigger boxes.
620 */
621static int __init parse_highmem(char *arg)
622{
623 if (!arg)
624 return -EINVAL;
625
626 highmem_pages = memparse(arg, &arg) >> PAGE_SHIFT;
627 return 0;
628}
629early_param("highmem", parse_highmem);
630
631/*
632 * Determine low and high memory ranges:
633 */
2ec65f8b 634void __init find_low_pfn_range(void)
90d967e0 635{
2ec65f8b
YL
636 /* it could update max_pfn */
637
346cafec 638 /* max_low_pfn is 0, we already have early_res support */
90d967e0
YL
639
640 max_low_pfn = max_pfn;
641 if (max_low_pfn > MAXMEM_PFN) {
642 if (highmem_pages == -1)
643 highmem_pages = max_pfn - MAXMEM_PFN;
644 if (highmem_pages + MAXMEM_PFN < max_pfn)
645 max_pfn = MAXMEM_PFN + highmem_pages;
646 if (highmem_pages + MAXMEM_PFN > max_pfn) {
647 printk(KERN_WARNING "only %luMB highmem pages "
648 "available, ignoring highmem size of %uMB.\n",
649 pages_to_mb(max_pfn - MAXMEM_PFN),
650 pages_to_mb(highmem_pages));
651 highmem_pages = 0;
652 }
653 max_low_pfn = MAXMEM_PFN;
654#ifndef CONFIG_HIGHMEM
655 /* Maximum memory usable is what is directly addressable */
656 printk(KERN_WARNING "Warning only %ldMB will be used.\n",
657 MAXMEM>>20);
658 if (max_pfn > MAX_NONPAE_PFN)
659 printk(KERN_WARNING
660 "Use a HIGHMEM64G enabled kernel.\n");
661 else
662 printk(KERN_WARNING "Use a HIGHMEM enabled kernel.\n");
663 max_pfn = MAXMEM_PFN;
664#else /* !CONFIG_HIGHMEM */
665#ifndef CONFIG_HIGHMEM64G
666 if (max_pfn > MAX_NONPAE_PFN) {
667 max_pfn = MAX_NONPAE_PFN;
668 printk(KERN_WARNING "Warning only 4GB will be used."
669 "Use a HIGHMEM64G enabled kernel.\n");
670 }
671#endif /* !CONFIG_HIGHMEM64G */
672#endif /* !CONFIG_HIGHMEM */
673 } else {
674 if (highmem_pages == -1)
675 highmem_pages = 0;
676#ifdef CONFIG_HIGHMEM
677 if (highmem_pages >= max_pfn) {
678 printk(KERN_ERR "highmem size specified (%uMB) is "
679 "bigger than pages available (%luMB)!.\n",
680 pages_to_mb(highmem_pages),
681 pages_to_mb(max_pfn));
682 highmem_pages = 0;
683 }
684 if (highmem_pages) {
685 if (max_low_pfn - highmem_pages <
686 64*1024*1024/PAGE_SIZE){
687 printk(KERN_ERR "highmem size %uMB results in "
688 "smaller than 64MB lowmem, ignoring it.\n"
689 , pages_to_mb(highmem_pages));
690 highmem_pages = 0;
691 }
692 max_low_pfn -= highmem_pages;
693 }
694#else
695 if (highmem_pages)
696 printk(KERN_ERR "ignoring highmem size on non-highmem"
697 " kernel!\n");
698#endif
699 }
90d967e0
YL
700}
701
b2ac82a0 702#ifndef CONFIG_NEED_MULTIPLE_NODES
2ec65f8b 703void __init initmem_init(unsigned long start_pfn,
b2ac82a0
YL
704 unsigned long end_pfn)
705{
b2ac82a0
YL
706#ifdef CONFIG_HIGHMEM
707 highstart_pfn = highend_pfn = max_pfn;
708 if (max_pfn > max_low_pfn)
709 highstart_pfn = max_low_pfn;
710 memory_present(0, 0, highend_pfn);
cb95a13a 711 e820_register_active_regions(0, 0, highend_pfn);
b2ac82a0
YL
712 printk(KERN_NOTICE "%ldMB HIGHMEM available.\n",
713 pages_to_mb(highend_pfn - highstart_pfn));
714 num_physpages = highend_pfn;
715 high_memory = (void *) __va(highstart_pfn * PAGE_SIZE - 1) + 1;
716#else
717 memory_present(0, 0, max_low_pfn);
cb95a13a 718 e820_register_active_regions(0, 0, max_low_pfn);
b2ac82a0
YL
719 num_physpages = max_low_pfn;
720 high_memory = (void *) __va(max_low_pfn * PAGE_SIZE - 1) + 1;
721#endif
722#ifdef CONFIG_FLATMEM
723 max_mapnr = num_physpages;
724#endif
725 printk(KERN_NOTICE "%ldMB LOWMEM available.\n",
726 pages_to_mb(max_low_pfn));
727
728 setup_bootmem_allocator();
b2ac82a0 729}
cb95a13a 730#endif /* !CONFIG_NEED_MULTIPLE_NODES */
b2ac82a0 731
cb95a13a 732static void __init zone_sizes_init(void)
b2ac82a0
YL
733{
734 unsigned long max_zone_pfns[MAX_NR_ZONES];
735 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
736 max_zone_pfns[ZONE_DMA] =
737 virt_to_phys((char *)MAX_DMA_ADDRESS) >> PAGE_SHIFT;
738 max_zone_pfns[ZONE_NORMAL] = max_low_pfn;
b2ac82a0
YL
739#ifdef CONFIG_HIGHMEM
740 max_zone_pfns[ZONE_HIGHMEM] = highend_pfn;
b2ac82a0
YL
741#endif
742
743 free_area_init_nodes(max_zone_pfns);
744}
b2ac82a0 745
b2ac82a0
YL
746void __init setup_bootmem_allocator(void)
747{
748 int i;
749 unsigned long bootmap_size, bootmap;
750 /*
751 * Initialize the boot-time allocator (with low memory only):
752 */
753 bootmap_size = bootmem_bootmap_pages(max_low_pfn)<<PAGE_SHIFT;
754 bootmap = find_e820_area(min_low_pfn<<PAGE_SHIFT,
755 max_pfn_mapped<<PAGE_SHIFT, bootmap_size,
756 PAGE_SIZE);
757 if (bootmap == -1L)
758 panic("Cannot find bootmem map of size %ld\n", bootmap_size);
759 reserve_early(bootmap, bootmap + bootmap_size, "BOOTMAP");
225c37d7 760
346cafec
YL
761 /* don't touch min_low_pfn */
762 bootmap_size = init_bootmem_node(NODE_DATA(0), bootmap >> PAGE_SHIFT,
763 min_low_pfn, max_low_pfn);
b2ac82a0
YL
764 printk(KERN_INFO " mapped low ram: 0 - %08lx\n",
765 max_pfn_mapped<<PAGE_SHIFT);
766 printk(KERN_INFO " low ram: %08lx - %08lx\n",
767 min_low_pfn<<PAGE_SHIFT, max_low_pfn<<PAGE_SHIFT);
768 printk(KERN_INFO " bootmap %08lx - %08lx\n",
769 bootmap, bootmap + bootmap_size);
770 for_each_online_node(i)
771 free_bootmem_with_active_regions(i, max_low_pfn);
772 early_res_to_bootmem(0, max_low_pfn<<PAGE_SHIFT);
773
4e29684c 774 after_init_bootmem = 1;
b2ac82a0
YL
775}
776
0b8fdcbc 777static void __init find_early_table_space(unsigned long end, int use_pse)
4e29684c 778{
7482b0e9 779 unsigned long puds, pmds, ptes, tables, start;
4e29684c
YL
780
781 puds = (end + PUD_SIZE - 1) >> PUD_SHIFT;
782 tables = PAGE_ALIGN(puds * sizeof(pud_t));
783
784 pmds = (end + PMD_SIZE - 1) >> PMD_SHIFT;
785 tables += PAGE_ALIGN(pmds * sizeof(pmd_t));
786
0b8fdcbc 787 if (use_pse) {
7482b0e9 788 unsigned long extra;
a04ad82d
YL
789
790 extra = end - ((end>>PMD_SHIFT) << PMD_SHIFT);
791 extra += PMD_SIZE;
7482b0e9
YL
792 ptes = (extra + PAGE_SIZE - 1) >> PAGE_SHIFT;
793 } else
794 ptes = (end + PAGE_SIZE - 1) >> PAGE_SHIFT;
795
796 tables += PAGE_ALIGN(ptes * sizeof(pte_t));
8207c257 797
a04ad82d
YL
798 /* for fixmap */
799 tables += PAGE_SIZE * 2;
800
4e29684c
YL
801 /*
802 * RED-PEN putting page tables only on node 0 could
803 * cause a hotspot and fill up ZONE_DMA. The page tables
804 * need roughly 0.5KB per GB.
805 */
806 start = 0x7000;
807 table_start = find_e820_area(start, max_pfn_mapped<<PAGE_SHIFT,
808 tables, PAGE_SIZE);
809 if (table_start == -1UL)
810 panic("Cannot find space for the kernel page tables");
811
812 table_start >>= PAGE_SHIFT;
813 table_end = table_start;
814 table_top = table_start + (tables>>PAGE_SHIFT);
815
816 printk(KERN_DEBUG "kernel direct mapping tables up to %lx @ %lx-%lx\n",
817 end, table_start << PAGE_SHIFT,
818 (table_start << PAGE_SHIFT) + tables);
819}
820
821unsigned long __init_refok init_memory_mapping(unsigned long start,
822 unsigned long end)
823{
824 pgd_t *pgd_base = swapper_pg_dir;
a04ad82d
YL
825 unsigned long start_pfn, end_pfn;
826 unsigned long big_page_start;
0b8fdcbc
SS
827#ifdef CONFIG_DEBUG_PAGEALLOC
828 /*
829 * For CONFIG_DEBUG_PAGEALLOC, identity mapping will use small pages.
830 * This will simplify cpa(), which otherwise needs to support splitting
831 * large pages into small in interrupt context, etc.
832 */
833 int use_pse = 0;
834#else
835 int use_pse = cpu_has_pse;
836#endif
4e29684c
YL
837
838 /*
839 * Find space for the kernel direct mapping tables.
840 */
841 if (!after_init_bootmem)
0b8fdcbc 842 find_early_table_space(end, use_pse);
4e29684c
YL
843
844#ifdef CONFIG_X86_PAE
845 set_nx();
846 if (nx_enabled)
847 printk(KERN_INFO "NX (Execute Disable) protection: active\n");
848#endif
849
850 /* Enable PSE if available */
851 if (cpu_has_pse)
852 set_in_cr4(X86_CR4_PSE);
853
854 /* Enable PGE if available */
855 if (cpu_has_pge) {
856 set_in_cr4(X86_CR4_PGE);
ef5e94af 857 __supported_pte_mask |= _PAGE_GLOBAL;
4e29684c
YL
858 }
859
a04ad82d
YL
860 /*
861 * Don't use a large page for the first 2/4MB of memory
862 * because there are often fixed size MTRRs in there
863 * and overlapping MTRRs into large pages can cause
864 * slowdowns.
865 */
866 big_page_start = PMD_SIZE;
867
868 if (start < big_page_start) {
869 start_pfn = start >> PAGE_SHIFT;
870 end_pfn = min(big_page_start>>PAGE_SHIFT, end>>PAGE_SHIFT);
871 } else {
872 /* head is not big page alignment ? */
873 start_pfn = start >> PAGE_SHIFT;
874 end_pfn = ((start + (PMD_SIZE - 1))>>PMD_SHIFT)
875 << (PMD_SHIFT - PAGE_SHIFT);
876 }
877 if (start_pfn < end_pfn)
878 kernel_physical_mapping_init(pgd_base, start_pfn, end_pfn, 0);
879
880 /* big page range */
881 start_pfn = ((start + (PMD_SIZE - 1))>>PMD_SHIFT)
882 << (PMD_SHIFT - PAGE_SHIFT);
883 if (start_pfn < (big_page_start >> PAGE_SHIFT))
884 start_pfn = big_page_start >> PAGE_SHIFT;
885 end_pfn = (end>>PMD_SHIFT) << (PMD_SHIFT - PAGE_SHIFT);
886 if (start_pfn < end_pfn)
887 kernel_physical_mapping_init(pgd_base, start_pfn, end_pfn,
0b8fdcbc 888 use_pse);
a04ad82d
YL
889
890 /* tail is not big page alignment ? */
891 start_pfn = end_pfn;
892 if (start_pfn > (big_page_start>>PAGE_SHIFT)) {
893 end_pfn = end >> PAGE_SHIFT;
894 if (start_pfn < end_pfn)
895 kernel_physical_mapping_init(pgd_base, start_pfn,
896 end_pfn, 0);
897 }
4e29684c 898
e7b37895
YL
899 early_ioremap_page_table_range_init(pgd_base);
900
4e29684c
YL
901 load_cr3(swapper_pg_dir);
902
903 __flush_tlb_all();
904
905 if (!after_init_bootmem)
906 reserve_early(table_start << PAGE_SHIFT,
907 table_end << PAGE_SHIFT, "PGTABLE");
908
caadbdce
YL
909 if (!after_init_bootmem)
910 early_memtest(start, end);
911
4e29684c
YL
912 return end >> PAGE_SHIFT;
913}
914
e7b37895 915
1da177e4
LT
916/*
917 * paging_init() sets up the page tables - note that the first 8MB are
918 * already mapped by head.S.
919 *
920 * This routines also unmaps the page at virtual kernel address 0, so
921 * that we can trap those pesky NULL-reference errors in the kernel.
922 */
923void __init paging_init(void)
924{
1da177e4
LT
925 pagetable_init();
926
1da177e4
LT
927 __flush_tlb_all();
928
929 kmap_init();
11cd0bc1
YL
930
931 /*
932 * NOTE: at this point the bootmem allocator is fully available.
933 */
11cd0bc1
YL
934 sparse_init();
935 zone_sizes_init();
1da177e4
LT
936}
937
938/*
939 * Test if the WP bit works in supervisor mode. It isn't supported on 386's
f7f17a67
DV
940 * and also on some strange 486's. All 586+'s are OK. This used to involve
941 * black magic jumps to work around some nasty CPU bugs, but fortunately the
942 * switch to using exceptions got rid of all that.
1da177e4 943 */
1da177e4
LT
944static void __init test_wp_bit(void)
945{
d7d119d7
IM
946 printk(KERN_INFO
947 "Checking if this processor honours the WP bit even in supervisor mode...");
1da177e4
LT
948
949 /* Any page-aligned address will do, the test is non-destructive */
950 __set_fixmap(FIX_WP_TEST, __pa(&swapper_pg_dir), PAGE_READONLY);
951 boot_cpu_data.wp_works_ok = do_test_wp_bit();
952 clear_fixmap(FIX_WP_TEST);
953
954 if (!boot_cpu_data.wp_works_ok) {
d7d119d7 955 printk(KERN_CONT "No.\n");
1da177e4 956#ifdef CONFIG_X86_WP_WORKS_OK
d7d119d7
IM
957 panic(
958 "This kernel doesn't support CPU's with broken WP. Recompile it for a 386!");
1da177e4
LT
959#endif
960 } else {
d7d119d7 961 printk(KERN_CONT "Ok.\n");
1da177e4
LT
962 }
963}
964
8550eb99 965static struct kcore_list kcore_mem, kcore_vmalloc;
1da177e4
LT
966
967void __init mem_init(void)
968{
1da177e4 969 int codesize, reservedpages, datasize, initsize;
cc9f7a0c 970 int tmp;
1da177e4 971
bb577f98
HD
972 start_periodic_check_for_corruption();
973
05b79bdc 974#ifdef CONFIG_FLATMEM
8d8f3cbe 975 BUG_ON(!mem_map);
1da177e4 976#endif
1da177e4
LT
977 /* this will put all low memory onto the freelists */
978 totalram_pages += free_all_bootmem();
979
980 reservedpages = 0;
981 for (tmp = 0; tmp < max_low_pfn; tmp++)
982 /*
8550eb99 983 * Only count reserved RAM pages:
1da177e4
LT
984 */
985 if (page_is_ram(tmp) && PageReserved(pfn_to_page(tmp)))
986 reservedpages++;
987
cc9f7a0c 988 set_highmem_pages_init();
1da177e4
LT
989
990 codesize = (unsigned long) &_etext - (unsigned long) &_text;
991 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
992 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
993
8550eb99
IM
994 kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
995 kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
1da177e4
LT
996 VMALLOC_END-VMALLOC_START);
997
8550eb99
IM
998 printk(KERN_INFO "Memory: %luk/%luk available (%dk kernel code, "
999 "%dk reserved, %dk data, %dk init, %ldk highmem)\n",
1da177e4
LT
1000 (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
1001 num_physpages << (PAGE_SHIFT-10),
1002 codesize >> 10,
1003 reservedpages << (PAGE_SHIFT-10),
1004 datasize >> 10,
1005 initsize >> 10,
1006 (unsigned long) (totalhigh_pages << (PAGE_SHIFT-10))
1007 );
1008
d7d119d7 1009 printk(KERN_INFO "virtual kernel memory layout:\n"
8550eb99 1010 " fixmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
052e7994 1011#ifdef CONFIG_HIGHMEM
8550eb99 1012 " pkmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
052e7994 1013#endif
8550eb99
IM
1014 " vmalloc : 0x%08lx - 0x%08lx (%4ld MB)\n"
1015 " lowmem : 0x%08lx - 0x%08lx (%4ld MB)\n"
1016 " .init : 0x%08lx - 0x%08lx (%4ld kB)\n"
1017 " .data : 0x%08lx - 0x%08lx (%4ld kB)\n"
1018 " .text : 0x%08lx - 0x%08lx (%4ld kB)\n",
1019 FIXADDR_START, FIXADDR_TOP,
1020 (FIXADDR_TOP - FIXADDR_START) >> 10,
052e7994
JF
1021
1022#ifdef CONFIG_HIGHMEM
8550eb99
IM
1023 PKMAP_BASE, PKMAP_BASE+LAST_PKMAP*PAGE_SIZE,
1024 (LAST_PKMAP*PAGE_SIZE) >> 10,
052e7994
JF
1025#endif
1026
8550eb99
IM
1027 VMALLOC_START, VMALLOC_END,
1028 (VMALLOC_END - VMALLOC_START) >> 20,
052e7994 1029
8550eb99
IM
1030 (unsigned long)__va(0), (unsigned long)high_memory,
1031 ((unsigned long)high_memory - (unsigned long)__va(0)) >> 20,
052e7994 1032
8550eb99
IM
1033 (unsigned long)&__init_begin, (unsigned long)&__init_end,
1034 ((unsigned long)&__init_end -
1035 (unsigned long)&__init_begin) >> 10,
052e7994 1036
8550eb99
IM
1037 (unsigned long)&_etext, (unsigned long)&_edata,
1038 ((unsigned long)&_edata - (unsigned long)&_etext) >> 10,
052e7994 1039
8550eb99
IM
1040 (unsigned long)&_text, (unsigned long)&_etext,
1041 ((unsigned long)&_etext - (unsigned long)&_text) >> 10);
052e7994
JF
1042
1043#ifdef CONFIG_HIGHMEM
8550eb99
IM
1044 BUG_ON(PKMAP_BASE + LAST_PKMAP*PAGE_SIZE > FIXADDR_START);
1045 BUG_ON(VMALLOC_END > PKMAP_BASE);
052e7994 1046#endif
8550eb99
IM
1047 BUG_ON(VMALLOC_START > VMALLOC_END);
1048 BUG_ON((unsigned long)high_memory > VMALLOC_START);
052e7994 1049
1da177e4
LT
1050 if (boot_cpu_data.wp_works_ok < 0)
1051 test_wp_bit();
1052
61165d7a 1053 save_pg_dir();
1da177e4 1054 zap_low_mappings();
1da177e4
LT
1055}
1056
ad8f5797 1057#ifdef CONFIG_MEMORY_HOTPLUG
bc02af93 1058int arch_add_memory(int nid, u64 start, u64 size)
05039b92 1059{
7c7e9425 1060 struct pglist_data *pgdata = NODE_DATA(nid);
776ed98b 1061 struct zone *zone = pgdata->node_zones + ZONE_HIGHMEM;
05039b92
DH
1062 unsigned long start_pfn = start >> PAGE_SHIFT;
1063 unsigned long nr_pages = size >> PAGE_SHIFT;
1064
1065 return __add_pages(zone, start_pfn, nr_pages);
1066}
9d99aaa3 1067#endif
05039b92 1068
1da177e4
LT
1069/*
1070 * This function cannot be __init, since exceptions don't work in that
1071 * section. Put this after the callers, so that it cannot be inlined.
1072 */
8550eb99 1073static noinline int do_test_wp_bit(void)
1da177e4
LT
1074{
1075 char tmp_reg;
1076 int flag;
1077
1078 __asm__ __volatile__(
8550eb99
IM
1079 " movb %0, %1 \n"
1080 "1: movb %1, %0 \n"
1081 " xorl %2, %2 \n"
1da177e4 1082 "2: \n"
f832ff18 1083 _ASM_EXTABLE(1b,2b)
1da177e4
LT
1084 :"=m" (*(char *)fix_to_virt(FIX_WP_TEST)),
1085 "=q" (tmp_reg),
1086 "=r" (flag)
1087 :"2" (1)
1088 :"memory");
8550eb99 1089
1da177e4
LT
1090 return flag;
1091}
1092
63aaf308 1093#ifdef CONFIG_DEBUG_RODATA
edeed305
AV
1094const int rodata_test_data = 0xC3;
1095EXPORT_SYMBOL_GPL(rodata_test_data);
63aaf308 1096
63aaf308
AV
1097void mark_rodata_ro(void)
1098{
6fb14755
JB
1099 unsigned long start = PFN_ALIGN(_text);
1100 unsigned long size = PFN_ALIGN(_etext) - start;
63aaf308 1101
8f0f996e
SR
1102#ifndef CONFIG_DYNAMIC_FTRACE
1103 /* Dynamic tracing modifies the kernel text section */
4e4eee0e
MD
1104 set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
1105 printk(KERN_INFO "Write protecting the kernel text: %luk\n",
1106 size >> 10);
0c42f392
AK
1107
1108#ifdef CONFIG_CPA_DEBUG
4e4eee0e
MD
1109 printk(KERN_INFO "Testing CPA: Reverting %lx-%lx\n",
1110 start, start+size);
1111 set_pages_rw(virt_to_page(start), size>>PAGE_SHIFT);
0c42f392 1112
4e4eee0e
MD
1113 printk(KERN_INFO "Testing CPA: write protecting again\n");
1114 set_pages_ro(virt_to_page(start), size>>PAGE_SHIFT);
602033ed 1115#endif
8f0f996e
SR
1116#endif /* CONFIG_DYNAMIC_FTRACE */
1117
6fb14755
JB
1118 start += size;
1119 size = (unsigned long)__end_rodata - start;
6d238cc4 1120 set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
d7d119d7
IM
1121 printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
1122 size >> 10);
edeed305 1123 rodata_test();
63aaf308 1124
0c42f392 1125#ifdef CONFIG_CPA_DEBUG
d7d119d7 1126 printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, start + size);
6d238cc4 1127 set_pages_rw(virt_to_page(start), size >> PAGE_SHIFT);
0c42f392 1128
d7d119d7 1129 printk(KERN_INFO "Testing CPA: write protecting again\n");
6d238cc4 1130 set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
0c42f392 1131#endif
63aaf308
AV
1132}
1133#endif
1134
9a0b5817
GH
1135void free_init_pages(char *what, unsigned long begin, unsigned long end)
1136{
ee01f112
IM
1137#ifdef CONFIG_DEBUG_PAGEALLOC
1138 /*
1139 * If debugging page accesses then do not free this memory but
1140 * mark them not present - any buggy init-section access will
1141 * create a kernel page fault:
1142 */
1143 printk(KERN_INFO "debug: unmapping init memory %08lx..%08lx\n",
1144 begin, PAGE_ALIGN(end));
1145 set_memory_np(begin, (end - begin) >> PAGE_SHIFT);
1146#else
86f03989
IM
1147 unsigned long addr;
1148
3c1df68b
AV
1149 /*
1150 * We just marked the kernel text read only above, now that
1151 * we are going to free part of that, we need to make that
1152 * writeable first.
1153 */
1154 set_memory_rw(begin, (end - begin) >> PAGE_SHIFT);
1155
9a0b5817 1156 for (addr = begin; addr < end; addr += PAGE_SIZE) {
e3ebadd9
LT
1157 ClearPageReserved(virt_to_page(addr));
1158 init_page_count(virt_to_page(addr));
1159 memset((void *)addr, POISON_FREE_INITMEM, PAGE_SIZE);
1160 free_page(addr);
9a0b5817
GH
1161 totalram_pages++;
1162 }
6fb14755 1163 printk(KERN_INFO "Freeing %s: %luk freed\n", what, (end - begin) >> 10);
ee01f112 1164#endif
9a0b5817
GH
1165}
1166
1167void free_initmem(void)
1168{
1169 free_init_pages("unused kernel memory",
e3ebadd9
LT
1170 (unsigned long)(&__init_begin),
1171 (unsigned long)(&__init_end));
9a0b5817 1172}
63aaf308 1173
1da177e4
LT
1174#ifdef CONFIG_BLK_DEV_INITRD
1175void free_initrd_mem(unsigned long start, unsigned long end)
1176{
e3ebadd9 1177 free_init_pages("initrd memory", start, end);
1da177e4
LT
1178}
1179#endif
d2dbf343
YL
1180
1181int __init reserve_bootmem_generic(unsigned long phys, unsigned long len,
1182 int flags)
1183{
1184 return reserve_bootmem(phys, len, flags);
1185}