Merge branch 'x86/mpparse' into x86/devel
[safe/jmp/linux-2.6] / arch / x86 / mm / init_32.c
1 /*
2  *
3  *  Copyright (C) 1995  Linus Torvalds
4  *
5  *  Support of BIGMEM added by Gerhard Wichert, Siemens AG, July 1999
6  */
7
8 #include <linux/module.h>
9 #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/hugetlb.h>
19 #include <linux/swap.h>
20 #include <linux/smp.h>
21 #include <linux/init.h>
22 #include <linux/highmem.h>
23 #include <linux/pagemap.h>
24 #include <linux/pfn.h>
25 #include <linux/poison.h>
26 #include <linux/bootmem.h>
27 #include <linux/slab.h>
28 #include <linux/proc_fs.h>
29 #include <linux/memory_hotplug.h>
30 #include <linux/initrd.h>
31 #include <linux/cpumask.h>
32
33 #include <asm/asm.h>
34 #include <asm/processor.h>
35 #include <asm/system.h>
36 #include <asm/uaccess.h>
37 #include <asm/pgtable.h>
38 #include <asm/dma.h>
39 #include <asm/fixmap.h>
40 #include <asm/e820.h>
41 #include <asm/apic.h>
42 #include <asm/bugs.h>
43 #include <asm/tlb.h>
44 #include <asm/tlbflush.h>
45 #include <asm/pgalloc.h>
46 #include <asm/sections.h>
47 #include <asm/paravirt.h>
48 #include <asm/setup.h>
49 #include <asm/cacheflush.h>
50
51 unsigned int __VMALLOC_RESERVE = 128 << 20;
52
53 unsigned long max_pfn_mapped;
54
55 DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
56 unsigned long highstart_pfn, highend_pfn;
57
58 static noinline int do_test_wp_bit(void);
59
60 /*
61  * Creates a middle page table and puts a pointer to it in the
62  * given global directory entry. This only returns the gd entry
63  * in non-PAE compilation mode, since the middle layer is folded.
64  */
65 static pmd_t * __init one_md_table_init(pgd_t *pgd)
66 {
67         pud_t *pud;
68         pmd_t *pmd_table;
69
70 #ifdef CONFIG_X86_PAE
71         if (!(pgd_val(*pgd) & _PAGE_PRESENT)) {
72                 pmd_table = (pmd_t *) alloc_bootmem_low_pages(PAGE_SIZE);
73
74                 paravirt_alloc_pmd(&init_mm, __pa(pmd_table) >> PAGE_SHIFT);
75                 set_pgd(pgd, __pgd(__pa(pmd_table) | _PAGE_PRESENT));
76                 pud = pud_offset(pgd, 0);
77                 BUG_ON(pmd_table != pmd_offset(pud, 0));
78         }
79 #endif
80         pud = pud_offset(pgd, 0);
81         pmd_table = pmd_offset(pud, 0);
82
83         return pmd_table;
84 }
85
86 /*
87  * Create a page table and place a pointer to it in a middle page
88  * directory entry:
89  */
90 static pte_t * __init one_page_table_init(pmd_t *pmd)
91 {
92         if (!(pmd_val(*pmd) & _PAGE_PRESENT)) {
93                 pte_t *page_table = NULL;
94
95 #ifdef CONFIG_DEBUG_PAGEALLOC
96                 page_table = (pte_t *) alloc_bootmem_pages(PAGE_SIZE);
97 #endif
98                 if (!page_table) {
99                         page_table =
100                                 (pte_t *)alloc_bootmem_low_pages(PAGE_SIZE);
101                 }
102
103                 paravirt_alloc_pte(&init_mm, __pa(page_table) >> PAGE_SHIFT);
104                 set_pmd(pmd, __pmd(__pa(page_table) | _PAGE_TABLE));
105                 BUG_ON(page_table != pte_offset_kernel(pmd, 0));
106         }
107
108         return pte_offset_kernel(pmd, 0);
109 }
110
111 /*
112  * This function initializes a certain range of kernel virtual memory
113  * with new bootmem page tables, everywhere page tables are missing in
114  * the given range.
115  *
116  * NOTE: The pagetables are allocated contiguous on the physical space
117  * so we can cache the place of the first one and move around without
118  * checking the pgd every time.
119  */
120 static void __init
121 page_table_range_init(unsigned long start, unsigned long end, pgd_t *pgd_base)
122 {
123         int pgd_idx, pmd_idx;
124         unsigned long vaddr;
125         pgd_t *pgd;
126         pmd_t *pmd;
127
128         vaddr = start;
129         pgd_idx = pgd_index(vaddr);
130         pmd_idx = pmd_index(vaddr);
131         pgd = pgd_base + pgd_idx;
132
133         for ( ; (pgd_idx < PTRS_PER_PGD) && (vaddr != end); pgd++, pgd_idx++) {
134                 pmd = one_md_table_init(pgd);
135                 pmd = pmd + pmd_index(vaddr);
136                 for (; (pmd_idx < PTRS_PER_PMD) && (vaddr != end);
137                                                         pmd++, pmd_idx++) {
138                         one_page_table_init(pmd);
139
140                         vaddr += PMD_SIZE;
141                 }
142                 pmd_idx = 0;
143         }
144 }
145
146 static inline int is_kernel_text(unsigned long addr)
147 {
148         if (addr >= PAGE_OFFSET && addr <= (unsigned long)__init_end)
149                 return 1;
150         return 0;
151 }
152
153 /*
154  * This maps the physical memory to kernel virtual address space, a total
155  * of max_low_pfn pages, by creating page tables starting from address
156  * PAGE_OFFSET:
157  */
158 static void __init kernel_physical_mapping_init(pgd_t *pgd_base)
159 {
160         int pgd_idx, pmd_idx, pte_ofs;
161         unsigned long pfn;
162         pgd_t *pgd;
163         pmd_t *pmd;
164         pte_t *pte;
165         unsigned pages_2m = 0, pages_4k = 0;
166
167         pgd_idx = pgd_index(PAGE_OFFSET);
168         pgd = pgd_base + pgd_idx;
169         pfn = 0;
170
171         for (; pgd_idx < PTRS_PER_PGD; pgd++, pgd_idx++) {
172                 pmd = one_md_table_init(pgd);
173                 if (pfn >= max_low_pfn)
174                         continue;
175
176                 for (pmd_idx = 0;
177                      pmd_idx < PTRS_PER_PMD && pfn < max_low_pfn;
178                      pmd++, pmd_idx++) {
179                         unsigned int addr = pfn * PAGE_SIZE + PAGE_OFFSET;
180
181                         /*
182                          * Map with big pages if possible, otherwise
183                          * create normal page tables:
184                          *
185                          * Don't use a large page for the first 2/4MB of memory
186                          * because there are often fixed size MTRRs in there
187                          * and overlapping MTRRs into large pages can cause
188                          * slowdowns.
189                          */
190                         if (cpu_has_pse && !(pgd_idx == 0 && pmd_idx == 0)) {
191                                 unsigned int addr2;
192                                 pgprot_t prot = PAGE_KERNEL_LARGE;
193
194                                 addr2 = (pfn + PTRS_PER_PTE-1) * PAGE_SIZE +
195                                         PAGE_OFFSET + PAGE_SIZE-1;
196
197                                 if (is_kernel_text(addr) ||
198                                     is_kernel_text(addr2))
199                                         prot = PAGE_KERNEL_LARGE_EXEC;
200
201                                 pages_2m++;
202                                 set_pmd(pmd, pfn_pmd(pfn, prot));
203
204                                 pfn += PTRS_PER_PTE;
205                                 max_pfn_mapped = pfn;
206                                 continue;
207                         }
208                         pte = one_page_table_init(pmd);
209
210                         for (pte_ofs = 0;
211                              pte_ofs < PTRS_PER_PTE && pfn < max_low_pfn;
212                              pte++, pfn++, pte_ofs++, addr += PAGE_SIZE) {
213                                 pgprot_t prot = PAGE_KERNEL;
214
215                                 if (is_kernel_text(addr))
216                                         prot = PAGE_KERNEL_EXEC;
217
218                                 pages_4k++;
219                                 set_pte(pte, pfn_pte(pfn, prot));
220                         }
221                         max_pfn_mapped = pfn;
222                 }
223         }
224         update_page_count(PG_LEVEL_2M, pages_2m);
225         update_page_count(PG_LEVEL_4K, pages_4k);
226 }
227
228 /*
229  * devmem_is_allowed() checks to see if /dev/mem access to a certain address
230  * is valid. The argument is a physical page number.
231  *
232  *
233  * On x86, access has to be given to the first megabyte of ram because that area
234  * contains bios code and data regions used by X and dosemu and similar apps.
235  * Access has to be given to non-kernel-ram areas as well, these contain the PCI
236  * mmio resources as well as potential bios/acpi data regions.
237  */
238 int devmem_is_allowed(unsigned long pagenr)
239 {
240         if (pagenr <= 256)
241                 return 1;
242         if (!page_is_ram(pagenr))
243                 return 1;
244         return 0;
245 }
246
247 #ifdef CONFIG_HIGHMEM
248 pte_t *kmap_pte;
249 pgprot_t kmap_prot;
250
251 static inline pte_t *kmap_get_fixmap_pte(unsigned long vaddr)
252 {
253         return pte_offset_kernel(pmd_offset(pud_offset(pgd_offset_k(vaddr),
254                         vaddr), vaddr), vaddr);
255 }
256
257 static void __init kmap_init(void)
258 {
259         unsigned long kmap_vstart;
260
261         /*
262          * Cache the first kmap pte:
263          */
264         kmap_vstart = __fix_to_virt(FIX_KMAP_BEGIN);
265         kmap_pte = kmap_get_fixmap_pte(kmap_vstart);
266
267         kmap_prot = PAGE_KERNEL;
268 }
269
270 static void __init permanent_kmaps_init(pgd_t *pgd_base)
271 {
272         unsigned long vaddr;
273         pgd_t *pgd;
274         pud_t *pud;
275         pmd_t *pmd;
276         pte_t *pte;
277
278         vaddr = PKMAP_BASE;
279         page_table_range_init(vaddr, vaddr + PAGE_SIZE*LAST_PKMAP, pgd_base);
280
281         pgd = swapper_pg_dir + pgd_index(vaddr);
282         pud = pud_offset(pgd, vaddr);
283         pmd = pmd_offset(pud, vaddr);
284         pte = pte_offset_kernel(pmd, vaddr);
285         pkmap_page_table = pte;
286 }
287
288 static void __init add_one_highpage_init(struct page *page, int pfn)
289 {
290         ClearPageReserved(page);
291         init_page_count(page);
292         __free_page(page);
293         totalhigh_pages++;
294 }
295
296 struct add_highpages_data {
297         unsigned long start_pfn;
298         unsigned long end_pfn;
299 };
300
301 static void __init add_highpages_work_fn(unsigned long start_pfn,
302                                          unsigned long end_pfn, void *datax)
303 {
304         int node_pfn;
305         struct page *page;
306         unsigned long final_start_pfn, final_end_pfn;
307         struct add_highpages_data *data;
308
309         data = (struct add_highpages_data *)datax;
310
311         final_start_pfn = max(start_pfn, data->start_pfn);
312         final_end_pfn = min(end_pfn, data->end_pfn);
313         if (final_start_pfn >= final_end_pfn)
314                 return;
315
316         for (node_pfn = final_start_pfn; node_pfn < final_end_pfn;
317              node_pfn++) {
318                 if (!pfn_valid(node_pfn))
319                         continue;
320                 page = pfn_to_page(node_pfn);
321                 add_one_highpage_init(page, node_pfn);
322         }
323
324 }
325
326 void __init add_highpages_with_active_regions(int nid, unsigned long start_pfn,
327                                               unsigned long end_pfn)
328 {
329         struct add_highpages_data data;
330
331         data.start_pfn = start_pfn;
332         data.end_pfn = end_pfn;
333
334         work_with_active_regions(nid, add_highpages_work_fn, &data);
335 }
336
337 #ifndef CONFIG_NUMA
338 static void __init set_highmem_pages_init(void)
339 {
340         add_highpages_with_active_regions(0, highstart_pfn, highend_pfn);
341
342         totalram_pages += totalhigh_pages;
343 }
344 #endif /* !CONFIG_NUMA */
345
346 #else
347 # define kmap_init()                            do { } while (0)
348 # define permanent_kmaps_init(pgd_base)         do { } while (0)
349 # define set_highmem_pages_init()       do { } while (0)
350 #endif /* CONFIG_HIGHMEM */
351
352 pteval_t __PAGE_KERNEL = _PAGE_KERNEL;
353 EXPORT_SYMBOL(__PAGE_KERNEL);
354
355 pteval_t __PAGE_KERNEL_EXEC = _PAGE_KERNEL_EXEC;
356
357 void __init native_pagetable_setup_start(pgd_t *base)
358 {
359         unsigned long pfn, va;
360         pgd_t *pgd;
361         pud_t *pud;
362         pmd_t *pmd;
363         pte_t *pte;
364
365         /*
366          * Remove any mappings which extend past the end of physical
367          * memory from the boot time page table:
368          */
369         for (pfn = max_low_pfn + 1; pfn < 1<<(32-PAGE_SHIFT); pfn++) {
370                 va = PAGE_OFFSET + (pfn<<PAGE_SHIFT);
371                 pgd = base + pgd_index(va);
372                 if (!pgd_present(*pgd))
373                         break;
374
375                 pud = pud_offset(pgd, va);
376                 pmd = pmd_offset(pud, va);
377                 if (!pmd_present(*pmd))
378                         break;
379
380                 pte = pte_offset_kernel(pmd, va);
381                 if (!pte_present(*pte))
382                         break;
383
384                 pte_clear(NULL, va, pte);
385         }
386         paravirt_alloc_pmd(&init_mm, __pa(base) >> PAGE_SHIFT);
387 }
388
389 void __init native_pagetable_setup_done(pgd_t *base)
390 {
391 }
392
393 /*
394  * Build a proper pagetable for the kernel mappings.  Up until this
395  * point, we've been running on some set of pagetables constructed by
396  * the boot process.
397  *
398  * If we're booting on native hardware, this will be a pagetable
399  * constructed in arch/x86/kernel/head_32.S.  The root of the
400  * pagetable will be swapper_pg_dir.
401  *
402  * If we're booting paravirtualized under a hypervisor, then there are
403  * more options: we may already be running PAE, and the pagetable may
404  * or may not be based in swapper_pg_dir.  In any case,
405  * paravirt_pagetable_setup_start() will set up swapper_pg_dir
406  * appropriately for the rest of the initialization to work.
407  *
408  * In general, pagetable_init() assumes that the pagetable may already
409  * be partially populated, and so it avoids stomping on any existing
410  * mappings.
411  */
412 static void __init pagetable_init(void)
413 {
414         pgd_t *pgd_base = swapper_pg_dir;
415         unsigned long vaddr, end;
416
417         paravirt_pagetable_setup_start(pgd_base);
418
419         /* Enable PSE if available */
420         if (cpu_has_pse)
421                 set_in_cr4(X86_CR4_PSE);
422
423         /* Enable PGE if available */
424         if (cpu_has_pge) {
425                 set_in_cr4(X86_CR4_PGE);
426                 __PAGE_KERNEL |= _PAGE_GLOBAL;
427                 __PAGE_KERNEL_EXEC |= _PAGE_GLOBAL;
428         }
429
430         kernel_physical_mapping_init(pgd_base);
431         remap_numa_kva();
432
433         /*
434          * Fixed mappings, only the page table structure has to be
435          * created - mappings will be set by set_fixmap():
436          */
437         early_ioremap_clear();
438         vaddr = __fix_to_virt(__end_of_fixed_addresses - 1) & PMD_MASK;
439         end = (FIXADDR_TOP + PMD_SIZE - 1) & PMD_MASK;
440         page_table_range_init(vaddr, end, pgd_base);
441         early_ioremap_reset();
442
443         permanent_kmaps_init(pgd_base);
444
445         paravirt_pagetable_setup_done(pgd_base);
446 }
447
448 #ifdef CONFIG_ACPI_SLEEP
449 /*
450  * ACPI suspend needs this for resume, because things like the intel-agp
451  * driver might have split up a kernel 4MB mapping.
452  */
453 char swsusp_pg_dir[PAGE_SIZE]
454         __attribute__ ((aligned(PAGE_SIZE)));
455
456 static inline void save_pg_dir(void)
457 {
458         memcpy(swsusp_pg_dir, swapper_pg_dir, PAGE_SIZE);
459 }
460 #else /* !CONFIG_ACPI_SLEEP */
461 static inline void save_pg_dir(void)
462 {
463 }
464 #endif /* !CONFIG_ACPI_SLEEP */
465
466 void zap_low_mappings(void)
467 {
468         int i;
469
470         /*
471          * Zap initial low-memory mappings.
472          *
473          * Note that "pgd_clear()" doesn't do it for
474          * us, because pgd_clear() is a no-op on i386.
475          */
476         for (i = 0; i < KERNEL_PGD_BOUNDARY; i++) {
477 #ifdef CONFIG_X86_PAE
478                 set_pgd(swapper_pg_dir+i, __pgd(1 + __pa(empty_zero_page)));
479 #else
480                 set_pgd(swapper_pg_dir+i, __pgd(0));
481 #endif
482         }
483         flush_tlb_all();
484 }
485
486 int nx_enabled;
487
488 pteval_t __supported_pte_mask __read_mostly = ~_PAGE_NX;
489 EXPORT_SYMBOL_GPL(__supported_pte_mask);
490
491 #ifdef CONFIG_X86_PAE
492
493 static int disable_nx __initdata;
494
495 /*
496  * noexec = on|off
497  *
498  * Control non executable mappings.
499  *
500  * on      Enable
501  * off     Disable
502  */
503 static int __init noexec_setup(char *str)
504 {
505         if (!str || !strcmp(str, "on")) {
506                 if (cpu_has_nx) {
507                         __supported_pte_mask |= _PAGE_NX;
508                         disable_nx = 0;
509                 }
510         } else {
511                 if (!strcmp(str, "off")) {
512                         disable_nx = 1;
513                         __supported_pte_mask &= ~_PAGE_NX;
514                 } else {
515                         return -EINVAL;
516                 }
517         }
518
519         return 0;
520 }
521 early_param("noexec", noexec_setup);
522
523 static void __init set_nx(void)
524 {
525         unsigned int v[4], l, h;
526
527         if (cpu_has_pae && (cpuid_eax(0x80000000) > 0x80000001)) {
528                 cpuid(0x80000001, &v[0], &v[1], &v[2], &v[3]);
529
530                 if ((v[3] & (1 << 20)) && !disable_nx) {
531                         rdmsr(MSR_EFER, l, h);
532                         l |= EFER_NX;
533                         wrmsr(MSR_EFER, l, h);
534                         nx_enabled = 1;
535                         __supported_pte_mask |= _PAGE_NX;
536                 }
537         }
538 }
539 #endif
540
541 /*
542  * paging_init() sets up the page tables - note that the first 8MB are
543  * already mapped by head.S.
544  *
545  * This routines also unmaps the page at virtual kernel address 0, so
546  * that we can trap those pesky NULL-reference errors in the kernel.
547  */
548 void __init paging_init(void)
549 {
550 #ifdef CONFIG_X86_PAE
551         set_nx();
552         if (nx_enabled)
553                 printk(KERN_INFO "NX (Execute Disable) protection: active\n");
554 #endif
555         pagetable_init();
556
557         load_cr3(swapper_pg_dir);
558
559         __flush_tlb_all();
560
561         kmap_init();
562 }
563
564 /*
565  * Test if the WP bit works in supervisor mode. It isn't supported on 386's
566  * and also on some strange 486's. All 586+'s are OK. This used to involve
567  * black magic jumps to work around some nasty CPU bugs, but fortunately the
568  * switch to using exceptions got rid of all that.
569  */
570 static void __init test_wp_bit(void)
571 {
572         printk(KERN_INFO
573   "Checking if this processor honours the WP bit even in supervisor mode...");
574
575         /* Any page-aligned address will do, the test is non-destructive */
576         __set_fixmap(FIX_WP_TEST, __pa(&swapper_pg_dir), PAGE_READONLY);
577         boot_cpu_data.wp_works_ok = do_test_wp_bit();
578         clear_fixmap(FIX_WP_TEST);
579
580         if (!boot_cpu_data.wp_works_ok) {
581                 printk(KERN_CONT "No.\n");
582 #ifdef CONFIG_X86_WP_WORKS_OK
583                 panic(
584   "This kernel doesn't support CPU's with broken WP. Recompile it for a 386!");
585 #endif
586         } else {
587                 printk(KERN_CONT "Ok.\n");
588         }
589 }
590
591 static struct kcore_list kcore_mem, kcore_vmalloc;
592
593 void __init mem_init(void)
594 {
595         int codesize, reservedpages, datasize, initsize;
596         int tmp;
597
598 #ifdef CONFIG_FLATMEM
599         BUG_ON(!mem_map);
600 #endif
601         /* this will put all low memory onto the freelists */
602         totalram_pages += free_all_bootmem();
603
604         reservedpages = 0;
605         for (tmp = 0; tmp < max_low_pfn; tmp++)
606                 /*
607                  * Only count reserved RAM pages:
608                  */
609                 if (page_is_ram(tmp) && PageReserved(pfn_to_page(tmp)))
610                         reservedpages++;
611
612         set_highmem_pages_init();
613
614         codesize =  (unsigned long) &_etext - (unsigned long) &_text;
615         datasize =  (unsigned long) &_edata - (unsigned long) &_etext;
616         initsize =  (unsigned long) &__init_end - (unsigned long) &__init_begin;
617
618         kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
619         kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
620                    VMALLOC_END-VMALLOC_START);
621
622         printk(KERN_INFO "Memory: %luk/%luk available (%dk kernel code, "
623                         "%dk reserved, %dk data, %dk init, %ldk highmem)\n",
624                 (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
625                 num_physpages << (PAGE_SHIFT-10),
626                 codesize >> 10,
627                 reservedpages << (PAGE_SHIFT-10),
628                 datasize >> 10,
629                 initsize >> 10,
630                 (unsigned long) (totalhigh_pages << (PAGE_SHIFT-10))
631                );
632
633         printk(KERN_INFO "virtual kernel memory layout:\n"
634                 "    fixmap  : 0x%08lx - 0x%08lx   (%4ld kB)\n"
635 #ifdef CONFIG_HIGHMEM
636                 "    pkmap   : 0x%08lx - 0x%08lx   (%4ld kB)\n"
637 #endif
638                 "    vmalloc : 0x%08lx - 0x%08lx   (%4ld MB)\n"
639                 "    lowmem  : 0x%08lx - 0x%08lx   (%4ld MB)\n"
640                 "      .init : 0x%08lx - 0x%08lx   (%4ld kB)\n"
641                 "      .data : 0x%08lx - 0x%08lx   (%4ld kB)\n"
642                 "      .text : 0x%08lx - 0x%08lx   (%4ld kB)\n",
643                 FIXADDR_START, FIXADDR_TOP,
644                 (FIXADDR_TOP - FIXADDR_START) >> 10,
645
646 #ifdef CONFIG_HIGHMEM
647                 PKMAP_BASE, PKMAP_BASE+LAST_PKMAP*PAGE_SIZE,
648                 (LAST_PKMAP*PAGE_SIZE) >> 10,
649 #endif
650
651                 VMALLOC_START, VMALLOC_END,
652                 (VMALLOC_END - VMALLOC_START) >> 20,
653
654                 (unsigned long)__va(0), (unsigned long)high_memory,
655                 ((unsigned long)high_memory - (unsigned long)__va(0)) >> 20,
656
657                 (unsigned long)&__init_begin, (unsigned long)&__init_end,
658                 ((unsigned long)&__init_end -
659                  (unsigned long)&__init_begin) >> 10,
660
661                 (unsigned long)&_etext, (unsigned long)&_edata,
662                 ((unsigned long)&_edata - (unsigned long)&_etext) >> 10,
663
664                 (unsigned long)&_text, (unsigned long)&_etext,
665                 ((unsigned long)&_etext - (unsigned long)&_text) >> 10);
666
667 #ifdef CONFIG_HIGHMEM
668         BUG_ON(PKMAP_BASE + LAST_PKMAP*PAGE_SIZE        > FIXADDR_START);
669         BUG_ON(VMALLOC_END                              > PKMAP_BASE);
670 #endif
671         BUG_ON(VMALLOC_START                            > VMALLOC_END);
672         BUG_ON((unsigned long)high_memory               > VMALLOC_START);
673
674         if (boot_cpu_data.wp_works_ok < 0)
675                 test_wp_bit();
676
677         cpa_init();
678         save_pg_dir();
679         zap_low_mappings();
680 }
681
682 #ifdef CONFIG_MEMORY_HOTPLUG
683 int arch_add_memory(int nid, u64 start, u64 size)
684 {
685         struct pglist_data *pgdata = NODE_DATA(nid);
686         struct zone *zone = pgdata->node_zones + ZONE_HIGHMEM;
687         unsigned long start_pfn = start >> PAGE_SHIFT;
688         unsigned long nr_pages = size >> PAGE_SHIFT;
689
690         return __add_pages(zone, start_pfn, nr_pages);
691 }
692 #endif
693
694 /*
695  * This function cannot be __init, since exceptions don't work in that
696  * section.  Put this after the callers, so that it cannot be inlined.
697  */
698 static noinline int do_test_wp_bit(void)
699 {
700         char tmp_reg;
701         int flag;
702
703         __asm__ __volatile__(
704                 "       movb %0, %1     \n"
705                 "1:     movb %1, %0     \n"
706                 "       xorl %2, %2     \n"
707                 "2:                     \n"
708                 _ASM_EXTABLE(1b,2b)
709                 :"=m" (*(char *)fix_to_virt(FIX_WP_TEST)),
710                  "=q" (tmp_reg),
711                  "=r" (flag)
712                 :"2" (1)
713                 :"memory");
714
715         return flag;
716 }
717
718 #ifdef CONFIG_DEBUG_RODATA
719 const int rodata_test_data = 0xC3;
720 EXPORT_SYMBOL_GPL(rodata_test_data);
721
722 void mark_rodata_ro(void)
723 {
724         unsigned long start = PFN_ALIGN(_text);
725         unsigned long size = PFN_ALIGN(_etext) - start;
726
727         set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
728         printk(KERN_INFO "Write protecting the kernel text: %luk\n",
729                 size >> 10);
730
731 #ifdef CONFIG_CPA_DEBUG
732         printk(KERN_INFO "Testing CPA: Reverting %lx-%lx\n",
733                 start, start+size);
734         set_pages_rw(virt_to_page(start), size>>PAGE_SHIFT);
735
736         printk(KERN_INFO "Testing CPA: write protecting again\n");
737         set_pages_ro(virt_to_page(start), size>>PAGE_SHIFT);
738 #endif
739         start += size;
740         size = (unsigned long)__end_rodata - start;
741         set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
742         printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
743                 size >> 10);
744         rodata_test();
745
746 #ifdef CONFIG_CPA_DEBUG
747         printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, start + size);
748         set_pages_rw(virt_to_page(start), size >> PAGE_SHIFT);
749
750         printk(KERN_INFO "Testing CPA: write protecting again\n");
751         set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
752 #endif
753 }
754 #endif
755
756 void free_init_pages(char *what, unsigned long begin, unsigned long end)
757 {
758 #ifdef CONFIG_DEBUG_PAGEALLOC
759         /*
760          * If debugging page accesses then do not free this memory but
761          * mark them not present - any buggy init-section access will
762          * create a kernel page fault:
763          */
764         printk(KERN_INFO "debug: unmapping init memory %08lx..%08lx\n",
765                 begin, PAGE_ALIGN(end));
766         set_memory_np(begin, (end - begin) >> PAGE_SHIFT);
767 #else
768         unsigned long addr;
769
770         /*
771          * We just marked the kernel text read only above, now that
772          * we are going to free part of that, we need to make that
773          * writeable first.
774          */
775         set_memory_rw(begin, (end - begin) >> PAGE_SHIFT);
776
777         for (addr = begin; addr < end; addr += PAGE_SIZE) {
778                 ClearPageReserved(virt_to_page(addr));
779                 init_page_count(virt_to_page(addr));
780                 memset((void *)addr, POISON_FREE_INITMEM, PAGE_SIZE);
781                 free_page(addr);
782                 totalram_pages++;
783         }
784         printk(KERN_INFO "Freeing %s: %luk freed\n", what, (end - begin) >> 10);
785 #endif
786 }
787
788 void free_initmem(void)
789 {
790         free_init_pages("unused kernel memory",
791                         (unsigned long)(&__init_begin),
792                         (unsigned long)(&__init_end));
793 }
794
795 #ifdef CONFIG_BLK_DEV_INITRD
796 void free_initrd_mem(unsigned long start, unsigned long end)
797 {
798         free_init_pages("initrd memory", start, end);
799 }
800 #endif
801
802 int __init reserve_bootmem_generic(unsigned long phys, unsigned long len,
803                                    int flags)
804 {
805         return reserve_bootmem(phys, len, flags);
806 }