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