]> bbs.cooldavid.org Git - net-next-2.6.git/blob - arch/powerpc/mm/init_64.c
[PATCH] add poison.h and patch primary users
[net-next-2.6.git] / arch / powerpc / mm / init_64.c
1 /*
2  *  PowerPC version
3  *    Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
4  *
5  *  Modifications by Paul Mackerras (PowerMac) (paulus@cs.anu.edu.au)
6  *  and Cort Dougan (PReP) (cort@cs.nmt.edu)
7  *    Copyright (C) 1996 Paul Mackerras
8  *  Amiga/APUS changes by Jesper Skov (jskov@cygnus.co.uk).
9  *
10  *  Derived from "arch/i386/mm/init.c"
11  *    Copyright (C) 1991, 1992, 1993, 1994  Linus Torvalds
12  *
13  *  Dave Engebretsen <engebret@us.ibm.com>
14  *      Rework for PPC64 port.
15  *
16  *  This program is free software; you can redistribute it and/or
17  *  modify it under the terms of the GNU General Public License
18  *  as published by the Free Software Foundation; either version
19  *  2 of the License, or (at your option) any later version.
20  *
21  */
22
23 #undef DEBUG
24
25 #include <linux/config.h>
26 #include <linux/signal.h>
27 #include <linux/sched.h>
28 #include <linux/kernel.h>
29 #include <linux/errno.h>
30 #include <linux/string.h>
31 #include <linux/types.h>
32 #include <linux/mman.h>
33 #include <linux/mm.h>
34 #include <linux/swap.h>
35 #include <linux/stddef.h>
36 #include <linux/vmalloc.h>
37 #include <linux/init.h>
38 #include <linux/delay.h>
39 #include <linux/bootmem.h>
40 #include <linux/highmem.h>
41 #include <linux/idr.h>
42 #include <linux/nodemask.h>
43 #include <linux/module.h>
44 #include <linux/poison.h>
45
46 #include <asm/pgalloc.h>
47 #include <asm/page.h>
48 #include <asm/prom.h>
49 #include <asm/lmb.h>
50 #include <asm/rtas.h>
51 #include <asm/io.h>
52 #include <asm/mmu_context.h>
53 #include <asm/pgtable.h>
54 #include <asm/mmu.h>
55 #include <asm/uaccess.h>
56 #include <asm/smp.h>
57 #include <asm/machdep.h>
58 #include <asm/tlb.h>
59 #include <asm/eeh.h>
60 #include <asm/processor.h>
61 #include <asm/mmzone.h>
62 #include <asm/cputable.h>
63 #include <asm/sections.h>
64 #include <asm/system.h>
65 #include <asm/iommu.h>
66 #include <asm/abs_addr.h>
67 #include <asm/vdso.h>
68
69 #include "mmu_decl.h"
70
71 #ifdef DEBUG
72 #define DBG(fmt...) printk(fmt)
73 #else
74 #define DBG(fmt...)
75 #endif
76
77 #if PGTABLE_RANGE > USER_VSID_RANGE
78 #warning Limited user VSID range means pagetable space is wasted
79 #endif
80
81 #if (TASK_SIZE_USER64 < PGTABLE_RANGE) && (TASK_SIZE_USER64 < USER_VSID_RANGE)
82 #warning TASK_SIZE is smaller than it needs to be.
83 #endif
84
85 /* max amount of RAM to use */
86 unsigned long __max_memory;
87
88 void free_initmem(void)
89 {
90         unsigned long addr;
91
92         addr = (unsigned long)__init_begin;
93         for (; addr < (unsigned long)__init_end; addr += PAGE_SIZE) {
94                 memset((void *)addr, POISON_FREE_INITMEM, PAGE_SIZE);
95                 ClearPageReserved(virt_to_page(addr));
96                 init_page_count(virt_to_page(addr));
97                 free_page(addr);
98                 totalram_pages++;
99         }
100         printk ("Freeing unused kernel memory: %luk freed\n",
101                 ((unsigned long)__init_end - (unsigned long)__init_begin) >> 10);
102 }
103
104 #ifdef CONFIG_BLK_DEV_INITRD
105 void free_initrd_mem(unsigned long start, unsigned long end)
106 {
107         if (start < end)
108                 printk ("Freeing initrd memory: %ldk freed\n", (end - start) >> 10);
109         for (; start < end; start += PAGE_SIZE) {
110                 ClearPageReserved(virt_to_page(start));
111                 init_page_count(virt_to_page(start));
112                 free_page(start);
113                 totalram_pages++;
114         }
115 }
116 #endif
117
118 static struct kcore_list kcore_vmem;
119
120 static int __init setup_kcore(void)
121 {
122         int i;
123
124         for (i=0; i < lmb.memory.cnt; i++) {
125                 unsigned long base, size;
126                 struct kcore_list *kcore_mem;
127
128                 base = lmb.memory.region[i].base;
129                 size = lmb.memory.region[i].size;
130
131                 /* GFP_ATOMIC to avoid might_sleep warnings during boot */
132                 kcore_mem = kmalloc(sizeof(struct kcore_list), GFP_ATOMIC);
133                 if (!kcore_mem)
134                         panic("mem_init: kmalloc failed\n");
135
136                 kclist_add(kcore_mem, __va(base), size);
137         }
138
139         kclist_add(&kcore_vmem, (void *)VMALLOC_START, VMALLOC_END-VMALLOC_START);
140
141         return 0;
142 }
143 module_init(setup_kcore);
144
145 static void zero_ctor(void *addr, kmem_cache_t *cache, unsigned long flags)
146 {
147         memset(addr, 0, kmem_cache_size(cache));
148 }
149
150 #ifdef CONFIG_PPC_64K_PAGES
151 static const unsigned int pgtable_cache_size[3] = {
152         PTE_TABLE_SIZE, PMD_TABLE_SIZE, PGD_TABLE_SIZE
153 };
154 static const char *pgtable_cache_name[ARRAY_SIZE(pgtable_cache_size)] = {
155         "pte_pmd_cache", "pmd_cache", "pgd_cache",
156 };
157 #else
158 static const unsigned int pgtable_cache_size[2] = {
159         PTE_TABLE_SIZE, PMD_TABLE_SIZE
160 };
161 static const char *pgtable_cache_name[ARRAY_SIZE(pgtable_cache_size)] = {
162         "pgd_pte_cache", "pud_pmd_cache",
163 };
164 #endif /* CONFIG_PPC_64K_PAGES */
165
166 #ifdef CONFIG_HUGETLB_PAGE
167 /* Hugepages need one extra cache, initialized in hugetlbpage.c.  We
168  * can't put into the tables above, because HPAGE_SHIFT is not compile
169  * time constant. */
170 kmem_cache_t *pgtable_cache[ARRAY_SIZE(pgtable_cache_size)+1];
171 #else
172 kmem_cache_t *pgtable_cache[ARRAY_SIZE(pgtable_cache_size)];
173 #endif
174
175 void pgtable_cache_init(void)
176 {
177         int i;
178
179         for (i = 0; i < ARRAY_SIZE(pgtable_cache_size); i++) {
180                 int size = pgtable_cache_size[i];
181                 const char *name = pgtable_cache_name[i];
182
183                 DBG("Allocating page table cache %s (#%d) "
184                     "for size: %08x...\n", name, i, size);
185                 pgtable_cache[i] = kmem_cache_create(name,
186                                                      size, size,
187                                                      SLAB_HWCACHE_ALIGN |
188                                                      SLAB_MUST_HWCACHE_ALIGN,
189                                                      zero_ctor,
190                                                      NULL);
191                 if (! pgtable_cache[i])
192                         panic("pgtable_cache_init(): could not create %s!\n",
193                               name);
194         }
195 }