blob: f7d80313ede5bfe0b408a43d402668ce738715b2 [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>
Thomas Gleixner11034d52008-05-12 15:43:36 +020021#include <linux/initrd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/pagemap.h>
23#include <linux/bootmem.h>
24#include <linux/proc_fs.h>
Andi Kleen59170892005-11-05 17:25:53 +010025#include <linux/pci.h>
Jan Beulich6fb14752007-05-02 19:27:10 +020026#include <linux/pfn.h>
Randy Dunlapc9cf5522006-06-27 02:53:52 -070027#include <linux/poison.h>
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +010028#include <linux/dma-mapping.h>
Matt Tolentino44df75e2006-01-17 07:03:41 +010029#include <linux/module.h>
30#include <linux/memory_hotplug.h>
Konrad Rzeszutekae32b122007-05-02 19:27:11 +020031#include <linux/nmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33#include <asm/processor.h>
34#include <asm/system.h>
35#include <asm/uaccess.h>
36#include <asm/pgtable.h>
37#include <asm/pgalloc.h>
38#include <asm/dma.h>
39#include <asm/fixmap.h>
40#include <asm/e820.h>
41#include <asm/apic.h>
42#include <asm/tlb.h>
43#include <asm/mmu_context.h>
44#include <asm/proto.h>
45#include <asm/smp.h>
Andi Kleen2bc04142005-11-05 17:25:53 +010046#include <asm/sections.h>
Thomas Gleixner718fc132008-01-30 13:30:17 +010047#include <asm/kdebug.h>
Thomas Gleixneraaa64e02008-01-30 13:30:17 +010048#include <asm/numa.h>
Harvey Harrison7bfeab92008-02-12 12:12:01 -080049#include <asm/cacheflush.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Yinghai Lu064d25f2008-06-16 19:58:28 -070051/*
Yinghai Lu064d25f2008-06-16 19:58:28 -070052 * end_pfn only includes RAM, while max_pfn_mapped includes all e820 entries.
53 * The direct mapping extends to max_pfn_mapped, so that we can directly access
54 * apertures, ACPI and other tables without having to play with fixmaps.
55 */
56unsigned long max_pfn_mapped;
57
Andi Kleene18c6872005-11-05 17:25:53 +010058static unsigned long dma_reserve __initdata;
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
61
Ingo Molnar00d1c5e2008-04-17 17:40:45 +020062int direct_gbpages __meminitdata
63#ifdef CONFIG_DIRECT_GBPAGES
64 = 1
65#endif
66;
67
68static int __init parse_direct_gbpages_off(char *arg)
69{
70 direct_gbpages = 0;
71 return 0;
72}
73early_param("nogbpages", parse_direct_gbpages_off);
74
75static int __init parse_direct_gbpages_on(char *arg)
76{
77 direct_gbpages = 1;
78 return 0;
79}
80early_param("gbpages", parse_direct_gbpages_on);
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082/*
83 * NOTE: pagetable_init alloc all the fixmap pagetables contiguous on the
84 * physical space so we can cache the place of the first one and move
85 * around without checking the pgd every time.
86 */
87
88void show_mem(void)
89{
Andi Kleene92343c2005-09-12 18:49:24 +020090 long i, total = 0, reserved = 0;
91 long shared = 0, cached = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 struct page *page;
Thomas Gleixner14a62c32008-01-30 13:34:10 +010093 pg_data_t *pgdat;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Andi Kleene92343c2005-09-12 18:49:24 +020095 printk(KERN_INFO "Mem-info:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 show_free_areas();
KAMEZAWA Hiroyukiec936fc2006-03-27 01:15:59 -080097 for_each_online_pgdat(pgdat) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +010098 for (i = 0; i < pgdat->node_spanned_pages; ++i) {
99 /*
100 * This loop can take a while with 256 GB and
101 * 4k pages so defer the NMI watchdog:
102 */
103 if (unlikely(i % MAX_ORDER_NR_PAGES == 0))
Konrad Rzeszutekae32b122007-05-02 19:27:11 +0200104 touch_nmi_watchdog();
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100105
Bob Picco12710a52007-06-08 13:47:00 -0700106 if (!pfn_valid(pgdat->node_start_pfn + i))
107 continue;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 page = pfn_to_page(pgdat->node_start_pfn + i);
110 total++;
Andi Kleene92343c2005-09-12 18:49:24 +0200111 if (PageReserved(page))
112 reserved++;
113 else if (PageSwapCache(page))
114 cached++;
115 else if (page_count(page))
116 shared += page_count(page) - 1;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 }
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100119 printk(KERN_INFO "%lu pages of RAM\n", total);
120 printk(KERN_INFO "%lu reserved pages\n", reserved);
121 printk(KERN_INFO "%lu pages shared\n", shared);
122 printk(KERN_INFO "%lu pages swap cached\n", cached);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123}
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125int after_bootmem;
126
Andi Kleen5f44a662006-03-25 16:30:25 +0100127static __init void *spp_getpage(void)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100128{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 void *ptr;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 if (after_bootmem)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100132 ptr = (void *) get_zeroed_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 else
134 ptr = alloc_bootmem_pages(PAGE_SIZE);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100135
136 if (!ptr || ((unsigned long)ptr & ~PAGE_MASK)) {
137 panic("set_pte_phys: cannot allocate page data %s\n",
138 after_bootmem ? "after bootmem" : "");
139 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100141 pr_debug("spp_getpage %p\n", ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100143 return ptr;
144}
145
Jeremy Fitzhardinged494a962008-06-17 11:41:59 -0700146void
Eduardo Habkost0814e0b2008-06-25 00:19:22 -0400147set_pte_vaddr_pud(pud_t *pud_page, unsigned long vaddr, pte_t new_pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 pud_t *pud;
150 pmd_t *pmd;
Jeremy Fitzhardinged494a962008-06-17 11:41:59 -0700151 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Eduardo Habkost0814e0b2008-06-25 00:19:22 -0400153 pud = pud_page + pud_index(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 if (pud_none(*pud)) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100155 pmd = (pmd_t *) spp_getpage();
Jeremy Fitzhardingebb23e402008-06-25 00:19:02 -0400156 pud_populate(&init_mm, pud, pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 if (pmd != pmd_offset(pud, 0)) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100158 printk(KERN_ERR "PAGETABLE BUG #01! %p <-> %p\n",
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100159 pmd, pmd_offset(pud, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 return;
161 }
162 }
163 pmd = pmd_offset(pud, vaddr);
164 if (pmd_none(*pmd)) {
165 pte = (pte_t *) spp_getpage();
Jeremy Fitzhardingebb23e402008-06-25 00:19:02 -0400166 pmd_populate_kernel(&init_mm, pmd, pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 if (pte != pte_offset_kernel(pmd, 0)) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100168 printk(KERN_ERR "PAGETABLE BUG #02!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 return;
170 }
171 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 pte = pte_offset_kernel(pmd, vaddr);
Ingo Molnar70c9f592008-04-25 18:05:57 +0200174 if (!pte_none(*pte) && pte_val(new_pte) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 pte_val(*pte) != (pte_val(new_pte) & __supported_pte_mask))
176 pte_ERROR(*pte);
177 set_pte(pte, new_pte);
178
179 /*
180 * It's enough to flush this one mapping.
181 * (PGE mappings get flushed as well)
182 */
183 __flush_tlb_one(vaddr);
184}
185
Eduardo Habkost0814e0b2008-06-25 00:19:22 -0400186void
187set_pte_vaddr(unsigned long vaddr, pte_t pteval)
188{
189 pgd_t *pgd;
190 pud_t *pud_page;
191
192 pr_debug("set_pte_vaddr %lx to %lx\n", vaddr, native_pte_val(pteval));
193
194 pgd = pgd_offset_k(vaddr);
195 if (pgd_none(*pgd)) {
196 printk(KERN_ERR
197 "PGD FIXMAP MISSING, it should be setup in head.S!\n");
198 return;
199 }
200 pud_page = (pud_t*)pgd_page_vaddr(*pgd);
201 set_pte_vaddr_pud(pud_page, vaddr, pteval);
202}
203
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100204/*
Jack Steiner3a9e1892008-07-01 14:45:32 -0500205 * Create large page table mappings for a range of physical addresses.
206 */
207static void __init __init_extra_mapping(unsigned long phys, unsigned long size,
208 pgprot_t prot)
209{
210 pgd_t *pgd;
211 pud_t *pud;
212 pmd_t *pmd;
213
214 BUG_ON((phys & ~PMD_MASK) || (size & ~PMD_MASK));
215 for (; size; phys += PMD_SIZE, size -= PMD_SIZE) {
216 pgd = pgd_offset_k((unsigned long)__va(phys));
217 if (pgd_none(*pgd)) {
218 pud = (pud_t *) spp_getpage();
219 set_pgd(pgd, __pgd(__pa(pud) | _KERNPG_TABLE |
220 _PAGE_USER));
221 }
222 pud = pud_offset(pgd, (unsigned long)__va(phys));
223 if (pud_none(*pud)) {
224 pmd = (pmd_t *) spp_getpage();
225 set_pud(pud, __pud(__pa(pmd) | _KERNPG_TABLE |
226 _PAGE_USER));
227 }
228 pmd = pmd_offset(pud, phys);
229 BUG_ON(!pmd_none(*pmd));
230 set_pmd(pmd, __pmd(phys | pgprot_val(prot)));
231 }
232}
233
234void __init init_extra_mapping_wb(unsigned long phys, unsigned long size)
235{
236 __init_extra_mapping(phys, size, PAGE_KERNEL_LARGE);
237}
238
239void __init init_extra_mapping_uc(unsigned long phys, unsigned long size)
240{
241 __init_extra_mapping(phys, size, PAGE_KERNEL_LARGE_NOCACHE);
242}
243
244/*
Ingo Molnar88f3aec2008-02-21 11:04:11 +0100245 * The head.S code sets up the kernel high mapping:
246 *
247 * from __START_KERNEL_map to __START_KERNEL_map + size (== _end-_text)
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100248 *
249 * phys_addr holds the negative offset to the kernel, which is added
250 * to the compile time generated pmds. This results in invalid pmds up
251 * to the point where we hit the physaddr 0 mapping.
252 *
253 * We limit the mappings to the region from _text to _end. _end is
254 * rounded up to the 2MB boundary. This catches the invalid pmds as
255 * well, as they are located before _text:
256 */
257void __init cleanup_highmap(void)
258{
259 unsigned long vaddr = __START_KERNEL_map;
260 unsigned long end = round_up((unsigned long)_end, PMD_SIZE) - 1;
261 pmd_t *pmd = level2_kernel_pgt;
262 pmd_t *last_pmd = pmd + PTRS_PER_PMD;
263
264 for (; pmd < last_pmd; pmd++, vaddr += PMD_SIZE) {
Hugh Dickins2884f112008-05-28 19:36:07 +0100265 if (pmd_none(*pmd))
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100266 continue;
267 if (vaddr < (unsigned long) _text || vaddr > end)
268 set_pmd(pmd, __pmd(0));
269 }
270}
271
Andi Kleen75175272008-01-30 13:33:17 +0100272static unsigned long __initdata table_start;
273static unsigned long __meminitdata table_end;
Yinghai Lud86623a2008-06-24 14:57:29 -0700274static unsigned long __meminitdata table_top;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200276static __meminit void *alloc_low_page(unsigned long *phys)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100277{
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200278 unsigned long pfn = table_end++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 void *adr;
280
Matt Tolentino44df75e2006-01-17 07:03:41 +0100281 if (after_bootmem) {
282 adr = (void *)get_zeroed_page(GFP_ATOMIC);
283 *phys = __pa(adr);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100284
Matt Tolentino44df75e2006-01-17 07:03:41 +0100285 return adr;
286 }
287
Yinghai Lud86623a2008-06-24 14:57:29 -0700288 if (pfn >= table_top)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100289 panic("alloc_low_page: ran out of memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200291 adr = early_ioremap(pfn * PAGE_SIZE, PAGE_SIZE);
292 memset(adr, 0, PAGE_SIZE);
293 *phys = pfn * PAGE_SIZE;
294 return adr;
295}
296
297static __meminit void unmap_low_page(void *adr)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100298{
Matt Tolentino44df75e2006-01-17 07:03:41 +0100299 if (after_bootmem)
300 return;
301
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200302 early_iounmap(adr, PAGE_SIZE);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100303}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400305static void __meminit
306phys_pte_init(pte_t *pte_page, unsigned long addr, unsigned long end)
307{
308 unsigned pages = 0;
309 int i;
310 pte_t *pte = pte_page + pte_index(addr);
311
312 for(i = pte_index(addr); i < PTRS_PER_PTE; i++, addr += PAGE_SIZE, pte++) {
313
314 if (addr >= end) {
315 if (!after_bootmem) {
316 for(; i < PTRS_PER_PTE; i++, pte++)
317 set_pte(pte, __pte(0));
318 }
319 break;
320 }
321
322 if (pte_val(*pte))
323 continue;
324
325 if (0)
326 printk(" pte=%p addr=%lx pte=%016lx\n",
327 pte, addr, pfn_pte(addr >> PAGE_SHIFT, PAGE_KERNEL).pte);
328 set_pte(pte, pfn_pte(addr >> PAGE_SHIFT, PAGE_KERNEL));
329 pages++;
330 }
331 update_page_count(PG_LEVEL_4K, pages);
332}
333
334static void __meminit
335phys_pte_update(pmd_t *pmd, unsigned long address, unsigned long end)
336{
337 pte_t *pte = (pte_t *)pmd_page_vaddr(*pmd);
338
339 phys_pte_init(pte, address, end);
340}
341
Andi Kleencc615032008-03-12 03:53:28 +0100342static unsigned long __meminit
Yinghai Lub50efd22008-07-08 01:41:05 -0700343phys_pmd_init(pmd_t *pmd_page, unsigned long address, unsigned long end,
344 unsigned long page_size_mask)
Matt Tolentino44df75e2006-01-17 07:03:41 +0100345{
Andi Kleence0c0e52008-05-02 11:46:49 +0200346 unsigned long pages = 0;
347
Keith Mannthey6ad91652006-09-26 10:52:36 +0200348 int i = pmd_index(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Keith Mannthey6ad91652006-09-26 10:52:36 +0200350 for (; i < PTRS_PER_PMD; i++, address += PMD_SIZE) {
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400351 unsigned long pte_phys;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200352 pmd_t *pmd = pmd_page + pmd_index(address);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400353 pte_t *pte;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100354
Jan Beulich5f51e132006-06-26 13:59:02 +0200355 if (address >= end) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100356 if (!after_bootmem) {
Jan Beulich5f51e132006-06-26 13:59:02 +0200357 for (; i < PTRS_PER_PMD; i++, pmd++)
358 set_pmd(pmd, __pmd(0));
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100359 }
Matt Tolentino44df75e2006-01-17 07:03:41 +0100360 break;
361 }
Keith Mannthey6ad91652006-09-26 10:52:36 +0200362
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400363 if (pmd_val(*pmd)) {
Jeremy Fitzhardinge22b45142008-06-26 12:02:49 -0700364 if (!pmd_large(*pmd))
365 phys_pte_update(pmd, address, end);
Keith Mannthey6ad91652006-09-26 10:52:36 +0200366 continue;
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400367 }
Keith Mannthey6ad91652006-09-26 10:52:36 +0200368
Yinghai Lub50efd22008-07-08 01:41:05 -0700369 if (page_size_mask & (1<<PG_LEVEL_2M)) {
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400370 pages++;
371 set_pte((pte_t *)pmd,
372 pfn_pte(address >> PAGE_SHIFT, PAGE_KERNEL_LARGE));
373 continue;
374 }
375
376 pte = alloc_low_page(&pte_phys);
377 phys_pte_init(pte, address, end);
378 unmap_low_page(pte);
379
380 pmd_populate_kernel(&init_mm, pmd, __va(pte_phys));
Matt Tolentino44df75e2006-01-17 07:03:41 +0100381 }
Andi Kleence0c0e52008-05-02 11:46:49 +0200382 update_page_count(PG_LEVEL_2M, pages);
Andi Kleencc615032008-03-12 03:53:28 +0100383 return address;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100384}
385
Andi Kleencc615032008-03-12 03:53:28 +0100386static unsigned long __meminit
Yinghai Lub50efd22008-07-08 01:41:05 -0700387phys_pmd_update(pud_t *pud, unsigned long address, unsigned long end,
388 unsigned long page_size_mask)
Matt Tolentino44df75e2006-01-17 07:03:41 +0100389{
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100390 pmd_t *pmd = pmd_offset(pud, 0);
Andi Kleencc615032008-03-12 03:53:28 +0100391 unsigned long last_map_addr;
392
Keith Mannthey6ad91652006-09-26 10:52:36 +0200393 spin_lock(&init_mm.page_table_lock);
Yinghai Lub50efd22008-07-08 01:41:05 -0700394 last_map_addr = phys_pmd_init(pmd, address, end, page_size_mask);
Keith Mannthey6ad91652006-09-26 10:52:36 +0200395 spin_unlock(&init_mm.page_table_lock);
396 __flush_tlb_all();
Andi Kleencc615032008-03-12 03:53:28 +0100397 return last_map_addr;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100398}
399
Andi Kleencc615032008-03-12 03:53:28 +0100400static unsigned long __meminit
Yinghai Lub50efd22008-07-08 01:41:05 -0700401phys_pud_init(pud_t *pud_page, unsigned long addr, unsigned long end,
402 unsigned long page_size_mask)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100403{
Andi Kleence0c0e52008-05-02 11:46:49 +0200404 unsigned long pages = 0;
Andi Kleencc615032008-03-12 03:53:28 +0100405 unsigned long last_map_addr = end;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200406 int i = pud_index(addr);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100407
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100408 for (; i < PTRS_PER_PUD; i++, addr = (addr & PUD_MASK) + PUD_SIZE) {
Keith Mannthey6ad91652006-09-26 10:52:36 +0200409 unsigned long pmd_phys;
410 pud_t *pud = pud_page + pud_index(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 pmd_t *pmd;
412
Keith Mannthey6ad91652006-09-26 10:52:36 +0200413 if (addr >= end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100416 if (!after_bootmem &&
417 !e820_any_mapped(addr, addr+PUD_SIZE, 0)) {
418 set_pud(pud, __pud(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 continue;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100420 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Keith Mannthey6ad91652006-09-26 10:52:36 +0200422 if (pud_val(*pud)) {
Andi Kleenef925762008-04-17 17:40:45 +0200423 if (!pud_large(*pud))
Yinghai Lub50efd22008-07-08 01:41:05 -0700424 last_map_addr = phys_pmd_update(pud, addr, end,
425 page_size_mask);
Andi Kleenef925762008-04-17 17:40:45 +0200426 continue;
427 }
428
Yinghai Lub50efd22008-07-08 01:41:05 -0700429 if (page_size_mask & (1<<PG_LEVEL_1G)) {
Andi Kleence0c0e52008-05-02 11:46:49 +0200430 pages++;
Andi Kleenef925762008-04-17 17:40:45 +0200431 set_pte((pte_t *)pud,
432 pfn_pte(addr >> PAGE_SHIFT, PAGE_KERNEL_LARGE));
Andi Kleencc615032008-03-12 03:53:28 +0100433 last_map_addr = (addr & PUD_MASK) + PUD_SIZE;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200434 continue;
435 }
436
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200437 pmd = alloc_low_page(&pmd_phys);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100438
Matt Tolentino44df75e2006-01-17 07:03:41 +0100439 spin_lock(&init_mm.page_table_lock);
Yinghai Lub50efd22008-07-08 01:41:05 -0700440 last_map_addr = phys_pmd_init(pmd, addr, end, page_size_mask);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400441 unmap_low_page(pmd);
442 pud_populate(&init_mm, pud, __va(pmd_phys));
Matt Tolentino44df75e2006-01-17 07:03:41 +0100443 spin_unlock(&init_mm.page_table_lock);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 }
Andi Kleen1a2b4412008-01-30 13:33:54 +0100446 __flush_tlb_all();
Andi Kleence0c0e52008-05-02 11:46:49 +0200447 update_page_count(PG_LEVEL_1G, pages);
Andi Kleencc615032008-03-12 03:53:28 +0100448
Yinghai Lu1a0db382008-06-24 14:56:20 -0700449 return last_map_addr;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100450}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400452static unsigned long __meminit
Yinghai Lub50efd22008-07-08 01:41:05 -0700453phys_pud_update(pgd_t *pgd, unsigned long addr, unsigned long end,
454 unsigned long page_size_mask)
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400455{
456 pud_t *pud;
457
458 pud = (pud_t *)pgd_page_vaddr(*pgd);
459
Yinghai Lub50efd22008-07-08 01:41:05 -0700460 return phys_pud_init(pud, addr, end, page_size_mask);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400461}
462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463static void __init find_early_table_space(unsigned long end)
464{
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400465 unsigned long puds, tables, start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467 puds = (end + PUD_SIZE - 1) >> PUD_SHIFT;
Andi Kleenef925762008-04-17 17:40:45 +0200468 tables = round_up(puds * sizeof(pud_t), PAGE_SIZE);
469 if (!direct_gbpages) {
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400470 unsigned long pmds = (end + PMD_SIZE - 1) >> PMD_SHIFT;
Andi Kleenef925762008-04-17 17:40:45 +0200471 tables += round_up(pmds * sizeof(pmd_t), PAGE_SIZE);
472 }
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400473 if (!cpu_has_pse) {
474 unsigned long ptes = (end + PAGE_SIZE - 1) >> PAGE_SHIFT;
475 tables += round_up(ptes * sizeof(pte_t), PAGE_SIZE);
476 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100478 /*
479 * RED-PEN putting page tables only on node 0 could
480 * cause a hotspot and fill up ZONE_DMA. The page tables
481 * need roughly 0.5KB per GB.
482 */
483 start = 0x8000;
Yinghai Lu24a5da72008-02-01 17:49:41 +0100484 table_start = find_e820_area(start, end, tables, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 if (table_start == -1UL)
486 panic("Cannot find space for the kernel page tables");
487
488 table_start >>= PAGE_SHIFT;
489 table_end = table_start;
Yinghai Lud86623a2008-06-24 14:57:29 -0700490 table_top = table_start + (tables >> PAGE_SHIFT);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100491
Yinghai Lud86623a2008-06-24 14:57:29 -0700492 printk(KERN_DEBUG "kernel direct mapping tables up to %lx @ %lx-%lx\n",
493 end, table_start << PAGE_SHIFT, table_top << PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494}
495
Andi Kleenef925762008-04-17 17:40:45 +0200496static void __init init_gbpages(void)
497{
498 if (direct_gbpages && cpu_has_gbpages)
499 printk(KERN_INFO "Using GB pages for direct mapping\n");
500 else
501 direct_gbpages = 0;
502}
503
Yinghai Lu03273182008-04-18 17:49:15 -0700504#ifdef CONFIG_MEMTEST
Yinghai Luc64df702008-03-21 18:56:19 -0700505
506static void __init memtest(unsigned long start_phys, unsigned long size,
507 unsigned pattern)
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700508{
509 unsigned long i;
510 unsigned long *start;
511 unsigned long start_bad;
512 unsigned long last_bad;
513 unsigned long val;
514 unsigned long start_phys_aligned;
515 unsigned long count;
516 unsigned long incr;
517
518 switch (pattern) {
519 case 0:
520 val = 0UL;
521 break;
522 case 1:
523 val = -1UL;
524 break;
525 case 2:
526 val = 0x5555555555555555UL;
527 break;
528 case 3:
529 val = 0xaaaaaaaaaaaaaaaaUL;
530 break;
531 default:
532 return;
533 }
534
535 incr = sizeof(unsigned long);
536 start_phys_aligned = ALIGN(start_phys, incr);
537 count = (size - (start_phys_aligned - start_phys))/incr;
538 start = __va(start_phys_aligned);
539 start_bad = 0;
540 last_bad = 0;
541
542 for (i = 0; i < count; i++)
543 start[i] = val;
544 for (i = 0; i < count; i++, start++, start_phys_aligned += incr) {
545 if (*start != val) {
546 if (start_phys_aligned == last_bad + incr) {
547 last_bad += incr;
548 } else {
549 if (start_bad) {
Yinghai Ludcfe9462008-04-15 23:17:42 -0700550 printk(KERN_CONT "\n %016lx bad mem addr %016lx - %016lx reserved",
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700551 val, start_bad, last_bad + incr);
552 reserve_early(start_bad, last_bad - start_bad, "BAD RAM");
553 }
554 start_bad = last_bad = start_phys_aligned;
555 }
556 }
557 }
558 if (start_bad) {
Yinghai Ludcfe9462008-04-15 23:17:42 -0700559 printk(KERN_CONT "\n %016lx bad mem addr %016lx - %016lx reserved",
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700560 val, start_bad, last_bad + incr);
561 reserve_early(start_bad, last_bad - start_bad, "BAD RAM");
562 }
563
564}
565
Yinghai Lu03273182008-04-18 17:49:15 -0700566/* default is disabled */
567static int memtest_pattern __initdata;
Yinghai Luc64df702008-03-21 18:56:19 -0700568
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700569static int __init parse_memtest(char *arg)
570{
571 if (arg)
Yinghai Luc64df702008-03-21 18:56:19 -0700572 memtest_pattern = simple_strtoul(arg, NULL, 0);
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700573 return 0;
574}
575
576early_param("memtest", parse_memtest);
577
578static void __init early_memtest(unsigned long start, unsigned long end)
579{
Andrew Morton27df66a2008-07-03 10:14:10 +0200580 u64 t_start, t_size;
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700581 unsigned pattern;
582
Yinghai Luc64df702008-03-21 18:56:19 -0700583 if (!memtest_pattern)
584 return;
585
586 printk(KERN_INFO "early_memtest: pattern num %d", memtest_pattern);
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700587 for (pattern = 0; pattern < memtest_pattern; pattern++) {
588 t_start = start;
589 t_size = 0;
590 while (t_start < end) {
591 t_start = find_e820_area_size(t_start, &t_size, 1);
592
593 /* done ? */
594 if (t_start >= end)
595 break;
596 if (t_start + t_size > end)
597 t_size = end - t_start;
598
Andrew Morton27df66a2008-07-03 10:14:10 +0200599 printk(KERN_CONT "\n %016llx - %016llx pattern %d",
600 (unsigned long long)t_start,
601 (unsigned long long)t_start + t_size, pattern);
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700602
603 memtest(t_start, t_size, pattern);
604
605 t_start += t_size;
606 }
607 }
Yinghai Luc64df702008-03-21 18:56:19 -0700608 printk(KERN_CONT "\n");
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700609}
Yinghai Luc64df702008-03-21 18:56:19 -0700610#else
611static void __init early_memtest(unsigned long start, unsigned long end)
612{
613}
614#endif
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700615
Yinghai Lub50efd22008-07-08 01:41:05 -0700616static unsigned long __init kernel_physical_mapping_init(unsigned long start,
617 unsigned long end,
618 unsigned long page_size_mask)
619{
620
621 unsigned long next, last_map_addr = end;
622
623 start = (unsigned long)__va(start);
624 end = (unsigned long)__va(end);
625
626 for (; start < end; start = next) {
627 pgd_t *pgd = pgd_offset_k(start);
628 unsigned long pud_phys;
629 pud_t *pud;
630
631 next = start + PGDIR_SIZE;
632 if (next > end)
633 next = end;
634
635 if (pgd_val(*pgd)) {
636 last_map_addr = phys_pud_update(pgd, __pa(start),
637 __pa(end), page_size_mask);
638 continue;
639 }
640
641 if (after_bootmem)
642 pud = pud_offset(pgd, start & PGDIR_MASK);
643 else
644 pud = alloc_low_page(&pud_phys);
645
646 last_map_addr = phys_pud_init(pud, __pa(start), __pa(next),
647 page_size_mask);
648 unmap_low_page(pud);
649 pgd_populate(&init_mm, pgd_offset_k(start),
650 __va(pud_phys));
651 }
652
653 return last_map_addr;
654}
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100655/*
656 * Setup the direct mapping of the physical memory at PAGE_OFFSET.
657 * This runs before bootmem is initialized and gets pages directly from
658 * the physical memory. To access them they are temporarily mapped.
659 */
Yinghai Lub50efd22008-07-08 01:41:05 -0700660unsigned long __init_refok init_memory_mapping(unsigned long start,
661 unsigned long end)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100662{
Yinghai Lub50efd22008-07-08 01:41:05 -0700663 unsigned long last_map_addr;
664 unsigned long page_size_mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700666 printk(KERN_INFO "init_memory_mapping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100668 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 * Find space for the kernel direct mapping tables.
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100670 *
671 * Later we should allocate these tables in the local node of the
672 * memory mapped. Unfortunately this is done currently before the
673 * nodes are discovered.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 */
Andi Kleenef925762008-04-17 17:40:45 +0200675 if (!after_bootmem) {
676 init_gbpages();
Matt Tolentino44df75e2006-01-17 07:03:41 +0100677 find_early_table_space(end);
Andi Kleenef925762008-04-17 17:40:45 +0200678 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Yinghai Lub50efd22008-07-08 01:41:05 -0700680 if (direct_gbpages)
681 page_size_mask |= 1 << PG_LEVEL_1G;
682 if (cpu_has_pse)
683 page_size_mask |= 1 << PG_LEVEL_2M;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Yinghai Lub50efd22008-07-08 01:41:05 -0700685 last_map_addr = kernel_physical_mapping_init(start, end,
686 page_size_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Matt Tolentino44df75e2006-01-17 07:03:41 +0100688 if (!after_bootmem)
Glauber de Oliveira Costaf51c9452007-07-22 11:12:29 +0200689 mmu_cr4_features = read_cr4();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 __flush_tlb_all();
Andi Kleen75175272008-01-30 13:33:17 +0100691
Yinghai Lub50efd22008-07-08 01:41:05 -0700692 if (!after_bootmem && table_end > table_start)
Yinghai Lu24a5da72008-02-01 17:49:41 +0100693 reserve_early(table_start << PAGE_SHIFT,
694 table_end << PAGE_SHIFT, "PGTABLE");
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700695
Yinghai Lub50efd22008-07-08 01:41:05 -0700696 printk(KERN_INFO "last_map_addr: %lx end: %lx\n",
697 last_map_addr, end);
698
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700699 if (!after_bootmem)
Yinghai Lub50efd22008-07-08 01:41:05 -0700700 early_memtest(start, end);
Andi Kleencc615032008-03-12 03:53:28 +0100701
Yinghai Lu1a0db382008-06-24 14:56:20 -0700702 return last_map_addr >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703}
704
Matt Tolentino2b976902005-06-23 00:08:06 -0700705#ifndef CONFIG_NUMA
Yinghai Lu1f75d7e2008-06-22 02:44:49 -0700706void __init initmem_init(unsigned long start_pfn, unsigned long end_pfn)
707{
708 unsigned long bootmap_size, bootmap;
709
710 bootmap_size = bootmem_bootmap_pages(end_pfn)<<PAGE_SHIFT;
711 bootmap = find_e820_area(0, end_pfn<<PAGE_SHIFT, bootmap_size,
712 PAGE_SIZE);
713 if (bootmap == -1L)
714 panic("Cannot find bootmem map of size %ld\n", bootmap_size);
Yinghai Lu346cafe2008-06-23 03:06:14 -0700715 /* don't touch min_low_pfn */
716 bootmap_size = init_bootmem_node(NODE_DATA(0), bootmap >> PAGE_SHIFT,
717 0, end_pfn);
Yinghai Lu1f75d7e2008-06-22 02:44:49 -0700718 e820_register_active_regions(0, start_pfn, end_pfn);
719 free_bootmem_with_active_regions(0, end_pfn);
720 early_res_to_bootmem(0, end_pfn<<PAGE_SHIFT);
721 reserve_bootmem(bootmap, bootmap_size, BOOTMEM_DEFAULT);
722}
723
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724void __init paging_init(void)
725{
Mel Gorman6391af12006-10-11 01:20:39 -0700726 unsigned long max_zone_pfns[MAX_NR_ZONES];
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100727
Mel Gorman6391af12006-10-11 01:20:39 -0700728 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
729 max_zone_pfns[ZONE_DMA] = MAX_DMA_PFN;
730 max_zone_pfns[ZONE_DMA32] = MAX_DMA32_PFN;
Yinghai Luc987d122008-06-24 22:14:09 -0700731 max_zone_pfns[ZONE_NORMAL] = max_pfn;
Mel Gorman6391af12006-10-11 01:20:39 -0700732
Yinghai Luc987d122008-06-24 22:14:09 -0700733 memory_present(0, 0, max_pfn);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100734 sparse_init();
Mel Gorman5cb248a2006-09-27 01:49:52 -0700735 free_area_init_nodes(max_zone_pfns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736}
737#endif
738
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100739/*
Matt Tolentino44df75e2006-01-17 07:03:41 +0100740 * Memory hotplug specific functions
Matt Tolentino44df75e2006-01-17 07:03:41 +0100741 */
Yasunori Gotobc02af92006-06-27 02:53:30 -0700742#ifdef CONFIG_MEMORY_HOTPLUG
743/*
Yasunori Gotobc02af92006-06-27 02:53:30 -0700744 * Memory is added always to NORMAL zone. This means you will never get
745 * additional DMA/DMA32 memory.
746 */
747int arch_add_memory(int nid, u64 start, u64 size)
748{
749 struct pglist_data *pgdat = NODE_DATA(nid);
Christoph Lameter776ed982006-09-25 23:31:09 -0700750 struct zone *zone = pgdat->node_zones + ZONE_NORMAL;
Andi Kleencc615032008-03-12 03:53:28 +0100751 unsigned long last_mapped_pfn, start_pfn = start >> PAGE_SHIFT;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700752 unsigned long nr_pages = size >> PAGE_SHIFT;
753 int ret;
754
Andi Kleencc615032008-03-12 03:53:28 +0100755 last_mapped_pfn = init_memory_mapping(start, start + size-1);
756 if (last_mapped_pfn > max_pfn_mapped)
757 max_pfn_mapped = last_mapped_pfn;
Keith Mannthey45e0b782006-09-30 23:27:09 -0700758
Yasunori Gotobc02af92006-06-27 02:53:30 -0700759 ret = __add_pages(zone, start_pfn, nr_pages);
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100760 WARN_ON(1);
Yasunori Gotobc02af92006-06-27 02:53:30 -0700761
Yasunori Gotobc02af92006-06-27 02:53:30 -0700762 return ret;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700763}
764EXPORT_SYMBOL_GPL(arch_add_memory);
765
Yasunori Goto82432292006-11-18 22:19:40 -0800766#if !defined(CONFIG_ACPI_NUMA) && defined(CONFIG_NUMA)
Keith Mannthey4942e992006-09-30 23:27:06 -0700767int memory_add_physaddr_to_nid(u64 start)
768{
769 return 0;
770}
Keith Mannthey8c2676a2006-09-30 23:27:07 -0700771EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
Keith Mannthey4942e992006-09-30 23:27:06 -0700772#endif
773
Keith Mannthey45e0b782006-09-30 23:27:09 -0700774#endif /* CONFIG_MEMORY_HOTPLUG */
775
Arjan van de Venae531c22008-04-24 23:40:47 +0200776/*
777 * devmem_is_allowed() checks to see if /dev/mem access to a certain address
778 * is valid. The argument is a physical page number.
779 *
780 *
781 * On x86, access has to be given to the first megabyte of ram because that area
782 * contains bios code and data regions used by X and dosemu and similar apps.
783 * Access has to be given to non-kernel-ram areas as well, these contain the PCI
784 * mmio resources as well as potential bios/acpi data regions.
785 */
786int devmem_is_allowed(unsigned long pagenr)
787{
788 if (pagenr <= 256)
789 return 1;
790 if (!page_is_ram(pagenr))
791 return 1;
792 return 0;
793}
794
795
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100796static struct kcore_list kcore_mem, kcore_vmalloc, kcore_kernel,
797 kcore_modules, kcore_vsyscall;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
799void __init mem_init(void)
800{
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200801 long codesize, reservedpages, datasize, initsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
Jon Mason0dc243a2006-06-26 13:58:11 +0200803 pci_iommu_alloc();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
Yinghai Lu48ddb152008-01-30 13:32:36 +0100805 /* clear_bss() already clear the empty_zero_page */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
807 reservedpages = 0;
808
809 /* this will put all low memory onto the freelists */
Matt Tolentino2b976902005-06-23 00:08:06 -0700810#ifdef CONFIG_NUMA
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200811 totalram_pages = numa_free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812#else
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200813 totalram_pages = free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814#endif
Yinghai Luc987d122008-06-24 22:14:09 -0700815 reservedpages = max_pfn - totalram_pages -
816 absent_pages_in_range(0, max_pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 after_bootmem = 1;
818
819 codesize = (unsigned long) &_etext - (unsigned long) &_text;
820 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
821 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
822
823 /* Register memory areas for /proc/kcore */
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100824 kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
825 kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 VMALLOC_END-VMALLOC_START);
827 kclist_add(&kcore_kernel, &_stext, _end - _stext);
828 kclist_add(&kcore_modules, (void *)MODULES_VADDR, MODULES_LEN);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100829 kclist_add(&kcore_vsyscall, (void *)VSYSCALL_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 VSYSCALL_END - VSYSCALL_START);
831
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100832 printk(KERN_INFO "Memory: %luk/%luk available (%ldk kernel code, "
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100833 "%ldk reserved, %ldk data, %ldk init)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
Yinghai Luc987d122008-06-24 22:14:09 -0700835 max_pfn << (PAGE_SHIFT-10),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 codesize >> 10,
837 reservedpages << (PAGE_SHIFT-10),
838 datasize >> 10,
839 initsize >> 10);
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100840
841 cpa_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842}
843
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200844void free_init_pages(char *what, unsigned long begin, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845{
Thomas Gleixnerbfc734b2008-02-09 23:24:09 +0100846 unsigned long addr = begin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Thomas Gleixnerbfc734b2008-02-09 23:24:09 +0100848 if (addr >= end)
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200849 return;
850
Ingo Molnaree01f112008-01-30 13:34:09 +0100851 /*
852 * If debugging page accesses then do not free this memory but
853 * mark them not present - any buggy init-section access will
854 * create a kernel page fault:
855 */
856#ifdef CONFIG_DEBUG_PAGEALLOC
857 printk(KERN_INFO "debug: unmapping init memory %08lx..%08lx\n",
858 begin, PAGE_ALIGN(end));
859 set_memory_np(begin, (end - begin) >> PAGE_SHIFT);
860#else
Jan Beulich6fb14752007-05-02 19:27:10 +0200861 printk(KERN_INFO "Freeing %s: %luk freed\n", what, (end - begin) >> 10);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100862
Thomas Gleixnerbfc734b2008-02-09 23:24:09 +0100863 for (; addr < end; addr += PAGE_SIZE) {
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700864 ClearPageReserved(virt_to_page(addr));
865 init_page_count(virt_to_page(addr));
866 memset((void *)(addr & ~(PAGE_SIZE-1)),
867 POISON_FREE_INITMEM, PAGE_SIZE);
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700868 free_page(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 totalram_pages++;
870 }
Ingo Molnaree01f112008-01-30 13:34:09 +0100871#endif
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200872}
873
874void free_initmem(void)
875{
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200876 free_init_pages("unused kernel memory",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700877 (unsigned long)(&__init_begin),
878 (unsigned long)(&__init_end));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879}
880
Arjan van de Ven67df1972006-01-06 00:12:04 -0800881#ifdef CONFIG_DEBUG_RODATA
Arjan van de Venedeed302008-01-30 13:34:08 +0100882const int rodata_test_data = 0xC3;
883EXPORT_SYMBOL_GPL(rodata_test_data);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800884
Arjan van de Ven67df1972006-01-06 00:12:04 -0800885void mark_rodata_ro(void)
886{
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -0500887 unsigned long start = PFN_ALIGN(_stext), end = PFN_ALIGN(__end_rodata);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800888
Jan Beulich6fb14752007-05-02 19:27:10 +0200889 printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700890 (end - start) >> 10);
Arjan van de Ven984bb802008-02-06 22:39:45 +0100891 set_memory_ro(start, (end - start) >> PAGE_SHIFT);
892
893 /*
894 * The rodata section (but not the kernel text!) should also be
895 * not-executable.
896 */
897 start = ((unsigned long)__start_rodata + PAGE_SIZE - 1) & PAGE_MASK;
898 set_memory_nx(start, (end - start) >> PAGE_SHIFT);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800899
Arjan van de Ven1a487252008-01-30 13:34:09 +0100900 rodata_test();
901
Andi Kleen0c42f392008-01-30 13:33:42 +0100902#ifdef CONFIG_CPA_DEBUG
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100903 printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, end);
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100904 set_memory_rw(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +0100905
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100906 printk(KERN_INFO "Testing CPA: again\n");
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100907 set_memory_ro(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +0100908#endif
Arjan van de Ven67df1972006-01-06 00:12:04 -0800909}
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -0500910
Arjan van de Ven67df1972006-01-06 00:12:04 -0800911#endif
912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913#ifdef CONFIG_BLK_DEV_INITRD
914void free_initrd_mem(unsigned long start, unsigned long end)
915{
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700916 free_init_pages("initrd memory", start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917}
918#endif
919
Yinghai Lud2dbf342008-06-13 02:00:56 -0700920int __init reserve_bootmem_generic(unsigned long phys, unsigned long len,
921 int flags)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100922{
Matt Tolentino2b976902005-06-23 00:08:06 -0700923#ifdef CONFIG_NUMA
Yinghai Lu8b3cd09e2008-03-18 12:50:21 -0700924 int nid, next_nid;
Yinghai Lu6a07a0e2008-06-23 14:02:36 -0700925 int ret;
Andi Kleen5e58a022006-11-14 16:57:46 +0100926#endif
927 unsigned long pfn = phys >> PAGE_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100928
Yinghai Luc987d122008-06-24 22:14:09 -0700929 if (pfn >= max_pfn) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100930 /*
931 * This can happen with kdump kernels when accessing
932 * firmware tables:
933 */
Thomas Gleixner67794292008-03-21 21:27:10 +0100934 if (pfn < max_pfn_mapped)
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200935 return -EFAULT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100936
Yinghai Lu6a07a0e2008-06-23 14:02:36 -0700937 printk(KERN_ERR "reserve_bootmem: illegal reserve %lx %lu\n",
Andi Kleen5e58a022006-11-14 16:57:46 +0100938 phys, len);
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200939 return -EFAULT;
Andi Kleen5e58a022006-11-14 16:57:46 +0100940 }
941
942 /* Should check here against the e820 map to avoid double free */
943#ifdef CONFIG_NUMA
Yinghai Lu8b3cd09e2008-03-18 12:50:21 -0700944 nid = phys_to_nid(phys);
945 next_nid = phys_to_nid(phys + len - 1);
946 if (nid == next_nid)
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200947 ret = reserve_bootmem_node(NODE_DATA(nid), phys, len, flags);
Yinghai Lu8b3cd09e2008-03-18 12:50:21 -0700948 else
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200949 ret = reserve_bootmem(phys, len, flags);
950
951 if (ret != 0)
952 return ret;
953
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100954#else
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800955 reserve_bootmem(phys, len, BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956#endif
Yinghai Lu8b3cd09e2008-03-18 12:50:21 -0700957
Mel Gorman0e0b8642006-09-27 01:49:56 -0700958 if (phys+len <= MAX_DMA_PFN*PAGE_SIZE) {
Andi Kleene18c6872005-11-05 17:25:53 +0100959 dma_reserve += len / PAGE_SIZE;
Mel Gorman0e0b8642006-09-27 01:49:56 -0700960 set_dma_reserve(dma_reserve);
961 }
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200962
963 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964}
965
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100966int kern_addr_valid(unsigned long addr)
967{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 unsigned long above = ((long)addr) >> __VIRTUAL_MASK_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100969 pgd_t *pgd;
970 pud_t *pud;
971 pmd_t *pmd;
972 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
974 if (above != 0 && above != -1UL)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100975 return 0;
976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 pgd = pgd_offset_k(addr);
978 if (pgd_none(*pgd))
979 return 0;
980
981 pud = pud_offset(pgd, addr);
982 if (pud_none(*pud))
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100983 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
985 pmd = pmd_offset(pud, addr);
986 if (pmd_none(*pmd))
987 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100988
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 if (pmd_large(*pmd))
990 return pfn_valid(pmd_pfn(*pmd));
991
992 pte = pte_offset_kernel(pmd, addr);
993 if (pte_none(*pte))
994 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 return pfn_valid(pte_pfn(*pte));
997}
998
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100999/*
1000 * A pseudo VMA to allow ptrace access for the vsyscall page. This only
1001 * covers the 64bit vsyscall page now. 32bit has a real VMA now and does
1002 * not need special handling anymore:
1003 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004static struct vm_area_struct gate_vma = {
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001005 .vm_start = VSYSCALL_START,
1006 .vm_end = VSYSCALL_START + (VSYSCALL_MAPPED_PAGES * PAGE_SIZE),
1007 .vm_page_prot = PAGE_READONLY_EXEC,
1008 .vm_flags = VM_READ | VM_EXEC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009};
1010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011struct vm_area_struct *get_gate_vma(struct task_struct *tsk)
1012{
1013#ifdef CONFIG_IA32_EMULATION
Andi Kleen1e014412005-04-16 15:24:55 -07001014 if (test_tsk_thread_flag(tsk, TIF_IA32))
1015 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016#endif
1017 return &gate_vma;
1018}
1019
1020int in_gate_area(struct task_struct *task, unsigned long addr)
1021{
1022 struct vm_area_struct *vma = get_gate_vma(task);
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001023
Andi Kleen1e014412005-04-16 15:24:55 -07001024 if (!vma)
1025 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001026
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 return (addr >= vma->vm_start) && (addr < vma->vm_end);
1028}
1029
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001030/*
1031 * Use this when you have no reliable task/vma, typically from interrupt
1032 * context. It is less reliable than using the task's vma and may give
1033 * false positives:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 */
1035int in_gate_area_no_task(unsigned long addr)
1036{
Andi Kleen1e014412005-04-16 15:24:55 -07001037 return (addr >= VSYSCALL_START) && (addr < VSYSCALL_END);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038}
Zou Nan hai2e1c49d2007-06-01 00:46:28 -07001039
Andi Kleen2aae9502007-07-21 17:10:01 +02001040const char *arch_vma_name(struct vm_area_struct *vma)
1041{
1042 if (vma->vm_mm && vma->vm_start == (long)vma->vm_mm->context.vdso)
1043 return "[vdso]";
1044 if (vma == &gate_vma)
1045 return "[vsyscall]";
1046 return NULL;
1047}
Christoph Lameter0889eba2007-10-16 01:24:15 -07001048
1049#ifdef CONFIG_SPARSEMEM_VMEMMAP
1050/*
1051 * Initialise the sparsemem vmemmap using huge-pages at the PMD level.
1052 */
Yinghai Luc2b91e22008-04-12 01:19:24 -07001053static long __meminitdata addr_start, addr_end;
1054static void __meminitdata *p_start, *p_end;
1055static int __meminitdata node_start;
1056
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001057int __meminit
1058vmemmap_populate(struct page *start_page, unsigned long size, int node)
Christoph Lameter0889eba2007-10-16 01:24:15 -07001059{
1060 unsigned long addr = (unsigned long)start_page;
1061 unsigned long end = (unsigned long)(start_page + size);
1062 unsigned long next;
1063 pgd_t *pgd;
1064 pud_t *pud;
1065 pmd_t *pmd;
1066
1067 for (; addr < end; addr = next) {
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001068 void *p = NULL;
Christoph Lameter0889eba2007-10-16 01:24:15 -07001069
1070 pgd = vmemmap_pgd_populate(addr, node);
1071 if (!pgd)
1072 return -ENOMEM;
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001073
Christoph Lameter0889eba2007-10-16 01:24:15 -07001074 pud = vmemmap_pud_populate(pgd, addr, node);
1075 if (!pud)
1076 return -ENOMEM;
1077
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001078 if (!cpu_has_pse) {
1079 next = (addr + PAGE_SIZE) & PAGE_MASK;
1080 pmd = vmemmap_pmd_populate(pud, addr, node);
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001081
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001082 if (!pmd)
1083 return -ENOMEM;
1084
1085 p = vmemmap_pte_populate(pmd, addr, node);
1086
Christoph Lameter0889eba2007-10-16 01:24:15 -07001087 if (!p)
1088 return -ENOMEM;
1089
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001090 addr_end = addr + PAGE_SIZE;
1091 p_end = p + PAGE_SIZE;
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001092 } else {
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001093 next = pmd_addr_end(addr, end);
1094
1095 pmd = pmd_offset(pud, addr);
1096 if (pmd_none(*pmd)) {
1097 pte_t entry;
1098
1099 p = vmemmap_alloc_block(PMD_SIZE, node);
1100 if (!p)
1101 return -ENOMEM;
1102
1103 entry = pfn_pte(__pa(p) >> PAGE_SHIFT,
1104 PAGE_KERNEL_LARGE);
1105 set_pmd(pmd, __pmd(pte_val(entry)));
1106
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001107 /* check to see if we have contiguous blocks */
1108 if (p_end != p || node_start != node) {
1109 if (p_start)
1110 printk(KERN_DEBUG " [%lx-%lx] PMD -> [%p-%p] on node %d\n",
1111 addr_start, addr_end-1, p_start, p_end-1, node_start);
1112 addr_start = addr;
1113 node_start = node;
1114 p_start = p;
1115 }
Yinghai Lu49c980d2008-07-03 12:29:34 -07001116
1117 addr_end = addr + PMD_SIZE;
1118 p_end = p + PMD_SIZE;
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001119 } else
1120 vmemmap_verify((pte_t *)pmd, node, addr, next);
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001121 }
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001122
Christoph Lameter0889eba2007-10-16 01:24:15 -07001123 }
Christoph Lameter0889eba2007-10-16 01:24:15 -07001124 return 0;
1125}
Yinghai Luc2b91e22008-04-12 01:19:24 -07001126
1127void __meminit vmemmap_populate_print_last(void)
1128{
1129 if (p_start) {
1130 printk(KERN_DEBUG " [%lx-%lx] PMD -> [%p-%p] on node %d\n",
1131 addr_start, addr_end-1, p_start, p_end-1, node_start);
1132 p_start = NULL;
1133 p_end = NULL;
1134 node_start = 0;
1135 }
1136}
Christoph Lameter0889eba2007-10-16 01:24:15 -07001137#endif