blob: 4e5dfec750fc9296e726a213b8e097f4f885fb70 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/x86_64/mm/init.c
3 *
4 * Copyright (C) 1995 Linus Torvalds
Pavel Macheka2531292010-07-18 14:27:13 +02005 * Copyright (C) 2000 Pavel Machek <pavel@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Copyright (C) 2002,2003 Andi Kleen <ak@suse.de>
7 */
8
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#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>
Thomas Gleixner11034d52008-05-12 15:43:36 +020021#include <linux/initrd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/pagemap.h>
23#include <linux/bootmem.h>
Yinghai Lua9ce6bc2010-08-25 13:39:17 -070024#include <linux/memblock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/proc_fs.h>
Andi Kleen59170892005-11-05 17:25:53 +010026#include <linux/pci.h>
Jan Beulich6fb14752007-05-02 19:27:10 +020027#include <linux/pfn.h>
Randy Dunlapc9cf5522006-06-27 02:53:52 -070028#include <linux/poison.h>
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +010029#include <linux/dma-mapping.h>
Matt Tolentino44df75e2006-01-17 07:03:41 +010030#include <linux/module.h>
Benjamin Herrenschmidta63fdc52011-06-14 10:57:50 +100031#include <linux/memory.h>
Matt Tolentino44df75e2006-01-17 07:03:41 +010032#include <linux/memory_hotplug.h>
Konrad Rzeszutekae32b122007-05-02 19:27:11 +020033#include <linux/nmi.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/gfp.h>
David Howells2f96b8c2013-04-12 00:10:25 +010035#include <linux/kcore.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37#include <asm/processor.h>
Ingo Molnar46eaa672008-10-12 15:06:29 +020038#include <asm/bios_ebda.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#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>
Andi Kleen2bc04142005-11-05 17:25:53 +010050#include <asm/sections.h>
Thomas Gleixner718fc132008-01-30 13:30:17 +010051#include <asm/kdebug.h>
Thomas Gleixneraaa64e02008-01-30 13:30:17 +010052#include <asm/numa.h>
Harvey Harrison7bfeab92008-02-12 12:12:01 -080053#include <asm/cacheflush.h>
Pekka Enberg4fcb2082009-03-05 14:55:08 +020054#include <asm/init.h>
Nathan Fontenot1dc41aa2011-01-20 10:46:15 -060055#include <asm/uv/uv.h>
Yinghai Lue5f15b42011-02-18 11:30:30 +000056#include <asm/setup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Yinghai Lu5c51bdb2012-11-16 19:39:01 -080058#include "mm_internal.h"
59
Yinghai Luaece2782013-01-24 12:19:48 -080060static void ident_pmd_init(unsigned long pmd_flag, pmd_t *pmd_page,
61 unsigned long addr, unsigned long end)
62{
63 addr &= PMD_MASK;
64 for (; addr < end; addr += PMD_SIZE) {
65 pmd_t *pmd = pmd_page + pmd_index(addr);
66
67 if (!pmd_present(*pmd))
68 set_pmd(pmd, __pmd(addr | pmd_flag));
69 }
70}
71static int ident_pud_init(struct x86_mapping_info *info, pud_t *pud_page,
72 unsigned long addr, unsigned long end)
73{
74 unsigned long next;
75
76 for (; addr < end; addr = next) {
77 pud_t *pud = pud_page + pud_index(addr);
78 pmd_t *pmd;
79
80 next = (addr & PUD_MASK) + PUD_SIZE;
81 if (next > end)
82 next = end;
83
84 if (pud_present(*pud)) {
85 pmd = pmd_offset(pud, 0);
86 ident_pmd_init(info->pmd_flag, pmd, addr, next);
87 continue;
88 }
89 pmd = (pmd_t *)info->alloc_pgt_page(info->context);
90 if (!pmd)
91 return -ENOMEM;
92 ident_pmd_init(info->pmd_flag, pmd, addr, next);
93 set_pud(pud, __pud(__pa(pmd) | _KERNPG_TABLE));
94 }
95
96 return 0;
97}
98
99int kernel_ident_mapping_init(struct x86_mapping_info *info, pgd_t *pgd_page,
100 unsigned long addr, unsigned long end)
101{
102 unsigned long next;
103 int result;
104 int off = info->kernel_mapping ? pgd_index(__PAGE_OFFSET) : 0;
105
106 for (; addr < end; addr = next) {
107 pgd_t *pgd = pgd_page + pgd_index(addr) + off;
108 pud_t *pud;
109
110 next = (addr & PGDIR_MASK) + PGDIR_SIZE;
111 if (next > end)
112 next = end;
113
114 if (pgd_present(*pgd)) {
115 pud = pud_offset(pgd, 0);
116 result = ident_pud_init(info, pud, addr, next);
117 if (result)
118 return result;
119 continue;
120 }
121
122 pud = (pud_t *)info->alloc_pgt_page(info->context);
123 if (!pud)
124 return -ENOMEM;
125 result = ident_pud_init(info, pud, addr, next);
126 if (result)
127 return result;
128 set_pgd(pgd, __pgd(__pa(pud) | _KERNPG_TABLE));
129 }
130
131 return 0;
132}
133
Ingo Molnar00d1c5e2008-04-17 17:40:45 +0200134static int __init parse_direct_gbpages_off(char *arg)
135{
136 direct_gbpages = 0;
137 return 0;
138}
139early_param("nogbpages", parse_direct_gbpages_off);
140
141static int __init parse_direct_gbpages_on(char *arg)
142{
143 direct_gbpages = 1;
144 return 0;
145}
146early_param("gbpages", parse_direct_gbpages_on);
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148/*
149 * NOTE: pagetable_init alloc all the fixmap pagetables contiguous on the
150 * physical space so we can cache the place of the first one and move
151 * around without checking the pgd every time.
152 */
153
David Vrabelf9553712014-01-07 17:03:06 +0000154pteval_t __supported_pte_mask __read_mostly = ~0;
Yinghai Lubd220a22008-09-05 00:58:28 -0700155EXPORT_SYMBOL_GPL(__supported_pte_mask);
156
Yinghai Lubd220a22008-09-05 00:58:28 -0700157int force_personality32;
158
Ingo Molnardeed05b2008-09-05 10:23:26 +0200159/*
160 * noexec32=on|off
161 * Control non executable heap for 32bit processes.
162 * To control the stack too use noexec=off
163 *
164 * on PROT_READ does not imply PROT_EXEC for 32-bit processes (default)
165 * off PROT_READ implies PROT_EXEC
166 */
Yinghai Lubd220a22008-09-05 00:58:28 -0700167static int __init nonx32_setup(char *str)
168{
169 if (!strcmp(str, "on"))
170 force_personality32 &= ~READ_IMPLIES_EXEC;
171 else if (!strcmp(str, "off"))
172 force_personality32 |= READ_IMPLIES_EXEC;
173 return 1;
174}
175__setup("noexec32=", nonx32_setup);
176
Marcin Slusarz8d6ea9672008-08-15 18:32:24 +0200177/*
Haicheng Li6afb5152010-05-19 17:42:14 +0800178 * When memory was added/removed make sure all the processes MM have
179 * suitable PGD entries in the local PGD level page.
180 */
Yasuaki Ishimatsu9661d5b2014-08-22 13:27:34 -0700181void sync_global_pgds(unsigned long start, unsigned long end, int removed)
Haicheng Li6afb5152010-05-19 17:42:14 +0800182{
Jeremy Fitzhardinge44235dc2010-10-14 17:04:59 -0700183 unsigned long address;
Haicheng Li6afb5152010-05-19 17:42:14 +0800184
Jeremy Fitzhardinge44235dc2010-10-14 17:04:59 -0700185 for (address = start; address <= end; address += PGDIR_SIZE) {
186 const pgd_t *pgd_ref = pgd_offset_k(address);
Jeremy Fitzhardinge44235dc2010-10-14 17:04:59 -0700187 struct page *page;
Haicheng Li6afb5152010-05-19 17:42:14 +0800188
Yasuaki Ishimatsu9661d5b2014-08-22 13:27:34 -0700189 /*
190 * When it is called after memory hot remove, pgd_none()
191 * returns true. In this case (removed == 1), we must clear
192 * the PGD entries in the local PGD level page.
193 */
194 if (pgd_none(*pgd_ref) && !removed)
Jeremy Fitzhardinge44235dc2010-10-14 17:04:59 -0700195 continue;
Haicheng Li6afb5152010-05-19 17:42:14 +0800196
Andrea Arcangelia79e53d2011-02-16 15:45:22 -0800197 spin_lock(&pgd_lock);
Jeremy Fitzhardinge44235dc2010-10-14 17:04:59 -0700198 list_for_each_entry(page, &pgd_list, lru) {
Linus Torvaldsbe354f42012-12-15 12:29:54 -0800199 pgd_t *pgd;
Jeremy Fitzhardinge617d34d2010-09-21 12:01:51 -0700200 spinlock_t *pgt_lock;
201
Jeremy Fitzhardinge44235dc2010-10-14 17:04:59 -0700202 pgd = (pgd_t *)page_address(page) + pgd_index(address);
Andrea Arcangelia79e53d2011-02-16 15:45:22 -0800203 /* the pgt_lock only for Xen */
Jeremy Fitzhardinge617d34d2010-09-21 12:01:51 -0700204 pgt_lock = &pgd_page_get_mm(page)->page_table_lock;
205 spin_lock(pgt_lock);
206
Yasuaki Ishimatsu9661d5b2014-08-22 13:27:34 -0700207 if (!pgd_none(*pgd_ref) && !pgd_none(*pgd))
Jeremy Fitzhardinge44235dc2010-10-14 17:04:59 -0700208 BUG_ON(pgd_page_vaddr(*pgd)
209 != pgd_page_vaddr(*pgd_ref));
Jeremy Fitzhardinge617d34d2010-09-21 12:01:51 -0700210
Yasuaki Ishimatsu9661d5b2014-08-22 13:27:34 -0700211 if (removed) {
212 if (pgd_none(*pgd_ref) && !pgd_none(*pgd))
213 pgd_clear(pgd);
214 } else {
215 if (pgd_none(*pgd))
216 set_pgd(pgd, *pgd_ref);
217 }
218
Jeremy Fitzhardinge617d34d2010-09-21 12:01:51 -0700219 spin_unlock(pgt_lock);
Jeremy Fitzhardinge44235dc2010-10-14 17:04:59 -0700220 }
Andrea Arcangelia79e53d2011-02-16 15:45:22 -0800221 spin_unlock(&pgd_lock);
Jeremy Fitzhardinge44235dc2010-10-14 17:04:59 -0700222 }
Haicheng Li6afb5152010-05-19 17:42:14 +0800223}
224
225/*
Marcin Slusarz8d6ea9672008-08-15 18:32:24 +0200226 * NOTE: This function is marked __ref because it calls __init function
227 * (alloc_bootmem_pages). It's safe to do it ONLY when after_bootmem == 0.
228 */
229static __ref void *spp_getpage(void)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100230{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 void *ptr;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 if (after_bootmem)
Vegard Nossum9e730232009-02-22 11:28:25 +0100234 ptr = (void *) get_zeroed_page(GFP_ATOMIC | __GFP_NOTRACK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 else
236 ptr = alloc_bootmem_pages(PAGE_SIZE);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100237
238 if (!ptr || ((unsigned long)ptr & ~PAGE_MASK)) {
239 panic("set_pte_phys: cannot allocate page data %s\n",
240 after_bootmem ? "after bootmem" : "");
241 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100243 pr_debug("spp_getpage %p\n", ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100245 return ptr;
246}
247
Jeremy Fitzhardingef254f392009-03-03 12:02:57 -0800248static pud_t *fill_pud(pgd_t *pgd, unsigned long vaddr)
Tejun Heo458a3e62009-02-24 11:57:21 +0900249{
250 if (pgd_none(*pgd)) {
251 pud_t *pud = (pud_t *)spp_getpage();
252 pgd_populate(&init_mm, pgd, pud);
253 if (pud != pud_offset(pgd, 0))
254 printk(KERN_ERR "PAGETABLE BUG #00! %p <-> %p\n",
255 pud, pud_offset(pgd, 0));
256 }
257 return pud_offset(pgd, vaddr);
258}
259
Jeremy Fitzhardingef254f392009-03-03 12:02:57 -0800260static pmd_t *fill_pmd(pud_t *pud, unsigned long vaddr)
Tejun Heo458a3e62009-02-24 11:57:21 +0900261{
262 if (pud_none(*pud)) {
263 pmd_t *pmd = (pmd_t *) spp_getpage();
264 pud_populate(&init_mm, pud, pmd);
265 if (pmd != pmd_offset(pud, 0))
266 printk(KERN_ERR "PAGETABLE BUG #01! %p <-> %p\n",
267 pmd, pmd_offset(pud, 0));
268 }
269 return pmd_offset(pud, vaddr);
270}
271
Jeremy Fitzhardingef254f392009-03-03 12:02:57 -0800272static pte_t *fill_pte(pmd_t *pmd, unsigned long vaddr)
Tejun Heo458a3e62009-02-24 11:57:21 +0900273{
274 if (pmd_none(*pmd)) {
275 pte_t *pte = (pte_t *) spp_getpage();
276 pmd_populate_kernel(&init_mm, pmd, pte);
277 if (pte != pte_offset_kernel(pmd, 0))
278 printk(KERN_ERR "PAGETABLE BUG #02!\n");
279 }
280 return pte_offset_kernel(pmd, vaddr);
281}
282
283void set_pte_vaddr_pud(pud_t *pud_page, unsigned long vaddr, pte_t new_pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 pud_t *pud;
286 pmd_t *pmd;
Jeremy Fitzhardinged494a962008-06-17 11:41:59 -0700287 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Eduardo Habkost0814e0b2008-06-25 00:19:22 -0400289 pud = pud_page + pud_index(vaddr);
Tejun Heo458a3e62009-02-24 11:57:21 +0900290 pmd = fill_pmd(pud, vaddr);
291 pte = fill_pte(pmd, vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 set_pte(pte, new_pte);
294
295 /*
296 * It's enough to flush this one mapping.
297 * (PGE mappings get flushed as well)
298 */
299 __flush_tlb_one(vaddr);
300}
301
Tejun Heo458a3e62009-02-24 11:57:21 +0900302void set_pte_vaddr(unsigned long vaddr, pte_t pteval)
Eduardo Habkost0814e0b2008-06-25 00:19:22 -0400303{
304 pgd_t *pgd;
305 pud_t *pud_page;
306
307 pr_debug("set_pte_vaddr %lx to %lx\n", vaddr, native_pte_val(pteval));
308
309 pgd = pgd_offset_k(vaddr);
310 if (pgd_none(*pgd)) {
311 printk(KERN_ERR
312 "PGD FIXMAP MISSING, it should be setup in head.S!\n");
313 return;
314 }
315 pud_page = (pud_t*)pgd_page_vaddr(*pgd);
316 set_pte_vaddr_pud(pud_page, vaddr, pteval);
317}
318
Tejun Heo458a3e62009-02-24 11:57:21 +0900319pmd_t * __init populate_extra_pmd(unsigned long vaddr)
Tejun Heo11124412009-02-20 16:29:09 +0900320{
321 pgd_t *pgd;
322 pud_t *pud;
323
324 pgd = pgd_offset_k(vaddr);
Tejun Heo458a3e62009-02-24 11:57:21 +0900325 pud = fill_pud(pgd, vaddr);
326 return fill_pmd(pud, vaddr);
327}
Tejun Heo11124412009-02-20 16:29:09 +0900328
Tejun Heo458a3e62009-02-24 11:57:21 +0900329pte_t * __init populate_extra_pte(unsigned long vaddr)
330{
331 pmd_t *pmd;
332
333 pmd = populate_extra_pmd(vaddr);
334 return fill_pte(pmd, vaddr);
Tejun Heo11124412009-02-20 16:29:09 +0900335}
336
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100337/*
Jack Steiner3a9e1892008-07-01 14:45:32 -0500338 * Create large page table mappings for a range of physical addresses.
339 */
340static void __init __init_extra_mapping(unsigned long phys, unsigned long size,
341 pgprot_t prot)
342{
343 pgd_t *pgd;
344 pud_t *pud;
345 pmd_t *pmd;
346
347 BUG_ON((phys & ~PMD_MASK) || (size & ~PMD_MASK));
348 for (; size; phys += PMD_SIZE, size -= PMD_SIZE) {
349 pgd = pgd_offset_k((unsigned long)__va(phys));
350 if (pgd_none(*pgd)) {
351 pud = (pud_t *) spp_getpage();
352 set_pgd(pgd, __pgd(__pa(pud) | _KERNPG_TABLE |
353 _PAGE_USER));
354 }
355 pud = pud_offset(pgd, (unsigned long)__va(phys));
356 if (pud_none(*pud)) {
357 pmd = (pmd_t *) spp_getpage();
358 set_pud(pud, __pud(__pa(pmd) | _KERNPG_TABLE |
359 _PAGE_USER));
360 }
361 pmd = pmd_offset(pud, phys);
362 BUG_ON(!pmd_none(*pmd));
363 set_pmd(pmd, __pmd(phys | pgprot_val(prot)));
364 }
365}
366
367void __init init_extra_mapping_wb(unsigned long phys, unsigned long size)
368{
369 __init_extra_mapping(phys, size, PAGE_KERNEL_LARGE);
370}
371
372void __init init_extra_mapping_uc(unsigned long phys, unsigned long size)
373{
374 __init_extra_mapping(phys, size, PAGE_KERNEL_LARGE_NOCACHE);
375}
376
377/*
Ingo Molnar88f3aec2008-02-21 11:04:11 +0100378 * The head.S code sets up the kernel high mapping:
379 *
380 * from __START_KERNEL_map to __START_KERNEL_map + size (== _end-_text)
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100381 *
Zhang Yanfei1e3b3082013-05-15 10:58:07 +0800382 * phys_base holds the negative offset to the kernel, which is added
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100383 * to the compile time generated pmds. This results in invalid pmds up
384 * to the point where we hit the physaddr 0 mapping.
385 *
Yinghai Lue5f15b42011-02-18 11:30:30 +0000386 * We limit the mappings to the region from _text to _brk_end. _brk_end
387 * is rounded up to the 2MB boundary. This catches the invalid pmds as
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100388 * well, as they are located before _text:
389 */
390void __init cleanup_highmap(void)
391{
392 unsigned long vaddr = __START_KERNEL_map;
Yinghai Lu10054232013-01-24 12:19:54 -0800393 unsigned long vaddr_end = __START_KERNEL_map + KERNEL_IMAGE_SIZE;
Yinghai Lue5f15b42011-02-18 11:30:30 +0000394 unsigned long end = roundup((unsigned long)_brk_end, PMD_SIZE) - 1;
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100395 pmd_t *pmd = level2_kernel_pgt;
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100396
Yinghai Lu10054232013-01-24 12:19:54 -0800397 /*
398 * Native path, max_pfn_mapped is not set yet.
399 * Xen has valid max_pfn_mapped set in
400 * arch/x86/xen/mmu.c:xen_setup_kernel_pagetable().
401 */
402 if (max_pfn_mapped)
403 vaddr_end = __START_KERNEL_map + (max_pfn_mapped << PAGE_SHIFT);
404
Yinghai Lue5f15b42011-02-18 11:30:30 +0000405 for (; vaddr + PMD_SIZE - 1 < vaddr_end; pmd++, vaddr += PMD_SIZE) {
Hugh Dickins2884f112008-05-28 19:36:07 +0100406 if (pmd_none(*pmd))
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100407 continue;
408 if (vaddr < (unsigned long) _text || vaddr > end)
409 set_pmd(pmd, __pmd(0));
410 }
411}
412
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700413static unsigned long __meminit
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700414phys_pte_init(pte_t *pte_page, unsigned long addr, unsigned long end,
415 pgprot_t prot)
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400416{
Yinghai Lueceb3632012-11-16 19:38:56 -0800417 unsigned long pages = 0, next;
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700418 unsigned long last_map_addr = end;
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400419 int i;
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700420
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400421 pte_t *pte = pte_page + pte_index(addr);
422
Yinghai Lueceb3632012-11-16 19:38:56 -0800423 for (i = pte_index(addr); i < PTRS_PER_PTE; i++, addr = next, pte++) {
424 next = (addr & PAGE_MASK) + PAGE_SIZE;
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400425 if (addr >= end) {
Yinghai Lueceb3632012-11-16 19:38:56 -0800426 if (!after_bootmem &&
427 !e820_any_mapped(addr & PAGE_MASK, next, E820_RAM) &&
428 !e820_any_mapped(addr & PAGE_MASK, next, E820_RESERVED_KERN))
429 set_pte(pte, __pte(0));
430 continue;
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400431 }
432
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700433 /*
434 * We will re-use the existing mapping.
435 * Xen for example has some special requirements, like mapping
436 * pagetable pages as RO. So assume someone who pre-setup
437 * these mappings are more intelligent.
438 */
Yinghai Lu3afa3942008-10-25 22:58:21 -0700439 if (pte_val(*pte)) {
Jan Beulich876ee612012-10-04 14:48:10 +0100440 if (!after_bootmem)
441 pages++;
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400442 continue;
Yinghai Lu3afa3942008-10-25 22:58:21 -0700443 }
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400444
445 if (0)
446 printk(" pte=%p addr=%lx pte=%016lx\n",
447 pte, addr, pfn_pte(addr >> PAGE_SHIFT, PAGE_KERNEL).pte);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400448 pages++;
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700449 set_pte(pte, pfn_pte(addr >> PAGE_SHIFT, prot));
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400450 last_map_addr = (addr & PAGE_MASK) + PAGE_SIZE;
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400451 }
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700452
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400453 update_page_count(PG_LEVEL_4K, pages);
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700454
455 return last_map_addr;
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400456}
457
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700458static unsigned long __meminit
Yinghai Lub50efd22008-07-08 01:41:05 -0700459phys_pmd_init(pmd_t *pmd_page, unsigned long address, unsigned long end,
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700460 unsigned long page_size_mask, pgprot_t prot)
Matt Tolentino44df75e2006-01-17 07:03:41 +0100461{
Jan Beulich20167d32012-05-16 14:06:26 +0100462 unsigned long pages = 0, next;
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700463 unsigned long last_map_addr = end;
Andi Kleence0c0e52008-05-02 11:46:49 +0200464
Keith Mannthey6ad91652006-09-26 10:52:36 +0200465 int i = pmd_index(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
Jan Beulich20167d32012-05-16 14:06:26 +0100467 for (; i < PTRS_PER_PMD; i++, address = next) {
Keith Mannthey6ad91652006-09-26 10:52:36 +0200468 pmd_t *pmd = pmd_page + pmd_index(address);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400469 pte_t *pte;
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700470 pgprot_t new_prot = prot;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100471
Jan Beulich20167d32012-05-16 14:06:26 +0100472 next = (address & PMD_MASK) + PMD_SIZE;
Yinghai Lueceb3632012-11-16 19:38:56 -0800473 if (address >= end) {
474 if (!after_bootmem &&
475 !e820_any_mapped(address & PMD_MASK, next, E820_RAM) &&
476 !e820_any_mapped(address & PMD_MASK, next, E820_RESERVED_KERN))
477 set_pmd(pmd, __pmd(0));
478 continue;
479 }
Jan Beulich20167d32012-05-16 14:06:26 +0100480
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400481 if (pmd_val(*pmd)) {
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100482 if (!pmd_large(*pmd)) {
483 spin_lock(&init_mm.page_table_lock);
Yinghai Lu973dc4f2012-11-16 19:38:59 -0800484 pte = (pte_t *)pmd_page_vaddr(*pmd);
Yinghai Lu4b239f42010-12-17 16:58:28 -0800485 last_map_addr = phys_pte_init(pte, address,
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700486 end, prot);
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100487 spin_unlock(&init_mm.page_table_lock);
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700488 continue;
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100489 }
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700490 /*
491 * If we are ok with PG_LEVEL_2M mapping, then we will
492 * use the existing mapping,
493 *
494 * Otherwise, we will split the large page mapping but
495 * use the same existing protection bits except for
496 * large page, so that we don't violate Intel's TLB
497 * Application note (317080) which says, while changing
498 * the page sizes, new and old translations should
499 * not differ with respect to page frame and
500 * attributes.
501 */
Yinghai Lu3afa3942008-10-25 22:58:21 -0700502 if (page_size_mask & (1 << PG_LEVEL_2M)) {
Jan Beulich876ee612012-10-04 14:48:10 +0100503 if (!after_bootmem)
504 pages++;
Jan Beulich20167d32012-05-16 14:06:26 +0100505 last_map_addr = next;
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700506 continue;
Yinghai Lu3afa3942008-10-25 22:58:21 -0700507 }
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700508 new_prot = pte_pgprot(pte_clrhuge(*(pte_t *)pmd));
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400509 }
Keith Mannthey6ad91652006-09-26 10:52:36 +0200510
Yinghai Lub50efd22008-07-08 01:41:05 -0700511 if (page_size_mask & (1<<PG_LEVEL_2M)) {
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400512 pages++;
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100513 spin_lock(&init_mm.page_table_lock);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400514 set_pte((pte_t *)pmd,
Yinghai Lu960ddb4f2012-11-16 19:38:54 -0800515 pfn_pte((address & PMD_MASK) >> PAGE_SHIFT,
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700516 __pgprot(pgprot_val(prot) | _PAGE_PSE)));
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100517 spin_unlock(&init_mm.page_table_lock);
Jan Beulich20167d32012-05-16 14:06:26 +0100518 last_map_addr = next;
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400519 continue;
520 }
521
Yinghai Lu868bf4d2012-11-16 19:39:00 -0800522 pte = alloc_low_page();
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700523 last_map_addr = phys_pte_init(pte, address, end, new_prot);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400524
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100525 spin_lock(&init_mm.page_table_lock);
Yinghai Lu868bf4d2012-11-16 19:39:00 -0800526 pmd_populate_kernel(&init_mm, pmd, pte);
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100527 spin_unlock(&init_mm.page_table_lock);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100528 }
Andi Kleence0c0e52008-05-02 11:46:49 +0200529 update_page_count(PG_LEVEL_2M, pages);
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700530 return last_map_addr;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100531}
532
Andi Kleencc615032008-03-12 03:53:28 +0100533static unsigned long __meminit
Yinghai Lub50efd22008-07-08 01:41:05 -0700534phys_pud_init(pud_t *pud_page, unsigned long addr, unsigned long end,
535 unsigned long page_size_mask)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100536{
Jan Beulich20167d32012-05-16 14:06:26 +0100537 unsigned long pages = 0, next;
Andi Kleencc615032008-03-12 03:53:28 +0100538 unsigned long last_map_addr = end;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200539 int i = pud_index(addr);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100540
Jan Beulich20167d32012-05-16 14:06:26 +0100541 for (; i < PTRS_PER_PUD; i++, addr = next) {
Keith Mannthey6ad91652006-09-26 10:52:36 +0200542 pud_t *pud = pud_page + pud_index(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 pmd_t *pmd;
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700544 pgprot_t prot = PAGE_KERNEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Jan Beulich20167d32012-05-16 14:06:26 +0100546 next = (addr & PUD_MASK) + PUD_SIZE;
Yinghai Lueceb3632012-11-16 19:38:56 -0800547 if (addr >= end) {
548 if (!after_bootmem &&
549 !e820_any_mapped(addr & PUD_MASK, next, E820_RAM) &&
550 !e820_any_mapped(addr & PUD_MASK, next, E820_RESERVED_KERN))
551 set_pud(pud, __pud(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 continue;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100553 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Keith Mannthey6ad91652006-09-26 10:52:36 +0200555 if (pud_val(*pud)) {
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700556 if (!pud_large(*pud)) {
Yinghai Lu973dc4f2012-11-16 19:38:59 -0800557 pmd = pmd_offset(pud, 0);
Yinghai Lu4b239f42010-12-17 16:58:28 -0800558 last_map_addr = phys_pmd_init(pmd, addr, end,
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700559 page_size_mask, prot);
Yinghai Lu4b239f42010-12-17 16:58:28 -0800560 __flush_tlb_all();
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700561 continue;
562 }
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700563 /*
564 * If we are ok with PG_LEVEL_1G mapping, then we will
565 * use the existing mapping.
566 *
567 * Otherwise, we will split the gbpage mapping but use
568 * the same existing protection bits except for large
569 * page, so that we don't violate Intel's TLB
570 * Application note (317080) which says, while changing
571 * the page sizes, new and old translations should
572 * not differ with respect to page frame and
573 * attributes.
574 */
Yinghai Lu3afa3942008-10-25 22:58:21 -0700575 if (page_size_mask & (1 << PG_LEVEL_1G)) {
Jan Beulich876ee612012-10-04 14:48:10 +0100576 if (!after_bootmem)
577 pages++;
Jan Beulich20167d32012-05-16 14:06:26 +0100578 last_map_addr = next;
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700579 continue;
Yinghai Lu3afa3942008-10-25 22:58:21 -0700580 }
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700581 prot = pte_pgprot(pte_clrhuge(*(pte_t *)pud));
Andi Kleenef925762008-04-17 17:40:45 +0200582 }
583
Yinghai Lub50efd22008-07-08 01:41:05 -0700584 if (page_size_mask & (1<<PG_LEVEL_1G)) {
Andi Kleence0c0e52008-05-02 11:46:49 +0200585 pages++;
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100586 spin_lock(&init_mm.page_table_lock);
Andi Kleenef925762008-04-17 17:40:45 +0200587 set_pte((pte_t *)pud,
Yinghai Lu960ddb4f2012-11-16 19:38:54 -0800588 pfn_pte((addr & PUD_MASK) >> PAGE_SHIFT,
589 PAGE_KERNEL_LARGE));
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100590 spin_unlock(&init_mm.page_table_lock);
Jan Beulich20167d32012-05-16 14:06:26 +0100591 last_map_addr = next;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200592 continue;
593 }
594
Yinghai Lu868bf4d2012-11-16 19:39:00 -0800595 pmd = alloc_low_page();
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700596 last_map_addr = phys_pmd_init(pmd, addr, end, page_size_mask,
597 prot);
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100598
599 spin_lock(&init_mm.page_table_lock);
Yinghai Lu868bf4d2012-11-16 19:39:00 -0800600 pud_populate(&init_mm, pud, pmd);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100601 spin_unlock(&init_mm.page_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 }
Andi Kleen1a2b4412008-01-30 13:33:54 +0100603 __flush_tlb_all();
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700604
Andi Kleence0c0e52008-05-02 11:46:49 +0200605 update_page_count(PG_LEVEL_1G, pages);
Andi Kleencc615032008-03-12 03:53:28 +0100606
Yinghai Lu1a0db382008-06-24 14:56:20 -0700607 return last_map_addr;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100608}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Shaohua Li41d840e2009-06-12 12:57:52 +0800610unsigned long __meminit
Pekka Enbergf7650902009-03-05 14:55:05 +0200611kernel_physical_mapping_init(unsigned long start,
612 unsigned long end,
613 unsigned long page_size_mask)
Yinghai Lub50efd22008-07-08 01:41:05 -0700614{
Haicheng Li9b861522010-08-20 17:50:16 +0800615 bool pgd_changed = false;
Yinghai Lub50efd22008-07-08 01:41:05 -0700616 unsigned long next, last_map_addr = end;
Haicheng Li9b861522010-08-20 17:50:16 +0800617 unsigned long addr;
Yinghai Lub50efd22008-07-08 01:41:05 -0700618
619 start = (unsigned long)__va(start);
620 end = (unsigned long)__va(end);
Wu Fengguang1c5f50e2010-09-03 17:04:07 +0800621 addr = start;
Yinghai Lub50efd22008-07-08 01:41:05 -0700622
623 for (; start < end; start = next) {
624 pgd_t *pgd = pgd_offset_k(start);
Yinghai Lub50efd22008-07-08 01:41:05 -0700625 pud_t *pud;
626
Yinghai Luc2bdee52013-01-24 12:19:46 -0800627 next = (start & PGDIR_MASK) + PGDIR_SIZE;
Yinghai Lub50efd22008-07-08 01:41:05 -0700628
629 if (pgd_val(*pgd)) {
Yinghai Lu973dc4f2012-11-16 19:38:59 -0800630 pud = (pud_t *)pgd_page_vaddr(*pgd);
Yinghai Lu4b239f42010-12-17 16:58:28 -0800631 last_map_addr = phys_pud_init(pud, __pa(start),
Yinghai Lub50efd22008-07-08 01:41:05 -0700632 __pa(end), page_size_mask);
633 continue;
634 }
635
Yinghai Lu868bf4d2012-11-16 19:39:00 -0800636 pud = alloc_low_page();
Yinghai Luc2bdee52013-01-24 12:19:46 -0800637 last_map_addr = phys_pud_init(pud, __pa(start), __pa(end),
Yinghai Lub50efd22008-07-08 01:41:05 -0700638 page_size_mask);
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100639
640 spin_lock(&init_mm.page_table_lock);
Yinghai Lu868bf4d2012-11-16 19:39:00 -0800641 pgd_populate(&init_mm, pgd, pud);
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100642 spin_unlock(&init_mm.page_table_lock);
Haicheng Li9b861522010-08-20 17:50:16 +0800643 pgd_changed = true;
Yinghai Lub50efd22008-07-08 01:41:05 -0700644 }
Haicheng Li9b861522010-08-20 17:50:16 +0800645
646 if (pgd_changed)
Yasuaki Ishimatsu9661d5b2014-08-22 13:27:34 -0700647 sync_global_pgds(addr, end - 1, 0);
Haicheng Li9b861522010-08-20 17:50:16 +0800648
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700649 __flush_tlb_all();
Yinghai Lub50efd22008-07-08 01:41:05 -0700650
651 return last_map_addr;
652}
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700653
Matt Tolentino2b976902005-06-23 00:08:06 -0700654#ifndef CONFIG_NUMA
Tejun Heod8fc3af2011-02-16 12:13:06 +0100655void __init initmem_init(void)
Yinghai Lu1f75d7e2008-06-22 02:44:49 -0700656{
Tang Chene7e8de52014-01-21 15:49:26 -0800657 memblock_set_node(0, (phys_addr_t)ULLONG_MAX, &memblock.memory, 0);
Yinghai Lu1f75d7e2008-06-22 02:44:49 -0700658}
Pekka Enberg3551f882009-05-07 15:35:41 +0300659#endif
Yinghai Lu1f75d7e2008-06-22 02:44:49 -0700660
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661void __init paging_init(void)
662{
Pekka Enberg3551f882009-05-07 15:35:41 +0300663 sparse_memory_present_with_active_regions(MAX_NUMNODES);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100664 sparse_init();
Yinghai Lu44b57282009-07-08 09:50:19 -0700665
666 /*
667 * clear the default setting with node 0
668 * note: don't use nodes_clear here, that is really clearing when
669 * numa support is not compiled in, and later node_set_state
670 * will not set it back.
671 */
Lai Jiangshan4b0ef1fe2012-12-12 13:51:46 -0800672 node_clear_state(0, N_MEMORY);
673 if (N_MEMORY != N_NORMAL_MEMORY)
674 node_clear_state(0, N_NORMAL_MEMORY);
Yinghai Lu44b57282009-07-08 09:50:19 -0700675
Pekka Enberg4c0b2e52011-11-01 15:58:17 +0200676 zone_sizes_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100679/*
Matt Tolentino44df75e2006-01-17 07:03:41 +0100680 * Memory hotplug specific functions
Matt Tolentino44df75e2006-01-17 07:03:41 +0100681 */
Yasunori Gotobc02af92006-06-27 02:53:30 -0700682#ifdef CONFIG_MEMORY_HOTPLUG
683/*
Shaohui Zhengea085412010-02-02 13:44:16 -0800684 * After memory hotplug the variables max_pfn, max_low_pfn and high_memory need
685 * updating.
686 */
687static void update_end_of_memory_vars(u64 start, u64 size)
688{
689 unsigned long end_pfn = PFN_UP(start + size);
690
691 if (end_pfn > max_pfn) {
692 max_pfn = end_pfn;
693 max_low_pfn = end_pfn;
694 high_memory = (void *)__va(max_pfn * PAGE_SIZE - 1) + 1;
695 }
696}
697
698/*
Yasunori Gotobc02af92006-06-27 02:53:30 -0700699 * Memory is added always to NORMAL zone. This means you will never get
700 * additional DMA/DMA32 memory.
701 */
702int arch_add_memory(int nid, u64 start, u64 size)
703{
704 struct pglist_data *pgdat = NODE_DATA(nid);
Wang Nan9bfc4112014-08-06 16:07:38 -0700705 struct zone *zone = pgdat->node_zones +
706 zone_for_memory(nid, start, size, ZONE_NORMAL);
Jacob Shin66520eb2012-11-16 19:38:52 -0800707 unsigned long start_pfn = start >> PAGE_SHIFT;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700708 unsigned long nr_pages = size >> PAGE_SHIFT;
709 int ret;
710
Jacob Shin66520eb2012-11-16 19:38:52 -0800711 init_memory_mapping(start, start + size);
Keith Mannthey45e0b782006-09-30 23:27:09 -0700712
Gary Hadec04fc582009-01-06 14:39:14 -0800713 ret = __add_pages(nid, zone, start_pfn, nr_pages);
Gary Hadefe8b8682008-10-28 16:43:14 -0700714 WARN_ON_ONCE(ret);
Yasunori Gotobc02af92006-06-27 02:53:30 -0700715
Shaohui Zhengea085412010-02-02 13:44:16 -0800716 /* update max_pfn, max_low_pfn and high_memory */
717 update_end_of_memory_vars(start, size);
718
Yasunori Gotobc02af92006-06-27 02:53:30 -0700719 return ret;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700720}
721EXPORT_SYMBOL_GPL(arch_add_memory);
722
Wen Congyangae9aae92013-02-22 16:33:04 -0800723#define PAGE_INUSE 0xFD
724
725static void __meminit free_pagetable(struct page *page, int order)
726{
Wen Congyangae9aae92013-02-22 16:33:04 -0800727 unsigned long magic;
728 unsigned int nr_pages = 1 << order;
729
730 /* bootmem page has reserved flag */
731 if (PageReserved(page)) {
732 __ClearPageReserved(page);
Wen Congyangae9aae92013-02-22 16:33:04 -0800733
734 magic = (unsigned long)page->lru.next;
735 if (magic == SECTION_INFO || magic == MIX_SECTION_INFO) {
736 while (nr_pages--)
737 put_page_bootmem(page++);
738 } else
Jiang Liu170a5a72013-07-03 15:03:17 -0700739 while (nr_pages--)
740 free_reserved_page(page++);
Wen Congyangae9aae92013-02-22 16:33:04 -0800741 } else
742 free_pages((unsigned long)page_address(page), order);
Wen Congyangae9aae92013-02-22 16:33:04 -0800743}
744
745static void __meminit free_pte_table(pte_t *pte_start, pmd_t *pmd)
746{
747 pte_t *pte;
748 int i;
749
750 for (i = 0; i < PTRS_PER_PTE; i++) {
751 pte = pte_start + i;
752 if (pte_val(*pte))
753 return;
754 }
755
756 /* free a pte talbe */
757 free_pagetable(pmd_page(*pmd), 0);
758 spin_lock(&init_mm.page_table_lock);
759 pmd_clear(pmd);
760 spin_unlock(&init_mm.page_table_lock);
761}
762
763static void __meminit free_pmd_table(pmd_t *pmd_start, pud_t *pud)
764{
765 pmd_t *pmd;
766 int i;
767
768 for (i = 0; i < PTRS_PER_PMD; i++) {
769 pmd = pmd_start + i;
770 if (pmd_val(*pmd))
771 return;
772 }
773
774 /* free a pmd talbe */
775 free_pagetable(pud_page(*pud), 0);
776 spin_lock(&init_mm.page_table_lock);
777 pud_clear(pud);
778 spin_unlock(&init_mm.page_table_lock);
779}
780
781/* Return true if pgd is changed, otherwise return false. */
782static bool __meminit free_pud_table(pud_t *pud_start, pgd_t *pgd)
783{
784 pud_t *pud;
785 int i;
786
787 for (i = 0; i < PTRS_PER_PUD; i++) {
788 pud = pud_start + i;
789 if (pud_val(*pud))
790 return false;
791 }
792
793 /* free a pud table */
794 free_pagetable(pgd_page(*pgd), 0);
795 spin_lock(&init_mm.page_table_lock);
796 pgd_clear(pgd);
797 spin_unlock(&init_mm.page_table_lock);
798
799 return true;
800}
801
802static void __meminit
803remove_pte_table(pte_t *pte_start, unsigned long addr, unsigned long end,
804 bool direct)
805{
806 unsigned long next, pages = 0;
807 pte_t *pte;
808 void *page_addr;
809 phys_addr_t phys_addr;
810
811 pte = pte_start + pte_index(addr);
812 for (; addr < end; addr = next, pte++) {
813 next = (addr + PAGE_SIZE) & PAGE_MASK;
814 if (next > end)
815 next = end;
816
817 if (!pte_present(*pte))
818 continue;
819
820 /*
821 * We mapped [0,1G) memory as identity mapping when
822 * initializing, in arch/x86/kernel/head_64.S. These
823 * pagetables cannot be removed.
824 */
825 phys_addr = pte_val(*pte) + (addr & PAGE_MASK);
826 if (phys_addr < (phys_addr_t)0x40000000)
827 return;
828
829 if (IS_ALIGNED(addr, PAGE_SIZE) &&
830 IS_ALIGNED(next, PAGE_SIZE)) {
831 /*
832 * Do not free direct mapping pages since they were
833 * freed when offlining, or simplely not in use.
834 */
835 if (!direct)
836 free_pagetable(pte_page(*pte), 0);
837
838 spin_lock(&init_mm.page_table_lock);
839 pte_clear(&init_mm, addr, pte);
840 spin_unlock(&init_mm.page_table_lock);
841
842 /* For non-direct mapping, pages means nothing. */
843 pages++;
844 } else {
845 /*
846 * If we are here, we are freeing vmemmap pages since
847 * direct mapped memory ranges to be freed are aligned.
848 *
849 * If we are not removing the whole page, it means
850 * other page structs in this page are being used and
851 * we canot remove them. So fill the unused page_structs
852 * with 0xFD, and remove the page when it is wholly
853 * filled with 0xFD.
854 */
855 memset((void *)addr, PAGE_INUSE, next - addr);
856
857 page_addr = page_address(pte_page(*pte));
858 if (!memchr_inv(page_addr, PAGE_INUSE, PAGE_SIZE)) {
859 free_pagetable(pte_page(*pte), 0);
860
861 spin_lock(&init_mm.page_table_lock);
862 pte_clear(&init_mm, addr, pte);
863 spin_unlock(&init_mm.page_table_lock);
864 }
865 }
866 }
867
868 /* Call free_pte_table() in remove_pmd_table(). */
869 flush_tlb_all();
870 if (direct)
871 update_page_count(PG_LEVEL_4K, -pages);
872}
873
874static void __meminit
875remove_pmd_table(pmd_t *pmd_start, unsigned long addr, unsigned long end,
876 bool direct)
877{
878 unsigned long next, pages = 0;
879 pte_t *pte_base;
880 pmd_t *pmd;
881 void *page_addr;
882
883 pmd = pmd_start + pmd_index(addr);
884 for (; addr < end; addr = next, pmd++) {
885 next = pmd_addr_end(addr, end);
886
887 if (!pmd_present(*pmd))
888 continue;
889
890 if (pmd_large(*pmd)) {
891 if (IS_ALIGNED(addr, PMD_SIZE) &&
892 IS_ALIGNED(next, PMD_SIZE)) {
893 if (!direct)
894 free_pagetable(pmd_page(*pmd),
895 get_order(PMD_SIZE));
896
897 spin_lock(&init_mm.page_table_lock);
898 pmd_clear(pmd);
899 spin_unlock(&init_mm.page_table_lock);
900 pages++;
901 } else {
902 /* If here, we are freeing vmemmap pages. */
903 memset((void *)addr, PAGE_INUSE, next - addr);
904
905 page_addr = page_address(pmd_page(*pmd));
906 if (!memchr_inv(page_addr, PAGE_INUSE,
907 PMD_SIZE)) {
908 free_pagetable(pmd_page(*pmd),
909 get_order(PMD_SIZE));
910
911 spin_lock(&init_mm.page_table_lock);
912 pmd_clear(pmd);
913 spin_unlock(&init_mm.page_table_lock);
914 }
915 }
916
917 continue;
918 }
919
920 pte_base = (pte_t *)pmd_page_vaddr(*pmd);
921 remove_pte_table(pte_base, addr, next, direct);
922 free_pte_table(pte_base, pmd);
923 }
924
925 /* Call free_pmd_table() in remove_pud_table(). */
926 if (direct)
927 update_page_count(PG_LEVEL_2M, -pages);
928}
929
930static void __meminit
931remove_pud_table(pud_t *pud_start, unsigned long addr, unsigned long end,
932 bool direct)
933{
934 unsigned long next, pages = 0;
935 pmd_t *pmd_base;
936 pud_t *pud;
937 void *page_addr;
938
939 pud = pud_start + pud_index(addr);
940 for (; addr < end; addr = next, pud++) {
941 next = pud_addr_end(addr, end);
942
943 if (!pud_present(*pud))
944 continue;
945
946 if (pud_large(*pud)) {
947 if (IS_ALIGNED(addr, PUD_SIZE) &&
948 IS_ALIGNED(next, PUD_SIZE)) {
949 if (!direct)
950 free_pagetable(pud_page(*pud),
951 get_order(PUD_SIZE));
952
953 spin_lock(&init_mm.page_table_lock);
954 pud_clear(pud);
955 spin_unlock(&init_mm.page_table_lock);
956 pages++;
957 } else {
958 /* If here, we are freeing vmemmap pages. */
959 memset((void *)addr, PAGE_INUSE, next - addr);
960
961 page_addr = page_address(pud_page(*pud));
962 if (!memchr_inv(page_addr, PAGE_INUSE,
963 PUD_SIZE)) {
964 free_pagetable(pud_page(*pud),
965 get_order(PUD_SIZE));
966
967 spin_lock(&init_mm.page_table_lock);
968 pud_clear(pud);
969 spin_unlock(&init_mm.page_table_lock);
970 }
971 }
972
973 continue;
974 }
975
976 pmd_base = (pmd_t *)pud_page_vaddr(*pud);
977 remove_pmd_table(pmd_base, addr, next, direct);
978 free_pmd_table(pmd_base, pud);
979 }
980
981 if (direct)
982 update_page_count(PG_LEVEL_1G, -pages);
983}
984
985/* start and end are both virtual address. */
986static void __meminit
987remove_pagetable(unsigned long start, unsigned long end, bool direct)
988{
989 unsigned long next;
Yasuaki Ishimatsu5255e0a2014-08-22 13:27:31 -0700990 unsigned long addr;
Wen Congyangae9aae92013-02-22 16:33:04 -0800991 pgd_t *pgd;
992 pud_t *pud;
993 bool pgd_changed = false;
994
Yasuaki Ishimatsu5255e0a2014-08-22 13:27:31 -0700995 for (addr = start; addr < end; addr = next) {
996 next = pgd_addr_end(addr, end);
Wen Congyangae9aae92013-02-22 16:33:04 -0800997
Yasuaki Ishimatsu5255e0a2014-08-22 13:27:31 -0700998 pgd = pgd_offset_k(addr);
Wen Congyangae9aae92013-02-22 16:33:04 -0800999 if (!pgd_present(*pgd))
1000 continue;
1001
1002 pud = (pud_t *)pgd_page_vaddr(*pgd);
Yasuaki Ishimatsu5255e0a2014-08-22 13:27:31 -07001003 remove_pud_table(pud, addr, next, direct);
Wen Congyangae9aae92013-02-22 16:33:04 -08001004 if (free_pud_table(pud, pgd))
1005 pgd_changed = true;
1006 }
1007
1008 if (pgd_changed)
Yasuaki Ishimatsu9661d5b2014-08-22 13:27:34 -07001009 sync_global_pgds(start, end - 1, 1);
Wen Congyangae9aae92013-02-22 16:33:04 -08001010
1011 flush_tlb_all();
1012}
1013
Johannes Weiner0aad8182013-04-29 15:07:50 -07001014void __ref vmemmap_free(unsigned long start, unsigned long end)
Tang Chen01975182013-02-22 16:33:08 -08001015{
Tang Chen01975182013-02-22 16:33:08 -08001016 remove_pagetable(start, end, false);
1017}
1018
Tang Chen587ff8c2013-04-15 17:46:46 +08001019#ifdef CONFIG_MEMORY_HOTREMOVE
Tang Chenbbcab872013-02-22 16:33:06 -08001020static void __meminit
1021kernel_physical_mapping_remove(unsigned long start, unsigned long end)
1022{
1023 start = (unsigned long)__va(start);
1024 end = (unsigned long)__va(end);
1025
1026 remove_pagetable(start, end, true);
1027}
1028
Wen Congyang24d335c2013-02-22 16:32:58 -08001029int __ref arch_remove_memory(u64 start, u64 size)
1030{
1031 unsigned long start_pfn = start >> PAGE_SHIFT;
1032 unsigned long nr_pages = size >> PAGE_SHIFT;
1033 struct zone *zone;
1034 int ret;
1035
1036 zone = page_zone(pfn_to_page(start_pfn));
Tang Chenbbcab872013-02-22 16:33:06 -08001037 kernel_physical_mapping_remove(start, start + size);
Wen Congyang24d335c2013-02-22 16:32:58 -08001038 ret = __remove_pages(zone, start_pfn, nr_pages);
1039 WARN_ON_ONCE(ret);
1040
1041 return ret;
1042}
1043#endif
Keith Mannthey45e0b782006-09-30 23:27:09 -07001044#endif /* CONFIG_MEMORY_HOTPLUG */
1045
KAMEZAWA Hiroyuki81ac3ad2009-09-22 16:45:49 -07001046static struct kcore_list kcore_vsyscall;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
Yinghai Lu94b43c32012-11-16 19:39:19 -08001048static void __init register_page_bootmem_info(void)
1049{
1050#ifdef CONFIG_NUMA
1051 int i;
1052
1053 for_each_online_node(i)
1054 register_page_bootmem_info_node(NODE_DATA(i));
1055#endif
1056}
1057
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058void __init mem_init(void)
1059{
Jon Mason0dc243a2006-06-26 13:58:11 +02001060 pci_iommu_alloc();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
Yinghai Lu48ddb152008-01-30 13:32:36 +01001062 /* clear_bss() already clear the empty_zero_page */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
Yinghai Lu94b43c32012-11-16 19:39:19 -08001064 register_page_bootmem_info();
Jiang Liubced0e32013-04-29 15:06:53 -07001065
1066 /* this will put all memory onto the freelists */
Jiang Liu0c988532013-07-03 15:03:24 -07001067 free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 after_bootmem = 1;
1069
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 /* Register memory areas for /proc/kcore */
Andy Lutomirskif40c3302014-05-05 12:19:36 -07001071 kclist_add(&kcore_vsyscall, (void *)VSYSCALL_ADDR,
1072 PAGE_SIZE, KCORE_OTHER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
Jiang Liu46a84132013-07-03 15:04:19 -07001074 mem_init_print_info(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075}
1076
Arjan van de Ven67df1972006-01-06 00:12:04 -08001077#ifdef CONFIG_DEBUG_RODATA
Arjan van de Venedeed302008-01-30 13:34:08 +01001078const int rodata_test_data = 0xC3;
1079EXPORT_SYMBOL_GPL(rodata_test_data);
Arjan van de Ven67df1972006-01-06 00:12:04 -08001080
Suresh Siddha502f6602009-10-28 18:46:56 -08001081int kernel_set_to_readonly;
Steven Rostedt16239632009-02-17 17:57:30 -05001082
1083void set_kernel_text_rw(void)
1084{
Suresh Siddhab9af7c02009-10-14 14:46:55 -07001085 unsigned long start = PFN_ALIGN(_text);
Suresh Siddhae7d23dd2009-10-28 18:46:58 -08001086 unsigned long end = PFN_ALIGN(__stop___ex_table);
Steven Rostedt16239632009-02-17 17:57:30 -05001087
1088 if (!kernel_set_to_readonly)
1089 return;
1090
1091 pr_debug("Set kernel text: %lx - %lx for read write\n",
1092 start, end);
1093
Suresh Siddhae7d23dd2009-10-28 18:46:58 -08001094 /*
1095 * Make the kernel identity mapping for text RW. Kernel text
1096 * mapping will always be RO. Refer to the comment in
1097 * static_protections() in pageattr.c
1098 */
Steven Rostedt16239632009-02-17 17:57:30 -05001099 set_memory_rw(start, (end - start) >> PAGE_SHIFT);
1100}
1101
1102void set_kernel_text_ro(void)
1103{
Suresh Siddhab9af7c02009-10-14 14:46:55 -07001104 unsigned long start = PFN_ALIGN(_text);
Suresh Siddhae7d23dd2009-10-28 18:46:58 -08001105 unsigned long end = PFN_ALIGN(__stop___ex_table);
Steven Rostedt16239632009-02-17 17:57:30 -05001106
1107 if (!kernel_set_to_readonly)
1108 return;
1109
1110 pr_debug("Set kernel text: %lx - %lx for read only\n",
1111 start, end);
1112
Suresh Siddhae7d23dd2009-10-28 18:46:58 -08001113 /*
1114 * Set the kernel identity mapping for text RO.
1115 */
Steven Rostedt16239632009-02-17 17:57:30 -05001116 set_memory_ro(start, (end - start) >> PAGE_SHIFT);
1117}
1118
Arjan van de Ven67df1972006-01-06 00:12:04 -08001119void mark_rodata_ro(void)
1120{
Suresh Siddha74e08172009-10-14 14:46:56 -07001121 unsigned long start = PFN_ALIGN(_text);
Alexander Duyckfc8d7822012-11-16 13:57:13 -08001122 unsigned long rodata_start = PFN_ALIGN(__start_rodata);
Suresh Siddha74e08172009-10-14 14:46:56 -07001123 unsigned long end = (unsigned long) &__end_rodata_hpage_align;
Alexander Duyckfc8d7822012-11-16 13:57:13 -08001124 unsigned long text_end = PFN_ALIGN(&__stop___ex_table);
1125 unsigned long rodata_end = PFN_ALIGN(&__end_rodata);
Kees Cook45e2a9d2014-11-14 11:47:37 -08001126 unsigned long all_end;
Steven Rostedt8f0f9962008-05-12 21:20:56 +02001127
Jan Beulich6fb14752007-05-02 19:27:10 +02001128 printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -07001129 (end - start) >> 10);
Arjan van de Ven984bb802008-02-06 22:39:45 +01001130 set_memory_ro(start, (end - start) >> PAGE_SHIFT);
1131
Steven Rostedt16239632009-02-17 17:57:30 -05001132 kernel_set_to_readonly = 1;
1133
Arjan van de Ven984bb802008-02-06 22:39:45 +01001134 /*
Yinghai Lu72212672013-01-24 12:20:13 -08001135 * The rodata/data/bss/brk section (but not the kernel text!)
1136 * should also be not-executable.
Kees Cook45e2a9d2014-11-14 11:47:37 -08001137 *
1138 * We align all_end to PMD_SIZE because the existing mapping
1139 * is a full PMD. If we would align _brk_end to PAGE_SIZE we
1140 * split the PMD and the reminder between _brk_end and the end
1141 * of the PMD will remain mapped executable.
1142 *
1143 * Any PMD which was setup after the one which covers _brk_end
1144 * has been zapped already via cleanup_highmem().
Arjan van de Ven984bb802008-02-06 22:39:45 +01001145 */
Kees Cook45e2a9d2014-11-14 11:47:37 -08001146 all_end = roundup((unsigned long)_brk_end, PMD_SIZE);
Yinghai Lu72212672013-01-24 12:20:13 -08001147 set_memory_nx(rodata_start, (all_end - rodata_start) >> PAGE_SHIFT);
Arjan van de Ven67df1972006-01-06 00:12:04 -08001148
Arjan van de Ven1a487252008-01-30 13:34:09 +01001149 rodata_test();
1150
Andi Kleen0c42f392008-01-30 13:33:42 +01001151#ifdef CONFIG_CPA_DEBUG
Ingo Molnar10f22dd2008-01-30 13:34:10 +01001152 printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, end);
Arjan van de Ven6d238cc2008-01-30 13:34:06 +01001153 set_memory_rw(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +01001154
Ingo Molnar10f22dd2008-01-30 13:34:10 +01001155 printk(KERN_INFO "Testing CPA: again\n");
Arjan van de Ven6d238cc2008-01-30 13:34:06 +01001156 set_memory_ro(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +01001157#endif
Suresh Siddha74e08172009-10-14 14:46:56 -07001158
Jiang Liuc88442e2013-07-03 15:02:58 -07001159 free_init_pages("unused kernel",
Alexander Duyckfc8d7822012-11-16 13:57:13 -08001160 (unsigned long) __va(__pa_symbol(text_end)),
1161 (unsigned long) __va(__pa_symbol(rodata_start)));
Jiang Liuc88442e2013-07-03 15:02:58 -07001162 free_init_pages("unused kernel",
Alexander Duyckfc8d7822012-11-16 13:57:13 -08001163 (unsigned long) __va(__pa_symbol(rodata_end)),
1164 (unsigned long) __va(__pa_symbol(_sdata)));
Arjan van de Ven67df1972006-01-06 00:12:04 -08001165}
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -05001166
Arjan van de Ven67df1972006-01-06 00:12:04 -08001167#endif
1168
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001169int kern_addr_valid(unsigned long addr)
1170{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 unsigned long above = ((long)addr) >> __VIRTUAL_MASK_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001172 pgd_t *pgd;
1173 pud_t *pud;
1174 pmd_t *pmd;
1175 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
1177 if (above != 0 && above != -1UL)
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001178 return 0;
1179
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 pgd = pgd_offset_k(addr);
1181 if (pgd_none(*pgd))
1182 return 0;
1183
1184 pud = pud_offset(pgd, addr);
1185 if (pud_none(*pud))
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001186 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
Mel Gorman0ee364e2013-02-11 14:52:36 +00001188 if (pud_large(*pud))
1189 return pfn_valid(pud_pfn(*pud));
1190
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 pmd = pmd_offset(pud, addr);
1192 if (pmd_none(*pmd))
1193 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001194
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 if (pmd_large(*pmd))
1196 return pfn_valid(pmd_pfn(*pmd));
1197
1198 pte = pte_offset_kernel(pmd, addr);
1199 if (pte_none(*pte))
1200 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001201
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 return pfn_valid(pte_pfn(*pte));
1203}
1204
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001205/*
1206 * A pseudo VMA to allow ptrace access for the vsyscall page. This only
1207 * covers the 64bit vsyscall page now. 32bit has a real VMA now and does
1208 * not need special handling anymore:
1209 */
Andy Lutomirskiac49b9a2014-05-19 15:58:34 -07001210static const char *gate_vma_name(struct vm_area_struct *vma)
1211{
1212 return "[vsyscall]";
1213}
1214static struct vm_operations_struct gate_vma_ops = {
1215 .name = gate_vma_name,
1216};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217static struct vm_area_struct gate_vma = {
Andy Lutomirskif40c3302014-05-05 12:19:36 -07001218 .vm_start = VSYSCALL_ADDR,
1219 .vm_end = VSYSCALL_ADDR + PAGE_SIZE,
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001220 .vm_page_prot = PAGE_READONLY_EXEC,
Andy Lutomirskiac49b9a2014-05-19 15:58:34 -07001221 .vm_flags = VM_READ | VM_EXEC,
1222 .vm_ops = &gate_vma_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223};
1224
Stephen Wilson31db58b2011-03-13 15:49:15 -04001225struct vm_area_struct *get_gate_vma(struct mm_struct *mm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226{
1227#ifdef CONFIG_IA32_EMULATION
Stephen Wilson31db58b2011-03-13 15:49:15 -04001228 if (!mm || mm->context.ia32_compat)
Andi Kleen1e014412005-04-16 15:24:55 -07001229 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230#endif
1231 return &gate_vma;
1232}
1233
Stephen Wilson83b964b2011-03-13 15:49:16 -04001234int in_gate_area(struct mm_struct *mm, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235{
Stephen Wilson83b964b2011-03-13 15:49:16 -04001236 struct vm_area_struct *vma = get_gate_vma(mm);
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001237
Andi Kleen1e014412005-04-16 15:24:55 -07001238 if (!vma)
1239 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001240
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 return (addr >= vma->vm_start) && (addr < vma->vm_end);
1242}
1243
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001244/*
Stephen Wilsoncae5d392011-03-13 15:49:17 -04001245 * Use this when you have no reliable mm, typically from interrupt
1246 * context. It is less reliable than using a task's mm and may give
1247 * false positives.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 */
Stephen Wilsoncae5d392011-03-13 15:49:17 -04001249int in_gate_area_no_mm(unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250{
Andy Lutomirskif40c3302014-05-05 12:19:36 -07001251 return (addr & PAGE_MASK) == VSYSCALL_ADDR;
Andi Kleen2aae9502007-07-21 17:10:01 +02001252}
Christoph Lameter0889eba2007-10-16 01:24:15 -07001253
Yinghai Lu982792c2014-06-04 16:06:32 -07001254static unsigned long probe_memory_block_size(void)
Nathan Fontenot1dc41aa2011-01-20 10:46:15 -06001255{
Yinghai Lu982792c2014-06-04 16:06:32 -07001256 /* start from 2g */
1257 unsigned long bz = 1UL<<31;
1258
1259#ifdef CONFIG_X86_UV
Nathan Fontenot1dc41aa2011-01-20 10:46:15 -06001260 if (is_uv_system()) {
1261 printk(KERN_INFO "UV: memory block size 2GB\n");
1262 return 2UL * 1024 * 1024 * 1024;
1263 }
Nathan Fontenot1dc41aa2011-01-20 10:46:15 -06001264#endif
1265
Yinghai Lu982792c2014-06-04 16:06:32 -07001266 /* less than 64g installed */
1267 if ((max_pfn << PAGE_SHIFT) < (16UL << 32))
1268 return MIN_MEMORY_BLOCK_SIZE;
1269
1270 /* get the tail size */
1271 while (bz > MIN_MEMORY_BLOCK_SIZE) {
1272 if (!((max_pfn << PAGE_SHIFT) & (bz - 1)))
1273 break;
1274 bz >>= 1;
1275 }
1276
1277 printk(KERN_DEBUG "memory block size : %ldMB\n", bz >> 20);
1278
1279 return bz;
1280}
1281
1282static unsigned long memory_block_size_probed;
1283unsigned long memory_block_size_bytes(void)
1284{
1285 if (!memory_block_size_probed)
1286 memory_block_size_probed = probe_memory_block_size();
1287
1288 return memory_block_size_probed;
1289}
1290
Christoph Lameter0889eba2007-10-16 01:24:15 -07001291#ifdef CONFIG_SPARSEMEM_VMEMMAP
1292/*
1293 * Initialise the sparsemem vmemmap using huge-pages at the PMD level.
1294 */
Yinghai Luc2b91e22008-04-12 01:19:24 -07001295static long __meminitdata addr_start, addr_end;
1296static void __meminitdata *p_start, *p_end;
1297static int __meminitdata node_start;
1298
Johannes Weinere8216da2013-04-29 15:07:54 -07001299static int __meminit vmemmap_populate_hugepages(unsigned long start,
1300 unsigned long end, int node)
Christoph Lameter0889eba2007-10-16 01:24:15 -07001301{
Johannes Weiner0aad8182013-04-29 15:07:50 -07001302 unsigned long addr;
Christoph Lameter0889eba2007-10-16 01:24:15 -07001303 unsigned long next;
1304 pgd_t *pgd;
1305 pud_t *pud;
1306 pmd_t *pmd;
1307
Johannes Weiner0aad8182013-04-29 15:07:50 -07001308 for (addr = start; addr < end; addr = next) {
Johannes Weinere8216da2013-04-29 15:07:54 -07001309 next = pmd_addr_end(addr, end);
Christoph Lameter0889eba2007-10-16 01:24:15 -07001310
1311 pgd = vmemmap_pgd_populate(addr, node);
1312 if (!pgd)
1313 return -ENOMEM;
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001314
Christoph Lameter0889eba2007-10-16 01:24:15 -07001315 pud = vmemmap_pud_populate(pgd, addr, node);
1316 if (!pud)
1317 return -ENOMEM;
1318
Johannes Weinere8216da2013-04-29 15:07:54 -07001319 pmd = pmd_offset(pud, addr);
1320 if (pmd_none(*pmd)) {
Johannes Weinere8216da2013-04-29 15:07:54 -07001321 void *p;
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001322
Johannes Weinere8216da2013-04-29 15:07:54 -07001323 p = vmemmap_alloc_block_buf(PMD_SIZE, node);
Johannes Weiner8e2cdbc2013-04-29 15:07:56 -07001324 if (p) {
1325 pte_t entry;
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001326
Johannes Weiner8e2cdbc2013-04-29 15:07:56 -07001327 entry = pfn_pte(__pa(p) >> PAGE_SHIFT,
1328 PAGE_KERNEL_LARGE);
1329 set_pmd(pmd, __pmd(pte_val(entry)));
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001330
Johannes Weiner8e2cdbc2013-04-29 15:07:56 -07001331 /* check to see if we have contiguous blocks */
1332 if (p_end != p || node_start != node) {
1333 if (p_start)
1334 printk(KERN_DEBUG " [%lx-%lx] PMD -> [%p-%p] on node %d\n",
1335 addr_start, addr_end-1, p_start, p_end-1, node_start);
1336 addr_start = addr;
1337 node_start = node;
1338 p_start = p;
1339 }
1340
1341 addr_end = addr + PMD_SIZE;
1342 p_end = p + PMD_SIZE;
1343 continue;
Johannes Weinere8216da2013-04-29 15:07:54 -07001344 }
Johannes Weiner8e2cdbc2013-04-29 15:07:56 -07001345 } else if (pmd_large(*pmd)) {
Johannes Weinere8216da2013-04-29 15:07:54 -07001346 vmemmap_verify((pte_t *)pmd, node, addr, next);
Johannes Weiner8e2cdbc2013-04-29 15:07:56 -07001347 continue;
1348 }
1349 pr_warn_once("vmemmap: falling back to regular page backing\n");
1350 if (vmemmap_populate_basepages(addr, next, node))
1351 return -ENOMEM;
Christoph Lameter0889eba2007-10-16 01:24:15 -07001352 }
Christoph Lameter0889eba2007-10-16 01:24:15 -07001353 return 0;
1354}
Yinghai Luc2b91e22008-04-12 01:19:24 -07001355
Johannes Weinere8216da2013-04-29 15:07:54 -07001356int __meminit vmemmap_populate(unsigned long start, unsigned long end, int node)
1357{
1358 int err;
1359
1360 if (cpu_has_pse)
1361 err = vmemmap_populate_hugepages(start, end, node);
1362 else
1363 err = vmemmap_populate_basepages(start, end, node);
1364 if (!err)
Yasuaki Ishimatsu9661d5b2014-08-22 13:27:34 -07001365 sync_global_pgds(start, end - 1, 0);
Johannes Weinere8216da2013-04-29 15:07:54 -07001366 return err;
1367}
1368
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -08001369#if defined(CONFIG_MEMORY_HOTPLUG_SPARSE) && defined(CONFIG_HAVE_BOOTMEM_INFO_NODE)
1370void register_page_bootmem_memmap(unsigned long section_nr,
1371 struct page *start_page, unsigned long size)
1372{
1373 unsigned long addr = (unsigned long)start_page;
1374 unsigned long end = (unsigned long)(start_page + size);
1375 unsigned long next;
1376 pgd_t *pgd;
1377 pud_t *pud;
1378 pmd_t *pmd;
1379 unsigned int nr_pages;
1380 struct page *page;
1381
1382 for (; addr < end; addr = next) {
1383 pte_t *pte = NULL;
1384
1385 pgd = pgd_offset_k(addr);
1386 if (pgd_none(*pgd)) {
1387 next = (addr + PAGE_SIZE) & PAGE_MASK;
1388 continue;
1389 }
1390 get_page_bootmem(section_nr, pgd_page(*pgd), MIX_SECTION_INFO);
1391
1392 pud = pud_offset(pgd, addr);
1393 if (pud_none(*pud)) {
1394 next = (addr + PAGE_SIZE) & PAGE_MASK;
1395 continue;
1396 }
1397 get_page_bootmem(section_nr, pud_page(*pud), MIX_SECTION_INFO);
1398
1399 if (!cpu_has_pse) {
1400 next = (addr + PAGE_SIZE) & PAGE_MASK;
1401 pmd = pmd_offset(pud, addr);
1402 if (pmd_none(*pmd))
1403 continue;
1404 get_page_bootmem(section_nr, pmd_page(*pmd),
1405 MIX_SECTION_INFO);
1406
1407 pte = pte_offset_kernel(pmd, addr);
1408 if (pte_none(*pte))
1409 continue;
1410 get_page_bootmem(section_nr, pte_page(*pte),
1411 SECTION_INFO);
1412 } else {
1413 next = pmd_addr_end(addr, end);
1414
1415 pmd = pmd_offset(pud, addr);
1416 if (pmd_none(*pmd))
1417 continue;
1418
1419 nr_pages = 1 << (get_order(PMD_SIZE));
1420 page = pmd_page(*pmd);
1421 while (nr_pages--)
1422 get_page_bootmem(section_nr, page++,
1423 SECTION_INFO);
1424 }
1425 }
1426}
1427#endif
1428
Yinghai Luc2b91e22008-04-12 01:19:24 -07001429void __meminit vmemmap_populate_print_last(void)
1430{
1431 if (p_start) {
1432 printk(KERN_DEBUG " [%lx-%lx] PMD -> [%p-%p] on node %d\n",
1433 addr_start, addr_end-1, p_start, p_end-1, node_start);
1434 p_start = NULL;
1435 p_end = NULL;
1436 node_start = 0;
1437 }
1438}
Christoph Lameter0889eba2007-10-16 01:24:15 -07001439#endif