blob: e9b040e1cde5cb2ee1ad926845e2cc0e4b1f1907 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33#include <asm/processor.h>
Ingo Molnar46eaa672008-10-12 15:06:29 +020034#include <asm/bios_ebda.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/system.h>
36#include <asm/uaccess.h>
37#include <asm/pgtable.h>
38#include <asm/pgalloc.h>
39#include <asm/dma.h>
40#include <asm/fixmap.h>
41#include <asm/e820.h>
42#include <asm/apic.h>
43#include <asm/tlb.h>
44#include <asm/mmu_context.h>
45#include <asm/proto.h>
46#include <asm/smp.h>
Andi Kleen2bc04142005-11-05 17:25:53 +010047#include <asm/sections.h>
Thomas Gleixner718fc132008-01-30 13:30:17 +010048#include <asm/kdebug.h>
Thomas Gleixneraaa64e02008-01-30 13:30:17 +010049#include <asm/numa.h>
Harvey Harrison7bfeab92008-02-12 12:12:01 -080050#include <asm/cacheflush.h>
Pekka Enberg4fcb2082009-03-05 14:55:08 +020051#include <asm/init.h>
Shaohui Zhengea085412010-02-02 13:44:16 -080052#include <linux/bootmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Andi Kleene18c6872005-11-05 17:25:53 +010054static unsigned long dma_reserve __initdata;
55
Ingo Molnar00d1c5e2008-04-17 17:40:45 +020056static int __init parse_direct_gbpages_off(char *arg)
57{
58 direct_gbpages = 0;
59 return 0;
60}
61early_param("nogbpages", parse_direct_gbpages_off);
62
63static int __init parse_direct_gbpages_on(char *arg)
64{
65 direct_gbpages = 1;
66 return 0;
67}
68early_param("gbpages", parse_direct_gbpages_on);
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070/*
71 * NOTE: pagetable_init alloc all the fixmap pagetables contiguous on the
72 * physical space so we can cache the place of the first one and move
73 * around without checking the pgd every time.
74 */
75
Jeremy Fitzhardingebe43d722008-09-07 15:21:13 -070076pteval_t __supported_pte_mask __read_mostly = ~_PAGE_IOMAP;
Yinghai Lubd220a22008-09-05 00:58:28 -070077EXPORT_SYMBOL_GPL(__supported_pte_mask);
78
Yinghai Lubd220a22008-09-05 00:58:28 -070079int force_personality32;
80
Ingo Molnardeed05b2008-09-05 10:23:26 +020081/*
82 * noexec32=on|off
83 * Control non executable heap for 32bit processes.
84 * To control the stack too use noexec=off
85 *
86 * on PROT_READ does not imply PROT_EXEC for 32-bit processes (default)
87 * off PROT_READ implies PROT_EXEC
88 */
Yinghai Lubd220a22008-09-05 00:58:28 -070089static int __init nonx32_setup(char *str)
90{
91 if (!strcmp(str, "on"))
92 force_personality32 &= ~READ_IMPLIES_EXEC;
93 else if (!strcmp(str, "off"))
94 force_personality32 |= READ_IMPLIES_EXEC;
95 return 1;
96}
97__setup("noexec32=", nonx32_setup);
98
Marcin Slusarz8d6ea9672008-08-15 18:32:24 +020099/*
100 * NOTE: This function is marked __ref because it calls __init function
101 * (alloc_bootmem_pages). It's safe to do it ONLY when after_bootmem == 0.
102 */
103static __ref void *spp_getpage(void)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100104{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 void *ptr;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 if (after_bootmem)
Vegard Nossum9e730232009-02-22 11:28:25 +0100108 ptr = (void *) get_zeroed_page(GFP_ATOMIC | __GFP_NOTRACK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 else
110 ptr = alloc_bootmem_pages(PAGE_SIZE);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100111
112 if (!ptr || ((unsigned long)ptr & ~PAGE_MASK)) {
113 panic("set_pte_phys: cannot allocate page data %s\n",
114 after_bootmem ? "after bootmem" : "");
115 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100117 pr_debug("spp_getpage %p\n", ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100119 return ptr;
120}
121
Jeremy Fitzhardingef254f392009-03-03 12:02:57 -0800122static pud_t *fill_pud(pgd_t *pgd, unsigned long vaddr)
Tejun Heo458a3e62009-02-24 11:57:21 +0900123{
124 if (pgd_none(*pgd)) {
125 pud_t *pud = (pud_t *)spp_getpage();
126 pgd_populate(&init_mm, pgd, pud);
127 if (pud != pud_offset(pgd, 0))
128 printk(KERN_ERR "PAGETABLE BUG #00! %p <-> %p\n",
129 pud, pud_offset(pgd, 0));
130 }
131 return pud_offset(pgd, vaddr);
132}
133
Jeremy Fitzhardingef254f392009-03-03 12:02:57 -0800134static pmd_t *fill_pmd(pud_t *pud, unsigned long vaddr)
Tejun Heo458a3e62009-02-24 11:57:21 +0900135{
136 if (pud_none(*pud)) {
137 pmd_t *pmd = (pmd_t *) spp_getpage();
138 pud_populate(&init_mm, pud, pmd);
139 if (pmd != pmd_offset(pud, 0))
140 printk(KERN_ERR "PAGETABLE BUG #01! %p <-> %p\n",
141 pmd, pmd_offset(pud, 0));
142 }
143 return pmd_offset(pud, vaddr);
144}
145
Jeremy Fitzhardingef254f392009-03-03 12:02:57 -0800146static pte_t *fill_pte(pmd_t *pmd, unsigned long vaddr)
Tejun Heo458a3e62009-02-24 11:57:21 +0900147{
148 if (pmd_none(*pmd)) {
149 pte_t *pte = (pte_t *) spp_getpage();
150 pmd_populate_kernel(&init_mm, pmd, pte);
151 if (pte != pte_offset_kernel(pmd, 0))
152 printk(KERN_ERR "PAGETABLE BUG #02!\n");
153 }
154 return pte_offset_kernel(pmd, vaddr);
155}
156
157void set_pte_vaddr_pud(pud_t *pud_page, unsigned long vaddr, pte_t new_pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 pud_t *pud;
160 pmd_t *pmd;
Jeremy Fitzhardinged494a962008-06-17 11:41:59 -0700161 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Eduardo Habkost0814e0b2008-06-25 00:19:22 -0400163 pud = pud_page + pud_index(vaddr);
Tejun Heo458a3e62009-02-24 11:57:21 +0900164 pmd = fill_pmd(pud, vaddr);
165 pte = fill_pte(pmd, vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 set_pte(pte, new_pte);
168
169 /*
170 * It's enough to flush this one mapping.
171 * (PGE mappings get flushed as well)
172 */
173 __flush_tlb_one(vaddr);
174}
175
Tejun Heo458a3e62009-02-24 11:57:21 +0900176void set_pte_vaddr(unsigned long vaddr, pte_t pteval)
Eduardo Habkost0814e0b2008-06-25 00:19:22 -0400177{
178 pgd_t *pgd;
179 pud_t *pud_page;
180
181 pr_debug("set_pte_vaddr %lx to %lx\n", vaddr, native_pte_val(pteval));
182
183 pgd = pgd_offset_k(vaddr);
184 if (pgd_none(*pgd)) {
185 printk(KERN_ERR
186 "PGD FIXMAP MISSING, it should be setup in head.S!\n");
187 return;
188 }
189 pud_page = (pud_t*)pgd_page_vaddr(*pgd);
190 set_pte_vaddr_pud(pud_page, vaddr, pteval);
191}
192
Tejun Heo458a3e62009-02-24 11:57:21 +0900193pmd_t * __init populate_extra_pmd(unsigned long vaddr)
Tejun Heo11124412009-02-20 16:29:09 +0900194{
195 pgd_t *pgd;
196 pud_t *pud;
197
198 pgd = pgd_offset_k(vaddr);
Tejun Heo458a3e62009-02-24 11:57:21 +0900199 pud = fill_pud(pgd, vaddr);
200 return fill_pmd(pud, vaddr);
201}
Tejun Heo11124412009-02-20 16:29:09 +0900202
Tejun Heo458a3e62009-02-24 11:57:21 +0900203pte_t * __init populate_extra_pte(unsigned long vaddr)
204{
205 pmd_t *pmd;
206
207 pmd = populate_extra_pmd(vaddr);
208 return fill_pte(pmd, vaddr);
Tejun Heo11124412009-02-20 16:29:09 +0900209}
210
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100211/*
Jack Steiner3a9e1892008-07-01 14:45:32 -0500212 * Create large page table mappings for a range of physical addresses.
213 */
214static void __init __init_extra_mapping(unsigned long phys, unsigned long size,
215 pgprot_t prot)
216{
217 pgd_t *pgd;
218 pud_t *pud;
219 pmd_t *pmd;
220
221 BUG_ON((phys & ~PMD_MASK) || (size & ~PMD_MASK));
222 for (; size; phys += PMD_SIZE, size -= PMD_SIZE) {
223 pgd = pgd_offset_k((unsigned long)__va(phys));
224 if (pgd_none(*pgd)) {
225 pud = (pud_t *) spp_getpage();
226 set_pgd(pgd, __pgd(__pa(pud) | _KERNPG_TABLE |
227 _PAGE_USER));
228 }
229 pud = pud_offset(pgd, (unsigned long)__va(phys));
230 if (pud_none(*pud)) {
231 pmd = (pmd_t *) spp_getpage();
232 set_pud(pud, __pud(__pa(pmd) | _KERNPG_TABLE |
233 _PAGE_USER));
234 }
235 pmd = pmd_offset(pud, phys);
236 BUG_ON(!pmd_none(*pmd));
237 set_pmd(pmd, __pmd(phys | pgprot_val(prot)));
238 }
239}
240
241void __init init_extra_mapping_wb(unsigned long phys, unsigned long size)
242{
243 __init_extra_mapping(phys, size, PAGE_KERNEL_LARGE);
244}
245
246void __init init_extra_mapping_uc(unsigned long phys, unsigned long size)
247{
248 __init_extra_mapping(phys, size, PAGE_KERNEL_LARGE_NOCACHE);
249}
250
251/*
Ingo Molnar88f3aec2008-02-21 11:04:11 +0100252 * The head.S code sets up the kernel high mapping:
253 *
254 * from __START_KERNEL_map to __START_KERNEL_map + size (== _end-_text)
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100255 *
256 * phys_addr holds the negative offset to the kernel, which is added
257 * to the compile time generated pmds. This results in invalid pmds up
258 * to the point where we hit the physaddr 0 mapping.
259 *
260 * We limit the mappings to the region from _text to _end. _end is
261 * rounded up to the 2MB boundary. This catches the invalid pmds as
262 * well, as they are located before _text:
263 */
264void __init cleanup_highmap(void)
265{
266 unsigned long vaddr = __START_KERNEL_map;
Joerg Roedeld86bb0d2008-07-25 16:48:57 +0200267 unsigned long end = roundup((unsigned long)_end, PMD_SIZE) - 1;
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100268 pmd_t *pmd = level2_kernel_pgt;
269 pmd_t *last_pmd = pmd + PTRS_PER_PMD;
270
271 for (; pmd < last_pmd; pmd++, vaddr += PMD_SIZE) {
Hugh Dickins2884f112008-05-28 19:36:07 +0100272 if (pmd_none(*pmd))
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100273 continue;
274 if (vaddr < (unsigned long) _text || vaddr > end)
275 set_pmd(pmd, __pmd(0));
276 }
277}
278
Jan Beulich9482ac62008-08-21 14:28:42 +0100279static __ref void *alloc_low_page(unsigned long *phys)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100280{
Pekka Enberg298af9d2009-03-05 14:55:06 +0200281 unsigned long pfn = e820_table_end++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 void *adr;
283
Matt Tolentino44df75e2006-01-17 07:03:41 +0100284 if (after_bootmem) {
Vegard Nossum9e730232009-02-22 11:28:25 +0100285 adr = (void *)get_zeroed_page(GFP_ATOMIC | __GFP_NOTRACK);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100286 *phys = __pa(adr);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100287
Matt Tolentino44df75e2006-01-17 07:03:41 +0100288 return adr;
289 }
290
Pekka Enberg298af9d2009-03-05 14:55:06 +0200291 if (pfn >= e820_table_top)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100292 panic("alloc_low_page: ran out of memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Jeremy Fitzhardinge14941772008-09-07 15:21:15 -0700294 adr = early_memremap(pfn * PAGE_SIZE, PAGE_SIZE);
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200295 memset(adr, 0, PAGE_SIZE);
296 *phys = pfn * PAGE_SIZE;
297 return adr;
298}
299
Jan Beulich9482ac62008-08-21 14:28:42 +0100300static __ref void unmap_low_page(void *adr)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100301{
Matt Tolentino44df75e2006-01-17 07:03:41 +0100302 if (after_bootmem)
303 return;
304
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200305 early_iounmap(adr, PAGE_SIZE);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100306}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700308static unsigned long __meminit
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700309phys_pte_init(pte_t *pte_page, unsigned long addr, unsigned long end,
310 pgprot_t prot)
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400311{
312 unsigned pages = 0;
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700313 unsigned long last_map_addr = end;
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400314 int i;
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700315
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400316 pte_t *pte = pte_page + pte_index(addr);
317
318 for(i = pte_index(addr); i < PTRS_PER_PTE; i++, addr += PAGE_SIZE, pte++) {
319
320 if (addr >= end) {
321 if (!after_bootmem) {
322 for(; i < PTRS_PER_PTE; i++, pte++)
323 set_pte(pte, __pte(0));
324 }
325 break;
326 }
327
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700328 /*
329 * We will re-use the existing mapping.
330 * Xen for example has some special requirements, like mapping
331 * pagetable pages as RO. So assume someone who pre-setup
332 * these mappings are more intelligent.
333 */
Yinghai Lu3afa3942008-10-25 22:58:21 -0700334 if (pte_val(*pte)) {
335 pages++;
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400336 continue;
Yinghai Lu3afa3942008-10-25 22:58:21 -0700337 }
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400338
339 if (0)
340 printk(" pte=%p addr=%lx pte=%016lx\n",
341 pte, addr, pfn_pte(addr >> PAGE_SHIFT, PAGE_KERNEL).pte);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400342 pages++;
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700343 set_pte(pte, pfn_pte(addr >> PAGE_SHIFT, prot));
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400344 last_map_addr = (addr & PAGE_MASK) + PAGE_SIZE;
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400345 }
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700346
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400347 update_page_count(PG_LEVEL_4K, pages);
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700348
349 return last_map_addr;
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400350}
351
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700352static unsigned long __meminit
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700353phys_pte_update(pmd_t *pmd, unsigned long address, unsigned long end,
354 pgprot_t prot)
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400355{
356 pte_t *pte = (pte_t *)pmd_page_vaddr(*pmd);
357
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700358 return phys_pte_init(pte, address, end, prot);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400359}
360
Andi Kleencc615032008-03-12 03:53:28 +0100361static unsigned long __meminit
Yinghai Lub50efd22008-07-08 01:41:05 -0700362phys_pmd_init(pmd_t *pmd_page, unsigned long address, unsigned long end,
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700363 unsigned long page_size_mask, pgprot_t prot)
Matt Tolentino44df75e2006-01-17 07:03:41 +0100364{
Andi Kleence0c0e52008-05-02 11:46:49 +0200365 unsigned long pages = 0;
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700366 unsigned long last_map_addr = end;
Andi Kleence0c0e52008-05-02 11:46:49 +0200367
Keith Mannthey6ad91652006-09-26 10:52:36 +0200368 int i = pmd_index(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Keith Mannthey6ad91652006-09-26 10:52:36 +0200370 for (; i < PTRS_PER_PMD; i++, address += PMD_SIZE) {
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400371 unsigned long pte_phys;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200372 pmd_t *pmd = pmd_page + pmd_index(address);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400373 pte_t *pte;
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700374 pgprot_t new_prot = prot;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100375
Jan Beulich5f51e132006-06-26 13:59:02 +0200376 if (address >= end) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100377 if (!after_bootmem) {
Jan Beulich5f51e132006-06-26 13:59:02 +0200378 for (; i < PTRS_PER_PMD; i++, pmd++)
379 set_pmd(pmd, __pmd(0));
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100380 }
Matt Tolentino44df75e2006-01-17 07:03:41 +0100381 break;
382 }
Keith Mannthey6ad91652006-09-26 10:52:36 +0200383
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400384 if (pmd_val(*pmd)) {
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100385 if (!pmd_large(*pmd)) {
386 spin_lock(&init_mm.page_table_lock);
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700387 last_map_addr = phys_pte_update(pmd, address,
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700388 end, prot);
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100389 spin_unlock(&init_mm.page_table_lock);
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700390 continue;
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100391 }
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700392 /*
393 * If we are ok with PG_LEVEL_2M mapping, then we will
394 * use the existing mapping,
395 *
396 * Otherwise, we will split the large page mapping but
397 * use the same existing protection bits except for
398 * large page, so that we don't violate Intel's TLB
399 * Application note (317080) which says, while changing
400 * the page sizes, new and old translations should
401 * not differ with respect to page frame and
402 * attributes.
403 */
Yinghai Lu3afa3942008-10-25 22:58:21 -0700404 if (page_size_mask & (1 << PG_LEVEL_2M)) {
405 pages++;
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700406 continue;
Yinghai Lu3afa3942008-10-25 22:58:21 -0700407 }
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700408 new_prot = pte_pgprot(pte_clrhuge(*(pte_t *)pmd));
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400409 }
Keith Mannthey6ad91652006-09-26 10:52:36 +0200410
Yinghai Lub50efd22008-07-08 01:41:05 -0700411 if (page_size_mask & (1<<PG_LEVEL_2M)) {
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400412 pages++;
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100413 spin_lock(&init_mm.page_table_lock);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400414 set_pte((pte_t *)pmd,
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700415 pfn_pte(address >> PAGE_SHIFT,
416 __pgprot(pgprot_val(prot) | _PAGE_PSE)));
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100417 spin_unlock(&init_mm.page_table_lock);
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700418 last_map_addr = (address & PMD_MASK) + PMD_SIZE;
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400419 continue;
420 }
421
422 pte = alloc_low_page(&pte_phys);
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700423 last_map_addr = phys_pte_init(pte, address, end, new_prot);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400424 unmap_low_page(pte);
425
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100426 spin_lock(&init_mm.page_table_lock);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400427 pmd_populate_kernel(&init_mm, pmd, __va(pte_phys));
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100428 spin_unlock(&init_mm.page_table_lock);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100429 }
Andi Kleence0c0e52008-05-02 11:46:49 +0200430 update_page_count(PG_LEVEL_2M, pages);
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700431 return last_map_addr;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100432}
433
Andi Kleencc615032008-03-12 03:53:28 +0100434static unsigned long __meminit
Yinghai Lub50efd22008-07-08 01:41:05 -0700435phys_pmd_update(pud_t *pud, unsigned long address, unsigned long end,
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700436 unsigned long page_size_mask, pgprot_t prot)
Matt Tolentino44df75e2006-01-17 07:03:41 +0100437{
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100438 pmd_t *pmd = pmd_offset(pud, 0);
Andi Kleencc615032008-03-12 03:53:28 +0100439 unsigned long last_map_addr;
440
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700441 last_map_addr = phys_pmd_init(pmd, address, end, page_size_mask, prot);
Keith Mannthey6ad91652006-09-26 10:52:36 +0200442 __flush_tlb_all();
Andi Kleencc615032008-03-12 03:53:28 +0100443 return last_map_addr;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100444}
445
Andi Kleencc615032008-03-12 03:53:28 +0100446static unsigned long __meminit
Yinghai Lub50efd22008-07-08 01:41:05 -0700447phys_pud_init(pud_t *pud_page, unsigned long addr, unsigned long end,
448 unsigned long page_size_mask)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100449{
Andi Kleence0c0e52008-05-02 11:46:49 +0200450 unsigned long pages = 0;
Andi Kleencc615032008-03-12 03:53:28 +0100451 unsigned long last_map_addr = end;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200452 int i = pud_index(addr);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100453
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100454 for (; i < PTRS_PER_PUD; i++, addr = (addr & PUD_MASK) + PUD_SIZE) {
Keith Mannthey6ad91652006-09-26 10:52:36 +0200455 unsigned long pmd_phys;
456 pud_t *pud = pud_page + pud_index(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 pmd_t *pmd;
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700458 pgprot_t prot = PAGE_KERNEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Keith Mannthey6ad91652006-09-26 10:52:36 +0200460 if (addr >= end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100463 if (!after_bootmem &&
464 !e820_any_mapped(addr, addr+PUD_SIZE, 0)) {
465 set_pud(pud, __pud(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 continue;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100467 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Keith Mannthey6ad91652006-09-26 10:52:36 +0200469 if (pud_val(*pud)) {
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700470 if (!pud_large(*pud)) {
Yinghai Lub50efd22008-07-08 01:41:05 -0700471 last_map_addr = phys_pmd_update(pud, addr, end,
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700472 page_size_mask, prot);
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700473 continue;
474 }
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700475 /*
476 * If we are ok with PG_LEVEL_1G mapping, then we will
477 * use the existing mapping.
478 *
479 * Otherwise, we will split the gbpage mapping but use
480 * the same existing protection bits except for large
481 * page, so that we don't violate Intel's TLB
482 * Application note (317080) which says, while changing
483 * the page sizes, new and old translations should
484 * not differ with respect to page frame and
485 * attributes.
486 */
Yinghai Lu3afa3942008-10-25 22:58:21 -0700487 if (page_size_mask & (1 << PG_LEVEL_1G)) {
488 pages++;
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700489 continue;
Yinghai Lu3afa3942008-10-25 22:58:21 -0700490 }
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700491 prot = pte_pgprot(pte_clrhuge(*(pte_t *)pud));
Andi Kleenef925762008-04-17 17:40:45 +0200492 }
493
Yinghai Lub50efd22008-07-08 01:41:05 -0700494 if (page_size_mask & (1<<PG_LEVEL_1G)) {
Andi Kleence0c0e52008-05-02 11:46:49 +0200495 pages++;
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100496 spin_lock(&init_mm.page_table_lock);
Andi Kleenef925762008-04-17 17:40:45 +0200497 set_pte((pte_t *)pud,
498 pfn_pte(addr >> PAGE_SHIFT, PAGE_KERNEL_LARGE));
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100499 spin_unlock(&init_mm.page_table_lock);
Andi Kleencc615032008-03-12 03:53:28 +0100500 last_map_addr = (addr & PUD_MASK) + PUD_SIZE;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200501 continue;
502 }
503
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200504 pmd = alloc_low_page(&pmd_phys);
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700505 last_map_addr = phys_pmd_init(pmd, addr, end, page_size_mask,
506 prot);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400507 unmap_low_page(pmd);
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100508
509 spin_lock(&init_mm.page_table_lock);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400510 pud_populate(&init_mm, pud, __va(pmd_phys));
Matt Tolentino44df75e2006-01-17 07:03:41 +0100511 spin_unlock(&init_mm.page_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 }
Andi Kleen1a2b4412008-01-30 13:33:54 +0100513 __flush_tlb_all();
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700514
Andi Kleence0c0e52008-05-02 11:46:49 +0200515 update_page_count(PG_LEVEL_1G, pages);
Andi Kleencc615032008-03-12 03:53:28 +0100516
Yinghai Lu1a0db382008-06-24 14:56:20 -0700517 return last_map_addr;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100518}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400520static unsigned long __meminit
Yinghai Lub50efd22008-07-08 01:41:05 -0700521phys_pud_update(pgd_t *pgd, unsigned long addr, unsigned long end,
522 unsigned long page_size_mask)
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400523{
524 pud_t *pud;
525
526 pud = (pud_t *)pgd_page_vaddr(*pgd);
527
Yinghai Lub50efd22008-07-08 01:41:05 -0700528 return phys_pud_init(pud, addr, end, page_size_mask);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400529}
530
Shaohua Li41d840e2009-06-12 12:57:52 +0800531unsigned long __meminit
Pekka Enbergf7650902009-03-05 14:55:05 +0200532kernel_physical_mapping_init(unsigned long start,
533 unsigned long end,
534 unsigned long page_size_mask)
Yinghai Lub50efd22008-07-08 01:41:05 -0700535{
536
537 unsigned long next, last_map_addr = end;
538
539 start = (unsigned long)__va(start);
540 end = (unsigned long)__va(end);
541
542 for (; start < end; start = next) {
543 pgd_t *pgd = pgd_offset_k(start);
544 unsigned long pud_phys;
545 pud_t *pud;
546
Jack Steinere22146e2008-07-16 11:11:59 -0500547 next = (start + PGDIR_SIZE) & PGDIR_MASK;
Yinghai Lub50efd22008-07-08 01:41:05 -0700548 if (next > end)
549 next = end;
550
551 if (pgd_val(*pgd)) {
552 last_map_addr = phys_pud_update(pgd, __pa(start),
553 __pa(end), page_size_mask);
554 continue;
555 }
556
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100557 pud = alloc_low_page(&pud_phys);
Yinghai Lub50efd22008-07-08 01:41:05 -0700558 last_map_addr = phys_pud_init(pud, __pa(start), __pa(next),
559 page_size_mask);
560 unmap_low_page(pud);
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100561
562 spin_lock(&init_mm.page_table_lock);
563 pgd_populate(&init_mm, pgd, __va(pud_phys));
564 spin_unlock(&init_mm.page_table_lock);
Yinghai Lub50efd22008-07-08 01:41:05 -0700565 }
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700566 __flush_tlb_all();
Yinghai Lub50efd22008-07-08 01:41:05 -0700567
568 return last_map_addr;
569}
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700570
Matt Tolentino2b976902005-06-23 00:08:06 -0700571#ifndef CONFIG_NUMA
David Rientjes8ee2deb2009-09-25 15:20:00 -0700572void __init initmem_init(unsigned long start_pfn, unsigned long end_pfn,
573 int acpi, int k8)
Yinghai Lu1f75d7e2008-06-22 02:44:49 -0700574{
Yinghai Lu08677212010-02-10 01:20:20 -0800575#ifndef CONFIG_NO_BOOTMEM
Yinghai Lu1f75d7e2008-06-22 02:44:49 -0700576 unsigned long bootmap_size, bootmap;
577
578 bootmap_size = bootmem_bootmap_pages(end_pfn)<<PAGE_SHIFT;
579 bootmap = find_e820_area(0, end_pfn<<PAGE_SHIFT, bootmap_size,
580 PAGE_SIZE);
581 if (bootmap == -1L)
582 panic("Cannot find bootmem map of size %ld\n", bootmap_size);
Yinghai Lu1842f902010-02-10 01:20:15 -0800583 reserve_early(bootmap, bootmap + bootmap_size, "BOOTMAP");
Yinghai Lu346cafe2008-06-23 03:06:14 -0700584 /* don't touch min_low_pfn */
585 bootmap_size = init_bootmem_node(NODE_DATA(0), bootmap >> PAGE_SHIFT,
586 0, end_pfn);
Yinghai Lu1f75d7e2008-06-22 02:44:49 -0700587 e820_register_active_regions(0, start_pfn, end_pfn);
588 free_bootmem_with_active_regions(0, end_pfn);
Yinghai Lu08677212010-02-10 01:20:20 -0800589#else
590 e820_register_active_regions(0, start_pfn, end_pfn);
591#endif
Yinghai Lu1f75d7e2008-06-22 02:44:49 -0700592}
Pekka Enberg3551f882009-05-07 15:35:41 +0300593#endif
Yinghai Lu1f75d7e2008-06-22 02:44:49 -0700594
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595void __init paging_init(void)
596{
Mel Gorman6391af12006-10-11 01:20:39 -0700597 unsigned long max_zone_pfns[MAX_NR_ZONES];
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100598
Mel Gorman6391af12006-10-11 01:20:39 -0700599 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
600 max_zone_pfns[ZONE_DMA] = MAX_DMA_PFN;
601 max_zone_pfns[ZONE_DMA32] = MAX_DMA32_PFN;
Yinghai Luc987d122008-06-24 22:14:09 -0700602 max_zone_pfns[ZONE_NORMAL] = max_pfn;
Mel Gorman6391af12006-10-11 01:20:39 -0700603
Pekka Enberg3551f882009-05-07 15:35:41 +0300604 sparse_memory_present_with_active_regions(MAX_NUMNODES);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100605 sparse_init();
Yinghai Lu44b57282009-07-08 09:50:19 -0700606
607 /*
608 * clear the default setting with node 0
609 * note: don't use nodes_clear here, that is really clearing when
610 * numa support is not compiled in, and later node_set_state
611 * will not set it back.
612 */
613 node_clear_state(0, N_NORMAL_MEMORY);
614
Mel Gorman5cb248a2006-09-27 01:49:52 -0700615 free_area_init_nodes(max_zone_pfns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100618/*
Matt Tolentino44df75e2006-01-17 07:03:41 +0100619 * Memory hotplug specific functions
Matt Tolentino44df75e2006-01-17 07:03:41 +0100620 */
Yasunori Gotobc02af92006-06-27 02:53:30 -0700621#ifdef CONFIG_MEMORY_HOTPLUG
622/*
Shaohui Zhengea085412010-02-02 13:44:16 -0800623 * After memory hotplug the variables max_pfn, max_low_pfn and high_memory need
624 * updating.
625 */
626static void update_end_of_memory_vars(u64 start, u64 size)
627{
628 unsigned long end_pfn = PFN_UP(start + size);
629
630 if (end_pfn > max_pfn) {
631 max_pfn = end_pfn;
632 max_low_pfn = end_pfn;
633 high_memory = (void *)__va(max_pfn * PAGE_SIZE - 1) + 1;
634 }
635}
636
637/*
Yasunori Gotobc02af92006-06-27 02:53:30 -0700638 * Memory is added always to NORMAL zone. This means you will never get
639 * additional DMA/DMA32 memory.
640 */
641int arch_add_memory(int nid, u64 start, u64 size)
642{
643 struct pglist_data *pgdat = NODE_DATA(nid);
Christoph Lameter776ed982006-09-25 23:31:09 -0700644 struct zone *zone = pgdat->node_zones + ZONE_NORMAL;
Andi Kleencc615032008-03-12 03:53:28 +0100645 unsigned long last_mapped_pfn, start_pfn = start >> PAGE_SHIFT;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700646 unsigned long nr_pages = size >> PAGE_SHIFT;
647 int ret;
648
Shaohua Li60817c92008-10-27 13:03:18 -0700649 last_mapped_pfn = init_memory_mapping(start, start + size);
Andi Kleencc615032008-03-12 03:53:28 +0100650 if (last_mapped_pfn > max_pfn_mapped)
651 max_pfn_mapped = last_mapped_pfn;
Keith Mannthey45e0b782006-09-30 23:27:09 -0700652
Gary Hadec04fc582009-01-06 14:39:14 -0800653 ret = __add_pages(nid, zone, start_pfn, nr_pages);
Gary Hadefe8b8682008-10-28 16:43:14 -0700654 WARN_ON_ONCE(ret);
Yasunori Gotobc02af92006-06-27 02:53:30 -0700655
Shaohui Zhengea085412010-02-02 13:44:16 -0800656 /* update max_pfn, max_low_pfn and high_memory */
657 update_end_of_memory_vars(start, size);
658
Yasunori Gotobc02af92006-06-27 02:53:30 -0700659 return ret;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700660}
661EXPORT_SYMBOL_GPL(arch_add_memory);
662
Yasunori Goto82432292006-11-18 22:19:40 -0800663#if !defined(CONFIG_ACPI_NUMA) && defined(CONFIG_NUMA)
Keith Mannthey4942e992006-09-30 23:27:06 -0700664int memory_add_physaddr_to_nid(u64 start)
665{
666 return 0;
667}
Keith Mannthey8c2676a2006-09-30 23:27:07 -0700668EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
Keith Mannthey4942e992006-09-30 23:27:06 -0700669#endif
670
Keith Mannthey45e0b782006-09-30 23:27:09 -0700671#endif /* CONFIG_MEMORY_HOTPLUG */
672
KAMEZAWA Hiroyuki81ac3ad2009-09-22 16:45:49 -0700673static struct kcore_list kcore_vsyscall;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
675void __init mem_init(void)
676{
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200677 long codesize, reservedpages, datasize, initsize;
Yinghai Lu11a6b0c2008-10-14 18:59:18 -0700678 unsigned long absent_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Jon Mason0dc243a2006-06-26 13:58:11 +0200680 pci_iommu_alloc();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Yinghai Lu48ddb152008-01-30 13:32:36 +0100682 /* clear_bss() already clear the empty_zero_page */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
684 reservedpages = 0;
685
686 /* this will put all low memory onto the freelists */
Matt Tolentino2b976902005-06-23 00:08:06 -0700687#ifdef CONFIG_NUMA
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200688 totalram_pages = numa_free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689#else
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200690 totalram_pages = free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691#endif
Yinghai Lu11a6b0c2008-10-14 18:59:18 -0700692
693 absent_pages = absent_pages_in_range(0, max_pfn);
694 reservedpages = max_pfn - totalram_pages - absent_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 after_bootmem = 1;
696
697 codesize = (unsigned long) &_etext - (unsigned long) &_text;
698 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
699 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
700
701 /* Register memory areas for /proc/kcore */
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100702 kclist_add(&kcore_vsyscall, (void *)VSYSCALL_START,
KAMEZAWA Hiroyukic30bb2a2009-09-22 16:45:43 -0700703 VSYSCALL_END - VSYSCALL_START, KCORE_OTHER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100705 printk(KERN_INFO "Memory: %luk/%luk available (%ldk kernel code, "
Yinghai Lu11a6b0c2008-10-14 18:59:18 -0700706 "%ldk absent, %ldk reserved, %ldk data, %ldk init)\n",
Geert Uytterhoevencc013a82009-09-21 17:02:36 -0700707 nr_free_pages() << (PAGE_SHIFT-10),
Yinghai Luc987d122008-06-24 22:14:09 -0700708 max_pfn << (PAGE_SHIFT-10),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 codesize >> 10,
Yinghai Lu11a6b0c2008-10-14 18:59:18 -0700710 absent_pages << (PAGE_SHIFT-10),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 reservedpages << (PAGE_SHIFT-10),
712 datasize >> 10,
713 initsize >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714}
715
Arjan van de Ven67df1972006-01-06 00:12:04 -0800716#ifdef CONFIG_DEBUG_RODATA
Arjan van de Venedeed302008-01-30 13:34:08 +0100717const int rodata_test_data = 0xC3;
718EXPORT_SYMBOL_GPL(rodata_test_data);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800719
Suresh Siddha502f6602009-10-28 18:46:56 -0800720int kernel_set_to_readonly;
Steven Rostedt16239632009-02-17 17:57:30 -0500721
722void set_kernel_text_rw(void)
723{
Suresh Siddhab9af7c02009-10-14 14:46:55 -0700724 unsigned long start = PFN_ALIGN(_text);
Suresh Siddhae7d23dd2009-10-28 18:46:58 -0800725 unsigned long end = PFN_ALIGN(__stop___ex_table);
Steven Rostedt16239632009-02-17 17:57:30 -0500726
727 if (!kernel_set_to_readonly)
728 return;
729
730 pr_debug("Set kernel text: %lx - %lx for read write\n",
731 start, end);
732
Suresh Siddhae7d23dd2009-10-28 18:46:58 -0800733 /*
734 * Make the kernel identity mapping for text RW. Kernel text
735 * mapping will always be RO. Refer to the comment in
736 * static_protections() in pageattr.c
737 */
Steven Rostedt16239632009-02-17 17:57:30 -0500738 set_memory_rw(start, (end - start) >> PAGE_SHIFT);
739}
740
741void set_kernel_text_ro(void)
742{
Suresh Siddhab9af7c02009-10-14 14:46:55 -0700743 unsigned long start = PFN_ALIGN(_text);
Suresh Siddhae7d23dd2009-10-28 18:46:58 -0800744 unsigned long end = PFN_ALIGN(__stop___ex_table);
Steven Rostedt16239632009-02-17 17:57:30 -0500745
746 if (!kernel_set_to_readonly)
747 return;
748
749 pr_debug("Set kernel text: %lx - %lx for read only\n",
750 start, end);
751
Suresh Siddhae7d23dd2009-10-28 18:46:58 -0800752 /*
753 * Set the kernel identity mapping for text RO.
754 */
Steven Rostedt16239632009-02-17 17:57:30 -0500755 set_memory_ro(start, (end - start) >> PAGE_SHIFT);
756}
757
Arjan van de Ven67df1972006-01-06 00:12:04 -0800758void mark_rodata_ro(void)
759{
Suresh Siddha74e08172009-10-14 14:46:56 -0700760 unsigned long start = PFN_ALIGN(_text);
Steven Rostedt8f0f9962008-05-12 21:20:56 +0200761 unsigned long rodata_start =
762 ((unsigned long)__start_rodata + PAGE_SIZE - 1) & PAGE_MASK;
Suresh Siddha74e08172009-10-14 14:46:56 -0700763 unsigned long end = (unsigned long) &__end_rodata_hpage_align;
764 unsigned long text_end = PAGE_ALIGN((unsigned long) &__stop___ex_table);
765 unsigned long rodata_end = PAGE_ALIGN((unsigned long) &__end_rodata);
766 unsigned long data_start = (unsigned long) &_sdata;
Steven Rostedt8f0f9962008-05-12 21:20:56 +0200767
Jan Beulich6fb14752007-05-02 19:27:10 +0200768 printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700769 (end - start) >> 10);
Arjan van de Ven984bb802008-02-06 22:39:45 +0100770 set_memory_ro(start, (end - start) >> PAGE_SHIFT);
771
Steven Rostedt16239632009-02-17 17:57:30 -0500772 kernel_set_to_readonly = 1;
773
Arjan van de Ven984bb802008-02-06 22:39:45 +0100774 /*
775 * The rodata section (but not the kernel text!) should also be
776 * not-executable.
777 */
Pekka Paalanen72b59d672008-05-12 21:21:01 +0200778 set_memory_nx(rodata_start, (end - rodata_start) >> PAGE_SHIFT);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800779
Arjan van de Ven1a487252008-01-30 13:34:09 +0100780 rodata_test();
781
Andi Kleen0c42f392008-01-30 13:33:42 +0100782#ifdef CONFIG_CPA_DEBUG
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100783 printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, end);
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100784 set_memory_rw(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +0100785
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100786 printk(KERN_INFO "Testing CPA: again\n");
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100787 set_memory_ro(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +0100788#endif
Suresh Siddha74e08172009-10-14 14:46:56 -0700789
790 free_init_pages("unused kernel memory",
791 (unsigned long) page_address(virt_to_page(text_end)),
792 (unsigned long)
793 page_address(virt_to_page(rodata_start)));
794 free_init_pages("unused kernel memory",
795 (unsigned long) page_address(virt_to_page(rodata_end)),
796 (unsigned long) page_address(virt_to_page(data_start)));
Arjan van de Ven67df1972006-01-06 00:12:04 -0800797}
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -0500798
Arjan van de Ven67df1972006-01-06 00:12:04 -0800799#endif
800
Yinghai Lud2dbf342008-06-13 02:00:56 -0700801int __init reserve_bootmem_generic(unsigned long phys, unsigned long len,
802 int flags)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100803{
Matt Tolentino2b976902005-06-23 00:08:06 -0700804#ifdef CONFIG_NUMA
Yinghai Lu8b3cd09e2008-03-18 12:50:21 -0700805 int nid, next_nid;
Yinghai Lu6a07a0e2008-06-23 14:02:36 -0700806 int ret;
Andi Kleen5e58a022006-11-14 16:57:46 +0100807#endif
808 unsigned long pfn = phys >> PAGE_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100809
Yinghai Luc987d122008-06-24 22:14:09 -0700810 if (pfn >= max_pfn) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100811 /*
812 * This can happen with kdump kernels when accessing
813 * firmware tables:
814 */
Thomas Gleixner67794292008-03-21 21:27:10 +0100815 if (pfn < max_pfn_mapped)
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200816 return -EFAULT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100817
Yinghai Lu6a07a0e2008-06-23 14:02:36 -0700818 printk(KERN_ERR "reserve_bootmem: illegal reserve %lx %lu\n",
Andi Kleen5e58a022006-11-14 16:57:46 +0100819 phys, len);
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200820 return -EFAULT;
Andi Kleen5e58a022006-11-14 16:57:46 +0100821 }
822
823 /* Should check here against the e820 map to avoid double free */
824#ifdef CONFIG_NUMA
Yinghai Lu8b3cd09e2008-03-18 12:50:21 -0700825 nid = phys_to_nid(phys);
826 next_nid = phys_to_nid(phys + len - 1);
827 if (nid == next_nid)
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200828 ret = reserve_bootmem_node(NODE_DATA(nid), phys, len, flags);
Yinghai Lu8b3cd09e2008-03-18 12:50:21 -0700829 else
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200830 ret = reserve_bootmem(phys, len, flags);
831
832 if (ret != 0)
833 return ret;
834
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100835#else
Amerigo Wanga6a06f72009-08-21 04:34:45 -0400836 reserve_bootmem(phys, len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837#endif
Yinghai Lu8b3cd09e2008-03-18 12:50:21 -0700838
Mel Gorman0e0b8642006-09-27 01:49:56 -0700839 if (phys+len <= MAX_DMA_PFN*PAGE_SIZE) {
Andi Kleene18c6872005-11-05 17:25:53 +0100840 dma_reserve += len / PAGE_SIZE;
Mel Gorman0e0b8642006-09-27 01:49:56 -0700841 set_dma_reserve(dma_reserve);
842 }
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200843
844 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845}
846
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100847int kern_addr_valid(unsigned long addr)
848{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 unsigned long above = ((long)addr) >> __VIRTUAL_MASK_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100850 pgd_t *pgd;
851 pud_t *pud;
852 pmd_t *pmd;
853 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
855 if (above != 0 && above != -1UL)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100856 return 0;
857
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 pgd = pgd_offset_k(addr);
859 if (pgd_none(*pgd))
860 return 0;
861
862 pud = pud_offset(pgd, addr);
863 if (pud_none(*pud))
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100864 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866 pmd = pmd_offset(pud, addr);
867 if (pmd_none(*pmd))
868 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100869
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 if (pmd_large(*pmd))
871 return pfn_valid(pmd_pfn(*pmd));
872
873 pte = pte_offset_kernel(pmd, addr);
874 if (pte_none(*pte))
875 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 return pfn_valid(pte_pfn(*pte));
878}
879
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100880/*
881 * A pseudo VMA to allow ptrace access for the vsyscall page. This only
882 * covers the 64bit vsyscall page now. 32bit has a real VMA now and does
883 * not need special handling anymore:
884 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885static struct vm_area_struct gate_vma = {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100886 .vm_start = VSYSCALL_START,
887 .vm_end = VSYSCALL_START + (VSYSCALL_MAPPED_PAGES * PAGE_SIZE),
888 .vm_page_prot = PAGE_READONLY_EXEC,
889 .vm_flags = VM_READ | VM_EXEC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890};
891
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892struct vm_area_struct *get_gate_vma(struct task_struct *tsk)
893{
894#ifdef CONFIG_IA32_EMULATION
Andi Kleen1e014412005-04-16 15:24:55 -0700895 if (test_tsk_thread_flag(tsk, TIF_IA32))
896 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897#endif
898 return &gate_vma;
899}
900
901int in_gate_area(struct task_struct *task, unsigned long addr)
902{
903 struct vm_area_struct *vma = get_gate_vma(task);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100904
Andi Kleen1e014412005-04-16 15:24:55 -0700905 if (!vma)
906 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100907
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 return (addr >= vma->vm_start) && (addr < vma->vm_end);
909}
910
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100911/*
912 * Use this when you have no reliable task/vma, typically from interrupt
913 * context. It is less reliable than using the task's vma and may give
914 * false positives:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 */
916int in_gate_area_no_task(unsigned long addr)
917{
Andi Kleen1e014412005-04-16 15:24:55 -0700918 return (addr >= VSYSCALL_START) && (addr < VSYSCALL_END);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919}
Zou Nan hai2e1c49d2007-06-01 00:46:28 -0700920
Andi Kleen2aae9502007-07-21 17:10:01 +0200921const char *arch_vma_name(struct vm_area_struct *vma)
922{
923 if (vma->vm_mm && vma->vm_start == (long)vma->vm_mm->context.vdso)
924 return "[vdso]";
925 if (vma == &gate_vma)
926 return "[vsyscall]";
927 return NULL;
928}
Christoph Lameter0889eba2007-10-16 01:24:15 -0700929
930#ifdef CONFIG_SPARSEMEM_VMEMMAP
931/*
932 * Initialise the sparsemem vmemmap using huge-pages at the PMD level.
933 */
Yinghai Luc2b91e22008-04-12 01:19:24 -0700934static long __meminitdata addr_start, addr_end;
935static void __meminitdata *p_start, *p_end;
936static int __meminitdata node_start;
937
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100938int __meminit
939vmemmap_populate(struct page *start_page, unsigned long size, int node)
Christoph Lameter0889eba2007-10-16 01:24:15 -0700940{
941 unsigned long addr = (unsigned long)start_page;
942 unsigned long end = (unsigned long)(start_page + size);
943 unsigned long next;
944 pgd_t *pgd;
945 pud_t *pud;
946 pmd_t *pmd;
947
948 for (; addr < end; addr = next) {
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -0400949 void *p = NULL;
Christoph Lameter0889eba2007-10-16 01:24:15 -0700950
951 pgd = vmemmap_pgd_populate(addr, node);
952 if (!pgd)
953 return -ENOMEM;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100954
Christoph Lameter0889eba2007-10-16 01:24:15 -0700955 pud = vmemmap_pud_populate(pgd, addr, node);
956 if (!pud)
957 return -ENOMEM;
958
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -0400959 if (!cpu_has_pse) {
960 next = (addr + PAGE_SIZE) & PAGE_MASK;
961 pmd = vmemmap_pmd_populate(pud, addr, node);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100962
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -0400963 if (!pmd)
964 return -ENOMEM;
965
966 p = vmemmap_pte_populate(pmd, addr, node);
967
Christoph Lameter0889eba2007-10-16 01:24:15 -0700968 if (!p)
969 return -ENOMEM;
970
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -0400971 addr_end = addr + PAGE_SIZE;
972 p_end = p + PAGE_SIZE;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100973 } else {
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -0400974 next = pmd_addr_end(addr, end);
975
976 pmd = pmd_offset(pud, addr);
977 if (pmd_none(*pmd)) {
978 pte_t entry;
979
Yinghai Lu9bdac912010-02-10 01:20:22 -0800980 p = vmemmap_alloc_block_buf(PMD_SIZE, node);
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -0400981 if (!p)
982 return -ENOMEM;
983
984 entry = pfn_pte(__pa(p) >> PAGE_SHIFT,
985 PAGE_KERNEL_LARGE);
986 set_pmd(pmd, __pmd(pte_val(entry)));
987
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -0400988 /* check to see if we have contiguous blocks */
989 if (p_end != p || node_start != node) {
990 if (p_start)
991 printk(KERN_DEBUG " [%lx-%lx] PMD -> [%p-%p] on node %d\n",
992 addr_start, addr_end-1, p_start, p_end-1, node_start);
993 addr_start = addr;
994 node_start = node;
995 p_start = p;
996 }
Yinghai Lu49c980d2008-07-03 12:29:34 -0700997
998 addr_end = addr + PMD_SIZE;
999 p_end = p + PMD_SIZE;
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001000 } else
1001 vmemmap_verify((pte_t *)pmd, node, addr, next);
Thomas Gleixner14a62c32008-01-30 13:34:10 +01001002 }
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001003
Christoph Lameter0889eba2007-10-16 01:24:15 -07001004 }
Christoph Lameter0889eba2007-10-16 01:24:15 -07001005 return 0;
1006}
Yinghai Luc2b91e22008-04-12 01:19:24 -07001007
1008void __meminit vmemmap_populate_print_last(void)
1009{
1010 if (p_start) {
1011 printk(KERN_DEBUG " [%lx-%lx] PMD -> [%p-%p] on node %d\n",
1012 addr_start, addr_end-1, p_start, p_end-1, node_start);
1013 p_start = NULL;
1014 p_end = NULL;
1015 node_start = 0;
1016 }
1017}
Christoph Lameter0889eba2007-10-16 01:24:15 -07001018#endif