x86: move elfcorehdr parsing to setup.c
[deliverable/linux.git] / arch / x86 / mm / init_64.c
CommitLineData
1da177e4
LT
1/*
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
1da177e4
LT
9#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>
11034d55 21#include <linux/initrd.h>
1da177e4
LT
22#include <linux/pagemap.h>
23#include <linux/bootmem.h>
24#include <linux/proc_fs.h>
59170891 25#include <linux/pci.h>
6fb14755 26#include <linux/pfn.h>
c9cf5528 27#include <linux/poison.h>
17a941d8 28#include <linux/dma-mapping.h>
44df75e6
MT
29#include <linux/module.h>
30#include <linux/memory_hotplug.h>
ae32b129 31#include <linux/nmi.h>
1da177e4
LT
32
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>
2bc0414e 46#include <asm/sections.h>
718fc13b 47#include <asm/kdebug.h>
aaa64e04 48#include <asm/numa.h>
7bfeab9a 49#include <asm/cacheflush.h>
1da177e4 50
064d25f1
YL
51/*
52 * PFN of last memory page.
53 */
54unsigned long end_pfn;
55
56/*
57 * end_pfn only includes RAM, while max_pfn_mapped includes all e820 entries.
58 * The direct mapping extends to max_pfn_mapped, so that we can directly access
59 * apertures, ACPI and other tables without having to play with fixmaps.
60 */
61unsigned long max_pfn_mapped;
62
e18c6874
AK
63static unsigned long dma_reserve __initdata;
64
1da177e4
LT
65DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
66
00d1c5e0
IM
67int direct_gbpages __meminitdata
68#ifdef CONFIG_DIRECT_GBPAGES
69 = 1
70#endif
71;
72
73static int __init parse_direct_gbpages_off(char *arg)
74{
75 direct_gbpages = 0;
76 return 0;
77}
78early_param("nogbpages", parse_direct_gbpages_off);
79
80static int __init parse_direct_gbpages_on(char *arg)
81{
82 direct_gbpages = 1;
83 return 0;
84}
85early_param("gbpages", parse_direct_gbpages_on);
86
1da177e4
LT
87/*
88 * NOTE: pagetable_init alloc all the fixmap pagetables contiguous on the
89 * physical space so we can cache the place of the first one and move
90 * around without checking the pgd every time.
91 */
92
93void show_mem(void)
94{
e92343cc
AK
95 long i, total = 0, reserved = 0;
96 long shared = 0, cached = 0;
1da177e4 97 struct page *page;
14a62c34 98 pg_data_t *pgdat;
1da177e4 99
e92343cc 100 printk(KERN_INFO "Mem-info:\n");
1da177e4 101 show_free_areas();
ec936fc5 102 for_each_online_pgdat(pgdat) {
14a62c34
TG
103 for (i = 0; i < pgdat->node_spanned_pages; ++i) {
104 /*
105 * This loop can take a while with 256 GB and
106 * 4k pages so defer the NMI watchdog:
107 */
108 if (unlikely(i % MAX_ORDER_NR_PAGES == 0))
ae32b129 109 touch_nmi_watchdog();
14a62c34 110
12710a56
BP
111 if (!pfn_valid(pgdat->node_start_pfn + i))
112 continue;
14a62c34 113
1da177e4
LT
114 page = pfn_to_page(pgdat->node_start_pfn + i);
115 total++;
e92343cc
AK
116 if (PageReserved(page))
117 reserved++;
118 else if (PageSwapCache(page))
119 cached++;
120 else if (page_count(page))
121 shared += page_count(page) - 1;
14a62c34 122 }
1da177e4 123 }
14a62c34
TG
124 printk(KERN_INFO "%lu pages of RAM\n", total);
125 printk(KERN_INFO "%lu reserved pages\n", reserved);
126 printk(KERN_INFO "%lu pages shared\n", shared);
127 printk(KERN_INFO "%lu pages swap cached\n", cached);
1da177e4
LT
128}
129
1da177e4
LT
130int after_bootmem;
131
5f44a669 132static __init void *spp_getpage(void)
14a62c34 133{
1da177e4 134 void *ptr;
14a62c34 135
1da177e4 136 if (after_bootmem)
14a62c34 137 ptr = (void *) get_zeroed_page(GFP_ATOMIC);
1da177e4
LT
138 else
139 ptr = alloc_bootmem_pages(PAGE_SIZE);
14a62c34
TG
140
141 if (!ptr || ((unsigned long)ptr & ~PAGE_MASK)) {
142 panic("set_pte_phys: cannot allocate page data %s\n",
143 after_bootmem ? "after bootmem" : "");
144 }
1da177e4 145
10f22dde 146 pr_debug("spp_getpage %p\n", ptr);
14a62c34 147
1da177e4 148 return ptr;
14a62c34 149}
1da177e4 150
d494a961
JF
151void
152set_pte_vaddr(unsigned long vaddr, pte_t new_pte)
1da177e4
LT
153{
154 pgd_t *pgd;
155 pud_t *pud;
156 pmd_t *pmd;
d494a961 157 pte_t *pte;
1da177e4 158
d494a961 159 pr_debug("set_pte_vaddr %lx to %lx\n", vaddr, native_pte_val(new_pte));
1da177e4
LT
160
161 pgd = pgd_offset_k(vaddr);
162 if (pgd_none(*pgd)) {
10f22dde
IM
163 printk(KERN_ERR
164 "PGD FIXMAP MISSING, it should be setup in head.S!\n");
1da177e4
LT
165 return;
166 }
167 pud = pud_offset(pgd, vaddr);
168 if (pud_none(*pud)) {
14a62c34 169 pmd = (pmd_t *) spp_getpage();
1da177e4
LT
170 set_pud(pud, __pud(__pa(pmd) | _KERNPG_TABLE | _PAGE_USER));
171 if (pmd != pmd_offset(pud, 0)) {
10f22dde 172 printk(KERN_ERR "PAGETABLE BUG #01! %p <-> %p\n",
14a62c34 173 pmd, pmd_offset(pud, 0));
1da177e4
LT
174 return;
175 }
176 }
177 pmd = pmd_offset(pud, vaddr);
178 if (pmd_none(*pmd)) {
179 pte = (pte_t *) spp_getpage();
180 set_pmd(pmd, __pmd(__pa(pte) | _KERNPG_TABLE | _PAGE_USER));
181 if (pte != pte_offset_kernel(pmd, 0)) {
10f22dde 182 printk(KERN_ERR "PAGETABLE BUG #02!\n");
1da177e4
LT
183 return;
184 }
185 }
1da177e4
LT
186
187 pte = pte_offset_kernel(pmd, vaddr);
70c9f590 188 if (!pte_none(*pte) && pte_val(new_pte) &&
1da177e4
LT
189 pte_val(*pte) != (pte_val(new_pte) & __supported_pte_mask))
190 pte_ERROR(*pte);
191 set_pte(pte, new_pte);
192
193 /*
194 * It's enough to flush this one mapping.
195 * (PGE mappings get flushed as well)
196 */
197 __flush_tlb_one(vaddr);
198}
199
31eedd82 200/*
88f3aec7
IM
201 * The head.S code sets up the kernel high mapping:
202 *
203 * from __START_KERNEL_map to __START_KERNEL_map + size (== _end-_text)
31eedd82
TG
204 *
205 * phys_addr holds the negative offset to the kernel, which is added
206 * to the compile time generated pmds. This results in invalid pmds up
207 * to the point where we hit the physaddr 0 mapping.
208 *
209 * We limit the mappings to the region from _text to _end. _end is
210 * rounded up to the 2MB boundary. This catches the invalid pmds as
211 * well, as they are located before _text:
212 */
213void __init cleanup_highmap(void)
214{
215 unsigned long vaddr = __START_KERNEL_map;
216 unsigned long end = round_up((unsigned long)_end, PMD_SIZE) - 1;
217 pmd_t *pmd = level2_kernel_pgt;
218 pmd_t *last_pmd = pmd + PTRS_PER_PMD;
219
220 for (; pmd < last_pmd; pmd++, vaddr += PMD_SIZE) {
2884f110 221 if (pmd_none(*pmd))
31eedd82
TG
222 continue;
223 if (vaddr < (unsigned long) _text || vaddr > end)
224 set_pmd(pmd, __pmd(0));
225 }
226}
227
75175278
AK
228static unsigned long __initdata table_start;
229static unsigned long __meminitdata table_end;
1da177e4 230
dafe41ee 231static __meminit void *alloc_low_page(unsigned long *phys)
14a62c34 232{
dafe41ee 233 unsigned long pfn = table_end++;
1da177e4
LT
234 void *adr;
235
44df75e6
MT
236 if (after_bootmem) {
237 adr = (void *)get_zeroed_page(GFP_ATOMIC);
238 *phys = __pa(adr);
14a62c34 239
44df75e6
MT
240 return adr;
241 }
242
14a62c34
TG
243 if (pfn >= end_pfn)
244 panic("alloc_low_page: ran out of memory");
dafe41ee
VG
245
246 adr = early_ioremap(pfn * PAGE_SIZE, PAGE_SIZE);
44df75e6 247 memset(adr, 0, PAGE_SIZE);
dafe41ee
VG
248 *phys = pfn * PAGE_SIZE;
249 return adr;
250}
1da177e4 251
dafe41ee 252static __meminit void unmap_low_page(void *adr)
14a62c34 253{
44df75e6
MT
254 if (after_bootmem)
255 return;
256
dafe41ee 257 early_iounmap(adr, PAGE_SIZE);
14a62c34 258}
1da177e4 259
f2d3efed 260/* Must run before zap_low_mappings */
a3142c8e 261__meminit void *early_ioremap(unsigned long addr, unsigned long size)
f2d3efed 262{
dafe41ee 263 pmd_t *pmd, *last_pmd;
14a62c34 264 unsigned long vaddr;
dafe41ee
VG
265 int i, pmds;
266
267 pmds = ((addr & ~PMD_MASK) + size + ~PMD_MASK) / PMD_SIZE;
268 vaddr = __START_KERNEL_map;
269 pmd = level2_kernel_pgt;
270 last_pmd = level2_kernel_pgt + PTRS_PER_PMD - 1;
14a62c34 271
dafe41ee
VG
272 for (; pmd <= last_pmd; pmd++, vaddr += PMD_SIZE) {
273 for (i = 0; i < pmds; i++) {
274 if (pmd_present(pmd[i]))
14a62c34 275 goto continue_outer_loop;
dafe41ee
VG
276 }
277 vaddr += addr & ~PMD_MASK;
278 addr &= PMD_MASK;
14a62c34 279
dafe41ee 280 for (i = 0; i < pmds; i++, addr += PMD_SIZE)
929fd589 281 set_pmd(pmd+i, __pmd(addr | __PAGE_KERNEL_LARGE_EXEC));
1a2b4412 282 __flush_tlb_all();
14a62c34 283
dafe41ee 284 return (void *)vaddr;
14a62c34 285continue_outer_loop:
dafe41ee 286 ;
f2d3efed 287 }
10f22dde 288 printk(KERN_ERR "early_ioremap(0x%lx, %lu) failed\n", addr, size);
14a62c34 289
dafe41ee 290 return NULL;
f2d3efed
AK
291}
292
14a62c34
TG
293/*
294 * To avoid virtual aliases later:
295 */
a3142c8e 296__meminit void early_iounmap(void *addr, unsigned long size)
f2d3efed 297{
dafe41ee
VG
298 unsigned long vaddr;
299 pmd_t *pmd;
300 int i, pmds;
301
302 vaddr = (unsigned long)addr;
303 pmds = ((vaddr & ~PMD_MASK) + size + ~PMD_MASK) / PMD_SIZE;
304 pmd = level2_kernel_pgt + pmd_index(vaddr);
14a62c34 305
dafe41ee
VG
306 for (i = 0; i < pmds; i++)
307 pmd_clear(pmd + i);
14a62c34 308
1a2b4412 309 __flush_tlb_all();
f2d3efed
AK
310}
311
cc615032 312static unsigned long __meminit
6ad91658 313phys_pmd_init(pmd_t *pmd_page, unsigned long address, unsigned long end)
44df75e6 314{
ce0c0e50
AK
315 unsigned long pages = 0;
316
6ad91658 317 int i = pmd_index(address);
44df75e6 318
6ad91658 319 for (; i < PTRS_PER_PMD; i++, address += PMD_SIZE) {
6ad91658 320 pmd_t *pmd = pmd_page + pmd_index(address);
44df75e6 321
5f51e139 322 if (address >= end) {
14a62c34 323 if (!after_bootmem) {
5f51e139
JB
324 for (; i < PTRS_PER_PMD; i++, pmd++)
325 set_pmd(pmd, __pmd(0));
14a62c34 326 }
44df75e6
MT
327 break;
328 }
6ad91658
KM
329
330 if (pmd_val(*pmd))
331 continue;
332
ce0c0e50 333 pages++;
d4f71f79
AK
334 set_pte((pte_t *)pmd,
335 pfn_pte(address >> PAGE_SHIFT, PAGE_KERNEL_LARGE));
44df75e6 336 }
ce0c0e50 337 update_page_count(PG_LEVEL_2M, pages);
cc615032 338 return address;
44df75e6
MT
339}
340
cc615032 341static unsigned long __meminit
44df75e6
MT
342phys_pmd_update(pud_t *pud, unsigned long address, unsigned long end)
343{
14a62c34 344 pmd_t *pmd = pmd_offset(pud, 0);
cc615032
AK
345 unsigned long last_map_addr;
346
6ad91658 347 spin_lock(&init_mm.page_table_lock);
cc615032 348 last_map_addr = phys_pmd_init(pmd, address, end);
6ad91658
KM
349 spin_unlock(&init_mm.page_table_lock);
350 __flush_tlb_all();
cc615032 351 return last_map_addr;
44df75e6
MT
352}
353
cc615032 354static unsigned long __meminit
14a62c34
TG
355phys_pud_init(pud_t *pud_page, unsigned long addr, unsigned long end)
356{
ce0c0e50 357 unsigned long pages = 0;
cc615032 358 unsigned long last_map_addr = end;
6ad91658 359 int i = pud_index(addr);
44df75e6 360
14a62c34 361 for (; i < PTRS_PER_PUD; i++, addr = (addr & PUD_MASK) + PUD_SIZE) {
6ad91658
KM
362 unsigned long pmd_phys;
363 pud_t *pud = pud_page + pud_index(addr);
1da177e4
LT
364 pmd_t *pmd;
365
6ad91658 366 if (addr >= end)
1da177e4 367 break;
1da177e4 368
14a62c34
TG
369 if (!after_bootmem &&
370 !e820_any_mapped(addr, addr+PUD_SIZE, 0)) {
371 set_pud(pud, __pud(0));
1da177e4 372 continue;
14a62c34 373 }
1da177e4 374
6ad91658 375 if (pud_val(*pud)) {
ef925766 376 if (!pud_large(*pud))
cc615032 377 last_map_addr = phys_pmd_update(pud, addr, end);
ef925766
AK
378 continue;
379 }
380
381 if (direct_gbpages) {
ce0c0e50 382 pages++;
ef925766
AK
383 set_pte((pte_t *)pud,
384 pfn_pte(addr >> PAGE_SHIFT, PAGE_KERNEL_LARGE));
cc615032 385 last_map_addr = (addr & PUD_MASK) + PUD_SIZE;
6ad91658
KM
386 continue;
387 }
388
dafe41ee 389 pmd = alloc_low_page(&pmd_phys);
14a62c34 390
44df75e6 391 spin_lock(&init_mm.page_table_lock);
1da177e4 392 set_pud(pud, __pud(pmd_phys | _KERNPG_TABLE));
cc615032 393 last_map_addr = phys_pmd_init(pmd, addr, end);
44df75e6 394 spin_unlock(&init_mm.page_table_lock);
14a62c34 395
dafe41ee 396 unmap_low_page(pmd);
1da177e4 397 }
1a2b4412 398 __flush_tlb_all();
ce0c0e50 399 update_page_count(PG_LEVEL_1G, pages);
cc615032
AK
400
401 return last_map_addr >> PAGE_SHIFT;
14a62c34 402}
1da177e4
LT
403
404static void __init find_early_table_space(unsigned long end)
405{
6c5acd16 406 unsigned long puds, pmds, tables, start;
1da177e4
LT
407
408 puds = (end + PUD_SIZE - 1) >> PUD_SHIFT;
ef925766
AK
409 tables = round_up(puds * sizeof(pud_t), PAGE_SIZE);
410 if (!direct_gbpages) {
411 pmds = (end + PMD_SIZE - 1) >> PMD_SHIFT;
412 tables += round_up(pmds * sizeof(pmd_t), PAGE_SIZE);
413 }
1da177e4 414
14a62c34
TG
415 /*
416 * RED-PEN putting page tables only on node 0 could
417 * cause a hotspot and fill up ZONE_DMA. The page tables
418 * need roughly 0.5KB per GB.
419 */
420 start = 0x8000;
24a5da73 421 table_start = find_e820_area(start, end, tables, PAGE_SIZE);
1da177e4
LT
422 if (table_start == -1UL)
423 panic("Cannot find space for the kernel page tables");
424
425 table_start >>= PAGE_SHIFT;
426 table_end = table_start;
44df75e6
MT
427
428 early_printk("kernel direct mapping tables up to %lx @ %lx-%lx\n",
5f51e139
JB
429 end, table_start << PAGE_SHIFT,
430 (table_start << PAGE_SHIFT) + tables);
1da177e4
LT
431}
432
ef925766
AK
433static void __init init_gbpages(void)
434{
435 if (direct_gbpages && cpu_has_gbpages)
436 printk(KERN_INFO "Using GB pages for direct mapping\n");
437 else
438 direct_gbpages = 0;
439}
440
03273184 441#ifdef CONFIG_MEMTEST
c64df707
YL
442
443static void __init memtest(unsigned long start_phys, unsigned long size,
444 unsigned pattern)
272b9cad
YL
445{
446 unsigned long i;
447 unsigned long *start;
448 unsigned long start_bad;
449 unsigned long last_bad;
450 unsigned long val;
451 unsigned long start_phys_aligned;
452 unsigned long count;
453 unsigned long incr;
454
455 switch (pattern) {
456 case 0:
457 val = 0UL;
458 break;
459 case 1:
460 val = -1UL;
461 break;
462 case 2:
463 val = 0x5555555555555555UL;
464 break;
465 case 3:
466 val = 0xaaaaaaaaaaaaaaaaUL;
467 break;
468 default:
469 return;
470 }
471
472 incr = sizeof(unsigned long);
473 start_phys_aligned = ALIGN(start_phys, incr);
474 count = (size - (start_phys_aligned - start_phys))/incr;
475 start = __va(start_phys_aligned);
476 start_bad = 0;
477 last_bad = 0;
478
479 for (i = 0; i < count; i++)
480 start[i] = val;
481 for (i = 0; i < count; i++, start++, start_phys_aligned += incr) {
482 if (*start != val) {
483 if (start_phys_aligned == last_bad + incr) {
484 last_bad += incr;
485 } else {
486 if (start_bad) {
dcfe9465 487 printk(KERN_CONT "\n %016lx bad mem addr %016lx - %016lx reserved",
272b9cad
YL
488 val, start_bad, last_bad + incr);
489 reserve_early(start_bad, last_bad - start_bad, "BAD RAM");
490 }
491 start_bad = last_bad = start_phys_aligned;
492 }
493 }
494 }
495 if (start_bad) {
dcfe9465 496 printk(KERN_CONT "\n %016lx bad mem addr %016lx - %016lx reserved",
272b9cad
YL
497 val, start_bad, last_bad + incr);
498 reserve_early(start_bad, last_bad - start_bad, "BAD RAM");
499 }
500
501}
502
03273184
YL
503/* default is disabled */
504static int memtest_pattern __initdata;
c64df707 505
272b9cad
YL
506static int __init parse_memtest(char *arg)
507{
508 if (arg)
c64df707 509 memtest_pattern = simple_strtoul(arg, NULL, 0);
272b9cad
YL
510 return 0;
511}
512
513early_param("memtest", parse_memtest);
514
515static void __init early_memtest(unsigned long start, unsigned long end)
516{
27df66a4 517 u64 t_start, t_size;
272b9cad
YL
518 unsigned pattern;
519
c64df707
YL
520 if (!memtest_pattern)
521 return;
522
523 printk(KERN_INFO "early_memtest: pattern num %d", memtest_pattern);
272b9cad
YL
524 for (pattern = 0; pattern < memtest_pattern; pattern++) {
525 t_start = start;
526 t_size = 0;
527 while (t_start < end) {
528 t_start = find_e820_area_size(t_start, &t_size, 1);
529
530 /* done ? */
531 if (t_start >= end)
532 break;
533 if (t_start + t_size > end)
534 t_size = end - t_start;
535
27df66a4
AM
536 printk(KERN_CONT "\n %016llx - %016llx pattern %d",
537 (unsigned long long)t_start,
538 (unsigned long long)t_start + t_size, pattern);
272b9cad
YL
539
540 memtest(t_start, t_size, pattern);
541
542 t_start += t_size;
543 }
544 }
c64df707 545 printk(KERN_CONT "\n");
272b9cad 546}
c64df707
YL
547#else
548static void __init early_memtest(unsigned long start, unsigned long end)
549{
550}
551#endif
272b9cad 552
14a62c34
TG
553/*
554 * Setup the direct mapping of the physical memory at PAGE_OFFSET.
555 * This runs before bootmem is initialized and gets pages directly from
556 * the physical memory. To access them they are temporarily mapped.
557 */
cc615032 558unsigned long __init_refok init_memory_mapping(unsigned long start, unsigned long end)
14a62c34 559{
cc615032 560 unsigned long next, last_map_addr = end;
272b9cad 561 unsigned long start_phys = start, end_phys = end;
1da177e4 562
272b9cad 563 printk(KERN_INFO "init_memory_mapping\n");
1da177e4 564
14a62c34 565 /*
1da177e4 566 * Find space for the kernel direct mapping tables.
14a62c34
TG
567 *
568 * Later we should allocate these tables in the local node of the
569 * memory mapped. Unfortunately this is done currently before the
570 * nodes are discovered.
1da177e4 571 */
ef925766
AK
572 if (!after_bootmem) {
573 init_gbpages();
44df75e6 574 find_early_table_space(end);
ef925766 575 }
1da177e4
LT
576
577 start = (unsigned long)__va(start);
578 end = (unsigned long)__va(end);
579
580 for (; start < end; start = next) {
44df75e6 581 pgd_t *pgd = pgd_offset_k(start);
14a62c34 582 unsigned long pud_phys;
44df75e6
MT
583 pud_t *pud;
584
585 if (after_bootmem)
d2ae5b5f 586 pud = pud_offset(pgd, start & PGDIR_MASK);
44df75e6 587 else
dafe41ee 588 pud = alloc_low_page(&pud_phys);
44df75e6 589
1da177e4 590 next = start + PGDIR_SIZE;
14a62c34
TG
591 if (next > end)
592 next = end;
cc615032 593 last_map_addr = phys_pud_init(pud, __pa(start), __pa(next));
44df75e6
MT
594 if (!after_bootmem)
595 set_pgd(pgd_offset_k(start), mk_kernel_pgd(pud_phys));
dafe41ee 596 unmap_low_page(pud);
14a62c34 597 }
1da177e4 598
44df75e6 599 if (!after_bootmem)
f51c9452 600 mmu_cr4_features = read_cr4();
1da177e4 601 __flush_tlb_all();
75175278 602
24a5da73
YL
603 if (!after_bootmem)
604 reserve_early(table_start << PAGE_SHIFT,
605 table_end << PAGE_SHIFT, "PGTABLE");
272b9cad
YL
606
607 if (!after_bootmem)
608 early_memtest(start_phys, end_phys);
cc615032
AK
609
610 return last_map_addr;
1da177e4
LT
611}
612
2b97690f 613#ifndef CONFIG_NUMA
1da177e4
LT
614void __init paging_init(void)
615{
6391af17 616 unsigned long max_zone_pfns[MAX_NR_ZONES];
14a62c34 617
6391af17
MG
618 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
619 max_zone_pfns[ZONE_DMA] = MAX_DMA_PFN;
620 max_zone_pfns[ZONE_DMA32] = MAX_DMA32_PFN;
621 max_zone_pfns[ZONE_NORMAL] = end_pfn;
622
44df75e6
MT
623 memory_present(0, 0, end_pfn);
624 sparse_init();
5cb248ab 625 free_area_init_nodes(max_zone_pfns);
1da177e4
LT
626}
627#endif
628
44df75e6
MT
629/*
630 * Memory hotplug specific functions
44df75e6 631 */
bc02af93 632#ifdef CONFIG_MEMORY_HOTPLUG
9d99aaa3
AK
633/*
634 * Memory is added always to NORMAL zone. This means you will never get
635 * additional DMA/DMA32 memory.
636 */
bc02af93 637int arch_add_memory(int nid, u64 start, u64 size)
44df75e6 638{
bc02af93 639 struct pglist_data *pgdat = NODE_DATA(nid);
776ed98b 640 struct zone *zone = pgdat->node_zones + ZONE_NORMAL;
cc615032 641 unsigned long last_mapped_pfn, start_pfn = start >> PAGE_SHIFT;
44df75e6
MT
642 unsigned long nr_pages = size >> PAGE_SHIFT;
643 int ret;
644
cc615032
AK
645 last_mapped_pfn = init_memory_mapping(start, start + size-1);
646 if (last_mapped_pfn > max_pfn_mapped)
647 max_pfn_mapped = last_mapped_pfn;
45e0b78b 648
44df75e6 649 ret = __add_pages(zone, start_pfn, nr_pages);
10f22dde 650 WARN_ON(1);
44df75e6 651
44df75e6 652 return ret;
44df75e6 653}
bc02af93 654EXPORT_SYMBOL_GPL(arch_add_memory);
44df75e6 655
8243229f 656#if !defined(CONFIG_ACPI_NUMA) && defined(CONFIG_NUMA)
4942e998
KM
657int memory_add_physaddr_to_nid(u64 start)
658{
659 return 0;
660}
8c2676a5 661EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
4942e998
KM
662#endif
663
45e0b78b
KM
664#endif /* CONFIG_MEMORY_HOTPLUG */
665
ae531c26
AV
666/*
667 * devmem_is_allowed() checks to see if /dev/mem access to a certain address
668 * is valid. The argument is a physical page number.
669 *
670 *
671 * On x86, access has to be given to the first megabyte of ram because that area
672 * contains bios code and data regions used by X and dosemu and similar apps.
673 * Access has to be given to non-kernel-ram areas as well, these contain the PCI
674 * mmio resources as well as potential bios/acpi data regions.
675 */
676int devmem_is_allowed(unsigned long pagenr)
677{
678 if (pagenr <= 256)
679 return 1;
680 if (!page_is_ram(pagenr))
681 return 1;
682 return 0;
683}
684
685
14a62c34
TG
686static struct kcore_list kcore_mem, kcore_vmalloc, kcore_kernel,
687 kcore_modules, kcore_vsyscall;
1da177e4
LT
688
689void __init mem_init(void)
690{
0a43e4bf 691 long codesize, reservedpages, datasize, initsize;
1da177e4 692
0dc243ae 693 pci_iommu_alloc();
1da177e4 694
48ddb154 695 /* clear_bss() already clear the empty_zero_page */
1da177e4
LT
696
697 reservedpages = 0;
698
699 /* this will put all low memory onto the freelists */
2b97690f 700#ifdef CONFIG_NUMA
0a43e4bf 701 totalram_pages = numa_free_all_bootmem();
1da177e4 702#else
0a43e4bf 703 totalram_pages = free_all_bootmem();
1da177e4 704#endif
5cb248ab
MG
705 reservedpages = end_pfn - totalram_pages -
706 absent_pages_in_range(0, end_pfn);
1da177e4
LT
707 after_bootmem = 1;
708
709 codesize = (unsigned long) &_etext - (unsigned long) &_text;
710 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
711 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
712
713 /* Register memory areas for /proc/kcore */
14a62c34
TG
714 kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
715 kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
1da177e4
LT
716 VMALLOC_END-VMALLOC_START);
717 kclist_add(&kcore_kernel, &_stext, _end - _stext);
718 kclist_add(&kcore_modules, (void *)MODULES_VADDR, MODULES_LEN);
14a62c34 719 kclist_add(&kcore_vsyscall, (void *)VSYSCALL_START,
1da177e4
LT
720 VSYSCALL_END - VSYSCALL_START);
721
10f22dde 722 printk(KERN_INFO "Memory: %luk/%luk available (%ldk kernel code, "
14a62c34 723 "%ldk reserved, %ldk data, %ldk init)\n",
1da177e4
LT
724 (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
725 end_pfn << (PAGE_SHIFT-10),
726 codesize >> 10,
727 reservedpages << (PAGE_SHIFT-10),
728 datasize >> 10,
729 initsize >> 10);
76ebd054
TG
730
731 cpa_init();
1da177e4
LT
732}
733
d167a518 734void free_init_pages(char *what, unsigned long begin, unsigned long end)
1da177e4 735{
bfc734b2 736 unsigned long addr = begin;
1da177e4 737
bfc734b2 738 if (addr >= end)
d167a518
GH
739 return;
740
ee01f112
IM
741 /*
742 * If debugging page accesses then do not free this memory but
743 * mark them not present - any buggy init-section access will
744 * create a kernel page fault:
745 */
746#ifdef CONFIG_DEBUG_PAGEALLOC
747 printk(KERN_INFO "debug: unmapping init memory %08lx..%08lx\n",
748 begin, PAGE_ALIGN(end));
749 set_memory_np(begin, (end - begin) >> PAGE_SHIFT);
750#else
6fb14755 751 printk(KERN_INFO "Freeing %s: %luk freed\n", what, (end - begin) >> 10);
14a62c34 752
bfc734b2 753 for (; addr < end; addr += PAGE_SIZE) {
e3ebadd9
LT
754 ClearPageReserved(virt_to_page(addr));
755 init_page_count(virt_to_page(addr));
756 memset((void *)(addr & ~(PAGE_SIZE-1)),
757 POISON_FREE_INITMEM, PAGE_SIZE);
e3ebadd9 758 free_page(addr);
1da177e4
LT
759 totalram_pages++;
760 }
ee01f112 761#endif
d167a518
GH
762}
763
764void free_initmem(void)
765{
d167a518 766 free_init_pages("unused kernel memory",
e3ebadd9
LT
767 (unsigned long)(&__init_begin),
768 (unsigned long)(&__init_end));
1da177e4
LT
769}
770
67df197b 771#ifdef CONFIG_DEBUG_RODATA
edeed305
AV
772const int rodata_test_data = 0xC3;
773EXPORT_SYMBOL_GPL(rodata_test_data);
67df197b 774
67df197b
AV
775void mark_rodata_ro(void)
776{
4e4eee0e 777 unsigned long start = PFN_ALIGN(_stext), end = PFN_ALIGN(__end_rodata);
67df197b 778
6fb14755 779 printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
e3ebadd9 780 (end - start) >> 10);
984bb80d
AV
781 set_memory_ro(start, (end - start) >> PAGE_SHIFT);
782
783 /*
784 * The rodata section (but not the kernel text!) should also be
785 * not-executable.
786 */
787 start = ((unsigned long)__start_rodata + PAGE_SIZE - 1) & PAGE_MASK;
788 set_memory_nx(start, (end - start) >> PAGE_SHIFT);
67df197b 789
1a487252
AV
790 rodata_test();
791
0c42f392 792#ifdef CONFIG_CPA_DEBUG
10f22dde 793 printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, end);
6d238cc4 794 set_memory_rw(start, (end-start) >> PAGE_SHIFT);
0c42f392 795
10f22dde 796 printk(KERN_INFO "Testing CPA: again\n");
6d238cc4 797 set_memory_ro(start, (end-start) >> PAGE_SHIFT);
0c42f392 798#endif
67df197b 799}
4e4eee0e 800
67df197b
AV
801#endif
802
1da177e4
LT
803#ifdef CONFIG_BLK_DEV_INITRD
804void free_initrd_mem(unsigned long start, unsigned long end)
805{
e3ebadd9 806 free_init_pages("initrd memory", start, end);
1da177e4
LT
807}
808#endif
809
d2dbf343
YL
810int __init reserve_bootmem_generic(unsigned long phys, unsigned long len,
811 int flags)
14a62c34 812{
2b97690f 813#ifdef CONFIG_NUMA
8b3cd09e 814 int nid, next_nid;
5e58a02a
AK
815#endif
816 unsigned long pfn = phys >> PAGE_SHIFT;
8b2ef1d7 817 int ret;
14a62c34 818
5e58a02a 819 if (pfn >= end_pfn) {
14a62c34
TG
820 /*
821 * This can happen with kdump kernels when accessing
822 * firmware tables:
823 */
67794292 824 if (pfn < max_pfn_mapped)
8b2ef1d7 825 return -EFAULT;
14a62c34 826
5e58a02a
AK
827 printk(KERN_ERR "reserve_bootmem: illegal reserve %lx %u\n",
828 phys, len);
8b2ef1d7 829 return -EFAULT;
5e58a02a
AK
830 }
831
832 /* Should check here against the e820 map to avoid double free */
833#ifdef CONFIG_NUMA
8b3cd09e
YL
834 nid = phys_to_nid(phys);
835 next_nid = phys_to_nid(phys + len - 1);
836 if (nid == next_nid)
8b2ef1d7 837 ret = reserve_bootmem_node(NODE_DATA(nid), phys, len, flags);
8b3cd09e 838 else
8b2ef1d7
BW
839 ret = reserve_bootmem(phys, len, flags);
840
841 if (ret != 0)
842 return ret;
843
14a62c34 844#else
72a7fe39 845 reserve_bootmem(phys, len, BOOTMEM_DEFAULT);
1da177e4 846#endif
8b3cd09e 847
0e0b864e 848 if (phys+len <= MAX_DMA_PFN*PAGE_SIZE) {
e18c6874 849 dma_reserve += len / PAGE_SIZE;
0e0b864e
MG
850 set_dma_reserve(dma_reserve);
851 }
8b2ef1d7
BW
852
853 return 0;
1da177e4
LT
854}
855
14a62c34
TG
856int kern_addr_valid(unsigned long addr)
857{
1da177e4 858 unsigned long above = ((long)addr) >> __VIRTUAL_MASK_SHIFT;
14a62c34
TG
859 pgd_t *pgd;
860 pud_t *pud;
861 pmd_t *pmd;
862 pte_t *pte;
1da177e4
LT
863
864 if (above != 0 && above != -1UL)
14a62c34
TG
865 return 0;
866
1da177e4
LT
867 pgd = pgd_offset_k(addr);
868 if (pgd_none(*pgd))
869 return 0;
870
871 pud = pud_offset(pgd, addr);
872 if (pud_none(*pud))
14a62c34 873 return 0;
1da177e4
LT
874
875 pmd = pmd_offset(pud, addr);
876 if (pmd_none(*pmd))
877 return 0;
14a62c34 878
1da177e4
LT
879 if (pmd_large(*pmd))
880 return pfn_valid(pmd_pfn(*pmd));
881
882 pte = pte_offset_kernel(pmd, addr);
883 if (pte_none(*pte))
884 return 0;
14a62c34 885
1da177e4
LT
886 return pfn_valid(pte_pfn(*pte));
887}
888
14a62c34
TG
889/*
890 * A pseudo VMA to allow ptrace access for the vsyscall page. This only
891 * covers the 64bit vsyscall page now. 32bit has a real VMA now and does
892 * not need special handling anymore:
893 */
1da177e4 894static struct vm_area_struct gate_vma = {
14a62c34
TG
895 .vm_start = VSYSCALL_START,
896 .vm_end = VSYSCALL_START + (VSYSCALL_MAPPED_PAGES * PAGE_SIZE),
897 .vm_page_prot = PAGE_READONLY_EXEC,
898 .vm_flags = VM_READ | VM_EXEC
1da177e4
LT
899};
900
1da177e4
LT
901struct vm_area_struct *get_gate_vma(struct task_struct *tsk)
902{
903#ifdef CONFIG_IA32_EMULATION
1e014410
AK
904 if (test_tsk_thread_flag(tsk, TIF_IA32))
905 return NULL;
1da177e4
LT
906#endif
907 return &gate_vma;
908}
909
910int in_gate_area(struct task_struct *task, unsigned long addr)
911{
912 struct vm_area_struct *vma = get_gate_vma(task);
14a62c34 913
1e014410
AK
914 if (!vma)
915 return 0;
14a62c34 916
1da177e4
LT
917 return (addr >= vma->vm_start) && (addr < vma->vm_end);
918}
919
14a62c34
TG
920/*
921 * Use this when you have no reliable task/vma, typically from interrupt
922 * context. It is less reliable than using the task's vma and may give
923 * false positives:
1da177e4
LT
924 */
925int in_gate_area_no_task(unsigned long addr)
926{
1e014410 927 return (addr >= VSYSCALL_START) && (addr < VSYSCALL_END);
1da177e4 928}
2e1c49db 929
2aae950b
AK
930const char *arch_vma_name(struct vm_area_struct *vma)
931{
932 if (vma->vm_mm && vma->vm_start == (long)vma->vm_mm->context.vdso)
933 return "[vdso]";
934 if (vma == &gate_vma)
935 return "[vsyscall]";
936 return NULL;
937}
0889eba5
CL
938
939#ifdef CONFIG_SPARSEMEM_VMEMMAP
940/*
941 * Initialise the sparsemem vmemmap using huge-pages at the PMD level.
942 */
c2b91e2e
YL
943static long __meminitdata addr_start, addr_end;
944static void __meminitdata *p_start, *p_end;
945static int __meminitdata node_start;
946
14a62c34
TG
947int __meminit
948vmemmap_populate(struct page *start_page, unsigned long size, int node)
0889eba5
CL
949{
950 unsigned long addr = (unsigned long)start_page;
951 unsigned long end = (unsigned long)(start_page + size);
952 unsigned long next;
953 pgd_t *pgd;
954 pud_t *pud;
955 pmd_t *pmd;
956
957 for (; addr < end; addr = next) {
958 next = pmd_addr_end(addr, end);
959
960 pgd = vmemmap_pgd_populate(addr, node);
961 if (!pgd)
962 return -ENOMEM;
14a62c34 963
0889eba5
CL
964 pud = vmemmap_pud_populate(pgd, addr, node);
965 if (!pud)
966 return -ENOMEM;
967
968 pmd = pmd_offset(pud, addr);
969 if (pmd_none(*pmd)) {
970 pte_t entry;
14a62c34
TG
971 void *p;
972
973 p = vmemmap_alloc_block(PMD_SIZE, node);
0889eba5
CL
974 if (!p)
975 return -ENOMEM;
976
14a62c34
TG
977 entry = pfn_pte(__pa(p) >> PAGE_SHIFT,
978 PAGE_KERNEL_LARGE);
0889eba5
CL
979 set_pmd(pmd, __pmd(pte_val(entry)));
980
c2b91e2e
YL
981 /* check to see if we have contiguous blocks */
982 if (p_end != p || node_start != node) {
983 if (p_start)
984 printk(KERN_DEBUG " [%lx-%lx] PMD -> [%p-%p] on node %d\n",
985 addr_start, addr_end-1, p_start, p_end-1, node_start);
986 addr_start = addr;
987 node_start = node;
988 p_start = p;
989 }
990 addr_end = addr + PMD_SIZE;
991 p_end = p + PMD_SIZE;
14a62c34 992 } else {
0889eba5 993 vmemmap_verify((pte_t *)pmd, node, addr, next);
14a62c34 994 }
0889eba5 995 }
0889eba5
CL
996 return 0;
997}
c2b91e2e
YL
998
999void __meminit vmemmap_populate_print_last(void)
1000{
1001 if (p_start) {
1002 printk(KERN_DEBUG " [%lx-%lx] PMD -> [%p-%p] on node %d\n",
1003 addr_start, addr_end-1, p_start, p_end-1, node_start);
1004 p_start = NULL;
1005 p_end = NULL;
1006 node_start = 0;
1007 }
1008}
0889eba5 1009#endif
This page took 0.442324 seconds and 5 git commands to generate.