blob: 6e7d5a42a09ae19fa997aff8b104c3c9ffec3f04 [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>
21#include <linux/pagemap.h>
22#include <linux/bootmem.h>
23#include <linux/proc_fs.h>
Andi Kleen59170892005-11-05 17:25:53 +010024#include <linux/pci.h>
Jan Beulich6fb14752007-05-02 19:27:10 +020025#include <linux/pfn.h>
Randy Dunlapc9cf5522006-06-27 02:53:52 -070026#include <linux/poison.h>
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +010027#include <linux/dma-mapping.h>
Matt Tolentino44df75e2006-01-17 07:03:41 +010028#include <linux/module.h>
29#include <linux/memory_hotplug.h>
Konrad Rzeszutekae32b122007-05-02 19:27:11 +020030#include <linux/nmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32#include <asm/processor.h>
33#include <asm/system.h>
34#include <asm/uaccess.h>
35#include <asm/pgtable.h>
36#include <asm/pgalloc.h>
37#include <asm/dma.h>
38#include <asm/fixmap.h>
39#include <asm/e820.h>
40#include <asm/apic.h>
41#include <asm/tlb.h>
42#include <asm/mmu_context.h>
43#include <asm/proto.h>
44#include <asm/smp.h>
Andi Kleen2bc04142005-11-05 17:25:53 +010045#include <asm/sections.h>
Thomas Gleixner718fc132008-01-30 13:30:17 +010046#include <asm/kdebug.h>
Thomas Gleixneraaa64e02008-01-30 13:30:17 +010047#include <asm/numa.h>
Harvey Harrison7bfeab92008-02-12 12:12:01 -080048#include <asm/cacheflush.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Thomas Gleixner14a62c32008-01-30 13:34:10 +010050const struct dma_mapping_ops *dma_ops;
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +010051EXPORT_SYMBOL(dma_ops);
52
Andi Kleene18c6872005-11-05 17:25:53 +010053static unsigned long dma_reserve __initdata;
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
56
Ingo Molnar00d1c5e2008-04-17 17:40:45 +020057int direct_gbpages __meminitdata
58#ifdef CONFIG_DIRECT_GBPAGES
59 = 1
60#endif
61;
62
63static int __init parse_direct_gbpages_off(char *arg)
64{
65 direct_gbpages = 0;
66 return 0;
67}
68early_param("nogbpages", parse_direct_gbpages_off);
69
70static int __init parse_direct_gbpages_on(char *arg)
71{
72 direct_gbpages = 1;
73 return 0;
74}
75early_param("gbpages", parse_direct_gbpages_on);
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077/*
78 * NOTE: pagetable_init alloc all the fixmap pagetables contiguous on the
79 * physical space so we can cache the place of the first one and move
80 * around without checking the pgd every time.
81 */
82
83void show_mem(void)
84{
Andi Kleene92343c2005-09-12 18:49:24 +020085 long i, total = 0, reserved = 0;
86 long shared = 0, cached = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 struct page *page;
Thomas Gleixner14a62c32008-01-30 13:34:10 +010088 pg_data_t *pgdat;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Andi Kleene92343c2005-09-12 18:49:24 +020090 printk(KERN_INFO "Mem-info:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 show_free_areas();
Thomas Gleixner14a62c32008-01-30 13:34:10 +010092 printk(KERN_INFO "Free swap: %6ldkB\n",
93 nr_swap_pages << (PAGE_SHIFT-10));
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
KAMEZAWA Hiroyukiec936fc2006-03-27 01:15:59 -080095 for_each_online_pgdat(pgdat) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +010096 for (i = 0; i < pgdat->node_spanned_pages; ++i) {
97 /*
98 * This loop can take a while with 256 GB and
99 * 4k pages so defer the NMI watchdog:
100 */
101 if (unlikely(i % MAX_ORDER_NR_PAGES == 0))
Konrad Rzeszutekae32b122007-05-02 19:27:11 +0200102 touch_nmi_watchdog();
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100103
Bob Picco12710a52007-06-08 13:47:00 -0700104 if (!pfn_valid(pgdat->node_start_pfn + i))
105 continue;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 page = pfn_to_page(pgdat->node_start_pfn + i);
108 total++;
Andi Kleene92343c2005-09-12 18:49:24 +0200109 if (PageReserved(page))
110 reserved++;
111 else if (PageSwapCache(page))
112 cached++;
113 else if (page_count(page))
114 shared += page_count(page) - 1;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100115 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 }
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100117 printk(KERN_INFO "%lu pages of RAM\n", total);
118 printk(KERN_INFO "%lu reserved pages\n", reserved);
119 printk(KERN_INFO "%lu pages shared\n", shared);
120 printk(KERN_INFO "%lu pages swap cached\n", cached);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121}
122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123int after_bootmem;
124
Andi Kleen5f44a662006-03-25 16:30:25 +0100125static __init void *spp_getpage(void)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100126{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 void *ptr;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 if (after_bootmem)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100130 ptr = (void *) get_zeroed_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 else
132 ptr = alloc_bootmem_pages(PAGE_SIZE);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100133
134 if (!ptr || ((unsigned long)ptr & ~PAGE_MASK)) {
135 panic("set_pte_phys: cannot allocate page data %s\n",
136 after_bootmem ? "after bootmem" : "");
137 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100139 pr_debug("spp_getpage %p\n", ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100141 return ptr;
142}
143
144static __init void
145set_pte_phys(unsigned long vaddr, unsigned long phys, pgprot_t prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
147 pgd_t *pgd;
148 pud_t *pud;
149 pmd_t *pmd;
150 pte_t *pte, new_pte;
151
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100152 pr_debug("set_pte_phys %lx to %lx\n", vaddr, phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154 pgd = pgd_offset_k(vaddr);
155 if (pgd_none(*pgd)) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100156 printk(KERN_ERR
157 "PGD FIXMAP MISSING, it should be setup in head.S!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 return;
159 }
160 pud = pud_offset(pgd, vaddr);
161 if (pud_none(*pud)) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100162 pmd = (pmd_t *) spp_getpage();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 set_pud(pud, __pud(__pa(pmd) | _KERNPG_TABLE | _PAGE_USER));
164 if (pmd != pmd_offset(pud, 0)) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100165 printk(KERN_ERR "PAGETABLE BUG #01! %p <-> %p\n",
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100166 pmd, pmd_offset(pud, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 return;
168 }
169 }
170 pmd = pmd_offset(pud, vaddr);
171 if (pmd_none(*pmd)) {
172 pte = (pte_t *) spp_getpage();
173 set_pmd(pmd, __pmd(__pa(pte) | _KERNPG_TABLE | _PAGE_USER));
174 if (pte != pte_offset_kernel(pmd, 0)) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100175 printk(KERN_ERR "PAGETABLE BUG #02!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 return;
177 }
178 }
179 new_pte = pfn_pte(phys >> PAGE_SHIFT, prot);
180
181 pte = pte_offset_kernel(pmd, vaddr);
182 if (!pte_none(*pte) &&
183 pte_val(*pte) != (pte_val(new_pte) & __supported_pte_mask))
184 pte_ERROR(*pte);
185 set_pte(pte, new_pte);
186
187 /*
188 * It's enough to flush this one mapping.
189 * (PGE mappings get flushed as well)
190 */
191 __flush_tlb_one(vaddr);
192}
193
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100194/*
Ingo Molnar88f3aec2008-02-21 11:04:11 +0100195 * The head.S code sets up the kernel high mapping:
196 *
197 * from __START_KERNEL_map to __START_KERNEL_map + size (== _end-_text)
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100198 *
199 * phys_addr holds the negative offset to the kernel, which is added
200 * to the compile time generated pmds. This results in invalid pmds up
201 * to the point where we hit the physaddr 0 mapping.
202 *
203 * We limit the mappings to the region from _text to _end. _end is
204 * rounded up to the 2MB boundary. This catches the invalid pmds as
205 * well, as they are located before _text:
206 */
207void __init cleanup_highmap(void)
208{
209 unsigned long vaddr = __START_KERNEL_map;
210 unsigned long end = round_up((unsigned long)_end, PMD_SIZE) - 1;
211 pmd_t *pmd = level2_kernel_pgt;
212 pmd_t *last_pmd = pmd + PTRS_PER_PMD;
213
214 for (; pmd < last_pmd; pmd++, vaddr += PMD_SIZE) {
215 if (!pmd_present(*pmd))
216 continue;
217 if (vaddr < (unsigned long) _text || vaddr > end)
218 set_pmd(pmd, __pmd(0));
219 }
220}
221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222/* NOTE: this is meant to be run only at boot */
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100223void __init
224__set_fixmap(enum fixed_addresses idx, unsigned long phys, pgprot_t prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
226 unsigned long address = __fix_to_virt(idx);
227
228 if (idx >= __end_of_fixed_addresses) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100229 printk(KERN_ERR "Invalid __set_fixmap\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 return;
231 }
232 set_pte_phys(address, phys, prot);
233}
234
Andi Kleen75175272008-01-30 13:33:17 +0100235static unsigned long __initdata table_start;
236static unsigned long __meminitdata table_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200238static __meminit void *alloc_low_page(unsigned long *phys)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100239{
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200240 unsigned long pfn = table_end++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 void *adr;
242
Matt Tolentino44df75e2006-01-17 07:03:41 +0100243 if (after_bootmem) {
244 adr = (void *)get_zeroed_page(GFP_ATOMIC);
245 *phys = __pa(adr);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100246
Matt Tolentino44df75e2006-01-17 07:03:41 +0100247 return adr;
248 }
249
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100250 if (pfn >= end_pfn)
251 panic("alloc_low_page: ran out of memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200253 adr = early_ioremap(pfn * PAGE_SIZE, PAGE_SIZE);
254 memset(adr, 0, PAGE_SIZE);
255 *phys = pfn * PAGE_SIZE;
256 return adr;
257}
258
259static __meminit void unmap_low_page(void *adr)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100260{
Matt Tolentino44df75e2006-01-17 07:03:41 +0100261 if (after_bootmem)
262 return;
263
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200264 early_iounmap(adr, PAGE_SIZE);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100265}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100267/* Must run before zap_low_mappings */
Yasunori Gotoa3142c82007-05-08 00:23:07 -0700268__meminit void *early_ioremap(unsigned long addr, unsigned long size)
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100269{
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200270 pmd_t *pmd, *last_pmd;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100271 unsigned long vaddr;
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200272 int i, pmds;
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100273
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200274 pmds = ((addr & ~PMD_MASK) + size + ~PMD_MASK) / PMD_SIZE;
275 vaddr = __START_KERNEL_map;
276 pmd = level2_kernel_pgt;
277 last_pmd = level2_kernel_pgt + PTRS_PER_PMD - 1;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100278
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200279 for (; pmd <= last_pmd; pmd++, vaddr += PMD_SIZE) {
280 for (i = 0; i < pmds; i++) {
281 if (pmd_present(pmd[i]))
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100282 goto continue_outer_loop;
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200283 }
284 vaddr += addr & ~PMD_MASK;
285 addr &= PMD_MASK;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100286
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200287 for (i = 0; i < pmds; i++, addr += PMD_SIZE)
Joerg Roedel929fd582008-01-30 13:31:08 +0100288 set_pmd(pmd+i, __pmd(addr | __PAGE_KERNEL_LARGE_EXEC));
Andi Kleen1a2b4412008-01-30 13:33:54 +0100289 __flush_tlb_all();
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100290
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200291 return (void *)vaddr;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100292continue_outer_loop:
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200293 ;
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100294 }
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100295 printk(KERN_ERR "early_ioremap(0x%lx, %lu) failed\n", addr, size);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100296
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200297 return NULL;
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100298}
299
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100300/*
301 * To avoid virtual aliases later:
302 */
Yasunori Gotoa3142c82007-05-08 00:23:07 -0700303__meminit void early_iounmap(void *addr, unsigned long size)
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100304{
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200305 unsigned long vaddr;
306 pmd_t *pmd;
307 int i, pmds;
308
309 vaddr = (unsigned long)addr;
310 pmds = ((vaddr & ~PMD_MASK) + size + ~PMD_MASK) / PMD_SIZE;
311 pmd = level2_kernel_pgt + pmd_index(vaddr);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100312
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200313 for (i = 0; i < pmds; i++)
314 pmd_clear(pmd + i);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100315
Andi Kleen1a2b4412008-01-30 13:33:54 +0100316 __flush_tlb_all();
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100317}
318
Matt Tolentino44df75e2006-01-17 07:03:41 +0100319static void __meminit
Keith Mannthey6ad91652006-09-26 10:52:36 +0200320phys_pmd_init(pmd_t *pmd_page, unsigned long address, unsigned long end)
Matt Tolentino44df75e2006-01-17 07:03:41 +0100321{
Keith Mannthey6ad91652006-09-26 10:52:36 +0200322 int i = pmd_index(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Keith Mannthey6ad91652006-09-26 10:52:36 +0200324 for (; i < PTRS_PER_PMD; i++, address += PMD_SIZE) {
Keith Mannthey6ad91652006-09-26 10:52:36 +0200325 pmd_t *pmd = pmd_page + pmd_index(address);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100326
Jan Beulich5f51e132006-06-26 13:59:02 +0200327 if (address >= end) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100328 if (!after_bootmem) {
Jan Beulich5f51e132006-06-26 13:59:02 +0200329 for (; i < PTRS_PER_PMD; i++, pmd++)
330 set_pmd(pmd, __pmd(0));
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100331 }
Matt Tolentino44df75e2006-01-17 07:03:41 +0100332 break;
333 }
Keith Mannthey6ad91652006-09-26 10:52:36 +0200334
335 if (pmd_val(*pmd))
336 continue;
337
Andi Kleend4f71f72008-02-04 16:48:09 +0100338 set_pte((pte_t *)pmd,
339 pfn_pte(address >> PAGE_SHIFT, PAGE_KERNEL_LARGE));
Matt Tolentino44df75e2006-01-17 07:03:41 +0100340 }
341}
342
343static void __meminit
344phys_pmd_update(pud_t *pud, unsigned long address, unsigned long end)
345{
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100346 pmd_t *pmd = pmd_offset(pud, 0);
Keith Mannthey6ad91652006-09-26 10:52:36 +0200347 spin_lock(&init_mm.page_table_lock);
348 phys_pmd_init(pmd, address, end);
349 spin_unlock(&init_mm.page_table_lock);
350 __flush_tlb_all();
Matt Tolentino44df75e2006-01-17 07:03:41 +0100351}
352
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100353static void __meminit
354phys_pud_init(pud_t *pud_page, unsigned long addr, unsigned long end)
355{
Keith Mannthey6ad91652006-09-26 10:52:36 +0200356 int i = pud_index(addr);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100357
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100358 for (; i < PTRS_PER_PUD; i++, addr = (addr & PUD_MASK) + PUD_SIZE) {
Keith Mannthey6ad91652006-09-26 10:52:36 +0200359 unsigned long pmd_phys;
360 pud_t *pud = pud_page + pud_index(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 pmd_t *pmd;
362
Keith Mannthey6ad91652006-09-26 10:52:36 +0200363 if (addr >= end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100366 if (!after_bootmem &&
367 !e820_any_mapped(addr, addr+PUD_SIZE, 0)) {
368 set_pud(pud, __pud(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 continue;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Keith Mannthey6ad91652006-09-26 10:52:36 +0200372 if (pud_val(*pud)) {
373 phys_pmd_update(pud, addr, end);
374 continue;
375 }
376
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200377 pmd = alloc_low_page(&pmd_phys);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100378
Matt Tolentino44df75e2006-01-17 07:03:41 +0100379 spin_lock(&init_mm.page_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 set_pud(pud, __pud(pmd_phys | _KERNPG_TABLE));
Keith Mannthey6ad91652006-09-26 10:52:36 +0200381 phys_pmd_init(pmd, addr, end);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100382 spin_unlock(&init_mm.page_table_lock);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100383
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200384 unmap_low_page(pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 }
Andi Kleen1a2b4412008-01-30 13:33:54 +0100386 __flush_tlb_all();
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100387}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
389static void __init find_early_table_space(unsigned long end)
390{
Andi Kleen6c5acd12006-01-11 22:46:57 +0100391 unsigned long puds, pmds, tables, start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
393 puds = (end + PUD_SIZE - 1) >> PUD_SHIFT;
394 pmds = (end + PMD_SIZE - 1) >> PMD_SHIFT;
395 tables = round_up(puds * sizeof(pud_t), PAGE_SIZE) +
396 round_up(pmds * sizeof(pmd_t), PAGE_SIZE);
397
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100398 /*
399 * RED-PEN putting page tables only on node 0 could
400 * cause a hotspot and fill up ZONE_DMA. The page tables
401 * need roughly 0.5KB per GB.
402 */
403 start = 0x8000;
Yinghai Lu24a5da72008-02-01 17:49:41 +0100404 table_start = find_e820_area(start, end, tables, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 if (table_start == -1UL)
406 panic("Cannot find space for the kernel page tables");
407
408 table_start >>= PAGE_SHIFT;
409 table_end = table_start;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100410
411 early_printk("kernel direct mapping tables up to %lx @ %lx-%lx\n",
Jan Beulich5f51e132006-06-26 13:59:02 +0200412 end, table_start << PAGE_SHIFT,
413 (table_start << PAGE_SHIFT) + tables);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414}
415
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100416/*
417 * Setup the direct mapping of the physical memory at PAGE_OFFSET.
418 * This runs before bootmem is initialized and gets pages directly from
419 * the physical memory. To access them they are temporarily mapped.
420 */
KAMEZAWA Hiroyukib6fd6ec2007-11-28 16:21:58 -0800421void __init_refok init_memory_mapping(unsigned long start, unsigned long end)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100422{
423 unsigned long next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100425 pr_debug("init_memory_mapping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100427 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 * Find space for the kernel direct mapping tables.
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100429 *
430 * Later we should allocate these tables in the local node of the
431 * memory mapped. Unfortunately this is done currently before the
432 * nodes are discovered.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 */
Matt Tolentino44df75e2006-01-17 07:03:41 +0100434 if (!after_bootmem)
435 find_early_table_space(end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
437 start = (unsigned long)__va(start);
438 end = (unsigned long)__va(end);
439
440 for (; start < end; start = next) {
Matt Tolentino44df75e2006-01-17 07:03:41 +0100441 pgd_t *pgd = pgd_offset_k(start);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100442 unsigned long pud_phys;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100443 pud_t *pud;
444
445 if (after_bootmem)
Andi Kleend2ae5b52006-06-26 13:57:56 +0200446 pud = pud_offset(pgd, start & PGDIR_MASK);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100447 else
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200448 pud = alloc_low_page(&pud_phys);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 next = start + PGDIR_SIZE;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100451 if (next > end)
452 next = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 phys_pud_init(pud, __pa(start), __pa(next));
Matt Tolentino44df75e2006-01-17 07:03:41 +0100454 if (!after_bootmem)
455 set_pgd(pgd_offset_k(start), mk_kernel_pgd(pud_phys));
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200456 unmap_low_page(pud);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Matt Tolentino44df75e2006-01-17 07:03:41 +0100459 if (!after_bootmem)
Glauber de Oliveira Costaf51c9452007-07-22 11:12:29 +0200460 mmu_cr4_features = read_cr4();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 __flush_tlb_all();
Andi Kleen75175272008-01-30 13:33:17 +0100462
Yinghai Lu24a5da72008-02-01 17:49:41 +0100463 if (!after_bootmem)
464 reserve_early(table_start << PAGE_SHIFT,
465 table_end << PAGE_SHIFT, "PGTABLE");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466}
467
Matt Tolentino2b976902005-06-23 00:08:06 -0700468#ifndef CONFIG_NUMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469void __init paging_init(void)
470{
Mel Gorman6391af12006-10-11 01:20:39 -0700471 unsigned long max_zone_pfns[MAX_NR_ZONES];
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100472
Mel Gorman6391af12006-10-11 01:20:39 -0700473 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
474 max_zone_pfns[ZONE_DMA] = MAX_DMA_PFN;
475 max_zone_pfns[ZONE_DMA32] = MAX_DMA32_PFN;
476 max_zone_pfns[ZONE_NORMAL] = end_pfn;
477
Matt Tolentino44df75e2006-01-17 07:03:41 +0100478 memory_present(0, 0, end_pfn);
479 sparse_init();
Mel Gorman5cb248a2006-09-27 01:49:52 -0700480 free_area_init_nodes(max_zone_pfns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481}
482#endif
483
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100484/*
Matt Tolentino44df75e2006-01-17 07:03:41 +0100485 * Memory hotplug specific functions
Matt Tolentino44df75e2006-01-17 07:03:41 +0100486 */
Matt Tolentino44df75e2006-01-17 07:03:41 +0100487void online_page(struct page *page)
488{
489 ClearPageReserved(page);
Nick Piggin7835e982006-03-22 00:08:40 -0800490 init_page_count(page);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100491 __free_page(page);
492 totalram_pages++;
493 num_physpages++;
494}
495
Yasunori Gotobc02af92006-06-27 02:53:30 -0700496#ifdef CONFIG_MEMORY_HOTPLUG
497/*
Yasunori Gotobc02af92006-06-27 02:53:30 -0700498 * Memory is added always to NORMAL zone. This means you will never get
499 * additional DMA/DMA32 memory.
500 */
501int arch_add_memory(int nid, u64 start, u64 size)
502{
503 struct pglist_data *pgdat = NODE_DATA(nid);
Christoph Lameter776ed982006-09-25 23:31:09 -0700504 struct zone *zone = pgdat->node_zones + ZONE_NORMAL;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700505 unsigned long start_pfn = start >> PAGE_SHIFT;
506 unsigned long nr_pages = size >> PAGE_SHIFT;
507 int ret;
508
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100509 init_memory_mapping(start, start + size-1);
Keith Mannthey45e0b782006-09-30 23:27:09 -0700510
Yasunori Gotobc02af92006-06-27 02:53:30 -0700511 ret = __add_pages(zone, start_pfn, nr_pages);
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100512 WARN_ON(1);
Yasunori Gotobc02af92006-06-27 02:53:30 -0700513
Yasunori Gotobc02af92006-06-27 02:53:30 -0700514 return ret;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700515}
516EXPORT_SYMBOL_GPL(arch_add_memory);
517
Yasunori Goto82432292006-11-18 22:19:40 -0800518#if !defined(CONFIG_ACPI_NUMA) && defined(CONFIG_NUMA)
Keith Mannthey4942e992006-09-30 23:27:06 -0700519int memory_add_physaddr_to_nid(u64 start)
520{
521 return 0;
522}
Keith Mannthey8c2676a2006-09-30 23:27:07 -0700523EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
Keith Mannthey4942e992006-09-30 23:27:06 -0700524#endif
525
Keith Mannthey45e0b782006-09-30 23:27:09 -0700526#endif /* CONFIG_MEMORY_HOTPLUG */
527
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100528static struct kcore_list kcore_mem, kcore_vmalloc, kcore_kernel,
529 kcore_modules, kcore_vsyscall;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
531void __init mem_init(void)
532{
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200533 long codesize, reservedpages, datasize, initsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Jon Mason0dc243a2006-06-26 13:58:11 +0200535 pci_iommu_alloc();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Yinghai Lu48ddb152008-01-30 13:32:36 +0100537 /* clear_bss() already clear the empty_zero_page */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
539 reservedpages = 0;
540
541 /* this will put all low memory onto the freelists */
Matt Tolentino2b976902005-06-23 00:08:06 -0700542#ifdef CONFIG_NUMA
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200543 totalram_pages = numa_free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544#else
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200545 totalram_pages = free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546#endif
Mel Gorman5cb248a2006-09-27 01:49:52 -0700547 reservedpages = end_pfn - totalram_pages -
548 absent_pages_in_range(0, end_pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 after_bootmem = 1;
550
551 codesize = (unsigned long) &_etext - (unsigned long) &_text;
552 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
553 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
554
555 /* Register memory areas for /proc/kcore */
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100556 kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
557 kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 VMALLOC_END-VMALLOC_START);
559 kclist_add(&kcore_kernel, &_stext, _end - _stext);
560 kclist_add(&kcore_modules, (void *)MODULES_VADDR, MODULES_LEN);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100561 kclist_add(&kcore_vsyscall, (void *)VSYSCALL_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 VSYSCALL_END - VSYSCALL_START);
563
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100564 printk(KERN_INFO "Memory: %luk/%luk available (%ldk kernel code, "
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100565 "%ldk reserved, %ldk data, %ldk init)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
567 end_pfn << (PAGE_SHIFT-10),
568 codesize >> 10,
569 reservedpages << (PAGE_SHIFT-10),
570 datasize >> 10,
571 initsize >> 10);
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100572
573 cpa_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574}
575
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200576void free_init_pages(char *what, unsigned long begin, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577{
Thomas Gleixnerbfc734b2008-02-09 23:24:09 +0100578 unsigned long addr = begin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Thomas Gleixnerbfc734b2008-02-09 23:24:09 +0100580 if (addr >= end)
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200581 return;
582
Ingo Molnaree01f112008-01-30 13:34:09 +0100583 /*
584 * If debugging page accesses then do not free this memory but
585 * mark them not present - any buggy init-section access will
586 * create a kernel page fault:
587 */
588#ifdef CONFIG_DEBUG_PAGEALLOC
589 printk(KERN_INFO "debug: unmapping init memory %08lx..%08lx\n",
590 begin, PAGE_ALIGN(end));
591 set_memory_np(begin, (end - begin) >> PAGE_SHIFT);
592#else
Jan Beulich6fb14752007-05-02 19:27:10 +0200593 printk(KERN_INFO "Freeing %s: %luk freed\n", what, (end - begin) >> 10);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100594
Thomas Gleixnerbfc734b2008-02-09 23:24:09 +0100595 for (; addr < end; addr += PAGE_SIZE) {
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700596 ClearPageReserved(virt_to_page(addr));
597 init_page_count(virt_to_page(addr));
598 memset((void *)(addr & ~(PAGE_SIZE-1)),
599 POISON_FREE_INITMEM, PAGE_SIZE);
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700600 free_page(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 totalram_pages++;
602 }
Ingo Molnaree01f112008-01-30 13:34:09 +0100603#endif
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200604}
605
606void free_initmem(void)
607{
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200608 free_init_pages("unused kernel memory",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700609 (unsigned long)(&__init_begin),
610 (unsigned long)(&__init_end));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611}
612
Arjan van de Ven67df1972006-01-06 00:12:04 -0800613#ifdef CONFIG_DEBUG_RODATA
Arjan van de Venedeed302008-01-30 13:34:08 +0100614const int rodata_test_data = 0xC3;
615EXPORT_SYMBOL_GPL(rodata_test_data);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800616
Arjan van de Ven67df1972006-01-06 00:12:04 -0800617void mark_rodata_ro(void)
618{
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700619 unsigned long start = (unsigned long)_stext, end;
Arjan van de Ven67df1972006-01-06 00:12:04 -0800620
Linus Torvalds602033e2007-07-26 12:07:21 -0700621#ifdef CONFIG_HOTPLUG_CPU
622 /* It must still be possible to apply SMP alternatives. */
623 if (num_possible_cpus() > 1)
624 start = (unsigned long)_etext;
625#endif
626
627#ifdef CONFIG_KPROBES
628 start = (unsigned long)__start_rodata;
629#endif
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100630
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700631 end = (unsigned long)__end_rodata;
632 start = (start + PAGE_SIZE - 1) & PAGE_MASK;
633 end &= PAGE_MASK;
634 if (end <= start)
635 return;
636
Arjan van de Ven67df1972006-01-06 00:12:04 -0800637
Jan Beulich6fb14752007-05-02 19:27:10 +0200638 printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700639 (end - start) >> 10);
Arjan van de Ven984bb802008-02-06 22:39:45 +0100640 set_memory_ro(start, (end - start) >> PAGE_SHIFT);
641
642 /*
643 * The rodata section (but not the kernel text!) should also be
644 * not-executable.
645 */
646 start = ((unsigned long)__start_rodata + PAGE_SIZE - 1) & PAGE_MASK;
647 set_memory_nx(start, (end - start) >> PAGE_SHIFT);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800648
Arjan van de Ven1a487252008-01-30 13:34:09 +0100649 rodata_test();
650
Andi Kleen0c42f392008-01-30 13:33:42 +0100651#ifdef CONFIG_CPA_DEBUG
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100652 printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, end);
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100653 set_memory_rw(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +0100654
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100655 printk(KERN_INFO "Testing CPA: again\n");
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100656 set_memory_ro(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +0100657#endif
Arjan van de Ven67df1972006-01-06 00:12:04 -0800658}
659#endif
660
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661#ifdef CONFIG_BLK_DEV_INITRD
662void free_initrd_mem(unsigned long start, unsigned long end)
663{
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700664 free_init_pages("initrd memory", start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665}
666#endif
667
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100668void __init reserve_bootmem_generic(unsigned long phys, unsigned len)
669{
Matt Tolentino2b976902005-06-23 00:08:06 -0700670#ifdef CONFIG_NUMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 int nid = phys_to_nid(phys);
Andi Kleen5e58a022006-11-14 16:57:46 +0100672#endif
673 unsigned long pfn = phys >> PAGE_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100674
Andi Kleen5e58a022006-11-14 16:57:46 +0100675 if (pfn >= end_pfn) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100676 /*
677 * This can happen with kdump kernels when accessing
678 * firmware tables:
679 */
Andi Kleen5e58a022006-11-14 16:57:46 +0100680 if (pfn < end_pfn_map)
681 return;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100682
Andi Kleen5e58a022006-11-14 16:57:46 +0100683 printk(KERN_ERR "reserve_bootmem: illegal reserve %lx %u\n",
684 phys, len);
685 return;
686 }
687
688 /* Should check here against the e820 map to avoid double free */
689#ifdef CONFIG_NUMA
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800690 reserve_bootmem_node(NODE_DATA(nid), phys, len, BOOTMEM_DEFAULT);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100691#else
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800692 reserve_bootmem(phys, len, BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693#endif
Mel Gorman0e0b8642006-09-27 01:49:56 -0700694 if (phys+len <= MAX_DMA_PFN*PAGE_SIZE) {
Andi Kleene18c6872005-11-05 17:25:53 +0100695 dma_reserve += len / PAGE_SIZE;
Mel Gorman0e0b8642006-09-27 01:49:56 -0700696 set_dma_reserve(dma_reserve);
697 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698}
699
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100700int kern_addr_valid(unsigned long addr)
701{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 unsigned long above = ((long)addr) >> __VIRTUAL_MASK_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100703 pgd_t *pgd;
704 pud_t *pud;
705 pmd_t *pmd;
706 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
708 if (above != 0 && above != -1UL)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100709 return 0;
710
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 pgd = pgd_offset_k(addr);
712 if (pgd_none(*pgd))
713 return 0;
714
715 pud = pud_offset(pgd, addr);
716 if (pud_none(*pud))
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100717 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
719 pmd = pmd_offset(pud, addr);
720 if (pmd_none(*pmd))
721 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 if (pmd_large(*pmd))
724 return pfn_valid(pmd_pfn(*pmd));
725
726 pte = pte_offset_kernel(pmd, addr);
727 if (pte_none(*pte))
728 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 return pfn_valid(pte_pfn(*pte));
731}
732
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100733/*
734 * A pseudo VMA to allow ptrace access for the vsyscall page. This only
735 * covers the 64bit vsyscall page now. 32bit has a real VMA now and does
736 * not need special handling anymore:
737 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738static struct vm_area_struct gate_vma = {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100739 .vm_start = VSYSCALL_START,
740 .vm_end = VSYSCALL_START + (VSYSCALL_MAPPED_PAGES * PAGE_SIZE),
741 .vm_page_prot = PAGE_READONLY_EXEC,
742 .vm_flags = VM_READ | VM_EXEC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743};
744
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745struct vm_area_struct *get_gate_vma(struct task_struct *tsk)
746{
747#ifdef CONFIG_IA32_EMULATION
Andi Kleen1e014412005-04-16 15:24:55 -0700748 if (test_tsk_thread_flag(tsk, TIF_IA32))
749 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750#endif
751 return &gate_vma;
752}
753
754int in_gate_area(struct task_struct *task, unsigned long addr)
755{
756 struct vm_area_struct *vma = get_gate_vma(task);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100757
Andi Kleen1e014412005-04-16 15:24:55 -0700758 if (!vma)
759 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 return (addr >= vma->vm_start) && (addr < vma->vm_end);
762}
763
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100764/*
765 * Use this when you have no reliable task/vma, typically from interrupt
766 * context. It is less reliable than using the task's vma and may give
767 * false positives:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 */
769int in_gate_area_no_task(unsigned long addr)
770{
Andi Kleen1e014412005-04-16 15:24:55 -0700771 return (addr >= VSYSCALL_START) && (addr < VSYSCALL_END);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772}
Zou Nan hai2e1c49d2007-06-01 00:46:28 -0700773
Andi Kleen2aae9502007-07-21 17:10:01 +0200774const char *arch_vma_name(struct vm_area_struct *vma)
775{
776 if (vma->vm_mm && vma->vm_start == (long)vma->vm_mm->context.vdso)
777 return "[vdso]";
778 if (vma == &gate_vma)
779 return "[vsyscall]";
780 return NULL;
781}
Christoph Lameter0889eba2007-10-16 01:24:15 -0700782
783#ifdef CONFIG_SPARSEMEM_VMEMMAP
784/*
785 * Initialise the sparsemem vmemmap using huge-pages at the PMD level.
786 */
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100787int __meminit
788vmemmap_populate(struct page *start_page, unsigned long size, int node)
Christoph Lameter0889eba2007-10-16 01:24:15 -0700789{
790 unsigned long addr = (unsigned long)start_page;
791 unsigned long end = (unsigned long)(start_page + size);
792 unsigned long next;
793 pgd_t *pgd;
794 pud_t *pud;
795 pmd_t *pmd;
796
797 for (; addr < end; addr = next) {
798 next = pmd_addr_end(addr, end);
799
800 pgd = vmemmap_pgd_populate(addr, node);
801 if (!pgd)
802 return -ENOMEM;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100803
Christoph Lameter0889eba2007-10-16 01:24:15 -0700804 pud = vmemmap_pud_populate(pgd, addr, node);
805 if (!pud)
806 return -ENOMEM;
807
808 pmd = pmd_offset(pud, addr);
809 if (pmd_none(*pmd)) {
810 pte_t entry;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100811 void *p;
812
813 p = vmemmap_alloc_block(PMD_SIZE, node);
Christoph Lameter0889eba2007-10-16 01:24:15 -0700814 if (!p)
815 return -ENOMEM;
816
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100817 entry = pfn_pte(__pa(p) >> PAGE_SHIFT,
818 PAGE_KERNEL_LARGE);
Christoph Lameter0889eba2007-10-16 01:24:15 -0700819 set_pmd(pmd, __pmd(pte_val(entry)));
820
821 printk(KERN_DEBUG " [%lx-%lx] PMD ->%p on node %d\n",
822 addr, addr + PMD_SIZE - 1, p, node);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100823 } else {
Christoph Lameter0889eba2007-10-16 01:24:15 -0700824 vmemmap_verify((pte_t *)pmd, node, addr, next);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100825 }
Christoph Lameter0889eba2007-10-16 01:24:15 -0700826 }
Christoph Lameter0889eba2007-10-16 01:24:15 -0700827 return 0;
828}
829#endif