blob: 1076097dcab22115f5de1e9b22afc1baf2129ab6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/x86_64/mm/init.c
3 *
4 * Copyright (C) 1995 Linus Torvalds
5 * Copyright (C) 2000 Pavel Machek <pavel@suse.cz>
6 * Copyright (C) 2002,2003 Andi Kleen <ak@suse.de>
7 */
8
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/signal.h>
10#include <linux/sched.h>
11#include <linux/kernel.h>
12#include <linux/errno.h>
13#include <linux/string.h>
14#include <linux/types.h>
15#include <linux/ptrace.h>
16#include <linux/mman.h>
17#include <linux/mm.h>
18#include <linux/swap.h>
19#include <linux/smp.h>
20#include <linux/init.h>
21#include <linux/pagemap.h>
22#include <linux/bootmem.h>
23#include <linux/proc_fs.h>
Andi Kleen59170892005-11-05 17:25:53 +010024#include <linux/pci.h>
Jan Beulich6fb14752007-05-02 19:27:10 +020025#include <linux/pfn.h>
Randy Dunlapc9cf5522006-06-27 02:53:52 -070026#include <linux/poison.h>
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +010027#include <linux/dma-mapping.h>
Matt Tolentino44df75e2006-01-17 07:03:41 +010028#include <linux/module.h>
29#include <linux/memory_hotplug.h>
Konrad Rzeszutekae32b122007-05-02 19:27:11 +020030#include <linux/nmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32#include <asm/processor.h>
33#include <asm/system.h>
34#include <asm/uaccess.h>
35#include <asm/pgtable.h>
36#include <asm/pgalloc.h>
37#include <asm/dma.h>
38#include <asm/fixmap.h>
39#include <asm/e820.h>
40#include <asm/apic.h>
41#include <asm/tlb.h>
42#include <asm/mmu_context.h>
43#include <asm/proto.h>
44#include <asm/smp.h>
Andi Kleen2bc04142005-11-05 17:25:53 +010045#include <asm/sections.h>
Thomas Gleixner718fc132008-01-30 13:30:17 +010046#include <asm/kdebug.h>
Thomas Gleixneraaa64e02008-01-30 13:30:17 +010047#include <asm/numa.h>
Harvey Harrison7bfeab92008-02-12 12:12:01 -080048#include <asm/cacheflush.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Thomas Gleixner14a62c32008-01-30 13:34:10 +010050const struct dma_mapping_ops *dma_ops;
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +010051EXPORT_SYMBOL(dma_ops);
52
Andi Kleene18c6872005-11-05 17:25:53 +010053static unsigned long dma_reserve __initdata;
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
56
Ingo Molnar00d1c5e2008-04-17 17:40:45 +020057int direct_gbpages __meminitdata
58#ifdef CONFIG_DIRECT_GBPAGES
59 = 1
60#endif
61;
62
63static int __init parse_direct_gbpages_off(char *arg)
64{
65 direct_gbpages = 0;
66 return 0;
67}
68early_param("nogbpages", parse_direct_gbpages_off);
69
70static int __init parse_direct_gbpages_on(char *arg)
71{
72 direct_gbpages = 1;
73 return 0;
74}
75early_param("gbpages", parse_direct_gbpages_on);
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077/*
78 * NOTE: pagetable_init alloc all the fixmap pagetables contiguous on the
79 * physical space so we can cache the place of the first one and move
80 * around without checking the pgd every time.
81 */
82
83void show_mem(void)
84{
Andi Kleene92343c2005-09-12 18:49:24 +020085 long i, total = 0, reserved = 0;
86 long shared = 0, cached = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 struct page *page;
Thomas Gleixner14a62c32008-01-30 13:34:10 +010088 pg_data_t *pgdat;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Andi Kleene92343c2005-09-12 18:49:24 +020090 printk(KERN_INFO "Mem-info:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 show_free_areas();
KAMEZAWA Hiroyukiec936fc2006-03-27 01:15:59 -080092 for_each_online_pgdat(pgdat) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +010093 for (i = 0; i < pgdat->node_spanned_pages; ++i) {
94 /*
95 * This loop can take a while with 256 GB and
96 * 4k pages so defer the NMI watchdog:
97 */
98 if (unlikely(i % MAX_ORDER_NR_PAGES == 0))
Konrad Rzeszutekae32b122007-05-02 19:27:11 +020099 touch_nmi_watchdog();
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100100
Bob Picco12710a52007-06-08 13:47:00 -0700101 if (!pfn_valid(pgdat->node_start_pfn + i))
102 continue;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 page = pfn_to_page(pgdat->node_start_pfn + i);
105 total++;
Andi Kleene92343c2005-09-12 18:49:24 +0200106 if (PageReserved(page))
107 reserved++;
108 else if (PageSwapCache(page))
109 cached++;
110 else if (page_count(page))
111 shared += page_count(page) - 1;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100112 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 }
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100114 printk(KERN_INFO "%lu pages of RAM\n", total);
115 printk(KERN_INFO "%lu reserved pages\n", reserved);
116 printk(KERN_INFO "%lu pages shared\n", shared);
117 printk(KERN_INFO "%lu pages swap cached\n", cached);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118}
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120int after_bootmem;
121
Andi Kleen5f44a662006-03-25 16:30:25 +0100122static __init void *spp_getpage(void)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100123{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 void *ptr;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 if (after_bootmem)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100127 ptr = (void *) get_zeroed_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 else
129 ptr = alloc_bootmem_pages(PAGE_SIZE);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100130
131 if (!ptr || ((unsigned long)ptr & ~PAGE_MASK)) {
132 panic("set_pte_phys: cannot allocate page data %s\n",
133 after_bootmem ? "after bootmem" : "");
134 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100136 pr_debug("spp_getpage %p\n", ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100138 return ptr;
139}
140
141static __init void
142set_pte_phys(unsigned long vaddr, unsigned long phys, pgprot_t prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
144 pgd_t *pgd;
145 pud_t *pud;
146 pmd_t *pmd;
147 pte_t *pte, new_pte;
148
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100149 pr_debug("set_pte_phys %lx to %lx\n", vaddr, phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151 pgd = pgd_offset_k(vaddr);
152 if (pgd_none(*pgd)) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100153 printk(KERN_ERR
154 "PGD FIXMAP MISSING, it should be setup in head.S!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 return;
156 }
157 pud = pud_offset(pgd, vaddr);
158 if (pud_none(*pud)) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100159 pmd = (pmd_t *) spp_getpage();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 set_pud(pud, __pud(__pa(pmd) | _KERNPG_TABLE | _PAGE_USER));
161 if (pmd != pmd_offset(pud, 0)) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100162 printk(KERN_ERR "PAGETABLE BUG #01! %p <-> %p\n",
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100163 pmd, pmd_offset(pud, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 return;
165 }
166 }
167 pmd = pmd_offset(pud, vaddr);
168 if (pmd_none(*pmd)) {
169 pte = (pte_t *) spp_getpage();
170 set_pmd(pmd, __pmd(__pa(pte) | _KERNPG_TABLE | _PAGE_USER));
171 if (pte != pte_offset_kernel(pmd, 0)) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100172 printk(KERN_ERR "PAGETABLE BUG #02!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 return;
174 }
175 }
176 new_pte = pfn_pte(phys >> PAGE_SHIFT, prot);
177
178 pte = pte_offset_kernel(pmd, vaddr);
179 if (!pte_none(*pte) &&
180 pte_val(*pte) != (pte_val(new_pte) & __supported_pte_mask))
181 pte_ERROR(*pte);
182 set_pte(pte, new_pte);
183
184 /*
185 * It's enough to flush this one mapping.
186 * (PGE mappings get flushed as well)
187 */
188 __flush_tlb_one(vaddr);
189}
190
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100191/*
Ingo Molnar88f3aec2008-02-21 11:04:11 +0100192 * The head.S code sets up the kernel high mapping:
193 *
194 * from __START_KERNEL_map to __START_KERNEL_map + size (== _end-_text)
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100195 *
196 * phys_addr holds the negative offset to the kernel, which is added
197 * to the compile time generated pmds. This results in invalid pmds up
198 * to the point where we hit the physaddr 0 mapping.
199 *
200 * We limit the mappings to the region from _text to _end. _end is
201 * rounded up to the 2MB boundary. This catches the invalid pmds as
202 * well, as they are located before _text:
203 */
204void __init cleanup_highmap(void)
205{
206 unsigned long vaddr = __START_KERNEL_map;
207 unsigned long end = round_up((unsigned long)_end, PMD_SIZE) - 1;
208 pmd_t *pmd = level2_kernel_pgt;
209 pmd_t *last_pmd = pmd + PTRS_PER_PMD;
210
211 for (; pmd < last_pmd; pmd++, vaddr += PMD_SIZE) {
212 if (!pmd_present(*pmd))
213 continue;
214 if (vaddr < (unsigned long) _text || vaddr > end)
215 set_pmd(pmd, __pmd(0));
216 }
217}
218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219/* NOTE: this is meant to be run only at boot */
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100220void __init
221__set_fixmap(enum fixed_addresses idx, unsigned long phys, pgprot_t prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
223 unsigned long address = __fix_to_virt(idx);
224
225 if (idx >= __end_of_fixed_addresses) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100226 printk(KERN_ERR "Invalid __set_fixmap\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 return;
228 }
229 set_pte_phys(address, phys, prot);
230}
231
Andi Kleen75175272008-01-30 13:33:17 +0100232static unsigned long __initdata table_start;
233static unsigned long __meminitdata table_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200235static __meminit void *alloc_low_page(unsigned long *phys)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100236{
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200237 unsigned long pfn = table_end++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 void *adr;
239
Matt Tolentino44df75e2006-01-17 07:03:41 +0100240 if (after_bootmem) {
241 adr = (void *)get_zeroed_page(GFP_ATOMIC);
242 *phys = __pa(adr);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100243
Matt Tolentino44df75e2006-01-17 07:03:41 +0100244 return adr;
245 }
246
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100247 if (pfn >= end_pfn)
248 panic("alloc_low_page: ran out of memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200250 adr = early_ioremap(pfn * PAGE_SIZE, PAGE_SIZE);
251 memset(adr, 0, PAGE_SIZE);
252 *phys = pfn * PAGE_SIZE;
253 return adr;
254}
255
256static __meminit void unmap_low_page(void *adr)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100257{
Matt Tolentino44df75e2006-01-17 07:03:41 +0100258 if (after_bootmem)
259 return;
260
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200261 early_iounmap(adr, PAGE_SIZE);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100262}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100264/* Must run before zap_low_mappings */
Yasunori Gotoa3142c82007-05-08 00:23:07 -0700265__meminit void *early_ioremap(unsigned long addr, unsigned long size)
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100266{
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200267 pmd_t *pmd, *last_pmd;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100268 unsigned long vaddr;
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200269 int i, pmds;
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100270
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200271 pmds = ((addr & ~PMD_MASK) + size + ~PMD_MASK) / PMD_SIZE;
272 vaddr = __START_KERNEL_map;
273 pmd = level2_kernel_pgt;
274 last_pmd = level2_kernel_pgt + PTRS_PER_PMD - 1;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100275
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200276 for (; pmd <= last_pmd; pmd++, vaddr += PMD_SIZE) {
277 for (i = 0; i < pmds; i++) {
278 if (pmd_present(pmd[i]))
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100279 goto continue_outer_loop;
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200280 }
281 vaddr += addr & ~PMD_MASK;
282 addr &= PMD_MASK;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100283
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200284 for (i = 0; i < pmds; i++, addr += PMD_SIZE)
Joerg Roedel929fd582008-01-30 13:31:08 +0100285 set_pmd(pmd+i, __pmd(addr | __PAGE_KERNEL_LARGE_EXEC));
Andi Kleen1a2b4412008-01-30 13:33:54 +0100286 __flush_tlb_all();
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100287
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200288 return (void *)vaddr;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100289continue_outer_loop:
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200290 ;
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100291 }
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100292 printk(KERN_ERR "early_ioremap(0x%lx, %lu) failed\n", addr, size);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100293
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200294 return NULL;
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100295}
296
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100297/*
298 * To avoid virtual aliases later:
299 */
Yasunori Gotoa3142c82007-05-08 00:23:07 -0700300__meminit void early_iounmap(void *addr, unsigned long size)
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100301{
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200302 unsigned long vaddr;
303 pmd_t *pmd;
304 int i, pmds;
305
306 vaddr = (unsigned long)addr;
307 pmds = ((vaddr & ~PMD_MASK) + size + ~PMD_MASK) / PMD_SIZE;
308 pmd = level2_kernel_pgt + pmd_index(vaddr);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100309
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200310 for (i = 0; i < pmds; i++)
311 pmd_clear(pmd + i);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100312
Andi Kleen1a2b4412008-01-30 13:33:54 +0100313 __flush_tlb_all();
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100314}
315
Andi Kleencc615032008-03-12 03:53:28 +0100316static unsigned long __meminit
Keith Mannthey6ad91652006-09-26 10:52:36 +0200317phys_pmd_init(pmd_t *pmd_page, unsigned long address, unsigned long end)
Matt Tolentino44df75e2006-01-17 07:03:41 +0100318{
Keith Mannthey6ad91652006-09-26 10:52:36 +0200319 int i = pmd_index(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Keith Mannthey6ad91652006-09-26 10:52:36 +0200321 for (; i < PTRS_PER_PMD; i++, address += PMD_SIZE) {
Keith Mannthey6ad91652006-09-26 10:52:36 +0200322 pmd_t *pmd = pmd_page + pmd_index(address);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100323
Jan Beulich5f51e132006-06-26 13:59:02 +0200324 if (address >= end) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100325 if (!after_bootmem) {
Jan Beulich5f51e132006-06-26 13:59:02 +0200326 for (; i < PTRS_PER_PMD; i++, pmd++)
327 set_pmd(pmd, __pmd(0));
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100328 }
Matt Tolentino44df75e2006-01-17 07:03:41 +0100329 break;
330 }
Keith Mannthey6ad91652006-09-26 10:52:36 +0200331
332 if (pmd_val(*pmd))
333 continue;
334
Andi Kleend4f71f72008-02-04 16:48:09 +0100335 set_pte((pte_t *)pmd,
336 pfn_pte(address >> PAGE_SHIFT, PAGE_KERNEL_LARGE));
Matt Tolentino44df75e2006-01-17 07:03:41 +0100337 }
Andi Kleencc615032008-03-12 03:53:28 +0100338 return address;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100339}
340
Andi Kleencc615032008-03-12 03:53:28 +0100341static unsigned long __meminit
Matt Tolentino44df75e2006-01-17 07:03:41 +0100342phys_pmd_update(pud_t *pud, unsigned long address, unsigned long end)
343{
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100344 pmd_t *pmd = pmd_offset(pud, 0);
Andi Kleencc615032008-03-12 03:53:28 +0100345 unsigned long last_map_addr;
346
Keith Mannthey6ad91652006-09-26 10:52:36 +0200347 spin_lock(&init_mm.page_table_lock);
Andi Kleencc615032008-03-12 03:53:28 +0100348 last_map_addr = phys_pmd_init(pmd, address, end);
Keith Mannthey6ad91652006-09-26 10:52:36 +0200349 spin_unlock(&init_mm.page_table_lock);
350 __flush_tlb_all();
Andi Kleencc615032008-03-12 03:53:28 +0100351 return last_map_addr;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100352}
353
Andi Kleencc615032008-03-12 03:53:28 +0100354static unsigned long __meminit
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100355phys_pud_init(pud_t *pud_page, unsigned long addr, unsigned long end)
356{
Andi Kleencc615032008-03-12 03:53:28 +0100357 unsigned long last_map_addr = end;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200358 int i = pud_index(addr);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100359
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100360 for (; i < PTRS_PER_PUD; i++, addr = (addr & PUD_MASK) + PUD_SIZE) {
Keith Mannthey6ad91652006-09-26 10:52:36 +0200361 unsigned long pmd_phys;
362 pud_t *pud = pud_page + pud_index(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 pmd_t *pmd;
364
Keith Mannthey6ad91652006-09-26 10:52:36 +0200365 if (addr >= end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100368 if (!after_bootmem &&
369 !e820_any_mapped(addr, addr+PUD_SIZE, 0)) {
370 set_pud(pud, __pud(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 continue;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100372 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Keith Mannthey6ad91652006-09-26 10:52:36 +0200374 if (pud_val(*pud)) {
Andi Kleenef925762008-04-17 17:40:45 +0200375 if (!pud_large(*pud))
Andi Kleencc615032008-03-12 03:53:28 +0100376 last_map_addr = phys_pmd_update(pud, addr, end);
Andi Kleenef925762008-04-17 17:40:45 +0200377 continue;
378 }
379
380 if (direct_gbpages) {
381 set_pte((pte_t *)pud,
382 pfn_pte(addr >> PAGE_SHIFT, PAGE_KERNEL_LARGE));
Andi Kleencc615032008-03-12 03:53:28 +0100383 last_map_addr = (addr & PUD_MASK) + PUD_SIZE;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200384 continue;
385 }
386
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200387 pmd = alloc_low_page(&pmd_phys);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100388
Matt Tolentino44df75e2006-01-17 07:03:41 +0100389 spin_lock(&init_mm.page_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 set_pud(pud, __pud(pmd_phys | _KERNPG_TABLE));
Andi Kleencc615032008-03-12 03:53:28 +0100391 last_map_addr = phys_pmd_init(pmd, addr, end);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100392 spin_unlock(&init_mm.page_table_lock);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100393
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200394 unmap_low_page(pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 }
Andi Kleen1a2b4412008-01-30 13:33:54 +0100396 __flush_tlb_all();
Andi Kleencc615032008-03-12 03:53:28 +0100397
398 return last_map_addr >> PAGE_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100399}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401static void __init find_early_table_space(unsigned long end)
402{
Andi Kleen6c5acd12006-01-11 22:46:57 +0100403 unsigned long puds, pmds, tables, start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
405 puds = (end + PUD_SIZE - 1) >> PUD_SHIFT;
Andi Kleenef925762008-04-17 17:40:45 +0200406 tables = round_up(puds * sizeof(pud_t), PAGE_SIZE);
407 if (!direct_gbpages) {
408 pmds = (end + PMD_SIZE - 1) >> PMD_SHIFT;
409 tables += round_up(pmds * sizeof(pmd_t), PAGE_SIZE);
410 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100412 /*
413 * RED-PEN putting page tables only on node 0 could
414 * cause a hotspot and fill up ZONE_DMA. The page tables
415 * need roughly 0.5KB per GB.
416 */
417 start = 0x8000;
Yinghai Lu24a5da72008-02-01 17:49:41 +0100418 table_start = find_e820_area(start, end, tables, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 if (table_start == -1UL)
420 panic("Cannot find space for the kernel page tables");
421
422 table_start >>= PAGE_SHIFT;
423 table_end = table_start;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100424
425 early_printk("kernel direct mapping tables up to %lx @ %lx-%lx\n",
Jan Beulich5f51e132006-06-26 13:59:02 +0200426 end, table_start << PAGE_SHIFT,
427 (table_start << PAGE_SHIFT) + tables);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428}
429
Andi Kleenef925762008-04-17 17:40:45 +0200430static void __init init_gbpages(void)
431{
432 if (direct_gbpages && cpu_has_gbpages)
433 printk(KERN_INFO "Using GB pages for direct mapping\n");
434 else
435 direct_gbpages = 0;
436}
437
Yinghai Luc64df702008-03-21 18:56:19 -0700438#ifdef CONFIG_MEMTEST_BOOTPARAM
439
440static void __init memtest(unsigned long start_phys, unsigned long size,
441 unsigned pattern)
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700442{
443 unsigned long i;
444 unsigned long *start;
445 unsigned long start_bad;
446 unsigned long last_bad;
447 unsigned long val;
448 unsigned long start_phys_aligned;
449 unsigned long count;
450 unsigned long incr;
451
452 switch (pattern) {
453 case 0:
454 val = 0UL;
455 break;
456 case 1:
457 val = -1UL;
458 break;
459 case 2:
460 val = 0x5555555555555555UL;
461 break;
462 case 3:
463 val = 0xaaaaaaaaaaaaaaaaUL;
464 break;
465 default:
466 return;
467 }
468
469 incr = sizeof(unsigned long);
470 start_phys_aligned = ALIGN(start_phys, incr);
471 count = (size - (start_phys_aligned - start_phys))/incr;
472 start = __va(start_phys_aligned);
473 start_bad = 0;
474 last_bad = 0;
475
476 for (i = 0; i < count; i++)
477 start[i] = val;
478 for (i = 0; i < count; i++, start++, start_phys_aligned += incr) {
479 if (*start != val) {
480 if (start_phys_aligned == last_bad + incr) {
481 last_bad += incr;
482 } else {
483 if (start_bad) {
Yinghai Ludcfe9462008-04-15 23:17:42 -0700484 printk(KERN_CONT "\n %016lx bad mem addr %016lx - %016lx reserved",
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700485 val, start_bad, last_bad + incr);
486 reserve_early(start_bad, last_bad - start_bad, "BAD RAM");
487 }
488 start_bad = last_bad = start_phys_aligned;
489 }
490 }
491 }
492 if (start_bad) {
Yinghai Ludcfe9462008-04-15 23:17:42 -0700493 printk(KERN_CONT "\n %016lx bad mem addr %016lx - %016lx reserved",
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700494 val, start_bad, last_bad + incr);
495 reserve_early(start_bad, last_bad - start_bad, "BAD RAM");
496 }
497
498}
499
Yinghai Luc64df702008-03-21 18:56:19 -0700500static int memtest_pattern __initdata = CONFIG_MEMTEST_BOOTPARAM_VALUE;
501
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700502static int __init parse_memtest(char *arg)
503{
504 if (arg)
Yinghai Luc64df702008-03-21 18:56:19 -0700505 memtest_pattern = simple_strtoul(arg, NULL, 0);
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700506 return 0;
507}
508
509early_param("memtest", parse_memtest);
510
511static void __init early_memtest(unsigned long start, unsigned long end)
512{
513 unsigned long t_start, t_size;
514 unsigned pattern;
515
Yinghai Luc64df702008-03-21 18:56:19 -0700516 if (!memtest_pattern)
517 return;
518
519 printk(KERN_INFO "early_memtest: pattern num %d", memtest_pattern);
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700520 for (pattern = 0; pattern < memtest_pattern; pattern++) {
521 t_start = start;
522 t_size = 0;
523 while (t_start < end) {
524 t_start = find_e820_area_size(t_start, &t_size, 1);
525
526 /* done ? */
527 if (t_start >= end)
528 break;
529 if (t_start + t_size > end)
530 t_size = end - t_start;
531
532 printk(KERN_CONT "\n %016lx - %016lx pattern %d",
533 t_start, t_start + t_size, pattern);
534
535 memtest(t_start, t_size, pattern);
536
537 t_start += t_size;
538 }
539 }
Yinghai Luc64df702008-03-21 18:56:19 -0700540 printk(KERN_CONT "\n");
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700541}
Yinghai Luc64df702008-03-21 18:56:19 -0700542#else
543static void __init early_memtest(unsigned long start, unsigned long end)
544{
545}
546#endif
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700547
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100548/*
549 * Setup the direct mapping of the physical memory at PAGE_OFFSET.
550 * This runs before bootmem is initialized and gets pages directly from
551 * the physical memory. To access them they are temporarily mapped.
552 */
Andi Kleencc615032008-03-12 03:53:28 +0100553unsigned long __init_refok init_memory_mapping(unsigned long start, unsigned long end)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100554{
Andi Kleencc615032008-03-12 03:53:28 +0100555 unsigned long next, last_map_addr = end;
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700556 unsigned long start_phys = start, end_phys = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700558 printk(KERN_INFO "init_memory_mapping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100560 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 * Find space for the kernel direct mapping tables.
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100562 *
563 * Later we should allocate these tables in the local node of the
564 * memory mapped. Unfortunately this is done currently before the
565 * nodes are discovered.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 */
Andi Kleenef925762008-04-17 17:40:45 +0200567 if (!after_bootmem) {
568 init_gbpages();
Matt Tolentino44df75e2006-01-17 07:03:41 +0100569 find_early_table_space(end);
Andi Kleenef925762008-04-17 17:40:45 +0200570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
572 start = (unsigned long)__va(start);
573 end = (unsigned long)__va(end);
574
575 for (; start < end; start = next) {
Matt Tolentino44df75e2006-01-17 07:03:41 +0100576 pgd_t *pgd = pgd_offset_k(start);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100577 unsigned long pud_phys;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100578 pud_t *pud;
579
580 if (after_bootmem)
Andi Kleend2ae5b52006-06-26 13:57:56 +0200581 pud = pud_offset(pgd, start & PGDIR_MASK);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100582 else
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200583 pud = alloc_low_page(&pud_phys);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 next = start + PGDIR_SIZE;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100586 if (next > end)
587 next = end;
Andi Kleencc615032008-03-12 03:53:28 +0100588 last_map_addr = phys_pud_init(pud, __pa(start), __pa(next));
Matt Tolentino44df75e2006-01-17 07:03:41 +0100589 if (!after_bootmem)
590 set_pgd(pgd_offset_k(start), mk_kernel_pgd(pud_phys));
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200591 unmap_low_page(pud);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100592 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Matt Tolentino44df75e2006-01-17 07:03:41 +0100594 if (!after_bootmem)
Glauber de Oliveira Costaf51c9452007-07-22 11:12:29 +0200595 mmu_cr4_features = read_cr4();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 __flush_tlb_all();
Andi Kleen75175272008-01-30 13:33:17 +0100597
Yinghai Lu24a5da72008-02-01 17:49:41 +0100598 if (!after_bootmem)
599 reserve_early(table_start << PAGE_SHIFT,
600 table_end << PAGE_SHIFT, "PGTABLE");
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700601
602 if (!after_bootmem)
603 early_memtest(start_phys, end_phys);
Andi Kleencc615032008-03-12 03:53:28 +0100604
605 return last_map_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606}
607
Matt Tolentino2b976902005-06-23 00:08:06 -0700608#ifndef CONFIG_NUMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609void __init paging_init(void)
610{
Mel Gorman6391af12006-10-11 01:20:39 -0700611 unsigned long max_zone_pfns[MAX_NR_ZONES];
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100612
Mel Gorman6391af12006-10-11 01:20:39 -0700613 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
614 max_zone_pfns[ZONE_DMA] = MAX_DMA_PFN;
615 max_zone_pfns[ZONE_DMA32] = MAX_DMA32_PFN;
616 max_zone_pfns[ZONE_NORMAL] = end_pfn;
617
Matt Tolentino44df75e2006-01-17 07:03:41 +0100618 memory_present(0, 0, end_pfn);
619 sparse_init();
Mel Gorman5cb248a2006-09-27 01:49:52 -0700620 free_area_init_nodes(max_zone_pfns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621}
622#endif
623
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100624/*
Matt Tolentino44df75e2006-01-17 07:03:41 +0100625 * Memory hotplug specific functions
Matt Tolentino44df75e2006-01-17 07:03:41 +0100626 */
Matt Tolentino44df75e2006-01-17 07:03:41 +0100627void online_page(struct page *page)
628{
629 ClearPageReserved(page);
Nick Piggin7835e982006-03-22 00:08:40 -0800630 init_page_count(page);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100631 __free_page(page);
632 totalram_pages++;
633 num_physpages++;
634}
635
Yasunori Gotobc02af92006-06-27 02:53:30 -0700636#ifdef CONFIG_MEMORY_HOTPLUG
637/*
Yasunori Gotobc02af92006-06-27 02:53:30 -0700638 * Memory is added always to NORMAL zone. This means you will never get
639 * additional DMA/DMA32 memory.
640 */
641int arch_add_memory(int nid, u64 start, u64 size)
642{
643 struct pglist_data *pgdat = NODE_DATA(nid);
Christoph Lameter776ed982006-09-25 23:31:09 -0700644 struct zone *zone = pgdat->node_zones + ZONE_NORMAL;
Andi Kleencc615032008-03-12 03:53:28 +0100645 unsigned long last_mapped_pfn, start_pfn = start >> PAGE_SHIFT;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700646 unsigned long nr_pages = size >> PAGE_SHIFT;
647 int ret;
648
Andi Kleencc615032008-03-12 03:53:28 +0100649 last_mapped_pfn = init_memory_mapping(start, start + size-1);
650 if (last_mapped_pfn > max_pfn_mapped)
651 max_pfn_mapped = last_mapped_pfn;
Keith Mannthey45e0b782006-09-30 23:27:09 -0700652
Yasunori Gotobc02af92006-06-27 02:53:30 -0700653 ret = __add_pages(zone, start_pfn, nr_pages);
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100654 WARN_ON(1);
Yasunori Gotobc02af92006-06-27 02:53:30 -0700655
Yasunori Gotobc02af92006-06-27 02:53:30 -0700656 return ret;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700657}
658EXPORT_SYMBOL_GPL(arch_add_memory);
659
Yasunori Goto82432292006-11-18 22:19:40 -0800660#if !defined(CONFIG_ACPI_NUMA) && defined(CONFIG_NUMA)
Keith Mannthey4942e992006-09-30 23:27:06 -0700661int memory_add_physaddr_to_nid(u64 start)
662{
663 return 0;
664}
Keith Mannthey8c2676a2006-09-30 23:27:07 -0700665EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
Keith Mannthey4942e992006-09-30 23:27:06 -0700666#endif
667
Keith Mannthey45e0b782006-09-30 23:27:09 -0700668#endif /* CONFIG_MEMORY_HOTPLUG */
669
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100670static struct kcore_list kcore_mem, kcore_vmalloc, kcore_kernel,
671 kcore_modules, kcore_vsyscall;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
673void __init mem_init(void)
674{
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200675 long codesize, reservedpages, datasize, initsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Jon Mason0dc243a2006-06-26 13:58:11 +0200677 pci_iommu_alloc();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Yinghai Lu48ddb152008-01-30 13:32:36 +0100679 /* clear_bss() already clear the empty_zero_page */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
681 reservedpages = 0;
682
683 /* this will put all low memory onto the freelists */
Matt Tolentino2b976902005-06-23 00:08:06 -0700684#ifdef CONFIG_NUMA
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200685 totalram_pages = numa_free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686#else
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200687 totalram_pages = free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688#endif
Mel Gorman5cb248a2006-09-27 01:49:52 -0700689 reservedpages = end_pfn - totalram_pages -
690 absent_pages_in_range(0, end_pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 after_bootmem = 1;
692
693 codesize = (unsigned long) &_etext - (unsigned long) &_text;
694 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
695 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
696
697 /* Register memory areas for /proc/kcore */
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100698 kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
699 kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 VMALLOC_END-VMALLOC_START);
701 kclist_add(&kcore_kernel, &_stext, _end - _stext);
702 kclist_add(&kcore_modules, (void *)MODULES_VADDR, MODULES_LEN);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100703 kclist_add(&kcore_vsyscall, (void *)VSYSCALL_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 VSYSCALL_END - VSYSCALL_START);
705
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100706 printk(KERN_INFO "Memory: %luk/%luk available (%ldk kernel code, "
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100707 "%ldk reserved, %ldk data, %ldk init)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
709 end_pfn << (PAGE_SHIFT-10),
710 codesize >> 10,
711 reservedpages << (PAGE_SHIFT-10),
712 datasize >> 10,
713 initsize >> 10);
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100714
715 cpa_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716}
717
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200718void free_init_pages(char *what, unsigned long begin, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719{
Thomas Gleixnerbfc734b2008-02-09 23:24:09 +0100720 unsigned long addr = begin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Thomas Gleixnerbfc734b2008-02-09 23:24:09 +0100722 if (addr >= end)
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200723 return;
724
Ingo Molnaree01f112008-01-30 13:34:09 +0100725 /*
726 * If debugging page accesses then do not free this memory but
727 * mark them not present - any buggy init-section access will
728 * create a kernel page fault:
729 */
730#ifdef CONFIG_DEBUG_PAGEALLOC
731 printk(KERN_INFO "debug: unmapping init memory %08lx..%08lx\n",
732 begin, PAGE_ALIGN(end));
733 set_memory_np(begin, (end - begin) >> PAGE_SHIFT);
734#else
Jan Beulich6fb14752007-05-02 19:27:10 +0200735 printk(KERN_INFO "Freeing %s: %luk freed\n", what, (end - begin) >> 10);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100736
Thomas Gleixnerbfc734b2008-02-09 23:24:09 +0100737 for (; addr < end; addr += PAGE_SIZE) {
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700738 ClearPageReserved(virt_to_page(addr));
739 init_page_count(virt_to_page(addr));
740 memset((void *)(addr & ~(PAGE_SIZE-1)),
741 POISON_FREE_INITMEM, PAGE_SIZE);
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700742 free_page(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 totalram_pages++;
744 }
Ingo Molnaree01f112008-01-30 13:34:09 +0100745#endif
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200746}
747
748void free_initmem(void)
749{
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200750 free_init_pages("unused kernel memory",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700751 (unsigned long)(&__init_begin),
752 (unsigned long)(&__init_end));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753}
754
Arjan van de Ven67df1972006-01-06 00:12:04 -0800755#ifdef CONFIG_DEBUG_RODATA
Arjan van de Venedeed302008-01-30 13:34:08 +0100756const int rodata_test_data = 0xC3;
757EXPORT_SYMBOL_GPL(rodata_test_data);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800758
Arjan van de Ven67df1972006-01-06 00:12:04 -0800759void mark_rodata_ro(void)
760{
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -0500761 unsigned long start = PFN_ALIGN(_stext), end = PFN_ALIGN(__end_rodata);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800762
Jan Beulich6fb14752007-05-02 19:27:10 +0200763 printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700764 (end - start) >> 10);
Arjan van de Ven984bb802008-02-06 22:39:45 +0100765 set_memory_ro(start, (end - start) >> PAGE_SHIFT);
766
767 /*
768 * The rodata section (but not the kernel text!) should also be
769 * not-executable.
770 */
771 start = ((unsigned long)__start_rodata + PAGE_SIZE - 1) & PAGE_MASK;
772 set_memory_nx(start, (end - start) >> PAGE_SHIFT);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800773
Arjan van de Ven1a487252008-01-30 13:34:09 +0100774 rodata_test();
775
Andi Kleen0c42f392008-01-30 13:33:42 +0100776#ifdef CONFIG_CPA_DEBUG
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100777 printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, end);
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100778 set_memory_rw(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +0100779
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100780 printk(KERN_INFO "Testing CPA: again\n");
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100781 set_memory_ro(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +0100782#endif
Arjan van de Ven67df1972006-01-06 00:12:04 -0800783}
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -0500784
Arjan van de Ven67df1972006-01-06 00:12:04 -0800785#endif
786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787#ifdef CONFIG_BLK_DEV_INITRD
788void free_initrd_mem(unsigned long start, unsigned long end)
789{
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700790 free_init_pages("initrd memory", start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791}
792#endif
793
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100794void __init reserve_bootmem_generic(unsigned long phys, unsigned len)
795{
Matt Tolentino2b976902005-06-23 00:08:06 -0700796#ifdef CONFIG_NUMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 int nid = phys_to_nid(phys);
Andi Kleen5e58a022006-11-14 16:57:46 +0100798#endif
799 unsigned long pfn = phys >> PAGE_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100800
Andi Kleen5e58a022006-11-14 16:57:46 +0100801 if (pfn >= end_pfn) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100802 /*
803 * This can happen with kdump kernels when accessing
804 * firmware tables:
805 */
Thomas Gleixner67794292008-03-21 21:27:10 +0100806 if (pfn < max_pfn_mapped)
Andi Kleen5e58a022006-11-14 16:57:46 +0100807 return;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100808
Andi Kleen5e58a022006-11-14 16:57:46 +0100809 printk(KERN_ERR "reserve_bootmem: illegal reserve %lx %u\n",
810 phys, len);
811 return;
812 }
813
814 /* Should check here against the e820 map to avoid double free */
815#ifdef CONFIG_NUMA
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800816 reserve_bootmem_node(NODE_DATA(nid), phys, len, BOOTMEM_DEFAULT);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100817#else
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800818 reserve_bootmem(phys, len, BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819#endif
Mel Gorman0e0b8642006-09-27 01:49:56 -0700820 if (phys+len <= MAX_DMA_PFN*PAGE_SIZE) {
Andi Kleene18c6872005-11-05 17:25:53 +0100821 dma_reserve += len / PAGE_SIZE;
Mel Gorman0e0b8642006-09-27 01:49:56 -0700822 set_dma_reserve(dma_reserve);
823 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824}
825
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100826int kern_addr_valid(unsigned long addr)
827{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 unsigned long above = ((long)addr) >> __VIRTUAL_MASK_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100829 pgd_t *pgd;
830 pud_t *pud;
831 pmd_t *pmd;
832 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
834 if (above != 0 && above != -1UL)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100835 return 0;
836
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 pgd = pgd_offset_k(addr);
838 if (pgd_none(*pgd))
839 return 0;
840
841 pud = pud_offset(pgd, addr);
842 if (pud_none(*pud))
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100843 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
845 pmd = pmd_offset(pud, addr);
846 if (pmd_none(*pmd))
847 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100848
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 if (pmd_large(*pmd))
850 return pfn_valid(pmd_pfn(*pmd));
851
852 pte = pte_offset_kernel(pmd, addr);
853 if (pte_none(*pte))
854 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 return pfn_valid(pte_pfn(*pte));
857}
858
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100859/*
860 * A pseudo VMA to allow ptrace access for the vsyscall page. This only
861 * covers the 64bit vsyscall page now. 32bit has a real VMA now and does
862 * not need special handling anymore:
863 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864static struct vm_area_struct gate_vma = {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100865 .vm_start = VSYSCALL_START,
866 .vm_end = VSYSCALL_START + (VSYSCALL_MAPPED_PAGES * PAGE_SIZE),
867 .vm_page_prot = PAGE_READONLY_EXEC,
868 .vm_flags = VM_READ | VM_EXEC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869};
870
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871struct vm_area_struct *get_gate_vma(struct task_struct *tsk)
872{
873#ifdef CONFIG_IA32_EMULATION
Andi Kleen1e014412005-04-16 15:24:55 -0700874 if (test_tsk_thread_flag(tsk, TIF_IA32))
875 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876#endif
877 return &gate_vma;
878}
879
880int in_gate_area(struct task_struct *task, unsigned long addr)
881{
882 struct vm_area_struct *vma = get_gate_vma(task);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100883
Andi Kleen1e014412005-04-16 15:24:55 -0700884 if (!vma)
885 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 return (addr >= vma->vm_start) && (addr < vma->vm_end);
888}
889
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100890/*
891 * Use this when you have no reliable task/vma, typically from interrupt
892 * context. It is less reliable than using the task's vma and may give
893 * false positives:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 */
895int in_gate_area_no_task(unsigned long addr)
896{
Andi Kleen1e014412005-04-16 15:24:55 -0700897 return (addr >= VSYSCALL_START) && (addr < VSYSCALL_END);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898}
Zou Nan hai2e1c49d2007-06-01 00:46:28 -0700899
Andi Kleen2aae9502007-07-21 17:10:01 +0200900const char *arch_vma_name(struct vm_area_struct *vma)
901{
902 if (vma->vm_mm && vma->vm_start == (long)vma->vm_mm->context.vdso)
903 return "[vdso]";
904 if (vma == &gate_vma)
905 return "[vsyscall]";
906 return NULL;
907}
Christoph Lameter0889eba2007-10-16 01:24:15 -0700908
909#ifdef CONFIG_SPARSEMEM_VMEMMAP
910/*
911 * Initialise the sparsemem vmemmap using huge-pages at the PMD level.
912 */
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100913int __meminit
914vmemmap_populate(struct page *start_page, unsigned long size, int node)
Christoph Lameter0889eba2007-10-16 01:24:15 -0700915{
916 unsigned long addr = (unsigned long)start_page;
917 unsigned long end = (unsigned long)(start_page + size);
918 unsigned long next;
919 pgd_t *pgd;
920 pud_t *pud;
921 pmd_t *pmd;
922
923 for (; addr < end; addr = next) {
924 next = pmd_addr_end(addr, end);
925
926 pgd = vmemmap_pgd_populate(addr, node);
927 if (!pgd)
928 return -ENOMEM;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100929
Christoph Lameter0889eba2007-10-16 01:24:15 -0700930 pud = vmemmap_pud_populate(pgd, addr, node);
931 if (!pud)
932 return -ENOMEM;
933
934 pmd = pmd_offset(pud, addr);
935 if (pmd_none(*pmd)) {
936 pte_t entry;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100937 void *p;
938
939 p = vmemmap_alloc_block(PMD_SIZE, node);
Christoph Lameter0889eba2007-10-16 01:24:15 -0700940 if (!p)
941 return -ENOMEM;
942
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100943 entry = pfn_pte(__pa(p) >> PAGE_SHIFT,
944 PAGE_KERNEL_LARGE);
Christoph Lameter0889eba2007-10-16 01:24:15 -0700945 set_pmd(pmd, __pmd(pte_val(entry)));
946
947 printk(KERN_DEBUG " [%lx-%lx] PMD ->%p on node %d\n",
948 addr, addr + PMD_SIZE - 1, p, node);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100949 } else {
Christoph Lameter0889eba2007-10-16 01:24:15 -0700950 vmemmap_verify((pte_t *)pmd, node, addr, next);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100951 }
Christoph Lameter0889eba2007-10-16 01:24:15 -0700952 }
Christoph Lameter0889eba2007-10-16 01:24:15 -0700953 return 0;
954}
955#endif