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