x86-64, numa: Put pgtable to local node memory
[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
8ee2debc
DR
606void __init initmem_init(unsigned long start_pfn, unsigned long end_pfn,
607 int acpi, int k8)
1f75d7e3 608{
a9ce6bc1 609 memblock_x86_register_active_regions(0, start_pfn, end_pfn);
1411e0ec 610 init_memory_mapping_high();
1f75d7e3 611}
3551f88f 612#endif
1f75d7e3 613
1411e0ec
YL
614struct mapping_work_data {
615 unsigned long start;
616 unsigned long end;
617 unsigned long pfn_mapped;
618};
619
620static int __init_refok
621mapping_work_fn(unsigned long start_pfn, unsigned long end_pfn, void *datax)
622{
623 struct mapping_work_data *data = datax;
624 unsigned long pfn_mapped;
625 unsigned long final_start, final_end;
626
627 final_start = max_t(unsigned long, start_pfn<<PAGE_SHIFT, data->start);
628 final_end = min_t(unsigned long, end_pfn<<PAGE_SHIFT, data->end);
629
630 if (final_end <= final_start)
631 return 0;
632
633 pfn_mapped = init_memory_mapping(final_start, final_end);
634
635 if (pfn_mapped > data->pfn_mapped)
636 data->pfn_mapped = pfn_mapped;
637
638 return 0;
639}
640
641static unsigned long __init_refok
642init_memory_mapping_active_regions(unsigned long start, unsigned long end)
643{
644 struct mapping_work_data data;
645
646 data.start = start;
647 data.end = end;
648 data.pfn_mapped = 0;
649
650 work_with_active_regions(MAX_NUMNODES, mapping_work_fn, &data);
651
652 return data.pfn_mapped;
653}
654
655void __init_refok init_memory_mapping_high(void)
656{
657 if (max_pfn > max_low_pfn) {
658 max_pfn_mapped = init_memory_mapping_active_regions(1UL<<32,
659 max_pfn<<PAGE_SHIFT);
660 /* can we preserve max_low_pfn ? */
661 max_low_pfn = max_pfn;
662
663 memblock.current_limit = get_max_mapped();
664 }
665}
666
1da177e4
LT
667void __init paging_init(void)
668{
6391af17 669 unsigned long max_zone_pfns[MAX_NR_ZONES];
14a62c34 670
6391af17
MG
671 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
672 max_zone_pfns[ZONE_DMA] = MAX_DMA_PFN;
673 max_zone_pfns[ZONE_DMA32] = MAX_DMA32_PFN;
c987d12f 674 max_zone_pfns[ZONE_NORMAL] = max_pfn;
6391af17 675
3551f88f 676 sparse_memory_present_with_active_regions(MAX_NUMNODES);
44df75e6 677 sparse_init();
44b57280
YL
678
679 /*
680 * clear the default setting with node 0
681 * note: don't use nodes_clear here, that is really clearing when
682 * numa support is not compiled in, and later node_set_state
683 * will not set it back.
684 */
685 node_clear_state(0, N_NORMAL_MEMORY);
686
5cb248ab 687 free_area_init_nodes(max_zone_pfns);
1da177e4 688}
1da177e4 689
44df75e6
MT
690/*
691 * Memory hotplug specific functions
44df75e6 692 */
bc02af93 693#ifdef CONFIG_MEMORY_HOTPLUG
ea085417
SZ
694/*
695 * After memory hotplug the variables max_pfn, max_low_pfn and high_memory need
696 * updating.
697 */
698static void update_end_of_memory_vars(u64 start, u64 size)
699{
700 unsigned long end_pfn = PFN_UP(start + size);
701
702 if (end_pfn > max_pfn) {
703 max_pfn = end_pfn;
704 max_low_pfn = end_pfn;
705 high_memory = (void *)__va(max_pfn * PAGE_SIZE - 1) + 1;
706 }
707}
708
9d99aaa3
AK
709/*
710 * Memory is added always to NORMAL zone. This means you will never get
711 * additional DMA/DMA32 memory.
712 */
bc02af93 713int arch_add_memory(int nid, u64 start, u64 size)
44df75e6 714{
bc02af93 715 struct pglist_data *pgdat = NODE_DATA(nid);
776ed98b 716 struct zone *zone = pgdat->node_zones + ZONE_NORMAL;
cc615032 717 unsigned long last_mapped_pfn, start_pfn = start >> PAGE_SHIFT;
44df75e6
MT
718 unsigned long nr_pages = size >> PAGE_SHIFT;
719 int ret;
720
60817c9b 721 last_mapped_pfn = init_memory_mapping(start, start + size);
cc615032
AK
722 if (last_mapped_pfn > max_pfn_mapped)
723 max_pfn_mapped = last_mapped_pfn;
45e0b78b 724
c04fc586 725 ret = __add_pages(nid, zone, start_pfn, nr_pages);
fe8b868e 726 WARN_ON_ONCE(ret);
44df75e6 727
ea085417
SZ
728 /* update max_pfn, max_low_pfn and high_memory */
729 update_end_of_memory_vars(start, size);
730
44df75e6 731 return ret;
44df75e6 732}
bc02af93 733EXPORT_SYMBOL_GPL(arch_add_memory);
44df75e6 734
8243229f 735#if !defined(CONFIG_ACPI_NUMA) && defined(CONFIG_NUMA)
4942e998
KM
736int memory_add_physaddr_to_nid(u64 start)
737{
738 return 0;
739}
8c2676a5 740EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
4942e998
KM
741#endif
742
45e0b78b
KM
743#endif /* CONFIG_MEMORY_HOTPLUG */
744
81ac3ad9 745static struct kcore_list kcore_vsyscall;
1da177e4
LT
746
747void __init mem_init(void)
748{
0a43e4bf 749 long codesize, reservedpages, datasize, initsize;
11a6b0c9 750 unsigned long absent_pages;
1da177e4 751
0dc243ae 752 pci_iommu_alloc();
1da177e4 753
48ddb154 754 /* clear_bss() already clear the empty_zero_page */
1da177e4
LT
755
756 reservedpages = 0;
757
758 /* this will put all low memory onto the freelists */
2b97690f 759#ifdef CONFIG_NUMA
0a43e4bf 760 totalram_pages = numa_free_all_bootmem();
1da177e4 761#else
0a43e4bf 762 totalram_pages = free_all_bootmem();
1da177e4 763#endif
11a6b0c9
YL
764
765 absent_pages = absent_pages_in_range(0, max_pfn);
766 reservedpages = max_pfn - totalram_pages - absent_pages;
1da177e4
LT
767 after_bootmem = 1;
768
769 codesize = (unsigned long) &_etext - (unsigned long) &_text;
770 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
771 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
772
773 /* Register memory areas for /proc/kcore */
14a62c34 774 kclist_add(&kcore_vsyscall, (void *)VSYSCALL_START,
c30bb2a2 775 VSYSCALL_END - VSYSCALL_START, KCORE_OTHER);
1da177e4 776
10f22dde 777 printk(KERN_INFO "Memory: %luk/%luk available (%ldk kernel code, "
11a6b0c9 778 "%ldk absent, %ldk reserved, %ldk data, %ldk init)\n",
cc013a88 779 nr_free_pages() << (PAGE_SHIFT-10),
c987d12f 780 max_pfn << (PAGE_SHIFT-10),
1da177e4 781 codesize >> 10,
11a6b0c9 782 absent_pages << (PAGE_SHIFT-10),
1da177e4
LT
783 reservedpages << (PAGE_SHIFT-10),
784 datasize >> 10,
785 initsize >> 10);
1da177e4
LT
786}
787
67df197b 788#ifdef CONFIG_DEBUG_RODATA
edeed305
AV
789const int rodata_test_data = 0xC3;
790EXPORT_SYMBOL_GPL(rodata_test_data);
67df197b 791
502f6604 792int kernel_set_to_readonly;
16239630
SR
793
794void set_kernel_text_rw(void)
795{
b9af7c0d 796 unsigned long start = PFN_ALIGN(_text);
e7d23dde 797 unsigned long end = PFN_ALIGN(__stop___ex_table);
16239630
SR
798
799 if (!kernel_set_to_readonly)
800 return;
801
802 pr_debug("Set kernel text: %lx - %lx for read write\n",
803 start, end);
804
e7d23dde
SS
805 /*
806 * Make the kernel identity mapping for text RW. Kernel text
807 * mapping will always be RO. Refer to the comment in
808 * static_protections() in pageattr.c
809 */
16239630
SR
810 set_memory_rw(start, (end - start) >> PAGE_SHIFT);
811}
812
813void set_kernel_text_ro(void)
814{
b9af7c0d 815 unsigned long start = PFN_ALIGN(_text);
e7d23dde 816 unsigned long end = PFN_ALIGN(__stop___ex_table);
16239630
SR
817
818 if (!kernel_set_to_readonly)
819 return;
820
821 pr_debug("Set kernel text: %lx - %lx for read only\n",
822 start, end);
823
e7d23dde
SS
824 /*
825 * Set the kernel identity mapping for text RO.
826 */
16239630
SR
827 set_memory_ro(start, (end - start) >> PAGE_SHIFT);
828}
829
67df197b
AV
830void mark_rodata_ro(void)
831{
74e08179 832 unsigned long start = PFN_ALIGN(_text);
8f0f996e
SR
833 unsigned long rodata_start =
834 ((unsigned long)__start_rodata + PAGE_SIZE - 1) & PAGE_MASK;
74e08179
SS
835 unsigned long end = (unsigned long) &__end_rodata_hpage_align;
836 unsigned long text_end = PAGE_ALIGN((unsigned long) &__stop___ex_table);
837 unsigned long rodata_end = PAGE_ALIGN((unsigned long) &__end_rodata);
838 unsigned long data_start = (unsigned long) &_sdata;
8f0f996e 839
6fb14755 840 printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
e3ebadd9 841 (end - start) >> 10);
984bb80d
AV
842 set_memory_ro(start, (end - start) >> PAGE_SHIFT);
843
16239630
SR
844 kernel_set_to_readonly = 1;
845
984bb80d
AV
846 /*
847 * The rodata section (but not the kernel text!) should also be
848 * not-executable.
849 */
72b59d67 850 set_memory_nx(rodata_start, (end - rodata_start) >> PAGE_SHIFT);
67df197b 851
1a487252
AV
852 rodata_test();
853
0c42f392 854#ifdef CONFIG_CPA_DEBUG
10f22dde 855 printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, end);
6d238cc4 856 set_memory_rw(start, (end-start) >> PAGE_SHIFT);
0c42f392 857
10f22dde 858 printk(KERN_INFO "Testing CPA: again\n");
6d238cc4 859 set_memory_ro(start, (end-start) >> PAGE_SHIFT);
0c42f392 860#endif
74e08179
SS
861
862 free_init_pages("unused kernel memory",
863 (unsigned long) page_address(virt_to_page(text_end)),
864 (unsigned long)
865 page_address(virt_to_page(rodata_start)));
866 free_init_pages("unused kernel memory",
867 (unsigned long) page_address(virt_to_page(rodata_end)),
868 (unsigned long) page_address(virt_to_page(data_start)));
67df197b 869}
4e4eee0e 870
67df197b
AV
871#endif
872
14a62c34
TG
873int kern_addr_valid(unsigned long addr)
874{
1da177e4 875 unsigned long above = ((long)addr) >> __VIRTUAL_MASK_SHIFT;
14a62c34
TG
876 pgd_t *pgd;
877 pud_t *pud;
878 pmd_t *pmd;
879 pte_t *pte;
1da177e4
LT
880
881 if (above != 0 && above != -1UL)
14a62c34
TG
882 return 0;
883
1da177e4
LT
884 pgd = pgd_offset_k(addr);
885 if (pgd_none(*pgd))
886 return 0;
887
888 pud = pud_offset(pgd, addr);
889 if (pud_none(*pud))
14a62c34 890 return 0;
1da177e4
LT
891
892 pmd = pmd_offset(pud, addr);
893 if (pmd_none(*pmd))
894 return 0;
14a62c34 895
1da177e4
LT
896 if (pmd_large(*pmd))
897 return pfn_valid(pmd_pfn(*pmd));
898
899 pte = pte_offset_kernel(pmd, addr);
900 if (pte_none(*pte))
901 return 0;
14a62c34 902
1da177e4
LT
903 return pfn_valid(pte_pfn(*pte));
904}
905
14a62c34
TG
906/*
907 * A pseudo VMA to allow ptrace access for the vsyscall page. This only
908 * covers the 64bit vsyscall page now. 32bit has a real VMA now and does
909 * not need special handling anymore:
910 */
1da177e4 911static struct vm_area_struct gate_vma = {
14a62c34
TG
912 .vm_start = VSYSCALL_START,
913 .vm_end = VSYSCALL_START + (VSYSCALL_MAPPED_PAGES * PAGE_SIZE),
914 .vm_page_prot = PAGE_READONLY_EXEC,
915 .vm_flags = VM_READ | VM_EXEC
1da177e4
LT
916};
917
1da177e4
LT
918struct vm_area_struct *get_gate_vma(struct task_struct *tsk)
919{
920#ifdef CONFIG_IA32_EMULATION
1e014410
AK
921 if (test_tsk_thread_flag(tsk, TIF_IA32))
922 return NULL;
1da177e4
LT
923#endif
924 return &gate_vma;
925}
926
927int in_gate_area(struct task_struct *task, unsigned long addr)
928{
929 struct vm_area_struct *vma = get_gate_vma(task);
14a62c34 930
1e014410
AK
931 if (!vma)
932 return 0;
14a62c34 933
1da177e4
LT
934 return (addr >= vma->vm_start) && (addr < vma->vm_end);
935}
936
14a62c34
TG
937/*
938 * Use this when you have no reliable task/vma, typically from interrupt
939 * context. It is less reliable than using the task's vma and may give
940 * false positives:
1da177e4
LT
941 */
942int in_gate_area_no_task(unsigned long addr)
943{
1e014410 944 return (addr >= VSYSCALL_START) && (addr < VSYSCALL_END);
1da177e4 945}
2e1c49db 946
2aae950b
AK
947const char *arch_vma_name(struct vm_area_struct *vma)
948{
949 if (vma->vm_mm && vma->vm_start == (long)vma->vm_mm->context.vdso)
950 return "[vdso]";
951 if (vma == &gate_vma)
952 return "[vsyscall]";
953 return NULL;
954}
0889eba5
CL
955
956#ifdef CONFIG_SPARSEMEM_VMEMMAP
957/*
958 * Initialise the sparsemem vmemmap using huge-pages at the PMD level.
959 */
c2b91e2e
YL
960static long __meminitdata addr_start, addr_end;
961static void __meminitdata *p_start, *p_end;
962static int __meminitdata node_start;
963
14a62c34
TG
964int __meminit
965vmemmap_populate(struct page *start_page, unsigned long size, int node)
0889eba5
CL
966{
967 unsigned long addr = (unsigned long)start_page;
968 unsigned long end = (unsigned long)(start_page + size);
969 unsigned long next;
970 pgd_t *pgd;
971 pud_t *pud;
972 pmd_t *pmd;
973
974 for (; addr < end; addr = next) {
7c934d39 975 void *p = NULL;
0889eba5
CL
976
977 pgd = vmemmap_pgd_populate(addr, node);
978 if (!pgd)
979 return -ENOMEM;
14a62c34 980
0889eba5
CL
981 pud = vmemmap_pud_populate(pgd, addr, node);
982 if (!pud)
983 return -ENOMEM;
984
7c934d39
JF
985 if (!cpu_has_pse) {
986 next = (addr + PAGE_SIZE) & PAGE_MASK;
987 pmd = vmemmap_pmd_populate(pud, addr, node);
988
989 if (!pmd)
990 return -ENOMEM;
991
992 p = vmemmap_pte_populate(pmd, addr, node);
14a62c34 993
0889eba5
CL
994 if (!p)
995 return -ENOMEM;
996
7c934d39
JF
997 addr_end = addr + PAGE_SIZE;
998 p_end = p + PAGE_SIZE;
14a62c34 999 } else {
7c934d39
JF
1000 next = pmd_addr_end(addr, end);
1001
1002 pmd = pmd_offset(pud, addr);
1003 if (pmd_none(*pmd)) {
1004 pte_t entry;
1005
9bdac914 1006 p = vmemmap_alloc_block_buf(PMD_SIZE, node);
7c934d39
JF
1007 if (!p)
1008 return -ENOMEM;
1009
1010 entry = pfn_pte(__pa(p) >> PAGE_SHIFT,
1011 PAGE_KERNEL_LARGE);
1012 set_pmd(pmd, __pmd(pte_val(entry)));
1013
7c934d39
JF
1014 /* check to see if we have contiguous blocks */
1015 if (p_end != p || node_start != node) {
1016 if (p_start)
1017 printk(KERN_DEBUG " [%lx-%lx] PMD -> [%p-%p] on node %d\n",
1018 addr_start, addr_end-1, p_start, p_end-1, node_start);
1019 addr_start = addr;
1020 node_start = node;
1021 p_start = p;
1022 }
49c980df
YL
1023
1024 addr_end = addr + PMD_SIZE;
1025 p_end = p + PMD_SIZE;
7c934d39
JF
1026 } else
1027 vmemmap_verify((pte_t *)pmd, node, addr, next);
14a62c34 1028 }
7c934d39 1029
0889eba5 1030 }
9b861528 1031 sync_global_pgds((unsigned long)start_page, end);
0889eba5
CL
1032 return 0;
1033}
c2b91e2e
YL
1034
1035void __meminit vmemmap_populate_print_last(void)
1036{
1037 if (p_start) {
1038 printk(KERN_DEBUG " [%lx-%lx] PMD -> [%p-%p] on node %d\n",
1039 addr_start, addr_end-1, p_start, p_end-1, node_start);
1040 p_start = NULL;
1041 p_end = NULL;
1042 node_start = 0;
1043 }
1044}
0889eba5 1045#endif
This page took 0.76709 seconds and 5 git commands to generate.