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_low_pfn_mapped
;
54 unsigned long max_pfn_mapped
;
56 DEFINE_PER_CPU(struct mmu_gather
, mmu_gathers
);
57 unsigned long highstart_pfn
, highend_pfn
;
59 static noinline
int do_test_wp_bit(void);
62 static unsigned long __initdata table_start
;
63 static unsigned long __meminitdata table_end
;
64 static unsigned long __meminitdata table_top
;
66 static int __initdata after_init_bootmem
;
68 static __init
void *alloc_low_page(unsigned long *phys
)
70 unsigned long pfn
= table_end
++;
74 panic("alloc_low_page: ran out of memory");
76 adr
= __va(pfn
* PAGE_SIZE
);
77 memset(adr
, 0, PAGE_SIZE
);
78 *phys
= pfn
* PAGE_SIZE
;
83 * Creates a middle page table and puts a pointer to it in the
84 * given global directory entry. This only returns the gd entry
85 * in non-PAE compilation mode, since the middle layer is folded.
87 static pmd_t
* __init
one_md_table_init(pgd_t
*pgd
)
94 if (!(pgd_val(*pgd
) & _PAGE_PRESENT
)) {
95 if (after_init_bootmem
)
96 pmd_table
= (pmd_t
*)alloc_bootmem_low_pages(PAGE_SIZE
);
98 pmd_table
= (pmd_t
*)alloc_low_page(&phys
);
99 paravirt_alloc_pmd(&init_mm
, __pa(pmd_table
) >> PAGE_SHIFT
);
100 set_pgd(pgd
, __pgd(__pa(pmd_table
) | _PAGE_PRESENT
));
101 pud
= pud_offset(pgd
, 0);
102 BUG_ON(pmd_table
!= pmd_offset(pud
, 0));
105 pud
= pud_offset(pgd
, 0);
106 pmd_table
= pmd_offset(pud
, 0);
112 * Create a page table and place a pointer to it in a middle page
115 static pte_t
* __init
one_page_table_init(pmd_t
*pmd
)
117 if (!(pmd_val(*pmd
) & _PAGE_PRESENT
)) {
118 pte_t
*page_table
= NULL
;
120 if (after_init_bootmem
) {
121 #ifdef CONFIG_DEBUG_PAGEALLOC
122 page_table
= (pte_t
*) alloc_bootmem_pages(PAGE_SIZE
);
126 (pte_t
*)alloc_bootmem_low_pages(PAGE_SIZE
);
129 page_table
= (pte_t
*)alloc_low_page(&phys
);
132 paravirt_alloc_pte(&init_mm
, __pa(page_table
) >> PAGE_SHIFT
);
133 set_pmd(pmd
, __pmd(__pa(page_table
) | _PAGE_TABLE
));
134 BUG_ON(page_table
!= pte_offset_kernel(pmd
, 0));
137 return pte_offset_kernel(pmd
, 0);
141 * This function initializes a certain range of kernel virtual memory
142 * with new bootmem page tables, everywhere page tables are missing in
145 * NOTE: The pagetables are allocated contiguous on the physical space
146 * so we can cache the place of the first one and move around without
147 * checking the pgd every time.
150 page_table_range_init(unsigned long start
, unsigned long end
, pgd_t
*pgd_base
)
152 int pgd_idx
, pmd_idx
;
158 pgd_idx
= pgd_index(vaddr
);
159 pmd_idx
= pmd_index(vaddr
);
160 pgd
= pgd_base
+ pgd_idx
;
162 for ( ; (pgd_idx
< PTRS_PER_PGD
) && (vaddr
!= end
); pgd
++, pgd_idx
++) {
163 pmd
= one_md_table_init(pgd
);
164 pmd
= pmd
+ pmd_index(vaddr
);
165 for (; (pmd_idx
< PTRS_PER_PMD
) && (vaddr
!= end
);
167 one_page_table_init(pmd
);
175 static inline int is_kernel_text(unsigned long addr
)
177 if (addr
>= PAGE_OFFSET
&& addr
<= (unsigned long)__init_end
)
183 * This maps the physical memory to kernel virtual address space, a total
184 * of max_low_pfn pages, by creating page tables starting from address
187 static void __init
kernel_physical_mapping_init(pgd_t
*pgd_base
,
188 unsigned long start_pfn
,
189 unsigned long end_pfn
,
192 int pgd_idx
, pmd_idx
, pte_ofs
;
197 unsigned pages_2m
= 0, pages_4k
= 0;
203 pgd_idx
= pgd_index((pfn
<<PAGE_SHIFT
) + PAGE_OFFSET
);
204 pgd
= pgd_base
+ pgd_idx
;
205 for (; pgd_idx
< PTRS_PER_PGD
; pgd
++, pgd_idx
++) {
206 pmd
= one_md_table_init(pgd
);
210 #ifdef CONFIG_X86_PAE
211 pmd_idx
= pmd_index((pfn
<<PAGE_SHIFT
) + PAGE_OFFSET
);
216 for (; pmd_idx
< PTRS_PER_PMD
&& pfn
< end_pfn
;
218 unsigned int addr
= pfn
* PAGE_SIZE
+ PAGE_OFFSET
;
221 * Map with big pages if possible, otherwise
222 * create normal page tables:
226 pgprot_t prot
= PAGE_KERNEL_LARGE
;
228 addr2
= (pfn
+ PTRS_PER_PTE
-1) * PAGE_SIZE
+
229 PAGE_OFFSET
+ PAGE_SIZE
-1;
231 if (is_kernel_text(addr
) ||
232 is_kernel_text(addr2
))
233 prot
= PAGE_KERNEL_LARGE_EXEC
;
236 set_pmd(pmd
, pfn_pmd(pfn
, prot
));
241 pte
= one_page_table_init(pmd
);
243 pte_ofs
= pte_index((pfn
<<PAGE_SHIFT
) + PAGE_OFFSET
);
245 for (; pte_ofs
< PTRS_PER_PTE
&& pfn
< end_pfn
;
246 pte
++, pfn
++, pte_ofs
++, addr
+= PAGE_SIZE
) {
247 pgprot_t prot
= PAGE_KERNEL
;
249 if (is_kernel_text(addr
))
250 prot
= PAGE_KERNEL_EXEC
;
253 set_pte(pte
, pfn_pte(pfn
, prot
));
257 update_page_count(PG_LEVEL_2M
, pages_2m
);
258 update_page_count(PG_LEVEL_4K
, pages_4k
);
262 * devmem_is_allowed() checks to see if /dev/mem access to a certain address
263 * is valid. The argument is a physical page number.
266 * On x86, access has to be given to the first megabyte of ram because that area
267 * contains bios code and data regions used by X and dosemu and similar apps.
268 * Access has to be given to non-kernel-ram areas as well, these contain the PCI
269 * mmio resources as well as potential bios/acpi data regions.
271 int devmem_is_allowed(unsigned long pagenr
)
275 if (!page_is_ram(pagenr
))
280 #ifdef CONFIG_HIGHMEM
284 static inline pte_t
*kmap_get_fixmap_pte(unsigned long vaddr
)
286 return pte_offset_kernel(pmd_offset(pud_offset(pgd_offset_k(vaddr
),
287 vaddr
), vaddr
), vaddr
);
290 static void __init
kmap_init(void)
292 unsigned long kmap_vstart
;
295 * Cache the first kmap pte:
297 kmap_vstart
= __fix_to_virt(FIX_KMAP_BEGIN
);
298 kmap_pte
= kmap_get_fixmap_pte(kmap_vstart
);
300 kmap_prot
= PAGE_KERNEL
;
303 static void __init
permanent_kmaps_init(pgd_t
*pgd_base
)
312 page_table_range_init(vaddr
, vaddr
+ PAGE_SIZE
*LAST_PKMAP
, pgd_base
);
314 pgd
= swapper_pg_dir
+ pgd_index(vaddr
);
315 pud
= pud_offset(pgd
, vaddr
);
316 pmd
= pmd_offset(pud
, vaddr
);
317 pte
= pte_offset_kernel(pmd
, vaddr
);
318 pkmap_page_table
= pte
;
321 static void __init
add_one_highpage_init(struct page
*page
, int pfn
)
323 ClearPageReserved(page
);
324 init_page_count(page
);
329 struct add_highpages_data
{
330 unsigned long start_pfn
;
331 unsigned long end_pfn
;
334 static int __init
add_highpages_work_fn(unsigned long start_pfn
,
335 unsigned long end_pfn
, void *datax
)
339 unsigned long final_start_pfn
, final_end_pfn
;
340 struct add_highpages_data
*data
;
342 data
= (struct add_highpages_data
*)datax
;
344 final_start_pfn
= max(start_pfn
, data
->start_pfn
);
345 final_end_pfn
= min(end_pfn
, data
->end_pfn
);
346 if (final_start_pfn
>= final_end_pfn
)
349 for (node_pfn
= final_start_pfn
; node_pfn
< final_end_pfn
;
351 if (!pfn_valid(node_pfn
))
353 page
= pfn_to_page(node_pfn
);
354 add_one_highpage_init(page
, node_pfn
);
361 void __init
add_highpages_with_active_regions(int nid
, unsigned long start_pfn
,
362 unsigned long end_pfn
)
364 struct add_highpages_data data
;
366 data
.start_pfn
= start_pfn
;
367 data
.end_pfn
= end_pfn
;
369 work_with_active_regions(nid
, add_highpages_work_fn
, &data
);
373 static void __init
set_highmem_pages_init(void)
375 add_highpages_with_active_regions(0, highstart_pfn
, highend_pfn
);
377 totalram_pages
+= totalhigh_pages
;
379 #endif /* !CONFIG_NUMA */
382 # define kmap_init() do { } while (0)
383 # define permanent_kmaps_init(pgd_base) do { } while (0)
384 # define set_highmem_pages_init() do { } while (0)
385 #endif /* CONFIG_HIGHMEM */
387 void __init
native_pagetable_setup_start(pgd_t
*base
)
389 unsigned long pfn
, va
;
396 * Remove any mappings which extend past the end of physical
397 * memory from the boot time page table:
399 for (pfn
= max_low_pfn
+ 1; pfn
< 1<<(32-PAGE_SHIFT
); pfn
++) {
400 va
= PAGE_OFFSET
+ (pfn
<<PAGE_SHIFT
);
401 pgd
= base
+ pgd_index(va
);
402 if (!pgd_present(*pgd
))
405 pud
= pud_offset(pgd
, va
);
406 pmd
= pmd_offset(pud
, va
);
407 if (!pmd_present(*pmd
))
410 pte
= pte_offset_kernel(pmd
, va
);
411 if (!pte_present(*pte
))
414 pte_clear(NULL
, va
, pte
);
416 paravirt_alloc_pmd(&init_mm
, __pa(base
) >> PAGE_SHIFT
);
419 void __init
native_pagetable_setup_done(pgd_t
*base
)
424 * Build a proper pagetable for the kernel mappings. Up until this
425 * point, we've been running on some set of pagetables constructed by
428 * If we're booting on native hardware, this will be a pagetable
429 * constructed in arch/x86/kernel/head_32.S. The root of the
430 * pagetable will be swapper_pg_dir.
432 * If we're booting paravirtualized under a hypervisor, then there are
433 * more options: we may already be running PAE, and the pagetable may
434 * or may not be based in swapper_pg_dir. In any case,
435 * paravirt_pagetable_setup_start() will set up swapper_pg_dir
436 * appropriately for the rest of the initialization to work.
438 * In general, pagetable_init() assumes that the pagetable may already
439 * be partially populated, and so it avoids stomping on any existing
442 static void __init
early_ioremap_page_table_range_init(pgd_t
*pgd_base
)
444 unsigned long vaddr
, end
;
447 * Fixed mappings, only the page table structure has to be
448 * created - mappings will be set by set_fixmap():
450 early_ioremap_clear();
451 vaddr
= __fix_to_virt(__end_of_fixed_addresses
- 1) & PMD_MASK
;
452 end
= (FIXADDR_TOP
+ PMD_SIZE
- 1) & PMD_MASK
;
453 page_table_range_init(vaddr
, end
, pgd_base
);
454 early_ioremap_reset();
457 static void __init
pagetable_init(void)
459 pgd_t
*pgd_base
= swapper_pg_dir
;
461 permanent_kmaps_init(pgd_base
);
464 #ifdef CONFIG_ACPI_SLEEP
466 * ACPI suspend needs this for resume, because things like the intel-agp
467 * driver might have split up a kernel 4MB mapping.
469 char swsusp_pg_dir
[PAGE_SIZE
]
470 __attribute__ ((aligned(PAGE_SIZE
)));
472 static inline void save_pg_dir(void)
474 memcpy(swsusp_pg_dir
, swapper_pg_dir
, PAGE_SIZE
);
476 #else /* !CONFIG_ACPI_SLEEP */
477 static inline void save_pg_dir(void)
480 #endif /* !CONFIG_ACPI_SLEEP */
482 void zap_low_mappings(void)
487 * Zap initial low-memory mappings.
489 * Note that "pgd_clear()" doesn't do it for
490 * us, because pgd_clear() is a no-op on i386.
492 for (i
= 0; i
< KERNEL_PGD_BOUNDARY
; i
++) {
493 #ifdef CONFIG_X86_PAE
494 set_pgd(swapper_pg_dir
+i
, __pgd(1 + __pa(empty_zero_page
)));
496 set_pgd(swapper_pg_dir
+i
, __pgd(0));
504 pteval_t __supported_pte_mask __read_mostly
= ~(_PAGE_NX
| _PAGE_GLOBAL
);
505 EXPORT_SYMBOL_GPL(__supported_pte_mask
);
507 #ifdef CONFIG_X86_PAE
509 static int disable_nx __initdata
;
514 * Control non executable mappings.
519 static int __init
noexec_setup(char *str
)
521 if (!str
|| !strcmp(str
, "on")) {
523 __supported_pte_mask
|= _PAGE_NX
;
527 if (!strcmp(str
, "off")) {
529 __supported_pte_mask
&= ~_PAGE_NX
;
537 early_param("noexec", noexec_setup
);
539 static void __init
set_nx(void)
541 unsigned int v
[4], l
, h
;
543 if (cpu_has_pae
&& (cpuid_eax(0x80000000) > 0x80000001)) {
544 cpuid(0x80000001, &v
[0], &v
[1], &v
[2], &v
[3]);
546 if ((v
[3] & (1 << 20)) && !disable_nx
) {
547 rdmsr(MSR_EFER
, l
, h
);
549 wrmsr(MSR_EFER
, l
, h
);
551 __supported_pte_mask
|= _PAGE_NX
;
557 /* user-defined highmem size */
558 static unsigned int highmem_pages
= -1;
561 * highmem=size forces highmem to be exactly 'size' bytes.
562 * This works even on boxes that have no highmem otherwise.
563 * This also works to reduce highmem size on bigger boxes.
565 static int __init
parse_highmem(char *arg
)
570 highmem_pages
= memparse(arg
, &arg
) >> PAGE_SHIFT
;
573 early_param("highmem", parse_highmem
);
576 * Determine low and high memory ranges:
578 void __init
find_low_pfn_range(void)
580 /* it could update max_pfn */
582 /* max_low_pfn is 0, we already have early_res support */
584 max_low_pfn
= max_pfn
;
585 if (max_low_pfn
> MAXMEM_PFN
) {
586 if (highmem_pages
== -1)
587 highmem_pages
= max_pfn
- MAXMEM_PFN
;
588 if (highmem_pages
+ MAXMEM_PFN
< max_pfn
)
589 max_pfn
= MAXMEM_PFN
+ highmem_pages
;
590 if (highmem_pages
+ MAXMEM_PFN
> max_pfn
) {
591 printk(KERN_WARNING
"only %luMB highmem pages "
592 "available, ignoring highmem size of %uMB.\n",
593 pages_to_mb(max_pfn
- MAXMEM_PFN
),
594 pages_to_mb(highmem_pages
));
597 max_low_pfn
= MAXMEM_PFN
;
598 #ifndef CONFIG_HIGHMEM
599 /* Maximum memory usable is what is directly addressable */
600 printk(KERN_WARNING
"Warning only %ldMB will be used.\n",
602 if (max_pfn
> MAX_NONPAE_PFN
)
604 "Use a HIGHMEM64G enabled kernel.\n");
606 printk(KERN_WARNING
"Use a HIGHMEM enabled kernel.\n");
607 max_pfn
= MAXMEM_PFN
;
608 #else /* !CONFIG_HIGHMEM */
609 #ifndef CONFIG_HIGHMEM64G
610 if (max_pfn
> MAX_NONPAE_PFN
) {
611 max_pfn
= MAX_NONPAE_PFN
;
612 printk(KERN_WARNING
"Warning only 4GB will be used."
613 "Use a HIGHMEM64G enabled kernel.\n");
615 #endif /* !CONFIG_HIGHMEM64G */
616 #endif /* !CONFIG_HIGHMEM */
618 if (highmem_pages
== -1)
620 #ifdef CONFIG_HIGHMEM
621 if (highmem_pages
>= max_pfn
) {
622 printk(KERN_ERR
"highmem size specified (%uMB) is "
623 "bigger than pages available (%luMB)!.\n",
624 pages_to_mb(highmem_pages
),
625 pages_to_mb(max_pfn
));
629 if (max_low_pfn
- highmem_pages
<
630 64*1024*1024/PAGE_SIZE
){
631 printk(KERN_ERR
"highmem size %uMB results in "
632 "smaller than 64MB lowmem, ignoring it.\n"
633 , pages_to_mb(highmem_pages
));
636 max_low_pfn
-= highmem_pages
;
640 printk(KERN_ERR
"ignoring highmem size on non-highmem"
646 #ifndef CONFIG_NEED_MULTIPLE_NODES
647 void __init
initmem_init(unsigned long start_pfn
,
648 unsigned long end_pfn
)
650 #ifdef CONFIG_HIGHMEM
651 highstart_pfn
= highend_pfn
= max_pfn
;
652 if (max_pfn
> max_low_pfn
)
653 highstart_pfn
= max_low_pfn
;
654 memory_present(0, 0, highend_pfn
);
655 e820_register_active_regions(0, 0, highend_pfn
);
656 printk(KERN_NOTICE
"%ldMB HIGHMEM available.\n",
657 pages_to_mb(highend_pfn
- highstart_pfn
));
658 num_physpages
= highend_pfn
;
659 high_memory
= (void *) __va(highstart_pfn
* PAGE_SIZE
- 1) + 1;
661 memory_present(0, 0, max_low_pfn
);
662 e820_register_active_regions(0, 0, max_low_pfn
);
663 num_physpages
= max_low_pfn
;
664 high_memory
= (void *) __va(max_low_pfn
* PAGE_SIZE
- 1) + 1;
666 #ifdef CONFIG_FLATMEM
667 max_mapnr
= num_physpages
;
669 printk(KERN_NOTICE
"%ldMB LOWMEM available.\n",
670 pages_to_mb(max_low_pfn
));
672 setup_bootmem_allocator();
674 #endif /* !CONFIG_NEED_MULTIPLE_NODES */
676 static void __init
zone_sizes_init(void)
678 unsigned long max_zone_pfns
[MAX_NR_ZONES
];
679 memset(max_zone_pfns
, 0, sizeof(max_zone_pfns
));
680 max_zone_pfns
[ZONE_DMA
] =
681 virt_to_phys((char *)MAX_DMA_ADDRESS
) >> PAGE_SHIFT
;
682 max_zone_pfns
[ZONE_NORMAL
] = max_low_pfn
;
683 #ifdef CONFIG_HIGHMEM
684 max_zone_pfns
[ZONE_HIGHMEM
] = highend_pfn
;
687 free_area_init_nodes(max_zone_pfns
);
690 void __init
setup_bootmem_allocator(void)
693 unsigned long bootmap_size
, bootmap
;
695 * Initialize the boot-time allocator (with low memory only):
697 bootmap_size
= bootmem_bootmap_pages(max_low_pfn
)<<PAGE_SHIFT
;
698 bootmap
= find_e820_area(min_low_pfn
<<PAGE_SHIFT
,
699 max_pfn_mapped
<<PAGE_SHIFT
, bootmap_size
,
702 panic("Cannot find bootmem map of size %ld\n", bootmap_size
);
703 reserve_early(bootmap
, bootmap
+ bootmap_size
, "BOOTMAP");
705 /* don't touch min_low_pfn */
706 bootmap_size
= init_bootmem_node(NODE_DATA(0), bootmap
>> PAGE_SHIFT
,
707 min_low_pfn
, max_low_pfn
);
708 printk(KERN_INFO
" mapped low ram: 0 - %08lx\n",
709 max_pfn_mapped
<<PAGE_SHIFT
);
710 printk(KERN_INFO
" low ram: %08lx - %08lx\n",
711 min_low_pfn
<<PAGE_SHIFT
, max_low_pfn
<<PAGE_SHIFT
);
712 printk(KERN_INFO
" bootmap %08lx - %08lx\n",
713 bootmap
, bootmap
+ bootmap_size
);
714 for_each_online_node(i
)
715 free_bootmem_with_active_regions(i
, max_low_pfn
);
716 early_res_to_bootmem(0, max_low_pfn
<<PAGE_SHIFT
);
718 after_init_bootmem
= 1;
721 static void __init
find_early_table_space(unsigned long end
, int use_pse
)
723 unsigned long puds
, pmds
, ptes
, tables
, start
;
725 puds
= (end
+ PUD_SIZE
- 1) >> PUD_SHIFT
;
726 tables
= PAGE_ALIGN(puds
* sizeof(pud_t
));
728 pmds
= (end
+ PMD_SIZE
- 1) >> PMD_SHIFT
;
729 tables
+= PAGE_ALIGN(pmds
* sizeof(pmd_t
));
734 extra
= end
- ((end
>>PMD_SHIFT
) << PMD_SHIFT
);
736 ptes
= (extra
+ PAGE_SIZE
- 1) >> PAGE_SHIFT
;
738 ptes
= (end
+ PAGE_SIZE
- 1) >> PAGE_SHIFT
;
740 tables
+= PAGE_ALIGN(ptes
* sizeof(pte_t
));
743 tables
+= PAGE_SIZE
* 2;
746 * RED-PEN putting page tables only on node 0 could
747 * cause a hotspot and fill up ZONE_DMA. The page tables
748 * need roughly 0.5KB per GB.
751 table_start
= find_e820_area(start
, max_pfn_mapped
<<PAGE_SHIFT
,
753 if (table_start
== -1UL)
754 panic("Cannot find space for the kernel page tables");
756 table_start
>>= PAGE_SHIFT
;
757 table_end
= table_start
;
758 table_top
= table_start
+ (tables
>>PAGE_SHIFT
);
760 printk(KERN_DEBUG
"kernel direct mapping tables up to %lx @ %lx-%lx\n",
761 end
, table_start
<< PAGE_SHIFT
,
762 (table_start
<< PAGE_SHIFT
) + tables
);
765 unsigned long __init_refok
init_memory_mapping(unsigned long start
,
768 pgd_t
*pgd_base
= swapper_pg_dir
;
769 unsigned long start_pfn
, end_pfn
;
770 unsigned long big_page_start
;
771 #ifdef CONFIG_DEBUG_PAGEALLOC
773 * For CONFIG_DEBUG_PAGEALLOC, identity mapping will use small pages.
774 * This will simplify cpa(), which otherwise needs to support splitting
775 * large pages into small in interrupt context, etc.
779 int use_pse
= cpu_has_pse
;
783 * Find space for the kernel direct mapping tables.
785 if (!after_init_bootmem
)
786 find_early_table_space(end
, use_pse
);
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 __supported_pte_mask
|= _PAGE_GLOBAL
;
805 * Don't use a large page for the first 2/4MB of memory
806 * because there are often fixed size MTRRs in there
807 * and overlapping MTRRs into large pages can cause
810 big_page_start
= PMD_SIZE
;
812 if (start
< big_page_start
) {
813 start_pfn
= start
>> PAGE_SHIFT
;
814 end_pfn
= min(big_page_start
>>PAGE_SHIFT
, end
>>PAGE_SHIFT
);
816 /* head is not big page alignment ? */
817 start_pfn
= start
>> PAGE_SHIFT
;
818 end_pfn
= ((start
+ (PMD_SIZE
- 1))>>PMD_SHIFT
)
819 << (PMD_SHIFT
- PAGE_SHIFT
);
821 if (start_pfn
< end_pfn
)
822 kernel_physical_mapping_init(pgd_base
, start_pfn
, end_pfn
, 0);
825 start_pfn
= ((start
+ (PMD_SIZE
- 1))>>PMD_SHIFT
)
826 << (PMD_SHIFT
- PAGE_SHIFT
);
827 if (start_pfn
< (big_page_start
>> PAGE_SHIFT
))
828 start_pfn
= big_page_start
>> PAGE_SHIFT
;
829 end_pfn
= (end
>>PMD_SHIFT
) << (PMD_SHIFT
- PAGE_SHIFT
);
830 if (start_pfn
< end_pfn
)
831 kernel_physical_mapping_init(pgd_base
, start_pfn
, end_pfn
,
834 /* tail is not big page alignment ? */
836 if (start_pfn
> (big_page_start
>>PAGE_SHIFT
)) {
837 end_pfn
= end
>> PAGE_SHIFT
;
838 if (start_pfn
< end_pfn
)
839 kernel_physical_mapping_init(pgd_base
, start_pfn
,
843 early_ioremap_page_table_range_init(pgd_base
);
845 load_cr3(swapper_pg_dir
);
849 if (!after_init_bootmem
)
850 reserve_early(table_start
<< PAGE_SHIFT
,
851 table_end
<< PAGE_SHIFT
, "PGTABLE");
853 if (!after_init_bootmem
)
854 early_memtest(start
, end
);
856 return end
>> PAGE_SHIFT
;
861 * paging_init() sets up the page tables - note that the first 8MB are
862 * already mapped by head.S.
864 * This routines also unmaps the page at virtual kernel address 0, so
865 * that we can trap those pesky NULL-reference errors in the kernel.
867 void __init
paging_init(void)
876 * NOTE: at this point the bootmem allocator is fully available.
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 #ifndef CONFIG_DYNAMIC_FTRACE
1046 /* Dynamic tracing modifies the kernel text section */
1047 set_pages_ro(virt_to_page(start
), size
>> PAGE_SHIFT
);
1048 printk(KERN_INFO
"Write protecting the kernel text: %luk\n",
1051 #ifdef CONFIG_CPA_DEBUG
1052 printk(KERN_INFO
"Testing CPA: Reverting %lx-%lx\n",
1054 set_pages_rw(virt_to_page(start
), size
>>PAGE_SHIFT
);
1056 printk(KERN_INFO
"Testing CPA: write protecting again\n");
1057 set_pages_ro(virt_to_page(start
), size
>>PAGE_SHIFT
);
1059 #endif /* CONFIG_DYNAMIC_FTRACE */
1062 size
= (unsigned long)__end_rodata
- start
;
1063 set_pages_ro(virt_to_page(start
), size
>> PAGE_SHIFT
);
1064 printk(KERN_INFO
"Write protecting the kernel read-only data: %luk\n",
1068 #ifdef CONFIG_CPA_DEBUG
1069 printk(KERN_INFO
"Testing CPA: undo %lx-%lx\n", start
, start
+ size
);
1070 set_pages_rw(virt_to_page(start
), size
>> PAGE_SHIFT
);
1072 printk(KERN_INFO
"Testing CPA: write protecting again\n");
1073 set_pages_ro(virt_to_page(start
), size
>> PAGE_SHIFT
);
1078 void free_init_pages(char *what
, unsigned long begin
, unsigned long end
)
1080 #ifdef CONFIG_DEBUG_PAGEALLOC
1082 * If debugging page accesses then do not free this memory but
1083 * mark them not present - any buggy init-section access will
1084 * create a kernel page fault:
1086 printk(KERN_INFO
"debug: unmapping init memory %08lx..%08lx\n",
1087 begin
, PAGE_ALIGN(end
));
1088 set_memory_np(begin
, (end
- begin
) >> PAGE_SHIFT
);
1093 * We just marked the kernel text read only above, now that
1094 * we are going to free part of that, we need to make that
1097 set_memory_rw(begin
, (end
- begin
) >> PAGE_SHIFT
);
1099 for (addr
= begin
; addr
< end
; addr
+= PAGE_SIZE
) {
1100 ClearPageReserved(virt_to_page(addr
));
1101 init_page_count(virt_to_page(addr
));
1102 memset((void *)addr
, POISON_FREE_INITMEM
, PAGE_SIZE
);
1106 printk(KERN_INFO
"Freeing %s: %luk freed\n", what
, (end
- begin
) >> 10);
1110 void free_initmem(void)
1112 free_init_pages("unused kernel memory",
1113 (unsigned long)(&__init_begin
),
1114 (unsigned long)(&__init_end
));
1117 #ifdef CONFIG_BLK_DEV_INITRD
1118 void free_initrd_mem(unsigned long start
, unsigned long end
)
1120 free_init_pages("initrd memory", start
, end
);
1124 int __init
reserve_bootmem_generic(unsigned long phys
, unsigned long len
,
1127 return reserve_bootmem(phys
, len
, flags
);