blob: d454caada265d599addca7877ced6e5f7a318e04 [file] [log] [blame]
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001/*
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 Herrenschmidt87655ff2005-11-10 14:53:16 +110023#undef DEBUG
24
Paul Mackerras14cf11a2005-09-26 16:04:21 +100025#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 Dunlapc9cf5522006-06-27 02:53:52 -070044#include <linux/poison.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100045
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 Mackerras14cf11a2005-09-26 16:04:21 +100063#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 Gibson800fc3e2005-11-16 15:43:48 +110068
69#include "mmu_decl.h"
Paul Mackerras14cf11a2005-09-26 16:04:21 +100070
Benjamin Herrenschmidt87655ff2005-11-10 14:53:16 +110071#ifdef DEBUG
72#define DBG(fmt...) printk(fmt)
73#else
74#define DBG(fmt...)
75#endif
76
Paul Mackerras14cf11a2005-09-26 16:04:21 +100077#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 Mackerras14cf11a2005-09-26 16:04:21 +100085/* max amount of RAM to use */
86unsigned long __max_memory;
87
Paul Mackerras14cf11a2005-09-26 16:04:21 +100088void 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 Dunlapc9cf5522006-06-27 02:53:52 -070094 memset((void *)addr, POISON_FREE_INITMEM, PAGE_SIZE);
Paul Mackerras14cf11a2005-09-26 16:04:21 +100095 ClearPageReserved(virt_to_page(addr));
Nick Piggin7835e982006-03-22 00:08:40 -080096 init_page_count(virt_to_page(addr));
Paul Mackerras14cf11a2005-09-26 16:04:21 +100097 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
105void 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 Piggin7835e982006-03-22 00:08:40 -0800111 init_page_count(virt_to_page(start));
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000112 free_page(start);
113 totalram_pages++;
114 }
115}
116#endif
117
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000118static struct kcore_list kcore_vmem;
119
120static 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}
143module_init(setup_kcore);
144
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000145static void zero_ctor(void *addr, kmem_cache_t *cache, unsigned long flags)
146{
147 memset(addr, 0, kmem_cache_size(cache));
148}
149
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100150#ifdef CONFIG_PPC_64K_PAGES
Benjamin Herrenschmidt87655ff2005-11-10 14:53:16 +1100151static const unsigned int pgtable_cache_size[3] = {
152 PTE_TABLE_SIZE, PMD_TABLE_SIZE, PGD_TABLE_SIZE
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100153};
154static const char *pgtable_cache_name[ARRAY_SIZE(pgtable_cache_size)] = {
Benjamin Herrenschmidt87655ff2005-11-10 14:53:16 +1100155 "pte_pmd_cache", "pmd_cache", "pgd_cache",
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100156};
157#else
Benjamin Herrenschmidt87655ff2005-11-10 14:53:16 +1100158static const unsigned int pgtable_cache_size[2] = {
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000159 PTE_TABLE_SIZE, PMD_TABLE_SIZE
160};
161static const char *pgtable_cache_name[ARRAY_SIZE(pgtable_cache_size)] = {
162 "pgd_pte_cache", "pud_pmd_cache",
163};
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100164#endif /* CONFIG_PPC_64K_PAGES */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000165
David Gibsonf10a04c2006-04-28 15:02:51 +1000166#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. */
170kmem_cache_t *pgtable_cache[ARRAY_SIZE(pgtable_cache_size)+1];
171#else
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000172kmem_cache_t *pgtable_cache[ARRAY_SIZE(pgtable_cache_size)];
David Gibsonf10a04c2006-04-28 15:02:51 +1000173#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000174
175void pgtable_cache_init(void)
176{
177 int i;
178
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000179 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 Herrenschmidt87655ff2005-11-10 14:53:16 +1100183 DBG("Allocating page table cache %s (#%d) "
184 "for size: %08x...\n", name, i, size);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000185 pgtable_cache[i] = kmem_cache_create(name,
186 size, size,
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100187 SLAB_HWCACHE_ALIGN |
188 SLAB_MUST_HWCACHE_ALIGN,
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000189 zero_ctor,
190 NULL);
191 if (! pgtable_cache[i])
192 panic("pgtable_cache_init(): could not create %s!\n",
193 name);
194 }
195}