blob: f855a2442c97ed60c9bb0bed4a0b2f952c5ef2dd [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 Mackerras18569c12017-01-30 21:21:34 +110045#include <linux/of_fdt.h>
46#include <linux/libfdt.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100047
48#include <asm/pgalloc.h>
49#include <asm/page.h>
50#include <asm/prom.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100051#include <asm/rtas.h>
52#include <asm/io.h>
53#include <asm/mmu_context.h>
54#include <asm/pgtable.h>
55#include <asm/mmu.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080056#include <linux/uaccess.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100057#include <asm/smp.h>
58#include <asm/machdep.h>
59#include <asm/tlb.h>
60#include <asm/eeh.h>
61#include <asm/processor.h>
62#include <asm/mmzone.h>
63#include <asm/cputable.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100064#include <asm/sections.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100065#include <asm/iommu.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100066#include <asm/vdso.h>
David Gibson800fc3e2005-11-16 15:43:48 +110067
68#include "mmu_decl.h"
Paul Mackerras14cf11a2005-09-26 16:04:21 +100069
Benjamin Herrenschmidt94491682009-06-02 21:17:45 +000070#ifdef CONFIG_PPC_STD_MMU_64
Aneesh Kumar K.Vdd1842a2016-04-29 23:25:49 +100071#if H_PGTABLE_RANGE > USER_VSID_RANGE
Paul Mackerras14cf11a2005-09-26 16:04:21 +100072#warning Limited user VSID range means pagetable space is wasted
73#endif
Benjamin Herrenschmidt94491682009-06-02 21:17:45 +000074#endif /* CONFIG_PPC_STD_MMU_64 */
Paul Mackerras14cf11a2005-09-26 16:04:21 +100075
Kumar Gala37dd2ba2008-04-22 04:22:34 +100076phys_addr_t memstart_addr = ~0;
Sonny Rao79c30952010-08-19 18:08:09 +000077EXPORT_SYMBOL_GPL(memstart_addr);
Kumar Gala37dd2ba2008-04-22 04:22:34 +100078phys_addr_t kernstart_addr;
Sonny Rao79c30952010-08-19 18:08:09 +000079EXPORT_SYMBOL_GPL(kernstart_addr);
Kumar Galad7917ba2008-04-16 05:52:22 +100080
Andy Whitcroftd29eff72007-10-16 01:24:17 -070081#ifdef CONFIG_SPARSEMEM_VMEMMAP
82/*
83 * Given an address within the vmemmap, determine the pfn of the page that
84 * represents the start of the section it is within. Note that we have to
85 * do this by hand as the proffered address may not be correctly aligned.
86 * Subtraction of non-aligned pointers produces undefined results.
87 */
Michael Ellerman09de9ff2008-05-08 14:27:07 +100088static unsigned long __meminit vmemmap_section_start(unsigned long page)
Andy Whitcroftd29eff72007-10-16 01:24:17 -070089{
90 unsigned long offset = page - ((unsigned long)(vmemmap));
91
92 /* Return the pfn of the start of the section. */
93 return (offset / sizeof(struct page)) & PAGE_SECTION_MASK;
94}
95
96/*
97 * Check if this vmemmap page is already initialised. If any section
98 * which overlaps this vmemmap page is initialised then this page is
99 * initialised already.
100 */
Michael Ellerman09de9ff2008-05-08 14:27:07 +1000101static int __meminit vmemmap_populated(unsigned long start, int page_size)
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700102{
103 unsigned long end = start + page_size;
Li Zhong16a05bf2014-06-11 16:23:39 +0800104 start = (unsigned long)(pfn_to_page(vmemmap_section_start(start)));
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700105
106 for (; start < end; start += (PAGES_PER_SECTION * sizeof(struct page)))
Li Zhong16a05bf2014-06-11 16:23:39 +0800107 if (pfn_valid(page_to_pfn((struct page *)start)))
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700108 return 1;
109
110 return 0;
111}
112
Anshuman Khandual39e46752017-04-06 19:44:50 +0530113/*
114 * vmemmap virtual address space management does not have a traditonal page
115 * table to track which virtual struct pages are backed by physical mapping.
116 * The virtual to physical mappings are tracked in a simple linked list
117 * format. 'vmemmap_list' maintains the entire vmemmap physical mapping at
118 * all times where as the 'next' list maintains the available
119 * vmemmap_backing structures which have been deleted from the
120 * 'vmemmap_global' list during system runtime (memory hotplug remove
121 * operation). The freed 'vmemmap_backing' structures are reused later when
122 * new requests come in without allocating fresh memory. This pointer also
123 * tracks the allocated 'vmemmap_backing' structures as we allocate one
124 * full page memory at a time when we dont have any.
125 */
Mark Nelson91eea672010-04-21 16:21:03 +0000126struct vmemmap_backing *vmemmap_list;
Li Zhongbd8cb032014-06-11 16:23:36 +0800127static struct vmemmap_backing *next;
Anshuman Khandual39e46752017-04-06 19:44:50 +0530128
129/*
130 * The same pointer 'next' tracks individual chunks inside the allocated
131 * full page during the boot time and again tracks the freeed nodes during
132 * runtime. It is racy but it does not happen as they are separated by the
133 * boot process. Will create problem if some how we have memory hotplug
134 * operation during boot !!
135 */
Li Zhongbd8cb032014-06-11 16:23:36 +0800136static int num_left;
137static int num_freed;
Mark Nelson91eea672010-04-21 16:21:03 +0000138
139static __meminit struct vmemmap_backing * vmemmap_list_alloc(int node)
140{
Li Zhongbd8cb032014-06-11 16:23:36 +0800141 struct vmemmap_backing *vmem_back;
142 /* get from freed entries first */
143 if (num_freed) {
144 num_freed--;
145 vmem_back = next;
146 next = next->list;
147
148 return vmem_back;
149 }
Mark Nelson91eea672010-04-21 16:21:03 +0000150
151 /* allocate a page when required and hand out chunks */
Li Zhongbd8cb032014-06-11 16:23:36 +0800152 if (!num_left) {
Mark Nelson91eea672010-04-21 16:21:03 +0000153 next = vmemmap_alloc_block(PAGE_SIZE, node);
154 if (unlikely(!next)) {
155 WARN_ON(1);
156 return NULL;
157 }
158 num_left = PAGE_SIZE / sizeof(struct vmemmap_backing);
159 }
160
161 num_left--;
162
163 return next++;
164}
165
166static __meminit void vmemmap_list_populate(unsigned long phys,
167 unsigned long start,
168 int node)
169{
170 struct vmemmap_backing *vmem_back;
171
172 vmem_back = vmemmap_list_alloc(node);
173 if (unlikely(!vmem_back)) {
174 WARN_ON(1);
175 return;
176 }
177
178 vmem_back->phys = phys;
179 vmem_back->virt_addr = start;
180 vmem_back->list = vmemmap_list;
181
182 vmemmap_list = vmem_back;
183}
184
Li Zhong71b0bfe2014-06-11 16:23:38 +0800185int __meminit vmemmap_populate(unsigned long start, unsigned long end, int node)
186{
187 unsigned long page_size = 1 << mmu_psize_defs[mmu_vmemmap_psize].shift;
188
189 /* Align to the page size of the linear mapping. */
190 start = _ALIGN_DOWN(start, page_size);
191
192 pr_debug("vmemmap_populate %lx..%lx, node %d\n", start, end, node);
193
194 for (; start < end; start += page_size) {
195 void *p;
David Gibson1dace6c2016-02-09 13:32:42 +1000196 int rc;
Li Zhong71b0bfe2014-06-11 16:23:38 +0800197
198 if (vmemmap_populated(start, page_size))
199 continue;
200
201 p = vmemmap_alloc_block(page_size, node);
202 if (!p)
203 return -ENOMEM;
204
205 vmemmap_list_populate(__pa(p), start, node);
206
207 pr_debug(" * %016lx..%016lx allocated at %p\n",
208 start, start + page_size, p);
209
David Gibson1dace6c2016-02-09 13:32:42 +1000210 rc = vmemmap_create_mapping(start, page_size, __pa(p));
211 if (rc < 0) {
212 pr_warning(
213 "vmemmap_populate: Unable to create vmemmap mapping: %d\n",
214 rc);
215 return -EFAULT;
216 }
Li Zhong71b0bfe2014-06-11 16:23:38 +0800217 }
218
219 return 0;
220}
221
222#ifdef CONFIG_MEMORY_HOTPLUG
Li Zhongbd8cb032014-06-11 16:23:36 +0800223static unsigned long vmemmap_list_free(unsigned long start)
224{
225 struct vmemmap_backing *vmem_back, *vmem_back_prev;
226
227 vmem_back_prev = vmem_back = vmemmap_list;
228
229 /* look for it with prev pointer recorded */
230 for (; vmem_back; vmem_back = vmem_back->list) {
231 if (vmem_back->virt_addr == start)
232 break;
233 vmem_back_prev = vmem_back;
234 }
235
236 if (unlikely(!vmem_back)) {
237 WARN_ON(1);
238 return 0;
239 }
240
241 /* remove it from vmemmap_list */
242 if (vmem_back == vmemmap_list) /* remove head */
243 vmemmap_list = vmem_back->list;
244 else
245 vmem_back_prev->list = vmem_back->list;
246
247 /* next point to this freed entry */
248 vmem_back->list = next;
249 next = vmem_back;
250 num_freed++;
251
252 return vmem_back->phys;
253}
254
Li Zhong71b0bfe2014-06-11 16:23:38 +0800255void __ref vmemmap_free(unsigned long start, unsigned long end)
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700256{
Benjamin Herrenschmidtcec08e72008-04-30 15:41:48 +1000257 unsigned long page_size = 1 << mmu_psize_defs[mmu_vmemmap_psize].shift;
Oliver O'Hallorand7d9b612017-06-28 11:32:32 +1000258 unsigned long page_order = get_order(page_size);
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700259
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700260 start = _ALIGN_DOWN(start, page_size);
261
Li Zhong71b0bfe2014-06-11 16:23:38 +0800262 pr_debug("vmemmap_free %lx...%lx\n", start, end);
Benjamin Herrenschmidt32a74942009-07-23 23:15:58 +0000263
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700264 for (; start < end; start += page_size) {
Oliver O'Hallorand7d9b612017-06-28 11:32:32 +1000265 unsigned long nr_pages, addr;
266 struct page *page;
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700267
Li Zhong71b0bfe2014-06-11 16:23:38 +0800268 /*
269 * the section has already be marked as invalid, so
270 * vmemmap_populated() true means some other sections still
271 * in this page, so skip it.
272 */
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700273 if (vmemmap_populated(start, page_size))
274 continue;
275
Li Zhong71b0bfe2014-06-11 16:23:38 +0800276 addr = vmemmap_list_free(start);
Oliver O'Hallorand7d9b612017-06-28 11:32:32 +1000277 if (!addr)
278 continue;
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700279
Oliver O'Hallorand7d9b612017-06-28 11:32:32 +1000280 page = pfn_to_page(addr >> PAGE_SHIFT);
281 nr_pages = 1 << page_order;
Mark Nelson91eea672010-04-21 16:21:03 +0000282
Oliver O'Hallorand7d9b612017-06-28 11:32:32 +1000283 if (PageReserved(page)) {
284 /* allocated from bootmem */
285 if (page_size < PAGE_SIZE) {
286 /*
287 * this shouldn't happen, but if it is
288 * the case, leave the memory there
289 */
290 WARN_ON_ONCE(1);
291 } else {
292 while (nr_pages--)
293 free_reserved_page(page++);
294 }
295 } else {
296 free_pages((unsigned long)(__va(addr)), page_order);
Li Zhong71b0bfe2014-06-11 16:23:38 +0800297 }
Oliver O'Hallorand7d9b612017-06-28 11:32:32 +1000298
299 vmemmap_remove_mapping(start, page_size);
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700300 }
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700301}
Li Zhong71b0bfe2014-06-11 16:23:38 +0800302#endif
Nathan Fontenotf7e33342013-09-27 10:18:09 -0500303void register_page_bootmem_memmap(unsigned long section_nr,
304 struct page *start_page, unsigned long size)
305{
306}
Benjamin Herrenschmidtcd3db0c2010-07-06 15:39:02 -0700307
Alexey Kardashevskiy8e0861fa2013-08-28 18:37:42 +1000308/*
309 * We do not have access to the sparsemem vmemmap, so we fallback to
310 * walking the list of sparsemem blocks which we already maintain for
311 * the sake of crashdump. In the long run, we might want to maintain
312 * a tree if performance of that linear walk becomes a problem.
313 *
314 * realmode_pfn_to_page functions can fail due to:
315 * 1) As real sparsemem blocks do not lay in RAM continously (they
316 * are in virtual address space which is not available in the real mode),
317 * the requested page struct can be split between blocks so get_page/put_page
318 * may fail.
319 * 2) When huge pages are used, the get_page/put_page API will fail
320 * in real mode as the linked addresses in the page struct are virtual
321 * too.
322 */
323struct page *realmode_pfn_to_page(unsigned long pfn)
324{
325 struct vmemmap_backing *vmem_back;
326 struct page *page;
327 unsigned long page_size = 1 << mmu_psize_defs[mmu_vmemmap_psize].shift;
328 unsigned long pg_va = (unsigned long) pfn_to_page(pfn);
329
330 for (vmem_back = vmemmap_list; vmem_back; vmem_back = vmem_back->list) {
331 if (pg_va < vmem_back->virt_addr)
332 continue;
333
Li Zhongbd8cb032014-06-11 16:23:36 +0800334 /* After vmemmap_list entry free is possible, need check all */
335 if ((pg_va + sizeof(struct page)) <=
336 (vmem_back->virt_addr + page_size)) {
337 page = (struct page *) (vmem_back->phys + pg_va -
Alexey Kardashevskiy8e0861fa2013-08-28 18:37:42 +1000338 vmem_back->virt_addr);
Li Zhongbd8cb032014-06-11 16:23:36 +0800339 return page;
340 }
Alexey Kardashevskiy8e0861fa2013-08-28 18:37:42 +1000341 }
342
Li Zhongbd8cb032014-06-11 16:23:36 +0800343 /* Probably that page struct is split between real pages */
Alexey Kardashevskiy8e0861fa2013-08-28 18:37:42 +1000344 return NULL;
345}
346EXPORT_SYMBOL_GPL(realmode_pfn_to_page);
347
348#elif defined(CONFIG_FLATMEM)
349
350struct page *realmode_pfn_to_page(unsigned long pfn)
351{
352 struct page *page = pfn_to_page(pfn);
353 return page;
354}
355EXPORT_SYMBOL_GPL(realmode_pfn_to_page);
356
357#endif /* CONFIG_SPARSEMEM_VMEMMAP/CONFIG_FLATMEM */
Michael Ellerman1a01dc82016-07-26 20:09:30 +1000358
359#ifdef CONFIG_PPC_STD_MMU_64
Michael Ellermanc610ec62016-07-26 21:29:30 +1000360static bool disable_radix;
361static int __init parse_disable_radix(char *p)
362{
363 disable_radix = true;
364 return 0;
365}
366early_param("disable_radix", parse_disable_radix);
367
Paul Mackerras18569c12017-01-30 21:21:34 +1100368/*
Paul Mackerrascc3d2942017-01-30 21:21:36 +1100369 * If we're running under a hypervisor, we need to check the contents of
370 * /chosen/ibm,architecture-vec-5 to see if the hypervisor is willing to do
371 * radix. If not, we clear the radix feature bit so we fall back to hash.
Paul Mackerras18569c12017-01-30 21:21:34 +1100372 */
373static void early_check_vec5(void)
374{
375 unsigned long root, chosen;
376 int size;
377 const u8 *vec5;
Suraj Jitindar Singh014d02c2017-02-28 17:03:48 +1100378 u8 mmu_supported;
Paul Mackerras18569c12017-01-30 21:21:34 +1100379
380 root = of_get_flat_dt_root();
381 chosen = of_get_flat_dt_subnode_by_name(root, "chosen");
Suraj Jitindar Singh014d02c2017-02-28 17:03:48 +1100382 if (chosen == -FDT_ERR_NOTFOUND) {
Paul Mackerrascc3d2942017-01-30 21:21:36 +1100383 cur_cpu_spec->mmu_features &= ~MMU_FTR_TYPE_RADIX;
Suraj Jitindar Singh014d02c2017-02-28 17:03:48 +1100384 return;
385 }
386 vec5 = of_get_flat_dt_prop(chosen, "ibm,architecture-vec-5", &size);
387 if (!vec5) {
388 cur_cpu_spec->mmu_features &= ~MMU_FTR_TYPE_RADIX;
389 return;
390 }
391 if (size <= OV5_INDX(OV5_MMU_SUPPORT)) {
392 cur_cpu_spec->mmu_features &= ~MMU_FTR_TYPE_RADIX;
393 return;
394 }
395
396 /* Check for supported configuration */
397 mmu_supported = vec5[OV5_INDX(OV5_MMU_SUPPORT)] &
398 OV5_FEAT(OV5_MMU_SUPPORT);
399 if (mmu_supported == OV5_FEAT(OV5_MMU_RADIX)) {
400 /* Hypervisor only supports radix - check enabled && GTSE */
401 if (!early_radix_enabled()) {
402 pr_warn("WARNING: Ignoring cmdline option disable_radix\n");
403 }
404 if (!(vec5[OV5_INDX(OV5_RADIX_GTSE)] &
405 OV5_FEAT(OV5_RADIX_GTSE))) {
406 pr_warn("WARNING: Hypervisor doesn't support RADIX with GTSE\n");
407 }
408 /* Do radix anyway - the hypervisor said we had to */
409 cur_cpu_spec->mmu_features |= MMU_FTR_TYPE_RADIX;
410 } else if (mmu_supported == OV5_FEAT(OV5_MMU_HASH)) {
411 /* Hypervisor only supports hash - disable radix */
412 cur_cpu_spec->mmu_features &= ~MMU_FTR_TYPE_RADIX;
413 }
Paul Mackerras18569c12017-01-30 21:21:34 +1100414}
415
Michael Ellerman1a01dc82016-07-26 20:09:30 +1000416void __init mmu_early_init_devtree(void)
417{
Michael Ellermanc610ec62016-07-26 21:29:30 +1000418 /* Disable radix mode based on kernel command line. */
Paul Mackerrasfc36a902017-03-21 12:38:02 +1100419 if (disable_radix)
Aneesh Kumar K.V5a25b6f2016-07-27 13:19:01 +1000420 cur_cpu_spec->mmu_features &= ~MMU_FTR_TYPE_RADIX;
Michael Ellermanbacf9cf2016-07-26 21:31:59 +1000421
Paul Mackerras18569c12017-01-30 21:21:34 +1100422 /*
423 * Check /chosen/ibm,architecture-vec-5 if running as a guest.
424 * When running bare-metal, we can use radix if we like
425 * even though the ibm,architecture-vec-5 property created by
426 * skiboot doesn't have the necessary bits set.
427 */
Suraj Jitindar Singh014d02c2017-02-28 17:03:48 +1100428 if (!(mfmsr() & MSR_HV))
Paul Mackerras18569c12017-01-30 21:21:34 +1100429 early_check_vec5();
430
Aneesh Kumar K.Vb8f1b4f2016-07-23 14:42:35 +0530431 if (early_radix_enabled())
Michael Ellerman2537b092016-07-26 21:55:27 +1000432 radix__early_init_devtree();
433 else
Michael Ellermanbacf9cf2016-07-26 21:31:59 +1000434 hash__early_init_devtree();
Michael Ellerman1a01dc82016-07-26 20:09:30 +1000435}
436#endif /* CONFIG_PPC_STD_MMU_64 */