blob: e62cbdd4e2d9b8e46c336140420a2dbb1177f419 [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
147set_pte_vaddr(unsigned long vaddr, pte_t new_pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
149 pgd_t *pgd;
150 pud_t *pud;
151 pmd_t *pmd;
Jeremy Fitzhardinged494a962008-06-17 11:41:59 -0700152 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Jeremy Fitzhardinged494a962008-06-17 11:41:59 -0700154 pr_debug("set_pte_vaddr %lx to %lx\n", vaddr, native_pte_val(new_pte));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156 pgd = pgd_offset_k(vaddr);
157 if (pgd_none(*pgd)) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100158 printk(KERN_ERR
159 "PGD FIXMAP MISSING, it should be setup in head.S!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 return;
161 }
162 pud = pud_offset(pgd, vaddr);
163 if (pud_none(*pud)) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100164 pmd = (pmd_t *) spp_getpage();
Jeremy Fitzhardingebb23e402008-06-25 00:19:02 -0400165 pud_populate(&init_mm, pud, pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 if (pmd != pmd_offset(pud, 0)) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100167 printk(KERN_ERR "PAGETABLE BUG #01! %p <-> %p\n",
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100168 pmd, pmd_offset(pud, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 return;
170 }
171 }
172 pmd = pmd_offset(pud, vaddr);
173 if (pmd_none(*pmd)) {
174 pte = (pte_t *) spp_getpage();
Jeremy Fitzhardingebb23e402008-06-25 00:19:02 -0400175 pmd_populate_kernel(&init_mm, pmd, pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 if (pte != pte_offset_kernel(pmd, 0)) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100177 printk(KERN_ERR "PAGETABLE BUG #02!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 return;
179 }
180 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182 pte = pte_offset_kernel(pmd, vaddr);
Ingo Molnar70c9f592008-04-25 18:05:57 +0200183 if (!pte_none(*pte) && pte_val(new_pte) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 pte_val(*pte) != (pte_val(new_pte) & __supported_pte_mask))
185 pte_ERROR(*pte);
186 set_pte(pte, new_pte);
187
188 /*
189 * It's enough to flush this one mapping.
190 * (PGE mappings get flushed as well)
191 */
192 __flush_tlb_one(vaddr);
193}
194
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100195/*
Ingo Molnar88f3aec2008-02-21 11:04:11 +0100196 * The head.S code sets up the kernel high mapping:
197 *
198 * from __START_KERNEL_map to __START_KERNEL_map + size (== _end-_text)
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100199 *
200 * phys_addr holds the negative offset to the kernel, which is added
201 * to the compile time generated pmds. This results in invalid pmds up
202 * to the point where we hit the physaddr 0 mapping.
203 *
204 * We limit the mappings to the region from _text to _end. _end is
205 * rounded up to the 2MB boundary. This catches the invalid pmds as
206 * well, as they are located before _text:
207 */
208void __init cleanup_highmap(void)
209{
210 unsigned long vaddr = __START_KERNEL_map;
211 unsigned long end = round_up((unsigned long)_end, PMD_SIZE) - 1;
212 pmd_t *pmd = level2_kernel_pgt;
213 pmd_t *last_pmd = pmd + PTRS_PER_PMD;
214
215 for (; pmd < last_pmd; pmd++, vaddr += PMD_SIZE) {
Hugh Dickins2884f112008-05-28 19:36:07 +0100216 if (pmd_none(*pmd))
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100217 continue;
218 if (vaddr < (unsigned long) _text || vaddr > end)
219 set_pmd(pmd, __pmd(0));
220 }
221}
222
Andi Kleen75175272008-01-30 13:33:17 +0100223static unsigned long __initdata table_start;
224static unsigned long __meminitdata table_end;
Yinghai Lud86623a2008-06-24 14:57:29 -0700225static unsigned long __meminitdata table_top;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200227static __meminit void *alloc_low_page(unsigned long *phys)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100228{
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200229 unsigned long pfn = table_end++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 void *adr;
231
Matt Tolentino44df75e2006-01-17 07:03:41 +0100232 if (after_bootmem) {
233 adr = (void *)get_zeroed_page(GFP_ATOMIC);
234 *phys = __pa(adr);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100235
Matt Tolentino44df75e2006-01-17 07:03:41 +0100236 return adr;
237 }
238
Yinghai Lud86623a2008-06-24 14:57:29 -0700239 if (pfn >= table_top)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100240 panic("alloc_low_page: ran out of memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200242 adr = early_ioremap(pfn * PAGE_SIZE, PAGE_SIZE);
243 memset(adr, 0, PAGE_SIZE);
244 *phys = pfn * PAGE_SIZE;
245 return adr;
246}
247
248static __meminit void unmap_low_page(void *adr)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100249{
Matt Tolentino44df75e2006-01-17 07:03:41 +0100250 if (after_bootmem)
251 return;
252
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200253 early_iounmap(adr, PAGE_SIZE);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100254}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400256static void __meminit
257phys_pte_init(pte_t *pte_page, unsigned long addr, unsigned long end)
258{
259 unsigned pages = 0;
260 int i;
261 pte_t *pte = pte_page + pte_index(addr);
262
263 for(i = pte_index(addr); i < PTRS_PER_PTE; i++, addr += PAGE_SIZE, pte++) {
264
265 if (addr >= end) {
266 if (!after_bootmem) {
267 for(; i < PTRS_PER_PTE; i++, pte++)
268 set_pte(pte, __pte(0));
269 }
270 break;
271 }
272
273 if (pte_val(*pte))
274 continue;
275
276 if (0)
277 printk(" pte=%p addr=%lx pte=%016lx\n",
278 pte, addr, pfn_pte(addr >> PAGE_SHIFT, PAGE_KERNEL).pte);
279 set_pte(pte, pfn_pte(addr >> PAGE_SHIFT, PAGE_KERNEL));
280 pages++;
281 }
282 update_page_count(PG_LEVEL_4K, pages);
283}
284
285static void __meminit
286phys_pte_update(pmd_t *pmd, unsigned long address, unsigned long end)
287{
288 pte_t *pte = (pte_t *)pmd_page_vaddr(*pmd);
289
290 phys_pte_init(pte, address, end);
291}
292
Andi Kleencc615032008-03-12 03:53:28 +0100293static unsigned long __meminit
Keith Mannthey6ad91652006-09-26 10:52:36 +0200294phys_pmd_init(pmd_t *pmd_page, unsigned long address, unsigned long end)
Matt Tolentino44df75e2006-01-17 07:03:41 +0100295{
Andi Kleence0c0e52008-05-02 11:46:49 +0200296 unsigned long pages = 0;
297
Keith Mannthey6ad91652006-09-26 10:52:36 +0200298 int i = pmd_index(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Keith Mannthey6ad91652006-09-26 10:52:36 +0200300 for (; i < PTRS_PER_PMD; i++, address += PMD_SIZE) {
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400301 unsigned long pte_phys;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200302 pmd_t *pmd = pmd_page + pmd_index(address);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400303 pte_t *pte;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100304
Jan Beulich5f51e132006-06-26 13:59:02 +0200305 if (address >= end) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100306 if (!after_bootmem) {
Jan Beulich5f51e132006-06-26 13:59:02 +0200307 for (; i < PTRS_PER_PMD; i++, pmd++)
308 set_pmd(pmd, __pmd(0));
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100309 }
Matt Tolentino44df75e2006-01-17 07:03:41 +0100310 break;
311 }
Keith Mannthey6ad91652006-09-26 10:52:36 +0200312
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400313 if (pmd_val(*pmd)) {
314 phys_pte_update(pmd, address, end);
Keith Mannthey6ad91652006-09-26 10:52:36 +0200315 continue;
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400316 }
Keith Mannthey6ad91652006-09-26 10:52:36 +0200317
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400318 if (cpu_has_pse) {
319 pages++;
320 set_pte((pte_t *)pmd,
321 pfn_pte(address >> PAGE_SHIFT, PAGE_KERNEL_LARGE));
322 continue;
323 }
324
325 pte = alloc_low_page(&pte_phys);
326 phys_pte_init(pte, address, end);
327 unmap_low_page(pte);
328
329 pmd_populate_kernel(&init_mm, pmd, __va(pte_phys));
Matt Tolentino44df75e2006-01-17 07:03:41 +0100330 }
Andi Kleence0c0e52008-05-02 11:46:49 +0200331 update_page_count(PG_LEVEL_2M, pages);
Andi Kleencc615032008-03-12 03:53:28 +0100332 return address;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100333}
334
Andi Kleencc615032008-03-12 03:53:28 +0100335static unsigned long __meminit
Matt Tolentino44df75e2006-01-17 07:03:41 +0100336phys_pmd_update(pud_t *pud, unsigned long address, unsigned long end)
337{
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100338 pmd_t *pmd = pmd_offset(pud, 0);
Andi Kleencc615032008-03-12 03:53:28 +0100339 unsigned long last_map_addr;
340
Keith Mannthey6ad91652006-09-26 10:52:36 +0200341 spin_lock(&init_mm.page_table_lock);
Andi Kleencc615032008-03-12 03:53:28 +0100342 last_map_addr = phys_pmd_init(pmd, address, end);
Keith Mannthey6ad91652006-09-26 10:52:36 +0200343 spin_unlock(&init_mm.page_table_lock);
344 __flush_tlb_all();
Andi Kleencc615032008-03-12 03:53:28 +0100345 return last_map_addr;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100346}
347
Andi Kleencc615032008-03-12 03:53:28 +0100348static unsigned long __meminit
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100349phys_pud_init(pud_t *pud_page, unsigned long addr, unsigned long end)
350{
Andi Kleence0c0e52008-05-02 11:46:49 +0200351 unsigned long pages = 0;
Andi Kleencc615032008-03-12 03:53:28 +0100352 unsigned long last_map_addr = end;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200353 int i = pud_index(addr);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100354
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100355 for (; i < PTRS_PER_PUD; i++, addr = (addr & PUD_MASK) + PUD_SIZE) {
Keith Mannthey6ad91652006-09-26 10:52:36 +0200356 unsigned long pmd_phys;
357 pud_t *pud = pud_page + pud_index(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 pmd_t *pmd;
359
Keith Mannthey6ad91652006-09-26 10:52:36 +0200360 if (addr >= end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100363 if (!after_bootmem &&
364 !e820_any_mapped(addr, addr+PUD_SIZE, 0)) {
365 set_pud(pud, __pud(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 continue;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Keith Mannthey6ad91652006-09-26 10:52:36 +0200369 if (pud_val(*pud)) {
Andi Kleenef925762008-04-17 17:40:45 +0200370 if (!pud_large(*pud))
Andi Kleencc615032008-03-12 03:53:28 +0100371 last_map_addr = phys_pmd_update(pud, addr, end);
Andi Kleenef925762008-04-17 17:40:45 +0200372 continue;
373 }
374
375 if (direct_gbpages) {
Andi Kleence0c0e52008-05-02 11:46:49 +0200376 pages++;
Andi Kleenef925762008-04-17 17:40:45 +0200377 set_pte((pte_t *)pud,
378 pfn_pte(addr >> PAGE_SHIFT, PAGE_KERNEL_LARGE));
Andi Kleencc615032008-03-12 03:53:28 +0100379 last_map_addr = (addr & PUD_MASK) + PUD_SIZE;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200380 continue;
381 }
382
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200383 pmd = alloc_low_page(&pmd_phys);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100384
Matt Tolentino44df75e2006-01-17 07:03:41 +0100385 spin_lock(&init_mm.page_table_lock);
Andi Kleencc615032008-03-12 03:53:28 +0100386 last_map_addr = phys_pmd_init(pmd, addr, end);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400387 unmap_low_page(pmd);
388 pud_populate(&init_mm, pud, __va(pmd_phys));
Matt Tolentino44df75e2006-01-17 07:03:41 +0100389 spin_unlock(&init_mm.page_table_lock);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 }
Andi Kleen1a2b4412008-01-30 13:33:54 +0100392 __flush_tlb_all();
Andi Kleence0c0e52008-05-02 11:46:49 +0200393 update_page_count(PG_LEVEL_1G, pages);
Andi Kleencc615032008-03-12 03:53:28 +0100394
Yinghai Lu1a0db382008-06-24 14:56:20 -0700395 return last_map_addr;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100396}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400398static unsigned long __meminit
399phys_pud_update(pgd_t *pgd, unsigned long addr, unsigned long end)
400{
401 pud_t *pud;
402
403 pud = (pud_t *)pgd_page_vaddr(*pgd);
404
405 return phys_pud_init(pud, addr, end);
406}
407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408static void __init find_early_table_space(unsigned long end)
409{
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400410 unsigned long puds, tables, start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
412 puds = (end + PUD_SIZE - 1) >> PUD_SHIFT;
Andi Kleenef925762008-04-17 17:40:45 +0200413 tables = round_up(puds * sizeof(pud_t), PAGE_SIZE);
414 if (!direct_gbpages) {
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400415 unsigned long pmds = (end + PMD_SIZE - 1) >> PMD_SHIFT;
Andi Kleenef925762008-04-17 17:40:45 +0200416 tables += round_up(pmds * sizeof(pmd_t), PAGE_SIZE);
417 }
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400418 if (!cpu_has_pse) {
419 unsigned long ptes = (end + PAGE_SIZE - 1) >> PAGE_SHIFT;
420 tables += round_up(ptes * sizeof(pte_t), PAGE_SIZE);
421 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100423 /*
424 * RED-PEN putting page tables only on node 0 could
425 * cause a hotspot and fill up ZONE_DMA. The page tables
426 * need roughly 0.5KB per GB.
427 */
428 start = 0x8000;
Yinghai Lu24a5da72008-02-01 17:49:41 +0100429 table_start = find_e820_area(start, end, tables, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 if (table_start == -1UL)
431 panic("Cannot find space for the kernel page tables");
432
433 table_start >>= PAGE_SHIFT;
434 table_end = table_start;
Yinghai Lud86623a2008-06-24 14:57:29 -0700435 table_top = table_start + (tables >> PAGE_SHIFT);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100436
Yinghai Lud86623a2008-06-24 14:57:29 -0700437 printk(KERN_DEBUG "kernel direct mapping tables up to %lx @ %lx-%lx\n",
438 end, table_start << PAGE_SHIFT, table_top << PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439}
440
Andi Kleenef925762008-04-17 17:40:45 +0200441static void __init init_gbpages(void)
442{
443 if (direct_gbpages && cpu_has_gbpages)
444 printk(KERN_INFO "Using GB pages for direct mapping\n");
445 else
446 direct_gbpages = 0;
447}
448
Yinghai Lu03273182008-04-18 17:49:15 -0700449#ifdef CONFIG_MEMTEST
Yinghai Luc64df702008-03-21 18:56:19 -0700450
451static void __init memtest(unsigned long start_phys, unsigned long size,
452 unsigned pattern)
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700453{
454 unsigned long i;
455 unsigned long *start;
456 unsigned long start_bad;
457 unsigned long last_bad;
458 unsigned long val;
459 unsigned long start_phys_aligned;
460 unsigned long count;
461 unsigned long incr;
462
463 switch (pattern) {
464 case 0:
465 val = 0UL;
466 break;
467 case 1:
468 val = -1UL;
469 break;
470 case 2:
471 val = 0x5555555555555555UL;
472 break;
473 case 3:
474 val = 0xaaaaaaaaaaaaaaaaUL;
475 break;
476 default:
477 return;
478 }
479
480 incr = sizeof(unsigned long);
481 start_phys_aligned = ALIGN(start_phys, incr);
482 count = (size - (start_phys_aligned - start_phys))/incr;
483 start = __va(start_phys_aligned);
484 start_bad = 0;
485 last_bad = 0;
486
487 for (i = 0; i < count; i++)
488 start[i] = val;
489 for (i = 0; i < count; i++, start++, start_phys_aligned += incr) {
490 if (*start != val) {
491 if (start_phys_aligned == last_bad + incr) {
492 last_bad += incr;
493 } else {
494 if (start_bad) {
Yinghai Ludcfe9462008-04-15 23:17:42 -0700495 printk(KERN_CONT "\n %016lx bad mem addr %016lx - %016lx reserved",
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700496 val, start_bad, last_bad + incr);
497 reserve_early(start_bad, last_bad - start_bad, "BAD RAM");
498 }
499 start_bad = last_bad = start_phys_aligned;
500 }
501 }
502 }
503 if (start_bad) {
Yinghai Ludcfe9462008-04-15 23:17:42 -0700504 printk(KERN_CONT "\n %016lx bad mem addr %016lx - %016lx reserved",
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700505 val, start_bad, last_bad + incr);
506 reserve_early(start_bad, last_bad - start_bad, "BAD RAM");
507 }
508
509}
510
Yinghai Lu03273182008-04-18 17:49:15 -0700511/* default is disabled */
512static int memtest_pattern __initdata;
Yinghai Luc64df702008-03-21 18:56:19 -0700513
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700514static int __init parse_memtest(char *arg)
515{
516 if (arg)
Yinghai Luc64df702008-03-21 18:56:19 -0700517 memtest_pattern = simple_strtoul(arg, NULL, 0);
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700518 return 0;
519}
520
521early_param("memtest", parse_memtest);
522
523static void __init early_memtest(unsigned long start, unsigned long end)
524{
Andrew Morton27df66a2008-07-03 10:14:10 +0200525 u64 t_start, t_size;
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700526 unsigned pattern;
527
Yinghai Luc64df702008-03-21 18:56:19 -0700528 if (!memtest_pattern)
529 return;
530
531 printk(KERN_INFO "early_memtest: pattern num %d", memtest_pattern);
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700532 for (pattern = 0; pattern < memtest_pattern; pattern++) {
533 t_start = start;
534 t_size = 0;
535 while (t_start < end) {
536 t_start = find_e820_area_size(t_start, &t_size, 1);
537
538 /* done ? */
539 if (t_start >= end)
540 break;
541 if (t_start + t_size > end)
542 t_size = end - t_start;
543
Andrew Morton27df66a2008-07-03 10:14:10 +0200544 printk(KERN_CONT "\n %016llx - %016llx pattern %d",
545 (unsigned long long)t_start,
546 (unsigned long long)t_start + t_size, pattern);
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700547
548 memtest(t_start, t_size, pattern);
549
550 t_start += t_size;
551 }
552 }
Yinghai Luc64df702008-03-21 18:56:19 -0700553 printk(KERN_CONT "\n");
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700554}
Yinghai Luc64df702008-03-21 18:56:19 -0700555#else
556static void __init early_memtest(unsigned long start, unsigned long end)
557{
558}
559#endif
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700560
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100561/*
562 * Setup the direct mapping of the physical memory at PAGE_OFFSET.
563 * This runs before bootmem is initialized and gets pages directly from
564 * the physical memory. To access them they are temporarily mapped.
565 */
Andi Kleencc615032008-03-12 03:53:28 +0100566unsigned long __init_refok init_memory_mapping(unsigned long start, unsigned long end)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100567{
Andi Kleencc615032008-03-12 03:53:28 +0100568 unsigned long next, last_map_addr = end;
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700569 unsigned long start_phys = start, end_phys = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700571 printk(KERN_INFO "init_memory_mapping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100573 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 * Find space for the kernel direct mapping tables.
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100575 *
576 * Later we should allocate these tables in the local node of the
577 * memory mapped. Unfortunately this is done currently before the
578 * nodes are discovered.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 */
Andi Kleenef925762008-04-17 17:40:45 +0200580 if (!after_bootmem) {
581 init_gbpages();
Matt Tolentino44df75e2006-01-17 07:03:41 +0100582 find_early_table_space(end);
Andi Kleenef925762008-04-17 17:40:45 +0200583 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
585 start = (unsigned long)__va(start);
586 end = (unsigned long)__va(end);
587
588 for (; start < end; start = next) {
Matt Tolentino44df75e2006-01-17 07:03:41 +0100589 pgd_t *pgd = pgd_offset_k(start);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100590 unsigned long pud_phys;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100591 pud_t *pud;
592
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400593 next = start + PGDIR_SIZE;
594 if (next > end)
595 next = end;
596
597 if (pgd_val(*pgd)) {
598 last_map_addr = phys_pud_update(pgd, __pa(start), __pa(end));
599 continue;
600 }
601
Matt Tolentino44df75e2006-01-17 07:03:41 +0100602 if (after_bootmem)
Andi Kleend2ae5b52006-06-26 13:57:56 +0200603 pud = pud_offset(pgd, start & PGDIR_MASK);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100604 else
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200605 pud = alloc_low_page(&pud_phys);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100606
Andi Kleencc615032008-03-12 03:53:28 +0100607 last_map_addr = phys_pud_init(pud, __pa(start), __pa(next));
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400608 unmap_low_page(pud);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100609 if (!after_bootmem)
Jeremy Fitzhardingebb23e402008-06-25 00:19:02 -0400610 pgd_populate(&init_mm, pgd_offset_k(start),
611 __va(pud_phys));
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100612 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Matt Tolentino44df75e2006-01-17 07:03:41 +0100614 if (!after_bootmem)
Glauber de Oliveira Costaf51c9452007-07-22 11:12:29 +0200615 mmu_cr4_features = read_cr4();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 __flush_tlb_all();
Andi Kleen75175272008-01-30 13:33:17 +0100617
Yinghai Lu24a5da72008-02-01 17:49:41 +0100618 if (!after_bootmem)
619 reserve_early(table_start << PAGE_SHIFT,
620 table_end << PAGE_SHIFT, "PGTABLE");
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700621
622 if (!after_bootmem)
623 early_memtest(start_phys, end_phys);
Andi Kleencc615032008-03-12 03:53:28 +0100624
Yinghai Lu1a0db382008-06-24 14:56:20 -0700625 return last_map_addr >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626}
627
Matt Tolentino2b976902005-06-23 00:08:06 -0700628#ifndef CONFIG_NUMA
Yinghai Lu1f75d7e2008-06-22 02:44:49 -0700629void __init initmem_init(unsigned long start_pfn, unsigned long end_pfn)
630{
631 unsigned long bootmap_size, bootmap;
632
633 bootmap_size = bootmem_bootmap_pages(end_pfn)<<PAGE_SHIFT;
634 bootmap = find_e820_area(0, end_pfn<<PAGE_SHIFT, bootmap_size,
635 PAGE_SIZE);
636 if (bootmap == -1L)
637 panic("Cannot find bootmem map of size %ld\n", bootmap_size);
Yinghai Lu346cafe2008-06-23 03:06:14 -0700638 /* don't touch min_low_pfn */
639 bootmap_size = init_bootmem_node(NODE_DATA(0), bootmap >> PAGE_SHIFT,
640 0, end_pfn);
Yinghai Lu1f75d7e2008-06-22 02:44:49 -0700641 e820_register_active_regions(0, start_pfn, end_pfn);
642 free_bootmem_with_active_regions(0, end_pfn);
643 early_res_to_bootmem(0, end_pfn<<PAGE_SHIFT);
644 reserve_bootmem(bootmap, bootmap_size, BOOTMEM_DEFAULT);
645}
646
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647void __init paging_init(void)
648{
Mel Gorman6391af12006-10-11 01:20:39 -0700649 unsigned long max_zone_pfns[MAX_NR_ZONES];
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100650
Mel Gorman6391af12006-10-11 01:20:39 -0700651 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
652 max_zone_pfns[ZONE_DMA] = MAX_DMA_PFN;
653 max_zone_pfns[ZONE_DMA32] = MAX_DMA32_PFN;
Yinghai Luc987d122008-06-24 22:14:09 -0700654 max_zone_pfns[ZONE_NORMAL] = max_pfn;
Mel Gorman6391af12006-10-11 01:20:39 -0700655
Yinghai Luc987d122008-06-24 22:14:09 -0700656 memory_present(0, 0, max_pfn);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100657 sparse_init();
Mel Gorman5cb248a2006-09-27 01:49:52 -0700658 free_area_init_nodes(max_zone_pfns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659}
660#endif
661
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100662/*
Matt Tolentino44df75e2006-01-17 07:03:41 +0100663 * Memory hotplug specific functions
Matt Tolentino44df75e2006-01-17 07:03:41 +0100664 */
Yasunori Gotobc02af92006-06-27 02:53:30 -0700665#ifdef CONFIG_MEMORY_HOTPLUG
666/*
Yasunori Gotobc02af92006-06-27 02:53:30 -0700667 * Memory is added always to NORMAL zone. This means you will never get
668 * additional DMA/DMA32 memory.
669 */
670int arch_add_memory(int nid, u64 start, u64 size)
671{
672 struct pglist_data *pgdat = NODE_DATA(nid);
Christoph Lameter776ed982006-09-25 23:31:09 -0700673 struct zone *zone = pgdat->node_zones + ZONE_NORMAL;
Andi Kleencc615032008-03-12 03:53:28 +0100674 unsigned long last_mapped_pfn, start_pfn = start >> PAGE_SHIFT;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700675 unsigned long nr_pages = size >> PAGE_SHIFT;
676 int ret;
677
Andi Kleencc615032008-03-12 03:53:28 +0100678 last_mapped_pfn = init_memory_mapping(start, start + size-1);
679 if (last_mapped_pfn > max_pfn_mapped)
680 max_pfn_mapped = last_mapped_pfn;
Keith Mannthey45e0b782006-09-30 23:27:09 -0700681
Yasunori Gotobc02af92006-06-27 02:53:30 -0700682 ret = __add_pages(zone, start_pfn, nr_pages);
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100683 WARN_ON(1);
Yasunori Gotobc02af92006-06-27 02:53:30 -0700684
Yasunori Gotobc02af92006-06-27 02:53:30 -0700685 return ret;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700686}
687EXPORT_SYMBOL_GPL(arch_add_memory);
688
Yasunori Goto82432292006-11-18 22:19:40 -0800689#if !defined(CONFIG_ACPI_NUMA) && defined(CONFIG_NUMA)
Keith Mannthey4942e992006-09-30 23:27:06 -0700690int memory_add_physaddr_to_nid(u64 start)
691{
692 return 0;
693}
Keith Mannthey8c2676a2006-09-30 23:27:07 -0700694EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
Keith Mannthey4942e992006-09-30 23:27:06 -0700695#endif
696
Keith Mannthey45e0b782006-09-30 23:27:09 -0700697#endif /* CONFIG_MEMORY_HOTPLUG */
698
Arjan van de Venae531c22008-04-24 23:40:47 +0200699/*
700 * devmem_is_allowed() checks to see if /dev/mem access to a certain address
701 * is valid. The argument is a physical page number.
702 *
703 *
704 * On x86, access has to be given to the first megabyte of ram because that area
705 * contains bios code and data regions used by X and dosemu and similar apps.
706 * Access has to be given to non-kernel-ram areas as well, these contain the PCI
707 * mmio resources as well as potential bios/acpi data regions.
708 */
709int devmem_is_allowed(unsigned long pagenr)
710{
711 if (pagenr <= 256)
712 return 1;
713 if (!page_is_ram(pagenr))
714 return 1;
715 return 0;
716}
717
718
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100719static struct kcore_list kcore_mem, kcore_vmalloc, kcore_kernel,
720 kcore_modules, kcore_vsyscall;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
722void __init mem_init(void)
723{
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200724 long codesize, reservedpages, datasize, initsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Jon Mason0dc243a2006-06-26 13:58:11 +0200726 pci_iommu_alloc();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Yinghai Lu48ddb152008-01-30 13:32:36 +0100728 /* clear_bss() already clear the empty_zero_page */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
730 reservedpages = 0;
731
732 /* this will put all low memory onto the freelists */
Matt Tolentino2b976902005-06-23 00:08:06 -0700733#ifdef CONFIG_NUMA
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200734 totalram_pages = numa_free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735#else
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200736 totalram_pages = free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737#endif
Yinghai Luc987d122008-06-24 22:14:09 -0700738 reservedpages = max_pfn - totalram_pages -
739 absent_pages_in_range(0, max_pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 after_bootmem = 1;
741
742 codesize = (unsigned long) &_etext - (unsigned long) &_text;
743 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
744 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
745
746 /* Register memory areas for /proc/kcore */
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100747 kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
748 kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 VMALLOC_END-VMALLOC_START);
750 kclist_add(&kcore_kernel, &_stext, _end - _stext);
751 kclist_add(&kcore_modules, (void *)MODULES_VADDR, MODULES_LEN);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100752 kclist_add(&kcore_vsyscall, (void *)VSYSCALL_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 VSYSCALL_END - VSYSCALL_START);
754
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100755 printk(KERN_INFO "Memory: %luk/%luk available (%ldk kernel code, "
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100756 "%ldk reserved, %ldk data, %ldk init)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
Yinghai Luc987d122008-06-24 22:14:09 -0700758 max_pfn << (PAGE_SHIFT-10),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 codesize >> 10,
760 reservedpages << (PAGE_SHIFT-10),
761 datasize >> 10,
762 initsize >> 10);
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100763
764 cpa_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765}
766
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200767void free_init_pages(char *what, unsigned long begin, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768{
Thomas Gleixnerbfc734b2008-02-09 23:24:09 +0100769 unsigned long addr = begin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Thomas Gleixnerbfc734b2008-02-09 23:24:09 +0100771 if (addr >= end)
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200772 return;
773
Ingo Molnaree01f112008-01-30 13:34:09 +0100774 /*
775 * If debugging page accesses then do not free this memory but
776 * mark them not present - any buggy init-section access will
777 * create a kernel page fault:
778 */
779#ifdef CONFIG_DEBUG_PAGEALLOC
780 printk(KERN_INFO "debug: unmapping init memory %08lx..%08lx\n",
781 begin, PAGE_ALIGN(end));
782 set_memory_np(begin, (end - begin) >> PAGE_SHIFT);
783#else
Jan Beulich6fb14752007-05-02 19:27:10 +0200784 printk(KERN_INFO "Freeing %s: %luk freed\n", what, (end - begin) >> 10);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100785
Thomas Gleixnerbfc734b2008-02-09 23:24:09 +0100786 for (; addr < end; addr += PAGE_SIZE) {
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700787 ClearPageReserved(virt_to_page(addr));
788 init_page_count(virt_to_page(addr));
789 memset((void *)(addr & ~(PAGE_SIZE-1)),
790 POISON_FREE_INITMEM, PAGE_SIZE);
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700791 free_page(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 totalram_pages++;
793 }
Ingo Molnaree01f112008-01-30 13:34:09 +0100794#endif
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200795}
796
797void free_initmem(void)
798{
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200799 free_init_pages("unused kernel memory",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700800 (unsigned long)(&__init_begin),
801 (unsigned long)(&__init_end));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802}
803
Arjan van de Ven67df1972006-01-06 00:12:04 -0800804#ifdef CONFIG_DEBUG_RODATA
Arjan van de Venedeed302008-01-30 13:34:08 +0100805const int rodata_test_data = 0xC3;
806EXPORT_SYMBOL_GPL(rodata_test_data);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800807
Arjan van de Ven67df1972006-01-06 00:12:04 -0800808void mark_rodata_ro(void)
809{
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -0500810 unsigned long start = PFN_ALIGN(_stext), end = PFN_ALIGN(__end_rodata);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800811
Jan Beulich6fb14752007-05-02 19:27:10 +0200812 printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700813 (end - start) >> 10);
Arjan van de Ven984bb802008-02-06 22:39:45 +0100814 set_memory_ro(start, (end - start) >> PAGE_SHIFT);
815
816 /*
817 * The rodata section (but not the kernel text!) should also be
818 * not-executable.
819 */
820 start = ((unsigned long)__start_rodata + PAGE_SIZE - 1) & PAGE_MASK;
821 set_memory_nx(start, (end - start) >> PAGE_SHIFT);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800822
Arjan van de Ven1a487252008-01-30 13:34:09 +0100823 rodata_test();
824
Andi Kleen0c42f392008-01-30 13:33:42 +0100825#ifdef CONFIG_CPA_DEBUG
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100826 printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, end);
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100827 set_memory_rw(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +0100828
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100829 printk(KERN_INFO "Testing CPA: again\n");
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100830 set_memory_ro(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +0100831#endif
Arjan van de Ven67df1972006-01-06 00:12:04 -0800832}
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -0500833
Arjan van de Ven67df1972006-01-06 00:12:04 -0800834#endif
835
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836#ifdef CONFIG_BLK_DEV_INITRD
837void free_initrd_mem(unsigned long start, unsigned long end)
838{
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700839 free_init_pages("initrd memory", start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840}
841#endif
842
Yinghai Lud2dbf342008-06-13 02:00:56 -0700843int __init reserve_bootmem_generic(unsigned long phys, unsigned long len,
844 int flags)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100845{
Matt Tolentino2b976902005-06-23 00:08:06 -0700846#ifdef CONFIG_NUMA
Yinghai Lu8b3cd09e2008-03-18 12:50:21 -0700847 int nid, next_nid;
Yinghai Lu6a07a0e2008-06-23 14:02:36 -0700848 int ret;
Andi Kleen5e58a022006-11-14 16:57:46 +0100849#endif
850 unsigned long pfn = phys >> PAGE_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100851
Yinghai Luc987d122008-06-24 22:14:09 -0700852 if (pfn >= max_pfn) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100853 /*
854 * This can happen with kdump kernels when accessing
855 * firmware tables:
856 */
Thomas Gleixner67794292008-03-21 21:27:10 +0100857 if (pfn < max_pfn_mapped)
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200858 return -EFAULT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100859
Yinghai Lu6a07a0e2008-06-23 14:02:36 -0700860 printk(KERN_ERR "reserve_bootmem: illegal reserve %lx %lu\n",
Andi Kleen5e58a022006-11-14 16:57:46 +0100861 phys, len);
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200862 return -EFAULT;
Andi Kleen5e58a022006-11-14 16:57:46 +0100863 }
864
865 /* Should check here against the e820 map to avoid double free */
866#ifdef CONFIG_NUMA
Yinghai Lu8b3cd09e2008-03-18 12:50:21 -0700867 nid = phys_to_nid(phys);
868 next_nid = phys_to_nid(phys + len - 1);
869 if (nid == next_nid)
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200870 ret = reserve_bootmem_node(NODE_DATA(nid), phys, len, flags);
Yinghai Lu8b3cd09e2008-03-18 12:50:21 -0700871 else
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200872 ret = reserve_bootmem(phys, len, flags);
873
874 if (ret != 0)
875 return ret;
876
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100877#else
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800878 reserve_bootmem(phys, len, BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879#endif
Yinghai Lu8b3cd09e2008-03-18 12:50:21 -0700880
Mel Gorman0e0b8642006-09-27 01:49:56 -0700881 if (phys+len <= MAX_DMA_PFN*PAGE_SIZE) {
Andi Kleene18c6872005-11-05 17:25:53 +0100882 dma_reserve += len / PAGE_SIZE;
Mel Gorman0e0b8642006-09-27 01:49:56 -0700883 set_dma_reserve(dma_reserve);
884 }
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200885
886 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887}
888
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100889int kern_addr_valid(unsigned long addr)
890{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 unsigned long above = ((long)addr) >> __VIRTUAL_MASK_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100892 pgd_t *pgd;
893 pud_t *pud;
894 pmd_t *pmd;
895 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
897 if (above != 0 && above != -1UL)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100898 return 0;
899
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 pgd = pgd_offset_k(addr);
901 if (pgd_none(*pgd))
902 return 0;
903
904 pud = pud_offset(pgd, addr);
905 if (pud_none(*pud))
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100906 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
908 pmd = pmd_offset(pud, addr);
909 if (pmd_none(*pmd))
910 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100911
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 if (pmd_large(*pmd))
913 return pfn_valid(pmd_pfn(*pmd));
914
915 pte = pte_offset_kernel(pmd, addr);
916 if (pte_none(*pte))
917 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100918
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 return pfn_valid(pte_pfn(*pte));
920}
921
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100922/*
923 * A pseudo VMA to allow ptrace access for the vsyscall page. This only
924 * covers the 64bit vsyscall page now. 32bit has a real VMA now and does
925 * not need special handling anymore:
926 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927static struct vm_area_struct gate_vma = {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100928 .vm_start = VSYSCALL_START,
929 .vm_end = VSYSCALL_START + (VSYSCALL_MAPPED_PAGES * PAGE_SIZE),
930 .vm_page_prot = PAGE_READONLY_EXEC,
931 .vm_flags = VM_READ | VM_EXEC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932};
933
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934struct vm_area_struct *get_gate_vma(struct task_struct *tsk)
935{
936#ifdef CONFIG_IA32_EMULATION
Andi Kleen1e014412005-04-16 15:24:55 -0700937 if (test_tsk_thread_flag(tsk, TIF_IA32))
938 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939#endif
940 return &gate_vma;
941}
942
943int in_gate_area(struct task_struct *task, unsigned long addr)
944{
945 struct vm_area_struct *vma = get_gate_vma(task);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100946
Andi Kleen1e014412005-04-16 15:24:55 -0700947 if (!vma)
948 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100949
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 return (addr >= vma->vm_start) && (addr < vma->vm_end);
951}
952
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100953/*
954 * Use this when you have no reliable task/vma, typically from interrupt
955 * context. It is less reliable than using the task's vma and may give
956 * false positives:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 */
958int in_gate_area_no_task(unsigned long addr)
959{
Andi Kleen1e014412005-04-16 15:24:55 -0700960 return (addr >= VSYSCALL_START) && (addr < VSYSCALL_END);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961}
Zou Nan hai2e1c49d2007-06-01 00:46:28 -0700962
Andi Kleen2aae9502007-07-21 17:10:01 +0200963const char *arch_vma_name(struct vm_area_struct *vma)
964{
965 if (vma->vm_mm && vma->vm_start == (long)vma->vm_mm->context.vdso)
966 return "[vdso]";
967 if (vma == &gate_vma)
968 return "[vsyscall]";
969 return NULL;
970}
Christoph Lameter0889eba2007-10-16 01:24:15 -0700971
972#ifdef CONFIG_SPARSEMEM_VMEMMAP
973/*
974 * Initialise the sparsemem vmemmap using huge-pages at the PMD level.
975 */
Yinghai Luc2b91e22008-04-12 01:19:24 -0700976static long __meminitdata addr_start, addr_end;
977static void __meminitdata *p_start, *p_end;
978static int __meminitdata node_start;
979
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100980int __meminit
981vmemmap_populate(struct page *start_page, unsigned long size, int node)
Christoph Lameter0889eba2007-10-16 01:24:15 -0700982{
983 unsigned long addr = (unsigned long)start_page;
984 unsigned long end = (unsigned long)(start_page + size);
985 unsigned long next;
986 pgd_t *pgd;
987 pud_t *pud;
988 pmd_t *pmd;
989
990 for (; addr < end; addr = next) {
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -0400991 void *p = NULL;
Christoph Lameter0889eba2007-10-16 01:24:15 -0700992
993 pgd = vmemmap_pgd_populate(addr, node);
994 if (!pgd)
995 return -ENOMEM;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100996
Christoph Lameter0889eba2007-10-16 01:24:15 -0700997 pud = vmemmap_pud_populate(pgd, addr, node);
998 if (!pud)
999 return -ENOMEM;
1000
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001001 if (!cpu_has_pse) {
1002 next = (addr + PAGE_SIZE) & PAGE_MASK;
1003 pmd = vmemmap_pmd_populate(pud, addr, node);
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001004
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001005 if (!pmd)
1006 return -ENOMEM;
1007
1008 p = vmemmap_pte_populate(pmd, addr, node);
1009
Christoph Lameter0889eba2007-10-16 01:24:15 -07001010 if (!p)
1011 return -ENOMEM;
1012
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001013 addr_end = addr + PAGE_SIZE;
1014 p_end = p + PAGE_SIZE;
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001015 } else {
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001016 next = pmd_addr_end(addr, end);
1017
1018 pmd = pmd_offset(pud, addr);
1019 if (pmd_none(*pmd)) {
1020 pte_t entry;
1021
1022 p = vmemmap_alloc_block(PMD_SIZE, node);
1023 if (!p)
1024 return -ENOMEM;
1025
1026 entry = pfn_pte(__pa(p) >> PAGE_SHIFT,
1027 PAGE_KERNEL_LARGE);
1028 set_pmd(pmd, __pmd(pte_val(entry)));
1029
1030 addr_end = addr + PMD_SIZE;
1031 p_end = p + PMD_SIZE;
1032
1033 /* check to see if we have contiguous blocks */
1034 if (p_end != p || node_start != node) {
1035 if (p_start)
1036 printk(KERN_DEBUG " [%lx-%lx] PMD -> [%p-%p] on node %d\n",
1037 addr_start, addr_end-1, p_start, p_end-1, node_start);
1038 addr_start = addr;
1039 node_start = node;
1040 p_start = p;
1041 }
1042 } else
1043 vmemmap_verify((pte_t *)pmd, node, addr, next);
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001044 }
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001045
Christoph Lameter0889eba2007-10-16 01:24:15 -07001046 }
Christoph Lameter0889eba2007-10-16 01:24:15 -07001047 return 0;
1048}
Yinghai Luc2b91e22008-04-12 01:19:24 -07001049
1050void __meminit vmemmap_populate_print_last(void)
1051{
1052 if (p_start) {
1053 printk(KERN_DEBUG " [%lx-%lx] PMD -> [%p-%p] on node %d\n",
1054 addr_start, addr_end-1, p_start, p_end-1, node_start);
1055 p_start = NULL;
1056 p_end = NULL;
1057 node_start = 0;
1058 }
1059}
Christoph Lameter0889eba2007-10-16 01:24:15 -07001060#endif