blob: 74fae833512800ac0c42edd6eb681871c36519e5 [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
Andi Kleene18c6872005-11-05 17:25:53 +010050static unsigned long dma_reserve __initdata;
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
53
Ingo Molnar00d1c5e2008-04-17 17:40:45 +020054int direct_gbpages __meminitdata
55#ifdef CONFIG_DIRECT_GBPAGES
56 = 1
57#endif
58;
59
60static int __init parse_direct_gbpages_off(char *arg)
61{
62 direct_gbpages = 0;
63 return 0;
64}
65early_param("nogbpages", parse_direct_gbpages_off);
66
67static int __init parse_direct_gbpages_on(char *arg)
68{
69 direct_gbpages = 1;
70 return 0;
71}
72early_param("gbpages", parse_direct_gbpages_on);
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074/*
75 * NOTE: pagetable_init alloc all the fixmap pagetables contiguous on the
76 * physical space so we can cache the place of the first one and move
77 * around without checking the pgd every time.
78 */
79
80void show_mem(void)
81{
Andi Kleene92343c2005-09-12 18:49:24 +020082 long i, total = 0, reserved = 0;
83 long shared = 0, cached = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 struct page *page;
Thomas Gleixner14a62c32008-01-30 13:34:10 +010085 pg_data_t *pgdat;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Andi Kleene92343c2005-09-12 18:49:24 +020087 printk(KERN_INFO "Mem-info:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 show_free_areas();
KAMEZAWA Hiroyukiec936fc2006-03-27 01:15:59 -080089 for_each_online_pgdat(pgdat) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +010090 for (i = 0; i < pgdat->node_spanned_pages; ++i) {
91 /*
92 * This loop can take a while with 256 GB and
93 * 4k pages so defer the NMI watchdog:
94 */
95 if (unlikely(i % MAX_ORDER_NR_PAGES == 0))
Konrad Rzeszutekae32b122007-05-02 19:27:11 +020096 touch_nmi_watchdog();
Thomas Gleixner14a62c32008-01-30 13:34:10 +010097
Bob Picco12710a52007-06-08 13:47:00 -070098 if (!pfn_valid(pgdat->node_start_pfn + i))
99 continue;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 page = pfn_to_page(pgdat->node_start_pfn + i);
102 total++;
Andi Kleene92343c2005-09-12 18:49:24 +0200103 if (PageReserved(page))
104 reserved++;
105 else if (PageSwapCache(page))
106 cached++;
107 else if (page_count(page))
108 shared += page_count(page) - 1;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100109 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 }
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100111 printk(KERN_INFO "%lu pages of RAM\n", total);
112 printk(KERN_INFO "%lu reserved pages\n", reserved);
113 printk(KERN_INFO "%lu pages shared\n", shared);
114 printk(KERN_INFO "%lu pages swap cached\n", cached);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115}
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117int after_bootmem;
118
Andi Kleen5f44a662006-03-25 16:30:25 +0100119static __init void *spp_getpage(void)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100120{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 void *ptr;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 if (after_bootmem)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100124 ptr = (void *) get_zeroed_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 else
126 ptr = alloc_bootmem_pages(PAGE_SIZE);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100127
128 if (!ptr || ((unsigned long)ptr & ~PAGE_MASK)) {
129 panic("set_pte_phys: cannot allocate page data %s\n",
130 after_bootmem ? "after bootmem" : "");
131 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100133 pr_debug("spp_getpage %p\n", ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100135 return ptr;
136}
137
Jeremy Fitzhardinged494a962008-06-17 11:41:59 -0700138void
139set_pte_vaddr(unsigned long vaddr, pte_t new_pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
141 pgd_t *pgd;
142 pud_t *pud;
143 pmd_t *pmd;
Jeremy Fitzhardinged494a962008-06-17 11:41:59 -0700144 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Jeremy Fitzhardinged494a962008-06-17 11:41:59 -0700146 pr_debug("set_pte_vaddr %lx to %lx\n", vaddr, native_pte_val(new_pte));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148 pgd = pgd_offset_k(vaddr);
149 if (pgd_none(*pgd)) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100150 printk(KERN_ERR
151 "PGD FIXMAP MISSING, it should be setup in head.S!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 return;
153 }
154 pud = pud_offset(pgd, vaddr);
155 if (pud_none(*pud)) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100156 pmd = (pmd_t *) spp_getpage();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 set_pud(pud, __pud(__pa(pmd) | _KERNPG_TABLE | _PAGE_USER));
158 if (pmd != pmd_offset(pud, 0)) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100159 printk(KERN_ERR "PAGETABLE BUG #01! %p <-> %p\n",
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100160 pmd, pmd_offset(pud, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 return;
162 }
163 }
164 pmd = pmd_offset(pud, vaddr);
165 if (pmd_none(*pmd)) {
166 pte = (pte_t *) spp_getpage();
167 set_pmd(pmd, __pmd(__pa(pte) | _KERNPG_TABLE | _PAGE_USER));
168 if (pte != pte_offset_kernel(pmd, 0)) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100169 printk(KERN_ERR "PAGETABLE BUG #02!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 return;
171 }
172 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174 pte = pte_offset_kernel(pmd, vaddr);
Ingo Molnar70c9f592008-04-25 18:05:57 +0200175 if (!pte_none(*pte) && pte_val(new_pte) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 pte_val(*pte) != (pte_val(new_pte) & __supported_pte_mask))
177 pte_ERROR(*pte);
178 set_pte(pte, new_pte);
179
180 /*
181 * It's enough to flush this one mapping.
182 * (PGE mappings get flushed as well)
183 */
184 __flush_tlb_one(vaddr);
185}
186
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100187/*
Ingo Molnar88f3aec2008-02-21 11:04:11 +0100188 * The head.S code sets up the kernel high mapping:
189 *
190 * from __START_KERNEL_map to __START_KERNEL_map + size (== _end-_text)
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100191 *
192 * phys_addr holds the negative offset to the kernel, which is added
193 * to the compile time generated pmds. This results in invalid pmds up
194 * to the point where we hit the physaddr 0 mapping.
195 *
196 * We limit the mappings to the region from _text to _end. _end is
197 * rounded up to the 2MB boundary. This catches the invalid pmds as
198 * well, as they are located before _text:
199 */
200void __init cleanup_highmap(void)
201{
202 unsigned long vaddr = __START_KERNEL_map;
203 unsigned long end = round_up((unsigned long)_end, PMD_SIZE) - 1;
204 pmd_t *pmd = level2_kernel_pgt;
205 pmd_t *last_pmd = pmd + PTRS_PER_PMD;
206
207 for (; pmd < last_pmd; pmd++, vaddr += PMD_SIZE) {
Hugh Dickins2884f112008-05-28 19:36:07 +0100208 if (pmd_none(*pmd))
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100209 continue;
210 if (vaddr < (unsigned long) _text || vaddr > end)
211 set_pmd(pmd, __pmd(0));
212 }
213}
214
Andi Kleen75175272008-01-30 13:33:17 +0100215static unsigned long __initdata table_start;
216static unsigned long __meminitdata table_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200218static __meminit void *alloc_low_page(unsigned long *phys)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100219{
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200220 unsigned long pfn = table_end++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 void *adr;
222
Matt Tolentino44df75e2006-01-17 07:03:41 +0100223 if (after_bootmem) {
224 adr = (void *)get_zeroed_page(GFP_ATOMIC);
225 *phys = __pa(adr);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100226
Matt Tolentino44df75e2006-01-17 07:03:41 +0100227 return adr;
228 }
229
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100230 if (pfn >= end_pfn)
231 panic("alloc_low_page: ran out of memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200233 adr = early_ioremap(pfn * PAGE_SIZE, PAGE_SIZE);
234 memset(adr, 0, PAGE_SIZE);
235 *phys = pfn * PAGE_SIZE;
236 return adr;
237}
238
239static __meminit void unmap_low_page(void *adr)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100240{
Matt Tolentino44df75e2006-01-17 07:03:41 +0100241 if (after_bootmem)
242 return;
243
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200244 early_iounmap(adr, PAGE_SIZE);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100245}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100247/* Must run before zap_low_mappings */
Yasunori Gotoa3142c82007-05-08 00:23:07 -0700248__meminit void *early_ioremap(unsigned long addr, unsigned long size)
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100249{
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200250 pmd_t *pmd, *last_pmd;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100251 unsigned long vaddr;
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200252 int i, pmds;
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100253
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200254 pmds = ((addr & ~PMD_MASK) + size + ~PMD_MASK) / PMD_SIZE;
255 vaddr = __START_KERNEL_map;
256 pmd = level2_kernel_pgt;
257 last_pmd = level2_kernel_pgt + PTRS_PER_PMD - 1;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100258
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200259 for (; pmd <= last_pmd; pmd++, vaddr += PMD_SIZE) {
260 for (i = 0; i < pmds; i++) {
261 if (pmd_present(pmd[i]))
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100262 goto continue_outer_loop;
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200263 }
264 vaddr += addr & ~PMD_MASK;
265 addr &= PMD_MASK;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100266
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200267 for (i = 0; i < pmds; i++, addr += PMD_SIZE)
Joerg Roedel929fd582008-01-30 13:31:08 +0100268 set_pmd(pmd+i, __pmd(addr | __PAGE_KERNEL_LARGE_EXEC));
Andi Kleen1a2b4412008-01-30 13:33:54 +0100269 __flush_tlb_all();
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100270
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200271 return (void *)vaddr;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100272continue_outer_loop:
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200273 ;
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100274 }
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100275 printk(KERN_ERR "early_ioremap(0x%lx, %lu) failed\n", addr, size);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100276
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200277 return NULL;
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100278}
279
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100280/*
281 * To avoid virtual aliases later:
282 */
Yasunori Gotoa3142c82007-05-08 00:23:07 -0700283__meminit void early_iounmap(void *addr, unsigned long size)
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100284{
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200285 unsigned long vaddr;
286 pmd_t *pmd;
287 int i, pmds;
288
289 vaddr = (unsigned long)addr;
290 pmds = ((vaddr & ~PMD_MASK) + size + ~PMD_MASK) / PMD_SIZE;
291 pmd = level2_kernel_pgt + pmd_index(vaddr);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100292
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200293 for (i = 0; i < pmds; i++)
294 pmd_clear(pmd + i);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100295
Andi Kleen1a2b4412008-01-30 13:33:54 +0100296 __flush_tlb_all();
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100297}
298
Andi Kleencc615032008-03-12 03:53:28 +0100299static unsigned long __meminit
Keith Mannthey6ad91652006-09-26 10:52:36 +0200300phys_pmd_init(pmd_t *pmd_page, unsigned long address, unsigned long end)
Matt Tolentino44df75e2006-01-17 07:03:41 +0100301{
Keith Mannthey6ad91652006-09-26 10:52:36 +0200302 int i = pmd_index(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Keith Mannthey6ad91652006-09-26 10:52:36 +0200304 for (; i < PTRS_PER_PMD; i++, address += PMD_SIZE) {
Keith Mannthey6ad91652006-09-26 10:52:36 +0200305 pmd_t *pmd = pmd_page + pmd_index(address);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100306
Jan Beulich5f51e132006-06-26 13:59:02 +0200307 if (address >= end) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100308 if (!after_bootmem) {
Jan Beulich5f51e132006-06-26 13:59:02 +0200309 for (; i < PTRS_PER_PMD; i++, pmd++)
310 set_pmd(pmd, __pmd(0));
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100311 }
Matt Tolentino44df75e2006-01-17 07:03:41 +0100312 break;
313 }
Keith Mannthey6ad91652006-09-26 10:52:36 +0200314
315 if (pmd_val(*pmd))
316 continue;
317
Andi Kleend4f71f72008-02-04 16:48:09 +0100318 set_pte((pte_t *)pmd,
319 pfn_pte(address >> PAGE_SHIFT, PAGE_KERNEL_LARGE));
Matt Tolentino44df75e2006-01-17 07:03:41 +0100320 }
Andi Kleencc615032008-03-12 03:53:28 +0100321 return address;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100322}
323
Andi Kleencc615032008-03-12 03:53:28 +0100324static unsigned long __meminit
Matt Tolentino44df75e2006-01-17 07:03:41 +0100325phys_pmd_update(pud_t *pud, unsigned long address, unsigned long end)
326{
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100327 pmd_t *pmd = pmd_offset(pud, 0);
Andi Kleencc615032008-03-12 03:53:28 +0100328 unsigned long last_map_addr;
329
Keith Mannthey6ad91652006-09-26 10:52:36 +0200330 spin_lock(&init_mm.page_table_lock);
Andi Kleencc615032008-03-12 03:53:28 +0100331 last_map_addr = phys_pmd_init(pmd, address, end);
Keith Mannthey6ad91652006-09-26 10:52:36 +0200332 spin_unlock(&init_mm.page_table_lock);
333 __flush_tlb_all();
Andi Kleencc615032008-03-12 03:53:28 +0100334 return last_map_addr;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100335}
336
Andi Kleencc615032008-03-12 03:53:28 +0100337static unsigned long __meminit
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100338phys_pud_init(pud_t *pud_page, unsigned long addr, unsigned long end)
339{
Andi Kleencc615032008-03-12 03:53:28 +0100340 unsigned long last_map_addr = end;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200341 int i = pud_index(addr);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100342
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100343 for (; i < PTRS_PER_PUD; i++, addr = (addr & PUD_MASK) + PUD_SIZE) {
Keith Mannthey6ad91652006-09-26 10:52:36 +0200344 unsigned long pmd_phys;
345 pud_t *pud = pud_page + pud_index(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 pmd_t *pmd;
347
Keith Mannthey6ad91652006-09-26 10:52:36 +0200348 if (addr >= end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100351 if (!after_bootmem &&
352 !e820_any_mapped(addr, addr+PUD_SIZE, 0)) {
353 set_pud(pud, __pud(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 continue;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100355 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Keith Mannthey6ad91652006-09-26 10:52:36 +0200357 if (pud_val(*pud)) {
Andi Kleenef925762008-04-17 17:40:45 +0200358 if (!pud_large(*pud))
Andi Kleencc615032008-03-12 03:53:28 +0100359 last_map_addr = phys_pmd_update(pud, addr, end);
Andi Kleenef925762008-04-17 17:40:45 +0200360 continue;
361 }
362
363 if (direct_gbpages) {
364 set_pte((pte_t *)pud,
365 pfn_pte(addr >> PAGE_SHIFT, PAGE_KERNEL_LARGE));
Andi Kleencc615032008-03-12 03:53:28 +0100366 last_map_addr = (addr & PUD_MASK) + PUD_SIZE;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200367 continue;
368 }
369
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200370 pmd = alloc_low_page(&pmd_phys);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100371
Matt Tolentino44df75e2006-01-17 07:03:41 +0100372 spin_lock(&init_mm.page_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 set_pud(pud, __pud(pmd_phys | _KERNPG_TABLE));
Andi Kleencc615032008-03-12 03:53:28 +0100374 last_map_addr = phys_pmd_init(pmd, addr, end);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100375 spin_unlock(&init_mm.page_table_lock);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100376
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200377 unmap_low_page(pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 }
Andi Kleen1a2b4412008-01-30 13:33:54 +0100379 __flush_tlb_all();
Andi Kleencc615032008-03-12 03:53:28 +0100380
381 return last_map_addr >> PAGE_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100382}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384static void __init find_early_table_space(unsigned long end)
385{
Andi Kleen6c5acd12006-01-11 22:46:57 +0100386 unsigned long puds, pmds, tables, start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388 puds = (end + PUD_SIZE - 1) >> PUD_SHIFT;
Andi Kleenef925762008-04-17 17:40:45 +0200389 tables = round_up(puds * sizeof(pud_t), PAGE_SIZE);
390 if (!direct_gbpages) {
391 pmds = (end + PMD_SIZE - 1) >> PMD_SHIFT;
392 tables += round_up(pmds * sizeof(pmd_t), PAGE_SIZE);
393 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100395 /*
396 * RED-PEN putting page tables only on node 0 could
397 * cause a hotspot and fill up ZONE_DMA. The page tables
398 * need roughly 0.5KB per GB.
399 */
400 start = 0x8000;
Yinghai Lu24a5da72008-02-01 17:49:41 +0100401 table_start = find_e820_area(start, end, tables, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 if (table_start == -1UL)
403 panic("Cannot find space for the kernel page tables");
404
405 table_start >>= PAGE_SHIFT;
406 table_end = table_start;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100407
408 early_printk("kernel direct mapping tables up to %lx @ %lx-%lx\n",
Jan Beulich5f51e132006-06-26 13:59:02 +0200409 end, table_start << PAGE_SHIFT,
410 (table_start << PAGE_SHIFT) + tables);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411}
412
Andi Kleenef925762008-04-17 17:40:45 +0200413static void __init init_gbpages(void)
414{
415 if (direct_gbpages && cpu_has_gbpages)
416 printk(KERN_INFO "Using GB pages for direct mapping\n");
417 else
418 direct_gbpages = 0;
419}
420
Yinghai Luc64df702008-03-21 18:56:19 -0700421#ifdef CONFIG_MEMTEST_BOOTPARAM
422
423static void __init memtest(unsigned long start_phys, unsigned long size,
424 unsigned pattern)
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700425{
426 unsigned long i;
427 unsigned long *start;
428 unsigned long start_bad;
429 unsigned long last_bad;
430 unsigned long val;
431 unsigned long start_phys_aligned;
432 unsigned long count;
433 unsigned long incr;
434
435 switch (pattern) {
436 case 0:
437 val = 0UL;
438 break;
439 case 1:
440 val = -1UL;
441 break;
442 case 2:
443 val = 0x5555555555555555UL;
444 break;
445 case 3:
446 val = 0xaaaaaaaaaaaaaaaaUL;
447 break;
448 default:
449 return;
450 }
451
452 incr = sizeof(unsigned long);
453 start_phys_aligned = ALIGN(start_phys, incr);
454 count = (size - (start_phys_aligned - start_phys))/incr;
455 start = __va(start_phys_aligned);
456 start_bad = 0;
457 last_bad = 0;
458
459 for (i = 0; i < count; i++)
460 start[i] = val;
461 for (i = 0; i < count; i++, start++, start_phys_aligned += incr) {
462 if (*start != val) {
463 if (start_phys_aligned == last_bad + incr) {
464 last_bad += incr;
465 } else {
466 if (start_bad) {
Yinghai Ludcfe9462008-04-15 23:17:42 -0700467 printk(KERN_CONT "\n %016lx bad mem addr %016lx - %016lx reserved",
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700468 val, start_bad, last_bad + incr);
469 reserve_early(start_bad, last_bad - start_bad, "BAD RAM");
470 }
471 start_bad = last_bad = start_phys_aligned;
472 }
473 }
474 }
475 if (start_bad) {
Yinghai Ludcfe9462008-04-15 23:17:42 -0700476 printk(KERN_CONT "\n %016lx bad mem addr %016lx - %016lx reserved",
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700477 val, start_bad, last_bad + incr);
478 reserve_early(start_bad, last_bad - start_bad, "BAD RAM");
479 }
480
481}
482
Yinghai Luc64df702008-03-21 18:56:19 -0700483static int memtest_pattern __initdata = CONFIG_MEMTEST_BOOTPARAM_VALUE;
484
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700485static int __init parse_memtest(char *arg)
486{
487 if (arg)
Yinghai Luc64df702008-03-21 18:56:19 -0700488 memtest_pattern = simple_strtoul(arg, NULL, 0);
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700489 return 0;
490}
491
492early_param("memtest", parse_memtest);
493
494static void __init early_memtest(unsigned long start, unsigned long end)
495{
Kevin Winchester51163102008-05-29 21:14:35 -0300496 u64 t_start, t_size;
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700497 unsigned pattern;
498
Yinghai Luc64df702008-03-21 18:56:19 -0700499 if (!memtest_pattern)
500 return;
501
502 printk(KERN_INFO "early_memtest: pattern num %d", memtest_pattern);
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700503 for (pattern = 0; pattern < memtest_pattern; pattern++) {
504 t_start = start;
505 t_size = 0;
506 while (t_start < end) {
507 t_start = find_e820_area_size(t_start, &t_size, 1);
508
509 /* done ? */
510 if (t_start >= end)
511 break;
512 if (t_start + t_size > end)
513 t_size = end - t_start;
514
Kevin Winchester51163102008-05-29 21:14:35 -0300515 printk(KERN_CONT "\n %016llx - %016llx pattern %d",
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700516 t_start, t_start + t_size, pattern);
517
518 memtest(t_start, t_size, pattern);
519
520 t_start += t_size;
521 }
522 }
Yinghai Luc64df702008-03-21 18:56:19 -0700523 printk(KERN_CONT "\n");
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700524}
Yinghai Luc64df702008-03-21 18:56:19 -0700525#else
526static void __init early_memtest(unsigned long start, unsigned long end)
527{
528}
529#endif
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700530
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100531/*
532 * Setup the direct mapping of the physical memory at PAGE_OFFSET.
533 * This runs before bootmem is initialized and gets pages directly from
534 * the physical memory. To access them they are temporarily mapped.
535 */
Andi Kleencc615032008-03-12 03:53:28 +0100536unsigned long __init_refok init_memory_mapping(unsigned long start, unsigned long end)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100537{
Andi Kleencc615032008-03-12 03:53:28 +0100538 unsigned long next, last_map_addr = end;
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700539 unsigned long start_phys = start, end_phys = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700541 printk(KERN_INFO "init_memory_mapping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100543 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 * Find space for the kernel direct mapping tables.
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100545 *
546 * Later we should allocate these tables in the local node of the
547 * memory mapped. Unfortunately this is done currently before the
548 * nodes are discovered.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 */
Andi Kleenef925762008-04-17 17:40:45 +0200550 if (!after_bootmem) {
551 init_gbpages();
Matt Tolentino44df75e2006-01-17 07:03:41 +0100552 find_early_table_space(end);
Andi Kleenef925762008-04-17 17:40:45 +0200553 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
555 start = (unsigned long)__va(start);
556 end = (unsigned long)__va(end);
557
558 for (; start < end; start = next) {
Matt Tolentino44df75e2006-01-17 07:03:41 +0100559 pgd_t *pgd = pgd_offset_k(start);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100560 unsigned long pud_phys;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100561 pud_t *pud;
562
563 if (after_bootmem)
Andi Kleend2ae5b52006-06-26 13:57:56 +0200564 pud = pud_offset(pgd, start & PGDIR_MASK);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100565 else
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200566 pud = alloc_low_page(&pud_phys);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100567
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 next = start + PGDIR_SIZE;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100569 if (next > end)
570 next = end;
Andi Kleencc615032008-03-12 03:53:28 +0100571 last_map_addr = phys_pud_init(pud, __pa(start), __pa(next));
Matt Tolentino44df75e2006-01-17 07:03:41 +0100572 if (!after_bootmem)
573 set_pgd(pgd_offset_k(start), mk_kernel_pgd(pud_phys));
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200574 unmap_low_page(pud);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100575 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Matt Tolentino44df75e2006-01-17 07:03:41 +0100577 if (!after_bootmem)
Glauber de Oliveira Costaf51c9452007-07-22 11:12:29 +0200578 mmu_cr4_features = read_cr4();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 __flush_tlb_all();
Andi Kleen75175272008-01-30 13:33:17 +0100580
Yinghai Lu24a5da72008-02-01 17:49:41 +0100581 if (!after_bootmem)
582 reserve_early(table_start << PAGE_SHIFT,
583 table_end << PAGE_SHIFT, "PGTABLE");
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700584
585 if (!after_bootmem)
586 early_memtest(start_phys, end_phys);
Andi Kleencc615032008-03-12 03:53:28 +0100587
588 return last_map_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589}
590
Matt Tolentino2b976902005-06-23 00:08:06 -0700591#ifndef CONFIG_NUMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592void __init paging_init(void)
593{
Mel Gorman6391af12006-10-11 01:20:39 -0700594 unsigned long max_zone_pfns[MAX_NR_ZONES];
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100595
Mel Gorman6391af12006-10-11 01:20:39 -0700596 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
597 max_zone_pfns[ZONE_DMA] = MAX_DMA_PFN;
598 max_zone_pfns[ZONE_DMA32] = MAX_DMA32_PFN;
599 max_zone_pfns[ZONE_NORMAL] = end_pfn;
600
Matt Tolentino44df75e2006-01-17 07:03:41 +0100601 memory_present(0, 0, end_pfn);
602 sparse_init();
Mel Gorman5cb248a2006-09-27 01:49:52 -0700603 free_area_init_nodes(max_zone_pfns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604}
605#endif
606
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100607/*
Matt Tolentino44df75e2006-01-17 07:03:41 +0100608 * Memory hotplug specific functions
Matt Tolentino44df75e2006-01-17 07:03:41 +0100609 */
Yasunori Gotobc02af92006-06-27 02:53:30 -0700610#ifdef CONFIG_MEMORY_HOTPLUG
611/*
Yasunori Gotobc02af92006-06-27 02:53:30 -0700612 * Memory is added always to NORMAL zone. This means you will never get
613 * additional DMA/DMA32 memory.
614 */
615int arch_add_memory(int nid, u64 start, u64 size)
616{
617 struct pglist_data *pgdat = NODE_DATA(nid);
Christoph Lameter776ed982006-09-25 23:31:09 -0700618 struct zone *zone = pgdat->node_zones + ZONE_NORMAL;
Andi Kleencc615032008-03-12 03:53:28 +0100619 unsigned long last_mapped_pfn, start_pfn = start >> PAGE_SHIFT;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700620 unsigned long nr_pages = size >> PAGE_SHIFT;
621 int ret;
622
Andi Kleencc615032008-03-12 03:53:28 +0100623 last_mapped_pfn = init_memory_mapping(start, start + size-1);
624 if (last_mapped_pfn > max_pfn_mapped)
625 max_pfn_mapped = last_mapped_pfn;
Keith Mannthey45e0b782006-09-30 23:27:09 -0700626
Yasunori Gotobc02af92006-06-27 02:53:30 -0700627 ret = __add_pages(zone, start_pfn, nr_pages);
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100628 WARN_ON(1);
Yasunori Gotobc02af92006-06-27 02:53:30 -0700629
Yasunori Gotobc02af92006-06-27 02:53:30 -0700630 return ret;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700631}
632EXPORT_SYMBOL_GPL(arch_add_memory);
633
Yasunori Goto82432292006-11-18 22:19:40 -0800634#if !defined(CONFIG_ACPI_NUMA) && defined(CONFIG_NUMA)
Keith Mannthey4942e992006-09-30 23:27:06 -0700635int memory_add_physaddr_to_nid(u64 start)
636{
637 return 0;
638}
Keith Mannthey8c2676a2006-09-30 23:27:07 -0700639EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
Keith Mannthey4942e992006-09-30 23:27:06 -0700640#endif
641
Keith Mannthey45e0b782006-09-30 23:27:09 -0700642#endif /* CONFIG_MEMORY_HOTPLUG */
643
Arjan van de Venae531c22008-04-24 23:40:47 +0200644/*
645 * devmem_is_allowed() checks to see if /dev/mem access to a certain address
646 * is valid. The argument is a physical page number.
647 *
648 *
649 * On x86, access has to be given to the first megabyte of ram because that area
650 * contains bios code and data regions used by X and dosemu and similar apps.
651 * Access has to be given to non-kernel-ram areas as well, these contain the PCI
652 * mmio resources as well as potential bios/acpi data regions.
653 */
654int devmem_is_allowed(unsigned long pagenr)
655{
656 if (pagenr <= 256)
657 return 1;
658 if (!page_is_ram(pagenr))
659 return 1;
660 return 0;
661}
662
663
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100664static struct kcore_list kcore_mem, kcore_vmalloc, kcore_kernel,
665 kcore_modules, kcore_vsyscall;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
667void __init mem_init(void)
668{
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200669 long codesize, reservedpages, datasize, initsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Jon Mason0dc243a2006-06-26 13:58:11 +0200671 pci_iommu_alloc();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Yinghai Lu48ddb152008-01-30 13:32:36 +0100673 /* clear_bss() already clear the empty_zero_page */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
675 reservedpages = 0;
676
677 /* this will put all low memory onto the freelists */
Matt Tolentino2b976902005-06-23 00:08:06 -0700678#ifdef CONFIG_NUMA
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200679 totalram_pages = numa_free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680#else
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200681 totalram_pages = free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682#endif
Mel Gorman5cb248a2006-09-27 01:49:52 -0700683 reservedpages = end_pfn - totalram_pages -
684 absent_pages_in_range(0, end_pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 after_bootmem = 1;
686
687 codesize = (unsigned long) &_etext - (unsigned long) &_text;
688 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
689 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
690
691 /* Register memory areas for /proc/kcore */
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100692 kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
693 kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 VMALLOC_END-VMALLOC_START);
695 kclist_add(&kcore_kernel, &_stext, _end - _stext);
696 kclist_add(&kcore_modules, (void *)MODULES_VADDR, MODULES_LEN);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100697 kclist_add(&kcore_vsyscall, (void *)VSYSCALL_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 VSYSCALL_END - VSYSCALL_START);
699
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100700 printk(KERN_INFO "Memory: %luk/%luk available (%ldk kernel code, "
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100701 "%ldk reserved, %ldk data, %ldk init)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
703 end_pfn << (PAGE_SHIFT-10),
704 codesize >> 10,
705 reservedpages << (PAGE_SHIFT-10),
706 datasize >> 10,
707 initsize >> 10);
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100708
709 cpa_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710}
711
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200712void free_init_pages(char *what, unsigned long begin, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713{
Thomas Gleixnerbfc734b2008-02-09 23:24:09 +0100714 unsigned long addr = begin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Thomas Gleixnerbfc734b2008-02-09 23:24:09 +0100716 if (addr >= end)
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200717 return;
718
Ingo Molnaree01f112008-01-30 13:34:09 +0100719 /*
720 * If debugging page accesses then do not free this memory but
721 * mark them not present - any buggy init-section access will
722 * create a kernel page fault:
723 */
724#ifdef CONFIG_DEBUG_PAGEALLOC
725 printk(KERN_INFO "debug: unmapping init memory %08lx..%08lx\n",
726 begin, PAGE_ALIGN(end));
727 set_memory_np(begin, (end - begin) >> PAGE_SHIFT);
728#else
Jan Beulich6fb14752007-05-02 19:27:10 +0200729 printk(KERN_INFO "Freeing %s: %luk freed\n", what, (end - begin) >> 10);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100730
Thomas Gleixnerbfc734b2008-02-09 23:24:09 +0100731 for (; addr < end; addr += PAGE_SIZE) {
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700732 ClearPageReserved(virt_to_page(addr));
733 init_page_count(virt_to_page(addr));
734 memset((void *)(addr & ~(PAGE_SIZE-1)),
735 POISON_FREE_INITMEM, PAGE_SIZE);
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700736 free_page(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 totalram_pages++;
738 }
Ingo Molnaree01f112008-01-30 13:34:09 +0100739#endif
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200740}
741
742void free_initmem(void)
743{
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200744 free_init_pages("unused kernel memory",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700745 (unsigned long)(&__init_begin),
746 (unsigned long)(&__init_end));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747}
748
Arjan van de Ven67df1972006-01-06 00:12:04 -0800749#ifdef CONFIG_DEBUG_RODATA
Arjan van de Venedeed302008-01-30 13:34:08 +0100750const int rodata_test_data = 0xC3;
751EXPORT_SYMBOL_GPL(rodata_test_data);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800752
Arjan van de Ven67df1972006-01-06 00:12:04 -0800753void mark_rodata_ro(void)
754{
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -0500755 unsigned long start = PFN_ALIGN(_stext), end = PFN_ALIGN(__end_rodata);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800756
Jan Beulich6fb14752007-05-02 19:27:10 +0200757 printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700758 (end - start) >> 10);
Arjan van de Ven984bb802008-02-06 22:39:45 +0100759 set_memory_ro(start, (end - start) >> PAGE_SHIFT);
760
761 /*
762 * The rodata section (but not the kernel text!) should also be
763 * not-executable.
764 */
765 start = ((unsigned long)__start_rodata + PAGE_SIZE - 1) & PAGE_MASK;
766 set_memory_nx(start, (end - start) >> PAGE_SHIFT);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800767
Arjan van de Ven1a487252008-01-30 13:34:09 +0100768 rodata_test();
769
Andi Kleen0c42f392008-01-30 13:33:42 +0100770#ifdef CONFIG_CPA_DEBUG
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100771 printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, end);
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100772 set_memory_rw(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +0100773
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100774 printk(KERN_INFO "Testing CPA: again\n");
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100775 set_memory_ro(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +0100776#endif
Arjan van de Ven67df1972006-01-06 00:12:04 -0800777}
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -0500778
Arjan van de Ven67df1972006-01-06 00:12:04 -0800779#endif
780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781#ifdef CONFIG_BLK_DEV_INITRD
782void free_initrd_mem(unsigned long start, unsigned long end)
783{
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700784 free_init_pages("initrd memory", start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785}
786#endif
787
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100788void __init reserve_bootmem_generic(unsigned long phys, unsigned len)
789{
Matt Tolentino2b976902005-06-23 00:08:06 -0700790#ifdef CONFIG_NUMA
Yinghai Lu8b3cd09e2008-03-18 12:50:21 -0700791 int nid, next_nid;
Andi Kleen5e58a022006-11-14 16:57:46 +0100792#endif
793 unsigned long pfn = phys >> PAGE_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100794
Andi Kleen5e58a022006-11-14 16:57:46 +0100795 if (pfn >= end_pfn) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100796 /*
797 * This can happen with kdump kernels when accessing
798 * firmware tables:
799 */
Thomas Gleixner67794292008-03-21 21:27:10 +0100800 if (pfn < max_pfn_mapped)
Andi Kleen5e58a022006-11-14 16:57:46 +0100801 return;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100802
Andi Kleen5e58a022006-11-14 16:57:46 +0100803 printk(KERN_ERR "reserve_bootmem: illegal reserve %lx %u\n",
804 phys, len);
805 return;
806 }
807
808 /* Should check here against the e820 map to avoid double free */
809#ifdef CONFIG_NUMA
Yinghai Lu8b3cd09e2008-03-18 12:50:21 -0700810 nid = phys_to_nid(phys);
811 next_nid = phys_to_nid(phys + len - 1);
812 if (nid == next_nid)
813 reserve_bootmem_node(NODE_DATA(nid), phys, len, BOOTMEM_DEFAULT);
814 else
815 reserve_bootmem(phys, len, BOOTMEM_DEFAULT);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100816#else
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800817 reserve_bootmem(phys, len, BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818#endif
Yinghai Lu8b3cd09e2008-03-18 12:50:21 -0700819
Mel Gorman0e0b8642006-09-27 01:49:56 -0700820 if (phys+len <= MAX_DMA_PFN*PAGE_SIZE) {
Andi Kleene18c6872005-11-05 17:25:53 +0100821 dma_reserve += len / PAGE_SIZE;
Mel Gorman0e0b8642006-09-27 01:49:56 -0700822 set_dma_reserve(dma_reserve);
823 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824}
825
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100826int kern_addr_valid(unsigned long addr)
827{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 unsigned long above = ((long)addr) >> __VIRTUAL_MASK_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100829 pgd_t *pgd;
830 pud_t *pud;
831 pmd_t *pmd;
832 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
834 if (above != 0 && above != -1UL)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100835 return 0;
836
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 pgd = pgd_offset_k(addr);
838 if (pgd_none(*pgd))
839 return 0;
840
841 pud = pud_offset(pgd, addr);
842 if (pud_none(*pud))
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100843 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
845 pmd = pmd_offset(pud, addr);
846 if (pmd_none(*pmd))
847 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100848
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 if (pmd_large(*pmd))
850 return pfn_valid(pmd_pfn(*pmd));
851
852 pte = pte_offset_kernel(pmd, addr);
853 if (pte_none(*pte))
854 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 return pfn_valid(pte_pfn(*pte));
857}
858
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100859/*
860 * A pseudo VMA to allow ptrace access for the vsyscall page. This only
861 * covers the 64bit vsyscall page now. 32bit has a real VMA now and does
862 * not need special handling anymore:
863 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864static struct vm_area_struct gate_vma = {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100865 .vm_start = VSYSCALL_START,
866 .vm_end = VSYSCALL_START + (VSYSCALL_MAPPED_PAGES * PAGE_SIZE),
867 .vm_page_prot = PAGE_READONLY_EXEC,
868 .vm_flags = VM_READ | VM_EXEC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869};
870
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871struct vm_area_struct *get_gate_vma(struct task_struct *tsk)
872{
873#ifdef CONFIG_IA32_EMULATION
Andi Kleen1e014412005-04-16 15:24:55 -0700874 if (test_tsk_thread_flag(tsk, TIF_IA32))
875 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876#endif
877 return &gate_vma;
878}
879
880int in_gate_area(struct task_struct *task, unsigned long addr)
881{
882 struct vm_area_struct *vma = get_gate_vma(task);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100883
Andi Kleen1e014412005-04-16 15:24:55 -0700884 if (!vma)
885 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 return (addr >= vma->vm_start) && (addr < vma->vm_end);
888}
889
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100890/*
891 * Use this when you have no reliable task/vma, typically from interrupt
892 * context. It is less reliable than using the task's vma and may give
893 * false positives:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 */
895int in_gate_area_no_task(unsigned long addr)
896{
Andi Kleen1e014412005-04-16 15:24:55 -0700897 return (addr >= VSYSCALL_START) && (addr < VSYSCALL_END);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898}
Zou Nan hai2e1c49d2007-06-01 00:46:28 -0700899
Andi Kleen2aae9502007-07-21 17:10:01 +0200900const char *arch_vma_name(struct vm_area_struct *vma)
901{
902 if (vma->vm_mm && vma->vm_start == (long)vma->vm_mm->context.vdso)
903 return "[vdso]";
904 if (vma == &gate_vma)
905 return "[vsyscall]";
906 return NULL;
907}
Christoph Lameter0889eba2007-10-16 01:24:15 -0700908
909#ifdef CONFIG_SPARSEMEM_VMEMMAP
910/*
911 * Initialise the sparsemem vmemmap using huge-pages at the PMD level.
912 */
Yinghai Luc2b91e22008-04-12 01:19:24 -0700913static long __meminitdata addr_start, addr_end;
914static void __meminitdata *p_start, *p_end;
915static int __meminitdata node_start;
916
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100917int __meminit
918vmemmap_populate(struct page *start_page, unsigned long size, int node)
Christoph Lameter0889eba2007-10-16 01:24:15 -0700919{
920 unsigned long addr = (unsigned long)start_page;
921 unsigned long end = (unsigned long)(start_page + size);
922 unsigned long next;
923 pgd_t *pgd;
924 pud_t *pud;
925 pmd_t *pmd;
926
927 for (; addr < end; addr = next) {
928 next = pmd_addr_end(addr, end);
929
930 pgd = vmemmap_pgd_populate(addr, node);
931 if (!pgd)
932 return -ENOMEM;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100933
Christoph Lameter0889eba2007-10-16 01:24:15 -0700934 pud = vmemmap_pud_populate(pgd, addr, node);
935 if (!pud)
936 return -ENOMEM;
937
938 pmd = pmd_offset(pud, addr);
939 if (pmd_none(*pmd)) {
940 pte_t entry;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100941 void *p;
942
943 p = vmemmap_alloc_block(PMD_SIZE, node);
Christoph Lameter0889eba2007-10-16 01:24:15 -0700944 if (!p)
945 return -ENOMEM;
946
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100947 entry = pfn_pte(__pa(p) >> PAGE_SHIFT,
948 PAGE_KERNEL_LARGE);
Christoph Lameter0889eba2007-10-16 01:24:15 -0700949 set_pmd(pmd, __pmd(pte_val(entry)));
950
Yinghai Luc2b91e22008-04-12 01:19:24 -0700951 /* check to see if we have contiguous blocks */
952 if (p_end != p || node_start != node) {
953 if (p_start)
954 printk(KERN_DEBUG " [%lx-%lx] PMD -> [%p-%p] on node %d\n",
955 addr_start, addr_end-1, p_start, p_end-1, node_start);
956 addr_start = addr;
957 node_start = node;
958 p_start = p;
959 }
960 addr_end = addr + PMD_SIZE;
961 p_end = p + PMD_SIZE;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100962 } else {
Christoph Lameter0889eba2007-10-16 01:24:15 -0700963 vmemmap_verify((pte_t *)pmd, node, addr, next);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100964 }
Christoph Lameter0889eba2007-10-16 01:24:15 -0700965 }
Christoph Lameter0889eba2007-10-16 01:24:15 -0700966 return 0;
967}
Yinghai Luc2b91e22008-04-12 01:19:24 -0700968
969void __meminit vmemmap_populate_print_last(void)
970{
971 if (p_start) {
972 printk(KERN_DEBUG " [%lx-%lx] PMD -> [%p-%p] on node %d\n",
973 addr_start, addr_end-1, p_start, p_end-1, node_start);
974 p_start = NULL;
975 p_end = NULL;
976 node_start = 0;
977 }
978}
Christoph Lameter0889eba2007-10-16 01:24:15 -0700979#endif