blob: 18123096cdb96f31237378ed5ffc8e0b0ad7727a [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>
34#include <asm/system.h>
35#include <asm/uaccess.h>
36#include <asm/pgtable.h>
37#include <asm/pgalloc.h>
38#include <asm/dma.h>
39#include <asm/fixmap.h>
40#include <asm/e820.h>
41#include <asm/apic.h>
42#include <asm/tlb.h>
43#include <asm/mmu_context.h>
44#include <asm/proto.h>
45#include <asm/smp.h>
Andi Kleen2bc04142005-11-05 17:25:53 +010046#include <asm/sections.h>
Thomas Gleixner718fc132008-01-30 13:30:17 +010047#include <asm/kdebug.h>
Thomas Gleixneraaa64e02008-01-30 13:30:17 +010048#include <asm/numa.h>
Harvey Harrison7bfeab92008-02-12 12:12:01 -080049#include <asm/cacheflush.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Andi Kleene18c6872005-11-05 17:25:53 +010051static unsigned long dma_reserve __initdata;
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
54
Ingo Molnar00d1c5e2008-04-17 17:40:45 +020055int direct_gbpages __meminitdata
56#ifdef CONFIG_DIRECT_GBPAGES
57 = 1
58#endif
59;
60
61static int __init parse_direct_gbpages_off(char *arg)
62{
63 direct_gbpages = 0;
64 return 0;
65}
66early_param("nogbpages", parse_direct_gbpages_off);
67
68static int __init parse_direct_gbpages_on(char *arg)
69{
70 direct_gbpages = 1;
71 return 0;
72}
73early_param("gbpages", parse_direct_gbpages_on);
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075/*
76 * NOTE: pagetable_init alloc all the fixmap pagetables contiguous on the
77 * physical space so we can cache the place of the first one and move
78 * around without checking the pgd every time.
79 */
80
81void show_mem(void)
82{
Andi Kleene92343c2005-09-12 18:49:24 +020083 long i, total = 0, reserved = 0;
84 long shared = 0, cached = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 struct page *page;
Thomas Gleixner14a62c32008-01-30 13:34:10 +010086 pg_data_t *pgdat;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Andi Kleene92343c2005-09-12 18:49:24 +020088 printk(KERN_INFO "Mem-info:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 show_free_areas();
KAMEZAWA Hiroyukiec936fc2006-03-27 01:15:59 -080090 for_each_online_pgdat(pgdat) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +010091 for (i = 0; i < pgdat->node_spanned_pages; ++i) {
92 /*
93 * This loop can take a while with 256 GB and
94 * 4k pages so defer the NMI watchdog:
95 */
96 if (unlikely(i % MAX_ORDER_NR_PAGES == 0))
Konrad Rzeszutekae32b122007-05-02 19:27:11 +020097 touch_nmi_watchdog();
Thomas Gleixner14a62c32008-01-30 13:34:10 +010098
Bob Picco12710a52007-06-08 13:47:00 -070099 if (!pfn_valid(pgdat->node_start_pfn + i))
100 continue;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 page = pfn_to_page(pgdat->node_start_pfn + i);
103 total++;
Andi Kleene92343c2005-09-12 18:49:24 +0200104 if (PageReserved(page))
105 reserved++;
106 else if (PageSwapCache(page))
107 cached++;
108 else if (page_count(page))
109 shared += page_count(page) - 1;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100110 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 }
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100112 printk(KERN_INFO "%lu pages of RAM\n", total);
113 printk(KERN_INFO "%lu reserved pages\n", reserved);
114 printk(KERN_INFO "%lu pages shared\n", shared);
115 printk(KERN_INFO "%lu pages swap cached\n", cached);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116}
117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118int after_bootmem;
119
Andi Kleen5f44a662006-03-25 16:30:25 +0100120static __init void *spp_getpage(void)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100121{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 void *ptr;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 if (after_bootmem)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100125 ptr = (void *) get_zeroed_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 else
127 ptr = alloc_bootmem_pages(PAGE_SIZE);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100128
129 if (!ptr || ((unsigned long)ptr & ~PAGE_MASK)) {
130 panic("set_pte_phys: cannot allocate page data %s\n",
131 after_bootmem ? "after bootmem" : "");
132 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100134 pr_debug("spp_getpage %p\n", ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100136 return ptr;
137}
138
Ingo Molnar82a355f2008-04-25 18:28:21 +0200139static void
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100140set_pte_phys(unsigned long vaddr, unsigned long phys, pgprot_t prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
142 pgd_t *pgd;
143 pud_t *pud;
144 pmd_t *pmd;
145 pte_t *pte, new_pte;
146
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100147 pr_debug("set_pte_phys %lx to %lx\n", vaddr, phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149 pgd = pgd_offset_k(vaddr);
150 if (pgd_none(*pgd)) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100151 printk(KERN_ERR
152 "PGD FIXMAP MISSING, it should be setup in head.S!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 return;
154 }
155 pud = pud_offset(pgd, vaddr);
156 if (pud_none(*pud)) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100157 pmd = (pmd_t *) spp_getpage();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 set_pud(pud, __pud(__pa(pmd) | _KERNPG_TABLE | _PAGE_USER));
159 if (pmd != pmd_offset(pud, 0)) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100160 printk(KERN_ERR "PAGETABLE BUG #01! %p <-> %p\n",
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100161 pmd, pmd_offset(pud, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 return;
163 }
164 }
165 pmd = pmd_offset(pud, vaddr);
166 if (pmd_none(*pmd)) {
167 pte = (pte_t *) spp_getpage();
168 set_pmd(pmd, __pmd(__pa(pte) | _KERNPG_TABLE | _PAGE_USER));
169 if (pte != pte_offset_kernel(pmd, 0)) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100170 printk(KERN_ERR "PAGETABLE BUG #02!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 return;
172 }
173 }
174 new_pte = pfn_pte(phys >> PAGE_SHIFT, prot);
175
176 pte = pte_offset_kernel(pmd, vaddr);
Ingo Molnar70c9f592008-04-25 18:05:57 +0200177 if (!pte_none(*pte) && pte_val(new_pte) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 pte_val(*pte) != (pte_val(new_pte) & __supported_pte_mask))
179 pte_ERROR(*pte);
180 set_pte(pte, new_pte);
181
182 /*
183 * It's enough to flush this one mapping.
184 * (PGE mappings get flushed as well)
185 */
186 __flush_tlb_one(vaddr);
187}
188
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100189/*
Ingo Molnar88f3aec2008-02-21 11:04:11 +0100190 * The head.S code sets up the kernel high mapping:
191 *
192 * from __START_KERNEL_map to __START_KERNEL_map + size (== _end-_text)
Thomas Gleixner31eedd82008-02-15 17:29:12 +0100193 *
194 * phys_addr holds the negative offset to the kernel, which is added
195 * to the compile time generated pmds. This results in invalid pmds up
196 * to the point where we hit the physaddr 0 mapping.
197 *
198 * We limit the mappings to the region from _text to _end. _end is
199 * rounded up to the 2MB boundary. This catches the invalid pmds as
200 * well, as they are located before _text:
201 */
202void __init cleanup_highmap(void)
203{
204 unsigned long vaddr = __START_KERNEL_map;
205 unsigned long end = round_up((unsigned long)_end, PMD_SIZE) - 1;
206 pmd_t *pmd = level2_kernel_pgt;
207 pmd_t *last_pmd = pmd + PTRS_PER_PMD;
208
209 for (; pmd < last_pmd; pmd++, vaddr += PMD_SIZE) {
210 if (!pmd_present(*pmd))
211 continue;
212 if (vaddr < (unsigned long) _text || vaddr > end)
213 set_pmd(pmd, __pmd(0));
214 }
215}
216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217/* NOTE: this is meant to be run only at boot */
Ingo Molnar82a355f2008-04-25 18:28:21 +0200218void __set_fixmap(enum fixed_addresses idx, unsigned long phys, pgprot_t prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
220 unsigned long address = __fix_to_virt(idx);
221
222 if (idx >= __end_of_fixed_addresses) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100223 printk(KERN_ERR "Invalid __set_fixmap\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 return;
225 }
226 set_pte_phys(address, phys, prot);
227}
228
Andi Kleen75175272008-01-30 13:33:17 +0100229static unsigned long __initdata table_start;
230static unsigned long __meminitdata table_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200232static __meminit void *alloc_low_page(unsigned long *phys)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100233{
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200234 unsigned long pfn = table_end++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 void *adr;
236
Matt Tolentino44df75e2006-01-17 07:03:41 +0100237 if (after_bootmem) {
238 adr = (void *)get_zeroed_page(GFP_ATOMIC);
239 *phys = __pa(adr);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100240
Matt Tolentino44df75e2006-01-17 07:03:41 +0100241 return adr;
242 }
243
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100244 if (pfn >= end_pfn)
245 panic("alloc_low_page: ran out of memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200247 adr = early_ioremap(pfn * PAGE_SIZE, PAGE_SIZE);
248 memset(adr, 0, PAGE_SIZE);
249 *phys = pfn * PAGE_SIZE;
250 return adr;
251}
252
253static __meminit void unmap_low_page(void *adr)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100254{
Matt Tolentino44df75e2006-01-17 07:03:41 +0100255 if (after_bootmem)
256 return;
257
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200258 early_iounmap(adr, PAGE_SIZE);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100259}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100261/* Must run before zap_low_mappings */
Yasunori Gotoa3142c82007-05-08 00:23:07 -0700262__meminit void *early_ioremap(unsigned long addr, unsigned long size)
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100263{
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200264 pmd_t *pmd, *last_pmd;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100265 unsigned long vaddr;
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200266 int i, pmds;
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100267
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200268 pmds = ((addr & ~PMD_MASK) + size + ~PMD_MASK) / PMD_SIZE;
269 vaddr = __START_KERNEL_map;
270 pmd = level2_kernel_pgt;
271 last_pmd = level2_kernel_pgt + PTRS_PER_PMD - 1;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100272
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200273 for (; pmd <= last_pmd; pmd++, vaddr += PMD_SIZE) {
274 for (i = 0; i < pmds; i++) {
275 if (pmd_present(pmd[i]))
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100276 goto continue_outer_loop;
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200277 }
278 vaddr += addr & ~PMD_MASK;
279 addr &= PMD_MASK;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100280
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200281 for (i = 0; i < pmds; i++, addr += PMD_SIZE)
Joerg Roedel929fd582008-01-30 13:31:08 +0100282 set_pmd(pmd+i, __pmd(addr | __PAGE_KERNEL_LARGE_EXEC));
Andi Kleen1a2b4412008-01-30 13:33:54 +0100283 __flush_tlb_all();
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100284
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200285 return (void *)vaddr;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100286continue_outer_loop:
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200287 ;
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100288 }
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100289 printk(KERN_ERR "early_ioremap(0x%lx, %lu) failed\n", addr, size);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100290
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200291 return NULL;
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100292}
293
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100294/*
295 * To avoid virtual aliases later:
296 */
Yasunori Gotoa3142c82007-05-08 00:23:07 -0700297__meminit void early_iounmap(void *addr, unsigned long size)
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100298{
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200299 unsigned long vaddr;
300 pmd_t *pmd;
301 int i, pmds;
302
303 vaddr = (unsigned long)addr;
304 pmds = ((vaddr & ~PMD_MASK) + size + ~PMD_MASK) / PMD_SIZE;
305 pmd = level2_kernel_pgt + pmd_index(vaddr);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100306
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200307 for (i = 0; i < pmds; i++)
308 pmd_clear(pmd + i);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100309
Andi Kleen1a2b4412008-01-30 13:33:54 +0100310 __flush_tlb_all();
Andi Kleenf2d3efe2006-03-25 16:30:22 +0100311}
312
Andi Kleencc615032008-03-12 03:53:28 +0100313static unsigned long __meminit
Keith Mannthey6ad91652006-09-26 10:52:36 +0200314phys_pmd_init(pmd_t *pmd_page, unsigned long address, unsigned long end)
Matt Tolentino44df75e2006-01-17 07:03:41 +0100315{
Keith Mannthey6ad91652006-09-26 10:52:36 +0200316 int i = pmd_index(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Keith Mannthey6ad91652006-09-26 10:52:36 +0200318 for (; i < PTRS_PER_PMD; i++, address += PMD_SIZE) {
Keith Mannthey6ad91652006-09-26 10:52:36 +0200319 pmd_t *pmd = pmd_page + pmd_index(address);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100320
Jan Beulich5f51e132006-06-26 13:59:02 +0200321 if (address >= end) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100322 if (!after_bootmem) {
Jan Beulich5f51e132006-06-26 13:59:02 +0200323 for (; i < PTRS_PER_PMD; i++, pmd++)
324 set_pmd(pmd, __pmd(0));
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100325 }
Matt Tolentino44df75e2006-01-17 07:03:41 +0100326 break;
327 }
Keith Mannthey6ad91652006-09-26 10:52:36 +0200328
329 if (pmd_val(*pmd))
330 continue;
331
Andi Kleend4f71f72008-02-04 16:48:09 +0100332 set_pte((pte_t *)pmd,
333 pfn_pte(address >> PAGE_SHIFT, PAGE_KERNEL_LARGE));
Matt Tolentino44df75e2006-01-17 07:03:41 +0100334 }
Andi Kleencc615032008-03-12 03:53:28 +0100335 return address;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100336}
337
Andi Kleencc615032008-03-12 03:53:28 +0100338static unsigned long __meminit
Matt Tolentino44df75e2006-01-17 07:03:41 +0100339phys_pmd_update(pud_t *pud, unsigned long address, unsigned long end)
340{
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100341 pmd_t *pmd = pmd_offset(pud, 0);
Andi Kleencc615032008-03-12 03:53:28 +0100342 unsigned long last_map_addr;
343
Keith Mannthey6ad91652006-09-26 10:52:36 +0200344 spin_lock(&init_mm.page_table_lock);
Andi Kleencc615032008-03-12 03:53:28 +0100345 last_map_addr = phys_pmd_init(pmd, address, end);
Keith Mannthey6ad91652006-09-26 10:52:36 +0200346 spin_unlock(&init_mm.page_table_lock);
347 __flush_tlb_all();
Andi Kleencc615032008-03-12 03:53:28 +0100348 return last_map_addr;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100349}
350
Andi Kleencc615032008-03-12 03:53:28 +0100351static unsigned long __meminit
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100352phys_pud_init(pud_t *pud_page, unsigned long addr, unsigned long end)
353{
Andi Kleencc615032008-03-12 03:53:28 +0100354 unsigned long last_map_addr = end;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200355 int i = pud_index(addr);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100356
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100357 for (; i < PTRS_PER_PUD; i++, addr = (addr & PUD_MASK) + PUD_SIZE) {
Keith Mannthey6ad91652006-09-26 10:52:36 +0200358 unsigned long pmd_phys;
359 pud_t *pud = pud_page + pud_index(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 pmd_t *pmd;
361
Keith Mannthey6ad91652006-09-26 10:52:36 +0200362 if (addr >= end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100365 if (!after_bootmem &&
366 !e820_any_mapped(addr, addr+PUD_SIZE, 0)) {
367 set_pud(pud, __pud(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 continue;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100369 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Keith Mannthey6ad91652006-09-26 10:52:36 +0200371 if (pud_val(*pud)) {
Andi Kleenef925762008-04-17 17:40:45 +0200372 if (!pud_large(*pud))
Andi Kleencc615032008-03-12 03:53:28 +0100373 last_map_addr = phys_pmd_update(pud, addr, end);
Andi Kleenef925762008-04-17 17:40:45 +0200374 continue;
375 }
376
377 if (direct_gbpages) {
378 set_pte((pte_t *)pud,
379 pfn_pte(addr >> PAGE_SHIFT, PAGE_KERNEL_LARGE));
Andi Kleencc615032008-03-12 03:53:28 +0100380 last_map_addr = (addr & PUD_MASK) + PUD_SIZE;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200381 continue;
382 }
383
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200384 pmd = alloc_low_page(&pmd_phys);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100385
Matt Tolentino44df75e2006-01-17 07:03:41 +0100386 spin_lock(&init_mm.page_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 set_pud(pud, __pud(pmd_phys | _KERNPG_TABLE));
Andi Kleencc615032008-03-12 03:53:28 +0100388 last_map_addr = phys_pmd_init(pmd, addr, end);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100389 spin_unlock(&init_mm.page_table_lock);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100390
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200391 unmap_low_page(pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 }
Andi Kleen1a2b4412008-01-30 13:33:54 +0100393 __flush_tlb_all();
Andi Kleencc615032008-03-12 03:53:28 +0100394
395 return last_map_addr >> PAGE_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100396}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398static void __init find_early_table_space(unsigned long end)
399{
Andi Kleen6c5acd12006-01-11 22:46:57 +0100400 unsigned long puds, pmds, tables, start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402 puds = (end + PUD_SIZE - 1) >> PUD_SHIFT;
Andi Kleenef925762008-04-17 17:40:45 +0200403 tables = round_up(puds * sizeof(pud_t), PAGE_SIZE);
404 if (!direct_gbpages) {
405 pmds = (end + PMD_SIZE - 1) >> PMD_SHIFT;
406 tables += round_up(pmds * sizeof(pmd_t), PAGE_SIZE);
407 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100409 /*
410 * RED-PEN putting page tables only on node 0 could
411 * cause a hotspot and fill up ZONE_DMA. The page tables
412 * need roughly 0.5KB per GB.
413 */
414 start = 0x8000;
Yinghai Lu24a5da72008-02-01 17:49:41 +0100415 table_start = find_e820_area(start, end, tables, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 if (table_start == -1UL)
417 panic("Cannot find space for the kernel page tables");
418
419 table_start >>= PAGE_SHIFT;
420 table_end = table_start;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100421
422 early_printk("kernel direct mapping tables up to %lx @ %lx-%lx\n",
Jan Beulich5f51e132006-06-26 13:59:02 +0200423 end, table_start << PAGE_SHIFT,
424 (table_start << PAGE_SHIFT) + tables);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425}
426
Andi Kleenef925762008-04-17 17:40:45 +0200427static void __init init_gbpages(void)
428{
429 if (direct_gbpages && cpu_has_gbpages)
430 printk(KERN_INFO "Using GB pages for direct mapping\n");
431 else
432 direct_gbpages = 0;
433}
434
Yinghai Luc64df702008-03-21 18:56:19 -0700435#ifdef CONFIG_MEMTEST_BOOTPARAM
436
437static void __init memtest(unsigned long start_phys, unsigned long size,
438 unsigned pattern)
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700439{
440 unsigned long i;
441 unsigned long *start;
442 unsigned long start_bad;
443 unsigned long last_bad;
444 unsigned long val;
445 unsigned long start_phys_aligned;
446 unsigned long count;
447 unsigned long incr;
448
449 switch (pattern) {
450 case 0:
451 val = 0UL;
452 break;
453 case 1:
454 val = -1UL;
455 break;
456 case 2:
457 val = 0x5555555555555555UL;
458 break;
459 case 3:
460 val = 0xaaaaaaaaaaaaaaaaUL;
461 break;
462 default:
463 return;
464 }
465
466 incr = sizeof(unsigned long);
467 start_phys_aligned = ALIGN(start_phys, incr);
468 count = (size - (start_phys_aligned - start_phys))/incr;
469 start = __va(start_phys_aligned);
470 start_bad = 0;
471 last_bad = 0;
472
473 for (i = 0; i < count; i++)
474 start[i] = val;
475 for (i = 0; i < count; i++, start++, start_phys_aligned += incr) {
476 if (*start != val) {
477 if (start_phys_aligned == last_bad + incr) {
478 last_bad += incr;
479 } else {
480 if (start_bad) {
Yinghai Ludcfe9462008-04-15 23:17:42 -0700481 printk(KERN_CONT "\n %016lx bad mem addr %016lx - %016lx reserved",
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700482 val, start_bad, last_bad + incr);
483 reserve_early(start_bad, last_bad - start_bad, "BAD RAM");
484 }
485 start_bad = last_bad = start_phys_aligned;
486 }
487 }
488 }
489 if (start_bad) {
Yinghai Ludcfe9462008-04-15 23:17:42 -0700490 printk(KERN_CONT "\n %016lx bad mem addr %016lx - %016lx reserved",
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700491 val, start_bad, last_bad + incr);
492 reserve_early(start_bad, last_bad - start_bad, "BAD RAM");
493 }
494
495}
496
Yinghai Luc64df702008-03-21 18:56:19 -0700497static int memtest_pattern __initdata = CONFIG_MEMTEST_BOOTPARAM_VALUE;
498
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700499static int __init parse_memtest(char *arg)
500{
501 if (arg)
Yinghai Luc64df702008-03-21 18:56:19 -0700502 memtest_pattern = simple_strtoul(arg, NULL, 0);
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700503 return 0;
504}
505
506early_param("memtest", parse_memtest);
507
508static void __init early_memtest(unsigned long start, unsigned long end)
509{
510 unsigned long t_start, t_size;
511 unsigned pattern;
512
Yinghai Luc64df702008-03-21 18:56:19 -0700513 if (!memtest_pattern)
514 return;
515
516 printk(KERN_INFO "early_memtest: pattern num %d", memtest_pattern);
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700517 for (pattern = 0; pattern < memtest_pattern; pattern++) {
518 t_start = start;
519 t_size = 0;
520 while (t_start < end) {
521 t_start = find_e820_area_size(t_start, &t_size, 1);
522
523 /* done ? */
524 if (t_start >= end)
525 break;
526 if (t_start + t_size > end)
527 t_size = end - t_start;
528
529 printk(KERN_CONT "\n %016lx - %016lx pattern %d",
530 t_start, t_start + t_size, pattern);
531
532 memtest(t_start, t_size, pattern);
533
534 t_start += t_size;
535 }
536 }
Yinghai Luc64df702008-03-21 18:56:19 -0700537 printk(KERN_CONT "\n");
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700538}
Yinghai Luc64df702008-03-21 18:56:19 -0700539#else
540static void __init early_memtest(unsigned long start, unsigned long end)
541{
542}
543#endif
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700544
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100545/*
546 * Setup the direct mapping of the physical memory at PAGE_OFFSET.
547 * This runs before bootmem is initialized and gets pages directly from
548 * the physical memory. To access them they are temporarily mapped.
549 */
Andi Kleencc615032008-03-12 03:53:28 +0100550unsigned long __init_refok init_memory_mapping(unsigned long start, unsigned long end)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100551{
Andi Kleencc615032008-03-12 03:53:28 +0100552 unsigned long next, last_map_addr = end;
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700553 unsigned long start_phys = start, end_phys = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700555 printk(KERN_INFO "init_memory_mapping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100557 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 * Find space for the kernel direct mapping tables.
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100559 *
560 * Later we should allocate these tables in the local node of the
561 * memory mapped. Unfortunately this is done currently before the
562 * nodes are discovered.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 */
Andi Kleenef925762008-04-17 17:40:45 +0200564 if (!after_bootmem) {
565 init_gbpages();
Matt Tolentino44df75e2006-01-17 07:03:41 +0100566 find_early_table_space(end);
Andi Kleenef925762008-04-17 17:40:45 +0200567 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569 start = (unsigned long)__va(start);
570 end = (unsigned long)__va(end);
571
572 for (; start < end; start = next) {
Matt Tolentino44df75e2006-01-17 07:03:41 +0100573 pgd_t *pgd = pgd_offset_k(start);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100574 unsigned long pud_phys;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100575 pud_t *pud;
576
577 if (after_bootmem)
Andi Kleend2ae5b52006-06-26 13:57:56 +0200578 pud = pud_offset(pgd, start & PGDIR_MASK);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100579 else
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200580 pud = alloc_low_page(&pud_phys);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 next = start + PGDIR_SIZE;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100583 if (next > end)
584 next = end;
Andi Kleencc615032008-03-12 03:53:28 +0100585 last_map_addr = phys_pud_init(pud, __pa(start), __pa(next));
Matt Tolentino44df75e2006-01-17 07:03:41 +0100586 if (!after_bootmem)
587 set_pgd(pgd_offset_k(start), mk_kernel_pgd(pud_phys));
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200588 unmap_low_page(pud);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100589 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Matt Tolentino44df75e2006-01-17 07:03:41 +0100591 if (!after_bootmem)
Glauber de Oliveira Costaf51c9452007-07-22 11:12:29 +0200592 mmu_cr4_features = read_cr4();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 __flush_tlb_all();
Andi Kleen75175272008-01-30 13:33:17 +0100594
Yinghai Lu24a5da72008-02-01 17:49:41 +0100595 if (!after_bootmem)
596 reserve_early(table_start << PAGE_SHIFT,
597 table_end << PAGE_SHIFT, "PGTABLE");
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700598
599 if (!after_bootmem)
600 early_memtest(start_phys, end_phys);
Andi Kleencc615032008-03-12 03:53:28 +0100601
602 return last_map_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603}
604
Matt Tolentino2b976902005-06-23 00:08:06 -0700605#ifndef CONFIG_NUMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606void __init paging_init(void)
607{
Mel Gorman6391af12006-10-11 01:20:39 -0700608 unsigned long max_zone_pfns[MAX_NR_ZONES];
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100609
Mel Gorman6391af12006-10-11 01:20:39 -0700610 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
611 max_zone_pfns[ZONE_DMA] = MAX_DMA_PFN;
612 max_zone_pfns[ZONE_DMA32] = MAX_DMA32_PFN;
613 max_zone_pfns[ZONE_NORMAL] = end_pfn;
614
Matt Tolentino44df75e2006-01-17 07:03:41 +0100615 memory_present(0, 0, end_pfn);
616 sparse_init();
Mel Gorman5cb248a2006-09-27 01:49:52 -0700617 free_area_init_nodes(max_zone_pfns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618}
619#endif
620
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100621/*
Matt Tolentino44df75e2006-01-17 07:03:41 +0100622 * Memory hotplug specific functions
Matt Tolentino44df75e2006-01-17 07:03:41 +0100623 */
Yasunori Gotobc02af92006-06-27 02:53:30 -0700624#ifdef CONFIG_MEMORY_HOTPLUG
625/*
Yasunori Gotobc02af92006-06-27 02:53:30 -0700626 * Memory is added always to NORMAL zone. This means you will never get
627 * additional DMA/DMA32 memory.
628 */
629int arch_add_memory(int nid, u64 start, u64 size)
630{
631 struct pglist_data *pgdat = NODE_DATA(nid);
Christoph Lameter776ed982006-09-25 23:31:09 -0700632 struct zone *zone = pgdat->node_zones + ZONE_NORMAL;
Andi Kleencc615032008-03-12 03:53:28 +0100633 unsigned long last_mapped_pfn, start_pfn = start >> PAGE_SHIFT;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700634 unsigned long nr_pages = size >> PAGE_SHIFT;
635 int ret;
636
Andi Kleencc615032008-03-12 03:53:28 +0100637 last_mapped_pfn = init_memory_mapping(start, start + size-1);
638 if (last_mapped_pfn > max_pfn_mapped)
639 max_pfn_mapped = last_mapped_pfn;
Keith Mannthey45e0b782006-09-30 23:27:09 -0700640
Yasunori Gotobc02af92006-06-27 02:53:30 -0700641 ret = __add_pages(zone, start_pfn, nr_pages);
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100642 WARN_ON(1);
Yasunori Gotobc02af92006-06-27 02:53:30 -0700643
Yasunori Gotobc02af92006-06-27 02:53:30 -0700644 return ret;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700645}
646EXPORT_SYMBOL_GPL(arch_add_memory);
647
Yasunori Goto82432292006-11-18 22:19:40 -0800648#if !defined(CONFIG_ACPI_NUMA) && defined(CONFIG_NUMA)
Keith Mannthey4942e992006-09-30 23:27:06 -0700649int memory_add_physaddr_to_nid(u64 start)
650{
651 return 0;
652}
Keith Mannthey8c2676a2006-09-30 23:27:07 -0700653EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
Keith Mannthey4942e992006-09-30 23:27:06 -0700654#endif
655
Keith Mannthey45e0b782006-09-30 23:27:09 -0700656#endif /* CONFIG_MEMORY_HOTPLUG */
657
Arjan van de Venae531c22008-04-24 23:40:47 +0200658/*
659 * devmem_is_allowed() checks to see if /dev/mem access to a certain address
660 * is valid. The argument is a physical page number.
661 *
662 *
663 * On x86, access has to be given to the first megabyte of ram because that area
664 * contains bios code and data regions used by X and dosemu and similar apps.
665 * Access has to be given to non-kernel-ram areas as well, these contain the PCI
666 * mmio resources as well as potential bios/acpi data regions.
667 */
668int devmem_is_allowed(unsigned long pagenr)
669{
670 if (pagenr <= 256)
671 return 1;
672 if (!page_is_ram(pagenr))
673 return 1;
674 return 0;
675}
676
677
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100678static struct kcore_list kcore_mem, kcore_vmalloc, kcore_kernel,
679 kcore_modules, kcore_vsyscall;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
681void __init mem_init(void)
682{
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200683 long codesize, reservedpages, datasize, initsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Jon Mason0dc243a2006-06-26 13:58:11 +0200685 pci_iommu_alloc();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Yinghai Lu48ddb152008-01-30 13:32:36 +0100687 /* clear_bss() already clear the empty_zero_page */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
689 reservedpages = 0;
690
691 /* this will put all low memory onto the freelists */
Matt Tolentino2b976902005-06-23 00:08:06 -0700692#ifdef CONFIG_NUMA
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200693 totalram_pages = numa_free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694#else
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200695 totalram_pages = free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696#endif
Mel Gorman5cb248a2006-09-27 01:49:52 -0700697 reservedpages = end_pfn - totalram_pages -
698 absent_pages_in_range(0, end_pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 after_bootmem = 1;
700
701 codesize = (unsigned long) &_etext - (unsigned long) &_text;
702 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
703 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
704
705 /* Register memory areas for /proc/kcore */
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100706 kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
707 kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 VMALLOC_END-VMALLOC_START);
709 kclist_add(&kcore_kernel, &_stext, _end - _stext);
710 kclist_add(&kcore_modules, (void *)MODULES_VADDR, MODULES_LEN);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100711 kclist_add(&kcore_vsyscall, (void *)VSYSCALL_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 VSYSCALL_END - VSYSCALL_START);
713
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100714 printk(KERN_INFO "Memory: %luk/%luk available (%ldk kernel code, "
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100715 "%ldk reserved, %ldk data, %ldk init)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
717 end_pfn << (PAGE_SHIFT-10),
718 codesize >> 10,
719 reservedpages << (PAGE_SHIFT-10),
720 datasize >> 10,
721 initsize >> 10);
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100722
723 cpa_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724}
725
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200726void free_init_pages(char *what, unsigned long begin, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
Thomas Gleixnerbfc734b2008-02-09 23:24:09 +0100728 unsigned long addr = begin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Thomas Gleixnerbfc734b2008-02-09 23:24:09 +0100730 if (addr >= end)
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200731 return;
732
Ingo Molnaree01f112008-01-30 13:34:09 +0100733 /*
734 * If debugging page accesses then do not free this memory but
735 * mark them not present - any buggy init-section access will
736 * create a kernel page fault:
737 */
738#ifdef CONFIG_DEBUG_PAGEALLOC
739 printk(KERN_INFO "debug: unmapping init memory %08lx..%08lx\n",
740 begin, PAGE_ALIGN(end));
741 set_memory_np(begin, (end - begin) >> PAGE_SHIFT);
742#else
Jan Beulich6fb14752007-05-02 19:27:10 +0200743 printk(KERN_INFO "Freeing %s: %luk freed\n", what, (end - begin) >> 10);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100744
Thomas Gleixnerbfc734b2008-02-09 23:24:09 +0100745 for (; addr < end; addr += PAGE_SIZE) {
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700746 ClearPageReserved(virt_to_page(addr));
747 init_page_count(virt_to_page(addr));
748 memset((void *)(addr & ~(PAGE_SIZE-1)),
749 POISON_FREE_INITMEM, PAGE_SIZE);
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700750 free_page(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 totalram_pages++;
752 }
Ingo Molnaree01f112008-01-30 13:34:09 +0100753#endif
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200754}
755
756void free_initmem(void)
757{
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200758 free_init_pages("unused kernel memory",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700759 (unsigned long)(&__init_begin),
760 (unsigned long)(&__init_end));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761}
762
Arjan van de Ven67df1972006-01-06 00:12:04 -0800763#ifdef CONFIG_DEBUG_RODATA
Arjan van de Venedeed302008-01-30 13:34:08 +0100764const int rodata_test_data = 0xC3;
765EXPORT_SYMBOL_GPL(rodata_test_data);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800766
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);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800770
Jan Beulich6fb14752007-05-02 19:27:10 +0200771 printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700772 (end - start) >> 10);
Arjan van de Ven984bb802008-02-06 22:39:45 +0100773 set_memory_ro(start, (end - start) >> PAGE_SHIFT);
774
775 /*
776 * The rodata section (but not the kernel text!) should also be
777 * not-executable.
778 */
779 start = ((unsigned long)__start_rodata + PAGE_SIZE - 1) & PAGE_MASK;
780 set_memory_nx(start, (end - start) >> PAGE_SHIFT);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800781
Arjan van de Ven1a487252008-01-30 13:34:09 +0100782 rodata_test();
783
Andi Kleen0c42f392008-01-30 13:33:42 +0100784#ifdef CONFIG_CPA_DEBUG
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100785 printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, end);
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100786 set_memory_rw(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +0100787
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100788 printk(KERN_INFO "Testing CPA: again\n");
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100789 set_memory_ro(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +0100790#endif
Arjan van de Ven67df1972006-01-06 00:12:04 -0800791}
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -0500792
Arjan van de Ven67df1972006-01-06 00:12:04 -0800793#endif
794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795#ifdef CONFIG_BLK_DEV_INITRD
796void free_initrd_mem(unsigned long start, unsigned long end)
797{
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700798 free_init_pages("initrd memory", start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799}
800#endif
801
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100802void __init reserve_bootmem_generic(unsigned long phys, unsigned len)
803{
Matt Tolentino2b976902005-06-23 00:08:06 -0700804#ifdef CONFIG_NUMA
Yinghai Lu8b3cd09e2008-03-18 12:50:21 -0700805 int nid, next_nid;
Andi Kleen5e58a022006-11-14 16:57:46 +0100806#endif
807 unsigned long pfn = phys >> PAGE_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100808
Andi Kleen5e58a022006-11-14 16:57:46 +0100809 if (pfn >= end_pfn) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100810 /*
811 * This can happen with kdump kernels when accessing
812 * firmware tables:
813 */
Thomas Gleixner67794292008-03-21 21:27:10 +0100814 if (pfn < max_pfn_mapped)
Andi Kleen5e58a022006-11-14 16:57:46 +0100815 return;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100816
Andi Kleen5e58a022006-11-14 16:57:46 +0100817 printk(KERN_ERR "reserve_bootmem: illegal reserve %lx %u\n",
818 phys, len);
819 return;
820 }
821
822 /* Should check here against the e820 map to avoid double free */
823#ifdef CONFIG_NUMA
Yinghai Lu8b3cd09e2008-03-18 12:50:21 -0700824 nid = phys_to_nid(phys);
825 next_nid = phys_to_nid(phys + len - 1);
826 if (nid == next_nid)
827 reserve_bootmem_node(NODE_DATA(nid), phys, len, BOOTMEM_DEFAULT);
828 else
829 reserve_bootmem(phys, len, BOOTMEM_DEFAULT);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100830#else
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800831 reserve_bootmem(phys, len, BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832#endif
Yinghai Lu8b3cd09e2008-03-18 12:50:21 -0700833
Mel Gorman0e0b8642006-09-27 01:49:56 -0700834 if (phys+len <= MAX_DMA_PFN*PAGE_SIZE) {
Andi Kleene18c6872005-11-05 17:25:53 +0100835 dma_reserve += len / PAGE_SIZE;
Mel Gorman0e0b8642006-09-27 01:49:56 -0700836 set_dma_reserve(dma_reserve);
837 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838}
839
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100840int kern_addr_valid(unsigned long addr)
841{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 unsigned long above = ((long)addr) >> __VIRTUAL_MASK_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100843 pgd_t *pgd;
844 pud_t *pud;
845 pmd_t *pmd;
846 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848 if (above != 0 && above != -1UL)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100849 return 0;
850
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 pgd = pgd_offset_k(addr);
852 if (pgd_none(*pgd))
853 return 0;
854
855 pud = pud_offset(pgd, addr);
856 if (pud_none(*pud))
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100857 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
859 pmd = pmd_offset(pud, addr);
860 if (pmd_none(*pmd))
861 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100862
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 if (pmd_large(*pmd))
864 return pfn_valid(pmd_pfn(*pmd));
865
866 pte = pte_offset_kernel(pmd, addr);
867 if (pte_none(*pte))
868 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100869
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 return pfn_valid(pte_pfn(*pte));
871}
872
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100873/*
874 * A pseudo VMA to allow ptrace access for the vsyscall page. This only
875 * covers the 64bit vsyscall page now. 32bit has a real VMA now and does
876 * not need special handling anymore:
877 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878static struct vm_area_struct gate_vma = {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100879 .vm_start = VSYSCALL_START,
880 .vm_end = VSYSCALL_START + (VSYSCALL_MAPPED_PAGES * PAGE_SIZE),
881 .vm_page_prot = PAGE_READONLY_EXEC,
882 .vm_flags = VM_READ | VM_EXEC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883};
884
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885struct vm_area_struct *get_gate_vma(struct task_struct *tsk)
886{
887#ifdef CONFIG_IA32_EMULATION
Andi Kleen1e014412005-04-16 15:24:55 -0700888 if (test_tsk_thread_flag(tsk, TIF_IA32))
889 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890#endif
891 return &gate_vma;
892}
893
894int in_gate_area(struct task_struct *task, unsigned long addr)
895{
896 struct vm_area_struct *vma = get_gate_vma(task);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100897
Andi Kleen1e014412005-04-16 15:24:55 -0700898 if (!vma)
899 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100900
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 return (addr >= vma->vm_start) && (addr < vma->vm_end);
902}
903
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100904/*
905 * Use this when you have no reliable task/vma, typically from interrupt
906 * context. It is less reliable than using the task's vma and may give
907 * false positives:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 */
909int in_gate_area_no_task(unsigned long addr)
910{
Andi Kleen1e014412005-04-16 15:24:55 -0700911 return (addr >= VSYSCALL_START) && (addr < VSYSCALL_END);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912}
Zou Nan hai2e1c49d2007-06-01 00:46:28 -0700913
Andi Kleen2aae9502007-07-21 17:10:01 +0200914const char *arch_vma_name(struct vm_area_struct *vma)
915{
916 if (vma->vm_mm && vma->vm_start == (long)vma->vm_mm->context.vdso)
917 return "[vdso]";
918 if (vma == &gate_vma)
919 return "[vsyscall]";
920 return NULL;
921}
Christoph Lameter0889eba2007-10-16 01:24:15 -0700922
923#ifdef CONFIG_SPARSEMEM_VMEMMAP
924/*
925 * Initialise the sparsemem vmemmap using huge-pages at the PMD level.
926 */
Yinghai Luc2b91e22008-04-12 01:19:24 -0700927static long __meminitdata addr_start, addr_end;
928static void __meminitdata *p_start, *p_end;
929static int __meminitdata node_start;
930
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100931int __meminit
932vmemmap_populate(struct page *start_page, unsigned long size, int node)
Christoph Lameter0889eba2007-10-16 01:24:15 -0700933{
934 unsigned long addr = (unsigned long)start_page;
935 unsigned long end = (unsigned long)(start_page + size);
936 unsigned long next;
937 pgd_t *pgd;
938 pud_t *pud;
939 pmd_t *pmd;
940
941 for (; addr < end; addr = next) {
942 next = pmd_addr_end(addr, end);
943
944 pgd = vmemmap_pgd_populate(addr, node);
945 if (!pgd)
946 return -ENOMEM;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100947
Christoph Lameter0889eba2007-10-16 01:24:15 -0700948 pud = vmemmap_pud_populate(pgd, addr, node);
949 if (!pud)
950 return -ENOMEM;
951
952 pmd = pmd_offset(pud, addr);
953 if (pmd_none(*pmd)) {
954 pte_t entry;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100955 void *p;
956
957 p = vmemmap_alloc_block(PMD_SIZE, node);
Christoph Lameter0889eba2007-10-16 01:24:15 -0700958 if (!p)
959 return -ENOMEM;
960
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100961 entry = pfn_pte(__pa(p) >> PAGE_SHIFT,
962 PAGE_KERNEL_LARGE);
Christoph Lameter0889eba2007-10-16 01:24:15 -0700963 set_pmd(pmd, __pmd(pte_val(entry)));
964
Yinghai Luc2b91e22008-04-12 01:19:24 -0700965 /* check to see if we have contiguous blocks */
966 if (p_end != p || node_start != node) {
967 if (p_start)
968 printk(KERN_DEBUG " [%lx-%lx] PMD -> [%p-%p] on node %d\n",
969 addr_start, addr_end-1, p_start, p_end-1, node_start);
970 addr_start = addr;
971 node_start = node;
972 p_start = p;
973 }
974 addr_end = addr + PMD_SIZE;
975 p_end = p + PMD_SIZE;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100976 } else {
Christoph Lameter0889eba2007-10-16 01:24:15 -0700977 vmemmap_verify((pte_t *)pmd, node, addr, next);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100978 }
Christoph Lameter0889eba2007-10-16 01:24:15 -0700979 }
Christoph Lameter0889eba2007-10-16 01:24:15 -0700980 return 0;
981}
Yinghai Luc2b91e22008-04-12 01:19:24 -0700982
983void __meminit vmemmap_populate_print_last(void)
984{
985 if (p_start) {
986 printk(KERN_DEBUG " [%lx-%lx] PMD -> [%p-%p] on node %d\n",
987 addr_start, addr_end-1, p_start, p_end-1, node_start);
988 p_start = NULL;
989 p_end = NULL;
990 node_start = 0;
991 }
992}
Christoph Lameter0889eba2007-10-16 01:24:15 -0700993#endif