Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 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 | |
Benjamin Herrenschmidt | 87655ff | 2005-11-10 14:53:16 +1100 | [diff] [blame] | 23 | #undef DEBUG |
| 24 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 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> |
Randy Dunlap | c9cf552 | 2006-06-27 02:53:52 -0700 | [diff] [blame^] | 44 | #include <linux/poison.h> |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 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> |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 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> |
David Gibson | 800fc3e | 2005-11-16 15:43:48 +1100 | [diff] [blame] | 68 | |
| 69 | #include "mmu_decl.h" |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 70 | |
Benjamin Herrenschmidt | 87655ff | 2005-11-10 14:53:16 +1100 | [diff] [blame] | 71 | #ifdef DEBUG |
| 72 | #define DBG(fmt...) printk(fmt) |
| 73 | #else |
| 74 | #define DBG(fmt...) |
| 75 | #endif |
| 76 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 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 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 85 | /* max amount of RAM to use */ |
| 86 | unsigned long __max_memory; |
| 87 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 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) { |
Randy Dunlap | c9cf552 | 2006-06-27 02:53:52 -0700 | [diff] [blame^] | 94 | memset((void *)addr, POISON_FREE_INITMEM, PAGE_SIZE); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 95 | ClearPageReserved(virt_to_page(addr)); |
Nick Piggin | 7835e98 | 2006-03-22 00:08:40 -0800 | [diff] [blame] | 96 | init_page_count(virt_to_page(addr)); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 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)); |
Nick Piggin | 7835e98 | 2006-03-22 00:08:40 -0800 | [diff] [blame] | 111 | init_page_count(virt_to_page(start)); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 112 | free_page(start); |
| 113 | totalram_pages++; |
| 114 | } |
| 115 | } |
| 116 | #endif |
| 117 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 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 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 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 | |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 150 | #ifdef CONFIG_PPC_64K_PAGES |
Benjamin Herrenschmidt | 87655ff | 2005-11-10 14:53:16 +1100 | [diff] [blame] | 151 | static const unsigned int pgtable_cache_size[3] = { |
| 152 | PTE_TABLE_SIZE, PMD_TABLE_SIZE, PGD_TABLE_SIZE |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 153 | }; |
| 154 | static const char *pgtable_cache_name[ARRAY_SIZE(pgtable_cache_size)] = { |
Benjamin Herrenschmidt | 87655ff | 2005-11-10 14:53:16 +1100 | [diff] [blame] | 155 | "pte_pmd_cache", "pmd_cache", "pgd_cache", |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 156 | }; |
| 157 | #else |
Benjamin Herrenschmidt | 87655ff | 2005-11-10 14:53:16 +1100 | [diff] [blame] | 158 | static const unsigned int pgtable_cache_size[2] = { |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 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 | }; |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 164 | #endif /* CONFIG_PPC_64K_PAGES */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 165 | |
David Gibson | f10a04c | 2006-04-28 15:02:51 +1000 | [diff] [blame] | 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 |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 172 | kmem_cache_t *pgtable_cache[ARRAY_SIZE(pgtable_cache_size)]; |
David Gibson | f10a04c | 2006-04-28 15:02:51 +1000 | [diff] [blame] | 173 | #endif |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 174 | |
| 175 | void pgtable_cache_init(void) |
| 176 | { |
| 177 | int i; |
| 178 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 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 | |
Benjamin Herrenschmidt | 87655ff | 2005-11-10 14:53:16 +1100 | [diff] [blame] | 183 | DBG("Allocating page table cache %s (#%d) " |
| 184 | "for size: %08x...\n", name, i, size); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 185 | pgtable_cache[i] = kmem_cache_create(name, |
| 186 | size, size, |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 187 | SLAB_HWCACHE_ALIGN | |
| 188 | SLAB_MUST_HWCACHE_ALIGN, |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 189 | zero_ctor, |
| 190 | NULL); |
| 191 | if (! pgtable_cache[i]) |
| 192 | panic("pgtable_cache_init(): could not create %s!\n", |
| 193 | name); |
| 194 | } |
| 195 | } |