blob: eabcaed76c28a15768b057119ebd8cecb8eb90d5 [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) {
Matt Tolentino44df75e2006-01-17 07:03:41 +0100276 unsigned long entry;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200277 pmd_t *pmd = pmd_page + pmd_index(address);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100278
Jan Beulich5f51e132006-06-26 13:59:02 +0200279 if (address >= end) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100280 if (!after_bootmem) {
Jan Beulich5f51e132006-06-26 13:59:02 +0200281 for (; i < PTRS_PER_PMD; i++, pmd++)
282 set_pmd(pmd, __pmd(0));
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100283 }
Matt Tolentino44df75e2006-01-17 07:03:41 +0100284 break;
285 }
Keith Mannthey6ad91652006-09-26 10:52:36 +0200286
287 if (pmd_val(*pmd))
288 continue;
289
Joerg Roedel40842bf2008-01-30 13:31:02 +0100290 entry = __PAGE_KERNEL_LARGE|_PAGE_GLOBAL|address;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100291 entry &= __supported_pte_mask;
292 set_pmd(pmd, __pmd(entry));
293 }
294}
295
296static void __meminit
297phys_pmd_update(pud_t *pud, unsigned long address, unsigned long end)
298{
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100299 pmd_t *pmd = pmd_offset(pud, 0);
Keith Mannthey6ad91652006-09-26 10:52:36 +0200300 spin_lock(&init_mm.page_table_lock);
301 phys_pmd_init(pmd, address, end);
302 spin_unlock(&init_mm.page_table_lock);
303 __flush_tlb_all();
Matt Tolentino44df75e2006-01-17 07:03:41 +0100304}
305
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100306static void __meminit
307phys_pud_init(pud_t *pud_page, unsigned long addr, unsigned long end)
308{
Keith Mannthey6ad91652006-09-26 10:52:36 +0200309 int i = pud_index(addr);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100310
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100311 for (; i < PTRS_PER_PUD; i++, addr = (addr & PUD_MASK) + PUD_SIZE) {
Keith Mannthey6ad91652006-09-26 10:52:36 +0200312 unsigned long pmd_phys;
313 pud_t *pud = pud_page + pud_index(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 pmd_t *pmd;
315
Keith Mannthey6ad91652006-09-26 10:52:36 +0200316 if (addr >= end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100319 if (!after_bootmem &&
320 !e820_any_mapped(addr, addr+PUD_SIZE, 0)) {
321 set_pud(pud, __pud(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 continue;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100323 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Keith Mannthey6ad91652006-09-26 10:52:36 +0200325 if (pud_val(*pud)) {
326 phys_pmd_update(pud, addr, end);
327 continue;
328 }
329
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200330 pmd = alloc_low_page(&pmd_phys);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100331
Matt Tolentino44df75e2006-01-17 07:03:41 +0100332 spin_lock(&init_mm.page_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 set_pud(pud, __pud(pmd_phys | _KERNPG_TABLE));
Keith Mannthey6ad91652006-09-26 10:52:36 +0200334 phys_pmd_init(pmd, addr, end);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100335 spin_unlock(&init_mm.page_table_lock);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100336
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200337 unmap_low_page(pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 }
Andi Kleen1a2b4412008-01-30 13:33:54 +0100339 __flush_tlb_all();
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100340}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
342static void __init find_early_table_space(unsigned long end)
343{
Andi Kleen6c5acd12006-01-11 22:46:57 +0100344 unsigned long puds, pmds, tables, start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
346 puds = (end + PUD_SIZE - 1) >> PUD_SHIFT;
347 pmds = (end + PMD_SIZE - 1) >> PMD_SHIFT;
348 tables = round_up(puds * sizeof(pud_t), PAGE_SIZE) +
349 round_up(pmds * sizeof(pmd_t), PAGE_SIZE);
350
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100351 /*
352 * RED-PEN putting page tables only on node 0 could
353 * cause a hotspot and fill up ZONE_DMA. The page tables
354 * need roughly 0.5KB per GB.
355 */
356 start = 0x8000;
Yinghai Lu24a5da72008-02-01 17:49:41 +0100357 table_start = find_e820_area(start, end, tables, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 if (table_start == -1UL)
359 panic("Cannot find space for the kernel page tables");
360
361 table_start >>= PAGE_SHIFT;
362 table_end = table_start;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100363
364 early_printk("kernel direct mapping tables up to %lx @ %lx-%lx\n",
Jan Beulich5f51e132006-06-26 13:59:02 +0200365 end, table_start << PAGE_SHIFT,
366 (table_start << PAGE_SHIFT) + tables);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367}
368
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100369/*
370 * Setup the direct mapping of the physical memory at PAGE_OFFSET.
371 * This runs before bootmem is initialized and gets pages directly from
372 * the physical memory. To access them they are temporarily mapped.
373 */
KAMEZAWA Hiroyukib6fd6ec2007-11-28 16:21:58 -0800374void __init_refok init_memory_mapping(unsigned long start, unsigned long end)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100375{
376 unsigned long next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100378 pr_debug("init_memory_mapping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100380 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 * Find space for the kernel direct mapping tables.
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100382 *
383 * Later we should allocate these tables in the local node of the
384 * memory mapped. Unfortunately this is done currently before the
385 * nodes are discovered.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 */
Matt Tolentino44df75e2006-01-17 07:03:41 +0100387 if (!after_bootmem)
388 find_early_table_space(end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
390 start = (unsigned long)__va(start);
391 end = (unsigned long)__va(end);
392
393 for (; start < end; start = next) {
Matt Tolentino44df75e2006-01-17 07:03:41 +0100394 pgd_t *pgd = pgd_offset_k(start);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100395 unsigned long pud_phys;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100396 pud_t *pud;
397
398 if (after_bootmem)
Andi Kleend2ae5b52006-06-26 13:57:56 +0200399 pud = pud_offset(pgd, start & PGDIR_MASK);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100400 else
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200401 pud = alloc_low_page(&pud_phys);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 next = start + PGDIR_SIZE;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100404 if (next > end)
405 next = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 phys_pud_init(pud, __pa(start), __pa(next));
Matt Tolentino44df75e2006-01-17 07:03:41 +0100407 if (!after_bootmem)
408 set_pgd(pgd_offset_k(start), mk_kernel_pgd(pud_phys));
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200409 unmap_low_page(pud);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100410 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Matt Tolentino44df75e2006-01-17 07:03:41 +0100412 if (!after_bootmem)
Glauber de Oliveira Costaf51c9452007-07-22 11:12:29 +0200413 mmu_cr4_features = read_cr4();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 __flush_tlb_all();
Andi Kleen75175272008-01-30 13:33:17 +0100415
Yinghai Lu24a5da72008-02-01 17:49:41 +0100416 if (!after_bootmem)
417 reserve_early(table_start << PAGE_SHIFT,
418 table_end << PAGE_SHIFT, "PGTABLE");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419}
420
Matt Tolentino2b976902005-06-23 00:08:06 -0700421#ifndef CONFIG_NUMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422void __init paging_init(void)
423{
Mel Gorman6391af12006-10-11 01:20:39 -0700424 unsigned long max_zone_pfns[MAX_NR_ZONES];
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100425
Mel Gorman6391af12006-10-11 01:20:39 -0700426 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
427 max_zone_pfns[ZONE_DMA] = MAX_DMA_PFN;
428 max_zone_pfns[ZONE_DMA32] = MAX_DMA32_PFN;
429 max_zone_pfns[ZONE_NORMAL] = end_pfn;
430
Matt Tolentino44df75e2006-01-17 07:03:41 +0100431 memory_present(0, 0, end_pfn);
432 sparse_init();
Mel Gorman5cb248a2006-09-27 01:49:52 -0700433 free_area_init_nodes(max_zone_pfns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434}
435#endif
436
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100437/*
438 * Unmap a kernel mapping if it exists. This is useful to avoid
439 * prefetches from the CPU leading to inconsistent cache lines.
440 * address and size must be aligned to 2MB boundaries.
441 * Does nothing when the mapping doesn't exist.
442 */
443void __init clear_kernel_mapping(unsigned long address, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
445 unsigned long end = address + size;
446
447 BUG_ON(address & ~LARGE_PAGE_MASK);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100448 BUG_ON(size & ~LARGE_PAGE_MASK);
449
450 for (; address < end; address += LARGE_PAGE_SIZE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 pgd_t *pgd = pgd_offset_k(address);
452 pud_t *pud;
453 pmd_t *pmd;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 if (pgd_none(*pgd))
456 continue;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 pud = pud_offset(pgd, address);
459 if (pud_none(*pud))
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100460 continue;
461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 pmd = pmd_offset(pud, address);
463 if (!pmd || pmd_none(*pmd))
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100464 continue;
465
466 if (!(pmd_val(*pmd) & _PAGE_PSE)) {
467 /*
468 * Could handle this, but it should not happen
469 * currently:
470 */
471 printk(KERN_ERR "clear_kernel_mapping: "
472 "mapping has been split. will leak memory\n");
473 pmd_ERROR(*pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 }
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100475 set_pmd(pmd, __pmd(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 }
477 __flush_tlb_all();
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100478}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Matt Tolentino44df75e2006-01-17 07:03:41 +0100480/*
481 * Memory hotplug specific functions
Matt Tolentino44df75e2006-01-17 07:03:41 +0100482 */
Matt Tolentino44df75e2006-01-17 07:03:41 +0100483void online_page(struct page *page)
484{
485 ClearPageReserved(page);
Nick Piggin7835e982006-03-22 00:08:40 -0800486 init_page_count(page);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100487 __free_page(page);
488 totalram_pages++;
489 num_physpages++;
490}
491
Yasunori Gotobc02af92006-06-27 02:53:30 -0700492#ifdef CONFIG_MEMORY_HOTPLUG
493/*
Yasunori Gotobc02af92006-06-27 02:53:30 -0700494 * Memory is added always to NORMAL zone. This means you will never get
495 * additional DMA/DMA32 memory.
496 */
497int arch_add_memory(int nid, u64 start, u64 size)
498{
499 struct pglist_data *pgdat = NODE_DATA(nid);
Christoph Lameter776ed982006-09-25 23:31:09 -0700500 struct zone *zone = pgdat->node_zones + ZONE_NORMAL;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700501 unsigned long start_pfn = start >> PAGE_SHIFT;
502 unsigned long nr_pages = size >> PAGE_SHIFT;
503 int ret;
504
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100505 init_memory_mapping(start, start + size-1);
Keith Mannthey45e0b782006-09-30 23:27:09 -0700506
Yasunori Gotobc02af92006-06-27 02:53:30 -0700507 ret = __add_pages(zone, start_pfn, nr_pages);
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100508 WARN_ON(1);
Yasunori Gotobc02af92006-06-27 02:53:30 -0700509
Yasunori Gotobc02af92006-06-27 02:53:30 -0700510 return ret;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700511}
512EXPORT_SYMBOL_GPL(arch_add_memory);
513
Yasunori Goto82432292006-11-18 22:19:40 -0800514#if !defined(CONFIG_ACPI_NUMA) && defined(CONFIG_NUMA)
Keith Mannthey4942e992006-09-30 23:27:06 -0700515int memory_add_physaddr_to_nid(u64 start)
516{
517 return 0;
518}
Keith Mannthey8c2676a2006-09-30 23:27:07 -0700519EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
Keith Mannthey4942e992006-09-30 23:27:06 -0700520#endif
521
Keith Mannthey45e0b782006-09-30 23:27:09 -0700522#endif /* CONFIG_MEMORY_HOTPLUG */
523
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100524static struct kcore_list kcore_mem, kcore_vmalloc, kcore_kernel,
525 kcore_modules, kcore_vsyscall;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
527void __init mem_init(void)
528{
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200529 long codesize, reservedpages, datasize, initsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Jon Mason0dc243a2006-06-26 13:58:11 +0200531 pci_iommu_alloc();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Yinghai Lu48ddb152008-01-30 13:32:36 +0100533 /* clear_bss() already clear the empty_zero_page */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Ingo Molnarf2633102008-01-30 13:32:36 +0100535 /* temporary debugging - double check it's true: */
536 {
537 int i;
538
539 for (i = 0; i < 1024; i++)
540 WARN_ON_ONCE(empty_zero_page[i]);
541 }
542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 reservedpages = 0;
544
545 /* this will put all low memory onto the freelists */
Matt Tolentino2b976902005-06-23 00:08:06 -0700546#ifdef CONFIG_NUMA
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200547 totalram_pages = numa_free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548#else
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200549 totalram_pages = free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550#endif
Mel Gorman5cb248a2006-09-27 01:49:52 -0700551 reservedpages = end_pfn - totalram_pages -
552 absent_pages_in_range(0, end_pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 after_bootmem = 1;
554
555 codesize = (unsigned long) &_etext - (unsigned long) &_text;
556 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
557 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
558
559 /* Register memory areas for /proc/kcore */
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100560 kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
561 kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 VMALLOC_END-VMALLOC_START);
563 kclist_add(&kcore_kernel, &_stext, _end - _stext);
564 kclist_add(&kcore_modules, (void *)MODULES_VADDR, MODULES_LEN);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100565 kclist_add(&kcore_vsyscall, (void *)VSYSCALL_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 VSYSCALL_END - VSYSCALL_START);
567
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100568 printk(KERN_INFO "Memory: %luk/%luk available (%ldk kernel code, "
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100569 "%ldk reserved, %ldk data, %ldk init)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
571 end_pfn << (PAGE_SHIFT-10),
572 codesize >> 10,
573 reservedpages << (PAGE_SHIFT-10),
574 datasize >> 10,
575 initsize >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576}
577
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200578void free_init_pages(char *what, unsigned long begin, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
580 unsigned long addr;
581
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200582 if (begin >= end)
583 return;
584
Ingo Molnaree01f112008-01-30 13:34:09 +0100585 /*
586 * If debugging page accesses then do not free this memory but
587 * mark them not present - any buggy init-section access will
588 * create a kernel page fault:
589 */
590#ifdef CONFIG_DEBUG_PAGEALLOC
591 printk(KERN_INFO "debug: unmapping init memory %08lx..%08lx\n",
592 begin, PAGE_ALIGN(end));
593 set_memory_np(begin, (end - begin) >> PAGE_SHIFT);
594#else
Jan Beulich6fb14752007-05-02 19:27:10 +0200595 printk(KERN_INFO "Freeing %s: %luk freed\n", what, (end - begin) >> 10);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100596
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200597 for (addr = begin; addr < end; addr += PAGE_SIZE) {
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700598 ClearPageReserved(virt_to_page(addr));
599 init_page_count(virt_to_page(addr));
600 memset((void *)(addr & ~(PAGE_SIZE-1)),
601 POISON_FREE_INITMEM, PAGE_SIZE);
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700602 free_page(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 totalram_pages++;
604 }
Ingo Molnaree01f112008-01-30 13:34:09 +0100605#endif
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200606}
607
608void free_initmem(void)
609{
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200610 free_init_pages("unused kernel memory",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700611 (unsigned long)(&__init_begin),
612 (unsigned long)(&__init_end));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613}
614
Arjan van de Ven67df1972006-01-06 00:12:04 -0800615#ifdef CONFIG_DEBUG_RODATA
Arjan van de Venedeed302008-01-30 13:34:08 +0100616const int rodata_test_data = 0xC3;
617EXPORT_SYMBOL_GPL(rodata_test_data);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800618
Arjan van de Ven67df1972006-01-06 00:12:04 -0800619void mark_rodata_ro(void)
620{
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700621 unsigned long start = (unsigned long)_stext, end;
Arjan van de Ven67df1972006-01-06 00:12:04 -0800622
Linus Torvalds602033e2007-07-26 12:07:21 -0700623#ifdef CONFIG_HOTPLUG_CPU
624 /* It must still be possible to apply SMP alternatives. */
625 if (num_possible_cpus() > 1)
626 start = (unsigned long)_etext;
627#endif
628
629#ifdef CONFIG_KPROBES
630 start = (unsigned long)__start_rodata;
631#endif
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100632
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700633 end = (unsigned long)__end_rodata;
634 start = (start + PAGE_SIZE - 1) & PAGE_MASK;
635 end &= PAGE_MASK;
636 if (end <= start)
637 return;
638
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100639 set_memory_ro(start, (end - start) >> PAGE_SHIFT);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800640
Jan Beulich6fb14752007-05-02 19:27:10 +0200641 printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700642 (end - start) >> 10);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800643
Arjan van de Ven1a487252008-01-30 13:34:09 +0100644 rodata_test();
645
Andi Kleen0c42f392008-01-30 13:33:42 +0100646#ifdef CONFIG_CPA_DEBUG
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100647 printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, end);
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100648 set_memory_rw(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +0100649
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100650 printk(KERN_INFO "Testing CPA: again\n");
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100651 set_memory_ro(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +0100652#endif
Arjan van de Ven67df1972006-01-06 00:12:04 -0800653}
654#endif
655
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656#ifdef CONFIG_BLK_DEV_INITRD
657void free_initrd_mem(unsigned long start, unsigned long end)
658{
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700659 free_init_pages("initrd memory", start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660}
661#endif
662
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100663void __init reserve_bootmem_generic(unsigned long phys, unsigned len)
664{
Matt Tolentino2b976902005-06-23 00:08:06 -0700665#ifdef CONFIG_NUMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 int nid = phys_to_nid(phys);
Andi Kleen5e58a022006-11-14 16:57:46 +0100667#endif
668 unsigned long pfn = phys >> PAGE_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100669
Andi Kleen5e58a022006-11-14 16:57:46 +0100670 if (pfn >= end_pfn) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100671 /*
672 * This can happen with kdump kernels when accessing
673 * firmware tables:
674 */
Andi Kleen5e58a022006-11-14 16:57:46 +0100675 if (pfn < end_pfn_map)
676 return;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100677
Andi Kleen5e58a022006-11-14 16:57:46 +0100678 printk(KERN_ERR "reserve_bootmem: illegal reserve %lx %u\n",
679 phys, len);
680 return;
681 }
682
683 /* Should check here against the e820 map to avoid double free */
684#ifdef CONFIG_NUMA
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100685 reserve_bootmem_node(NODE_DATA(nid), phys, len);
686#else
687 reserve_bootmem(phys, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688#endif
Mel Gorman0e0b8642006-09-27 01:49:56 -0700689 if (phys+len <= MAX_DMA_PFN*PAGE_SIZE) {
Andi Kleene18c6872005-11-05 17:25:53 +0100690 dma_reserve += len / PAGE_SIZE;
Mel Gorman0e0b8642006-09-27 01:49:56 -0700691 set_dma_reserve(dma_reserve);
692 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693}
694
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100695int kern_addr_valid(unsigned long addr)
696{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 unsigned long above = ((long)addr) >> __VIRTUAL_MASK_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100698 pgd_t *pgd;
699 pud_t *pud;
700 pmd_t *pmd;
701 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
703 if (above != 0 && above != -1UL)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100704 return 0;
705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 pgd = pgd_offset_k(addr);
707 if (pgd_none(*pgd))
708 return 0;
709
710 pud = pud_offset(pgd, addr);
711 if (pud_none(*pud))
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100712 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
714 pmd = pmd_offset(pud, addr);
715 if (pmd_none(*pmd))
716 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100717
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 if (pmd_large(*pmd))
719 return pfn_valid(pmd_pfn(*pmd));
720
721 pte = pte_offset_kernel(pmd, addr);
722 if (pte_none(*pte))
723 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 return pfn_valid(pte_pfn(*pte));
726}
727
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100728/*
729 * A pseudo VMA to allow ptrace access for the vsyscall page. This only
730 * covers the 64bit vsyscall page now. 32bit has a real VMA now and does
731 * not need special handling anymore:
732 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733static struct vm_area_struct gate_vma = {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100734 .vm_start = VSYSCALL_START,
735 .vm_end = VSYSCALL_START + (VSYSCALL_MAPPED_PAGES * PAGE_SIZE),
736 .vm_page_prot = PAGE_READONLY_EXEC,
737 .vm_flags = VM_READ | VM_EXEC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738};
739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740struct vm_area_struct *get_gate_vma(struct task_struct *tsk)
741{
742#ifdef CONFIG_IA32_EMULATION
Andi Kleen1e014412005-04-16 15:24:55 -0700743 if (test_tsk_thread_flag(tsk, TIF_IA32))
744 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745#endif
746 return &gate_vma;
747}
748
749int in_gate_area(struct task_struct *task, unsigned long addr)
750{
751 struct vm_area_struct *vma = get_gate_vma(task);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100752
Andi Kleen1e014412005-04-16 15:24:55 -0700753 if (!vma)
754 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100755
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 return (addr >= vma->vm_start) && (addr < vma->vm_end);
757}
758
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100759/*
760 * Use this when you have no reliable task/vma, typically from interrupt
761 * context. It is less reliable than using the task's vma and may give
762 * false positives:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 */
764int in_gate_area_no_task(unsigned long addr)
765{
Andi Kleen1e014412005-04-16 15:24:55 -0700766 return (addr >= VSYSCALL_START) && (addr < VSYSCALL_END);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767}
Zou Nan hai2e1c49d2007-06-01 00:46:28 -0700768
Andi Kleen2aae9502007-07-21 17:10:01 +0200769const char *arch_vma_name(struct vm_area_struct *vma)
770{
771 if (vma->vm_mm && vma->vm_start == (long)vma->vm_mm->context.vdso)
772 return "[vdso]";
773 if (vma == &gate_vma)
774 return "[vsyscall]";
775 return NULL;
776}
Christoph Lameter0889eba2007-10-16 01:24:15 -0700777
778#ifdef CONFIG_SPARSEMEM_VMEMMAP
779/*
780 * Initialise the sparsemem vmemmap using huge-pages at the PMD level.
781 */
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100782int __meminit
783vmemmap_populate(struct page *start_page, unsigned long size, int node)
Christoph Lameter0889eba2007-10-16 01:24:15 -0700784{
785 unsigned long addr = (unsigned long)start_page;
786 unsigned long end = (unsigned long)(start_page + size);
787 unsigned long next;
788 pgd_t *pgd;
789 pud_t *pud;
790 pmd_t *pmd;
791
792 for (; addr < end; addr = next) {
793 next = pmd_addr_end(addr, end);
794
795 pgd = vmemmap_pgd_populate(addr, node);
796 if (!pgd)
797 return -ENOMEM;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100798
Christoph Lameter0889eba2007-10-16 01:24:15 -0700799 pud = vmemmap_pud_populate(pgd, addr, node);
800 if (!pud)
801 return -ENOMEM;
802
803 pmd = pmd_offset(pud, addr);
804 if (pmd_none(*pmd)) {
805 pte_t entry;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100806 void *p;
807
808 p = vmemmap_alloc_block(PMD_SIZE, node);
Christoph Lameter0889eba2007-10-16 01:24:15 -0700809 if (!p)
810 return -ENOMEM;
811
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100812 entry = pfn_pte(__pa(p) >> PAGE_SHIFT,
813 PAGE_KERNEL_LARGE);
Christoph Lameter0889eba2007-10-16 01:24:15 -0700814 set_pmd(pmd, __pmd(pte_val(entry)));
815
816 printk(KERN_DEBUG " [%lx-%lx] PMD ->%p on node %d\n",
817 addr, addr + PMD_SIZE - 1, p, node);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100818 } else {
Christoph Lameter0889eba2007-10-16 01:24:15 -0700819 vmemmap_verify((pte_t *)pmd, node, addr, next);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100820 }
Christoph Lameter0889eba2007-10-16 01:24:15 -0700821 }
Christoph Lameter0889eba2007-10-16 01:24:15 -0700822 return 0;
823}
824#endif