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