blob: a02a14f0f324f9a3392810a46d587dfcda23a157 [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
57/*
58 * NOTE: pagetable_init alloc all the fixmap pagetables contiguous on the
59 * physical space so we can cache the place of the first one and move
60 * around without checking the pgd every time.
61 */
62
63void show_mem(void)
64{
Andi Kleene92343c2005-09-12 18:49:24 +020065 long i, total = 0, reserved = 0;
66 long shared = 0, cached = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 struct page *page;
Thomas Gleixner14a62c32008-01-30 13:34:10 +010068 pg_data_t *pgdat;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Andi Kleene92343c2005-09-12 18:49:24 +020070 printk(KERN_INFO "Mem-info:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 show_free_areas();
Thomas Gleixner14a62c32008-01-30 13:34:10 +010072 printk(KERN_INFO "Free swap: %6ldkB\n",
73 nr_swap_pages << (PAGE_SHIFT-10));
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
KAMEZAWA Hiroyukiec936fc2006-03-27 01:15:59 -080075 for_each_online_pgdat(pgdat) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +010076 for (i = 0; i < pgdat->node_spanned_pages; ++i) {
77 /*
78 * This loop can take a while with 256 GB and
79 * 4k pages so defer the NMI watchdog:
80 */
81 if (unlikely(i % MAX_ORDER_NR_PAGES == 0))
Konrad Rzeszutekae32b122007-05-02 19:27:11 +020082 touch_nmi_watchdog();
Thomas Gleixner14a62c32008-01-30 13:34:10 +010083
Bob Picco12710a52007-06-08 13:47:00 -070084 if (!pfn_valid(pgdat->node_start_pfn + i))
85 continue;
Thomas Gleixner14a62c32008-01-30 13:34:10 +010086
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 page = pfn_to_page(pgdat->node_start_pfn + i);
88 total++;
Andi Kleene92343c2005-09-12 18:49:24 +020089 if (PageReserved(page))
90 reserved++;
91 else if (PageSwapCache(page))
92 cached++;
93 else if (page_count(page))
94 shared += page_count(page) - 1;
Thomas Gleixner14a62c32008-01-30 13:34:10 +010095 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 }
Thomas Gleixner14a62c32008-01-30 13:34:10 +010097 printk(KERN_INFO "%lu pages of RAM\n", total);
98 printk(KERN_INFO "%lu reserved pages\n", reserved);
99 printk(KERN_INFO "%lu pages shared\n", shared);
100 printk(KERN_INFO "%lu pages swap cached\n", cached);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101}
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103int after_bootmem;
104
Andi Kleen5f44a662006-03-25 16:30:25 +0100105static __init void *spp_getpage(void)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100106{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 void *ptr;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 if (after_bootmem)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100110 ptr = (void *) get_zeroed_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 else
112 ptr = alloc_bootmem_pages(PAGE_SIZE);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100113
114 if (!ptr || ((unsigned long)ptr & ~PAGE_MASK)) {
115 panic("set_pte_phys: cannot allocate page data %s\n",
116 after_bootmem ? "after bootmem" : "");
117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100119 pr_debug("spp_getpage %p\n", ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100121 return ptr;
122}
123
124static __init void
125set_pte_phys(unsigned long vaddr, unsigned long phys, pgprot_t prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
127 pgd_t *pgd;
128 pud_t *pud;
129 pmd_t *pmd;
130 pte_t *pte, new_pte;
131
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100132 pr_debug("set_pte_phys %lx to %lx\n", vaddr, phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134 pgd = pgd_offset_k(vaddr);
135 if (pgd_none(*pgd)) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100136 printk(KERN_ERR
137 "PGD FIXMAP MISSING, it should be setup in head.S!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 return;
139 }
140 pud = pud_offset(pgd, vaddr);
141 if (pud_none(*pud)) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100142 pmd = (pmd_t *) spp_getpage();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 set_pud(pud, __pud(__pa(pmd) | _KERNPG_TABLE | _PAGE_USER));
144 if (pmd != pmd_offset(pud, 0)) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100145 printk(KERN_ERR "PAGETABLE BUG #01! %p <-> %p\n",
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100146 pmd, pmd_offset(pud, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 return;
148 }
149 }
150 pmd = pmd_offset(pud, vaddr);
151 if (pmd_none(*pmd)) {
152 pte = (pte_t *) spp_getpage();
153 set_pmd(pmd, __pmd(__pa(pte) | _KERNPG_TABLE | _PAGE_USER));
154 if (pte != pte_offset_kernel(pmd, 0)) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100155 printk(KERN_ERR "PAGETABLE BUG #02!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 return;
157 }
158 }
159 new_pte = pfn_pte(phys >> PAGE_SHIFT, prot);
160
161 pte = pte_offset_kernel(pmd, vaddr);
162 if (!pte_none(*pte) &&
163 pte_val(*pte) != (pte_val(new_pte) & __supported_pte_mask))
164 pte_ERROR(*pte);
165 set_pte(pte, new_pte);
166
167 /*
168 * It's enough to flush this one mapping.
169 * (PGE mappings get flushed as well)
170 */
171 __flush_tlb_one(vaddr);
172}
173
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100174/*
Ingo Molnar88f3aec2008-02-21 11:04:11 +0100175 * The head.S code sets up the kernel high mapping:
176 *
177 * from __START_KERNEL_map to __START_KERNEL_map + size (== _end-_text)
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100178 *
179 * phys_addr holds the negative offset to the kernel, which is added
180 * to the compile time generated pmds. This results in invalid pmds up
181 * to the point where we hit the physaddr 0 mapping.
182 *
183 * We limit the mappings to the region from _text to _end. _end is
184 * rounded up to the 2MB boundary. This catches the invalid pmds as
185 * well, as they are located before _text:
186 */
187void __init cleanup_highmap(void)
188{
189 unsigned long vaddr = __START_KERNEL_map;
190 unsigned long end = round_up((unsigned long)_end, PMD_SIZE) - 1;
191 pmd_t *pmd = level2_kernel_pgt;
192 pmd_t *last_pmd = pmd + PTRS_PER_PMD;
193
194 for (; pmd < last_pmd; pmd++, vaddr += PMD_SIZE) {
195 if (!pmd_present(*pmd))
196 continue;
197 if (vaddr < (unsigned long) _text || vaddr > end)
198 set_pmd(pmd, __pmd(0));
199 }
200}
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202/* NOTE: this is meant to be run only at boot */
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100203void __init
204__set_fixmap(enum fixed_addresses idx, unsigned long phys, pgprot_t prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
206 unsigned long address = __fix_to_virt(idx);
207
208 if (idx >= __end_of_fixed_addresses) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100209 printk(KERN_ERR "Invalid __set_fixmap\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 return;
211 }
212 set_pte_phys(address, phys, prot);
213}
214
Andi Kleen75175272008-01-30 13:33:17 +0100215static unsigned long __initdata table_start;
216static unsigned long __meminitdata table_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200218static __meminit void *alloc_low_page(unsigned long *phys)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100219{
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200220 unsigned long pfn = table_end++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 void *adr;
222
Matt Tolentino44df75e2006-01-17 07:03:41 +0100223 if (after_bootmem) {
224 adr = (void *)get_zeroed_page(GFP_ATOMIC);
225 *phys = __pa(adr);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100226
Matt Tolentino44df75e2006-01-17 07:03:41 +0100227 return adr;
228 }
229
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100230 if (pfn >= end_pfn)
231 panic("alloc_low_page: ran out of memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200233 adr = early_ioremap(pfn * PAGE_SIZE, PAGE_SIZE);
234 memset(adr, 0, PAGE_SIZE);
235 *phys = pfn * PAGE_SIZE;
236 return adr;
237}
238
239static __meminit void unmap_low_page(void *adr)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100240{
Matt Tolentino44df75e2006-01-17 07:03:41 +0100241 if (after_bootmem)
242 return;
243
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200244 early_iounmap(adr, PAGE_SIZE);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100245}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100247/* Must run before zap_low_mappings */
Yasunori Gotoa3142c82007-05-08 00:23:07 -0700248__meminit void *early_ioremap(unsigned long addr, unsigned long size)
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100249{
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200250 pmd_t *pmd, *last_pmd;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100251 unsigned long vaddr;
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200252 int i, pmds;
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100253
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200254 pmds = ((addr & ~PMD_MASK) + size + ~PMD_MASK) / PMD_SIZE;
255 vaddr = __START_KERNEL_map;
256 pmd = level2_kernel_pgt;
257 last_pmd = level2_kernel_pgt + PTRS_PER_PMD - 1;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100258
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200259 for (; pmd <= last_pmd; pmd++, vaddr += PMD_SIZE) {
260 for (i = 0; i < pmds; i++) {
261 if (pmd_present(pmd[i]))
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100262 goto continue_outer_loop;
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200263 }
264 vaddr += addr & ~PMD_MASK;
265 addr &= PMD_MASK;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100266
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200267 for (i = 0; i < pmds; i++, addr += PMD_SIZE)
Joerg Roedel929fd582008-01-30 13:31:08 +0100268 set_pmd(pmd+i, __pmd(addr | __PAGE_KERNEL_LARGE_EXEC));
Andi Kleen1a2b4412008-01-30 13:33:54 +0100269 __flush_tlb_all();
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100270
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200271 return (void *)vaddr;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100272continue_outer_loop:
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200273 ;
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100274 }
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100275 printk(KERN_ERR "early_ioremap(0x%lx, %lu) failed\n", addr, size);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100276
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200277 return NULL;
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100278}
279
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100280/*
281 * To avoid virtual aliases later:
282 */
Yasunori Gotoa3142c82007-05-08 00:23:07 -0700283__meminit void early_iounmap(void *addr, unsigned long size)
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100284{
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200285 unsigned long vaddr;
286 pmd_t *pmd;
287 int i, pmds;
288
289 vaddr = (unsigned long)addr;
290 pmds = ((vaddr & ~PMD_MASK) + size + ~PMD_MASK) / PMD_SIZE;
291 pmd = level2_kernel_pgt + pmd_index(vaddr);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100292
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200293 for (i = 0; i < pmds; i++)
294 pmd_clear(pmd + i);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100295
Andi Kleen1a2b4412008-01-30 13:33:54 +0100296 __flush_tlb_all();
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100297}
298
Matt Tolentino44df75e2006-01-17 07:03:41 +0100299static void __meminit
Keith Mannthey6ad91652006-09-26 10:52:36 +0200300phys_pmd_init(pmd_t *pmd_page, unsigned long address, unsigned long end)
Matt Tolentino44df75e2006-01-17 07:03:41 +0100301{
Keith Mannthey6ad91652006-09-26 10:52:36 +0200302 int i = pmd_index(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Keith Mannthey6ad91652006-09-26 10:52:36 +0200304 for (; i < PTRS_PER_PMD; i++, address += PMD_SIZE) {
Keith Mannthey6ad91652006-09-26 10:52:36 +0200305 pmd_t *pmd = pmd_page + pmd_index(address);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100306
Jan Beulich5f51e132006-06-26 13:59:02 +0200307 if (address >= end) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100308 if (!after_bootmem) {
Jan Beulich5f51e132006-06-26 13:59:02 +0200309 for (; i < PTRS_PER_PMD; i++, pmd++)
310 set_pmd(pmd, __pmd(0));
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100311 }
Matt Tolentino44df75e2006-01-17 07:03:41 +0100312 break;
313 }
Keith Mannthey6ad91652006-09-26 10:52:36 +0200314
315 if (pmd_val(*pmd))
316 continue;
317
Andi Kleend4f71f72008-02-04 16:48:09 +0100318 set_pte((pte_t *)pmd,
319 pfn_pte(address >> PAGE_SHIFT, PAGE_KERNEL_LARGE));
Matt Tolentino44df75e2006-01-17 07:03:41 +0100320 }
321}
322
323static void __meminit
324phys_pmd_update(pud_t *pud, unsigned long address, unsigned long end)
325{
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100326 pmd_t *pmd = pmd_offset(pud, 0);
Keith Mannthey6ad91652006-09-26 10:52:36 +0200327 spin_lock(&init_mm.page_table_lock);
328 phys_pmd_init(pmd, address, end);
329 spin_unlock(&init_mm.page_table_lock);
330 __flush_tlb_all();
Matt Tolentino44df75e2006-01-17 07:03:41 +0100331}
332
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100333static void __meminit
334phys_pud_init(pud_t *pud_page, unsigned long addr, unsigned long end)
335{
Keith Mannthey6ad91652006-09-26 10:52:36 +0200336 int i = pud_index(addr);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100337
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100338 for (; i < PTRS_PER_PUD; i++, addr = (addr & PUD_MASK) + PUD_SIZE) {
Keith Mannthey6ad91652006-09-26 10:52:36 +0200339 unsigned long pmd_phys;
340 pud_t *pud = pud_page + pud_index(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 pmd_t *pmd;
342
Keith Mannthey6ad91652006-09-26 10:52:36 +0200343 if (addr >= end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100346 if (!after_bootmem &&
347 !e820_any_mapped(addr, addr+PUD_SIZE, 0)) {
348 set_pud(pud, __pud(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 continue;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100350 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Keith Mannthey6ad91652006-09-26 10:52:36 +0200352 if (pud_val(*pud)) {
353 phys_pmd_update(pud, addr, end);
354 continue;
355 }
356
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200357 pmd = alloc_low_page(&pmd_phys);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100358
Matt Tolentino44df75e2006-01-17 07:03:41 +0100359 spin_lock(&init_mm.page_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 set_pud(pud, __pud(pmd_phys | _KERNPG_TABLE));
Keith Mannthey6ad91652006-09-26 10:52:36 +0200361 phys_pmd_init(pmd, addr, end);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100362 spin_unlock(&init_mm.page_table_lock);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100363
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200364 unmap_low_page(pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 }
Andi Kleen1a2b4412008-01-30 13:33:54 +0100366 __flush_tlb_all();
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100367}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369static void __init find_early_table_space(unsigned long end)
370{
Andi Kleen6c5acd12006-01-11 22:46:57 +0100371 unsigned long puds, pmds, tables, start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
373 puds = (end + PUD_SIZE - 1) >> PUD_SHIFT;
374 pmds = (end + PMD_SIZE - 1) >> PMD_SHIFT;
375 tables = round_up(puds * sizeof(pud_t), PAGE_SIZE) +
376 round_up(pmds * sizeof(pmd_t), PAGE_SIZE);
377
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100378 /*
379 * RED-PEN putting page tables only on node 0 could
380 * cause a hotspot and fill up ZONE_DMA. The page tables
381 * need roughly 0.5KB per GB.
382 */
383 start = 0x8000;
Yinghai Lu24a5da72008-02-01 17:49:41 +0100384 table_start = find_e820_area(start, end, tables, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 if (table_start == -1UL)
386 panic("Cannot find space for the kernel page tables");
387
388 table_start >>= PAGE_SHIFT;
389 table_end = table_start;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100390
391 early_printk("kernel direct mapping tables up to %lx @ %lx-%lx\n",
Jan Beulich5f51e132006-06-26 13:59:02 +0200392 end, table_start << PAGE_SHIFT,
393 (table_start << PAGE_SHIFT) + tables);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394}
395
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100396/*
397 * Setup the direct mapping of the physical memory at PAGE_OFFSET.
398 * This runs before bootmem is initialized and gets pages directly from
399 * the physical memory. To access them they are temporarily mapped.
400 */
KAMEZAWA Hiroyukib6fd6ec2007-11-28 16:21:58 -0800401void __init_refok init_memory_mapping(unsigned long start, unsigned long end)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100402{
403 unsigned long next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100405 pr_debug("init_memory_mapping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100407 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 * Find space for the kernel direct mapping tables.
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100409 *
410 * Later we should allocate these tables in the local node of the
411 * memory mapped. Unfortunately this is done currently before the
412 * nodes are discovered.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 */
Matt Tolentino44df75e2006-01-17 07:03:41 +0100414 if (!after_bootmem)
415 find_early_table_space(end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
417 start = (unsigned long)__va(start);
418 end = (unsigned long)__va(end);
419
420 for (; start < end; start = next) {
Matt Tolentino44df75e2006-01-17 07:03:41 +0100421 pgd_t *pgd = pgd_offset_k(start);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100422 unsigned long pud_phys;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100423 pud_t *pud;
424
425 if (after_bootmem)
Andi Kleend2ae5b52006-06-26 13:57:56 +0200426 pud = pud_offset(pgd, start & PGDIR_MASK);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100427 else
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200428 pud = alloc_low_page(&pud_phys);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 next = start + PGDIR_SIZE;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100431 if (next > end)
432 next = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 phys_pud_init(pud, __pa(start), __pa(next));
Matt Tolentino44df75e2006-01-17 07:03:41 +0100434 if (!after_bootmem)
435 set_pgd(pgd_offset_k(start), mk_kernel_pgd(pud_phys));
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200436 unmap_low_page(pud);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100437 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Matt Tolentino44df75e2006-01-17 07:03:41 +0100439 if (!after_bootmem)
Glauber de Oliveira Costaf51c9452007-07-22 11:12:29 +0200440 mmu_cr4_features = read_cr4();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 __flush_tlb_all();
Andi Kleen75175272008-01-30 13:33:17 +0100442
Yinghai Lu24a5da72008-02-01 17:49:41 +0100443 if (!after_bootmem)
444 reserve_early(table_start << PAGE_SHIFT,
445 table_end << PAGE_SHIFT, "PGTABLE");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446}
447
Matt Tolentino2b976902005-06-23 00:08:06 -0700448#ifndef CONFIG_NUMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449void __init paging_init(void)
450{
Mel Gorman6391af12006-10-11 01:20:39 -0700451 unsigned long max_zone_pfns[MAX_NR_ZONES];
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100452
Mel Gorman6391af12006-10-11 01:20:39 -0700453 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
454 max_zone_pfns[ZONE_DMA] = MAX_DMA_PFN;
455 max_zone_pfns[ZONE_DMA32] = MAX_DMA32_PFN;
456 max_zone_pfns[ZONE_NORMAL] = end_pfn;
457
Matt Tolentino44df75e2006-01-17 07:03:41 +0100458 memory_present(0, 0, end_pfn);
459 sparse_init();
Mel Gorman5cb248a2006-09-27 01:49:52 -0700460 free_area_init_nodes(max_zone_pfns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461}
462#endif
463
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100464/*
Matt Tolentino44df75e2006-01-17 07:03:41 +0100465 * Memory hotplug specific functions
Matt Tolentino44df75e2006-01-17 07:03:41 +0100466 */
Matt Tolentino44df75e2006-01-17 07:03:41 +0100467void online_page(struct page *page)
468{
469 ClearPageReserved(page);
Nick Piggin7835e982006-03-22 00:08:40 -0800470 init_page_count(page);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100471 __free_page(page);
472 totalram_pages++;
473 num_physpages++;
474}
475
Yasunori Gotobc02af92006-06-27 02:53:30 -0700476#ifdef CONFIG_MEMORY_HOTPLUG
477/*
Yasunori Gotobc02af92006-06-27 02:53:30 -0700478 * Memory is added always to NORMAL zone. This means you will never get
479 * additional DMA/DMA32 memory.
480 */
481int arch_add_memory(int nid, u64 start, u64 size)
482{
483 struct pglist_data *pgdat = NODE_DATA(nid);
Christoph Lameter776ed982006-09-25 23:31:09 -0700484 struct zone *zone = pgdat->node_zones + ZONE_NORMAL;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700485 unsigned long start_pfn = start >> PAGE_SHIFT;
486 unsigned long nr_pages = size >> PAGE_SHIFT;
487 int ret;
488
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100489 init_memory_mapping(start, start + size-1);
Keith Mannthey45e0b782006-09-30 23:27:09 -0700490
Yasunori Gotobc02af92006-06-27 02:53:30 -0700491 ret = __add_pages(zone, start_pfn, nr_pages);
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100492 WARN_ON(1);
Yasunori Gotobc02af92006-06-27 02:53:30 -0700493
Yasunori Gotobc02af92006-06-27 02:53:30 -0700494 return ret;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700495}
496EXPORT_SYMBOL_GPL(arch_add_memory);
497
Yasunori Goto82432292006-11-18 22:19:40 -0800498#if !defined(CONFIG_ACPI_NUMA) && defined(CONFIG_NUMA)
Keith Mannthey4942e992006-09-30 23:27:06 -0700499int memory_add_physaddr_to_nid(u64 start)
500{
501 return 0;
502}
Keith Mannthey8c2676a2006-09-30 23:27:07 -0700503EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
Keith Mannthey4942e992006-09-30 23:27:06 -0700504#endif
505
Keith Mannthey45e0b782006-09-30 23:27:09 -0700506#endif /* CONFIG_MEMORY_HOTPLUG */
507
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100508static struct kcore_list kcore_mem, kcore_vmalloc, kcore_kernel,
509 kcore_modules, kcore_vsyscall;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
511void __init mem_init(void)
512{
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200513 long codesize, reservedpages, datasize, initsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Jon Mason0dc243a2006-06-26 13:58:11 +0200515 pci_iommu_alloc();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Yinghai Lu48ddb152008-01-30 13:32:36 +0100517 /* clear_bss() already clear the empty_zero_page */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
519 reservedpages = 0;
520
521 /* this will put all low memory onto the freelists */
Matt Tolentino2b976902005-06-23 00:08:06 -0700522#ifdef CONFIG_NUMA
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200523 totalram_pages = numa_free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524#else
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200525 totalram_pages = free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526#endif
Mel Gorman5cb248a2006-09-27 01:49:52 -0700527 reservedpages = end_pfn - totalram_pages -
528 absent_pages_in_range(0, end_pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 after_bootmem = 1;
530
531 codesize = (unsigned long) &_etext - (unsigned long) &_text;
532 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
533 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
534
535 /* Register memory areas for /proc/kcore */
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100536 kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
537 kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 VMALLOC_END-VMALLOC_START);
539 kclist_add(&kcore_kernel, &_stext, _end - _stext);
540 kclist_add(&kcore_modules, (void *)MODULES_VADDR, MODULES_LEN);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100541 kclist_add(&kcore_vsyscall, (void *)VSYSCALL_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 VSYSCALL_END - VSYSCALL_START);
543
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100544 printk(KERN_INFO "Memory: %luk/%luk available (%ldk kernel code, "
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100545 "%ldk reserved, %ldk data, %ldk init)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
547 end_pfn << (PAGE_SHIFT-10),
548 codesize >> 10,
549 reservedpages << (PAGE_SHIFT-10),
550 datasize >> 10,
551 initsize >> 10);
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100552
553 cpa_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554}
555
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200556void free_init_pages(char *what, unsigned long begin, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557{
Thomas Gleixnerbfc734b2008-02-09 23:24:09 +0100558 unsigned long addr = begin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Thomas Gleixnerbfc734b2008-02-09 23:24:09 +0100560 if (addr >= end)
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200561 return;
562
Ingo Molnaree01f112008-01-30 13:34:09 +0100563 /*
564 * If debugging page accesses then do not free this memory but
565 * mark them not present - any buggy init-section access will
566 * create a kernel page fault:
567 */
568#ifdef CONFIG_DEBUG_PAGEALLOC
569 printk(KERN_INFO "debug: unmapping init memory %08lx..%08lx\n",
570 begin, PAGE_ALIGN(end));
571 set_memory_np(begin, (end - begin) >> PAGE_SHIFT);
572#else
Jan Beulich6fb14752007-05-02 19:27:10 +0200573 printk(KERN_INFO "Freeing %s: %luk freed\n", what, (end - begin) >> 10);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100574
Thomas Gleixnerbfc734b2008-02-09 23:24:09 +0100575 for (; addr < end; addr += PAGE_SIZE) {
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700576 ClearPageReserved(virt_to_page(addr));
577 init_page_count(virt_to_page(addr));
578 memset((void *)(addr & ~(PAGE_SIZE-1)),
579 POISON_FREE_INITMEM, PAGE_SIZE);
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700580 free_page(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 totalram_pages++;
582 }
Ingo Molnaree01f112008-01-30 13:34:09 +0100583#endif
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200584}
585
586void free_initmem(void)
587{
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200588 free_init_pages("unused kernel memory",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700589 (unsigned long)(&__init_begin),
590 (unsigned long)(&__init_end));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}
592
Arjan van de Ven67df1972006-01-06 00:12:04 -0800593#ifdef CONFIG_DEBUG_RODATA
Arjan van de Venedeed302008-01-30 13:34:08 +0100594const int rodata_test_data = 0xC3;
595EXPORT_SYMBOL_GPL(rodata_test_data);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800596
Arjan van de Ven67df1972006-01-06 00:12:04 -0800597void mark_rodata_ro(void)
598{
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700599 unsigned long start = (unsigned long)_stext, end;
Arjan van de Ven67df1972006-01-06 00:12:04 -0800600
Linus Torvalds602033e2007-07-26 12:07:21 -0700601#ifdef CONFIG_HOTPLUG_CPU
602 /* It must still be possible to apply SMP alternatives. */
603 if (num_possible_cpus() > 1)
604 start = (unsigned long)_etext;
605#endif
606
607#ifdef CONFIG_KPROBES
608 start = (unsigned long)__start_rodata;
609#endif
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100610
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700611 end = (unsigned long)__end_rodata;
612 start = (start + PAGE_SIZE - 1) & PAGE_MASK;
613 end &= PAGE_MASK;
614 if (end <= start)
615 return;
616
Arjan van de Ven67df1972006-01-06 00:12:04 -0800617
Jan Beulich6fb14752007-05-02 19:27:10 +0200618 printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700619 (end - start) >> 10);
Arjan van de Ven984bb802008-02-06 22:39:45 +0100620 set_memory_ro(start, (end - start) >> PAGE_SHIFT);
621
622 /*
623 * The rodata section (but not the kernel text!) should also be
624 * not-executable.
625 */
626 start = ((unsigned long)__start_rodata + PAGE_SIZE - 1) & PAGE_MASK;
627 set_memory_nx(start, (end - start) >> PAGE_SHIFT);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800628
Arjan van de Ven1a487252008-01-30 13:34:09 +0100629 rodata_test();
630
Andi Kleen0c42f392008-01-30 13:33:42 +0100631#ifdef CONFIG_CPA_DEBUG
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100632 printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, end);
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100633 set_memory_rw(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +0100634
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100635 printk(KERN_INFO "Testing CPA: again\n");
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100636 set_memory_ro(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +0100637#endif
Arjan van de Ven67df1972006-01-06 00:12:04 -0800638}
639#endif
640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641#ifdef CONFIG_BLK_DEV_INITRD
642void free_initrd_mem(unsigned long start, unsigned long end)
643{
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700644 free_init_pages("initrd memory", start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645}
646#endif
647
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100648void __init reserve_bootmem_generic(unsigned long phys, unsigned len)
649{
Matt Tolentino2b976902005-06-23 00:08:06 -0700650#ifdef CONFIG_NUMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 int nid = phys_to_nid(phys);
Andi Kleen5e58a022006-11-14 16:57:46 +0100652#endif
653 unsigned long pfn = phys >> PAGE_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100654
Andi Kleen5e58a022006-11-14 16:57:46 +0100655 if (pfn >= end_pfn) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100656 /*
657 * This can happen with kdump kernels when accessing
658 * firmware tables:
659 */
Andi Kleen5e58a022006-11-14 16:57:46 +0100660 if (pfn < end_pfn_map)
661 return;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100662
Andi Kleen5e58a022006-11-14 16:57:46 +0100663 printk(KERN_ERR "reserve_bootmem: illegal reserve %lx %u\n",
664 phys, len);
665 return;
666 }
667
668 /* Should check here against the e820 map to avoid double free */
669#ifdef CONFIG_NUMA
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800670 reserve_bootmem_node(NODE_DATA(nid), phys, len, BOOTMEM_DEFAULT);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100671#else
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800672 reserve_bootmem(phys, len, BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673#endif
Mel Gorman0e0b8642006-09-27 01:49:56 -0700674 if (phys+len <= MAX_DMA_PFN*PAGE_SIZE) {
Andi Kleene18c6872005-11-05 17:25:53 +0100675 dma_reserve += len / PAGE_SIZE;
Mel Gorman0e0b8642006-09-27 01:49:56 -0700676 set_dma_reserve(dma_reserve);
677 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678}
679
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100680int kern_addr_valid(unsigned long addr)
681{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 unsigned long above = ((long)addr) >> __VIRTUAL_MASK_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100683 pgd_t *pgd;
684 pud_t *pud;
685 pmd_t *pmd;
686 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
688 if (above != 0 && above != -1UL)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100689 return 0;
690
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 pgd = pgd_offset_k(addr);
692 if (pgd_none(*pgd))
693 return 0;
694
695 pud = pud_offset(pgd, addr);
696 if (pud_none(*pud))
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100697 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
699 pmd = pmd_offset(pud, addr);
700 if (pmd_none(*pmd))
701 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 if (pmd_large(*pmd))
704 return pfn_valid(pmd_pfn(*pmd));
705
706 pte = pte_offset_kernel(pmd, addr);
707 if (pte_none(*pte))
708 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 return pfn_valid(pte_pfn(*pte));
711}
712
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100713/*
714 * A pseudo VMA to allow ptrace access for the vsyscall page. This only
715 * covers the 64bit vsyscall page now. 32bit has a real VMA now and does
716 * not need special handling anymore:
717 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718static struct vm_area_struct gate_vma = {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100719 .vm_start = VSYSCALL_START,
720 .vm_end = VSYSCALL_START + (VSYSCALL_MAPPED_PAGES * PAGE_SIZE),
721 .vm_page_prot = PAGE_READONLY_EXEC,
722 .vm_flags = VM_READ | VM_EXEC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723};
724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725struct vm_area_struct *get_gate_vma(struct task_struct *tsk)
726{
727#ifdef CONFIG_IA32_EMULATION
Andi Kleen1e014412005-04-16 15:24:55 -0700728 if (test_tsk_thread_flag(tsk, TIF_IA32))
729 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730#endif
731 return &gate_vma;
732}
733
734int in_gate_area(struct task_struct *task, unsigned long addr)
735{
736 struct vm_area_struct *vma = get_gate_vma(task);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100737
Andi Kleen1e014412005-04-16 15:24:55 -0700738 if (!vma)
739 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100740
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 return (addr >= vma->vm_start) && (addr < vma->vm_end);
742}
743
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100744/*
745 * Use this when you have no reliable task/vma, typically from interrupt
746 * context. It is less reliable than using the task's vma and may give
747 * false positives:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 */
749int in_gate_area_no_task(unsigned long addr)
750{
Andi Kleen1e014412005-04-16 15:24:55 -0700751 return (addr >= VSYSCALL_START) && (addr < VSYSCALL_END);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752}
Zou Nan hai2e1c49d2007-06-01 00:46:28 -0700753
Andi Kleen2aae9502007-07-21 17:10:01 +0200754const char *arch_vma_name(struct vm_area_struct *vma)
755{
756 if (vma->vm_mm && vma->vm_start == (long)vma->vm_mm->context.vdso)
757 return "[vdso]";
758 if (vma == &gate_vma)
759 return "[vsyscall]";
760 return NULL;
761}
Christoph Lameter0889eba2007-10-16 01:24:15 -0700762
763#ifdef CONFIG_SPARSEMEM_VMEMMAP
764/*
765 * Initialise the sparsemem vmemmap using huge-pages at the PMD level.
766 */
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100767int __meminit
768vmemmap_populate(struct page *start_page, unsigned long size, int node)
Christoph Lameter0889eba2007-10-16 01:24:15 -0700769{
770 unsigned long addr = (unsigned long)start_page;
771 unsigned long end = (unsigned long)(start_page + size);
772 unsigned long next;
773 pgd_t *pgd;
774 pud_t *pud;
775 pmd_t *pmd;
776
777 for (; addr < end; addr = next) {
778 next = pmd_addr_end(addr, end);
779
780 pgd = vmemmap_pgd_populate(addr, node);
781 if (!pgd)
782 return -ENOMEM;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100783
Christoph Lameter0889eba2007-10-16 01:24:15 -0700784 pud = vmemmap_pud_populate(pgd, addr, node);
785 if (!pud)
786 return -ENOMEM;
787
788 pmd = pmd_offset(pud, addr);
789 if (pmd_none(*pmd)) {
790 pte_t entry;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100791 void *p;
792
793 p = vmemmap_alloc_block(PMD_SIZE, node);
Christoph Lameter0889eba2007-10-16 01:24:15 -0700794 if (!p)
795 return -ENOMEM;
796
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100797 entry = pfn_pte(__pa(p) >> PAGE_SHIFT,
798 PAGE_KERNEL_LARGE);
Christoph Lameter0889eba2007-10-16 01:24:15 -0700799 set_pmd(pmd, __pmd(pte_val(entry)));
800
801 printk(KERN_DEBUG " [%lx-%lx] PMD ->%p on node %d\n",
802 addr, addr + PMD_SIZE - 1, p, node);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100803 } else {
Christoph Lameter0889eba2007-10-16 01:24:15 -0700804 vmemmap_verify((pte_t *)pmd, node, addr, next);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100805 }
Christoph Lameter0889eba2007-10-16 01:24:15 -0700806 }
Christoph Lameter0889eba2007-10-16 01:24:15 -0700807 return 0;
808}
809#endif