x86-64, NUMA: Wrap acpi_numa_init() so that failure can be indicated by return value
[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
a2531293 5 * Copyright (C) 2000 Pavel Machek <pavel@ucw.cz>
1da177e4
LT
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>
a9ce6bc1 24#include <linux/memblock.h>
1da177e4 25#include <linux/proc_fs.h>
59170891 26#include <linux/pci.h>
6fb14755 27#include <linux/pfn.h>
c9cf5528 28#include <linux/poison.h>
17a941d8 29#include <linux/dma-mapping.h>
44df75e6
MT
30#include <linux/module.h>
31#include <linux/memory_hotplug.h>
ae32b129 32#include <linux/nmi.h>
5a0e3ad6 33#include <linux/gfp.h>
1da177e4
LT
34
35#include <asm/processor.h>
46eaa670 36#include <asm/bios_ebda.h>
1da177e4
LT
37#include <asm/system.h>
38#include <asm/uaccess.h>
39#include <asm/pgtable.h>
40#include <asm/pgalloc.h>
41#include <asm/dma.h>
42#include <asm/fixmap.h>
43#include <asm/e820.h>
44#include <asm/apic.h>
45#include <asm/tlb.h>
46#include <asm/mmu_context.h>
47#include <asm/proto.h>
48#include <asm/smp.h>
2bc0414e 49#include <asm/sections.h>
718fc13b 50#include <asm/kdebug.h>
aaa64e04 51#include <asm/numa.h>
7bfeab9a 52#include <asm/cacheflush.h>
4fcb2083 53#include <asm/init.h>
1da177e4 54
00d1c5e0
IM
55static int __init parse_direct_gbpages_off(char *arg)
56{
57 direct_gbpages = 0;
58 return 0;
59}
60early_param("nogbpages", parse_direct_gbpages_off);
61
62static int __init parse_direct_gbpages_on(char *arg)
63{
64 direct_gbpages = 1;
65 return 0;
66}
67early_param("gbpages", parse_direct_gbpages_on);
68
1da177e4
LT
69/*
70 * NOTE: pagetable_init alloc all the fixmap pagetables contiguous on the
71 * physical space so we can cache the place of the first one and move
72 * around without checking the pgd every time.
73 */
74
be43d728 75pteval_t __supported_pte_mask __read_mostly = ~_PAGE_IOMAP;
bd220a24
YL
76EXPORT_SYMBOL_GPL(__supported_pte_mask);
77
bd220a24
YL
78int force_personality32;
79
deed05b7
IM
80/*
81 * noexec32=on|off
82 * Control non executable heap for 32bit processes.
83 * To control the stack too use noexec=off
84 *
85 * on PROT_READ does not imply PROT_EXEC for 32-bit processes (default)
86 * off PROT_READ implies PROT_EXEC
87 */
bd220a24
YL
88static int __init nonx32_setup(char *str)
89{
90 if (!strcmp(str, "on"))
91 force_personality32 &= ~READ_IMPLIES_EXEC;
92 else if (!strcmp(str, "off"))
93 force_personality32 |= READ_IMPLIES_EXEC;
94 return 1;
95}
96__setup("noexec32=", nonx32_setup);
97
6afb5157
HL
98/*
99 * When memory was added/removed make sure all the processes MM have
100 * suitable PGD entries in the local PGD level page.
101 */
102void sync_global_pgds(unsigned long start, unsigned long end)
103{
44235dcd
JF
104 unsigned long address;
105
106 for (address = start; address <= end; address += PGDIR_SIZE) {
107 const pgd_t *pgd_ref = pgd_offset_k(address);
108 unsigned long flags;
109 struct page *page;
110
111 if (pgd_none(*pgd_ref))
112 continue;
113
114 spin_lock_irqsave(&pgd_lock, flags);
115 list_for_each_entry(page, &pgd_list, lru) {
116 pgd_t *pgd;
617d34d9
JF
117 spinlock_t *pgt_lock;
118
44235dcd 119 pgd = (pgd_t *)page_address(page) + pgd_index(address);
617d34d9
JF
120 pgt_lock = &pgd_page_get_mm(page)->page_table_lock;
121 spin_lock(pgt_lock);
122
44235dcd
JF
123 if (pgd_none(*pgd))
124 set_pgd(pgd, *pgd_ref);
125 else
126 BUG_ON(pgd_page_vaddr(*pgd)
127 != pgd_page_vaddr(*pgd_ref));
617d34d9
JF
128
129 spin_unlock(pgt_lock);
44235dcd
JF
130 }
131 spin_unlock_irqrestore(&pgd_lock, flags);
132 }
6afb5157
HL
133}
134
8d6ea967
MS
135/*
136 * NOTE: This function is marked __ref because it calls __init function
137 * (alloc_bootmem_pages). It's safe to do it ONLY when after_bootmem == 0.
138 */
139static __ref void *spp_getpage(void)
14a62c34 140{
1da177e4 141 void *ptr;
14a62c34 142
1da177e4 143 if (after_bootmem)
9e730237 144 ptr = (void *) get_zeroed_page(GFP_ATOMIC | __GFP_NOTRACK);
1da177e4
LT
145 else
146 ptr = alloc_bootmem_pages(PAGE_SIZE);
14a62c34
TG
147
148 if (!ptr || ((unsigned long)ptr & ~PAGE_MASK)) {
149 panic("set_pte_phys: cannot allocate page data %s\n",
150 after_bootmem ? "after bootmem" : "");
151 }
1da177e4 152
10f22dde 153 pr_debug("spp_getpage %p\n", ptr);
14a62c34 154
1da177e4 155 return ptr;
14a62c34 156}
1da177e4 157
f254f390 158static pud_t *fill_pud(pgd_t *pgd, unsigned long vaddr)
1da177e4 159{
458a3e64
TH
160 if (pgd_none(*pgd)) {
161 pud_t *pud = (pud_t *)spp_getpage();
162 pgd_populate(&init_mm, pgd, pud);
163 if (pud != pud_offset(pgd, 0))
164 printk(KERN_ERR "PAGETABLE BUG #00! %p <-> %p\n",
165 pud, pud_offset(pgd, 0));
166 }
167 return pud_offset(pgd, vaddr);
168}
1da177e4 169
f254f390 170static pmd_t *fill_pmd(pud_t *pud, unsigned long vaddr)
458a3e64 171{
1da177e4 172 if (pud_none(*pud)) {
458a3e64 173 pmd_t *pmd = (pmd_t *) spp_getpage();
bb23e403 174 pud_populate(&init_mm, pud, pmd);
458a3e64 175 if (pmd != pmd_offset(pud, 0))
10f22dde 176 printk(KERN_ERR "PAGETABLE BUG #01! %p <-> %p\n",
458a3e64 177 pmd, pmd_offset(pud, 0));
1da177e4 178 }
458a3e64
TH
179 return pmd_offset(pud, vaddr);
180}
181
f254f390 182static pte_t *fill_pte(pmd_t *pmd, unsigned long vaddr)
458a3e64 183{
1da177e4 184 if (pmd_none(*pmd)) {
458a3e64 185 pte_t *pte = (pte_t *) spp_getpage();
bb23e403 186 pmd_populate_kernel(&init_mm, pmd, pte);
458a3e64 187 if (pte != pte_offset_kernel(pmd, 0))
10f22dde 188 printk(KERN_ERR "PAGETABLE BUG #02!\n");
1da177e4 189 }
458a3e64
TH
190 return pte_offset_kernel(pmd, vaddr);
191}
192
193void set_pte_vaddr_pud(pud_t *pud_page, unsigned long vaddr, pte_t new_pte)
194{
195 pud_t *pud;
196 pmd_t *pmd;
197 pte_t *pte;
198
199 pud = pud_page + pud_index(vaddr);
200 pmd = fill_pmd(pud, vaddr);
201 pte = fill_pte(pmd, vaddr);
1da177e4 202
1da177e4
LT
203 set_pte(pte, new_pte);
204
205 /*
206 * It's enough to flush this one mapping.
207 * (PGE mappings get flushed as well)
208 */
209 __flush_tlb_one(vaddr);
210}
211
458a3e64 212void set_pte_vaddr(unsigned long vaddr, pte_t pteval)
0814e0ba
EH
213{
214 pgd_t *pgd;
215 pud_t *pud_page;
216
217 pr_debug("set_pte_vaddr %lx to %lx\n", vaddr, native_pte_val(pteval));
218
219 pgd = pgd_offset_k(vaddr);
220 if (pgd_none(*pgd)) {
221 printk(KERN_ERR
222 "PGD FIXMAP MISSING, it should be setup in head.S!\n");
223 return;
224 }
225 pud_page = (pud_t*)pgd_page_vaddr(*pgd);
226 set_pte_vaddr_pud(pud_page, vaddr, pteval);
227}
228
458a3e64 229pmd_t * __init populate_extra_pmd(unsigned long vaddr)
11124411
TH
230{
231 pgd_t *pgd;
232 pud_t *pud;
233
234 pgd = pgd_offset_k(vaddr);
458a3e64
TH
235 pud = fill_pud(pgd, vaddr);
236 return fill_pmd(pud, vaddr);
237}
238
239pte_t * __init populate_extra_pte(unsigned long vaddr)
240{
241 pmd_t *pmd;
11124411 242
458a3e64
TH
243 pmd = populate_extra_pmd(vaddr);
244 return fill_pte(pmd, vaddr);
11124411
TH
245}
246
3a9e189d
JS
247/*
248 * Create large page table mappings for a range of physical addresses.
249 */
250static void __init __init_extra_mapping(unsigned long phys, unsigned long size,
251 pgprot_t prot)
252{
253 pgd_t *pgd;
254 pud_t *pud;
255 pmd_t *pmd;
256
257 BUG_ON((phys & ~PMD_MASK) || (size & ~PMD_MASK));
258 for (; size; phys += PMD_SIZE, size -= PMD_SIZE) {
259 pgd = pgd_offset_k((unsigned long)__va(phys));
260 if (pgd_none(*pgd)) {
261 pud = (pud_t *) spp_getpage();
262 set_pgd(pgd, __pgd(__pa(pud) | _KERNPG_TABLE |
263 _PAGE_USER));
264 }
265 pud = pud_offset(pgd, (unsigned long)__va(phys));
266 if (pud_none(*pud)) {
267 pmd = (pmd_t *) spp_getpage();
268 set_pud(pud, __pud(__pa(pmd) | _KERNPG_TABLE |
269 _PAGE_USER));
270 }
271 pmd = pmd_offset(pud, phys);
272 BUG_ON(!pmd_none(*pmd));
273 set_pmd(pmd, __pmd(phys | pgprot_val(prot)));
274 }
275}
276
277void __init init_extra_mapping_wb(unsigned long phys, unsigned long size)
278{
279 __init_extra_mapping(phys, size, PAGE_KERNEL_LARGE);
280}
281
282void __init init_extra_mapping_uc(unsigned long phys, unsigned long size)
283{
284 __init_extra_mapping(phys, size, PAGE_KERNEL_LARGE_NOCACHE);
285}
286
31eedd82 287/*
88f3aec7
IM
288 * The head.S code sets up the kernel high mapping:
289 *
290 * from __START_KERNEL_map to __START_KERNEL_map + size (== _end-_text)
31eedd82
TG
291 *
292 * phys_addr holds the negative offset to the kernel, which is added
293 * to the compile time generated pmds. This results in invalid pmds up
294 * to the point where we hit the physaddr 0 mapping.
295 *
296 * We limit the mappings to the region from _text to _end. _end is
297 * rounded up to the 2MB boundary. This catches the invalid pmds as
298 * well, as they are located before _text:
299 */
300void __init cleanup_highmap(void)
301{
302 unsigned long vaddr = __START_KERNEL_map;
d86bb0da 303 unsigned long end = roundup((unsigned long)_end, PMD_SIZE) - 1;
31eedd82
TG
304 pmd_t *pmd = level2_kernel_pgt;
305 pmd_t *last_pmd = pmd + PTRS_PER_PMD;
306
307 for (; pmd < last_pmd; pmd++, vaddr += PMD_SIZE) {
2884f110 308 if (pmd_none(*pmd))
31eedd82
TG
309 continue;
310 if (vaddr < (unsigned long) _text || vaddr > end)
311 set_pmd(pmd, __pmd(0));
312 }
313}
314
9482ac6e 315static __ref void *alloc_low_page(unsigned long *phys)
14a62c34 316{
298af9d8 317 unsigned long pfn = e820_table_end++;
1da177e4
LT
318 void *adr;
319
44df75e6 320 if (after_bootmem) {
9e730237 321 adr = (void *)get_zeroed_page(GFP_ATOMIC | __GFP_NOTRACK);
44df75e6 322 *phys = __pa(adr);
14a62c34 323
44df75e6
MT
324 return adr;
325 }
326
298af9d8 327 if (pfn >= e820_table_top)
14a62c34 328 panic("alloc_low_page: ran out of memory");
dafe41ee 329
14941779 330 adr = early_memremap(pfn * PAGE_SIZE, PAGE_SIZE);
234bb549 331 clear_page(adr);
dafe41ee
VG
332 *phys = pfn * PAGE_SIZE;
333 return adr;
334}
1da177e4 335
4b239f45
YL
336static __ref void *map_low_page(void *virt)
337{
338 void *adr;
339 unsigned long phys, left;
340
341 if (after_bootmem)
342 return virt;
343
344 phys = __pa(virt);
345 left = phys & (PAGE_SIZE - 1);
346 adr = early_memremap(phys & PAGE_MASK, PAGE_SIZE);
347 adr = (void *)(((unsigned long)adr) | left);
348
349 return adr;
350}
351
9482ac6e 352static __ref void unmap_low_page(void *adr)
14a62c34 353{
44df75e6
MT
354 if (after_bootmem)
355 return;
356
4b239f45 357 early_iounmap((void *)((unsigned long)adr & PAGE_MASK), PAGE_SIZE);
14a62c34 358}
1da177e4 359
7b16eb89 360static unsigned long __meminit
b27a43c1
SS
361phys_pte_init(pte_t *pte_page, unsigned long addr, unsigned long end,
362 pgprot_t prot)
4f9c11dd
JF
363{
364 unsigned pages = 0;
7b16eb89 365 unsigned long last_map_addr = end;
4f9c11dd 366 int i;
7b16eb89 367
4f9c11dd
JF
368 pte_t *pte = pte_page + pte_index(addr);
369
370 for(i = pte_index(addr); i < PTRS_PER_PTE; i++, addr += PAGE_SIZE, pte++) {
371
372 if (addr >= end) {
373 if (!after_bootmem) {
374 for(; i < PTRS_PER_PTE; i++, pte++)
375 set_pte(pte, __pte(0));
376 }
377 break;
378 }
379
b27a43c1
SS
380 /*
381 * We will re-use the existing mapping.
382 * Xen for example has some special requirements, like mapping
383 * pagetable pages as RO. So assume someone who pre-setup
384 * these mappings are more intelligent.
385 */
3afa3949
YL
386 if (pte_val(*pte)) {
387 pages++;
4f9c11dd 388 continue;
3afa3949 389 }
4f9c11dd
JF
390
391 if (0)
392 printk(" pte=%p addr=%lx pte=%016lx\n",
393 pte, addr, pfn_pte(addr >> PAGE_SHIFT, PAGE_KERNEL).pte);
4f9c11dd 394 pages++;
b27a43c1 395 set_pte(pte, pfn_pte(addr >> PAGE_SHIFT, prot));
7b16eb89 396 last_map_addr = (addr & PAGE_MASK) + PAGE_SIZE;
4f9c11dd 397 }
a2699e47 398
4f9c11dd 399 update_page_count(PG_LEVEL_4K, pages);
7b16eb89
YL
400
401 return last_map_addr;
4f9c11dd
JF
402}
403
cc615032 404static unsigned long __meminit
b50efd2a 405phys_pmd_init(pmd_t *pmd_page, unsigned long address, unsigned long end,
b27a43c1 406 unsigned long page_size_mask, pgprot_t prot)
44df75e6 407{
ce0c0e50 408 unsigned long pages = 0;
7b16eb89 409 unsigned long last_map_addr = end;
ce0c0e50 410
6ad91658 411 int i = pmd_index(address);
44df75e6 412
6ad91658 413 for (; i < PTRS_PER_PMD; i++, address += PMD_SIZE) {
4f9c11dd 414 unsigned long pte_phys;
6ad91658 415 pmd_t *pmd = pmd_page + pmd_index(address);
4f9c11dd 416 pte_t *pte;
b27a43c1 417 pgprot_t new_prot = prot;
44df75e6 418
5f51e139 419 if (address >= end) {
14a62c34 420 if (!after_bootmem) {
5f51e139
JB
421 for (; i < PTRS_PER_PMD; i++, pmd++)
422 set_pmd(pmd, __pmd(0));
14a62c34 423 }
44df75e6
MT
424 break;
425 }
6ad91658 426
4f9c11dd 427 if (pmd_val(*pmd)) {
8ae3a5a8
JB
428 if (!pmd_large(*pmd)) {
429 spin_lock(&init_mm.page_table_lock);
4b239f45
YL
430 pte = map_low_page((pte_t *)pmd_page_vaddr(*pmd));
431 last_map_addr = phys_pte_init(pte, address,
b27a43c1 432 end, prot);
4b239f45 433 unmap_low_page(pte);
8ae3a5a8 434 spin_unlock(&init_mm.page_table_lock);
a2699e47 435 continue;
8ae3a5a8 436 }
b27a43c1
SS
437 /*
438 * If we are ok with PG_LEVEL_2M mapping, then we will
439 * use the existing mapping,
440 *
441 * Otherwise, we will split the large page mapping but
442 * use the same existing protection bits except for
443 * large page, so that we don't violate Intel's TLB
444 * Application note (317080) which says, while changing
445 * the page sizes, new and old translations should
446 * not differ with respect to page frame and
447 * attributes.
448 */
3afa3949
YL
449 if (page_size_mask & (1 << PG_LEVEL_2M)) {
450 pages++;
b27a43c1 451 continue;
3afa3949 452 }
b27a43c1 453 new_prot = pte_pgprot(pte_clrhuge(*(pte_t *)pmd));
4f9c11dd
JF
454 }
455
b50efd2a 456 if (page_size_mask & (1<<PG_LEVEL_2M)) {
4f9c11dd 457 pages++;
8ae3a5a8 458 spin_lock(&init_mm.page_table_lock);
4f9c11dd 459 set_pte((pte_t *)pmd,
b27a43c1
SS
460 pfn_pte(address >> PAGE_SHIFT,
461 __pgprot(pgprot_val(prot) | _PAGE_PSE)));
8ae3a5a8 462 spin_unlock(&init_mm.page_table_lock);
7b16eb89 463 last_map_addr = (address & PMD_MASK) + PMD_SIZE;
6ad91658 464 continue;
4f9c11dd 465 }
6ad91658 466
4f9c11dd 467 pte = alloc_low_page(&pte_phys);
b27a43c1 468 last_map_addr = phys_pte_init(pte, address, end, new_prot);
4f9c11dd
JF
469 unmap_low_page(pte);
470
8ae3a5a8 471 spin_lock(&init_mm.page_table_lock);
4f9c11dd 472 pmd_populate_kernel(&init_mm, pmd, __va(pte_phys));
8ae3a5a8 473 spin_unlock(&init_mm.page_table_lock);
44df75e6 474 }
ce0c0e50 475 update_page_count(PG_LEVEL_2M, pages);
7b16eb89 476 return last_map_addr;
44df75e6
MT
477}
478
cc615032 479static unsigned long __meminit
b50efd2a
YL
480phys_pud_init(pud_t *pud_page, unsigned long addr, unsigned long end,
481 unsigned long page_size_mask)
14a62c34 482{
ce0c0e50 483 unsigned long pages = 0;
cc615032 484 unsigned long last_map_addr = end;
6ad91658 485 int i = pud_index(addr);
44df75e6 486
14a62c34 487 for (; i < PTRS_PER_PUD; i++, addr = (addr & PUD_MASK) + PUD_SIZE) {
6ad91658
KM
488 unsigned long pmd_phys;
489 pud_t *pud = pud_page + pud_index(addr);
1da177e4 490 pmd_t *pmd;
b27a43c1 491 pgprot_t prot = PAGE_KERNEL;
1da177e4 492
6ad91658 493 if (addr >= end)
1da177e4 494 break;
1da177e4 495
14a62c34
TG
496 if (!after_bootmem &&
497 !e820_any_mapped(addr, addr+PUD_SIZE, 0)) {
498 set_pud(pud, __pud(0));
1da177e4 499 continue;
14a62c34 500 }
1da177e4 501
6ad91658 502 if (pud_val(*pud)) {
a2699e47 503 if (!pud_large(*pud)) {
4b239f45
YL
504 pmd = map_low_page(pmd_offset(pud, 0));
505 last_map_addr = phys_pmd_init(pmd, addr, end,
b27a43c1 506 page_size_mask, prot);
4b239f45
YL
507 unmap_low_page(pmd);
508 __flush_tlb_all();
a2699e47
SS
509 continue;
510 }
b27a43c1
SS
511 /*
512 * If we are ok with PG_LEVEL_1G mapping, then we will
513 * use the existing mapping.
514 *
515 * Otherwise, we will split the gbpage mapping but use
516 * the same existing protection bits except for large
517 * page, so that we don't violate Intel's TLB
518 * Application note (317080) which says, while changing
519 * the page sizes, new and old translations should
520 * not differ with respect to page frame and
521 * attributes.
522 */
3afa3949
YL
523 if (page_size_mask & (1 << PG_LEVEL_1G)) {
524 pages++;
b27a43c1 525 continue;
3afa3949 526 }
b27a43c1 527 prot = pte_pgprot(pte_clrhuge(*(pte_t *)pud));
ef925766
AK
528 }
529
b50efd2a 530 if (page_size_mask & (1<<PG_LEVEL_1G)) {
ce0c0e50 531 pages++;
8ae3a5a8 532 spin_lock(&init_mm.page_table_lock);
ef925766
AK
533 set_pte((pte_t *)pud,
534 pfn_pte(addr >> PAGE_SHIFT, PAGE_KERNEL_LARGE));
8ae3a5a8 535 spin_unlock(&init_mm.page_table_lock);
cc615032 536 last_map_addr = (addr & PUD_MASK) + PUD_SIZE;
6ad91658
KM
537 continue;
538 }
539
dafe41ee 540 pmd = alloc_low_page(&pmd_phys);
b27a43c1
SS
541 last_map_addr = phys_pmd_init(pmd, addr, end, page_size_mask,
542 prot);
4f9c11dd 543 unmap_low_page(pmd);
8ae3a5a8
JB
544
545 spin_lock(&init_mm.page_table_lock);
4f9c11dd 546 pud_populate(&init_mm, pud, __va(pmd_phys));
44df75e6 547 spin_unlock(&init_mm.page_table_lock);
1da177e4 548 }
1a2b4412 549 __flush_tlb_all();
a2699e47 550
ce0c0e50 551 update_page_count(PG_LEVEL_1G, pages);
cc615032 552
1a0db38e 553 return last_map_addr;
14a62c34 554}
1da177e4 555
41d840e2 556unsigned long __meminit
f765090a
PE
557kernel_physical_mapping_init(unsigned long start,
558 unsigned long end,
559 unsigned long page_size_mask)
14a62c34 560{
9b861528 561 bool pgd_changed = false;
b50efd2a 562 unsigned long next, last_map_addr = end;
9b861528 563 unsigned long addr;
1da177e4
LT
564
565 start = (unsigned long)__va(start);
566 end = (unsigned long)__va(end);
1c5f50ee 567 addr = start;
1da177e4
LT
568
569 for (; start < end; start = next) {
44df75e6 570 pgd_t *pgd = pgd_offset_k(start);
14a62c34 571 unsigned long pud_phys;
44df75e6
MT
572 pud_t *pud;
573
e22146e6 574 next = (start + PGDIR_SIZE) & PGDIR_MASK;
4f9c11dd
JF
575 if (next > end)
576 next = end;
577
578 if (pgd_val(*pgd)) {
4b239f45
YL
579 pud = map_low_page((pud_t *)pgd_page_vaddr(*pgd));
580 last_map_addr = phys_pud_init(pud, __pa(start),
b50efd2a 581 __pa(end), page_size_mask);
4b239f45 582 unmap_low_page(pud);
4f9c11dd
JF
583 continue;
584 }
585
8ae3a5a8 586 pud = alloc_low_page(&pud_phys);
b50efd2a
YL
587 last_map_addr = phys_pud_init(pud, __pa(start), __pa(next),
588 page_size_mask);
4f9c11dd 589 unmap_low_page(pud);
8ae3a5a8
JB
590
591 spin_lock(&init_mm.page_table_lock);
592 pgd_populate(&init_mm, pgd, __va(pud_phys));
593 spin_unlock(&init_mm.page_table_lock);
9b861528 594 pgd_changed = true;
14a62c34 595 }
9b861528
HL
596
597 if (pgd_changed)
598 sync_global_pgds(addr, end);
599
a2699e47 600 __flush_tlb_all();
1da177e4 601
b50efd2a
YL
602 return last_map_addr;
603}
7b16eb89 604
2b97690f 605#ifndef CONFIG_NUMA
86ef4dbf 606void __init initmem_init(int acpi, int k8)
1f75d7e3 607{
86ef4dbf 608 memblock_x86_register_active_regions(0, 0, max_pfn);
1411e0ec 609 init_memory_mapping_high();
1f75d7e3 610}
3551f88f 611#endif
1f75d7e3 612
1411e0ec
YL
613struct mapping_work_data {
614 unsigned long start;
615 unsigned long end;
616 unsigned long pfn_mapped;
617};
618
619static int __init_refok
620mapping_work_fn(unsigned long start_pfn, unsigned long end_pfn, void *datax)
621{
622 struct mapping_work_data *data = datax;
623 unsigned long pfn_mapped;
624 unsigned long final_start, final_end;
625
626 final_start = max_t(unsigned long, start_pfn<<PAGE_SHIFT, data->start);
627 final_end = min_t(unsigned long, end_pfn<<PAGE_SHIFT, data->end);
628
629 if (final_end <= final_start)
630 return 0;
631
632 pfn_mapped = init_memory_mapping(final_start, final_end);
633
634 if (pfn_mapped > data->pfn_mapped)
635 data->pfn_mapped = pfn_mapped;
636
637 return 0;
638}
639
640static unsigned long __init_refok
641init_memory_mapping_active_regions(unsigned long start, unsigned long end)
642{
643 struct mapping_work_data data;
644
645 data.start = start;
646 data.end = end;
647 data.pfn_mapped = 0;
648
649 work_with_active_regions(MAX_NUMNODES, mapping_work_fn, &data);
650
651 return data.pfn_mapped;
652}
653
654void __init_refok init_memory_mapping_high(void)
655{
656 if (max_pfn > max_low_pfn) {
657 max_pfn_mapped = init_memory_mapping_active_regions(1UL<<32,
658 max_pfn<<PAGE_SHIFT);
659 /* can we preserve max_low_pfn ? */
660 max_low_pfn = max_pfn;
661
662 memblock.current_limit = get_max_mapped();
663 }
664}
665
1da177e4
LT
666void __init paging_init(void)
667{
6391af17 668 unsigned long max_zone_pfns[MAX_NR_ZONES];
14a62c34 669
6391af17
MG
670 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
671 max_zone_pfns[ZONE_DMA] = MAX_DMA_PFN;
672 max_zone_pfns[ZONE_DMA32] = MAX_DMA32_PFN;
c987d12f 673 max_zone_pfns[ZONE_NORMAL] = max_pfn;
6391af17 674
3551f88f 675 sparse_memory_present_with_active_regions(MAX_NUMNODES);
44df75e6 676 sparse_init();
44b57280
YL
677
678 /*
679 * clear the default setting with node 0
680 * note: don't use nodes_clear here, that is really clearing when
681 * numa support is not compiled in, and later node_set_state
682 * will not set it back.
683 */
684 node_clear_state(0, N_NORMAL_MEMORY);
685
5cb248ab 686 free_area_init_nodes(max_zone_pfns);
1da177e4 687}
1da177e4 688
44df75e6
MT
689/*
690 * Memory hotplug specific functions
44df75e6 691 */
bc02af93 692#ifdef CONFIG_MEMORY_HOTPLUG
ea085417
SZ
693/*
694 * After memory hotplug the variables max_pfn, max_low_pfn and high_memory need
695 * updating.
696 */
697static void update_end_of_memory_vars(u64 start, u64 size)
698{
699 unsigned long end_pfn = PFN_UP(start + size);
700
701 if (end_pfn > max_pfn) {
702 max_pfn = end_pfn;
703 max_low_pfn = end_pfn;
704 high_memory = (void *)__va(max_pfn * PAGE_SIZE - 1) + 1;
705 }
706}
707
9d99aaa3
AK
708/*
709 * Memory is added always to NORMAL zone. This means you will never get
710 * additional DMA/DMA32 memory.
711 */
bc02af93 712int arch_add_memory(int nid, u64 start, u64 size)
44df75e6 713{
bc02af93 714 struct pglist_data *pgdat = NODE_DATA(nid);
776ed98b 715 struct zone *zone = pgdat->node_zones + ZONE_NORMAL;
cc615032 716 unsigned long last_mapped_pfn, start_pfn = start >> PAGE_SHIFT;
44df75e6
MT
717 unsigned long nr_pages = size >> PAGE_SHIFT;
718 int ret;
719
60817c9b 720 last_mapped_pfn = init_memory_mapping(start, start + size);
cc615032
AK
721 if (last_mapped_pfn > max_pfn_mapped)
722 max_pfn_mapped = last_mapped_pfn;
45e0b78b 723
c04fc586 724 ret = __add_pages(nid, zone, start_pfn, nr_pages);
fe8b868e 725 WARN_ON_ONCE(ret);
44df75e6 726
ea085417
SZ
727 /* update max_pfn, max_low_pfn and high_memory */
728 update_end_of_memory_vars(start, size);
729
44df75e6 730 return ret;
44df75e6 731}
bc02af93 732EXPORT_SYMBOL_GPL(arch_add_memory);
44df75e6 733
8243229f 734#if !defined(CONFIG_ACPI_NUMA) && defined(CONFIG_NUMA)
4942e998
KM
735int memory_add_physaddr_to_nid(u64 start)
736{
737 return 0;
738}
8c2676a5 739EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
4942e998
KM
740#endif
741
45e0b78b
KM
742#endif /* CONFIG_MEMORY_HOTPLUG */
743
81ac3ad9 744static struct kcore_list kcore_vsyscall;
1da177e4
LT
745
746void __init mem_init(void)
747{
0a43e4bf 748 long codesize, reservedpages, datasize, initsize;
11a6b0c9 749 unsigned long absent_pages;
1da177e4 750
0dc243ae 751 pci_iommu_alloc();
1da177e4 752
48ddb154 753 /* clear_bss() already clear the empty_zero_page */
1da177e4
LT
754
755 reservedpages = 0;
756
757 /* this will put all low memory onto the freelists */
2b97690f 758#ifdef CONFIG_NUMA
0a43e4bf 759 totalram_pages = numa_free_all_bootmem();
1da177e4 760#else
0a43e4bf 761 totalram_pages = free_all_bootmem();
1da177e4 762#endif
11a6b0c9
YL
763
764 absent_pages = absent_pages_in_range(0, max_pfn);
765 reservedpages = max_pfn - totalram_pages - absent_pages;
1da177e4
LT
766 after_bootmem = 1;
767
768 codesize = (unsigned long) &_etext - (unsigned long) &_text;
769 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
770 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
771
772 /* Register memory areas for /proc/kcore */
14a62c34 773 kclist_add(&kcore_vsyscall, (void *)VSYSCALL_START,
c30bb2a2 774 VSYSCALL_END - VSYSCALL_START, KCORE_OTHER);
1da177e4 775
10f22dde 776 printk(KERN_INFO "Memory: %luk/%luk available (%ldk kernel code, "
11a6b0c9 777 "%ldk absent, %ldk reserved, %ldk data, %ldk init)\n",
cc013a88 778 nr_free_pages() << (PAGE_SHIFT-10),
c987d12f 779 max_pfn << (PAGE_SHIFT-10),
1da177e4 780 codesize >> 10,
11a6b0c9 781 absent_pages << (PAGE_SHIFT-10),
1da177e4
LT
782 reservedpages << (PAGE_SHIFT-10),
783 datasize >> 10,
784 initsize >> 10);
1da177e4
LT
785}
786
67df197b 787#ifdef CONFIG_DEBUG_RODATA
edeed305
AV
788const int rodata_test_data = 0xC3;
789EXPORT_SYMBOL_GPL(rodata_test_data);
67df197b 790
502f6604 791int kernel_set_to_readonly;
16239630
SR
792
793void set_kernel_text_rw(void)
794{
b9af7c0d 795 unsigned long start = PFN_ALIGN(_text);
e7d23dde 796 unsigned long end = PFN_ALIGN(__stop___ex_table);
16239630
SR
797
798 if (!kernel_set_to_readonly)
799 return;
800
801 pr_debug("Set kernel text: %lx - %lx for read write\n",
802 start, end);
803
e7d23dde
SS
804 /*
805 * Make the kernel identity mapping for text RW. Kernel text
806 * mapping will always be RO. Refer to the comment in
807 * static_protections() in pageattr.c
808 */
16239630
SR
809 set_memory_rw(start, (end - start) >> PAGE_SHIFT);
810}
811
812void set_kernel_text_ro(void)
813{
b9af7c0d 814 unsigned long start = PFN_ALIGN(_text);
e7d23dde 815 unsigned long end = PFN_ALIGN(__stop___ex_table);
16239630
SR
816
817 if (!kernel_set_to_readonly)
818 return;
819
820 pr_debug("Set kernel text: %lx - %lx for read only\n",
821 start, end);
822
e7d23dde
SS
823 /*
824 * Set the kernel identity mapping for text RO.
825 */
16239630
SR
826 set_memory_ro(start, (end - start) >> PAGE_SHIFT);
827}
828
67df197b
AV
829void mark_rodata_ro(void)
830{
74e08179 831 unsigned long start = PFN_ALIGN(_text);
8f0f996e
SR
832 unsigned long rodata_start =
833 ((unsigned long)__start_rodata + PAGE_SIZE - 1) & PAGE_MASK;
74e08179
SS
834 unsigned long end = (unsigned long) &__end_rodata_hpage_align;
835 unsigned long text_end = PAGE_ALIGN((unsigned long) &__stop___ex_table);
836 unsigned long rodata_end = PAGE_ALIGN((unsigned long) &__end_rodata);
837 unsigned long data_start = (unsigned long) &_sdata;
8f0f996e 838
6fb14755 839 printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
e3ebadd9 840 (end - start) >> 10);
984bb80d
AV
841 set_memory_ro(start, (end - start) >> PAGE_SHIFT);
842
16239630
SR
843 kernel_set_to_readonly = 1;
844
984bb80d
AV
845 /*
846 * The rodata section (but not the kernel text!) should also be
847 * not-executable.
848 */
72b59d67 849 set_memory_nx(rodata_start, (end - rodata_start) >> PAGE_SHIFT);
67df197b 850
1a487252
AV
851 rodata_test();
852
0c42f392 853#ifdef CONFIG_CPA_DEBUG
10f22dde 854 printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, end);
6d238cc4 855 set_memory_rw(start, (end-start) >> PAGE_SHIFT);
0c42f392 856
10f22dde 857 printk(KERN_INFO "Testing CPA: again\n");
6d238cc4 858 set_memory_ro(start, (end-start) >> PAGE_SHIFT);
0c42f392 859#endif
74e08179
SS
860
861 free_init_pages("unused kernel memory",
862 (unsigned long) page_address(virt_to_page(text_end)),
863 (unsigned long)
864 page_address(virt_to_page(rodata_start)));
865 free_init_pages("unused kernel memory",
866 (unsigned long) page_address(virt_to_page(rodata_end)),
867 (unsigned long) page_address(virt_to_page(data_start)));
67df197b 868}
4e4eee0e 869
67df197b
AV
870#endif
871
14a62c34
TG
872int kern_addr_valid(unsigned long addr)
873{
1da177e4 874 unsigned long above = ((long)addr) >> __VIRTUAL_MASK_SHIFT;
14a62c34
TG
875 pgd_t *pgd;
876 pud_t *pud;
877 pmd_t *pmd;
878 pte_t *pte;
1da177e4
LT
879
880 if (above != 0 && above != -1UL)
14a62c34
TG
881 return 0;
882
1da177e4
LT
883 pgd = pgd_offset_k(addr);
884 if (pgd_none(*pgd))
885 return 0;
886
887 pud = pud_offset(pgd, addr);
888 if (pud_none(*pud))
14a62c34 889 return 0;
1da177e4
LT
890
891 pmd = pmd_offset(pud, addr);
892 if (pmd_none(*pmd))
893 return 0;
14a62c34 894
1da177e4
LT
895 if (pmd_large(*pmd))
896 return pfn_valid(pmd_pfn(*pmd));
897
898 pte = pte_offset_kernel(pmd, addr);
899 if (pte_none(*pte))
900 return 0;
14a62c34 901
1da177e4
LT
902 return pfn_valid(pte_pfn(*pte));
903}
904
14a62c34
TG
905/*
906 * A pseudo VMA to allow ptrace access for the vsyscall page. This only
907 * covers the 64bit vsyscall page now. 32bit has a real VMA now and does
908 * not need special handling anymore:
909 */
1da177e4 910static struct vm_area_struct gate_vma = {
14a62c34
TG
911 .vm_start = VSYSCALL_START,
912 .vm_end = VSYSCALL_START + (VSYSCALL_MAPPED_PAGES * PAGE_SIZE),
913 .vm_page_prot = PAGE_READONLY_EXEC,
914 .vm_flags = VM_READ | VM_EXEC
1da177e4
LT
915};
916
1da177e4
LT
917struct vm_area_struct *get_gate_vma(struct task_struct *tsk)
918{
919#ifdef CONFIG_IA32_EMULATION
1e014410
AK
920 if (test_tsk_thread_flag(tsk, TIF_IA32))
921 return NULL;
1da177e4
LT
922#endif
923 return &gate_vma;
924}
925
926int in_gate_area(struct task_struct *task, unsigned long addr)
927{
928 struct vm_area_struct *vma = get_gate_vma(task);
14a62c34 929
1e014410
AK
930 if (!vma)
931 return 0;
14a62c34 932
1da177e4
LT
933 return (addr >= vma->vm_start) && (addr < vma->vm_end);
934}
935
14a62c34
TG
936/*
937 * Use this when you have no reliable task/vma, typically from interrupt
938 * context. It is less reliable than using the task's vma and may give
939 * false positives:
1da177e4
LT
940 */
941int in_gate_area_no_task(unsigned long addr)
942{
1e014410 943 return (addr >= VSYSCALL_START) && (addr < VSYSCALL_END);
1da177e4 944}
2e1c49db 945
2aae950b
AK
946const char *arch_vma_name(struct vm_area_struct *vma)
947{
948 if (vma->vm_mm && vma->vm_start == (long)vma->vm_mm->context.vdso)
949 return "[vdso]";
950 if (vma == &gate_vma)
951 return "[vsyscall]";
952 return NULL;
953}
0889eba5
CL
954
955#ifdef CONFIG_SPARSEMEM_VMEMMAP
956/*
957 * Initialise the sparsemem vmemmap using huge-pages at the PMD level.
958 */
c2b91e2e
YL
959static long __meminitdata addr_start, addr_end;
960static void __meminitdata *p_start, *p_end;
961static int __meminitdata node_start;
962
14a62c34
TG
963int __meminit
964vmemmap_populate(struct page *start_page, unsigned long size, int node)
0889eba5
CL
965{
966 unsigned long addr = (unsigned long)start_page;
967 unsigned long end = (unsigned long)(start_page + size);
968 unsigned long next;
969 pgd_t *pgd;
970 pud_t *pud;
971 pmd_t *pmd;
972
973 for (; addr < end; addr = next) {
7c934d39 974 void *p = NULL;
0889eba5
CL
975
976 pgd = vmemmap_pgd_populate(addr, node);
977 if (!pgd)
978 return -ENOMEM;
14a62c34 979
0889eba5
CL
980 pud = vmemmap_pud_populate(pgd, addr, node);
981 if (!pud)
982 return -ENOMEM;
983
7c934d39
JF
984 if (!cpu_has_pse) {
985 next = (addr + PAGE_SIZE) & PAGE_MASK;
986 pmd = vmemmap_pmd_populate(pud, addr, node);
987
988 if (!pmd)
989 return -ENOMEM;
990
991 p = vmemmap_pte_populate(pmd, addr, node);
14a62c34 992
0889eba5
CL
993 if (!p)
994 return -ENOMEM;
995
7c934d39
JF
996 addr_end = addr + PAGE_SIZE;
997 p_end = p + PAGE_SIZE;
14a62c34 998 } else {
7c934d39
JF
999 next = pmd_addr_end(addr, end);
1000
1001 pmd = pmd_offset(pud, addr);
1002 if (pmd_none(*pmd)) {
1003 pte_t entry;
1004
9bdac914 1005 p = vmemmap_alloc_block_buf(PMD_SIZE, node);
7c934d39
JF
1006 if (!p)
1007 return -ENOMEM;
1008
1009 entry = pfn_pte(__pa(p) >> PAGE_SHIFT,
1010 PAGE_KERNEL_LARGE);
1011 set_pmd(pmd, __pmd(pte_val(entry)));
1012
7c934d39
JF
1013 /* check to see if we have contiguous blocks */
1014 if (p_end != p || node_start != node) {
1015 if (p_start)
1016 printk(KERN_DEBUG " [%lx-%lx] PMD -> [%p-%p] on node %d\n",
1017 addr_start, addr_end-1, p_start, p_end-1, node_start);
1018 addr_start = addr;
1019 node_start = node;
1020 p_start = p;
1021 }
49c980df
YL
1022
1023 addr_end = addr + PMD_SIZE;
1024 p_end = p + PMD_SIZE;
7c934d39
JF
1025 } else
1026 vmemmap_verify((pte_t *)pmd, node, addr, next);
14a62c34 1027 }
7c934d39 1028
0889eba5 1029 }
9b861528 1030 sync_global_pgds((unsigned long)start_page, end);
0889eba5
CL
1031 return 0;
1032}
c2b91e2e
YL
1033
1034void __meminit vmemmap_populate_print_last(void)
1035{
1036 if (p_start) {
1037 printk(KERN_DEBUG " [%lx-%lx] PMD -> [%p-%p] on node %d\n",
1038 addr_start, addr_end-1, p_start, p_end-1, node_start);
1039 p_start = NULL;
1040 p_end = NULL;
1041 node_start = 0;
1042 }
1043}
0889eba5 1044#endif
This page took 0.612791 seconds and 5 git commands to generate.