x86: avoid duplicate running of pud_offset and pmd_offset in one_md_table_init()
[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/bios_ebda.h>
35 #include <asm/processor.h>
36 #include <asm/system.h>
37 #include <asm/uaccess.h>
38 #include <asm/pgtable.h>
39 #include <asm/dma.h>
40 #include <asm/fixmap.h>
41 #include <asm/e820.h>
42 #include <asm/apic.h>
43 #include <asm/bugs.h>
44 #include <asm/tlb.h>
45 #include <asm/tlbflush.h>
46 #include <asm/pgalloc.h>
47 #include <asm/sections.h>
48 #include <asm/paravirt.h>
49 #include <asm/setup.h>
50 #include <asm/cacheflush.h>
51 #include <asm/smp.h>
52
53 unsigned int __VMALLOC_RESERVE = 128 << 20;
54
55 unsigned long max_low_pfn_mapped;
56 unsigned long max_pfn_mapped;
57
58 DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
59 unsigned long highstart_pfn, highend_pfn;
60
61 static noinline int do_test_wp_bit(void);
62
63
64 static unsigned long __initdata table_start;
65 static unsigned long __meminitdata table_end;
66 static unsigned long __meminitdata table_top;
67
68 static int __initdata after_init_bootmem;
69
70 static __init void *alloc_low_page(unsigned long *phys)
71 {
72         unsigned long pfn = table_end++;
73         void *adr;
74
75         if (pfn >= table_top)
76                 panic("alloc_low_page: ran out of memory");
77
78         adr = __va(pfn * PAGE_SIZE);
79         memset(adr, 0, PAGE_SIZE);
80         *phys  = pfn * PAGE_SIZE;
81         return adr;
82 }
83
84 /*
85  * Creates a middle page table and puts a pointer to it in the
86  * given global directory entry. This only returns the gd entry
87  * in non-PAE compilation mode, since the middle layer is folded.
88  */
89 static pmd_t * __init one_md_table_init(pgd_t *pgd)
90 {
91         pud_t *pud;
92         pmd_t *pmd_table;
93
94 #ifdef CONFIG_X86_PAE
95         unsigned long phys;
96         if (!(pgd_val(*pgd) & _PAGE_PRESENT)) {
97                 if (after_init_bootmem)
98                         pmd_table = (pmd_t *)alloc_bootmem_low_pages(PAGE_SIZE);
99                 else
100                         pmd_table = (pmd_t *)alloc_low_page(&phys);
101                 paravirt_alloc_pmd(&init_mm, __pa(pmd_table) >> PAGE_SHIFT);
102                 set_pgd(pgd, __pgd(__pa(pmd_table) | _PAGE_PRESENT));
103                 pud = pud_offset(pgd, 0);
104                 BUG_ON(pmd_table != pmd_offset(pud, 0));
105
106                 return pmd_table;
107         }
108 #endif
109         pud = pud_offset(pgd, 0);
110         pmd_table = pmd_offset(pud, 0);
111
112         return pmd_table;
113 }
114
115 /*
116  * Create a page table and place a pointer to it in a middle page
117  * directory entry:
118  */
119 static pte_t * __init one_page_table_init(pmd_t *pmd)
120 {
121         if (!(pmd_val(*pmd) & _PAGE_PRESENT)) {
122                 pte_t *page_table = NULL;
123
124                 if (after_init_bootmem) {
125 #ifdef CONFIG_DEBUG_PAGEALLOC
126                         page_table = (pte_t *) alloc_bootmem_pages(PAGE_SIZE);
127 #endif
128                         if (!page_table)
129                                 page_table =
130                                 (pte_t *)alloc_bootmem_low_pages(PAGE_SIZE);
131                 } else {
132                         unsigned long phys;
133                         page_table = (pte_t *)alloc_low_page(&phys);
134                 }
135
136                 paravirt_alloc_pte(&init_mm, __pa(page_table) >> PAGE_SHIFT);
137                 set_pmd(pmd, __pmd(__pa(page_table) | _PAGE_TABLE));
138                 BUG_ON(page_table != pte_offset_kernel(pmd, 0));
139         }
140
141         return pte_offset_kernel(pmd, 0);
142 }
143
144 /*
145  * This function initializes a certain range of kernel virtual memory
146  * with new bootmem page tables, everywhere page tables are missing in
147  * the given range.
148  *
149  * NOTE: The pagetables are allocated contiguous on the physical space
150  * so we can cache the place of the first one and move around without
151  * checking the pgd every time.
152  */
153 static void __init
154 page_table_range_init(unsigned long start, unsigned long end, pgd_t *pgd_base)
155 {
156         int pgd_idx, pmd_idx;
157         unsigned long vaddr;
158         pgd_t *pgd;
159         pmd_t *pmd;
160
161         vaddr = start;
162         pgd_idx = pgd_index(vaddr);
163         pmd_idx = pmd_index(vaddr);
164         pgd = pgd_base + pgd_idx;
165
166         for ( ; (pgd_idx < PTRS_PER_PGD) && (vaddr != end); pgd++, pgd_idx++) {
167                 pmd = one_md_table_init(pgd);
168                 pmd = pmd + pmd_index(vaddr);
169                 for (; (pmd_idx < PTRS_PER_PMD) && (vaddr != end);
170                                                         pmd++, pmd_idx++) {
171                         one_page_table_init(pmd);
172
173                         vaddr += PMD_SIZE;
174                 }
175                 pmd_idx = 0;
176         }
177 }
178
179 static inline int is_kernel_text(unsigned long addr)
180 {
181         if (addr >= PAGE_OFFSET && addr <= (unsigned long)__init_end)
182                 return 1;
183         return 0;
184 }
185
186 /*
187  * This maps the physical memory to kernel virtual address space, a total
188  * of max_low_pfn pages, by creating page tables starting from address
189  * PAGE_OFFSET:
190  */
191 static void __init kernel_physical_mapping_init(pgd_t *pgd_base,
192                                                 unsigned long start_pfn,
193                                                 unsigned long end_pfn,
194                                                 int use_pse)
195 {
196         int pgd_idx, pmd_idx, pte_ofs;
197         unsigned long pfn;
198         pgd_t *pgd;
199         pmd_t *pmd;
200         pte_t *pte;
201         unsigned pages_2m, pages_4k;
202         int mapping_iter;
203
204         /*
205          * First iteration will setup identity mapping using large/small pages
206          * based on use_pse, with other attributes same as set by
207          * the early code in head_32.S
208          *
209          * Second iteration will setup the appropriate attributes (NX, GLOBAL..)
210          * as desired for the kernel identity mapping.
211          *
212          * This two pass mechanism conforms to the TLB app note which says:
213          *
214          *     "Software should not write to a paging-structure entry in a way
215          *      that would change, for any linear address, both the page size
216          *      and either the page frame or attributes."
217          */
218         mapping_iter = 1;
219
220         if (!cpu_has_pse)
221                 use_pse = 0;
222
223 repeat:
224         pages_2m = pages_4k = 0;
225         pfn = start_pfn;
226         pgd_idx = pgd_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
227         pgd = pgd_base + pgd_idx;
228         for (; pgd_idx < PTRS_PER_PGD; pgd++, pgd_idx++) {
229                 pmd = one_md_table_init(pgd);
230
231                 if (pfn >= end_pfn)
232                         continue;
233 #ifdef CONFIG_X86_PAE
234                 pmd_idx = pmd_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
235                 pmd += pmd_idx;
236 #else
237                 pmd_idx = 0;
238 #endif
239                 for (; pmd_idx < PTRS_PER_PMD && pfn < end_pfn;
240                      pmd++, pmd_idx++) {
241                         unsigned int addr = pfn * PAGE_SIZE + PAGE_OFFSET;
242
243                         /*
244                          * Map with big pages if possible, otherwise
245                          * create normal page tables:
246                          */
247                         if (use_pse) {
248                                 unsigned int addr2;
249                                 pgprot_t prot = PAGE_KERNEL_LARGE;
250                                 /*
251                                  * first pass will use the same initial
252                                  * identity mapping attribute + _PAGE_PSE.
253                                  */
254                                 pgprot_t init_prot =
255                                         __pgprot(PTE_IDENT_ATTR |
256                                                  _PAGE_PSE);
257
258                                 addr2 = (pfn + PTRS_PER_PTE-1) * PAGE_SIZE +
259                                         PAGE_OFFSET + PAGE_SIZE-1;
260
261                                 if (is_kernel_text(addr) ||
262                                     is_kernel_text(addr2))
263                                         prot = PAGE_KERNEL_LARGE_EXEC;
264
265                                 pages_2m++;
266                                 if (mapping_iter == 1)
267                                         set_pmd(pmd, pfn_pmd(pfn, init_prot));
268                                 else
269                                         set_pmd(pmd, pfn_pmd(pfn, prot));
270
271                                 pfn += PTRS_PER_PTE;
272                                 continue;
273                         }
274                         pte = one_page_table_init(pmd);
275
276                         pte_ofs = pte_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
277                         pte += pte_ofs;
278                         for (; pte_ofs < PTRS_PER_PTE && pfn < end_pfn;
279                              pte++, pfn++, pte_ofs++, addr += PAGE_SIZE) {
280                                 pgprot_t prot = PAGE_KERNEL;
281                                 /*
282                                  * first pass will use the same initial
283                                  * identity mapping attribute.
284                                  */
285                                 pgprot_t init_prot = __pgprot(PTE_IDENT_ATTR);
286
287                                 if (is_kernel_text(addr))
288                                         prot = PAGE_KERNEL_EXEC;
289
290                                 pages_4k++;
291                                 if (mapping_iter == 1)
292                                         set_pte(pte, pfn_pte(pfn, init_prot));
293                                 else
294                                         set_pte(pte, pfn_pte(pfn, prot));
295                         }
296                 }
297         }
298         if (mapping_iter == 1) {
299                 /*
300                  * update direct mapping page count only in the first
301                  * iteration.
302                  */
303                 update_page_count(PG_LEVEL_2M, pages_2m);
304                 update_page_count(PG_LEVEL_4K, pages_4k);
305
306                 /*
307                  * local global flush tlb, which will flush the previous
308                  * mappings present in both small and large page TLB's.
309                  */
310                 __flush_tlb_all();
311
312                 /*
313                  * Second iteration will set the actual desired PTE attributes.
314                  */
315                 mapping_iter = 2;
316                 goto repeat;
317         }
318 }
319
320 /*
321  * devmem_is_allowed() checks to see if /dev/mem access to a certain address
322  * is valid. The argument is a physical page number.
323  *
324  *
325  * On x86, access has to be given to the first megabyte of ram because that area
326  * contains bios code and data regions used by X and dosemu and similar apps.
327  * Access has to be given to non-kernel-ram areas as well, these contain the PCI
328  * mmio resources as well as potential bios/acpi data regions.
329  */
330 int devmem_is_allowed(unsigned long pagenr)
331 {
332         if (pagenr <= 256)
333                 return 1;
334         if (!page_is_ram(pagenr))
335                 return 1;
336         return 0;
337 }
338
339 #ifdef CONFIG_HIGHMEM
340 pte_t *kmap_pte;
341 pgprot_t kmap_prot;
342
343 static inline pte_t *kmap_get_fixmap_pte(unsigned long vaddr)
344 {
345         return pte_offset_kernel(pmd_offset(pud_offset(pgd_offset_k(vaddr),
346                         vaddr), vaddr), vaddr);
347 }
348
349 static void __init kmap_init(void)
350 {
351         unsigned long kmap_vstart;
352
353         /*
354          * Cache the first kmap pte:
355          */
356         kmap_vstart = __fix_to_virt(FIX_KMAP_BEGIN);
357         kmap_pte = kmap_get_fixmap_pte(kmap_vstart);
358
359         kmap_prot = PAGE_KERNEL;
360 }
361
362 static void __init permanent_kmaps_init(pgd_t *pgd_base)
363 {
364         unsigned long vaddr;
365         pgd_t *pgd;
366         pud_t *pud;
367         pmd_t *pmd;
368         pte_t *pte;
369
370         vaddr = PKMAP_BASE;
371         page_table_range_init(vaddr, vaddr + PAGE_SIZE*LAST_PKMAP, pgd_base);
372
373         pgd = swapper_pg_dir + pgd_index(vaddr);
374         pud = pud_offset(pgd, vaddr);
375         pmd = pmd_offset(pud, vaddr);
376         pte = pte_offset_kernel(pmd, vaddr);
377         pkmap_page_table = pte;
378 }
379
380 static void __init add_one_highpage_init(struct page *page, int pfn)
381 {
382         ClearPageReserved(page);
383         init_page_count(page);
384         __free_page(page);
385         totalhigh_pages++;
386 }
387
388 struct add_highpages_data {
389         unsigned long start_pfn;
390         unsigned long end_pfn;
391 };
392
393 static int __init add_highpages_work_fn(unsigned long start_pfn,
394                                          unsigned long end_pfn, void *datax)
395 {
396         int node_pfn;
397         struct page *page;
398         unsigned long final_start_pfn, final_end_pfn;
399         struct add_highpages_data *data;
400
401         data = (struct add_highpages_data *)datax;
402
403         final_start_pfn = max(start_pfn, data->start_pfn);
404         final_end_pfn = min(end_pfn, data->end_pfn);
405         if (final_start_pfn >= final_end_pfn)
406                 return 0;
407
408         for (node_pfn = final_start_pfn; node_pfn < final_end_pfn;
409              node_pfn++) {
410                 if (!pfn_valid(node_pfn))
411                         continue;
412                 page = pfn_to_page(node_pfn);
413                 add_one_highpage_init(page, node_pfn);
414         }
415
416         return 0;
417
418 }
419
420 void __init add_highpages_with_active_regions(int nid, unsigned long start_pfn,
421                                               unsigned long end_pfn)
422 {
423         struct add_highpages_data data;
424
425         data.start_pfn = start_pfn;
426         data.end_pfn = end_pfn;
427
428         work_with_active_regions(nid, add_highpages_work_fn, &data);
429 }
430
431 #ifndef CONFIG_NUMA
432 static void __init set_highmem_pages_init(void)
433 {
434         add_highpages_with_active_regions(0, highstart_pfn, highend_pfn);
435
436         totalram_pages += totalhigh_pages;
437 }
438 #endif /* !CONFIG_NUMA */
439
440 #else
441 # define kmap_init()                            do { } while (0)
442 # define permanent_kmaps_init(pgd_base)         do { } while (0)
443 # define set_highmem_pages_init()       do { } while (0)
444 #endif /* CONFIG_HIGHMEM */
445
446 void __init native_pagetable_setup_start(pgd_t *base)
447 {
448         unsigned long pfn, va;
449         pgd_t *pgd;
450         pud_t *pud;
451         pmd_t *pmd;
452         pte_t *pte;
453
454         /*
455          * Remove any mappings which extend past the end of physical
456          * memory from the boot time page table:
457          */
458         for (pfn = max_low_pfn + 1; pfn < 1<<(32-PAGE_SHIFT); pfn++) {
459                 va = PAGE_OFFSET + (pfn<<PAGE_SHIFT);
460                 pgd = base + pgd_index(va);
461                 if (!pgd_present(*pgd))
462                         break;
463
464                 pud = pud_offset(pgd, va);
465                 pmd = pmd_offset(pud, va);
466                 if (!pmd_present(*pmd))
467                         break;
468
469                 pte = pte_offset_kernel(pmd, va);
470                 if (!pte_present(*pte))
471                         break;
472
473                 pte_clear(NULL, va, pte);
474         }
475         paravirt_alloc_pmd(&init_mm, __pa(base) >> PAGE_SHIFT);
476 }
477
478 void __init native_pagetable_setup_done(pgd_t *base)
479 {
480 }
481
482 /*
483  * Build a proper pagetable for the kernel mappings.  Up until this
484  * point, we've been running on some set of pagetables constructed by
485  * the boot process.
486  *
487  * If we're booting on native hardware, this will be a pagetable
488  * constructed in arch/x86/kernel/head_32.S.  The root of the
489  * pagetable will be swapper_pg_dir.
490  *
491  * If we're booting paravirtualized under a hypervisor, then there are
492  * more options: we may already be running PAE, and the pagetable may
493  * or may not be based in swapper_pg_dir.  In any case,
494  * paravirt_pagetable_setup_start() will set up swapper_pg_dir
495  * appropriately for the rest of the initialization to work.
496  *
497  * In general, pagetable_init() assumes that the pagetable may already
498  * be partially populated, and so it avoids stomping on any existing
499  * mappings.
500  */
501 static void __init early_ioremap_page_table_range_init(pgd_t *pgd_base)
502 {
503         unsigned long vaddr, end;
504
505         /*
506          * Fixed mappings, only the page table structure has to be
507          * created - mappings will be set by set_fixmap():
508          */
509         early_ioremap_clear();
510         vaddr = __fix_to_virt(__end_of_fixed_addresses - 1) & PMD_MASK;
511         end = (FIXADDR_TOP + PMD_SIZE - 1) & PMD_MASK;
512         page_table_range_init(vaddr, end, pgd_base);
513         early_ioremap_reset();
514 }
515
516 static void __init pagetable_init(void)
517 {
518         pgd_t *pgd_base = swapper_pg_dir;
519
520         permanent_kmaps_init(pgd_base);
521 }
522
523 #ifdef CONFIG_ACPI_SLEEP
524 /*
525  * ACPI suspend needs this for resume, because things like the intel-agp
526  * driver might have split up a kernel 4MB mapping.
527  */
528 char swsusp_pg_dir[PAGE_SIZE]
529         __attribute__ ((aligned(PAGE_SIZE)));
530
531 static inline void save_pg_dir(void)
532 {
533         memcpy(swsusp_pg_dir, swapper_pg_dir, PAGE_SIZE);
534 }
535 #else /* !CONFIG_ACPI_SLEEP */
536 static inline void save_pg_dir(void)
537 {
538 }
539 #endif /* !CONFIG_ACPI_SLEEP */
540
541 void zap_low_mappings(void)
542 {
543         int i;
544
545         /*
546          * Zap initial low-memory mappings.
547          *
548          * Note that "pgd_clear()" doesn't do it for
549          * us, because pgd_clear() is a no-op on i386.
550          */
551         for (i = 0; i < KERNEL_PGD_BOUNDARY; i++) {
552 #ifdef CONFIG_X86_PAE
553                 set_pgd(swapper_pg_dir+i, __pgd(1 + __pa(empty_zero_page)));
554 #else
555                 set_pgd(swapper_pg_dir+i, __pgd(0));
556 #endif
557         }
558         flush_tlb_all();
559 }
560
561 int nx_enabled;
562
563 pteval_t __supported_pte_mask __read_mostly = ~(_PAGE_NX | _PAGE_GLOBAL | _PAGE_IOMAP);
564 EXPORT_SYMBOL_GPL(__supported_pte_mask);
565
566 #ifdef CONFIG_X86_PAE
567
568 static int disable_nx __initdata;
569
570 /*
571  * noexec = on|off
572  *
573  * Control non executable mappings.
574  *
575  * on      Enable
576  * off     Disable
577  */
578 static int __init noexec_setup(char *str)
579 {
580         if (!str || !strcmp(str, "on")) {
581                 if (cpu_has_nx) {
582                         __supported_pte_mask |= _PAGE_NX;
583                         disable_nx = 0;
584                 }
585         } else {
586                 if (!strcmp(str, "off")) {
587                         disable_nx = 1;
588                         __supported_pte_mask &= ~_PAGE_NX;
589                 } else {
590                         return -EINVAL;
591                 }
592         }
593
594         return 0;
595 }
596 early_param("noexec", noexec_setup);
597
598 static void __init set_nx(void)
599 {
600         unsigned int v[4], l, h;
601
602         if (cpu_has_pae && (cpuid_eax(0x80000000) > 0x80000001)) {
603                 cpuid(0x80000001, &v[0], &v[1], &v[2], &v[3]);
604
605                 if ((v[3] & (1 << 20)) && !disable_nx) {
606                         rdmsr(MSR_EFER, l, h);
607                         l |= EFER_NX;
608                         wrmsr(MSR_EFER, l, h);
609                         nx_enabled = 1;
610                         __supported_pte_mask |= _PAGE_NX;
611                 }
612         }
613 }
614 #endif
615
616 /* user-defined highmem size */
617 static unsigned int highmem_pages = -1;
618
619 /*
620  * highmem=size forces highmem to be exactly 'size' bytes.
621  * This works even on boxes that have no highmem otherwise.
622  * This also works to reduce highmem size on bigger boxes.
623  */
624 static int __init parse_highmem(char *arg)
625 {
626         if (!arg)
627                 return -EINVAL;
628
629         highmem_pages = memparse(arg, &arg) >> PAGE_SHIFT;
630         return 0;
631 }
632 early_param("highmem", parse_highmem);
633
634 /*
635  * Determine low and high memory ranges:
636  */
637 void __init find_low_pfn_range(void)
638 {
639         /* it could update max_pfn */
640
641         /* max_low_pfn is 0, we already have early_res support */
642
643         max_low_pfn = max_pfn;
644         if (max_low_pfn > MAXMEM_PFN) {
645                 if (highmem_pages == -1)
646                         highmem_pages = max_pfn - MAXMEM_PFN;
647                 if (highmem_pages + MAXMEM_PFN < max_pfn)
648                         max_pfn = MAXMEM_PFN + highmem_pages;
649                 if (highmem_pages + MAXMEM_PFN > max_pfn) {
650                         printk(KERN_WARNING "only %luMB highmem pages "
651                                 "available, ignoring highmem size of %uMB.\n",
652                                 pages_to_mb(max_pfn - MAXMEM_PFN),
653                                 pages_to_mb(highmem_pages));
654                         highmem_pages = 0;
655                 }
656                 max_low_pfn = MAXMEM_PFN;
657 #ifndef CONFIG_HIGHMEM
658                 /* Maximum memory usable is what is directly addressable */
659                 printk(KERN_WARNING "Warning only %ldMB will be used.\n",
660                                         MAXMEM>>20);
661                 if (max_pfn > MAX_NONPAE_PFN)
662                         printk(KERN_WARNING
663                                  "Use a HIGHMEM64G enabled kernel.\n");
664                 else
665                         printk(KERN_WARNING "Use a HIGHMEM enabled kernel.\n");
666                 max_pfn = MAXMEM_PFN;
667 #else /* !CONFIG_HIGHMEM */
668 #ifndef CONFIG_HIGHMEM64G
669                 if (max_pfn > MAX_NONPAE_PFN) {
670                         max_pfn = MAX_NONPAE_PFN;
671                         printk(KERN_WARNING "Warning only 4GB will be used."
672                                 "Use a HIGHMEM64G enabled kernel.\n");
673                 }
674 #endif /* !CONFIG_HIGHMEM64G */
675 #endif /* !CONFIG_HIGHMEM */
676         } else {
677                 if (highmem_pages == -1)
678                         highmem_pages = 0;
679 #ifdef CONFIG_HIGHMEM
680                 if (highmem_pages >= max_pfn) {
681                         printk(KERN_ERR "highmem size specified (%uMB) is "
682                                 "bigger than pages available (%luMB)!.\n",
683                                 pages_to_mb(highmem_pages),
684                                 pages_to_mb(max_pfn));
685                         highmem_pages = 0;
686                 }
687                 if (highmem_pages) {
688                         if (max_low_pfn - highmem_pages <
689                             64*1024*1024/PAGE_SIZE){
690                                 printk(KERN_ERR "highmem size %uMB results in "
691                                 "smaller than 64MB lowmem, ignoring it.\n"
692                                         , pages_to_mb(highmem_pages));
693                                 highmem_pages = 0;
694                         }
695                         max_low_pfn -= highmem_pages;
696                 }
697 #else
698                 if (highmem_pages)
699                         printk(KERN_ERR "ignoring highmem size on non-highmem"
700                                         " kernel!\n");
701 #endif
702         }
703 }
704
705 #ifndef CONFIG_NEED_MULTIPLE_NODES
706 void __init initmem_init(unsigned long start_pfn,
707                                   unsigned long end_pfn)
708 {
709 #ifdef CONFIG_HIGHMEM
710         highstart_pfn = highend_pfn = max_pfn;
711         if (max_pfn > max_low_pfn)
712                 highstart_pfn = max_low_pfn;
713         memory_present(0, 0, highend_pfn);
714         e820_register_active_regions(0, 0, highend_pfn);
715         printk(KERN_NOTICE "%ldMB HIGHMEM available.\n",
716                 pages_to_mb(highend_pfn - highstart_pfn));
717         num_physpages = highend_pfn;
718         high_memory = (void *) __va(highstart_pfn * PAGE_SIZE - 1) + 1;
719 #else
720         memory_present(0, 0, max_low_pfn);
721         e820_register_active_regions(0, 0, max_low_pfn);
722         num_physpages = max_low_pfn;
723         high_memory = (void *) __va(max_low_pfn * PAGE_SIZE - 1) + 1;
724 #endif
725 #ifdef CONFIG_FLATMEM
726         max_mapnr = num_physpages;
727 #endif
728         printk(KERN_NOTICE "%ldMB LOWMEM available.\n",
729                         pages_to_mb(max_low_pfn));
730
731         setup_bootmem_allocator();
732 }
733 #endif /* !CONFIG_NEED_MULTIPLE_NODES */
734
735 static void __init zone_sizes_init(void)
736 {
737         unsigned long max_zone_pfns[MAX_NR_ZONES];
738         memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
739         max_zone_pfns[ZONE_DMA] =
740                 virt_to_phys((char *)MAX_DMA_ADDRESS) >> PAGE_SHIFT;
741         max_zone_pfns[ZONE_NORMAL] = max_low_pfn;
742 #ifdef CONFIG_HIGHMEM
743         max_zone_pfns[ZONE_HIGHMEM] = highend_pfn;
744 #endif
745
746         free_area_init_nodes(max_zone_pfns);
747 }
748
749 void __init setup_bootmem_allocator(void)
750 {
751         int i;
752         unsigned long bootmap_size, bootmap;
753         /*
754          * Initialize the boot-time allocator (with low memory only):
755          */
756         bootmap_size = bootmem_bootmap_pages(max_low_pfn)<<PAGE_SHIFT;
757         bootmap = find_e820_area(min_low_pfn<<PAGE_SHIFT,
758                                  max_pfn_mapped<<PAGE_SHIFT, bootmap_size,
759                                  PAGE_SIZE);
760         if (bootmap == -1L)
761                 panic("Cannot find bootmem map of size %ld\n", bootmap_size);
762         reserve_early(bootmap, bootmap + bootmap_size, "BOOTMAP");
763
764         /* don't touch min_low_pfn */
765         bootmap_size = init_bootmem_node(NODE_DATA(0), bootmap >> PAGE_SHIFT,
766                                          min_low_pfn, max_low_pfn);
767         printk(KERN_INFO "  mapped low ram: 0 - %08lx\n",
768                  max_pfn_mapped<<PAGE_SHIFT);
769         printk(KERN_INFO "  low ram: %08lx - %08lx\n",
770                  min_low_pfn<<PAGE_SHIFT, max_low_pfn<<PAGE_SHIFT);
771         printk(KERN_INFO "  bootmap %08lx - %08lx\n",
772                  bootmap, bootmap + bootmap_size);
773         for_each_online_node(i)
774                 free_bootmem_with_active_regions(i, max_low_pfn);
775         early_res_to_bootmem(0, max_low_pfn<<PAGE_SHIFT);
776
777         after_init_bootmem = 1;
778 }
779
780 static void __init find_early_table_space(unsigned long end, int use_pse)
781 {
782         unsigned long puds, pmds, ptes, tables, start;
783
784         puds = (end + PUD_SIZE - 1) >> PUD_SHIFT;
785         tables = PAGE_ALIGN(puds * sizeof(pud_t));
786
787         pmds = (end + PMD_SIZE - 1) >> PMD_SHIFT;
788         tables += PAGE_ALIGN(pmds * sizeof(pmd_t));
789
790         if (use_pse) {
791                 unsigned long extra;
792
793                 extra = end - ((end>>PMD_SHIFT) << PMD_SHIFT);
794                 extra += PMD_SIZE;
795                 ptes = (extra + PAGE_SIZE - 1) >> PAGE_SHIFT;
796         } else
797                 ptes = (end + PAGE_SIZE - 1) >> PAGE_SHIFT;
798
799         tables += PAGE_ALIGN(ptes * sizeof(pte_t));
800
801         /* for fixmap */
802         tables += PAGE_SIZE * 2;
803
804         /*
805          * RED-PEN putting page tables only on node 0 could
806          * cause a hotspot and fill up ZONE_DMA. The page tables
807          * need roughly 0.5KB per GB.
808          */
809         start = 0x7000;
810         table_start = find_e820_area(start, max_pfn_mapped<<PAGE_SHIFT,
811                                         tables, PAGE_SIZE);
812         if (table_start == -1UL)
813                 panic("Cannot find space for the kernel page tables");
814
815         table_start >>= PAGE_SHIFT;
816         table_end = table_start;
817         table_top = table_start + (tables>>PAGE_SHIFT);
818
819         printk(KERN_DEBUG "kernel direct mapping tables up to %lx @ %lx-%lx\n",
820                 end, table_start << PAGE_SHIFT,
821                 (table_start << PAGE_SHIFT) + tables);
822 }
823
824 unsigned long __init_refok init_memory_mapping(unsigned long start,
825                                                 unsigned long end)
826 {
827         pgd_t *pgd_base = swapper_pg_dir;
828         unsigned long start_pfn, end_pfn;
829         unsigned long big_page_start;
830 #ifdef CONFIG_DEBUG_PAGEALLOC
831         /*
832          * For CONFIG_DEBUG_PAGEALLOC, identity mapping will use small pages.
833          * This will simplify cpa(), which otherwise needs to support splitting
834          * large pages into small in interrupt context, etc.
835          */
836         int use_pse = 0;
837 #else
838         int use_pse = cpu_has_pse;
839 #endif
840
841         /*
842          * Find space for the kernel direct mapping tables.
843          */
844         if (!after_init_bootmem)
845                 find_early_table_space(end, use_pse);
846
847 #ifdef CONFIG_X86_PAE
848         set_nx();
849         if (nx_enabled)
850                 printk(KERN_INFO "NX (Execute Disable) protection: active\n");
851 #endif
852
853         /* Enable PSE if available */
854         if (cpu_has_pse)
855                 set_in_cr4(X86_CR4_PSE);
856
857         /* Enable PGE if available */
858         if (cpu_has_pge) {
859                 set_in_cr4(X86_CR4_PGE);
860                 __supported_pte_mask |= _PAGE_GLOBAL;
861         }
862
863         /*
864          * Don't use a large page for the first 2/4MB of memory
865          * because there are often fixed size MTRRs in there
866          * and overlapping MTRRs into large pages can cause
867          * slowdowns.
868          */
869         big_page_start = PMD_SIZE;
870
871         if (start < big_page_start) {
872                 start_pfn = start >> PAGE_SHIFT;
873                 end_pfn = min(big_page_start>>PAGE_SHIFT, end>>PAGE_SHIFT);
874         } else {
875                 /* head is not big page alignment ? */
876                 start_pfn = start >> PAGE_SHIFT;
877                 end_pfn = ((start + (PMD_SIZE - 1))>>PMD_SHIFT)
878                                  << (PMD_SHIFT - PAGE_SHIFT);
879         }
880         if (start_pfn < end_pfn)
881                 kernel_physical_mapping_init(pgd_base, start_pfn, end_pfn, 0);
882
883         /* big page range */
884         start_pfn = ((start + (PMD_SIZE - 1))>>PMD_SHIFT)
885                          << (PMD_SHIFT - PAGE_SHIFT);
886         if (start_pfn < (big_page_start >> PAGE_SHIFT))
887                 start_pfn =  big_page_start >> PAGE_SHIFT;
888         end_pfn = (end>>PMD_SHIFT) << (PMD_SHIFT - PAGE_SHIFT);
889         if (start_pfn < end_pfn)
890                 kernel_physical_mapping_init(pgd_base, start_pfn, end_pfn,
891                                              use_pse);
892
893         /* tail is not big page alignment ? */
894         start_pfn = end_pfn;
895         if (start_pfn > (big_page_start>>PAGE_SHIFT)) {
896                 end_pfn = end >> PAGE_SHIFT;
897                 if (start_pfn < end_pfn)
898                         kernel_physical_mapping_init(pgd_base, start_pfn,
899                                                          end_pfn, 0);
900         }
901
902         early_ioremap_page_table_range_init(pgd_base);
903
904         load_cr3(swapper_pg_dir);
905
906         __flush_tlb_all();
907
908         if (!after_init_bootmem)
909                 reserve_early(table_start << PAGE_SHIFT,
910                                  table_end << PAGE_SHIFT, "PGTABLE");
911
912         if (!after_init_bootmem)
913                 early_memtest(start, end);
914
915         return end >> PAGE_SHIFT;
916 }
917
918
919 /*
920  * paging_init() sets up the page tables - note that the first 8MB are
921  * already mapped by head.S.
922  *
923  * This routines also unmaps the page at virtual kernel address 0, so
924  * that we can trap those pesky NULL-reference errors in the kernel.
925  */
926 void __init paging_init(void)
927 {
928         pagetable_init();
929
930         __flush_tlb_all();
931
932         kmap_init();
933
934         /*
935          * NOTE: at this point the bootmem allocator is fully available.
936          */
937         sparse_init();
938         zone_sizes_init();
939 }
940
941 /*
942  * Test if the WP bit works in supervisor mode. It isn't supported on 386's
943  * and also on some strange 486's. All 586+'s are OK. This used to involve
944  * black magic jumps to work around some nasty CPU bugs, but fortunately the
945  * switch to using exceptions got rid of all that.
946  */
947 static void __init test_wp_bit(void)
948 {
949         printk(KERN_INFO
950   "Checking if this processor honours the WP bit even in supervisor mode...");
951
952         /* Any page-aligned address will do, the test is non-destructive */
953         __set_fixmap(FIX_WP_TEST, __pa(&swapper_pg_dir), PAGE_READONLY);
954         boot_cpu_data.wp_works_ok = do_test_wp_bit();
955         clear_fixmap(FIX_WP_TEST);
956
957         if (!boot_cpu_data.wp_works_ok) {
958                 printk(KERN_CONT "No.\n");
959 #ifdef CONFIG_X86_WP_WORKS_OK
960                 panic(
961   "This kernel doesn't support CPU's with broken WP. Recompile it for a 386!");
962 #endif
963         } else {
964                 printk(KERN_CONT "Ok.\n");
965         }
966 }
967
968 static struct kcore_list kcore_mem, kcore_vmalloc;
969
970 void __init mem_init(void)
971 {
972         int codesize, reservedpages, datasize, initsize;
973         int tmp;
974
975         start_periodic_check_for_corruption();
976
977 #ifdef CONFIG_FLATMEM
978         BUG_ON(!mem_map);
979 #endif
980         /* this will put all low memory onto the freelists */
981         totalram_pages += free_all_bootmem();
982
983         reservedpages = 0;
984         for (tmp = 0; tmp < max_low_pfn; tmp++)
985                 /*
986                  * Only count reserved RAM pages:
987                  */
988                 if (page_is_ram(tmp) && PageReserved(pfn_to_page(tmp)))
989                         reservedpages++;
990
991         set_highmem_pages_init();
992
993         codesize =  (unsigned long) &_etext - (unsigned long) &_text;
994         datasize =  (unsigned long) &_edata - (unsigned long) &_etext;
995         initsize =  (unsigned long) &__init_end - (unsigned long) &__init_begin;
996
997         kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
998         kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
999                    VMALLOC_END-VMALLOC_START);
1000
1001         printk(KERN_INFO "Memory: %luk/%luk available (%dk kernel code, "
1002                         "%dk reserved, %dk data, %dk init, %ldk highmem)\n",
1003                 (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
1004                 num_physpages << (PAGE_SHIFT-10),
1005                 codesize >> 10,
1006                 reservedpages << (PAGE_SHIFT-10),
1007                 datasize >> 10,
1008                 initsize >> 10,
1009                 (unsigned long) (totalhigh_pages << (PAGE_SHIFT-10))
1010                );
1011
1012         printk(KERN_INFO "virtual kernel memory layout:\n"
1013                 "    fixmap  : 0x%08lx - 0x%08lx   (%4ld kB)\n"
1014 #ifdef CONFIG_HIGHMEM
1015                 "    pkmap   : 0x%08lx - 0x%08lx   (%4ld kB)\n"
1016 #endif
1017                 "    vmalloc : 0x%08lx - 0x%08lx   (%4ld MB)\n"
1018                 "    lowmem  : 0x%08lx - 0x%08lx   (%4ld MB)\n"
1019                 "      .init : 0x%08lx - 0x%08lx   (%4ld kB)\n"
1020                 "      .data : 0x%08lx - 0x%08lx   (%4ld kB)\n"
1021                 "      .text : 0x%08lx - 0x%08lx   (%4ld kB)\n",
1022                 FIXADDR_START, FIXADDR_TOP,
1023                 (FIXADDR_TOP - FIXADDR_START) >> 10,
1024
1025 #ifdef CONFIG_HIGHMEM
1026                 PKMAP_BASE, PKMAP_BASE+LAST_PKMAP*PAGE_SIZE,
1027                 (LAST_PKMAP*PAGE_SIZE) >> 10,
1028 #endif
1029
1030                 VMALLOC_START, VMALLOC_END,
1031                 (VMALLOC_END - VMALLOC_START) >> 20,
1032
1033                 (unsigned long)__va(0), (unsigned long)high_memory,
1034                 ((unsigned long)high_memory - (unsigned long)__va(0)) >> 20,
1035
1036                 (unsigned long)&__init_begin, (unsigned long)&__init_end,
1037                 ((unsigned long)&__init_end -
1038                  (unsigned long)&__init_begin) >> 10,
1039
1040                 (unsigned long)&_etext, (unsigned long)&_edata,
1041                 ((unsigned long)&_edata - (unsigned long)&_etext) >> 10,
1042
1043                 (unsigned long)&_text, (unsigned long)&_etext,
1044                 ((unsigned long)&_etext - (unsigned long)&_text) >> 10);
1045
1046 #ifdef CONFIG_HIGHMEM
1047         BUG_ON(PKMAP_BASE + LAST_PKMAP*PAGE_SIZE        > FIXADDR_START);
1048         BUG_ON(VMALLOC_END                              > PKMAP_BASE);
1049 #endif
1050         BUG_ON(VMALLOC_START                            > VMALLOC_END);
1051         BUG_ON((unsigned long)high_memory               > VMALLOC_START);
1052
1053         if (boot_cpu_data.wp_works_ok < 0)
1054                 test_wp_bit();
1055
1056         save_pg_dir();
1057         zap_low_mappings();
1058 }
1059
1060 #ifdef CONFIG_MEMORY_HOTPLUG
1061 int arch_add_memory(int nid, u64 start, u64 size)
1062 {
1063         struct pglist_data *pgdata = NODE_DATA(nid);
1064         struct zone *zone = pgdata->node_zones + ZONE_HIGHMEM;
1065         unsigned long start_pfn = start >> PAGE_SHIFT;
1066         unsigned long nr_pages = size >> PAGE_SHIFT;
1067
1068         return __add_pages(zone, start_pfn, nr_pages);
1069 }
1070 #endif
1071
1072 /*
1073  * This function cannot be __init, since exceptions don't work in that
1074  * section.  Put this after the callers, so that it cannot be inlined.
1075  */
1076 static noinline int do_test_wp_bit(void)
1077 {
1078         char tmp_reg;
1079         int flag;
1080
1081         __asm__ __volatile__(
1082                 "       movb %0, %1     \n"
1083                 "1:     movb %1, %0     \n"
1084                 "       xorl %2, %2     \n"
1085                 "2:                     \n"
1086                 _ASM_EXTABLE(1b,2b)
1087                 :"=m" (*(char *)fix_to_virt(FIX_WP_TEST)),
1088                  "=q" (tmp_reg),
1089                  "=r" (flag)
1090                 :"2" (1)
1091                 :"memory");
1092
1093         return flag;
1094 }
1095
1096 #ifdef CONFIG_DEBUG_RODATA
1097 const int rodata_test_data = 0xC3;
1098 EXPORT_SYMBOL_GPL(rodata_test_data);
1099
1100 void mark_rodata_ro(void)
1101 {
1102         unsigned long start = PFN_ALIGN(_text);
1103         unsigned long size = PFN_ALIGN(_etext) - start;
1104
1105 #ifndef CONFIG_DYNAMIC_FTRACE
1106         /* Dynamic tracing modifies the kernel text section */
1107         set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
1108         printk(KERN_INFO "Write protecting the kernel text: %luk\n",
1109                 size >> 10);
1110
1111 #ifdef CONFIG_CPA_DEBUG
1112         printk(KERN_INFO "Testing CPA: Reverting %lx-%lx\n",
1113                 start, start+size);
1114         set_pages_rw(virt_to_page(start), size>>PAGE_SHIFT);
1115
1116         printk(KERN_INFO "Testing CPA: write protecting again\n");
1117         set_pages_ro(virt_to_page(start), size>>PAGE_SHIFT);
1118 #endif
1119 #endif /* CONFIG_DYNAMIC_FTRACE */
1120
1121         start += size;
1122         size = (unsigned long)__end_rodata - start;
1123         set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
1124         printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
1125                 size >> 10);
1126         rodata_test();
1127
1128 #ifdef CONFIG_CPA_DEBUG
1129         printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, start + size);
1130         set_pages_rw(virt_to_page(start), size >> PAGE_SHIFT);
1131
1132         printk(KERN_INFO "Testing CPA: write protecting again\n");
1133         set_pages_ro(virt_to_page(start), size >> PAGE_SHIFT);
1134 #endif
1135 }
1136 #endif
1137
1138 void free_init_pages(char *what, unsigned long begin, unsigned long end)
1139 {
1140 #ifdef CONFIG_DEBUG_PAGEALLOC
1141         /*
1142          * If debugging page accesses then do not free this memory but
1143          * mark them not present - any buggy init-section access will
1144          * create a kernel page fault:
1145          */
1146         printk(KERN_INFO "debug: unmapping init memory %08lx..%08lx\n",
1147                 begin, PAGE_ALIGN(end));
1148         set_memory_np(begin, (end - begin) >> PAGE_SHIFT);
1149 #else
1150         unsigned long addr;
1151
1152         /*
1153          * We just marked the kernel text read only above, now that
1154          * we are going to free part of that, we need to make that
1155          * writeable first.
1156          */
1157         set_memory_rw(begin, (end - begin) >> PAGE_SHIFT);
1158
1159         for (addr = begin; addr < end; addr += PAGE_SIZE) {
1160                 ClearPageReserved(virt_to_page(addr));
1161                 init_page_count(virt_to_page(addr));
1162                 memset((void *)addr, POISON_FREE_INITMEM, PAGE_SIZE);
1163                 free_page(addr);
1164                 totalram_pages++;
1165         }
1166         printk(KERN_INFO "Freeing %s: %luk freed\n", what, (end - begin) >> 10);
1167 #endif
1168 }
1169
1170 void free_initmem(void)
1171 {
1172         free_init_pages("unused kernel memory",
1173                         (unsigned long)(&__init_begin),
1174                         (unsigned long)(&__init_end));
1175 }
1176
1177 #ifdef CONFIG_BLK_DEV_INITRD
1178 void free_initrd_mem(unsigned long start, unsigned long end)
1179 {
1180         free_init_pages("initrd memory", start, end);
1181 }
1182 #endif
1183
1184 int __init reserve_bootmem_generic(unsigned long phys, unsigned long len,
1185                                    int flags)
1186 {
1187         return reserve_bootmem(phys, len, flags);
1188 }