blob: 3a98d6f724ab69b9ed4d075a0a14895efe482dbc [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
Thomas Gleixner14a62c32008-01-30 13:34:10 +010049const struct dma_mapping_ops *dma_ops;
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +010050EXPORT_SYMBOL(dma_ops);
51
Andi Kleene18c6872005-11-05 17:25:53 +010052static unsigned long dma_reserve __initdata;
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
55
56/*
57 * NOTE: pagetable_init alloc all the fixmap pagetables contiguous on the
58 * physical space so we can cache the place of the first one and move
59 * around without checking the pgd every time.
60 */
61
62void show_mem(void)
63{
Andi Kleene92343c2005-09-12 18:49:24 +020064 long i, total = 0, reserved = 0;
65 long shared = 0, cached = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 struct page *page;
Thomas Gleixner14a62c32008-01-30 13:34:10 +010067 pg_data_t *pgdat;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Andi Kleene92343c2005-09-12 18:49:24 +020069 printk(KERN_INFO "Mem-info:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 show_free_areas();
Thomas Gleixner14a62c32008-01-30 13:34:10 +010071 printk(KERN_INFO "Free swap: %6ldkB\n",
72 nr_swap_pages << (PAGE_SHIFT-10));
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
KAMEZAWA Hiroyukiec936fc2006-03-27 01:15:59 -080074 for_each_online_pgdat(pgdat) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +010075 for (i = 0; i < pgdat->node_spanned_pages; ++i) {
76 /*
77 * This loop can take a while with 256 GB and
78 * 4k pages so defer the NMI watchdog:
79 */
80 if (unlikely(i % MAX_ORDER_NR_PAGES == 0))
Konrad Rzeszutekae32b122007-05-02 19:27:11 +020081 touch_nmi_watchdog();
Thomas Gleixner14a62c32008-01-30 13:34:10 +010082
Bob Picco12710a52007-06-08 13:47:00 -070083 if (!pfn_valid(pgdat->node_start_pfn + i))
84 continue;
Thomas Gleixner14a62c32008-01-30 13:34:10 +010085
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 page = pfn_to_page(pgdat->node_start_pfn + i);
87 total++;
Andi Kleene92343c2005-09-12 18:49:24 +020088 if (PageReserved(page))
89 reserved++;
90 else if (PageSwapCache(page))
91 cached++;
92 else if (page_count(page))
93 shared += page_count(page) - 1;
Thomas Gleixner14a62c32008-01-30 13:34:10 +010094 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 }
Thomas Gleixner14a62c32008-01-30 13:34:10 +010096 printk(KERN_INFO "%lu pages of RAM\n", total);
97 printk(KERN_INFO "%lu reserved pages\n", reserved);
98 printk(KERN_INFO "%lu pages shared\n", shared);
99 printk(KERN_INFO "%lu pages swap cached\n", cached);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100}
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102int after_bootmem;
103
Andi Kleen5f44a662006-03-25 16:30:25 +0100104static __init void *spp_getpage(void)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100105{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 void *ptr;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 if (after_bootmem)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100109 ptr = (void *) get_zeroed_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 else
111 ptr = alloc_bootmem_pages(PAGE_SIZE);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100112
113 if (!ptr || ((unsigned long)ptr & ~PAGE_MASK)) {
114 panic("set_pte_phys: cannot allocate page data %s\n",
115 after_bootmem ? "after bootmem" : "");
116 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100118 pr_debug("spp_getpage %p\n", ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100120 return ptr;
121}
122
123static __init void
124set_pte_phys(unsigned long vaddr, unsigned long phys, pgprot_t prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
126 pgd_t *pgd;
127 pud_t *pud;
128 pmd_t *pmd;
129 pte_t *pte, new_pte;
130
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100131 pr_debug("set_pte_phys %lx to %lx\n", vaddr, phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133 pgd = pgd_offset_k(vaddr);
134 if (pgd_none(*pgd)) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100135 printk(KERN_ERR
136 "PGD FIXMAP MISSING, it should be setup in head.S!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 return;
138 }
139 pud = pud_offset(pgd, vaddr);
140 if (pud_none(*pud)) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100141 pmd = (pmd_t *) spp_getpage();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 set_pud(pud, __pud(__pa(pmd) | _KERNPG_TABLE | _PAGE_USER));
143 if (pmd != pmd_offset(pud, 0)) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100144 printk(KERN_ERR "PAGETABLE BUG #01! %p <-> %p\n",
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100145 pmd, pmd_offset(pud, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 return;
147 }
148 }
149 pmd = pmd_offset(pud, vaddr);
150 if (pmd_none(*pmd)) {
151 pte = (pte_t *) spp_getpage();
152 set_pmd(pmd, __pmd(__pa(pte) | _KERNPG_TABLE | _PAGE_USER));
153 if (pte != pte_offset_kernel(pmd, 0)) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100154 printk(KERN_ERR "PAGETABLE BUG #02!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 return;
156 }
157 }
158 new_pte = pfn_pte(phys >> PAGE_SHIFT, prot);
159
160 pte = pte_offset_kernel(pmd, vaddr);
161 if (!pte_none(*pte) &&
162 pte_val(*pte) != (pte_val(new_pte) & __supported_pte_mask))
163 pte_ERROR(*pte);
164 set_pte(pte, new_pte);
165
166 /*
167 * It's enough to flush this one mapping.
168 * (PGE mappings get flushed as well)
169 */
170 __flush_tlb_one(vaddr);
171}
172
173/* NOTE: this is meant to be run only at boot */
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100174void __init
175__set_fixmap(enum fixed_addresses idx, unsigned long phys, pgprot_t prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
177 unsigned long address = __fix_to_virt(idx);
178
179 if (idx >= __end_of_fixed_addresses) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100180 printk(KERN_ERR "Invalid __set_fixmap\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 return;
182 }
183 set_pte_phys(address, phys, prot);
184}
185
Andi Kleen75175272008-01-30 13:33:17 +0100186static unsigned long __initdata table_start;
187static unsigned long __meminitdata table_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200189static __meminit void *alloc_low_page(unsigned long *phys)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100190{
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200191 unsigned long pfn = table_end++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 void *adr;
193
Matt Tolentino44df75e2006-01-17 07:03:41 +0100194 if (after_bootmem) {
195 adr = (void *)get_zeroed_page(GFP_ATOMIC);
196 *phys = __pa(adr);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100197
Matt Tolentino44df75e2006-01-17 07:03:41 +0100198 return adr;
199 }
200
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100201 if (pfn >= end_pfn)
202 panic("alloc_low_page: ran out of memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200204 adr = early_ioremap(pfn * PAGE_SIZE, PAGE_SIZE);
205 memset(adr, 0, PAGE_SIZE);
206 *phys = pfn * PAGE_SIZE;
207 return adr;
208}
209
210static __meminit void unmap_low_page(void *adr)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100211{
Matt Tolentino44df75e2006-01-17 07:03:41 +0100212 if (after_bootmem)
213 return;
214
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200215 early_iounmap(adr, PAGE_SIZE);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100216}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100218/* Must run before zap_low_mappings */
Yasunori Gotoa3142c82007-05-08 00:23:07 -0700219__meminit void *early_ioremap(unsigned long addr, unsigned long size)
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100220{
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200221 pmd_t *pmd, *last_pmd;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100222 unsigned long vaddr;
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200223 int i, pmds;
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100224
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200225 pmds = ((addr & ~PMD_MASK) + size + ~PMD_MASK) / PMD_SIZE;
226 vaddr = __START_KERNEL_map;
227 pmd = level2_kernel_pgt;
228 last_pmd = level2_kernel_pgt + PTRS_PER_PMD - 1;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100229
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200230 for (; pmd <= last_pmd; pmd++, vaddr += PMD_SIZE) {
231 for (i = 0; i < pmds; i++) {
232 if (pmd_present(pmd[i]))
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100233 goto continue_outer_loop;
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200234 }
235 vaddr += addr & ~PMD_MASK;
236 addr &= PMD_MASK;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100237
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200238 for (i = 0; i < pmds; i++, addr += PMD_SIZE)
Joerg Roedel929fd582008-01-30 13:31:08 +0100239 set_pmd(pmd+i, __pmd(addr | __PAGE_KERNEL_LARGE_EXEC));
Andi Kleen1a2b4412008-01-30 13:33:54 +0100240 __flush_tlb_all();
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100241
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200242 return (void *)vaddr;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100243continue_outer_loop:
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200244 ;
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100245 }
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100246 printk(KERN_ERR "early_ioremap(0x%lx, %lu) failed\n", addr, size);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100247
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200248 return NULL;
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100249}
250
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100251/*
252 * To avoid virtual aliases later:
253 */
Yasunori Gotoa3142c82007-05-08 00:23:07 -0700254__meminit void early_iounmap(void *addr, unsigned long size)
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100255{
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200256 unsigned long vaddr;
257 pmd_t *pmd;
258 int i, pmds;
259
260 vaddr = (unsigned long)addr;
261 pmds = ((vaddr & ~PMD_MASK) + size + ~PMD_MASK) / PMD_SIZE;
262 pmd = level2_kernel_pgt + pmd_index(vaddr);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100263
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200264 for (i = 0; i < pmds; i++)
265 pmd_clear(pmd + i);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100266
Andi Kleen1a2b4412008-01-30 13:33:54 +0100267 __flush_tlb_all();
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100268}
269
Matt Tolentino44df75e2006-01-17 07:03:41 +0100270static void __meminit
Keith Mannthey6ad91652006-09-26 10:52:36 +0200271phys_pmd_init(pmd_t *pmd_page, unsigned long address, unsigned long end)
Matt Tolentino44df75e2006-01-17 07:03:41 +0100272{
Keith Mannthey6ad91652006-09-26 10:52:36 +0200273 int i = pmd_index(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Keith Mannthey6ad91652006-09-26 10:52:36 +0200275 for (; i < PTRS_PER_PMD; i++, address += PMD_SIZE) {
Keith Mannthey6ad91652006-09-26 10:52:36 +0200276 pmd_t *pmd = pmd_page + pmd_index(address);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100277
Jan Beulich5f51e132006-06-26 13:59:02 +0200278 if (address >= end) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100279 if (!after_bootmem) {
Jan Beulich5f51e132006-06-26 13:59:02 +0200280 for (; i < PTRS_PER_PMD; i++, pmd++)
281 set_pmd(pmd, __pmd(0));
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100282 }
Matt Tolentino44df75e2006-01-17 07:03:41 +0100283 break;
284 }
Keith Mannthey6ad91652006-09-26 10:52:36 +0200285
286 if (pmd_val(*pmd))
287 continue;
288
Andi Kleend4f71f72008-02-04 16:48:09 +0100289 set_pte((pte_t *)pmd,
290 pfn_pte(address >> PAGE_SHIFT, PAGE_KERNEL_LARGE));
Matt Tolentino44df75e2006-01-17 07:03:41 +0100291 }
292}
293
294static void __meminit
295phys_pmd_update(pud_t *pud, unsigned long address, unsigned long end)
296{
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100297 pmd_t *pmd = pmd_offset(pud, 0);
Keith Mannthey6ad91652006-09-26 10:52:36 +0200298 spin_lock(&init_mm.page_table_lock);
299 phys_pmd_init(pmd, address, end);
300 spin_unlock(&init_mm.page_table_lock);
301 __flush_tlb_all();
Matt Tolentino44df75e2006-01-17 07:03:41 +0100302}
303
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100304static void __meminit
305phys_pud_init(pud_t *pud_page, unsigned long addr, unsigned long end)
306{
Keith Mannthey6ad91652006-09-26 10:52:36 +0200307 int i = pud_index(addr);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100308
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100309 for (; i < PTRS_PER_PUD; i++, addr = (addr & PUD_MASK) + PUD_SIZE) {
Keith Mannthey6ad91652006-09-26 10:52:36 +0200310 unsigned long pmd_phys;
311 pud_t *pud = pud_page + pud_index(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 pmd_t *pmd;
313
Keith Mannthey6ad91652006-09-26 10:52:36 +0200314 if (addr >= end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100317 if (!after_bootmem &&
318 !e820_any_mapped(addr, addr+PUD_SIZE, 0)) {
319 set_pud(pud, __pud(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 continue;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Keith Mannthey6ad91652006-09-26 10:52:36 +0200323 if (pud_val(*pud)) {
324 phys_pmd_update(pud, addr, end);
325 continue;
326 }
327
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200328 pmd = alloc_low_page(&pmd_phys);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100329
Matt Tolentino44df75e2006-01-17 07:03:41 +0100330 spin_lock(&init_mm.page_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 set_pud(pud, __pud(pmd_phys | _KERNPG_TABLE));
Keith Mannthey6ad91652006-09-26 10:52:36 +0200332 phys_pmd_init(pmd, addr, end);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100333 spin_unlock(&init_mm.page_table_lock);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100334
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200335 unmap_low_page(pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 }
Andi Kleen1a2b4412008-01-30 13:33:54 +0100337 __flush_tlb_all();
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100338}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
340static void __init find_early_table_space(unsigned long end)
341{
Andi Kleen6c5acd12006-01-11 22:46:57 +0100342 unsigned long puds, pmds, tables, start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
344 puds = (end + PUD_SIZE - 1) >> PUD_SHIFT;
345 pmds = (end + PMD_SIZE - 1) >> PMD_SHIFT;
346 tables = round_up(puds * sizeof(pud_t), PAGE_SIZE) +
347 round_up(pmds * sizeof(pmd_t), PAGE_SIZE);
348
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100349 /*
350 * RED-PEN putting page tables only on node 0 could
351 * cause a hotspot and fill up ZONE_DMA. The page tables
352 * need roughly 0.5KB per GB.
353 */
354 start = 0x8000;
Yinghai Lu24a5da72008-02-01 17:49:41 +0100355 table_start = find_e820_area(start, end, tables, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 if (table_start == -1UL)
357 panic("Cannot find space for the kernel page tables");
358
359 table_start >>= PAGE_SHIFT;
360 table_end = table_start;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100361
362 early_printk("kernel direct mapping tables up to %lx @ %lx-%lx\n",
Jan Beulich5f51e132006-06-26 13:59:02 +0200363 end, table_start << PAGE_SHIFT,
364 (table_start << PAGE_SHIFT) + tables);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365}
366
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100367/*
368 * Setup the direct mapping of the physical memory at PAGE_OFFSET.
369 * This runs before bootmem is initialized and gets pages directly from
370 * the physical memory. To access them they are temporarily mapped.
371 */
KAMEZAWA Hiroyukib6fd6ec2007-11-28 16:21:58 -0800372void __init_refok init_memory_mapping(unsigned long start, unsigned long end)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100373{
374 unsigned long next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100376 pr_debug("init_memory_mapping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100378 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 * Find space for the kernel direct mapping tables.
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100380 *
381 * Later we should allocate these tables in the local node of the
382 * memory mapped. Unfortunately this is done currently before the
383 * nodes are discovered.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 */
Matt Tolentino44df75e2006-01-17 07:03:41 +0100385 if (!after_bootmem)
386 find_early_table_space(end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388 start = (unsigned long)__va(start);
389 end = (unsigned long)__va(end);
390
391 for (; start < end; start = next) {
Matt Tolentino44df75e2006-01-17 07:03:41 +0100392 pgd_t *pgd = pgd_offset_k(start);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100393 unsigned long pud_phys;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100394 pud_t *pud;
395
396 if (after_bootmem)
Andi Kleend2ae5b52006-06-26 13:57:56 +0200397 pud = pud_offset(pgd, start & PGDIR_MASK);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100398 else
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200399 pud = alloc_low_page(&pud_phys);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 next = start + PGDIR_SIZE;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100402 if (next > end)
403 next = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 phys_pud_init(pud, __pa(start), __pa(next));
Matt Tolentino44df75e2006-01-17 07:03:41 +0100405 if (!after_bootmem)
406 set_pgd(pgd_offset_k(start), mk_kernel_pgd(pud_phys));
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200407 unmap_low_page(pud);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100408 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Matt Tolentino44df75e2006-01-17 07:03:41 +0100410 if (!after_bootmem)
Glauber de Oliveira Costaf51c9452007-07-22 11:12:29 +0200411 mmu_cr4_features = read_cr4();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 __flush_tlb_all();
Andi Kleen75175272008-01-30 13:33:17 +0100413
Yinghai Lu24a5da72008-02-01 17:49:41 +0100414 if (!after_bootmem)
415 reserve_early(table_start << PAGE_SHIFT,
416 table_end << PAGE_SHIFT, "PGTABLE");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417}
418
Matt Tolentino2b976902005-06-23 00:08:06 -0700419#ifndef CONFIG_NUMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420void __init paging_init(void)
421{
Mel Gorman6391af12006-10-11 01:20:39 -0700422 unsigned long max_zone_pfns[MAX_NR_ZONES];
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100423
Mel Gorman6391af12006-10-11 01:20:39 -0700424 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
425 max_zone_pfns[ZONE_DMA] = MAX_DMA_PFN;
426 max_zone_pfns[ZONE_DMA32] = MAX_DMA32_PFN;
427 max_zone_pfns[ZONE_NORMAL] = end_pfn;
428
Matt Tolentino44df75e2006-01-17 07:03:41 +0100429 memory_present(0, 0, end_pfn);
430 sparse_init();
Mel Gorman5cb248a2006-09-27 01:49:52 -0700431 free_area_init_nodes(max_zone_pfns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432}
433#endif
434
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100435/*
Matt Tolentino44df75e2006-01-17 07:03:41 +0100436 * Memory hotplug specific functions
Matt Tolentino44df75e2006-01-17 07:03:41 +0100437 */
Matt Tolentino44df75e2006-01-17 07:03:41 +0100438void online_page(struct page *page)
439{
440 ClearPageReserved(page);
Nick Piggin7835e982006-03-22 00:08:40 -0800441 init_page_count(page);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100442 __free_page(page);
443 totalram_pages++;
444 num_physpages++;
445}
446
Yasunori Gotobc02af92006-06-27 02:53:30 -0700447#ifdef CONFIG_MEMORY_HOTPLUG
448/*
Yasunori Gotobc02af92006-06-27 02:53:30 -0700449 * Memory is added always to NORMAL zone. This means you will never get
450 * additional DMA/DMA32 memory.
451 */
452int arch_add_memory(int nid, u64 start, u64 size)
453{
454 struct pglist_data *pgdat = NODE_DATA(nid);
Christoph Lameter776ed982006-09-25 23:31:09 -0700455 struct zone *zone = pgdat->node_zones + ZONE_NORMAL;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700456 unsigned long start_pfn = start >> PAGE_SHIFT;
457 unsigned long nr_pages = size >> PAGE_SHIFT;
458 int ret;
459
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100460 init_memory_mapping(start, start + size-1);
Keith Mannthey45e0b782006-09-30 23:27:09 -0700461
Yasunori Gotobc02af92006-06-27 02:53:30 -0700462 ret = __add_pages(zone, start_pfn, nr_pages);
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100463 WARN_ON(1);
Yasunori Gotobc02af92006-06-27 02:53:30 -0700464
Yasunori Gotobc02af92006-06-27 02:53:30 -0700465 return ret;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700466}
467EXPORT_SYMBOL_GPL(arch_add_memory);
468
Yasunori Goto82432292006-11-18 22:19:40 -0800469#if !defined(CONFIG_ACPI_NUMA) && defined(CONFIG_NUMA)
Keith Mannthey4942e992006-09-30 23:27:06 -0700470int memory_add_physaddr_to_nid(u64 start)
471{
472 return 0;
473}
Keith Mannthey8c2676a2006-09-30 23:27:07 -0700474EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
Keith Mannthey4942e992006-09-30 23:27:06 -0700475#endif
476
Keith Mannthey45e0b782006-09-30 23:27:09 -0700477#endif /* CONFIG_MEMORY_HOTPLUG */
478
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100479static struct kcore_list kcore_mem, kcore_vmalloc, kcore_kernel,
480 kcore_modules, kcore_vsyscall;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
482void __init mem_init(void)
483{
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200484 long codesize, reservedpages, datasize, initsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Jon Mason0dc243a2006-06-26 13:58:11 +0200486 pci_iommu_alloc();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Yinghai Lu48ddb152008-01-30 13:32:36 +0100488 /* clear_bss() already clear the empty_zero_page */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Ingo Molnarf2633102008-01-30 13:32:36 +0100490 /* temporary debugging - double check it's true: */
491 {
492 int i;
493
494 for (i = 0; i < 1024; i++)
495 WARN_ON_ONCE(empty_zero_page[i]);
496 }
497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 reservedpages = 0;
499
500 /* this will put all low memory onto the freelists */
Matt Tolentino2b976902005-06-23 00:08:06 -0700501#ifdef CONFIG_NUMA
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200502 totalram_pages = numa_free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503#else
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200504 totalram_pages = free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505#endif
Mel Gorman5cb248a2006-09-27 01:49:52 -0700506 reservedpages = end_pfn - totalram_pages -
507 absent_pages_in_range(0, end_pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 after_bootmem = 1;
509
510 codesize = (unsigned long) &_etext - (unsigned long) &_text;
511 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
512 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
513
514 /* Register memory areas for /proc/kcore */
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100515 kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
516 kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 VMALLOC_END-VMALLOC_START);
518 kclist_add(&kcore_kernel, &_stext, _end - _stext);
519 kclist_add(&kcore_modules, (void *)MODULES_VADDR, MODULES_LEN);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100520 kclist_add(&kcore_vsyscall, (void *)VSYSCALL_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 VSYSCALL_END - VSYSCALL_START);
522
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100523 printk(KERN_INFO "Memory: %luk/%luk available (%ldk kernel code, "
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100524 "%ldk reserved, %ldk data, %ldk init)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
526 end_pfn << (PAGE_SHIFT-10),
527 codesize >> 10,
528 reservedpages << (PAGE_SHIFT-10),
529 datasize >> 10,
530 initsize >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531}
532
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200533void free_init_pages(char *what, unsigned long begin, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
535 unsigned long addr;
536
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200537 if (begin >= end)
538 return;
539
Ingo Molnaree01f112008-01-30 13:34:09 +0100540 /*
541 * If debugging page accesses then do not free this memory but
542 * mark them not present - any buggy init-section access will
543 * create a kernel page fault:
544 */
545#ifdef CONFIG_DEBUG_PAGEALLOC
546 printk(KERN_INFO "debug: unmapping init memory %08lx..%08lx\n",
547 begin, PAGE_ALIGN(end));
548 set_memory_np(begin, (end - begin) >> PAGE_SHIFT);
549#else
Jan Beulich6fb14752007-05-02 19:27:10 +0200550 printk(KERN_INFO "Freeing %s: %luk freed\n", what, (end - begin) >> 10);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100551
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200552 for (addr = begin; addr < end; addr += PAGE_SIZE) {
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700553 ClearPageReserved(virt_to_page(addr));
554 init_page_count(virt_to_page(addr));
555 memset((void *)(addr & ~(PAGE_SIZE-1)),
556 POISON_FREE_INITMEM, PAGE_SIZE);
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700557 free_page(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 totalram_pages++;
559 }
Ingo Molnaree01f112008-01-30 13:34:09 +0100560#endif
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200561}
562
563void free_initmem(void)
564{
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200565 free_init_pages("unused kernel memory",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700566 (unsigned long)(&__init_begin),
567 (unsigned long)(&__init_end));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568}
569
Arjan van de Ven67df1972006-01-06 00:12:04 -0800570#ifdef CONFIG_DEBUG_RODATA
Arjan van de Venedeed302008-01-30 13:34:08 +0100571const int rodata_test_data = 0xC3;
572EXPORT_SYMBOL_GPL(rodata_test_data);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800573
Arjan van de Ven67df1972006-01-06 00:12:04 -0800574void mark_rodata_ro(void)
575{
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700576 unsigned long start = (unsigned long)_stext, end;
Arjan van de Ven67df1972006-01-06 00:12:04 -0800577
Linus Torvalds602033e2007-07-26 12:07:21 -0700578#ifdef CONFIG_HOTPLUG_CPU
579 /* It must still be possible to apply SMP alternatives. */
580 if (num_possible_cpus() > 1)
581 start = (unsigned long)_etext;
582#endif
583
584#ifdef CONFIG_KPROBES
585 start = (unsigned long)__start_rodata;
586#endif
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100587
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700588 end = (unsigned long)__end_rodata;
589 start = (start + PAGE_SIZE - 1) & PAGE_MASK;
590 end &= PAGE_MASK;
591 if (end <= start)
592 return;
593
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100594 set_memory_ro(start, (end - start) >> PAGE_SHIFT);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800595
Jan Beulich6fb14752007-05-02 19:27:10 +0200596 printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700597 (end - start) >> 10);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800598
Arjan van de Ven1a487252008-01-30 13:34:09 +0100599 rodata_test();
600
Andi Kleen0c42f392008-01-30 13:33:42 +0100601#ifdef CONFIG_CPA_DEBUG
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100602 printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, end);
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100603 set_memory_rw(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +0100604
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100605 printk(KERN_INFO "Testing CPA: again\n");
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100606 set_memory_ro(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +0100607#endif
Arjan van de Ven67df1972006-01-06 00:12:04 -0800608}
609#endif
610
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611#ifdef CONFIG_BLK_DEV_INITRD
612void free_initrd_mem(unsigned long start, unsigned long end)
613{
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700614 free_init_pages("initrd memory", start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615}
616#endif
617
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100618void __init reserve_bootmem_generic(unsigned long phys, unsigned len)
619{
Matt Tolentino2b976902005-06-23 00:08:06 -0700620#ifdef CONFIG_NUMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 int nid = phys_to_nid(phys);
Andi Kleen5e58a022006-11-14 16:57:46 +0100622#endif
623 unsigned long pfn = phys >> PAGE_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100624
Andi Kleen5e58a022006-11-14 16:57:46 +0100625 if (pfn >= end_pfn) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100626 /*
627 * This can happen with kdump kernels when accessing
628 * firmware tables:
629 */
Andi Kleen5e58a022006-11-14 16:57:46 +0100630 if (pfn < end_pfn_map)
631 return;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100632
Andi Kleen5e58a022006-11-14 16:57:46 +0100633 printk(KERN_ERR "reserve_bootmem: illegal reserve %lx %u\n",
634 phys, len);
635 return;
636 }
637
638 /* Should check here against the e820 map to avoid double free */
639#ifdef CONFIG_NUMA
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100640 reserve_bootmem_node(NODE_DATA(nid), phys, len);
641#else
642 reserve_bootmem(phys, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643#endif
Mel Gorman0e0b8642006-09-27 01:49:56 -0700644 if (phys+len <= MAX_DMA_PFN*PAGE_SIZE) {
Andi Kleene18c6872005-11-05 17:25:53 +0100645 dma_reserve += len / PAGE_SIZE;
Mel Gorman0e0b8642006-09-27 01:49:56 -0700646 set_dma_reserve(dma_reserve);
647 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648}
649
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100650int kern_addr_valid(unsigned long addr)
651{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 unsigned long above = ((long)addr) >> __VIRTUAL_MASK_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100653 pgd_t *pgd;
654 pud_t *pud;
655 pmd_t *pmd;
656 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
658 if (above != 0 && above != -1UL)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100659 return 0;
660
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 pgd = pgd_offset_k(addr);
662 if (pgd_none(*pgd))
663 return 0;
664
665 pud = pud_offset(pgd, addr);
666 if (pud_none(*pud))
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100667 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
669 pmd = pmd_offset(pud, addr);
670 if (pmd_none(*pmd))
671 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100672
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 if (pmd_large(*pmd))
674 return pfn_valid(pmd_pfn(*pmd));
675
676 pte = pte_offset_kernel(pmd, addr);
677 if (pte_none(*pte))
678 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100679
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 return pfn_valid(pte_pfn(*pte));
681}
682
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100683/*
684 * A pseudo VMA to allow ptrace access for the vsyscall page. This only
685 * covers the 64bit vsyscall page now. 32bit has a real VMA now and does
686 * not need special handling anymore:
687 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688static struct vm_area_struct gate_vma = {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100689 .vm_start = VSYSCALL_START,
690 .vm_end = VSYSCALL_START + (VSYSCALL_MAPPED_PAGES * PAGE_SIZE),
691 .vm_page_prot = PAGE_READONLY_EXEC,
692 .vm_flags = VM_READ | VM_EXEC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693};
694
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695struct vm_area_struct *get_gate_vma(struct task_struct *tsk)
696{
697#ifdef CONFIG_IA32_EMULATION
Andi Kleen1e014412005-04-16 15:24:55 -0700698 if (test_tsk_thread_flag(tsk, TIF_IA32))
699 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700#endif
701 return &gate_vma;
702}
703
704int in_gate_area(struct task_struct *task, unsigned long addr)
705{
706 struct vm_area_struct *vma = get_gate_vma(task);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100707
Andi Kleen1e014412005-04-16 15:24:55 -0700708 if (!vma)
709 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100710
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 return (addr >= vma->vm_start) && (addr < vma->vm_end);
712}
713
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100714/*
715 * Use this when you have no reliable task/vma, typically from interrupt
716 * context. It is less reliable than using the task's vma and may give
717 * false positives:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 */
719int in_gate_area_no_task(unsigned long addr)
720{
Andi Kleen1e014412005-04-16 15:24:55 -0700721 return (addr >= VSYSCALL_START) && (addr < VSYSCALL_END);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722}
Zou Nan hai2e1c49d2007-06-01 00:46:28 -0700723
Andi Kleen2aae9502007-07-21 17:10:01 +0200724const char *arch_vma_name(struct vm_area_struct *vma)
725{
726 if (vma->vm_mm && vma->vm_start == (long)vma->vm_mm->context.vdso)
727 return "[vdso]";
728 if (vma == &gate_vma)
729 return "[vsyscall]";
730 return NULL;
731}
Christoph Lameter0889eba2007-10-16 01:24:15 -0700732
733#ifdef CONFIG_SPARSEMEM_VMEMMAP
734/*
735 * Initialise the sparsemem vmemmap using huge-pages at the PMD level.
736 */
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100737int __meminit
738vmemmap_populate(struct page *start_page, unsigned long size, int node)
Christoph Lameter0889eba2007-10-16 01:24:15 -0700739{
740 unsigned long addr = (unsigned long)start_page;
741 unsigned long end = (unsigned long)(start_page + size);
742 unsigned long next;
743 pgd_t *pgd;
744 pud_t *pud;
745 pmd_t *pmd;
746
747 for (; addr < end; addr = next) {
748 next = pmd_addr_end(addr, end);
749
750 pgd = vmemmap_pgd_populate(addr, node);
751 if (!pgd)
752 return -ENOMEM;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100753
Christoph Lameter0889eba2007-10-16 01:24:15 -0700754 pud = vmemmap_pud_populate(pgd, addr, node);
755 if (!pud)
756 return -ENOMEM;
757
758 pmd = pmd_offset(pud, addr);
759 if (pmd_none(*pmd)) {
760 pte_t entry;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100761 void *p;
762
763 p = vmemmap_alloc_block(PMD_SIZE, node);
Christoph Lameter0889eba2007-10-16 01:24:15 -0700764 if (!p)
765 return -ENOMEM;
766
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100767 entry = pfn_pte(__pa(p) >> PAGE_SHIFT,
768 PAGE_KERNEL_LARGE);
Christoph Lameter0889eba2007-10-16 01:24:15 -0700769 set_pmd(pmd, __pmd(pte_val(entry)));
770
771 printk(KERN_DEBUG " [%lx-%lx] PMD ->%p on node %d\n",
772 addr, addr + PMD_SIZE - 1, p, node);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100773 } else {
Christoph Lameter0889eba2007-10-16 01:24:15 -0700774 vmemmap_verify((pte_t *)pmd, node, addr, next);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100775 }
Christoph Lameter0889eba2007-10-16 01:24:15 -0700776 }
Christoph Lameter0889eba2007-10-16 01:24:15 -0700777 return 0;
778}
779#endif