blob: fbc9448cca63ecd825c24a947503a753657f2d27 [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>
54#include <asm/uaccess.h>
55#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
Paul Mackerras14cf11a2005-09-26 16:04:21 +100069#if PGTABLE_RANGE > USER_VSID_RANGE
70#warning Limited user VSID range means pagetable space is wasted
71#endif
72
73#if (TASK_SIZE_USER64 < PGTABLE_RANGE) && (TASK_SIZE_USER64 < USER_VSID_RANGE)
74#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
Alexey Dobriyan51cc5062008-07-25 19:45:34 -070083static void pgd_ctor(void *addr)
Paul Mackerras14cf11a2005-09-26 16:04:21 +100084{
Alexey Dobriyan51cc5062008-07-25 19:45:34 -070085 memset(addr, 0, PGD_TABLE_SIZE);
86}
87
88static void pmd_ctor(void *addr)
89{
90 memset(addr, 0, PMD_TABLE_SIZE);
Paul Mackerras14cf11a2005-09-26 16:04:21 +100091}
92
David Gibsona0668cd2009-10-28 16:27:18 +000093struct kmem_cache *pgtable_cache[MAX_PGTABLE_INDEX_SIZE];
Paul Mackerras14cf11a2005-09-26 16:04:21 +100094
David Gibsona0668cd2009-10-28 16:27:18 +000095/*
96 * Create a kmem_cache() for pagetables. This is not used for PTE
97 * pages - they're linked to struct page, come from the normal free
98 * pages pool and have a different entry size (see real_pte_t) to
99 * everything else. Caches created by this function are used for all
100 * the higher level pagetables, and for hugepage pagetables.
101 */
102void pgtable_cache_add(unsigned shift, void (*ctor)(void *))
103{
104 char *name;
105 unsigned long table_size = sizeof(void *) << shift;
106 unsigned long align = table_size;
107
108 /* When batching pgtable pointers for RCU freeing, we store
109 * the index size in the low bits. Table alignment must be
David Gibsona4fe3ce2009-10-26 19:24:31 +0000110 * big enough to fit it.
111 *
112 * Likewise, hugeapge pagetable pointers contain a (different)
113 * shift value in the low bits. All tables must be aligned so
114 * as to leave enough 0 bits in the address to contain it. */
115 unsigned long minalign = max(MAX_PGTABLE_INDEX_SIZE + 1,
116 HUGEPD_SHIFT_MASK + 1);
David Gibsona0668cd2009-10-28 16:27:18 +0000117 struct kmem_cache *new;
118
119 /* It would be nice if this was a BUILD_BUG_ON(), but at the
120 * moment, gcc doesn't seem to recognize is_power_of_2 as a
121 * constant expression, so so much for that. */
122 BUG_ON(!is_power_of_2(minalign));
123 BUG_ON((shift < 1) || (shift > MAX_PGTABLE_INDEX_SIZE));
124
125 if (PGT_CACHE(shift))
126 return; /* Already have a cache of this size */
127
128 align = max_t(unsigned long, align, minalign);
129 name = kasprintf(GFP_KERNEL, "pgtable-2^%d", shift);
130 new = kmem_cache_create(name, table_size, align, 0, ctor);
Yanjiang Jine77553c2015-02-27 13:30:34 +0800131 kfree(name);
Aneesh Kumar K.Vcf9427b2013-04-28 09:37:29 +0000132 pgtable_cache[shift - 1] = new;
David Gibsona0668cd2009-10-28 16:27:18 +0000133 pr_debug("Allocated pgtable cache for order %d\n", shift);
134}
135
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000136
137void pgtable_cache_init(void)
138{
David Gibsona0668cd2009-10-28 16:27:18 +0000139 pgtable_cache_add(PGD_INDEX_SIZE, pgd_ctor);
Aneesh Kumar K.Vf940f522013-06-20 14:30:14 +0530140 pgtable_cache_add(PMD_CACHE_INDEX, pmd_ctor);
141 if (!PGT_CACHE(PGD_INDEX_SIZE) || !PGT_CACHE(PMD_CACHE_INDEX))
David Gibsona0668cd2009-10-28 16:27:18 +0000142 panic("Couldn't allocate pgtable caches");
David Gibsona0668cd2009-10-28 16:27:18 +0000143 /* In all current configs, when the PUD index exists it's the
144 * same size as either the pgd or pmd index. Verify that the
145 * initialization above has also created a PUD cache. This
146 * will need re-examiniation if we add new possibilities for
147 * the pagetable layout. */
148 BUG_ON(PUD_INDEX_SIZE && !PGT_CACHE(PUD_INDEX_SIZE));
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000149}
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700150
151#ifdef CONFIG_SPARSEMEM_VMEMMAP
152/*
153 * Given an address within the vmemmap, determine the pfn of the page that
154 * represents the start of the section it is within. Note that we have to
155 * do this by hand as the proffered address may not be correctly aligned.
156 * Subtraction of non-aligned pointers produces undefined results.
157 */
Michael Ellerman09de9ff2008-05-08 14:27:07 +1000158static unsigned long __meminit vmemmap_section_start(unsigned long page)
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700159{
160 unsigned long offset = page - ((unsigned long)(vmemmap));
161
162 /* Return the pfn of the start of the section. */
163 return (offset / sizeof(struct page)) & PAGE_SECTION_MASK;
164}
165
166/*
167 * Check if this vmemmap page is already initialised. If any section
168 * which overlaps this vmemmap page is initialised then this page is
169 * initialised already.
170 */
Michael Ellerman09de9ff2008-05-08 14:27:07 +1000171static int __meminit vmemmap_populated(unsigned long start, int page_size)
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700172{
173 unsigned long end = start + page_size;
Li Zhong16a05bf2014-06-11 16:23:39 +0800174 start = (unsigned long)(pfn_to_page(vmemmap_section_start(start)));
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700175
176 for (; start < end; start += (PAGES_PER_SECTION * sizeof(struct page)))
Li Zhong16a05bf2014-06-11 16:23:39 +0800177 if (pfn_valid(page_to_pfn((struct page *)start)))
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700178 return 1;
179
180 return 0;
181}
182
Benjamin Herrenschmidt32a74942009-07-23 23:15:58 +0000183/* On hash-based CPUs, the vmemmap is bolted in the hash table.
184 *
185 * On Book3E CPUs, the vmemmap is currently mapped in the top half of
186 * the vmalloc space using normal page tables, though the size of
187 * pages encoded in the PTEs can be different
188 */
189
190#ifdef CONFIG_PPC_BOOK3E
David Gibson1dace6c2016-02-09 13:32:42 +1000191static int __meminit vmemmap_create_mapping(unsigned long start,
192 unsigned long page_size,
193 unsigned long phys)
Benjamin Herrenschmidt32a74942009-07-23 23:15:58 +0000194{
195 /* Create a PTE encoding without page size */
196 unsigned long i, flags = _PAGE_PRESENT | _PAGE_ACCESSED |
197 _PAGE_KERNEL_RW;
198
199 /* PTEs only contain page size encodings up to 32M */
200 BUG_ON(mmu_psize_defs[mmu_vmemmap_psize].enc > 0xf);
201
202 /* Encode the size in the PTE */
203 flags |= mmu_psize_defs[mmu_vmemmap_psize].enc << 8;
204
205 /* For each PTE for that area, map things. Note that we don't
206 * increment phys because all PTEs are of the large size and
207 * thus must have the low bits clear
208 */
209 for (i = 0; i < page_size; i += PAGE_SIZE)
210 BUG_ON(map_kernel_page(start + i, phys, flags));
David Gibson1dace6c2016-02-09 13:32:42 +1000211
212 return 0;
Benjamin Herrenschmidt32a74942009-07-23 23:15:58 +0000213}
Li Zhonged5694a2014-06-11 16:23:37 +0800214
215#ifdef CONFIG_MEMORY_HOTPLUG
216static void vmemmap_remove_mapping(unsigned long start,
217 unsigned long page_size)
218{
219}
220#endif
Benjamin Herrenschmidt32a74942009-07-23 23:15:58 +0000221#else /* CONFIG_PPC_BOOK3E */
David Gibson1dace6c2016-02-09 13:32:42 +1000222static int __meminit vmemmap_create_mapping(unsigned long start,
223 unsigned long page_size,
224 unsigned long phys)
Benjamin Herrenschmidt32a74942009-07-23 23:15:58 +0000225{
David Gibson1dace6c2016-02-09 13:32:42 +1000226 int rc = htab_bolt_mapping(start, start + page_size, phys,
227 pgprot_val(PAGE_KERNEL),
228 mmu_vmemmap_psize, mmu_kernel_ssize);
229 if (rc < 0) {
230 int rc2 = htab_remove_mapping(start, start + page_size,
231 mmu_vmemmap_psize,
232 mmu_kernel_ssize);
233 BUG_ON(rc2 && (rc2 != -ENOENT));
234 }
235 return rc;
Benjamin Herrenschmidt32a74942009-07-23 23:15:58 +0000236}
Li Zhonged5694a2014-06-11 16:23:37 +0800237
238#ifdef CONFIG_MEMORY_HOTPLUG
Li Zhonged5694a2014-06-11 16:23:37 +0800239static void vmemmap_remove_mapping(unsigned long start,
240 unsigned long page_size)
241{
David Gibson27828f92016-02-09 13:32:41 +1000242 int rc = htab_remove_mapping(start, start + page_size,
243 mmu_vmemmap_psize,
244 mmu_kernel_ssize);
245 BUG_ON((rc < 0) && (rc != -ENOENT));
246 WARN_ON(rc == -ENOENT);
Li Zhonged5694a2014-06-11 16:23:37 +0800247}
248#endif
249
Benjamin Herrenschmidt32a74942009-07-23 23:15:58 +0000250#endif /* CONFIG_PPC_BOOK3E */
251
Mark Nelson91eea672010-04-21 16:21:03 +0000252struct vmemmap_backing *vmemmap_list;
Li Zhongbd8cb032014-06-11 16:23:36 +0800253static struct vmemmap_backing *next;
254static int num_left;
255static int num_freed;
Mark Nelson91eea672010-04-21 16:21:03 +0000256
257static __meminit struct vmemmap_backing * vmemmap_list_alloc(int node)
258{
Li Zhongbd8cb032014-06-11 16:23:36 +0800259 struct vmemmap_backing *vmem_back;
260 /* get from freed entries first */
261 if (num_freed) {
262 num_freed--;
263 vmem_back = next;
264 next = next->list;
265
266 return vmem_back;
267 }
Mark Nelson91eea672010-04-21 16:21:03 +0000268
269 /* allocate a page when required and hand out chunks */
Li Zhongbd8cb032014-06-11 16:23:36 +0800270 if (!num_left) {
Mark Nelson91eea672010-04-21 16:21:03 +0000271 next = vmemmap_alloc_block(PAGE_SIZE, node);
272 if (unlikely(!next)) {
273 WARN_ON(1);
274 return NULL;
275 }
276 num_left = PAGE_SIZE / sizeof(struct vmemmap_backing);
277 }
278
279 num_left--;
280
281 return next++;
282}
283
284static __meminit void vmemmap_list_populate(unsigned long phys,
285 unsigned long start,
286 int node)
287{
288 struct vmemmap_backing *vmem_back;
289
290 vmem_back = vmemmap_list_alloc(node);
291 if (unlikely(!vmem_back)) {
292 WARN_ON(1);
293 return;
294 }
295
296 vmem_back->phys = phys;
297 vmem_back->virt_addr = start;
298 vmem_back->list = vmemmap_list;
299
300 vmemmap_list = vmem_back;
301}
302
Li Zhong71b0bfe2014-06-11 16:23:38 +0800303int __meminit vmemmap_populate(unsigned long start, unsigned long end, int node)
304{
305 unsigned long page_size = 1 << mmu_psize_defs[mmu_vmemmap_psize].shift;
306
307 /* Align to the page size of the linear mapping. */
308 start = _ALIGN_DOWN(start, page_size);
309
310 pr_debug("vmemmap_populate %lx..%lx, node %d\n", start, end, node);
311
312 for (; start < end; start += page_size) {
313 void *p;
David Gibson1dace6c2016-02-09 13:32:42 +1000314 int rc;
Li Zhong71b0bfe2014-06-11 16:23:38 +0800315
316 if (vmemmap_populated(start, page_size))
317 continue;
318
319 p = vmemmap_alloc_block(page_size, node);
320 if (!p)
321 return -ENOMEM;
322
323 vmemmap_list_populate(__pa(p), start, node);
324
325 pr_debug(" * %016lx..%016lx allocated at %p\n",
326 start, start + page_size, p);
327
David Gibson1dace6c2016-02-09 13:32:42 +1000328 rc = vmemmap_create_mapping(start, page_size, __pa(p));
329 if (rc < 0) {
330 pr_warning(
331 "vmemmap_populate: Unable to create vmemmap mapping: %d\n",
332 rc);
333 return -EFAULT;
334 }
Li Zhong71b0bfe2014-06-11 16:23:38 +0800335 }
336
337 return 0;
338}
339
340#ifdef CONFIG_MEMORY_HOTPLUG
Li Zhongbd8cb032014-06-11 16:23:36 +0800341static unsigned long vmemmap_list_free(unsigned long start)
342{
343 struct vmemmap_backing *vmem_back, *vmem_back_prev;
344
345 vmem_back_prev = vmem_back = vmemmap_list;
346
347 /* look for it with prev pointer recorded */
348 for (; vmem_back; vmem_back = vmem_back->list) {
349 if (vmem_back->virt_addr == start)
350 break;
351 vmem_back_prev = vmem_back;
352 }
353
354 if (unlikely(!vmem_back)) {
355 WARN_ON(1);
356 return 0;
357 }
358
359 /* remove it from vmemmap_list */
360 if (vmem_back == vmemmap_list) /* remove head */
361 vmemmap_list = vmem_back->list;
362 else
363 vmem_back_prev->list = vmem_back->list;
364
365 /* next point to this freed entry */
366 vmem_back->list = next;
367 next = vmem_back;
368 num_freed++;
369
370 return vmem_back->phys;
371}
372
Li Zhong71b0bfe2014-06-11 16:23:38 +0800373void __ref vmemmap_free(unsigned long start, unsigned long end)
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700374{
Benjamin Herrenschmidtcec08e72008-04-30 15:41:48 +1000375 unsigned long page_size = 1 << mmu_psize_defs[mmu_vmemmap_psize].shift;
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700376
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700377 start = _ALIGN_DOWN(start, page_size);
378
Li Zhong71b0bfe2014-06-11 16:23:38 +0800379 pr_debug("vmemmap_free %lx...%lx\n", start, end);
Benjamin Herrenschmidt32a74942009-07-23 23:15:58 +0000380
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700381 for (; start < end; start += page_size) {
Li Zhong71b0bfe2014-06-11 16:23:38 +0800382 unsigned long addr;
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700383
Li Zhong71b0bfe2014-06-11 16:23:38 +0800384 /*
385 * the section has already be marked as invalid, so
386 * vmemmap_populated() true means some other sections still
387 * in this page, so skip it.
388 */
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700389 if (vmemmap_populated(start, page_size))
390 continue;
391
Li Zhong71b0bfe2014-06-11 16:23:38 +0800392 addr = vmemmap_list_free(start);
393 if (addr) {
394 struct page *page = pfn_to_page(addr >> PAGE_SHIFT);
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700395
Li Zhong71b0bfe2014-06-11 16:23:38 +0800396 if (PageReserved(page)) {
397 /* allocated from bootmem */
398 if (page_size < PAGE_SIZE) {
399 /*
400 * this shouldn't happen, but if it is
401 * the case, leave the memory there
402 */
403 WARN_ON_ONCE(1);
404 } else {
405 unsigned int nr_pages =
406 1 << get_order(page_size);
407 while (nr_pages--)
408 free_reserved_page(page++);
409 }
410 } else
411 free_pages((unsigned long)(__va(addr)),
412 get_order(page_size));
Mark Nelson91eea672010-04-21 16:21:03 +0000413
Li Zhong71b0bfe2014-06-11 16:23:38 +0800414 vmemmap_remove_mapping(start, page_size);
415 }
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700416 }
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700417}
Li Zhong71b0bfe2014-06-11 16:23:38 +0800418#endif
Nathan Fontenotf7e33342013-09-27 10:18:09 -0500419void register_page_bootmem_memmap(unsigned long section_nr,
420 struct page *start_page, unsigned long size)
421{
422}
Benjamin Herrenschmidtcd3db0c2010-07-06 15:39:02 -0700423
Alexey Kardashevskiy8e0861f2013-08-28 18:37:42 +1000424/*
425 * We do not have access to the sparsemem vmemmap, so we fallback to
426 * walking the list of sparsemem blocks which we already maintain for
427 * the sake of crashdump. In the long run, we might want to maintain
428 * a tree if performance of that linear walk becomes a problem.
429 *
430 * realmode_pfn_to_page functions can fail due to:
431 * 1) As real sparsemem blocks do not lay in RAM continously (they
432 * are in virtual address space which is not available in the real mode),
433 * the requested page struct can be split between blocks so get_page/put_page
434 * may fail.
435 * 2) When huge pages are used, the get_page/put_page API will fail
436 * in real mode as the linked addresses in the page struct are virtual
437 * too.
438 */
439struct page *realmode_pfn_to_page(unsigned long pfn)
440{
441 struct vmemmap_backing *vmem_back;
442 struct page *page;
443 unsigned long page_size = 1 << mmu_psize_defs[mmu_vmemmap_psize].shift;
444 unsigned long pg_va = (unsigned long) pfn_to_page(pfn);
445
446 for (vmem_back = vmemmap_list; vmem_back; vmem_back = vmem_back->list) {
447 if (pg_va < vmem_back->virt_addr)
448 continue;
449
Li Zhongbd8cb032014-06-11 16:23:36 +0800450 /* After vmemmap_list entry free is possible, need check all */
451 if ((pg_va + sizeof(struct page)) <=
452 (vmem_back->virt_addr + page_size)) {
453 page = (struct page *) (vmem_back->phys + pg_va -
Alexey Kardashevskiy8e0861f2013-08-28 18:37:42 +1000454 vmem_back->virt_addr);
Li Zhongbd8cb032014-06-11 16:23:36 +0800455 return page;
456 }
Alexey Kardashevskiy8e0861f2013-08-28 18:37:42 +1000457 }
458
Li Zhongbd8cb032014-06-11 16:23:36 +0800459 /* Probably that page struct is split between real pages */
Alexey Kardashevskiy8e0861f2013-08-28 18:37:42 +1000460 return NULL;
461}
462EXPORT_SYMBOL_GPL(realmode_pfn_to_page);
463
464#elif defined(CONFIG_FLATMEM)
465
466struct page *realmode_pfn_to_page(unsigned long pfn)
467{
468 struct page *page = pfn_to_page(pfn);
469 return page;
470}
471EXPORT_SYMBOL_GPL(realmode_pfn_to_page);
472
473#endif /* CONFIG_SPARSEMEM_VMEMMAP/CONFIG_FLATMEM */