blob: b10b7f17ea58d414576ded22b3c1b713fb06d6b6 [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/*
Ingo Molnar88f3aec2008-02-21 11:04:11 +0100205 * The head.S code sets up the kernel high mapping:
206 *
207 * from __START_KERNEL_map to __START_KERNEL_map + size (== _end-_text)
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100208 *
209 * phys_addr holds the negative offset to the kernel, which is added
210 * to the compile time generated pmds. This results in invalid pmds up
211 * to the point where we hit the physaddr 0 mapping.
212 *
213 * We limit the mappings to the region from _text to _end. _end is
214 * rounded up to the 2MB boundary. This catches the invalid pmds as
215 * well, as they are located before _text:
216 */
217void __init cleanup_highmap(void)
218{
219 unsigned long vaddr = __START_KERNEL_map;
220 unsigned long end = round_up((unsigned long)_end, PMD_SIZE) - 1;
221 pmd_t *pmd = level2_kernel_pgt;
222 pmd_t *last_pmd = pmd + PTRS_PER_PMD;
223
224 for (; pmd < last_pmd; pmd++, vaddr += PMD_SIZE) {
Hugh Dickins2884f112008-05-28 19:36:07 +0100225 if (pmd_none(*pmd))
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100226 continue;
227 if (vaddr < (unsigned long) _text || vaddr > end)
228 set_pmd(pmd, __pmd(0));
229 }
230}
231
Andi Kleen75175272008-01-30 13:33:17 +0100232static unsigned long __initdata table_start;
233static unsigned long __meminitdata table_end;
Yinghai Lud86623a2008-06-24 14:57:29 -0700234static unsigned long __meminitdata table_top;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200236static __meminit void *alloc_low_page(unsigned long *phys)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100237{
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200238 unsigned long pfn = table_end++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 void *adr;
240
Matt Tolentino44df75e2006-01-17 07:03:41 +0100241 if (after_bootmem) {
242 adr = (void *)get_zeroed_page(GFP_ATOMIC);
243 *phys = __pa(adr);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100244
Matt Tolentino44df75e2006-01-17 07:03:41 +0100245 return adr;
246 }
247
Yinghai Lud86623a2008-06-24 14:57:29 -0700248 if (pfn >= table_top)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100249 panic("alloc_low_page: ran out of memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200251 adr = early_ioremap(pfn * PAGE_SIZE, PAGE_SIZE);
252 memset(adr, 0, PAGE_SIZE);
253 *phys = pfn * PAGE_SIZE;
254 return adr;
255}
256
257static __meminit void unmap_low_page(void *adr)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100258{
Matt Tolentino44df75e2006-01-17 07:03:41 +0100259 if (after_bootmem)
260 return;
261
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200262 early_iounmap(adr, PAGE_SIZE);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100263}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400265static void __meminit
266phys_pte_init(pte_t *pte_page, unsigned long addr, unsigned long end)
267{
268 unsigned pages = 0;
269 int i;
270 pte_t *pte = pte_page + pte_index(addr);
271
272 for(i = pte_index(addr); i < PTRS_PER_PTE; i++, addr += PAGE_SIZE, pte++) {
273
274 if (addr >= end) {
275 if (!after_bootmem) {
276 for(; i < PTRS_PER_PTE; i++, pte++)
277 set_pte(pte, __pte(0));
278 }
279 break;
280 }
281
282 if (pte_val(*pte))
283 continue;
284
285 if (0)
286 printk(" pte=%p addr=%lx pte=%016lx\n",
287 pte, addr, pfn_pte(addr >> PAGE_SHIFT, PAGE_KERNEL).pte);
288 set_pte(pte, pfn_pte(addr >> PAGE_SHIFT, PAGE_KERNEL));
289 pages++;
290 }
291 update_page_count(PG_LEVEL_4K, pages);
292}
293
294static void __meminit
295phys_pte_update(pmd_t *pmd, unsigned long address, unsigned long end)
296{
297 pte_t *pte = (pte_t *)pmd_page_vaddr(*pmd);
298
299 phys_pte_init(pte, address, end);
300}
301
Andi Kleencc615032008-03-12 03:53:28 +0100302static unsigned long __meminit
Keith Mannthey6ad91652006-09-26 10:52:36 +0200303phys_pmd_init(pmd_t *pmd_page, unsigned long address, unsigned long end)
Matt Tolentino44df75e2006-01-17 07:03:41 +0100304{
Andi Kleence0c0e52008-05-02 11:46:49 +0200305 unsigned long pages = 0;
306
Keith Mannthey6ad91652006-09-26 10:52:36 +0200307 int i = pmd_index(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Keith Mannthey6ad91652006-09-26 10:52:36 +0200309 for (; i < PTRS_PER_PMD; i++, address += PMD_SIZE) {
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400310 unsigned long pte_phys;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200311 pmd_t *pmd = pmd_page + pmd_index(address);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400312 pte_t *pte;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100313
Jan Beulich5f51e132006-06-26 13:59:02 +0200314 if (address >= end) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100315 if (!after_bootmem) {
Jan Beulich5f51e132006-06-26 13:59:02 +0200316 for (; i < PTRS_PER_PMD; i++, pmd++)
317 set_pmd(pmd, __pmd(0));
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100318 }
Matt Tolentino44df75e2006-01-17 07:03:41 +0100319 break;
320 }
Keith Mannthey6ad91652006-09-26 10:52:36 +0200321
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400322 if (pmd_val(*pmd)) {
Jeremy Fitzhardinge22b45142008-06-26 12:02:49 -0700323 if (!pmd_large(*pmd))
324 phys_pte_update(pmd, address, end);
Keith Mannthey6ad91652006-09-26 10:52:36 +0200325 continue;
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400326 }
Keith Mannthey6ad91652006-09-26 10:52:36 +0200327
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400328 if (cpu_has_pse) {
329 pages++;
330 set_pte((pte_t *)pmd,
331 pfn_pte(address >> PAGE_SHIFT, PAGE_KERNEL_LARGE));
332 continue;
333 }
334
335 pte = alloc_low_page(&pte_phys);
336 phys_pte_init(pte, address, end);
337 unmap_low_page(pte);
338
339 pmd_populate_kernel(&init_mm, pmd, __va(pte_phys));
Matt Tolentino44df75e2006-01-17 07:03:41 +0100340 }
Andi Kleence0c0e52008-05-02 11:46:49 +0200341 update_page_count(PG_LEVEL_2M, pages);
Andi Kleencc615032008-03-12 03:53:28 +0100342 return address;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100343}
344
Andi Kleencc615032008-03-12 03:53:28 +0100345static unsigned long __meminit
Matt Tolentino44df75e2006-01-17 07:03:41 +0100346phys_pmd_update(pud_t *pud, unsigned long address, unsigned long end)
347{
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100348 pmd_t *pmd = pmd_offset(pud, 0);
Andi Kleencc615032008-03-12 03:53:28 +0100349 unsigned long last_map_addr;
350
Keith Mannthey6ad91652006-09-26 10:52:36 +0200351 spin_lock(&init_mm.page_table_lock);
Andi Kleencc615032008-03-12 03:53:28 +0100352 last_map_addr = phys_pmd_init(pmd, address, end);
Keith Mannthey6ad91652006-09-26 10:52:36 +0200353 spin_unlock(&init_mm.page_table_lock);
354 __flush_tlb_all();
Andi Kleencc615032008-03-12 03:53:28 +0100355 return last_map_addr;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100356}
357
Andi Kleencc615032008-03-12 03:53:28 +0100358static unsigned long __meminit
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100359phys_pud_init(pud_t *pud_page, unsigned long addr, unsigned long end)
360{
Andi Kleence0c0e52008-05-02 11:46:49 +0200361 unsigned long pages = 0;
Andi Kleencc615032008-03-12 03:53:28 +0100362 unsigned long last_map_addr = end;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200363 int i = pud_index(addr);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100364
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100365 for (; i < PTRS_PER_PUD; i++, addr = (addr & PUD_MASK) + PUD_SIZE) {
Keith Mannthey6ad91652006-09-26 10:52:36 +0200366 unsigned long pmd_phys;
367 pud_t *pud = pud_page + pud_index(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 pmd_t *pmd;
369
Keith Mannthey6ad91652006-09-26 10:52:36 +0200370 if (addr >= end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100373 if (!after_bootmem &&
374 !e820_any_mapped(addr, addr+PUD_SIZE, 0)) {
375 set_pud(pud, __pud(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 continue;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Keith Mannthey6ad91652006-09-26 10:52:36 +0200379 if (pud_val(*pud)) {
Andi Kleenef925762008-04-17 17:40:45 +0200380 if (!pud_large(*pud))
Andi Kleencc615032008-03-12 03:53:28 +0100381 last_map_addr = phys_pmd_update(pud, addr, end);
Andi Kleenef925762008-04-17 17:40:45 +0200382 continue;
383 }
384
385 if (direct_gbpages) {
Andi Kleence0c0e52008-05-02 11:46:49 +0200386 pages++;
Andi Kleenef925762008-04-17 17:40:45 +0200387 set_pte((pte_t *)pud,
388 pfn_pte(addr >> PAGE_SHIFT, PAGE_KERNEL_LARGE));
Andi Kleencc615032008-03-12 03:53:28 +0100389 last_map_addr = (addr & PUD_MASK) + PUD_SIZE;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200390 continue;
391 }
392
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200393 pmd = alloc_low_page(&pmd_phys);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100394
Matt Tolentino44df75e2006-01-17 07:03:41 +0100395 spin_lock(&init_mm.page_table_lock);
Andi Kleencc615032008-03-12 03:53:28 +0100396 last_map_addr = phys_pmd_init(pmd, addr, end);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400397 unmap_low_page(pmd);
398 pud_populate(&init_mm, pud, __va(pmd_phys));
Matt Tolentino44df75e2006-01-17 07:03:41 +0100399 spin_unlock(&init_mm.page_table_lock);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 }
Andi Kleen1a2b4412008-01-30 13:33:54 +0100402 __flush_tlb_all();
Andi Kleence0c0e52008-05-02 11:46:49 +0200403 update_page_count(PG_LEVEL_1G, pages);
Andi Kleencc615032008-03-12 03:53:28 +0100404
Yinghai Lu1a0db382008-06-24 14:56:20 -0700405 return last_map_addr;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100406}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400408static unsigned long __meminit
409phys_pud_update(pgd_t *pgd, unsigned long addr, unsigned long end)
410{
411 pud_t *pud;
412
413 pud = (pud_t *)pgd_page_vaddr(*pgd);
414
415 return phys_pud_init(pud, addr, end);
416}
417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418static void __init find_early_table_space(unsigned long end)
419{
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400420 unsigned long puds, tables, start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
422 puds = (end + PUD_SIZE - 1) >> PUD_SHIFT;
Andi Kleenef925762008-04-17 17:40:45 +0200423 tables = round_up(puds * sizeof(pud_t), PAGE_SIZE);
424 if (!direct_gbpages) {
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400425 unsigned long pmds = (end + PMD_SIZE - 1) >> PMD_SHIFT;
Andi Kleenef925762008-04-17 17:40:45 +0200426 tables += round_up(pmds * sizeof(pmd_t), PAGE_SIZE);
427 }
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400428 if (!cpu_has_pse) {
429 unsigned long ptes = (end + PAGE_SIZE - 1) >> PAGE_SHIFT;
430 tables += round_up(ptes * sizeof(pte_t), PAGE_SIZE);
431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100433 /*
434 * RED-PEN putting page tables only on node 0 could
435 * cause a hotspot and fill up ZONE_DMA. The page tables
436 * need roughly 0.5KB per GB.
437 */
438 start = 0x8000;
Yinghai Lu24a5da72008-02-01 17:49:41 +0100439 table_start = find_e820_area(start, end, tables, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 if (table_start == -1UL)
441 panic("Cannot find space for the kernel page tables");
442
443 table_start >>= PAGE_SHIFT;
444 table_end = table_start;
Yinghai Lud86623a2008-06-24 14:57:29 -0700445 table_top = table_start + (tables >> PAGE_SHIFT);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100446
Yinghai Lud86623a2008-06-24 14:57:29 -0700447 printk(KERN_DEBUG "kernel direct mapping tables up to %lx @ %lx-%lx\n",
448 end, table_start << PAGE_SHIFT, table_top << PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449}
450
Andi Kleenef925762008-04-17 17:40:45 +0200451static void __init init_gbpages(void)
452{
453 if (direct_gbpages && cpu_has_gbpages)
454 printk(KERN_INFO "Using GB pages for direct mapping\n");
455 else
456 direct_gbpages = 0;
457}
458
Yinghai Lu03273182008-04-18 17:49:15 -0700459#ifdef CONFIG_MEMTEST
Yinghai Luc64df702008-03-21 18:56:19 -0700460
461static void __init memtest(unsigned long start_phys, unsigned long size,
462 unsigned pattern)
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700463{
464 unsigned long i;
465 unsigned long *start;
466 unsigned long start_bad;
467 unsigned long last_bad;
468 unsigned long val;
469 unsigned long start_phys_aligned;
470 unsigned long count;
471 unsigned long incr;
472
473 switch (pattern) {
474 case 0:
475 val = 0UL;
476 break;
477 case 1:
478 val = -1UL;
479 break;
480 case 2:
481 val = 0x5555555555555555UL;
482 break;
483 case 3:
484 val = 0xaaaaaaaaaaaaaaaaUL;
485 break;
486 default:
487 return;
488 }
489
490 incr = sizeof(unsigned long);
491 start_phys_aligned = ALIGN(start_phys, incr);
492 count = (size - (start_phys_aligned - start_phys))/incr;
493 start = __va(start_phys_aligned);
494 start_bad = 0;
495 last_bad = 0;
496
497 for (i = 0; i < count; i++)
498 start[i] = val;
499 for (i = 0; i < count; i++, start++, start_phys_aligned += incr) {
500 if (*start != val) {
501 if (start_phys_aligned == last_bad + incr) {
502 last_bad += incr;
503 } else {
504 if (start_bad) {
Yinghai Ludcfe9462008-04-15 23:17:42 -0700505 printk(KERN_CONT "\n %016lx bad mem addr %016lx - %016lx reserved",
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700506 val, start_bad, last_bad + incr);
507 reserve_early(start_bad, last_bad - start_bad, "BAD RAM");
508 }
509 start_bad = last_bad = start_phys_aligned;
510 }
511 }
512 }
513 if (start_bad) {
Yinghai Ludcfe9462008-04-15 23:17:42 -0700514 printk(KERN_CONT "\n %016lx bad mem addr %016lx - %016lx reserved",
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700515 val, start_bad, last_bad + incr);
516 reserve_early(start_bad, last_bad - start_bad, "BAD RAM");
517 }
518
519}
520
Yinghai Lu03273182008-04-18 17:49:15 -0700521/* default is disabled */
522static int memtest_pattern __initdata;
Yinghai Luc64df702008-03-21 18:56:19 -0700523
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700524static int __init parse_memtest(char *arg)
525{
526 if (arg)
Yinghai Luc64df702008-03-21 18:56:19 -0700527 memtest_pattern = simple_strtoul(arg, NULL, 0);
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700528 return 0;
529}
530
531early_param("memtest", parse_memtest);
532
533static void __init early_memtest(unsigned long start, unsigned long end)
534{
Andrew Morton27df66a2008-07-03 10:14:10 +0200535 u64 t_start, t_size;
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700536 unsigned pattern;
537
Yinghai Luc64df702008-03-21 18:56:19 -0700538 if (!memtest_pattern)
539 return;
540
541 printk(KERN_INFO "early_memtest: pattern num %d", memtest_pattern);
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700542 for (pattern = 0; pattern < memtest_pattern; pattern++) {
543 t_start = start;
544 t_size = 0;
545 while (t_start < end) {
546 t_start = find_e820_area_size(t_start, &t_size, 1);
547
548 /* done ? */
549 if (t_start >= end)
550 break;
551 if (t_start + t_size > end)
552 t_size = end - t_start;
553
Andrew Morton27df66a2008-07-03 10:14:10 +0200554 printk(KERN_CONT "\n %016llx - %016llx pattern %d",
555 (unsigned long long)t_start,
556 (unsigned long long)t_start + t_size, pattern);
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700557
558 memtest(t_start, t_size, pattern);
559
560 t_start += t_size;
561 }
562 }
Yinghai Luc64df702008-03-21 18:56:19 -0700563 printk(KERN_CONT "\n");
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700564}
Yinghai Luc64df702008-03-21 18:56:19 -0700565#else
566static void __init early_memtest(unsigned long start, unsigned long end)
567{
568}
569#endif
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700570
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100571/*
572 * Setup the direct mapping of the physical memory at PAGE_OFFSET.
573 * This runs before bootmem is initialized and gets pages directly from
574 * the physical memory. To access them they are temporarily mapped.
575 */
Andi Kleencc615032008-03-12 03:53:28 +0100576unsigned long __init_refok init_memory_mapping(unsigned long start, unsigned long end)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100577{
Andi Kleencc615032008-03-12 03:53:28 +0100578 unsigned long next, last_map_addr = end;
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700579 unsigned long start_phys = start, end_phys = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700581 printk(KERN_INFO "init_memory_mapping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100583 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 * Find space for the kernel direct mapping tables.
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100585 *
586 * Later we should allocate these tables in the local node of the
587 * memory mapped. Unfortunately this is done currently before the
588 * nodes are discovered.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 */
Andi Kleenef925762008-04-17 17:40:45 +0200590 if (!after_bootmem) {
591 init_gbpages();
Matt Tolentino44df75e2006-01-17 07:03:41 +0100592 find_early_table_space(end);
Andi Kleenef925762008-04-17 17:40:45 +0200593 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
595 start = (unsigned long)__va(start);
596 end = (unsigned long)__va(end);
597
598 for (; start < end; start = next) {
Matt Tolentino44df75e2006-01-17 07:03:41 +0100599 pgd_t *pgd = pgd_offset_k(start);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100600 unsigned long pud_phys;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100601 pud_t *pud;
602
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400603 next = start + PGDIR_SIZE;
604 if (next > end)
605 next = end;
606
607 if (pgd_val(*pgd)) {
608 last_map_addr = phys_pud_update(pgd, __pa(start), __pa(end));
609 continue;
610 }
611
Matt Tolentino44df75e2006-01-17 07:03:41 +0100612 if (after_bootmem)
Andi Kleend2ae5b52006-06-26 13:57:56 +0200613 pud = pud_offset(pgd, start & PGDIR_MASK);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100614 else
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200615 pud = alloc_low_page(&pud_phys);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100616
Andi Kleencc615032008-03-12 03:53:28 +0100617 last_map_addr = phys_pud_init(pud, __pa(start), __pa(next));
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400618 unmap_low_page(pud);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100619 if (!after_bootmem)
Jeremy Fitzhardingebb23e402008-06-25 00:19:02 -0400620 pgd_populate(&init_mm, pgd_offset_k(start),
621 __va(pud_phys));
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100622 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Matt Tolentino44df75e2006-01-17 07:03:41 +0100624 if (!after_bootmem)
Glauber de Oliveira Costaf51c9452007-07-22 11:12:29 +0200625 mmu_cr4_features = read_cr4();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 __flush_tlb_all();
Andi Kleen75175272008-01-30 13:33:17 +0100627
Yinghai Lu24a5da72008-02-01 17:49:41 +0100628 if (!after_bootmem)
629 reserve_early(table_start << PAGE_SHIFT,
630 table_end << PAGE_SHIFT, "PGTABLE");
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700631
632 if (!after_bootmem)
633 early_memtest(start_phys, end_phys);
Andi Kleencc615032008-03-12 03:53:28 +0100634
Yinghai Lu1a0db382008-06-24 14:56:20 -0700635 return last_map_addr >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636}
637
Matt Tolentino2b976902005-06-23 00:08:06 -0700638#ifndef CONFIG_NUMA
Yinghai Lu1f75d7e2008-06-22 02:44:49 -0700639void __init initmem_init(unsigned long start_pfn, unsigned long end_pfn)
640{
641 unsigned long bootmap_size, bootmap;
642
643 bootmap_size = bootmem_bootmap_pages(end_pfn)<<PAGE_SHIFT;
644 bootmap = find_e820_area(0, end_pfn<<PAGE_SHIFT, bootmap_size,
645 PAGE_SIZE);
646 if (bootmap == -1L)
647 panic("Cannot find bootmem map of size %ld\n", bootmap_size);
Yinghai Lu346cafe2008-06-23 03:06:14 -0700648 /* don't touch min_low_pfn */
649 bootmap_size = init_bootmem_node(NODE_DATA(0), bootmap >> PAGE_SHIFT,
650 0, end_pfn);
Yinghai Lu1f75d7e2008-06-22 02:44:49 -0700651 e820_register_active_regions(0, start_pfn, end_pfn);
652 free_bootmem_with_active_regions(0, end_pfn);
653 early_res_to_bootmem(0, end_pfn<<PAGE_SHIFT);
654 reserve_bootmem(bootmap, bootmap_size, BOOTMEM_DEFAULT);
655}
656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657void __init paging_init(void)
658{
Mel Gorman6391af12006-10-11 01:20:39 -0700659 unsigned long max_zone_pfns[MAX_NR_ZONES];
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100660
Mel Gorman6391af12006-10-11 01:20:39 -0700661 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
662 max_zone_pfns[ZONE_DMA] = MAX_DMA_PFN;
663 max_zone_pfns[ZONE_DMA32] = MAX_DMA32_PFN;
Yinghai Luc987d122008-06-24 22:14:09 -0700664 max_zone_pfns[ZONE_NORMAL] = max_pfn;
Mel Gorman6391af12006-10-11 01:20:39 -0700665
Yinghai Luc987d122008-06-24 22:14:09 -0700666 memory_present(0, 0, max_pfn);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100667 sparse_init();
Mel Gorman5cb248a2006-09-27 01:49:52 -0700668 free_area_init_nodes(max_zone_pfns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669}
670#endif
671
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100672/*
Matt Tolentino44df75e2006-01-17 07:03:41 +0100673 * Memory hotplug specific functions
Matt Tolentino44df75e2006-01-17 07:03:41 +0100674 */
Yasunori Gotobc02af92006-06-27 02:53:30 -0700675#ifdef CONFIG_MEMORY_HOTPLUG
676/*
Yasunori Gotobc02af92006-06-27 02:53:30 -0700677 * Memory is added always to NORMAL zone. This means you will never get
678 * additional DMA/DMA32 memory.
679 */
680int arch_add_memory(int nid, u64 start, u64 size)
681{
682 struct pglist_data *pgdat = NODE_DATA(nid);
Christoph Lameter776ed982006-09-25 23:31:09 -0700683 struct zone *zone = pgdat->node_zones + ZONE_NORMAL;
Andi Kleencc615032008-03-12 03:53:28 +0100684 unsigned long last_mapped_pfn, start_pfn = start >> PAGE_SHIFT;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700685 unsigned long nr_pages = size >> PAGE_SHIFT;
686 int ret;
687
Andi Kleencc615032008-03-12 03:53:28 +0100688 last_mapped_pfn = init_memory_mapping(start, start + size-1);
689 if (last_mapped_pfn > max_pfn_mapped)
690 max_pfn_mapped = last_mapped_pfn;
Keith Mannthey45e0b782006-09-30 23:27:09 -0700691
Yasunori Gotobc02af92006-06-27 02:53:30 -0700692 ret = __add_pages(zone, start_pfn, nr_pages);
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100693 WARN_ON(1);
Yasunori Gotobc02af92006-06-27 02:53:30 -0700694
Yasunori Gotobc02af92006-06-27 02:53:30 -0700695 return ret;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700696}
697EXPORT_SYMBOL_GPL(arch_add_memory);
698
Yasunori Goto82432292006-11-18 22:19:40 -0800699#if !defined(CONFIG_ACPI_NUMA) && defined(CONFIG_NUMA)
Keith Mannthey4942e992006-09-30 23:27:06 -0700700int memory_add_physaddr_to_nid(u64 start)
701{
702 return 0;
703}
Keith Mannthey8c2676a2006-09-30 23:27:07 -0700704EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
Keith Mannthey4942e992006-09-30 23:27:06 -0700705#endif
706
Keith Mannthey45e0b782006-09-30 23:27:09 -0700707#endif /* CONFIG_MEMORY_HOTPLUG */
708
Arjan van de Venae531c22008-04-24 23:40:47 +0200709/*
710 * devmem_is_allowed() checks to see if /dev/mem access to a certain address
711 * is valid. The argument is a physical page number.
712 *
713 *
714 * On x86, access has to be given to the first megabyte of ram because that area
715 * contains bios code and data regions used by X and dosemu and similar apps.
716 * Access has to be given to non-kernel-ram areas as well, these contain the PCI
717 * mmio resources as well as potential bios/acpi data regions.
718 */
719int devmem_is_allowed(unsigned long pagenr)
720{
721 if (pagenr <= 256)
722 return 1;
723 if (!page_is_ram(pagenr))
724 return 1;
725 return 0;
726}
727
728
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100729static struct kcore_list kcore_mem, kcore_vmalloc, kcore_kernel,
730 kcore_modules, kcore_vsyscall;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
732void __init mem_init(void)
733{
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200734 long codesize, reservedpages, datasize, initsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Jon Mason0dc243a2006-06-26 13:58:11 +0200736 pci_iommu_alloc();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Yinghai Lu48ddb152008-01-30 13:32:36 +0100738 /* clear_bss() already clear the empty_zero_page */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
740 reservedpages = 0;
741
742 /* this will put all low memory onto the freelists */
Matt Tolentino2b976902005-06-23 00:08:06 -0700743#ifdef CONFIG_NUMA
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200744 totalram_pages = numa_free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745#else
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200746 totalram_pages = free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747#endif
Yinghai Luc987d122008-06-24 22:14:09 -0700748 reservedpages = max_pfn - totalram_pages -
749 absent_pages_in_range(0, max_pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 after_bootmem = 1;
751
752 codesize = (unsigned long) &_etext - (unsigned long) &_text;
753 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
754 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
755
756 /* Register memory areas for /proc/kcore */
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100757 kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
758 kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 VMALLOC_END-VMALLOC_START);
760 kclist_add(&kcore_kernel, &_stext, _end - _stext);
761 kclist_add(&kcore_modules, (void *)MODULES_VADDR, MODULES_LEN);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100762 kclist_add(&kcore_vsyscall, (void *)VSYSCALL_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 VSYSCALL_END - VSYSCALL_START);
764
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100765 printk(KERN_INFO "Memory: %luk/%luk available (%ldk kernel code, "
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100766 "%ldk reserved, %ldk data, %ldk init)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
Yinghai Luc987d122008-06-24 22:14:09 -0700768 max_pfn << (PAGE_SHIFT-10),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 codesize >> 10,
770 reservedpages << (PAGE_SHIFT-10),
771 datasize >> 10,
772 initsize >> 10);
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100773
774 cpa_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775}
776
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200777void free_init_pages(char *what, unsigned long begin, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778{
Thomas Gleixnerbfc734b2008-02-09 23:24:09 +0100779 unsigned long addr = begin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
Thomas Gleixnerbfc734b2008-02-09 23:24:09 +0100781 if (addr >= end)
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200782 return;
783
Ingo Molnaree01f112008-01-30 13:34:09 +0100784 /*
785 * If debugging page accesses then do not free this memory but
786 * mark them not present - any buggy init-section access will
787 * create a kernel page fault:
788 */
789#ifdef CONFIG_DEBUG_PAGEALLOC
790 printk(KERN_INFO "debug: unmapping init memory %08lx..%08lx\n",
791 begin, PAGE_ALIGN(end));
792 set_memory_np(begin, (end - begin) >> PAGE_SHIFT);
793#else
Jan Beulich6fb14752007-05-02 19:27:10 +0200794 printk(KERN_INFO "Freeing %s: %luk freed\n", what, (end - begin) >> 10);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100795
Thomas Gleixnerbfc734b2008-02-09 23:24:09 +0100796 for (; addr < end; addr += PAGE_SIZE) {
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700797 ClearPageReserved(virt_to_page(addr));
798 init_page_count(virt_to_page(addr));
799 memset((void *)(addr & ~(PAGE_SIZE-1)),
800 POISON_FREE_INITMEM, PAGE_SIZE);
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700801 free_page(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 totalram_pages++;
803 }
Ingo Molnaree01f112008-01-30 13:34:09 +0100804#endif
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200805}
806
807void free_initmem(void)
808{
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200809 free_init_pages("unused kernel memory",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700810 (unsigned long)(&__init_begin),
811 (unsigned long)(&__init_end));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812}
813
Arjan van de Ven67df1972006-01-06 00:12:04 -0800814#ifdef CONFIG_DEBUG_RODATA
Arjan van de Venedeed302008-01-30 13:34:08 +0100815const int rodata_test_data = 0xC3;
816EXPORT_SYMBOL_GPL(rodata_test_data);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800817
Arjan van de Ven67df1972006-01-06 00:12:04 -0800818void mark_rodata_ro(void)
819{
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -0500820 unsigned long start = PFN_ALIGN(_stext), end = PFN_ALIGN(__end_rodata);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800821
Jan Beulich6fb14752007-05-02 19:27:10 +0200822 printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700823 (end - start) >> 10);
Arjan van de Ven984bb802008-02-06 22:39:45 +0100824 set_memory_ro(start, (end - start) >> PAGE_SHIFT);
825
826 /*
827 * The rodata section (but not the kernel text!) should also be
828 * not-executable.
829 */
830 start = ((unsigned long)__start_rodata + PAGE_SIZE - 1) & PAGE_MASK;
831 set_memory_nx(start, (end - start) >> PAGE_SHIFT);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800832
Arjan van de Ven1a487252008-01-30 13:34:09 +0100833 rodata_test();
834
Andi Kleen0c42f392008-01-30 13:33:42 +0100835#ifdef CONFIG_CPA_DEBUG
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100836 printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, end);
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100837 set_memory_rw(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +0100838
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100839 printk(KERN_INFO "Testing CPA: again\n");
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100840 set_memory_ro(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +0100841#endif
Arjan van de Ven67df1972006-01-06 00:12:04 -0800842}
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -0500843
Arjan van de Ven67df1972006-01-06 00:12:04 -0800844#endif
845
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846#ifdef CONFIG_BLK_DEV_INITRD
847void free_initrd_mem(unsigned long start, unsigned long end)
848{
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700849 free_init_pages("initrd memory", start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850}
851#endif
852
Yinghai Lud2dbf342008-06-13 02:00:56 -0700853int __init reserve_bootmem_generic(unsigned long phys, unsigned long len,
854 int flags)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100855{
Matt Tolentino2b976902005-06-23 00:08:06 -0700856#ifdef CONFIG_NUMA
Yinghai Lu8b3cd09e2008-03-18 12:50:21 -0700857 int nid, next_nid;
Yinghai Lu6a07a0e2008-06-23 14:02:36 -0700858 int ret;
Andi Kleen5e58a022006-11-14 16:57:46 +0100859#endif
860 unsigned long pfn = phys >> PAGE_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100861
Yinghai Luc987d122008-06-24 22:14:09 -0700862 if (pfn >= max_pfn) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100863 /*
864 * This can happen with kdump kernels when accessing
865 * firmware tables:
866 */
Thomas Gleixner67794292008-03-21 21:27:10 +0100867 if (pfn < max_pfn_mapped)
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200868 return -EFAULT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100869
Yinghai Lu6a07a0e2008-06-23 14:02:36 -0700870 printk(KERN_ERR "reserve_bootmem: illegal reserve %lx %lu\n",
Andi Kleen5e58a022006-11-14 16:57:46 +0100871 phys, len);
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200872 return -EFAULT;
Andi Kleen5e58a022006-11-14 16:57:46 +0100873 }
874
875 /* Should check here against the e820 map to avoid double free */
876#ifdef CONFIG_NUMA
Yinghai Lu8b3cd09e2008-03-18 12:50:21 -0700877 nid = phys_to_nid(phys);
878 next_nid = phys_to_nid(phys + len - 1);
879 if (nid == next_nid)
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200880 ret = reserve_bootmem_node(NODE_DATA(nid), phys, len, flags);
Yinghai Lu8b3cd09e2008-03-18 12:50:21 -0700881 else
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200882 ret = reserve_bootmem(phys, len, flags);
883
884 if (ret != 0)
885 return ret;
886
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100887#else
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800888 reserve_bootmem(phys, len, BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889#endif
Yinghai Lu8b3cd09e2008-03-18 12:50:21 -0700890
Mel Gorman0e0b8642006-09-27 01:49:56 -0700891 if (phys+len <= MAX_DMA_PFN*PAGE_SIZE) {
Andi Kleene18c6872005-11-05 17:25:53 +0100892 dma_reserve += len / PAGE_SIZE;
Mel Gorman0e0b8642006-09-27 01:49:56 -0700893 set_dma_reserve(dma_reserve);
894 }
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200895
896 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897}
898
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100899int kern_addr_valid(unsigned long addr)
900{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 unsigned long above = ((long)addr) >> __VIRTUAL_MASK_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100902 pgd_t *pgd;
903 pud_t *pud;
904 pmd_t *pmd;
905 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
907 if (above != 0 && above != -1UL)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100908 return 0;
909
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 pgd = pgd_offset_k(addr);
911 if (pgd_none(*pgd))
912 return 0;
913
914 pud = pud_offset(pgd, addr);
915 if (pud_none(*pud))
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100916 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
918 pmd = pmd_offset(pud, addr);
919 if (pmd_none(*pmd))
920 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100921
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 if (pmd_large(*pmd))
923 return pfn_valid(pmd_pfn(*pmd));
924
925 pte = pte_offset_kernel(pmd, addr);
926 if (pte_none(*pte))
927 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100928
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 return pfn_valid(pte_pfn(*pte));
930}
931
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100932/*
933 * A pseudo VMA to allow ptrace access for the vsyscall page. This only
934 * covers the 64bit vsyscall page now. 32bit has a real VMA now and does
935 * not need special handling anymore:
936 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937static struct vm_area_struct gate_vma = {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100938 .vm_start = VSYSCALL_START,
939 .vm_end = VSYSCALL_START + (VSYSCALL_MAPPED_PAGES * PAGE_SIZE),
940 .vm_page_prot = PAGE_READONLY_EXEC,
941 .vm_flags = VM_READ | VM_EXEC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942};
943
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944struct vm_area_struct *get_gate_vma(struct task_struct *tsk)
945{
946#ifdef CONFIG_IA32_EMULATION
Andi Kleen1e014412005-04-16 15:24:55 -0700947 if (test_tsk_thread_flag(tsk, TIF_IA32))
948 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949#endif
950 return &gate_vma;
951}
952
953int in_gate_area(struct task_struct *task, unsigned long addr)
954{
955 struct vm_area_struct *vma = get_gate_vma(task);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100956
Andi Kleen1e014412005-04-16 15:24:55 -0700957 if (!vma)
958 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100959
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 return (addr >= vma->vm_start) && (addr < vma->vm_end);
961}
962
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100963/*
964 * Use this when you have no reliable task/vma, typically from interrupt
965 * context. It is less reliable than using the task's vma and may give
966 * false positives:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 */
968int in_gate_area_no_task(unsigned long addr)
969{
Andi Kleen1e014412005-04-16 15:24:55 -0700970 return (addr >= VSYSCALL_START) && (addr < VSYSCALL_END);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971}
Zou Nan hai2e1c49d2007-06-01 00:46:28 -0700972
Andi Kleen2aae9502007-07-21 17:10:01 +0200973const char *arch_vma_name(struct vm_area_struct *vma)
974{
975 if (vma->vm_mm && vma->vm_start == (long)vma->vm_mm->context.vdso)
976 return "[vdso]";
977 if (vma == &gate_vma)
978 return "[vsyscall]";
979 return NULL;
980}
Christoph Lameter0889eba2007-10-16 01:24:15 -0700981
982#ifdef CONFIG_SPARSEMEM_VMEMMAP
983/*
984 * Initialise the sparsemem vmemmap using huge-pages at the PMD level.
985 */
Yinghai Luc2b91e22008-04-12 01:19:24 -0700986static long __meminitdata addr_start, addr_end;
987static void __meminitdata *p_start, *p_end;
988static int __meminitdata node_start;
989
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100990int __meminit
991vmemmap_populate(struct page *start_page, unsigned long size, int node)
Christoph Lameter0889eba2007-10-16 01:24:15 -0700992{
993 unsigned long addr = (unsigned long)start_page;
994 unsigned long end = (unsigned long)(start_page + size);
995 unsigned long next;
996 pgd_t *pgd;
997 pud_t *pud;
998 pmd_t *pmd;
999
1000 for (; addr < end; addr = next) {
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001001 void *p = NULL;
Christoph Lameter0889eba2007-10-16 01:24:15 -07001002
1003 pgd = vmemmap_pgd_populate(addr, node);
1004 if (!pgd)
1005 return -ENOMEM;
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001006
Christoph Lameter0889eba2007-10-16 01:24:15 -07001007 pud = vmemmap_pud_populate(pgd, addr, node);
1008 if (!pud)
1009 return -ENOMEM;
1010
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001011 if (!cpu_has_pse) {
1012 next = (addr + PAGE_SIZE) & PAGE_MASK;
1013 pmd = vmemmap_pmd_populate(pud, addr, node);
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001014
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001015 if (!pmd)
1016 return -ENOMEM;
1017
1018 p = vmemmap_pte_populate(pmd, addr, node);
1019
Christoph Lameter0889eba2007-10-16 01:24:15 -07001020 if (!p)
1021 return -ENOMEM;
1022
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001023 addr_end = addr + PAGE_SIZE;
1024 p_end = p + PAGE_SIZE;
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001025 } else {
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001026 next = pmd_addr_end(addr, end);
1027
1028 pmd = pmd_offset(pud, addr);
1029 if (pmd_none(*pmd)) {
1030 pte_t entry;
1031
1032 p = vmemmap_alloc_block(PMD_SIZE, node);
1033 if (!p)
1034 return -ENOMEM;
1035
1036 entry = pfn_pte(__pa(p) >> PAGE_SHIFT,
1037 PAGE_KERNEL_LARGE);
1038 set_pmd(pmd, __pmd(pte_val(entry)));
1039
1040 addr_end = addr + PMD_SIZE;
1041 p_end = p + PMD_SIZE;
1042
1043 /* check to see if we have contiguous blocks */
1044 if (p_end != p || node_start != node) {
1045 if (p_start)
1046 printk(KERN_DEBUG " [%lx-%lx] PMD -> [%p-%p] on node %d\n",
1047 addr_start, addr_end-1, p_start, p_end-1, node_start);
1048 addr_start = addr;
1049 node_start = node;
1050 p_start = p;
1051 }
1052 } else
1053 vmemmap_verify((pte_t *)pmd, node, addr, next);
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001054 }
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001055
Christoph Lameter0889eba2007-10-16 01:24:15 -07001056 }
Christoph Lameter0889eba2007-10-16 01:24:15 -07001057 return 0;
1058}
Yinghai Luc2b91e22008-04-12 01:19:24 -07001059
1060void __meminit vmemmap_populate_print_last(void)
1061{
1062 if (p_start) {
1063 printk(KERN_DEBUG " [%lx-%lx] PMD -> [%p-%p] on node %d\n",
1064 addr_start, addr_end-1, p_start, p_end-1, node_start);
1065 p_start = NULL;
1066 p_end = NULL;
1067 node_start = 0;
1068 }
1069}
Christoph Lameter0889eba2007-10-16 01:24:15 -07001070#endif