blob: a952726445916012c7c9410bcc6ecdc9f601a2d3 [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;
357 table_start = find_e820_area(start, end, tables);
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
416 reserve_early(table_start << PAGE_SHIFT, table_end << PAGE_SHIFT);
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/*
436 * Unmap a kernel mapping if it exists. This is useful to avoid
437 * prefetches from the CPU leading to inconsistent cache lines.
438 * address and size must be aligned to 2MB boundaries.
439 * Does nothing when the mapping doesn't exist.
440 */
441void __init clear_kernel_mapping(unsigned long address, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
443 unsigned long end = address + size;
444
445 BUG_ON(address & ~LARGE_PAGE_MASK);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100446 BUG_ON(size & ~LARGE_PAGE_MASK);
447
448 for (; address < end; address += LARGE_PAGE_SIZE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 pgd_t *pgd = pgd_offset_k(address);
450 pud_t *pud;
451 pmd_t *pmd;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 if (pgd_none(*pgd))
454 continue;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 pud = pud_offset(pgd, address);
457 if (pud_none(*pud))
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100458 continue;
459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 pmd = pmd_offset(pud, address);
461 if (!pmd || pmd_none(*pmd))
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100462 continue;
463
464 if (!(pmd_val(*pmd) & _PAGE_PSE)) {
465 /*
466 * Could handle this, but it should not happen
467 * currently:
468 */
469 printk(KERN_ERR "clear_kernel_mapping: "
470 "mapping has been split. will leak memory\n");
471 pmd_ERROR(*pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 }
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100473 set_pmd(pmd, __pmd(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 }
475 __flush_tlb_all();
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100476}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Matt Tolentino44df75e2006-01-17 07:03:41 +0100478/*
479 * Memory hotplug specific functions
Matt Tolentino44df75e2006-01-17 07:03:41 +0100480 */
Matt Tolentino44df75e2006-01-17 07:03:41 +0100481void online_page(struct page *page)
482{
483 ClearPageReserved(page);
Nick Piggin7835e982006-03-22 00:08:40 -0800484 init_page_count(page);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100485 __free_page(page);
486 totalram_pages++;
487 num_physpages++;
488}
489
Yasunori Gotobc02af92006-06-27 02:53:30 -0700490#ifdef CONFIG_MEMORY_HOTPLUG
491/*
Yasunori Gotobc02af92006-06-27 02:53:30 -0700492 * Memory is added always to NORMAL zone. This means you will never get
493 * additional DMA/DMA32 memory.
494 */
495int arch_add_memory(int nid, u64 start, u64 size)
496{
497 struct pglist_data *pgdat = NODE_DATA(nid);
Christoph Lameter776ed982006-09-25 23:31:09 -0700498 struct zone *zone = pgdat->node_zones + ZONE_NORMAL;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700499 unsigned long start_pfn = start >> PAGE_SHIFT;
500 unsigned long nr_pages = size >> PAGE_SHIFT;
501 int ret;
502
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100503 init_memory_mapping(start, start + size-1);
Keith Mannthey45e0b782006-09-30 23:27:09 -0700504
Yasunori Gotobc02af92006-06-27 02:53:30 -0700505 ret = __add_pages(zone, start_pfn, nr_pages);
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100506 WARN_ON(1);
Yasunori Gotobc02af92006-06-27 02:53:30 -0700507
Yasunori Gotobc02af92006-06-27 02:53:30 -0700508 return ret;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700509}
510EXPORT_SYMBOL_GPL(arch_add_memory);
511
Yasunori Goto82432292006-11-18 22:19:40 -0800512#if !defined(CONFIG_ACPI_NUMA) && defined(CONFIG_NUMA)
Keith Mannthey4942e992006-09-30 23:27:06 -0700513int memory_add_physaddr_to_nid(u64 start)
514{
515 return 0;
516}
Keith Mannthey8c2676a2006-09-30 23:27:07 -0700517EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
Keith Mannthey4942e992006-09-30 23:27:06 -0700518#endif
519
Keith Mannthey45e0b782006-09-30 23:27:09 -0700520#endif /* CONFIG_MEMORY_HOTPLUG */
521
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100522static struct kcore_list kcore_mem, kcore_vmalloc, kcore_kernel,
523 kcore_modules, kcore_vsyscall;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525void __init mem_init(void)
526{
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200527 long codesize, reservedpages, datasize, initsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Jon Mason0dc243a2006-06-26 13:58:11 +0200529 pci_iommu_alloc();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Yinghai Lu48ddb152008-01-30 13:32:36 +0100531 /* clear_bss() already clear the empty_zero_page */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Ingo Molnarf2633102008-01-30 13:32:36 +0100533 /* temporary debugging - double check it's true: */
534 {
535 int i;
536
537 for (i = 0; i < 1024; i++)
538 WARN_ON_ONCE(empty_zero_page[i]);
539 }
540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 reservedpages = 0;
542
543 /* this will put all low memory onto the freelists */
Matt Tolentino2b976902005-06-23 00:08:06 -0700544#ifdef CONFIG_NUMA
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200545 totalram_pages = numa_free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546#else
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200547 totalram_pages = free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548#endif
Mel Gorman5cb248a2006-09-27 01:49:52 -0700549 reservedpages = end_pfn - totalram_pages -
550 absent_pages_in_range(0, end_pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 after_bootmem = 1;
552
553 codesize = (unsigned long) &_etext - (unsigned long) &_text;
554 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
555 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
556
557 /* Register memory areas for /proc/kcore */
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100558 kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
559 kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 VMALLOC_END-VMALLOC_START);
561 kclist_add(&kcore_kernel, &_stext, _end - _stext);
562 kclist_add(&kcore_modules, (void *)MODULES_VADDR, MODULES_LEN);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100563 kclist_add(&kcore_vsyscall, (void *)VSYSCALL_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 VSYSCALL_END - VSYSCALL_START);
565
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100566 printk(KERN_INFO "Memory: %luk/%luk available (%ldk kernel code, "
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100567 "%ldk reserved, %ldk data, %ldk init)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
569 end_pfn << (PAGE_SHIFT-10),
570 codesize >> 10,
571 reservedpages << (PAGE_SHIFT-10),
572 datasize >> 10,
573 initsize >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574}
575
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200576void free_init_pages(char *what, unsigned long begin, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577{
578 unsigned long addr;
579
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200580 if (begin >= end)
581 return;
582
Ingo Molnaree01f112008-01-30 13:34:09 +0100583 /*
584 * If debugging page accesses then do not free this memory but
585 * mark them not present - any buggy init-section access will
586 * create a kernel page fault:
587 */
588#ifdef CONFIG_DEBUG_PAGEALLOC
589 printk(KERN_INFO "debug: unmapping init memory %08lx..%08lx\n",
590 begin, PAGE_ALIGN(end));
591 set_memory_np(begin, (end - begin) >> PAGE_SHIFT);
592#else
Jan Beulich6fb14752007-05-02 19:27:10 +0200593 printk(KERN_INFO "Freeing %s: %luk freed\n", what, (end - begin) >> 10);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100594
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200595 for (addr = begin; addr < end; addr += PAGE_SIZE) {
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700596 ClearPageReserved(virt_to_page(addr));
597 init_page_count(virt_to_page(addr));
598 memset((void *)(addr & ~(PAGE_SIZE-1)),
599 POISON_FREE_INITMEM, PAGE_SIZE);
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700600 free_page(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 totalram_pages++;
602 }
Ingo Molnaree01f112008-01-30 13:34:09 +0100603#endif
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200604}
605
606void free_initmem(void)
607{
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200608 free_init_pages("unused kernel memory",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700609 (unsigned long)(&__init_begin),
610 (unsigned long)(&__init_end));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611}
612
Arjan van de Ven67df1972006-01-06 00:12:04 -0800613#ifdef CONFIG_DEBUG_RODATA
Arjan van de Venedeed302008-01-30 13:34:08 +0100614const int rodata_test_data = 0xC3;
615EXPORT_SYMBOL_GPL(rodata_test_data);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800616
Arjan van de Ven67df1972006-01-06 00:12:04 -0800617void mark_rodata_ro(void)
618{
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700619 unsigned long start = (unsigned long)_stext, end;
Arjan van de Ven67df1972006-01-06 00:12:04 -0800620
Linus Torvalds602033e2007-07-26 12:07:21 -0700621#ifdef CONFIG_HOTPLUG_CPU
622 /* It must still be possible to apply SMP alternatives. */
623 if (num_possible_cpus() > 1)
624 start = (unsigned long)_etext;
625#endif
626
627#ifdef CONFIG_KPROBES
628 start = (unsigned long)__start_rodata;
629#endif
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100630
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700631 end = (unsigned long)__end_rodata;
632 start = (start + PAGE_SIZE - 1) & PAGE_MASK;
633 end &= PAGE_MASK;
634 if (end <= start)
635 return;
636
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100637 set_memory_ro(start, (end - start) >> PAGE_SHIFT);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800638
Jan Beulich6fb14752007-05-02 19:27:10 +0200639 printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700640 (end - start) >> 10);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800641
Arjan van de Ven1a487252008-01-30 13:34:09 +0100642 rodata_test();
643
Andi Kleen0c42f392008-01-30 13:33:42 +0100644#ifdef CONFIG_CPA_DEBUG
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100645 printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, end);
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100646 set_memory_rw(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +0100647
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100648 printk(KERN_INFO "Testing CPA: again\n");
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100649 set_memory_ro(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +0100650#endif
Arjan van de Ven67df1972006-01-06 00:12:04 -0800651}
652#endif
653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654#ifdef CONFIG_BLK_DEV_INITRD
655void free_initrd_mem(unsigned long start, unsigned long end)
656{
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700657 free_init_pages("initrd memory", start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658}
659#endif
660
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100661void __init reserve_bootmem_generic(unsigned long phys, unsigned len)
662{
Matt Tolentino2b976902005-06-23 00:08:06 -0700663#ifdef CONFIG_NUMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 int nid = phys_to_nid(phys);
Andi Kleen5e58a022006-11-14 16:57:46 +0100665#endif
666 unsigned long pfn = phys >> PAGE_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100667
Andi Kleen5e58a022006-11-14 16:57:46 +0100668 if (pfn >= end_pfn) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100669 /*
670 * This can happen with kdump kernels when accessing
671 * firmware tables:
672 */
Andi Kleen5e58a022006-11-14 16:57:46 +0100673 if (pfn < end_pfn_map)
674 return;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100675
Andi Kleen5e58a022006-11-14 16:57:46 +0100676 printk(KERN_ERR "reserve_bootmem: illegal reserve %lx %u\n",
677 phys, len);
678 return;
679 }
680
681 /* Should check here against the e820 map to avoid double free */
682#ifdef CONFIG_NUMA
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100683 reserve_bootmem_node(NODE_DATA(nid), phys, len);
684#else
685 reserve_bootmem(phys, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686#endif
Mel Gorman0e0b8642006-09-27 01:49:56 -0700687 if (phys+len <= MAX_DMA_PFN*PAGE_SIZE) {
Andi Kleene18c6872005-11-05 17:25:53 +0100688 dma_reserve += len / PAGE_SIZE;
Mel Gorman0e0b8642006-09-27 01:49:56 -0700689 set_dma_reserve(dma_reserve);
690 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691}
692
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100693int kern_addr_valid(unsigned long addr)
694{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 unsigned long above = ((long)addr) >> __VIRTUAL_MASK_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100696 pgd_t *pgd;
697 pud_t *pud;
698 pmd_t *pmd;
699 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
701 if (above != 0 && above != -1UL)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100702 return 0;
703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 pgd = pgd_offset_k(addr);
705 if (pgd_none(*pgd))
706 return 0;
707
708 pud = pud_offset(pgd, addr);
709 if (pud_none(*pud))
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100710 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
712 pmd = pmd_offset(pud, addr);
713 if (pmd_none(*pmd))
714 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 if (pmd_large(*pmd))
717 return pfn_valid(pmd_pfn(*pmd));
718
719 pte = pte_offset_kernel(pmd, addr);
720 if (pte_none(*pte))
721 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 return pfn_valid(pte_pfn(*pte));
724}
725
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100726/*
727 * A pseudo VMA to allow ptrace access for the vsyscall page. This only
728 * covers the 64bit vsyscall page now. 32bit has a real VMA now and does
729 * not need special handling anymore:
730 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731static struct vm_area_struct gate_vma = {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100732 .vm_start = VSYSCALL_START,
733 .vm_end = VSYSCALL_START + (VSYSCALL_MAPPED_PAGES * PAGE_SIZE),
734 .vm_page_prot = PAGE_READONLY_EXEC,
735 .vm_flags = VM_READ | VM_EXEC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736};
737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738struct vm_area_struct *get_gate_vma(struct task_struct *tsk)
739{
740#ifdef CONFIG_IA32_EMULATION
Andi Kleen1e014412005-04-16 15:24:55 -0700741 if (test_tsk_thread_flag(tsk, TIF_IA32))
742 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743#endif
744 return &gate_vma;
745}
746
747int in_gate_area(struct task_struct *task, unsigned long addr)
748{
749 struct vm_area_struct *vma = get_gate_vma(task);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100750
Andi Kleen1e014412005-04-16 15:24:55 -0700751 if (!vma)
752 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100753
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 return (addr >= vma->vm_start) && (addr < vma->vm_end);
755}
756
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100757/*
758 * Use this when you have no reliable task/vma, typically from interrupt
759 * context. It is less reliable than using the task's vma and may give
760 * false positives:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 */
762int in_gate_area_no_task(unsigned long addr)
763{
Andi Kleen1e014412005-04-16 15:24:55 -0700764 return (addr >= VSYSCALL_START) && (addr < VSYSCALL_END);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765}
Zou Nan hai2e1c49d2007-06-01 00:46:28 -0700766
Andi Kleen2aae9502007-07-21 17:10:01 +0200767const char *arch_vma_name(struct vm_area_struct *vma)
768{
769 if (vma->vm_mm && vma->vm_start == (long)vma->vm_mm->context.vdso)
770 return "[vdso]";
771 if (vma == &gate_vma)
772 return "[vsyscall]";
773 return NULL;
774}
Christoph Lameter0889eba2007-10-16 01:24:15 -0700775
776#ifdef CONFIG_SPARSEMEM_VMEMMAP
777/*
778 * Initialise the sparsemem vmemmap using huge-pages at the PMD level.
779 */
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100780int __meminit
781vmemmap_populate(struct page *start_page, unsigned long size, int node)
Christoph Lameter0889eba2007-10-16 01:24:15 -0700782{
783 unsigned long addr = (unsigned long)start_page;
784 unsigned long end = (unsigned long)(start_page + size);
785 unsigned long next;
786 pgd_t *pgd;
787 pud_t *pud;
788 pmd_t *pmd;
789
790 for (; addr < end; addr = next) {
791 next = pmd_addr_end(addr, end);
792
793 pgd = vmemmap_pgd_populate(addr, node);
794 if (!pgd)
795 return -ENOMEM;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100796
Christoph Lameter0889eba2007-10-16 01:24:15 -0700797 pud = vmemmap_pud_populate(pgd, addr, node);
798 if (!pud)
799 return -ENOMEM;
800
801 pmd = pmd_offset(pud, addr);
802 if (pmd_none(*pmd)) {
803 pte_t entry;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100804 void *p;
805
806 p = vmemmap_alloc_block(PMD_SIZE, node);
Christoph Lameter0889eba2007-10-16 01:24:15 -0700807 if (!p)
808 return -ENOMEM;
809
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100810 entry = pfn_pte(__pa(p) >> PAGE_SHIFT,
811 PAGE_KERNEL_LARGE);
Christoph Lameter0889eba2007-10-16 01:24:15 -0700812 set_pmd(pmd, __pmd(pte_val(entry)));
813
814 printk(KERN_DEBUG " [%lx-%lx] PMD ->%p on node %d\n",
815 addr, addr + PMD_SIZE - 1, p, node);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100816 } else {
Christoph Lameter0889eba2007-10-16 01:24:15 -0700817 vmemmap_verify((pte_t *)pmd, node, addr, next);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100818 }
Christoph Lameter0889eba2007-10-16 01:24:15 -0700819 }
Christoph Lameter0889eba2007-10-16 01:24:15 -0700820 return 0;
821}
822#endif