blob: bb732bb79b4a073d1b42392d43399e100d16271c [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49#ifndef Dprintk
Thomas Gleixner14a62c32008-01-30 13:34:10 +010050# define Dprintk(x...)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#endif
52
Thomas Gleixner14a62c32008-01-30 13:34:10 +010053const struct dma_mapping_ops *dma_ops;
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +010054EXPORT_SYMBOL(dma_ops);
55
Andi Kleene18c6872005-11-05 17:25:53 +010056static unsigned long dma_reserve __initdata;
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
59
60/*
61 * NOTE: pagetable_init alloc all the fixmap pagetables contiguous on the
62 * physical space so we can cache the place of the first one and move
63 * around without checking the pgd every time.
64 */
65
66void show_mem(void)
67{
Andi Kleene92343c2005-09-12 18:49:24 +020068 long i, total = 0, reserved = 0;
69 long shared = 0, cached = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 struct page *page;
Thomas Gleixner14a62c32008-01-30 13:34:10 +010071 pg_data_t *pgdat;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Andi Kleene92343c2005-09-12 18:49:24 +020073 printk(KERN_INFO "Mem-info:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 show_free_areas();
Thomas Gleixner14a62c32008-01-30 13:34:10 +010075 printk(KERN_INFO "Free swap: %6ldkB\n",
76 nr_swap_pages << (PAGE_SHIFT-10));
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
KAMEZAWA Hiroyukiec936fc2006-03-27 01:15:59 -080078 for_each_online_pgdat(pgdat) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +010079 for (i = 0; i < pgdat->node_spanned_pages; ++i) {
80 /*
81 * This loop can take a while with 256 GB and
82 * 4k pages so defer the NMI watchdog:
83 */
84 if (unlikely(i % MAX_ORDER_NR_PAGES == 0))
Konrad Rzeszutekae32b122007-05-02 19:27:11 +020085 touch_nmi_watchdog();
Thomas Gleixner14a62c32008-01-30 13:34:10 +010086
Bob Picco12710a52007-06-08 13:47:00 -070087 if (!pfn_valid(pgdat->node_start_pfn + i))
88 continue;
Thomas Gleixner14a62c32008-01-30 13:34:10 +010089
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 page = pfn_to_page(pgdat->node_start_pfn + i);
91 total++;
Andi Kleene92343c2005-09-12 18:49:24 +020092 if (PageReserved(page))
93 reserved++;
94 else if (PageSwapCache(page))
95 cached++;
96 else if (page_count(page))
97 shared += page_count(page) - 1;
Thomas Gleixner14a62c32008-01-30 13:34:10 +010098 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 }
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100100 printk(KERN_INFO "%lu pages of RAM\n", total);
101 printk(KERN_INFO "%lu reserved pages\n", reserved);
102 printk(KERN_INFO "%lu pages shared\n", shared);
103 printk(KERN_INFO "%lu pages swap cached\n", cached);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104}
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106int after_bootmem;
107
Andi Kleen5f44a662006-03-25 16:30:25 +0100108static __init void *spp_getpage(void)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100109{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 void *ptr;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 if (after_bootmem)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100113 ptr = (void *) get_zeroed_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 else
115 ptr = alloc_bootmem_pages(PAGE_SIZE);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100116
117 if (!ptr || ((unsigned long)ptr & ~PAGE_MASK)) {
118 panic("set_pte_phys: cannot allocate page data %s\n",
119 after_bootmem ? "after bootmem" : "");
120 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122 Dprintk("spp_getpage %p\n", ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100124 return ptr;
125}
126
127static __init void
128set_pte_phys(unsigned long vaddr, unsigned long phys, pgprot_t prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
130 pgd_t *pgd;
131 pud_t *pud;
132 pmd_t *pmd;
133 pte_t *pte, new_pte;
134
135 Dprintk("set_pte_phys %lx to %lx\n", vaddr, phys);
136
137 pgd = pgd_offset_k(vaddr);
138 if (pgd_none(*pgd)) {
139 printk("PGD FIXMAP MISSING, it should be setup in head.S!\n");
140 return;
141 }
142 pud = pud_offset(pgd, vaddr);
143 if (pud_none(*pud)) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100144 pmd = (pmd_t *) spp_getpage();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 set_pud(pud, __pud(__pa(pmd) | _KERNPG_TABLE | _PAGE_USER));
146 if (pmd != pmd_offset(pud, 0)) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100147 printk("PAGETABLE BUG #01! %p <-> %p\n",
148 pmd, pmd_offset(pud, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 return;
150 }
151 }
152 pmd = pmd_offset(pud, vaddr);
153 if (pmd_none(*pmd)) {
154 pte = (pte_t *) spp_getpage();
155 set_pmd(pmd, __pmd(__pa(pte) | _KERNPG_TABLE | _PAGE_USER));
156 if (pte != pte_offset_kernel(pmd, 0)) {
157 printk("PAGETABLE BUG #02!\n");
158 return;
159 }
160 }
161 new_pte = pfn_pte(phys >> PAGE_SHIFT, prot);
162
163 pte = pte_offset_kernel(pmd, vaddr);
164 if (!pte_none(*pte) &&
165 pte_val(*pte) != (pte_val(new_pte) & __supported_pte_mask))
166 pte_ERROR(*pte);
167 set_pte(pte, new_pte);
168
169 /*
170 * It's enough to flush this one mapping.
171 * (PGE mappings get flushed as well)
172 */
173 __flush_tlb_one(vaddr);
174}
175
176/* NOTE: this is meant to be run only at boot */
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100177void __init
178__set_fixmap(enum fixed_addresses idx, unsigned long phys, pgprot_t prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
180 unsigned long address = __fix_to_virt(idx);
181
182 if (idx >= __end_of_fixed_addresses) {
183 printk("Invalid __set_fixmap\n");
184 return;
185 }
186 set_pte_phys(address, phys, prot);
187}
188
Andi Kleen75175272008-01-30 13:33:17 +0100189static unsigned long __initdata table_start;
190static unsigned long __meminitdata table_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200192static __meminit void *alloc_low_page(unsigned long *phys)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100193{
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200194 unsigned long pfn = table_end++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 void *adr;
196
Matt Tolentino44df75e2006-01-17 07:03:41 +0100197 if (after_bootmem) {
198 adr = (void *)get_zeroed_page(GFP_ATOMIC);
199 *phys = __pa(adr);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100200
Matt Tolentino44df75e2006-01-17 07:03:41 +0100201 return adr;
202 }
203
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100204 if (pfn >= end_pfn)
205 panic("alloc_low_page: ran out of memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200207 adr = early_ioremap(pfn * PAGE_SIZE, PAGE_SIZE);
208 memset(adr, 0, PAGE_SIZE);
209 *phys = pfn * PAGE_SIZE;
210 return adr;
211}
212
213static __meminit void unmap_low_page(void *adr)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100214{
Matt Tolentino44df75e2006-01-17 07:03:41 +0100215 if (after_bootmem)
216 return;
217
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200218 early_iounmap(adr, PAGE_SIZE);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100219}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100221/* Must run before zap_low_mappings */
Yasunori Gotoa3142c82007-05-08 00:23:07 -0700222__meminit void *early_ioremap(unsigned long addr, unsigned long size)
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100223{
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200224 pmd_t *pmd, *last_pmd;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100225 unsigned long vaddr;
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200226 int i, pmds;
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100227
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200228 pmds = ((addr & ~PMD_MASK) + size + ~PMD_MASK) / PMD_SIZE;
229 vaddr = __START_KERNEL_map;
230 pmd = level2_kernel_pgt;
231 last_pmd = level2_kernel_pgt + PTRS_PER_PMD - 1;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100232
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200233 for (; pmd <= last_pmd; pmd++, vaddr += PMD_SIZE) {
234 for (i = 0; i < pmds; i++) {
235 if (pmd_present(pmd[i]))
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100236 goto continue_outer_loop;
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200237 }
238 vaddr += addr & ~PMD_MASK;
239 addr &= PMD_MASK;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100240
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200241 for (i = 0; i < pmds; i++, addr += PMD_SIZE)
Joerg Roedel929fd582008-01-30 13:31:08 +0100242 set_pmd(pmd+i, __pmd(addr | __PAGE_KERNEL_LARGE_EXEC));
Andi Kleen1a2b4412008-01-30 13:33:54 +0100243 __flush_tlb_all();
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100244
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200245 return (void *)vaddr;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100246continue_outer_loop:
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200247 ;
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100248 }
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200249 printk("early_ioremap(0x%lx, %lu) failed\n", addr, size);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100250
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200251 return NULL;
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100252}
253
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100254/*
255 * To avoid virtual aliases later:
256 */
Yasunori Gotoa3142c82007-05-08 00:23:07 -0700257__meminit void early_iounmap(void *addr, unsigned long size)
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100258{
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200259 unsigned long vaddr;
260 pmd_t *pmd;
261 int i, pmds;
262
263 vaddr = (unsigned long)addr;
264 pmds = ((vaddr & ~PMD_MASK) + size + ~PMD_MASK) / PMD_SIZE;
265 pmd = level2_kernel_pgt + pmd_index(vaddr);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100266
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200267 for (i = 0; i < pmds; i++)
268 pmd_clear(pmd + i);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100269
Andi Kleen1a2b4412008-01-30 13:33:54 +0100270 __flush_tlb_all();
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100271}
272
Matt Tolentino44df75e2006-01-17 07:03:41 +0100273static void __meminit
Keith Mannthey6ad91652006-09-26 10:52:36 +0200274phys_pmd_init(pmd_t *pmd_page, unsigned long address, unsigned long end)
Matt Tolentino44df75e2006-01-17 07:03:41 +0100275{
Keith Mannthey6ad91652006-09-26 10:52:36 +0200276 int i = pmd_index(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Keith Mannthey6ad91652006-09-26 10:52:36 +0200278 for (; i < PTRS_PER_PMD; i++, address += PMD_SIZE) {
Matt Tolentino44df75e2006-01-17 07:03:41 +0100279 unsigned long entry;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200280 pmd_t *pmd = pmd_page + pmd_index(address);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100281
Jan Beulich5f51e132006-06-26 13:59:02 +0200282 if (address >= end) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100283 if (!after_bootmem) {
Jan Beulich5f51e132006-06-26 13:59:02 +0200284 for (; i < PTRS_PER_PMD; i++, pmd++)
285 set_pmd(pmd, __pmd(0));
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100286 }
Matt Tolentino44df75e2006-01-17 07:03:41 +0100287 break;
288 }
Keith Mannthey6ad91652006-09-26 10:52:36 +0200289
290 if (pmd_val(*pmd))
291 continue;
292
Joerg Roedel40842bf2008-01-30 13:31:02 +0100293 entry = __PAGE_KERNEL_LARGE|_PAGE_GLOBAL|address;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100294 entry &= __supported_pte_mask;
295 set_pmd(pmd, __pmd(entry));
296 }
297}
298
299static void __meminit
300phys_pmd_update(pud_t *pud, unsigned long address, unsigned long end)
301{
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100302 pmd_t *pmd = pmd_offset(pud, 0);
Keith Mannthey6ad91652006-09-26 10:52:36 +0200303 spin_lock(&init_mm.page_table_lock);
304 phys_pmd_init(pmd, address, end);
305 spin_unlock(&init_mm.page_table_lock);
306 __flush_tlb_all();
Matt Tolentino44df75e2006-01-17 07:03:41 +0100307}
308
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100309static void __meminit
310phys_pud_init(pud_t *pud_page, unsigned long addr, unsigned long end)
311{
Keith Mannthey6ad91652006-09-26 10:52:36 +0200312 int i = pud_index(addr);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100313
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100314 for (; i < PTRS_PER_PUD; i++, addr = (addr & PUD_MASK) + PUD_SIZE) {
Keith Mannthey6ad91652006-09-26 10:52:36 +0200315 unsigned long pmd_phys;
316 pud_t *pud = pud_page + pud_index(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 pmd_t *pmd;
318
Keith Mannthey6ad91652006-09-26 10:52:36 +0200319 if (addr >= end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100322 if (!after_bootmem &&
323 !e820_any_mapped(addr, addr+PUD_SIZE, 0)) {
324 set_pud(pud, __pud(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 continue;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100326 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Keith Mannthey6ad91652006-09-26 10:52:36 +0200328 if (pud_val(*pud)) {
329 phys_pmd_update(pud, addr, end);
330 continue;
331 }
332
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200333 pmd = alloc_low_page(&pmd_phys);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100334
Matt Tolentino44df75e2006-01-17 07:03:41 +0100335 spin_lock(&init_mm.page_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 set_pud(pud, __pud(pmd_phys | _KERNPG_TABLE));
Keith Mannthey6ad91652006-09-26 10:52:36 +0200337 phys_pmd_init(pmd, addr, end);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100338 spin_unlock(&init_mm.page_table_lock);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100339
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200340 unmap_low_page(pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 }
Andi Kleen1a2b4412008-01-30 13:33:54 +0100342 __flush_tlb_all();
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100343}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
345static void __init find_early_table_space(unsigned long end)
346{
Andi Kleen6c5acd12006-01-11 22:46:57 +0100347 unsigned long puds, pmds, tables, start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 puds = (end + PUD_SIZE - 1) >> PUD_SHIFT;
350 pmds = (end + PMD_SIZE - 1) >> PMD_SHIFT;
351 tables = round_up(puds * sizeof(pud_t), PAGE_SIZE) +
352 round_up(pmds * sizeof(pmd_t), PAGE_SIZE);
353
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100354 /*
355 * RED-PEN putting page tables only on node 0 could
356 * cause a hotspot and fill up ZONE_DMA. The page tables
357 * need roughly 0.5KB per GB.
358 */
359 start = 0x8000;
360 table_start = find_e820_area(start, end, tables);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 if (table_start == -1UL)
362 panic("Cannot find space for the kernel page tables");
363
364 table_start >>= PAGE_SHIFT;
365 table_end = table_start;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100366
367 early_printk("kernel direct mapping tables up to %lx @ %lx-%lx\n",
Jan Beulich5f51e132006-06-26 13:59:02 +0200368 end, table_start << PAGE_SHIFT,
369 (table_start << PAGE_SHIFT) + tables);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370}
371
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100372/*
373 * Setup the direct mapping of the physical memory at PAGE_OFFSET.
374 * This runs before bootmem is initialized and gets pages directly from
375 * the physical memory. To access them they are temporarily mapped.
376 */
KAMEZAWA Hiroyukib6fd6ec2007-11-28 16:21:58 -0800377void __init_refok init_memory_mapping(unsigned long start, unsigned long end)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100378{
379 unsigned long next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
381 Dprintk("init_memory_mapping\n");
382
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100383 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 * Find space for the kernel direct mapping tables.
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100385 *
386 * Later we should allocate these tables in the local node of the
387 * memory mapped. Unfortunately this is done currently before the
388 * nodes are discovered.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 */
Matt Tolentino44df75e2006-01-17 07:03:41 +0100390 if (!after_bootmem)
391 find_early_table_space(end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
393 start = (unsigned long)__va(start);
394 end = (unsigned long)__va(end);
395
396 for (; start < end; start = next) {
Matt Tolentino44df75e2006-01-17 07:03:41 +0100397 pgd_t *pgd = pgd_offset_k(start);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100398 unsigned long pud_phys;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100399 pud_t *pud;
400
401 if (after_bootmem)
Andi Kleend2ae5b52006-06-26 13:57:56 +0200402 pud = pud_offset(pgd, start & PGDIR_MASK);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100403 else
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200404 pud = alloc_low_page(&pud_phys);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100405
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 next = start + PGDIR_SIZE;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100407 if (next > end)
408 next = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 phys_pud_init(pud, __pa(start), __pa(next));
Matt Tolentino44df75e2006-01-17 07:03:41 +0100410 if (!after_bootmem)
411 set_pgd(pgd_offset_k(start), mk_kernel_pgd(pud_phys));
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200412 unmap_low_page(pud);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100413 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Matt Tolentino44df75e2006-01-17 07:03:41 +0100415 if (!after_bootmem)
Glauber de Oliveira Costaf51c9452007-07-22 11:12:29 +0200416 mmu_cr4_features = read_cr4();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 __flush_tlb_all();
Andi Kleen75175272008-01-30 13:33:17 +0100418
419 reserve_early(table_start << PAGE_SHIFT, table_end << PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420}
421
Matt Tolentino2b976902005-06-23 00:08:06 -0700422#ifndef CONFIG_NUMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423void __init paging_init(void)
424{
Mel Gorman6391af12006-10-11 01:20:39 -0700425 unsigned long max_zone_pfns[MAX_NR_ZONES];
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100426
Mel Gorman6391af12006-10-11 01:20:39 -0700427 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
428 max_zone_pfns[ZONE_DMA] = MAX_DMA_PFN;
429 max_zone_pfns[ZONE_DMA32] = MAX_DMA32_PFN;
430 max_zone_pfns[ZONE_NORMAL] = end_pfn;
431
Matt Tolentino44df75e2006-01-17 07:03:41 +0100432 memory_present(0, 0, end_pfn);
433 sparse_init();
Mel Gorman5cb248a2006-09-27 01:49:52 -0700434 free_area_init_nodes(max_zone_pfns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435}
436#endif
437
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100438/*
439 * Unmap a kernel mapping if it exists. This is useful to avoid
440 * prefetches from the CPU leading to inconsistent cache lines.
441 * address and size must be aligned to 2MB boundaries.
442 * Does nothing when the mapping doesn't exist.
443 */
444void __init clear_kernel_mapping(unsigned long address, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
446 unsigned long end = address + size;
447
448 BUG_ON(address & ~LARGE_PAGE_MASK);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100449 BUG_ON(size & ~LARGE_PAGE_MASK);
450
451 for (; address < end; address += LARGE_PAGE_SIZE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 pgd_t *pgd = pgd_offset_k(address);
453 pud_t *pud;
454 pmd_t *pmd;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 if (pgd_none(*pgd))
457 continue;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 pud = pud_offset(pgd, address);
460 if (pud_none(*pud))
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100461 continue;
462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 pmd = pmd_offset(pud, address);
464 if (!pmd || pmd_none(*pmd))
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100465 continue;
466
467 if (!(pmd_val(*pmd) & _PAGE_PSE)) {
468 /*
469 * Could handle this, but it should not happen
470 * currently:
471 */
472 printk(KERN_ERR "clear_kernel_mapping: "
473 "mapping has been split. will leak memory\n");
474 pmd_ERROR(*pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 }
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100476 set_pmd(pmd, __pmd(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 }
478 __flush_tlb_all();
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100479}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Matt Tolentino44df75e2006-01-17 07:03:41 +0100481/*
482 * Memory hotplug specific functions
Matt Tolentino44df75e2006-01-17 07:03:41 +0100483 */
Matt Tolentino44df75e2006-01-17 07:03:41 +0100484void online_page(struct page *page)
485{
486 ClearPageReserved(page);
Nick Piggin7835e982006-03-22 00:08:40 -0800487 init_page_count(page);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100488 __free_page(page);
489 totalram_pages++;
490 num_physpages++;
491}
492
Yasunori Gotobc02af92006-06-27 02:53:30 -0700493#ifdef CONFIG_MEMORY_HOTPLUG
494/*
Yasunori Gotobc02af92006-06-27 02:53:30 -0700495 * Memory is added always to NORMAL zone. This means you will never get
496 * additional DMA/DMA32 memory.
497 */
498int arch_add_memory(int nid, u64 start, u64 size)
499{
500 struct pglist_data *pgdat = NODE_DATA(nid);
Christoph Lameter776ed982006-09-25 23:31:09 -0700501 struct zone *zone = pgdat->node_zones + ZONE_NORMAL;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700502 unsigned long start_pfn = start >> PAGE_SHIFT;
503 unsigned long nr_pages = size >> PAGE_SHIFT;
504 int ret;
505
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100506 init_memory_mapping(start, start + size-1);
Keith Mannthey45e0b782006-09-30 23:27:09 -0700507
Yasunori Gotobc02af92006-06-27 02:53:30 -0700508 ret = __add_pages(zone, start_pfn, nr_pages);
509 if (ret)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100510 printk("%s: Problem encountered in __add_pages!\n", __func__);
Yasunori Gotobc02af92006-06-27 02:53:30 -0700511
Yasunori Gotobc02af92006-06-27 02:53:30 -0700512 return ret;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700513}
514EXPORT_SYMBOL_GPL(arch_add_memory);
515
Yasunori Goto82432292006-11-18 22:19:40 -0800516#if !defined(CONFIG_ACPI_NUMA) && defined(CONFIG_NUMA)
Keith Mannthey4942e992006-09-30 23:27:06 -0700517int memory_add_physaddr_to_nid(u64 start)
518{
519 return 0;
520}
Keith Mannthey8c2676a2006-09-30 23:27:07 -0700521EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
Keith Mannthey4942e992006-09-30 23:27:06 -0700522#endif
523
Keith Mannthey45e0b782006-09-30 23:27:09 -0700524#endif /* CONFIG_MEMORY_HOTPLUG */
525
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100526static struct kcore_list kcore_mem, kcore_vmalloc, kcore_kernel,
527 kcore_modules, kcore_vsyscall;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
529void __init mem_init(void)
530{
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200531 long codesize, reservedpages, datasize, initsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Jon Mason0dc243a2006-06-26 13:58:11 +0200533 pci_iommu_alloc();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Yinghai Lu48ddb152008-01-30 13:32:36 +0100535 /* clear_bss() already clear the empty_zero_page */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Ingo Molnarf2633102008-01-30 13:32:36 +0100537 /* temporary debugging - double check it's true: */
538 {
539 int i;
540
541 for (i = 0; i < 1024; i++)
542 WARN_ON_ONCE(empty_zero_page[i]);
543 }
544
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 reservedpages = 0;
546
547 /* this will put all low memory onto the freelists */
Matt Tolentino2b976902005-06-23 00:08:06 -0700548#ifdef CONFIG_NUMA
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200549 totalram_pages = numa_free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550#else
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200551 totalram_pages = free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552#endif
Mel Gorman5cb248a2006-09-27 01:49:52 -0700553 reservedpages = end_pfn - totalram_pages -
554 absent_pages_in_range(0, end_pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 after_bootmem = 1;
556
557 codesize = (unsigned long) &_etext - (unsigned long) &_text;
558 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
559 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
560
561 /* Register memory areas for /proc/kcore */
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100562 kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
563 kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 VMALLOC_END-VMALLOC_START);
565 kclist_add(&kcore_kernel, &_stext, _end - _stext);
566 kclist_add(&kcore_modules, (void *)MODULES_VADDR, MODULES_LEN);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100567 kclist_add(&kcore_vsyscall, (void *)VSYSCALL_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 VSYSCALL_END - VSYSCALL_START);
569
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100570 printk("Memory: %luk/%luk available (%ldk kernel code, "
571 "%ldk reserved, %ldk data, %ldk init)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
573 end_pfn << (PAGE_SHIFT-10),
574 codesize >> 10,
575 reservedpages << (PAGE_SHIFT-10),
576 datasize >> 10,
577 initsize >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578}
579
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200580void free_init_pages(char *what, unsigned long begin, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581{
582 unsigned long addr;
583
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200584 if (begin >= end)
585 return;
586
Ingo Molnaree01f112008-01-30 13:34:09 +0100587 /*
588 * If debugging page accesses then do not free this memory but
589 * mark them not present - any buggy init-section access will
590 * create a kernel page fault:
591 */
592#ifdef CONFIG_DEBUG_PAGEALLOC
593 printk(KERN_INFO "debug: unmapping init memory %08lx..%08lx\n",
594 begin, PAGE_ALIGN(end));
595 set_memory_np(begin, (end - begin) >> PAGE_SHIFT);
596#else
Jan Beulich6fb14752007-05-02 19:27:10 +0200597 printk(KERN_INFO "Freeing %s: %luk freed\n", what, (end - begin) >> 10);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100598
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200599 for (addr = begin; addr < end; addr += PAGE_SIZE) {
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700600 ClearPageReserved(virt_to_page(addr));
601 init_page_count(virt_to_page(addr));
602 memset((void *)(addr & ~(PAGE_SIZE-1)),
603 POISON_FREE_INITMEM, PAGE_SIZE);
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700604 free_page(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 totalram_pages++;
606 }
Ingo Molnaree01f112008-01-30 13:34:09 +0100607#endif
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200608}
609
610void free_initmem(void)
611{
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200612 free_init_pages("unused kernel memory",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700613 (unsigned long)(&__init_begin),
614 (unsigned long)(&__init_end));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615}
616
Arjan van de Ven67df1972006-01-06 00:12:04 -0800617#ifdef CONFIG_DEBUG_RODATA
Arjan van de Venedeed302008-01-30 13:34:08 +0100618const int rodata_test_data = 0xC3;
619EXPORT_SYMBOL_GPL(rodata_test_data);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800620
Arjan van de Ven67df1972006-01-06 00:12:04 -0800621void mark_rodata_ro(void)
622{
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700623 unsigned long start = (unsigned long)_stext, end;
Arjan van de Ven67df1972006-01-06 00:12:04 -0800624
Linus Torvalds602033e2007-07-26 12:07:21 -0700625#ifdef CONFIG_HOTPLUG_CPU
626 /* It must still be possible to apply SMP alternatives. */
627 if (num_possible_cpus() > 1)
628 start = (unsigned long)_etext;
629#endif
630
631#ifdef CONFIG_KPROBES
632 start = (unsigned long)__start_rodata;
633#endif
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100634
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700635 end = (unsigned long)__end_rodata;
636 start = (start + PAGE_SIZE - 1) & PAGE_MASK;
637 end &= PAGE_MASK;
638 if (end <= start)
639 return;
640
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100641 set_memory_ro(start, (end - start) >> PAGE_SHIFT);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800642
Jan Beulich6fb14752007-05-02 19:27:10 +0200643 printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700644 (end - start) >> 10);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800645
Arjan van de Ven1a487252008-01-30 13:34:09 +0100646 rodata_test();
647
Andi Kleen0c42f392008-01-30 13:33:42 +0100648#ifdef CONFIG_CPA_DEBUG
649 printk("Testing CPA: undo %lx-%lx\n", start, end);
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100650 set_memory_rw(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +0100651
652 printk("Testing CPA: again\n");
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100653 set_memory_ro(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +0100654#endif
Arjan van de Ven67df1972006-01-06 00:12:04 -0800655}
656#endif
657
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658#ifdef CONFIG_BLK_DEV_INITRD
659void free_initrd_mem(unsigned long start, unsigned long end)
660{
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700661 free_init_pages("initrd memory", start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662}
663#endif
664
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100665void __init reserve_bootmem_generic(unsigned long phys, unsigned len)
666{
Matt Tolentino2b976902005-06-23 00:08:06 -0700667#ifdef CONFIG_NUMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 int nid = phys_to_nid(phys);
Andi Kleen5e58a022006-11-14 16:57:46 +0100669#endif
670 unsigned long pfn = phys >> PAGE_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100671
Andi Kleen5e58a022006-11-14 16:57:46 +0100672 if (pfn >= end_pfn) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100673 /*
674 * This can happen with kdump kernels when accessing
675 * firmware tables:
676 */
Andi Kleen5e58a022006-11-14 16:57:46 +0100677 if (pfn < end_pfn_map)
678 return;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100679
Andi Kleen5e58a022006-11-14 16:57:46 +0100680 printk(KERN_ERR "reserve_bootmem: illegal reserve %lx %u\n",
681 phys, len);
682 return;
683 }
684
685 /* Should check here against the e820 map to avoid double free */
686#ifdef CONFIG_NUMA
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100687 reserve_bootmem_node(NODE_DATA(nid), phys, len);
688#else
689 reserve_bootmem(phys, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690#endif
Mel Gorman0e0b8642006-09-27 01:49:56 -0700691 if (phys+len <= MAX_DMA_PFN*PAGE_SIZE) {
Andi Kleene18c6872005-11-05 17:25:53 +0100692 dma_reserve += len / PAGE_SIZE;
Mel Gorman0e0b8642006-09-27 01:49:56 -0700693 set_dma_reserve(dma_reserve);
694 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695}
696
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100697int kern_addr_valid(unsigned long addr)
698{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 unsigned long above = ((long)addr) >> __VIRTUAL_MASK_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100700 pgd_t *pgd;
701 pud_t *pud;
702 pmd_t *pmd;
703 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
705 if (above != 0 && above != -1UL)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100706 return 0;
707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 pgd = pgd_offset_k(addr);
709 if (pgd_none(*pgd))
710 return 0;
711
712 pud = pud_offset(pgd, addr);
713 if (pud_none(*pud))
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100714 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
716 pmd = pmd_offset(pud, addr);
717 if (pmd_none(*pmd))
718 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100719
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 if (pmd_large(*pmd))
721 return pfn_valid(pmd_pfn(*pmd));
722
723 pte = pte_offset_kernel(pmd, addr);
724 if (pte_none(*pte))
725 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100726
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 return pfn_valid(pte_pfn(*pte));
728}
729
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100730/*
731 * A pseudo VMA to allow ptrace access for the vsyscall page. This only
732 * covers the 64bit vsyscall page now. 32bit has a real VMA now and does
733 * not need special handling anymore:
734 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735static struct vm_area_struct gate_vma = {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100736 .vm_start = VSYSCALL_START,
737 .vm_end = VSYSCALL_START + (VSYSCALL_MAPPED_PAGES * PAGE_SIZE),
738 .vm_page_prot = PAGE_READONLY_EXEC,
739 .vm_flags = VM_READ | VM_EXEC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740};
741
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742struct vm_area_struct *get_gate_vma(struct task_struct *tsk)
743{
744#ifdef CONFIG_IA32_EMULATION
Andi Kleen1e014412005-04-16 15:24:55 -0700745 if (test_tsk_thread_flag(tsk, TIF_IA32))
746 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747#endif
748 return &gate_vma;
749}
750
751int in_gate_area(struct task_struct *task, unsigned long addr)
752{
753 struct vm_area_struct *vma = get_gate_vma(task);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100754
Andi Kleen1e014412005-04-16 15:24:55 -0700755 if (!vma)
756 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100757
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 return (addr >= vma->vm_start) && (addr < vma->vm_end);
759}
760
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100761/*
762 * Use this when you have no reliable task/vma, typically from interrupt
763 * context. It is less reliable than using the task's vma and may give
764 * false positives:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 */
766int in_gate_area_no_task(unsigned long addr)
767{
Andi Kleen1e014412005-04-16 15:24:55 -0700768 return (addr >= VSYSCALL_START) && (addr < VSYSCALL_END);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769}
Zou Nan hai2e1c49d2007-06-01 00:46:28 -0700770
Andi Kleen2aae9502007-07-21 17:10:01 +0200771const char *arch_vma_name(struct vm_area_struct *vma)
772{
773 if (vma->vm_mm && vma->vm_start == (long)vma->vm_mm->context.vdso)
774 return "[vdso]";
775 if (vma == &gate_vma)
776 return "[vsyscall]";
777 return NULL;
778}
Christoph Lameter0889eba2007-10-16 01:24:15 -0700779
780#ifdef CONFIG_SPARSEMEM_VMEMMAP
781/*
782 * Initialise the sparsemem vmemmap using huge-pages at the PMD level.
783 */
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100784int __meminit
785vmemmap_populate(struct page *start_page, unsigned long size, int node)
Christoph Lameter0889eba2007-10-16 01:24:15 -0700786{
787 unsigned long addr = (unsigned long)start_page;
788 unsigned long end = (unsigned long)(start_page + size);
789 unsigned long next;
790 pgd_t *pgd;
791 pud_t *pud;
792 pmd_t *pmd;
793
794 for (; addr < end; addr = next) {
795 next = pmd_addr_end(addr, end);
796
797 pgd = vmemmap_pgd_populate(addr, node);
798 if (!pgd)
799 return -ENOMEM;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100800
Christoph Lameter0889eba2007-10-16 01:24:15 -0700801 pud = vmemmap_pud_populate(pgd, addr, node);
802 if (!pud)
803 return -ENOMEM;
804
805 pmd = pmd_offset(pud, addr);
806 if (pmd_none(*pmd)) {
807 pte_t entry;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100808 void *p;
809
810 p = vmemmap_alloc_block(PMD_SIZE, node);
Christoph Lameter0889eba2007-10-16 01:24:15 -0700811 if (!p)
812 return -ENOMEM;
813
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100814 entry = pfn_pte(__pa(p) >> PAGE_SHIFT,
815 PAGE_KERNEL_LARGE);
Christoph Lameter0889eba2007-10-16 01:24:15 -0700816 set_pmd(pmd, __pmd(pte_val(entry)));
817
818 printk(KERN_DEBUG " [%lx-%lx] PMD ->%p on node %d\n",
819 addr, addr + PMD_SIZE - 1, p, node);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100820 } else {
Christoph Lameter0889eba2007-10-16 01:24:15 -0700821 vmemmap_verify((pte_t *)pmd, node, addr, next);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100822 }
Christoph Lameter0889eba2007-10-16 01:24:15 -0700823 }
Christoph Lameter0889eba2007-10-16 01:24:15 -0700824 return 0;
825}
826#endif