blob: 60ec1d08ff24b6a03917e957d707b183b1b776e6 [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>
Jan Beulich6fb14752007-05-02 19:27:10 +020024#include <linux/pfn.h>
Randy Dunlapc9cf5522006-06-27 02:53:52 -070025#include <linux/poison.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/bootmem.h>
27#include <linux/slab.h>
28#include <linux/proc_fs.h>
Dave Hansen05039b92005-10-29 18:16:57 -070029#include <linux/memory_hotplug.h>
Adrian Bunk27d99f72005-11-13 16:06:51 -080030#include <linux/initrd.h>
Shaohua Li55b23552006-06-23 02:04:49 -070031#include <linux/cpumask.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
H. Peter Anvinf832ff12008-02-04 16:47:58 +010033#include <asm/asm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#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>
Ingo Molnar8550eb92008-01-30 13:34:10 +010042#include <asm/bugs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <asm/tlb.h>
44#include <asm/tlbflush.h>
Jeremy Fitzhardingea5a19c62008-01-30 13:33:39 +010045#include <asm/pgalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <asm/sections.h>
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +020047#include <asm/paravirt.h>
Ian Campbell551889a2008-02-09 23:24:09 +010048#include <asm/setup.h>
Harvey Harrison7bfeab92008-02-12 12:12:01 -080049#include <asm/cacheflush.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51unsigned int __VMALLOC_RESERVE = 128 << 20;
52
Yinghai Luf361a452008-07-10 20:38:26 -070053unsigned long max_low_pfn_mapped;
Thomas Gleixner67794292008-03-21 21:27:10 +010054unsigned long max_pfn_mapped;
Andi Kleen7d1116a2008-03-12 03:53:27 +010055
Linus Torvalds1da177e2005-04-16 15:20:36 -070056DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
57unsigned long highstart_pfn, highend_pfn;
58
Ingo Molnar8550eb92008-01-30 13:34:10 +010059static noinline int do_test_wp_bit(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Yinghai Lu4e296842008-06-24 12:18:14 -070061
62static unsigned long __initdata table_start;
63static unsigned long __meminitdata table_end;
64static unsigned long __meminitdata table_top;
65
66static int __initdata after_init_bootmem;
67
68static __init void *alloc_low_page(unsigned long *phys)
69{
70 unsigned long pfn = table_end++;
71 void *adr;
72
73 if (pfn >= table_top)
74 panic("alloc_low_page: ran out of memory");
75
76 adr = __va(pfn * PAGE_SIZE);
77 memset(adr, 0, PAGE_SIZE);
78 *phys = pfn * PAGE_SIZE;
79 return adr;
80}
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082/*
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.
86 */
87static pmd_t * __init one_md_table_init(pgd_t *pgd)
88{
89 pud_t *pud;
90 pmd_t *pmd_table;
Ingo Molnar8550eb92008-01-30 13:34:10 +010091
Linus Torvalds1da177e2005-04-16 15:20:36 -070092#ifdef CONFIG_X86_PAE
Yinghai Lu4e296842008-06-24 12:18:14 -070093 unsigned long phys;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +020094 if (!(pgd_val(*pgd) & _PAGE_PRESENT)) {
Yinghai Lu4e296842008-06-24 12:18:14 -070095 if (after_init_bootmem)
96 pmd_table = (pmd_t *)alloc_bootmem_low_pages(PAGE_SIZE);
97 else
98 pmd_table = (pmd_t *)alloc_low_page(&phys);
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -070099 paravirt_alloc_pmd(&init_mm, __pa(pmd_table) >> PAGE_SHIFT);
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200100 set_pgd(pgd, __pgd(__pa(pmd_table) | _PAGE_PRESENT));
101 pud = pud_offset(pgd, 0);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100102 BUG_ON(pmd_table != pmd_offset(pud, 0));
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200103 }
104#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 pud = pud_offset(pgd, 0);
106 pmd_table = pmd_offset(pud, 0);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 return pmd_table;
109}
110
111/*
112 * Create a page table and place a pointer to it in a middle page
Ingo Molnar8550eb92008-01-30 13:34:10 +0100113 * directory entry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 */
115static pte_t * __init one_page_table_init(pmd_t *pmd)
116{
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200117 if (!(pmd_val(*pmd) & _PAGE_PRESENT)) {
Ingo Molnar509a80c2007-10-17 18:04:34 +0200118 pte_t *page_table = NULL;
119
Yinghai Lu4e296842008-06-24 12:18:14 -0700120 if (after_init_bootmem) {
Ingo Molnar509a80c2007-10-17 18:04:34 +0200121#ifdef CONFIG_DEBUG_PAGEALLOC
Yinghai Lu4e296842008-06-24 12:18:14 -0700122 page_table = (pte_t *) alloc_bootmem_pages(PAGE_SIZE);
Ingo Molnar509a80c2007-10-17 18:04:34 +0200123#endif
Yinghai Lu4e296842008-06-24 12:18:14 -0700124 if (!page_table)
125 page_table =
Ingo Molnar509a80c2007-10-17 18:04:34 +0200126 (pte_t *)alloc_bootmem_low_pages(PAGE_SIZE);
Yinghai Lu4e296842008-06-24 12:18:14 -0700127 } else {
128 unsigned long phys;
129 page_table = (pte_t *)alloc_low_page(&phys);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100130 }
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200131
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700132 paravirt_alloc_pte(&init_mm, __pa(page_table) >> PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 set_pmd(pmd, __pmd(__pa(page_table) | _PAGE_TABLE));
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200134 BUG_ON(page_table != pte_offset_kernel(pmd, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 }
Ingo Molnar509a80c2007-10-17 18:04:34 +0200136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 return pte_offset_kernel(pmd, 0);
138}
139
140/*
Ingo Molnar8550eb92008-01-30 13:34:10 +0100141 * This function initializes a certain range of kernel virtual memory
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 * with new bootmem page tables, everywhere page tables are missing in
143 * the given range.
Ingo Molnar8550eb92008-01-30 13:34:10 +0100144 *
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 * checking the pgd every time.
148 */
Ingo Molnar8550eb92008-01-30 13:34:10 +0100149static void __init
150page_table_range_init(unsigned long start, unsigned long end, pgd_t *pgd_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 int pgd_idx, pmd_idx;
153 unsigned long vaddr;
Ingo Molnar8550eb92008-01-30 13:34:10 +0100154 pgd_t *pgd;
155 pmd_t *pmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157 vaddr = start;
158 pgd_idx = pgd_index(vaddr);
159 pmd_idx = pmd_index(vaddr);
160 pgd = pgd_base + pgd_idx;
161
162 for ( ; (pgd_idx < PTRS_PER_PGD) && (vaddr != end); pgd++, pgd_idx++) {
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200163 pmd = one_md_table_init(pgd);
164 pmd = pmd + pmd_index(vaddr);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100165 for (; (pmd_idx < PTRS_PER_PMD) && (vaddr != end);
166 pmd++, pmd_idx++) {
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200167 one_page_table_init(pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169 vaddr += PMD_SIZE;
170 }
171 pmd_idx = 0;
172 }
173}
174
175static inline int is_kernel_text(unsigned long addr)
176{
177 if (addr >= PAGE_OFFSET && addr <= (unsigned long)__init_end)
178 return 1;
179 return 0;
180}
181
182/*
Ingo Molnar8550eb92008-01-30 13:34:10 +0100183 * 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
185 * PAGE_OFFSET:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 */
Yinghai Lu4e296842008-06-24 12:18:14 -0700187static void __init kernel_physical_mapping_init(pgd_t *pgd_base,
Yinghai Lua04ad822008-06-29 00:39:06 -0700188 unsigned long start_pfn,
189 unsigned long end_pfn,
190 int use_pse)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
Ingo Molnar8550eb92008-01-30 13:34:10 +0100192 int pgd_idx, pmd_idx, pte_ofs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 unsigned long pfn;
194 pgd_t *pgd;
195 pmd_t *pmd;
196 pte_t *pte;
Andi Kleence0c0e52008-05-02 11:46:49 +0200197 unsigned pages_2m = 0, pages_4k = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Yinghai Lua04ad822008-06-29 00:39:06 -0700199 if (!cpu_has_pse)
200 use_pse = 0;
201
202 pfn = start_pfn;
203 pgd_idx = pgd_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 pgd = pgd_base + pgd_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 for (; pgd_idx < PTRS_PER_PGD; pgd++, pgd_idx++) {
206 pmd = one_md_table_init(pgd);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100207
Yinghai Lua04ad822008-06-29 00:39:06 -0700208 if (pfn >= end_pfn)
209 continue;
210#ifdef CONFIG_X86_PAE
211 pmd_idx = pmd_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
212 pmd += pmd_idx;
213#else
214 pmd_idx = 0;
215#endif
216 for (; pmd_idx < PTRS_PER_PMD && pfn < end_pfn;
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100217 pmd++, pmd_idx++) {
Ingo Molnar8550eb92008-01-30 13:34:10 +0100218 unsigned int addr = pfn * PAGE_SIZE + PAGE_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Ingo Molnar8550eb92008-01-30 13:34:10 +0100220 /*
221 * Map with big pages if possible, otherwise
222 * create normal page tables:
223 */
Yinghai Lua04ad822008-06-29 00:39:06 -0700224 if (use_pse) {
Ingo Molnar8550eb92008-01-30 13:34:10 +0100225 unsigned int addr2;
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100226 pgprot_t prot = PAGE_KERNEL_LARGE;
227
Ingo Molnar8550eb92008-01-30 13:34:10 +0100228 addr2 = (pfn + PTRS_PER_PTE-1) * PAGE_SIZE +
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100229 PAGE_OFFSET + PAGE_SIZE-1;
230
Ingo Molnar8550eb92008-01-30 13:34:10 +0100231 if (is_kernel_text(addr) ||
232 is_kernel_text(addr2))
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100233 prot = PAGE_KERNEL_LARGE_EXEC;
234
Andi Kleence0c0e52008-05-02 11:46:49 +0200235 pages_2m++;
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100236 set_pmd(pmd, pfn_pmd(pfn, prot));
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 pfn += PTRS_PER_PTE;
Ingo Molnar8550eb92008-01-30 13:34:10 +0100239 continue;
240 }
241 pte = one_page_table_init(pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Yinghai Lua04ad822008-06-29 00:39:06 -0700243 pte_ofs = pte_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
244 pte += pte_ofs;
245 for (; pte_ofs < PTRS_PER_PTE && pfn < end_pfn;
Ingo Molnar8550eb92008-01-30 13:34:10 +0100246 pte++, pfn++, pte_ofs++, addr += PAGE_SIZE) {
247 pgprot_t prot = PAGE_KERNEL;
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100248
Ingo Molnar8550eb92008-01-30 13:34:10 +0100249 if (is_kernel_text(addr))
250 prot = PAGE_KERNEL_EXEC;
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100251
Andi Kleence0c0e52008-05-02 11:46:49 +0200252 pages_4k++;
Ingo Molnar8550eb92008-01-30 13:34:10 +0100253 set_pte(pte, pfn_pte(pfn, prot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 }
255 }
256 }
Andi Kleence0c0e52008-05-02 11:46:49 +0200257 update_page_count(PG_LEVEL_2M, pages_2m);
258 update_page_count(PG_LEVEL_4K, pages_4k);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259}
260
Arjan van de Venae531c22008-04-24 23:40:47 +0200261/*
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.
264 *
265 *
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.
270 */
271int devmem_is_allowed(unsigned long pagenr)
272{
273 if (pagenr <= 256)
274 return 1;
275 if (!page_is_ram(pagenr))
276 return 1;
277 return 0;
278}
279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280#ifdef CONFIG_HIGHMEM
281pte_t *kmap_pte;
282pgprot_t kmap_prot;
283
Ingo Molnar8550eb92008-01-30 13:34:10 +0100284static inline pte_t *kmap_get_fixmap_pte(unsigned long vaddr)
285{
286 return pte_offset_kernel(pmd_offset(pud_offset(pgd_offset_k(vaddr),
287 vaddr), vaddr), vaddr);
288}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
290static void __init kmap_init(void)
291{
292 unsigned long kmap_vstart;
293
Ingo Molnar8550eb92008-01-30 13:34:10 +0100294 /*
295 * Cache the first kmap pte:
296 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 kmap_vstart = __fix_to_virt(FIX_KMAP_BEGIN);
298 kmap_pte = kmap_get_fixmap_pte(kmap_vstart);
299
300 kmap_prot = PAGE_KERNEL;
301}
302
303static void __init permanent_kmaps_init(pgd_t *pgd_base)
304{
Ingo Molnar8550eb92008-01-30 13:34:10 +0100305 unsigned long vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 pgd_t *pgd;
307 pud_t *pud;
308 pmd_t *pmd;
309 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311 vaddr = PKMAP_BASE;
312 page_table_range_init(vaddr, vaddr + PAGE_SIZE*LAST_PKMAP, pgd_base);
313
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);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100318 pkmap_page_table = pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319}
320
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700321static void __init add_one_highpage_init(struct page *page, int pfn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700323 ClearPageReserved(page);
324 init_page_count(page);
325 __free_page(page);
326 totalhigh_pages++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327}
328
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700329struct add_highpages_data {
330 unsigned long start_pfn;
331 unsigned long end_pfn;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700332};
333
Yinghai Lud52d53b2008-06-16 20:10:55 -0700334static int __init add_highpages_work_fn(unsigned long start_pfn,
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700335 unsigned long end_pfn, void *datax)
336{
337 int node_pfn;
338 struct page *page;
339 unsigned long final_start_pfn, final_end_pfn;
340 struct add_highpages_data *data;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700341
342 data = (struct add_highpages_data *)datax;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700343
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)
Yinghai Lud52d53b2008-06-16 20:10:55 -0700347 return 0;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700348
349 for (node_pfn = final_start_pfn; node_pfn < final_end_pfn;
350 node_pfn++) {
351 if (!pfn_valid(node_pfn))
352 continue;
353 page = pfn_to_page(node_pfn);
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700354 add_one_highpage_init(page, node_pfn);
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700355 }
356
Yinghai Lud52d53b2008-06-16 20:10:55 -0700357 return 0;
358
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700359}
360
361void __init add_highpages_with_active_regions(int nid, unsigned long start_pfn,
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700362 unsigned long end_pfn)
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700363{
364 struct add_highpages_data data;
365
366 data.start_pfn = start_pfn;
367 data.end_pfn = end_pfn;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700368
369 work_with_active_regions(nid, add_highpages_work_fn, &data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370}
371
Ingo Molnar8550eb92008-01-30 13:34:10 +0100372#ifndef CONFIG_NUMA
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700373static void __init set_highmem_pages_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700375 add_highpages_with_active_regions(0, highstart_pfn, highend_pfn);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 totalram_pages += totalhigh_pages;
378}
Ingo Molnar8550eb92008-01-30 13:34:10 +0100379#endif /* !CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
381#else
Ingo Molnar8550eb92008-01-30 13:34:10 +0100382# define kmap_init() do { } while (0)
383# define permanent_kmaps_init(pgd_base) do { } while (0)
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700384# define set_highmem_pages_init() do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385#endif /* CONFIG_HIGHMEM */
386
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200387void __init native_pagetable_setup_start(pgd_t *base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
Ian Campbell551889a2008-02-09 23:24:09 +0100389 unsigned long pfn, va;
390 pgd_t *pgd;
391 pud_t *pud;
392 pmd_t *pmd;
393 pte_t *pte;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200394
395 /*
Ian Campbell551889a2008-02-09 23:24:09 +0100396 * Remove any mappings which extend past the end of physical
397 * memory from the boot time page table:
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200398 */
Ian Campbell551889a2008-02-09 23:24:09 +0100399 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))
403 break;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200404
Ian Campbell551889a2008-02-09 23:24:09 +0100405 pud = pud_offset(pgd, va);
406 pmd = pmd_offset(pud, va);
407 if (!pmd_present(*pmd))
408 break;
409
410 pte = pte_offset_kernel(pmd, va);
411 if (!pte_present(*pte))
412 break;
413
414 pte_clear(NULL, va, pte);
415 }
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700416 paravirt_alloc_pmd(&init_mm, __pa(base) >> PAGE_SHIFT);
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200417}
418
419void __init native_pagetable_setup_done(pgd_t *base)
420{
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200421}
422
423/*
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
426 * the boot process.
427 *
428 * If we're booting on native hardware, this will be a pagetable
Ian Campbell551889a2008-02-09 23:24:09 +0100429 * constructed in arch/x86/kernel/head_32.S. The root of the
430 * pagetable will be swapper_pg_dir.
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200431 *
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.
437 *
438 * In general, pagetable_init() assumes that the pagetable may already
439 * be partially populated, and so it avoids stomping on any existing
440 * mappings.
441 */
Yinghai Lue7b37892008-06-25 21:51:28 -0700442static void __init early_ioremap_page_table_range_init(pgd_t *pgd_base)
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200443{
Ingo Molnar8550eb92008-01-30 13:34:10 +0100444 unsigned long vaddr, end;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 /*
447 * Fixed mappings, only the page table structure has to be
448 * created - mappings will be set by set_fixmap():
449 */
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100450 early_ioremap_clear();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 vaddr = __fix_to_virt(__end_of_fixed_addresses - 1) & PMD_MASK;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200452 end = (FIXADDR_TOP + PMD_SIZE - 1) & PMD_MASK;
453 page_table_range_init(vaddr, end, pgd_base);
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100454 early_ioremap_reset();
Yinghai Lue7b37892008-06-25 21:51:28 -0700455}
456
457static void __init pagetable_init(void)
458{
459 pgd_t *pgd_base = swapper_pg_dir;
460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 permanent_kmaps_init(pgd_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462}
463
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100464#ifdef CONFIG_ACPI_SLEEP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465/*
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100466 * ACPI suspend needs this for resume, because things like the intel-agp
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 * driver might have split up a kernel 4MB mapping.
468 */
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100469char swsusp_pg_dir[PAGE_SIZE]
Ingo Molnar8550eb92008-01-30 13:34:10 +0100470 __attribute__ ((aligned(PAGE_SIZE)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
472static inline void save_pg_dir(void)
473{
474 memcpy(swsusp_pg_dir, swapper_pg_dir, PAGE_SIZE);
475}
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100476#else /* !CONFIG_ACPI_SLEEP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477static inline void save_pg_dir(void)
478{
479}
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100480#endif /* !CONFIG_ACPI_SLEEP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Ingo Molnar8550eb92008-01-30 13:34:10 +0100482void zap_low_mappings(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
484 int i;
485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 /*
487 * Zap initial low-memory mappings.
488 *
489 * Note that "pgd_clear()" doesn't do it for
490 * us, because pgd_clear() is a no-op on i386.
491 */
Jeremy Fitzhardinge68db0652008-03-17 16:37:13 -0700492 for (i = 0; i < KERNEL_PGD_BOUNDARY; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493#ifdef CONFIG_X86_PAE
494 set_pgd(swapper_pg_dir+i, __pgd(1 + __pa(empty_zero_page)));
495#else
496 set_pgd(swapper_pg_dir+i, __pgd(0));
497#endif
Ingo Molnar8550eb92008-01-30 13:34:10 +0100498 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 flush_tlb_all();
500}
501
Ingo Molnar8550eb92008-01-30 13:34:10 +0100502int nx_enabled;
Jan Beulichd5321ab2007-07-21 17:10:26 +0200503
Jeremy Fitzhardingeef5e94a2008-07-01 16:46:36 -0700504pteval_t __supported_pte_mask __read_mostly = ~(_PAGE_NX | _PAGE_GLOBAL);
Jeremy Fitzhardinge6fdc05d2008-01-30 13:32:57 +0100505EXPORT_SYMBOL_GPL(__supported_pte_mask);
506
Jan Beulichd5321ab2007-07-21 17:10:26 +0200507#ifdef CONFIG_X86_PAE
508
Ingo Molnar8550eb92008-01-30 13:34:10 +0100509static int disable_nx __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
511/*
512 * noexec = on|off
513 *
514 * Control non executable mappings.
515 *
516 * on Enable
517 * off Disable
518 */
Rusty Russell1a3f2392006-09-26 10:52:32 +0200519static int __init noexec_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520{
Rusty Russell1a3f2392006-09-26 10:52:32 +0200521 if (!str || !strcmp(str, "on")) {
522 if (cpu_has_nx) {
523 __supported_pte_mask |= _PAGE_NX;
524 disable_nx = 0;
525 }
Ingo Molnar8550eb92008-01-30 13:34:10 +0100526 } else {
527 if (!strcmp(str, "off")) {
528 disable_nx = 1;
529 __supported_pte_mask &= ~_PAGE_NX;
530 } else {
531 return -EINVAL;
532 }
533 }
Rusty Russell1a3f2392006-09-26 10:52:32 +0200534
535 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536}
Rusty Russell1a3f2392006-09-26 10:52:32 +0200537early_param("noexec", noexec_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539static void __init set_nx(void)
540{
541 unsigned int v[4], l, h;
542
543 if (cpu_has_pae && (cpuid_eax(0x80000000) > 0x80000001)) {
544 cpuid(0x80000001, &v[0], &v[1], &v[2], &v[3]);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 if ((v[3] & (1 << 20)) && !disable_nx) {
547 rdmsr(MSR_EFER, l, h);
548 l |= EFER_NX;
549 wrmsr(MSR_EFER, l, h);
550 nx_enabled = 1;
551 __supported_pte_mask |= _PAGE_NX;
552 }
553 }
554}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555#endif
556
Yinghai Lu90d967e2008-06-23 21:00:45 +0200557/* user-defined highmem size */
558static unsigned int highmem_pages = -1;
559
560/*
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.
564 */
565static int __init parse_highmem(char *arg)
566{
567 if (!arg)
568 return -EINVAL;
569
570 highmem_pages = memparse(arg, &arg) >> PAGE_SHIFT;
571 return 0;
572}
573early_param("highmem", parse_highmem);
574
575/*
576 * Determine low and high memory ranges:
577 */
Yinghai Lu2ec65f82008-06-23 03:05:30 -0700578void __init find_low_pfn_range(void)
Yinghai Lu90d967e2008-06-23 21:00:45 +0200579{
Yinghai Lu2ec65f82008-06-23 03:05:30 -0700580 /* it could update max_pfn */
581
Yinghai Lu346cafe2008-06-23 03:06:14 -0700582 /* max_low_pfn is 0, we already have early_res support */
Yinghai Lu90d967e2008-06-23 21:00:45 +0200583
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));
595 highmem_pages = 0;
596 }
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",
601 MAXMEM>>20);
602 if (max_pfn > MAX_NONPAE_PFN)
603 printk(KERN_WARNING
604 "Use a HIGHMEM64G enabled kernel.\n");
605 else
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");
614 }
615#endif /* !CONFIG_HIGHMEM64G */
616#endif /* !CONFIG_HIGHMEM */
617 } else {
618 if (highmem_pages == -1)
619 highmem_pages = 0;
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));
626 highmem_pages = 0;
627 }
628 if (highmem_pages) {
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));
634 highmem_pages = 0;
635 }
636 max_low_pfn -= highmem_pages;
637 }
638#else
639 if (highmem_pages)
640 printk(KERN_ERR "ignoring highmem size on non-highmem"
641 " kernel!\n");
642#endif
643 }
Yinghai Lu90d967e2008-06-23 21:00:45 +0200644}
645
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700646#ifndef CONFIG_NEED_MULTIPLE_NODES
Yinghai Lu2ec65f82008-06-23 03:05:30 -0700647void __init initmem_init(unsigned long start_pfn,
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700648 unsigned long end_pfn)
649{
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700650#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);
Yinghai Lucb95a132008-07-02 00:31:02 -0700655 e820_register_active_regions(0, 0, highend_pfn);
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700656 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;
660#else
661 memory_present(0, 0, max_low_pfn);
Yinghai Lucb95a132008-07-02 00:31:02 -0700662 e820_register_active_regions(0, 0, max_low_pfn);
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700663 num_physpages = max_low_pfn;
664 high_memory = (void *) __va(max_low_pfn * PAGE_SIZE - 1) + 1;
665#endif
666#ifdef CONFIG_FLATMEM
667 max_mapnr = num_physpages;
668#endif
669 printk(KERN_NOTICE "%ldMB LOWMEM available.\n",
670 pages_to_mb(max_low_pfn));
671
672 setup_bootmem_allocator();
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700673}
Yinghai Lucb95a132008-07-02 00:31:02 -0700674#endif /* !CONFIG_NEED_MULTIPLE_NODES */
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700675
Yinghai Lucb95a132008-07-02 00:31:02 -0700676static void __init zone_sizes_init(void)
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700677{
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;
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700683#ifdef CONFIG_HIGHMEM
684 max_zone_pfns[ZONE_HIGHMEM] = highend_pfn;
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700685#endif
686
687 free_area_init_nodes(max_zone_pfns);
688}
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700689
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700690void __init setup_bootmem_allocator(void)
691{
692 int i;
693 unsigned long bootmap_size, bootmap;
694 /*
695 * Initialize the boot-time allocator (with low memory only):
696 */
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,
700 PAGE_SIZE);
701 if (bootmap == -1L)
702 panic("Cannot find bootmem map of size %ld\n", bootmap_size);
703 reserve_early(bootmap, bootmap + bootmap_size, "BOOTMAP");
Yinghai Lu225c37d2008-06-22 02:46:58 -0700704
Yinghai Lu346cafe2008-06-23 03:06:14 -0700705 /* 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);
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700708 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);
717
Yinghai Lu4e296842008-06-24 12:18:14 -0700718 after_init_bootmem = 1;
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700719}
720
Yinghai Lu4e296842008-06-24 12:18:14 -0700721static void __init find_early_table_space(unsigned long end)
722{
Yinghai Lu7482b0e2008-06-28 03:30:39 -0700723 unsigned long puds, pmds, ptes, tables, start;
Yinghai Lu4e296842008-06-24 12:18:14 -0700724
725 puds = (end + PUD_SIZE - 1) >> PUD_SHIFT;
726 tables = PAGE_ALIGN(puds * sizeof(pud_t));
727
728 pmds = (end + PMD_SIZE - 1) >> PMD_SHIFT;
729 tables += PAGE_ALIGN(pmds * sizeof(pmd_t));
730
Yinghai Lu7482b0e2008-06-28 03:30:39 -0700731 if (cpu_has_pse) {
732 unsigned long extra;
Yinghai Lua04ad822008-06-29 00:39:06 -0700733
734 extra = end - ((end>>PMD_SHIFT) << PMD_SHIFT);
735 extra += PMD_SIZE;
Yinghai Lu7482b0e2008-06-28 03:30:39 -0700736 ptes = (extra + PAGE_SIZE - 1) >> PAGE_SHIFT;
737 } else
738 ptes = (end + PAGE_SIZE - 1) >> PAGE_SHIFT;
739
740 tables += PAGE_ALIGN(ptes * sizeof(pte_t));
Jeremy Fitzhardinge8207c252008-06-24 17:32:48 -0400741
Yinghai Lua04ad822008-06-29 00:39:06 -0700742 /* for fixmap */
743 tables += PAGE_SIZE * 2;
744
Yinghai Lu4e296842008-06-24 12:18:14 -0700745 /*
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.
749 */
750 start = 0x7000;
751 table_start = find_e820_area(start, max_pfn_mapped<<PAGE_SHIFT,
752 tables, PAGE_SIZE);
753 if (table_start == -1UL)
754 panic("Cannot find space for the kernel page tables");
755
756 table_start >>= PAGE_SHIFT;
757 table_end = table_start;
758 table_top = table_start + (tables>>PAGE_SHIFT);
759
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);
763}
764
765unsigned long __init_refok init_memory_mapping(unsigned long start,
766 unsigned long end)
767{
768 pgd_t *pgd_base = swapper_pg_dir;
Yinghai Lua04ad822008-06-29 00:39:06 -0700769 unsigned long start_pfn, end_pfn;
770 unsigned long big_page_start;
Yinghai Lu4e296842008-06-24 12:18:14 -0700771
772 /*
773 * Find space for the kernel direct mapping tables.
774 */
775 if (!after_init_bootmem)
776 find_early_table_space(end);
777
778#ifdef CONFIG_X86_PAE
779 set_nx();
780 if (nx_enabled)
781 printk(KERN_INFO "NX (Execute Disable) protection: active\n");
782#endif
783
784 /* Enable PSE if available */
785 if (cpu_has_pse)
786 set_in_cr4(X86_CR4_PSE);
787
788 /* Enable PGE if available */
789 if (cpu_has_pge) {
790 set_in_cr4(X86_CR4_PGE);
Jeremy Fitzhardingeef5e94a2008-07-01 16:46:36 -0700791 __supported_pte_mask |= _PAGE_GLOBAL;
Yinghai Lu4e296842008-06-24 12:18:14 -0700792 }
793
Yinghai Lua04ad822008-06-29 00:39:06 -0700794 /*
795 * Don't use a large page for the first 2/4MB of memory
796 * because there are often fixed size MTRRs in there
797 * and overlapping MTRRs into large pages can cause
798 * slowdowns.
799 */
800 big_page_start = PMD_SIZE;
801
802 if (start < big_page_start) {
803 start_pfn = start >> PAGE_SHIFT;
804 end_pfn = min(big_page_start>>PAGE_SHIFT, end>>PAGE_SHIFT);
805 } else {
806 /* head is not big page alignment ? */
807 start_pfn = start >> PAGE_SHIFT;
808 end_pfn = ((start + (PMD_SIZE - 1))>>PMD_SHIFT)
809 << (PMD_SHIFT - PAGE_SHIFT);
810 }
811 if (start_pfn < end_pfn)
812 kernel_physical_mapping_init(pgd_base, start_pfn, end_pfn, 0);
813
814 /* big page range */
815 start_pfn = ((start + (PMD_SIZE - 1))>>PMD_SHIFT)
816 << (PMD_SHIFT - PAGE_SHIFT);
817 if (start_pfn < (big_page_start >> PAGE_SHIFT))
818 start_pfn = big_page_start >> PAGE_SHIFT;
819 end_pfn = (end>>PMD_SHIFT) << (PMD_SHIFT - PAGE_SHIFT);
820 if (start_pfn < end_pfn)
821 kernel_physical_mapping_init(pgd_base, start_pfn, end_pfn,
822 cpu_has_pse);
823
824 /* tail is not big page alignment ? */
825 start_pfn = end_pfn;
826 if (start_pfn > (big_page_start>>PAGE_SHIFT)) {
827 end_pfn = end >> PAGE_SHIFT;
828 if (start_pfn < end_pfn)
829 kernel_physical_mapping_init(pgd_base, start_pfn,
830 end_pfn, 0);
831 }
Yinghai Lu4e296842008-06-24 12:18:14 -0700832
Yinghai Lue7b37892008-06-25 21:51:28 -0700833 early_ioremap_page_table_range_init(pgd_base);
834
Yinghai Lu4e296842008-06-24 12:18:14 -0700835 load_cr3(swapper_pg_dir);
836
837 __flush_tlb_all();
838
839 if (!after_init_bootmem)
840 reserve_early(table_start << PAGE_SHIFT,
841 table_end << PAGE_SHIFT, "PGTABLE");
842
Yinghai Lucaadbdc2008-07-15 00:03:44 -0700843 if (!after_init_bootmem)
844 early_memtest(start, end);
845
Yinghai Lu4e296842008-06-24 12:18:14 -0700846 return end >> PAGE_SHIFT;
847}
848
Yinghai Lue7b37892008-06-25 21:51:28 -0700849
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850/*
851 * paging_init() sets up the page tables - note that the first 8MB are
852 * already mapped by head.S.
853 *
854 * This routines also unmaps the page at virtual kernel address 0, so
855 * that we can trap those pesky NULL-reference errors in the kernel.
856 */
857void __init paging_init(void)
858{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 pagetable_init();
860
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 __flush_tlb_all();
862
863 kmap_init();
Yinghai Lu11cd0bc2008-06-23 19:51:10 -0700864
865 /*
866 * NOTE: at this point the bootmem allocator is fully available.
867 */
Yinghai Lu11cd0bc2008-06-23 19:51:10 -0700868 sparse_init();
869 zone_sizes_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870}
871
872/*
873 * Test if the WP bit works in supervisor mode. It isn't supported on 386's
Dmitri Vorobievf7f17a62008-04-21 00:47:55 +0400874 * and also on some strange 486's. All 586+'s are OK. This used to involve
875 * black magic jumps to work around some nasty CPU bugs, but fortunately the
876 * switch to using exceptions got rid of all that.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878static void __init test_wp_bit(void)
879{
Ingo Molnard7d119d2008-01-30 13:34:10 +0100880 printk(KERN_INFO
881 "Checking if this processor honours the WP bit even in supervisor mode...");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
883 /* Any page-aligned address will do, the test is non-destructive */
884 __set_fixmap(FIX_WP_TEST, __pa(&swapper_pg_dir), PAGE_READONLY);
885 boot_cpu_data.wp_works_ok = do_test_wp_bit();
886 clear_fixmap(FIX_WP_TEST);
887
888 if (!boot_cpu_data.wp_works_ok) {
Ingo Molnard7d119d2008-01-30 13:34:10 +0100889 printk(KERN_CONT "No.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890#ifdef CONFIG_X86_WP_WORKS_OK
Ingo Molnard7d119d2008-01-30 13:34:10 +0100891 panic(
892 "This kernel doesn't support CPU's with broken WP. Recompile it for a 386!");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893#endif
894 } else {
Ingo Molnard7d119d2008-01-30 13:34:10 +0100895 printk(KERN_CONT "Ok.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 }
897}
898
Ingo Molnar8550eb92008-01-30 13:34:10 +0100899static struct kcore_list kcore_mem, kcore_vmalloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
901void __init mem_init(void)
902{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 int codesize, reservedpages, datasize, initsize;
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700904 int tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
Andy Whitcroft05b79bd2005-06-23 00:07:57 -0700906#ifdef CONFIG_FLATMEM
Eric Sesterhenn8d8f3cb2006-10-03 23:34:58 +0200907 BUG_ON(!mem_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 /* this will put all low memory onto the freelists */
910 totalram_pages += free_all_bootmem();
911
912 reservedpages = 0;
913 for (tmp = 0; tmp < max_low_pfn; tmp++)
914 /*
Ingo Molnar8550eb92008-01-30 13:34:10 +0100915 * Only count reserved RAM pages:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 */
917 if (page_is_ram(tmp) && PageReserved(pfn_to_page(tmp)))
918 reservedpages++;
919
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700920 set_highmem_pages_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
922 codesize = (unsigned long) &_etext - (unsigned long) &_text;
923 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
924 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
925
Ingo Molnar8550eb92008-01-30 13:34:10 +0100926 kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
927 kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 VMALLOC_END-VMALLOC_START);
929
Ingo Molnar8550eb92008-01-30 13:34:10 +0100930 printk(KERN_INFO "Memory: %luk/%luk available (%dk kernel code, "
931 "%dk reserved, %dk data, %dk init, %ldk highmem)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
933 num_physpages << (PAGE_SHIFT-10),
934 codesize >> 10,
935 reservedpages << (PAGE_SHIFT-10),
936 datasize >> 10,
937 initsize >> 10,
938 (unsigned long) (totalhigh_pages << (PAGE_SHIFT-10))
939 );
940
Ingo Molnard7d119d2008-01-30 13:34:10 +0100941 printk(KERN_INFO "virtual kernel memory layout:\n"
Ingo Molnar8550eb92008-01-30 13:34:10 +0100942 " fixmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700943#ifdef CONFIG_HIGHMEM
Ingo Molnar8550eb92008-01-30 13:34:10 +0100944 " pkmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700945#endif
Ingo Molnar8550eb92008-01-30 13:34:10 +0100946 " vmalloc : 0x%08lx - 0x%08lx (%4ld MB)\n"
947 " lowmem : 0x%08lx - 0x%08lx (%4ld MB)\n"
948 " .init : 0x%08lx - 0x%08lx (%4ld kB)\n"
949 " .data : 0x%08lx - 0x%08lx (%4ld kB)\n"
950 " .text : 0x%08lx - 0x%08lx (%4ld kB)\n",
951 FIXADDR_START, FIXADDR_TOP,
952 (FIXADDR_TOP - FIXADDR_START) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700953
954#ifdef CONFIG_HIGHMEM
Ingo Molnar8550eb92008-01-30 13:34:10 +0100955 PKMAP_BASE, PKMAP_BASE+LAST_PKMAP*PAGE_SIZE,
956 (LAST_PKMAP*PAGE_SIZE) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700957#endif
958
Ingo Molnar8550eb92008-01-30 13:34:10 +0100959 VMALLOC_START, VMALLOC_END,
960 (VMALLOC_END - VMALLOC_START) >> 20,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700961
Ingo Molnar8550eb92008-01-30 13:34:10 +0100962 (unsigned long)__va(0), (unsigned long)high_memory,
963 ((unsigned long)high_memory - (unsigned long)__va(0)) >> 20,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700964
Ingo Molnar8550eb92008-01-30 13:34:10 +0100965 (unsigned long)&__init_begin, (unsigned long)&__init_end,
966 ((unsigned long)&__init_end -
967 (unsigned long)&__init_begin) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700968
Ingo Molnar8550eb92008-01-30 13:34:10 +0100969 (unsigned long)&_etext, (unsigned long)&_edata,
970 ((unsigned long)&_edata - (unsigned long)&_etext) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700971
Ingo Molnar8550eb92008-01-30 13:34:10 +0100972 (unsigned long)&_text, (unsigned long)&_etext,
973 ((unsigned long)&_etext - (unsigned long)&_text) >> 10);
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700974
975#ifdef CONFIG_HIGHMEM
Ingo Molnar8550eb92008-01-30 13:34:10 +0100976 BUG_ON(PKMAP_BASE + LAST_PKMAP*PAGE_SIZE > FIXADDR_START);
977 BUG_ON(VMALLOC_END > PKMAP_BASE);
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700978#endif
Ingo Molnar8550eb92008-01-30 13:34:10 +0100979 BUG_ON(VMALLOC_START > VMALLOC_END);
980 BUG_ON((unsigned long)high_memory > VMALLOC_START);
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700981
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 if (boot_cpu_data.wp_works_ok < 0)
983 test_wp_bit();
984
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100985 cpa_init();
Hugh Dickins61165d72008-05-13 14:26:57 +0100986 save_pg_dir();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 zap_low_mappings();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988}
989
KAMEZAWA Hiroyukiad8f5792006-05-20 15:00:03 -0700990#ifdef CONFIG_MEMORY_HOTPLUG
Yasunori Gotobc02af92006-06-27 02:53:30 -0700991int arch_add_memory(int nid, u64 start, u64 size)
Dave Hansen05039b92005-10-29 18:16:57 -0700992{
Yasunori Goto7c7e9422006-12-22 01:11:13 -0800993 struct pglist_data *pgdata = NODE_DATA(nid);
Christoph Lameter776ed982006-09-25 23:31:09 -0700994 struct zone *zone = pgdata->node_zones + ZONE_HIGHMEM;
Dave Hansen05039b92005-10-29 18:16:57 -0700995 unsigned long start_pfn = start >> PAGE_SHIFT;
996 unsigned long nr_pages = size >> PAGE_SHIFT;
997
998 return __add_pages(zone, start_pfn, nr_pages);
999}
Andi Kleen9d99aaa2006-04-07 19:49:15 +02001000#endif
Dave Hansen05039b92005-10-29 18:16:57 -07001001
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002/*
1003 * This function cannot be __init, since exceptions don't work in that
1004 * section. Put this after the callers, so that it cannot be inlined.
1005 */
Ingo Molnar8550eb92008-01-30 13:34:10 +01001006static noinline int do_test_wp_bit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007{
1008 char tmp_reg;
1009 int flag;
1010
1011 __asm__ __volatile__(
Ingo Molnar8550eb92008-01-30 13:34:10 +01001012 " movb %0, %1 \n"
1013 "1: movb %1, %0 \n"
1014 " xorl %2, %2 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 "2: \n"
H. Peter Anvinf832ff12008-02-04 16:47:58 +01001016 _ASM_EXTABLE(1b,2b)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 :"=m" (*(char *)fix_to_virt(FIX_WP_TEST)),
1018 "=q" (tmp_reg),
1019 "=r" (flag)
1020 :"2" (1)
1021 :"memory");
Ingo Molnar8550eb92008-01-30 13:34:10 +01001022
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 return flag;
1024}
1025
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001026#ifdef CONFIG_DEBUG_RODATA
Arjan van de Venedeed302008-01-30 13:34:08 +01001027const int rodata_test_data = 0xC3;
1028EXPORT_SYMBOL_GPL(rodata_test_data);
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001029
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001030void mark_rodata_ro(void)
1031{
Jan Beulich6fb14752007-05-02 19:27:10 +02001032 unsigned long start = PFN_ALIGN(_text);
1033 unsigned long size = PFN_ALIGN(_etext) - start;
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001034
Steven Rostedt8f0f9962008-05-12 21:20:56 +02001035#ifndef CONFIG_DYNAMIC_FTRACE
1036 /* Dynamic tracing modifies the kernel text section */
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -05001037 set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
1038 printk(KERN_INFO "Write protecting the kernel text: %luk\n",
1039 size >> 10);
Andi Kleen0c42f392008-01-30 13:33:42 +01001040
1041#ifdef CONFIG_CPA_DEBUG
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -05001042 printk(KERN_INFO "Testing CPA: Reverting %lx-%lx\n",
1043 start, start+size);
1044 set_pages_rw(virt_to_page(start), size>>PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +01001045
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -05001046 printk(KERN_INFO "Testing CPA: write protecting again\n");
1047 set_pages_ro(virt_to_page(start), size>>PAGE_SHIFT);
Linus Torvalds602033e2007-07-26 12:07:21 -07001048#endif
Steven Rostedt8f0f9962008-05-12 21:20:56 +02001049#endif /* CONFIG_DYNAMIC_FTRACE */
1050
Jan Beulich6fb14752007-05-02 19:27:10 +02001051 start += size;
1052 size = (unsigned long)__end_rodata - start;
Arjan van de Ven6d238cc2008-01-30 13:34:06 +01001053 set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
Ingo Molnard7d119d2008-01-30 13:34:10 +01001054 printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
1055 size >> 10);
Arjan van de Venedeed302008-01-30 13:34:08 +01001056 rodata_test();
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001057
Andi Kleen0c42f392008-01-30 13:33:42 +01001058#ifdef CONFIG_CPA_DEBUG
Ingo Molnard7d119d2008-01-30 13:34:10 +01001059 printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, start + size);
Arjan van de Ven6d238cc2008-01-30 13:34:06 +01001060 set_pages_rw(virt_to_page(start), size >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +01001061
Ingo Molnard7d119d2008-01-30 13:34:10 +01001062 printk(KERN_INFO "Testing CPA: write protecting again\n");
Arjan van de Ven6d238cc2008-01-30 13:34:06 +01001063 set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +01001064#endif
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001065}
1066#endif
1067
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001068void free_init_pages(char *what, unsigned long begin, unsigned long end)
1069{
Ingo Molnaree01f112008-01-30 13:34:09 +01001070#ifdef CONFIG_DEBUG_PAGEALLOC
1071 /*
1072 * If debugging page accesses then do not free this memory but
1073 * mark them not present - any buggy init-section access will
1074 * create a kernel page fault:
1075 */
1076 printk(KERN_INFO "debug: unmapping init memory %08lx..%08lx\n",
1077 begin, PAGE_ALIGN(end));
1078 set_memory_np(begin, (end - begin) >> PAGE_SHIFT);
1079#else
Ingo Molnar86f03982008-01-30 13:34:09 +01001080 unsigned long addr;
1081
Arjan van de Ven3c1df682008-01-30 13:34:07 +01001082 /*
1083 * We just marked the kernel text read only above, now that
1084 * we are going to free part of that, we need to make that
1085 * writeable first.
1086 */
1087 set_memory_rw(begin, (end - begin) >> PAGE_SHIFT);
1088
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001089 for (addr = begin; addr < end; addr += PAGE_SIZE) {
Linus Torvaldse3ebadd2007-05-07 08:44:24 -07001090 ClearPageReserved(virt_to_page(addr));
1091 init_page_count(virt_to_page(addr));
1092 memset((void *)addr, POISON_FREE_INITMEM, PAGE_SIZE);
1093 free_page(addr);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001094 totalram_pages++;
1095 }
Jan Beulich6fb14752007-05-02 19:27:10 +02001096 printk(KERN_INFO "Freeing %s: %luk freed\n", what, (end - begin) >> 10);
Ingo Molnaree01f112008-01-30 13:34:09 +01001097#endif
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001098}
1099
1100void free_initmem(void)
1101{
1102 free_init_pages("unused kernel memory",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -07001103 (unsigned long)(&__init_begin),
1104 (unsigned long)(&__init_end));
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001105}
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001106
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107#ifdef CONFIG_BLK_DEV_INITRD
1108void free_initrd_mem(unsigned long start, unsigned long end)
1109{
Linus Torvaldse3ebadd2007-05-07 08:44:24 -07001110 free_init_pages("initrd memory", start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111}
1112#endif
Yinghai Lud2dbf342008-06-13 02:00:56 -07001113
1114int __init reserve_bootmem_generic(unsigned long phys, unsigned long len,
1115 int flags)
1116{
1117 return reserve_bootmem(phys, len, flags);
1118}