blob: 65bb8f33b399bf13bcedd115f4ce86ed1c0dad5b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * native hashtable management.
3 *
4 * SMP scalability work:
5 * Copyright (C) 2001 Anton Blanchard <anton@au.ibm.com>, IBM
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110012
13#undef DEBUG_LOW
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/spinlock.h>
16#include <linux/bitops.h>
Michael Ellermanbeacc6d2012-07-25 21:20:03 +000017#include <linux/of.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/threads.h>
19#include <linux/smp.h>
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/machdep.h>
22#include <asm/mmu.h>
23#include <asm/mmu_context.h>
24#include <asm/pgtable.h>
25#include <asm/tlbflush.h>
26#include <asm/tlb.h>
27#include <asm/cputable.h>
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110028#include <asm/udbg.h>
Luke Browning71bf08b2007-05-03 00:19:11 +100029#include <asm/kexec.h>
Milton Miller60dbf432009-04-29 20:58:01 +000030#include <asm/ppc-opcode.h>
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110031
Michael Neulingec249dd2015-05-27 16:07:16 +100032#include <misc/cxl-base.h>
Ian Munsie4c6d9ac2014-10-08 19:55:00 +110033
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110034#ifdef DEBUG_LOW
35#define DBG_LOW(fmt...) udbg_printf(fmt)
36#else
37#define DBG_LOW(fmt...)
38#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Anton Blanchard12f04f22013-09-23 12:04:36 +100040#ifdef __BIG_ENDIAN__
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#define HPTE_LOCK_BIT 3
Anton Blanchard12f04f22013-09-23 12:04:36 +100042#else
43#define HPTE_LOCK_BIT (56+3)
44#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Paul Mackerras9e368f22011-06-29 00:40:08 +000046DEFINE_RAW_SPINLOCK(native_tlbie_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +000048static inline void __tlbie(unsigned long vpn, int psize, int apsize, int ssize)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110049{
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +000050 unsigned long va;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110051 unsigned int penc;
Aneesh Kumar K.Vde640952013-07-04 10:34:45 +053052 unsigned long sllp;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110053
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +000054 /*
55 * We need 14 to 65 bits of va for a tlibe of 4K page
56 * With vpn we ignore the lower VPN_SHIFT bits already.
57 * And top two bits are already ignored because we can
Michael Ellerman027dfac2016-06-01 16:34:37 +100058 * only accomodate 76 bits in a 64 bit vpn with a VPN_SHIFT
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +000059 * of 12.
60 */
61 va = vpn << VPN_SHIFT;
62 /*
63 * clear top 16 bits of 64bit va, non SLS segment
64 * Older versions of the architecture (2.02 and earler) require the
65 * masking of the top 16 bits.
66 */
Aneesh Kumar K.Vaccfad72016-07-13 15:05:24 +053067 if (mmu_has_feature(MMU_FTR_TLBIE_CROP_VA))
68 va &= ~(0xffffULL << 48);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110069
70 switch (psize) {
71 case MMU_PAGE_4K:
Aneesh Kumar K.V1f6aaac2013-04-28 09:37:39 +000072 /* clear out bits after (52) [0....52.....63] */
73 va &= ~((1ul << (64 - 52)) - 1);
Paul Mackerras1189be62007-10-11 20:37:10 +100074 va |= ssize << 8;
Aneesh Kumar K.V138ee7e2016-07-13 15:06:37 +053075 sllp = get_sllp_encoding(apsize);
Aneesh Kumar K.Vde640952013-07-04 10:34:45 +053076 va |= sllp << 5;
Michael Neulinga32e2522011-04-06 18:23:29 +000077 asm volatile(ASM_FTR_IFCLR("tlbie %0,0", PPC_TLBIE(%1,%0), %2)
Paul Mackerras969391c2011-06-29 00:26:11 +000078 : : "r" (va), "r"(0), "i" (CPU_FTR_ARCH_206)
Milton Miller60dbf432009-04-29 20:58:01 +000079 : "memory");
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110080 break;
81 default:
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +000082 /* We need 14 to 14 + i bits of va */
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +000083 penc = mmu_psize_defs[psize].penc[apsize];
Aneesh Kumar K.V1f6aaac2013-04-28 09:37:39 +000084 va &= ~((1ul << mmu_psize_defs[apsize].shift) - 1);
Arnd Bergmann19242b22006-06-15 21:15:44 +100085 va |= penc << 12;
Paul Mackerras1189be62007-10-11 20:37:10 +100086 va |= ssize << 8;
Aneesh Kumar K.V29ef7a32014-04-21 10:37:36 +053087 /*
88 * AVAL bits:
89 * We don't need all the bits, but rest of the bits
90 * must be ignored by the processor.
91 * vpn cover upto 65 bits of va. (0...65) and we need
92 * 58..64 bits of va.
93 */
94 va |= (vpn & 0xfe); /* AVAL */
Milton Miller60dbf432009-04-29 20:58:01 +000095 va |= 1; /* L */
Michael Neulinga32e2522011-04-06 18:23:29 +000096 asm volatile(ASM_FTR_IFCLR("tlbie %0,1", PPC_TLBIE(%1,%0), %2)
Paul Mackerras969391c2011-06-29 00:26:11 +000097 : : "r" (va), "r"(0), "i" (CPU_FTR_ARCH_206)
Milton Miller60dbf432009-04-29 20:58:01 +000098 : "memory");
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110099 break;
100 }
101}
102
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000103static inline void __tlbiel(unsigned long vpn, int psize, int apsize, int ssize)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100104{
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000105 unsigned long va;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100106 unsigned int penc;
Aneesh Kumar K.Vde640952013-07-04 10:34:45 +0530107 unsigned long sllp;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100108
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000109 /* VPN_SHIFT can be atmost 12 */
110 va = vpn << VPN_SHIFT;
111 /*
112 * clear top 16 bits of 64 bit va, non SLS segment
113 * Older versions of the architecture (2.02 and earler) require the
114 * masking of the top 16 bits.
115 */
Aneesh Kumar K.Vaccfad72016-07-13 15:05:24 +0530116 if (mmu_has_feature(MMU_FTR_TLBIE_CROP_VA))
117 va &= ~(0xffffULL << 48);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100118
119 switch (psize) {
120 case MMU_PAGE_4K:
Aneesh Kumar K.V1f6aaac2013-04-28 09:37:39 +0000121 /* clear out bits after(52) [0....52.....63] */
122 va &= ~((1ul << (64 - 52)) - 1);
Paul Mackerras1189be62007-10-11 20:37:10 +1000123 va |= ssize << 8;
Aneesh Kumar K.V138ee7e2016-07-13 15:06:37 +0530124 sllp = get_sllp_encoding(apsize);
Aneesh Kumar K.Vde640952013-07-04 10:34:45 +0530125 va |= sllp << 5;
Balbir Singhf923efb2016-09-28 17:25:52 +1000126 asm volatile(ASM_FTR_IFSET("tlbiel %0", "tlbiel %0,0", %1)
127 : : "r" (va), "i" (CPU_FTR_ARCH_206)
128 : "memory");
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100129 break;
130 default:
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000131 /* We need 14 to 14 + i bits of va */
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000132 penc = mmu_psize_defs[psize].penc[apsize];
Aneesh Kumar K.V1f6aaac2013-04-28 09:37:39 +0000133 va &= ~((1ul << mmu_psize_defs[apsize].shift) - 1);
Arnd Bergmann19242b22006-06-15 21:15:44 +1000134 va |= penc << 12;
Paul Mackerras1189be62007-10-11 20:37:10 +1000135 va |= ssize << 8;
Aneesh Kumar K.V29ef7a32014-04-21 10:37:36 +0530136 /*
137 * AVAL bits:
138 * We don't need all the bits, but rest of the bits
139 * must be ignored by the processor.
140 * vpn cover upto 65 bits of va. (0...65) and we need
141 * 58..64 bits of va.
142 */
143 va |= (vpn & 0xfe);
Milton Miller60dbf432009-04-29 20:58:01 +0000144 va |= 1; /* L */
Balbir Singhf923efb2016-09-28 17:25:52 +1000145 asm volatile(ASM_FTR_IFSET("tlbiel %0", "tlbiel %0,1", %1)
146 : : "r" (va), "i" (CPU_FTR_ARCH_206)
147 : "memory");
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100148 break;
149 }
150
151}
152
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000153static inline void tlbie(unsigned long vpn, int psize, int apsize,
154 int ssize, int local)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100155{
Ian Munsie4c6d9ac2014-10-08 19:55:00 +1100156 unsigned int use_local;
Matt Evans44ae3ab2011-04-06 19:48:50 +0000157 int lock_tlbie = !mmu_has_feature(MMU_FTR_LOCKLESS_TLBIE);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100158
Ian Munsie4c6d9ac2014-10-08 19:55:00 +1100159 use_local = local && mmu_has_feature(MMU_FTR_TLBIEL) && !cxl_ctx_in_use();
160
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100161 if (use_local)
162 use_local = mmu_psize_defs[psize].tlbiel;
163 if (lock_tlbie && !use_local)
Thomas Gleixner6b9c9b82010-02-18 02:22:35 +0000164 raw_spin_lock(&native_tlbie_lock);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100165 asm volatile("ptesync": : :"memory");
166 if (use_local) {
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000167 __tlbiel(vpn, psize, apsize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100168 asm volatile("ptesync": : :"memory");
169 } else {
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000170 __tlbie(vpn, psize, apsize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100171 asm volatile("eieio; tlbsync; ptesync": : :"memory");
172 }
173 if (lock_tlbie && !use_local)
Thomas Gleixner6b9c9b82010-02-18 02:22:35 +0000174 raw_spin_unlock(&native_tlbie_lock);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100175}
176
David Gibson8e561e72007-06-13 14:52:56 +1000177static inline void native_lock_hpte(struct hash_pte *hptep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
Anton Blanchard12f04f22013-09-23 12:04:36 +1000179 unsigned long *word = (unsigned long *)&hptep->v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
181 while (1) {
Anton Blanchard66d99b82010-02-10 01:03:06 +0000182 if (!test_and_set_bit_lock(HPTE_LOCK_BIT, word))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 break;
184 while(test_bit(HPTE_LOCK_BIT, word))
185 cpu_relax();
186 }
187}
188
David Gibson8e561e72007-06-13 14:52:56 +1000189static inline void native_unlock_hpte(struct hash_pte *hptep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
Anton Blanchard12f04f22013-09-23 12:04:36 +1000191 unsigned long *word = (unsigned long *)&hptep->v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Anton Blanchard66d99b82010-02-10 01:03:06 +0000193 clear_bit_unlock(HPTE_LOCK_BIT, word);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194}
195
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000196static long native_hpte_insert(unsigned long hpte_group, unsigned long vpn,
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100197 unsigned long pa, unsigned long rflags,
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000198 unsigned long vflags, int psize, int apsize, int ssize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
David Gibson8e561e72007-06-13 14:52:56 +1000200 struct hash_pte *hptep = htab_address + hpte_group;
David Gibson96e28442005-07-13 01:11:42 -0700201 unsigned long hpte_v, hpte_r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 int i;
203
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100204 if (!(vflags & HPTE_V_BOLTED)) {
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000205 DBG_LOW(" insert(group=%lx, vpn=%016lx, pa=%016lx,"
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100206 " rflags=%lx, vflags=%lx, psize=%d)\n",
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000207 hpte_group, vpn, pa, rflags, vflags, psize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100208 }
209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 for (i = 0; i < HPTES_PER_GROUP; i++) {
Anton Blanchard12f04f22013-09-23 12:04:36 +1000211 if (! (be64_to_cpu(hptep->v) & HPTE_V_VALID)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 /* retry with lock held */
213 native_lock_hpte(hptep);
Anton Blanchard12f04f22013-09-23 12:04:36 +1000214 if (! (be64_to_cpu(hptep->v) & HPTE_V_VALID))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 break;
216 native_unlock_hpte(hptep);
217 }
218
219 hptep++;
220 }
221
222 if (i == HPTES_PER_GROUP)
223 return -1;
224
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000225 hpte_v = hpte_encode_v(vpn, psize, apsize, ssize) | vflags | HPTE_V_VALID;
Paul Mackerras6b243fc2016-11-11 16:55:03 +1100226 hpte_r = hpte_encode_r(pa, psize, apsize) | rflags;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100227
228 if (!(vflags & HPTE_V_BOLTED)) {
229 DBG_LOW(" i=%x hpte_v=%016lx, hpte_r=%016lx\n",
230 i, hpte_v, hpte_r);
231 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Paul Mackerras6b243fc2016-11-11 16:55:03 +1100233 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
234 hpte_r = hpte_old_to_new_r(hpte_v, hpte_r);
235 hpte_v = hpte_old_to_new_v(hpte_v);
236 }
237
Anton Blanchard12f04f22013-09-23 12:04:36 +1000238 hptep->r = cpu_to_be64(hpte_r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 /* Guarantee the second dword is visible before the valid bit */
Kumar Gala74a0ba62007-07-09 23:49:09 -0500240 eieio();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 /*
242 * Now set the first dword including the valid bit
243 * NOTE: this also unlocks the hpte
244 */
Anton Blanchard12f04f22013-09-23 12:04:36 +1000245 hptep->v = cpu_to_be64(hpte_v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247 __asm__ __volatile__ ("ptesync" : : : "memory");
248
David Gibson96e28442005-07-13 01:11:42 -0700249 return i | (!!(vflags & HPTE_V_SECONDARY) << 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250}
251
252static long native_hpte_remove(unsigned long hpte_group)
253{
David Gibson8e561e72007-06-13 14:52:56 +1000254 struct hash_pte *hptep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 int i;
256 int slot_offset;
David Gibson96e28442005-07-13 01:11:42 -0700257 unsigned long hpte_v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100259 DBG_LOW(" remove(group=%lx)\n", hpte_group);
260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 /* pick a random entry to start at */
262 slot_offset = mftb() & 0x7;
263
264 for (i = 0; i < HPTES_PER_GROUP; i++) {
265 hptep = htab_address + hpte_group + slot_offset;
Anton Blanchard12f04f22013-09-23 12:04:36 +1000266 hpte_v = be64_to_cpu(hptep->v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
David Gibson96e28442005-07-13 01:11:42 -0700268 if ((hpte_v & HPTE_V_VALID) && !(hpte_v & HPTE_V_BOLTED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 /* retry with lock held */
270 native_lock_hpte(hptep);
Anton Blanchard12f04f22013-09-23 12:04:36 +1000271 hpte_v = be64_to_cpu(hptep->v);
David Gibson96e28442005-07-13 01:11:42 -0700272 if ((hpte_v & HPTE_V_VALID)
273 && !(hpte_v & HPTE_V_BOLTED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 break;
275 native_unlock_hpte(hptep);
276 }
277
278 slot_offset++;
279 slot_offset &= 0x7;
280 }
281
282 if (i == HPTES_PER_GROUP)
283 return -1;
284
285 /* Invalidate the hpte. NOTE: this also unlocks it */
David Gibson96e28442005-07-13 01:11:42 -0700286 hptep->v = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 return i;
289}
290
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100291static long native_hpte_updatepp(unsigned long slot, unsigned long newpp,
Aneesh Kumar K.Vdb3d8532013-06-20 14:30:13 +0530292 unsigned long vpn, int bpsize,
Aneesh Kumar K.Vaefa5682014-12-04 11:00:14 +0530293 int apsize, int ssize, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
David Gibson8e561e72007-06-13 14:52:56 +1000295 struct hash_pte *hptep = htab_address + slot;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100296 unsigned long hpte_v, want_v;
Aneesh Kumar K.Vaefa5682014-12-04 11:00:14 +0530297 int ret = 0, local = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Aneesh Kumar K.Vdb3d8532013-06-20 14:30:13 +0530299 want_v = hpte_encode_avpn(vpn, bpsize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100300
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000301 DBG_LOW(" update(vpn=%016lx, avpnv=%016lx, group=%lx, newpp=%lx)",
302 vpn, want_v & HPTE_V_AVPN, slot, newpp);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100303
Anton Blanchard12f04f22013-09-23 12:04:36 +1000304 hpte_v = be64_to_cpu(hptep->v);
Paul Mackerras6b243fc2016-11-11 16:55:03 +1100305 if (cpu_has_feature(CPU_FTR_ARCH_300))
306 hpte_v = hpte_new_to_old_v(hpte_v, be64_to_cpu(hptep->r));
Aneesh Kumar K.V0608d692013-05-31 01:03:24 +0000307 /*
308 * We need to invalidate the TLB always because hpte_remove doesn't do
309 * a tlb invalidate. If a hash bucket gets full, we "evict" a more/less
310 * random entry from it. When we do that we don't invalidate the TLB
311 * (hpte_remove) because we assume the old translation is still
312 * technically "valid".
313 */
Aneesh Kumar K.Vdb3d8532013-06-20 14:30:13 +0530314 if (!HPTE_V_COMPARE(hpte_v, want_v) || !(hpte_v & HPTE_V_VALID)) {
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100315 DBG_LOW(" -> miss\n");
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100316 ret = -1;
317 } else {
Aneesh Kumar K.V0ec26982014-11-03 20:21:34 +0530318 native_lock_hpte(hptep);
319 /* recheck with locks held */
320 hpte_v = be64_to_cpu(hptep->v);
Paul Mackerras6b243fc2016-11-11 16:55:03 +1100321 if (cpu_has_feature(CPU_FTR_ARCH_300))
322 hpte_v = hpte_new_to_old_v(hpte_v, be64_to_cpu(hptep->r));
Aneesh Kumar K.V0ec26982014-11-03 20:21:34 +0530323 if (unlikely(!HPTE_V_COMPARE(hpte_v, want_v) ||
324 !(hpte_v & HPTE_V_VALID))) {
325 ret = -1;
326 } else {
327 DBG_LOW(" -> hit\n");
328 /* Update the HPTE */
329 hptep->r = cpu_to_be64((be64_to_cpu(hptep->r) &
Aneesh Kumar K.V8550e2f2016-06-08 19:55:55 +0530330 ~(HPTE_R_PPP | HPTE_R_N)) |
331 (newpp & (HPTE_R_PPP | HPTE_R_N |
Aneesh Kumar K.V0ec26982014-11-03 20:21:34 +0530332 HPTE_R_C)));
333 }
334 native_unlock_hpte(hptep);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100335 }
Aneesh Kumar K.Vaefa5682014-12-04 11:00:14 +0530336
337 if (flags & HPTE_LOCAL_UPDATE)
338 local = 1;
339 /*
340 * Ensure it is out of the tlb too if it is not a nohpte fault
341 */
342 if (!(flags & HPTE_NOHPTE_UPDATE))
343 tlbie(vpn, bpsize, apsize, ssize, local);
344
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100345 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346}
347
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000348static long native_hpte_find(unsigned long vpn, int psize, int ssize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
David Gibson8e561e72007-06-13 14:52:56 +1000350 struct hash_pte *hptep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 unsigned long hash;
Paul Mackerras1189be62007-10-11 20:37:10 +1000352 unsigned long i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 long slot;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100354 unsigned long want_v, hpte_v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000356 hash = hpt_hash(vpn, mmu_psize_defs[psize].shift, ssize);
Aneesh Kumar K.V74f227b2013-04-28 09:37:34 +0000357 want_v = hpte_encode_avpn(vpn, psize, ssize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Paul Mackerras1189be62007-10-11 20:37:10 +1000359 /* Bolted mappings are only ever in the primary group */
360 slot = (hash & htab_hash_mask) * HPTES_PER_GROUP;
361 for (i = 0; i < HPTES_PER_GROUP; i++) {
362 hptep = htab_address + slot;
Anton Blanchard12f04f22013-09-23 12:04:36 +1000363 hpte_v = be64_to_cpu(hptep->v);
Paul Mackerras6b243fc2016-11-11 16:55:03 +1100364 if (cpu_has_feature(CPU_FTR_ARCH_300))
365 hpte_v = hpte_new_to_old_v(hpte_v, be64_to_cpu(hptep->r));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Paul Mackerras1189be62007-10-11 20:37:10 +1000367 if (HPTE_V_COMPARE(hpte_v, want_v) && (hpte_v & HPTE_V_VALID))
368 /* HPTE matches */
369 return slot;
370 ++slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 }
372
373 return -1;
374}
375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376/*
377 * Update the page protection bits. Intended to be used to create
378 * guard pages for kernel data structures on pages which are bolted
379 * in the HPT. Assumes pages being operated on will not be stolen.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 *
381 * No need to lock here because we should be the only user.
382 */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100383static void native_hpte_updateboltedpp(unsigned long newpp, unsigned long ea,
Paul Mackerras1189be62007-10-11 20:37:10 +1000384 int psize, int ssize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000386 unsigned long vpn;
387 unsigned long vsid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 long slot;
David Gibson8e561e72007-06-13 14:52:56 +1000389 struct hash_pte *hptep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Paul Mackerras1189be62007-10-11 20:37:10 +1000391 vsid = get_kernel_vsid(ea, ssize);
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000392 vpn = hpt_vpn(ea, vsid, ssize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000394 slot = native_hpte_find(vpn, psize, ssize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 if (slot == -1)
396 panic("could not find page to bolt\n");
397 hptep = htab_address + slot;
398
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100399 /* Update the HPTE */
Anton Blanchard12f04f22013-09-23 12:04:36 +1000400 hptep->r = cpu_to_be64((be64_to_cpu(hptep->r) &
Aneesh Kumar K.V8550e2f2016-06-08 19:55:55 +0530401 ~(HPTE_R_PPP | HPTE_R_N)) |
402 (newpp & (HPTE_R_PPP | HPTE_R_N)));
Aneesh Kumar K.Vdb3d8532013-06-20 14:30:13 +0530403 /*
404 * Ensure it is out of the tlb too. Bolted entries base and
405 * actual page size will be same.
406 */
407 tlbie(vpn, psize, psize, ssize, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408}
409
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000410static void native_hpte_invalidate(unsigned long slot, unsigned long vpn,
Aneesh Kumar K.Vdb3d8532013-06-20 14:30:13 +0530411 int bpsize, int apsize, int ssize, int local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
David Gibson8e561e72007-06-13 14:52:56 +1000413 struct hash_pte *hptep = htab_address + slot;
David Gibson96e28442005-07-13 01:11:42 -0700414 unsigned long hpte_v;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100415 unsigned long want_v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000420 DBG_LOW(" invalidate(vpn=%016lx, hash: %lx)\n", vpn, slot);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100421
Aneesh Kumar K.Vdb3d8532013-06-20 14:30:13 +0530422 want_v = hpte_encode_avpn(vpn, bpsize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100423 native_lock_hpte(hptep);
Anton Blanchard12f04f22013-09-23 12:04:36 +1000424 hpte_v = be64_to_cpu(hptep->v);
Paul Mackerras6b243fc2016-11-11 16:55:03 +1100425 if (cpu_has_feature(CPU_FTR_ARCH_300))
426 hpte_v = hpte_new_to_old_v(hpte_v, be64_to_cpu(hptep->r));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Aneesh Kumar K.V0608d692013-05-31 01:03:24 +0000428 /*
429 * We need to invalidate the TLB always because hpte_remove doesn't do
430 * a tlb invalidate. If a hash bucket gets full, we "evict" a more/less
431 * random entry from it. When we do that we don't invalidate the TLB
432 * (hpte_remove) because we assume the old translation is still
433 * technically "valid".
434 */
Aneesh Kumar K.Vdb3d8532013-06-20 14:30:13 +0530435 if (!HPTE_V_COMPARE(hpte_v, want_v) || !(hpte_v & HPTE_V_VALID))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 native_unlock_hpte(hptep);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100437 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 /* Invalidate the hpte. NOTE: this also unlocks it */
David Gibson96e28442005-07-13 01:11:42 -0700439 hptep->v = 0;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100440
441 /* Invalidate the TLB */
Aneesh Kumar K.Vdb3d8532013-06-20 14:30:13 +0530442 tlbie(vpn, bpsize, apsize, ssize, local);
443
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100444 local_irq_restore(flags);
445}
446
Aneesh Kumar K.Ve34aa032015-12-01 09:06:53 +0530447#ifdef CONFIG_TRANSPARENT_HUGEPAGE
Aneesh Kumar K.Vfa1f8ae2014-08-13 12:31:58 +0530448static void native_hugepage_invalidate(unsigned long vsid,
449 unsigned long addr,
Aneesh Kumar K.V1a527282013-06-20 14:30:27 +0530450 unsigned char *hpte_slot_array,
Aneesh Kumar K.Vd557b092014-11-02 21:15:28 +0530451 int psize, int ssize, int local)
Aneesh Kumar K.V1a527282013-06-20 14:30:27 +0530452{
Aneesh Kumar K.V969b7b22014-08-13 12:32:01 +0530453 int i;
Aneesh Kumar K.V1a527282013-06-20 14:30:27 +0530454 struct hash_pte *hptep;
455 int actual_psize = MMU_PAGE_16M;
456 unsigned int max_hpte_count, valid;
457 unsigned long flags, s_addr = addr;
458 unsigned long hpte_v, want_v, shift;
Aneesh Kumar K.Vfa1f8ae2014-08-13 12:31:58 +0530459 unsigned long hidx, vpn = 0, hash, slot;
Aneesh Kumar K.V1a527282013-06-20 14:30:27 +0530460
461 shift = mmu_psize_defs[psize].shift;
462 max_hpte_count = 1U << (PMD_SHIFT - shift);
463
464 local_irq_save(flags);
465 for (i = 0; i < max_hpte_count; i++) {
466 valid = hpte_valid(hpte_slot_array, i);
467 if (!valid)
468 continue;
469 hidx = hpte_hash_index(hpte_slot_array, i);
470
471 /* get the vpn */
472 addr = s_addr + (i * (1ul << shift));
Aneesh Kumar K.V1a527282013-06-20 14:30:27 +0530473 vpn = hpt_vpn(addr, vsid, ssize);
474 hash = hpt_hash(vpn, shift, ssize);
475 if (hidx & _PTEIDX_SECONDARY)
476 hash = ~hash;
477
478 slot = (hash & htab_hash_mask) * HPTES_PER_GROUP;
479 slot += hidx & _PTEIDX_GROUP_IX;
480
481 hptep = htab_address + slot;
482 want_v = hpte_encode_avpn(vpn, psize, ssize);
483 native_lock_hpte(hptep);
Anton Blanchard12f04f22013-09-23 12:04:36 +1000484 hpte_v = be64_to_cpu(hptep->v);
Paul Mackerras6b243fc2016-11-11 16:55:03 +1100485 if (cpu_has_feature(CPU_FTR_ARCH_300))
486 hpte_v = hpte_new_to_old_v(hpte_v, be64_to_cpu(hptep->r));
Aneesh Kumar K.V1a527282013-06-20 14:30:27 +0530487
488 /* Even if we miss, we need to invalidate the TLB */
489 if (!HPTE_V_COMPARE(hpte_v, want_v) || !(hpte_v & HPTE_V_VALID))
490 native_unlock_hpte(hptep);
491 else
492 /* Invalidate the hpte. NOTE: this also unlocks it */
493 hptep->v = 0;
Aneesh Kumar K.V969b7b22014-08-13 12:32:01 +0530494 /*
495 * We need to do tlb invalidate for all the address, tlbie
496 * instruction compares entry_VA in tlb with the VA specified
497 * here
498 */
Aneesh Kumar K.Vd557b092014-11-02 21:15:28 +0530499 tlbie(vpn, psize, actual_psize, ssize, local);
Aneesh Kumar K.V1a527282013-06-20 14:30:27 +0530500 }
Aneesh Kumar K.V1a527282013-06-20 14:30:27 +0530501 local_irq_restore(flags);
502}
Aneesh Kumar K.Ve34aa032015-12-01 09:06:53 +0530503#else
504static void native_hugepage_invalidate(unsigned long vsid,
505 unsigned long addr,
506 unsigned char *hpte_slot_array,
507 int psize, int ssize, int local)
508{
509 WARN(1, "%s called without THP support\n", __func__);
510}
511#endif
Aneesh Kumar K.V1a527282013-06-20 14:30:27 +0530512
David Gibson8e561e72007-06-13 14:52:56 +1000513static void hpte_decode(struct hash_pte *hpte, unsigned long slot,
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000514 int *psize, int *apsize, int *ssize, unsigned long *vpn)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100515{
Aneesh Kumar K.Vdcda2872012-09-10 02:52:49 +0000516 unsigned long avpn, pteg, vpi;
Anton Blanchard12f04f22013-09-23 12:04:36 +1000517 unsigned long hpte_v = be64_to_cpu(hpte->v);
518 unsigned long hpte_r = be64_to_cpu(hpte->r);
Aneesh Kumar K.Vdcda2872012-09-10 02:52:49 +0000519 unsigned long vsid, seg_off;
Aneesh Kumar K.V7e74c392013-04-28 09:37:36 +0000520 int size, a_size, shift;
521 /* Look at the 8 bit LP value */
Anton Blanchard12f04f22013-09-23 12:04:36 +1000522 unsigned int lp = (hpte_r >> LP_SHIFT) & ((1 << LP_BITS) - 1);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100523
Paul Mackerras6b243fc2016-11-11 16:55:03 +1100524 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
525 hpte_v = hpte_new_to_old_v(hpte_v, hpte_r);
526 hpte_r = hpte_new_to_old_r(hpte_r);
527 }
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000528 if (!(hpte_v & HPTE_V_LARGE)) {
529 size = MMU_PAGE_4K;
530 a_size = MMU_PAGE_4K;
531 } else {
Paul Mackerras0eeede02016-09-02 17:20:43 +1000532 size = hpte_page_sizes[lp] & 0xf;
533 a_size = hpte_page_sizes[lp] >> 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 }
Paul Mackerras2454c7e2007-05-10 15:28:44 +1000535 /* This works for all page sizes, and for 256M and 1T segments */
Paul Mackerras6b243fc2016-11-11 16:55:03 +1100536 *ssize = hpte_v >> HPTE_V_SSIZE_SHIFT;
Aneesh Kumar K.Vdcda2872012-09-10 02:52:49 +0000537 shift = mmu_psize_defs[size].shift;
538
539 avpn = (HPTE_V_AVPN_VAL(hpte_v) & ~mmu_psize_defs[size].avpnm);
540 pteg = slot / HPTES_PER_GROUP;
541 if (hpte_v & HPTE_V_SECONDARY)
542 pteg = ~pteg;
543
544 switch (*ssize) {
545 case MMU_SEGSIZE_256M:
546 /* We only have 28 - 23 bits of seg_off in avpn */
547 seg_off = (avpn & 0x1f) << 23;
548 vsid = avpn >> 5;
549 /* We can find more bits from the pteg value */
550 if (shift < 23) {
551 vpi = (vsid ^ pteg) & htab_hash_mask;
552 seg_off |= vpi << shift;
553 }
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000554 *vpn = vsid << (SID_SHIFT - VPN_SHIFT) | seg_off >> VPN_SHIFT;
Aneesh Kumar K.V83383b72013-07-03 13:50:03 +0530555 break;
Aneesh Kumar K.Vdcda2872012-09-10 02:52:49 +0000556 case MMU_SEGSIZE_1T:
557 /* We only have 40 - 23 bits of seg_off in avpn */
558 seg_off = (avpn & 0x1ffff) << 23;
559 vsid = avpn >> 17;
560 if (shift < 23) {
561 vpi = (vsid ^ (vsid << 25) ^ pteg) & htab_hash_mask;
562 seg_off |= vpi << shift;
563 }
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000564 *vpn = vsid << (SID_SHIFT_1T - VPN_SHIFT) | seg_off >> VPN_SHIFT;
Aneesh Kumar K.V83383b72013-07-03 13:50:03 +0530565 break;
Aneesh Kumar K.Vdcda2872012-09-10 02:52:49 +0000566 default:
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000567 *vpn = size = 0;
Aneesh Kumar K.Vdcda2872012-09-10 02:52:49 +0000568 }
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000569 *psize = size;
570 *apsize = a_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571}
572
R Sharadaf4c82d52005-06-25 14:58:08 -0700573/*
574 * clear all mappings on kexec. All cpus are in real mode (or they will
575 * be when they isi), and we are the only one left. We rely on our kernel
576 * mapping being 0xC0's and the hardware ignoring those two real bits.
577 *
Cyril Burfdf880a2015-10-08 11:04:26 +1100578 * This must be called with interrupts disabled.
579 *
580 * Taking the native_tlbie_lock is unsafe here due to the possibility of
581 * lockdep being on. On pre POWER5 hardware, not taking the lock could
582 * cause deadlock. POWER5 and newer not taking the lock is fine. This only
583 * gets called during boot before secondary CPUs have come up and during
584 * crashdump and all bets are off anyway.
585 *
R Sharadaf4c82d52005-06-25 14:58:08 -0700586 * TODO: add batching support when enabled. remember, no dynamic memory here,
Michael Ellerman027dfac2016-06-01 16:34:37 +1000587 * although there is the control page available...
R Sharadaf4c82d52005-06-25 14:58:08 -0700588 */
589static void native_hpte_clear(void)
590{
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000591 unsigned long vpn = 0;
Cyril Burfdf880a2015-10-08 11:04:26 +1100592 unsigned long slot, slots;
David Gibson8e561e72007-06-13 14:52:56 +1000593 struct hash_pte *hptep = htab_address;
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000594 unsigned long hpte_v;
R Sharadaf4c82d52005-06-25 14:58:08 -0700595 unsigned long pteg_count;
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000596 int psize, apsize, ssize;
R Sharadaf4c82d52005-06-25 14:58:08 -0700597
598 pteg_count = htab_hash_mask + 1;
599
R Sharadaf4c82d52005-06-25 14:58:08 -0700600 slots = pteg_count * HPTES_PER_GROUP;
601
602 for (slot = 0; slot < slots; slot++, hptep++) {
603 /*
604 * we could lock the pte here, but we are the only cpu
605 * running, right? and for crash dump, we probably
606 * don't want to wait for a maybe bad cpu.
607 */
Anton Blanchard12f04f22013-09-23 12:04:36 +1000608 hpte_v = be64_to_cpu(hptep->v);
R Sharadaf4c82d52005-06-25 14:58:08 -0700609
R Sharada47f78a42006-02-22 21:43:08 +0530610 /*
Cyril Burfdf880a2015-10-08 11:04:26 +1100611 * Call __tlbie() here rather than tlbie() since we can't take the
612 * native_tlbie_lock.
R Sharada47f78a42006-02-22 21:43:08 +0530613 */
David Gibson96e28442005-07-13 01:11:42 -0700614 if (hpte_v & HPTE_V_VALID) {
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000615 hpte_decode(hptep, slot, &psize, &apsize, &ssize, &vpn);
David Gibson96e28442005-07-13 01:11:42 -0700616 hptep->v = 0;
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000617 __tlbie(vpn, psize, apsize, ssize);
R Sharadaf4c82d52005-06-25 14:58:08 -0700618 }
619 }
620
R Sharada47f78a42006-02-22 21:43:08 +0530621 asm volatile("eieio; tlbsync; ptesync":::"memory");
R Sharadaf4c82d52005-06-25 14:58:08 -0700622}
623
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100624/*
625 * Batched hash table flush, we batch the tlbie's to avoid taking/releasing
626 * the lock all the time
627 */
Benjamin Herrenschmidt61b1a942005-09-20 13:52:50 +1000628static void native_flush_hash_range(unsigned long number, int local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629{
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000630 unsigned long vpn;
631 unsigned long hash, index, hidx, shift, slot;
David Gibson8e561e72007-06-13 14:52:56 +1000632 struct hash_pte *hptep;
David Gibson96e28442005-07-13 01:11:42 -0700633 unsigned long hpte_v;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100634 unsigned long want_v;
635 unsigned long flags;
636 real_pte_t pte;
Christoph Lameter69111ba2014-10-21 15:23:25 -0500637 struct ppc64_tlb_batch *batch = this_cpu_ptr(&ppc64_tlb_batch);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100638 unsigned long psize = batch->psize;
Paul Mackerras1189be62007-10-11 20:37:10 +1000639 int ssize = batch->ssize;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100640 int i;
Frederic Barrat88b1bf722017-03-29 19:19:42 +0200641 unsigned int use_local;
642
643 use_local = local && mmu_has_feature(MMU_FTR_TLBIEL) &&
644 mmu_psize_defs[psize].tlbiel && !cxl_ctx_in_use();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
646 local_irq_save(flags);
647
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 for (i = 0; i < number; i++) {
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000649 vpn = batch->vpn[i];
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100650 pte = batch->pte[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000652 pte_iterate_hashed_subpages(pte, psize, vpn, index, shift) {
653 hash = hpt_hash(vpn, shift, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100654 hidx = __rpte_to_hidx(pte, index);
655 if (hidx & _PTEIDX_SECONDARY)
656 hash = ~hash;
657 slot = (hash & htab_hash_mask) * HPTES_PER_GROUP;
658 slot += hidx & _PTEIDX_GROUP_IX;
659 hptep = htab_address + slot;
Aneesh Kumar K.V74f227b2013-04-28 09:37:34 +0000660 want_v = hpte_encode_avpn(vpn, psize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100661 native_lock_hpte(hptep);
Anton Blanchard12f04f22013-09-23 12:04:36 +1000662 hpte_v = be64_to_cpu(hptep->v);
Paul Mackerras6b243fc2016-11-11 16:55:03 +1100663 if (cpu_has_feature(CPU_FTR_ARCH_300))
664 hpte_v = hpte_new_to_old_v(hpte_v,
665 be64_to_cpu(hptep->r));
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100666 if (!HPTE_V_COMPARE(hpte_v, want_v) ||
667 !(hpte_v & HPTE_V_VALID))
668 native_unlock_hpte(hptep);
669 else
670 hptep->v = 0;
671 } pte_iterate_hashed_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 }
673
Frederic Barrat88b1bf722017-03-29 19:19:42 +0200674 if (use_local) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 asm volatile("ptesync":::"memory");
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100676 for (i = 0; i < number; i++) {
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000677 vpn = batch->vpn[i];
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100678 pte = batch->pte[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000680 pte_iterate_hashed_subpages(pte, psize,
681 vpn, index, shift) {
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000682 __tlbiel(vpn, psize, psize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100683 } pte_iterate_hashed_end();
684 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 asm volatile("ptesync":::"memory");
686 } else {
Matt Evans44ae3ab2011-04-06 19:48:50 +0000687 int lock_tlbie = !mmu_has_feature(MMU_FTR_LOCKLESS_TLBIE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
689 if (lock_tlbie)
Thomas Gleixner6b9c9b82010-02-18 02:22:35 +0000690 raw_spin_lock(&native_tlbie_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
692 asm volatile("ptesync":::"memory");
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100693 for (i = 0; i < number; i++) {
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000694 vpn = batch->vpn[i];
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100695 pte = batch->pte[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000697 pte_iterate_hashed_subpages(pte, psize,
698 vpn, index, shift) {
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000699 __tlbie(vpn, psize, psize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100700 } pte_iterate_hashed_end();
701 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 asm volatile("eieio; tlbsync; ptesync":::"memory");
703
704 if (lock_tlbie)
Thomas Gleixner6b9c9b82010-02-18 02:22:35 +0000705 raw_spin_unlock(&native_tlbie_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 }
707
708 local_irq_restore(flags);
709}
710
Aneesh Kumar K.V83209bc2016-07-13 15:05:28 +0530711static int native_register_proc_table(unsigned long base, unsigned long page_size,
712 unsigned long table_size)
Aneesh Kumar K.V50de5962016-04-29 23:25:43 +1000713{
Aneesh Kumar K.V83209bc2016-07-13 15:05:28 +0530714 unsigned long patb1 = base << 25; /* VSID */
715
716 patb1 |= (page_size << 5); /* sllp */
717 patb1 |= table_size;
718
Aneesh Kumar K.V50de5962016-04-29 23:25:43 +1000719 partition_tb->patb1 = cpu_to_be64(patb1);
720 return 0;
721}
722
Michael Ellerman7d0daae2006-06-23 18:16:38 +1000723void __init hpte_init_native(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724{
Benjamin Herrenschmidt70257762016-07-05 15:03:58 +1000725 mmu_hash_ops.hpte_invalidate = native_hpte_invalidate;
726 mmu_hash_ops.hpte_updatepp = native_hpte_updatepp;
727 mmu_hash_ops.hpte_updateboltedpp = native_hpte_updateboltedpp;
728 mmu_hash_ops.hpte_insert = native_hpte_insert;
729 mmu_hash_ops.hpte_remove = native_hpte_remove;
730 mmu_hash_ops.hpte_clear_all = native_hpte_clear;
731 mmu_hash_ops.flush_hash_range = native_flush_hash_range;
732 mmu_hash_ops.hugepage_invalidate = native_hugepage_invalidate;
Aneesh Kumar K.V50de5962016-04-29 23:25:43 +1000733
734 if (cpu_has_feature(CPU_FTR_ARCH_300))
Michael Ellermaneea81482016-08-04 15:32:06 +1000735 register_process_table = native_register_proc_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736}