blob: 8efe872b9617917320405eb16cc6f14d008d45eb [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
Thomas Gleixner67794292008-03-21 21:27:10 +010053unsigned long max_pfn_mapped;
Andi Kleen7d1116a2008-03-12 03:53:27 +010054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
56unsigned long highstart_pfn, highend_pfn;
57
Ingo Molnar8550eb92008-01-30 13:34:10 +010058static noinline int do_test_wp_bit(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Yinghai Lu4e296842008-06-24 12:18:14 -070060
61static unsigned long __initdata table_start;
62static unsigned long __meminitdata table_end;
63static unsigned long __meminitdata table_top;
64
65static int __initdata after_init_bootmem;
66
67static __init void *alloc_low_page(unsigned long *phys)
68{
69 unsigned long pfn = table_end++;
70 void *adr;
71
72 if (pfn >= table_top)
73 panic("alloc_low_page: ran out of memory");
74
75 adr = __va(pfn * PAGE_SIZE);
76 memset(adr, 0, PAGE_SIZE);
77 *phys = pfn * PAGE_SIZE;
78 return adr;
79}
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081/*
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.
85 */
86static pmd_t * __init one_md_table_init(pgd_t *pgd)
87{
88 pud_t *pud;
89 pmd_t *pmd_table;
Ingo Molnar8550eb92008-01-30 13:34:10 +010090
Linus Torvalds1da177e2005-04-16 15:20:36 -070091#ifdef CONFIG_X86_PAE
Yinghai Lu4e296842008-06-24 12:18:14 -070092 unsigned long phys;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +020093 if (!(pgd_val(*pgd) & _PAGE_PRESENT)) {
Yinghai Lu4e296842008-06-24 12:18:14 -070094 if (after_init_bootmem)
95 pmd_table = (pmd_t *)alloc_bootmem_low_pages(PAGE_SIZE);
96 else
97 pmd_table = (pmd_t *)alloc_low_page(&phys);
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -070098 paravirt_alloc_pmd(&init_mm, __pa(pmd_table) >> PAGE_SHIFT);
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +020099 set_pgd(pgd, __pgd(__pa(pmd_table) | _PAGE_PRESENT));
100 pud = pud_offset(pgd, 0);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100101 BUG_ON(pmd_table != pmd_offset(pud, 0));
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200102 }
103#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 pud = pud_offset(pgd, 0);
105 pmd_table = pmd_offset(pud, 0);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 return pmd_table;
108}
109
110/*
111 * Create a page table and place a pointer to it in a middle page
Ingo Molnar8550eb92008-01-30 13:34:10 +0100112 * directory entry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 */
114static pte_t * __init one_page_table_init(pmd_t *pmd)
115{
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200116 if (!(pmd_val(*pmd) & _PAGE_PRESENT)) {
Ingo Molnar509a80c2007-10-17 18:04:34 +0200117 pte_t *page_table = NULL;
118
Yinghai Lu4e296842008-06-24 12:18:14 -0700119 if (after_init_bootmem) {
Ingo Molnar509a80c2007-10-17 18:04:34 +0200120#ifdef CONFIG_DEBUG_PAGEALLOC
Yinghai Lu4e296842008-06-24 12:18:14 -0700121 page_table = (pte_t *) alloc_bootmem_pages(PAGE_SIZE);
Ingo Molnar509a80c2007-10-17 18:04:34 +0200122#endif
Yinghai Lu4e296842008-06-24 12:18:14 -0700123 if (!page_table)
124 page_table =
Ingo Molnar509a80c2007-10-17 18:04:34 +0200125 (pte_t *)alloc_bootmem_low_pages(PAGE_SIZE);
Yinghai Lu4e296842008-06-24 12:18:14 -0700126 } else {
127 unsigned long phys;
128 page_table = (pte_t *)alloc_low_page(&phys);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100129 }
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200130
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700131 paravirt_alloc_pte(&init_mm, __pa(page_table) >> PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 set_pmd(pmd, __pmd(__pa(page_table) | _PAGE_TABLE));
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200133 BUG_ON(page_table != pte_offset_kernel(pmd, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 }
Ingo Molnar509a80c2007-10-17 18:04:34 +0200135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 return pte_offset_kernel(pmd, 0);
137}
138
139/*
Ingo Molnar8550eb92008-01-30 13:34:10 +0100140 * This function initializes a certain range of kernel virtual memory
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 * with new bootmem page tables, everywhere page tables are missing in
142 * the given range.
Ingo Molnar8550eb92008-01-30 13:34:10 +0100143 *
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 * checking the pgd every time.
147 */
Ingo Molnar8550eb92008-01-30 13:34:10 +0100148static void __init
149page_table_range_init(unsigned long start, unsigned long end, pgd_t *pgd_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 int pgd_idx, pmd_idx;
152 unsigned long vaddr;
Ingo Molnar8550eb92008-01-30 13:34:10 +0100153 pgd_t *pgd;
154 pmd_t *pmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156 vaddr = start;
157 pgd_idx = pgd_index(vaddr);
158 pmd_idx = pmd_index(vaddr);
159 pgd = pgd_base + pgd_idx;
160
161 for ( ; (pgd_idx < PTRS_PER_PGD) && (vaddr != end); pgd++, pgd_idx++) {
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200162 pmd = one_md_table_init(pgd);
163 pmd = pmd + pmd_index(vaddr);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100164 for (; (pmd_idx < PTRS_PER_PMD) && (vaddr != end);
165 pmd++, pmd_idx++) {
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200166 one_page_table_init(pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168 vaddr += PMD_SIZE;
169 }
170 pmd_idx = 0;
171 }
172}
173
174static inline int is_kernel_text(unsigned long addr)
175{
176 if (addr >= PAGE_OFFSET && addr <= (unsigned long)__init_end)
177 return 1;
178 return 0;
179}
180
181/*
Ingo Molnar8550eb92008-01-30 13:34:10 +0100182 * 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
184 * PAGE_OFFSET:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 */
Yinghai Lu4e296842008-06-24 12:18:14 -0700186static void __init kernel_physical_mapping_init(pgd_t *pgd_base,
Yinghai Lua04ad822008-06-29 00:39:06 -0700187 unsigned long start_pfn,
188 unsigned long end_pfn,
189 int use_pse)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
Ingo Molnar8550eb92008-01-30 13:34:10 +0100191 int pgd_idx, pmd_idx, pte_ofs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 unsigned long pfn;
193 pgd_t *pgd;
194 pmd_t *pmd;
195 pte_t *pte;
Andi Kleence0c0e52008-05-02 11:46:49 +0200196 unsigned pages_2m = 0, pages_4k = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Yinghai Lua04ad822008-06-29 00:39:06 -0700198 if (!cpu_has_pse)
199 use_pse = 0;
200
201 pfn = start_pfn;
202 pgd_idx = pgd_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 pgd = pgd_base + pgd_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 for (; pgd_idx < PTRS_PER_PGD; pgd++, pgd_idx++) {
205 pmd = one_md_table_init(pgd);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100206
Yinghai Lua04ad822008-06-29 00:39:06 -0700207 if (pfn >= end_pfn)
208 continue;
209#ifdef CONFIG_X86_PAE
210 pmd_idx = pmd_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
211 pmd += pmd_idx;
212#else
213 pmd_idx = 0;
214#endif
215 for (; pmd_idx < PTRS_PER_PMD && pfn < end_pfn;
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100216 pmd++, pmd_idx++) {
Ingo Molnar8550eb92008-01-30 13:34:10 +0100217 unsigned int addr = pfn * PAGE_SIZE + PAGE_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Ingo Molnar8550eb92008-01-30 13:34:10 +0100219 /*
220 * Map with big pages if possible, otherwise
221 * create normal page tables:
222 */
Yinghai Lua04ad822008-06-29 00:39:06 -0700223 if (use_pse) {
Ingo Molnar8550eb92008-01-30 13:34:10 +0100224 unsigned int addr2;
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100225 pgprot_t prot = PAGE_KERNEL_LARGE;
226
Ingo Molnar8550eb92008-01-30 13:34:10 +0100227 addr2 = (pfn + PTRS_PER_PTE-1) * PAGE_SIZE +
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100228 PAGE_OFFSET + PAGE_SIZE-1;
229
Ingo Molnar8550eb92008-01-30 13:34:10 +0100230 if (is_kernel_text(addr) ||
231 is_kernel_text(addr2))
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100232 prot = PAGE_KERNEL_LARGE_EXEC;
233
Andi Kleence0c0e52008-05-02 11:46:49 +0200234 pages_2m++;
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100235 set_pmd(pmd, pfn_pmd(pfn, prot));
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 pfn += PTRS_PER_PTE;
Ingo Molnar8550eb92008-01-30 13:34:10 +0100238 continue;
239 }
240 pte = one_page_table_init(pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Yinghai Lua04ad822008-06-29 00:39:06 -0700242 pte_ofs = pte_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
243 pte += pte_ofs;
244 for (; pte_ofs < PTRS_PER_PTE && pfn < end_pfn;
Ingo Molnar8550eb92008-01-30 13:34:10 +0100245 pte++, pfn++, pte_ofs++, addr += PAGE_SIZE) {
246 pgprot_t prot = PAGE_KERNEL;
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100247
Ingo Molnar8550eb92008-01-30 13:34:10 +0100248 if (is_kernel_text(addr))
249 prot = PAGE_KERNEL_EXEC;
Jeremy Fitzhardingef3f20de2008-01-30 13:31:09 +0100250
Andi Kleence0c0e52008-05-02 11:46:49 +0200251 pages_4k++;
Ingo Molnar8550eb92008-01-30 13:34:10 +0100252 set_pte(pte, pfn_pte(pfn, prot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 }
254 }
255 }
Andi Kleence0c0e52008-05-02 11:46:49 +0200256 update_page_count(PG_LEVEL_2M, pages_2m);
257 update_page_count(PG_LEVEL_4K, pages_4k);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258}
259
Arjan van de Venae531c22008-04-24 23:40:47 +0200260/*
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.
263 *
264 *
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.
269 */
270int devmem_is_allowed(unsigned long pagenr)
271{
272 if (pagenr <= 256)
273 return 1;
274 if (!page_is_ram(pagenr))
275 return 1;
276 return 0;
277}
278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279#ifdef CONFIG_HIGHMEM
280pte_t *kmap_pte;
281pgprot_t kmap_prot;
282
Ingo Molnar8550eb92008-01-30 13:34:10 +0100283static inline pte_t *kmap_get_fixmap_pte(unsigned long vaddr)
284{
285 return pte_offset_kernel(pmd_offset(pud_offset(pgd_offset_k(vaddr),
286 vaddr), vaddr), vaddr);
287}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
289static void __init kmap_init(void)
290{
291 unsigned long kmap_vstart;
292
Ingo Molnar8550eb92008-01-30 13:34:10 +0100293 /*
294 * Cache the first kmap pte:
295 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 kmap_vstart = __fix_to_virt(FIX_KMAP_BEGIN);
297 kmap_pte = kmap_get_fixmap_pte(kmap_vstart);
298
299 kmap_prot = PAGE_KERNEL;
300}
301
302static void __init permanent_kmaps_init(pgd_t *pgd_base)
303{
Ingo Molnar8550eb92008-01-30 13:34:10 +0100304 unsigned long vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 pgd_t *pgd;
306 pud_t *pud;
307 pmd_t *pmd;
308 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310 vaddr = PKMAP_BASE;
311 page_table_range_init(vaddr, vaddr + PAGE_SIZE*LAST_PKMAP, pgd_base);
312
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);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100317 pkmap_page_table = pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318}
319
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700320static void __init add_one_highpage_init(struct page *page, int pfn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700322 ClearPageReserved(page);
323 init_page_count(page);
324 __free_page(page);
325 totalhigh_pages++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326}
327
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700328struct add_highpages_data {
329 unsigned long start_pfn;
330 unsigned long end_pfn;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700331};
332
Yinghai Lud52d53b2008-06-16 20:10:55 -0700333static int __init add_highpages_work_fn(unsigned long start_pfn,
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700334 unsigned long end_pfn, void *datax)
335{
336 int node_pfn;
337 struct page *page;
338 unsigned long final_start_pfn, final_end_pfn;
339 struct add_highpages_data *data;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700340
341 data = (struct add_highpages_data *)datax;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700342
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)
Yinghai Lud52d53b2008-06-16 20:10:55 -0700346 return 0;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700347
348 for (node_pfn = final_start_pfn; node_pfn < final_end_pfn;
349 node_pfn++) {
350 if (!pfn_valid(node_pfn))
351 continue;
352 page = pfn_to_page(node_pfn);
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700353 add_one_highpage_init(page, node_pfn);
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700354 }
355
Yinghai Lud52d53b2008-06-16 20:10:55 -0700356 return 0;
357
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700358}
359
360void __init add_highpages_with_active_regions(int nid, unsigned long start_pfn,
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700361 unsigned long end_pfn)
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700362{
363 struct add_highpages_data data;
364
365 data.start_pfn = start_pfn;
366 data.end_pfn = end_pfn;
Yinghai Lub5bc6c02008-06-14 18:32:52 -0700367
368 work_with_active_regions(nid, add_highpages_work_fn, &data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369}
370
Ingo Molnar8550eb92008-01-30 13:34:10 +0100371#ifndef CONFIG_NUMA
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700372static void __init set_highmem_pages_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700374 add_highpages_with_active_regions(0, highstart_pfn, highend_pfn);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 totalram_pages += totalhigh_pages;
377}
Ingo Molnar8550eb92008-01-30 13:34:10 +0100378#endif /* !CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380#else
Ingo Molnar8550eb92008-01-30 13:34:10 +0100381# define kmap_init() do { } while (0)
382# define permanent_kmaps_init(pgd_base) do { } while (0)
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700383# define set_highmem_pages_init() do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384#endif /* CONFIG_HIGHMEM */
385
Andi Kleenc93c82b2008-01-30 13:33:50 +0100386pteval_t __PAGE_KERNEL = _PAGE_KERNEL;
Alexey Dobriyan129f6942005-06-23 00:08:33 -0700387EXPORT_SYMBOL(__PAGE_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Ingo Molnar8550eb92008-01-30 13:34:10 +0100389pteval_t __PAGE_KERNEL_EXEC = _PAGE_KERNEL_EXEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200391void __init native_pagetable_setup_start(pgd_t *base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
Ian Campbell551889a2008-02-09 23:24:09 +0100393 unsigned long pfn, va;
394 pgd_t *pgd;
395 pud_t *pud;
396 pmd_t *pmd;
397 pte_t *pte;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200398
399 /*
Ian Campbell551889a2008-02-09 23:24:09 +0100400 * Remove any mappings which extend past the end of physical
401 * memory from the boot time page table:
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200402 */
Ian Campbell551889a2008-02-09 23:24:09 +0100403 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))
407 break;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200408
Ian Campbell551889a2008-02-09 23:24:09 +0100409 pud = pud_offset(pgd, va);
410 pmd = pmd_offset(pud, va);
411 if (!pmd_present(*pmd))
412 break;
413
414 pte = pte_offset_kernel(pmd, va);
415 if (!pte_present(*pte))
416 break;
417
418 pte_clear(NULL, va, pte);
419 }
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700420 paravirt_alloc_pmd(&init_mm, __pa(base) >> PAGE_SHIFT);
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200421}
422
423void __init native_pagetable_setup_done(pgd_t *base)
424{
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200425}
426
427/*
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
430 * the boot process.
431 *
432 * If we're booting on native hardware, this will be a pagetable
Ian Campbell551889a2008-02-09 23:24:09 +0100433 * constructed in arch/x86/kernel/head_32.S. The root of the
434 * pagetable will be swapper_pg_dir.
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200435 *
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.
441 *
442 * In general, pagetable_init() assumes that the pagetable may already
443 * be partially populated, and so it avoids stomping on any existing
444 * mappings.
445 */
Yinghai Lue7b37892008-06-25 21:51:28 -0700446static void __init early_ioremap_page_table_range_init(pgd_t *pgd_base)
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200447{
Ingo Molnar8550eb92008-01-30 13:34:10 +0100448 unsigned long vaddr, end;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 /*
451 * Fixed mappings, only the page table structure has to be
452 * created - mappings will be set by set_fixmap():
453 */
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100454 early_ioremap_clear();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 vaddr = __fix_to_virt(__end_of_fixed_addresses - 1) & PMD_MASK;
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200456 end = (FIXADDR_TOP + PMD_SIZE - 1) & PMD_MASK;
457 page_table_range_init(vaddr, end, pgd_base);
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100458 early_ioremap_reset();
Yinghai Lue7b37892008-06-25 21:51:28 -0700459}
460
461static void __init pagetable_init(void)
462{
463 pgd_t *pgd_base = swapper_pg_dir;
464
465 paravirt_pagetable_setup_start(pgd_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467 permanent_kmaps_init(pgd_base);
468
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200469 paravirt_pagetable_setup_done(pgd_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470}
471
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100472#ifdef CONFIG_ACPI_SLEEP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473/*
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100474 * ACPI suspend needs this for resume, because things like the intel-agp
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 * driver might have split up a kernel 4MB mapping.
476 */
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100477char swsusp_pg_dir[PAGE_SIZE]
Ingo Molnar8550eb92008-01-30 13:34:10 +0100478 __attribute__ ((aligned(PAGE_SIZE)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
480static inline void save_pg_dir(void)
481{
482 memcpy(swsusp_pg_dir, swapper_pg_dir, PAGE_SIZE);
483}
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100484#else /* !CONFIG_ACPI_SLEEP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485static inline void save_pg_dir(void)
486{
487}
Rafael J. Wysockia6eb84b2008-02-01 15:28:16 +0100488#endif /* !CONFIG_ACPI_SLEEP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Ingo Molnar8550eb92008-01-30 13:34:10 +0100490void zap_low_mappings(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
492 int i;
493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 /*
495 * Zap initial low-memory mappings.
496 *
497 * Note that "pgd_clear()" doesn't do it for
498 * us, because pgd_clear() is a no-op on i386.
499 */
Jeremy Fitzhardinge68db0652008-03-17 16:37:13 -0700500 for (i = 0; i < KERNEL_PGD_BOUNDARY; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501#ifdef CONFIG_X86_PAE
502 set_pgd(swapper_pg_dir+i, __pgd(1 + __pa(empty_zero_page)));
503#else
504 set_pgd(swapper_pg_dir+i, __pgd(0));
505#endif
Ingo Molnar8550eb92008-01-30 13:34:10 +0100506 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 flush_tlb_all();
508}
509
Ingo Molnar8550eb92008-01-30 13:34:10 +0100510int nx_enabled;
Jan Beulichd5321ab2007-07-21 17:10:26 +0200511
Jeremy Fitzhardinge6fdc05d2008-01-30 13:32:57 +0100512pteval_t __supported_pte_mask __read_mostly = ~_PAGE_NX;
513EXPORT_SYMBOL_GPL(__supported_pte_mask);
514
Jan Beulichd5321ab2007-07-21 17:10:26 +0200515#ifdef CONFIG_X86_PAE
516
Ingo Molnar8550eb92008-01-30 13:34:10 +0100517static int disable_nx __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
519/*
520 * noexec = on|off
521 *
522 * Control non executable mappings.
523 *
524 * on Enable
525 * off Disable
526 */
Rusty Russell1a3f2392006-09-26 10:52:32 +0200527static int __init noexec_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528{
Rusty Russell1a3f2392006-09-26 10:52:32 +0200529 if (!str || !strcmp(str, "on")) {
530 if (cpu_has_nx) {
531 __supported_pte_mask |= _PAGE_NX;
532 disable_nx = 0;
533 }
Ingo Molnar8550eb92008-01-30 13:34:10 +0100534 } else {
535 if (!strcmp(str, "off")) {
536 disable_nx = 1;
537 __supported_pte_mask &= ~_PAGE_NX;
538 } else {
539 return -EINVAL;
540 }
541 }
Rusty Russell1a3f2392006-09-26 10:52:32 +0200542
543 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544}
Rusty Russell1a3f2392006-09-26 10:52:32 +0200545early_param("noexec", noexec_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547static void __init set_nx(void)
548{
549 unsigned int v[4], l, h;
550
551 if (cpu_has_pae && (cpuid_eax(0x80000000) > 0x80000001)) {
552 cpuid(0x80000001, &v[0], &v[1], &v[2], &v[3]);
Ingo Molnar8550eb92008-01-30 13:34:10 +0100553
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 if ((v[3] & (1 << 20)) && !disable_nx) {
555 rdmsr(MSR_EFER, l, h);
556 l |= EFER_NX;
557 wrmsr(MSR_EFER, l, h);
558 nx_enabled = 1;
559 __supported_pte_mask |= _PAGE_NX;
560 }
561 }
562}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563#endif
564
Yinghai Lu90d967e2008-06-23 21:00:45 +0200565/* user-defined highmem size */
566static unsigned int highmem_pages = -1;
567
568/*
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.
572 */
573static int __init parse_highmem(char *arg)
574{
575 if (!arg)
576 return -EINVAL;
577
578 highmem_pages = memparse(arg, &arg) >> PAGE_SHIFT;
579 return 0;
580}
581early_param("highmem", parse_highmem);
582
583/*
584 * Determine low and high memory ranges:
585 */
Yinghai Lu2ec65f82008-06-23 03:05:30 -0700586void __init find_low_pfn_range(void)
Yinghai Lu90d967e2008-06-23 21:00:45 +0200587{
Yinghai Lu2ec65f82008-06-23 03:05:30 -0700588 /* it could update max_pfn */
589
Yinghai Lu346cafe2008-06-23 03:06:14 -0700590 /* max_low_pfn is 0, we already have early_res support */
Yinghai Lu90d967e2008-06-23 21:00:45 +0200591
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));
603 highmem_pages = 0;
604 }
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",
609 MAXMEM>>20);
610 if (max_pfn > MAX_NONPAE_PFN)
611 printk(KERN_WARNING
612 "Use a HIGHMEM64G enabled kernel.\n");
613 else
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");
622 }
623#endif /* !CONFIG_HIGHMEM64G */
624#endif /* !CONFIG_HIGHMEM */
625 } else {
626 if (highmem_pages == -1)
627 highmem_pages = 0;
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));
634 highmem_pages = 0;
635 }
636 if (highmem_pages) {
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));
642 highmem_pages = 0;
643 }
644 max_low_pfn -= highmem_pages;
645 }
646#else
647 if (highmem_pages)
648 printk(KERN_ERR "ignoring highmem size on non-highmem"
649 " kernel!\n");
650#endif
651 }
Yinghai Lu90d967e2008-06-23 21:00:45 +0200652}
653
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700654#ifndef CONFIG_NEED_MULTIPLE_NODES
Yinghai Lu2ec65f82008-06-23 03:05:30 -0700655void __init initmem_init(unsigned long start_pfn,
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700656 unsigned long end_pfn)
657{
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700658#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);
Yinghai Lucb95a132008-07-02 00:31:02 -0700663 e820_register_active_regions(0, 0, highend_pfn);
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700664 printk(KERN_NOTICE "%ldMB HIGHMEM available.\n",
665 pages_to_mb(highend_pfn - highstart_pfn));
666 num_physpages = highend_pfn;
667 high_memory = (void *) __va(highstart_pfn * PAGE_SIZE - 1) + 1;
668#else
669 memory_present(0, 0, max_low_pfn);
Yinghai Lucb95a132008-07-02 00:31:02 -0700670 e820_register_active_regions(0, 0, max_low_pfn);
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700671 num_physpages = max_low_pfn;
672 high_memory = (void *) __va(max_low_pfn * PAGE_SIZE - 1) + 1;
673#endif
674#ifdef CONFIG_FLATMEM
675 max_mapnr = num_physpages;
676#endif
677 printk(KERN_NOTICE "%ldMB LOWMEM available.\n",
678 pages_to_mb(max_low_pfn));
679
680 setup_bootmem_allocator();
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700681}
Yinghai Lucb95a132008-07-02 00:31:02 -0700682#endif /* !CONFIG_NEED_MULTIPLE_NODES */
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700683
Yinghai Lucb95a132008-07-02 00:31:02 -0700684static void __init zone_sizes_init(void)
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700685{
686 unsigned long max_zone_pfns[MAX_NR_ZONES];
687 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
688 max_zone_pfns[ZONE_DMA] =
689 virt_to_phys((char *)MAX_DMA_ADDRESS) >> PAGE_SHIFT;
690 max_zone_pfns[ZONE_NORMAL] = max_low_pfn;
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700691#ifdef CONFIG_HIGHMEM
692 max_zone_pfns[ZONE_HIGHMEM] = highend_pfn;
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700693#endif
694
695 free_area_init_nodes(max_zone_pfns);
696}
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700697
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700698void __init setup_bootmem_allocator(void)
699{
700 int i;
701 unsigned long bootmap_size, bootmap;
702 /*
703 * Initialize the boot-time allocator (with low memory only):
704 */
705 bootmap_size = bootmem_bootmap_pages(max_low_pfn)<<PAGE_SHIFT;
706 bootmap = find_e820_area(min_low_pfn<<PAGE_SHIFT,
707 max_pfn_mapped<<PAGE_SHIFT, bootmap_size,
708 PAGE_SIZE);
709 if (bootmap == -1L)
710 panic("Cannot find bootmem map of size %ld\n", bootmap_size);
711 reserve_early(bootmap, bootmap + bootmap_size, "BOOTMAP");
Yinghai Lu225c37d2008-06-22 02:46:58 -0700712
Yinghai Lu346cafe2008-06-23 03:06:14 -0700713 /* don't touch min_low_pfn */
714 bootmap_size = init_bootmem_node(NODE_DATA(0), bootmap >> PAGE_SHIFT,
715 min_low_pfn, max_low_pfn);
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700716 printk(KERN_INFO " mapped low ram: 0 - %08lx\n",
717 max_pfn_mapped<<PAGE_SHIFT);
718 printk(KERN_INFO " low ram: %08lx - %08lx\n",
719 min_low_pfn<<PAGE_SHIFT, max_low_pfn<<PAGE_SHIFT);
720 printk(KERN_INFO " bootmap %08lx - %08lx\n",
721 bootmap, bootmap + bootmap_size);
722 for_each_online_node(i)
723 free_bootmem_with_active_regions(i, max_low_pfn);
724 early_res_to_bootmem(0, max_low_pfn<<PAGE_SHIFT);
725
Yinghai Lu4e296842008-06-24 12:18:14 -0700726 after_init_bootmem = 1;
Yinghai Lub2ac82a2008-06-22 02:45:39 -0700727}
728
Yinghai Lu4e296842008-06-24 12:18:14 -0700729static void __init find_early_table_space(unsigned long end)
730{
Yinghai Lu7482b0e2008-06-28 03:30:39 -0700731 unsigned long puds, pmds, ptes, tables, start;
Yinghai Lu4e296842008-06-24 12:18:14 -0700732
733 puds = (end + PUD_SIZE - 1) >> PUD_SHIFT;
734 tables = PAGE_ALIGN(puds * sizeof(pud_t));
735
736 pmds = (end + PMD_SIZE - 1) >> PMD_SHIFT;
737 tables += PAGE_ALIGN(pmds * sizeof(pmd_t));
738
Yinghai Lu7482b0e2008-06-28 03:30:39 -0700739 if (cpu_has_pse) {
740 unsigned long extra;
Yinghai Lua04ad822008-06-29 00:39:06 -0700741
742 extra = end - ((end>>PMD_SHIFT) << PMD_SHIFT);
743 extra += PMD_SIZE;
Yinghai Lu7482b0e2008-06-28 03:30:39 -0700744 ptes = (extra + PAGE_SIZE - 1) >> PAGE_SHIFT;
745 } else
746 ptes = (end + PAGE_SIZE - 1) >> PAGE_SHIFT;
747
748 tables += PAGE_ALIGN(ptes * sizeof(pte_t));
Jeremy Fitzhardinge8207c252008-06-24 17:32:48 -0400749
Yinghai Lua04ad822008-06-29 00:39:06 -0700750 /* for fixmap */
751 tables += PAGE_SIZE * 2;
752
Yinghai Lu4e296842008-06-24 12:18:14 -0700753 /*
754 * RED-PEN putting page tables only on node 0 could
755 * cause a hotspot and fill up ZONE_DMA. The page tables
756 * need roughly 0.5KB per GB.
757 */
758 start = 0x7000;
759 table_start = find_e820_area(start, max_pfn_mapped<<PAGE_SHIFT,
760 tables, PAGE_SIZE);
761 if (table_start == -1UL)
762 panic("Cannot find space for the kernel page tables");
763
764 table_start >>= PAGE_SHIFT;
765 table_end = table_start;
766 table_top = table_start + (tables>>PAGE_SHIFT);
767
768 printk(KERN_DEBUG "kernel direct mapping tables up to %lx @ %lx-%lx\n",
769 end, table_start << PAGE_SHIFT,
770 (table_start << PAGE_SHIFT) + tables);
771}
772
773unsigned long __init_refok init_memory_mapping(unsigned long start,
774 unsigned long end)
775{
776 pgd_t *pgd_base = swapper_pg_dir;
Yinghai Lua04ad822008-06-29 00:39:06 -0700777 unsigned long start_pfn, end_pfn;
778 unsigned long big_page_start;
Yinghai Lu4e296842008-06-24 12:18:14 -0700779
780 /*
781 * Find space for the kernel direct mapping tables.
782 */
783 if (!after_init_bootmem)
784 find_early_table_space(end);
785
786#ifdef CONFIG_X86_PAE
787 set_nx();
788 if (nx_enabled)
789 printk(KERN_INFO "NX (Execute Disable) protection: active\n");
790#endif
791
792 /* Enable PSE if available */
793 if (cpu_has_pse)
794 set_in_cr4(X86_CR4_PSE);
795
796 /* Enable PGE if available */
797 if (cpu_has_pge) {
798 set_in_cr4(X86_CR4_PGE);
799 __PAGE_KERNEL |= _PAGE_GLOBAL;
800 __PAGE_KERNEL_EXEC |= _PAGE_GLOBAL;
801 }
802
Yinghai Lua04ad822008-06-29 00:39:06 -0700803 /*
804 * Don't use a large page for the first 2/4MB of memory
805 * because there are often fixed size MTRRs in there
806 * and overlapping MTRRs into large pages can cause
807 * slowdowns.
808 */
809 big_page_start = PMD_SIZE;
810
811 if (start < big_page_start) {
812 start_pfn = start >> PAGE_SHIFT;
813 end_pfn = min(big_page_start>>PAGE_SHIFT, end>>PAGE_SHIFT);
814 } else {
815 /* head is not big page alignment ? */
816 start_pfn = start >> PAGE_SHIFT;
817 end_pfn = ((start + (PMD_SIZE - 1))>>PMD_SHIFT)
818 << (PMD_SHIFT - PAGE_SHIFT);
819 }
820 if (start_pfn < end_pfn)
821 kernel_physical_mapping_init(pgd_base, start_pfn, end_pfn, 0);
822
823 /* big page range */
824 start_pfn = ((start + (PMD_SIZE - 1))>>PMD_SHIFT)
825 << (PMD_SHIFT - PAGE_SHIFT);
826 if (start_pfn < (big_page_start >> PAGE_SHIFT))
827 start_pfn = big_page_start >> PAGE_SHIFT;
828 end_pfn = (end>>PMD_SHIFT) << (PMD_SHIFT - PAGE_SHIFT);
829 if (start_pfn < end_pfn)
830 kernel_physical_mapping_init(pgd_base, start_pfn, end_pfn,
831 cpu_has_pse);
832
833 /* tail is not big page alignment ? */
834 start_pfn = end_pfn;
835 if (start_pfn > (big_page_start>>PAGE_SHIFT)) {
836 end_pfn = end >> PAGE_SHIFT;
837 if (start_pfn < end_pfn)
838 kernel_physical_mapping_init(pgd_base, start_pfn,
839 end_pfn, 0);
840 }
Yinghai Lu4e296842008-06-24 12:18:14 -0700841
Yinghai Lue7b37892008-06-25 21:51:28 -0700842 early_ioremap_page_table_range_init(pgd_base);
843
Yinghai Lu4e296842008-06-24 12:18:14 -0700844 load_cr3(swapper_pg_dir);
845
846 __flush_tlb_all();
847
848 if (!after_init_bootmem)
849 reserve_early(table_start << PAGE_SHIFT,
850 table_end << PAGE_SHIFT, "PGTABLE");
851
852 return end >> PAGE_SHIFT;
853}
854
Yinghai Lue7b37892008-06-25 21:51:28 -0700855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856/*
857 * paging_init() sets up the page tables - note that the first 8MB are
858 * already mapped by head.S.
859 *
860 * This routines also unmaps the page at virtual kernel address 0, so
861 * that we can trap those pesky NULL-reference errors in the kernel.
862 */
863void __init paging_init(void)
864{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 pagetable_init();
866
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 __flush_tlb_all();
868
869 kmap_init();
Yinghai Lu11cd0bc2008-06-23 19:51:10 -0700870
871 /*
872 * NOTE: at this point the bootmem allocator is fully available.
873 */
Yinghai Lu11cd0bc2008-06-23 19:51:10 -0700874 sparse_init();
875 zone_sizes_init();
876
877 paravirt_post_allocator_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878}
879
880/*
881 * Test if the WP bit works in supervisor mode. It isn't supported on 386's
Dmitri Vorobievf7f17a62008-04-21 00:47:55 +0400882 * and also on some strange 486's. All 586+'s are OK. This used to involve
883 * black magic jumps to work around some nasty CPU bugs, but fortunately the
884 * switch to using exceptions got rid of all that.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886static void __init test_wp_bit(void)
887{
Ingo Molnard7d119d2008-01-30 13:34:10 +0100888 printk(KERN_INFO
889 "Checking if this processor honours the WP bit even in supervisor mode...");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
891 /* Any page-aligned address will do, the test is non-destructive */
892 __set_fixmap(FIX_WP_TEST, __pa(&swapper_pg_dir), PAGE_READONLY);
893 boot_cpu_data.wp_works_ok = do_test_wp_bit();
894 clear_fixmap(FIX_WP_TEST);
895
896 if (!boot_cpu_data.wp_works_ok) {
Ingo Molnard7d119d2008-01-30 13:34:10 +0100897 printk(KERN_CONT "No.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898#ifdef CONFIG_X86_WP_WORKS_OK
Ingo Molnard7d119d2008-01-30 13:34:10 +0100899 panic(
900 "This kernel doesn't support CPU's with broken WP. Recompile it for a 386!");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901#endif
902 } else {
Ingo Molnard7d119d2008-01-30 13:34:10 +0100903 printk(KERN_CONT "Ok.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 }
905}
906
Ingo Molnar8550eb92008-01-30 13:34:10 +0100907static struct kcore_list kcore_mem, kcore_vmalloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
909void __init mem_init(void)
910{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 int codesize, reservedpages, datasize, initsize;
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700912 int tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
Andy Whitcroft05b79bd2005-06-23 00:07:57 -0700914#ifdef CONFIG_FLATMEM
Eric Sesterhenn8d8f3cb2006-10-03 23:34:58 +0200915 BUG_ON(!mem_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 /* this will put all low memory onto the freelists */
918 totalram_pages += free_all_bootmem();
919
920 reservedpages = 0;
921 for (tmp = 0; tmp < max_low_pfn; tmp++)
922 /*
Ingo Molnar8550eb92008-01-30 13:34:10 +0100923 * Only count reserved RAM pages:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 */
925 if (page_is_ram(tmp) && PageReserved(pfn_to_page(tmp)))
926 reservedpages++;
927
Yinghai Lucc9f7a02008-06-16 16:11:08 -0700928 set_highmem_pages_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
930 codesize = (unsigned long) &_etext - (unsigned long) &_text;
931 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
932 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
933
Ingo Molnar8550eb92008-01-30 13:34:10 +0100934 kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
935 kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 VMALLOC_END-VMALLOC_START);
937
Ingo Molnar8550eb92008-01-30 13:34:10 +0100938 printk(KERN_INFO "Memory: %luk/%luk available (%dk kernel code, "
939 "%dk reserved, %dk data, %dk init, %ldk highmem)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
941 num_physpages << (PAGE_SHIFT-10),
942 codesize >> 10,
943 reservedpages << (PAGE_SHIFT-10),
944 datasize >> 10,
945 initsize >> 10,
946 (unsigned long) (totalhigh_pages << (PAGE_SHIFT-10))
947 );
948
Ingo Molnard7d119d2008-01-30 13:34:10 +0100949 printk(KERN_INFO "virtual kernel memory layout:\n"
Ingo Molnar8550eb92008-01-30 13:34:10 +0100950 " fixmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700951#ifdef CONFIG_HIGHMEM
Ingo Molnar8550eb92008-01-30 13:34:10 +0100952 " pkmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700953#endif
Ingo Molnar8550eb92008-01-30 13:34:10 +0100954 " vmalloc : 0x%08lx - 0x%08lx (%4ld MB)\n"
955 " lowmem : 0x%08lx - 0x%08lx (%4ld MB)\n"
956 " .init : 0x%08lx - 0x%08lx (%4ld kB)\n"
957 " .data : 0x%08lx - 0x%08lx (%4ld kB)\n"
958 " .text : 0x%08lx - 0x%08lx (%4ld kB)\n",
959 FIXADDR_START, FIXADDR_TOP,
960 (FIXADDR_TOP - FIXADDR_START) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700961
962#ifdef CONFIG_HIGHMEM
Ingo Molnar8550eb92008-01-30 13:34:10 +0100963 PKMAP_BASE, PKMAP_BASE+LAST_PKMAP*PAGE_SIZE,
964 (LAST_PKMAP*PAGE_SIZE) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700965#endif
966
Ingo Molnar8550eb92008-01-30 13:34:10 +0100967 VMALLOC_START, VMALLOC_END,
968 (VMALLOC_END - VMALLOC_START) >> 20,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700969
Ingo Molnar8550eb92008-01-30 13:34:10 +0100970 (unsigned long)__va(0), (unsigned long)high_memory,
971 ((unsigned long)high_memory - (unsigned long)__va(0)) >> 20,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700972
Ingo Molnar8550eb92008-01-30 13:34:10 +0100973 (unsigned long)&__init_begin, (unsigned long)&__init_end,
974 ((unsigned long)&__init_end -
975 (unsigned long)&__init_begin) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700976
Ingo Molnar8550eb92008-01-30 13:34:10 +0100977 (unsigned long)&_etext, (unsigned long)&_edata,
978 ((unsigned long)&_edata - (unsigned long)&_etext) >> 10,
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700979
Ingo Molnar8550eb92008-01-30 13:34:10 +0100980 (unsigned long)&_text, (unsigned long)&_etext,
981 ((unsigned long)&_etext - (unsigned long)&_text) >> 10);
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700982
983#ifdef CONFIG_HIGHMEM
Ingo Molnar8550eb92008-01-30 13:34:10 +0100984 BUG_ON(PKMAP_BASE + LAST_PKMAP*PAGE_SIZE > FIXADDR_START);
985 BUG_ON(VMALLOC_END > PKMAP_BASE);
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700986#endif
Ingo Molnar8550eb92008-01-30 13:34:10 +0100987 BUG_ON(VMALLOC_START > VMALLOC_END);
988 BUG_ON((unsigned long)high_memory > VMALLOC_START);
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -0700989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 if (boot_cpu_data.wp_works_ok < 0)
991 test_wp_bit();
992
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100993 cpa_init();
Hugh Dickins61165d72008-05-13 14:26:57 +0100994 save_pg_dir();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 zap_low_mappings();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996}
997
KAMEZAWA Hiroyukiad8f5792006-05-20 15:00:03 -0700998#ifdef CONFIG_MEMORY_HOTPLUG
Yasunori Gotobc02af92006-06-27 02:53:30 -0700999int arch_add_memory(int nid, u64 start, u64 size)
Dave Hansen05039b92005-10-29 18:16:57 -07001000{
Yasunori Goto7c7e9422006-12-22 01:11:13 -08001001 struct pglist_data *pgdata = NODE_DATA(nid);
Christoph Lameter776ed982006-09-25 23:31:09 -07001002 struct zone *zone = pgdata->node_zones + ZONE_HIGHMEM;
Dave Hansen05039b92005-10-29 18:16:57 -07001003 unsigned long start_pfn = start >> PAGE_SHIFT;
1004 unsigned long nr_pages = size >> PAGE_SHIFT;
1005
1006 return __add_pages(zone, start_pfn, nr_pages);
1007}
Andi Kleen9d99aaa2006-04-07 19:49:15 +02001008#endif
Dave Hansen05039b92005-10-29 18:16:57 -07001009
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010/*
1011 * This function cannot be __init, since exceptions don't work in that
1012 * section. Put this after the callers, so that it cannot be inlined.
1013 */
Ingo Molnar8550eb92008-01-30 13:34:10 +01001014static noinline int do_test_wp_bit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015{
1016 char tmp_reg;
1017 int flag;
1018
1019 __asm__ __volatile__(
Ingo Molnar8550eb92008-01-30 13:34:10 +01001020 " movb %0, %1 \n"
1021 "1: movb %1, %0 \n"
1022 " xorl %2, %2 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 "2: \n"
H. Peter Anvinf832ff12008-02-04 16:47:58 +01001024 _ASM_EXTABLE(1b,2b)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 :"=m" (*(char *)fix_to_virt(FIX_WP_TEST)),
1026 "=q" (tmp_reg),
1027 "=r" (flag)
1028 :"2" (1)
1029 :"memory");
Ingo Molnar8550eb92008-01-30 13:34:10 +01001030
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 return flag;
1032}
1033
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001034#ifdef CONFIG_DEBUG_RODATA
Arjan van de Venedeed302008-01-30 13:34:08 +01001035const int rodata_test_data = 0xC3;
1036EXPORT_SYMBOL_GPL(rodata_test_data);
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001037
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001038void mark_rodata_ro(void)
1039{
Jan Beulich6fb14752007-05-02 19:27:10 +02001040 unsigned long start = PFN_ALIGN(_text);
1041 unsigned long size = PFN_ALIGN(_etext) - start;
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001042
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -05001043 set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
1044 printk(KERN_INFO "Write protecting the kernel text: %luk\n",
1045 size >> 10);
Andi Kleen0c42f392008-01-30 13:33:42 +01001046
1047#ifdef CONFIG_CPA_DEBUG
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -05001048 printk(KERN_INFO "Testing CPA: Reverting %lx-%lx\n",
1049 start, start+size);
1050 set_pages_rw(virt_to_page(start), size>>PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +01001051
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -05001052 printk(KERN_INFO "Testing CPA: write protecting again\n");
1053 set_pages_ro(virt_to_page(start), size>>PAGE_SHIFT);
Linus Torvalds602033e2007-07-26 12:07:21 -07001054#endif
Jan Beulich6fb14752007-05-02 19:27:10 +02001055 start += size;
1056 size = (unsigned long)__end_rodata - start;
Arjan van de Ven6d238cc2008-01-30 13:34:06 +01001057 set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
Ingo Molnard7d119d2008-01-30 13:34:10 +01001058 printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
1059 size >> 10);
Arjan van de Venedeed302008-01-30 13:34:08 +01001060 rodata_test();
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001061
Andi Kleen0c42f392008-01-30 13:33:42 +01001062#ifdef CONFIG_CPA_DEBUG
Ingo Molnard7d119d2008-01-30 13:34:10 +01001063 printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, start + size);
Arjan van de Ven6d238cc2008-01-30 13:34:06 +01001064 set_pages_rw(virt_to_page(start), size >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +01001065
Ingo Molnard7d119d2008-01-30 13:34:10 +01001066 printk(KERN_INFO "Testing CPA: write protecting again\n");
Arjan van de Ven6d238cc2008-01-30 13:34:06 +01001067 set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +01001068#endif
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001069}
1070#endif
1071
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001072void free_init_pages(char *what, unsigned long begin, unsigned long end)
1073{
Ingo Molnaree01f112008-01-30 13:34:09 +01001074#ifdef CONFIG_DEBUG_PAGEALLOC
1075 /*
1076 * If debugging page accesses then do not free this memory but
1077 * mark them not present - any buggy init-section access will
1078 * create a kernel page fault:
1079 */
1080 printk(KERN_INFO "debug: unmapping init memory %08lx..%08lx\n",
1081 begin, PAGE_ALIGN(end));
1082 set_memory_np(begin, (end - begin) >> PAGE_SHIFT);
1083#else
Ingo Molnar86f03982008-01-30 13:34:09 +01001084 unsigned long addr;
1085
Arjan van de Ven3c1df682008-01-30 13:34:07 +01001086 /*
1087 * We just marked the kernel text read only above, now that
1088 * we are going to free part of that, we need to make that
1089 * writeable first.
1090 */
1091 set_memory_rw(begin, (end - begin) >> PAGE_SHIFT);
1092
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001093 for (addr = begin; addr < end; addr += PAGE_SIZE) {
Linus Torvaldse3ebadd2007-05-07 08:44:24 -07001094 ClearPageReserved(virt_to_page(addr));
1095 init_page_count(virt_to_page(addr));
1096 memset((void *)addr, POISON_FREE_INITMEM, PAGE_SIZE);
1097 free_page(addr);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001098 totalram_pages++;
1099 }
Jan Beulich6fb14752007-05-02 19:27:10 +02001100 printk(KERN_INFO "Freeing %s: %luk freed\n", what, (end - begin) >> 10);
Ingo Molnaree01f112008-01-30 13:34:09 +01001101#endif
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001102}
1103
1104void free_initmem(void)
1105{
1106 free_init_pages("unused kernel memory",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -07001107 (unsigned long)(&__init_begin),
1108 (unsigned long)(&__init_end));
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001109}
Arjan van de Ven63aaf302006-01-06 00:12:02 -08001110
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111#ifdef CONFIG_BLK_DEV_INITRD
1112void free_initrd_mem(unsigned long start, unsigned long end)
1113{
Linus Torvaldse3ebadd2007-05-07 08:44:24 -07001114 free_init_pages("initrd memory", start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115}
1116#endif
Yinghai Lud2dbf342008-06-13 02:00:56 -07001117
1118int __init reserve_bootmem_generic(unsigned long phys, unsigned long len,
1119 int flags)
1120{
1121 return reserve_bootmem(phys, len, flags);
1122}