blob: d84d3e91d348190f1dc5fb50d2010722d1f01fba [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/x86_64/mm/init.c
3 *
4 * Copyright (C) 1995 Linus Torvalds
5 * Copyright (C) 2000 Pavel Machek <pavel@suse.cz>
6 * Copyright (C) 2002,2003 Andi Kleen <ak@suse.de>
7 */
8
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#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/swap.h>
19#include <linux/smp.h>
20#include <linux/init.h>
Thomas Gleixner11034d52008-05-12 15:43:36 +020021#include <linux/initrd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/pagemap.h>
23#include <linux/bootmem.h>
24#include <linux/proc_fs.h>
Andi Kleen59170892005-11-05 17:25:53 +010025#include <linux/pci.h>
Jan Beulich6fb14752007-05-02 19:27:10 +020026#include <linux/pfn.h>
Randy Dunlapc9cf5522006-06-27 02:53:52 -070027#include <linux/poison.h>
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +010028#include <linux/dma-mapping.h>
Matt Tolentino44df75e2006-01-17 07:03:41 +010029#include <linux/module.h>
30#include <linux/memory_hotplug.h>
Konrad Rzeszutekae32b122007-05-02 19:27:11 +020031#include <linux/nmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33#include <asm/processor.h>
34#include <asm/system.h>
35#include <asm/uaccess.h>
36#include <asm/pgtable.h>
37#include <asm/pgalloc.h>
38#include <asm/dma.h>
39#include <asm/fixmap.h>
40#include <asm/e820.h>
41#include <asm/apic.h>
42#include <asm/tlb.h>
43#include <asm/mmu_context.h>
44#include <asm/proto.h>
45#include <asm/smp.h>
Andi Kleen2bc04142005-11-05 17:25:53 +010046#include <asm/sections.h>
Thomas Gleixner718fc132008-01-30 13:30:17 +010047#include <asm/kdebug.h>
Thomas Gleixneraaa64e02008-01-30 13:30:17 +010048#include <asm/numa.h>
Harvey Harrison7bfeab92008-02-12 12:12:01 -080049#include <asm/cacheflush.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Yinghai Lu064d25f2008-06-16 19:58:28 -070051/*
Yinghai Lu064d25f2008-06-16 19:58:28 -070052 * end_pfn only includes RAM, while max_pfn_mapped includes all e820 entries.
53 * The direct mapping extends to max_pfn_mapped, so that we can directly access
54 * apertures, ACPI and other tables without having to play with fixmaps.
55 */
Yinghai Luf361a452008-07-10 20:38:26 -070056unsigned long max_low_pfn_mapped;
Yinghai Lu064d25f2008-06-16 19:58:28 -070057unsigned long max_pfn_mapped;
58
Andi Kleene18c6872005-11-05 17:25:53 +010059static unsigned long dma_reserve __initdata;
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
62
Hugh Dickinsa06de632008-08-15 13:58:32 +010063int direct_gbpages
Ingo Molnar00d1c5e2008-04-17 17:40:45 +020064#ifdef CONFIG_DIRECT_GBPAGES
65 = 1
66#endif
67;
68
69static int __init parse_direct_gbpages_off(char *arg)
70{
71 direct_gbpages = 0;
72 return 0;
73}
74early_param("nogbpages", parse_direct_gbpages_off);
75
76static int __init parse_direct_gbpages_on(char *arg)
77{
78 direct_gbpages = 1;
79 return 0;
80}
81early_param("gbpages", parse_direct_gbpages_on);
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083/*
84 * NOTE: pagetable_init alloc all the fixmap pagetables contiguous on the
85 * physical space so we can cache the place of the first one and move
86 * around without checking the pgd every time.
87 */
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089int after_bootmem;
90
Yinghai Lubd220a22008-09-05 00:58:28 -070091unsigned long __supported_pte_mask __read_mostly = ~0UL;
92EXPORT_SYMBOL_GPL(__supported_pte_mask);
93
94static int do_not_nx __cpuinitdata;
95
Ingo Molnardeed05b2008-09-05 10:23:26 +020096/*
97 * noexec=on|off
98 * Control non-executable mappings for 64-bit processes.
99 *
100 * on Enable (default)
101 * off Disable
102 */
Yinghai Lubd220a22008-09-05 00:58:28 -0700103static int __init nonx_setup(char *str)
104{
105 if (!str)
106 return -EINVAL;
107 if (!strncmp(str, "on", 2)) {
108 __supported_pte_mask |= _PAGE_NX;
109 do_not_nx = 0;
110 } else if (!strncmp(str, "off", 3)) {
111 do_not_nx = 1;
112 __supported_pte_mask &= ~_PAGE_NX;
113 }
114 return 0;
115}
116early_param("noexec", nonx_setup);
117
118void __cpuinit check_efer(void)
119{
120 unsigned long efer;
121
122 rdmsrl(MSR_EFER, efer);
123 if (!(efer & EFER_NX) || do_not_nx)
124 __supported_pte_mask &= ~_PAGE_NX;
125}
126
127int force_personality32;
128
Ingo Molnardeed05b2008-09-05 10:23:26 +0200129/*
130 * noexec32=on|off
131 * Control non executable heap for 32bit processes.
132 * To control the stack too use noexec=off
133 *
134 * on PROT_READ does not imply PROT_EXEC for 32-bit processes (default)
135 * off PROT_READ implies PROT_EXEC
136 */
Yinghai Lubd220a22008-09-05 00:58:28 -0700137static int __init nonx32_setup(char *str)
138{
139 if (!strcmp(str, "on"))
140 force_personality32 &= ~READ_IMPLIES_EXEC;
141 else if (!strcmp(str, "off"))
142 force_personality32 |= READ_IMPLIES_EXEC;
143 return 1;
144}
145__setup("noexec32=", nonx32_setup);
146
Marcin Slusarz8d6ea9672008-08-15 18:32:24 +0200147/*
148 * NOTE: This function is marked __ref because it calls __init function
149 * (alloc_bootmem_pages). It's safe to do it ONLY when after_bootmem == 0.
150 */
151static __ref void *spp_getpage(void)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100152{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 void *ptr;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 if (after_bootmem)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100156 ptr = (void *) get_zeroed_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 else
158 ptr = alloc_bootmem_pages(PAGE_SIZE);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100159
160 if (!ptr || ((unsigned long)ptr & ~PAGE_MASK)) {
161 panic("set_pte_phys: cannot allocate page data %s\n",
162 after_bootmem ? "after bootmem" : "");
163 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100165 pr_debug("spp_getpage %p\n", ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100167 return ptr;
168}
169
Jeremy Fitzhardinged494a962008-06-17 11:41:59 -0700170void
Eduardo Habkost0814e0b2008-06-25 00:19:22 -0400171set_pte_vaddr_pud(pud_t *pud_page, unsigned long vaddr, pte_t new_pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 pud_t *pud;
174 pmd_t *pmd;
Jeremy Fitzhardinged494a962008-06-17 11:41:59 -0700175 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Eduardo Habkost0814e0b2008-06-25 00:19:22 -0400177 pud = pud_page + pud_index(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 if (pud_none(*pud)) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100179 pmd = (pmd_t *) spp_getpage();
Jeremy Fitzhardingebb23e402008-06-25 00:19:02 -0400180 pud_populate(&init_mm, pud, pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 if (pmd != pmd_offset(pud, 0)) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100182 printk(KERN_ERR "PAGETABLE BUG #01! %p <-> %p\n",
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100183 pmd, pmd_offset(pud, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 return;
185 }
186 }
187 pmd = pmd_offset(pud, vaddr);
188 if (pmd_none(*pmd)) {
189 pte = (pte_t *) spp_getpage();
Jeremy Fitzhardingebb23e402008-06-25 00:19:02 -0400190 pmd_populate_kernel(&init_mm, pmd, pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 if (pte != pte_offset_kernel(pmd, 0)) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100192 printk(KERN_ERR "PAGETABLE BUG #02!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 return;
194 }
195 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197 pte = pte_offset_kernel(pmd, vaddr);
Ingo Molnar70c9f592008-04-25 18:05:57 +0200198 if (!pte_none(*pte) && pte_val(new_pte) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 pte_val(*pte) != (pte_val(new_pte) & __supported_pte_mask))
200 pte_ERROR(*pte);
201 set_pte(pte, new_pte);
202
203 /*
204 * It's enough to flush this one mapping.
205 * (PGE mappings get flushed as well)
206 */
207 __flush_tlb_one(vaddr);
208}
209
Eduardo Habkost0814e0b2008-06-25 00:19:22 -0400210void
211set_pte_vaddr(unsigned long vaddr, pte_t pteval)
212{
213 pgd_t *pgd;
214 pud_t *pud_page;
215
216 pr_debug("set_pte_vaddr %lx to %lx\n", vaddr, native_pte_val(pteval));
217
218 pgd = pgd_offset_k(vaddr);
219 if (pgd_none(*pgd)) {
220 printk(KERN_ERR
221 "PGD FIXMAP MISSING, it should be setup in head.S!\n");
222 return;
223 }
224 pud_page = (pud_t*)pgd_page_vaddr(*pgd);
225 set_pte_vaddr_pud(pud_page, vaddr, pteval);
226}
227
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100228/*
Jack Steiner3a9e1892008-07-01 14:45:32 -0500229 * Create large page table mappings for a range of physical addresses.
230 */
231static void __init __init_extra_mapping(unsigned long phys, unsigned long size,
232 pgprot_t prot)
233{
234 pgd_t *pgd;
235 pud_t *pud;
236 pmd_t *pmd;
237
238 BUG_ON((phys & ~PMD_MASK) || (size & ~PMD_MASK));
239 for (; size; phys += PMD_SIZE, size -= PMD_SIZE) {
240 pgd = pgd_offset_k((unsigned long)__va(phys));
241 if (pgd_none(*pgd)) {
242 pud = (pud_t *) spp_getpage();
243 set_pgd(pgd, __pgd(__pa(pud) | _KERNPG_TABLE |
244 _PAGE_USER));
245 }
246 pud = pud_offset(pgd, (unsigned long)__va(phys));
247 if (pud_none(*pud)) {
248 pmd = (pmd_t *) spp_getpage();
249 set_pud(pud, __pud(__pa(pmd) | _KERNPG_TABLE |
250 _PAGE_USER));
251 }
252 pmd = pmd_offset(pud, phys);
253 BUG_ON(!pmd_none(*pmd));
254 set_pmd(pmd, __pmd(phys | pgprot_val(prot)));
255 }
256}
257
258void __init init_extra_mapping_wb(unsigned long phys, unsigned long size)
259{
260 __init_extra_mapping(phys, size, PAGE_KERNEL_LARGE);
261}
262
263void __init init_extra_mapping_uc(unsigned long phys, unsigned long size)
264{
265 __init_extra_mapping(phys, size, PAGE_KERNEL_LARGE_NOCACHE);
266}
267
268/*
Ingo Molnar88f3aec2008-02-21 11:04:11 +0100269 * The head.S code sets up the kernel high mapping:
270 *
271 * from __START_KERNEL_map to __START_KERNEL_map + size (== _end-_text)
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100272 *
273 * phys_addr holds the negative offset to the kernel, which is added
274 * to the compile time generated pmds. This results in invalid pmds up
275 * to the point where we hit the physaddr 0 mapping.
276 *
277 * We limit the mappings to the region from _text to _end. _end is
278 * rounded up to the 2MB boundary. This catches the invalid pmds as
279 * well, as they are located before _text:
280 */
281void __init cleanup_highmap(void)
282{
283 unsigned long vaddr = __START_KERNEL_map;
Joerg Roedeld86bb0d2008-07-25 16:48:57 +0200284 unsigned long end = roundup((unsigned long)_end, PMD_SIZE) - 1;
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100285 pmd_t *pmd = level2_kernel_pgt;
286 pmd_t *last_pmd = pmd + PTRS_PER_PMD;
287
288 for (; pmd < last_pmd; pmd++, vaddr += PMD_SIZE) {
Hugh Dickins2884f112008-05-28 19:36:07 +0100289 if (pmd_none(*pmd))
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100290 continue;
291 if (vaddr < (unsigned long) _text || vaddr > end)
292 set_pmd(pmd, __pmd(0));
293 }
294}
295
Andi Kleen75175272008-01-30 13:33:17 +0100296static unsigned long __initdata table_start;
297static unsigned long __meminitdata table_end;
Yinghai Lud86623a2008-06-24 14:57:29 -0700298static unsigned long __meminitdata table_top;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Jan Beulich9482ac62008-08-21 14:28:42 +0100300static __ref void *alloc_low_page(unsigned long *phys)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100301{
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200302 unsigned long pfn = table_end++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 void *adr;
304
Matt Tolentino44df75e2006-01-17 07:03:41 +0100305 if (after_bootmem) {
306 adr = (void *)get_zeroed_page(GFP_ATOMIC);
307 *phys = __pa(adr);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100308
Matt Tolentino44df75e2006-01-17 07:03:41 +0100309 return adr;
310 }
311
Yinghai Lud86623a2008-06-24 14:57:29 -0700312 if (pfn >= table_top)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100313 panic("alloc_low_page: ran out of memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200315 adr = early_ioremap(pfn * PAGE_SIZE, PAGE_SIZE);
316 memset(adr, 0, PAGE_SIZE);
317 *phys = pfn * PAGE_SIZE;
318 return adr;
319}
320
Jan Beulich9482ac62008-08-21 14:28:42 +0100321static __ref void unmap_low_page(void *adr)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100322{
Matt Tolentino44df75e2006-01-17 07:03:41 +0100323 if (after_bootmem)
324 return;
325
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200326 early_iounmap(adr, PAGE_SIZE);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100327}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700329static unsigned long __meminit
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700330phys_pte_init(pte_t *pte_page, unsigned long addr, unsigned long end,
331 pgprot_t prot)
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400332{
333 unsigned pages = 0;
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700334 unsigned long last_map_addr = end;
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400335 int i;
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700336
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400337 pte_t *pte = pte_page + pte_index(addr);
338
339 for(i = pte_index(addr); i < PTRS_PER_PTE; i++, addr += PAGE_SIZE, pte++) {
340
341 if (addr >= end) {
342 if (!after_bootmem) {
343 for(; i < PTRS_PER_PTE; i++, pte++)
344 set_pte(pte, __pte(0));
345 }
346 break;
347 }
348
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700349 /*
350 * We will re-use the existing mapping.
351 * Xen for example has some special requirements, like mapping
352 * pagetable pages as RO. So assume someone who pre-setup
353 * these mappings are more intelligent.
354 */
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400355 if (pte_val(*pte))
356 continue;
357
358 if (0)
359 printk(" pte=%p addr=%lx pte=%016lx\n",
360 pte, addr, pfn_pte(addr >> PAGE_SHIFT, PAGE_KERNEL).pte);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400361 pages++;
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700362 set_pte(pte, pfn_pte(addr >> PAGE_SHIFT, prot));
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400363 last_map_addr = (addr & PAGE_MASK) + PAGE_SIZE;
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400364 }
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700365
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400366 update_page_count(PG_LEVEL_4K, pages);
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700367
368 return last_map_addr;
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400369}
370
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700371static unsigned long __meminit
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700372phys_pte_update(pmd_t *pmd, unsigned long address, unsigned long end,
373 pgprot_t prot)
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400374{
375 pte_t *pte = (pte_t *)pmd_page_vaddr(*pmd);
376
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700377 return phys_pte_init(pte, address, end, prot);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400378}
379
Andi Kleencc615032008-03-12 03:53:28 +0100380static unsigned long __meminit
Yinghai Lub50efd22008-07-08 01:41:05 -0700381phys_pmd_init(pmd_t *pmd_page, unsigned long address, unsigned long end,
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700382 unsigned long page_size_mask, pgprot_t prot)
Matt Tolentino44df75e2006-01-17 07:03:41 +0100383{
Andi Kleence0c0e52008-05-02 11:46:49 +0200384 unsigned long pages = 0;
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700385 unsigned long last_map_addr = end;
Andi Kleence0c0e52008-05-02 11:46:49 +0200386
Keith Mannthey6ad91652006-09-26 10:52:36 +0200387 int i = pmd_index(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Keith Mannthey6ad91652006-09-26 10:52:36 +0200389 for (; i < PTRS_PER_PMD; i++, address += PMD_SIZE) {
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400390 unsigned long pte_phys;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200391 pmd_t *pmd = pmd_page + pmd_index(address);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400392 pte_t *pte;
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700393 pgprot_t new_prot = prot;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100394
Jan Beulich5f51e132006-06-26 13:59:02 +0200395 if (address >= end) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100396 if (!after_bootmem) {
Jan Beulich5f51e132006-06-26 13:59:02 +0200397 for (; i < PTRS_PER_PMD; i++, pmd++)
398 set_pmd(pmd, __pmd(0));
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100399 }
Matt Tolentino44df75e2006-01-17 07:03:41 +0100400 break;
401 }
Keith Mannthey6ad91652006-09-26 10:52:36 +0200402
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400403 if (pmd_val(*pmd)) {
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100404 if (!pmd_large(*pmd)) {
405 spin_lock(&init_mm.page_table_lock);
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700406 last_map_addr = phys_pte_update(pmd, address,
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700407 end, prot);
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100408 spin_unlock(&init_mm.page_table_lock);
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700409 continue;
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100410 }
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700411 /*
412 * If we are ok with PG_LEVEL_2M mapping, then we will
413 * use the existing mapping,
414 *
415 * Otherwise, we will split the large page mapping but
416 * use the same existing protection bits except for
417 * large page, so that we don't violate Intel's TLB
418 * Application note (317080) which says, while changing
419 * the page sizes, new and old translations should
420 * not differ with respect to page frame and
421 * attributes.
422 */
423 if (page_size_mask & (1 << PG_LEVEL_2M))
424 continue;
425 new_prot = pte_pgprot(pte_clrhuge(*(pte_t *)pmd));
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400426 }
Keith Mannthey6ad91652006-09-26 10:52:36 +0200427
Yinghai Lub50efd22008-07-08 01:41:05 -0700428 if (page_size_mask & (1<<PG_LEVEL_2M)) {
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400429 pages++;
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100430 spin_lock(&init_mm.page_table_lock);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400431 set_pte((pte_t *)pmd,
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700432 pfn_pte(address >> PAGE_SHIFT,
433 __pgprot(pgprot_val(prot) | _PAGE_PSE)));
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100434 spin_unlock(&init_mm.page_table_lock);
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700435 last_map_addr = (address & PMD_MASK) + PMD_SIZE;
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400436 continue;
437 }
438
439 pte = alloc_low_page(&pte_phys);
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700440 last_map_addr = phys_pte_init(pte, address, end, new_prot);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400441 unmap_low_page(pte);
442
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100443 spin_lock(&init_mm.page_table_lock);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400444 pmd_populate_kernel(&init_mm, pmd, __va(pte_phys));
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100445 spin_unlock(&init_mm.page_table_lock);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100446 }
Andi Kleence0c0e52008-05-02 11:46:49 +0200447 update_page_count(PG_LEVEL_2M, pages);
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700448 return last_map_addr;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100449}
450
Andi Kleencc615032008-03-12 03:53:28 +0100451static unsigned long __meminit
Yinghai Lub50efd22008-07-08 01:41:05 -0700452phys_pmd_update(pud_t *pud, unsigned long address, unsigned long end,
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700453 unsigned long page_size_mask, pgprot_t prot)
Matt Tolentino44df75e2006-01-17 07:03:41 +0100454{
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100455 pmd_t *pmd = pmd_offset(pud, 0);
Andi Kleencc615032008-03-12 03:53:28 +0100456 unsigned long last_map_addr;
457
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700458 last_map_addr = phys_pmd_init(pmd, address, end, page_size_mask, prot);
Keith Mannthey6ad91652006-09-26 10:52:36 +0200459 __flush_tlb_all();
Andi Kleencc615032008-03-12 03:53:28 +0100460 return last_map_addr;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100461}
462
Andi Kleencc615032008-03-12 03:53:28 +0100463static unsigned long __meminit
Yinghai Lub50efd22008-07-08 01:41:05 -0700464phys_pud_init(pud_t *pud_page, unsigned long addr, unsigned long end,
465 unsigned long page_size_mask)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100466{
Andi Kleence0c0e52008-05-02 11:46:49 +0200467 unsigned long pages = 0;
Andi Kleencc615032008-03-12 03:53:28 +0100468 unsigned long last_map_addr = end;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200469 int i = pud_index(addr);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100470
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100471 for (; i < PTRS_PER_PUD; i++, addr = (addr & PUD_MASK) + PUD_SIZE) {
Keith Mannthey6ad91652006-09-26 10:52:36 +0200472 unsigned long pmd_phys;
473 pud_t *pud = pud_page + pud_index(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 pmd_t *pmd;
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700475 pgprot_t prot = PAGE_KERNEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Keith Mannthey6ad91652006-09-26 10:52:36 +0200477 if (addr >= end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100480 if (!after_bootmem &&
481 !e820_any_mapped(addr, addr+PUD_SIZE, 0)) {
482 set_pud(pud, __pud(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 continue;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100484 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Keith Mannthey6ad91652006-09-26 10:52:36 +0200486 if (pud_val(*pud)) {
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700487 if (!pud_large(*pud)) {
Yinghai Lub50efd22008-07-08 01:41:05 -0700488 last_map_addr = phys_pmd_update(pud, addr, end,
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700489 page_size_mask, prot);
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700490 continue;
491 }
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700492 /*
493 * If we are ok with PG_LEVEL_1G mapping, then we will
494 * use the existing mapping.
495 *
496 * Otherwise, we will split the gbpage mapping but use
497 * the same existing protection bits except for large
498 * page, so that we don't violate Intel's TLB
499 * Application note (317080) which says, while changing
500 * the page sizes, new and old translations should
501 * not differ with respect to page frame and
502 * attributes.
503 */
504 if (page_size_mask & (1 << PG_LEVEL_1G))
505 continue;
506 prot = pte_pgprot(pte_clrhuge(*(pte_t *)pud));
Andi Kleenef925762008-04-17 17:40:45 +0200507 }
508
Yinghai Lub50efd22008-07-08 01:41:05 -0700509 if (page_size_mask & (1<<PG_LEVEL_1G)) {
Andi Kleence0c0e52008-05-02 11:46:49 +0200510 pages++;
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100511 spin_lock(&init_mm.page_table_lock);
Andi Kleenef925762008-04-17 17:40:45 +0200512 set_pte((pte_t *)pud,
513 pfn_pte(addr >> PAGE_SHIFT, PAGE_KERNEL_LARGE));
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100514 spin_unlock(&init_mm.page_table_lock);
Andi Kleencc615032008-03-12 03:53:28 +0100515 last_map_addr = (addr & PUD_MASK) + PUD_SIZE;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200516 continue;
517 }
518
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200519 pmd = alloc_low_page(&pmd_phys);
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700520 last_map_addr = phys_pmd_init(pmd, addr, end, page_size_mask,
521 prot);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400522 unmap_low_page(pmd);
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100523
524 spin_lock(&init_mm.page_table_lock);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400525 pud_populate(&init_mm, pud, __va(pmd_phys));
Matt Tolentino44df75e2006-01-17 07:03:41 +0100526 spin_unlock(&init_mm.page_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 }
Andi Kleen1a2b4412008-01-30 13:33:54 +0100528 __flush_tlb_all();
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700529
Andi Kleence0c0e52008-05-02 11:46:49 +0200530 update_page_count(PG_LEVEL_1G, pages);
Andi Kleencc615032008-03-12 03:53:28 +0100531
Yinghai Lu1a0db382008-06-24 14:56:20 -0700532 return last_map_addr;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100533}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400535static unsigned long __meminit
Yinghai Lub50efd22008-07-08 01:41:05 -0700536phys_pud_update(pgd_t *pgd, unsigned long addr, unsigned long end,
537 unsigned long page_size_mask)
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400538{
539 pud_t *pud;
540
541 pud = (pud_t *)pgd_page_vaddr(*pgd);
542
Yinghai Lub50efd22008-07-08 01:41:05 -0700543 return phys_pud_init(pud, addr, end, page_size_mask);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400544}
545
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700546static void __init find_early_table_space(unsigned long end, int use_pse,
547 int use_gbpages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548{
Yinghai Luc2e6d652008-07-08 01:43:27 -0700549 unsigned long puds, pmds, ptes, tables, start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
551 puds = (end + PUD_SIZE - 1) >> PUD_SHIFT;
Joerg Roedeld86bb0d2008-07-25 16:48:57 +0200552 tables = roundup(puds * sizeof(pud_t), PAGE_SIZE);
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700553 if (use_gbpages) {
Yinghai Luc2e6d652008-07-08 01:43:27 -0700554 unsigned long extra;
555 extra = end - ((end>>PUD_SHIFT) << PUD_SHIFT);
556 pmds = (extra + PMD_SIZE - 1) >> PMD_SHIFT;
557 } else
558 pmds = (end + PMD_SIZE - 1) >> PMD_SHIFT;
Joerg Roedeld86bb0d2008-07-25 16:48:57 +0200559 tables += roundup(pmds * sizeof(pmd_t), PAGE_SIZE);
Yinghai Luc2e6d652008-07-08 01:43:27 -0700560
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700561 if (use_pse) {
Yinghai Luc2e6d652008-07-08 01:43:27 -0700562 unsigned long extra;
563 extra = end - ((end>>PMD_SHIFT) << PMD_SHIFT);
564 ptes = (extra + PAGE_SIZE - 1) >> PAGE_SHIFT;
565 } else
566 ptes = (end + PAGE_SIZE - 1) >> PAGE_SHIFT;
Joerg Roedeld86bb0d2008-07-25 16:48:57 +0200567 tables += roundup(ptes * sizeof(pte_t), PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100569 /*
570 * RED-PEN putting page tables only on node 0 could
571 * cause a hotspot and fill up ZONE_DMA. The page tables
572 * need roughly 0.5KB per GB.
573 */
574 start = 0x8000;
Yinghai Lu24a5da72008-02-01 17:49:41 +0100575 table_start = find_e820_area(start, end, tables, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 if (table_start == -1UL)
577 panic("Cannot find space for the kernel page tables");
578
579 table_start >>= PAGE_SHIFT;
580 table_end = table_start;
Yinghai Lud86623a2008-06-24 14:57:29 -0700581 table_top = table_start + (tables >> PAGE_SHIFT);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100582
Yinghai Lud86623a2008-06-24 14:57:29 -0700583 printk(KERN_DEBUG "kernel direct mapping tables up to %lx @ %lx-%lx\n",
584 end, table_start << PAGE_SHIFT, table_top << PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585}
586
Andi Kleenef925762008-04-17 17:40:45 +0200587static void __init init_gbpages(void)
588{
589 if (direct_gbpages && cpu_has_gbpages)
590 printk(KERN_INFO "Using GB pages for direct mapping\n");
591 else
592 direct_gbpages = 0;
593}
594
Yinghai Lub50efd22008-07-08 01:41:05 -0700595static unsigned long __init kernel_physical_mapping_init(unsigned long start,
596 unsigned long end,
597 unsigned long page_size_mask)
598{
599
600 unsigned long next, last_map_addr = end;
601
602 start = (unsigned long)__va(start);
603 end = (unsigned long)__va(end);
604
605 for (; start < end; start = next) {
606 pgd_t *pgd = pgd_offset_k(start);
607 unsigned long pud_phys;
608 pud_t *pud;
609
Jack Steinere22146e2008-07-16 11:11:59 -0500610 next = (start + PGDIR_SIZE) & PGDIR_MASK;
Yinghai Lub50efd22008-07-08 01:41:05 -0700611 if (next > end)
612 next = end;
613
614 if (pgd_val(*pgd)) {
615 last_map_addr = phys_pud_update(pgd, __pa(start),
616 __pa(end), page_size_mask);
617 continue;
618 }
619
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100620 pud = alloc_low_page(&pud_phys);
Yinghai Lub50efd22008-07-08 01:41:05 -0700621 last_map_addr = phys_pud_init(pud, __pa(start), __pa(next),
622 page_size_mask);
623 unmap_low_page(pud);
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100624
625 spin_lock(&init_mm.page_table_lock);
626 pgd_populate(&init_mm, pgd, __va(pud_phys));
627 spin_unlock(&init_mm.page_table_lock);
Yinghai Lub50efd22008-07-08 01:41:05 -0700628 }
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700629 __flush_tlb_all();
Yinghai Lub50efd22008-07-08 01:41:05 -0700630
631 return last_map_addr;
632}
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700633
634struct map_range {
635 unsigned long start;
636 unsigned long end;
637 unsigned page_size_mask;
638};
639
640#define NR_RANGE_MR 5
641
642static int save_mr(struct map_range *mr, int nr_range,
643 unsigned long start_pfn, unsigned long end_pfn,
644 unsigned long page_size_mask)
645{
646
647 if (start_pfn < end_pfn) {
648 if (nr_range >= NR_RANGE_MR)
649 panic("run out of range for init_memory_mapping\n");
650 mr[nr_range].start = start_pfn<<PAGE_SHIFT;
651 mr[nr_range].end = end_pfn<<PAGE_SHIFT;
652 mr[nr_range].page_size_mask = page_size_mask;
653 nr_range++;
654 }
655
656 return nr_range;
657}
658
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100659/*
660 * Setup the direct mapping of the physical memory at PAGE_OFFSET.
661 * This runs before bootmem is initialized and gets pages directly from
662 * the physical memory. To access them they are temporarily mapped.
663 */
Yinghai Lub50efd22008-07-08 01:41:05 -0700664unsigned long __init_refok init_memory_mapping(unsigned long start,
665 unsigned long end)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100666{
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700667 unsigned long last_map_addr = 0;
Yinghai Lub50efd22008-07-08 01:41:05 -0700668 unsigned long page_size_mask = 0;
Yinghai Luc2e6d652008-07-08 01:43:27 -0700669 unsigned long start_pfn, end_pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700671 struct map_range mr[NR_RANGE_MR];
672 int nr_range, i;
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700673 int use_pse, use_gbpages;
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700674
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700675 printk(KERN_INFO "init_memory_mapping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100677 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 * Find space for the kernel direct mapping tables.
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100679 *
680 * Later we should allocate these tables in the local node of the
681 * memory mapped. Unfortunately this is done currently before the
682 * nodes are discovered.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 */
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700684 if (!after_bootmem)
Andi Kleenef925762008-04-17 17:40:45 +0200685 init_gbpages();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700687#ifdef CONFIG_DEBUG_PAGEALLOC
688 /*
689 * For CONFIG_DEBUG_PAGEALLOC, identity mapping will use small pages.
690 * This will simplify cpa(), which otherwise needs to support splitting
691 * large pages into small in interrupt context, etc.
692 */
693 use_pse = use_gbpages = 0;
694#else
695 use_pse = cpu_has_pse;
696 use_gbpages = direct_gbpages;
697#endif
698
699 if (use_gbpages)
Yinghai Lub50efd22008-07-08 01:41:05 -0700700 page_size_mask |= 1 << PG_LEVEL_1G;
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700701 if (use_pse)
Yinghai Lub50efd22008-07-08 01:41:05 -0700702 page_size_mask |= 1 << PG_LEVEL_2M;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700704 memset(mr, 0, sizeof(mr));
705 nr_range = 0;
706
707 /* head if not big page alignment ?*/
Yinghai Luc2e6d652008-07-08 01:43:27 -0700708 start_pfn = start >> PAGE_SHIFT;
709 end_pfn = ((start + (PMD_SIZE - 1)) >> PMD_SHIFT)
710 << (PMD_SHIFT - PAGE_SHIFT);
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700711 nr_range = save_mr(mr, nr_range, start_pfn, end_pfn, 0);
Yinghai Luc2e6d652008-07-08 01:43:27 -0700712
713 /* big page (2M) range*/
714 start_pfn = ((start + (PMD_SIZE - 1))>>PMD_SHIFT)
715 << (PMD_SHIFT - PAGE_SHIFT);
716 end_pfn = ((start + (PUD_SIZE - 1))>>PUD_SHIFT)
717 << (PUD_SHIFT - PAGE_SHIFT);
718 if (end_pfn > ((end>>PUD_SHIFT)<<(PUD_SHIFT - PAGE_SHIFT)))
719 end_pfn = ((end>>PUD_SHIFT)<<(PUD_SHIFT - PAGE_SHIFT));
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700720 nr_range = save_mr(mr, nr_range, start_pfn, end_pfn,
721 page_size_mask & (1<<PG_LEVEL_2M));
Yinghai Luc2e6d652008-07-08 01:43:27 -0700722
723 /* big page (1G) range */
724 start_pfn = end_pfn;
725 end_pfn = (end>>PUD_SHIFT) << (PUD_SHIFT - PAGE_SHIFT);
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700726 nr_range = save_mr(mr, nr_range, start_pfn, end_pfn,
727 page_size_mask &
728 ((1<<PG_LEVEL_2M)|(1<<PG_LEVEL_1G)));
Yinghai Luc2e6d652008-07-08 01:43:27 -0700729
730 /* tail is not big page (1G) alignment */
731 start_pfn = end_pfn;
732 end_pfn = (end>>PMD_SHIFT) << (PMD_SHIFT - PAGE_SHIFT);
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700733 nr_range = save_mr(mr, nr_range, start_pfn, end_pfn,
734 page_size_mask & (1<<PG_LEVEL_2M));
735
Yinghai Luc2e6d652008-07-08 01:43:27 -0700736 /* tail is not big page (2M) alignment */
737 start_pfn = end_pfn;
738 end_pfn = end>>PAGE_SHIFT;
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700739 nr_range = save_mr(mr, nr_range, start_pfn, end_pfn, 0);
740
Yinghai Lu9958e812008-07-12 14:32:45 -0700741 /* try to merge same page size and continuous */
742 for (i = 0; nr_range > 1 && i < nr_range - 1; i++) {
743 unsigned long old_start;
744 if (mr[i].end != mr[i+1].start ||
745 mr[i].page_size_mask != mr[i+1].page_size_mask)
746 continue;
747 /* move it */
748 old_start = mr[i].start;
749 memmove(&mr[i], &mr[i+1],
750 (nr_range - 1 - i) * sizeof (struct map_range));
751 mr[i].start = old_start;
752 nr_range--;
753 }
754
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700755 for (i = 0; i < nr_range; i++)
756 printk(KERN_DEBUG " %010lx - %010lx page %s\n",
757 mr[i].start, mr[i].end,
758 (mr[i].page_size_mask & (1<<PG_LEVEL_1G))?"1G":(
759 (mr[i].page_size_mask & (1<<PG_LEVEL_2M))?"2M":"4k"));
760
761 if (!after_bootmem)
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700762 find_early_table_space(end, use_pse, use_gbpages);
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700763
764 for (i = 0; i < nr_range; i++)
Yinghai Luc2e6d652008-07-08 01:43:27 -0700765 last_map_addr = kernel_physical_mapping_init(
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700766 mr[i].start, mr[i].end,
767 mr[i].page_size_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Matt Tolentino44df75e2006-01-17 07:03:41 +0100769 if (!after_bootmem)
Glauber de Oliveira Costaf51c9452007-07-22 11:12:29 +0200770 mmu_cr4_features = read_cr4();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 __flush_tlb_all();
Andi Kleen75175272008-01-30 13:33:17 +0100772
Yinghai Lub50efd22008-07-08 01:41:05 -0700773 if (!after_bootmem && table_end > table_start)
Yinghai Lu24a5da72008-02-01 17:49:41 +0100774 reserve_early(table_start << PAGE_SHIFT,
775 table_end << PAGE_SHIFT, "PGTABLE");
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700776
Yinghai Lub50efd22008-07-08 01:41:05 -0700777 printk(KERN_INFO "last_map_addr: %lx end: %lx\n",
778 last_map_addr, end);
779
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700780 if (!after_bootmem)
Yinghai Lub50efd22008-07-08 01:41:05 -0700781 early_memtest(start, end);
Andi Kleencc615032008-03-12 03:53:28 +0100782
Yinghai Lu1a0db382008-06-24 14:56:20 -0700783 return last_map_addr >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784}
785
Matt Tolentino2b976902005-06-23 00:08:06 -0700786#ifndef CONFIG_NUMA
Yinghai Lu1f75d7e2008-06-22 02:44:49 -0700787void __init initmem_init(unsigned long start_pfn, unsigned long end_pfn)
788{
789 unsigned long bootmap_size, bootmap;
790
791 bootmap_size = bootmem_bootmap_pages(end_pfn)<<PAGE_SHIFT;
792 bootmap = find_e820_area(0, end_pfn<<PAGE_SHIFT, bootmap_size,
793 PAGE_SIZE);
794 if (bootmap == -1L)
795 panic("Cannot find bootmem map of size %ld\n", bootmap_size);
Yinghai Lu346cafe2008-06-23 03:06:14 -0700796 /* don't touch min_low_pfn */
797 bootmap_size = init_bootmem_node(NODE_DATA(0), bootmap >> PAGE_SHIFT,
798 0, end_pfn);
Yinghai Lu1f75d7e2008-06-22 02:44:49 -0700799 e820_register_active_regions(0, start_pfn, end_pfn);
800 free_bootmem_with_active_regions(0, end_pfn);
801 early_res_to_bootmem(0, end_pfn<<PAGE_SHIFT);
802 reserve_bootmem(bootmap, bootmap_size, BOOTMEM_DEFAULT);
803}
804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805void __init paging_init(void)
806{
Mel Gorman6391af12006-10-11 01:20:39 -0700807 unsigned long max_zone_pfns[MAX_NR_ZONES];
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100808
Mel Gorman6391af12006-10-11 01:20:39 -0700809 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
810 max_zone_pfns[ZONE_DMA] = MAX_DMA_PFN;
811 max_zone_pfns[ZONE_DMA32] = MAX_DMA32_PFN;
Yinghai Luc987d122008-06-24 22:14:09 -0700812 max_zone_pfns[ZONE_NORMAL] = max_pfn;
Mel Gorman6391af12006-10-11 01:20:39 -0700813
Yinghai Luc987d122008-06-24 22:14:09 -0700814 memory_present(0, 0, max_pfn);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100815 sparse_init();
Mel Gorman5cb248a2006-09-27 01:49:52 -0700816 free_area_init_nodes(max_zone_pfns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817}
818#endif
819
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100820/*
Matt Tolentino44df75e2006-01-17 07:03:41 +0100821 * Memory hotplug specific functions
Matt Tolentino44df75e2006-01-17 07:03:41 +0100822 */
Yasunori Gotobc02af92006-06-27 02:53:30 -0700823#ifdef CONFIG_MEMORY_HOTPLUG
824/*
Yasunori Gotobc02af92006-06-27 02:53:30 -0700825 * Memory is added always to NORMAL zone. This means you will never get
826 * additional DMA/DMA32 memory.
827 */
828int arch_add_memory(int nid, u64 start, u64 size)
829{
830 struct pglist_data *pgdat = NODE_DATA(nid);
Christoph Lameter776ed982006-09-25 23:31:09 -0700831 struct zone *zone = pgdat->node_zones + ZONE_NORMAL;
Andi Kleencc615032008-03-12 03:53:28 +0100832 unsigned long last_mapped_pfn, start_pfn = start >> PAGE_SHIFT;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700833 unsigned long nr_pages = size >> PAGE_SHIFT;
834 int ret;
835
Andi Kleencc615032008-03-12 03:53:28 +0100836 last_mapped_pfn = init_memory_mapping(start, start + size-1);
837 if (last_mapped_pfn > max_pfn_mapped)
838 max_pfn_mapped = last_mapped_pfn;
Keith Mannthey45e0b782006-09-30 23:27:09 -0700839
Yasunori Gotobc02af92006-06-27 02:53:30 -0700840 ret = __add_pages(zone, start_pfn, nr_pages);
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100841 WARN_ON(1);
Yasunori Gotobc02af92006-06-27 02:53:30 -0700842
Yasunori Gotobc02af92006-06-27 02:53:30 -0700843 return ret;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700844}
845EXPORT_SYMBOL_GPL(arch_add_memory);
846
Yasunori Goto82432292006-11-18 22:19:40 -0800847#if !defined(CONFIG_ACPI_NUMA) && defined(CONFIG_NUMA)
Keith Mannthey4942e992006-09-30 23:27:06 -0700848int memory_add_physaddr_to_nid(u64 start)
849{
850 return 0;
851}
Keith Mannthey8c2676a2006-09-30 23:27:07 -0700852EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
Keith Mannthey4942e992006-09-30 23:27:06 -0700853#endif
854
Keith Mannthey45e0b782006-09-30 23:27:09 -0700855#endif /* CONFIG_MEMORY_HOTPLUG */
856
Arjan van de Venae531c22008-04-24 23:40:47 +0200857/*
858 * devmem_is_allowed() checks to see if /dev/mem access to a certain address
859 * is valid. The argument is a physical page number.
860 *
861 *
862 * On x86, access has to be given to the first megabyte of ram because that area
863 * contains bios code and data regions used by X and dosemu and similar apps.
864 * Access has to be given to non-kernel-ram areas as well, these contain the PCI
865 * mmio resources as well as potential bios/acpi data regions.
866 */
867int devmem_is_allowed(unsigned long pagenr)
868{
869 if (pagenr <= 256)
870 return 1;
871 if (!page_is_ram(pagenr))
872 return 1;
873 return 0;
874}
875
876
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100877static struct kcore_list kcore_mem, kcore_vmalloc, kcore_kernel,
878 kcore_modules, kcore_vsyscall;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
880void __init mem_init(void)
881{
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200882 long codesize, reservedpages, datasize, initsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Hugh Dickinsbb577f92008-09-07 01:51:33 -0700884 start_periodic_check_for_corruption();
885
Jon Mason0dc243a2006-06-26 13:58:11 +0200886 pci_iommu_alloc();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
Yinghai Lu48ddb152008-01-30 13:32:36 +0100888 /* clear_bss() already clear the empty_zero_page */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
890 reservedpages = 0;
891
892 /* this will put all low memory onto the freelists */
Matt Tolentino2b976902005-06-23 00:08:06 -0700893#ifdef CONFIG_NUMA
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200894 totalram_pages = numa_free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895#else
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200896 totalram_pages = free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897#endif
Yinghai Luc987d122008-06-24 22:14:09 -0700898 reservedpages = max_pfn - totalram_pages -
899 absent_pages_in_range(0, max_pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 after_bootmem = 1;
901
902 codesize = (unsigned long) &_etext - (unsigned long) &_text;
903 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
904 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
905
906 /* Register memory areas for /proc/kcore */
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100907 kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
908 kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 VMALLOC_END-VMALLOC_START);
910 kclist_add(&kcore_kernel, &_stext, _end - _stext);
911 kclist_add(&kcore_modules, (void *)MODULES_VADDR, MODULES_LEN);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100912 kclist_add(&kcore_vsyscall, (void *)VSYSCALL_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 VSYSCALL_END - VSYSCALL_START);
914
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100915 printk(KERN_INFO "Memory: %luk/%luk available (%ldk kernel code, "
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100916 "%ldk reserved, %ldk data, %ldk init)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
Yinghai Luc987d122008-06-24 22:14:09 -0700918 max_pfn << (PAGE_SHIFT-10),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 codesize >> 10,
920 reservedpages << (PAGE_SHIFT-10),
921 datasize >> 10,
922 initsize >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923}
924
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200925void free_init_pages(char *what, unsigned long begin, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926{
Thomas Gleixnerbfc734b2008-02-09 23:24:09 +0100927 unsigned long addr = begin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
Thomas Gleixnerbfc734b2008-02-09 23:24:09 +0100929 if (addr >= end)
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200930 return;
931
Ingo Molnaree01f112008-01-30 13:34:09 +0100932 /*
933 * If debugging page accesses then do not free this memory but
934 * mark them not present - any buggy init-section access will
935 * create a kernel page fault:
936 */
937#ifdef CONFIG_DEBUG_PAGEALLOC
938 printk(KERN_INFO "debug: unmapping init memory %08lx..%08lx\n",
939 begin, PAGE_ALIGN(end));
940 set_memory_np(begin, (end - begin) >> PAGE_SHIFT);
941#else
Jan Beulich6fb14752007-05-02 19:27:10 +0200942 printk(KERN_INFO "Freeing %s: %luk freed\n", what, (end - begin) >> 10);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100943
Thomas Gleixnerbfc734b2008-02-09 23:24:09 +0100944 for (; addr < end; addr += PAGE_SIZE) {
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700945 ClearPageReserved(virt_to_page(addr));
946 init_page_count(virt_to_page(addr));
947 memset((void *)(addr & ~(PAGE_SIZE-1)),
948 POISON_FREE_INITMEM, PAGE_SIZE);
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700949 free_page(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 totalram_pages++;
951 }
Ingo Molnaree01f112008-01-30 13:34:09 +0100952#endif
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200953}
954
955void free_initmem(void)
956{
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200957 free_init_pages("unused kernel memory",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700958 (unsigned long)(&__init_begin),
959 (unsigned long)(&__init_end));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960}
961
Arjan van de Ven67df1972006-01-06 00:12:04 -0800962#ifdef CONFIG_DEBUG_RODATA
Arjan van de Venedeed302008-01-30 13:34:08 +0100963const int rodata_test_data = 0xC3;
964EXPORT_SYMBOL_GPL(rodata_test_data);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800965
Arjan van de Ven67df1972006-01-06 00:12:04 -0800966void mark_rodata_ro(void)
967{
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -0500968 unsigned long start = PFN_ALIGN(_stext), end = PFN_ALIGN(__end_rodata);
Steven Rostedt8f0f9962008-05-12 21:20:56 +0200969 unsigned long rodata_start =
970 ((unsigned long)__start_rodata + PAGE_SIZE - 1) & PAGE_MASK;
971
972#ifdef CONFIG_DYNAMIC_FTRACE
973 /* Dynamic tracing modifies the kernel text section */
974 start = rodata_start;
975#endif
Arjan van de Ven67df1972006-01-06 00:12:04 -0800976
Jan Beulich6fb14752007-05-02 19:27:10 +0200977 printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700978 (end - start) >> 10);
Arjan van de Ven984bb802008-02-06 22:39:45 +0100979 set_memory_ro(start, (end - start) >> PAGE_SHIFT);
980
981 /*
982 * The rodata section (but not the kernel text!) should also be
983 * not-executable.
984 */
Pekka Paalanen72b59d62008-05-12 21:21:01 +0200985 set_memory_nx(rodata_start, (end - rodata_start) >> PAGE_SHIFT);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800986
Arjan van de Ven1a487252008-01-30 13:34:09 +0100987 rodata_test();
988
Andi Kleen0c42f392008-01-30 13:33:42 +0100989#ifdef CONFIG_CPA_DEBUG
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100990 printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, end);
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100991 set_memory_rw(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +0100992
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100993 printk(KERN_INFO "Testing CPA: again\n");
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100994 set_memory_ro(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +0100995#endif
Arjan van de Ven67df1972006-01-06 00:12:04 -0800996}
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -0500997
Arjan van de Ven67df1972006-01-06 00:12:04 -0800998#endif
999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000#ifdef CONFIG_BLK_DEV_INITRD
1001void free_initrd_mem(unsigned long start, unsigned long end)
1002{
Linus Torvaldse3ebadd2007-05-07 08:44:24 -07001003 free_init_pages("initrd memory", start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004}
1005#endif
1006
Yinghai Lud2dbf342008-06-13 02:00:56 -07001007int __init reserve_bootmem_generic(unsigned long phys, unsigned long len,
1008 int flags)
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001009{
Matt Tolentino2b976902005-06-23 00:08:06 -07001010#ifdef CONFIG_NUMA
Yinghai Lu8b3cd092008-03-18 12:50:21 -07001011 int nid, next_nid;
Yinghai Lu6a07a0e2008-06-23 14:02:36 -07001012 int ret;
Andi Kleen5e58a022006-11-14 16:57:46 +01001013#endif
1014 unsigned long pfn = phys >> PAGE_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001015
Yinghai Luc987d122008-06-24 22:14:09 -07001016 if (pfn >= max_pfn) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001017 /*
1018 * This can happen with kdump kernels when accessing
1019 * firmware tables:
1020 */
Thomas Gleixner67794292008-03-21 21:27:10 +01001021 if (pfn < max_pfn_mapped)
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +02001022 return -EFAULT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001023
Yinghai Lu6a07a0e2008-06-23 14:02:36 -07001024 printk(KERN_ERR "reserve_bootmem: illegal reserve %lx %lu\n",
Andi Kleen5e58a022006-11-14 16:57:46 +01001025 phys, len);
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +02001026 return -EFAULT;
Andi Kleen5e58a022006-11-14 16:57:46 +01001027 }
1028
1029 /* Should check here against the e820 map to avoid double free */
1030#ifdef CONFIG_NUMA
Yinghai Lu8b3cd092008-03-18 12:50:21 -07001031 nid = phys_to_nid(phys);
1032 next_nid = phys_to_nid(phys + len - 1);
1033 if (nid == next_nid)
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +02001034 ret = reserve_bootmem_node(NODE_DATA(nid), phys, len, flags);
Yinghai Lu8b3cd092008-03-18 12:50:21 -07001035 else
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +02001036 ret = reserve_bootmem(phys, len, flags);
1037
1038 if (ret != 0)
1039 return ret;
1040
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001041#else
Bernhard Walle72a7fe32008-02-07 00:15:17 -08001042 reserve_bootmem(phys, len, BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043#endif
Yinghai Lu8b3cd092008-03-18 12:50:21 -07001044
Mel Gorman0e0b8642006-09-27 01:49:56 -07001045 if (phys+len <= MAX_DMA_PFN*PAGE_SIZE) {
Andi Kleene18c6872005-11-05 17:25:53 +01001046 dma_reserve += len / PAGE_SIZE;
Mel Gorman0e0b8642006-09-27 01:49:56 -07001047 set_dma_reserve(dma_reserve);
1048 }
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +02001049
1050 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051}
1052
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001053int kern_addr_valid(unsigned long addr)
1054{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 unsigned long above = ((long)addr) >> __VIRTUAL_MASK_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001056 pgd_t *pgd;
1057 pud_t *pud;
1058 pmd_t *pmd;
1059 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
1061 if (above != 0 && above != -1UL)
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001062 return 0;
1063
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 pgd = pgd_offset_k(addr);
1065 if (pgd_none(*pgd))
1066 return 0;
1067
1068 pud = pud_offset(pgd, addr);
1069 if (pud_none(*pud))
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001070 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
1072 pmd = pmd_offset(pud, addr);
1073 if (pmd_none(*pmd))
1074 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001075
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 if (pmd_large(*pmd))
1077 return pfn_valid(pmd_pfn(*pmd));
1078
1079 pte = pte_offset_kernel(pmd, addr);
1080 if (pte_none(*pte))
1081 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001082
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 return pfn_valid(pte_pfn(*pte));
1084}
1085
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001086/*
1087 * A pseudo VMA to allow ptrace access for the vsyscall page. This only
1088 * covers the 64bit vsyscall page now. 32bit has a real VMA now and does
1089 * not need special handling anymore:
1090 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091static struct vm_area_struct gate_vma = {
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001092 .vm_start = VSYSCALL_START,
1093 .vm_end = VSYSCALL_START + (VSYSCALL_MAPPED_PAGES * PAGE_SIZE),
1094 .vm_page_prot = PAGE_READONLY_EXEC,
1095 .vm_flags = VM_READ | VM_EXEC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096};
1097
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098struct vm_area_struct *get_gate_vma(struct task_struct *tsk)
1099{
1100#ifdef CONFIG_IA32_EMULATION
Andi Kleen1e014412005-04-16 15:24:55 -07001101 if (test_tsk_thread_flag(tsk, TIF_IA32))
1102 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103#endif
1104 return &gate_vma;
1105}
1106
1107int in_gate_area(struct task_struct *task, unsigned long addr)
1108{
1109 struct vm_area_struct *vma = get_gate_vma(task);
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001110
Andi Kleen1e014412005-04-16 15:24:55 -07001111 if (!vma)
1112 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001113
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 return (addr >= vma->vm_start) && (addr < vma->vm_end);
1115}
1116
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001117/*
1118 * Use this when you have no reliable task/vma, typically from interrupt
1119 * context. It is less reliable than using the task's vma and may give
1120 * false positives:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 */
1122int in_gate_area_no_task(unsigned long addr)
1123{
Andi Kleen1e014412005-04-16 15:24:55 -07001124 return (addr >= VSYSCALL_START) && (addr < VSYSCALL_END);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125}
Zou Nan hai2e1c49d2007-06-01 00:46:28 -07001126
Andi Kleen2aae9502007-07-21 17:10:01 +02001127const char *arch_vma_name(struct vm_area_struct *vma)
1128{
1129 if (vma->vm_mm && vma->vm_start == (long)vma->vm_mm->context.vdso)
1130 return "[vdso]";
1131 if (vma == &gate_vma)
1132 return "[vsyscall]";
1133 return NULL;
1134}
Christoph Lameter0889eba2007-10-16 01:24:15 -07001135
1136#ifdef CONFIG_SPARSEMEM_VMEMMAP
1137/*
1138 * Initialise the sparsemem vmemmap using huge-pages at the PMD level.
1139 */
Yinghai Luc2b91e22008-04-12 01:19:24 -07001140static long __meminitdata addr_start, addr_end;
1141static void __meminitdata *p_start, *p_end;
1142static int __meminitdata node_start;
1143
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001144int __meminit
1145vmemmap_populate(struct page *start_page, unsigned long size, int node)
Christoph Lameter0889eba2007-10-16 01:24:15 -07001146{
1147 unsigned long addr = (unsigned long)start_page;
1148 unsigned long end = (unsigned long)(start_page + size);
1149 unsigned long next;
1150 pgd_t *pgd;
1151 pud_t *pud;
1152 pmd_t *pmd;
1153
1154 for (; addr < end; addr = next) {
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001155 void *p = NULL;
Christoph Lameter0889eba2007-10-16 01:24:15 -07001156
1157 pgd = vmemmap_pgd_populate(addr, node);
1158 if (!pgd)
1159 return -ENOMEM;
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001160
Christoph Lameter0889eba2007-10-16 01:24:15 -07001161 pud = vmemmap_pud_populate(pgd, addr, node);
1162 if (!pud)
1163 return -ENOMEM;
1164
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001165 if (!cpu_has_pse) {
1166 next = (addr + PAGE_SIZE) & PAGE_MASK;
1167 pmd = vmemmap_pmd_populate(pud, addr, node);
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001168
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001169 if (!pmd)
1170 return -ENOMEM;
1171
1172 p = vmemmap_pte_populate(pmd, addr, node);
1173
Christoph Lameter0889eba2007-10-16 01:24:15 -07001174 if (!p)
1175 return -ENOMEM;
1176
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001177 addr_end = addr + PAGE_SIZE;
1178 p_end = p + PAGE_SIZE;
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001179 } else {
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001180 next = pmd_addr_end(addr, end);
1181
1182 pmd = pmd_offset(pud, addr);
1183 if (pmd_none(*pmd)) {
1184 pte_t entry;
1185
1186 p = vmemmap_alloc_block(PMD_SIZE, node);
1187 if (!p)
1188 return -ENOMEM;
1189
1190 entry = pfn_pte(__pa(p) >> PAGE_SHIFT,
1191 PAGE_KERNEL_LARGE);
1192 set_pmd(pmd, __pmd(pte_val(entry)));
1193
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001194 /* check to see if we have contiguous blocks */
1195 if (p_end != p || node_start != node) {
1196 if (p_start)
1197 printk(KERN_DEBUG " [%lx-%lx] PMD -> [%p-%p] on node %d\n",
1198 addr_start, addr_end-1, p_start, p_end-1, node_start);
1199 addr_start = addr;
1200 node_start = node;
1201 p_start = p;
1202 }
Yinghai Lu49c980d2008-07-03 12:29:34 -07001203
1204 addr_end = addr + PMD_SIZE;
1205 p_end = p + PMD_SIZE;
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001206 } else
1207 vmemmap_verify((pte_t *)pmd, node, addr, next);
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001208 }
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001209
Christoph Lameter0889eba2007-10-16 01:24:15 -07001210 }
Christoph Lameter0889eba2007-10-16 01:24:15 -07001211 return 0;
1212}
Yinghai Luc2b91e22008-04-12 01:19:24 -07001213
1214void __meminit vmemmap_populate_print_last(void)
1215{
1216 if (p_start) {
1217 printk(KERN_DEBUG " [%lx-%lx] PMD -> [%p-%p] on node %d\n",
1218 addr_start, addr_end-1, p_start, p_end-1, node_start);
1219 p_start = NULL;
1220 p_end = NULL;
1221 node_start = 0;
1222 }
1223}
Christoph Lameter0889eba2007-10-16 01:24:15 -07001224#endif