blob: d101990e4635a8f72be9e8923bea418473be22a2 [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>
Ingo Molnar46eaa672008-10-12 15:06:29 +020034#include <asm/bios_ebda.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/system.h>
36#include <asm/uaccess.h>
37#include <asm/pgtable.h>
38#include <asm/pgalloc.h>
39#include <asm/dma.h>
40#include <asm/fixmap.h>
41#include <asm/e820.h>
42#include <asm/apic.h>
43#include <asm/tlb.h>
44#include <asm/mmu_context.h>
45#include <asm/proto.h>
46#include <asm/smp.h>
Andi Kleen2bc04142005-11-05 17:25:53 +010047#include <asm/sections.h>
Thomas Gleixner718fc132008-01-30 13:30:17 +010048#include <asm/kdebug.h>
Thomas Gleixneraaa64e02008-01-30 13:30:17 +010049#include <asm/numa.h>
Harvey Harrison7bfeab92008-02-12 12:12:01 -080050#include <asm/cacheflush.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Yinghai Lu064d25f2008-06-16 19:58:28 -070052/*
Yinghai Lu064d25f2008-06-16 19:58:28 -070053 * end_pfn only includes RAM, while max_pfn_mapped includes all e820 entries.
54 * The direct mapping extends to max_pfn_mapped, so that we can directly access
55 * apertures, ACPI and other tables without having to play with fixmaps.
56 */
Yinghai Luf361a452008-07-10 20:38:26 -070057unsigned long max_low_pfn_mapped;
Yinghai Lu064d25f2008-06-16 19:58:28 -070058unsigned long max_pfn_mapped;
59
Andi Kleene18c6872005-11-05 17:25:53 +010060static unsigned long dma_reserve __initdata;
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
63
Hugh Dickinsa06de632008-08-15 13:58:32 +010064int direct_gbpages
Ingo Molnar00d1c5e2008-04-17 17:40:45 +020065#ifdef CONFIG_DIRECT_GBPAGES
66 = 1
67#endif
68;
69
70static int __init parse_direct_gbpages_off(char *arg)
71{
72 direct_gbpages = 0;
73 return 0;
74}
75early_param("nogbpages", parse_direct_gbpages_off);
76
77static int __init parse_direct_gbpages_on(char *arg)
78{
79 direct_gbpages = 1;
80 return 0;
81}
82early_param("gbpages", parse_direct_gbpages_on);
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084/*
85 * NOTE: pagetable_init alloc all the fixmap pagetables contiguous on the
86 * physical space so we can cache the place of the first one and move
87 * around without checking the pgd every time.
88 */
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090int after_bootmem;
91
Jeremy Fitzhardingebe43d722008-09-07 15:21:13 -070092pteval_t __supported_pte_mask __read_mostly = ~_PAGE_IOMAP;
Yinghai Lubd220a22008-09-05 00:58:28 -070093EXPORT_SYMBOL_GPL(__supported_pte_mask);
94
95static int do_not_nx __cpuinitdata;
96
Ingo Molnardeed05b2008-09-05 10:23:26 +020097/*
98 * noexec=on|off
99 * Control non-executable mappings for 64-bit processes.
100 *
101 * on Enable (default)
102 * off Disable
103 */
Yinghai Lubd220a22008-09-05 00:58:28 -0700104static int __init nonx_setup(char *str)
105{
106 if (!str)
107 return -EINVAL;
108 if (!strncmp(str, "on", 2)) {
109 __supported_pte_mask |= _PAGE_NX;
110 do_not_nx = 0;
111 } else if (!strncmp(str, "off", 3)) {
112 do_not_nx = 1;
113 __supported_pte_mask &= ~_PAGE_NX;
114 }
115 return 0;
116}
117early_param("noexec", nonx_setup);
118
119void __cpuinit check_efer(void)
120{
121 unsigned long efer;
122
123 rdmsrl(MSR_EFER, efer);
124 if (!(efer & EFER_NX) || do_not_nx)
125 __supported_pte_mask &= ~_PAGE_NX;
126}
127
128int force_personality32;
129
Ingo Molnardeed05b2008-09-05 10:23:26 +0200130/*
131 * noexec32=on|off
132 * Control non executable heap for 32bit processes.
133 * To control the stack too use noexec=off
134 *
135 * on PROT_READ does not imply PROT_EXEC for 32-bit processes (default)
136 * off PROT_READ implies PROT_EXEC
137 */
Yinghai Lubd220a22008-09-05 00:58:28 -0700138static int __init nonx32_setup(char *str)
139{
140 if (!strcmp(str, "on"))
141 force_personality32 &= ~READ_IMPLIES_EXEC;
142 else if (!strcmp(str, "off"))
143 force_personality32 |= READ_IMPLIES_EXEC;
144 return 1;
145}
146__setup("noexec32=", nonx32_setup);
147
Marcin Slusarz8d6ea9672008-08-15 18:32:24 +0200148/*
149 * NOTE: This function is marked __ref because it calls __init function
150 * (alloc_bootmem_pages). It's safe to do it ONLY when after_bootmem == 0.
151 */
152static __ref void *spp_getpage(void)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100153{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 void *ptr;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 if (after_bootmem)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100157 ptr = (void *) get_zeroed_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 else
159 ptr = alloc_bootmem_pages(PAGE_SIZE);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100160
161 if (!ptr || ((unsigned long)ptr & ~PAGE_MASK)) {
162 panic("set_pte_phys: cannot allocate page data %s\n",
163 after_bootmem ? "after bootmem" : "");
164 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100166 pr_debug("spp_getpage %p\n", ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100168 return ptr;
169}
170
Jeremy Fitzhardinged494a962008-06-17 11:41:59 -0700171void
Eduardo Habkost0814e0b2008-06-25 00:19:22 -0400172set_pte_vaddr_pud(pud_t *pud_page, unsigned long vaddr, pte_t new_pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 pud_t *pud;
175 pmd_t *pmd;
Jeremy Fitzhardinged494a962008-06-17 11:41:59 -0700176 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Eduardo Habkost0814e0b2008-06-25 00:19:22 -0400178 pud = pud_page + pud_index(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 if (pud_none(*pud)) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100180 pmd = (pmd_t *) spp_getpage();
Jeremy Fitzhardingebb23e402008-06-25 00:19:02 -0400181 pud_populate(&init_mm, pud, pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 if (pmd != pmd_offset(pud, 0)) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100183 printk(KERN_ERR "PAGETABLE BUG #01! %p <-> %p\n",
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100184 pmd, pmd_offset(pud, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 return;
186 }
187 }
188 pmd = pmd_offset(pud, vaddr);
189 if (pmd_none(*pmd)) {
190 pte = (pte_t *) spp_getpage();
Jeremy Fitzhardingebb23e402008-06-25 00:19:02 -0400191 pmd_populate_kernel(&init_mm, pmd, pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 if (pte != pte_offset_kernel(pmd, 0)) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100193 printk(KERN_ERR "PAGETABLE BUG #02!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 return;
195 }
196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198 pte = pte_offset_kernel(pmd, vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 set_pte(pte, new_pte);
200
201 /*
202 * It's enough to flush this one mapping.
203 * (PGE mappings get flushed as well)
204 */
205 __flush_tlb_one(vaddr);
206}
207
Eduardo Habkost0814e0b2008-06-25 00:19:22 -0400208void
209set_pte_vaddr(unsigned long vaddr, pte_t pteval)
210{
211 pgd_t *pgd;
212 pud_t *pud_page;
213
214 pr_debug("set_pte_vaddr %lx to %lx\n", vaddr, native_pte_val(pteval));
215
216 pgd = pgd_offset_k(vaddr);
217 if (pgd_none(*pgd)) {
218 printk(KERN_ERR
219 "PGD FIXMAP MISSING, it should be setup in head.S!\n");
220 return;
221 }
222 pud_page = (pud_t*)pgd_page_vaddr(*pgd);
223 set_pte_vaddr_pud(pud_page, vaddr, pteval);
224}
225
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100226/*
Jack Steiner3a9e1892008-07-01 14:45:32 -0500227 * Create large page table mappings for a range of physical addresses.
228 */
229static void __init __init_extra_mapping(unsigned long phys, unsigned long size,
230 pgprot_t prot)
231{
232 pgd_t *pgd;
233 pud_t *pud;
234 pmd_t *pmd;
235
236 BUG_ON((phys & ~PMD_MASK) || (size & ~PMD_MASK));
237 for (; size; phys += PMD_SIZE, size -= PMD_SIZE) {
238 pgd = pgd_offset_k((unsigned long)__va(phys));
239 if (pgd_none(*pgd)) {
240 pud = (pud_t *) spp_getpage();
241 set_pgd(pgd, __pgd(__pa(pud) | _KERNPG_TABLE |
242 _PAGE_USER));
243 }
244 pud = pud_offset(pgd, (unsigned long)__va(phys));
245 if (pud_none(*pud)) {
246 pmd = (pmd_t *) spp_getpage();
247 set_pud(pud, __pud(__pa(pmd) | _KERNPG_TABLE |
248 _PAGE_USER));
249 }
250 pmd = pmd_offset(pud, phys);
251 BUG_ON(!pmd_none(*pmd));
252 set_pmd(pmd, __pmd(phys | pgprot_val(prot)));
253 }
254}
255
256void __init init_extra_mapping_wb(unsigned long phys, unsigned long size)
257{
258 __init_extra_mapping(phys, size, PAGE_KERNEL_LARGE);
259}
260
261void __init init_extra_mapping_uc(unsigned long phys, unsigned long size)
262{
263 __init_extra_mapping(phys, size, PAGE_KERNEL_LARGE_NOCACHE);
264}
265
266/*
Ingo Molnar88f3aec2008-02-21 11:04:11 +0100267 * The head.S code sets up the kernel high mapping:
268 *
269 * from __START_KERNEL_map to __START_KERNEL_map + size (== _end-_text)
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100270 *
271 * phys_addr holds the negative offset to the kernel, which is added
272 * to the compile time generated pmds. This results in invalid pmds up
273 * to the point where we hit the physaddr 0 mapping.
274 *
275 * We limit the mappings to the region from _text to _end. _end is
276 * rounded up to the 2MB boundary. This catches the invalid pmds as
277 * well, as they are located before _text:
278 */
279void __init cleanup_highmap(void)
280{
281 unsigned long vaddr = __START_KERNEL_map;
Joerg Roedeld86bb0d2008-07-25 16:48:57 +0200282 unsigned long end = roundup((unsigned long)_end, PMD_SIZE) - 1;
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100283 pmd_t *pmd = level2_kernel_pgt;
284 pmd_t *last_pmd = pmd + PTRS_PER_PMD;
285
286 for (; pmd < last_pmd; pmd++, vaddr += PMD_SIZE) {
Hugh Dickins2884f112008-05-28 19:36:07 +0100287 if (pmd_none(*pmd))
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100288 continue;
289 if (vaddr < (unsigned long) _text || vaddr > end)
290 set_pmd(pmd, __pmd(0));
291 }
292}
293
Andi Kleen75175272008-01-30 13:33:17 +0100294static unsigned long __initdata table_start;
295static unsigned long __meminitdata table_end;
Yinghai Lud86623a2008-06-24 14:57:29 -0700296static unsigned long __meminitdata table_top;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Jan Beulich9482ac62008-08-21 14:28:42 +0100298static __ref void *alloc_low_page(unsigned long *phys)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100299{
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200300 unsigned long pfn = table_end++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 void *adr;
302
Matt Tolentino44df75e2006-01-17 07:03:41 +0100303 if (after_bootmem) {
304 adr = (void *)get_zeroed_page(GFP_ATOMIC);
305 *phys = __pa(adr);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100306
Matt Tolentino44df75e2006-01-17 07:03:41 +0100307 return adr;
308 }
309
Yinghai Lud86623a2008-06-24 14:57:29 -0700310 if (pfn >= table_top)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100311 panic("alloc_low_page: ran out of memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Jeremy Fitzhardinge14941772008-09-07 15:21:15 -0700313 adr = early_memremap(pfn * PAGE_SIZE, PAGE_SIZE);
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200314 memset(adr, 0, PAGE_SIZE);
315 *phys = pfn * PAGE_SIZE;
316 return adr;
317}
318
Jan Beulich9482ac62008-08-21 14:28:42 +0100319static __ref void unmap_low_page(void *adr)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100320{
Matt Tolentino44df75e2006-01-17 07:03:41 +0100321 if (after_bootmem)
322 return;
323
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200324 early_iounmap(adr, PAGE_SIZE);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100325}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700327static unsigned long __meminit
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700328phys_pte_init(pte_t *pte_page, unsigned long addr, unsigned long end,
329 pgprot_t prot)
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400330{
331 unsigned pages = 0;
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700332 unsigned long last_map_addr = end;
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400333 int i;
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700334
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400335 pte_t *pte = pte_page + pte_index(addr);
336
337 for(i = pte_index(addr); i < PTRS_PER_PTE; i++, addr += PAGE_SIZE, pte++) {
338
339 if (addr >= end) {
340 if (!after_bootmem) {
341 for(; i < PTRS_PER_PTE; i++, pte++)
342 set_pte(pte, __pte(0));
343 }
344 break;
345 }
346
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700347 /*
348 * We will re-use the existing mapping.
349 * Xen for example has some special requirements, like mapping
350 * pagetable pages as RO. So assume someone who pre-setup
351 * these mappings are more intelligent.
352 */
Yinghai Lu3afa3942008-10-25 22:58:21 -0700353 if (pte_val(*pte)) {
354 pages++;
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400355 continue;
Yinghai Lu3afa3942008-10-25 22:58:21 -0700356 }
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400357
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 */
Yinghai Lu3afa3942008-10-25 22:58:21 -0700423 if (page_size_mask & (1 << PG_LEVEL_2M)) {
424 pages++;
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700425 continue;
Yinghai Lu3afa3942008-10-25 22:58:21 -0700426 }
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700427 new_prot = pte_pgprot(pte_clrhuge(*(pte_t *)pmd));
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400428 }
Keith Mannthey6ad91652006-09-26 10:52:36 +0200429
Yinghai Lub50efd22008-07-08 01:41:05 -0700430 if (page_size_mask & (1<<PG_LEVEL_2M)) {
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400431 pages++;
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100432 spin_lock(&init_mm.page_table_lock);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400433 set_pte((pte_t *)pmd,
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700434 pfn_pte(address >> PAGE_SHIFT,
435 __pgprot(pgprot_val(prot) | _PAGE_PSE)));
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100436 spin_unlock(&init_mm.page_table_lock);
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700437 last_map_addr = (address & PMD_MASK) + PMD_SIZE;
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400438 continue;
439 }
440
441 pte = alloc_low_page(&pte_phys);
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700442 last_map_addr = phys_pte_init(pte, address, end, new_prot);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400443 unmap_low_page(pte);
444
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100445 spin_lock(&init_mm.page_table_lock);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400446 pmd_populate_kernel(&init_mm, pmd, __va(pte_phys));
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100447 spin_unlock(&init_mm.page_table_lock);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100448 }
Andi Kleence0c0e52008-05-02 11:46:49 +0200449 update_page_count(PG_LEVEL_2M, pages);
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700450 return last_map_addr;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100451}
452
Andi Kleencc615032008-03-12 03:53:28 +0100453static unsigned long __meminit
Yinghai Lub50efd22008-07-08 01:41:05 -0700454phys_pmd_update(pud_t *pud, unsigned long address, unsigned long end,
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700455 unsigned long page_size_mask, pgprot_t prot)
Matt Tolentino44df75e2006-01-17 07:03:41 +0100456{
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100457 pmd_t *pmd = pmd_offset(pud, 0);
Andi Kleencc615032008-03-12 03:53:28 +0100458 unsigned long last_map_addr;
459
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700460 last_map_addr = phys_pmd_init(pmd, address, end, page_size_mask, prot);
Keith Mannthey6ad91652006-09-26 10:52:36 +0200461 __flush_tlb_all();
Andi Kleencc615032008-03-12 03:53:28 +0100462 return last_map_addr;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100463}
464
Andi Kleencc615032008-03-12 03:53:28 +0100465static unsigned long __meminit
Yinghai Lub50efd22008-07-08 01:41:05 -0700466phys_pud_init(pud_t *pud_page, unsigned long addr, unsigned long end,
467 unsigned long page_size_mask)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100468{
Andi Kleence0c0e52008-05-02 11:46:49 +0200469 unsigned long pages = 0;
Andi Kleencc615032008-03-12 03:53:28 +0100470 unsigned long last_map_addr = end;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200471 int i = pud_index(addr);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100472
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100473 for (; i < PTRS_PER_PUD; i++, addr = (addr & PUD_MASK) + PUD_SIZE) {
Keith Mannthey6ad91652006-09-26 10:52:36 +0200474 unsigned long pmd_phys;
475 pud_t *pud = pud_page + pud_index(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 pmd_t *pmd;
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700477 pgprot_t prot = PAGE_KERNEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Keith Mannthey6ad91652006-09-26 10:52:36 +0200479 if (addr >= end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100482 if (!after_bootmem &&
483 !e820_any_mapped(addr, addr+PUD_SIZE, 0)) {
484 set_pud(pud, __pud(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 continue;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100486 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Keith Mannthey6ad91652006-09-26 10:52:36 +0200488 if (pud_val(*pud)) {
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700489 if (!pud_large(*pud)) {
Yinghai Lub50efd22008-07-08 01:41:05 -0700490 last_map_addr = phys_pmd_update(pud, addr, end,
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700491 page_size_mask, prot);
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700492 continue;
493 }
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700494 /*
495 * If we are ok with PG_LEVEL_1G mapping, then we will
496 * use the existing mapping.
497 *
498 * Otherwise, we will split the gbpage mapping but use
499 * the same existing protection bits except for large
500 * page, so that we don't violate Intel's TLB
501 * Application note (317080) which says, while changing
502 * the page sizes, new and old translations should
503 * not differ with respect to page frame and
504 * attributes.
505 */
Yinghai Lu3afa3942008-10-25 22:58:21 -0700506 if (page_size_mask & (1 << PG_LEVEL_1G)) {
507 pages++;
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700508 continue;
Yinghai Lu3afa3942008-10-25 22:58:21 -0700509 }
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700510 prot = pte_pgprot(pte_clrhuge(*(pte_t *)pud));
Andi Kleenef925762008-04-17 17:40:45 +0200511 }
512
Yinghai Lub50efd22008-07-08 01:41:05 -0700513 if (page_size_mask & (1<<PG_LEVEL_1G)) {
Andi Kleence0c0e52008-05-02 11:46:49 +0200514 pages++;
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100515 spin_lock(&init_mm.page_table_lock);
Andi Kleenef925762008-04-17 17:40:45 +0200516 set_pte((pte_t *)pud,
517 pfn_pte(addr >> PAGE_SHIFT, PAGE_KERNEL_LARGE));
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100518 spin_unlock(&init_mm.page_table_lock);
Andi Kleencc615032008-03-12 03:53:28 +0100519 last_map_addr = (addr & PUD_MASK) + PUD_SIZE;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200520 continue;
521 }
522
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200523 pmd = alloc_low_page(&pmd_phys);
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700524 last_map_addr = phys_pmd_init(pmd, addr, end, page_size_mask,
525 prot);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400526 unmap_low_page(pmd);
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100527
528 spin_lock(&init_mm.page_table_lock);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400529 pud_populate(&init_mm, pud, __va(pmd_phys));
Matt Tolentino44df75e2006-01-17 07:03:41 +0100530 spin_unlock(&init_mm.page_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 }
Andi Kleen1a2b4412008-01-30 13:33:54 +0100532 __flush_tlb_all();
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700533
Andi Kleence0c0e52008-05-02 11:46:49 +0200534 update_page_count(PG_LEVEL_1G, pages);
Andi Kleencc615032008-03-12 03:53:28 +0100535
Yinghai Lu1a0db382008-06-24 14:56:20 -0700536 return last_map_addr;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100537}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400539static unsigned long __meminit
Yinghai Lub50efd22008-07-08 01:41:05 -0700540phys_pud_update(pgd_t *pgd, unsigned long addr, unsigned long end,
541 unsigned long page_size_mask)
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400542{
543 pud_t *pud;
544
545 pud = (pud_t *)pgd_page_vaddr(*pgd);
546
Yinghai Lub50efd22008-07-08 01:41:05 -0700547 return phys_pud_init(pud, addr, end, page_size_mask);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400548}
549
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700550static void __init find_early_table_space(unsigned long end, int use_pse,
551 int use_gbpages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
Yinghai Luc2e6d652008-07-08 01:43:27 -0700553 unsigned long puds, pmds, ptes, tables, start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
555 puds = (end + PUD_SIZE - 1) >> PUD_SHIFT;
Joerg Roedeld86bb0d2008-07-25 16:48:57 +0200556 tables = roundup(puds * sizeof(pud_t), PAGE_SIZE);
Pekka Enbergc3f5d2d2009-03-05 14:54:52 +0200557
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700558 if (use_gbpages) {
Yinghai Luc2e6d652008-07-08 01:43:27 -0700559 unsigned long extra;
Pekka Enbergc3f5d2d2009-03-05 14:54:52 +0200560
Yinghai Luc2e6d652008-07-08 01:43:27 -0700561 extra = end - ((end>>PUD_SHIFT) << PUD_SHIFT);
562 pmds = (extra + PMD_SIZE - 1) >> PMD_SHIFT;
563 } else
564 pmds = (end + PMD_SIZE - 1) >> PMD_SHIFT;
Pekka Enbergc3f5d2d2009-03-05 14:54:52 +0200565
Joerg Roedeld86bb0d2008-07-25 16:48:57 +0200566 tables += roundup(pmds * sizeof(pmd_t), PAGE_SIZE);
Yinghai Luc2e6d652008-07-08 01:43:27 -0700567
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700568 if (use_pse) {
Yinghai Luc2e6d652008-07-08 01:43:27 -0700569 unsigned long extra;
Pekka Enbergc3f5d2d2009-03-05 14:54:52 +0200570
Yinghai Luc2e6d652008-07-08 01:43:27 -0700571 extra = end - ((end>>PMD_SHIFT) << PMD_SHIFT);
Pekka Enberg49a2bf72009-03-05 14:54:54 +0200572#ifdef CONFIG_X86_32
573 extra += PMD_SIZE;
574#endif
Yinghai Luc2e6d652008-07-08 01:43:27 -0700575 ptes = (extra + PAGE_SIZE - 1) >> PAGE_SHIFT;
576 } else
577 ptes = (end + PAGE_SIZE - 1) >> PAGE_SHIFT;
Pekka Enbergc3f5d2d2009-03-05 14:54:52 +0200578
Joerg Roedeld86bb0d2008-07-25 16:48:57 +0200579 tables += roundup(ptes * sizeof(pte_t), PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Pekka Enberg49a2bf72009-03-05 14:54:54 +0200581#ifdef CONFIG_X86_32
582 /* for fixmap */
583 tables += roundup(__end_of_fixed_addresses * sizeof(pte_t), PAGE_SIZE);
584#endif
585
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100586 /*
587 * RED-PEN putting page tables only on node 0 could
588 * cause a hotspot and fill up ZONE_DMA. The page tables
589 * need roughly 0.5KB per GB.
590 */
Pekka Enberg49a2bf72009-03-05 14:54:54 +0200591#ifdef CONFIG_X86_32
592 start = 0x7000;
593 table_start = find_e820_area(start, max_pfn_mapped<<PAGE_SHIFT,
594 tables, PAGE_SIZE);
595#else /* CONFIG_X86_64 */
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100596 start = 0x8000;
Yinghai Lu24a5da72008-02-01 17:49:41 +0100597 table_start = find_e820_area(start, end, tables, PAGE_SIZE);
Pekka Enberg49a2bf72009-03-05 14:54:54 +0200598#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 if (table_start == -1UL)
600 panic("Cannot find space for the kernel page tables");
601
602 table_start >>= PAGE_SHIFT;
603 table_end = table_start;
Yinghai Lud86623a2008-06-24 14:57:29 -0700604 table_top = table_start + (tables >> PAGE_SHIFT);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100605
Yinghai Lud86623a2008-06-24 14:57:29 -0700606 printk(KERN_DEBUG "kernel direct mapping tables up to %lx @ %lx-%lx\n",
607 end, table_start << PAGE_SHIFT, table_top << PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608}
609
Andi Kleenef925762008-04-17 17:40:45 +0200610static void __init init_gbpages(void)
611{
612 if (direct_gbpages && cpu_has_gbpages)
613 printk(KERN_INFO "Using GB pages for direct mapping\n");
614 else
615 direct_gbpages = 0;
616}
617
Gary Hadef5495502009-01-19 13:46:41 -0800618static unsigned long __meminit kernel_physical_mapping_init(unsigned long start,
Yinghai Lub50efd22008-07-08 01:41:05 -0700619 unsigned long end,
620 unsigned long page_size_mask)
621{
622
623 unsigned long next, last_map_addr = end;
624
625 start = (unsigned long)__va(start);
626 end = (unsigned long)__va(end);
627
628 for (; start < end; start = next) {
629 pgd_t *pgd = pgd_offset_k(start);
630 unsigned long pud_phys;
631 pud_t *pud;
632
Jack Steinere22146e2008-07-16 11:11:59 -0500633 next = (start + PGDIR_SIZE) & PGDIR_MASK;
Yinghai Lub50efd22008-07-08 01:41:05 -0700634 if (next > end)
635 next = end;
636
637 if (pgd_val(*pgd)) {
638 last_map_addr = phys_pud_update(pgd, __pa(start),
639 __pa(end), page_size_mask);
640 continue;
641 }
642
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100643 pud = alloc_low_page(&pud_phys);
Yinghai Lub50efd22008-07-08 01:41:05 -0700644 last_map_addr = phys_pud_init(pud, __pa(start), __pa(next),
645 page_size_mask);
646 unmap_low_page(pud);
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100647
648 spin_lock(&init_mm.page_table_lock);
649 pgd_populate(&init_mm, pgd, __va(pud_phys));
650 spin_unlock(&init_mm.page_table_lock);
Yinghai Lub50efd22008-07-08 01:41:05 -0700651 }
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700652 __flush_tlb_all();
Yinghai Lub50efd22008-07-08 01:41:05 -0700653
654 return last_map_addr;
655}
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700656
657struct map_range {
658 unsigned long start;
659 unsigned long end;
660 unsigned page_size_mask;
661};
662
Pekka Enbergb47e3412009-03-05 14:55:03 +0200663#ifdef CONFIG_X86_32
664#define NR_RANGE_MR 3
665#else /* CONFIG_X86_64 */
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700666#define NR_RANGE_MR 5
Pekka Enbergb47e3412009-03-05 14:55:03 +0200667#endif
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700668
669static int save_mr(struct map_range *mr, int nr_range,
670 unsigned long start_pfn, unsigned long end_pfn,
671 unsigned long page_size_mask)
672{
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700673 if (start_pfn < end_pfn) {
674 if (nr_range >= NR_RANGE_MR)
675 panic("run out of range for init_memory_mapping\n");
676 mr[nr_range].start = start_pfn<<PAGE_SHIFT;
677 mr[nr_range].end = end_pfn<<PAGE_SHIFT;
678 mr[nr_range].page_size_mask = page_size_mask;
679 nr_range++;
680 }
681
682 return nr_range;
683}
684
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100685/*
686 * Setup the direct mapping of the physical memory at PAGE_OFFSET.
687 * This runs before bootmem is initialized and gets pages directly from
688 * the physical memory. To access them they are temporarily mapped.
689 */
Yinghai Lub50efd22008-07-08 01:41:05 -0700690unsigned long __init_refok init_memory_mapping(unsigned long start,
691 unsigned long end)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100692{
Yinghai Lub50efd22008-07-08 01:41:05 -0700693 unsigned long page_size_mask = 0;
Yinghai Luc2e6d652008-07-08 01:43:27 -0700694 unsigned long start_pfn, end_pfn;
Yinghai Luf96f57d2008-10-28 12:39:23 -0700695 unsigned long pos;
Pekka Enbergcbba6572009-03-05 14:54:59 +0200696 unsigned long ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700698 struct map_range mr[NR_RANGE_MR];
699 int nr_range, i;
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700700 int use_pse, use_gbpages;
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700701
Yinghai Luf96f57d2008-10-28 12:39:23 -0700702 printk(KERN_INFO "init_memory_mapping: %016lx-%016lx\n", start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700704 if (!after_bootmem)
Andi Kleenef925762008-04-17 17:40:45 +0200705 init_gbpages();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700707#ifdef CONFIG_DEBUG_PAGEALLOC
708 /*
709 * For CONFIG_DEBUG_PAGEALLOC, identity mapping will use small pages.
710 * This will simplify cpa(), which otherwise needs to support splitting
711 * large pages into small in interrupt context, etc.
712 */
713 use_pse = use_gbpages = 0;
714#else
715 use_pse = cpu_has_pse;
716 use_gbpages = direct_gbpages;
717#endif
718
Pekka Enberg54e63f32009-03-05 14:54:56 +0200719#ifdef CONFIG_X86_32
720#ifdef CONFIG_X86_PAE
721 set_nx();
722 if (nx_enabled)
723 printk(KERN_INFO "NX (Execute Disable) protection: active\n");
724#endif
725
726 /* Enable PSE if available */
727 if (cpu_has_pse)
728 set_in_cr4(X86_CR4_PSE);
729
730 /* Enable PGE if available */
731 if (cpu_has_pge) {
732 set_in_cr4(X86_CR4_PGE);
733 __supported_pte_mask |= _PAGE_GLOBAL;
734 }
735#endif
736
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700737 if (use_gbpages)
Yinghai Lub50efd22008-07-08 01:41:05 -0700738 page_size_mask |= 1 << PG_LEVEL_1G;
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700739 if (use_pse)
Yinghai Lub50efd22008-07-08 01:41:05 -0700740 page_size_mask |= 1 << PG_LEVEL_2M;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700742 memset(mr, 0, sizeof(mr));
743 nr_range = 0;
744
Pekka Enbergc3f5d2d2009-03-05 14:54:52 +0200745 /* head if not big page alignment ? */
Yinghai Luc2e6d652008-07-08 01:43:27 -0700746 start_pfn = start >> PAGE_SHIFT;
Yinghai Luf96f57d2008-10-28 12:39:23 -0700747 pos = start_pfn << PAGE_SHIFT;
Pekka Enbergc338d6f2009-03-05 14:55:02 +0200748#ifdef CONFIG_X86_32
749 /*
750 * Don't use a large page for the first 2/4MB of memory
751 * because there are often fixed size MTRRs in there
752 * and overlapping MTRRs into large pages can cause
753 * slowdowns.
754 */
755 if (pos == 0)
756 end_pfn = 1<<(PMD_SHIFT - PAGE_SHIFT);
757 else
758 end_pfn = ((pos + (PMD_SIZE - 1))>>PMD_SHIFT)
759 << (PMD_SHIFT - PAGE_SHIFT);
760#else /* CONFIG_X86_64 */
Yinghai Luf96f57d2008-10-28 12:39:23 -0700761 end_pfn = ((pos + (PMD_SIZE - 1)) >> PMD_SHIFT)
Yinghai Luc2e6d652008-07-08 01:43:27 -0700762 << (PMD_SHIFT - PAGE_SHIFT);
Pekka Enbergc338d6f2009-03-05 14:55:02 +0200763#endif
Yinghai Lu0fc59d32009-03-02 23:36:13 -0800764 if (end_pfn > (end >> PAGE_SHIFT))
765 end_pfn = end >> PAGE_SHIFT;
Yinghai Luf96f57d2008-10-28 12:39:23 -0700766 if (start_pfn < end_pfn) {
767 nr_range = save_mr(mr, nr_range, start_pfn, end_pfn, 0);
768 pos = end_pfn << PAGE_SHIFT;
769 }
Yinghai Luc2e6d652008-07-08 01:43:27 -0700770
Pekka Enbergc3f5d2d2009-03-05 14:54:52 +0200771 /* big page (2M) range */
Yinghai Luf96f57d2008-10-28 12:39:23 -0700772 start_pfn = ((pos + (PMD_SIZE - 1))>>PMD_SHIFT)
Yinghai Luc2e6d652008-07-08 01:43:27 -0700773 << (PMD_SHIFT - PAGE_SHIFT);
Pekka Enbergc338d6f2009-03-05 14:55:02 +0200774#ifdef CONFIG_X86_32
775 end_pfn = (end>>PMD_SHIFT) << (PMD_SHIFT - PAGE_SHIFT);
776#else /* CONFIG_X86_64 */
Yinghai Luf96f57d2008-10-28 12:39:23 -0700777 end_pfn = ((pos + (PUD_SIZE - 1))>>PUD_SHIFT)
Yinghai Luc2e6d652008-07-08 01:43:27 -0700778 << (PUD_SHIFT - PAGE_SHIFT);
Yinghai Luf96f57d2008-10-28 12:39:23 -0700779 if (end_pfn > ((end>>PMD_SHIFT)<<(PMD_SHIFT - PAGE_SHIFT)))
780 end_pfn = ((end>>PMD_SHIFT)<<(PMD_SHIFT - PAGE_SHIFT));
Pekka Enbergc338d6f2009-03-05 14:55:02 +0200781#endif
782
Yinghai Luf96f57d2008-10-28 12:39:23 -0700783 if (start_pfn < end_pfn) {
784 nr_range = save_mr(mr, nr_range, start_pfn, end_pfn,
785 page_size_mask & (1<<PG_LEVEL_2M));
786 pos = end_pfn << PAGE_SHIFT;
787 }
Yinghai Luc2e6d652008-07-08 01:43:27 -0700788
Pekka Enbergc338d6f2009-03-05 14:55:02 +0200789#ifdef CONFIG_X86_64
Yinghai Luc2e6d652008-07-08 01:43:27 -0700790 /* big page (1G) range */
Yinghai Luf96f57d2008-10-28 12:39:23 -0700791 start_pfn = ((pos + (PUD_SIZE - 1))>>PUD_SHIFT)
792 << (PUD_SHIFT - PAGE_SHIFT);
793 end_pfn = (end >> PUD_SHIFT) << (PUD_SHIFT - PAGE_SHIFT);
794 if (start_pfn < end_pfn) {
795 nr_range = save_mr(mr, nr_range, start_pfn, end_pfn,
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700796 page_size_mask &
797 ((1<<PG_LEVEL_2M)|(1<<PG_LEVEL_1G)));
Yinghai Luf96f57d2008-10-28 12:39:23 -0700798 pos = end_pfn << PAGE_SHIFT;
799 }
Yinghai Luc2e6d652008-07-08 01:43:27 -0700800
801 /* tail is not big page (1G) alignment */
Yinghai Luf96f57d2008-10-28 12:39:23 -0700802 start_pfn = ((pos + (PMD_SIZE - 1))>>PMD_SHIFT)
803 << (PMD_SHIFT - PAGE_SHIFT);
804 end_pfn = (end >> PMD_SHIFT) << (PMD_SHIFT - PAGE_SHIFT);
805 if (start_pfn < end_pfn) {
806 nr_range = save_mr(mr, nr_range, start_pfn, end_pfn,
807 page_size_mask & (1<<PG_LEVEL_2M));
808 pos = end_pfn << PAGE_SHIFT;
809 }
Pekka Enbergc338d6f2009-03-05 14:55:02 +0200810#endif
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700811
Yinghai Luc2e6d652008-07-08 01:43:27 -0700812 /* tail is not big page (2M) alignment */
Yinghai Luf96f57d2008-10-28 12:39:23 -0700813 start_pfn = pos>>PAGE_SHIFT;
Yinghai Luc2e6d652008-07-08 01:43:27 -0700814 end_pfn = end>>PAGE_SHIFT;
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700815 nr_range = save_mr(mr, nr_range, start_pfn, end_pfn, 0);
816
Yinghai Lu9958e812008-07-12 14:32:45 -0700817 /* try to merge same page size and continuous */
818 for (i = 0; nr_range > 1 && i < nr_range - 1; i++) {
819 unsigned long old_start;
820 if (mr[i].end != mr[i+1].start ||
821 mr[i].page_size_mask != mr[i+1].page_size_mask)
822 continue;
823 /* move it */
824 old_start = mr[i].start;
825 memmove(&mr[i], &mr[i+1],
Pekka Enbergc3f5d2d2009-03-05 14:54:52 +0200826 (nr_range - 1 - i) * sizeof(struct map_range));
Jan Beulich5e72d9e2008-09-12 15:43:04 +0100827 mr[i--].start = old_start;
Yinghai Lu9958e812008-07-12 14:32:45 -0700828 nr_range--;
829 }
830
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700831 for (i = 0; i < nr_range; i++)
832 printk(KERN_DEBUG " %010lx - %010lx page %s\n",
833 mr[i].start, mr[i].end,
834 (mr[i].page_size_mask & (1<<PG_LEVEL_1G))?"1G":(
835 (mr[i].page_size_mask & (1<<PG_LEVEL_2M))?"2M":"4k"));
836
Pekka Enbergc3f5d2d2009-03-05 14:54:52 +0200837 /*
838 * Find space for the kernel direct mapping tables.
839 *
840 * Later we should allocate these tables in the local node of the
841 * memory mapped. Unfortunately this is done currently before the
842 * nodes are discovered.
843 */
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700844 if (!after_bootmem)
Suresh Siddha0b8fdcb2008-09-23 14:00:39 -0700845 find_early_table_space(end, use_pse, use_gbpages);
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700846
Pekka Enbergcbba6572009-03-05 14:54:59 +0200847#ifdef CONFIG_X86_32
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700848 for (i = 0; i < nr_range; i++)
Pekka Enbergcbba6572009-03-05 14:54:59 +0200849 kernel_physical_mapping_init(
850 mr[i].start >> PAGE_SHIFT,
851 mr[i].end >> PAGE_SHIFT,
852 mr[i].page_size_mask == (1<<PG_LEVEL_2M));
853 ret = end;
854#else /* CONFIG_X86_64 */
855 for (i = 0; i < nr_range; i++)
856 ret = kernel_physical_mapping_init(mr[i].start, mr[i].end,
857 mr[i].page_size_mask);
858#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
Pekka Enberg01ced9e2009-03-05 14:55:01 +0200860#ifdef CONFIG_X86_32
861 early_ioremap_page_table_range_init();
862
863 load_cr3(swapper_pg_dir);
864#endif
865
866#ifdef CONFIG_X86_64
Matt Tolentino44df75e2006-01-17 07:03:41 +0100867 if (!after_bootmem)
Glauber de Oliveira Costaf51c9452007-07-22 11:12:29 +0200868 mmu_cr4_features = read_cr4();
Pekka Enberg01ced9e2009-03-05 14:55:01 +0200869#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 __flush_tlb_all();
Andi Kleen75175272008-01-30 13:33:17 +0100871
Yinghai Lub50efd22008-07-08 01:41:05 -0700872 if (!after_bootmem && table_end > table_start)
Yinghai Lu24a5da72008-02-01 17:49:41 +0100873 reserve_early(table_start << PAGE_SHIFT,
874 table_end << PAGE_SHIFT, "PGTABLE");
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700875
876 if (!after_bootmem)
Yinghai Lub50efd22008-07-08 01:41:05 -0700877 early_memtest(start, end);
Andi Kleencc615032008-03-12 03:53:28 +0100878
Pekka Enbergcbba6572009-03-05 14:54:59 +0200879 return ret >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880}
881
Matt Tolentino2b976902005-06-23 00:08:06 -0700882#ifndef CONFIG_NUMA
Yinghai Lu1f75d7e2008-06-22 02:44:49 -0700883void __init initmem_init(unsigned long start_pfn, unsigned long end_pfn)
884{
885 unsigned long bootmap_size, bootmap;
886
887 bootmap_size = bootmem_bootmap_pages(end_pfn)<<PAGE_SHIFT;
888 bootmap = find_e820_area(0, end_pfn<<PAGE_SHIFT, bootmap_size,
889 PAGE_SIZE);
890 if (bootmap == -1L)
891 panic("Cannot find bootmem map of size %ld\n", bootmap_size);
Yinghai Lu346cafe2008-06-23 03:06:14 -0700892 /* don't touch min_low_pfn */
893 bootmap_size = init_bootmem_node(NODE_DATA(0), bootmap >> PAGE_SHIFT,
894 0, end_pfn);
Yinghai Lu1f75d7e2008-06-22 02:44:49 -0700895 e820_register_active_regions(0, start_pfn, end_pfn);
896 free_bootmem_with_active_regions(0, end_pfn);
897 early_res_to_bootmem(0, end_pfn<<PAGE_SHIFT);
898 reserve_bootmem(bootmap, bootmap_size, BOOTMEM_DEFAULT);
899}
900
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901void __init paging_init(void)
902{
Mel Gorman6391af12006-10-11 01:20:39 -0700903 unsigned long max_zone_pfns[MAX_NR_ZONES];
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100904
Mel Gorman6391af12006-10-11 01:20:39 -0700905 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
906 max_zone_pfns[ZONE_DMA] = MAX_DMA_PFN;
907 max_zone_pfns[ZONE_DMA32] = MAX_DMA32_PFN;
Yinghai Luc987d122008-06-24 22:14:09 -0700908 max_zone_pfns[ZONE_NORMAL] = max_pfn;
Mel Gorman6391af12006-10-11 01:20:39 -0700909
Yinghai Luc987d122008-06-24 22:14:09 -0700910 memory_present(0, 0, max_pfn);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100911 sparse_init();
Mel Gorman5cb248a2006-09-27 01:49:52 -0700912 free_area_init_nodes(max_zone_pfns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913}
914#endif
915
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100916/*
Matt Tolentino44df75e2006-01-17 07:03:41 +0100917 * Memory hotplug specific functions
Matt Tolentino44df75e2006-01-17 07:03:41 +0100918 */
Yasunori Gotobc02af92006-06-27 02:53:30 -0700919#ifdef CONFIG_MEMORY_HOTPLUG
920/*
Yasunori Gotobc02af92006-06-27 02:53:30 -0700921 * Memory is added always to NORMAL zone. This means you will never get
922 * additional DMA/DMA32 memory.
923 */
924int arch_add_memory(int nid, u64 start, u64 size)
925{
926 struct pglist_data *pgdat = NODE_DATA(nid);
Christoph Lameter776ed982006-09-25 23:31:09 -0700927 struct zone *zone = pgdat->node_zones + ZONE_NORMAL;
Andi Kleencc615032008-03-12 03:53:28 +0100928 unsigned long last_mapped_pfn, start_pfn = start >> PAGE_SHIFT;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700929 unsigned long nr_pages = size >> PAGE_SHIFT;
930 int ret;
931
Shaohua Li60817c92008-10-27 13:03:18 -0700932 last_mapped_pfn = init_memory_mapping(start, start + size);
Andi Kleencc615032008-03-12 03:53:28 +0100933 if (last_mapped_pfn > max_pfn_mapped)
934 max_pfn_mapped = last_mapped_pfn;
Keith Mannthey45e0b782006-09-30 23:27:09 -0700935
Gary Hadec04fc582009-01-06 14:39:14 -0800936 ret = __add_pages(nid, zone, start_pfn, nr_pages);
Gary Hadefe8b8682008-10-28 16:43:14 -0700937 WARN_ON_ONCE(ret);
Yasunori Gotobc02af92006-06-27 02:53:30 -0700938
Yasunori Gotobc02af92006-06-27 02:53:30 -0700939 return ret;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700940}
941EXPORT_SYMBOL_GPL(arch_add_memory);
942
Yasunori Goto82432292006-11-18 22:19:40 -0800943#if !defined(CONFIG_ACPI_NUMA) && defined(CONFIG_NUMA)
Keith Mannthey4942e992006-09-30 23:27:06 -0700944int memory_add_physaddr_to_nid(u64 start)
945{
946 return 0;
947}
Keith Mannthey8c2676a2006-09-30 23:27:07 -0700948EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
Keith Mannthey4942e992006-09-30 23:27:06 -0700949#endif
950
Keith Mannthey45e0b782006-09-30 23:27:09 -0700951#endif /* CONFIG_MEMORY_HOTPLUG */
952
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100953static struct kcore_list kcore_mem, kcore_vmalloc, kcore_kernel,
954 kcore_modules, kcore_vsyscall;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
956void __init mem_init(void)
957{
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200958 long codesize, reservedpages, datasize, initsize;
Yinghai Lu11a6b0c2008-10-14 18:59:18 -0700959 unsigned long absent_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
Jon Mason0dc243a2006-06-26 13:58:11 +0200961 pci_iommu_alloc();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
Yinghai Lu48ddb152008-01-30 13:32:36 +0100963 /* clear_bss() already clear the empty_zero_page */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
965 reservedpages = 0;
966
967 /* this will put all low memory onto the freelists */
Matt Tolentino2b976902005-06-23 00:08:06 -0700968#ifdef CONFIG_NUMA
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200969 totalram_pages = numa_free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970#else
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200971 totalram_pages = free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972#endif
Yinghai Lu11a6b0c2008-10-14 18:59:18 -0700973
974 absent_pages = absent_pages_in_range(0, max_pfn);
975 reservedpages = max_pfn - totalram_pages - absent_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 after_bootmem = 1;
977
978 codesize = (unsigned long) &_etext - (unsigned long) &_text;
979 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
980 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
981
982 /* Register memory areas for /proc/kcore */
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100983 kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
984 kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 VMALLOC_END-VMALLOC_START);
986 kclist_add(&kcore_kernel, &_stext, _end - _stext);
987 kclist_add(&kcore_modules, (void *)MODULES_VADDR, MODULES_LEN);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100988 kclist_add(&kcore_vsyscall, (void *)VSYSCALL_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 VSYSCALL_END - VSYSCALL_START);
990
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100991 printk(KERN_INFO "Memory: %luk/%luk available (%ldk kernel code, "
Yinghai Lu11a6b0c2008-10-14 18:59:18 -0700992 "%ldk absent, %ldk reserved, %ldk data, %ldk init)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
Yinghai Luc987d122008-06-24 22:14:09 -0700994 max_pfn << (PAGE_SHIFT-10),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 codesize >> 10,
Yinghai Lu11a6b0c2008-10-14 18:59:18 -0700996 absent_pages << (PAGE_SHIFT-10),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 reservedpages << (PAGE_SHIFT-10),
998 datasize >> 10,
999 initsize >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000}
1001
Arjan van de Ven67df1972006-01-06 00:12:04 -08001002#ifdef CONFIG_DEBUG_RODATA
Arjan van de Venedeed302008-01-30 13:34:08 +01001003const int rodata_test_data = 0xC3;
1004EXPORT_SYMBOL_GPL(rodata_test_data);
Arjan van de Ven67df1972006-01-06 00:12:04 -08001005
Arjan van de Ven67df1972006-01-06 00:12:04 -08001006void mark_rodata_ro(void)
1007{
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -05001008 unsigned long start = PFN_ALIGN(_stext), end = PFN_ALIGN(__end_rodata);
Steven Rostedt8f0f9962008-05-12 21:20:56 +02001009 unsigned long rodata_start =
1010 ((unsigned long)__start_rodata + PAGE_SIZE - 1) & PAGE_MASK;
1011
1012#ifdef CONFIG_DYNAMIC_FTRACE
1013 /* Dynamic tracing modifies the kernel text section */
1014 start = rodata_start;
1015#endif
Arjan van de Ven67df1972006-01-06 00:12:04 -08001016
Jan Beulich6fb14752007-05-02 19:27:10 +02001017 printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -07001018 (end - start) >> 10);
Arjan van de Ven984bb802008-02-06 22:39:45 +01001019 set_memory_ro(start, (end - start) >> PAGE_SHIFT);
1020
1021 /*
1022 * The rodata section (but not the kernel text!) should also be
1023 * not-executable.
1024 */
Pekka Paalanen72b59d62008-05-12 21:21:01 +02001025 set_memory_nx(rodata_start, (end - rodata_start) >> PAGE_SHIFT);
Arjan van de Ven67df1972006-01-06 00:12:04 -08001026
Arjan van de Ven1a487252008-01-30 13:34:09 +01001027 rodata_test();
1028
Andi Kleen0c42f392008-01-30 13:33:42 +01001029#ifdef CONFIG_CPA_DEBUG
Ingo Molnar10f22dd2008-01-30 13:34:10 +01001030 printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, end);
Arjan van de Ven6d238cc2008-01-30 13:34:06 +01001031 set_memory_rw(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +01001032
Ingo Molnar10f22dd2008-01-30 13:34:10 +01001033 printk(KERN_INFO "Testing CPA: again\n");
Arjan van de Ven6d238cc2008-01-30 13:34:06 +01001034 set_memory_ro(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +01001035#endif
Arjan van de Ven67df1972006-01-06 00:12:04 -08001036}
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -05001037
Arjan van de Ven67df1972006-01-06 00:12:04 -08001038#endif
1039
Yinghai Lud2dbf342008-06-13 02:00:56 -07001040int __init reserve_bootmem_generic(unsigned long phys, unsigned long len,
1041 int flags)
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001042{
Matt Tolentino2b976902005-06-23 00:08:06 -07001043#ifdef CONFIG_NUMA
Yinghai Lu8b3cd092008-03-18 12:50:21 -07001044 int nid, next_nid;
Yinghai Lu6a07a0e2008-06-23 14:02:36 -07001045 int ret;
Andi Kleen5e58a022006-11-14 16:57:46 +01001046#endif
1047 unsigned long pfn = phys >> PAGE_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001048
Yinghai Luc987d122008-06-24 22:14:09 -07001049 if (pfn >= max_pfn) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001050 /*
1051 * This can happen with kdump kernels when accessing
1052 * firmware tables:
1053 */
Thomas Gleixner67794292008-03-21 21:27:10 +01001054 if (pfn < max_pfn_mapped)
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +02001055 return -EFAULT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001056
Yinghai Lu6a07a0e2008-06-23 14:02:36 -07001057 printk(KERN_ERR "reserve_bootmem: illegal reserve %lx %lu\n",
Andi Kleen5e58a022006-11-14 16:57:46 +01001058 phys, len);
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +02001059 return -EFAULT;
Andi Kleen5e58a022006-11-14 16:57:46 +01001060 }
1061
1062 /* Should check here against the e820 map to avoid double free */
1063#ifdef CONFIG_NUMA
Yinghai Lu8b3cd092008-03-18 12:50:21 -07001064 nid = phys_to_nid(phys);
1065 next_nid = phys_to_nid(phys + len - 1);
1066 if (nid == next_nid)
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +02001067 ret = reserve_bootmem_node(NODE_DATA(nid), phys, len, flags);
Yinghai Lu8b3cd092008-03-18 12:50:21 -07001068 else
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +02001069 ret = reserve_bootmem(phys, len, flags);
1070
1071 if (ret != 0)
1072 return ret;
1073
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001074#else
Bernhard Walle72a7fe32008-02-07 00:15:17 -08001075 reserve_bootmem(phys, len, BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076#endif
Yinghai Lu8b3cd092008-03-18 12:50:21 -07001077
Mel Gorman0e0b8642006-09-27 01:49:56 -07001078 if (phys+len <= MAX_DMA_PFN*PAGE_SIZE) {
Andi Kleene18c6872005-11-05 17:25:53 +01001079 dma_reserve += len / PAGE_SIZE;
Mel Gorman0e0b8642006-09-27 01:49:56 -07001080 set_dma_reserve(dma_reserve);
1081 }
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +02001082
1083 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084}
1085
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001086int kern_addr_valid(unsigned long addr)
1087{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 unsigned long above = ((long)addr) >> __VIRTUAL_MASK_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001089 pgd_t *pgd;
1090 pud_t *pud;
1091 pmd_t *pmd;
1092 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
1094 if (above != 0 && above != -1UL)
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001095 return 0;
1096
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 pgd = pgd_offset_k(addr);
1098 if (pgd_none(*pgd))
1099 return 0;
1100
1101 pud = pud_offset(pgd, addr);
1102 if (pud_none(*pud))
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001103 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
1105 pmd = pmd_offset(pud, addr);
1106 if (pmd_none(*pmd))
1107 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001108
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 if (pmd_large(*pmd))
1110 return pfn_valid(pmd_pfn(*pmd));
1111
1112 pte = pte_offset_kernel(pmd, addr);
1113 if (pte_none(*pte))
1114 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 return pfn_valid(pte_pfn(*pte));
1117}
1118
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001119/*
1120 * A pseudo VMA to allow ptrace access for the vsyscall page. This only
1121 * covers the 64bit vsyscall page now. 32bit has a real VMA now and does
1122 * not need special handling anymore:
1123 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124static struct vm_area_struct gate_vma = {
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001125 .vm_start = VSYSCALL_START,
1126 .vm_end = VSYSCALL_START + (VSYSCALL_MAPPED_PAGES * PAGE_SIZE),
1127 .vm_page_prot = PAGE_READONLY_EXEC,
1128 .vm_flags = VM_READ | VM_EXEC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129};
1130
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131struct vm_area_struct *get_gate_vma(struct task_struct *tsk)
1132{
1133#ifdef CONFIG_IA32_EMULATION
Andi Kleen1e014412005-04-16 15:24:55 -07001134 if (test_tsk_thread_flag(tsk, TIF_IA32))
1135 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136#endif
1137 return &gate_vma;
1138}
1139
1140int in_gate_area(struct task_struct *task, unsigned long addr)
1141{
1142 struct vm_area_struct *vma = get_gate_vma(task);
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001143
Andi Kleen1e014412005-04-16 15:24:55 -07001144 if (!vma)
1145 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001146
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 return (addr >= vma->vm_start) && (addr < vma->vm_end);
1148}
1149
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001150/*
1151 * Use this when you have no reliable task/vma, typically from interrupt
1152 * context. It is less reliable than using the task's vma and may give
1153 * false positives:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 */
1155int in_gate_area_no_task(unsigned long addr)
1156{
Andi Kleen1e014412005-04-16 15:24:55 -07001157 return (addr >= VSYSCALL_START) && (addr < VSYSCALL_END);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158}
Zou Nan hai2e1c49d2007-06-01 00:46:28 -07001159
Andi Kleen2aae9502007-07-21 17:10:01 +02001160const char *arch_vma_name(struct vm_area_struct *vma)
1161{
1162 if (vma->vm_mm && vma->vm_start == (long)vma->vm_mm->context.vdso)
1163 return "[vdso]";
1164 if (vma == &gate_vma)
1165 return "[vsyscall]";
1166 return NULL;
1167}
Christoph Lameter0889eba2007-10-16 01:24:15 -07001168
1169#ifdef CONFIG_SPARSEMEM_VMEMMAP
1170/*
1171 * Initialise the sparsemem vmemmap using huge-pages at the PMD level.
1172 */
Yinghai Luc2b91e22008-04-12 01:19:24 -07001173static long __meminitdata addr_start, addr_end;
1174static void __meminitdata *p_start, *p_end;
1175static int __meminitdata node_start;
1176
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001177int __meminit
1178vmemmap_populate(struct page *start_page, unsigned long size, int node)
Christoph Lameter0889eba2007-10-16 01:24:15 -07001179{
1180 unsigned long addr = (unsigned long)start_page;
1181 unsigned long end = (unsigned long)(start_page + size);
1182 unsigned long next;
1183 pgd_t *pgd;
1184 pud_t *pud;
1185 pmd_t *pmd;
1186
1187 for (; addr < end; addr = next) {
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001188 void *p = NULL;
Christoph Lameter0889eba2007-10-16 01:24:15 -07001189
1190 pgd = vmemmap_pgd_populate(addr, node);
1191 if (!pgd)
1192 return -ENOMEM;
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001193
Christoph Lameter0889eba2007-10-16 01:24:15 -07001194 pud = vmemmap_pud_populate(pgd, addr, node);
1195 if (!pud)
1196 return -ENOMEM;
1197
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001198 if (!cpu_has_pse) {
1199 next = (addr + PAGE_SIZE) & PAGE_MASK;
1200 pmd = vmemmap_pmd_populate(pud, addr, node);
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001201
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001202 if (!pmd)
1203 return -ENOMEM;
1204
1205 p = vmemmap_pte_populate(pmd, addr, node);
1206
Christoph Lameter0889eba2007-10-16 01:24:15 -07001207 if (!p)
1208 return -ENOMEM;
1209
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001210 addr_end = addr + PAGE_SIZE;
1211 p_end = p + PAGE_SIZE;
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001212 } else {
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001213 next = pmd_addr_end(addr, end);
1214
1215 pmd = pmd_offset(pud, addr);
1216 if (pmd_none(*pmd)) {
1217 pte_t entry;
1218
1219 p = vmemmap_alloc_block(PMD_SIZE, node);
1220 if (!p)
1221 return -ENOMEM;
1222
1223 entry = pfn_pte(__pa(p) >> PAGE_SHIFT,
1224 PAGE_KERNEL_LARGE);
1225 set_pmd(pmd, __pmd(pte_val(entry)));
1226
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001227 /* check to see if we have contiguous blocks */
1228 if (p_end != p || node_start != node) {
1229 if (p_start)
1230 printk(KERN_DEBUG " [%lx-%lx] PMD -> [%p-%p] on node %d\n",
1231 addr_start, addr_end-1, p_start, p_end-1, node_start);
1232 addr_start = addr;
1233 node_start = node;
1234 p_start = p;
1235 }
Yinghai Lu49c980d2008-07-03 12:29:34 -07001236
1237 addr_end = addr + PMD_SIZE;
1238 p_end = p + PMD_SIZE;
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001239 } else
1240 vmemmap_verify((pte_t *)pmd, node, addr, next);
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001241 }
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001242
Christoph Lameter0889eba2007-10-16 01:24:15 -07001243 }
Christoph Lameter0889eba2007-10-16 01:24:15 -07001244 return 0;
1245}
Yinghai Luc2b91e22008-04-12 01:19:24 -07001246
1247void __meminit vmemmap_populate_print_last(void)
1248{
1249 if (p_start) {
1250 printk(KERN_DEBUG " [%lx-%lx] PMD -> [%p-%p] on node %d\n",
1251 addr_start, addr_end-1, p_start, p_end-1, node_start);
1252 p_start = NULL;
1253 p_end = NULL;
1254 node_start = 0;
1255 }
1256}
Christoph Lameter0889eba2007-10-16 01:24:15 -07001257#endif