blob: 5266f3141d6cc5d1c5285e396e72dbc5db11b47c [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>
21#include <linux/pagemap.h>
22#include <linux/bootmem.h>
23#include <linux/proc_fs.h>
Andi Kleen59170892005-11-05 17:25:53 +010024#include <linux/pci.h>
Jan Beulich6fb14752007-05-02 19:27:10 +020025#include <linux/pfn.h>
Randy Dunlapc9cf5522006-06-27 02:53:52 -070026#include <linux/poison.h>
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +010027#include <linux/dma-mapping.h>
Matt Tolentino44df75e2006-01-17 07:03:41 +010028#include <linux/module.h>
29#include <linux/memory_hotplug.h>
Konrad Rzeszutekae32b122007-05-02 19:27:11 +020030#include <linux/nmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32#include <asm/processor.h>
33#include <asm/system.h>
34#include <asm/uaccess.h>
35#include <asm/pgtable.h>
36#include <asm/pgalloc.h>
37#include <asm/dma.h>
38#include <asm/fixmap.h>
39#include <asm/e820.h>
40#include <asm/apic.h>
41#include <asm/tlb.h>
42#include <asm/mmu_context.h>
43#include <asm/proto.h>
44#include <asm/smp.h>
Andi Kleen2bc04142005-11-05 17:25:53 +010045#include <asm/sections.h>
Thomas Gleixner718fc132008-01-30 13:30:17 +010046#include <asm/kdebug.h>
Thomas Gleixneraaa64e02008-01-30 13:30:17 +010047#include <asm/numa.h>
Harvey Harrison7bfeab92008-02-12 12:12:01 -080048#include <asm/cacheflush.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Yinghai Lu064d25f2008-06-16 19:58:28 -070050/*
51 * PFN of last memory page.
52 */
53unsigned long end_pfn;
54
55/*
56 * end_pfn only includes RAM, while max_pfn_mapped includes all e820 entries.
57 * The direct mapping extends to max_pfn_mapped, so that we can directly access
58 * apertures, ACPI and other tables without having to play with fixmaps.
59 */
60unsigned long max_pfn_mapped;
61
Andi Kleene18c6872005-11-05 17:25:53 +010062static unsigned long dma_reserve __initdata;
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
65
Ingo Molnar00d1c5e2008-04-17 17:40:45 +020066int direct_gbpages __meminitdata
67#ifdef CONFIG_DIRECT_GBPAGES
68 = 1
69#endif
70;
71
72static int __init parse_direct_gbpages_off(char *arg)
73{
74 direct_gbpages = 0;
75 return 0;
76}
77early_param("nogbpages", parse_direct_gbpages_off);
78
79static int __init parse_direct_gbpages_on(char *arg)
80{
81 direct_gbpages = 1;
82 return 0;
83}
84early_param("gbpages", parse_direct_gbpages_on);
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086/*
87 * NOTE: pagetable_init alloc all the fixmap pagetables contiguous on the
88 * physical space so we can cache the place of the first one and move
89 * around without checking the pgd every time.
90 */
91
92void show_mem(void)
93{
Andi Kleene92343c2005-09-12 18:49:24 +020094 long i, total = 0, reserved = 0;
95 long shared = 0, cached = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 struct page *page;
Thomas Gleixner14a62c32008-01-30 13:34:10 +010097 pg_data_t *pgdat;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Andi Kleene92343c2005-09-12 18:49:24 +020099 printk(KERN_INFO "Mem-info:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 show_free_areas();
KAMEZAWA Hiroyukiec936fc2006-03-27 01:15:59 -0800101 for_each_online_pgdat(pgdat) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100102 for (i = 0; i < pgdat->node_spanned_pages; ++i) {
103 /*
104 * This loop can take a while with 256 GB and
105 * 4k pages so defer the NMI watchdog:
106 */
107 if (unlikely(i % MAX_ORDER_NR_PAGES == 0))
Konrad Rzeszutekae32b122007-05-02 19:27:11 +0200108 touch_nmi_watchdog();
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100109
Bob Picco12710a52007-06-08 13:47:00 -0700110 if (!pfn_valid(pgdat->node_start_pfn + i))
111 continue;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 page = pfn_to_page(pgdat->node_start_pfn + i);
114 total++;
Andi Kleene92343c2005-09-12 18:49:24 +0200115 if (PageReserved(page))
116 reserved++;
117 else if (PageSwapCache(page))
118 cached++;
119 else if (page_count(page))
120 shared += page_count(page) - 1;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100121 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 }
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100123 printk(KERN_INFO "%lu pages of RAM\n", total);
124 printk(KERN_INFO "%lu reserved pages\n", reserved);
125 printk(KERN_INFO "%lu pages shared\n", shared);
126 printk(KERN_INFO "%lu pages swap cached\n", cached);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127}
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129int after_bootmem;
130
Andi Kleen5f44a662006-03-25 16:30:25 +0100131static __init void *spp_getpage(void)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100132{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 void *ptr;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 if (after_bootmem)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100136 ptr = (void *) get_zeroed_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 else
138 ptr = alloc_bootmem_pages(PAGE_SIZE);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100139
140 if (!ptr || ((unsigned long)ptr & ~PAGE_MASK)) {
141 panic("set_pte_phys: cannot allocate page data %s\n",
142 after_bootmem ? "after bootmem" : "");
143 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100145 pr_debug("spp_getpage %p\n", ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100147 return ptr;
148}
149
Daniel J Blueman0b1faee2008-06-15 12:32:15 +0100150static __init void
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100151set_pte_phys(unsigned long vaddr, unsigned long phys, pgprot_t prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
153 pgd_t *pgd;
154 pud_t *pud;
155 pmd_t *pmd;
156 pte_t *pte, new_pte;
157
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100158 pr_debug("set_pte_phys %lx to %lx\n", vaddr, phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160 pgd = pgd_offset_k(vaddr);
161 if (pgd_none(*pgd)) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100162 printk(KERN_ERR
163 "PGD FIXMAP MISSING, it should be setup in head.S!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 return;
165 }
166 pud = pud_offset(pgd, vaddr);
167 if (pud_none(*pud)) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100168 pmd = (pmd_t *) spp_getpage();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 set_pud(pud, __pud(__pa(pmd) | _KERNPG_TABLE | _PAGE_USER));
170 if (pmd != pmd_offset(pud, 0)) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100171 printk(KERN_ERR "PAGETABLE BUG #01! %p <-> %p\n",
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100172 pmd, pmd_offset(pud, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 return;
174 }
175 }
176 pmd = pmd_offset(pud, vaddr);
177 if (pmd_none(*pmd)) {
178 pte = (pte_t *) spp_getpage();
179 set_pmd(pmd, __pmd(__pa(pte) | _KERNPG_TABLE | _PAGE_USER));
180 if (pte != pte_offset_kernel(pmd, 0)) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100181 printk(KERN_ERR "PAGETABLE BUG #02!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 return;
183 }
184 }
185 new_pte = pfn_pte(phys >> PAGE_SHIFT, prot);
186
187 pte = pte_offset_kernel(pmd, vaddr);
Ingo Molnar70c9f592008-04-25 18:05:57 +0200188 if (!pte_none(*pte) && pte_val(new_pte) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 pte_val(*pte) != (pte_val(new_pte) & __supported_pte_mask))
190 pte_ERROR(*pte);
191 set_pte(pte, new_pte);
192
193 /*
194 * It's enough to flush this one mapping.
195 * (PGE mappings get flushed as well)
196 */
197 __flush_tlb_one(vaddr);
198}
199
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100200/*
Ingo Molnar88f3aec2008-02-21 11:04:11 +0100201 * The head.S code sets up the kernel high mapping:
202 *
203 * from __START_KERNEL_map to __START_KERNEL_map + size (== _end-_text)
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100204 *
205 * phys_addr holds the negative offset to the kernel, which is added
206 * to the compile time generated pmds. This results in invalid pmds up
207 * to the point where we hit the physaddr 0 mapping.
208 *
209 * We limit the mappings to the region from _text to _end. _end is
210 * rounded up to the 2MB boundary. This catches the invalid pmds as
211 * well, as they are located before _text:
212 */
213void __init cleanup_highmap(void)
214{
215 unsigned long vaddr = __START_KERNEL_map;
216 unsigned long end = round_up((unsigned long)_end, PMD_SIZE) - 1;
217 pmd_t *pmd = level2_kernel_pgt;
218 pmd_t *last_pmd = pmd + PTRS_PER_PMD;
219
220 for (; pmd < last_pmd; pmd++, vaddr += PMD_SIZE) {
Hugh Dickins2884f112008-05-28 19:36:07 +0100221 if (pmd_none(*pmd))
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100222 continue;
223 if (vaddr < (unsigned long) _text || vaddr > end)
224 set_pmd(pmd, __pmd(0));
225 }
226}
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228/* NOTE: this is meant to be run only at boot */
Daniel J Blueman0b1faee2008-06-15 12:32:15 +0100229void __init __set_fixmap(enum fixed_addresses idx, unsigned long phys, pgprot_t prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
231 unsigned long address = __fix_to_virt(idx);
232
233 if (idx >= __end_of_fixed_addresses) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100234 printk(KERN_ERR "Invalid __set_fixmap\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 return;
236 }
237 set_pte_phys(address, phys, prot);
238}
239
Andi Kleen75175272008-01-30 13:33:17 +0100240static unsigned long __initdata table_start;
241static unsigned long __meminitdata table_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200243static __meminit void *alloc_low_page(unsigned long *phys)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100244{
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200245 unsigned long pfn = table_end++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 void *adr;
247
Matt Tolentino44df75e2006-01-17 07:03:41 +0100248 if (after_bootmem) {
249 adr = (void *)get_zeroed_page(GFP_ATOMIC);
250 *phys = __pa(adr);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100251
Matt Tolentino44df75e2006-01-17 07:03:41 +0100252 return adr;
253 }
254
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100255 if (pfn >= end_pfn)
256 panic("alloc_low_page: ran out of memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200258 adr = early_ioremap(pfn * PAGE_SIZE, PAGE_SIZE);
259 memset(adr, 0, PAGE_SIZE);
260 *phys = pfn * PAGE_SIZE;
261 return adr;
262}
263
264static __meminit void unmap_low_page(void *adr)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100265{
Matt Tolentino44df75e2006-01-17 07:03:41 +0100266 if (after_bootmem)
267 return;
268
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200269 early_iounmap(adr, PAGE_SIZE);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100270}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100272/* Must run before zap_low_mappings */
Yasunori Gotoa3142c82007-05-08 00:23:07 -0700273__meminit void *early_ioremap(unsigned long addr, unsigned long size)
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100274{
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200275 pmd_t *pmd, *last_pmd;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100276 unsigned long vaddr;
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200277 int i, pmds;
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100278
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200279 pmds = ((addr & ~PMD_MASK) + size + ~PMD_MASK) / PMD_SIZE;
280 vaddr = __START_KERNEL_map;
281 pmd = level2_kernel_pgt;
282 last_pmd = level2_kernel_pgt + PTRS_PER_PMD - 1;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100283
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200284 for (; pmd <= last_pmd; pmd++, vaddr += PMD_SIZE) {
285 for (i = 0; i < pmds; i++) {
286 if (pmd_present(pmd[i]))
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100287 goto continue_outer_loop;
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200288 }
289 vaddr += addr & ~PMD_MASK;
290 addr &= PMD_MASK;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100291
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200292 for (i = 0; i < pmds; i++, addr += PMD_SIZE)
Joerg Roedel929fd582008-01-30 13:31:08 +0100293 set_pmd(pmd+i, __pmd(addr | __PAGE_KERNEL_LARGE_EXEC));
Andi Kleen1a2b4412008-01-30 13:33:54 +0100294 __flush_tlb_all();
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100295
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200296 return (void *)vaddr;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100297continue_outer_loop:
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200298 ;
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100299 }
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100300 printk(KERN_ERR "early_ioremap(0x%lx, %lu) failed\n", addr, size);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100301
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200302 return NULL;
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100303}
304
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100305/*
306 * To avoid virtual aliases later:
307 */
Yasunori Gotoa3142c82007-05-08 00:23:07 -0700308__meminit void early_iounmap(void *addr, unsigned long size)
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100309{
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200310 unsigned long vaddr;
311 pmd_t *pmd;
312 int i, pmds;
313
314 vaddr = (unsigned long)addr;
315 pmds = ((vaddr & ~PMD_MASK) + size + ~PMD_MASK) / PMD_SIZE;
316 pmd = level2_kernel_pgt + pmd_index(vaddr);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100317
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200318 for (i = 0; i < pmds; i++)
319 pmd_clear(pmd + i);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100320
Andi Kleen1a2b4412008-01-30 13:33:54 +0100321 __flush_tlb_all();
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100322}
323
Andi Kleencc615032008-03-12 03:53:28 +0100324static unsigned long __meminit
Keith Mannthey6ad91652006-09-26 10:52:36 +0200325phys_pmd_init(pmd_t *pmd_page, unsigned long address, unsigned long end)
Matt Tolentino44df75e2006-01-17 07:03:41 +0100326{
Keith Mannthey6ad91652006-09-26 10:52:36 +0200327 int i = pmd_index(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Keith Mannthey6ad91652006-09-26 10:52:36 +0200329 for (; i < PTRS_PER_PMD; i++, address += PMD_SIZE) {
Keith Mannthey6ad91652006-09-26 10:52:36 +0200330 pmd_t *pmd = pmd_page + pmd_index(address);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100331
Jan Beulich5f51e132006-06-26 13:59:02 +0200332 if (address >= end) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100333 if (!after_bootmem) {
Jan Beulich5f51e132006-06-26 13:59:02 +0200334 for (; i < PTRS_PER_PMD; i++, pmd++)
335 set_pmd(pmd, __pmd(0));
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100336 }
Matt Tolentino44df75e2006-01-17 07:03:41 +0100337 break;
338 }
Keith Mannthey6ad91652006-09-26 10:52:36 +0200339
340 if (pmd_val(*pmd))
341 continue;
342
Andi Kleend4f71f72008-02-04 16:48:09 +0100343 set_pte((pte_t *)pmd,
344 pfn_pte(address >> PAGE_SHIFT, PAGE_KERNEL_LARGE));
Matt Tolentino44df75e2006-01-17 07:03:41 +0100345 }
Andi Kleencc615032008-03-12 03:53:28 +0100346 return address;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100347}
348
Andi Kleencc615032008-03-12 03:53:28 +0100349static unsigned long __meminit
Matt Tolentino44df75e2006-01-17 07:03:41 +0100350phys_pmd_update(pud_t *pud, unsigned long address, unsigned long end)
351{
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100352 pmd_t *pmd = pmd_offset(pud, 0);
Andi Kleencc615032008-03-12 03:53:28 +0100353 unsigned long last_map_addr;
354
Keith Mannthey6ad91652006-09-26 10:52:36 +0200355 spin_lock(&init_mm.page_table_lock);
Andi Kleencc615032008-03-12 03:53:28 +0100356 last_map_addr = phys_pmd_init(pmd, address, end);
Keith Mannthey6ad91652006-09-26 10:52:36 +0200357 spin_unlock(&init_mm.page_table_lock);
358 __flush_tlb_all();
Andi Kleencc615032008-03-12 03:53:28 +0100359 return last_map_addr;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100360}
361
Andi Kleencc615032008-03-12 03:53:28 +0100362static unsigned long __meminit
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100363phys_pud_init(pud_t *pud_page, unsigned long addr, unsigned long end)
364{
Andi Kleencc615032008-03-12 03:53:28 +0100365 unsigned long last_map_addr = end;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200366 int i = pud_index(addr);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100367
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100368 for (; i < PTRS_PER_PUD; i++, addr = (addr & PUD_MASK) + PUD_SIZE) {
Keith Mannthey6ad91652006-09-26 10:52:36 +0200369 unsigned long pmd_phys;
370 pud_t *pud = pud_page + pud_index(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 pmd_t *pmd;
372
Keith Mannthey6ad91652006-09-26 10:52:36 +0200373 if (addr >= end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100376 if (!after_bootmem &&
377 !e820_any_mapped(addr, addr+PUD_SIZE, 0)) {
378 set_pud(pud, __pud(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 continue;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Keith Mannthey6ad91652006-09-26 10:52:36 +0200382 if (pud_val(*pud)) {
Andi Kleenef925762008-04-17 17:40:45 +0200383 if (!pud_large(*pud))
Andi Kleencc615032008-03-12 03:53:28 +0100384 last_map_addr = phys_pmd_update(pud, addr, end);
Andi Kleenef925762008-04-17 17:40:45 +0200385 continue;
386 }
387
388 if (direct_gbpages) {
389 set_pte((pte_t *)pud,
390 pfn_pte(addr >> PAGE_SHIFT, PAGE_KERNEL_LARGE));
Andi Kleencc615032008-03-12 03:53:28 +0100391 last_map_addr = (addr & PUD_MASK) + PUD_SIZE;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200392 continue;
393 }
394
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200395 pmd = alloc_low_page(&pmd_phys);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100396
Matt Tolentino44df75e2006-01-17 07:03:41 +0100397 spin_lock(&init_mm.page_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 set_pud(pud, __pud(pmd_phys | _KERNPG_TABLE));
Andi Kleencc615032008-03-12 03:53:28 +0100399 last_map_addr = phys_pmd_init(pmd, addr, end);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100400 spin_unlock(&init_mm.page_table_lock);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100401
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200402 unmap_low_page(pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 }
Andi Kleen1a2b4412008-01-30 13:33:54 +0100404 __flush_tlb_all();
Andi Kleencc615032008-03-12 03:53:28 +0100405
406 return last_map_addr >> PAGE_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100407}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409static void __init find_early_table_space(unsigned long end)
410{
Andi Kleen6c5acd12006-01-11 22:46:57 +0100411 unsigned long puds, pmds, tables, start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
413 puds = (end + PUD_SIZE - 1) >> PUD_SHIFT;
Andi Kleenef925762008-04-17 17:40:45 +0200414 tables = round_up(puds * sizeof(pud_t), PAGE_SIZE);
415 if (!direct_gbpages) {
416 pmds = (end + PMD_SIZE - 1) >> PMD_SHIFT;
417 tables += round_up(pmds * sizeof(pmd_t), PAGE_SIZE);
418 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100420 /*
421 * RED-PEN putting page tables only on node 0 could
422 * cause a hotspot and fill up ZONE_DMA. The page tables
423 * need roughly 0.5KB per GB.
424 */
425 start = 0x8000;
Yinghai Lu24a5da72008-02-01 17:49:41 +0100426 table_start = find_e820_area(start, end, tables, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 if (table_start == -1UL)
428 panic("Cannot find space for the kernel page tables");
429
430 table_start >>= PAGE_SHIFT;
431 table_end = table_start;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100432
433 early_printk("kernel direct mapping tables up to %lx @ %lx-%lx\n",
Jan Beulich5f51e132006-06-26 13:59:02 +0200434 end, table_start << PAGE_SHIFT,
435 (table_start << PAGE_SHIFT) + tables);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436}
437
Andi Kleenef925762008-04-17 17:40:45 +0200438static void __init init_gbpages(void)
439{
440 if (direct_gbpages && cpu_has_gbpages)
441 printk(KERN_INFO "Using GB pages for direct mapping\n");
442 else
443 direct_gbpages = 0;
444}
445
Yinghai Luc64df702008-03-21 18:56:19 -0700446#ifdef CONFIG_MEMTEST_BOOTPARAM
447
448static void __init memtest(unsigned long start_phys, unsigned long size,
449 unsigned pattern)
Yinghai Lu272b9cad2008-03-20 23:58:33 -0700450{
451 unsigned long i;
452 unsigned long *start;
453 unsigned long start_bad;
454 unsigned long last_bad;
455 unsigned long val;
456 unsigned long start_phys_aligned;
457 unsigned long count;
458 unsigned long incr;
459
460 switch (pattern) {
461 case 0:
462 val = 0UL;
463 break;
464 case 1:
465 val = -1UL;
466 break;
467 case 2:
468 val = 0x5555555555555555UL;
469 break;
470 case 3:
471 val = 0xaaaaaaaaaaaaaaaaUL;
472 break;
473 default:
474 return;
475 }
476
477 incr = sizeof(unsigned long);
478 start_phys_aligned = ALIGN(start_phys, incr);
479 count = (size - (start_phys_aligned - start_phys))/incr;
480 start = __va(start_phys_aligned);
481 start_bad = 0;
482 last_bad = 0;
483
484 for (i = 0; i < count; i++)
485 start[i] = val;
486 for (i = 0; i < count; i++, start++, start_phys_aligned += incr) {
487 if (*start != val) {
488 if (start_phys_aligned == last_bad + incr) {
489 last_bad += incr;
490 } else {
491 if (start_bad) {
Yinghai Ludcfe9462008-04-15 23:17:42 -0700492 printk(KERN_CONT "\n %016lx bad mem addr %016lx - %016lx reserved",
Yinghai Lu272b9cad2008-03-20 23:58:33 -0700493 val, start_bad, last_bad + incr);
494 reserve_early(start_bad, last_bad - start_bad, "BAD RAM");
495 }
496 start_bad = last_bad = start_phys_aligned;
497 }
498 }
499 }
500 if (start_bad) {
Yinghai Ludcfe9462008-04-15 23:17:42 -0700501 printk(KERN_CONT "\n %016lx bad mem addr %016lx - %016lx reserved",
Yinghai Lu272b9cad2008-03-20 23:58:33 -0700502 val, start_bad, last_bad + incr);
503 reserve_early(start_bad, last_bad - start_bad, "BAD RAM");
504 }
505
506}
507
Yinghai Luc64df702008-03-21 18:56:19 -0700508static int memtest_pattern __initdata = CONFIG_MEMTEST_BOOTPARAM_VALUE;
509
Yinghai Lu272b9cad2008-03-20 23:58:33 -0700510static int __init parse_memtest(char *arg)
511{
512 if (arg)
Yinghai Luc64df702008-03-21 18:56:19 -0700513 memtest_pattern = simple_strtoul(arg, NULL, 0);
Yinghai Lu272b9cad2008-03-20 23:58:33 -0700514 return 0;
515}
516
517early_param("memtest", parse_memtest);
518
519static void __init early_memtest(unsigned long start, unsigned long end)
520{
Andrew Morton27df66a2008-07-03 10:14:10 +0200521 u64 t_start, t_size;
Yinghai Lu272b9cad2008-03-20 23:58:33 -0700522 unsigned pattern;
523
Yinghai Luc64df702008-03-21 18:56:19 -0700524 if (!memtest_pattern)
525 return;
526
527 printk(KERN_INFO "early_memtest: pattern num %d", memtest_pattern);
Yinghai Lu272b9cad2008-03-20 23:58:33 -0700528 for (pattern = 0; pattern < memtest_pattern; pattern++) {
529 t_start = start;
530 t_size = 0;
531 while (t_start < end) {
532 t_start = find_e820_area_size(t_start, &t_size, 1);
533
534 /* done ? */
535 if (t_start >= end)
536 break;
537 if (t_start + t_size > end)
538 t_size = end - t_start;
539
Andrew Morton27df66a2008-07-03 10:14:10 +0200540 printk(KERN_CONT "\n %016llx - %016llx pattern %d",
541 (unsigned long long)t_start,
542 (unsigned long long)t_start + t_size, pattern);
Yinghai Lu272b9cad2008-03-20 23:58:33 -0700543
544 memtest(t_start, t_size, pattern);
545
546 t_start += t_size;
547 }
548 }
Yinghai Luc64df702008-03-21 18:56:19 -0700549 printk(KERN_CONT "\n");
Yinghai Lu272b9cad2008-03-20 23:58:33 -0700550}
Yinghai Luc64df702008-03-21 18:56:19 -0700551#else
552static void __init early_memtest(unsigned long start, unsigned long end)
553{
554}
555#endif
Yinghai Lu272b9cad2008-03-20 23:58:33 -0700556
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100557/*
558 * Setup the direct mapping of the physical memory at PAGE_OFFSET.
559 * This runs before bootmem is initialized and gets pages directly from
560 * the physical memory. To access them they are temporarily mapped.
561 */
Andi Kleencc615032008-03-12 03:53:28 +0100562unsigned long __init_refok init_memory_mapping(unsigned long start, unsigned long end)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100563{
Andi Kleencc615032008-03-12 03:53:28 +0100564 unsigned long next, last_map_addr = end;
Yinghai Lu272b9cad2008-03-20 23:58:33 -0700565 unsigned long start_phys = start, end_phys = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Yinghai Lu272b9cad2008-03-20 23:58:33 -0700567 printk(KERN_INFO "init_memory_mapping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100569 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 * Find space for the kernel direct mapping tables.
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100571 *
572 * Later we should allocate these tables in the local node of the
573 * memory mapped. Unfortunately this is done currently before the
574 * nodes are discovered.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 */
Andi Kleenef925762008-04-17 17:40:45 +0200576 if (!after_bootmem) {
577 init_gbpages();
Matt Tolentino44df75e2006-01-17 07:03:41 +0100578 find_early_table_space(end);
Andi Kleenef925762008-04-17 17:40:45 +0200579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581 start = (unsigned long)__va(start);
582 end = (unsigned long)__va(end);
583
584 for (; start < end; start = next) {
Matt Tolentino44df75e2006-01-17 07:03:41 +0100585 pgd_t *pgd = pgd_offset_k(start);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100586 unsigned long pud_phys;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100587 pud_t *pud;
588
589 if (after_bootmem)
Andi Kleend2ae5b52006-06-26 13:57:56 +0200590 pud = pud_offset(pgd, start & PGDIR_MASK);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100591 else
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200592 pud = alloc_low_page(&pud_phys);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 next = start + PGDIR_SIZE;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100595 if (next > end)
596 next = end;
Andi Kleencc615032008-03-12 03:53:28 +0100597 last_map_addr = phys_pud_init(pud, __pa(start), __pa(next));
Matt Tolentino44df75e2006-01-17 07:03:41 +0100598 if (!after_bootmem)
599 set_pgd(pgd_offset_k(start), mk_kernel_pgd(pud_phys));
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200600 unmap_low_page(pud);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100601 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Matt Tolentino44df75e2006-01-17 07:03:41 +0100603 if (!after_bootmem)
Glauber de Oliveira Costaf51c9452007-07-22 11:12:29 +0200604 mmu_cr4_features = read_cr4();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 __flush_tlb_all();
Andi Kleen75175272008-01-30 13:33:17 +0100606
Yinghai Lu24a5da72008-02-01 17:49:41 +0100607 if (!after_bootmem)
608 reserve_early(table_start << PAGE_SHIFT,
609 table_end << PAGE_SHIFT, "PGTABLE");
Yinghai Lu272b9cad2008-03-20 23:58:33 -0700610
611 if (!after_bootmem)
612 early_memtest(start_phys, end_phys);
Andi Kleencc615032008-03-12 03:53:28 +0100613
614 return last_map_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615}
616
Matt Tolentino2b976902005-06-23 00:08:06 -0700617#ifndef CONFIG_NUMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618void __init paging_init(void)
619{
Mel Gorman6391af12006-10-11 01:20:39 -0700620 unsigned long max_zone_pfns[MAX_NR_ZONES];
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100621
Mel Gorman6391af12006-10-11 01:20:39 -0700622 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
623 max_zone_pfns[ZONE_DMA] = MAX_DMA_PFN;
624 max_zone_pfns[ZONE_DMA32] = MAX_DMA32_PFN;
625 max_zone_pfns[ZONE_NORMAL] = end_pfn;
626
Matt Tolentino44df75e2006-01-17 07:03:41 +0100627 memory_present(0, 0, end_pfn);
628 sparse_init();
Mel Gorman5cb248a2006-09-27 01:49:52 -0700629 free_area_init_nodes(max_zone_pfns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630}
631#endif
632
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100633/*
Matt Tolentino44df75e2006-01-17 07:03:41 +0100634 * Memory hotplug specific functions
Matt Tolentino44df75e2006-01-17 07:03:41 +0100635 */
Yasunori Gotobc02af92006-06-27 02:53:30 -0700636#ifdef CONFIG_MEMORY_HOTPLUG
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
Andi Kleencc615032008-03-12 03:53:28 +0100649 last_mapped_pfn = init_memory_mapping(start, start + size-1);
650 if (last_mapped_pfn > max_pfn_mapped)
651 max_pfn_mapped = last_mapped_pfn;
Keith Mannthey45e0b782006-09-30 23:27:09 -0700652
Yasunori Gotobc02af92006-06-27 02:53:30 -0700653 ret = __add_pages(zone, start_pfn, nr_pages);
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100654 WARN_ON(1);
Yasunori Gotobc02af92006-06-27 02:53:30 -0700655
Yasunori Gotobc02af92006-06-27 02:53:30 -0700656 return ret;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700657}
658EXPORT_SYMBOL_GPL(arch_add_memory);
659
Yasunori Goto82432292006-11-18 22:19:40 -0800660#if !defined(CONFIG_ACPI_NUMA) && defined(CONFIG_NUMA)
Keith Mannthey4942e992006-09-30 23:27:06 -0700661int memory_add_physaddr_to_nid(u64 start)
662{
663 return 0;
664}
Keith Mannthey8c2676a2006-09-30 23:27:07 -0700665EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
Keith Mannthey4942e992006-09-30 23:27:06 -0700666#endif
667
Keith Mannthey45e0b782006-09-30 23:27:09 -0700668#endif /* CONFIG_MEMORY_HOTPLUG */
669
Arjan van de Venae531c22008-04-24 23:40:47 +0200670/*
671 * devmem_is_allowed() checks to see if /dev/mem access to a certain address
672 * is valid. The argument is a physical page number.
673 *
674 *
675 * On x86, access has to be given to the first megabyte of ram because that area
676 * contains bios code and data regions used by X and dosemu and similar apps.
677 * Access has to be given to non-kernel-ram areas as well, these contain the PCI
678 * mmio resources as well as potential bios/acpi data regions.
679 */
680int devmem_is_allowed(unsigned long pagenr)
681{
682 if (pagenr <= 256)
683 return 1;
684 if (!page_is_ram(pagenr))
685 return 1;
686 return 0;
687}
688
689
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100690static struct kcore_list kcore_mem, kcore_vmalloc, kcore_kernel,
691 kcore_modules, kcore_vsyscall;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
693void __init mem_init(void)
694{
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200695 long codesize, reservedpages, datasize, initsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Jon Mason0dc243a2006-06-26 13:58:11 +0200697 pci_iommu_alloc();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Yinghai Lu48ddb152008-01-30 13:32:36 +0100699 /* clear_bss() already clear the empty_zero_page */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
701 reservedpages = 0;
702
703 /* this will put all low memory onto the freelists */
Matt Tolentino2b976902005-06-23 00:08:06 -0700704#ifdef CONFIG_NUMA
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200705 totalram_pages = numa_free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706#else
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200707 totalram_pages = free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708#endif
Mel Gorman5cb248a2006-09-27 01:49:52 -0700709 reservedpages = end_pfn - totalram_pages -
710 absent_pages_in_range(0, end_pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 after_bootmem = 1;
712
713 codesize = (unsigned long) &_etext - (unsigned long) &_text;
714 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
715 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
716
717 /* Register memory areas for /proc/kcore */
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100718 kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
719 kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 VMALLOC_END-VMALLOC_START);
721 kclist_add(&kcore_kernel, &_stext, _end - _stext);
722 kclist_add(&kcore_modules, (void *)MODULES_VADDR, MODULES_LEN);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100723 kclist_add(&kcore_vsyscall, (void *)VSYSCALL_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 VSYSCALL_END - VSYSCALL_START);
725
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100726 printk(KERN_INFO "Memory: %luk/%luk available (%ldk kernel code, "
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100727 "%ldk reserved, %ldk data, %ldk init)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
729 end_pfn << (PAGE_SHIFT-10),
730 codesize >> 10,
731 reservedpages << (PAGE_SHIFT-10),
732 datasize >> 10,
733 initsize >> 10);
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100734
735 cpa_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736}
737
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200738void free_init_pages(char *what, unsigned long begin, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739{
Thomas Gleixnerbfc734b2008-02-09 23:24:09 +0100740 unsigned long addr = begin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Thomas Gleixnerbfc734b2008-02-09 23:24:09 +0100742 if (addr >= end)
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200743 return;
744
Ingo Molnaree01f112008-01-30 13:34:09 +0100745 /*
746 * If debugging page accesses then do not free this memory but
747 * mark them not present - any buggy init-section access will
748 * create a kernel page fault:
749 */
750#ifdef CONFIG_DEBUG_PAGEALLOC
751 printk(KERN_INFO "debug: unmapping init memory %08lx..%08lx\n",
752 begin, PAGE_ALIGN(end));
753 set_memory_np(begin, (end - begin) >> PAGE_SHIFT);
754#else
Jan Beulich6fb14752007-05-02 19:27:10 +0200755 printk(KERN_INFO "Freeing %s: %luk freed\n", what, (end - begin) >> 10);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100756
Thomas Gleixnerbfc734b2008-02-09 23:24:09 +0100757 for (; addr < end; addr += PAGE_SIZE) {
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700758 ClearPageReserved(virt_to_page(addr));
759 init_page_count(virt_to_page(addr));
760 memset((void *)(addr & ~(PAGE_SIZE-1)),
761 POISON_FREE_INITMEM, PAGE_SIZE);
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700762 free_page(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 totalram_pages++;
764 }
Ingo Molnaree01f112008-01-30 13:34:09 +0100765#endif
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200766}
767
768void free_initmem(void)
769{
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200770 free_init_pages("unused kernel memory",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700771 (unsigned long)(&__init_begin),
772 (unsigned long)(&__init_end));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773}
774
Arjan van de Ven67df1972006-01-06 00:12:04 -0800775#ifdef CONFIG_DEBUG_RODATA
Arjan van de Venedeed302008-01-30 13:34:08 +0100776const int rodata_test_data = 0xC3;
777EXPORT_SYMBOL_GPL(rodata_test_data);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800778
Arjan van de Ven67df1972006-01-06 00:12:04 -0800779void mark_rodata_ro(void)
780{
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -0500781 unsigned long start = PFN_ALIGN(_stext), end = PFN_ALIGN(__end_rodata);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800782
Jan Beulich6fb14752007-05-02 19:27:10 +0200783 printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700784 (end - start) >> 10);
Arjan van de Ven984bb802008-02-06 22:39:45 +0100785 set_memory_ro(start, (end - start) >> PAGE_SHIFT);
786
787 /*
788 * The rodata section (but not the kernel text!) should also be
789 * not-executable.
790 */
791 start = ((unsigned long)__start_rodata + PAGE_SIZE - 1) & PAGE_MASK;
792 set_memory_nx(start, (end - start) >> PAGE_SHIFT);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800793
Arjan van de Ven1a487252008-01-30 13:34:09 +0100794 rodata_test();
795
Andi Kleen0c42f392008-01-30 13:33:42 +0100796#ifdef CONFIG_CPA_DEBUG
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100797 printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, end);
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100798 set_memory_rw(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +0100799
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100800 printk(KERN_INFO "Testing CPA: again\n");
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100801 set_memory_ro(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +0100802#endif
Arjan van de Ven67df1972006-01-06 00:12:04 -0800803}
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -0500804
Arjan van de Ven67df1972006-01-06 00:12:04 -0800805#endif
806
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807#ifdef CONFIG_BLK_DEV_INITRD
808void free_initrd_mem(unsigned long start, unsigned long end)
809{
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700810 free_init_pages("initrd memory", start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811}
812#endif
813
Yinghai Lud2dbf342008-06-13 02:00:56 -0700814int __init reserve_bootmem_generic(unsigned long phys, unsigned long len,
815 int flags)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100816{
Matt Tolentino2b976902005-06-23 00:08:06 -0700817#ifdef CONFIG_NUMA
Yinghai Lu8b3cd09e2008-03-18 12:50:21 -0700818 int nid, next_nid;
Andi Kleen5e58a022006-11-14 16:57:46 +0100819#endif
820 unsigned long pfn = phys >> PAGE_SHIFT;
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200821 int ret;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100822
Andi Kleen5e58a022006-11-14 16:57:46 +0100823 if (pfn >= end_pfn) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100824 /*
825 * This can happen with kdump kernels when accessing
826 * firmware tables:
827 */
Thomas Gleixner67794292008-03-21 21:27:10 +0100828 if (pfn < max_pfn_mapped)
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200829 return -EFAULT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100830
Andi Kleen5e58a022006-11-14 16:57:46 +0100831 printk(KERN_ERR "reserve_bootmem: illegal reserve %lx %u\n",
832 phys, len);
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200833 return -EFAULT;
Andi Kleen5e58a022006-11-14 16:57:46 +0100834 }
835
836 /* Should check here against the e820 map to avoid double free */
837#ifdef CONFIG_NUMA
Yinghai Lu8b3cd09e2008-03-18 12:50:21 -0700838 nid = phys_to_nid(phys);
839 next_nid = phys_to_nid(phys + len - 1);
840 if (nid == next_nid)
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200841 ret = reserve_bootmem_node(NODE_DATA(nid), phys, len, flags);
Yinghai Lu8b3cd09e2008-03-18 12:50:21 -0700842 else
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200843 ret = reserve_bootmem(phys, len, flags);
844
845 if (ret != 0)
846 return ret;
847
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100848#else
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800849 reserve_bootmem(phys, len, BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850#endif
Yinghai Lu8b3cd09e2008-03-18 12:50:21 -0700851
Mel Gorman0e0b8642006-09-27 01:49:56 -0700852 if (phys+len <= MAX_DMA_PFN*PAGE_SIZE) {
Andi Kleene18c6872005-11-05 17:25:53 +0100853 dma_reserve += len / PAGE_SIZE;
Mel Gorman0e0b8642006-09-27 01:49:56 -0700854 set_dma_reserve(dma_reserve);
855 }
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200856
857 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858}
859
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100860int kern_addr_valid(unsigned long addr)
861{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 unsigned long above = ((long)addr) >> __VIRTUAL_MASK_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100863 pgd_t *pgd;
864 pud_t *pud;
865 pmd_t *pmd;
866 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
868 if (above != 0 && above != -1UL)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100869 return 0;
870
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 pgd = pgd_offset_k(addr);
872 if (pgd_none(*pgd))
873 return 0;
874
875 pud = pud_offset(pgd, addr);
876 if (pud_none(*pud))
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100877 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
879 pmd = pmd_offset(pud, addr);
880 if (pmd_none(*pmd))
881 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 if (pmd_large(*pmd))
884 return pfn_valid(pmd_pfn(*pmd));
885
886 pte = pte_offset_kernel(pmd, addr);
887 if (pte_none(*pte))
888 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 return pfn_valid(pte_pfn(*pte));
891}
892
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100893/*
894 * A pseudo VMA to allow ptrace access for the vsyscall page. This only
895 * covers the 64bit vsyscall page now. 32bit has a real VMA now and does
896 * not need special handling anymore:
897 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898static struct vm_area_struct gate_vma = {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100899 .vm_start = VSYSCALL_START,
900 .vm_end = VSYSCALL_START + (VSYSCALL_MAPPED_PAGES * PAGE_SIZE),
901 .vm_page_prot = PAGE_READONLY_EXEC,
902 .vm_flags = VM_READ | VM_EXEC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903};
904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905struct vm_area_struct *get_gate_vma(struct task_struct *tsk)
906{
907#ifdef CONFIG_IA32_EMULATION
Andi Kleen1e014412005-04-16 15:24:55 -0700908 if (test_tsk_thread_flag(tsk, TIF_IA32))
909 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910#endif
911 return &gate_vma;
912}
913
914int in_gate_area(struct task_struct *task, unsigned long addr)
915{
916 struct vm_area_struct *vma = get_gate_vma(task);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100917
Andi Kleen1e014412005-04-16 15:24:55 -0700918 if (!vma)
919 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100920
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 return (addr >= vma->vm_start) && (addr < vma->vm_end);
922}
923
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100924/*
925 * Use this when you have no reliable task/vma, typically from interrupt
926 * context. It is less reliable than using the task's vma and may give
927 * false positives:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 */
929int in_gate_area_no_task(unsigned long addr)
930{
Andi Kleen1e014412005-04-16 15:24:55 -0700931 return (addr >= VSYSCALL_START) && (addr < VSYSCALL_END);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932}
Zou Nan hai2e1c49d2007-06-01 00:46:28 -0700933
Andi Kleen2aae9502007-07-21 17:10:01 +0200934const char *arch_vma_name(struct vm_area_struct *vma)
935{
936 if (vma->vm_mm && vma->vm_start == (long)vma->vm_mm->context.vdso)
937 return "[vdso]";
938 if (vma == &gate_vma)
939 return "[vsyscall]";
940 return NULL;
941}
Christoph Lameter0889eba2007-10-16 01:24:15 -0700942
943#ifdef CONFIG_SPARSEMEM_VMEMMAP
944/*
945 * Initialise the sparsemem vmemmap using huge-pages at the PMD level.
946 */
Yinghai Luc2b91e22008-04-12 01:19:24 -0700947static long __meminitdata addr_start, addr_end;
948static void __meminitdata *p_start, *p_end;
949static int __meminitdata node_start;
950
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100951int __meminit
952vmemmap_populate(struct page *start_page, unsigned long size, int node)
Christoph Lameter0889eba2007-10-16 01:24:15 -0700953{
954 unsigned long addr = (unsigned long)start_page;
955 unsigned long end = (unsigned long)(start_page + size);
956 unsigned long next;
957 pgd_t *pgd;
958 pud_t *pud;
959 pmd_t *pmd;
960
961 for (; addr < end; addr = next) {
962 next = pmd_addr_end(addr, end);
963
964 pgd = vmemmap_pgd_populate(addr, node);
965 if (!pgd)
966 return -ENOMEM;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100967
Christoph Lameter0889eba2007-10-16 01:24:15 -0700968 pud = vmemmap_pud_populate(pgd, addr, node);
969 if (!pud)
970 return -ENOMEM;
971
972 pmd = pmd_offset(pud, addr);
973 if (pmd_none(*pmd)) {
974 pte_t entry;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100975 void *p;
976
977 p = vmemmap_alloc_block(PMD_SIZE, node);
Christoph Lameter0889eba2007-10-16 01:24:15 -0700978 if (!p)
979 return -ENOMEM;
980
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100981 entry = pfn_pte(__pa(p) >> PAGE_SHIFT,
982 PAGE_KERNEL_LARGE);
Christoph Lameter0889eba2007-10-16 01:24:15 -0700983 set_pmd(pmd, __pmd(pte_val(entry)));
984
Yinghai Luc2b91e22008-04-12 01:19:24 -0700985 /* 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 }
994 addr_end = addr + PMD_SIZE;
995 p_end = p + PMD_SIZE;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100996 } else {
Christoph Lameter0889eba2007-10-16 01:24:15 -0700997 vmemmap_verify((pte_t *)pmd, node, addr, next);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100998 }
Christoph Lameter0889eba2007-10-16 01:24:15 -0700999 }
Christoph Lameter0889eba2007-10-16 01:24:15 -07001000 return 0;
1001}
Yinghai Luc2b91e22008-04-12 01:19:24 -07001002
1003void __meminit vmemmap_populate_print_last(void)
1004{
1005 if (p_start) {
1006 printk(KERN_DEBUG " [%lx-%lx] PMD -> [%p-%p] on node %d\n",
1007 addr_start, addr_end-1, p_start, p_end-1, node_start);
1008 p_start = NULL;
1009 p_end = NULL;
1010 node_start = 0;
1011 }
1012}
Christoph Lameter0889eba2007-10-16 01:24:15 -07001013#endif