blob: 71a59296af80779f56d3f31c98f0ce2d790fe373 [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>
31#include <linux/memory_hotplug.h>
Konrad Rzeszutekae32b122007-05-02 19:27:11 +020032#include <linux/nmi.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35#include <asm/processor.h>
Ingo Molnar46eaa672008-10-12 15:06:29 +020036#include <asm/bios_ebda.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/system.h>
38#include <asm/uaccess.h>
39#include <asm/pgtable.h>
40#include <asm/pgalloc.h>
41#include <asm/dma.h>
42#include <asm/fixmap.h>
43#include <asm/e820.h>
44#include <asm/apic.h>
45#include <asm/tlb.h>
46#include <asm/mmu_context.h>
47#include <asm/proto.h>
48#include <asm/smp.h>
Andi Kleen2bc04142005-11-05 17:25:53 +010049#include <asm/sections.h>
Thomas Gleixner718fc132008-01-30 13:30:17 +010050#include <asm/kdebug.h>
Thomas Gleixneraaa64e02008-01-30 13:30:17 +010051#include <asm/numa.h>
Harvey Harrison7bfeab92008-02-12 12:12:01 -080052#include <asm/cacheflush.h>
Pekka Enberg4fcb2082009-03-05 14:55:08 +020053#include <asm/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Ingo Molnar00d1c5e2008-04-17 17:40:45 +020055static int __init parse_direct_gbpages_off(char *arg)
56{
57 direct_gbpages = 0;
58 return 0;
59}
60early_param("nogbpages", parse_direct_gbpages_off);
61
62static int __init parse_direct_gbpages_on(char *arg)
63{
64 direct_gbpages = 1;
65 return 0;
66}
67early_param("gbpages", parse_direct_gbpages_on);
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069/*
70 * NOTE: pagetable_init alloc all the fixmap pagetables contiguous on the
71 * physical space so we can cache the place of the first one and move
72 * around without checking the pgd every time.
73 */
74
Jeremy Fitzhardingebe43d722008-09-07 15:21:13 -070075pteval_t __supported_pte_mask __read_mostly = ~_PAGE_IOMAP;
Yinghai Lubd220a22008-09-05 00:58:28 -070076EXPORT_SYMBOL_GPL(__supported_pte_mask);
77
Yinghai Lubd220a22008-09-05 00:58:28 -070078int force_personality32;
79
Ingo Molnardeed05b2008-09-05 10:23:26 +020080/*
81 * noexec32=on|off
82 * Control non executable heap for 32bit processes.
83 * To control the stack too use noexec=off
84 *
85 * on PROT_READ does not imply PROT_EXEC for 32-bit processes (default)
86 * off PROT_READ implies PROT_EXEC
87 */
Yinghai Lubd220a22008-09-05 00:58:28 -070088static int __init nonx32_setup(char *str)
89{
90 if (!strcmp(str, "on"))
91 force_personality32 &= ~READ_IMPLIES_EXEC;
92 else if (!strcmp(str, "off"))
93 force_personality32 |= READ_IMPLIES_EXEC;
94 return 1;
95}
96__setup("noexec32=", nonx32_setup);
97
Marcin Slusarz8d6ea9672008-08-15 18:32:24 +020098/*
Haicheng Li6afb5152010-05-19 17:42:14 +080099 * When memory was added/removed make sure all the processes MM have
100 * suitable PGD entries in the local PGD level page.
101 */
102void sync_global_pgds(unsigned long start, unsigned long end)
103{
Jeremy Fitzhardinge44235dc2010-10-14 17:04:59 -0700104 unsigned long address;
Haicheng Li6afb5152010-05-19 17:42:14 +0800105
Jeremy Fitzhardinge44235dc2010-10-14 17:04:59 -0700106 for (address = start; address <= end; address += PGDIR_SIZE) {
107 const pgd_t *pgd_ref = pgd_offset_k(address);
108 unsigned long flags;
109 struct page *page;
Haicheng Li6afb5152010-05-19 17:42:14 +0800110
Jeremy Fitzhardinge44235dc2010-10-14 17:04:59 -0700111 if (pgd_none(*pgd_ref))
112 continue;
Haicheng Li6afb5152010-05-19 17:42:14 +0800113
Jeremy Fitzhardinge44235dc2010-10-14 17:04:59 -0700114 spin_lock_irqsave(&pgd_lock, flags);
115 list_for_each_entry(page, &pgd_list, lru) {
116 pgd_t *pgd;
Jeremy Fitzhardinge617d34d2010-09-21 12:01:51 -0700117 spinlock_t *pgt_lock;
118
Jeremy Fitzhardinge44235dc2010-10-14 17:04:59 -0700119 pgd = (pgd_t *)page_address(page) + pgd_index(address);
Jeremy Fitzhardinge617d34d2010-09-21 12:01:51 -0700120 pgt_lock = &pgd_page_get_mm(page)->page_table_lock;
121 spin_lock(pgt_lock);
122
Jeremy Fitzhardinge44235dc2010-10-14 17:04:59 -0700123 if (pgd_none(*pgd))
124 set_pgd(pgd, *pgd_ref);
125 else
126 BUG_ON(pgd_page_vaddr(*pgd)
127 != pgd_page_vaddr(*pgd_ref));
Jeremy Fitzhardinge617d34d2010-09-21 12:01:51 -0700128
129 spin_unlock(pgt_lock);
Jeremy Fitzhardinge44235dc2010-10-14 17:04:59 -0700130 }
131 spin_unlock_irqrestore(&pgd_lock, flags);
132 }
Haicheng Li6afb5152010-05-19 17:42:14 +0800133}
134
135/*
Marcin Slusarz8d6ea9672008-08-15 18:32:24 +0200136 * NOTE: This function is marked __ref because it calls __init function
137 * (alloc_bootmem_pages). It's safe to do it ONLY when after_bootmem == 0.
138 */
139static __ref void *spp_getpage(void)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100140{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 void *ptr;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 if (after_bootmem)
Vegard Nossum9e730232009-02-22 11:28:25 +0100144 ptr = (void *) get_zeroed_page(GFP_ATOMIC | __GFP_NOTRACK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 else
146 ptr = alloc_bootmem_pages(PAGE_SIZE);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100147
148 if (!ptr || ((unsigned long)ptr & ~PAGE_MASK)) {
149 panic("set_pte_phys: cannot allocate page data %s\n",
150 after_bootmem ? "after bootmem" : "");
151 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100153 pr_debug("spp_getpage %p\n", ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100155 return ptr;
156}
157
Jeremy Fitzhardingef254f392009-03-03 12:02:57 -0800158static pud_t *fill_pud(pgd_t *pgd, unsigned long vaddr)
Tejun Heo458a3e62009-02-24 11:57:21 +0900159{
160 if (pgd_none(*pgd)) {
161 pud_t *pud = (pud_t *)spp_getpage();
162 pgd_populate(&init_mm, pgd, pud);
163 if (pud != pud_offset(pgd, 0))
164 printk(KERN_ERR "PAGETABLE BUG #00! %p <-> %p\n",
165 pud, pud_offset(pgd, 0));
166 }
167 return pud_offset(pgd, vaddr);
168}
169
Jeremy Fitzhardingef254f392009-03-03 12:02:57 -0800170static pmd_t *fill_pmd(pud_t *pud, unsigned long vaddr)
Tejun Heo458a3e62009-02-24 11:57:21 +0900171{
172 if (pud_none(*pud)) {
173 pmd_t *pmd = (pmd_t *) spp_getpage();
174 pud_populate(&init_mm, pud, pmd);
175 if (pmd != pmd_offset(pud, 0))
176 printk(KERN_ERR "PAGETABLE BUG #01! %p <-> %p\n",
177 pmd, pmd_offset(pud, 0));
178 }
179 return pmd_offset(pud, vaddr);
180}
181
Jeremy Fitzhardingef254f392009-03-03 12:02:57 -0800182static pte_t *fill_pte(pmd_t *pmd, unsigned long vaddr)
Tejun Heo458a3e62009-02-24 11:57:21 +0900183{
184 if (pmd_none(*pmd)) {
185 pte_t *pte = (pte_t *) spp_getpage();
186 pmd_populate_kernel(&init_mm, pmd, pte);
187 if (pte != pte_offset_kernel(pmd, 0))
188 printk(KERN_ERR "PAGETABLE BUG #02!\n");
189 }
190 return pte_offset_kernel(pmd, vaddr);
191}
192
193void set_pte_vaddr_pud(pud_t *pud_page, unsigned long vaddr, pte_t new_pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 pud_t *pud;
196 pmd_t *pmd;
Jeremy Fitzhardinged494a962008-06-17 11:41:59 -0700197 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Eduardo Habkost0814e0b2008-06-25 00:19:22 -0400199 pud = pud_page + pud_index(vaddr);
Tejun Heo458a3e62009-02-24 11:57:21 +0900200 pmd = fill_pmd(pud, vaddr);
201 pte = fill_pte(pmd, vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 set_pte(pte, new_pte);
204
205 /*
206 * It's enough to flush this one mapping.
207 * (PGE mappings get flushed as well)
208 */
209 __flush_tlb_one(vaddr);
210}
211
Tejun Heo458a3e62009-02-24 11:57:21 +0900212void set_pte_vaddr(unsigned long vaddr, pte_t pteval)
Eduardo Habkost0814e0b2008-06-25 00:19:22 -0400213{
214 pgd_t *pgd;
215 pud_t *pud_page;
216
217 pr_debug("set_pte_vaddr %lx to %lx\n", vaddr, native_pte_val(pteval));
218
219 pgd = pgd_offset_k(vaddr);
220 if (pgd_none(*pgd)) {
221 printk(KERN_ERR
222 "PGD FIXMAP MISSING, it should be setup in head.S!\n");
223 return;
224 }
225 pud_page = (pud_t*)pgd_page_vaddr(*pgd);
226 set_pte_vaddr_pud(pud_page, vaddr, pteval);
227}
228
Tejun Heo458a3e62009-02-24 11:57:21 +0900229pmd_t * __init populate_extra_pmd(unsigned long vaddr)
Tejun Heo11124412009-02-20 16:29:09 +0900230{
231 pgd_t *pgd;
232 pud_t *pud;
233
234 pgd = pgd_offset_k(vaddr);
Tejun Heo458a3e62009-02-24 11:57:21 +0900235 pud = fill_pud(pgd, vaddr);
236 return fill_pmd(pud, vaddr);
237}
Tejun Heo11124412009-02-20 16:29:09 +0900238
Tejun Heo458a3e62009-02-24 11:57:21 +0900239pte_t * __init populate_extra_pte(unsigned long vaddr)
240{
241 pmd_t *pmd;
242
243 pmd = populate_extra_pmd(vaddr);
244 return fill_pte(pmd, vaddr);
Tejun Heo11124412009-02-20 16:29:09 +0900245}
246
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100247/*
Jack Steiner3a9e1892008-07-01 14:45:32 -0500248 * Create large page table mappings for a range of physical addresses.
249 */
250static void __init __init_extra_mapping(unsigned long phys, unsigned long size,
251 pgprot_t prot)
252{
253 pgd_t *pgd;
254 pud_t *pud;
255 pmd_t *pmd;
256
257 BUG_ON((phys & ~PMD_MASK) || (size & ~PMD_MASK));
258 for (; size; phys += PMD_SIZE, size -= PMD_SIZE) {
259 pgd = pgd_offset_k((unsigned long)__va(phys));
260 if (pgd_none(*pgd)) {
261 pud = (pud_t *) spp_getpage();
262 set_pgd(pgd, __pgd(__pa(pud) | _KERNPG_TABLE |
263 _PAGE_USER));
264 }
265 pud = pud_offset(pgd, (unsigned long)__va(phys));
266 if (pud_none(*pud)) {
267 pmd = (pmd_t *) spp_getpage();
268 set_pud(pud, __pud(__pa(pmd) | _KERNPG_TABLE |
269 _PAGE_USER));
270 }
271 pmd = pmd_offset(pud, phys);
272 BUG_ON(!pmd_none(*pmd));
273 set_pmd(pmd, __pmd(phys | pgprot_val(prot)));
274 }
275}
276
277void __init init_extra_mapping_wb(unsigned long phys, unsigned long size)
278{
279 __init_extra_mapping(phys, size, PAGE_KERNEL_LARGE);
280}
281
282void __init init_extra_mapping_uc(unsigned long phys, unsigned long size)
283{
284 __init_extra_mapping(phys, size, PAGE_KERNEL_LARGE_NOCACHE);
285}
286
287/*
Ingo Molnar88f3aec2008-02-21 11:04:11 +0100288 * The head.S code sets up the kernel high mapping:
289 *
290 * from __START_KERNEL_map to __START_KERNEL_map + size (== _end-_text)
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100291 *
292 * phys_addr holds the negative offset to the kernel, which is added
293 * to the compile time generated pmds. This results in invalid pmds up
294 * to the point where we hit the physaddr 0 mapping.
295 *
296 * We limit the mappings to the region from _text to _end. _end is
297 * rounded up to the 2MB boundary. This catches the invalid pmds as
298 * well, as they are located before _text:
299 */
300void __init cleanup_highmap(void)
301{
302 unsigned long vaddr = __START_KERNEL_map;
Joerg Roedeld86bb0d2008-07-25 16:48:57 +0200303 unsigned long end = roundup((unsigned long)_end, PMD_SIZE) - 1;
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100304 pmd_t *pmd = level2_kernel_pgt;
305 pmd_t *last_pmd = pmd + PTRS_PER_PMD;
306
307 for (; pmd < last_pmd; pmd++, vaddr += PMD_SIZE) {
Hugh Dickins2884f112008-05-28 19:36:07 +0100308 if (pmd_none(*pmd))
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100309 continue;
310 if (vaddr < (unsigned long) _text || vaddr > end)
311 set_pmd(pmd, __pmd(0));
312 }
313}
314
Jan Beulich9482ac62008-08-21 14:28:42 +0100315static __ref void *alloc_low_page(unsigned long *phys)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100316{
Pekka Enberg298af9d2009-03-05 14:55:06 +0200317 unsigned long pfn = e820_table_end++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 void *adr;
319
Matt Tolentino44df75e2006-01-17 07:03:41 +0100320 if (after_bootmem) {
Vegard Nossum9e730232009-02-22 11:28:25 +0100321 adr = (void *)get_zeroed_page(GFP_ATOMIC | __GFP_NOTRACK);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100322 *phys = __pa(adr);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100323
Matt Tolentino44df75e2006-01-17 07:03:41 +0100324 return adr;
325 }
326
Pekka Enberg298af9d2009-03-05 14:55:06 +0200327 if (pfn >= e820_table_top)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100328 panic("alloc_low_page: ran out of memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Jeremy Fitzhardinge14941772008-09-07 15:21:15 -0700330 adr = early_memremap(pfn * PAGE_SIZE, PAGE_SIZE);
Jan Beulich234bb542010-09-02 13:46:34 +0100331 clear_page(adr);
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200332 *phys = pfn * PAGE_SIZE;
333 return adr;
334}
335
Jan Beulich9482ac62008-08-21 14:28:42 +0100336static __ref void unmap_low_page(void *adr)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100337{
Matt Tolentino44df75e2006-01-17 07:03:41 +0100338 if (after_bootmem)
339 return;
340
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200341 early_iounmap(adr, PAGE_SIZE);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100342}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700344static unsigned long __meminit
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700345phys_pte_init(pte_t *pte_page, unsigned long addr, unsigned long end,
346 pgprot_t prot)
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400347{
348 unsigned pages = 0;
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700349 unsigned long last_map_addr = end;
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400350 int i;
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700351
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400352 pte_t *pte = pte_page + pte_index(addr);
353
354 for(i = pte_index(addr); i < PTRS_PER_PTE; i++, addr += PAGE_SIZE, pte++) {
355
356 if (addr >= end) {
357 if (!after_bootmem) {
358 for(; i < PTRS_PER_PTE; i++, pte++)
359 set_pte(pte, __pte(0));
360 }
361 break;
362 }
363
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700364 /*
365 * We will re-use the existing mapping.
366 * Xen for example has some special requirements, like mapping
367 * pagetable pages as RO. So assume someone who pre-setup
368 * these mappings are more intelligent.
369 */
Yinghai Lu3afa3942008-10-25 22:58:21 -0700370 if (pte_val(*pte)) {
371 pages++;
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400372 continue;
Yinghai Lu3afa3942008-10-25 22:58:21 -0700373 }
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400374
375 if (0)
376 printk(" pte=%p addr=%lx pte=%016lx\n",
377 pte, addr, pfn_pte(addr >> PAGE_SHIFT, PAGE_KERNEL).pte);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400378 pages++;
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700379 set_pte(pte, pfn_pte(addr >> PAGE_SHIFT, prot));
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400380 last_map_addr = (addr & PAGE_MASK) + PAGE_SIZE;
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400381 }
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700382
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400383 update_page_count(PG_LEVEL_4K, pages);
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700384
385 return last_map_addr;
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400386}
387
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700388static unsigned long __meminit
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700389phys_pte_update(pmd_t *pmd, unsigned long address, unsigned long end,
390 pgprot_t prot)
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400391{
392 pte_t *pte = (pte_t *)pmd_page_vaddr(*pmd);
393
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700394 return phys_pte_init(pte, address, end, prot);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400395}
396
Andi Kleencc615032008-03-12 03:53:28 +0100397static unsigned long __meminit
Yinghai Lub50efd22008-07-08 01:41:05 -0700398phys_pmd_init(pmd_t *pmd_page, unsigned long address, unsigned long end,
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700399 unsigned long page_size_mask, pgprot_t prot)
Matt Tolentino44df75e2006-01-17 07:03:41 +0100400{
Andi Kleence0c0e52008-05-02 11:46:49 +0200401 unsigned long pages = 0;
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700402 unsigned long last_map_addr = end;
Andi Kleence0c0e52008-05-02 11:46:49 +0200403
Keith Mannthey6ad91652006-09-26 10:52:36 +0200404 int i = pmd_index(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Keith Mannthey6ad91652006-09-26 10:52:36 +0200406 for (; i < PTRS_PER_PMD; i++, address += PMD_SIZE) {
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400407 unsigned long pte_phys;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200408 pmd_t *pmd = pmd_page + pmd_index(address);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400409 pte_t *pte;
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700410 pgprot_t new_prot = prot;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100411
Jan Beulich5f51e132006-06-26 13:59:02 +0200412 if (address >= end) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100413 if (!after_bootmem) {
Jan Beulich5f51e132006-06-26 13:59:02 +0200414 for (; i < PTRS_PER_PMD; i++, pmd++)
415 set_pmd(pmd, __pmd(0));
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100416 }
Matt Tolentino44df75e2006-01-17 07:03:41 +0100417 break;
418 }
Keith Mannthey6ad91652006-09-26 10:52:36 +0200419
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400420 if (pmd_val(*pmd)) {
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100421 if (!pmd_large(*pmd)) {
422 spin_lock(&init_mm.page_table_lock);
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700423 last_map_addr = phys_pte_update(pmd, address,
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700424 end, prot);
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100425 spin_unlock(&init_mm.page_table_lock);
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700426 continue;
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100427 }
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700428 /*
429 * If we are ok with PG_LEVEL_2M mapping, then we will
430 * use the existing mapping,
431 *
432 * Otherwise, we will split the large page mapping but
433 * use the same existing protection bits except for
434 * large page, so that we don't violate Intel's TLB
435 * Application note (317080) which says, while changing
436 * the page sizes, new and old translations should
437 * not differ with respect to page frame and
438 * attributes.
439 */
Yinghai Lu3afa3942008-10-25 22:58:21 -0700440 if (page_size_mask & (1 << PG_LEVEL_2M)) {
441 pages++;
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700442 continue;
Yinghai Lu3afa3942008-10-25 22:58:21 -0700443 }
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700444 new_prot = pte_pgprot(pte_clrhuge(*(pte_t *)pmd));
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400445 }
Keith Mannthey6ad91652006-09-26 10:52:36 +0200446
Yinghai Lub50efd22008-07-08 01:41:05 -0700447 if (page_size_mask & (1<<PG_LEVEL_2M)) {
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400448 pages++;
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100449 spin_lock(&init_mm.page_table_lock);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400450 set_pte((pte_t *)pmd,
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700451 pfn_pte(address >> PAGE_SHIFT,
452 __pgprot(pgprot_val(prot) | _PAGE_PSE)));
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100453 spin_unlock(&init_mm.page_table_lock);
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700454 last_map_addr = (address & PMD_MASK) + PMD_SIZE;
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400455 continue;
456 }
457
458 pte = alloc_low_page(&pte_phys);
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700459 last_map_addr = phys_pte_init(pte, address, end, new_prot);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400460 unmap_low_page(pte);
461
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100462 spin_lock(&init_mm.page_table_lock);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400463 pmd_populate_kernel(&init_mm, pmd, __va(pte_phys));
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100464 spin_unlock(&init_mm.page_table_lock);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100465 }
Andi Kleence0c0e52008-05-02 11:46:49 +0200466 update_page_count(PG_LEVEL_2M, pages);
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700467 return last_map_addr;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100468}
469
Andi Kleencc615032008-03-12 03:53:28 +0100470static unsigned long __meminit
Yinghai Lub50efd22008-07-08 01:41:05 -0700471phys_pmd_update(pud_t *pud, unsigned long address, unsigned long end,
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700472 unsigned long page_size_mask, pgprot_t prot)
Matt Tolentino44df75e2006-01-17 07:03:41 +0100473{
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100474 pmd_t *pmd = pmd_offset(pud, 0);
Andi Kleencc615032008-03-12 03:53:28 +0100475 unsigned long last_map_addr;
476
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700477 last_map_addr = phys_pmd_init(pmd, address, end, page_size_mask, prot);
Keith Mannthey6ad91652006-09-26 10:52:36 +0200478 __flush_tlb_all();
Andi Kleencc615032008-03-12 03:53:28 +0100479 return last_map_addr;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100480}
481
Andi Kleencc615032008-03-12 03:53:28 +0100482static unsigned long __meminit
Yinghai Lub50efd22008-07-08 01:41:05 -0700483phys_pud_init(pud_t *pud_page, unsigned long addr, unsigned long end,
484 unsigned long page_size_mask)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100485{
Andi Kleence0c0e52008-05-02 11:46:49 +0200486 unsigned long pages = 0;
Andi Kleencc615032008-03-12 03:53:28 +0100487 unsigned long last_map_addr = end;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200488 int i = pud_index(addr);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100489
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100490 for (; i < PTRS_PER_PUD; i++, addr = (addr & PUD_MASK) + PUD_SIZE) {
Keith Mannthey6ad91652006-09-26 10:52:36 +0200491 unsigned long pmd_phys;
492 pud_t *pud = pud_page + pud_index(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 pmd_t *pmd;
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700494 pgprot_t prot = PAGE_KERNEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Keith Mannthey6ad91652006-09-26 10:52:36 +0200496 if (addr >= end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100499 if (!after_bootmem &&
500 !e820_any_mapped(addr, addr+PUD_SIZE, 0)) {
501 set_pud(pud, __pud(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 continue;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100503 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Keith Mannthey6ad91652006-09-26 10:52:36 +0200505 if (pud_val(*pud)) {
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700506 if (!pud_large(*pud)) {
Yinghai Lub50efd22008-07-08 01:41:05 -0700507 last_map_addr = phys_pmd_update(pud, addr, end,
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700508 page_size_mask, prot);
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700509 continue;
510 }
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700511 /*
512 * If we are ok with PG_LEVEL_1G mapping, then we will
513 * use the existing mapping.
514 *
515 * Otherwise, we will split the gbpage mapping but use
516 * the same existing protection bits except for large
517 * page, so that we don't violate Intel's TLB
518 * Application note (317080) which says, while changing
519 * the page sizes, new and old translations should
520 * not differ with respect to page frame and
521 * attributes.
522 */
Yinghai Lu3afa3942008-10-25 22:58:21 -0700523 if (page_size_mask & (1 << PG_LEVEL_1G)) {
524 pages++;
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700525 continue;
Yinghai Lu3afa3942008-10-25 22:58:21 -0700526 }
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700527 prot = pte_pgprot(pte_clrhuge(*(pte_t *)pud));
Andi Kleenef925762008-04-17 17:40:45 +0200528 }
529
Yinghai Lub50efd22008-07-08 01:41:05 -0700530 if (page_size_mask & (1<<PG_LEVEL_1G)) {
Andi Kleence0c0e52008-05-02 11:46:49 +0200531 pages++;
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100532 spin_lock(&init_mm.page_table_lock);
Andi Kleenef925762008-04-17 17:40:45 +0200533 set_pte((pte_t *)pud,
534 pfn_pte(addr >> PAGE_SHIFT, PAGE_KERNEL_LARGE));
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100535 spin_unlock(&init_mm.page_table_lock);
Andi Kleencc615032008-03-12 03:53:28 +0100536 last_map_addr = (addr & PUD_MASK) + PUD_SIZE;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200537 continue;
538 }
539
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200540 pmd = alloc_low_page(&pmd_phys);
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700541 last_map_addr = phys_pmd_init(pmd, addr, end, page_size_mask,
542 prot);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400543 unmap_low_page(pmd);
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100544
545 spin_lock(&init_mm.page_table_lock);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400546 pud_populate(&init_mm, pud, __va(pmd_phys));
Matt Tolentino44df75e2006-01-17 07:03:41 +0100547 spin_unlock(&init_mm.page_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 }
Andi Kleen1a2b4412008-01-30 13:33:54 +0100549 __flush_tlb_all();
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700550
Andi Kleence0c0e52008-05-02 11:46:49 +0200551 update_page_count(PG_LEVEL_1G, pages);
Andi Kleencc615032008-03-12 03:53:28 +0100552
Yinghai Lu1a0db382008-06-24 14:56:20 -0700553 return last_map_addr;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100554}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400556static unsigned long __meminit
Yinghai Lub50efd22008-07-08 01:41:05 -0700557phys_pud_update(pgd_t *pgd, unsigned long addr, unsigned long end,
558 unsigned long page_size_mask)
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400559{
560 pud_t *pud;
561
562 pud = (pud_t *)pgd_page_vaddr(*pgd);
563
Yinghai Lub50efd22008-07-08 01:41:05 -0700564 return phys_pud_init(pud, addr, end, page_size_mask);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400565}
566
Shaohua Li41d840e2009-06-12 12:57:52 +0800567unsigned long __meminit
Pekka Enbergf7650902009-03-05 14:55:05 +0200568kernel_physical_mapping_init(unsigned long start,
569 unsigned long end,
570 unsigned long page_size_mask)
Yinghai Lub50efd22008-07-08 01:41:05 -0700571{
Haicheng Li9b861522010-08-20 17:50:16 +0800572 bool pgd_changed = false;
Yinghai Lub50efd22008-07-08 01:41:05 -0700573 unsigned long next, last_map_addr = end;
Haicheng Li9b861522010-08-20 17:50:16 +0800574 unsigned long addr;
Yinghai Lub50efd22008-07-08 01:41:05 -0700575
576 start = (unsigned long)__va(start);
577 end = (unsigned long)__va(end);
Wu Fengguang1c5f50e2010-09-03 17:04:07 +0800578 addr = start;
Yinghai Lub50efd22008-07-08 01:41:05 -0700579
580 for (; start < end; start = next) {
581 pgd_t *pgd = pgd_offset_k(start);
582 unsigned long pud_phys;
583 pud_t *pud;
584
Jack Steinere22146e2008-07-16 11:11:59 -0500585 next = (start + PGDIR_SIZE) & PGDIR_MASK;
Yinghai Lub50efd22008-07-08 01:41:05 -0700586 if (next > end)
587 next = end;
588
589 if (pgd_val(*pgd)) {
590 last_map_addr = phys_pud_update(pgd, __pa(start),
591 __pa(end), page_size_mask);
592 continue;
593 }
594
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100595 pud = alloc_low_page(&pud_phys);
Yinghai Lub50efd22008-07-08 01:41:05 -0700596 last_map_addr = phys_pud_init(pud, __pa(start), __pa(next),
597 page_size_mask);
598 unmap_low_page(pud);
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100599
600 spin_lock(&init_mm.page_table_lock);
601 pgd_populate(&init_mm, pgd, __va(pud_phys));
602 spin_unlock(&init_mm.page_table_lock);
Haicheng Li9b861522010-08-20 17:50:16 +0800603 pgd_changed = true;
Yinghai Lub50efd22008-07-08 01:41:05 -0700604 }
Haicheng Li9b861522010-08-20 17:50:16 +0800605
606 if (pgd_changed)
607 sync_global_pgds(addr, end);
608
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700609 __flush_tlb_all();
Yinghai Lub50efd22008-07-08 01:41:05 -0700610
611 return last_map_addr;
612}
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700613
Matt Tolentino2b976902005-06-23 00:08:06 -0700614#ifndef CONFIG_NUMA
David Rientjes8ee2deb2009-09-25 15:20:00 -0700615void __init initmem_init(unsigned long start_pfn, unsigned long end_pfn,
616 int acpi, int k8)
Yinghai Lu1f75d7e2008-06-22 02:44:49 -0700617{
Yinghai Lua9ce6bc2010-08-25 13:39:17 -0700618 memblock_x86_register_active_regions(0, start_pfn, end_pfn);
Yinghai Lu1f75d7e2008-06-22 02:44:49 -0700619}
Pekka Enberg3551f882009-05-07 15:35:41 +0300620#endif
Yinghai Lu1f75d7e2008-06-22 02:44:49 -0700621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622void __init paging_init(void)
623{
Mel Gorman6391af12006-10-11 01:20:39 -0700624 unsigned long max_zone_pfns[MAX_NR_ZONES];
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100625
Mel Gorman6391af12006-10-11 01:20:39 -0700626 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
627 max_zone_pfns[ZONE_DMA] = MAX_DMA_PFN;
628 max_zone_pfns[ZONE_DMA32] = MAX_DMA32_PFN;
Yinghai Luc987d122008-06-24 22:14:09 -0700629 max_zone_pfns[ZONE_NORMAL] = max_pfn;
Mel Gorman6391af12006-10-11 01:20:39 -0700630
Pekka Enberg3551f882009-05-07 15:35:41 +0300631 sparse_memory_present_with_active_regions(MAX_NUMNODES);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100632 sparse_init();
Yinghai Lu44b57282009-07-08 09:50:19 -0700633
634 /*
635 * clear the default setting with node 0
636 * note: don't use nodes_clear here, that is really clearing when
637 * numa support is not compiled in, and later node_set_state
638 * will not set it back.
639 */
640 node_clear_state(0, N_NORMAL_MEMORY);
641
Mel Gorman5cb248a2006-09-27 01:49:52 -0700642 free_area_init_nodes(max_zone_pfns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100645/*
Matt Tolentino44df75e2006-01-17 07:03:41 +0100646 * Memory hotplug specific functions
Matt Tolentino44df75e2006-01-17 07:03:41 +0100647 */
Yasunori Gotobc02af92006-06-27 02:53:30 -0700648#ifdef CONFIG_MEMORY_HOTPLUG
649/*
Shaohui Zhengea085412010-02-02 13:44:16 -0800650 * After memory hotplug the variables max_pfn, max_low_pfn and high_memory need
651 * updating.
652 */
653static void update_end_of_memory_vars(u64 start, u64 size)
654{
655 unsigned long end_pfn = PFN_UP(start + size);
656
657 if (end_pfn > max_pfn) {
658 max_pfn = end_pfn;
659 max_low_pfn = end_pfn;
660 high_memory = (void *)__va(max_pfn * PAGE_SIZE - 1) + 1;
661 }
662}
663
664/*
Yasunori Gotobc02af92006-06-27 02:53:30 -0700665 * Memory is added always to NORMAL zone. This means you will never get
666 * additional DMA/DMA32 memory.
667 */
668int arch_add_memory(int nid, u64 start, u64 size)
669{
670 struct pglist_data *pgdat = NODE_DATA(nid);
Christoph Lameter776ed982006-09-25 23:31:09 -0700671 struct zone *zone = pgdat->node_zones + ZONE_NORMAL;
Andi Kleencc615032008-03-12 03:53:28 +0100672 unsigned long last_mapped_pfn, start_pfn = start >> PAGE_SHIFT;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700673 unsigned long nr_pages = size >> PAGE_SHIFT;
674 int ret;
675
Shaohua Li60817c92008-10-27 13:03:18 -0700676 last_mapped_pfn = init_memory_mapping(start, start + size);
Andi Kleencc615032008-03-12 03:53:28 +0100677 if (last_mapped_pfn > max_pfn_mapped)
678 max_pfn_mapped = last_mapped_pfn;
Keith Mannthey45e0b782006-09-30 23:27:09 -0700679
Gary Hadec04fc582009-01-06 14:39:14 -0800680 ret = __add_pages(nid, zone, start_pfn, nr_pages);
Gary Hadefe8b8682008-10-28 16:43:14 -0700681 WARN_ON_ONCE(ret);
Yasunori Gotobc02af92006-06-27 02:53:30 -0700682
Shaohui Zhengea085412010-02-02 13:44:16 -0800683 /* update max_pfn, max_low_pfn and high_memory */
684 update_end_of_memory_vars(start, size);
685
Yasunori Gotobc02af92006-06-27 02:53:30 -0700686 return ret;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700687}
688EXPORT_SYMBOL_GPL(arch_add_memory);
689
Yasunori Goto82432292006-11-18 22:19:40 -0800690#if !defined(CONFIG_ACPI_NUMA) && defined(CONFIG_NUMA)
Keith Mannthey4942e992006-09-30 23:27:06 -0700691int memory_add_physaddr_to_nid(u64 start)
692{
693 return 0;
694}
Keith Mannthey8c2676a2006-09-30 23:27:07 -0700695EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
Keith Mannthey4942e992006-09-30 23:27:06 -0700696#endif
697
Keith Mannthey45e0b782006-09-30 23:27:09 -0700698#endif /* CONFIG_MEMORY_HOTPLUG */
699
KAMEZAWA Hiroyuki81ac3ad2009-09-22 16:45:49 -0700700static struct kcore_list kcore_vsyscall;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
702void __init mem_init(void)
703{
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200704 long codesize, reservedpages, datasize, initsize;
Yinghai Lu11a6b0c2008-10-14 18:59:18 -0700705 unsigned long absent_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Jon Mason0dc243a2006-06-26 13:58:11 +0200707 pci_iommu_alloc();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Yinghai Lu48ddb152008-01-30 13:32:36 +0100709 /* clear_bss() already clear the empty_zero_page */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
711 reservedpages = 0;
712
713 /* this will put all low memory onto the freelists */
Matt Tolentino2b976902005-06-23 00:08:06 -0700714#ifdef CONFIG_NUMA
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200715 totalram_pages = numa_free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716#else
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200717 totalram_pages = free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718#endif
Yinghai Lu11a6b0c2008-10-14 18:59:18 -0700719
720 absent_pages = absent_pages_in_range(0, max_pfn);
721 reservedpages = max_pfn - totalram_pages - absent_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 after_bootmem = 1;
723
724 codesize = (unsigned long) &_etext - (unsigned long) &_text;
725 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
726 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
727
728 /* Register memory areas for /proc/kcore */
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100729 kclist_add(&kcore_vsyscall, (void *)VSYSCALL_START,
KAMEZAWA Hiroyukic30bb2a2009-09-22 16:45:43 -0700730 VSYSCALL_END - VSYSCALL_START, KCORE_OTHER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100732 printk(KERN_INFO "Memory: %luk/%luk available (%ldk kernel code, "
Yinghai Lu11a6b0c2008-10-14 18:59:18 -0700733 "%ldk absent, %ldk reserved, %ldk data, %ldk init)\n",
Geert Uytterhoevencc013a82009-09-21 17:02:36 -0700734 nr_free_pages() << (PAGE_SHIFT-10),
Yinghai Luc987d122008-06-24 22:14:09 -0700735 max_pfn << (PAGE_SHIFT-10),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 codesize >> 10,
Yinghai Lu11a6b0c2008-10-14 18:59:18 -0700737 absent_pages << (PAGE_SHIFT-10),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 reservedpages << (PAGE_SHIFT-10),
739 datasize >> 10,
740 initsize >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741}
742
Arjan van de Ven67df1972006-01-06 00:12:04 -0800743#ifdef CONFIG_DEBUG_RODATA
Arjan van de Venedeed302008-01-30 13:34:08 +0100744const int rodata_test_data = 0xC3;
745EXPORT_SYMBOL_GPL(rodata_test_data);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800746
Suresh Siddha502f6602009-10-28 18:46:56 -0800747int kernel_set_to_readonly;
Steven Rostedt16239632009-02-17 17:57:30 -0500748
749void set_kernel_text_rw(void)
750{
Suresh Siddhab9af7c02009-10-14 14:46:55 -0700751 unsigned long start = PFN_ALIGN(_text);
Suresh Siddhae7d23dd2009-10-28 18:46:58 -0800752 unsigned long end = PFN_ALIGN(__stop___ex_table);
Steven Rostedt16239632009-02-17 17:57:30 -0500753
754 if (!kernel_set_to_readonly)
755 return;
756
757 pr_debug("Set kernel text: %lx - %lx for read write\n",
758 start, end);
759
Suresh Siddhae7d23dd2009-10-28 18:46:58 -0800760 /*
761 * Make the kernel identity mapping for text RW. Kernel text
762 * mapping will always be RO. Refer to the comment in
763 * static_protections() in pageattr.c
764 */
Steven Rostedt16239632009-02-17 17:57:30 -0500765 set_memory_rw(start, (end - start) >> PAGE_SHIFT);
766}
767
768void set_kernel_text_ro(void)
769{
Suresh Siddhab9af7c02009-10-14 14:46:55 -0700770 unsigned long start = PFN_ALIGN(_text);
Suresh Siddhae7d23dd2009-10-28 18:46:58 -0800771 unsigned long end = PFN_ALIGN(__stop___ex_table);
Steven Rostedt16239632009-02-17 17:57:30 -0500772
773 if (!kernel_set_to_readonly)
774 return;
775
776 pr_debug("Set kernel text: %lx - %lx for read only\n",
777 start, end);
778
Suresh Siddhae7d23dd2009-10-28 18:46:58 -0800779 /*
780 * Set the kernel identity mapping for text RO.
781 */
Steven Rostedt16239632009-02-17 17:57:30 -0500782 set_memory_ro(start, (end - start) >> PAGE_SHIFT);
783}
784
Arjan van de Ven67df1972006-01-06 00:12:04 -0800785void mark_rodata_ro(void)
786{
Suresh Siddha74e08172009-10-14 14:46:56 -0700787 unsigned long start = PFN_ALIGN(_text);
Steven Rostedt8f0f9962008-05-12 21:20:56 +0200788 unsigned long rodata_start =
789 ((unsigned long)__start_rodata + PAGE_SIZE - 1) & PAGE_MASK;
Suresh Siddha74e08172009-10-14 14:46:56 -0700790 unsigned long end = (unsigned long) &__end_rodata_hpage_align;
791 unsigned long text_end = PAGE_ALIGN((unsigned long) &__stop___ex_table);
792 unsigned long rodata_end = PAGE_ALIGN((unsigned long) &__end_rodata);
793 unsigned long data_start = (unsigned long) &_sdata;
Steven Rostedt8f0f9962008-05-12 21:20:56 +0200794
Jan Beulich6fb14752007-05-02 19:27:10 +0200795 printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700796 (end - start) >> 10);
Arjan van de Ven984bb802008-02-06 22:39:45 +0100797 set_memory_ro(start, (end - start) >> PAGE_SHIFT);
798
Steven Rostedt16239632009-02-17 17:57:30 -0500799 kernel_set_to_readonly = 1;
800
Arjan van de Ven984bb802008-02-06 22:39:45 +0100801 /*
802 * The rodata section (but not the kernel text!) should also be
803 * not-executable.
804 */
Pekka Paalanen72b59d672008-05-12 21:21:01 +0200805 set_memory_nx(rodata_start, (end - rodata_start) >> PAGE_SHIFT);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800806
Arjan van de Ven1a487252008-01-30 13:34:09 +0100807 rodata_test();
808
Andi Kleen0c42f392008-01-30 13:33:42 +0100809#ifdef CONFIG_CPA_DEBUG
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100810 printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, end);
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100811 set_memory_rw(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +0100812
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100813 printk(KERN_INFO "Testing CPA: again\n");
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100814 set_memory_ro(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +0100815#endif
Suresh Siddha74e08172009-10-14 14:46:56 -0700816
817 free_init_pages("unused kernel memory",
818 (unsigned long) page_address(virt_to_page(text_end)),
819 (unsigned long)
820 page_address(virt_to_page(rodata_start)));
821 free_init_pages("unused kernel memory",
822 (unsigned long) page_address(virt_to_page(rodata_end)),
823 (unsigned long) page_address(virt_to_page(data_start)));
Arjan van de Ven67df1972006-01-06 00:12:04 -0800824}
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -0500825
Arjan van de Ven67df1972006-01-06 00:12:04 -0800826#endif
827
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100828int kern_addr_valid(unsigned long addr)
829{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 unsigned long above = ((long)addr) >> __VIRTUAL_MASK_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100831 pgd_t *pgd;
832 pud_t *pud;
833 pmd_t *pmd;
834 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
836 if (above != 0 && above != -1UL)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100837 return 0;
838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 pgd = pgd_offset_k(addr);
840 if (pgd_none(*pgd))
841 return 0;
842
843 pud = pud_offset(pgd, addr);
844 if (pud_none(*pud))
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100845 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
847 pmd = pmd_offset(pud, addr);
848 if (pmd_none(*pmd))
849 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100850
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 if (pmd_large(*pmd))
852 return pfn_valid(pmd_pfn(*pmd));
853
854 pte = pte_offset_kernel(pmd, addr);
855 if (pte_none(*pte))
856 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100857
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 return pfn_valid(pte_pfn(*pte));
859}
860
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100861/*
862 * A pseudo VMA to allow ptrace access for the vsyscall page. This only
863 * covers the 64bit vsyscall page now. 32bit has a real VMA now and does
864 * not need special handling anymore:
865 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866static struct vm_area_struct gate_vma = {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100867 .vm_start = VSYSCALL_START,
868 .vm_end = VSYSCALL_START + (VSYSCALL_MAPPED_PAGES * PAGE_SIZE),
869 .vm_page_prot = PAGE_READONLY_EXEC,
870 .vm_flags = VM_READ | VM_EXEC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871};
872
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873struct vm_area_struct *get_gate_vma(struct task_struct *tsk)
874{
875#ifdef CONFIG_IA32_EMULATION
Andi Kleen1e014412005-04-16 15:24:55 -0700876 if (test_tsk_thread_flag(tsk, TIF_IA32))
877 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878#endif
879 return &gate_vma;
880}
881
882int in_gate_area(struct task_struct *task, unsigned long addr)
883{
884 struct vm_area_struct *vma = get_gate_vma(task);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100885
Andi Kleen1e014412005-04-16 15:24:55 -0700886 if (!vma)
887 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 return (addr >= vma->vm_start) && (addr < vma->vm_end);
890}
891
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100892/*
893 * Use this when you have no reliable task/vma, typically from interrupt
894 * context. It is less reliable than using the task's vma and may give
895 * false positives:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 */
897int in_gate_area_no_task(unsigned long addr)
898{
Andi Kleen1e014412005-04-16 15:24:55 -0700899 return (addr >= VSYSCALL_START) && (addr < VSYSCALL_END);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900}
Zou Nan hai2e1c49d2007-06-01 00:46:28 -0700901
Andi Kleen2aae9502007-07-21 17:10:01 +0200902const char *arch_vma_name(struct vm_area_struct *vma)
903{
904 if (vma->vm_mm && vma->vm_start == (long)vma->vm_mm->context.vdso)
905 return "[vdso]";
906 if (vma == &gate_vma)
907 return "[vsyscall]";
908 return NULL;
909}
Christoph Lameter0889eba2007-10-16 01:24:15 -0700910
911#ifdef CONFIG_SPARSEMEM_VMEMMAP
912/*
913 * Initialise the sparsemem vmemmap using huge-pages at the PMD level.
914 */
Yinghai Luc2b91e22008-04-12 01:19:24 -0700915static long __meminitdata addr_start, addr_end;
916static void __meminitdata *p_start, *p_end;
917static int __meminitdata node_start;
918
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100919int __meminit
920vmemmap_populate(struct page *start_page, unsigned long size, int node)
Christoph Lameter0889eba2007-10-16 01:24:15 -0700921{
922 unsigned long addr = (unsigned long)start_page;
923 unsigned long end = (unsigned long)(start_page + size);
924 unsigned long next;
925 pgd_t *pgd;
926 pud_t *pud;
927 pmd_t *pmd;
928
929 for (; addr < end; addr = next) {
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -0400930 void *p = NULL;
Christoph Lameter0889eba2007-10-16 01:24:15 -0700931
932 pgd = vmemmap_pgd_populate(addr, node);
933 if (!pgd)
934 return -ENOMEM;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100935
Christoph Lameter0889eba2007-10-16 01:24:15 -0700936 pud = vmemmap_pud_populate(pgd, addr, node);
937 if (!pud)
938 return -ENOMEM;
939
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -0400940 if (!cpu_has_pse) {
941 next = (addr + PAGE_SIZE) & PAGE_MASK;
942 pmd = vmemmap_pmd_populate(pud, addr, node);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100943
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -0400944 if (!pmd)
945 return -ENOMEM;
946
947 p = vmemmap_pte_populate(pmd, addr, node);
948
Christoph Lameter0889eba2007-10-16 01:24:15 -0700949 if (!p)
950 return -ENOMEM;
951
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -0400952 addr_end = addr + PAGE_SIZE;
953 p_end = p + PAGE_SIZE;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100954 } else {
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -0400955 next = pmd_addr_end(addr, end);
956
957 pmd = pmd_offset(pud, addr);
958 if (pmd_none(*pmd)) {
959 pte_t entry;
960
Yinghai Lu9bdac912010-02-10 01:20:22 -0800961 p = vmemmap_alloc_block_buf(PMD_SIZE, node);
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -0400962 if (!p)
963 return -ENOMEM;
964
965 entry = pfn_pte(__pa(p) >> PAGE_SHIFT,
966 PAGE_KERNEL_LARGE);
967 set_pmd(pmd, __pmd(pte_val(entry)));
968
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -0400969 /* check to see if we have contiguous blocks */
970 if (p_end != p || node_start != node) {
971 if (p_start)
972 printk(KERN_DEBUG " [%lx-%lx] PMD -> [%p-%p] on node %d\n",
973 addr_start, addr_end-1, p_start, p_end-1, node_start);
974 addr_start = addr;
975 node_start = node;
976 p_start = p;
977 }
Yinghai Lu49c980d2008-07-03 12:29:34 -0700978
979 addr_end = addr + PMD_SIZE;
980 p_end = p + PMD_SIZE;
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -0400981 } else
982 vmemmap_verify((pte_t *)pmd, node, addr, next);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100983 }
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -0400984
Christoph Lameter0889eba2007-10-16 01:24:15 -0700985 }
Haicheng Li9b861522010-08-20 17:50:16 +0800986 sync_global_pgds((unsigned long)start_page, end);
Christoph Lameter0889eba2007-10-16 01:24:15 -0700987 return 0;
988}
Yinghai Luc2b91e22008-04-12 01:19:24 -0700989
990void __meminit vmemmap_populate_print_last(void)
991{
992 if (p_start) {
993 printk(KERN_DEBUG " [%lx-%lx] PMD -> [%p-%p] on node %d\n",
994 addr_start, addr_end-1, p_start, p_end-1, node_start);
995 p_start = NULL;
996 p_end = NULL;
997 node_start = 0;
998 }
999}
Christoph Lameter0889eba2007-10-16 01:24:15 -07001000#endif