blob: 93abf8a9813d5c2d47a1aa150cafa4076111b0db [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
Paul Mackerras14cf11a2005-09-26 16:04:21 +10008 *
9 * Derived from "arch/i386/mm/init.c"
10 * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
11 *
12 * Dave Engebretsen <engebret@us.ibm.com>
13 * Rework for PPC64 port.
14 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version
18 * 2 of the License, or (at your option) any later version.
19 *
20 */
21
Benjamin Herrenschmidtcec08e72008-04-30 15:41:48 +100022#undef DEBUG
23
Paul Mackerras14cf11a2005-09-26 16:04:21 +100024#include <linux/signal.h>
25#include <linux/sched.h>
26#include <linux/kernel.h>
27#include <linux/errno.h>
28#include <linux/string.h>
29#include <linux/types.h>
30#include <linux/mman.h>
31#include <linux/mm.h>
32#include <linux/swap.h>
33#include <linux/stddef.h>
34#include <linux/vmalloc.h>
35#include <linux/init.h>
36#include <linux/delay.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100037#include <linux/highmem.h>
38#include <linux/idr.h>
39#include <linux/nodemask.h>
40#include <linux/module.h>
Randy Dunlapc9cf5522006-06-27 02:53:52 -070041#include <linux/poison.h>
Yinghai Lu95f72d12010-07-12 14:36:09 +100042#include <linux/memblock.h>
David Gibsona4fe3ce2009-10-26 19:24:31 +000043#include <linux/hugetlb.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090044#include <linux/slab.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100045
46#include <asm/pgalloc.h>
47#include <asm/page.h>
48#include <asm/prom.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100049#include <asm/rtas.h>
50#include <asm/io.h>
51#include <asm/mmu_context.h>
52#include <asm/pgtable.h>
53#include <asm/mmu.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080054#include <linux/uaccess.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100055#include <asm/smp.h>
56#include <asm/machdep.h>
57#include <asm/tlb.h>
58#include <asm/eeh.h>
59#include <asm/processor.h>
60#include <asm/mmzone.h>
61#include <asm/cputable.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100062#include <asm/sections.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100063#include <asm/iommu.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100064#include <asm/vdso.h>
David Gibson800fc3e2005-11-16 15:43:48 +110065
66#include "mmu_decl.h"
Paul Mackerras14cf11a2005-09-26 16:04:21 +100067
Benjamin Herrenschmidt94491682009-06-02 21:17:45 +000068#ifdef CONFIG_PPC_STD_MMU_64
Aneesh Kumar K.Vdd1842a2016-04-29 23:25:49 +100069#if H_PGTABLE_RANGE > USER_VSID_RANGE
Paul Mackerras14cf11a2005-09-26 16:04:21 +100070#warning Limited user VSID range means pagetable space is wasted
71#endif
72
Aneesh Kumar K.Vdd1842a2016-04-29 23:25:49 +100073#if (TASK_SIZE_USER64 < H_PGTABLE_RANGE) && (TASK_SIZE_USER64 < USER_VSID_RANGE)
Paul Mackerras14cf11a2005-09-26 16:04:21 +100074#warning TASK_SIZE is smaller than it needs to be.
75#endif
Benjamin Herrenschmidt94491682009-06-02 21:17:45 +000076#endif /* CONFIG_PPC_STD_MMU_64 */
Paul Mackerras14cf11a2005-09-26 16:04:21 +100077
Kumar Gala37dd2ba2008-04-22 04:22:34 +100078phys_addr_t memstart_addr = ~0;
Sonny Rao79c30952010-08-19 18:08:09 +000079EXPORT_SYMBOL_GPL(memstart_addr);
Kumar Gala37dd2ba2008-04-22 04:22:34 +100080phys_addr_t kernstart_addr;
Sonny Rao79c30952010-08-19 18:08:09 +000081EXPORT_SYMBOL_GPL(kernstart_addr);
Kumar Galad7917ba2008-04-16 05:52:22 +100082
Andy Whitcroftd29eff72007-10-16 01:24:17 -070083#ifdef CONFIG_SPARSEMEM_VMEMMAP
84/*
85 * Given an address within the vmemmap, determine the pfn of the page that
86 * represents the start of the section it is within. Note that we have to
87 * do this by hand as the proffered address may not be correctly aligned.
88 * Subtraction of non-aligned pointers produces undefined results.
89 */
Michael Ellerman09de9ff2008-05-08 14:27:07 +100090static unsigned long __meminit vmemmap_section_start(unsigned long page)
Andy Whitcroftd29eff72007-10-16 01:24:17 -070091{
92 unsigned long offset = page - ((unsigned long)(vmemmap));
93
94 /* Return the pfn of the start of the section. */
95 return (offset / sizeof(struct page)) & PAGE_SECTION_MASK;
96}
97
98/*
99 * Check if this vmemmap page is already initialised. If any section
100 * which overlaps this vmemmap page is initialised then this page is
101 * initialised already.
102 */
Michael Ellerman09de9ff2008-05-08 14:27:07 +1000103static int __meminit vmemmap_populated(unsigned long start, int page_size)
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700104{
105 unsigned long end = start + page_size;
Li Zhong16a05bf2014-06-11 16:23:39 +0800106 start = (unsigned long)(pfn_to_page(vmemmap_section_start(start)));
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700107
108 for (; start < end; start += (PAGES_PER_SECTION * sizeof(struct page)))
Li Zhong16a05bf2014-06-11 16:23:39 +0800109 if (pfn_valid(page_to_pfn((struct page *)start)))
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700110 return 1;
111
112 return 0;
113}
114
Mark Nelson91eea672010-04-21 16:21:03 +0000115struct vmemmap_backing *vmemmap_list;
Li Zhongbd8cb032014-06-11 16:23:36 +0800116static struct vmemmap_backing *next;
117static int num_left;
118static int num_freed;
Mark Nelson91eea672010-04-21 16:21:03 +0000119
120static __meminit struct vmemmap_backing * vmemmap_list_alloc(int node)
121{
Li Zhongbd8cb032014-06-11 16:23:36 +0800122 struct vmemmap_backing *vmem_back;
123 /* get from freed entries first */
124 if (num_freed) {
125 num_freed--;
126 vmem_back = next;
127 next = next->list;
128
129 return vmem_back;
130 }
Mark Nelson91eea672010-04-21 16:21:03 +0000131
132 /* allocate a page when required and hand out chunks */
Li Zhongbd8cb032014-06-11 16:23:36 +0800133 if (!num_left) {
Mark Nelson91eea672010-04-21 16:21:03 +0000134 next = vmemmap_alloc_block(PAGE_SIZE, node);
135 if (unlikely(!next)) {
136 WARN_ON(1);
137 return NULL;
138 }
139 num_left = PAGE_SIZE / sizeof(struct vmemmap_backing);
140 }
141
142 num_left--;
143
144 return next++;
145}
146
147static __meminit void vmemmap_list_populate(unsigned long phys,
148 unsigned long start,
149 int node)
150{
151 struct vmemmap_backing *vmem_back;
152
153 vmem_back = vmemmap_list_alloc(node);
154 if (unlikely(!vmem_back)) {
155 WARN_ON(1);
156 return;
157 }
158
159 vmem_back->phys = phys;
160 vmem_back->virt_addr = start;
161 vmem_back->list = vmemmap_list;
162
163 vmemmap_list = vmem_back;
164}
165
Li Zhong71b0bfe2014-06-11 16:23:38 +0800166int __meminit vmemmap_populate(unsigned long start, unsigned long end, int node)
167{
168 unsigned long page_size = 1 << mmu_psize_defs[mmu_vmemmap_psize].shift;
169
170 /* Align to the page size of the linear mapping. */
171 start = _ALIGN_DOWN(start, page_size);
172
173 pr_debug("vmemmap_populate %lx..%lx, node %d\n", start, end, node);
174
175 for (; start < end; start += page_size) {
176 void *p;
David Gibson1dace6c2016-02-09 13:32:42 +1000177 int rc;
Li Zhong71b0bfe2014-06-11 16:23:38 +0800178
179 if (vmemmap_populated(start, page_size))
180 continue;
181
182 p = vmemmap_alloc_block(page_size, node);
183 if (!p)
184 return -ENOMEM;
185
186 vmemmap_list_populate(__pa(p), start, node);
187
188 pr_debug(" * %016lx..%016lx allocated at %p\n",
189 start, start + page_size, p);
190
David Gibson1dace6c2016-02-09 13:32:42 +1000191 rc = vmemmap_create_mapping(start, page_size, __pa(p));
192 if (rc < 0) {
193 pr_warning(
194 "vmemmap_populate: Unable to create vmemmap mapping: %d\n",
195 rc);
196 return -EFAULT;
197 }
Li Zhong71b0bfe2014-06-11 16:23:38 +0800198 }
199
200 return 0;
201}
202
203#ifdef CONFIG_MEMORY_HOTPLUG
Li Zhongbd8cb032014-06-11 16:23:36 +0800204static unsigned long vmemmap_list_free(unsigned long start)
205{
206 struct vmemmap_backing *vmem_back, *vmem_back_prev;
207
208 vmem_back_prev = vmem_back = vmemmap_list;
209
210 /* look for it with prev pointer recorded */
211 for (; vmem_back; vmem_back = vmem_back->list) {
212 if (vmem_back->virt_addr == start)
213 break;
214 vmem_back_prev = vmem_back;
215 }
216
217 if (unlikely(!vmem_back)) {
218 WARN_ON(1);
219 return 0;
220 }
221
222 /* remove it from vmemmap_list */
223 if (vmem_back == vmemmap_list) /* remove head */
224 vmemmap_list = vmem_back->list;
225 else
226 vmem_back_prev->list = vmem_back->list;
227
228 /* next point to this freed entry */
229 vmem_back->list = next;
230 next = vmem_back;
231 num_freed++;
232
233 return vmem_back->phys;
234}
235
Li Zhong71b0bfe2014-06-11 16:23:38 +0800236void __ref vmemmap_free(unsigned long start, unsigned long end)
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700237{
Benjamin Herrenschmidtcec08e72008-04-30 15:41:48 +1000238 unsigned long page_size = 1 << mmu_psize_defs[mmu_vmemmap_psize].shift;
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700239
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700240 start = _ALIGN_DOWN(start, page_size);
241
Li Zhong71b0bfe2014-06-11 16:23:38 +0800242 pr_debug("vmemmap_free %lx...%lx\n", start, end);
Benjamin Herrenschmidt32a74942009-07-23 23:15:58 +0000243
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700244 for (; start < end; start += page_size) {
Li Zhong71b0bfe2014-06-11 16:23:38 +0800245 unsigned long addr;
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700246
Li Zhong71b0bfe2014-06-11 16:23:38 +0800247 /*
248 * the section has already be marked as invalid, so
249 * vmemmap_populated() true means some other sections still
250 * in this page, so skip it.
251 */
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700252 if (vmemmap_populated(start, page_size))
253 continue;
254
Li Zhong71b0bfe2014-06-11 16:23:38 +0800255 addr = vmemmap_list_free(start);
256 if (addr) {
257 struct page *page = pfn_to_page(addr >> PAGE_SHIFT);
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700258
Li Zhong71b0bfe2014-06-11 16:23:38 +0800259 if (PageReserved(page)) {
260 /* allocated from bootmem */
261 if (page_size < PAGE_SIZE) {
262 /*
263 * this shouldn't happen, but if it is
264 * the case, leave the memory there
265 */
266 WARN_ON_ONCE(1);
267 } else {
268 unsigned int nr_pages =
269 1 << get_order(page_size);
270 while (nr_pages--)
271 free_reserved_page(page++);
272 }
273 } else
274 free_pages((unsigned long)(__va(addr)),
275 get_order(page_size));
Mark Nelson91eea672010-04-21 16:21:03 +0000276
Li Zhong71b0bfe2014-06-11 16:23:38 +0800277 vmemmap_remove_mapping(start, page_size);
278 }
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700279 }
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700280}
Li Zhong71b0bfe2014-06-11 16:23:38 +0800281#endif
Nathan Fontenotf7e33342013-09-27 10:18:09 -0500282void register_page_bootmem_memmap(unsigned long section_nr,
283 struct page *start_page, unsigned long size)
284{
285}
Benjamin Herrenschmidtcd3db0c2010-07-06 15:39:02 -0700286
Alexey Kardashevskiy8e0861f2013-08-28 18:37:42 +1000287/*
288 * We do not have access to the sparsemem vmemmap, so we fallback to
289 * walking the list of sparsemem blocks which we already maintain for
290 * the sake of crashdump. In the long run, we might want to maintain
291 * a tree if performance of that linear walk becomes a problem.
292 *
293 * realmode_pfn_to_page functions can fail due to:
294 * 1) As real sparsemem blocks do not lay in RAM continously (they
295 * are in virtual address space which is not available in the real mode),
296 * the requested page struct can be split between blocks so get_page/put_page
297 * may fail.
298 * 2) When huge pages are used, the get_page/put_page API will fail
299 * in real mode as the linked addresses in the page struct are virtual
300 * too.
301 */
302struct page *realmode_pfn_to_page(unsigned long pfn)
303{
304 struct vmemmap_backing *vmem_back;
305 struct page *page;
306 unsigned long page_size = 1 << mmu_psize_defs[mmu_vmemmap_psize].shift;
307 unsigned long pg_va = (unsigned long) pfn_to_page(pfn);
308
309 for (vmem_back = vmemmap_list; vmem_back; vmem_back = vmem_back->list) {
310 if (pg_va < vmem_back->virt_addr)
311 continue;
312
Li Zhongbd8cb032014-06-11 16:23:36 +0800313 /* After vmemmap_list entry free is possible, need check all */
314 if ((pg_va + sizeof(struct page)) <=
315 (vmem_back->virt_addr + page_size)) {
316 page = (struct page *) (vmem_back->phys + pg_va -
Alexey Kardashevskiy8e0861f2013-08-28 18:37:42 +1000317 vmem_back->virt_addr);
Li Zhongbd8cb032014-06-11 16:23:36 +0800318 return page;
319 }
Alexey Kardashevskiy8e0861f2013-08-28 18:37:42 +1000320 }
321
Li Zhongbd8cb032014-06-11 16:23:36 +0800322 /* Probably that page struct is split between real pages */
Alexey Kardashevskiy8e0861f2013-08-28 18:37:42 +1000323 return NULL;
324}
325EXPORT_SYMBOL_GPL(realmode_pfn_to_page);
326
327#elif defined(CONFIG_FLATMEM)
328
329struct page *realmode_pfn_to_page(unsigned long pfn)
330{
331 struct page *page = pfn_to_page(pfn);
332 return page;
333}
334EXPORT_SYMBOL_GPL(realmode_pfn_to_page);
335
336#endif /* CONFIG_SPARSEMEM_VMEMMAP/CONFIG_FLATMEM */
Michael Ellerman1a01dc82016-07-26 20:09:30 +1000337
338#ifdef CONFIG_PPC_STD_MMU_64
Michael Ellermanc610ec62016-07-26 21:29:30 +1000339static bool disable_radix;
340static int __init parse_disable_radix(char *p)
341{
342 disable_radix = true;
343 return 0;
344}
345early_param("disable_radix", parse_disable_radix);
346
Michael Ellerman1a01dc82016-07-26 20:09:30 +1000347void __init mmu_early_init_devtree(void)
348{
Michael Ellermanc610ec62016-07-26 21:29:30 +1000349 /* Disable radix mode based on kernel command line. */
350 if (disable_radix)
Aneesh Kumar K.V5a25b6f2016-07-27 13:19:01 +1000351 cur_cpu_spec->mmu_features &= ~MMU_FTR_TYPE_RADIX;
Michael Ellermanbacf9cf2016-07-26 21:31:59 +1000352
Aneesh Kumar K.Vb8f1b4f2016-07-23 14:42:35 +0530353 if (early_radix_enabled())
Michael Ellerman2537b092016-07-26 21:55:27 +1000354 radix__early_init_devtree();
355 else
Michael Ellermanbacf9cf2016-07-26 21:31:59 +1000356 hash__early_init_devtree();
Michael Ellerman1a01dc82016-07-26 20:09:30 +1000357}
358#endif /* CONFIG_PPC_STD_MMU_64 */