blob: 1753e8020df6ec8aa3eefea7342386224e595f2c [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Yinghai Lu064d25f2008-06-16 19:58:28 -070053/*
Yinghai Lu064d25f2008-06-16 19:58:28 -070054 * end_pfn only includes RAM, while max_pfn_mapped includes all e820 entries.
55 * The direct mapping extends to max_pfn_mapped, so that we can directly access
56 * apertures, ACPI and other tables without having to play with fixmaps.
57 */
Yinghai Luf361a452008-07-10 20:38:26 -070058unsigned long max_low_pfn_mapped;
Yinghai Lu064d25f2008-06-16 19:58:28 -070059unsigned long max_pfn_mapped;
60
Andi Kleene18c6872005-11-05 17:25:53 +010061static unsigned long dma_reserve __initdata;
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
64
Ingo Molnar00d1c5e2008-04-17 17:40:45 +020065static int __init parse_direct_gbpages_off(char *arg)
66{
67 direct_gbpages = 0;
68 return 0;
69}
70early_param("nogbpages", parse_direct_gbpages_off);
71
72static int __init parse_direct_gbpages_on(char *arg)
73{
74 direct_gbpages = 1;
75 return 0;
76}
77early_param("gbpages", parse_direct_gbpages_on);
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079/*
80 * NOTE: pagetable_init alloc all the fixmap pagetables contiguous on the
81 * physical space so we can cache the place of the first one and move
82 * around without checking the pgd every time.
83 */
84
Jeremy Fitzhardingebe43d722008-09-07 15:21:13 -070085pteval_t __supported_pte_mask __read_mostly = ~_PAGE_IOMAP;
Yinghai Lubd220a22008-09-05 00:58:28 -070086EXPORT_SYMBOL_GPL(__supported_pte_mask);
87
Pekka Enberg5dd61df2009-03-05 17:04:57 +020088static int disable_nx __cpuinitdata;
Yinghai Lubd220a22008-09-05 00:58:28 -070089
Ingo Molnardeed05b2008-09-05 10:23:26 +020090/*
91 * noexec=on|off
92 * Control non-executable mappings for 64-bit processes.
93 *
94 * on Enable (default)
95 * off Disable
96 */
Yinghai Lubd220a22008-09-05 00:58:28 -070097static int __init nonx_setup(char *str)
98{
99 if (!str)
100 return -EINVAL;
101 if (!strncmp(str, "on", 2)) {
102 __supported_pte_mask |= _PAGE_NX;
Pekka Enberg5dd61df2009-03-05 17:04:57 +0200103 disable_nx = 0;
Yinghai Lubd220a22008-09-05 00:58:28 -0700104 } else if (!strncmp(str, "off", 3)) {
Pekka Enberg5dd61df2009-03-05 17:04:57 +0200105 disable_nx = 1;
Yinghai Lubd220a22008-09-05 00:58:28 -0700106 __supported_pte_mask &= ~_PAGE_NX;
107 }
108 return 0;
109}
110early_param("noexec", nonx_setup);
111
112void __cpuinit check_efer(void)
113{
114 unsigned long efer;
115
116 rdmsrl(MSR_EFER, efer);
Pekka Enberg5dd61df2009-03-05 17:04:57 +0200117 if (!(efer & EFER_NX) || disable_nx)
Yinghai Lubd220a22008-09-05 00:58:28 -0700118 __supported_pte_mask &= ~_PAGE_NX;
119}
120
121int force_personality32;
122
Ingo Molnardeed05b2008-09-05 10:23:26 +0200123/*
124 * noexec32=on|off
125 * Control non executable heap for 32bit processes.
126 * To control the stack too use noexec=off
127 *
128 * on PROT_READ does not imply PROT_EXEC for 32-bit processes (default)
129 * off PROT_READ implies PROT_EXEC
130 */
Yinghai Lubd220a22008-09-05 00:58:28 -0700131static int __init nonx32_setup(char *str)
132{
133 if (!strcmp(str, "on"))
134 force_personality32 &= ~READ_IMPLIES_EXEC;
135 else if (!strcmp(str, "off"))
136 force_personality32 |= READ_IMPLIES_EXEC;
137 return 1;
138}
139__setup("noexec32=", nonx32_setup);
140
Marcin Slusarz8d6ea9672008-08-15 18:32:24 +0200141/*
142 * NOTE: This function is marked __ref because it calls __init function
143 * (alloc_bootmem_pages). It's safe to do it ONLY when after_bootmem == 0.
144 */
145static __ref void *spp_getpage(void)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100146{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 void *ptr;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 if (after_bootmem)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100150 ptr = (void *) get_zeroed_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 else
152 ptr = alloc_bootmem_pages(PAGE_SIZE);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100153
154 if (!ptr || ((unsigned long)ptr & ~PAGE_MASK)) {
155 panic("set_pte_phys: cannot allocate page data %s\n",
156 after_bootmem ? "after bootmem" : "");
157 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100159 pr_debug("spp_getpage %p\n", ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100161 return ptr;
162}
163
Jeremy Fitzhardingef254f392009-03-03 12:02:57 -0800164static pud_t *fill_pud(pgd_t *pgd, unsigned long vaddr)
Tejun Heo458a3e62009-02-24 11:57:21 +0900165{
166 if (pgd_none(*pgd)) {
167 pud_t *pud = (pud_t *)spp_getpage();
168 pgd_populate(&init_mm, pgd, pud);
169 if (pud != pud_offset(pgd, 0))
170 printk(KERN_ERR "PAGETABLE BUG #00! %p <-> %p\n",
171 pud, pud_offset(pgd, 0));
172 }
173 return pud_offset(pgd, vaddr);
174}
175
Jeremy Fitzhardingef254f392009-03-03 12:02:57 -0800176static pmd_t *fill_pmd(pud_t *pud, unsigned long vaddr)
Tejun Heo458a3e62009-02-24 11:57:21 +0900177{
178 if (pud_none(*pud)) {
179 pmd_t *pmd = (pmd_t *) spp_getpage();
180 pud_populate(&init_mm, pud, pmd);
181 if (pmd != pmd_offset(pud, 0))
182 printk(KERN_ERR "PAGETABLE BUG #01! %p <-> %p\n",
183 pmd, pmd_offset(pud, 0));
184 }
185 return pmd_offset(pud, vaddr);
186}
187
Jeremy Fitzhardingef254f392009-03-03 12:02:57 -0800188static pte_t *fill_pte(pmd_t *pmd, unsigned long vaddr)
Tejun Heo458a3e62009-02-24 11:57:21 +0900189{
190 if (pmd_none(*pmd)) {
191 pte_t *pte = (pte_t *) spp_getpage();
192 pmd_populate_kernel(&init_mm, pmd, pte);
193 if (pte != pte_offset_kernel(pmd, 0))
194 printk(KERN_ERR "PAGETABLE BUG #02!\n");
195 }
196 return pte_offset_kernel(pmd, vaddr);
197}
198
199void set_pte_vaddr_pud(pud_t *pud_page, unsigned long vaddr, pte_t new_pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 pud_t *pud;
202 pmd_t *pmd;
Jeremy Fitzhardinged494a962008-06-17 11:41:59 -0700203 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Eduardo Habkost0814e0b2008-06-25 00:19:22 -0400205 pud = pud_page + pud_index(vaddr);
Tejun Heo458a3e62009-02-24 11:57:21 +0900206 pmd = fill_pmd(pud, vaddr);
207 pte = fill_pte(pmd, vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 set_pte(pte, new_pte);
210
211 /*
212 * It's enough to flush this one mapping.
213 * (PGE mappings get flushed as well)
214 */
215 __flush_tlb_one(vaddr);
216}
217
Tejun Heo458a3e62009-02-24 11:57:21 +0900218void set_pte_vaddr(unsigned long vaddr, pte_t pteval)
Eduardo Habkost0814e0b2008-06-25 00:19:22 -0400219{
220 pgd_t *pgd;
221 pud_t *pud_page;
222
223 pr_debug("set_pte_vaddr %lx to %lx\n", vaddr, native_pte_val(pteval));
224
225 pgd = pgd_offset_k(vaddr);
226 if (pgd_none(*pgd)) {
227 printk(KERN_ERR
228 "PGD FIXMAP MISSING, it should be setup in head.S!\n");
229 return;
230 }
231 pud_page = (pud_t*)pgd_page_vaddr(*pgd);
232 set_pte_vaddr_pud(pud_page, vaddr, pteval);
233}
234
Tejun Heo458a3e62009-02-24 11:57:21 +0900235pmd_t * __init populate_extra_pmd(unsigned long vaddr)
Tejun Heo11124412009-02-20 16:29:09 +0900236{
237 pgd_t *pgd;
238 pud_t *pud;
239
240 pgd = pgd_offset_k(vaddr);
Tejun Heo458a3e62009-02-24 11:57:21 +0900241 pud = fill_pud(pgd, vaddr);
242 return fill_pmd(pud, vaddr);
243}
Tejun Heo11124412009-02-20 16:29:09 +0900244
Tejun Heo458a3e62009-02-24 11:57:21 +0900245pte_t * __init populate_extra_pte(unsigned long vaddr)
246{
247 pmd_t *pmd;
248
249 pmd = populate_extra_pmd(vaddr);
250 return fill_pte(pmd, vaddr);
Tejun Heo11124412009-02-20 16:29:09 +0900251}
252
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100253/*
Jack Steiner3a9e1892008-07-01 14:45:32 -0500254 * Create large page table mappings for a range of physical addresses.
255 */
256static void __init __init_extra_mapping(unsigned long phys, unsigned long size,
257 pgprot_t prot)
258{
259 pgd_t *pgd;
260 pud_t *pud;
261 pmd_t *pmd;
262
263 BUG_ON((phys & ~PMD_MASK) || (size & ~PMD_MASK));
264 for (; size; phys += PMD_SIZE, size -= PMD_SIZE) {
265 pgd = pgd_offset_k((unsigned long)__va(phys));
266 if (pgd_none(*pgd)) {
267 pud = (pud_t *) spp_getpage();
268 set_pgd(pgd, __pgd(__pa(pud) | _KERNPG_TABLE |
269 _PAGE_USER));
270 }
271 pud = pud_offset(pgd, (unsigned long)__va(phys));
272 if (pud_none(*pud)) {
273 pmd = (pmd_t *) spp_getpage();
274 set_pud(pud, __pud(__pa(pmd) | _KERNPG_TABLE |
275 _PAGE_USER));
276 }
277 pmd = pmd_offset(pud, phys);
278 BUG_ON(!pmd_none(*pmd));
279 set_pmd(pmd, __pmd(phys | pgprot_val(prot)));
280 }
281}
282
283void __init init_extra_mapping_wb(unsigned long phys, unsigned long size)
284{
285 __init_extra_mapping(phys, size, PAGE_KERNEL_LARGE);
286}
287
288void __init init_extra_mapping_uc(unsigned long phys, unsigned long size)
289{
290 __init_extra_mapping(phys, size, PAGE_KERNEL_LARGE_NOCACHE);
291}
292
293/*
Ingo Molnar88f3aec2008-02-21 11:04:11 +0100294 * The head.S code sets up the kernel high mapping:
295 *
296 * from __START_KERNEL_map to __START_KERNEL_map + size (== _end-_text)
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100297 *
298 * phys_addr holds the negative offset to the kernel, which is added
299 * to the compile time generated pmds. This results in invalid pmds up
300 * to the point where we hit the physaddr 0 mapping.
301 *
302 * We limit the mappings to the region from _text to _end. _end is
303 * rounded up to the 2MB boundary. This catches the invalid pmds as
304 * well, as they are located before _text:
305 */
306void __init cleanup_highmap(void)
307{
308 unsigned long vaddr = __START_KERNEL_map;
Joerg Roedeld86bb0d2008-07-25 16:48:57 +0200309 unsigned long end = roundup((unsigned long)_end, PMD_SIZE) - 1;
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100310 pmd_t *pmd = level2_kernel_pgt;
311 pmd_t *last_pmd = pmd + PTRS_PER_PMD;
312
313 for (; pmd < last_pmd; pmd++, vaddr += PMD_SIZE) {
Hugh Dickins2884f112008-05-28 19:36:07 +0100314 if (pmd_none(*pmd))
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100315 continue;
316 if (vaddr < (unsigned long) _text || vaddr > end)
317 set_pmd(pmd, __pmd(0));
318 }
319}
320
Jan Beulich9482ac62008-08-21 14:28:42 +0100321static __ref void *alloc_low_page(unsigned long *phys)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100322{
Pekka Enberg298af9d2009-03-05 14:55:06 +0200323 unsigned long pfn = e820_table_end++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 void *adr;
325
Matt Tolentino44df75e2006-01-17 07:03:41 +0100326 if (after_bootmem) {
327 adr = (void *)get_zeroed_page(GFP_ATOMIC);
328 *phys = __pa(adr);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100329
Matt Tolentino44df75e2006-01-17 07:03:41 +0100330 return adr;
331 }
332
Pekka Enberg298af9d2009-03-05 14:55:06 +0200333 if (pfn >= e820_table_top)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100334 panic("alloc_low_page: ran out of memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Jeremy Fitzhardinge14941772008-09-07 15:21:15 -0700336 adr = early_memremap(pfn * PAGE_SIZE, PAGE_SIZE);
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200337 memset(adr, 0, PAGE_SIZE);
338 *phys = pfn * PAGE_SIZE;
339 return adr;
340}
341
Jan Beulich9482ac62008-08-21 14:28:42 +0100342static __ref void unmap_low_page(void *adr)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100343{
Matt Tolentino44df75e2006-01-17 07:03:41 +0100344 if (after_bootmem)
345 return;
346
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200347 early_iounmap(adr, PAGE_SIZE);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100348}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700350static unsigned long __meminit
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700351phys_pte_init(pte_t *pte_page, unsigned long addr, unsigned long end,
352 pgprot_t prot)
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400353{
354 unsigned pages = 0;
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700355 unsigned long last_map_addr = end;
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400356 int i;
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700357
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400358 pte_t *pte = pte_page + pte_index(addr);
359
360 for(i = pte_index(addr); i < PTRS_PER_PTE; i++, addr += PAGE_SIZE, pte++) {
361
362 if (addr >= end) {
363 if (!after_bootmem) {
364 for(; i < PTRS_PER_PTE; i++, pte++)
365 set_pte(pte, __pte(0));
366 }
367 break;
368 }
369
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700370 /*
371 * We will re-use the existing mapping.
372 * Xen for example has some special requirements, like mapping
373 * pagetable pages as RO. So assume someone who pre-setup
374 * these mappings are more intelligent.
375 */
Yinghai Lu3afa3942008-10-25 22:58:21 -0700376 if (pte_val(*pte)) {
377 pages++;
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400378 continue;
Yinghai Lu3afa3942008-10-25 22:58:21 -0700379 }
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400380
381 if (0)
382 printk(" pte=%p addr=%lx pte=%016lx\n",
383 pte, addr, pfn_pte(addr >> PAGE_SHIFT, PAGE_KERNEL).pte);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400384 pages++;
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700385 set_pte(pte, pfn_pte(addr >> PAGE_SHIFT, prot));
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400386 last_map_addr = (addr & PAGE_MASK) + PAGE_SIZE;
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400387 }
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700388
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400389 update_page_count(PG_LEVEL_4K, pages);
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700390
391 return last_map_addr;
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400392}
393
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700394static unsigned long __meminit
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700395phys_pte_update(pmd_t *pmd, unsigned long address, unsigned long end,
396 pgprot_t prot)
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400397{
398 pte_t *pte = (pte_t *)pmd_page_vaddr(*pmd);
399
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700400 return phys_pte_init(pte, address, end, prot);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400401}
402
Andi Kleencc615032008-03-12 03:53:28 +0100403static unsigned long __meminit
Yinghai Lub50efd22008-07-08 01:41:05 -0700404phys_pmd_init(pmd_t *pmd_page, unsigned long address, unsigned long end,
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700405 unsigned long page_size_mask, pgprot_t prot)
Matt Tolentino44df75e2006-01-17 07:03:41 +0100406{
Andi Kleence0c0e52008-05-02 11:46:49 +0200407 unsigned long pages = 0;
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700408 unsigned long last_map_addr = end;
Andi Kleence0c0e52008-05-02 11:46:49 +0200409
Keith Mannthey6ad91652006-09-26 10:52:36 +0200410 int i = pmd_index(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Keith Mannthey6ad91652006-09-26 10:52:36 +0200412 for (; i < PTRS_PER_PMD; i++, address += PMD_SIZE) {
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400413 unsigned long pte_phys;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200414 pmd_t *pmd = pmd_page + pmd_index(address);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400415 pte_t *pte;
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700416 pgprot_t new_prot = prot;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100417
Jan Beulich5f51e132006-06-26 13:59:02 +0200418 if (address >= end) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100419 if (!after_bootmem) {
Jan Beulich5f51e132006-06-26 13:59:02 +0200420 for (; i < PTRS_PER_PMD; i++, pmd++)
421 set_pmd(pmd, __pmd(0));
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100422 }
Matt Tolentino44df75e2006-01-17 07:03:41 +0100423 break;
424 }
Keith Mannthey6ad91652006-09-26 10:52:36 +0200425
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400426 if (pmd_val(*pmd)) {
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100427 if (!pmd_large(*pmd)) {
428 spin_lock(&init_mm.page_table_lock);
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700429 last_map_addr = phys_pte_update(pmd, address,
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700430 end, prot);
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100431 spin_unlock(&init_mm.page_table_lock);
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700432 continue;
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100433 }
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700434 /*
435 * If we are ok with PG_LEVEL_2M mapping, then we will
436 * use the existing mapping,
437 *
438 * Otherwise, we will split the large page mapping but
439 * use the same existing protection bits except for
440 * large page, so that we don't violate Intel's TLB
441 * Application note (317080) which says, while changing
442 * the page sizes, new and old translations should
443 * not differ with respect to page frame and
444 * attributes.
445 */
Yinghai Lu3afa3942008-10-25 22:58:21 -0700446 if (page_size_mask & (1 << PG_LEVEL_2M)) {
447 pages++;
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700448 continue;
Yinghai Lu3afa3942008-10-25 22:58:21 -0700449 }
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700450 new_prot = pte_pgprot(pte_clrhuge(*(pte_t *)pmd));
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400451 }
Keith Mannthey6ad91652006-09-26 10:52:36 +0200452
Yinghai Lub50efd22008-07-08 01:41:05 -0700453 if (page_size_mask & (1<<PG_LEVEL_2M)) {
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400454 pages++;
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100455 spin_lock(&init_mm.page_table_lock);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400456 set_pte((pte_t *)pmd,
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700457 pfn_pte(address >> PAGE_SHIFT,
458 __pgprot(pgprot_val(prot) | _PAGE_PSE)));
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100459 spin_unlock(&init_mm.page_table_lock);
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700460 last_map_addr = (address & PMD_MASK) + PMD_SIZE;
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400461 continue;
462 }
463
464 pte = alloc_low_page(&pte_phys);
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700465 last_map_addr = phys_pte_init(pte, address, end, new_prot);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400466 unmap_low_page(pte);
467
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100468 spin_lock(&init_mm.page_table_lock);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400469 pmd_populate_kernel(&init_mm, pmd, __va(pte_phys));
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100470 spin_unlock(&init_mm.page_table_lock);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100471 }
Andi Kleence0c0e52008-05-02 11:46:49 +0200472 update_page_count(PG_LEVEL_2M, pages);
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700473 return last_map_addr;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100474}
475
Andi Kleencc615032008-03-12 03:53:28 +0100476static unsigned long __meminit
Yinghai Lub50efd22008-07-08 01:41:05 -0700477phys_pmd_update(pud_t *pud, unsigned long address, unsigned long end,
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700478 unsigned long page_size_mask, pgprot_t prot)
Matt Tolentino44df75e2006-01-17 07:03:41 +0100479{
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100480 pmd_t *pmd = pmd_offset(pud, 0);
Andi Kleencc615032008-03-12 03:53:28 +0100481 unsigned long last_map_addr;
482
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700483 last_map_addr = phys_pmd_init(pmd, address, end, page_size_mask, prot);
Keith Mannthey6ad91652006-09-26 10:52:36 +0200484 __flush_tlb_all();
Andi Kleencc615032008-03-12 03:53:28 +0100485 return last_map_addr;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100486}
487
Andi Kleencc615032008-03-12 03:53:28 +0100488static unsigned long __meminit
Yinghai Lub50efd22008-07-08 01:41:05 -0700489phys_pud_init(pud_t *pud_page, unsigned long addr, unsigned long end,
490 unsigned long page_size_mask)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100491{
Andi Kleence0c0e52008-05-02 11:46:49 +0200492 unsigned long pages = 0;
Andi Kleencc615032008-03-12 03:53:28 +0100493 unsigned long last_map_addr = end;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200494 int i = pud_index(addr);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100495
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100496 for (; i < PTRS_PER_PUD; i++, addr = (addr & PUD_MASK) + PUD_SIZE) {
Keith Mannthey6ad91652006-09-26 10:52:36 +0200497 unsigned long pmd_phys;
498 pud_t *pud = pud_page + pud_index(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 pmd_t *pmd;
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700500 pgprot_t prot = PAGE_KERNEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Keith Mannthey6ad91652006-09-26 10:52:36 +0200502 if (addr >= end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100505 if (!after_bootmem &&
506 !e820_any_mapped(addr, addr+PUD_SIZE, 0)) {
507 set_pud(pud, __pud(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 continue;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100509 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Keith Mannthey6ad91652006-09-26 10:52:36 +0200511 if (pud_val(*pud)) {
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700512 if (!pud_large(*pud)) {
Yinghai Lub50efd22008-07-08 01:41:05 -0700513 last_map_addr = phys_pmd_update(pud, addr, end,
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700514 page_size_mask, prot);
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700515 continue;
516 }
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700517 /*
518 * If we are ok with PG_LEVEL_1G mapping, then we will
519 * use the existing mapping.
520 *
521 * Otherwise, we will split the gbpage mapping but use
522 * the same existing protection bits except for large
523 * page, so that we don't violate Intel's TLB
524 * Application note (317080) which says, while changing
525 * the page sizes, new and old translations should
526 * not differ with respect to page frame and
527 * attributes.
528 */
Yinghai Lu3afa3942008-10-25 22:58:21 -0700529 if (page_size_mask & (1 << PG_LEVEL_1G)) {
530 pages++;
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700531 continue;
Yinghai Lu3afa3942008-10-25 22:58:21 -0700532 }
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700533 prot = pte_pgprot(pte_clrhuge(*(pte_t *)pud));
Andi Kleenef925762008-04-17 17:40:45 +0200534 }
535
Yinghai Lub50efd22008-07-08 01:41:05 -0700536 if (page_size_mask & (1<<PG_LEVEL_1G)) {
Andi Kleence0c0e52008-05-02 11:46:49 +0200537 pages++;
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100538 spin_lock(&init_mm.page_table_lock);
Andi Kleenef925762008-04-17 17:40:45 +0200539 set_pte((pte_t *)pud,
540 pfn_pte(addr >> PAGE_SHIFT, PAGE_KERNEL_LARGE));
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100541 spin_unlock(&init_mm.page_table_lock);
Andi Kleencc615032008-03-12 03:53:28 +0100542 last_map_addr = (addr & PUD_MASK) + PUD_SIZE;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200543 continue;
544 }
545
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200546 pmd = alloc_low_page(&pmd_phys);
Suresh Siddhab27a43c2008-10-07 13:58:46 -0700547 last_map_addr = phys_pmd_init(pmd, addr, end, page_size_mask,
548 prot);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400549 unmap_low_page(pmd);
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100550
551 spin_lock(&init_mm.page_table_lock);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400552 pud_populate(&init_mm, pud, __va(pmd_phys));
Matt Tolentino44df75e2006-01-17 07:03:41 +0100553 spin_unlock(&init_mm.page_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 }
Andi Kleen1a2b4412008-01-30 13:33:54 +0100555 __flush_tlb_all();
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700556
Andi Kleence0c0e52008-05-02 11:46:49 +0200557 update_page_count(PG_LEVEL_1G, pages);
Andi Kleencc615032008-03-12 03:53:28 +0100558
Yinghai Lu1a0db382008-06-24 14:56:20 -0700559 return last_map_addr;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100560}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400562static unsigned long __meminit
Yinghai Lub50efd22008-07-08 01:41:05 -0700563phys_pud_update(pgd_t *pgd, unsigned long addr, unsigned long end,
564 unsigned long page_size_mask)
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400565{
566 pud_t *pud;
567
568 pud = (pud_t *)pgd_page_vaddr(*pgd);
569
Yinghai Lub50efd22008-07-08 01:41:05 -0700570 return phys_pud_init(pud, addr, end, page_size_mask);
Jeremy Fitzhardinge4f9c11d2008-06-25 00:19:19 -0400571}
572
Pekka Enberge53fb042009-03-05 14:55:07 +0200573unsigned long __init
Pekka Enbergf7650902009-03-05 14:55:05 +0200574kernel_physical_mapping_init(unsigned long start,
575 unsigned long end,
576 unsigned long page_size_mask)
Yinghai Lub50efd22008-07-08 01:41:05 -0700577{
578
579 unsigned long next, last_map_addr = end;
580
581 start = (unsigned long)__va(start);
582 end = (unsigned long)__va(end);
583
584 for (; start < end; start = next) {
585 pgd_t *pgd = pgd_offset_k(start);
586 unsigned long pud_phys;
587 pud_t *pud;
588
Jack Steinere22146e2008-07-16 11:11:59 -0500589 next = (start + PGDIR_SIZE) & PGDIR_MASK;
Yinghai Lub50efd22008-07-08 01:41:05 -0700590 if (next > end)
591 next = end;
592
593 if (pgd_val(*pgd)) {
594 last_map_addr = phys_pud_update(pgd, __pa(start),
595 __pa(end), page_size_mask);
596 continue;
597 }
598
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100599 pud = alloc_low_page(&pud_phys);
Yinghai Lub50efd22008-07-08 01:41:05 -0700600 last_map_addr = phys_pud_init(pud, __pa(start), __pa(next),
601 page_size_mask);
602 unmap_low_page(pud);
Jan Beulich8ae3a5a2008-08-21 14:27:22 +0100603
604 spin_lock(&init_mm.page_table_lock);
605 pgd_populate(&init_mm, pgd, __va(pud_phys));
606 spin_unlock(&init_mm.page_table_lock);
Yinghai Lub50efd22008-07-08 01:41:05 -0700607 }
Suresh Siddhaa2699e42008-09-23 14:00:38 -0700608 __flush_tlb_all();
Yinghai Lub50efd22008-07-08 01:41:05 -0700609
610 return last_map_addr;
611}
Yinghai Lu7b16eb82008-07-09 20:15:02 -0700612
Matt Tolentino2b976902005-06-23 00:08:06 -0700613#ifndef CONFIG_NUMA
Yinghai Lu1f75d7e2008-06-22 02:44:49 -0700614void __init initmem_init(unsigned long start_pfn, unsigned long end_pfn)
615{
616 unsigned long bootmap_size, bootmap;
617
618 bootmap_size = bootmem_bootmap_pages(end_pfn)<<PAGE_SHIFT;
619 bootmap = find_e820_area(0, end_pfn<<PAGE_SHIFT, bootmap_size,
620 PAGE_SIZE);
621 if (bootmap == -1L)
622 panic("Cannot find bootmem map of size %ld\n", bootmap_size);
Yinghai Lu346cafe2008-06-23 03:06:14 -0700623 /* don't touch min_low_pfn */
624 bootmap_size = init_bootmem_node(NODE_DATA(0), bootmap >> PAGE_SHIFT,
625 0, end_pfn);
Yinghai Lu1f75d7e2008-06-22 02:44:49 -0700626 e820_register_active_regions(0, start_pfn, end_pfn);
627 free_bootmem_with_active_regions(0, end_pfn);
628 early_res_to_bootmem(0, end_pfn<<PAGE_SHIFT);
629 reserve_bootmem(bootmap, bootmap_size, BOOTMEM_DEFAULT);
630}
631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632void __init paging_init(void)
633{
Mel Gorman6391af12006-10-11 01:20:39 -0700634 unsigned long max_zone_pfns[MAX_NR_ZONES];
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100635
Mel Gorman6391af12006-10-11 01:20:39 -0700636 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
637 max_zone_pfns[ZONE_DMA] = MAX_DMA_PFN;
638 max_zone_pfns[ZONE_DMA32] = MAX_DMA32_PFN;
Yinghai Luc987d122008-06-24 22:14:09 -0700639 max_zone_pfns[ZONE_NORMAL] = max_pfn;
Mel Gorman6391af12006-10-11 01:20:39 -0700640
Yinghai Luc987d122008-06-24 22:14:09 -0700641 memory_present(0, 0, max_pfn);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100642 sparse_init();
Mel Gorman5cb248a2006-09-27 01:49:52 -0700643 free_area_init_nodes(max_zone_pfns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644}
645#endif
646
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100647/*
Matt Tolentino44df75e2006-01-17 07:03:41 +0100648 * Memory hotplug specific functions
Matt Tolentino44df75e2006-01-17 07:03:41 +0100649 */
Yasunori Gotobc02af92006-06-27 02:53:30 -0700650#ifdef CONFIG_MEMORY_HOTPLUG
651/*
Yasunori Gotobc02af92006-06-27 02:53:30 -0700652 * Memory is added always to NORMAL zone. This means you will never get
653 * additional DMA/DMA32 memory.
654 */
655int arch_add_memory(int nid, u64 start, u64 size)
656{
657 struct pglist_data *pgdat = NODE_DATA(nid);
Christoph Lameter776ed982006-09-25 23:31:09 -0700658 struct zone *zone = pgdat->node_zones + ZONE_NORMAL;
Andi Kleencc615032008-03-12 03:53:28 +0100659 unsigned long last_mapped_pfn, start_pfn = start >> PAGE_SHIFT;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700660 unsigned long nr_pages = size >> PAGE_SHIFT;
661 int ret;
662
Shaohua Li60817c92008-10-27 13:03:18 -0700663 last_mapped_pfn = init_memory_mapping(start, start + size);
Andi Kleencc615032008-03-12 03:53:28 +0100664 if (last_mapped_pfn > max_pfn_mapped)
665 max_pfn_mapped = last_mapped_pfn;
Keith Mannthey45e0b782006-09-30 23:27:09 -0700666
Gary Hadec04fc582009-01-06 14:39:14 -0800667 ret = __add_pages(nid, zone, start_pfn, nr_pages);
Gary Hadefe8b8682008-10-28 16:43:14 -0700668 WARN_ON_ONCE(ret);
Yasunori Gotobc02af92006-06-27 02:53:30 -0700669
Yasunori Gotobc02af92006-06-27 02:53:30 -0700670 return ret;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700671}
672EXPORT_SYMBOL_GPL(arch_add_memory);
673
Yasunori Goto82432292006-11-18 22:19:40 -0800674#if !defined(CONFIG_ACPI_NUMA) && defined(CONFIG_NUMA)
Keith Mannthey4942e992006-09-30 23:27:06 -0700675int memory_add_physaddr_to_nid(u64 start)
676{
677 return 0;
678}
Keith Mannthey8c2676a2006-09-30 23:27:07 -0700679EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
Keith Mannthey4942e992006-09-30 23:27:06 -0700680#endif
681
Keith Mannthey45e0b782006-09-30 23:27:09 -0700682#endif /* CONFIG_MEMORY_HOTPLUG */
683
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100684static struct kcore_list kcore_mem, kcore_vmalloc, kcore_kernel,
685 kcore_modules, kcore_vsyscall;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
687void __init mem_init(void)
688{
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200689 long codesize, reservedpages, datasize, initsize;
Yinghai Lu11a6b0c2008-10-14 18:59:18 -0700690 unsigned long absent_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Jon Mason0dc243a2006-06-26 13:58:11 +0200692 pci_iommu_alloc();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Yinghai Lu48ddb152008-01-30 13:32:36 +0100694 /* clear_bss() already clear the empty_zero_page */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
696 reservedpages = 0;
697
698 /* this will put all low memory onto the freelists */
Matt Tolentino2b976902005-06-23 00:08:06 -0700699#ifdef CONFIG_NUMA
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200700 totalram_pages = numa_free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701#else
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200702 totalram_pages = free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703#endif
Yinghai Lu11a6b0c2008-10-14 18:59:18 -0700704
705 absent_pages = absent_pages_in_range(0, max_pfn);
706 reservedpages = max_pfn - totalram_pages - absent_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 after_bootmem = 1;
708
709 codesize = (unsigned long) &_etext - (unsigned long) &_text;
710 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
711 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
712
713 /* Register memory areas for /proc/kcore */
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100714 kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
715 kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 VMALLOC_END-VMALLOC_START);
717 kclist_add(&kcore_kernel, &_stext, _end - _stext);
718 kclist_add(&kcore_modules, (void *)MODULES_VADDR, MODULES_LEN);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100719 kclist_add(&kcore_vsyscall, (void *)VSYSCALL_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 VSYSCALL_END - VSYSCALL_START);
721
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100722 printk(KERN_INFO "Memory: %luk/%luk available (%ldk kernel code, "
Yinghai Lu11a6b0c2008-10-14 18:59:18 -0700723 "%ldk absent, %ldk reserved, %ldk data, %ldk init)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
Yinghai Luc987d122008-06-24 22:14:09 -0700725 max_pfn << (PAGE_SHIFT-10),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 codesize >> 10,
Yinghai Lu11a6b0c2008-10-14 18:59:18 -0700727 absent_pages << (PAGE_SHIFT-10),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 reservedpages << (PAGE_SHIFT-10),
729 datasize >> 10,
730 initsize >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731}
732
Arjan van de Ven67df1972006-01-06 00:12:04 -0800733#ifdef CONFIG_DEBUG_RODATA
Arjan van de Venedeed302008-01-30 13:34:08 +0100734const int rodata_test_data = 0xC3;
735EXPORT_SYMBOL_GPL(rodata_test_data);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800736
Steven Rostedt16239632009-02-17 17:57:30 -0500737static int kernel_set_to_readonly;
738
739void set_kernel_text_rw(void)
740{
741 unsigned long start = PFN_ALIGN(_stext);
742 unsigned long end = PFN_ALIGN(__start_rodata);
743
744 if (!kernel_set_to_readonly)
745 return;
746
747 pr_debug("Set kernel text: %lx - %lx for read write\n",
748 start, end);
749
750 set_memory_rw(start, (end - start) >> PAGE_SHIFT);
751}
752
753void set_kernel_text_ro(void)
754{
755 unsigned long start = PFN_ALIGN(_stext);
756 unsigned long end = PFN_ALIGN(__start_rodata);
757
758 if (!kernel_set_to_readonly)
759 return;
760
761 pr_debug("Set kernel text: %lx - %lx for read only\n",
762 start, end);
763
764 set_memory_ro(start, (end - start) >> PAGE_SHIFT);
765}
766
Arjan van de Ven67df1972006-01-06 00:12:04 -0800767void mark_rodata_ro(void)
768{
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -0500769 unsigned long start = PFN_ALIGN(_stext), end = PFN_ALIGN(__end_rodata);
Steven Rostedt8f0f9962008-05-12 21:20:56 +0200770 unsigned long rodata_start =
771 ((unsigned long)__start_rodata + PAGE_SIZE - 1) & PAGE_MASK;
772
Jan Beulich6fb14752007-05-02 19:27:10 +0200773 printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700774 (end - start) >> 10);
Arjan van de Ven984bb802008-02-06 22:39:45 +0100775 set_memory_ro(start, (end - start) >> PAGE_SHIFT);
776
Steven Rostedt16239632009-02-17 17:57:30 -0500777 kernel_set_to_readonly = 1;
778
Arjan van de Ven984bb802008-02-06 22:39:45 +0100779 /*
780 * The rodata section (but not the kernel text!) should also be
781 * not-executable.
782 */
Pekka Paalanen72b59d62008-05-12 21:21:01 +0200783 set_memory_nx(rodata_start, (end - rodata_start) >> PAGE_SHIFT);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800784
Arjan van de Ven1a487252008-01-30 13:34:09 +0100785 rodata_test();
786
Andi Kleen0c42f392008-01-30 13:33:42 +0100787#ifdef CONFIG_CPA_DEBUG
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100788 printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, end);
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100789 set_memory_rw(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +0100790
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100791 printk(KERN_INFO "Testing CPA: again\n");
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100792 set_memory_ro(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +0100793#endif
Arjan van de Ven67df1972006-01-06 00:12:04 -0800794}
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -0500795
Arjan van de Ven67df1972006-01-06 00:12:04 -0800796#endif
797
Yinghai Lud2dbf342008-06-13 02:00:56 -0700798int __init reserve_bootmem_generic(unsigned long phys, unsigned long len,
799 int flags)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100800{
Matt Tolentino2b976902005-06-23 00:08:06 -0700801#ifdef CONFIG_NUMA
Yinghai Lu8b3cd092008-03-18 12:50:21 -0700802 int nid, next_nid;
Yinghai Lu6a07a0e2008-06-23 14:02:36 -0700803 int ret;
Andi Kleen5e58a022006-11-14 16:57:46 +0100804#endif
805 unsigned long pfn = phys >> PAGE_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100806
Yinghai Luc987d122008-06-24 22:14:09 -0700807 if (pfn >= max_pfn) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100808 /*
809 * This can happen with kdump kernels when accessing
810 * firmware tables:
811 */
Thomas Gleixner67794292008-03-21 21:27:10 +0100812 if (pfn < max_pfn_mapped)
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200813 return -EFAULT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100814
Yinghai Lu6a07a0e2008-06-23 14:02:36 -0700815 printk(KERN_ERR "reserve_bootmem: illegal reserve %lx %lu\n",
Andi Kleen5e58a022006-11-14 16:57:46 +0100816 phys, len);
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200817 return -EFAULT;
Andi Kleen5e58a022006-11-14 16:57:46 +0100818 }
819
820 /* Should check here against the e820 map to avoid double free */
821#ifdef CONFIG_NUMA
Yinghai Lu8b3cd092008-03-18 12:50:21 -0700822 nid = phys_to_nid(phys);
823 next_nid = phys_to_nid(phys + len - 1);
824 if (nid == next_nid)
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200825 ret = reserve_bootmem_node(NODE_DATA(nid), phys, len, flags);
Yinghai Lu8b3cd092008-03-18 12:50:21 -0700826 else
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200827 ret = reserve_bootmem(phys, len, flags);
828
829 if (ret != 0)
830 return ret;
831
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100832#else
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800833 reserve_bootmem(phys, len, BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834#endif
Yinghai Lu8b3cd092008-03-18 12:50:21 -0700835
Mel Gorman0e0b8642006-09-27 01:49:56 -0700836 if (phys+len <= MAX_DMA_PFN*PAGE_SIZE) {
Andi Kleene18c6872005-11-05 17:25:53 +0100837 dma_reserve += len / PAGE_SIZE;
Mel Gorman0e0b8642006-09-27 01:49:56 -0700838 set_dma_reserve(dma_reserve);
839 }
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200840
841 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842}
843
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100844int kern_addr_valid(unsigned long addr)
845{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 unsigned long above = ((long)addr) >> __VIRTUAL_MASK_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100847 pgd_t *pgd;
848 pud_t *pud;
849 pmd_t *pmd;
850 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
852 if (above != 0 && above != -1UL)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100853 return 0;
854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 pgd = pgd_offset_k(addr);
856 if (pgd_none(*pgd))
857 return 0;
858
859 pud = pud_offset(pgd, addr);
860 if (pud_none(*pud))
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100861 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
863 pmd = pmd_offset(pud, addr);
864 if (pmd_none(*pmd))
865 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100866
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 if (pmd_large(*pmd))
868 return pfn_valid(pmd_pfn(*pmd));
869
870 pte = pte_offset_kernel(pmd, addr);
871 if (pte_none(*pte))
872 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100873
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 return pfn_valid(pte_pfn(*pte));
875}
876
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100877/*
878 * A pseudo VMA to allow ptrace access for the vsyscall page. This only
879 * covers the 64bit vsyscall page now. 32bit has a real VMA now and does
880 * not need special handling anymore:
881 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882static struct vm_area_struct gate_vma = {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100883 .vm_start = VSYSCALL_START,
884 .vm_end = VSYSCALL_START + (VSYSCALL_MAPPED_PAGES * PAGE_SIZE),
885 .vm_page_prot = PAGE_READONLY_EXEC,
886 .vm_flags = VM_READ | VM_EXEC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887};
888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889struct vm_area_struct *get_gate_vma(struct task_struct *tsk)
890{
891#ifdef CONFIG_IA32_EMULATION
Andi Kleen1e014412005-04-16 15:24:55 -0700892 if (test_tsk_thread_flag(tsk, TIF_IA32))
893 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894#endif
895 return &gate_vma;
896}
897
898int in_gate_area(struct task_struct *task, unsigned long addr)
899{
900 struct vm_area_struct *vma = get_gate_vma(task);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100901
Andi Kleen1e014412005-04-16 15:24:55 -0700902 if (!vma)
903 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 return (addr >= vma->vm_start) && (addr < vma->vm_end);
906}
907
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100908/*
909 * Use this when you have no reliable task/vma, typically from interrupt
910 * context. It is less reliable than using the task's vma and may give
911 * false positives:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 */
913int in_gate_area_no_task(unsigned long addr)
914{
Andi Kleen1e014412005-04-16 15:24:55 -0700915 return (addr >= VSYSCALL_START) && (addr < VSYSCALL_END);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916}
Zou Nan hai2e1c49d2007-06-01 00:46:28 -0700917
Andi Kleen2aae9502007-07-21 17:10:01 +0200918const char *arch_vma_name(struct vm_area_struct *vma)
919{
920 if (vma->vm_mm && vma->vm_start == (long)vma->vm_mm->context.vdso)
921 return "[vdso]";
922 if (vma == &gate_vma)
923 return "[vsyscall]";
924 return NULL;
925}
Christoph Lameter0889eba2007-10-16 01:24:15 -0700926
927#ifdef CONFIG_SPARSEMEM_VMEMMAP
928/*
929 * Initialise the sparsemem vmemmap using huge-pages at the PMD level.
930 */
Yinghai Luc2b91e22008-04-12 01:19:24 -0700931static long __meminitdata addr_start, addr_end;
932static void __meminitdata *p_start, *p_end;
933static int __meminitdata node_start;
934
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100935int __meminit
936vmemmap_populate(struct page *start_page, unsigned long size, int node)
Christoph Lameter0889eba2007-10-16 01:24:15 -0700937{
938 unsigned long addr = (unsigned long)start_page;
939 unsigned long end = (unsigned long)(start_page + size);
940 unsigned long next;
941 pgd_t *pgd;
942 pud_t *pud;
943 pmd_t *pmd;
944
945 for (; addr < end; addr = next) {
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -0400946 void *p = NULL;
Christoph Lameter0889eba2007-10-16 01:24:15 -0700947
948 pgd = vmemmap_pgd_populate(addr, node);
949 if (!pgd)
950 return -ENOMEM;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100951
Christoph Lameter0889eba2007-10-16 01:24:15 -0700952 pud = vmemmap_pud_populate(pgd, addr, node);
953 if (!pud)
954 return -ENOMEM;
955
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -0400956 if (!cpu_has_pse) {
957 next = (addr + PAGE_SIZE) & PAGE_MASK;
958 pmd = vmemmap_pmd_populate(pud, addr, node);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100959
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -0400960 if (!pmd)
961 return -ENOMEM;
962
963 p = vmemmap_pte_populate(pmd, addr, node);
964
Christoph Lameter0889eba2007-10-16 01:24:15 -0700965 if (!p)
966 return -ENOMEM;
967
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -0400968 addr_end = addr + PAGE_SIZE;
969 p_end = p + PAGE_SIZE;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100970 } else {
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -0400971 next = pmd_addr_end(addr, end);
972
973 pmd = pmd_offset(pud, addr);
974 if (pmd_none(*pmd)) {
975 pte_t entry;
976
977 p = vmemmap_alloc_block(PMD_SIZE, node);
978 if (!p)
979 return -ENOMEM;
980
981 entry = pfn_pte(__pa(p) >> PAGE_SHIFT,
982 PAGE_KERNEL_LARGE);
983 set_pmd(pmd, __pmd(pte_val(entry)));
984
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -0400985 /* check to see if we have contiguous blocks */
986 if (p_end != p || node_start != node) {
987 if (p_start)
988 printk(KERN_DEBUG " [%lx-%lx] PMD -> [%p-%p] on node %d\n",
989 addr_start, addr_end-1, p_start, p_end-1, node_start);
990 addr_start = addr;
991 node_start = node;
992 p_start = p;
993 }
Yinghai Lu49c980d2008-07-03 12:29:34 -0700994
995 addr_end = addr + PMD_SIZE;
996 p_end = p + PMD_SIZE;
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -0400997 } else
998 vmemmap_verify((pte_t *)pmd, node, addr, next);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100999 }
Jeremy Fitzhardinge7c934d32008-06-25 00:19:20 -04001000
Christoph Lameter0889eba2007-10-16 01:24:15 -07001001 }
Christoph Lameter0889eba2007-10-16 01:24:15 -07001002 return 0;
1003}
Yinghai Luc2b91e22008-04-12 01:19:24 -07001004
1005void __meminit vmemmap_populate_print_last(void)
1006{
1007 if (p_start) {
1008 printk(KERN_DEBUG " [%lx-%lx] PMD -> [%p-%p] on node %d\n",
1009 addr_start, addr_end-1, p_start, p_end-1, node_start);
1010 p_start = NULL;
1011 p_end = NULL;
1012 node_start = 0;
1013 }
1014}
Christoph Lameter0889eba2007-10-16 01:24:15 -07001015#endif