3 * Copyright (C) 1995 Linus Torvalds
5 * Support of BIGMEM added by Gerhard Wichert, Siemens AG, July 1999
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>
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>
24 #include <linux/pfn.h>
25 #include <linux/poison.h>
26 #include <linux/bootmem.h>
27 #include <linux/slab.h>
28 #include <linux/proc_fs.h>
29 #include <linux/memory_hotplug.h>
30 #include <linux/initrd.h>
31 #include <linux/cpumask.h>
34 #include <asm/processor.h>
35 #include <asm/system.h>
36 #include <asm/uaccess.h>
37 #include <asm/pgtable.h>
39 #include <asm/fixmap.h>
44 #include <asm/tlbflush.h>
45 #include <asm/pgalloc.h>
46 #include <asm/sections.h>
47 #include <asm/paravirt.h>
48 #include <asm/setup.h>
49 #include <asm/cacheflush.h>
51 unsigned int __VMALLOC_RESERVE = 128 << 20;
53 unsigned long max_pfn_mapped;
55 DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
56 unsigned long highstart_pfn, highend_pfn;
58 static noinline int do_test_wp_bit(void);
61 static unsigned long __initdata table_start;
62 static unsigned long __meminitdata table_end;
63 static unsigned long __meminitdata table_top;
65 static int __initdata after_init_bootmem;
67 static __init void *alloc_low_page(unsigned long *phys)
69 unsigned long pfn = table_end++;
73 panic("alloc_low_page: ran out of memory");
75 adr = __va(pfn * PAGE_SIZE);
76 memset(adr, 0, PAGE_SIZE);
77 *phys = pfn * PAGE_SIZE;
82 * Creates a middle page table and puts a pointer to it in the
83 * given global directory entry. This only returns the gd entry
84 * in non-PAE compilation mode, since the middle layer is folded.
86 static pmd_t * __init one_md_table_init(pgd_t *pgd)
93 if (!(pgd_val(*pgd) & _PAGE_PRESENT)) {
94 if (after_init_bootmem)
95 pmd_table = (pmd_t *)alloc_bootmem_low_pages(PAGE_SIZE);
97 pmd_table = (pmd_t *)alloc_low_page(&phys);
98 paravirt_alloc_pmd(&init_mm, __pa(pmd_table) >> PAGE_SHIFT);
99 set_pgd(pgd, __pgd(__pa(pmd_table) | _PAGE_PRESENT));
100 pud = pud_offset(pgd, 0);
101 BUG_ON(pmd_table != pmd_offset(pud, 0));
104 pud = pud_offset(pgd, 0);
105 pmd_table = pmd_offset(pud, 0);
111 * Create a page table and place a pointer to it in a middle page
114 static pte_t * __init one_page_table_init(pmd_t *pmd)
116 if (!(pmd_val(*pmd) & _PAGE_PRESENT)) {
117 pte_t *page_table = NULL;
119 if (after_init_bootmem) {
120 #ifdef CONFIG_DEBUG_PAGEALLOC
121 page_table = (pte_t *) alloc_bootmem_pages(PAGE_SIZE);
125 (pte_t *)alloc_bootmem_low_pages(PAGE_SIZE);
128 page_table = (pte_t *)alloc_low_page(&phys);
131 paravirt_alloc_pte(&init_mm, __pa(page_table) >> PAGE_SHIFT);
132 set_pmd(pmd, __pmd(__pa(page_table) | _PAGE_TABLE));
133 BUG_ON(page_table != pte_offset_kernel(pmd, 0));
136 return pte_offset_kernel(pmd, 0);
140 * This function initializes a certain range of kernel virtual memory
141 * with new bootmem page tables, everywhere page tables are missing in
144 * NOTE: The pagetables are allocated contiguous on the physical space
145 * so we can cache the place of the first one and move around without
146 * checking the pgd every time.
149 page_table_range_init(unsigned long start, unsigned long end, pgd_t *pgd_base)
151 int pgd_idx, pmd_idx;
157 pgd_idx = pgd_index(vaddr);
158 pmd_idx = pmd_index(vaddr);
159 pgd = pgd_base + pgd_idx;
161 for ( ; (pgd_idx < PTRS_PER_PGD) && (vaddr != end); pgd++, pgd_idx++) {
162 pmd = one_md_table_init(pgd);
163 pmd = pmd + pmd_index(vaddr);
164 for (; (pmd_idx < PTRS_PER_PMD) && (vaddr != end);
166 one_page_table_init(pmd);
174 static inline int is_kernel_text(unsigned long addr)
176 if (addr >= PAGE_OFFSET && addr <= (unsigned long)__init_end)
182 * This maps the physical memory to kernel virtual address space, a total
183 * of max_low_pfn pages, by creating page tables starting from address
186 static void __init kernel_physical_mapping_init(pgd_t *pgd_base,
187 unsigned long start_pfn,
188 unsigned long end_pfn,
191 int pgd_idx, pmd_idx, pte_ofs;
196 unsigned pages_2m = 0, pages_4k = 0;
202 pgd_idx = pgd_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
203 pgd = pgd_base + pgd_idx;
204 for (; pgd_idx < PTRS_PER_PGD; pgd++, pgd_idx++) {
205 pmd = one_md_table_init(pgd);
209 #ifdef CONFIG_X86_PAE
210 pmd_idx = pmd_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
215 for (; pmd_idx < PTRS_PER_PMD && pfn < end_pfn;
217 unsigned int addr = pfn * PAGE_SIZE + PAGE_OFFSET;
220 * Map with big pages if possible, otherwise
221 * create normal page tables:
225 pgprot_t prot = PAGE_KERNEL_LARGE;
227 addr2 = (pfn + PTRS_PER_PTE-1) * PAGE_SIZE +
228 PAGE_OFFSET + PAGE_SIZE-1;
230 if (is_kernel_text(addr) ||
231 is_kernel_text(addr2))
232 prot = PAGE_KERNEL_LARGE_EXEC;
235 set_pmd(pmd, pfn_pmd(pfn, prot));
240 pte = one_page_table_init(pmd);
242 pte_ofs = pte_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
244 for (; pte_ofs < PTRS_PER_PTE && pfn < end_pfn;
245 pte++, pfn++, pte_ofs++, addr += PAGE_SIZE) {
246 pgprot_t prot = PAGE_KERNEL;
248 if (is_kernel_text(addr))
249 prot = PAGE_KERNEL_EXEC;
252 set_pte(pte, pfn_pte(pfn, prot));
256 update_page_count(PG_LEVEL_2M, pages_2m);
257 update_page_count(PG_LEVEL_4K, pages_4k);
261 * devmem_is_allowed() checks to see if /dev/mem access to a certain address
262 * is valid. The argument is a physical page number.
265 * On x86, access has to be given to the first megabyte of ram because that area
266 * contains bios code and data regions used by X and dosemu and similar apps.
267 * Access has to be given to non-kernel-ram areas as well, these contain the PCI
268 * mmio resources as well as potential bios/acpi data regions.
270 int devmem_is_allowed(unsigned long pagenr)
274 if (!page_is_ram(pagenr))
279 #ifdef CONFIG_HIGHMEM
283 static inline pte_t *kmap_get_fixmap_pte(unsigned long vaddr)
285 return pte_offset_kernel(pmd_offset(pud_offset(pgd_offset_k(vaddr),
286 vaddr), vaddr), vaddr);
289 static void __init kmap_init(void)
291 unsigned long kmap_vstart;
294 * Cache the first kmap pte:
296 kmap_vstart = __fix_to_virt(FIX_KMAP_BEGIN);
297 kmap_pte = kmap_get_fixmap_pte(kmap_vstart);
299 kmap_prot = PAGE_KERNEL;
302 static void __init permanent_kmaps_init(pgd_t *pgd_base)
311 page_table_range_init(vaddr, vaddr + PAGE_SIZE*LAST_PKMAP, pgd_base);
313 pgd = swapper_pg_dir + pgd_index(vaddr);
314 pud = pud_offset(pgd, vaddr);
315 pmd = pmd_offset(pud, vaddr);
316 pte = pte_offset_kernel(pmd, vaddr);
317 pkmap_page_table = pte;
320 static void __init add_one_highpage_init(struct page *page, int pfn)
322 ClearPageReserved(page);
323 init_page_count(page);
328 struct add_highpages_data {
329 unsigned long start_pfn;
330 unsigned long end_pfn;
333 static int __init add_highpages_work_fn(unsigned long start_pfn,
334 unsigned long end_pfn, void *datax)
338 unsigned long final_start_pfn, final_end_pfn;
339 struct add_highpages_data *data;
341 data = (struct add_highpages_data *)datax;
343 final_start_pfn = max(start_pfn, data->start_pfn);
344 final_end_pfn = min(end_pfn, data->end_pfn);
345 if (final_start_pfn >= final_end_pfn)
348 for (node_pfn = final_start_pfn; node_pfn < final_end_pfn;
350 if (!pfn_valid(node_pfn))
352 page = pfn_to_page(node_pfn);
353 add_one_highpage_init(page, node_pfn);
360 void __init add_highpages_with_active_regions(int nid, unsigned long start_pfn,
361 unsigned long end_pfn)
363 struct add_highpages_data data;
365 data.start_pfn = start_pfn;
366 data.end_pfn = end_pfn;
368 work_with_active_regions(nid, add_highpages_work_fn, &data);
372 static void __init set_highmem_pages_init(void)
374 add_highpages_with_active_regions(0, highstart_pfn, highend_pfn);
376 totalram_pages += totalhigh_pages;
378 #endif /* !CONFIG_NUMA */
381 # define kmap_init() do { } while (0)
382 # define permanent_kmaps_init(pgd_base) do { } while (0)
383 # define set_highmem_pages_init() do { } while (0)
384 #endif /* CONFIG_HIGHMEM */
386 pteval_t __PAGE_KERNEL = _PAGE_KERNEL;
387 EXPORT_SYMBOL(__PAGE_KERNEL);
389 pteval_t __PAGE_KERNEL_EXEC = _PAGE_KERNEL_EXEC;
391 void __init native_pagetable_setup_start(pgd_t *base)
393 unsigned long pfn, va;
400 * Remove any mappings which extend past the end of physical
401 * memory from the boot time page table:
403 for (pfn = max_low_pfn + 1; pfn < 1<<(32-PAGE_SHIFT); pfn++) {
404 va = PAGE_OFFSET + (pfn<<PAGE_SHIFT);
405 pgd = base + pgd_index(va);
406 if (!pgd_present(*pgd))
409 pud = pud_offset(pgd, va);
410 pmd = pmd_offset(pud, va);
411 if (!pmd_present(*pmd))
414 pte = pte_offset_kernel(pmd, va);
415 if (!pte_present(*pte))
418 pte_clear(NULL, va, pte);
420 paravirt_alloc_pmd(&init_mm, __pa(base) >> PAGE_SHIFT);
423 void __init native_pagetable_setup_done(pgd_t *base)
428 * Build a proper pagetable for the kernel mappings. Up until this
429 * point, we've been running on some set of pagetables constructed by
432 * If we're booting on native hardware, this will be a pagetable
433 * constructed in arch/x86/kernel/head_32.S. The root of the
434 * pagetable will be swapper_pg_dir.
436 * If we're booting paravirtualized under a hypervisor, then there are
437 * more options: we may already be running PAE, and the pagetable may
438 * or may not be based in swapper_pg_dir. In any case,
439 * paravirt_pagetable_setup_start() will set up swapper_pg_dir
440 * appropriately for the rest of the initialization to work.
442 * In general, pagetable_init() assumes that the pagetable may already
443 * be partially populated, and so it avoids stomping on any existing
446 static void __init early_ioremap_page_table_range_init(pgd_t *pgd_base)
448 unsigned long vaddr, end;
451 * Fixed mappings, only the page table structure has to be
452 * created - mappings will be set by set_fixmap():
454 early_ioremap_clear();
455 vaddr = __fix_to_virt(__end_of_fixed_addresses - 1) & PMD_MASK;
456 end = (FIXADDR_TOP + PMD_SIZE - 1) & PMD_MASK;
457 page_table_range_init(vaddr, end, pgd_base);
458 early_ioremap_reset();
461 static void __init pagetable_init(void)
463 pgd_t *pgd_base = swapper_pg_dir;
465 paravirt_pagetable_setup_start(pgd_base);
467 permanent_kmaps_init(pgd_base);
469 paravirt_pagetable_setup_done(pgd_base);
472 #ifdef CONFIG_ACPI_SLEEP
474 * ACPI suspend needs this for resume, because things like the intel-agp
475 * driver might have split up a kernel 4MB mapping.
477 char swsusp_pg_dir[PAGE_SIZE]
478 __attribute__ ((aligned(PAGE_SIZE)));
480 static inline void save_pg_dir(void)
482 memcpy(swsusp_pg_dir, swapper_pg_dir, PAGE_SIZE);
484 #else /* !CONFIG_ACPI_SLEEP */
485 static inline void save_pg_dir(void)
488 #endif /* !CONFIG_ACPI_SLEEP */
490 void zap_low_mappings(void)
495 * Zap initial low-memory mappings.
497 * Note that "pgd_clear()" doesn't do it for
498 * us, because pgd_clear() is a no-op on i386.
500 for (i = 0; i < KERNEL_PGD_BOUNDARY; i++) {
501 #ifdef CONFIG_X86_PAE
502 set_pgd(swapper_pg_dir+i, __pgd(1 + __pa(empty_zero_page)));
504 set_pgd(swapper_pg_dir+i, __pgd(0));
512 pteval_t __supported_pte_mask __read_mostly = ~_PAGE_NX;
513 EXPORT_SYMBOL_GPL(__supported_pte_mask);
515 #ifdef CONFIG_X86_PAE
517 static int disable_nx __initdata;
522 * Control non executable mappings.
527 static int __init noexec_setup(char *str)
529 if (!str || !strcmp(str, "on")) {
531 __supported_pte_mask |= _PAGE_NX;
535 if (!strcmp(str, "off")) {
537 __supported_pte_mask &= ~_PAGE_NX;
545 early_param("noexec", noexec_setup);
547 static void __init set_nx(void)
549 unsigned int v[4], l, h;
551 if (cpu_has_pae && (cpuid_eax(0x80000000) > 0x80000001)) {
552 cpuid(0x80000001, &v[0], &v[1], &v[2], &v[3]);
554 if ((v[3] & (1 << 20)) && !disable_nx) {
555 rdmsr(MSR_EFER, l, h);
557 wrmsr(MSR_EFER, l, h);
559 __supported_pte_mask |= _PAGE_NX;
565 /* user-defined highmem size */
566 static unsigned int highmem_pages = -1;
569 * highmem=size forces highmem to be exactly 'size' bytes.
570 * This works even on boxes that have no highmem otherwise.
571 * This also works to reduce highmem size on bigger boxes.
573 static int __init parse_highmem(char *arg)
578 highmem_pages = memparse(arg, &arg) >> PAGE_SHIFT;
581 early_param("highmem", parse_highmem);
584 * Determine low and high memory ranges:
586 void __init find_low_pfn_range(void)
588 /* it could update max_pfn */
590 /* max_low_pfn is 0, we already have early_res support */
592 max_low_pfn = max_pfn;
593 if (max_low_pfn > MAXMEM_PFN) {
594 if (highmem_pages == -1)
595 highmem_pages = max_pfn - MAXMEM_PFN;
596 if (highmem_pages + MAXMEM_PFN < max_pfn)
597 max_pfn = MAXMEM_PFN + highmem_pages;
598 if (highmem_pages + MAXMEM_PFN > max_pfn) {
599 printk(KERN_WARNING "only %luMB highmem pages "
600 "available, ignoring highmem size of %uMB.\n",
601 pages_to_mb(max_pfn - MAXMEM_PFN),
602 pages_to_mb(highmem_pages));
605 max_low_pfn = MAXMEM_PFN;
606 #ifndef CONFIG_HIGHMEM
607 /* Maximum memory usable is what is directly addressable */
608 printk(KERN_WARNING "Warning only %ldMB will be used.\n",
610 if (max_pfn > MAX_NONPAE_PFN)
612 "Use a HIGHMEM64G enabled kernel.\n");
614 printk(KERN_WARNING "Use a HIGHMEM enabled kernel.\n");
615 max_pfn = MAXMEM_PFN;
616 #else /* !CONFIG_HIGHMEM */
617 #ifndef CONFIG_HIGHMEM64G
618 if (max_pfn > MAX_NONPAE_PFN) {
619 max_pfn = MAX_NONPAE_PFN;
620 printk(KERN_WARNING "Warning only 4GB will be used."
621 "Use a HIGHMEM64G enabled kernel.\n");
623 #endif /* !CONFIG_HIGHMEM64G */
624 #endif /* !CONFIG_HIGHMEM */
626 if (highmem_pages == -1)
628 #ifdef CONFIG_HIGHMEM
629 if (highmem_pages >= max_pfn) {
630 printk(KERN_ERR "highmem size specified (%uMB) is "
631 "bigger than pages available (%luMB)!.\n",
632 pages_to_mb(highmem_pages),
633 pages_to_mb(max_pfn));
637 if (max_low_pfn - highmem_pages <
638 64*1024*1024/PAGE_SIZE){
639 printk(KERN_ERR "highmem size %uMB results in "
640 "smaller than 64MB lowmem, ignoring it.\n"
641 , pages_to_mb(highmem_pages));
644 max_low_pfn -= highmem_pages;
648 printk(KERN_ERR "ignoring highmem size on non-highmem"
654 #ifndef CONFIG_NEED_MULTIPLE_NODES
655 void __init initmem_init(unsigned long start_pfn,
656 unsigned long end_pfn)
658 #ifdef CONFIG_HIGHMEM
659 highstart_pfn = highend_pfn = max_pfn;
660 if (max_pfn > max_low_pfn)
661 highstart_pfn = max_low_pfn;
662 memory_present(0, 0, highend_pfn);
663 printk(KERN_NOTICE "%ldMB HIGHMEM available.\n",
664 pages_to_mb(highend_pfn - highstart_pfn));
665 num_physpages = highend_pfn;
666 high_memory = (void *) __va(highstart_pfn * PAGE_SIZE - 1) + 1;
668 memory_present(0, 0, max_low_pfn);
669 num_physpages = max_low_pfn;
670 high_memory = (void *) __va(max_low_pfn * PAGE_SIZE - 1) + 1;
672 #ifdef CONFIG_FLATMEM
673 max_mapnr = num_physpages;
675 printk(KERN_NOTICE "%ldMB LOWMEM available.\n",
676 pages_to_mb(max_low_pfn));
678 setup_bootmem_allocator();
681 void __init zone_sizes_init(void)
683 unsigned long max_zone_pfns[MAX_NR_ZONES];
684 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
685 max_zone_pfns[ZONE_DMA] =
686 virt_to_phys((char *)MAX_DMA_ADDRESS) >> PAGE_SHIFT;
687 max_zone_pfns[ZONE_NORMAL] = max_low_pfn;
688 remove_all_active_ranges();
689 #ifdef CONFIG_HIGHMEM
690 max_zone_pfns[ZONE_HIGHMEM] = highend_pfn;
691 e820_register_active_regions(0, 0, highend_pfn);
693 e820_register_active_regions(0, 0, max_low_pfn);
696 free_area_init_nodes(max_zone_pfns);
698 #endif /* !CONFIG_NEED_MULTIPLE_NODES */
700 void __init setup_bootmem_allocator(void)
703 unsigned long bootmap_size, bootmap;
705 * Initialize the boot-time allocator (with low memory only):
707 bootmap_size = bootmem_bootmap_pages(max_low_pfn)<<PAGE_SHIFT;
708 bootmap = find_e820_area(min_low_pfn<<PAGE_SHIFT,
709 max_pfn_mapped<<PAGE_SHIFT, bootmap_size,
712 panic("Cannot find bootmem map of size %ld\n", bootmap_size);
713 reserve_early(bootmap, bootmap + bootmap_size, "BOOTMAP");
715 /* don't touch min_low_pfn */
716 bootmap_size = init_bootmem_node(NODE_DATA(0), bootmap >> PAGE_SHIFT,
717 min_low_pfn, max_low_pfn);
718 printk(KERN_INFO " mapped low ram: 0 - %08lx\n",
719 max_pfn_mapped<<PAGE_SHIFT);
720 printk(KERN_INFO " low ram: %08lx - %08lx\n",
721 min_low_pfn<<PAGE_SHIFT, max_low_pfn<<PAGE_SHIFT);
722 printk(KERN_INFO " bootmap %08lx - %08lx\n",
723 bootmap, bootmap + bootmap_size);
724 for_each_online_node(i)
725 free_bootmem_with_active_regions(i, max_low_pfn);
726 early_res_to_bootmem(0, max_low_pfn<<PAGE_SHIFT);
728 after_init_bootmem = 1;
731 static void __init find_early_table_space(unsigned long end)
733 unsigned long puds, pmds, ptes, tables, start;
735 puds = (end + PUD_SIZE - 1) >> PUD_SHIFT;
736 tables = PAGE_ALIGN(puds * sizeof(pud_t));
738 pmds = (end + PMD_SIZE - 1) >> PMD_SHIFT;
739 tables += PAGE_ALIGN(pmds * sizeof(pmd_t));
744 extra = end - ((end>>PMD_SHIFT) << PMD_SHIFT);
746 ptes = (extra + PAGE_SIZE - 1) >> PAGE_SHIFT;
748 ptes = (end + PAGE_SIZE - 1) >> PAGE_SHIFT;
750 tables += PAGE_ALIGN(ptes * sizeof(pte_t));
753 tables += PAGE_SIZE * 2;
756 * RED-PEN putting page tables only on node 0 could
757 * cause a hotspot and fill up ZONE_DMA. The page tables
758 * need roughly 0.5KB per GB.
761 table_start = find_e820_area(start, max_pfn_mapped<<PAGE_SHIFT,
763 if (table_start == -1UL)
764 panic("Cannot find space for the kernel page tables");
766 table_start >>= PAGE_SHIFT;
767 table_end = table_start;
768 table_top = table_start + (tables>>PAGE_SHIFT);
770 printk(KERN_DEBUG "kernel direct mapping tables up to %lx @ %lx-%lx\n",
771 end, table_start << PAGE_SHIFT,
772 (table_start << PAGE_SHIFT) + tables);
775 unsigned long __init_refok init_memory_mapping(unsigned long start,
778 pgd_t *pgd_base = swapper_pg_dir;
779 unsigned long start_pfn, end_pfn;
780 unsigned long big_page_start;
783 * Find space for the kernel direct mapping tables.
785 if (!after_init_bootmem)
786 find_early_table_space(end);
788 #ifdef CONFIG_X86_PAE
791 printk(KERN_INFO "NX (Execute Disable) protection: active\n");
794 /* Enable PSE if available */
796 set_in_cr4(X86_CR4_PSE);
798 /* Enable PGE if available */
800 set_in_cr4(X86_CR4_PGE);
801 __PAGE_KERNEL |= _PAGE_GLOBAL;
802 __PAGE_KERNEL_EXEC |= _PAGE_GLOBAL;
806 * Don't use a large page for the first 2/4MB of memory
807 * because there are often fixed size MTRRs in there
808 * and overlapping MTRRs into large pages can cause
811 big_page_start = PMD_SIZE;
813 if (start < big_page_start) {
814 start_pfn = start >> PAGE_SHIFT;
815 end_pfn = min(big_page_start>>PAGE_SHIFT, end>>PAGE_SHIFT);
817 /* head is not big page alignment ? */
818 start_pfn = start >> PAGE_SHIFT;
819 end_pfn = ((start + (PMD_SIZE - 1))>>PMD_SHIFT)
820 << (PMD_SHIFT - PAGE_SHIFT);
822 if (start_pfn < end_pfn)
823 kernel_physical_mapping_init(pgd_base, start_pfn, end_pfn, 0);
826 start_pfn = ((start + (PMD_SIZE - 1))>>PMD_SHIFT)
827 << (PMD_SHIFT - PAGE_SHIFT);
828 if (start_pfn < (big_page_start >> PAGE_SHIFT))
829 start_pfn = big_page_start >> PAGE_SHIFT;
830 end_pfn = (end>>PMD_SHIFT) << (PMD_SHIFT - PAGE_SHIFT);
831 if (start_pfn < end_pfn)
832 kernel_physical_mapping_init(pgd_base, start_pfn, end_pfn,
835 /* tail is not big page alignment ? */
837 if (start_pfn > (big_page_start>>PAGE_SHIFT)) {
838 end_pfn = end >> PAGE_SHIFT;
839 if (start_pfn < end_pfn)
840 kernel_physical_mapping_init(pgd_base, start_pfn,
844 early_ioremap_page_table_range_init(pgd_base);
846 load_cr3(swapper_pg_dir);
850 if (!after_init_bootmem)
851 reserve_early(table_start << PAGE_SHIFT,
852 table_end << PAGE_SHIFT, "PGTABLE");
854 return end >> PAGE_SHIFT;
859 * paging_init() sets up the page tables - note that the first 8MB are
860 * already mapped by head.S.
862 * This routines also unmaps the page at virtual kernel address 0, so
863 * that we can trap those pesky NULL-reference errors in the kernel.
865 void __init paging_init(void)
874 * NOTE: at this point the bootmem allocator is fully available.
879 paravirt_post_allocator_init();
883 * Test if the WP bit works in supervisor mode. It isn't supported on 386's
884 * and also on some strange 486's. All 586+'s are OK. This used to involve
885 * black magic jumps to work around some nasty CPU bugs, but fortunately the
886 * switch to using exceptions got rid of all that.
888 static void __init test_wp_bit(void)
891 "Checking if this processor honours the WP bit even in supervisor mode...");
893 /* Any page-aligned address will do, the test is non-destructive */
894 __set_fixmap(FIX_WP_TEST, __pa(&swapper_pg_dir), PAGE_READONLY);
895 boot_cpu_data.wp_works_ok = do_test_wp_bit();
896 clear_fixmap(FIX_WP_TEST);
898 if (!boot_cpu_data.wp_works_ok) {
899 printk(KERN_CONT "No.\n");
900 #ifdef CONFIG_X86_WP_WORKS_OK
902 "This kernel doesn't support CPU's with broken WP. Recompile it for a 386!");
905 printk(KERN_CONT "Ok.\n");
909 static struct kcore_list kcore_mem, kcore_vmalloc;
911 void __init mem_init(void)
913 int codesize, reservedpages, datasize, initsize;
916 #ifdef CONFIG_FLATMEM
919 /* this will put all low memory onto the freelists */
920 totalram_pages += free_all_bootmem();
923 for (tmp = 0; tmp < max_low_pfn; tmp++)
925 * Only count reserved RAM pages:
927 if (page_is_ram(tmp) && PageReserved(pfn_to_page(tmp)))
930 set_highmem_pages_init();
932 codesize = (unsigned long) &_etext - (unsigned long) &_text;
933 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
934 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
936 kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
937 kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
938 VMALLOC_END-VMALLOC_START);
940 printk(KERN_INFO "Memory: %luk/%luk available (%dk kernel code, "
941 "%dk reserved, %dk data, %dk init, %ldk highmem)\n",
942 (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
943 num_physpages << (PAGE_SHIFT-10),
945 reservedpages << (PAGE_SHIFT-10),
948 (unsigned long) (totalhigh_pages << (PAGE_SHIFT-10))
951 printk(KERN_INFO "virtual kernel memory layout:\n"
952 " fixmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
953 #ifdef CONFIG_HIGHMEM
954 " pkmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
956 " vmalloc : 0x%08lx - 0x%08lx (%4ld MB)\n"
957 " lowmem : 0x%08lx - 0x%08lx (%4ld MB)\n"
958 " .init : 0x%08lx - 0x%08lx (%4ld kB)\n"
959 " .data : 0x%08lx - 0x%08lx (%4ld kB)\n"
960 " .text : 0x%08lx - 0x%08lx (%4ld kB)\n",
961 FIXADDR_START, FIXADDR_TOP,
962 (FIXADDR_TOP - FIXADDR_START) >> 10,
964 #ifdef CONFIG_HIGHMEM
965 PKMAP_BASE, PKMAP_BASE+LAST_PKMAP*PAGE_SIZE,
966 (LAST_PKMAP*PAGE_SIZE) >> 10,
969 VMALLOC_START, VMALLOC_END,
970 (VMALLOC_END - VMALLOC_START) >> 20,
972 (unsigned long)__va(0), (unsigned long)high_memory,
973 ((unsigned long)high_memory - (unsigned long)__va(0)) >> 20,
975 (unsigned long)&__init_begin, (unsigned long)&__init_end,
976 ((unsigned long)&__init_end -
977 (unsigned long)&__init_begin) >> 10,
979 (unsigned long)&_etext, (unsigned long)&_edata,
980 ((unsigned long)&_edata - (unsigned long)&_etext) >> 10,
982 (unsigned long)&_text, (unsigned long)&_etext,
983 ((unsigned long)&_etext - (unsigned long)&_text) >> 10);
985 #ifdef CONFIG_HIGHMEM
986 BUG_ON(PKMAP_BASE + LAST_PKMAP*PAGE_SIZE > FIXADDR_START);
987 BUG_ON(VMALLOC_END > PKMAP_BASE);
989 BUG_ON(VMALLOC_START > VMALLOC_END);
990 BUG_ON((unsigned long)high_memory > VMALLOC_START);
992 if (boot_cpu_data.wp_works_ok < 0)
1000 #ifdef CONFIG_MEMORY_HOTPLUG
1001 int arch_add_memory(int nid, u64 start, u64 size)
1003 struct pglist_data *pgdata = NODE_DATA(nid);
1004 struct zone *zone = pgdata->node_zones + ZONE_HIGHMEM;
1005 unsigned long start_pfn = start >> PAGE_SHIFT;
1006 unsigned long nr_pages = size >> PAGE_SHIFT;
1008 return __add_pages(zone, start_pfn, nr_pages);
1013 * This function cannot be __init, since exceptions don't work in that
1014 * section. Put this after the callers, so that it cannot be inlined.
1016 static noinline int do_test_wp_bit(void)
1021 __asm__ __volatile__(
1027 :"=m" (*(char *)fix_to_virt(FIX_WP_TEST)),
1036 #ifdef CONFIG_DEBUG_RODATA
1037 const int rodata_test_data = 0xC3;
1038 EXPORT_SYMBOL_GPL(rodata_test_data);
1040 void mark_rodata_ro(void)
1042 unsigned long start = PFN_ALIGN(_text);
1043 unsigned long size = PFN_ALIGN(_etext) - start;
1045 set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
1046 printk(KERN_INFO "Write protecting the kernel text: %luk\n",
1049 #ifdef CONFIG_CPA_DEBUG
1050 printk(KERN_INFO "Testing CPA: Reverting %lx-%lx\n",
1052 set_pages_rw(virt_to_page(start), size>>PAGE_SHIFT);
1054 printk(KERN_INFO "Testing CPA: write protecting again\n");
1055 set_pages_ro(virt_to_page(start), size>>PAGE_SHIFT);
1058 size = (unsigned long)__end_rodata - start;
1059 set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
1060 printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
1064 #ifdef CONFIG_CPA_DEBUG
1065 printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, start + size);
1066 set_pages_rw(virt_to_page(start), size >> PAGE_SHIFT);
1068 printk(KERN_INFO "Testing CPA: write protecting again\n");
1069 set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
1074 void free_init_pages(char *what, unsigned long begin, unsigned long end)
1076 #ifdef CONFIG_DEBUG_PAGEALLOC
1078 * If debugging page accesses then do not free this memory but
1079 * mark them not present - any buggy init-section access will
1080 * create a kernel page fault:
1082 printk(KERN_INFO "debug: unmapping init memory %08lx..%08lx\n",
1083 begin, PAGE_ALIGN(end));
1084 set_memory_np(begin, (end - begin) >> PAGE_SHIFT);
1089 * We just marked the kernel text read only above, now that
1090 * we are going to free part of that, we need to make that
1093 set_memory_rw(begin, (end - begin) >> PAGE_SHIFT);
1095 for (addr = begin; addr < end; addr += PAGE_SIZE) {
1096 ClearPageReserved(virt_to_page(addr));
1097 init_page_count(virt_to_page(addr));
1098 memset((void *)addr, POISON_FREE_INITMEM, PAGE_SIZE);
1102 printk(KERN_INFO "Freeing %s: %luk freed\n", what, (end - begin) >> 10);
1106 void free_initmem(void)
1108 free_init_pages("unused kernel memory",
1109 (unsigned long)(&__init_begin),
1110 (unsigned long)(&__init_end));
1113 #ifdef CONFIG_BLK_DEV_INITRD
1114 void free_initrd_mem(unsigned long start, unsigned long end)
1116 free_init_pages("initrd memory", start, end);
1120 int __init reserve_bootmem_generic(unsigned long phys, unsigned long len,
1123 return reserve_bootmem(phys, len, flags);