blob: ee41bba315d1897a5d30602a830d944f94f42fc7 [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
5 * Copyright (C) 2000 Pavel Machek <pavel@suse.cz>
6 * 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>
24#include <linux/proc_fs.h>
Andi Kleen59170892005-11-05 17:25:53 +010025#include <linux/pci.h>
Jan Beulich6fb14752007-05-02 19:27:10 +020026#include <linux/pfn.h>
Randy Dunlapc9cf5522006-06-27 02:53:52 -070027#include <linux/poison.h>
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +010028#include <linux/dma-mapping.h>
Matt Tolentino44df75e2006-01-17 07:03:41 +010029#include <linux/module.h>
30#include <linux/memory_hotplug.h>
Konrad Rzeszutekae32b122007-05-02 19:27:11 +020031#include <linux/nmi.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34#include <asm/processor.h>
Ingo Molnar46eaa672008-10-12 15:06:29 +020035#include <asm/bios_ebda.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <asm/system.h>
37#include <asm/uaccess.h>
38#include <asm/pgtable.h>
39#include <asm/pgalloc.h>
40#include <asm/dma.h>
41#include <asm/fixmap.h>
42#include <asm/e820.h>
43#include <asm/apic.h>
44#include <asm/tlb.h>
45#include <asm/mmu_context.h>
46#include <asm/proto.h>
47#include <asm/smp.h>
Andi Kleen2bc04142005-11-05 17:25:53 +010048#include <asm/sections.h>
Thomas Gleixner718fc132008-01-30 13:30:17 +010049#include <asm/kdebug.h>
Thomas Gleixneraaa64e02008-01-30 13:30:17 +010050#include <asm/numa.h>
Harvey Harrison7bfeab92008-02-12 12:12:01 -080051#include <asm/cacheflush.h>
Pekka Enberg4fcb2082009-03-05 14:55:08 +020052#include <asm/init.h>
Shaohui Zhengea085412010-02-02 13:44:16 -080053#include <linux/bootmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Andi Kleene18c6872005-11-05 17:25:53 +010055static unsigned long dma_reserve __initdata;
56
Ingo Molnar00d1c5e2008-04-17 17:40:45 +020057static int __init parse_direct_gbpages_off(char *arg)
58{
59 direct_gbpages = 0;
60 return 0;
61}
62early_param("nogbpages", parse_direct_gbpages_off);
63
64static int __init parse_direct_gbpages_on(char *arg)
65{
66 direct_gbpages = 1;
67 return 0;
68}
69early_param("gbpages", parse_direct_gbpages_on);
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071/*
72 * NOTE: pagetable_init alloc all the fixmap pagetables contiguous on the
73 * physical space so we can cache the place of the first one and move
74 * around without checking the pgd every time.
75 */
76
Jeremy Fitzhardingebe43d722008-09-07 15:21:13 -070077pteval_t __supported_pte_mask __read_mostly = ~_PAGE_IOMAP;
Yinghai Lubd220a22008-09-05 00:58:28 -070078EXPORT_SYMBOL_GPL(__supported_pte_mask);
79
Yinghai Lubd220a22008-09-05 00:58:28 -070080int force_personality32;
81
Ingo Molnardeed05b2008-09-05 10:23:26 +020082/*
83 * noexec32=on|off
84 * Control non executable heap for 32bit processes.
85 * To control the stack too use noexec=off
86 *
87 * on PROT_READ does not imply PROT_EXEC for 32-bit processes (default)
88 * off PROT_READ implies PROT_EXEC
89 */
Yinghai Lubd220a22008-09-05 00:58:28 -070090static int __init nonx32_setup(char *str)
91{
92 if (!strcmp(str, "on"))
93 force_personality32 &= ~READ_IMPLIES_EXEC;
94 else if (!strcmp(str, "off"))
95 force_personality32 |= READ_IMPLIES_EXEC;
96 return 1;
97}
98__setup("noexec32=", nonx32_setup);
99
Marcin Slusarz8d6ea9672008-08-15 18:32:24 +0200100/*
101 * NOTE: This function is marked __ref because it calls __init function
102 * (alloc_bootmem_pages). It's safe to do it ONLY when after_bootmem == 0.
103 */
104static __ref void *spp_getpage(void)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100105{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 void *ptr;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 if (after_bootmem)
Vegard Nossum9e730232009-02-22 11:28:25 +0100109 ptr = (void *) get_zeroed_page(GFP_ATOMIC | __GFP_NOTRACK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 else
111 ptr = alloc_bootmem_pages(PAGE_SIZE);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100112
113 if (!ptr || ((unsigned long)ptr & ~PAGE_MASK)) {
114 panic("set_pte_phys: cannot allocate page data %s\n",
115 after_bootmem ? "after bootmem" : "");
116 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100118 pr_debug("spp_getpage %p\n", ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100120 return ptr;
121}
122
Jeremy Fitzhardingef254f392009-03-03 12:02:57 -0800123static pud_t *fill_pud(pgd_t *pgd, unsigned long vaddr)
Tejun Heo458a3e62009-02-24 11:57:21 +0900124{
125 if (pgd_none(*pgd)) {
126 pud_t *pud = (pud_t *)spp_getpage();
127 pgd_populate(&init_mm, pgd, pud);
128 if (pud != pud_offset(pgd, 0))
129 printk(KERN_ERR "PAGETABLE BUG #00! %p <-> %p\n",
130 pud, pud_offset(pgd, 0));
131 }
132 return pud_offset(pgd, vaddr);
133}
134
Jeremy Fitzhardingef254f392009-03-03 12:02:57 -0800135static pmd_t *fill_pmd(pud_t *pud, unsigned long vaddr)
Tejun Heo458a3e62009-02-24 11:57:21 +0900136{
137 if (pud_none(*pud)) {
138 pmd_t *pmd = (pmd_t *) spp_getpage();
139 pud_populate(&init_mm, pud, pmd);
140 if (pmd != pmd_offset(pud, 0))
141 printk(KERN_ERR "PAGETABLE BUG #01! %p <-> %p\n",
142 pmd, pmd_offset(pud, 0));
143 }
144 return pmd_offset(pud, vaddr);
145}
146
Jeremy Fitzhardingef254f392009-03-03 12:02:57 -0800147static pte_t *fill_pte(pmd_t *pmd, unsigned long vaddr)
Tejun Heo458a3e62009-02-24 11:57:21 +0900148{
149 if (pmd_none(*pmd)) {
150 pte_t *pte = (pte_t *) spp_getpage();
151 pmd_populate_kernel(&init_mm, pmd, pte);
152 if (pte != pte_offset_kernel(pmd, 0))
153 printk(KERN_ERR "PAGETABLE BUG #02!\n");
154 }
155 return pte_offset_kernel(pmd, vaddr);
156}
157
158void set_pte_vaddr_pud(pud_t *pud_page, unsigned long vaddr, pte_t new_pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 pud_t *pud;
161 pmd_t *pmd;
Jeremy Fitzhardinged494a962008-06-17 11:41:59 -0700162 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Eduardo Habkost0814e0b2008-06-25 00:19:22 -0400164 pud = pud_page + pud_index(vaddr);
Tejun Heo458a3e62009-02-24 11:57:21 +0900165 pmd = fill_pmd(pud, vaddr);
166 pte = fill_pte(pmd, vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 set_pte(pte, new_pte);
169
170 /*
171 * It's enough to flush this one mapping.
172 * (PGE mappings get flushed as well)
173 */
174 __flush_tlb_one(vaddr);
175}
176
Tejun Heo458a3e62009-02-24 11:57:21 +0900177void set_pte_vaddr(unsigned long vaddr, pte_t pteval)
Eduardo Habkost0814e0b2008-06-25 00:19:22 -0400178{
179 pgd_t *pgd;
180 pud_t *pud_page;
181
182 pr_debug("set_pte_vaddr %lx to %lx\n", vaddr, native_pte_val(pteval));
183
184 pgd = pgd_offset_k(vaddr);
185 if (pgd_none(*pgd)) {
186 printk(KERN_ERR
187 "PGD FIXMAP MISSING, it should be setup in head.S!\n");
188 return;
189 }
190 pud_page = (pud_t*)pgd_page_vaddr(*pgd);
191 set_pte_vaddr_pud(pud_page, vaddr, pteval);
192}
193
Tejun Heo458a3e62009-02-24 11:57:21 +0900194pmd_t * __init populate_extra_pmd(unsigned long vaddr)
Tejun Heo11124412009-02-20 16:29:09 +0900195{
196 pgd_t *pgd;
197 pud_t *pud;
198
199 pgd = pgd_offset_k(vaddr);
Tejun Heo458a3e62009-02-24 11:57:21 +0900200 pud = fill_pud(pgd, vaddr);
201 return fill_pmd(pud, vaddr);
202}
Tejun Heo11124412009-02-20 16:29:09 +0900203
Tejun Heo458a3e62009-02-24 11:57:21 +0900204pte_t * __init populate_extra_pte(unsigned long vaddr)
205{
206 pmd_t *pmd;
207
208 pmd = populate_extra_pmd(vaddr);
209 return fill_pte(pmd, vaddr);
Tejun Heo11124412009-02-20 16:29:09 +0900210}
211
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100212/*
Jack Steiner3a9e1892008-07-01 14:45:32 -0500213 * Create large page table mappings for a range of physical addresses.
214 */
215static void __init __init_extra_mapping(unsigned long phys, unsigned long size,
216 pgprot_t prot)
217{
218 pgd_t *pgd;
219 pud_t *pud;
220 pmd_t *pmd;
221
222 BUG_ON((phys & ~PMD_MASK) || (size & ~PMD_MASK));
223 for (; size; phys += PMD_SIZE, size -= PMD_SIZE) {
224 pgd = pgd_offset_k((unsigned long)__va(phys));
225 if (pgd_none(*pgd)) {
226 pud = (pud_t *) spp_getpage();
227 set_pgd(pgd, __pgd(__pa(pud) | _KERNPG_TABLE |
228 _PAGE_USER));
229 }
230 pud = pud_offset(pgd, (unsigned long)__va(phys));
231 if (pud_none(*pud)) {
232 pmd = (pmd_t *) spp_getpage();
233 set_pud(pud, __pud(__pa(pmd) | _KERNPG_TABLE |
234 _PAGE_USER));
235 }
236 pmd = pmd_offset(pud, phys);
237 BUG_ON(!pmd_none(*pmd));
238 set_pmd(pmd, __pmd(phys | pgprot_val(prot)));
239 }
240}
241
242void __init init_extra_mapping_wb(unsigned long phys, unsigned long size)
243{
244 __init_extra_mapping(phys, size, PAGE_KERNEL_LARGE);
245}
246
247void __init init_extra_mapping_uc(unsigned long phys, unsigned long size)
248{
249 __init_extra_mapping(phys, size, PAGE_KERNEL_LARGE_NOCACHE);
250}
251
252/*
Ingo Molnar88f3aec2008-02-21 11:04:11 +0100253 * The head.S code sets up the kernel high mapping:
254 *
255 * from __START_KERNEL_map to __START_KERNEL_map + size (== _end-_text)
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100256 *
257 * phys_addr holds the negative offset to the kernel, which is added
258 * to the compile time generated pmds. This results in invalid pmds up
259 * to the point where we hit the physaddr 0 mapping.
260 *
261 * We limit the mappings to the region from _text to _end. _end is
262 * rounded up to the 2MB boundary. This catches the invalid pmds as
263 * well, as they are located before _text:
264 */
265void __init cleanup_highmap(void)
266{
267 unsigned long vaddr = __START_KERNEL_map;
Joerg Roedeld86bb0d2008-07-25 16:48:57 +0200268 unsigned long end = roundup((unsigned long)_end, PMD_SIZE) - 1;
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100269 pmd_t *pmd = level2_kernel_pgt;
270 pmd_t *last_pmd = pmd + PTRS_PER_PMD;
271
272 for (; pmd < last_pmd; pmd++, vaddr += PMD_SIZE) {
Hugh Dickins2884f112008-05-28 19:36:07 +0100273 if (pmd_none(*pmd))
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100274 continue;
275 if (vaddr < (unsigned long) _text || vaddr > end)
276 set_pmd(pmd, __pmd(0));
277 }
278}
279
Jan Beulich9482ac62008-08-21 14:28:42 +0100280static __ref void *alloc_low_page(unsigned long *phys)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100281{
Pekka Enberg298af9d2009-03-05 14:55:06 +0200282 unsigned long pfn = e820_table_end++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 void *adr;
284
Matt Tolentino44df75e2006-01-17 07:03:41 +0100285 if (after_bootmem) {
Vegard Nossum9e730232009-02-22 11:28:25 +0100286 adr = (void *)get_zeroed_page(GFP_ATOMIC | __GFP_NOTRACK);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100287 *phys = __pa(adr);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100288
Matt Tolentino44df75e2006-01-17 07:03:41 +0100289 return adr;
290 }
291
Pekka Enberg298af9d2009-03-05 14:55:06 +0200292 if (pfn >= e820_table_top)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100293 panic("alloc_low_page: ran out of memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Jeremy Fitzhardinge14941772008-09-07 15:21:15 -0700295 adr = early_memremap(pfn * PAGE_SIZE, PAGE_SIZE);
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200296 memset(adr, 0, PAGE_SIZE);
297 *phys = pfn * PAGE_SIZE;
298 return adr;
299}
300
Jan Beulich9482ac62008-08-21 14:28:42 +0100301static __ref void unmap_low_page(void *adr)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100302{
Matt Tolentino44df75e2006-01-17 07:03:41 +0100303 if (after_bootmem)
304 return;
305
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200306 early_iounmap(adr, PAGE_SIZE);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100307}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700309static unsigned long __meminit
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700310phys_pte_init(pte_t *pte_page, unsigned long addr, unsigned long end,
311 pgprot_t prot)
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400312{
313 unsigned pages = 0;
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700314 unsigned long last_map_addr = end;
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400315 int i;
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700316
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400317 pte_t *pte = pte_page + pte_index(addr);
318
319 for(i = pte_index(addr); i < PTRS_PER_PTE; i++, addr += PAGE_SIZE, pte++) {
320
321 if (addr >= end) {
322 if (!after_bootmem) {
323 for(; i < PTRS_PER_PTE; i++, pte++)
324 set_pte(pte, __pte(0));
325 }
326 break;
327 }
328
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700329 /*
330 * We will re-use the existing mapping.
331 * Xen for example has some special requirements, like mapping
332 * pagetable pages as RO. So assume someone who pre-setup
333 * these mappings are more intelligent.
334 */
Yinghai Lu3afa3942008-10-25 22:58:21 -0700335 if (pte_val(*pte)) {
336 pages++;
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400337 continue;
Yinghai Lu3afa3942008-10-25 22:58:21 -0700338 }
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400339
340 if (0)
341 printk(" pte=%p addr=%lx pte=%016lx\n",
342 pte, addr, pfn_pte(addr >> PAGE_SHIFT, PAGE_KERNEL).pte);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400343 pages++;
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700344 set_pte(pte, pfn_pte(addr >> PAGE_SHIFT, prot));
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400345 last_map_addr = (addr & PAGE_MASK) + PAGE_SIZE;
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400346 }
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700347
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400348 update_page_count(PG_LEVEL_4K, pages);
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700349
350 return last_map_addr;
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400351}
352
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700353static unsigned long __meminit
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700354phys_pte_update(pmd_t *pmd, unsigned long address, unsigned long end,
355 pgprot_t prot)
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400356{
357 pte_t *pte = (pte_t *)pmd_page_vaddr(*pmd);
358
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700359 return phys_pte_init(pte, address, end, prot);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400360}
361
Andi Kleencc615032008-03-12 03:53:28 +0100362static unsigned long __meminit
Yinghai Lub50efd22008-07-08 01:41:05 -0700363phys_pmd_init(pmd_t *pmd_page, unsigned long address, unsigned long end,
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700364 unsigned long page_size_mask, pgprot_t prot)
Matt Tolentino44df75e2006-01-17 07:03:41 +0100365{
Andi Kleence0c0e52008-05-02 11:46:49 +0200366 unsigned long pages = 0;
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700367 unsigned long last_map_addr = end;
Andi Kleence0c0e52008-05-02 11:46:49 +0200368
Keith Mannthey6ad91652006-09-26 10:52:36 +0200369 int i = pmd_index(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Keith Mannthey6ad91652006-09-26 10:52:36 +0200371 for (; i < PTRS_PER_PMD; i++, address += PMD_SIZE) {
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400372 unsigned long pte_phys;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200373 pmd_t *pmd = pmd_page + pmd_index(address);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400374 pte_t *pte;
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700375 pgprot_t new_prot = prot;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100376
Jan Beulich5f51e132006-06-26 13:59:02 +0200377 if (address >= end) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100378 if (!after_bootmem) {
Jan Beulich5f51e132006-06-26 13:59:02 +0200379 for (; i < PTRS_PER_PMD; i++, pmd++)
380 set_pmd(pmd, __pmd(0));
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100381 }
Matt Tolentino44df75e2006-01-17 07:03:41 +0100382 break;
383 }
Keith Mannthey6ad91652006-09-26 10:52:36 +0200384
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400385 if (pmd_val(*pmd)) {
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100386 if (!pmd_large(*pmd)) {
387 spin_lock(&init_mm.page_table_lock);
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700388 last_map_addr = phys_pte_update(pmd, address,
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700389 end, prot);
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100390 spin_unlock(&init_mm.page_table_lock);
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700391 continue;
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100392 }
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700393 /*
394 * If we are ok with PG_LEVEL_2M mapping, then we will
395 * use the existing mapping,
396 *
397 * Otherwise, we will split the large page mapping but
398 * use the same existing protection bits except for
399 * large page, so that we don't violate Intel's TLB
400 * Application note (317080) which says, while changing
401 * the page sizes, new and old translations should
402 * not differ with respect to page frame and
403 * attributes.
404 */
Yinghai Lu3afa3942008-10-25 22:58:21 -0700405 if (page_size_mask & (1 << PG_LEVEL_2M)) {
406 pages++;
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700407 continue;
Yinghai Lu3afa3942008-10-25 22:58:21 -0700408 }
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700409 new_prot = pte_pgprot(pte_clrhuge(*(pte_t *)pmd));
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400410 }
Keith Mannthey6ad91652006-09-26 10:52:36 +0200411
Yinghai Lub50efd22008-07-08 01:41:05 -0700412 if (page_size_mask & (1<<PG_LEVEL_2M)) {
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400413 pages++;
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100414 spin_lock(&init_mm.page_table_lock);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400415 set_pte((pte_t *)pmd,
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700416 pfn_pte(address >> PAGE_SHIFT,
417 __pgprot(pgprot_val(prot) | _PAGE_PSE)));
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100418 spin_unlock(&init_mm.page_table_lock);
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700419 last_map_addr = (address & PMD_MASK) + PMD_SIZE;
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400420 continue;
421 }
422
423 pte = alloc_low_page(&pte_phys);
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700424 last_map_addr = phys_pte_init(pte, address, end, new_prot);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400425 unmap_low_page(pte);
426
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100427 spin_lock(&init_mm.page_table_lock);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400428 pmd_populate_kernel(&init_mm, pmd, __va(pte_phys));
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100429 spin_unlock(&init_mm.page_table_lock);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100430 }
Andi Kleence0c0e52008-05-02 11:46:49 +0200431 update_page_count(PG_LEVEL_2M, pages);
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700432 return last_map_addr;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100433}
434
Andi Kleencc615032008-03-12 03:53:28 +0100435static unsigned long __meminit
Yinghai Lub50efd22008-07-08 01:41:05 -0700436phys_pmd_update(pud_t *pud, unsigned long address, unsigned long end,
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700437 unsigned long page_size_mask, pgprot_t prot)
Matt Tolentino44df75e2006-01-17 07:03:41 +0100438{
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100439 pmd_t *pmd = pmd_offset(pud, 0);
Andi Kleencc615032008-03-12 03:53:28 +0100440 unsigned long last_map_addr;
441
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700442 last_map_addr = phys_pmd_init(pmd, address, end, page_size_mask, prot);
Keith Mannthey6ad91652006-09-26 10:52:36 +0200443 __flush_tlb_all();
Andi Kleencc615032008-03-12 03:53:28 +0100444 return last_map_addr;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100445}
446
Andi Kleencc615032008-03-12 03:53:28 +0100447static unsigned long __meminit
Yinghai Lub50efd22008-07-08 01:41:05 -0700448phys_pud_init(pud_t *pud_page, unsigned long addr, unsigned long end,
449 unsigned long page_size_mask)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100450{
Andi Kleence0c0e52008-05-02 11:46:49 +0200451 unsigned long pages = 0;
Andi Kleencc615032008-03-12 03:53:28 +0100452 unsigned long last_map_addr = end;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200453 int i = pud_index(addr);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100454
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100455 for (; i < PTRS_PER_PUD; i++, addr = (addr & PUD_MASK) + PUD_SIZE) {
Keith Mannthey6ad91652006-09-26 10:52:36 +0200456 unsigned long pmd_phys;
457 pud_t *pud = pud_page + pud_index(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 pmd_t *pmd;
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700459 pgprot_t prot = PAGE_KERNEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Keith Mannthey6ad91652006-09-26 10:52:36 +0200461 if (addr >= end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100464 if (!after_bootmem &&
465 !e820_any_mapped(addr, addr+PUD_SIZE, 0)) {
466 set_pud(pud, __pud(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 continue;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100468 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Keith Mannthey6ad91652006-09-26 10:52:36 +0200470 if (pud_val(*pud)) {
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700471 if (!pud_large(*pud)) {
Yinghai Lub50efd22008-07-08 01:41:05 -0700472 last_map_addr = phys_pmd_update(pud, addr, end,
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700473 page_size_mask, prot);
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700474 continue;
475 }
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700476 /*
477 * If we are ok with PG_LEVEL_1G mapping, then we will
478 * use the existing mapping.
479 *
480 * Otherwise, we will split the gbpage mapping but use
481 * the same existing protection bits except for large
482 * page, so that we don't violate Intel's TLB
483 * Application note (317080) which says, while changing
484 * the page sizes, new and old translations should
485 * not differ with respect to page frame and
486 * attributes.
487 */
Yinghai Lu3afa3942008-10-25 22:58:21 -0700488 if (page_size_mask & (1 << PG_LEVEL_1G)) {
489 pages++;
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700490 continue;
Yinghai Lu3afa3942008-10-25 22:58:21 -0700491 }
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700492 prot = pte_pgprot(pte_clrhuge(*(pte_t *)pud));
Andi Kleenef925762008-04-17 17:40:45 +0200493 }
494
Yinghai Lub50efd22008-07-08 01:41:05 -0700495 if (page_size_mask & (1<<PG_LEVEL_1G)) {
Andi Kleence0c0e52008-05-02 11:46:49 +0200496 pages++;
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100497 spin_lock(&init_mm.page_table_lock);
Andi Kleenef925762008-04-17 17:40:45 +0200498 set_pte((pte_t *)pud,
499 pfn_pte(addr >> PAGE_SHIFT, PAGE_KERNEL_LARGE));
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100500 spin_unlock(&init_mm.page_table_lock);
Andi Kleencc615032008-03-12 03:53:28 +0100501 last_map_addr = (addr & PUD_MASK) + PUD_SIZE;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200502 continue;
503 }
504
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200505 pmd = alloc_low_page(&pmd_phys);
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700506 last_map_addr = phys_pmd_init(pmd, addr, end, page_size_mask,
507 prot);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400508 unmap_low_page(pmd);
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100509
510 spin_lock(&init_mm.page_table_lock);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400511 pud_populate(&init_mm, pud, __va(pmd_phys));
Matt Tolentino44df75e2006-01-17 07:03:41 +0100512 spin_unlock(&init_mm.page_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 }
Andi Kleen1a2b4412008-01-30 13:33:54 +0100514 __flush_tlb_all();
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700515
Andi Kleence0c0e52008-05-02 11:46:49 +0200516 update_page_count(PG_LEVEL_1G, pages);
Andi Kleencc615032008-03-12 03:53:28 +0100517
Yinghai Lu1a0db382008-06-24 14:56:20 -0700518 return last_map_addr;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100519}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400521static unsigned long __meminit
Yinghai Lub50efd22008-07-08 01:41:05 -0700522phys_pud_update(pgd_t *pgd, unsigned long addr, unsigned long end,
523 unsigned long page_size_mask)
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400524{
525 pud_t *pud;
526
527 pud = (pud_t *)pgd_page_vaddr(*pgd);
528
Yinghai Lub50efd22008-07-08 01:41:05 -0700529 return phys_pud_init(pud, addr, end, page_size_mask);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400530}
531
Shaohua Li41d840e2009-06-12 12:57:52 +0800532unsigned long __meminit
Pekka Enbergf7650902009-03-05 14:55:05 +0200533kernel_physical_mapping_init(unsigned long start,
534 unsigned long end,
535 unsigned long page_size_mask)
Yinghai Lub50efd22008-07-08 01:41:05 -0700536{
537
538 unsigned long next, last_map_addr = end;
539
540 start = (unsigned long)__va(start);
541 end = (unsigned long)__va(end);
542
543 for (; start < end; start = next) {
544 pgd_t *pgd = pgd_offset_k(start);
545 unsigned long pud_phys;
546 pud_t *pud;
547
Jack Steinere22146e2008-07-16 11:11:59 -0500548 next = (start + PGDIR_SIZE) & PGDIR_MASK;
Yinghai Lub50efd22008-07-08 01:41:05 -0700549 if (next > end)
550 next = end;
551
552 if (pgd_val(*pgd)) {
553 last_map_addr = phys_pud_update(pgd, __pa(start),
554 __pa(end), page_size_mask);
555 continue;
556 }
557
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100558 pud = alloc_low_page(&pud_phys);
Yinghai Lub50efd22008-07-08 01:41:05 -0700559 last_map_addr = phys_pud_init(pud, __pa(start), __pa(next),
560 page_size_mask);
561 unmap_low_page(pud);
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100562
563 spin_lock(&init_mm.page_table_lock);
564 pgd_populate(&init_mm, pgd, __va(pud_phys));
565 spin_unlock(&init_mm.page_table_lock);
Yinghai Lub50efd22008-07-08 01:41:05 -0700566 }
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700567 __flush_tlb_all();
Yinghai Lub50efd22008-07-08 01:41:05 -0700568
569 return last_map_addr;
570}
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700571
Matt Tolentino2b976902005-06-23 00:08:06 -0700572#ifndef CONFIG_NUMA
David Rientjes8ee2deb2009-09-25 15:20:00 -0700573void __init initmem_init(unsigned long start_pfn, unsigned long end_pfn,
574 int acpi, int k8)
Yinghai Lu1f75d7e2008-06-22 02:44:49 -0700575{
Yinghai Lu08677212010-02-10 01:20:20 -0800576#ifndef CONFIG_NO_BOOTMEM
Yinghai Lu1f75d7e2008-06-22 02:44:49 -0700577 unsigned long bootmap_size, bootmap;
578
579 bootmap_size = bootmem_bootmap_pages(end_pfn)<<PAGE_SHIFT;
580 bootmap = find_e820_area(0, end_pfn<<PAGE_SHIFT, bootmap_size,
581 PAGE_SIZE);
582 if (bootmap == -1L)
583 panic("Cannot find bootmem map of size %ld\n", bootmap_size);
Yinghai Lu1842f902010-02-10 01:20:15 -0800584 reserve_early(bootmap, bootmap + bootmap_size, "BOOTMAP");
Yinghai Lu346cafe2008-06-23 03:06:14 -0700585 /* don't touch min_low_pfn */
586 bootmap_size = init_bootmem_node(NODE_DATA(0), bootmap >> PAGE_SHIFT,
587 0, end_pfn);
Yinghai Lu1f75d7e2008-06-22 02:44:49 -0700588 e820_register_active_regions(0, start_pfn, end_pfn);
589 free_bootmem_with_active_regions(0, end_pfn);
Yinghai Lu08677212010-02-10 01:20:20 -0800590#else
591 e820_register_active_regions(0, start_pfn, end_pfn);
592#endif
Yinghai Lu1f75d7e2008-06-22 02:44:49 -0700593}
Pekka Enberg3551f882009-05-07 15:35:41 +0300594#endif
Yinghai Lu1f75d7e2008-06-22 02:44:49 -0700595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596void __init paging_init(void)
597{
Mel Gorman6391af12006-10-11 01:20:39 -0700598 unsigned long max_zone_pfns[MAX_NR_ZONES];
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100599
Mel Gorman6391af12006-10-11 01:20:39 -0700600 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
601 max_zone_pfns[ZONE_DMA] = MAX_DMA_PFN;
602 max_zone_pfns[ZONE_DMA32] = MAX_DMA32_PFN;
Yinghai Luc987d122008-06-24 22:14:09 -0700603 max_zone_pfns[ZONE_NORMAL] = max_pfn;
Mel Gorman6391af12006-10-11 01:20:39 -0700604
Pekka Enberg3551f882009-05-07 15:35:41 +0300605 sparse_memory_present_with_active_regions(MAX_NUMNODES);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100606 sparse_init();
Yinghai Lu44b57282009-07-08 09:50:19 -0700607
608 /*
609 * clear the default setting with node 0
610 * note: don't use nodes_clear here, that is really clearing when
611 * numa support is not compiled in, and later node_set_state
612 * will not set it back.
613 */
614 node_clear_state(0, N_NORMAL_MEMORY);
615
Mel Gorman5cb248a2006-09-27 01:49:52 -0700616 free_area_init_nodes(max_zone_pfns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100619/*
Matt Tolentino44df75e2006-01-17 07:03:41 +0100620 * Memory hotplug specific functions
Matt Tolentino44df75e2006-01-17 07:03:41 +0100621 */
Yasunori Gotobc02af92006-06-27 02:53:30 -0700622#ifdef CONFIG_MEMORY_HOTPLUG
623/*
Shaohui Zhengea085412010-02-02 13:44:16 -0800624 * After memory hotplug the variables max_pfn, max_low_pfn and high_memory need
625 * updating.
626 */
627static void update_end_of_memory_vars(u64 start, u64 size)
628{
629 unsigned long end_pfn = PFN_UP(start + size);
630
631 if (end_pfn > max_pfn) {
632 max_pfn = end_pfn;
633 max_low_pfn = end_pfn;
634 high_memory = (void *)__va(max_pfn * PAGE_SIZE - 1) + 1;
635 }
636}
637
638/*
Yasunori Gotobc02af92006-06-27 02:53:30 -0700639 * Memory is added always to NORMAL zone. This means you will never get
640 * additional DMA/DMA32 memory.
641 */
642int arch_add_memory(int nid, u64 start, u64 size)
643{
644 struct pglist_data *pgdat = NODE_DATA(nid);
Christoph Lameter776ed982006-09-25 23:31:09 -0700645 struct zone *zone = pgdat->node_zones + ZONE_NORMAL;
Andi Kleencc615032008-03-12 03:53:28 +0100646 unsigned long last_mapped_pfn, start_pfn = start >> PAGE_SHIFT;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700647 unsigned long nr_pages = size >> PAGE_SHIFT;
648 int ret;
649
Shaohua Li60817c92008-10-27 13:03:18 -0700650 last_mapped_pfn = init_memory_mapping(start, start + size);
Andi Kleencc615032008-03-12 03:53:28 +0100651 if (last_mapped_pfn > max_pfn_mapped)
652 max_pfn_mapped = last_mapped_pfn;
Keith Mannthey45e0b782006-09-30 23:27:09 -0700653
Gary Hadec04fc582009-01-06 14:39:14 -0800654 ret = __add_pages(nid, zone, start_pfn, nr_pages);
Gary Hadefe8b8682008-10-28 16:43:14 -0700655 WARN_ON_ONCE(ret);
Yasunori Gotobc02af92006-06-27 02:53:30 -0700656
Shaohui Zhengea085412010-02-02 13:44:16 -0800657 /* update max_pfn, max_low_pfn and high_memory */
658 update_end_of_memory_vars(start, size);
659
Yasunori Gotobc02af92006-06-27 02:53:30 -0700660 return ret;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700661}
662EXPORT_SYMBOL_GPL(arch_add_memory);
663
Yasunori Goto82432292006-11-18 22:19:40 -0800664#if !defined(CONFIG_ACPI_NUMA) && defined(CONFIG_NUMA)
Keith Mannthey4942e992006-09-30 23:27:06 -0700665int memory_add_physaddr_to_nid(u64 start)
666{
667 return 0;
668}
Keith Mannthey8c2676a2006-09-30 23:27:07 -0700669EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
Keith Mannthey4942e992006-09-30 23:27:06 -0700670#endif
671
Keith Mannthey45e0b782006-09-30 23:27:09 -0700672#endif /* CONFIG_MEMORY_HOTPLUG */
673
KAMEZAWA Hiroyuki81ac3ad2009-09-22 16:45:49 -0700674static struct kcore_list kcore_vsyscall;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
676void __init mem_init(void)
677{
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200678 long codesize, reservedpages, datasize, initsize;
Yinghai Lu11a6b0c2008-10-14 18:59:18 -0700679 unsigned long absent_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Jon Mason0dc243a2006-06-26 13:58:11 +0200681 pci_iommu_alloc();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Yinghai Lu48ddb152008-01-30 13:32:36 +0100683 /* clear_bss() already clear the empty_zero_page */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685 reservedpages = 0;
686
687 /* this will put all low memory onto the freelists */
Matt Tolentino2b976902005-06-23 00:08:06 -0700688#ifdef CONFIG_NUMA
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200689 totalram_pages = numa_free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690#else
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200691 totalram_pages = free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692#endif
Yinghai Lu11a6b0c2008-10-14 18:59:18 -0700693
694 absent_pages = absent_pages_in_range(0, max_pfn);
695 reservedpages = max_pfn - totalram_pages - absent_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 after_bootmem = 1;
697
698 codesize = (unsigned long) &_etext - (unsigned long) &_text;
699 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
700 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
701
702 /* Register memory areas for /proc/kcore */
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100703 kclist_add(&kcore_vsyscall, (void *)VSYSCALL_START,
KAMEZAWA Hiroyukic30bb2a2009-09-22 16:45:43 -0700704 VSYSCALL_END - VSYSCALL_START, KCORE_OTHER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100706 printk(KERN_INFO "Memory: %luk/%luk available (%ldk kernel code, "
Yinghai Lu11a6b0c2008-10-14 18:59:18 -0700707 "%ldk absent, %ldk reserved, %ldk data, %ldk init)\n",
Geert Uytterhoevencc013a82009-09-21 17:02:36 -0700708 nr_free_pages() << (PAGE_SHIFT-10),
Yinghai Luc987d122008-06-24 22:14:09 -0700709 max_pfn << (PAGE_SHIFT-10),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 codesize >> 10,
Yinghai Lu11a6b0c2008-10-14 18:59:18 -0700711 absent_pages << (PAGE_SHIFT-10),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 reservedpages << (PAGE_SHIFT-10),
713 datasize >> 10,
714 initsize >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715}
716
Arjan van de Ven67df1972006-01-06 00:12:04 -0800717#ifdef CONFIG_DEBUG_RODATA
Arjan van de Venedeed302008-01-30 13:34:08 +0100718const int rodata_test_data = 0xC3;
719EXPORT_SYMBOL_GPL(rodata_test_data);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800720
Suresh Siddha502f6602009-10-28 18:46:56 -0800721int kernel_set_to_readonly;
Steven Rostedt16239632009-02-17 17:57:30 -0500722
723void set_kernel_text_rw(void)
724{
Suresh Siddhab9af7c02009-10-14 14:46:55 -0700725 unsigned long start = PFN_ALIGN(_text);
Suresh Siddhae7d23dd2009-10-28 18:46:58 -0800726 unsigned long end = PFN_ALIGN(__stop___ex_table);
Steven Rostedt16239632009-02-17 17:57:30 -0500727
728 if (!kernel_set_to_readonly)
729 return;
730
731 pr_debug("Set kernel text: %lx - %lx for read write\n",
732 start, end);
733
Suresh Siddhae7d23dd2009-10-28 18:46:58 -0800734 /*
735 * Make the kernel identity mapping for text RW. Kernel text
736 * mapping will always be RO. Refer to the comment in
737 * static_protections() in pageattr.c
738 */
Steven Rostedt16239632009-02-17 17:57:30 -0500739 set_memory_rw(start, (end - start) >> PAGE_SHIFT);
740}
741
742void set_kernel_text_ro(void)
743{
Suresh Siddhab9af7c02009-10-14 14:46:55 -0700744 unsigned long start = PFN_ALIGN(_text);
Suresh Siddhae7d23dd2009-10-28 18:46:58 -0800745 unsigned long end = PFN_ALIGN(__stop___ex_table);
Steven Rostedt16239632009-02-17 17:57:30 -0500746
747 if (!kernel_set_to_readonly)
748 return;
749
750 pr_debug("Set kernel text: %lx - %lx for read only\n",
751 start, end);
752
Suresh Siddhae7d23dd2009-10-28 18:46:58 -0800753 /*
754 * Set the kernel identity mapping for text RO.
755 */
Steven Rostedt16239632009-02-17 17:57:30 -0500756 set_memory_ro(start, (end - start) >> PAGE_SHIFT);
757}
758
Arjan van de Ven67df1972006-01-06 00:12:04 -0800759void mark_rodata_ro(void)
760{
Suresh Siddha74e08172009-10-14 14:46:56 -0700761 unsigned long start = PFN_ALIGN(_text);
Steven Rostedt8f0f9962008-05-12 21:20:56 +0200762 unsigned long rodata_start =
763 ((unsigned long)__start_rodata + PAGE_SIZE - 1) & PAGE_MASK;
Suresh Siddha74e08172009-10-14 14:46:56 -0700764 unsigned long end = (unsigned long) &__end_rodata_hpage_align;
765 unsigned long text_end = PAGE_ALIGN((unsigned long) &__stop___ex_table);
766 unsigned long rodata_end = PAGE_ALIGN((unsigned long) &__end_rodata);
767 unsigned long data_start = (unsigned long) &_sdata;
Steven Rostedt8f0f9962008-05-12 21:20:56 +0200768
Jan Beulich6fb14752007-05-02 19:27:10 +0200769 printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700770 (end - start) >> 10);
Arjan van de Ven984bb802008-02-06 22:39:45 +0100771 set_memory_ro(start, (end - start) >> PAGE_SHIFT);
772
Steven Rostedt16239632009-02-17 17:57:30 -0500773 kernel_set_to_readonly = 1;
774
Arjan van de Ven984bb802008-02-06 22:39:45 +0100775 /*
776 * The rodata section (but not the kernel text!) should also be
777 * not-executable.
778 */
Pekka Paalanen72b59d672008-05-12 21:21:01 +0200779 set_memory_nx(rodata_start, (end - rodata_start) >> PAGE_SHIFT);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800780
Arjan van de Ven1a487252008-01-30 13:34:09 +0100781 rodata_test();
782
Andi Kleen0c42f392008-01-30 13:33:42 +0100783#ifdef CONFIG_CPA_DEBUG
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100784 printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, end);
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100785 set_memory_rw(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +0100786
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100787 printk(KERN_INFO "Testing CPA: again\n");
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100788 set_memory_ro(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +0100789#endif
Suresh Siddha74e08172009-10-14 14:46:56 -0700790
791 free_init_pages("unused kernel memory",
792 (unsigned long) page_address(virt_to_page(text_end)),
793 (unsigned long)
794 page_address(virt_to_page(rodata_start)));
795 free_init_pages("unused kernel memory",
796 (unsigned long) page_address(virt_to_page(rodata_end)),
797 (unsigned long) page_address(virt_to_page(data_start)));
Arjan van de Ven67df1972006-01-06 00:12:04 -0800798}
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -0500799
Arjan van de Ven67df1972006-01-06 00:12:04 -0800800#endif
801
Yinghai Lud2dbf342008-06-13 02:00:56 -0700802int __init reserve_bootmem_generic(unsigned long phys, unsigned long len,
803 int flags)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100804{
Matt Tolentino2b976902005-06-23 00:08:06 -0700805#ifdef CONFIG_NUMA
Yinghai Lu8b3cd09e2008-03-18 12:50:21 -0700806 int nid, next_nid;
Yinghai Lu6a07a0e2008-06-23 14:02:36 -0700807 int ret;
Andi Kleen5e58a022006-11-14 16:57:46 +0100808#endif
809 unsigned long pfn = phys >> PAGE_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100810
Yinghai Luc987d122008-06-24 22:14:09 -0700811 if (pfn >= max_pfn) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100812 /*
813 * This can happen with kdump kernels when accessing
814 * firmware tables:
815 */
Thomas Gleixner67794292008-03-21 21:27:10 +0100816 if (pfn < max_pfn_mapped)
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200817 return -EFAULT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100818
Yinghai Lu6a07a0e2008-06-23 14:02:36 -0700819 printk(KERN_ERR "reserve_bootmem: illegal reserve %lx %lu\n",
Andi Kleen5e58a022006-11-14 16:57:46 +0100820 phys, len);
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200821 return -EFAULT;
Andi Kleen5e58a022006-11-14 16:57:46 +0100822 }
823
824 /* Should check here against the e820 map to avoid double free */
825#ifdef CONFIG_NUMA
Yinghai Lu8b3cd09e2008-03-18 12:50:21 -0700826 nid = phys_to_nid(phys);
827 next_nid = phys_to_nid(phys + len - 1);
828 if (nid == next_nid)
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200829 ret = reserve_bootmem_node(NODE_DATA(nid), phys, len, flags);
Yinghai Lu8b3cd09e2008-03-18 12:50:21 -0700830 else
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200831 ret = reserve_bootmem(phys, len, flags);
832
833 if (ret != 0)
834 return ret;
835
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100836#else
Amerigo Wanga6a06f72009-08-21 04:34:45 -0400837 reserve_bootmem(phys, len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838#endif
Yinghai Lu8b3cd09e2008-03-18 12:50:21 -0700839
Mel Gorman0e0b8642006-09-27 01:49:56 -0700840 if (phys+len <= MAX_DMA_PFN*PAGE_SIZE) {
Andi Kleene18c6872005-11-05 17:25:53 +0100841 dma_reserve += len / PAGE_SIZE;
Mel Gorman0e0b8642006-09-27 01:49:56 -0700842 set_dma_reserve(dma_reserve);
843 }
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200844
845 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846}
847
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100848int kern_addr_valid(unsigned long addr)
849{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 unsigned long above = ((long)addr) >> __VIRTUAL_MASK_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100851 pgd_t *pgd;
852 pud_t *pud;
853 pmd_t *pmd;
854 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
856 if (above != 0 && above != -1UL)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100857 return 0;
858
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 pgd = pgd_offset_k(addr);
860 if (pgd_none(*pgd))
861 return 0;
862
863 pud = pud_offset(pgd, addr);
864 if (pud_none(*pud))
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100865 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
867 pmd = pmd_offset(pud, addr);
868 if (pmd_none(*pmd))
869 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100870
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 if (pmd_large(*pmd))
872 return pfn_valid(pmd_pfn(*pmd));
873
874 pte = pte_offset_kernel(pmd, addr);
875 if (pte_none(*pte))
876 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100877
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 return pfn_valid(pte_pfn(*pte));
879}
880
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100881/*
882 * A pseudo VMA to allow ptrace access for the vsyscall page. This only
883 * covers the 64bit vsyscall page now. 32bit has a real VMA now and does
884 * not need special handling anymore:
885 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886static struct vm_area_struct gate_vma = {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100887 .vm_start = VSYSCALL_START,
888 .vm_end = VSYSCALL_START + (VSYSCALL_MAPPED_PAGES * PAGE_SIZE),
889 .vm_page_prot = PAGE_READONLY_EXEC,
890 .vm_flags = VM_READ | VM_EXEC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891};
892
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893struct vm_area_struct *get_gate_vma(struct task_struct *tsk)
894{
895#ifdef CONFIG_IA32_EMULATION
Andi Kleen1e014412005-04-16 15:24:55 -0700896 if (test_tsk_thread_flag(tsk, TIF_IA32))
897 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898#endif
899 return &gate_vma;
900}
901
902int in_gate_area(struct task_struct *task, unsigned long addr)
903{
904 struct vm_area_struct *vma = get_gate_vma(task);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100905
Andi Kleen1e014412005-04-16 15:24:55 -0700906 if (!vma)
907 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100908
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 return (addr >= vma->vm_start) && (addr < vma->vm_end);
910}
911
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100912/*
913 * Use this when you have no reliable task/vma, typically from interrupt
914 * context. It is less reliable than using the task's vma and may give
915 * false positives:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 */
917int in_gate_area_no_task(unsigned long addr)
918{
Andi Kleen1e014412005-04-16 15:24:55 -0700919 return (addr >= VSYSCALL_START) && (addr < VSYSCALL_END);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920}
Zou Nan hai2e1c49d2007-06-01 00:46:28 -0700921
Andi Kleen2aae9502007-07-21 17:10:01 +0200922const char *arch_vma_name(struct vm_area_struct *vma)
923{
924 if (vma->vm_mm && vma->vm_start == (long)vma->vm_mm->context.vdso)
925 return "[vdso]";
926 if (vma == &gate_vma)
927 return "[vsyscall]";
928 return NULL;
929}
Christoph Lameter0889eba2007-10-16 01:24:15 -0700930
931#ifdef CONFIG_SPARSEMEM_VMEMMAP
932/*
933 * Initialise the sparsemem vmemmap using huge-pages at the PMD level.
934 */
Yinghai Luc2b91e22008-04-12 01:19:24 -0700935static long __meminitdata addr_start, addr_end;
936static void __meminitdata *p_start, *p_end;
937static int __meminitdata node_start;
938
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100939int __meminit
940vmemmap_populate(struct page *start_page, unsigned long size, int node)
Christoph Lameter0889eba2007-10-16 01:24:15 -0700941{
942 unsigned long addr = (unsigned long)start_page;
943 unsigned long end = (unsigned long)(start_page + size);
944 unsigned long next;
945 pgd_t *pgd;
946 pud_t *pud;
947 pmd_t *pmd;
948
949 for (; addr < end; addr = next) {
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -0400950 void *p = NULL;
Christoph Lameter0889eba2007-10-16 01:24:15 -0700951
952 pgd = vmemmap_pgd_populate(addr, node);
953 if (!pgd)
954 return -ENOMEM;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100955
Christoph Lameter0889eba2007-10-16 01:24:15 -0700956 pud = vmemmap_pud_populate(pgd, addr, node);
957 if (!pud)
958 return -ENOMEM;
959
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -0400960 if (!cpu_has_pse) {
961 next = (addr + PAGE_SIZE) & PAGE_MASK;
962 pmd = vmemmap_pmd_populate(pud, addr, node);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100963
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -0400964 if (!pmd)
965 return -ENOMEM;
966
967 p = vmemmap_pte_populate(pmd, addr, node);
968
Christoph Lameter0889eba2007-10-16 01:24:15 -0700969 if (!p)
970 return -ENOMEM;
971
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -0400972 addr_end = addr + PAGE_SIZE;
973 p_end = p + PAGE_SIZE;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100974 } else {
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -0400975 next = pmd_addr_end(addr, end);
976
977 pmd = pmd_offset(pud, addr);
978 if (pmd_none(*pmd)) {
979 pte_t entry;
980
Yinghai Lu9bdac912010-02-10 01:20:22 -0800981 p = vmemmap_alloc_block_buf(PMD_SIZE, node);
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -0400982 if (!p)
983 return -ENOMEM;
984
985 entry = pfn_pte(__pa(p) >> PAGE_SHIFT,
986 PAGE_KERNEL_LARGE);
987 set_pmd(pmd, __pmd(pte_val(entry)));
988
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -0400989 /* check to see if we have contiguous blocks */
990 if (p_end != p || node_start != node) {
991 if (p_start)
992 printk(KERN_DEBUG " [%lx-%lx] PMD -> [%p-%p] on node %d\n",
993 addr_start, addr_end-1, p_start, p_end-1, node_start);
994 addr_start = addr;
995 node_start = node;
996 p_start = p;
997 }
Yinghai Lu49c980d2008-07-03 12:29:34 -0700998
999 addr_end = addr + PMD_SIZE;
1000 p_end = p + PMD_SIZE;
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001001 } else
1002 vmemmap_verify((pte_t *)pmd, node, addr, next);
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001003 }
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001004
Christoph Lameter0889eba2007-10-16 01:24:15 -07001005 }
Christoph Lameter0889eba2007-10-16 01:24:15 -07001006 return 0;
1007}
Yinghai Luc2b91e22008-04-12 01:19:24 -07001008
1009void __meminit vmemmap_populate_print_last(void)
1010{
1011 if (p_start) {
1012 printk(KERN_DEBUG " [%lx-%lx] PMD -> [%p-%p] on node %d\n",
1013 addr_start, addr_end-1, p_start, p_end-1, node_start);
1014 p_start = NULL;
1015 p_end = NULL;
1016 node_start = 0;
1017 }
1018}
Christoph Lameter0889eba2007-10-16 01:24:15 -07001019#endif