blob: 359e3afaaa6b766ca9faeab23f8489e70b2c0296 [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
Yinghai Lu064d25f2008-06-16 19:58:28 -070051/*
52 * PFN of last memory page.
53 */
54unsigned long end_pfn;
55
56/*
57 * end_pfn only includes RAM, while max_pfn_mapped includes all e820 entries.
58 * The direct mapping extends to max_pfn_mapped, so that we can directly access
59 * apertures, ACPI and other tables without having to play with fixmaps.
60 */
61unsigned long max_pfn_mapped;
62
Andi Kleene18c6872005-11-05 17:25:53 +010063static unsigned long dma_reserve __initdata;
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
66
Ingo Molnar00d1c5e2008-04-17 17:40:45 +020067int direct_gbpages __meminitdata
68#ifdef CONFIG_DIRECT_GBPAGES
69 = 1
70#endif
71;
72
73static int __init parse_direct_gbpages_off(char *arg)
74{
75 direct_gbpages = 0;
76 return 0;
77}
78early_param("nogbpages", parse_direct_gbpages_off);
79
80static int __init parse_direct_gbpages_on(char *arg)
81{
82 direct_gbpages = 1;
83 return 0;
84}
85early_param("gbpages", parse_direct_gbpages_on);
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087/*
88 * NOTE: pagetable_init alloc all the fixmap pagetables contiguous on the
89 * physical space so we can cache the place of the first one and move
90 * around without checking the pgd every time.
91 */
92
93void show_mem(void)
94{
Andi Kleene92343c2005-09-12 18:49:24 +020095 long i, total = 0, reserved = 0;
96 long shared = 0, cached = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 struct page *page;
Thomas Gleixner14a62c32008-01-30 13:34:10 +010098 pg_data_t *pgdat;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Andi Kleene92343c2005-09-12 18:49:24 +0200100 printk(KERN_INFO "Mem-info:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 show_free_areas();
KAMEZAWA Hiroyukiec936fc2006-03-27 01:15:59 -0800102 for_each_online_pgdat(pgdat) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100103 for (i = 0; i < pgdat->node_spanned_pages; ++i) {
104 /*
105 * This loop can take a while with 256 GB and
106 * 4k pages so defer the NMI watchdog:
107 */
108 if (unlikely(i % MAX_ORDER_NR_PAGES == 0))
Konrad Rzeszutekae32b122007-05-02 19:27:11 +0200109 touch_nmi_watchdog();
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100110
Bob Picco12710a52007-06-08 13:47:00 -0700111 if (!pfn_valid(pgdat->node_start_pfn + i))
112 continue;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 page = pfn_to_page(pgdat->node_start_pfn + i);
115 total++;
Andi Kleene92343c2005-09-12 18:49:24 +0200116 if (PageReserved(page))
117 reserved++;
118 else if (PageSwapCache(page))
119 cached++;
120 else if (page_count(page))
121 shared += page_count(page) - 1;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100122 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 }
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100124 printk(KERN_INFO "%lu pages of RAM\n", total);
125 printk(KERN_INFO "%lu reserved pages\n", reserved);
126 printk(KERN_INFO "%lu pages shared\n", shared);
127 printk(KERN_INFO "%lu pages swap cached\n", cached);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128}
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130int after_bootmem;
131
Andi Kleen5f44a662006-03-25 16:30:25 +0100132static __init void *spp_getpage(void)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100133{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 void *ptr;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 if (after_bootmem)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100137 ptr = (void *) get_zeroed_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 else
139 ptr = alloc_bootmem_pages(PAGE_SIZE);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100140
141 if (!ptr || ((unsigned long)ptr & ~PAGE_MASK)) {
142 panic("set_pte_phys: cannot allocate page data %s\n",
143 after_bootmem ? "after bootmem" : "");
144 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100146 pr_debug("spp_getpage %p\n", ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100148 return ptr;
149}
150
Jeremy Fitzhardinged494a962008-06-17 11:41:59 -0700151void
152set_pte_vaddr(unsigned long vaddr, pte_t new_pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
154 pgd_t *pgd;
155 pud_t *pud;
156 pmd_t *pmd;
Jeremy Fitzhardinged494a962008-06-17 11:41:59 -0700157 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Jeremy Fitzhardinged494a962008-06-17 11:41:59 -0700159 pr_debug("set_pte_vaddr %lx to %lx\n", vaddr, native_pte_val(new_pte));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 pgd = pgd_offset_k(vaddr);
162 if (pgd_none(*pgd)) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100163 printk(KERN_ERR
164 "PGD FIXMAP MISSING, it should be setup in head.S!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 return;
166 }
167 pud = pud_offset(pgd, vaddr);
168 if (pud_none(*pud)) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100169 pmd = (pmd_t *) spp_getpage();
Jeremy Fitzhardingebb23e402008-06-25 00:19:02 -0400170 pud_populate(&init_mm, pud, pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 if (pmd != pmd_offset(pud, 0)) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100172 printk(KERN_ERR "PAGETABLE BUG #01! %p <-> %p\n",
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100173 pmd, pmd_offset(pud, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 return;
175 }
176 }
177 pmd = pmd_offset(pud, vaddr);
178 if (pmd_none(*pmd)) {
179 pte = (pte_t *) spp_getpage();
Jeremy Fitzhardingebb23e402008-06-25 00:19:02 -0400180 pmd_populate_kernel(&init_mm, pmd, pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 if (pte != pte_offset_kernel(pmd, 0)) {
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100182 printk(KERN_ERR "PAGETABLE BUG #02!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 return;
184 }
185 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
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
Andi Kleen75175272008-01-30 13:33:17 +0100228static unsigned long __initdata table_start;
229static unsigned long __meminitdata table_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200231static __meminit void *alloc_low_page(unsigned long *phys)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100232{
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200233 unsigned long pfn = table_end++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 void *adr;
235
Matt Tolentino44df75e2006-01-17 07:03:41 +0100236 if (after_bootmem) {
237 adr = (void *)get_zeroed_page(GFP_ATOMIC);
238 *phys = __pa(adr);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100239
Matt Tolentino44df75e2006-01-17 07:03:41 +0100240 return adr;
241 }
242
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100243 if (pfn >= end_pfn)
244 panic("alloc_low_page: ran out of memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200246 adr = early_ioremap(pfn * PAGE_SIZE, PAGE_SIZE);
247 memset(adr, 0, PAGE_SIZE);
248 *phys = pfn * PAGE_SIZE;
249 return adr;
250}
251
252static __meminit void unmap_low_page(void *adr)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100253{
Matt Tolentino44df75e2006-01-17 07:03:41 +0100254 if (after_bootmem)
255 return;
256
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200257 early_iounmap(adr, PAGE_SIZE);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100258}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Andi Kleencc615032008-03-12 03:53:28 +0100260static unsigned long __meminit
Keith Mannthey6ad91652006-09-26 10:52:36 +0200261phys_pmd_init(pmd_t *pmd_page, unsigned long address, unsigned long end)
Matt Tolentino44df75e2006-01-17 07:03:41 +0100262{
Andi Kleence0c0e52008-05-02 11:46:49 +0200263 unsigned long pages = 0;
264
Keith Mannthey6ad91652006-09-26 10:52:36 +0200265 int i = pmd_index(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Keith Mannthey6ad91652006-09-26 10:52:36 +0200267 for (; i < PTRS_PER_PMD; i++, address += PMD_SIZE) {
Keith Mannthey6ad91652006-09-26 10:52:36 +0200268 pmd_t *pmd = pmd_page + pmd_index(address);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100269
Jan Beulich5f51e132006-06-26 13:59:02 +0200270 if (address >= end) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100271 if (!after_bootmem) {
Jan Beulich5f51e132006-06-26 13:59:02 +0200272 for (; i < PTRS_PER_PMD; i++, pmd++)
273 set_pmd(pmd, __pmd(0));
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100274 }
Matt Tolentino44df75e2006-01-17 07:03:41 +0100275 break;
276 }
Keith Mannthey6ad91652006-09-26 10:52:36 +0200277
278 if (pmd_val(*pmd))
279 continue;
280
Andi Kleence0c0e52008-05-02 11:46:49 +0200281 pages++;
Andi Kleend4f71f72008-02-04 16:48:09 +0100282 set_pte((pte_t *)pmd,
283 pfn_pte(address >> PAGE_SHIFT, PAGE_KERNEL_LARGE));
Matt Tolentino44df75e2006-01-17 07:03:41 +0100284 }
Andi Kleence0c0e52008-05-02 11:46:49 +0200285 update_page_count(PG_LEVEL_2M, pages);
Andi Kleencc615032008-03-12 03:53:28 +0100286 return address;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100287}
288
Andi Kleencc615032008-03-12 03:53:28 +0100289static unsigned long __meminit
Matt Tolentino44df75e2006-01-17 07:03:41 +0100290phys_pmd_update(pud_t *pud, unsigned long address, unsigned long end)
291{
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100292 pmd_t *pmd = pmd_offset(pud, 0);
Andi Kleencc615032008-03-12 03:53:28 +0100293 unsigned long last_map_addr;
294
Keith Mannthey6ad91652006-09-26 10:52:36 +0200295 spin_lock(&init_mm.page_table_lock);
Andi Kleencc615032008-03-12 03:53:28 +0100296 last_map_addr = phys_pmd_init(pmd, address, end);
Keith Mannthey6ad91652006-09-26 10:52:36 +0200297 spin_unlock(&init_mm.page_table_lock);
298 __flush_tlb_all();
Andi Kleencc615032008-03-12 03:53:28 +0100299 return last_map_addr;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100300}
301
Andi Kleencc615032008-03-12 03:53:28 +0100302static unsigned long __meminit
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100303phys_pud_init(pud_t *pud_page, unsigned long addr, unsigned long end)
304{
Andi Kleence0c0e52008-05-02 11:46:49 +0200305 unsigned long pages = 0;
Andi Kleencc615032008-03-12 03:53:28 +0100306 unsigned long last_map_addr = end;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200307 int i = pud_index(addr);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100308
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100309 for (; i < PTRS_PER_PUD; i++, addr = (addr & PUD_MASK) + PUD_SIZE) {
Keith Mannthey6ad91652006-09-26 10:52:36 +0200310 unsigned long pmd_phys;
311 pud_t *pud = pud_page + pud_index(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 pmd_t *pmd;
313
Keith Mannthey6ad91652006-09-26 10:52:36 +0200314 if (addr >= end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100317 if (!after_bootmem &&
318 !e820_any_mapped(addr, addr+PUD_SIZE, 0)) {
319 set_pud(pud, __pud(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 continue;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Keith Mannthey6ad91652006-09-26 10:52:36 +0200323 if (pud_val(*pud)) {
Andi Kleenef925762008-04-17 17:40:45 +0200324 if (!pud_large(*pud))
Andi Kleencc615032008-03-12 03:53:28 +0100325 last_map_addr = phys_pmd_update(pud, addr, end);
Andi Kleenef925762008-04-17 17:40:45 +0200326 continue;
327 }
328
329 if (direct_gbpages) {
Andi Kleence0c0e52008-05-02 11:46:49 +0200330 pages++;
Andi Kleenef925762008-04-17 17:40:45 +0200331 set_pte((pte_t *)pud,
332 pfn_pte(addr >> PAGE_SHIFT, PAGE_KERNEL_LARGE));
Andi Kleencc615032008-03-12 03:53:28 +0100333 last_map_addr = (addr & PUD_MASK) + PUD_SIZE;
Keith Mannthey6ad91652006-09-26 10:52:36 +0200334 continue;
335 }
336
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200337 pmd = alloc_low_page(&pmd_phys);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100338
Matt Tolentino44df75e2006-01-17 07:03:41 +0100339 spin_lock(&init_mm.page_table_lock);
Jeremy Fitzhardingebb23e402008-06-25 00:19:02 -0400340 pud_populate(&init_mm, pud, __va(pmd_phys));
Andi Kleencc615032008-03-12 03:53:28 +0100341 last_map_addr = phys_pmd_init(pmd, addr, end);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100342 spin_unlock(&init_mm.page_table_lock);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100343
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200344 unmap_low_page(pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 }
Andi Kleen1a2b4412008-01-30 13:33:54 +0100346 __flush_tlb_all();
Andi Kleence0c0e52008-05-02 11:46:49 +0200347 update_page_count(PG_LEVEL_1G, pages);
Andi Kleencc615032008-03-12 03:53:28 +0100348
Yinghai Lu1a0db382008-06-24 14:56:20 -0700349 return last_map_addr;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100350}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
352static void __init find_early_table_space(unsigned long end)
353{
Andi Kleen6c5acd12006-01-11 22:46:57 +0100354 unsigned long puds, pmds, tables, start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356 puds = (end + PUD_SIZE - 1) >> PUD_SHIFT;
Andi Kleenef925762008-04-17 17:40:45 +0200357 tables = round_up(puds * sizeof(pud_t), PAGE_SIZE);
358 if (!direct_gbpages) {
359 pmds = (end + PMD_SIZE - 1) >> PMD_SHIFT;
360 tables += round_up(pmds * sizeof(pmd_t), PAGE_SIZE);
361 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100363 /*
364 * RED-PEN putting page tables only on node 0 could
365 * cause a hotspot and fill up ZONE_DMA. The page tables
366 * need roughly 0.5KB per GB.
367 */
368 start = 0x8000;
Yinghai Lu24a5da72008-02-01 17:49:41 +0100369 table_start = find_e820_area(start, end, tables, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 if (table_start == -1UL)
371 panic("Cannot find space for the kernel page tables");
372
373 table_start >>= PAGE_SHIFT;
374 table_end = table_start;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100375
376 early_printk("kernel direct mapping tables up to %lx @ %lx-%lx\n",
Jan Beulich5f51e132006-06-26 13:59:02 +0200377 end, table_start << PAGE_SHIFT,
378 (table_start << PAGE_SHIFT) + tables);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379}
380
Andi Kleenef925762008-04-17 17:40:45 +0200381static void __init init_gbpages(void)
382{
383 if (direct_gbpages && cpu_has_gbpages)
384 printk(KERN_INFO "Using GB pages for direct mapping\n");
385 else
386 direct_gbpages = 0;
387}
388
Yinghai Lu03273182008-04-18 17:49:15 -0700389#ifdef CONFIG_MEMTEST
Yinghai Luc64df702008-03-21 18:56:19 -0700390
391static void __init memtest(unsigned long start_phys, unsigned long size,
392 unsigned pattern)
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700393{
394 unsigned long i;
395 unsigned long *start;
396 unsigned long start_bad;
397 unsigned long last_bad;
398 unsigned long val;
399 unsigned long start_phys_aligned;
400 unsigned long count;
401 unsigned long incr;
402
403 switch (pattern) {
404 case 0:
405 val = 0UL;
406 break;
407 case 1:
408 val = -1UL;
409 break;
410 case 2:
411 val = 0x5555555555555555UL;
412 break;
413 case 3:
414 val = 0xaaaaaaaaaaaaaaaaUL;
415 break;
416 default:
417 return;
418 }
419
420 incr = sizeof(unsigned long);
421 start_phys_aligned = ALIGN(start_phys, incr);
422 count = (size - (start_phys_aligned - start_phys))/incr;
423 start = __va(start_phys_aligned);
424 start_bad = 0;
425 last_bad = 0;
426
427 for (i = 0; i < count; i++)
428 start[i] = val;
429 for (i = 0; i < count; i++, start++, start_phys_aligned += incr) {
430 if (*start != val) {
431 if (start_phys_aligned == last_bad + incr) {
432 last_bad += incr;
433 } else {
434 if (start_bad) {
Yinghai Ludcfe9462008-04-15 23:17:42 -0700435 printk(KERN_CONT "\n %016lx bad mem addr %016lx - %016lx reserved",
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700436 val, start_bad, last_bad + incr);
437 reserve_early(start_bad, last_bad - start_bad, "BAD RAM");
438 }
439 start_bad = last_bad = start_phys_aligned;
440 }
441 }
442 }
443 if (start_bad) {
Yinghai Ludcfe9462008-04-15 23:17:42 -0700444 printk(KERN_CONT "\n %016lx bad mem addr %016lx - %016lx reserved",
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700445 val, start_bad, last_bad + incr);
446 reserve_early(start_bad, last_bad - start_bad, "BAD RAM");
447 }
448
449}
450
Yinghai Lu03273182008-04-18 17:49:15 -0700451/* default is disabled */
452static int memtest_pattern __initdata;
Yinghai Luc64df702008-03-21 18:56:19 -0700453
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700454static int __init parse_memtest(char *arg)
455{
456 if (arg)
Yinghai Luc64df702008-03-21 18:56:19 -0700457 memtest_pattern = simple_strtoul(arg, NULL, 0);
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700458 return 0;
459}
460
461early_param("memtest", parse_memtest);
462
463static void __init early_memtest(unsigned long start, unsigned long end)
464{
Andrew Morton27df66a2008-07-03 10:14:10 +0200465 u64 t_start, t_size;
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700466 unsigned pattern;
467
Yinghai Luc64df702008-03-21 18:56:19 -0700468 if (!memtest_pattern)
469 return;
470
471 printk(KERN_INFO "early_memtest: pattern num %d", memtest_pattern);
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700472 for (pattern = 0; pattern < memtest_pattern; pattern++) {
473 t_start = start;
474 t_size = 0;
475 while (t_start < end) {
476 t_start = find_e820_area_size(t_start, &t_size, 1);
477
478 /* done ? */
479 if (t_start >= end)
480 break;
481 if (t_start + t_size > end)
482 t_size = end - t_start;
483
Andrew Morton27df66a2008-07-03 10:14:10 +0200484 printk(KERN_CONT "\n %016llx - %016llx pattern %d",
485 (unsigned long long)t_start,
486 (unsigned long long)t_start + t_size, pattern);
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700487
488 memtest(t_start, t_size, pattern);
489
490 t_start += t_size;
491 }
492 }
Yinghai Luc64df702008-03-21 18:56:19 -0700493 printk(KERN_CONT "\n");
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700494}
Yinghai Luc64df702008-03-21 18:56:19 -0700495#else
496static void __init early_memtest(unsigned long start, unsigned long end)
497{
498}
499#endif
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700500
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100501/*
502 * Setup the direct mapping of the physical memory at PAGE_OFFSET.
503 * This runs before bootmem is initialized and gets pages directly from
504 * the physical memory. To access them they are temporarily mapped.
505 */
Andi Kleencc615032008-03-12 03:53:28 +0100506unsigned long __init_refok init_memory_mapping(unsigned long start, unsigned long end)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100507{
Andi Kleencc615032008-03-12 03:53:28 +0100508 unsigned long next, last_map_addr = end;
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700509 unsigned long start_phys = start, end_phys = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700511 printk(KERN_INFO "init_memory_mapping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100513 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 * Find space for the kernel direct mapping tables.
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100515 *
516 * Later we should allocate these tables in the local node of the
517 * memory mapped. Unfortunately this is done currently before the
518 * nodes are discovered.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 */
Andi Kleenef925762008-04-17 17:40:45 +0200520 if (!after_bootmem) {
521 init_gbpages();
Matt Tolentino44df75e2006-01-17 07:03:41 +0100522 find_early_table_space(end);
Andi Kleenef925762008-04-17 17:40:45 +0200523 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525 start = (unsigned long)__va(start);
526 end = (unsigned long)__va(end);
527
528 for (; start < end; start = next) {
Matt Tolentino44df75e2006-01-17 07:03:41 +0100529 pgd_t *pgd = pgd_offset_k(start);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100530 unsigned long pud_phys;
Matt Tolentino44df75e2006-01-17 07:03:41 +0100531 pud_t *pud;
532
533 if (after_bootmem)
Andi Kleend2ae5b52006-06-26 13:57:56 +0200534 pud = pud_offset(pgd, start & PGDIR_MASK);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100535 else
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200536 pud = alloc_low_page(&pud_phys);
Matt Tolentino44df75e2006-01-17 07:03:41 +0100537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 next = start + PGDIR_SIZE;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100539 if (next > end)
540 next = end;
Andi Kleencc615032008-03-12 03:53:28 +0100541 last_map_addr = phys_pud_init(pud, __pa(start), __pa(next));
Matt Tolentino44df75e2006-01-17 07:03:41 +0100542 if (!after_bootmem)
Jeremy Fitzhardingebb23e402008-06-25 00:19:02 -0400543 pgd_populate(&init_mm, pgd_offset_k(start),
544 __va(pud_phys));
Vivek Goyaldafe41e2007-05-02 19:27:06 +0200545 unmap_low_page(pud);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100546 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Matt Tolentino44df75e2006-01-17 07:03:41 +0100548 if (!after_bootmem)
Glauber de Oliveira Costaf51c9452007-07-22 11:12:29 +0200549 mmu_cr4_features = read_cr4();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 __flush_tlb_all();
Andi Kleen75175272008-01-30 13:33:17 +0100551
Yinghai Lu24a5da72008-02-01 17:49:41 +0100552 if (!after_bootmem)
553 reserve_early(table_start << PAGE_SHIFT,
554 table_end << PAGE_SHIFT, "PGTABLE");
Yinghai Lu272b9ca2008-03-20 23:58:33 -0700555
556 if (!after_bootmem)
557 early_memtest(start_phys, end_phys);
Andi Kleencc615032008-03-12 03:53:28 +0100558
Yinghai Lu1a0db382008-06-24 14:56:20 -0700559 return last_map_addr >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560}
561
Matt Tolentino2b976902005-06-23 00:08:06 -0700562#ifndef CONFIG_NUMA
Yinghai Lu1f75d7e2008-06-22 02:44:49 -0700563void __init initmem_init(unsigned long start_pfn, unsigned long end_pfn)
564{
565 unsigned long bootmap_size, bootmap;
566
567 bootmap_size = bootmem_bootmap_pages(end_pfn)<<PAGE_SHIFT;
568 bootmap = find_e820_area(0, end_pfn<<PAGE_SHIFT, bootmap_size,
569 PAGE_SIZE);
570 if (bootmap == -1L)
571 panic("Cannot find bootmem map of size %ld\n", bootmap_size);
Yinghai Lu346cafe2008-06-23 03:06:14 -0700572 /* don't touch min_low_pfn */
573 bootmap_size = init_bootmem_node(NODE_DATA(0), bootmap >> PAGE_SHIFT,
574 0, end_pfn);
Yinghai Lu1f75d7e2008-06-22 02:44:49 -0700575 e820_register_active_regions(0, start_pfn, end_pfn);
576 free_bootmem_with_active_regions(0, end_pfn);
577 early_res_to_bootmem(0, end_pfn<<PAGE_SHIFT);
578 reserve_bootmem(bootmap, bootmap_size, BOOTMEM_DEFAULT);
579}
580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581void __init paging_init(void)
582{
Mel Gorman6391af12006-10-11 01:20:39 -0700583 unsigned long max_zone_pfns[MAX_NR_ZONES];
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100584
Mel Gorman6391af12006-10-11 01:20:39 -0700585 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
586 max_zone_pfns[ZONE_DMA] = MAX_DMA_PFN;
587 max_zone_pfns[ZONE_DMA32] = MAX_DMA32_PFN;
588 max_zone_pfns[ZONE_NORMAL] = end_pfn;
589
Matt Tolentino44df75e2006-01-17 07:03:41 +0100590 memory_present(0, 0, end_pfn);
591 sparse_init();
Mel Gorman5cb248a2006-09-27 01:49:52 -0700592 free_area_init_nodes(max_zone_pfns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593}
594#endif
595
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100596/*
Matt Tolentino44df75e2006-01-17 07:03:41 +0100597 * Memory hotplug specific functions
Matt Tolentino44df75e2006-01-17 07:03:41 +0100598 */
Yasunori Gotobc02af92006-06-27 02:53:30 -0700599#ifdef CONFIG_MEMORY_HOTPLUG
600/*
Yasunori Gotobc02af92006-06-27 02:53:30 -0700601 * Memory is added always to NORMAL zone. This means you will never get
602 * additional DMA/DMA32 memory.
603 */
604int arch_add_memory(int nid, u64 start, u64 size)
605{
606 struct pglist_data *pgdat = NODE_DATA(nid);
Christoph Lameter776ed982006-09-25 23:31:09 -0700607 struct zone *zone = pgdat->node_zones + ZONE_NORMAL;
Andi Kleencc615032008-03-12 03:53:28 +0100608 unsigned long last_mapped_pfn, start_pfn = start >> PAGE_SHIFT;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700609 unsigned long nr_pages = size >> PAGE_SHIFT;
610 int ret;
611
Andi Kleencc615032008-03-12 03:53:28 +0100612 last_mapped_pfn = init_memory_mapping(start, start + size-1);
613 if (last_mapped_pfn > max_pfn_mapped)
614 max_pfn_mapped = last_mapped_pfn;
Keith Mannthey45e0b782006-09-30 23:27:09 -0700615
Yasunori Gotobc02af92006-06-27 02:53:30 -0700616 ret = __add_pages(zone, start_pfn, nr_pages);
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100617 WARN_ON(1);
Yasunori Gotobc02af92006-06-27 02:53:30 -0700618
Yasunori Gotobc02af92006-06-27 02:53:30 -0700619 return ret;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700620}
621EXPORT_SYMBOL_GPL(arch_add_memory);
622
Yasunori Goto82432292006-11-18 22:19:40 -0800623#if !defined(CONFIG_ACPI_NUMA) && defined(CONFIG_NUMA)
Keith Mannthey4942e992006-09-30 23:27:06 -0700624int memory_add_physaddr_to_nid(u64 start)
625{
626 return 0;
627}
Keith Mannthey8c2676a2006-09-30 23:27:07 -0700628EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
Keith Mannthey4942e992006-09-30 23:27:06 -0700629#endif
630
Keith Mannthey45e0b782006-09-30 23:27:09 -0700631#endif /* CONFIG_MEMORY_HOTPLUG */
632
Arjan van de Venae531c22008-04-24 23:40:47 +0200633/*
634 * devmem_is_allowed() checks to see if /dev/mem access to a certain address
635 * is valid. The argument is a physical page number.
636 *
637 *
638 * On x86, access has to be given to the first megabyte of ram because that area
639 * contains bios code and data regions used by X and dosemu and similar apps.
640 * Access has to be given to non-kernel-ram areas as well, these contain the PCI
641 * mmio resources as well as potential bios/acpi data regions.
642 */
643int devmem_is_allowed(unsigned long pagenr)
644{
645 if (pagenr <= 256)
646 return 1;
647 if (!page_is_ram(pagenr))
648 return 1;
649 return 0;
650}
651
652
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100653static struct kcore_list kcore_mem, kcore_vmalloc, kcore_kernel,
654 kcore_modules, kcore_vsyscall;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
656void __init mem_init(void)
657{
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200658 long codesize, reservedpages, datasize, initsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Jon Mason0dc243a2006-06-26 13:58:11 +0200660 pci_iommu_alloc();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
Yinghai Lu48ddb152008-01-30 13:32:36 +0100662 /* clear_bss() already clear the empty_zero_page */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
664 reservedpages = 0;
665
666 /* this will put all low memory onto the freelists */
Matt Tolentino2b976902005-06-23 00:08:06 -0700667#ifdef CONFIG_NUMA
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200668 totalram_pages = numa_free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669#else
Andi Kleen0a43e4b2005-09-12 18:49:24 +0200670 totalram_pages = free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671#endif
Mel Gorman5cb248a2006-09-27 01:49:52 -0700672 reservedpages = end_pfn - totalram_pages -
673 absent_pages_in_range(0, end_pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 after_bootmem = 1;
675
676 codesize = (unsigned long) &_etext - (unsigned long) &_text;
677 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
678 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
679
680 /* Register memory areas for /proc/kcore */
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100681 kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
682 kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 VMALLOC_END-VMALLOC_START);
684 kclist_add(&kcore_kernel, &_stext, _end - _stext);
685 kclist_add(&kcore_modules, (void *)MODULES_VADDR, MODULES_LEN);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100686 kclist_add(&kcore_vsyscall, (void *)VSYSCALL_START,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 VSYSCALL_END - VSYSCALL_START);
688
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100689 printk(KERN_INFO "Memory: %luk/%luk available (%ldk kernel code, "
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100690 "%ldk reserved, %ldk data, %ldk init)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
692 end_pfn << (PAGE_SHIFT-10),
693 codesize >> 10,
694 reservedpages << (PAGE_SHIFT-10),
695 datasize >> 10,
696 initsize >> 10);
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100697
698 cpa_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699}
700
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200701void free_init_pages(char *what, unsigned long begin, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
Thomas Gleixnerbfc734b2008-02-09 23:24:09 +0100703 unsigned long addr = begin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Thomas Gleixnerbfc734b2008-02-09 23:24:09 +0100705 if (addr >= end)
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200706 return;
707
Ingo Molnaree01f112008-01-30 13:34:09 +0100708 /*
709 * If debugging page accesses then do not free this memory but
710 * mark them not present - any buggy init-section access will
711 * create a kernel page fault:
712 */
713#ifdef CONFIG_DEBUG_PAGEALLOC
714 printk(KERN_INFO "debug: unmapping init memory %08lx..%08lx\n",
715 begin, PAGE_ALIGN(end));
716 set_memory_np(begin, (end - begin) >> PAGE_SHIFT);
717#else
Jan Beulich6fb14752007-05-02 19:27:10 +0200718 printk(KERN_INFO "Freeing %s: %luk freed\n", what, (end - begin) >> 10);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100719
Thomas Gleixnerbfc734b2008-02-09 23:24:09 +0100720 for (; addr < end; addr += PAGE_SIZE) {
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700721 ClearPageReserved(virt_to_page(addr));
722 init_page_count(virt_to_page(addr));
723 memset((void *)(addr & ~(PAGE_SIZE-1)),
724 POISON_FREE_INITMEM, PAGE_SIZE);
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700725 free_page(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 totalram_pages++;
727 }
Ingo Molnaree01f112008-01-30 13:34:09 +0100728#endif
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200729}
730
731void free_initmem(void)
732{
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200733 free_init_pages("unused kernel memory",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700734 (unsigned long)(&__init_begin),
735 (unsigned long)(&__init_end));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736}
737
Arjan van de Ven67df1972006-01-06 00:12:04 -0800738#ifdef CONFIG_DEBUG_RODATA
Arjan van de Venedeed302008-01-30 13:34:08 +0100739const int rodata_test_data = 0xC3;
740EXPORT_SYMBOL_GPL(rodata_test_data);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800741
Arjan van de Ven67df1972006-01-06 00:12:04 -0800742void mark_rodata_ro(void)
743{
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -0500744 unsigned long start = PFN_ALIGN(_stext), end = PFN_ALIGN(__end_rodata);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800745
Jan Beulich6fb14752007-05-02 19:27:10 +0200746 printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700747 (end - start) >> 10);
Arjan van de Ven984bb802008-02-06 22:39:45 +0100748 set_memory_ro(start, (end - start) >> PAGE_SHIFT);
749
750 /*
751 * The rodata section (but not the kernel text!) should also be
752 * not-executable.
753 */
754 start = ((unsigned long)__start_rodata + PAGE_SIZE - 1) & PAGE_MASK;
755 set_memory_nx(start, (end - start) >> PAGE_SHIFT);
Arjan van de Ven67df1972006-01-06 00:12:04 -0800756
Arjan van de Ven1a487252008-01-30 13:34:09 +0100757 rodata_test();
758
Andi Kleen0c42f392008-01-30 13:33:42 +0100759#ifdef CONFIG_CPA_DEBUG
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100760 printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, end);
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100761 set_memory_rw(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +0100762
Ingo Molnar10f22dd2008-01-30 13:34:10 +0100763 printk(KERN_INFO "Testing CPA: again\n");
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100764 set_memory_ro(start, (end-start) >> PAGE_SHIFT);
Andi Kleen0c42f392008-01-30 13:33:42 +0100765#endif
Arjan van de Ven67df1972006-01-06 00:12:04 -0800766}
Mathieu Desnoyers4e4eee02008-02-02 15:42:20 -0500767
Arjan van de Ven67df1972006-01-06 00:12:04 -0800768#endif
769
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770#ifdef CONFIG_BLK_DEV_INITRD
771void free_initrd_mem(unsigned long start, unsigned long end)
772{
Linus Torvaldse3ebadd2007-05-07 08:44:24 -0700773 free_init_pages("initrd memory", start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774}
775#endif
776
Yinghai Lud2dbf342008-06-13 02:00:56 -0700777int __init reserve_bootmem_generic(unsigned long phys, unsigned long len,
778 int flags)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100779{
Matt Tolentino2b976902005-06-23 00:08:06 -0700780#ifdef CONFIG_NUMA
Yinghai Lu8b3cd092008-03-18 12:50:21 -0700781 int nid, next_nid;
Yinghai Lu6a07a0e2008-06-23 14:02:36 -0700782 int ret;
Andi Kleen5e58a022006-11-14 16:57:46 +0100783#endif
784 unsigned long pfn = phys >> PAGE_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100785
Andi Kleen5e58a022006-11-14 16:57:46 +0100786 if (pfn >= end_pfn) {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100787 /*
788 * This can happen with kdump kernels when accessing
789 * firmware tables:
790 */
Thomas Gleixner67794292008-03-21 21:27:10 +0100791 if (pfn < max_pfn_mapped)
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200792 return -EFAULT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100793
Yinghai Lu6a07a0e2008-06-23 14:02:36 -0700794 printk(KERN_ERR "reserve_bootmem: illegal reserve %lx %lu\n",
Andi Kleen5e58a022006-11-14 16:57:46 +0100795 phys, len);
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200796 return -EFAULT;
Andi Kleen5e58a022006-11-14 16:57:46 +0100797 }
798
799 /* Should check here against the e820 map to avoid double free */
800#ifdef CONFIG_NUMA
Yinghai Lu8b3cd092008-03-18 12:50:21 -0700801 nid = phys_to_nid(phys);
802 next_nid = phys_to_nid(phys + len - 1);
803 if (nid == next_nid)
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200804 ret = reserve_bootmem_node(NODE_DATA(nid), phys, len, flags);
Yinghai Lu8b3cd092008-03-18 12:50:21 -0700805 else
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200806 ret = reserve_bootmem(phys, len, flags);
807
808 if (ret != 0)
809 return ret;
810
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100811#else
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800812 reserve_bootmem(phys, len, BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813#endif
Yinghai Lu8b3cd092008-03-18 12:50:21 -0700814
Mel Gorman0e0b8642006-09-27 01:49:56 -0700815 if (phys+len <= MAX_DMA_PFN*PAGE_SIZE) {
Andi Kleene18c6872005-11-05 17:25:53 +0100816 dma_reserve += len / PAGE_SIZE;
Mel Gorman0e0b8642006-09-27 01:49:56 -0700817 set_dma_reserve(dma_reserve);
818 }
Bernhard Walle8b2ef1d2008-06-08 15:46:30 +0200819
820 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821}
822
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100823int kern_addr_valid(unsigned long addr)
824{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 unsigned long above = ((long)addr) >> __VIRTUAL_MASK_SHIFT;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100826 pgd_t *pgd;
827 pud_t *pud;
828 pmd_t *pmd;
829 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
831 if (above != 0 && above != -1UL)
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100832 return 0;
833
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 pgd = pgd_offset_k(addr);
835 if (pgd_none(*pgd))
836 return 0;
837
838 pud = pud_offset(pgd, addr);
839 if (pud_none(*pud))
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100840 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
842 pmd = pmd_offset(pud, addr);
843 if (pmd_none(*pmd))
844 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100845
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 if (pmd_large(*pmd))
847 return pfn_valid(pmd_pfn(*pmd));
848
849 pte = pte_offset_kernel(pmd, addr);
850 if (pte_none(*pte))
851 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100852
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 return pfn_valid(pte_pfn(*pte));
854}
855
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100856/*
857 * A pseudo VMA to allow ptrace access for the vsyscall page. This only
858 * covers the 64bit vsyscall page now. 32bit has a real VMA now and does
859 * not need special handling anymore:
860 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861static struct vm_area_struct gate_vma = {
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100862 .vm_start = VSYSCALL_START,
863 .vm_end = VSYSCALL_START + (VSYSCALL_MAPPED_PAGES * PAGE_SIZE),
864 .vm_page_prot = PAGE_READONLY_EXEC,
865 .vm_flags = VM_READ | VM_EXEC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866};
867
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868struct vm_area_struct *get_gate_vma(struct task_struct *tsk)
869{
870#ifdef CONFIG_IA32_EMULATION
Andi Kleen1e014412005-04-16 15:24:55 -0700871 if (test_tsk_thread_flag(tsk, TIF_IA32))
872 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873#endif
874 return &gate_vma;
875}
876
877int in_gate_area(struct task_struct *task, unsigned long addr)
878{
879 struct vm_area_struct *vma = get_gate_vma(task);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100880
Andi Kleen1e014412005-04-16 15:24:55 -0700881 if (!vma)
882 return 0;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100883
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 return (addr >= vma->vm_start) && (addr < vma->vm_end);
885}
886
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100887/*
888 * Use this when you have no reliable task/vma, typically from interrupt
889 * context. It is less reliable than using the task's vma and may give
890 * false positives:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 */
892int in_gate_area_no_task(unsigned long addr)
893{
Andi Kleen1e014412005-04-16 15:24:55 -0700894 return (addr >= VSYSCALL_START) && (addr < VSYSCALL_END);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895}
Zou Nan hai2e1c49d2007-06-01 00:46:28 -0700896
Andi Kleen2aae9502007-07-21 17:10:01 +0200897const char *arch_vma_name(struct vm_area_struct *vma)
898{
899 if (vma->vm_mm && vma->vm_start == (long)vma->vm_mm->context.vdso)
900 return "[vdso]";
901 if (vma == &gate_vma)
902 return "[vsyscall]";
903 return NULL;
904}
Christoph Lameter0889eba2007-10-16 01:24:15 -0700905
906#ifdef CONFIG_SPARSEMEM_VMEMMAP
907/*
908 * Initialise the sparsemem vmemmap using huge-pages at the PMD level.
909 */
Yinghai Luc2b91e22008-04-12 01:19:24 -0700910static long __meminitdata addr_start, addr_end;
911static void __meminitdata *p_start, *p_end;
912static int __meminitdata node_start;
913
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100914int __meminit
915vmemmap_populate(struct page *start_page, unsigned long size, int node)
Christoph Lameter0889eba2007-10-16 01:24:15 -0700916{
917 unsigned long addr = (unsigned long)start_page;
918 unsigned long end = (unsigned long)(start_page + size);
919 unsigned long next;
920 pgd_t *pgd;
921 pud_t *pud;
922 pmd_t *pmd;
923
924 for (; addr < end; addr = next) {
925 next = pmd_addr_end(addr, end);
926
927 pgd = vmemmap_pgd_populate(addr, node);
928 if (!pgd)
929 return -ENOMEM;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100930
Christoph Lameter0889eba2007-10-16 01:24:15 -0700931 pud = vmemmap_pud_populate(pgd, addr, node);
932 if (!pud)
933 return -ENOMEM;
934
935 pmd = pmd_offset(pud, addr);
936 if (pmd_none(*pmd)) {
937 pte_t entry;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100938 void *p;
939
940 p = vmemmap_alloc_block(PMD_SIZE, node);
Christoph Lameter0889eba2007-10-16 01:24:15 -0700941 if (!p)
942 return -ENOMEM;
943
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100944 entry = pfn_pte(__pa(p) >> PAGE_SHIFT,
945 PAGE_KERNEL_LARGE);
Christoph Lameter0889eba2007-10-16 01:24:15 -0700946 set_pmd(pmd, __pmd(pte_val(entry)));
947
Yinghai Luc2b91e22008-04-12 01:19:24 -0700948 /* check to see if we have contiguous blocks */
949 if (p_end != p || node_start != node) {
950 if (p_start)
951 printk(KERN_DEBUG " [%lx-%lx] PMD -> [%p-%p] on node %d\n",
952 addr_start, addr_end-1, p_start, p_end-1, node_start);
953 addr_start = addr;
954 node_start = node;
955 p_start = p;
956 }
957 addr_end = addr + PMD_SIZE;
958 p_end = p + PMD_SIZE;
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100959 } else {
Christoph Lameter0889eba2007-10-16 01:24:15 -0700960 vmemmap_verify((pte_t *)pmd, node, addr, next);
Thomas Gleixner14a62c32008-01-30 13:34:10 +0100961 }
Christoph Lameter0889eba2007-10-16 01:24:15 -0700962 }
Christoph Lameter0889eba2007-10-16 01:24:15 -0700963 return 0;
964}
Yinghai Luc2b91e22008-04-12 01:19:24 -0700965
966void __meminit vmemmap_populate_print_last(void)
967{
968 if (p_start) {
969 printk(KERN_DEBUG " [%lx-%lx] PMD -> [%p-%p] on node %d\n",
970 addr_start, addr_end-1, p_start, p_end-1, node_start);
971 p_start = NULL;
972 p_end = NULL;
973 node_start = 0;
974 }
975}
Christoph Lameter0889eba2007-10-16 01:24:15 -0700976#endif