Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * PowerPC64 port by Mike Corrigan and Dave Engebretsen |
| 4 | * {mikejc|engebret}@us.ibm.com |
| 5 | * |
| 6 | * Copyright (c) 2000 Mike Corrigan <mikejc@us.ibm.com> |
| 7 | * |
| 8 | * SMP scalability work: |
| 9 | * Copyright (C) 2001 Anton Blanchard <anton@au.ibm.com>, IBM |
| 10 | * |
| 11 | * Module name: htab.c |
| 12 | * |
| 13 | * Description: |
| 14 | * PowerPC Hashed Page Table functions |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | */ |
| 16 | |
| 17 | #undef DEBUG |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 18 | #undef DEBUG_LOW |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | |
Aneesh Kumar K.V | 7f14266 | 2017-10-16 12:31:40 +0530 | [diff] [blame] | 20 | #define pr_fmt(fmt) "hash-mmu: " fmt |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/spinlock.h> |
| 22 | #include <linux/errno.h> |
Ingo Molnar | 589ee62 | 2017-02-04 00:16:44 +0100 | [diff] [blame] | 23 | #include <linux/sched/mm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/proc_fs.h> |
| 25 | #include <linux/stat.h> |
| 26 | #include <linux/sysctl.h> |
Paul Gortmaker | 66b15db | 2011-05-27 10:46:24 -0400 | [diff] [blame] | 27 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/ctype.h> |
| 29 | #include <linux/cache.h> |
| 30 | #include <linux/init.h> |
| 31 | #include <linux/signal.h> |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 32 | #include <linux/memblock.h> |
Li Zhong | ba12eed | 2013-05-13 16:16:41 +0000 | [diff] [blame] | 33 | #include <linux/context_tracking.h> |
Benjamin Herrenschmidt | 5556ecf | 2016-07-05 15:03:53 +1000 | [diff] [blame] | 34 | #include <linux/libfdt.h> |
Ram Pai | 92e3da3 | 2018-01-18 17:50:24 -0800 | [diff] [blame] | 35 | #include <linux/pkeys.h> |
Christophe Leroy | 45d0ba5 | 2019-04-26 05:59:47 +0000 | [diff] [blame] | 36 | #include <linux/hugetlb.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
Michael Ellerman | 7644d58 | 2017-02-10 12:04:56 +1100 | [diff] [blame] | 38 | #include <asm/debugfs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #include <asm/processor.h> |
| 40 | #include <asm/pgtable.h> |
| 41 | #include <asm/mmu.h> |
| 42 | #include <asm/mmu_context.h> |
| 43 | #include <asm/page.h> |
| 44 | #include <asm/types.h> |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 45 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | #include <asm/machdep.h> |
David S. Miller | d9b2b2a | 2008-02-13 16:56:49 -0800 | [diff] [blame] | 47 | #include <asm/prom.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | #include <asm/io.h> |
| 49 | #include <asm/eeh.h> |
| 50 | #include <asm/tlb.h> |
| 51 | #include <asm/cacheflush.h> |
| 52 | #include <asm/cputable.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | #include <asm/sections.h> |
Ian Munsie | be3ebfe | 2014-10-08 19:54:52 +1100 | [diff] [blame] | 54 | #include <asm/copro.h> |
will schmidt | aa39be0 | 2007-10-30 06:24:19 +1100 | [diff] [blame] | 55 | #include <asm/udbg.h> |
Anton Blanchard | b68a70c | 2011-04-04 23:56:18 +0000 | [diff] [blame] | 56 | #include <asm/code-patching.h> |
Mahesh Salgaonkar | 3ccc00a | 2012-02-20 02:15:03 +0000 | [diff] [blame] | 57 | #include <asm/fadump.h> |
Stephen Rothwell | f533927 | 2012-03-15 18:18:00 +0000 | [diff] [blame] | 58 | #include <asm/firmware.h> |
Michael Neuling | bc2a940 | 2013-02-13 16:21:40 +0000 | [diff] [blame] | 59 | #include <asm/tm.h> |
Aneesh Kumar K.V | cfcb3d8 | 2015-04-14 13:05:57 +0530 | [diff] [blame] | 60 | #include <asm/trace.h> |
Benjamin Herrenschmidt | 166dd7d | 2016-07-05 15:03:51 +1000 | [diff] [blame] | 61 | #include <asm/ps3.h> |
Aneesh Kumar K.V | 94171b1 | 2017-07-27 11:54:53 +0530 | [diff] [blame] | 62 | #include <asm/pte-walk.h> |
Simon Guo | eacbb21 | 2018-05-23 15:01:46 +0800 | [diff] [blame] | 63 | #include <asm/asm-prototypes.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | |
Christophe Leroy | e4dccf9 | 2019-04-26 16:36:39 +0000 | [diff] [blame] | 65 | #include <mm/mmu_decl.h> |
| 66 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | #ifdef DEBUG |
| 68 | #define DBG(fmt...) udbg_printf(fmt) |
| 69 | #else |
| 70 | #define DBG(fmt...) |
| 71 | #endif |
| 72 | |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 73 | #ifdef DEBUG_LOW |
| 74 | #define DBG_LOW(fmt...) udbg_printf(fmt) |
| 75 | #else |
| 76 | #define DBG_LOW(fmt...) |
| 77 | #endif |
| 78 | |
| 79 | #define KB (1024) |
| 80 | #define MB (1024*KB) |
Jon Tollefson | 658013e | 2008-07-23 21:27:54 -0700 | [diff] [blame] | 81 | #define GB (1024L*MB) |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 82 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | /* |
| 84 | * Note: pte --> Linux PTE |
| 85 | * HPTE --> PowerPC Hashed Page Table Entry |
| 86 | * |
| 87 | * Execution context: |
| 88 | * htab_initialize is called with the MMU off (of course), but |
| 89 | * the kernel has been copied down to zero so it can directly |
| 90 | * reference global data. At this point it is very difficult |
| 91 | * to print debug info. |
| 92 | * |
| 93 | */ |
| 94 | |
Paul Mackerras | 799d604 | 2005-11-10 13:37:51 +1100 | [diff] [blame] | 95 | static unsigned long _SDR1; |
| 96 | struct mmu_psize_def mmu_psize_defs[MMU_PAGE_COUNT]; |
Anton Blanchard | e1802b0 | 2014-08-20 08:00:02 +1000 | [diff] [blame] | 97 | EXPORT_SYMBOL_GPL(mmu_psize_defs); |
Paul Mackerras | 799d604 | 2005-11-10 13:37:51 +1100 | [diff] [blame] | 98 | |
Paul Mackerras | 0eeede0 | 2016-09-02 17:20:43 +1000 | [diff] [blame] | 99 | u8 hpte_page_sizes[1 << LP_BITS]; |
| 100 | EXPORT_SYMBOL_GPL(hpte_page_sizes); |
| 101 | |
David Gibson | 8e561e7 | 2007-06-13 14:52:56 +1000 | [diff] [blame] | 102 | struct hash_pte *htab_address; |
Michael Ellerman | 337a7128 | 2006-02-21 17:22:55 +1100 | [diff] [blame] | 103 | unsigned long htab_size_bytes; |
David Gibson | 96e2844 | 2005-07-13 01:11:42 -0700 | [diff] [blame] | 104 | unsigned long htab_hash_mask; |
Alexander Graf | 4ab79aa | 2009-10-30 05:47:19 +0000 | [diff] [blame] | 105 | EXPORT_SYMBOL_GPL(htab_hash_mask); |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 106 | int mmu_linear_psize = MMU_PAGE_4K; |
Ian Munsie | 8ca7a82 | 2014-10-08 19:54:54 +1100 | [diff] [blame] | 107 | EXPORT_SYMBOL_GPL(mmu_linear_psize); |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 108 | int mmu_virtual_psize = MMU_PAGE_4K; |
Paul Mackerras | bf72aeb | 2006-06-15 10:45:18 +1000 | [diff] [blame] | 109 | int mmu_vmalloc_psize = MMU_PAGE_4K; |
Benjamin Herrenschmidt | cec08e7 | 2008-04-30 15:41:48 +1000 | [diff] [blame] | 110 | #ifdef CONFIG_SPARSEMEM_VMEMMAP |
| 111 | int mmu_vmemmap_psize = MMU_PAGE_4K; |
| 112 | #endif |
Paul Mackerras | bf72aeb | 2006-06-15 10:45:18 +1000 | [diff] [blame] | 113 | int mmu_io_psize = MMU_PAGE_4K; |
Paul Mackerras | 1189be6 | 2007-10-11 20:37:10 +1000 | [diff] [blame] | 114 | int mmu_kernel_ssize = MMU_SEGSIZE_256M; |
Ian Munsie | 8ca7a82 | 2014-10-08 19:54:54 +1100 | [diff] [blame] | 115 | EXPORT_SYMBOL_GPL(mmu_kernel_ssize); |
Paul Mackerras | 1189be6 | 2007-10-11 20:37:10 +1000 | [diff] [blame] | 116 | int mmu_highuser_ssize = MMU_SEGSIZE_256M; |
Michael Neuling | 584f8b7 | 2007-12-06 17:24:48 +1100 | [diff] [blame] | 117 | u16 mmu_slb_size = 64; |
Alexander Graf | 4ab79aa | 2009-10-30 05:47:19 +0000 | [diff] [blame] | 118 | EXPORT_SYMBOL_GPL(mmu_slb_size); |
Paul Mackerras | bf72aeb | 2006-06-15 10:45:18 +1000 | [diff] [blame] | 119 | #ifdef CONFIG_PPC_64K_PAGES |
| 120 | int mmu_ci_restrictions; |
| 121 | #endif |
Benjamin Herrenschmidt | 370a908 | 2007-04-12 15:30:23 +1000 | [diff] [blame] | 122 | #ifdef CONFIG_DEBUG_PAGEALLOC |
| 123 | static u8 *linear_map_hash_slots; |
| 124 | static unsigned long linear_map_hash_count; |
Michael Ellerman | ed16669 | 2007-04-18 11:50:09 +1000 | [diff] [blame] | 125 | static DEFINE_SPINLOCK(linear_map_hash_lock); |
Benjamin Herrenschmidt | 370a908 | 2007-04-12 15:30:23 +1000 | [diff] [blame] | 126 | #endif /* CONFIG_DEBUG_PAGEALLOC */ |
Benjamin Herrenschmidt | 7025776 | 2016-07-05 15:03:58 +1000 | [diff] [blame] | 127 | struct mmu_hash_ops mmu_hash_ops; |
| 128 | EXPORT_SYMBOL(mmu_hash_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | |
Christophe Leroy | 47d9994 | 2019-03-29 10:00:00 +0000 | [diff] [blame] | 130 | /* |
| 131 | * These are definitions of page sizes arrays to be used when none |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 132 | * is provided by the firmware. |
| 133 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | |
Nicholas Piggin | 471d7ff | 2018-02-21 05:08:29 +1000 | [diff] [blame] | 135 | /* |
| 136 | * Fallback (4k pages only) |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 137 | */ |
Nicholas Piggin | 471d7ff | 2018-02-21 05:08:29 +1000 | [diff] [blame] | 138 | static struct mmu_psize_def mmu_psize_defaults[] = { |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 139 | [MMU_PAGE_4K] = { |
| 140 | .shift = 12, |
| 141 | .sllp = 0, |
Aneesh Kumar K.V | b1022fb | 2013-04-28 09:37:35 +0000 | [diff] [blame] | 142 | .penc = {[MMU_PAGE_4K] = 0, [1 ... MMU_PAGE_COUNT - 1] = -1}, |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 143 | .avpnm = 0, |
| 144 | .tlbiel = 0, |
| 145 | }, |
| 146 | }; |
| 147 | |
Christophe Leroy | 47d9994 | 2019-03-29 10:00:00 +0000 | [diff] [blame] | 148 | /* |
| 149 | * POWER4, GPUL, POWER5 |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 150 | * |
| 151 | * Support for 16Mb large pages |
| 152 | */ |
Michael Ellerman | 09de9ff | 2008-05-08 14:27:07 +1000 | [diff] [blame] | 153 | static struct mmu_psize_def mmu_psize_defaults_gp[] = { |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 154 | [MMU_PAGE_4K] = { |
| 155 | .shift = 12, |
| 156 | .sllp = 0, |
Aneesh Kumar K.V | b1022fb | 2013-04-28 09:37:35 +0000 | [diff] [blame] | 157 | .penc = {[MMU_PAGE_4K] = 0, [1 ... MMU_PAGE_COUNT - 1] = -1}, |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 158 | .avpnm = 0, |
| 159 | .tlbiel = 1, |
| 160 | }, |
| 161 | [MMU_PAGE_16M] = { |
| 162 | .shift = 24, |
| 163 | .sllp = SLB_VSID_L, |
Aneesh Kumar K.V | b1022fb | 2013-04-28 09:37:35 +0000 | [diff] [blame] | 164 | .penc = {[0 ... MMU_PAGE_16M - 1] = -1, [MMU_PAGE_16M] = 0, |
| 165 | [MMU_PAGE_16M + 1 ... MMU_PAGE_COUNT - 1] = -1 }, |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 166 | .avpnm = 0x1UL, |
| 167 | .tlbiel = 0, |
| 168 | }, |
| 169 | }; |
| 170 | |
Aneesh Kumar K.V | dc47c0c1 | 2016-05-31 11:56:30 +0530 | [diff] [blame] | 171 | /* |
| 172 | * 'R' and 'C' update notes: |
| 173 | * - Under pHyp or KVM, the updatepp path will not set C, thus it *will* |
| 174 | * create writeable HPTEs without C set, because the hcall H_PROTECT |
| 175 | * that we use in that case will not update C |
| 176 | * - The above is however not a problem, because we also don't do that |
| 177 | * fancy "no flush" variant of eviction and we use H_REMOVE which will |
| 178 | * do the right thing and thus we don't have the race I described earlier |
| 179 | * |
| 180 | * - Under bare metal, we do have the race, so we need R and C set |
| 181 | * - We make sure R is always set and never lost |
| 182 | * - C is _PAGE_DIRTY, and *should* always be set for a writeable mapping |
| 183 | */ |
Aneesh Kumar K.V | c6a3c49 | 2015-12-01 09:06:50 +0530 | [diff] [blame] | 184 | unsigned long htab_convert_pte_flags(unsigned long pteflags) |
Benjamin Herrenschmidt | bc033b6 | 2008-08-05 16:19:56 +1000 | [diff] [blame] | 185 | { |
Aneesh Kumar K.V | c6a3c49 | 2015-12-01 09:06:50 +0530 | [diff] [blame] | 186 | unsigned long rflags = 0; |
Benjamin Herrenschmidt | bc033b6 | 2008-08-05 16:19:56 +1000 | [diff] [blame] | 187 | |
| 188 | /* _PAGE_EXEC -> NOEXEC */ |
| 189 | if ((pteflags & _PAGE_EXEC) == 0) |
| 190 | rflags |= HPTE_R_N; |
Aneesh Kumar K.V | c6a3c49 | 2015-12-01 09:06:50 +0530 | [diff] [blame] | 191 | /* |
Aneesh Kumar K.V | e58e87a | 2016-04-29 23:25:36 +1000 | [diff] [blame] | 192 | * PPP bits: |
Paul Mackerras | 1ec3f93 | 2016-02-22 13:41:12 +1100 | [diff] [blame] | 193 | * Linux uses slb key 0 for kernel and 1 for user. |
Aneesh Kumar K.V | e58e87a | 2016-04-29 23:25:36 +1000 | [diff] [blame] | 194 | * kernel RW areas are mapped with PPP=0b000 |
| 195 | * User area is mapped with PPP=0b010 for read/write |
| 196 | * or PPP=0b011 for read-only (including writeable but clean pages). |
Benjamin Herrenschmidt | bc033b6 | 2008-08-05 16:19:56 +1000 | [diff] [blame] | 197 | */ |
Aneesh Kumar K.V | e58e87a | 2016-04-29 23:25:36 +1000 | [diff] [blame] | 198 | if (pteflags & _PAGE_PRIVILEGED) { |
| 199 | /* |
| 200 | * Kernel read only mapped with ppp bits 0b110 |
| 201 | */ |
Aneesh Kumar K.V | 984d7a1 | 2016-11-24 15:09:54 +0530 | [diff] [blame] | 202 | if (!(pteflags & _PAGE_WRITE)) { |
| 203 | if (mmu_has_feature(MMU_FTR_KERNEL_RO)) |
| 204 | rflags |= (HPTE_R_PP0 | 0x2); |
| 205 | else |
| 206 | rflags |= 0x3; |
| 207 | } |
Aneesh Kumar K.V | e58e87a | 2016-04-29 23:25:36 +1000 | [diff] [blame] | 208 | } else { |
Aneesh Kumar K.V | c7d5484 | 2016-04-29 23:25:30 +1000 | [diff] [blame] | 209 | if (pteflags & _PAGE_RWX) |
| 210 | rflags |= 0x2; |
| 211 | if (!((pteflags & _PAGE_WRITE) && (pteflags & _PAGE_DIRTY))) |
Aneesh Kumar K.V | c6a3c49 | 2015-12-01 09:06:50 +0530 | [diff] [blame] | 212 | rflags |= 0x1; |
| 213 | } |
Aneesh Kumar K.V | c8c06f5 | 2013-11-18 14:58:10 +0530 | [diff] [blame] | 214 | /* |
Aneesh Kumar K.V | dc47c0c1 | 2016-05-31 11:56:30 +0530 | [diff] [blame] | 215 | * We can't allow hardware to update hpte bits. Hence always |
| 216 | * set 'R' bit and set 'C' if it is a write fault |
Aneesh Kumar K.V | c8c06f5 | 2013-11-18 14:58:10 +0530 | [diff] [blame] | 217 | */ |
Aneesh Kumar K.V | e568006 | 2016-06-17 11:32:00 +0530 | [diff] [blame] | 218 | rflags |= HPTE_R_R; |
Aneesh Kumar K.V | dc47c0c1 | 2016-05-31 11:56:30 +0530 | [diff] [blame] | 219 | |
| 220 | if (pteflags & _PAGE_DIRTY) |
| 221 | rflags |= HPTE_R_C; |
Aneesh Kumar K.V | 40e8550 | 2015-12-01 09:06:51 +0530 | [diff] [blame] | 222 | /* |
| 223 | * Add in WIG bits |
| 224 | */ |
Aneesh Kumar K.V | 30bda41 | 2016-04-29 23:25:38 +1000 | [diff] [blame] | 225 | |
| 226 | if ((pteflags & _PAGE_CACHE_CTL) == _PAGE_TOLERANT) |
Aneesh Kumar K.V | 40e8550 | 2015-12-01 09:06:51 +0530 | [diff] [blame] | 227 | rflags |= HPTE_R_I; |
Aneesh Kumar K.V | e568006 | 2016-06-17 11:32:00 +0530 | [diff] [blame] | 228 | else if ((pteflags & _PAGE_CACHE_CTL) == _PAGE_NON_IDEMPOTENT) |
Aneesh Kumar K.V | 30bda41 | 2016-04-29 23:25:38 +1000 | [diff] [blame] | 229 | rflags |= (HPTE_R_I | HPTE_R_G); |
Aneesh Kumar K.V | e568006 | 2016-06-17 11:32:00 +0530 | [diff] [blame] | 230 | else if ((pteflags & _PAGE_CACHE_CTL) == _PAGE_SAO) |
| 231 | rflags |= (HPTE_R_W | HPTE_R_I | HPTE_R_M); |
| 232 | else |
| 233 | /* |
| 234 | * Add memory coherence if cache inhibited is not set |
| 235 | */ |
| 236 | rflags |= HPTE_R_M; |
Aneesh Kumar K.V | 40e8550 | 2015-12-01 09:06:51 +0530 | [diff] [blame] | 237 | |
Ram Pai | a6590ca | 2018-01-18 17:50:36 -0800 | [diff] [blame] | 238 | rflags |= pte_to_hpte_pkey_bits(pteflags); |
Aneesh Kumar K.V | 40e8550 | 2015-12-01 09:06:51 +0530 | [diff] [blame] | 239 | return rflags; |
Benjamin Herrenschmidt | bc033b6 | 2008-08-05 16:19:56 +1000 | [diff] [blame] | 240 | } |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 241 | |
| 242 | int htab_bolt_mapping(unsigned long vstart, unsigned long vend, |
Benjamin Herrenschmidt | bc033b6 | 2008-08-05 16:19:56 +1000 | [diff] [blame] | 243 | unsigned long pstart, unsigned long prot, |
Paul Mackerras | 1189be6 | 2007-10-11 20:37:10 +1000 | [diff] [blame] | 244 | int psize, int ssize) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | { |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 246 | unsigned long vaddr, paddr; |
| 247 | unsigned int step, shift; |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 248 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 250 | shift = mmu_psize_defs[psize].shift; |
| 251 | step = 1 << shift; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | |
Benjamin Herrenschmidt | bc033b6 | 2008-08-05 16:19:56 +1000 | [diff] [blame] | 253 | prot = htab_convert_pte_flags(prot); |
| 254 | |
| 255 | DBG("htab_bolt_mapping(%lx..%lx -> %lx (%lx,%d,%d)\n", |
| 256 | vstart, vend, pstart, prot, psize, ssize); |
| 257 | |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 258 | for (vaddr = vstart, paddr = pstart; vaddr < vend; |
| 259 | vaddr += step, paddr += step) { |
Benjamin Herrenschmidt | 370a908 | 2007-04-12 15:30:23 +1000 | [diff] [blame] | 260 | unsigned long hash, hpteg; |
Paul Mackerras | 1189be6 | 2007-10-11 20:37:10 +1000 | [diff] [blame] | 261 | unsigned long vsid = get_kernel_vsid(vaddr, ssize); |
Aneesh Kumar K.V | 5524a27 | 2012-09-10 02:52:50 +0000 | [diff] [blame] | 262 | unsigned long vpn = hpt_vpn(vaddr, vsid, ssize); |
Paul Mackerras | 9e88ba4 | 2008-08-30 11:26:27 +1000 | [diff] [blame] | 263 | unsigned long tprot = prot; |
| 264 | |
Aneesh Kumar K.V | c60ac56 | 2013-03-13 03:34:54 +0000 | [diff] [blame] | 265 | /* |
| 266 | * If we hit a bad address return error. |
| 267 | */ |
| 268 | if (!vsid) |
| 269 | return -1; |
Paul Mackerras | 9e88ba4 | 2008-08-30 11:26:27 +1000 | [diff] [blame] | 270 | /* Make kernel text executable */ |
Paul Mackerras | 549e815 | 2008-08-30 11:43:47 +1000 | [diff] [blame] | 271 | if (overlaps_kernel_text(vaddr, vaddr + step)) |
Paul Mackerras | 9e88ba4 | 2008-08-30 11:26:27 +1000 | [diff] [blame] | 272 | tprot &= ~HPTE_R_N; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | |
Alexander Graf | b18db0b8 | 2014-04-29 12:17:26 +0200 | [diff] [blame] | 274 | /* Make kvm guest trampolines executable */ |
| 275 | if (overlaps_kvm_tmp(vaddr, vaddr + step)) |
| 276 | tprot &= ~HPTE_R_N; |
| 277 | |
Mahesh Salgaonkar | 429d2e8 | 2014-01-31 00:31:04 +0530 | [diff] [blame] | 278 | /* |
| 279 | * If relocatable, check if it overlaps interrupt vectors that |
| 280 | * are copied down to real 0. For relocatable kernel |
| 281 | * (e.g. kdump case) we copy interrupt vectors down to real |
| 282 | * address 0. Mark that region as executable. This is |
| 283 | * because on p8 system with relocation on exception feature |
| 284 | * enabled, exceptions are raised with MMU (IR=DR=1) ON. Hence |
| 285 | * in order to execute the interrupt handlers in virtual |
| 286 | * mode the vector region need to be marked as executable. |
| 287 | */ |
| 288 | if ((PHYSICAL_START > MEMORY_START) && |
| 289 | overlaps_interrupt_vector_text(vaddr, vaddr + step)) |
| 290 | tprot &= ~HPTE_R_N; |
| 291 | |
Aneesh Kumar K.V | 5524a27 | 2012-09-10 02:52:50 +0000 | [diff] [blame] | 292 | hash = hpt_hash(vpn, shift, ssize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | hpteg = ((hash & htab_hash_mask) * HPTES_PER_GROUP); |
| 294 | |
Benjamin Herrenschmidt | 7025776 | 2016-07-05 15:03:58 +1000 | [diff] [blame] | 295 | BUG_ON(!mmu_hash_ops.hpte_insert); |
| 296 | ret = mmu_hash_ops.hpte_insert(hpteg, vpn, paddr, tprot, |
| 297 | HPTE_V_BOLTED, psize, psize, |
| 298 | ssize); |
Michael Ellerman | c30a4df | 2006-06-23 18:16:39 +1000 | [diff] [blame] | 299 | |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 300 | if (ret < 0) |
| 301 | break; |
Joonsoo Kim | e7df0d8 | 2016-03-17 14:17:59 -0700 | [diff] [blame] | 302 | |
Benjamin Herrenschmidt | 370a908 | 2007-04-12 15:30:23 +1000 | [diff] [blame] | 303 | #ifdef CONFIG_DEBUG_PAGEALLOC |
Joonsoo Kim | e7df0d8 | 2016-03-17 14:17:59 -0700 | [diff] [blame] | 304 | if (debug_pagealloc_enabled() && |
| 305 | (paddr >> PAGE_SHIFT) < linear_map_hash_count) |
Benjamin Herrenschmidt | 370a908 | 2007-04-12 15:30:23 +1000 | [diff] [blame] | 306 | linear_map_hash_slots[paddr >> PAGE_SHIFT] = ret | 0x80; |
| 307 | #endif /* CONFIG_DEBUG_PAGEALLOC */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | } |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 309 | return ret < 0 ? ret : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | } |
| 311 | |
Li Zhong | ed5694a | 2014-06-11 16:23:37 +0800 | [diff] [blame] | 312 | int htab_remove_mapping(unsigned long vstart, unsigned long vend, |
Badari Pulavarty | f8c8803 | 2008-01-29 09:19:24 +1100 | [diff] [blame] | 313 | int psize, int ssize) |
| 314 | { |
| 315 | unsigned long vaddr; |
| 316 | unsigned int step, shift; |
David Gibson | 27828f9 | 2016-02-09 13:32:41 +1000 | [diff] [blame] | 317 | int rc; |
| 318 | int ret = 0; |
Badari Pulavarty | f8c8803 | 2008-01-29 09:19:24 +1100 | [diff] [blame] | 319 | |
| 320 | shift = mmu_psize_defs[psize].shift; |
| 321 | step = 1 << shift; |
| 322 | |
Benjamin Herrenschmidt | 7025776 | 2016-07-05 15:03:58 +1000 | [diff] [blame] | 323 | if (!mmu_hash_ops.hpte_removebolted) |
David Gibson | abd0a0e | 2016-02-09 13:32:40 +1000 | [diff] [blame] | 324 | return -ENODEV; |
Badari Pulavarty | f8c8803 | 2008-01-29 09:19:24 +1100 | [diff] [blame] | 325 | |
David Gibson | 27828f9 | 2016-02-09 13:32:41 +1000 | [diff] [blame] | 326 | for (vaddr = vstart; vaddr < vend; vaddr += step) { |
Benjamin Herrenschmidt | 7025776 | 2016-07-05 15:03:58 +1000 | [diff] [blame] | 327 | rc = mmu_hash_ops.hpte_removebolted(vaddr, psize, ssize); |
David Gibson | 27828f9 | 2016-02-09 13:32:41 +1000 | [diff] [blame] | 328 | if (rc == -ENOENT) { |
| 329 | ret = -ENOENT; |
| 330 | continue; |
| 331 | } |
| 332 | if (rc < 0) |
| 333 | return rc; |
Badari Pulavarty | f8c8803 | 2008-01-29 09:19:24 +1100 | [diff] [blame] | 334 | } |
| 335 | |
David Gibson | 27828f9 | 2016-02-09 13:32:41 +1000 | [diff] [blame] | 336 | return ret; |
Badari Pulavarty | f8c8803 | 2008-01-29 09:19:24 +1100 | [diff] [blame] | 337 | } |
| 338 | |
Oliver O'Halloran | faf7882 | 2016-07-05 11:43:21 +1000 | [diff] [blame] | 339 | static bool disable_1tb_segments = false; |
| 340 | |
| 341 | static int __init parse_disable_1tb_segments(char *p) |
| 342 | { |
| 343 | disable_1tb_segments = true; |
| 344 | return 0; |
| 345 | } |
| 346 | early_param("disable_1tb_segments", parse_disable_1tb_segments); |
| 347 | |
Paul Mackerras | 1189be6 | 2007-10-11 20:37:10 +1000 | [diff] [blame] | 348 | static int __init htab_dt_scan_seg_sizes(unsigned long node, |
| 349 | const char *uname, int depth, |
| 350 | void *data) |
| 351 | { |
Rob Herring | 9d0c4df | 2014-04-01 23:49:03 -0500 | [diff] [blame] | 352 | const char *type = of_get_flat_dt_prop(node, "device_type", NULL); |
| 353 | const __be32 *prop; |
| 354 | int size = 0; |
Paul Mackerras | 1189be6 | 2007-10-11 20:37:10 +1000 | [diff] [blame] | 355 | |
| 356 | /* We are scanning "cpu" nodes only */ |
| 357 | if (type == NULL || strcmp(type, "cpu") != 0) |
| 358 | return 0; |
| 359 | |
Anton Blanchard | 12f04f2 | 2013-09-23 12:04:36 +1000 | [diff] [blame] | 360 | prop = of_get_flat_dt_prop(node, "ibm,processor-segment-sizes", &size); |
Paul Mackerras | 1189be6 | 2007-10-11 20:37:10 +1000 | [diff] [blame] | 361 | if (prop == NULL) |
| 362 | return 0; |
| 363 | for (; size >= 4; size -= 4, ++prop) { |
Anton Blanchard | 12f04f2 | 2013-09-23 12:04:36 +1000 | [diff] [blame] | 364 | if (be32_to_cpu(prop[0]) == 40) { |
Paul Mackerras | 1189be6 | 2007-10-11 20:37:10 +1000 | [diff] [blame] | 365 | DBG("1T segment support detected\n"); |
Oliver O'Halloran | faf7882 | 2016-07-05 11:43:21 +1000 | [diff] [blame] | 366 | |
| 367 | if (disable_1tb_segments) { |
| 368 | DBG("1T segments disabled by command line\n"); |
| 369 | break; |
| 370 | } |
| 371 | |
Matt Evans | 44ae3ab | 2011-04-06 19:48:50 +0000 | [diff] [blame] | 372 | cur_cpu_spec->mmu_features |= MMU_FTR_1T_SEGMENT; |
Olof Johansson | f553400 | 2007-10-12 16:44:55 +1000 | [diff] [blame] | 373 | return 1; |
Paul Mackerras | 1189be6 | 2007-10-11 20:37:10 +1000 | [diff] [blame] | 374 | } |
Paul Mackerras | 1189be6 | 2007-10-11 20:37:10 +1000 | [diff] [blame] | 375 | } |
Matt Evans | 44ae3ab | 2011-04-06 19:48:50 +0000 | [diff] [blame] | 376 | cur_cpu_spec->mmu_features &= ~MMU_FTR_NO_SLBIE_B; |
Paul Mackerras | 1189be6 | 2007-10-11 20:37:10 +1000 | [diff] [blame] | 377 | return 0; |
| 378 | } |
| 379 | |
Aneesh Kumar K.V | b1022fb | 2013-04-28 09:37:35 +0000 | [diff] [blame] | 380 | static int __init get_idx_from_shift(unsigned int shift) |
| 381 | { |
| 382 | int idx = -1; |
| 383 | |
| 384 | switch (shift) { |
| 385 | case 0xc: |
| 386 | idx = MMU_PAGE_4K; |
| 387 | break; |
| 388 | case 0x10: |
| 389 | idx = MMU_PAGE_64K; |
| 390 | break; |
| 391 | case 0x14: |
| 392 | idx = MMU_PAGE_1M; |
| 393 | break; |
| 394 | case 0x18: |
| 395 | idx = MMU_PAGE_16M; |
| 396 | break; |
| 397 | case 0x22: |
| 398 | idx = MMU_PAGE_16G; |
| 399 | break; |
| 400 | } |
| 401 | return idx; |
| 402 | } |
| 403 | |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 404 | static int __init htab_dt_scan_page_sizes(unsigned long node, |
| 405 | const char *uname, int depth, |
| 406 | void *data) |
| 407 | { |
Rob Herring | 9d0c4df | 2014-04-01 23:49:03 -0500 | [diff] [blame] | 408 | const char *type = of_get_flat_dt_prop(node, "device_type", NULL); |
| 409 | const __be32 *prop; |
| 410 | int size = 0; |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 411 | |
| 412 | /* We are scanning "cpu" nodes only */ |
| 413 | if (type == NULL || strcmp(type, "cpu") != 0) |
| 414 | return 0; |
| 415 | |
Anton Blanchard | 12f04f2 | 2013-09-23 12:04:36 +1000 | [diff] [blame] | 416 | prop = of_get_flat_dt_prop(node, "ibm,segment-page-sizes", &size); |
Michael Ellerman | 9e34992 | 2014-08-07 17:26:33 +1000 | [diff] [blame] | 417 | if (!prop) |
| 418 | return 0; |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 419 | |
Michael Ellerman | 9e34992 | 2014-08-07 17:26:33 +1000 | [diff] [blame] | 420 | pr_info("Page sizes from device-tree:\n"); |
| 421 | size /= 4; |
| 422 | cur_cpu_spec->mmu_features &= ~(MMU_FTR_16M_PAGE); |
| 423 | while(size > 0) { |
| 424 | unsigned int base_shift = be32_to_cpu(prop[0]); |
| 425 | unsigned int slbenc = be32_to_cpu(prop[1]); |
| 426 | unsigned int lpnum = be32_to_cpu(prop[2]); |
| 427 | struct mmu_psize_def *def; |
| 428 | int idx, base_idx; |
Aneesh Kumar K.V | b1022fb | 2013-04-28 09:37:35 +0000 | [diff] [blame] | 429 | |
Michael Ellerman | 9e34992 | 2014-08-07 17:26:33 +1000 | [diff] [blame] | 430 | size -= 3; prop += 3; |
| 431 | base_idx = get_idx_from_shift(base_shift); |
| 432 | if (base_idx < 0) { |
| 433 | /* skip the pte encoding also */ |
| 434 | prop += lpnum * 2; size -= lpnum * 2; |
| 435 | continue; |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 436 | } |
Michael Ellerman | 9e34992 | 2014-08-07 17:26:33 +1000 | [diff] [blame] | 437 | def = &mmu_psize_defs[base_idx]; |
| 438 | if (base_idx == MMU_PAGE_16M) |
| 439 | cur_cpu_spec->mmu_features |= MMU_FTR_16M_PAGE; |
| 440 | |
| 441 | def->shift = base_shift; |
| 442 | if (base_shift <= 23) |
| 443 | def->avpnm = 0; |
| 444 | else |
| 445 | def->avpnm = (1 << (base_shift - 23)) - 1; |
| 446 | def->sllp = slbenc; |
| 447 | /* |
| 448 | * We don't know for sure what's up with tlbiel, so |
| 449 | * for now we only set it for 4K and 64K pages |
| 450 | */ |
| 451 | if (base_idx == MMU_PAGE_4K || base_idx == MMU_PAGE_64K) |
| 452 | def->tlbiel = 1; |
| 453 | else |
| 454 | def->tlbiel = 0; |
| 455 | |
| 456 | while (size > 0 && lpnum) { |
| 457 | unsigned int shift = be32_to_cpu(prop[0]); |
| 458 | int penc = be32_to_cpu(prop[1]); |
| 459 | |
| 460 | prop += 2; size -= 2; |
| 461 | lpnum--; |
| 462 | |
| 463 | idx = get_idx_from_shift(shift); |
| 464 | if (idx < 0) |
| 465 | continue; |
| 466 | |
| 467 | if (penc == -1) |
| 468 | pr_err("Invalid penc for base_shift=%d " |
| 469 | "shift=%d\n", base_shift, shift); |
| 470 | |
| 471 | def->penc[idx] = penc; |
| 472 | pr_info("base_shift=%d: shift=%d, sllp=0x%04lx," |
| 473 | " avpnm=0x%08lx, tlbiel=%d, penc=%d\n", |
| 474 | base_shift, shift, def->sllp, |
| 475 | def->avpnm, def->tlbiel, def->penc[idx]); |
| 476 | } |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 477 | } |
Michael Ellerman | 9e34992 | 2014-08-07 17:26:33 +1000 | [diff] [blame] | 478 | |
| 479 | return 1; |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 480 | } |
| 481 | |
Tony Breeds | e16a9c0 | 2008-07-31 13:51:42 +1000 | [diff] [blame] | 482 | #ifdef CONFIG_HUGETLB_PAGE |
Christophe Leroy | 47d9994 | 2019-03-29 10:00:00 +0000 | [diff] [blame] | 483 | /* |
| 484 | * Scan for 16G memory blocks that have been set aside for huge pages |
Jon Tollefson | 658013e | 2008-07-23 21:27:54 -0700 | [diff] [blame] | 485 | * and reserve those blocks for 16G huge pages. |
| 486 | */ |
| 487 | static int __init htab_dt_scan_hugepage_blocks(unsigned long node, |
| 488 | const char *uname, int depth, |
| 489 | void *data) { |
Rob Herring | 9d0c4df | 2014-04-01 23:49:03 -0500 | [diff] [blame] | 490 | const char *type = of_get_flat_dt_prop(node, "device_type", NULL); |
| 491 | const __be64 *addr_prop; |
| 492 | const __be32 *page_count_prop; |
Jon Tollefson | 658013e | 2008-07-23 21:27:54 -0700 | [diff] [blame] | 493 | unsigned int expected_pages; |
| 494 | long unsigned int phys_addr; |
| 495 | long unsigned int block_size; |
| 496 | |
| 497 | /* We are scanning "memory" nodes only */ |
| 498 | if (type == NULL || strcmp(type, "memory") != 0) |
| 499 | return 0; |
| 500 | |
Christophe Leroy | 47d9994 | 2019-03-29 10:00:00 +0000 | [diff] [blame] | 501 | /* |
| 502 | * This property is the log base 2 of the number of virtual pages that |
| 503 | * will represent this memory block. |
| 504 | */ |
Jon Tollefson | 658013e | 2008-07-23 21:27:54 -0700 | [diff] [blame] | 505 | page_count_prop = of_get_flat_dt_prop(node, "ibm,expected#pages", NULL); |
| 506 | if (page_count_prop == NULL) |
| 507 | return 0; |
Anton Blanchard | 12f04f2 | 2013-09-23 12:04:36 +1000 | [diff] [blame] | 508 | expected_pages = (1 << be32_to_cpu(page_count_prop[0])); |
Jon Tollefson | 658013e | 2008-07-23 21:27:54 -0700 | [diff] [blame] | 509 | addr_prop = of_get_flat_dt_prop(node, "reg", NULL); |
| 510 | if (addr_prop == NULL) |
| 511 | return 0; |
Anton Blanchard | 12f04f2 | 2013-09-23 12:04:36 +1000 | [diff] [blame] | 512 | phys_addr = be64_to_cpu(addr_prop[0]); |
| 513 | block_size = be64_to_cpu(addr_prop[1]); |
Jon Tollefson | 658013e | 2008-07-23 21:27:54 -0700 | [diff] [blame] | 514 | if (block_size != (16 * GB)) |
| 515 | return 0; |
| 516 | printk(KERN_INFO "Huge page(16GB) memory: " |
| 517 | "addr = 0x%lX size = 0x%lX pages = %d\n", |
| 518 | phys_addr, block_size, expected_pages); |
Rui Teng | 23493c1 | 2017-01-12 17:09:06 +0800 | [diff] [blame] | 519 | if (phys_addr + block_size * expected_pages <= memblock_end_of_DRAM()) { |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 520 | memblock_reserve(phys_addr, block_size * expected_pages); |
Aneesh Kumar K.V | 79cc38d | 2017-07-28 10:31:26 +0530 | [diff] [blame] | 521 | pseries_add_gpage(phys_addr, block_size, expected_pages); |
Jon Tollefson | 4792adb | 2008-10-21 15:27:36 +0000 | [diff] [blame] | 522 | } |
Jon Tollefson | 658013e | 2008-07-23 21:27:54 -0700 | [diff] [blame] | 523 | return 0; |
| 524 | } |
Tony Breeds | e16a9c0 | 2008-07-31 13:51:42 +1000 | [diff] [blame] | 525 | #endif /* CONFIG_HUGETLB_PAGE */ |
Jon Tollefson | 658013e | 2008-07-23 21:27:54 -0700 | [diff] [blame] | 526 | |
Aneesh Kumar K.V | b1022fb | 2013-04-28 09:37:35 +0000 | [diff] [blame] | 527 | static void mmu_psize_set_default_penc(void) |
| 528 | { |
| 529 | int bpsize, apsize; |
| 530 | for (bpsize = 0; bpsize < MMU_PAGE_COUNT; bpsize++) |
| 531 | for (apsize = 0; apsize < MMU_PAGE_COUNT; apsize++) |
| 532 | mmu_psize_defs[bpsize].penc[apsize] = -1; |
| 533 | } |
| 534 | |
Alexander Graf | 9048e64 | 2014-04-01 15:46:05 +0200 | [diff] [blame] | 535 | #ifdef CONFIG_PPC_64K_PAGES |
| 536 | |
| 537 | static bool might_have_hea(void) |
| 538 | { |
| 539 | /* |
| 540 | * The HEA ethernet adapter requires awareness of the |
| 541 | * GX bus. Without that awareness we can easily assume |
| 542 | * we will never see an HEA ethernet device. |
| 543 | */ |
| 544 | #ifdef CONFIG_IBMEBUS |
Benjamin Herrenschmidt | 2b4e3ad | 2016-07-05 15:03:56 +1000 | [diff] [blame] | 545 | return !cpu_has_feature(CPU_FTR_ARCH_207S) && |
Michael Ellerman | 08bf75b | 2016-10-11 21:15:04 +1100 | [diff] [blame] | 546 | firmware_has_feature(FW_FEATURE_SPLPAR); |
Alexander Graf | 9048e64 | 2014-04-01 15:46:05 +0200 | [diff] [blame] | 547 | #else |
| 548 | return false; |
| 549 | #endif |
| 550 | } |
| 551 | |
| 552 | #endif /* #ifdef CONFIG_PPC_64K_PAGES */ |
| 553 | |
Michael Ellerman | bacf9cf | 2016-07-26 21:31:59 +1000 | [diff] [blame] | 554 | static void __init htab_scan_page_sizes(void) |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 555 | { |
| 556 | int rc; |
| 557 | |
Aneesh Kumar K.V | b1022fb | 2013-04-28 09:37:35 +0000 | [diff] [blame] | 558 | /* se the invalid penc to -1 */ |
| 559 | mmu_psize_set_default_penc(); |
| 560 | |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 561 | /* Default to 4K pages only */ |
Nicholas Piggin | 471d7ff | 2018-02-21 05:08:29 +1000 | [diff] [blame] | 562 | memcpy(mmu_psize_defs, mmu_psize_defaults, |
| 563 | sizeof(mmu_psize_defaults)); |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 564 | |
| 565 | /* |
| 566 | * Try to find the available page sizes in the device-tree |
| 567 | */ |
| 568 | rc = of_scan_flat_dt(htab_dt_scan_page_sizes, NULL); |
Aneesh Kumar K.V | b8f1b4f | 2016-07-23 14:42:35 +0530 | [diff] [blame] | 569 | if (rc == 0 && early_mmu_has_feature(MMU_FTR_16M_PAGE)) { |
Michael Ellerman | bacf9cf | 2016-07-26 21:31:59 +1000 | [diff] [blame] | 570 | /* |
| 571 | * Nothing in the device-tree, but the CPU supports 16M pages, |
| 572 | * so let's fallback on a known size list for 16M capable CPUs. |
| 573 | */ |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 574 | memcpy(mmu_psize_defs, mmu_psize_defaults_gp, |
| 575 | sizeof(mmu_psize_defaults_gp)); |
Michael Ellerman | bacf9cf | 2016-07-26 21:31:59 +1000 | [diff] [blame] | 576 | } |
| 577 | |
| 578 | #ifdef CONFIG_HUGETLB_PAGE |
Hari Bathini | 8597538 | 2018-04-10 19:11:31 +0530 | [diff] [blame] | 579 | if (!hugetlb_disabled) { |
| 580 | /* Reserve 16G huge page memory sections for huge pages */ |
| 581 | of_scan_flat_dt(htab_dt_scan_hugepage_blocks, NULL); |
| 582 | } |
Michael Ellerman | bacf9cf | 2016-07-26 21:31:59 +1000 | [diff] [blame] | 583 | #endif /* CONFIG_HUGETLB_PAGE */ |
| 584 | } |
| 585 | |
Paul Mackerras | 0eeede0 | 2016-09-02 17:20:43 +1000 | [diff] [blame] | 586 | /* |
| 587 | * Fill in the hpte_page_sizes[] array. |
| 588 | * We go through the mmu_psize_defs[] array looking for all the |
| 589 | * supported base/actual page size combinations. Each combination |
| 590 | * has a unique pagesize encoding (penc) value in the low bits of |
| 591 | * the LP field of the HPTE. For actual page sizes less than 1MB, |
| 592 | * some of the upper LP bits are used for RPN bits, meaning that |
| 593 | * we need to fill in several entries in hpte_page_sizes[]. |
| 594 | * |
| 595 | * In diagrammatic form, with r = RPN bits and z = page size bits: |
| 596 | * PTE LP actual page size |
| 597 | * rrrr rrrz >=8KB |
| 598 | * rrrr rrzz >=16KB |
| 599 | * rrrr rzzz >=32KB |
| 600 | * rrrr zzzz >=64KB |
| 601 | * ... |
| 602 | * |
| 603 | * The zzzz bits are implementation-specific but are chosen so that |
| 604 | * no encoding for a larger page size uses the same value in its |
| 605 | * low-order N bits as the encoding for the 2^(12+N) byte page size |
| 606 | * (if it exists). |
| 607 | */ |
| 608 | static void init_hpte_page_sizes(void) |
| 609 | { |
| 610 | long int ap, bp; |
| 611 | long int shift, penc; |
| 612 | |
| 613 | for (bp = 0; bp < MMU_PAGE_COUNT; ++bp) { |
| 614 | if (!mmu_psize_defs[bp].shift) |
| 615 | continue; /* not a supported page size */ |
| 616 | for (ap = bp; ap < MMU_PAGE_COUNT; ++ap) { |
| 617 | penc = mmu_psize_defs[bp].penc[ap]; |
Aneesh Kumar K.V | 10527e8 | 2017-11-28 14:04:40 +0530 | [diff] [blame] | 618 | if (penc == -1 || !mmu_psize_defs[ap].shift) |
Paul Mackerras | 0eeede0 | 2016-09-02 17:20:43 +1000 | [diff] [blame] | 619 | continue; |
| 620 | shift = mmu_psize_defs[ap].shift - LP_SHIFT; |
| 621 | if (shift <= 0) |
| 622 | continue; /* should never happen */ |
| 623 | /* |
| 624 | * For page sizes less than 1MB, this loop |
| 625 | * replicates the entry for all possible values |
| 626 | * of the rrrr bits. |
| 627 | */ |
| 628 | while (penc < (1 << LP_BITS)) { |
| 629 | hpte_page_sizes[penc] = (ap << 4) | bp; |
| 630 | penc += 1 << shift; |
| 631 | } |
| 632 | } |
| 633 | } |
| 634 | } |
| 635 | |
Michael Ellerman | bacf9cf | 2016-07-26 21:31:59 +1000 | [diff] [blame] | 636 | static void __init htab_init_page_sizes(void) |
| 637 | { |
Paul Mackerras | 0eeede0 | 2016-09-02 17:20:43 +1000 | [diff] [blame] | 638 | init_hpte_page_sizes(); |
| 639 | |
Joonsoo Kim | e7df0d8 | 2016-03-17 14:17:59 -0700 | [diff] [blame] | 640 | if (!debug_pagealloc_enabled()) { |
| 641 | /* |
| 642 | * Pick a size for the linear mapping. Currently, we only |
| 643 | * support 16M, 1M and 4K which is the default |
| 644 | */ |
| 645 | if (mmu_psize_defs[MMU_PAGE_16M].shift) |
| 646 | mmu_linear_psize = MMU_PAGE_16M; |
| 647 | else if (mmu_psize_defs[MMU_PAGE_1M].shift) |
| 648 | mmu_linear_psize = MMU_PAGE_1M; |
| 649 | } |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 650 | |
Paul Mackerras | bf72aeb | 2006-06-15 10:45:18 +1000 | [diff] [blame] | 651 | #ifdef CONFIG_PPC_64K_PAGES |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 652 | /* |
| 653 | * Pick a size for the ordinary pages. Default is 4K, we support |
Paul Mackerras | bf72aeb | 2006-06-15 10:45:18 +1000 | [diff] [blame] | 654 | * 64K for user mappings and vmalloc if supported by the processor. |
| 655 | * We only use 64k for ioremap if the processor |
| 656 | * (and firmware) support cache-inhibited large pages. |
| 657 | * If not, we use 4k and set mmu_ci_restrictions so that |
| 658 | * hash_page knows to switch processes that use cache-inhibited |
| 659 | * mappings to 4k pages. |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 660 | */ |
Paul Mackerras | bf72aeb | 2006-06-15 10:45:18 +1000 | [diff] [blame] | 661 | if (mmu_psize_defs[MMU_PAGE_64K].shift) { |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 662 | mmu_virtual_psize = MMU_PAGE_64K; |
Paul Mackerras | bf72aeb | 2006-06-15 10:45:18 +1000 | [diff] [blame] | 663 | mmu_vmalloc_psize = MMU_PAGE_64K; |
Benjamin Herrenschmidt | 370a908 | 2007-04-12 15:30:23 +1000 | [diff] [blame] | 664 | if (mmu_linear_psize == MMU_PAGE_4K) |
| 665 | mmu_linear_psize = MMU_PAGE_64K; |
Matt Evans | 44ae3ab | 2011-04-06 19:48:50 +0000 | [diff] [blame] | 666 | if (mmu_has_feature(MMU_FTR_CI_LARGE_PAGE)) { |
Paul Mackerras | cfe666b | 2008-03-24 17:41:22 +1100 | [diff] [blame] | 667 | /* |
Alexander Graf | 9048e64 | 2014-04-01 15:46:05 +0200 | [diff] [blame] | 668 | * When running on pSeries using 64k pages for ioremap |
| 669 | * would stop us accessing the HEA ethernet. So if we |
| 670 | * have the chance of ever seeing one, stay at 4k. |
Paul Mackerras | cfe666b | 2008-03-24 17:41:22 +1100 | [diff] [blame] | 671 | */ |
Benjamin Herrenschmidt | 2b4e3ad | 2016-07-05 15:03:56 +1000 | [diff] [blame] | 672 | if (!might_have_hea()) |
Paul Mackerras | cfe666b | 2008-03-24 17:41:22 +1100 | [diff] [blame] | 673 | mmu_io_psize = MMU_PAGE_64K; |
| 674 | } else |
Paul Mackerras | bf72aeb | 2006-06-15 10:45:18 +1000 | [diff] [blame] | 675 | mmu_ci_restrictions = 1; |
| 676 | } |
Benjamin Herrenschmidt | 370a908 | 2007-04-12 15:30:23 +1000 | [diff] [blame] | 677 | #endif /* CONFIG_PPC_64K_PAGES */ |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 678 | |
Benjamin Herrenschmidt | cec08e7 | 2008-04-30 15:41:48 +1000 | [diff] [blame] | 679 | #ifdef CONFIG_SPARSEMEM_VMEMMAP |
Christophe Leroy | 47d9994 | 2019-03-29 10:00:00 +0000 | [diff] [blame] | 680 | /* |
| 681 | * We try to use 16M pages for vmemmap if that is supported |
Benjamin Herrenschmidt | cec08e7 | 2008-04-30 15:41:48 +1000 | [diff] [blame] | 682 | * and we have at least 1G of RAM at boot |
| 683 | */ |
| 684 | if (mmu_psize_defs[MMU_PAGE_16M].shift && |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 685 | memblock_phys_mem_size() >= 0x40000000) |
Benjamin Herrenschmidt | cec08e7 | 2008-04-30 15:41:48 +1000 | [diff] [blame] | 686 | mmu_vmemmap_psize = MMU_PAGE_16M; |
Benjamin Herrenschmidt | cec08e7 | 2008-04-30 15:41:48 +1000 | [diff] [blame] | 687 | else |
Aneesh Kumar K.V | 78c9498 | 2019-07-01 20:04:41 +0530 | [diff] [blame] | 688 | mmu_vmemmap_psize = mmu_virtual_psize; |
Benjamin Herrenschmidt | cec08e7 | 2008-04-30 15:41:48 +1000 | [diff] [blame] | 689 | #endif /* CONFIG_SPARSEMEM_VMEMMAP */ |
| 690 | |
Paul Mackerras | bf72aeb | 2006-06-15 10:45:18 +1000 | [diff] [blame] | 691 | printk(KERN_DEBUG "Page orders: linear mapping = %d, " |
Benjamin Herrenschmidt | cec08e7 | 2008-04-30 15:41:48 +1000 | [diff] [blame] | 692 | "virtual = %d, io = %d" |
| 693 | #ifdef CONFIG_SPARSEMEM_VMEMMAP |
| 694 | ", vmemmap = %d" |
| 695 | #endif |
| 696 | "\n", |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 697 | mmu_psize_defs[mmu_linear_psize].shift, |
Paul Mackerras | bf72aeb | 2006-06-15 10:45:18 +1000 | [diff] [blame] | 698 | mmu_psize_defs[mmu_virtual_psize].shift, |
Benjamin Herrenschmidt | cec08e7 | 2008-04-30 15:41:48 +1000 | [diff] [blame] | 699 | mmu_psize_defs[mmu_io_psize].shift |
| 700 | #ifdef CONFIG_SPARSEMEM_VMEMMAP |
| 701 | ,mmu_psize_defs[mmu_vmemmap_psize].shift |
| 702 | #endif |
| 703 | ); |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 704 | } |
| 705 | |
| 706 | static int __init htab_dt_scan_pftsize(unsigned long node, |
| 707 | const char *uname, int depth, |
| 708 | void *data) |
| 709 | { |
Rob Herring | 9d0c4df | 2014-04-01 23:49:03 -0500 | [diff] [blame] | 710 | const char *type = of_get_flat_dt_prop(node, "device_type", NULL); |
| 711 | const __be32 *prop; |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 712 | |
| 713 | /* We are scanning "cpu" nodes only */ |
| 714 | if (type == NULL || strcmp(type, "cpu") != 0) |
| 715 | return 0; |
| 716 | |
Anton Blanchard | 12f04f2 | 2013-09-23 12:04:36 +1000 | [diff] [blame] | 717 | prop = of_get_flat_dt_prop(node, "ibm,pft-size", NULL); |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 718 | if (prop != NULL) { |
| 719 | /* pft_size[0] is the NUMA CEC cookie */ |
Anton Blanchard | 12f04f2 | 2013-09-23 12:04:36 +1000 | [diff] [blame] | 720 | ppc64_pft_size = be32_to_cpu(prop[1]); |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 721 | return 1; |
| 722 | } |
| 723 | return 0; |
| 724 | } |
| 725 | |
David Gibson | 5c3c7ed | 2016-02-09 13:32:43 +1000 | [diff] [blame] | 726 | unsigned htab_shift_for_mem_size(unsigned long mem_size) |
| 727 | { |
| 728 | unsigned memshift = __ilog2(mem_size); |
| 729 | unsigned pshift = mmu_psize_defs[mmu_virtual_psize].shift; |
| 730 | unsigned pteg_shift; |
| 731 | |
| 732 | /* round mem_size up to next power of 2 */ |
| 733 | if ((1UL << memshift) < mem_size) |
| 734 | memshift += 1; |
| 735 | |
| 736 | /* aim for 2 pages / pteg */ |
| 737 | pteg_shift = memshift - (pshift + 1); |
| 738 | |
| 739 | /* |
| 740 | * 2^11 PTEGS of 128 bytes each, ie. 2^18 bytes is the minimum htab |
| 741 | * size permitted by the architecture. |
| 742 | */ |
| 743 | return max(pteg_shift + 7, 18U); |
| 744 | } |
| 745 | |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 746 | static unsigned long __init htab_get_table_size(void) |
Paul Mackerras | 3eac8c6 | 2005-10-12 16:58:53 +1000 | [diff] [blame] | 747 | { |
Christophe Leroy | 47d9994 | 2019-03-29 10:00:00 +0000 | [diff] [blame] | 748 | /* |
| 749 | * If hash size isn't already provided by the platform, we try to |
Adrian Bunk | 943ffb5 | 2006-01-10 00:10:13 +0100 | [diff] [blame] | 750 | * retrieve it from the device-tree. If it's not there neither, we |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 751 | * calculate it now based on the total RAM size |
Paul Mackerras | 3eac8c6 | 2005-10-12 16:58:53 +1000 | [diff] [blame] | 752 | */ |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 753 | if (ppc64_pft_size == 0) |
| 754 | of_scan_flat_dt(htab_dt_scan_pftsize, NULL); |
Paul Mackerras | 3eac8c6 | 2005-10-12 16:58:53 +1000 | [diff] [blame] | 755 | if (ppc64_pft_size) |
| 756 | return 1UL << ppc64_pft_size; |
| 757 | |
David Gibson | 5c3c7ed | 2016-02-09 13:32:43 +1000 | [diff] [blame] | 758 | return 1UL << htab_shift_for_mem_size(memblock_phys_mem_size()); |
Paul Mackerras | 3eac8c6 | 2005-10-12 16:58:53 +1000 | [diff] [blame] | 759 | } |
| 760 | |
Mike Kravetz | 54b7924 | 2005-11-07 16:25:48 -0800 | [diff] [blame] | 761 | #ifdef CONFIG_MEMORY_HOTPLUG |
Laurent Vivier | f172acb | 2019-03-13 11:25:28 +0100 | [diff] [blame] | 762 | int resize_hpt_for_hotplug(unsigned long new_mem_size) |
David Gibson | 438cc81 | 2016-12-09 11:07:38 +1100 | [diff] [blame] | 763 | { |
| 764 | unsigned target_hpt_shift; |
| 765 | |
| 766 | if (!mmu_hash_ops.resize_hpt) |
Laurent Vivier | f172acb | 2019-03-13 11:25:28 +0100 | [diff] [blame] | 767 | return 0; |
David Gibson | 438cc81 | 2016-12-09 11:07:38 +1100 | [diff] [blame] | 768 | |
| 769 | target_hpt_shift = htab_shift_for_mem_size(new_mem_size); |
| 770 | |
| 771 | /* |
| 772 | * To avoid lots of HPT resizes if memory size is fluctuating |
| 773 | * across a boundary, we deliberately have some hysterisis |
| 774 | * here: we immediately increase the HPT size if the target |
| 775 | * shift exceeds the current shift, but we won't attempt to |
| 776 | * reduce unless the target shift is at least 2 below the |
| 777 | * current shift |
| 778 | */ |
Laurent Vivier | f172acb | 2019-03-13 11:25:28 +0100 | [diff] [blame] | 779 | if (target_hpt_shift > ppc64_pft_size || |
| 780 | target_hpt_shift < ppc64_pft_size - 1) |
| 781 | return mmu_hash_ops.resize_hpt(target_hpt_shift); |
David Gibson | 438cc81 | 2016-12-09 11:07:38 +1100 | [diff] [blame] | 782 | |
Laurent Vivier | f172acb | 2019-03-13 11:25:28 +0100 | [diff] [blame] | 783 | return 0; |
David Gibson | 438cc81 | 2016-12-09 11:07:38 +1100 | [diff] [blame] | 784 | } |
| 785 | |
Nicholas Piggin | 29ab6c4 | 2018-02-14 01:08:22 +1000 | [diff] [blame] | 786 | int hash__create_section_mapping(unsigned long start, unsigned long end, int nid) |
Mike Kravetz | 54b7924 | 2005-11-07 16:25:48 -0800 | [diff] [blame] | 787 | { |
Aneesh Kumar K.V | e090939 | 2019-04-17 18:29:15 +0530 | [diff] [blame] | 788 | int rc; |
| 789 | |
| 790 | if (end >= H_VMALLOC_START) { |
Colin Ian King | f341d89 | 2019-04-23 16:10:17 +0100 | [diff] [blame] | 791 | pr_warn("Outside the supported range\n"); |
Aneesh Kumar K.V | e090939 | 2019-04-17 18:29:15 +0530 | [diff] [blame] | 792 | return -1; |
| 793 | } |
| 794 | |
| 795 | rc = htab_bolt_mapping(start, end, __pa(start), |
| 796 | pgprot_val(PAGE_KERNEL), mmu_linear_psize, |
| 797 | mmu_kernel_ssize); |
David Gibson | 1dace6c | 2016-02-09 13:32:42 +1000 | [diff] [blame] | 798 | |
| 799 | if (rc < 0) { |
| 800 | int rc2 = htab_remove_mapping(start, end, mmu_linear_psize, |
| 801 | mmu_kernel_ssize); |
| 802 | BUG_ON(rc2 && (rc2 != -ENOENT)); |
| 803 | } |
| 804 | return rc; |
Mike Kravetz | 54b7924 | 2005-11-07 16:25:48 -0800 | [diff] [blame] | 805 | } |
Badari Pulavarty | f8c8803 | 2008-01-29 09:19:24 +1100 | [diff] [blame] | 806 | |
Reza Arbab | 32b53c0 | 2017-01-03 14:39:51 -0600 | [diff] [blame] | 807 | int hash__remove_section_mapping(unsigned long start, unsigned long end) |
Badari Pulavarty | f8c8803 | 2008-01-29 09:19:24 +1100 | [diff] [blame] | 808 | { |
David Gibson | abd0a0e | 2016-02-09 13:32:40 +1000 | [diff] [blame] | 809 | int rc = htab_remove_mapping(start, end, mmu_linear_psize, |
| 810 | mmu_kernel_ssize); |
| 811 | WARN_ON(rc < 0); |
| 812 | return rc; |
Badari Pulavarty | f8c8803 | 2008-01-29 09:19:24 +1100 | [diff] [blame] | 813 | } |
Mike Kravetz | 54b7924 | 2005-11-07 16:25:48 -0800 | [diff] [blame] | 814 | #endif /* CONFIG_MEMORY_HOTPLUG */ |
| 815 | |
Aneesh Kumar K.V | 50de596 | 2016-04-29 23:25:43 +1000 | [diff] [blame] | 816 | static void __init hash_init_partition_table(phys_addr_t hash_table, |
Aneesh Kumar K.V | 4b7a350 | 2016-07-13 15:05:26 +0530 | [diff] [blame] | 817 | unsigned long htab_size) |
Aneesh Kumar K.V | 50de596 | 2016-04-29 23:25:43 +1000 | [diff] [blame] | 818 | { |
Paul Mackerras | 9d66195 | 2016-11-21 16:00:58 +1100 | [diff] [blame] | 819 | mmu_partition_table_init(); |
Aneesh Kumar K.V | 50de596 | 2016-04-29 23:25:43 +1000 | [diff] [blame] | 820 | |
| 821 | /* |
Paul Mackerras | 9d66195 | 2016-11-21 16:00:58 +1100 | [diff] [blame] | 822 | * PS field (VRMA page size) is not used for LPID 0, hence set to 0. |
| 823 | * For now, UPRT is 0 and we have no segment table. |
Aneesh Kumar K.V | 50de596 | 2016-04-29 23:25:43 +1000 | [diff] [blame] | 824 | */ |
Aneesh Kumar K.V | 4b7a350 | 2016-07-13 15:05:26 +0530 | [diff] [blame] | 825 | htab_size = __ilog2(htab_size) - 18; |
Paul Mackerras | 9d66195 | 2016-11-21 16:00:58 +1100 | [diff] [blame] | 826 | mmu_partition_table_set_entry(0, hash_table | htab_size, 0); |
Aneesh Kumar K.V | 5654741 | 2016-07-13 15:05:25 +0530 | [diff] [blame] | 827 | pr_info("Partition table %p\n", partition_tb); |
Aneesh Kumar K.V | 50de596 | 2016-04-29 23:25:43 +1000 | [diff] [blame] | 828 | } |
| 829 | |
Benjamin Herrenschmidt | 757c74d | 2009-03-19 19:34:16 +0000 | [diff] [blame] | 830 | static void __init htab_initialize(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 831 | { |
Michael Ellerman | 337a7128 | 2006-02-21 17:22:55 +1100 | [diff] [blame] | 832 | unsigned long table; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 833 | unsigned long pteg_count; |
Paul Mackerras | 9e88ba4 | 2008-08-30 11:26:27 +1000 | [diff] [blame] | 834 | unsigned long prot; |
Benjamin Herrenschmidt | 5556ecf | 2016-07-05 15:03:53 +1000 | [diff] [blame] | 835 | unsigned long base = 0, size = 0; |
Benjamin Herrenschmidt | 28be707 | 2010-08-04 13:43:53 +1000 | [diff] [blame] | 836 | struct memblock_region *reg; |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 837 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | DBG(" -> htab_initialize()\n"); |
| 839 | |
Matt Evans | 44ae3ab | 2011-04-06 19:48:50 +0000 | [diff] [blame] | 840 | if (mmu_has_feature(MMU_FTR_1T_SEGMENT)) { |
Paul Mackerras | 1189be6 | 2007-10-11 20:37:10 +1000 | [diff] [blame] | 841 | mmu_kernel_ssize = MMU_SEGSIZE_1T; |
| 842 | mmu_highuser_ssize = MMU_SEGSIZE_1T; |
| 843 | printk(KERN_INFO "Using 1TB segments\n"); |
| 844 | } |
| 845 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 846 | /* |
| 847 | * Calculate the required size of the htab. We want the number of |
| 848 | * PTEGs to equal one half the number of real pages. |
| 849 | */ |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 850 | htab_size_bytes = htab_get_table_size(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | pteg_count = htab_size_bytes >> 7; |
| 852 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | htab_hash_mask = pteg_count - 1; |
| 854 | |
Benjamin Herrenschmidt | 5556ecf | 2016-07-05 15:03:53 +1000 | [diff] [blame] | 855 | if (firmware_has_feature(FW_FEATURE_LPAR) || |
| 856 | firmware_has_feature(FW_FEATURE_PS3_LV1)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | /* Using a hypervisor which owns the htab */ |
| 858 | htab_address = NULL; |
| 859 | _SDR1 = 0; |
Paul Mackerras | dbfcf3c | 2017-02-16 16:03:39 +1100 | [diff] [blame] | 860 | /* |
| 861 | * On POWER9, we need to do a H_REGISTER_PROC_TBL hcall |
| 862 | * to inform the hypervisor that we wish to use the HPT. |
| 863 | */ |
| 864 | if (cpu_has_feature(CPU_FTR_ARCH_300)) |
| 865 | register_process_table(0, 0, 0); |
Mahesh Salgaonkar | 3ccc00a | 2012-02-20 02:15:03 +0000 | [diff] [blame] | 866 | #ifdef CONFIG_FA_DUMP |
| 867 | /* |
| 868 | * If firmware assisted dump is active firmware preserves |
| 869 | * the contents of htab along with entire partition memory. |
| 870 | * Clear the htab if firmware assisted dump is active so |
| 871 | * that we dont end up using old mappings. |
| 872 | */ |
Benjamin Herrenschmidt | 7025776 | 2016-07-05 15:03:58 +1000 | [diff] [blame] | 873 | if (is_fadump_active() && mmu_hash_ops.hpte_clear_all) |
| 874 | mmu_hash_ops.hpte_clear_all(); |
Mahesh Salgaonkar | 3ccc00a | 2012-02-20 02:15:03 +0000 | [diff] [blame] | 875 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | } else { |
Benjamin Herrenschmidt | 5556ecf | 2016-07-05 15:03:53 +1000 | [diff] [blame] | 877 | unsigned long limit = MEMBLOCK_ALLOC_ANYWHERE; |
Michael Ellerman | 41d824b | 2008-01-30 01:13:59 +1100 | [diff] [blame] | 878 | |
Benjamin Herrenschmidt | 5556ecf | 2016-07-05 15:03:53 +1000 | [diff] [blame] | 879 | #ifdef CONFIG_PPC_CELL |
| 880 | /* |
| 881 | * Cell may require the hash table down low when using the |
| 882 | * Axon IOMMU in order to fit the dynamic region over it, see |
| 883 | * comments in cell/iommu.c |
| 884 | */ |
| 885 | if (fdt_subnode_offset(initial_boot_params, 0, "axon") > 0) { |
| 886 | limit = 0x80000000; |
| 887 | pr_info("Hash table forced below 2G for Axon IOMMU\n"); |
| 888 | } |
| 889 | #endif /* CONFIG_PPC_CELL */ |
| 890 | |
Mike Rapoport | 0ba9e6e | 2019-03-11 23:29:35 -0700 | [diff] [blame] | 891 | table = memblock_phys_alloc_range(htab_size_bytes, |
| 892 | htab_size_bytes, |
| 893 | 0, limit); |
| 894 | if (!table) |
| 895 | panic("ERROR: Failed to allocate %pa bytes below %pa\n", |
| 896 | &htab_size_bytes, &limit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 897 | |
| 898 | DBG("Hash table allocated at %lx, size: %lx\n", table, |
| 899 | htab_size_bytes); |
| 900 | |
Michael Ellerman | 70267a7 | 2012-07-25 21:19:50 +0000 | [diff] [blame] | 901 | htab_address = __va(table); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 902 | |
| 903 | /* htab absolute addr + encoded htabsize */ |
Aneesh Kumar K.V | 4b7a350 | 2016-07-13 15:05:26 +0530 | [diff] [blame] | 904 | _SDR1 = table + __ilog2(htab_size_bytes) - 18; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 905 | |
| 906 | /* Initialize the HPT with no entries */ |
| 907 | memset((void *)table, 0, htab_size_bytes); |
Paul Mackerras | 799d604 | 2005-11-10 13:37:51 +1100 | [diff] [blame] | 908 | |
Aneesh Kumar K.V | 50de596 | 2016-04-29 23:25:43 +1000 | [diff] [blame] | 909 | if (!cpu_has_feature(CPU_FTR_ARCH_300)) |
| 910 | /* Set SDR1 */ |
| 911 | mtspr(SPRN_SDR1, _SDR1); |
| 912 | else |
Aneesh Kumar K.V | 4b7a350 | 2016-07-13 15:05:26 +0530 | [diff] [blame] | 913 | hash_init_partition_table(table, htab_size_bytes); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 914 | } |
| 915 | |
David Gibson | f5ea64d | 2008-10-12 17:54:24 +0000 | [diff] [blame] | 916 | prot = pgprot_val(PAGE_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | |
Benjamin Herrenschmidt | 370a908 | 2007-04-12 15:30:23 +1000 | [diff] [blame] | 918 | #ifdef CONFIG_DEBUG_PAGEALLOC |
Joonsoo Kim | e7df0d8 | 2016-03-17 14:17:59 -0700 | [diff] [blame] | 919 | if (debug_pagealloc_enabled()) { |
| 920 | linear_map_hash_count = memblock_end_of_DRAM() >> PAGE_SHIFT; |
Mike Rapoport | f806714 | 2019-03-07 16:30:48 -0800 | [diff] [blame] | 921 | linear_map_hash_slots = memblock_alloc_try_nid( |
| 922 | linear_map_hash_count, 1, MEMBLOCK_LOW_LIMIT, |
| 923 | ppc64_rma_size, NUMA_NO_NODE); |
Mike Rapoport | 8a7f97b | 2019-03-11 23:30:31 -0700 | [diff] [blame] | 924 | if (!linear_map_hash_slots) |
| 925 | panic("%s: Failed to allocate %lu bytes max_addr=%pa\n", |
| 926 | __func__, linear_map_hash_count, &ppc64_rma_size); |
Joonsoo Kim | e7df0d8 | 2016-03-17 14:17:59 -0700 | [diff] [blame] | 927 | } |
Benjamin Herrenschmidt | 370a908 | 2007-04-12 15:30:23 +1000 | [diff] [blame] | 928 | #endif /* CONFIG_DEBUG_PAGEALLOC */ |
| 929 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 | /* create bolted the linear mapping in the hash table */ |
Benjamin Herrenschmidt | 28be707 | 2010-08-04 13:43:53 +1000 | [diff] [blame] | 931 | for_each_memblock(memory, reg) { |
| 932 | base = (unsigned long)__va(reg->base); |
| 933 | size = reg->size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 934 | |
Sachin P. Sant | 5c33991 | 2009-12-13 21:15:12 +0000 | [diff] [blame] | 935 | DBG("creating mapping for region: %lx..%lx (prot: %lx)\n", |
Paul Mackerras | 9e88ba4 | 2008-08-30 11:26:27 +1000 | [diff] [blame] | 936 | base, size, prot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 | |
Aneesh Kumar K.V | e090939 | 2019-04-17 18:29:15 +0530 | [diff] [blame] | 938 | if ((base + size) >= H_VMALLOC_START) { |
Colin Ian King | f341d89 | 2019-04-23 16:10:17 +0100 | [diff] [blame] | 939 | pr_warn("Outside the supported range\n"); |
Aneesh Kumar K.V | e090939 | 2019-04-17 18:29:15 +0530 | [diff] [blame] | 940 | continue; |
| 941 | } |
| 942 | |
Michael Ellerman | caf80e5 | 2006-03-21 20:45:51 +1100 | [diff] [blame] | 943 | BUG_ON(htab_bolt_mapping(base, base + size, __pa(base), |
Paul Mackerras | 9e88ba4 | 2008-08-30 11:26:27 +1000 | [diff] [blame] | 944 | prot, mmu_linear_psize, mmu_kernel_ssize)); |
Benjamin Herrenschmidt | e63075a | 2010-07-06 15:39:01 -0700 | [diff] [blame] | 945 | } |
| 946 | memblock_set_current_limit(MEMBLOCK_ALLOC_ANYWHERE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 947 | |
| 948 | /* |
| 949 | * If we have a memory_limit and we've allocated TCEs then we need to |
| 950 | * explicitly map the TCE area at the top of RAM. We also cope with the |
| 951 | * case that the TCEs start below memory_limit. |
| 952 | * tce_alloc_start/end are 16MB aligned so the mapping should work |
| 953 | * for either 4K or 16MB pages. |
| 954 | */ |
| 955 | if (tce_alloc_start) { |
Michael Ellerman | b5666f7 | 2005-12-05 10:24:33 -0600 | [diff] [blame] | 956 | tce_alloc_start = (unsigned long)__va(tce_alloc_start); |
| 957 | tce_alloc_end = (unsigned long)__va(tce_alloc_end); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 958 | |
| 959 | if (base + size >= tce_alloc_start) |
| 960 | tce_alloc_start = base + size + 1; |
| 961 | |
Michael Ellerman | caf80e5 | 2006-03-21 20:45:51 +1100 | [diff] [blame] | 962 | BUG_ON(htab_bolt_mapping(tce_alloc_start, tce_alloc_end, |
Benjamin Herrenschmidt | bc033b6 | 2008-08-05 16:19:56 +1000 | [diff] [blame] | 963 | __pa(tce_alloc_start), prot, |
Paul Mackerras | 1189be6 | 2007-10-11 20:37:10 +1000 | [diff] [blame] | 964 | mmu_linear_psize, mmu_kernel_ssize)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | } |
| 966 | |
Michael Ellerman | 7d0daae | 2006-06-23 18:16:38 +1000 | [diff] [blame] | 967 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 968 | DBG(" <- htab_initialize()\n"); |
| 969 | } |
| 970 | #undef KB |
| 971 | #undef MB |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | |
Michael Ellerman | bacf9cf | 2016-07-26 21:31:59 +1000 | [diff] [blame] | 973 | void __init hash__early_init_devtree(void) |
| 974 | { |
| 975 | /* Initialize segment sizes */ |
| 976 | of_scan_flat_dt(htab_dt_scan_seg_sizes, NULL); |
| 977 | |
| 978 | /* Initialize page sizes */ |
| 979 | htab_scan_page_sizes(); |
| 980 | } |
| 981 | |
YueHaibing | d667edc | 2019-05-04 18:24:27 +0800 | [diff] [blame] | 982 | static struct hash_mm_context init_hash_mm_context; |
Aneesh Kumar K.V | 756d08d | 2016-04-29 23:25:57 +1000 | [diff] [blame] | 983 | void __init hash__early_init_mmu(void) |
Paul Mackerras | 799d604 | 2005-11-10 13:37:51 +1100 | [diff] [blame] | 984 | { |
Ram Pai | 9d2edb1 | 2017-11-06 00:50:47 -0800 | [diff] [blame] | 985 | #ifndef CONFIG_PPC_64K_PAGES |
Aneesh Kumar K.V | 6aa59f5 | 2017-03-28 15:21:12 +1100 | [diff] [blame] | 986 | /* |
Ram Pai | 9d2edb1 | 2017-11-06 00:50:47 -0800 | [diff] [blame] | 987 | * We have code in __hash_page_4K() and elsewhere, which assumes it can |
Aneesh Kumar K.V | 6aa59f5 | 2017-03-28 15:21:12 +1100 | [diff] [blame] | 988 | * do the following: |
| 989 | * new_pte |= (slot << H_PAGE_F_GIX_SHIFT) & (H_PAGE_F_SECOND | H_PAGE_F_GIX); |
| 990 | * |
| 991 | * Where the slot number is between 0-15, and values of 8-15 indicate |
| 992 | * the secondary bucket. For that code to work H_PAGE_F_SECOND and |
| 993 | * H_PAGE_F_GIX must occupy four contiguous bits in the PTE, and |
| 994 | * H_PAGE_F_SECOND must be placed above H_PAGE_F_GIX. Assert that here |
| 995 | * with a BUILD_BUG_ON(). |
| 996 | */ |
| 997 | BUILD_BUG_ON(H_PAGE_F_SECOND != (1ul << (H_PAGE_F_GIX_SHIFT + 3))); |
Ram Pai | 9d2edb1 | 2017-11-06 00:50:47 -0800 | [diff] [blame] | 998 | #endif /* CONFIG_PPC_64K_PAGES */ |
Aneesh Kumar K.V | 6aa59f5 | 2017-03-28 15:21:12 +1100 | [diff] [blame] | 999 | |
Michael Ellerman | bacf9cf | 2016-07-26 21:31:59 +1000 | [diff] [blame] | 1000 | htab_init_page_sizes(); |
| 1001 | |
Aneesh Kumar K.V | dd1842a | 2016-04-29 23:25:49 +1000 | [diff] [blame] | 1002 | /* |
| 1003 | * initialize page table size |
| 1004 | */ |
Aneesh Kumar K.V | 5ed7ecd | 2016-04-29 23:26:23 +1000 | [diff] [blame] | 1005 | __pte_frag_nr = H_PTE_FRAG_NR; |
| 1006 | __pte_frag_size_shift = H_PTE_FRAG_SIZE_SHIFT; |
Aneesh Kumar K.V | 8a6c697 | 2018-04-16 16:57:22 +0530 | [diff] [blame] | 1007 | __pmd_frag_nr = H_PMD_FRAG_NR; |
| 1008 | __pmd_frag_size_shift = H_PMD_FRAG_SIZE_SHIFT; |
Aneesh Kumar K.V | 5ed7ecd | 2016-04-29 23:26:23 +1000 | [diff] [blame] | 1009 | |
Aneesh Kumar K.V | dd1842a | 2016-04-29 23:25:49 +1000 | [diff] [blame] | 1010 | __pte_index_size = H_PTE_INDEX_SIZE; |
| 1011 | __pmd_index_size = H_PMD_INDEX_SIZE; |
| 1012 | __pud_index_size = H_PUD_INDEX_SIZE; |
| 1013 | __pgd_index_size = H_PGD_INDEX_SIZE; |
Aneesh Kumar K.V | fae2211 | 2018-02-11 20:30:06 +0530 | [diff] [blame] | 1014 | __pud_cache_index = H_PUD_CACHE_INDEX; |
Aneesh Kumar K.V | dd1842a | 2016-04-29 23:25:49 +1000 | [diff] [blame] | 1015 | __pte_table_size = H_PTE_TABLE_SIZE; |
| 1016 | __pmd_table_size = H_PMD_TABLE_SIZE; |
| 1017 | __pud_table_size = H_PUD_TABLE_SIZE; |
| 1018 | __pgd_table_size = H_PGD_TABLE_SIZE; |
Aneesh Kumar K.V | a2f41eb | 2016-04-29 23:26:19 +1000 | [diff] [blame] | 1019 | /* |
| 1020 | * 4k use hugepd format, so for hash set then to |
| 1021 | * zero |
| 1022 | */ |
Aneesh Kumar K.V | da7ad36 | 2018-09-20 23:39:42 +0530 | [diff] [blame] | 1023 | __pmd_val_bits = HASH_PMD_VAL_BITS; |
| 1024 | __pud_val_bits = HASH_PUD_VAL_BITS; |
| 1025 | __pgd_val_bits = HASH_PGD_VAL_BITS; |
Aneesh Kumar K.V | d6a9996 | 2016-04-29 23:26:21 +1000 | [diff] [blame] | 1026 | |
| 1027 | __kernel_virt_start = H_KERN_VIRT_START; |
Aneesh Kumar K.V | d6a9996 | 2016-04-29 23:26:21 +1000 | [diff] [blame] | 1028 | __vmalloc_start = H_VMALLOC_START; |
| 1029 | __vmalloc_end = H_VMALLOC_END; |
Michael Ellerman | 63ee9b2 | 2017-08-01 20:29:22 +1000 | [diff] [blame] | 1030 | __kernel_io_start = H_KERN_IO_START; |
Aneesh Kumar K.V | a35a3c6 | 2019-04-17 18:29:13 +0530 | [diff] [blame] | 1031 | __kernel_io_end = H_KERN_IO_END; |
Aneesh Kumar K.V | 0034d39 | 2019-04-17 18:29:14 +0530 | [diff] [blame] | 1032 | vmemmap = (struct page *)H_VMEMMAP_START; |
Aneesh Kumar K.V | d6a9996 | 2016-04-29 23:26:21 +1000 | [diff] [blame] | 1033 | ioremap_bot = IOREMAP_BASE; |
| 1034 | |
Darren Stevens | bfa3708 | 2016-06-29 21:06:28 +0100 | [diff] [blame] | 1035 | #ifdef CONFIG_PCI |
| 1036 | pci_io_base = ISA_IO_BASE; |
| 1037 | #endif |
| 1038 | |
Benjamin Herrenschmidt | 166dd7d | 2016-07-05 15:03:51 +1000 | [diff] [blame] | 1039 | /* Select appropriate backend */ |
| 1040 | if (firmware_has_feature(FW_FEATURE_PS3_LV1)) |
| 1041 | ps3_early_mm_init(); |
| 1042 | else if (firmware_has_feature(FW_FEATURE_LPAR)) |
Michael Ellerman | 6364e84 | 2016-07-26 10:33:03 +1000 | [diff] [blame] | 1043 | hpte_init_pseries(); |
Stephen Rothwell | fbef66f | 2016-07-28 12:35:02 +1000 | [diff] [blame] | 1044 | else if (IS_ENABLED(CONFIG_PPC_NATIVE)) |
Benjamin Herrenschmidt | 166dd7d | 2016-07-05 15:03:51 +1000 | [diff] [blame] | 1045 | hpte_init_native(); |
| 1046 | |
Michael Ellerman | 7353644 | 2016-07-25 11:54:41 +1000 | [diff] [blame] | 1047 | if (!mmu_hash_ops.hpte_insert) |
| 1048 | panic("hash__early_init_mmu: No MMU hash ops defined!\n"); |
| 1049 | |
Christophe Leroy | 47d9994 | 2019-03-29 10:00:00 +0000 | [diff] [blame] | 1050 | /* |
| 1051 | * Initialize the MMU Hash table and create the linear mapping |
Michael Ellerman | 376af59 | 2014-07-10 12:29:19 +1000 | [diff] [blame] | 1052 | * of memory. Has to be done before SLB initialization as this is |
| 1053 | * currently where the page size encoding is obtained. |
Benjamin Herrenschmidt | 757c74d | 2009-03-19 19:34:16 +0000 | [diff] [blame] | 1054 | */ |
| 1055 | htab_initialize(); |
| 1056 | |
Aneesh Kumar K.V | 7011018 | 2019-04-17 18:33:50 +0530 | [diff] [blame] | 1057 | init_mm.context.hash_context = &init_hash_mm_context; |
Christophe Leroy | 5953fb4 | 2019-04-25 14:29:36 +0000 | [diff] [blame] | 1058 | mm_ctx_set_slb_addr_limit(&init_mm.context, SLB_ADDR_LIMIT_DEFAULT); |
Aneesh Kumar K.V | 67fda38f | 2019-04-17 18:33:49 +0530 | [diff] [blame] | 1059 | |
Aneesh Kumar K.V | 5654741 | 2016-07-13 15:05:25 +0530 | [diff] [blame] | 1060 | pr_info("Initializing hash mmu with SLB\n"); |
Michael Ellerman | 376af59 | 2014-07-10 12:29:19 +1000 | [diff] [blame] | 1061 | /* Initialize SLB management */ |
Michael Ellerman | 13b3d13 | 2014-07-10 12:29:20 +1000 | [diff] [blame] | 1062 | slb_initialize(); |
Nicholas Piggin | d474827 | 2017-12-24 01:15:50 +1000 | [diff] [blame] | 1063 | |
| 1064 | if (cpu_has_feature(CPU_FTR_ARCH_206) |
| 1065 | && cpu_has_feature(CPU_FTR_HVMODE)) |
| 1066 | tlbiel_all(); |
Benjamin Herrenschmidt | 757c74d | 2009-03-19 19:34:16 +0000 | [diff] [blame] | 1067 | } |
| 1068 | |
| 1069 | #ifdef CONFIG_SMP |
Aneesh Kumar K.V | 756d08d | 2016-04-29 23:25:57 +1000 | [diff] [blame] | 1070 | void hash__early_init_mmu_secondary(void) |
Benjamin Herrenschmidt | 757c74d | 2009-03-19 19:34:16 +0000 | [diff] [blame] | 1071 | { |
| 1072 | /* Initialize hash table for that CPU */ |
Aneesh Kumar K.V | b5dcc60 | 2016-04-29 23:26:12 +1000 | [diff] [blame] | 1073 | if (!firmware_has_feature(FW_FEATURE_LPAR)) { |
Aneesh Kumar K.V | cac4a18 | 2016-11-17 15:46:23 +0530 | [diff] [blame] | 1074 | |
Aneesh Kumar K.V | b5dcc60 | 2016-04-29 23:26:12 +1000 | [diff] [blame] | 1075 | if (!cpu_has_feature(CPU_FTR_ARCH_300)) |
| 1076 | mtspr(SPRN_SDR1, _SDR1); |
| 1077 | else |
| 1078 | mtspr(SPRN_PTCR, |
| 1079 | __pa(partition_tb) | (PATB_SIZE_SHIFT - 12)); |
| 1080 | } |
Michael Ellerman | 376af59 | 2014-07-10 12:29:19 +1000 | [diff] [blame] | 1081 | /* Initialize SLB */ |
Michael Ellerman | 13b3d13 | 2014-07-10 12:29:20 +1000 | [diff] [blame] | 1082 | slb_initialize(); |
Nicholas Piggin | d474827 | 2017-12-24 01:15:50 +1000 | [diff] [blame] | 1083 | |
| 1084 | if (cpu_has_feature(CPU_FTR_ARCH_206) |
| 1085 | && cpu_has_feature(CPU_FTR_HVMODE)) |
| 1086 | tlbiel_all(); |
Paul Mackerras | 799d604 | 2005-11-10 13:37:51 +1100 | [diff] [blame] | 1087 | } |
Benjamin Herrenschmidt | 757c74d | 2009-03-19 19:34:16 +0000 | [diff] [blame] | 1088 | #endif /* CONFIG_SMP */ |
Paul Mackerras | 799d604 | 2005-11-10 13:37:51 +1100 | [diff] [blame] | 1089 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1090 | /* |
| 1091 | * Called by asm hashtable.S for doing lazy icache flush |
| 1092 | */ |
| 1093 | unsigned int hash_page_do_lazy_icache(unsigned int pp, pte_t pte, int trap) |
| 1094 | { |
| 1095 | struct page *page; |
| 1096 | |
Benjamin Herrenschmidt | 76c8e25 | 2005-11-08 11:21:05 +1100 | [diff] [blame] | 1097 | if (!pfn_valid(pte_pfn(pte))) |
| 1098 | return pp; |
| 1099 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1100 | page = pte_page(pte); |
| 1101 | |
| 1102 | /* page is dirty */ |
| 1103 | if (!test_bit(PG_arch_1, &page->flags) && !PageReserved(page)) { |
| 1104 | if (trap == 0x400) { |
David Gibson | 0895ecd | 2009-10-26 19:24:31 +0000 | [diff] [blame] | 1105 | flush_dcache_icache_page(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1106 | set_bit(PG_arch_1, &page->flags); |
| 1107 | } else |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 1108 | pp |= HPTE_R_N; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1109 | } |
| 1110 | return pp; |
| 1111 | } |
| 1112 | |
Paul Mackerras | 3a8247c | 2008-06-18 15:29:12 +1000 | [diff] [blame] | 1113 | #ifdef CONFIG_PPC_MM_SLICES |
Michael Ellerman | 54be0b9 | 2018-10-02 23:56:39 +1000 | [diff] [blame] | 1114 | static unsigned int get_paca_psize(unsigned long addr) |
Paul Mackerras | 3a8247c | 2008-06-18 15:29:12 +1000 | [diff] [blame] | 1115 | { |
Christophe Leroy | 1547242 | 2018-02-22 15:27:28 +0100 | [diff] [blame] | 1116 | unsigned char *psizes; |
Aneesh Kumar K.V | 7aa0727 | 2012-09-10 02:52:52 +0000 | [diff] [blame] | 1117 | unsigned long index, mask_index; |
Paul Mackerras | 3a8247c | 2008-06-18 15:29:12 +1000 | [diff] [blame] | 1118 | |
| 1119 | if (addr < SLICE_LOW_TOP) { |
Michael Ellerman | 54be0b9 | 2018-10-02 23:56:39 +1000 | [diff] [blame] | 1120 | psizes = get_paca()->mm_ctx_low_slices_psize; |
Paul Mackerras | 3a8247c | 2008-06-18 15:29:12 +1000 | [diff] [blame] | 1121 | index = GET_LOW_SLICE_INDEX(addr); |
Christophe Leroy | 1547242 | 2018-02-22 15:27:28 +0100 | [diff] [blame] | 1122 | } else { |
Michael Ellerman | 54be0b9 | 2018-10-02 23:56:39 +1000 | [diff] [blame] | 1123 | psizes = get_paca()->mm_ctx_high_slices_psize; |
Christophe Leroy | 1547242 | 2018-02-22 15:27:28 +0100 | [diff] [blame] | 1124 | index = GET_HIGH_SLICE_INDEX(addr); |
Paul Mackerras | 3a8247c | 2008-06-18 15:29:12 +1000 | [diff] [blame] | 1125 | } |
Aneesh Kumar K.V | 7aa0727 | 2012-09-10 02:52:52 +0000 | [diff] [blame] | 1126 | mask_index = index & 0x1; |
Christophe Leroy | 1547242 | 2018-02-22 15:27:28 +0100 | [diff] [blame] | 1127 | return (psizes[index >> 1] >> (mask_index * 4)) & 0xF; |
Paul Mackerras | 3a8247c | 2008-06-18 15:29:12 +1000 | [diff] [blame] | 1128 | } |
| 1129 | |
| 1130 | #else |
Michael Ellerman | 54be0b9 | 2018-10-02 23:56:39 +1000 | [diff] [blame] | 1131 | unsigned int get_paca_psize(unsigned long addr) |
Paul Mackerras | 3a8247c | 2008-06-18 15:29:12 +1000 | [diff] [blame] | 1132 | { |
Michael Ellerman | 54be0b9 | 2018-10-02 23:56:39 +1000 | [diff] [blame] | 1133 | return get_paca()->mm_ctx_user_psize; |
Paul Mackerras | 3a8247c | 2008-06-18 15:29:12 +1000 | [diff] [blame] | 1134 | } |
| 1135 | #endif |
| 1136 | |
Paul Mackerras | 721151d | 2007-04-03 21:24:02 +1000 | [diff] [blame] | 1137 | /* |
| 1138 | * Demote a segment to using 4k pages. |
| 1139 | * For now this makes the whole process use 4k pages. |
| 1140 | */ |
Paul Mackerras | 721151d | 2007-04-03 21:24:02 +1000 | [diff] [blame] | 1141 | #ifdef CONFIG_PPC_64K_PAGES |
Paul Mackerras | fa28237 | 2008-01-24 08:35:13 +1100 | [diff] [blame] | 1142 | void demote_segment_4k(struct mm_struct *mm, unsigned long addr) |
Benjamin Herrenschmidt | 16f1c74 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 1143 | { |
Michael Ellerman | 54be0b9 | 2018-10-02 23:56:39 +1000 | [diff] [blame] | 1144 | if (get_slice_psize(mm, addr) == MMU_PAGE_4K) |
Paul Mackerras | 721151d | 2007-04-03 21:24:02 +1000 | [diff] [blame] | 1145 | return; |
Paul Mackerras | 3a8247c | 2008-06-18 15:29:12 +1000 | [diff] [blame] | 1146 | slice_set_range_psize(mm, addr, 1, MMU_PAGE_4K); |
Ian Munsie | be3ebfe | 2014-10-08 19:54:52 +1100 | [diff] [blame] | 1147 | copro_flush_all_slbs(mm); |
Michael Ellerman | 54be0b9 | 2018-10-02 23:56:39 +1000 | [diff] [blame] | 1148 | if ((get_paca_psize(addr) != MMU_PAGE_4K) && (current->mm == mm)) { |
| 1149 | |
| 1150 | copy_mm_to_paca(mm); |
Nicholas Piggin | 94ee4272 | 2018-10-03 00:27:58 +1000 | [diff] [blame] | 1151 | slb_flush_and_restore_bolted(); |
Michael Ellerman | 54be0b9 | 2018-10-02 23:56:39 +1000 | [diff] [blame] | 1152 | } |
Paul Mackerras | 721151d | 2007-04-03 21:24:02 +1000 | [diff] [blame] | 1153 | } |
Benjamin Herrenschmidt | 16f1c74 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 1154 | #endif /* CONFIG_PPC_64K_PAGES */ |
Paul Mackerras | 721151d | 2007-04-03 21:24:02 +1000 | [diff] [blame] | 1155 | |
Paul Mackerras | fa28237 | 2008-01-24 08:35:13 +1100 | [diff] [blame] | 1156 | #ifdef CONFIG_PPC_SUBPAGE_PROT |
| 1157 | /* |
| 1158 | * This looks up a 2-bit protection code for a 4k subpage of a 64k page. |
| 1159 | * Userspace sets the subpage permissions using the subpage_prot system call. |
| 1160 | * |
| 1161 | * Result is 0: full permissions, _PAGE_RW: read-only, |
Aneesh Kumar K.V | 73a1441 | 2016-04-29 23:25:31 +1000 | [diff] [blame] | 1162 | * _PAGE_RWX: no access. |
Paul Mackerras | fa28237 | 2008-01-24 08:35:13 +1100 | [diff] [blame] | 1163 | */ |
David Gibson | d28513b | 2009-11-26 18:56:04 +0000 | [diff] [blame] | 1164 | static int subpage_protection(struct mm_struct *mm, unsigned long ea) |
Paul Mackerras | fa28237 | 2008-01-24 08:35:13 +1100 | [diff] [blame] | 1165 | { |
Aneesh Kumar K.V | 60458fb | 2019-04-17 18:33:48 +0530 | [diff] [blame] | 1166 | struct subpage_prot_table *spt = mm_ctx_subpage_prot(&mm->context); |
Paul Mackerras | fa28237 | 2008-01-24 08:35:13 +1100 | [diff] [blame] | 1167 | u32 spp = 0; |
| 1168 | u32 **sbpm, *sbpp; |
| 1169 | |
Aneesh Kumar K.V | ef629cc | 2019-04-17 18:33:51 +0530 | [diff] [blame] | 1170 | if (!spt) |
| 1171 | return 0; |
| 1172 | |
Paul Mackerras | fa28237 | 2008-01-24 08:35:13 +1100 | [diff] [blame] | 1173 | if (ea >= spt->maxaddr) |
| 1174 | return 0; |
Anton Blanchard | b0d436c | 2013-08-07 02:01:24 +1000 | [diff] [blame] | 1175 | if (ea < 0x100000000UL) { |
Paul Mackerras | fa28237 | 2008-01-24 08:35:13 +1100 | [diff] [blame] | 1176 | /* addresses below 4GB use spt->low_prot */ |
| 1177 | sbpm = spt->low_prot; |
| 1178 | } else { |
| 1179 | sbpm = spt->protptrs[ea >> SBP_L3_SHIFT]; |
| 1180 | if (!sbpm) |
| 1181 | return 0; |
| 1182 | } |
| 1183 | sbpp = sbpm[(ea >> SBP_L2_SHIFT) & (SBP_L2_COUNT - 1)]; |
| 1184 | if (!sbpp) |
| 1185 | return 0; |
| 1186 | spp = sbpp[(ea >> PAGE_SHIFT) & (SBP_L1_COUNT - 1)]; |
| 1187 | |
| 1188 | /* extract 2-bit bitfield for this 4k subpage */ |
| 1189 | spp >>= 30 - 2 * ((ea >> 12) & 0xf); |
| 1190 | |
Aneesh Kumar K.V | 73a1441 | 2016-04-29 23:25:31 +1000 | [diff] [blame] | 1191 | /* |
| 1192 | * 0 -> full premission |
| 1193 | * 1 -> Read only |
| 1194 | * 2 -> no access. |
| 1195 | * We return the flag that need to be cleared. |
| 1196 | */ |
| 1197 | spp = ((spp & 2) ? _PAGE_RWX : 0) | ((spp & 1) ? _PAGE_WRITE : 0); |
Paul Mackerras | fa28237 | 2008-01-24 08:35:13 +1100 | [diff] [blame] | 1198 | return spp; |
| 1199 | } |
| 1200 | |
| 1201 | #else /* CONFIG_PPC_SUBPAGE_PROT */ |
David Gibson | d28513b | 2009-11-26 18:56:04 +0000 | [diff] [blame] | 1202 | static inline int subpage_protection(struct mm_struct *mm, unsigned long ea) |
Paul Mackerras | fa28237 | 2008-01-24 08:35:13 +1100 | [diff] [blame] | 1203 | { |
| 1204 | return 0; |
| 1205 | } |
| 1206 | #endif |
| 1207 | |
Benjamin Herrenschmidt | 4b8692c | 2010-07-23 10:31:13 +1000 | [diff] [blame] | 1208 | void hash_failure_debug(unsigned long ea, unsigned long access, |
| 1209 | unsigned long vsid, unsigned long trap, |
Aneesh Kumar K.V | d8139eb | 2013-04-28 09:37:37 +0000 | [diff] [blame] | 1210 | int ssize, int psize, int lpsize, unsigned long pte) |
Benjamin Herrenschmidt | 4b8692c | 2010-07-23 10:31:13 +1000 | [diff] [blame] | 1211 | { |
| 1212 | if (!printk_ratelimit()) |
| 1213 | return; |
| 1214 | pr_info("mm: Hashing failure ! EA=0x%lx access=0x%lx current=%s\n", |
| 1215 | ea, access, current->comm); |
Aneesh Kumar K.V | d8139eb | 2013-04-28 09:37:37 +0000 | [diff] [blame] | 1216 | pr_info(" trap=0x%lx vsid=0x%lx ssize=%d base psize=%d psize %d pte=0x%lx\n", |
| 1217 | trap, vsid, ssize, psize, lpsize, pte); |
Benjamin Herrenschmidt | 4b8692c | 2010-07-23 10:31:13 +1000 | [diff] [blame] | 1218 | } |
| 1219 | |
Michael Ellerman | 54be0b9 | 2018-10-02 23:56:39 +1000 | [diff] [blame] | 1220 | static void check_paca_psize(unsigned long ea, struct mm_struct *mm, |
| 1221 | int psize, bool user_region) |
| 1222 | { |
| 1223 | if (user_region) { |
| 1224 | if (psize != get_paca_psize(ea)) { |
| 1225 | copy_mm_to_paca(mm); |
Nicholas Piggin | 94ee4272 | 2018-10-03 00:27:58 +1000 | [diff] [blame] | 1226 | slb_flush_and_restore_bolted(); |
Michael Ellerman | 54be0b9 | 2018-10-02 23:56:39 +1000 | [diff] [blame] | 1227 | } |
| 1228 | } else if (get_paca()->vmalloc_sllp != |
| 1229 | mmu_psize_defs[mmu_vmalloc_psize].sllp) { |
| 1230 | get_paca()->vmalloc_sllp = |
| 1231 | mmu_psize_defs[mmu_vmalloc_psize].sllp; |
| 1232 | slb_vmalloc_update(); |
| 1233 | } |
| 1234 | } |
| 1235 | |
Christophe Leroy | 47d9994 | 2019-03-29 10:00:00 +0000 | [diff] [blame] | 1236 | /* |
| 1237 | * Result code is: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1238 | * 0 - handled |
| 1239 | * 1 - normal page fault |
| 1240 | * -1 - critical hash insertion error |
Paul Mackerras | fa28237 | 2008-01-24 08:35:13 +1100 | [diff] [blame] | 1241 | * -2 - access not permitted by subpage protection mechanism |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1242 | */ |
Aneesh Kumar K.V | aefa568 | 2014-12-04 11:00:14 +0530 | [diff] [blame] | 1243 | int hash_page_mm(struct mm_struct *mm, unsigned long ea, |
| 1244 | unsigned long access, unsigned long trap, |
| 1245 | unsigned long flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1246 | { |
Aneesh Kumar K.V | 891121e | 2015-10-09 08:32:21 +0530 | [diff] [blame] | 1247 | bool is_thp; |
Li Zhong | ba12eed | 2013-05-13 16:16:41 +0000 | [diff] [blame] | 1248 | enum ctx_state prev_state = exception_enter(); |
David Gibson | a1128f8 | 2009-12-16 14:29:56 +0000 | [diff] [blame] | 1249 | pgd_t *pgdir; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1250 | unsigned long vsid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1251 | pte_t *ptep; |
David Gibson | a4fe3ce | 2009-10-26 19:24:31 +0000 | [diff] [blame] | 1252 | unsigned hugeshift; |
Aneesh Kumar K.V | aefa568 | 2014-12-04 11:00:14 +0530 | [diff] [blame] | 1253 | int rc, user_region = 0; |
Paul Mackerras | 1189be6 | 2007-10-11 20:37:10 +1000 | [diff] [blame] | 1254 | int psize, ssize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1255 | |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 1256 | DBG_LOW("hash_page(ea=%016lx, access=%lx, trap=%lx\n", |
| 1257 | ea, access, trap); |
Aneesh Kumar K.V | cfcb3d8 | 2015-04-14 13:05:57 +0530 | [diff] [blame] | 1258 | trace_hash_fault(ea, access, trap); |
David Gibson | 1f8d419 | 2005-05-05 16:15:13 -0700 | [diff] [blame] | 1259 | |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 1260 | /* Get region & vsid */ |
Aneesh Kumar K.V | 0034d39 | 2019-04-17 18:29:14 +0530 | [diff] [blame] | 1261 | switch (get_region_id(ea)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1262 | case USER_REGION_ID: |
| 1263 | user_region = 1; |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 1264 | if (! mm) { |
| 1265 | DBG_LOW(" user region with no mm !\n"); |
Li Zhong | ba12eed | 2013-05-13 16:16:41 +0000 | [diff] [blame] | 1266 | rc = 1; |
| 1267 | goto bail; |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 1268 | } |
Michael Ellerman | 54be0b9 | 2018-10-02 23:56:39 +1000 | [diff] [blame] | 1269 | psize = get_slice_psize(mm, ea); |
Paul Mackerras | 1189be6 | 2007-10-11 20:37:10 +1000 | [diff] [blame] | 1270 | ssize = user_segment_size(ea); |
Aneesh Kumar K.V | f384796c | 2018-03-26 15:34:48 +0530 | [diff] [blame] | 1271 | vsid = get_user_vsid(&mm->context, ea, ssize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1272 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1273 | case VMALLOC_REGION_ID: |
Paul Mackerras | 1189be6 | 2007-10-11 20:37:10 +1000 | [diff] [blame] | 1274 | vsid = get_kernel_vsid(ea, mmu_kernel_ssize); |
Aneesh Kumar K.V | 0034d39 | 2019-04-17 18:29:14 +0530 | [diff] [blame] | 1275 | psize = mmu_vmalloc_psize; |
| 1276 | ssize = mmu_kernel_ssize; |
| 1277 | break; |
| 1278 | |
| 1279 | case IO_REGION_ID: |
| 1280 | vsid = get_kernel_vsid(ea, mmu_kernel_ssize); |
| 1281 | psize = mmu_io_psize; |
Paul Mackerras | 1189be6 | 2007-10-11 20:37:10 +1000 | [diff] [blame] | 1282 | ssize = mmu_kernel_ssize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1283 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1284 | default: |
Christophe Leroy | 47d9994 | 2019-03-29 10:00:00 +0000 | [diff] [blame] | 1285 | /* |
| 1286 | * Not a valid range |
| 1287 | * Send the problem up to do_page_fault() |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1288 | */ |
Li Zhong | ba12eed | 2013-05-13 16:16:41 +0000 | [diff] [blame] | 1289 | rc = 1; |
| 1290 | goto bail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1291 | } |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 1292 | DBG_LOW(" mm=%p, mm->pgdir=%p, vsid=%016lx\n", mm, mm->pgd, vsid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1293 | |
Aneesh Kumar K.V | c60ac56 | 2013-03-13 03:34:54 +0000 | [diff] [blame] | 1294 | /* Bad address. */ |
| 1295 | if (!vsid) { |
| 1296 | DBG_LOW("Bad address!\n"); |
Li Zhong | ba12eed | 2013-05-13 16:16:41 +0000 | [diff] [blame] | 1297 | rc = 1; |
| 1298 | goto bail; |
Aneesh Kumar K.V | c60ac56 | 2013-03-13 03:34:54 +0000 | [diff] [blame] | 1299 | } |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 1300 | /* Get pgdir */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1301 | pgdir = mm->pgd; |
Li Zhong | ba12eed | 2013-05-13 16:16:41 +0000 | [diff] [blame] | 1302 | if (pgdir == NULL) { |
| 1303 | rc = 1; |
| 1304 | goto bail; |
| 1305 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1306 | |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 1307 | /* Check CPU locality */ |
Benjamin Herrenschmidt | b426e4b | 2017-07-24 14:28:01 +1000 | [diff] [blame] | 1308 | if (user_region && mm_is_thread_local(mm)) |
Aneesh Kumar K.V | aefa568 | 2014-12-04 11:00:14 +0530 | [diff] [blame] | 1309 | flags |= HPTE_LOCAL_UPDATE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1310 | |
Benjamin Herrenschmidt | 16c2d47 | 2007-05-08 16:27:28 +1000 | [diff] [blame] | 1311 | #ifndef CONFIG_PPC_64K_PAGES |
Christophe Leroy | 47d9994 | 2019-03-29 10:00:00 +0000 | [diff] [blame] | 1312 | /* |
| 1313 | * If we use 4K pages and our psize is not 4K, then we might |
David Gibson | a4fe3ce | 2009-10-26 19:24:31 +0000 | [diff] [blame] | 1314 | * be hitting a special driver mapping, and need to align the |
| 1315 | * address before we fetch the PTE. |
| 1316 | * |
| 1317 | * It could also be a hugepage mapping, in which case this is |
| 1318 | * not necessary, but it's not harmful, either. |
Benjamin Herrenschmidt | 16c2d47 | 2007-05-08 16:27:28 +1000 | [diff] [blame] | 1319 | */ |
| 1320 | if (psize != MMU_PAGE_4K) |
| 1321 | ea &= ~((1ul << mmu_psize_defs[psize].shift) - 1); |
| 1322 | #endif /* CONFIG_PPC_64K_PAGES */ |
| 1323 | |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 1324 | /* Get PTE and page size from page tables */ |
Aneesh Kumar K.V | 94171b1 | 2017-07-27 11:54:53 +0530 | [diff] [blame] | 1325 | ptep = find_linux_pte(pgdir, ea, &is_thp, &hugeshift); |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 1326 | if (ptep == NULL || !pte_present(*ptep)) { |
| 1327 | DBG_LOW(" no PTE !\n"); |
Li Zhong | ba12eed | 2013-05-13 16:16:41 +0000 | [diff] [blame] | 1328 | rc = 1; |
| 1329 | goto bail; |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 1330 | } |
| 1331 | |
Benjamin Herrenschmidt | ca91e6c | 2010-07-23 08:53:23 +1000 | [diff] [blame] | 1332 | /* Add _PAGE_PRESENT to the required access perm */ |
| 1333 | access |= _PAGE_PRESENT; |
| 1334 | |
Christophe Leroy | 47d9994 | 2019-03-29 10:00:00 +0000 | [diff] [blame] | 1335 | /* |
| 1336 | * Pre-check access permissions (will be re-checked atomically |
Benjamin Herrenschmidt | ca91e6c | 2010-07-23 08:53:23 +1000 | [diff] [blame] | 1337 | * in __hash_page_XX but this pre-check is a fast path |
| 1338 | */ |
Aneesh Kumar K.V | ac29c64 | 2016-04-29 23:25:34 +1000 | [diff] [blame] | 1339 | if (!check_pte_access(access, pte_val(*ptep))) { |
Benjamin Herrenschmidt | ca91e6c | 2010-07-23 08:53:23 +1000 | [diff] [blame] | 1340 | DBG_LOW(" no access !\n"); |
Li Zhong | ba12eed | 2013-05-13 16:16:41 +0000 | [diff] [blame] | 1341 | rc = 1; |
| 1342 | goto bail; |
Benjamin Herrenschmidt | ca91e6c | 2010-07-23 08:53:23 +1000 | [diff] [blame] | 1343 | } |
| 1344 | |
Li Zhong | ba12eed | 2013-05-13 16:16:41 +0000 | [diff] [blame] | 1345 | if (hugeshift) { |
Aneesh Kumar K.V | 891121e | 2015-10-09 08:32:21 +0530 | [diff] [blame] | 1346 | if (is_thp) |
Aneesh Kumar K.V | 6d492ec | 2013-06-20 14:30:21 +0530 | [diff] [blame] | 1347 | rc = __hash_page_thp(ea, access, vsid, (pmd_t *)ptep, |
Aneesh Kumar K.V | aefa568 | 2014-12-04 11:00:14 +0530 | [diff] [blame] | 1348 | trap, flags, ssize, psize); |
Aneesh Kumar K.V | 6d492ec | 2013-06-20 14:30:21 +0530 | [diff] [blame] | 1349 | #ifdef CONFIG_HUGETLB_PAGE |
| 1350 | else |
| 1351 | rc = __hash_page_huge(ea, access, vsid, ptep, trap, |
Aneesh Kumar K.V | aefa568 | 2014-12-04 11:00:14 +0530 | [diff] [blame] | 1352 | flags, ssize, hugeshift, psize); |
Aneesh Kumar K.V | 6d492ec | 2013-06-20 14:30:21 +0530 | [diff] [blame] | 1353 | #else |
| 1354 | else { |
| 1355 | /* |
| 1356 | * if we have hugeshift, and is not transhuge with |
| 1357 | * hugetlb disabled, something is really wrong. |
| 1358 | */ |
| 1359 | rc = 1; |
| 1360 | WARN_ON(1); |
| 1361 | } |
| 1362 | #endif |
Michael Ellerman | 54be0b9 | 2018-10-02 23:56:39 +1000 | [diff] [blame] | 1363 | if (current->mm == mm) |
| 1364 | check_paca_psize(ea, mm, psize, user_region); |
| 1365 | |
Li Zhong | ba12eed | 2013-05-13 16:16:41 +0000 | [diff] [blame] | 1366 | goto bail; |
| 1367 | } |
David Gibson | a4fe3ce | 2009-10-26 19:24:31 +0000 | [diff] [blame] | 1368 | |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 1369 | #ifndef CONFIG_PPC_64K_PAGES |
| 1370 | DBG_LOW(" i-pte: %016lx\n", pte_val(*ptep)); |
| 1371 | #else |
| 1372 | DBG_LOW(" i-pte: %016lx %016lx\n", pte_val(*ptep), |
| 1373 | pte_val(*(ptep + PTRS_PER_PTE))); |
| 1374 | #endif |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 1375 | /* Do actual hashing */ |
Benjamin Herrenschmidt | 16c2d47 | 2007-05-08 16:27:28 +1000 | [diff] [blame] | 1376 | #ifdef CONFIG_PPC_64K_PAGES |
Aneesh Kumar K.V | 945537d | 2016-04-29 23:25:45 +1000 | [diff] [blame] | 1377 | /* If H_PAGE_4K_PFN is set, make sure this is a 4k segment */ |
| 1378 | if ((pte_val(*ptep) & H_PAGE_4K_PFN) && psize == MMU_PAGE_64K) { |
Paul Mackerras | 721151d | 2007-04-03 21:24:02 +1000 | [diff] [blame] | 1379 | demote_segment_4k(mm, ea); |
| 1380 | psize = MMU_PAGE_4K; |
| 1381 | } |
| 1382 | |
Christophe Leroy | 47d9994 | 2019-03-29 10:00:00 +0000 | [diff] [blame] | 1383 | /* |
| 1384 | * If this PTE is non-cacheable and we have restrictions on |
Benjamin Herrenschmidt | 16f1c74 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 1385 | * using non cacheable large pages, then we switch to 4k |
| 1386 | */ |
Aneesh Kumar K.V | 30bda41 | 2016-04-29 23:25:38 +1000 | [diff] [blame] | 1387 | if (mmu_ci_restrictions && psize == MMU_PAGE_64K && pte_ci(*ptep)) { |
Benjamin Herrenschmidt | 16f1c74 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 1388 | if (user_region) { |
| 1389 | demote_segment_4k(mm, ea); |
| 1390 | psize = MMU_PAGE_4K; |
| 1391 | } else if (ea < VMALLOC_END) { |
| 1392 | /* |
| 1393 | * some driver did a non-cacheable mapping |
| 1394 | * in vmalloc space, so switch vmalloc |
| 1395 | * to 4k pages |
| 1396 | */ |
| 1397 | printk(KERN_ALERT "Reducing vmalloc segment " |
| 1398 | "to 4kB pages because of " |
| 1399 | "non-cacheable mapping\n"); |
| 1400 | psize = mmu_vmalloc_psize = MMU_PAGE_4K; |
Ian Munsie | be3ebfe | 2014-10-08 19:54:52 +1100 | [diff] [blame] | 1401 | copro_flush_all_slbs(mm); |
Paul Mackerras | bf72aeb | 2006-06-15 10:45:18 +1000 | [diff] [blame] | 1402 | } |
Benjamin Herrenschmidt | 16f1c74 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 1403 | } |
Michael Ellerman | 09567e7 | 2014-05-28 18:21:17 +1000 | [diff] [blame] | 1404 | |
Aneesh Kumar K.V | 0863d7f | 2015-11-28 22:39:33 +0530 | [diff] [blame] | 1405 | #endif /* CONFIG_PPC_64K_PAGES */ |
| 1406 | |
Michael Ellerman | 54be0b9 | 2018-10-02 23:56:39 +1000 | [diff] [blame] | 1407 | if (current->mm == mm) |
| 1408 | check_paca_psize(ea, mm, psize, user_region); |
| 1409 | |
Michael Ellerman | 73b341e | 2015-08-07 16:19:47 +1000 | [diff] [blame] | 1410 | #ifdef CONFIG_PPC_64K_PAGES |
Paul Mackerras | bf72aeb | 2006-06-15 10:45:18 +1000 | [diff] [blame] | 1411 | if (psize == MMU_PAGE_64K) |
Aneesh Kumar K.V | aefa568 | 2014-12-04 11:00:14 +0530 | [diff] [blame] | 1412 | rc = __hash_page_64K(ea, access, vsid, ptep, trap, |
| 1413 | flags, ssize); |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 1414 | else |
Michael Ellerman | 73b341e | 2015-08-07 16:19:47 +1000 | [diff] [blame] | 1415 | #endif /* CONFIG_PPC_64K_PAGES */ |
Paul Mackerras | fa28237 | 2008-01-24 08:35:13 +1100 | [diff] [blame] | 1416 | { |
David Gibson | a1128f8 | 2009-12-16 14:29:56 +0000 | [diff] [blame] | 1417 | int spp = subpage_protection(mm, ea); |
Paul Mackerras | fa28237 | 2008-01-24 08:35:13 +1100 | [diff] [blame] | 1418 | if (access & spp) |
| 1419 | rc = -2; |
| 1420 | else |
| 1421 | rc = __hash_page_4K(ea, access, vsid, ptep, trap, |
Aneesh Kumar K.V | aefa568 | 2014-12-04 11:00:14 +0530 | [diff] [blame] | 1422 | flags, ssize, spp); |
Paul Mackerras | fa28237 | 2008-01-24 08:35:13 +1100 | [diff] [blame] | 1423 | } |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 1424 | |
Christophe Leroy | 47d9994 | 2019-03-29 10:00:00 +0000 | [diff] [blame] | 1425 | /* |
| 1426 | * Dump some info in case of hash insertion failure, they should |
Benjamin Herrenschmidt | 4b8692c | 2010-07-23 10:31:13 +1000 | [diff] [blame] | 1427 | * never happen so it is really useful to know if/when they do |
| 1428 | */ |
| 1429 | if (rc == -1) |
| 1430 | hash_failure_debug(ea, access, vsid, trap, ssize, psize, |
Aneesh Kumar K.V | d8139eb | 2013-04-28 09:37:37 +0000 | [diff] [blame] | 1431 | psize, pte_val(*ptep)); |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 1432 | #ifndef CONFIG_PPC_64K_PAGES |
| 1433 | DBG_LOW(" o-pte: %016lx\n", pte_val(*ptep)); |
| 1434 | #else |
| 1435 | DBG_LOW(" o-pte: %016lx %016lx\n", pte_val(*ptep), |
| 1436 | pte_val(*(ptep + PTRS_PER_PTE))); |
| 1437 | #endif |
| 1438 | DBG_LOW(" -> rc=%d\n", rc); |
Li Zhong | ba12eed | 2013-05-13 16:16:41 +0000 | [diff] [blame] | 1439 | |
| 1440 | bail: |
| 1441 | exception_exit(prev_state); |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 1442 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1443 | } |
Ian Munsie | a1dca346 | 2014-10-08 19:54:58 +1100 | [diff] [blame] | 1444 | EXPORT_SYMBOL_GPL(hash_page_mm); |
| 1445 | |
Aneesh Kumar K.V | aefa568 | 2014-12-04 11:00:14 +0530 | [diff] [blame] | 1446 | int hash_page(unsigned long ea, unsigned long access, unsigned long trap, |
| 1447 | unsigned long dsisr) |
Ian Munsie | a1dca346 | 2014-10-08 19:54:58 +1100 | [diff] [blame] | 1448 | { |
Aneesh Kumar K.V | aefa568 | 2014-12-04 11:00:14 +0530 | [diff] [blame] | 1449 | unsigned long flags = 0; |
Ian Munsie | a1dca346 | 2014-10-08 19:54:58 +1100 | [diff] [blame] | 1450 | struct mm_struct *mm = current->mm; |
| 1451 | |
Aneesh Kumar K.V | 0034d39 | 2019-04-17 18:29:14 +0530 | [diff] [blame] | 1452 | if ((get_region_id(ea) == VMALLOC_REGION_ID) || |
| 1453 | (get_region_id(ea) == IO_REGION_ID)) |
Ian Munsie | a1dca346 | 2014-10-08 19:54:58 +1100 | [diff] [blame] | 1454 | mm = &init_mm; |
| 1455 | |
Aneesh Kumar K.V | aefa568 | 2014-12-04 11:00:14 +0530 | [diff] [blame] | 1456 | if (dsisr & DSISR_NOHPTE) |
| 1457 | flags |= HPTE_NOHPTE_UPDATE; |
| 1458 | |
| 1459 | return hash_page_mm(mm, ea, access, trap, flags); |
Ian Munsie | a1dca346 | 2014-10-08 19:54:58 +1100 | [diff] [blame] | 1460 | } |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 1461 | EXPORT_SYMBOL_GPL(hash_page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1462 | |
Aneesh Kumar K.V | 106713a | 2015-12-01 09:06:44 +0530 | [diff] [blame] | 1463 | int __hash_page(unsigned long ea, unsigned long msr, unsigned long trap, |
| 1464 | unsigned long dsisr) |
| 1465 | { |
Aneesh Kumar K.V | c7d5484 | 2016-04-29 23:25:30 +1000 | [diff] [blame] | 1466 | unsigned long access = _PAGE_PRESENT | _PAGE_READ; |
Aneesh Kumar K.V | 106713a | 2015-12-01 09:06:44 +0530 | [diff] [blame] | 1467 | unsigned long flags = 0; |
| 1468 | struct mm_struct *mm = current->mm; |
Aneesh Kumar K.V | 0034d39 | 2019-04-17 18:29:14 +0530 | [diff] [blame] | 1469 | unsigned int region_id = get_region_id(ea); |
Aneesh Kumar K.V | 106713a | 2015-12-01 09:06:44 +0530 | [diff] [blame] | 1470 | |
Aneesh Kumar K.V | 0034d39 | 2019-04-17 18:29:14 +0530 | [diff] [blame] | 1471 | if ((region_id == VMALLOC_REGION_ID) || (region_id == IO_REGION_ID)) |
Aneesh Kumar K.V | 106713a | 2015-12-01 09:06:44 +0530 | [diff] [blame] | 1472 | mm = &init_mm; |
| 1473 | |
| 1474 | if (dsisr & DSISR_NOHPTE) |
| 1475 | flags |= HPTE_NOHPTE_UPDATE; |
| 1476 | |
| 1477 | if (dsisr & DSISR_ISSTORE) |
Aneesh Kumar K.V | c7d5484 | 2016-04-29 23:25:30 +1000 | [diff] [blame] | 1478 | access |= _PAGE_WRITE; |
Aneesh Kumar K.V | 106713a | 2015-12-01 09:06:44 +0530 | [diff] [blame] | 1479 | /* |
Aneesh Kumar K.V | ac29c64 | 2016-04-29 23:25:34 +1000 | [diff] [blame] | 1480 | * We set _PAGE_PRIVILEGED only when |
| 1481 | * kernel mode access kernel space. |
| 1482 | * |
| 1483 | * _PAGE_PRIVILEGED is NOT set |
| 1484 | * 1) when kernel mode access user space |
| 1485 | * 2) user space access kernel space. |
Aneesh Kumar K.V | 106713a | 2015-12-01 09:06:44 +0530 | [diff] [blame] | 1486 | */ |
Aneesh Kumar K.V | ac29c64 | 2016-04-29 23:25:34 +1000 | [diff] [blame] | 1487 | access |= _PAGE_PRIVILEGED; |
Aneesh Kumar K.V | 0034d39 | 2019-04-17 18:29:14 +0530 | [diff] [blame] | 1488 | if ((msr & MSR_PR) || (region_id == USER_REGION_ID)) |
Aneesh Kumar K.V | ac29c64 | 2016-04-29 23:25:34 +1000 | [diff] [blame] | 1489 | access &= ~_PAGE_PRIVILEGED; |
Aneesh Kumar K.V | 106713a | 2015-12-01 09:06:44 +0530 | [diff] [blame] | 1490 | |
| 1491 | if (trap == 0x400) |
| 1492 | access |= _PAGE_EXEC; |
| 1493 | |
| 1494 | return hash_page_mm(mm, ea, access, trap, flags); |
| 1495 | } |
| 1496 | |
Michael Ellerman | 8bbc9b7 | 2016-05-06 16:46:00 +1000 | [diff] [blame] | 1497 | #ifdef CONFIG_PPC_MM_SLICES |
| 1498 | static bool should_hash_preload(struct mm_struct *mm, unsigned long ea) |
| 1499 | { |
Michael Ellerman | 54be0b9 | 2018-10-02 23:56:39 +1000 | [diff] [blame] | 1500 | int psize = get_slice_psize(mm, ea); |
Michael Ellerman | aac55d7 | 2016-05-06 16:47:12 +1000 | [diff] [blame] | 1501 | |
Michael Ellerman | 8bbc9b7 | 2016-05-06 16:46:00 +1000 | [diff] [blame] | 1502 | /* We only prefault standard pages for now */ |
Aneesh Kumar K.V | 60458fb | 2019-04-17 18:33:48 +0530 | [diff] [blame] | 1503 | if (unlikely(psize != mm_ctx_user_psize(&mm->context))) |
Michael Ellerman | aac55d7 | 2016-05-06 16:47:12 +1000 | [diff] [blame] | 1504 | return false; |
| 1505 | |
| 1506 | /* |
| 1507 | * Don't prefault if subpage protection is enabled for the EA. |
| 1508 | */ |
| 1509 | if (unlikely((psize == MMU_PAGE_4K) && subpage_protection(mm, ea))) |
Michael Ellerman | 8bbc9b7 | 2016-05-06 16:46:00 +1000 | [diff] [blame] | 1510 | return false; |
| 1511 | |
| 1512 | return true; |
| 1513 | } |
| 1514 | #else |
| 1515 | static bool should_hash_preload(struct mm_struct *mm, unsigned long ea) |
| 1516 | { |
| 1517 | return true; |
| 1518 | } |
| 1519 | #endif |
| 1520 | |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 1521 | void hash_preload(struct mm_struct *mm, unsigned long ea, |
Christophe Leroy | 34eb138 | 2018-10-09 13:51:54 +0000 | [diff] [blame] | 1522 | bool is_exec, unsigned long trap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1523 | { |
Aneesh Kumar K.V | 12bc9f6 | 2013-06-20 14:30:18 +0530 | [diff] [blame] | 1524 | int hugepage_shift; |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 1525 | unsigned long vsid; |
Michael Neuling | 0b97fee | 2010-11-17 18:52:45 +0000 | [diff] [blame] | 1526 | pgd_t *pgdir; |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 1527 | pte_t *ptep; |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 1528 | unsigned long flags; |
Aneesh Kumar K.V | aefa568 | 2014-12-04 11:00:14 +0530 | [diff] [blame] | 1529 | int rc, ssize, update_flags = 0; |
Christophe Leroy | 34eb138 | 2018-10-09 13:51:54 +0000 | [diff] [blame] | 1530 | unsigned long access = _PAGE_PRESENT | _PAGE_READ | (is_exec ? _PAGE_EXEC : 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1531 | |
Aneesh Kumar K.V | 0034d39 | 2019-04-17 18:29:14 +0530 | [diff] [blame] | 1532 | BUG_ON(get_region_id(ea) != USER_REGION_ID); |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 1533 | |
Michael Ellerman | 8bbc9b7 | 2016-05-06 16:46:00 +1000 | [diff] [blame] | 1534 | if (!should_hash_preload(mm, ea)) |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 1535 | return; |
| 1536 | |
| 1537 | DBG_LOW("hash_preload(mm=%p, mm->pgdir=%p, ea=%016lx, access=%lx," |
| 1538 | " trap=%lx\n", mm, mm->pgd, ea, access, trap); |
| 1539 | |
Benjamin Herrenschmidt | 16f1c74 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 1540 | /* Get Linux PTE if available */ |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 1541 | pgdir = mm->pgd; |
| 1542 | if (pgdir == NULL) |
| 1543 | return; |
Aneesh Kumar K.V | 0ac52dd | 2013-06-20 14:30:22 +0530 | [diff] [blame] | 1544 | |
| 1545 | /* Get VSID */ |
| 1546 | ssize = user_segment_size(ea); |
Aneesh Kumar K.V | f384796c | 2018-03-26 15:34:48 +0530 | [diff] [blame] | 1547 | vsid = get_user_vsid(&mm->context, ea, ssize); |
Aneesh Kumar K.V | 0ac52dd | 2013-06-20 14:30:22 +0530 | [diff] [blame] | 1548 | if (!vsid) |
| 1549 | return; |
| 1550 | /* |
| 1551 | * Hash doesn't like irqs. Walking linux page table with irq disabled |
| 1552 | * saves us from holding multiple locks. |
| 1553 | */ |
| 1554 | local_irq_save(flags); |
| 1555 | |
Aneesh Kumar K.V | 12bc9f6 | 2013-06-20 14:30:18 +0530 | [diff] [blame] | 1556 | /* |
| 1557 | * THP pages use update_mmu_cache_pmd. We don't do |
| 1558 | * hash preload there. Hence can ignore THP here |
| 1559 | */ |
Aneesh Kumar K.V | 94171b1 | 2017-07-27 11:54:53 +0530 | [diff] [blame] | 1560 | ptep = find_current_mm_pte(pgdir, ea, NULL, &hugepage_shift); |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 1561 | if (!ptep) |
Aneesh Kumar K.V | 0ac52dd | 2013-06-20 14:30:22 +0530 | [diff] [blame] | 1562 | goto out_exit; |
Benjamin Herrenschmidt | 16f1c74 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 1563 | |
Aneesh Kumar K.V | 12bc9f6 | 2013-06-20 14:30:18 +0530 | [diff] [blame] | 1564 | WARN_ON(hugepage_shift); |
Benjamin Herrenschmidt | 16f1c74 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 1565 | #ifdef CONFIG_PPC_64K_PAGES |
Aneesh Kumar K.V | 945537d | 2016-04-29 23:25:45 +1000 | [diff] [blame] | 1566 | /* If either H_PAGE_4K_PFN or cache inhibited is set (and we are on |
Benjamin Herrenschmidt | 16f1c74 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 1567 | * a 64K kernel), then we don't preload, hash_page() will take |
| 1568 | * care of it once we actually try to access the page. |
| 1569 | * That way we don't have to duplicate all of the logic for segment |
| 1570 | * page size demotion here |
| 1571 | */ |
Aneesh Kumar K.V | 945537d | 2016-04-29 23:25:45 +1000 | [diff] [blame] | 1572 | if ((pte_val(*ptep) & H_PAGE_4K_PFN) || pte_ci(*ptep)) |
Aneesh Kumar K.V | 0ac52dd | 2013-06-20 14:30:22 +0530 | [diff] [blame] | 1573 | goto out_exit; |
Benjamin Herrenschmidt | 16f1c74 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 1574 | #endif /* CONFIG_PPC_64K_PAGES */ |
| 1575 | |
Benjamin Herrenschmidt | 16c2d47 | 2007-05-08 16:27:28 +1000 | [diff] [blame] | 1576 | /* Is that local to this CPU ? */ |
Benjamin Herrenschmidt | b426e4b | 2017-07-24 14:28:01 +1000 | [diff] [blame] | 1577 | if (mm_is_thread_local(mm)) |
Aneesh Kumar K.V | aefa568 | 2014-12-04 11:00:14 +0530 | [diff] [blame] | 1578 | update_flags |= HPTE_LOCAL_UPDATE; |
Benjamin Herrenschmidt | 16c2d47 | 2007-05-08 16:27:28 +1000 | [diff] [blame] | 1579 | |
| 1580 | /* Hash it in */ |
Michael Ellerman | 73b341e | 2015-08-07 16:19:47 +1000 | [diff] [blame] | 1581 | #ifdef CONFIG_PPC_64K_PAGES |
Aneesh Kumar K.V | 60458fb | 2019-04-17 18:33:48 +0530 | [diff] [blame] | 1582 | if (mm_ctx_user_psize(&mm->context) == MMU_PAGE_64K) |
Aneesh Kumar K.V | aefa568 | 2014-12-04 11:00:14 +0530 | [diff] [blame] | 1583 | rc = __hash_page_64K(ea, access, vsid, ptep, trap, |
| 1584 | update_flags, ssize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1585 | else |
Michael Ellerman | 73b341e | 2015-08-07 16:19:47 +1000 | [diff] [blame] | 1586 | #endif /* CONFIG_PPC_64K_PAGES */ |
Aneesh Kumar K.V | aefa568 | 2014-12-04 11:00:14 +0530 | [diff] [blame] | 1587 | rc = __hash_page_4K(ea, access, vsid, ptep, trap, update_flags, |
| 1588 | ssize, subpage_protection(mm, ea)); |
Benjamin Herrenschmidt | 4b8692c | 2010-07-23 10:31:13 +1000 | [diff] [blame] | 1589 | |
| 1590 | /* Dump some info in case of hash insertion failure, they should |
| 1591 | * never happen so it is really useful to know if/when they do |
| 1592 | */ |
| 1593 | if (rc == -1) |
| 1594 | hash_failure_debug(ea, access, vsid, trap, ssize, |
Aneesh Kumar K.V | 60458fb | 2019-04-17 18:33:48 +0530 | [diff] [blame] | 1595 | mm_ctx_user_psize(&mm->context), |
| 1596 | mm_ctx_user_psize(&mm->context), |
Aneesh Kumar K.V | d8139eb | 2013-04-28 09:37:37 +0000 | [diff] [blame] | 1597 | pte_val(*ptep)); |
Aneesh Kumar K.V | 0ac52dd | 2013-06-20 14:30:22 +0530 | [diff] [blame] | 1598 | out_exit: |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 1599 | local_irq_restore(flags); |
| 1600 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1601 | |
Ram Pai | 087003e | 2018-01-18 17:50:41 -0800 | [diff] [blame] | 1602 | #ifdef CONFIG_PPC_MEM_KEYS |
| 1603 | /* |
| 1604 | * Return the protection key associated with the given address and the |
| 1605 | * mm_struct. |
| 1606 | */ |
| 1607 | u16 get_mm_addr_key(struct mm_struct *mm, unsigned long address) |
| 1608 | { |
| 1609 | pte_t *ptep; |
| 1610 | u16 pkey = 0; |
| 1611 | unsigned long flags; |
| 1612 | |
| 1613 | if (!mm || !mm->pgd) |
| 1614 | return 0; |
| 1615 | |
| 1616 | local_irq_save(flags); |
| 1617 | ptep = find_linux_pte(mm->pgd, address, NULL, NULL); |
| 1618 | if (ptep) |
| 1619 | pkey = pte_to_pkey_bits(pte_val(READ_ONCE(*ptep))); |
| 1620 | local_irq_restore(flags); |
| 1621 | |
| 1622 | return pkey; |
| 1623 | } |
| 1624 | #endif /* CONFIG_PPC_MEM_KEYS */ |
| 1625 | |
Rui Teng | f1a55ce | 2016-09-02 14:17:26 +0800 | [diff] [blame] | 1626 | #ifdef CONFIG_PPC_TRANSACTIONAL_MEM |
| 1627 | static inline void tm_flush_hash_page(int local) |
| 1628 | { |
| 1629 | /* |
| 1630 | * Transactions are not aborted by tlbiel, only tlbie. Without, syncing a |
| 1631 | * page back to a block device w/PIO could pick up transactional data |
| 1632 | * (bad!) so we force an abort here. Before the sync the page will be |
| 1633 | * made read-only, which will flush_hash_page. BIG ISSUE here: if the |
| 1634 | * kernel uses a page from userspace without unmapping it first, it may |
| 1635 | * see the speculated version. |
| 1636 | */ |
| 1637 | if (local && cpu_has_feature(CPU_FTR_TM) && current->thread.regs && |
| 1638 | MSR_TM_ACTIVE(current->thread.regs->msr)) { |
| 1639 | tm_enable(); |
| 1640 | tm_abort(TM_CAUSE_TLBI); |
| 1641 | } |
| 1642 | } |
| 1643 | #else |
| 1644 | static inline void tm_flush_hash_page(int local) |
| 1645 | { |
| 1646 | } |
| 1647 | #endif |
| 1648 | |
Ram Pai | 318995b | 2017-11-06 00:50:46 -0800 | [diff] [blame] | 1649 | /* |
| 1650 | * Return the global hash slot, corresponding to the given PTE, which contains |
| 1651 | * the HPTE. |
| 1652 | */ |
| 1653 | unsigned long pte_get_hash_gslot(unsigned long vpn, unsigned long shift, |
| 1654 | int ssize, real_pte_t rpte, unsigned int subpg_index) |
| 1655 | { |
| 1656 | unsigned long hash, gslot, hidx; |
| 1657 | |
| 1658 | hash = hpt_hash(vpn, shift, ssize); |
| 1659 | hidx = __rpte_to_hidx(rpte, subpg_index); |
| 1660 | if (hidx & _PTEIDX_SECONDARY) |
| 1661 | hash = ~hash; |
| 1662 | gslot = (hash & htab_hash_mask) * HPTES_PER_GROUP; |
| 1663 | gslot += hidx & _PTEIDX_GROUP_IX; |
| 1664 | return gslot; |
| 1665 | } |
| 1666 | |
Christophe Leroy | 47d9994 | 2019-03-29 10:00:00 +0000 | [diff] [blame] | 1667 | /* |
| 1668 | * WARNING: This is called from hash_low_64.S, if you change this prototype, |
Benjamin Herrenschmidt | f6ab0b9 | 2007-10-29 12:05:18 +1100 | [diff] [blame] | 1669 | * do not forget to update the assembly call site ! |
| 1670 | */ |
Aneesh Kumar K.V | 5524a27 | 2012-09-10 02:52:50 +0000 | [diff] [blame] | 1671 | void flush_hash_page(unsigned long vpn, real_pte_t pte, int psize, int ssize, |
Aneesh Kumar K.V | aefa568 | 2014-12-04 11:00:14 +0530 | [diff] [blame] | 1672 | unsigned long flags) |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 1673 | { |
Ram Pai | a854868 | 2017-11-06 00:50:51 -0800 | [diff] [blame] | 1674 | unsigned long index, shift, gslot; |
Aneesh Kumar K.V | aefa568 | 2014-12-04 11:00:14 +0530 | [diff] [blame] | 1675 | int local = flags & HPTE_LOCAL_UPDATE; |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 1676 | |
Aneesh Kumar K.V | 5524a27 | 2012-09-10 02:52:50 +0000 | [diff] [blame] | 1677 | DBG_LOW("flush_hash_page(vpn=%016lx)\n", vpn); |
| 1678 | pte_iterate_hashed_subpages(pte, psize, vpn, index, shift) { |
Ram Pai | a854868 | 2017-11-06 00:50:51 -0800 | [diff] [blame] | 1679 | gslot = pte_get_hash_gslot(vpn, shift, ssize, pte, index); |
| 1680 | DBG_LOW(" sub %ld: gslot=%lx\n", index, gslot); |
Aneesh Kumar K.V | db3d853 | 2013-06-20 14:30:13 +0530 | [diff] [blame] | 1681 | /* |
| 1682 | * We use same base page size and actual psize, because we don't |
| 1683 | * use these functions for hugepage |
| 1684 | */ |
Ram Pai | a854868 | 2017-11-06 00:50:51 -0800 | [diff] [blame] | 1685 | mmu_hash_ops.hpte_invalidate(gslot, vpn, psize, psize, |
Benjamin Herrenschmidt | 7025776 | 2016-07-05 15:03:58 +1000 | [diff] [blame] | 1686 | ssize, local); |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 1687 | } pte_iterate_hashed_end(); |
Michael Neuling | bc2a940 | 2013-02-13 16:21:40 +0000 | [diff] [blame] | 1688 | |
Rui Teng | f1a55ce | 2016-09-02 14:17:26 +0800 | [diff] [blame] | 1689 | tm_flush_hash_page(local); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1690 | } |
| 1691 | |
Aneesh Kumar K.V | f1581bf | 2014-11-02 21:15:27 +0530 | [diff] [blame] | 1692 | #ifdef CONFIG_TRANSPARENT_HUGEPAGE |
| 1693 | void flush_hash_hugepage(unsigned long vsid, unsigned long addr, |
Aneesh Kumar K.V | aefa568 | 2014-12-04 11:00:14 +0530 | [diff] [blame] | 1694 | pmd_t *pmdp, unsigned int psize, int ssize, |
| 1695 | unsigned long flags) |
Aneesh Kumar K.V | f1581bf | 2014-11-02 21:15:27 +0530 | [diff] [blame] | 1696 | { |
| 1697 | int i, max_hpte_count, valid; |
| 1698 | unsigned long s_addr; |
| 1699 | unsigned char *hpte_slot_array; |
| 1700 | unsigned long hidx, shift, vpn, hash, slot; |
Aneesh Kumar K.V | aefa568 | 2014-12-04 11:00:14 +0530 | [diff] [blame] | 1701 | int local = flags & HPTE_LOCAL_UPDATE; |
Aneesh Kumar K.V | f1581bf | 2014-11-02 21:15:27 +0530 | [diff] [blame] | 1702 | |
| 1703 | s_addr = addr & HPAGE_PMD_MASK; |
| 1704 | hpte_slot_array = get_hpte_slot_array(pmdp); |
| 1705 | /* |
| 1706 | * IF we try to do a HUGE PTE update after a withdraw is done. |
| 1707 | * we will find the below NULL. This happens when we do |
| 1708 | * split_huge_page_pmd |
| 1709 | */ |
| 1710 | if (!hpte_slot_array) |
| 1711 | return; |
| 1712 | |
Benjamin Herrenschmidt | 7025776 | 2016-07-05 15:03:58 +1000 | [diff] [blame] | 1713 | if (mmu_hash_ops.hugepage_invalidate) { |
| 1714 | mmu_hash_ops.hugepage_invalidate(vsid, s_addr, hpte_slot_array, |
| 1715 | psize, ssize, local); |
Aneesh Kumar K.V | d557b09 | 2014-11-02 21:15:28 +0530 | [diff] [blame] | 1716 | goto tm_abort; |
| 1717 | } |
Aneesh Kumar K.V | f1581bf | 2014-11-02 21:15:27 +0530 | [diff] [blame] | 1718 | /* |
| 1719 | * No bluk hpte removal support, invalidate each entry |
| 1720 | */ |
| 1721 | shift = mmu_psize_defs[psize].shift; |
| 1722 | max_hpte_count = HPAGE_PMD_SIZE >> shift; |
| 1723 | for (i = 0; i < max_hpte_count; i++) { |
| 1724 | /* |
| 1725 | * 8 bits per each hpte entries |
| 1726 | * 000| [ secondary group (one bit) | hidx (3 bits) | valid bit] |
| 1727 | */ |
| 1728 | valid = hpte_valid(hpte_slot_array, i); |
| 1729 | if (!valid) |
| 1730 | continue; |
| 1731 | hidx = hpte_hash_index(hpte_slot_array, i); |
| 1732 | |
| 1733 | /* get the vpn */ |
| 1734 | addr = s_addr + (i * (1ul << shift)); |
| 1735 | vpn = hpt_vpn(addr, vsid, ssize); |
| 1736 | hash = hpt_hash(vpn, shift, ssize); |
| 1737 | if (hidx & _PTEIDX_SECONDARY) |
| 1738 | hash = ~hash; |
| 1739 | |
| 1740 | slot = (hash & htab_hash_mask) * HPTES_PER_GROUP; |
| 1741 | slot += hidx & _PTEIDX_GROUP_IX; |
Benjamin Herrenschmidt | 7025776 | 2016-07-05 15:03:58 +1000 | [diff] [blame] | 1742 | mmu_hash_ops.hpte_invalidate(slot, vpn, psize, |
| 1743 | MMU_PAGE_16M, ssize, local); |
Aneesh Kumar K.V | f1581bf | 2014-11-02 21:15:27 +0530 | [diff] [blame] | 1744 | } |
Aneesh Kumar K.V | d557b09 | 2014-11-02 21:15:28 +0530 | [diff] [blame] | 1745 | tm_abort: |
Rui Teng | f1a55ce | 2016-09-02 14:17:26 +0800 | [diff] [blame] | 1746 | tm_flush_hash_page(local); |
Aneesh Kumar K.V | f1581bf | 2014-11-02 21:15:27 +0530 | [diff] [blame] | 1747 | } |
| 1748 | #endif /* CONFIG_TRANSPARENT_HUGEPAGE */ |
| 1749 | |
Benjamin Herrenschmidt | 61b1a94 | 2005-09-20 13:52:50 +1000 | [diff] [blame] | 1750 | void flush_hash_range(unsigned long number, int local) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1751 | { |
Benjamin Herrenschmidt | 7025776 | 2016-07-05 15:03:58 +1000 | [diff] [blame] | 1752 | if (mmu_hash_ops.flush_hash_range) |
| 1753 | mmu_hash_ops.flush_hash_range(number, local); |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 1754 | else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1755 | int i; |
Benjamin Herrenschmidt | 61b1a94 | 2005-09-20 13:52:50 +1000 | [diff] [blame] | 1756 | struct ppc64_tlb_batch *batch = |
Christoph Lameter | 69111ba | 2014-10-21 15:23:25 -0500 | [diff] [blame] | 1757 | this_cpu_ptr(&ppc64_tlb_batch); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1758 | |
| 1759 | for (i = 0; i < number; i++) |
Aneesh Kumar K.V | 5524a27 | 2012-09-10 02:52:50 +0000 | [diff] [blame] | 1760 | flush_hash_page(batch->vpn[i], batch->pte[i], |
Paul Mackerras | 1189be6 | 2007-10-11 20:37:10 +1000 | [diff] [blame] | 1761 | batch->psize, batch->ssize, local); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1762 | } |
| 1763 | } |
| 1764 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1765 | /* |
| 1766 | * low_hash_fault is called when we the low level hash code failed |
| 1767 | * to instert a PTE due to an hypervisor error |
| 1768 | */ |
Paul Mackerras | fa28237 | 2008-01-24 08:35:13 +1100 | [diff] [blame] | 1769 | void low_hash_fault(struct pt_regs *regs, unsigned long address, int rc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1770 | { |
Li Zhong | ba12eed | 2013-05-13 16:16:41 +0000 | [diff] [blame] | 1771 | enum ctx_state prev_state = exception_enter(); |
| 1772 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1773 | if (user_mode(regs)) { |
Paul Mackerras | fa28237 | 2008-01-24 08:35:13 +1100 | [diff] [blame] | 1774 | #ifdef CONFIG_PPC_SUBPAGE_PROT |
| 1775 | if (rc == -2) |
| 1776 | _exception(SIGSEGV, regs, SEGV_ACCERR, address); |
| 1777 | else |
| 1778 | #endif |
| 1779 | _exception(SIGBUS, regs, BUS_ADRERR, address); |
| 1780 | } else |
| 1781 | bad_page_fault(regs, address, SIGBUS); |
Li Zhong | ba12eed | 2013-05-13 16:16:41 +0000 | [diff] [blame] | 1782 | |
| 1783 | exception_exit(prev_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1784 | } |
Benjamin Herrenschmidt | 370a908 | 2007-04-12 15:30:23 +1000 | [diff] [blame] | 1785 | |
Li Zhong | b170bd3 | 2013-04-15 16:53:19 +0000 | [diff] [blame] | 1786 | long hpte_insert_repeating(unsigned long hash, unsigned long vpn, |
| 1787 | unsigned long pa, unsigned long rflags, |
| 1788 | unsigned long vflags, int psize, int ssize) |
| 1789 | { |
| 1790 | unsigned long hpte_group; |
| 1791 | long slot; |
| 1792 | |
| 1793 | repeat: |
Aneesh Kumar K.V | 1531cff | 2018-06-29 14:06:29 +0530 | [diff] [blame] | 1794 | hpte_group = (hash & htab_hash_mask) * HPTES_PER_GROUP; |
Li Zhong | b170bd3 | 2013-04-15 16:53:19 +0000 | [diff] [blame] | 1795 | |
| 1796 | /* Insert into the hash table, primary slot */ |
Benjamin Herrenschmidt | 7025776 | 2016-07-05 15:03:58 +1000 | [diff] [blame] | 1797 | slot = mmu_hash_ops.hpte_insert(hpte_group, vpn, pa, rflags, vflags, |
| 1798 | psize, psize, ssize); |
Li Zhong | b170bd3 | 2013-04-15 16:53:19 +0000 | [diff] [blame] | 1799 | |
| 1800 | /* Primary is full, try the secondary */ |
| 1801 | if (unlikely(slot == -1)) { |
Aneesh Kumar K.V | 1531cff | 2018-06-29 14:06:29 +0530 | [diff] [blame] | 1802 | hpte_group = (~hash & htab_hash_mask) * HPTES_PER_GROUP; |
Benjamin Herrenschmidt | 7025776 | 2016-07-05 15:03:58 +1000 | [diff] [blame] | 1803 | slot = mmu_hash_ops.hpte_insert(hpte_group, vpn, pa, rflags, |
| 1804 | vflags | HPTE_V_SECONDARY, |
| 1805 | psize, psize, ssize); |
Li Zhong | b170bd3 | 2013-04-15 16:53:19 +0000 | [diff] [blame] | 1806 | if (slot == -1) { |
| 1807 | if (mftb() & 0x1) |
Aneesh Kumar K.V | 1531cff | 2018-06-29 14:06:29 +0530 | [diff] [blame] | 1808 | hpte_group = (hash & htab_hash_mask) * |
| 1809 | HPTES_PER_GROUP; |
Li Zhong | b170bd3 | 2013-04-15 16:53:19 +0000 | [diff] [blame] | 1810 | |
Benjamin Herrenschmidt | 7025776 | 2016-07-05 15:03:58 +1000 | [diff] [blame] | 1811 | mmu_hash_ops.hpte_remove(hpte_group); |
Li Zhong | b170bd3 | 2013-04-15 16:53:19 +0000 | [diff] [blame] | 1812 | goto repeat; |
| 1813 | } |
| 1814 | } |
| 1815 | |
| 1816 | return slot; |
| 1817 | } |
| 1818 | |
Benjamin Herrenschmidt | 370a908 | 2007-04-12 15:30:23 +1000 | [diff] [blame] | 1819 | #ifdef CONFIG_DEBUG_PAGEALLOC |
| 1820 | static void kernel_map_linear_page(unsigned long vaddr, unsigned long lmi) |
| 1821 | { |
Li Zhong | 016af59 | 2013-04-15 16:53:20 +0000 | [diff] [blame] | 1822 | unsigned long hash; |
Paul Mackerras | 1189be6 | 2007-10-11 20:37:10 +1000 | [diff] [blame] | 1823 | unsigned long vsid = get_kernel_vsid(vaddr, mmu_kernel_ssize); |
Aneesh Kumar K.V | 5524a27 | 2012-09-10 02:52:50 +0000 | [diff] [blame] | 1824 | unsigned long vpn = hpt_vpn(vaddr, vsid, mmu_kernel_ssize); |
Michael Ellerman | 09f3f32 | 2015-06-01 21:11:35 +1000 | [diff] [blame] | 1825 | unsigned long mode = htab_convert_pte_flags(pgprot_val(PAGE_KERNEL)); |
Li Zhong | 016af59 | 2013-04-15 16:53:20 +0000 | [diff] [blame] | 1826 | long ret; |
Benjamin Herrenschmidt | 370a908 | 2007-04-12 15:30:23 +1000 | [diff] [blame] | 1827 | |
Aneesh Kumar K.V | 5524a27 | 2012-09-10 02:52:50 +0000 | [diff] [blame] | 1828 | hash = hpt_hash(vpn, PAGE_SHIFT, mmu_kernel_ssize); |
Benjamin Herrenschmidt | 370a908 | 2007-04-12 15:30:23 +1000 | [diff] [blame] | 1829 | |
Aneesh Kumar K.V | c60ac56 | 2013-03-13 03:34:54 +0000 | [diff] [blame] | 1830 | /* Don't create HPTE entries for bad address */ |
| 1831 | if (!vsid) |
| 1832 | return; |
Li Zhong | 016af59 | 2013-04-15 16:53:20 +0000 | [diff] [blame] | 1833 | |
| 1834 | ret = hpte_insert_repeating(hash, vpn, __pa(vaddr), mode, |
| 1835 | HPTE_V_BOLTED, |
| 1836 | mmu_linear_psize, mmu_kernel_ssize); |
| 1837 | |
Benjamin Herrenschmidt | 370a908 | 2007-04-12 15:30:23 +1000 | [diff] [blame] | 1838 | BUG_ON (ret < 0); |
| 1839 | spin_lock(&linear_map_hash_lock); |
| 1840 | BUG_ON(linear_map_hash_slots[lmi] & 0x80); |
| 1841 | linear_map_hash_slots[lmi] = ret | 0x80; |
| 1842 | spin_unlock(&linear_map_hash_lock); |
| 1843 | } |
| 1844 | |
| 1845 | static void kernel_unmap_linear_page(unsigned long vaddr, unsigned long lmi) |
| 1846 | { |
Paul Mackerras | 1189be6 | 2007-10-11 20:37:10 +1000 | [diff] [blame] | 1847 | unsigned long hash, hidx, slot; |
| 1848 | unsigned long vsid = get_kernel_vsid(vaddr, mmu_kernel_ssize); |
Aneesh Kumar K.V | 5524a27 | 2012-09-10 02:52:50 +0000 | [diff] [blame] | 1849 | unsigned long vpn = hpt_vpn(vaddr, vsid, mmu_kernel_ssize); |
Benjamin Herrenschmidt | 370a908 | 2007-04-12 15:30:23 +1000 | [diff] [blame] | 1850 | |
Aneesh Kumar K.V | 5524a27 | 2012-09-10 02:52:50 +0000 | [diff] [blame] | 1851 | hash = hpt_hash(vpn, PAGE_SHIFT, mmu_kernel_ssize); |
Benjamin Herrenschmidt | 370a908 | 2007-04-12 15:30:23 +1000 | [diff] [blame] | 1852 | spin_lock(&linear_map_hash_lock); |
| 1853 | BUG_ON(!(linear_map_hash_slots[lmi] & 0x80)); |
| 1854 | hidx = linear_map_hash_slots[lmi] & 0x7f; |
| 1855 | linear_map_hash_slots[lmi] = 0; |
| 1856 | spin_unlock(&linear_map_hash_lock); |
| 1857 | if (hidx & _PTEIDX_SECONDARY) |
| 1858 | hash = ~hash; |
| 1859 | slot = (hash & htab_hash_mask) * HPTES_PER_GROUP; |
| 1860 | slot += hidx & _PTEIDX_GROUP_IX; |
Benjamin Herrenschmidt | 7025776 | 2016-07-05 15:03:58 +1000 | [diff] [blame] | 1861 | mmu_hash_ops.hpte_invalidate(slot, vpn, mmu_linear_psize, |
| 1862 | mmu_linear_psize, |
| 1863 | mmu_kernel_ssize, 0); |
Benjamin Herrenschmidt | 370a908 | 2007-04-12 15:30:23 +1000 | [diff] [blame] | 1864 | } |
| 1865 | |
Joonsoo Kim | 031bc57 | 2014-12-12 16:55:52 -0800 | [diff] [blame] | 1866 | void __kernel_map_pages(struct page *page, int numpages, int enable) |
Benjamin Herrenschmidt | 370a908 | 2007-04-12 15:30:23 +1000 | [diff] [blame] | 1867 | { |
| 1868 | unsigned long flags, vaddr, lmi; |
| 1869 | int i; |
| 1870 | |
| 1871 | local_irq_save(flags); |
| 1872 | for (i = 0; i < numpages; i++, page++) { |
| 1873 | vaddr = (unsigned long)page_address(page); |
| 1874 | lmi = __pa(vaddr) >> PAGE_SHIFT; |
| 1875 | if (lmi >= linear_map_hash_count) |
| 1876 | continue; |
| 1877 | if (enable) |
| 1878 | kernel_map_linear_page(vaddr, lmi); |
| 1879 | else |
| 1880 | kernel_unmap_linear_page(vaddr, lmi); |
| 1881 | } |
| 1882 | local_irq_restore(flags); |
| 1883 | } |
| 1884 | #endif /* CONFIG_DEBUG_PAGEALLOC */ |
Benjamin Herrenschmidt | cd3db0c | 2010-07-06 15:39:02 -0700 | [diff] [blame] | 1885 | |
Aneesh Kumar K.V | 756d08d | 2016-04-29 23:25:57 +1000 | [diff] [blame] | 1886 | void hash__setup_initial_memory_limit(phys_addr_t first_memblock_base, |
Benjamin Herrenschmidt | cd3db0c | 2010-07-06 15:39:02 -0700 | [diff] [blame] | 1887 | phys_addr_t first_memblock_size) |
| 1888 | { |
Christophe Leroy | 47d9994 | 2019-03-29 10:00:00 +0000 | [diff] [blame] | 1889 | /* |
| 1890 | * We don't currently support the first MEMBLOCK not mapping 0 |
Benjamin Herrenschmidt | cd3db0c | 2010-07-06 15:39:02 -0700 | [diff] [blame] | 1891 | * physical on those processors |
| 1892 | */ |
| 1893 | BUG_ON(first_memblock_base != 0); |
| 1894 | |
Nicholas Piggin | 1513c33 | 2017-12-22 21:17:08 +1000 | [diff] [blame] | 1895 | /* |
| 1896 | * On virtualized systems the first entry is our RMA region aka VRMA, |
| 1897 | * non-virtualized 64-bit hash MMU systems don't have a limitation |
| 1898 | * on real mode access. |
| 1899 | * |
Nicholas Piggin | c610d65 | 2017-12-22 21:17:12 +1000 | [diff] [blame] | 1900 | * For guests on platforms before POWER9, we clamp the it limit to 1G |
| 1901 | * to avoid some funky things such as RTAS bugs etc... |
Benjamin Herrenschmidt | cd3db0c | 2010-07-06 15:39:02 -0700 | [diff] [blame] | 1902 | */ |
Nicholas Piggin | 1513c33 | 2017-12-22 21:17:08 +1000 | [diff] [blame] | 1903 | if (!early_cpu_has_feature(CPU_FTR_HVMODE)) { |
Nicholas Piggin | c610d65 | 2017-12-22 21:17:12 +1000 | [diff] [blame] | 1904 | ppc64_rma_size = first_memblock_size; |
| 1905 | if (!early_cpu_has_feature(CPU_FTR_ARCH_300)) |
| 1906 | ppc64_rma_size = min_t(u64, ppc64_rma_size, 0x40000000); |
Benjamin Herrenschmidt | cd3db0c | 2010-07-06 15:39:02 -0700 | [diff] [blame] | 1907 | |
Nicholas Piggin | 1513c33 | 2017-12-22 21:17:08 +1000 | [diff] [blame] | 1908 | /* Finally limit subsequent allocations */ |
| 1909 | memblock_set_current_limit(ppc64_rma_size); |
| 1910 | } else { |
| 1911 | ppc64_rma_size = ULONG_MAX; |
| 1912 | } |
Benjamin Herrenschmidt | cd3db0c | 2010-07-06 15:39:02 -0700 | [diff] [blame] | 1913 | } |
David Gibson | dbcf929 | 2016-12-09 11:07:36 +1100 | [diff] [blame] | 1914 | |
| 1915 | #ifdef CONFIG_DEBUG_FS |
| 1916 | |
| 1917 | static int hpt_order_get(void *data, u64 *val) |
| 1918 | { |
| 1919 | *val = ppc64_pft_size; |
| 1920 | return 0; |
| 1921 | } |
| 1922 | |
| 1923 | static int hpt_order_set(void *data, u64 val) |
| 1924 | { |
| 1925 | if (!mmu_hash_ops.resize_hpt) |
| 1926 | return -ENODEV; |
| 1927 | |
| 1928 | return mmu_hash_ops.resize_hpt(val); |
| 1929 | } |
| 1930 | |
YueHaibing | 7cd4774 | 2019-01-09 12:10:58 +0000 | [diff] [blame] | 1931 | DEFINE_DEBUGFS_ATTRIBUTE(fops_hpt_order, hpt_order_get, hpt_order_set, "%llu\n"); |
David Gibson | dbcf929 | 2016-12-09 11:07:36 +1100 | [diff] [blame] | 1932 | |
| 1933 | static int __init hash64_debugfs(void) |
| 1934 | { |
YueHaibing | 7cd4774 | 2019-01-09 12:10:58 +0000 | [diff] [blame] | 1935 | if (!debugfs_create_file_unsafe("hpt_order", 0600, powerpc_debugfs_root, |
| 1936 | NULL, &fops_hpt_order)) { |
David Gibson | dbcf929 | 2016-12-09 11:07:36 +1100 | [diff] [blame] | 1937 | pr_err("lpar: unable to create hpt_order debugsfs file\n"); |
| 1938 | } |
| 1939 | |
| 1940 | return 0; |
| 1941 | } |
| 1942 | machine_device_initcall(pseries, hash64_debugfs); |
David Gibson | dbcf929 | 2016-12-09 11:07:36 +1100 | [diff] [blame] | 1943 | #endif /* CONFIG_DEBUG_FS */ |
Christophe Leroy | e4dccf9 | 2019-04-26 16:36:39 +0000 | [diff] [blame] | 1944 | |
| 1945 | void __init print_system_hash_info(void) |
| 1946 | { |
| 1947 | pr_info("ppc64_pft_size = 0x%llx\n", ppc64_pft_size); |
| 1948 | |
| 1949 | if (htab_hash_mask) |
| 1950 | pr_info("htab_hash_mask = 0x%lx\n", htab_hash_mask); |
| 1951 | pr_info("kernel vmalloc start = 0x%lx\n", KERN_VIRT_START); |
| 1952 | pr_info("kernel IO start = 0x%lx\n", KERN_IO_START); |
| 1953 | pr_info("kernel vmemmap start = 0x%lx\n", (unsigned long)vmemmap); |
| 1954 | } |