x86: fix e820_update_range size when overlapping
[linux-block.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();
bb23e403 170 pud_populate(&init_mm, pud, pmd);
1da177e4 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();
bb23e403 180 pmd_populate_kernel(&init_mm, pmd, pte);
1da177e4 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
cc615032 260static unsigned long __meminit
6ad91658 261phys_pmd_init(pmd_t *pmd_page, unsigned long address, unsigned long end)
44df75e6 262{
ce0c0e50
AK
263 unsigned long pages = 0;
264
6ad91658 265 int i = pmd_index(address);
44df75e6 266
6ad91658 267 for (; i < PTRS_PER_PMD; i++, address += PMD_SIZE) {
6ad91658 268 pmd_t *pmd = pmd_page + pmd_index(address);
44df75e6 269
5f51e139 270 if (address >= end) {
14a62c34 271 if (!after_bootmem) {
5f51e139
JB
272 for (; i < PTRS_PER_PMD; i++, pmd++)
273 set_pmd(pmd, __pmd(0));
14a62c34 274 }
44df75e6
MT
275 break;
276 }
6ad91658
KM
277
278 if (pmd_val(*pmd))
279 continue;
280
ce0c0e50 281 pages++;
d4f71f79
AK
282 set_pte((pte_t *)pmd,
283 pfn_pte(address >> PAGE_SHIFT, PAGE_KERNEL_LARGE));
44df75e6 284 }
ce0c0e50 285 update_page_count(PG_LEVEL_2M, pages);
cc615032 286 return address;
44df75e6
MT
287}
288
cc615032 289static unsigned long __meminit
44df75e6
MT
290phys_pmd_update(pud_t *pud, unsigned long address, unsigned long end)
291{
14a62c34 292 pmd_t *pmd = pmd_offset(pud, 0);
cc615032
AK
293 unsigned long last_map_addr;
294
6ad91658 295 spin_lock(&init_mm.page_table_lock);
cc615032 296 last_map_addr = phys_pmd_init(pmd, address, end);
6ad91658
KM
297 spin_unlock(&init_mm.page_table_lock);
298 __flush_tlb_all();
cc615032 299 return last_map_addr;
44df75e6
MT
300}
301
cc615032 302static unsigned long __meminit
14a62c34
TG
303phys_pud_init(pud_t *pud_page, unsigned long addr, unsigned long end)
304{
ce0c0e50 305 unsigned long pages = 0;
cc615032 306 unsigned long last_map_addr = end;
6ad91658 307 int i = pud_index(addr);
44df75e6 308
14a62c34 309 for (; i < PTRS_PER_PUD; i++, addr = (addr & PUD_MASK) + PUD_SIZE) {
6ad91658
KM
310 unsigned long pmd_phys;
311 pud_t *pud = pud_page + pud_index(addr);
1da177e4
LT
312 pmd_t *pmd;
313
6ad91658 314 if (addr >= end)
1da177e4 315 break;
1da177e4 316
14a62c34
TG
317 if (!after_bootmem &&
318 !e820_any_mapped(addr, addr+PUD_SIZE, 0)) {
319 set_pud(pud, __pud(0));
1da177e4 320 continue;
14a62c34 321 }
1da177e4 322
6ad91658 323 if (pud_val(*pud)) {
ef925766 324 if (!pud_large(*pud))
cc615032 325 last_map_addr = phys_pmd_update(pud, addr, end);
ef925766
AK
326 continue;
327 }
328
329 if (direct_gbpages) {
ce0c0e50 330 pages++;
ef925766
AK
331 set_pte((pte_t *)pud,
332 pfn_pte(addr >> PAGE_SHIFT, PAGE_KERNEL_LARGE));
cc615032 333 last_map_addr = (addr & PUD_MASK) + PUD_SIZE;
6ad91658
KM
334 continue;
335 }
336
dafe41ee 337 pmd = alloc_low_page(&pmd_phys);
14a62c34 338
44df75e6 339 spin_lock(&init_mm.page_table_lock);
bb23e403 340 pud_populate(&init_mm, pud, __va(pmd_phys));
cc615032 341 last_map_addr = phys_pmd_init(pmd, addr, end);
44df75e6 342 spin_unlock(&init_mm.page_table_lock);
14a62c34 343
dafe41ee 344 unmap_low_page(pmd);
1da177e4 345 }
1a2b4412 346 __flush_tlb_all();
ce0c0e50 347 update_page_count(PG_LEVEL_1G, pages);
cc615032
AK
348
349 return last_map_addr >> PAGE_SHIFT;
14a62c34 350}
1da177e4
LT
351
352static void __init find_early_table_space(unsigned long end)
353{
6c5acd16 354 unsigned long puds, pmds, tables, start;
1da177e4
LT
355
356 puds = (end + PUD_SIZE - 1) >> PUD_SHIFT;
ef925766
AK
357 tables = round_up(puds * sizeof(pud_t), PAGE_SIZE);
358 if (!direct_gbpages) {
359 pmds = (end + PMD_SIZE - 1) >> PMD_SHIFT;
360 tables += round_up(pmds * sizeof(pmd_t), PAGE_SIZE);
361 }
1da177e4 362
14a62c34
TG
363 /*
364 * RED-PEN putting page tables only on node 0 could
365 * cause a hotspot and fill up ZONE_DMA. The page tables
366 * need roughly 0.5KB per GB.
367 */
368 start = 0x8000;
24a5da73 369 table_start = find_e820_area(start, end, tables, PAGE_SIZE);
1da177e4
LT
370 if (table_start == -1UL)
371 panic("Cannot find space for the kernel page tables");
372
373 table_start >>= PAGE_SHIFT;
374 table_end = table_start;
44df75e6
MT
375
376 early_printk("kernel direct mapping tables up to %lx @ %lx-%lx\n",
5f51e139
JB
377 end, table_start << PAGE_SHIFT,
378 (table_start << PAGE_SHIFT) + tables);
1da177e4
LT
379}
380
ef925766
AK
381static void __init init_gbpages(void)
382{
383 if (direct_gbpages && cpu_has_gbpages)
384 printk(KERN_INFO "Using GB pages for direct mapping\n");
385 else
386 direct_gbpages = 0;
387}
388
03273184 389#ifdef CONFIG_MEMTEST
c64df707
YL
390
391static void __init memtest(unsigned long start_phys, unsigned long size,
392 unsigned pattern)
272b9cad
YL
393{
394 unsigned long i;
395 unsigned long *start;
396 unsigned long start_bad;
397 unsigned long last_bad;
398 unsigned long val;
399 unsigned long start_phys_aligned;
400 unsigned long count;
401 unsigned long incr;
402
403 switch (pattern) {
404 case 0:
405 val = 0UL;
406 break;
407 case 1:
408 val = -1UL;
409 break;
410 case 2:
411 val = 0x5555555555555555UL;
412 break;
413 case 3:
414 val = 0xaaaaaaaaaaaaaaaaUL;
415 break;
416 default:
417 return;
418 }
419
420 incr = sizeof(unsigned long);
421 start_phys_aligned = ALIGN(start_phys, incr);
422 count = (size - (start_phys_aligned - start_phys))/incr;
423 start = __va(start_phys_aligned);
424 start_bad = 0;
425 last_bad = 0;
426
427 for (i = 0; i < count; i++)
428 start[i] = val;
429 for (i = 0; i < count; i++, start++, start_phys_aligned += incr) {
430 if (*start != val) {
431 if (start_phys_aligned == last_bad + incr) {
432 last_bad += incr;
433 } else {
434 if (start_bad) {
dcfe9465 435 printk(KERN_CONT "\n %016lx bad mem addr %016lx - %016lx reserved",
272b9cad
YL
436 val, start_bad, last_bad + incr);
437 reserve_early(start_bad, last_bad - start_bad, "BAD RAM");
438 }
439 start_bad = last_bad = start_phys_aligned;
440 }
441 }
442 }
443 if (start_bad) {
dcfe9465 444 printk(KERN_CONT "\n %016lx bad mem addr %016lx - %016lx reserved",
272b9cad
YL
445 val, start_bad, last_bad + incr);
446 reserve_early(start_bad, last_bad - start_bad, "BAD RAM");
447 }
448
449}
450
03273184
YL
451/* default is disabled */
452static int memtest_pattern __initdata;
c64df707 453
272b9cad
YL
454static int __init parse_memtest(char *arg)
455{
456 if (arg)
c64df707 457 memtest_pattern = simple_strtoul(arg, NULL, 0);
272b9cad
YL
458 return 0;
459}
460
461early_param("memtest", parse_memtest);
462
463static void __init early_memtest(unsigned long start, unsigned long end)
464{
27df66a4 465 u64 t_start, t_size;
272b9cad
YL
466 unsigned pattern;
467
c64df707
YL
468 if (!memtest_pattern)
469 return;
470
471 printk(KERN_INFO "early_memtest: pattern num %d", memtest_pattern);
272b9cad
YL
472 for (pattern = 0; pattern < memtest_pattern; pattern++) {
473 t_start = start;
474 t_size = 0;
475 while (t_start < end) {
476 t_start = find_e820_area_size(t_start, &t_size, 1);
477
478 /* done ? */
479 if (t_start >= end)
480 break;
481 if (t_start + t_size > end)
482 t_size = end - t_start;
483
27df66a4
AM
484 printk(KERN_CONT "\n %016llx - %016llx pattern %d",
485 (unsigned long long)t_start,
486 (unsigned long long)t_start + t_size, pattern);
272b9cad
YL
487
488 memtest(t_start, t_size, pattern);
489
490 t_start += t_size;
491 }
492 }
c64df707 493 printk(KERN_CONT "\n");
272b9cad 494}
c64df707
YL
495#else
496static void __init early_memtest(unsigned long start, unsigned long end)
497{
498}
499#endif
272b9cad 500
14a62c34
TG
501/*
502 * Setup the direct mapping of the physical memory at PAGE_OFFSET.
503 * This runs before bootmem is initialized and gets pages directly from
504 * the physical memory. To access them they are temporarily mapped.
505 */
cc615032 506unsigned long __init_refok init_memory_mapping(unsigned long start, unsigned long end)
14a62c34 507{
cc615032 508 unsigned long next, last_map_addr = end;
272b9cad 509 unsigned long start_phys = start, end_phys = end;
1da177e4 510
272b9cad 511 printk(KERN_INFO "init_memory_mapping\n");
1da177e4 512
14a62c34 513 /*
1da177e4 514 * Find space for the kernel direct mapping tables.
14a62c34
TG
515 *
516 * Later we should allocate these tables in the local node of the
517 * memory mapped. Unfortunately this is done currently before the
518 * nodes are discovered.
1da177e4 519 */
ef925766
AK
520 if (!after_bootmem) {
521 init_gbpages();
44df75e6 522 find_early_table_space(end);
ef925766 523 }
1da177e4
LT
524
525 start = (unsigned long)__va(start);
526 end = (unsigned long)__va(end);
527
528 for (; start < end; start = next) {
44df75e6 529 pgd_t *pgd = pgd_offset_k(start);
14a62c34 530 unsigned long pud_phys;
44df75e6
MT
531 pud_t *pud;
532
533 if (after_bootmem)
d2ae5b5f 534 pud = pud_offset(pgd, start & PGDIR_MASK);
44df75e6 535 else
dafe41ee 536 pud = alloc_low_page(&pud_phys);
44df75e6 537
1da177e4 538 next = start + PGDIR_SIZE;
14a62c34
TG
539 if (next > end)
540 next = end;
cc615032 541 last_map_addr = phys_pud_init(pud, __pa(start), __pa(next));
44df75e6 542 if (!after_bootmem)
bb23e403
JF
543 pgd_populate(&init_mm, pgd_offset_k(start),
544 __va(pud_phys));
dafe41ee 545 unmap_low_page(pud);
14a62c34 546 }
1da177e4 547
44df75e6 548 if (!after_bootmem)
f51c9452 549 mmu_cr4_features = read_cr4();
1da177e4 550 __flush_tlb_all();
75175278 551
24a5da73
YL
552 if (!after_bootmem)
553 reserve_early(table_start << PAGE_SHIFT,
554 table_end << PAGE_SHIFT, "PGTABLE");
272b9cad
YL
555
556 if (!after_bootmem)
557 early_memtest(start_phys, end_phys);
cc615032
AK
558
559 return last_map_addr;
1da177e4
LT
560}
561
2b97690f 562#ifndef CONFIG_NUMA
1f75d7e3
YL
563void __init initmem_init(unsigned long start_pfn, unsigned long end_pfn)
564{
565 unsigned long bootmap_size, bootmap;
566
567 bootmap_size = bootmem_bootmap_pages(end_pfn)<<PAGE_SHIFT;
568 bootmap = find_e820_area(0, end_pfn<<PAGE_SHIFT, bootmap_size,
569 PAGE_SIZE);
570 if (bootmap == -1L)
571 panic("Cannot find bootmem map of size %ld\n", bootmap_size);
346cafec
YL
572 /* don't touch min_low_pfn */
573 bootmap_size = init_bootmem_node(NODE_DATA(0), bootmap >> PAGE_SHIFT,
574 0, end_pfn);
1f75d7e3
YL
575 e820_register_active_regions(0, start_pfn, end_pfn);
576 free_bootmem_with_active_regions(0, end_pfn);
577 early_res_to_bootmem(0, end_pfn<<PAGE_SHIFT);
578 reserve_bootmem(bootmap, bootmap_size, BOOTMEM_DEFAULT);
579}
580
1da177e4
LT
581void __init paging_init(void)
582{
6391af17 583 unsigned long max_zone_pfns[MAX_NR_ZONES];
14a62c34 584
6391af17
MG
585 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
586 max_zone_pfns[ZONE_DMA] = MAX_DMA_PFN;
587 max_zone_pfns[ZONE_DMA32] = MAX_DMA32_PFN;
588 max_zone_pfns[ZONE_NORMAL] = end_pfn;
589
44df75e6
MT
590 memory_present(0, 0, end_pfn);
591 sparse_init();
5cb248ab 592 free_area_init_nodes(max_zone_pfns);
1da177e4
LT
593}
594#endif
595
44df75e6
MT
596/*
597 * Memory hotplug specific functions
44df75e6 598 */
bc02af93 599#ifdef CONFIG_MEMORY_HOTPLUG
9d99aaa3
AK
600/*
601 * Memory is added always to NORMAL zone. This means you will never get
602 * additional DMA/DMA32 memory.
603 */
bc02af93 604int arch_add_memory(int nid, u64 start, u64 size)
44df75e6 605{
bc02af93 606 struct pglist_data *pgdat = NODE_DATA(nid);
776ed98b 607 struct zone *zone = pgdat->node_zones + ZONE_NORMAL;
cc615032 608 unsigned long last_mapped_pfn, start_pfn = start >> PAGE_SHIFT;
44df75e6
MT
609 unsigned long nr_pages = size >> PAGE_SHIFT;
610 int ret;
611
cc615032
AK
612 last_mapped_pfn = init_memory_mapping(start, start + size-1);
613 if (last_mapped_pfn > max_pfn_mapped)
614 max_pfn_mapped = last_mapped_pfn;
45e0b78b 615
44df75e6 616 ret = __add_pages(zone, start_pfn, nr_pages);
10f22dde 617 WARN_ON(1);
44df75e6 618
44df75e6 619 return ret;
44df75e6 620}
bc02af93 621EXPORT_SYMBOL_GPL(arch_add_memory);
44df75e6 622
8243229f 623#if !defined(CONFIG_ACPI_NUMA) && defined(CONFIG_NUMA)
4942e998
KM
624int memory_add_physaddr_to_nid(u64 start)
625{
626 return 0;
627}
8c2676a5 628EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
4942e998
KM
629#endif
630
45e0b78b
KM
631#endif /* CONFIG_MEMORY_HOTPLUG */
632
ae531c26
AV
633/*
634 * devmem_is_allowed() checks to see if /dev/mem access to a certain address
635 * is valid. The argument is a physical page number.
636 *
637 *
638 * On x86, access has to be given to the first megabyte of ram because that area
639 * contains bios code and data regions used by X and dosemu and similar apps.
640 * Access has to be given to non-kernel-ram areas as well, these contain the PCI
641 * mmio resources as well as potential bios/acpi data regions.
642 */
643int devmem_is_allowed(unsigned long pagenr)
644{
645 if (pagenr <= 256)
646 return 1;
647 if (!page_is_ram(pagenr))
648 return 1;
649 return 0;
650}
651
652
14a62c34
TG
653static struct kcore_list kcore_mem, kcore_vmalloc, kcore_kernel,
654 kcore_modules, kcore_vsyscall;
1da177e4
LT
655
656void __init mem_init(void)
657{
0a43e4bf 658 long codesize, reservedpages, datasize, initsize;
1da177e4 659
0dc243ae 660 pci_iommu_alloc();
1da177e4 661
48ddb154 662 /* clear_bss() already clear the empty_zero_page */
1da177e4
LT
663
664 reservedpages = 0;
665
666 /* this will put all low memory onto the freelists */
2b97690f 667#ifdef CONFIG_NUMA
0a43e4bf 668 totalram_pages = numa_free_all_bootmem();
1da177e4 669#else
0a43e4bf 670 totalram_pages = free_all_bootmem();
1da177e4 671#endif
5cb248ab
MG
672 reservedpages = end_pfn - totalram_pages -
673 absent_pages_in_range(0, end_pfn);
1da177e4
LT
674 after_bootmem = 1;
675
676 codesize = (unsigned long) &_etext - (unsigned long) &_text;
677 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
678 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
679
680 /* Register memory areas for /proc/kcore */
14a62c34
TG
681 kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
682 kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
1da177e4
LT
683 VMALLOC_END-VMALLOC_START);
684 kclist_add(&kcore_kernel, &_stext, _end - _stext);
685 kclist_add(&kcore_modules, (void *)MODULES_VADDR, MODULES_LEN);
14a62c34 686 kclist_add(&kcore_vsyscall, (void *)VSYSCALL_START,
1da177e4
LT
687 VSYSCALL_END - VSYSCALL_START);
688
10f22dde 689 printk(KERN_INFO "Memory: %luk/%luk available (%ldk kernel code, "
14a62c34 690 "%ldk reserved, %ldk data, %ldk init)\n",
1da177e4
LT
691 (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
692 end_pfn << (PAGE_SHIFT-10),
693 codesize >> 10,
694 reservedpages << (PAGE_SHIFT-10),
695 datasize >> 10,
696 initsize >> 10);
76ebd054
TG
697
698 cpa_init();
1da177e4
LT
699}
700
d167a518 701void free_init_pages(char *what, unsigned long begin, unsigned long end)
1da177e4 702{
bfc734b2 703 unsigned long addr = begin;
1da177e4 704
bfc734b2 705 if (addr >= end)
d167a518
GH
706 return;
707
ee01f112
IM
708 /*
709 * If debugging page accesses then do not free this memory but
710 * mark them not present - any buggy init-section access will
711 * create a kernel page fault:
712 */
713#ifdef CONFIG_DEBUG_PAGEALLOC
714 printk(KERN_INFO "debug: unmapping init memory %08lx..%08lx\n",
715 begin, PAGE_ALIGN(end));
716 set_memory_np(begin, (end - begin) >> PAGE_SHIFT);
717#else
6fb14755 718 printk(KERN_INFO "Freeing %s: %luk freed\n", what, (end - begin) >> 10);
14a62c34 719
bfc734b2 720 for (; addr < end; addr += PAGE_SIZE) {
e3ebadd9
LT
721 ClearPageReserved(virt_to_page(addr));
722 init_page_count(virt_to_page(addr));
723 memset((void *)(addr & ~(PAGE_SIZE-1)),
724 POISON_FREE_INITMEM, PAGE_SIZE);
e3ebadd9 725 free_page(addr);
1da177e4
LT
726 totalram_pages++;
727 }
ee01f112 728#endif
d167a518
GH
729}
730
731void free_initmem(void)
732{
d167a518 733 free_init_pages("unused kernel memory",
e3ebadd9
LT
734 (unsigned long)(&__init_begin),
735 (unsigned long)(&__init_end));
1da177e4
LT
736}
737
67df197b 738#ifdef CONFIG_DEBUG_RODATA
edeed305
AV
739const int rodata_test_data = 0xC3;
740EXPORT_SYMBOL_GPL(rodata_test_data);
67df197b 741
67df197b
AV
742void mark_rodata_ro(void)
743{
4e4eee0e 744 unsigned long start = PFN_ALIGN(_stext), end = PFN_ALIGN(__end_rodata);
67df197b 745
6fb14755 746 printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
e3ebadd9 747 (end - start) >> 10);
984bb80d
AV
748 set_memory_ro(start, (end - start) >> PAGE_SHIFT);
749
750 /*
751 * The rodata section (but not the kernel text!) should also be
752 * not-executable.
753 */
754 start = ((unsigned long)__start_rodata + PAGE_SIZE - 1) & PAGE_MASK;
755 set_memory_nx(start, (end - start) >> PAGE_SHIFT);
67df197b 756
1a487252
AV
757 rodata_test();
758
0c42f392 759#ifdef CONFIG_CPA_DEBUG
10f22dde 760 printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, end);
6d238cc4 761 set_memory_rw(start, (end-start) >> PAGE_SHIFT);
0c42f392 762
10f22dde 763 printk(KERN_INFO "Testing CPA: again\n");
6d238cc4 764 set_memory_ro(start, (end-start) >> PAGE_SHIFT);
0c42f392 765#endif
67df197b 766}
4e4eee0e 767
67df197b
AV
768#endif
769
1da177e4
LT
770#ifdef CONFIG_BLK_DEV_INITRD
771void free_initrd_mem(unsigned long start, unsigned long end)
772{
e3ebadd9 773 free_init_pages("initrd memory", start, end);
1da177e4
LT
774}
775#endif
776
d2dbf343
YL
777int __init reserve_bootmem_generic(unsigned long phys, unsigned long len,
778 int flags)
14a62c34 779{
2b97690f 780#ifdef CONFIG_NUMA
8b3cd09e 781 int nid, next_nid;
6a07a0ed 782 int ret;
5e58a02a
AK
783#endif
784 unsigned long pfn = phys >> PAGE_SHIFT;
14a62c34 785
5e58a02a 786 if (pfn >= end_pfn) {
14a62c34
TG
787 /*
788 * This can happen with kdump kernels when accessing
789 * firmware tables:
790 */
67794292 791 if (pfn < max_pfn_mapped)
8b2ef1d7 792 return -EFAULT;
14a62c34 793
6a07a0ed 794 printk(KERN_ERR "reserve_bootmem: illegal reserve %lx %lu\n",
5e58a02a 795 phys, len);
8b2ef1d7 796 return -EFAULT;
5e58a02a
AK
797 }
798
799 /* Should check here against the e820 map to avoid double free */
800#ifdef CONFIG_NUMA
8b3cd09e
YL
801 nid = phys_to_nid(phys);
802 next_nid = phys_to_nid(phys + len - 1);
803 if (nid == next_nid)
8b2ef1d7 804 ret = reserve_bootmem_node(NODE_DATA(nid), phys, len, flags);
8b3cd09e 805 else
8b2ef1d7
BW
806 ret = reserve_bootmem(phys, len, flags);
807
808 if (ret != 0)
809 return ret;
810
14a62c34 811#else
72a7fe39 812 reserve_bootmem(phys, len, BOOTMEM_DEFAULT);
1da177e4 813#endif
8b3cd09e 814
0e0b864e 815 if (phys+len <= MAX_DMA_PFN*PAGE_SIZE) {
e18c6874 816 dma_reserve += len / PAGE_SIZE;
0e0b864e
MG
817 set_dma_reserve(dma_reserve);
818 }
8b2ef1d7
BW
819
820 return 0;
1da177e4
LT
821}
822
14a62c34
TG
823int kern_addr_valid(unsigned long addr)
824{
1da177e4 825 unsigned long above = ((long)addr) >> __VIRTUAL_MASK_SHIFT;
14a62c34
TG
826 pgd_t *pgd;
827 pud_t *pud;
828 pmd_t *pmd;
829 pte_t *pte;
1da177e4
LT
830
831 if (above != 0 && above != -1UL)
14a62c34
TG
832 return 0;
833
1da177e4
LT
834 pgd = pgd_offset_k(addr);
835 if (pgd_none(*pgd))
836 return 0;
837
838 pud = pud_offset(pgd, addr);
839 if (pud_none(*pud))
14a62c34 840 return 0;
1da177e4
LT
841
842 pmd = pmd_offset(pud, addr);
843 if (pmd_none(*pmd))
844 return 0;
14a62c34 845
1da177e4
LT
846 if (pmd_large(*pmd))
847 return pfn_valid(pmd_pfn(*pmd));
848
849 pte = pte_offset_kernel(pmd, addr);
850 if (pte_none(*pte))
851 return 0;
14a62c34 852
1da177e4
LT
853 return pfn_valid(pte_pfn(*pte));
854}
855
14a62c34
TG
856/*
857 * A pseudo VMA to allow ptrace access for the vsyscall page. This only
858 * covers the 64bit vsyscall page now. 32bit has a real VMA now and does
859 * not need special handling anymore:
860 */
1da177e4 861static struct vm_area_struct gate_vma = {
14a62c34
TG
862 .vm_start = VSYSCALL_START,
863 .vm_end = VSYSCALL_START + (VSYSCALL_MAPPED_PAGES * PAGE_SIZE),
864 .vm_page_prot = PAGE_READONLY_EXEC,
865 .vm_flags = VM_READ | VM_EXEC
1da177e4
LT
866};
867
1da177e4
LT
868struct vm_area_struct *get_gate_vma(struct task_struct *tsk)
869{
870#ifdef CONFIG_IA32_EMULATION
1e014410
AK
871 if (test_tsk_thread_flag(tsk, TIF_IA32))
872 return NULL;
1da177e4
LT
873#endif
874 return &gate_vma;
875}
876
877int in_gate_area(struct task_struct *task, unsigned long addr)
878{
879 struct vm_area_struct *vma = get_gate_vma(task);
14a62c34 880
1e014410
AK
881 if (!vma)
882 return 0;
14a62c34 883
1da177e4
LT
884 return (addr >= vma->vm_start) && (addr < vma->vm_end);
885}
886
14a62c34
TG
887/*
888 * Use this when you have no reliable task/vma, typically from interrupt
889 * context. It is less reliable than using the task's vma and may give
890 * false positives:
1da177e4
LT
891 */
892int in_gate_area_no_task(unsigned long addr)
893{
1e014410 894 return (addr >= VSYSCALL_START) && (addr < VSYSCALL_END);
1da177e4 895}
2e1c49db 896
2aae950b
AK
897const char *arch_vma_name(struct vm_area_struct *vma)
898{
899 if (vma->vm_mm && vma->vm_start == (long)vma->vm_mm->context.vdso)
900 return "[vdso]";
901 if (vma == &gate_vma)
902 return "[vsyscall]";
903 return NULL;
904}
0889eba5
CL
905
906#ifdef CONFIG_SPARSEMEM_VMEMMAP
907/*
908 * Initialise the sparsemem vmemmap using huge-pages at the PMD level.
909 */
c2b91e2e
YL
910static long __meminitdata addr_start, addr_end;
911static void __meminitdata *p_start, *p_end;
912static int __meminitdata node_start;
913
14a62c34
TG
914int __meminit
915vmemmap_populate(struct page *start_page, unsigned long size, int node)
0889eba5
CL
916{
917 unsigned long addr = (unsigned long)start_page;
918 unsigned long end = (unsigned long)(start_page + size);
919 unsigned long next;
920 pgd_t *pgd;
921 pud_t *pud;
922 pmd_t *pmd;
923
924 for (; addr < end; addr = next) {
925 next = pmd_addr_end(addr, end);
926
927 pgd = vmemmap_pgd_populate(addr, node);
928 if (!pgd)
929 return -ENOMEM;
14a62c34 930
0889eba5
CL
931 pud = vmemmap_pud_populate(pgd, addr, node);
932 if (!pud)
933 return -ENOMEM;
934
935 pmd = pmd_offset(pud, addr);
936 if (pmd_none(*pmd)) {
937 pte_t entry;
14a62c34
TG
938 void *p;
939
940 p = vmemmap_alloc_block(PMD_SIZE, node);
0889eba5
CL
941 if (!p)
942 return -ENOMEM;
943
14a62c34
TG
944 entry = pfn_pte(__pa(p) >> PAGE_SHIFT,
945 PAGE_KERNEL_LARGE);
0889eba5
CL
946 set_pmd(pmd, __pmd(pte_val(entry)));
947
c2b91e2e
YL
948 /* check to see if we have contiguous blocks */
949 if (p_end != p || node_start != node) {
950 if (p_start)
951 printk(KERN_DEBUG " [%lx-%lx] PMD -> [%p-%p] on node %d\n",
952 addr_start, addr_end-1, p_start, p_end-1, node_start);
953 addr_start = addr;
954 node_start = node;
955 p_start = p;
956 }
957 addr_end = addr + PMD_SIZE;
958 p_end = p + PMD_SIZE;
14a62c34 959 } else {
0889eba5 960 vmemmap_verify((pte_t *)pmd, node, addr, next);
14a62c34 961 }
0889eba5 962 }
0889eba5
CL
963 return 0;
964}
c2b91e2e
YL
965
966void __meminit vmemmap_populate_print_last(void)
967{
968 if (p_start) {
969 printk(KERN_DEBUG " [%lx-%lx] PMD -> [%p-%p] on node %d\n",
970 addr_start, addr_end-1, p_start, p_end-1, node_start);
971 p_start = NULL;
972 p_end = NULL;
973 node_start = 0;
974 }
975}
0889eba5 976#endif