blob: 13700911b522b1cfdc8518c4566fd3b7ab859f4e [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
Ian Munsie4c6d9ac2014-10-08 19:55:00 +110032#include <misc/cxl.h>
33
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
58 * only accomadate 76 bits in a 64 bit vpn with a VPN_SHIFT
59 * 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 */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110067 va &= ~(0xffffULL << 48);
68
69 switch (psize) {
70 case MMU_PAGE_4K:
Aneesh Kumar K.V1f6aaac2013-04-28 09:37:39 +000071 /* clear out bits after (52) [0....52.....63] */
72 va &= ~((1ul << (64 - 52)) - 1);
Paul Mackerras1189be62007-10-11 20:37:10 +100073 va |= ssize << 8;
Aneesh Kumar K.Vde640952013-07-04 10:34:45 +053074 sllp = ((mmu_psize_defs[apsize].sllp & SLB_VSID_L) >> 6) |
75 ((mmu_psize_defs[apsize].sllp & SLB_VSID_LP) >> 4);
76 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 */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100116 va &= ~(0xffffULL << 48);
117
118 switch (psize) {
119 case MMU_PAGE_4K:
Aneesh Kumar K.V1f6aaac2013-04-28 09:37:39 +0000120 /* clear out bits after(52) [0....52.....63] */
121 va &= ~((1ul << (64 - 52)) - 1);
Paul Mackerras1189be62007-10-11 20:37:10 +1000122 va |= ssize << 8;
Aneesh Kumar K.Vde640952013-07-04 10:34:45 +0530123 sllp = ((mmu_psize_defs[apsize].sllp & SLB_VSID_L) >> 6) |
124 ((mmu_psize_defs[apsize].sllp & SLB_VSID_LP) >> 4);
125 va |= sllp << 5;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100126 asm volatile(".long 0x7c000224 | (%0 << 11) | (0 << 21)"
127 : : "r"(va) : "memory");
128 break;
129 default:
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000130 /* We need 14 to 14 + i bits of va */
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000131 penc = mmu_psize_defs[psize].penc[apsize];
Aneesh Kumar K.V1f6aaac2013-04-28 09:37:39 +0000132 va &= ~((1ul << mmu_psize_defs[apsize].shift) - 1);
Arnd Bergmann19242b22006-06-15 21:15:44 +1000133 va |= penc << 12;
Paul Mackerras1189be62007-10-11 20:37:10 +1000134 va |= ssize << 8;
Aneesh Kumar K.V29ef7a32014-04-21 10:37:36 +0530135 /*
136 * AVAL bits:
137 * We don't need all the bits, but rest of the bits
138 * must be ignored by the processor.
139 * vpn cover upto 65 bits of va. (0...65) and we need
140 * 58..64 bits of va.
141 */
142 va |= (vpn & 0xfe);
Milton Miller60dbf432009-04-29 20:58:01 +0000143 va |= 1; /* L */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100144 asm volatile(".long 0x7c000224 | (%0 << 11) | (1 << 21)"
145 : : "r"(va) : "memory");
146 break;
147 }
148
149}
150
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000151static inline void tlbie(unsigned long vpn, int psize, int apsize,
152 int ssize, int local)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100153{
Ian Munsie4c6d9ac2014-10-08 19:55:00 +1100154 unsigned int use_local;
Matt Evans44ae3ab2011-04-06 19:48:50 +0000155 int lock_tlbie = !mmu_has_feature(MMU_FTR_LOCKLESS_TLBIE);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100156
Ian Munsie4c6d9ac2014-10-08 19:55:00 +1100157 use_local = local && mmu_has_feature(MMU_FTR_TLBIEL) && !cxl_ctx_in_use();
158
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100159 if (use_local)
160 use_local = mmu_psize_defs[psize].tlbiel;
161 if (lock_tlbie && !use_local)
Thomas Gleixner6b9c9b82010-02-18 02:22:35 +0000162 raw_spin_lock(&native_tlbie_lock);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100163 asm volatile("ptesync": : :"memory");
164 if (use_local) {
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000165 __tlbiel(vpn, psize, apsize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100166 asm volatile("ptesync": : :"memory");
167 } else {
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000168 __tlbie(vpn, psize, apsize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100169 asm volatile("eieio; tlbsync; ptesync": : :"memory");
170 }
171 if (lock_tlbie && !use_local)
Thomas Gleixner6b9c9b82010-02-18 02:22:35 +0000172 raw_spin_unlock(&native_tlbie_lock);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100173}
174
David Gibson8e561e72007-06-13 14:52:56 +1000175static inline void native_lock_hpte(struct hash_pte *hptep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
Anton Blanchard12f04f22013-09-23 12:04:36 +1000177 unsigned long *word = (unsigned long *)&hptep->v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 while (1) {
Anton Blanchard66d99b82010-02-10 01:03:06 +0000180 if (!test_and_set_bit_lock(HPTE_LOCK_BIT, word))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 break;
182 while(test_bit(HPTE_LOCK_BIT, word))
183 cpu_relax();
184 }
185}
186
David Gibson8e561e72007-06-13 14:52:56 +1000187static inline void native_unlock_hpte(struct hash_pte *hptep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
Anton Blanchard12f04f22013-09-23 12:04:36 +1000189 unsigned long *word = (unsigned long *)&hptep->v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Anton Blanchard66d99b82010-02-10 01:03:06 +0000191 clear_bit_unlock(HPTE_LOCK_BIT, word);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192}
193
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000194static long native_hpte_insert(unsigned long hpte_group, unsigned long vpn,
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100195 unsigned long pa, unsigned long rflags,
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000196 unsigned long vflags, int psize, int apsize, int ssize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
David Gibson8e561e72007-06-13 14:52:56 +1000198 struct hash_pte *hptep = htab_address + hpte_group;
David Gibson96e28442005-07-13 01:11:42 -0700199 unsigned long hpte_v, hpte_r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 int i;
201
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100202 if (!(vflags & HPTE_V_BOLTED)) {
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000203 DBG_LOW(" insert(group=%lx, vpn=%016lx, pa=%016lx,"
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100204 " rflags=%lx, vflags=%lx, psize=%d)\n",
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000205 hpte_group, vpn, pa, rflags, vflags, psize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100206 }
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 for (i = 0; i < HPTES_PER_GROUP; i++) {
Anton Blanchard12f04f22013-09-23 12:04:36 +1000209 if (! (be64_to_cpu(hptep->v) & HPTE_V_VALID)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 /* retry with lock held */
211 native_lock_hpte(hptep);
Anton Blanchard12f04f22013-09-23 12:04:36 +1000212 if (! (be64_to_cpu(hptep->v) & HPTE_V_VALID))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 break;
214 native_unlock_hpte(hptep);
215 }
216
217 hptep++;
218 }
219
220 if (i == HPTES_PER_GROUP)
221 return -1;
222
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000223 hpte_v = hpte_encode_v(vpn, psize, apsize, ssize) | vflags | HPTE_V_VALID;
224 hpte_r = hpte_encode_r(pa, psize, apsize) | rflags;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100225
226 if (!(vflags & HPTE_V_BOLTED)) {
227 DBG_LOW(" i=%x hpte_v=%016lx, hpte_r=%016lx\n",
228 i, hpte_v, hpte_r);
229 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Anton Blanchard12f04f22013-09-23 12:04:36 +1000231 hptep->r = cpu_to_be64(hpte_r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 /* Guarantee the second dword is visible before the valid bit */
Kumar Gala74a0ba62007-07-09 23:49:09 -0500233 eieio();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 /*
235 * Now set the first dword including the valid bit
236 * NOTE: this also unlocks the hpte
237 */
Anton Blanchard12f04f22013-09-23 12:04:36 +1000238 hptep->v = cpu_to_be64(hpte_v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240 __asm__ __volatile__ ("ptesync" : : : "memory");
241
David Gibson96e28442005-07-13 01:11:42 -0700242 return i | (!!(vflags & HPTE_V_SECONDARY) << 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243}
244
245static long native_hpte_remove(unsigned long hpte_group)
246{
David Gibson8e561e72007-06-13 14:52:56 +1000247 struct hash_pte *hptep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 int i;
249 int slot_offset;
David Gibson96e28442005-07-13 01:11:42 -0700250 unsigned long hpte_v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100252 DBG_LOW(" remove(group=%lx)\n", hpte_group);
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 /* pick a random entry to start at */
255 slot_offset = mftb() & 0x7;
256
257 for (i = 0; i < HPTES_PER_GROUP; i++) {
258 hptep = htab_address + hpte_group + slot_offset;
Anton Blanchard12f04f22013-09-23 12:04:36 +1000259 hpte_v = be64_to_cpu(hptep->v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
David Gibson96e28442005-07-13 01:11:42 -0700261 if ((hpte_v & HPTE_V_VALID) && !(hpte_v & HPTE_V_BOLTED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 /* retry with lock held */
263 native_lock_hpte(hptep);
Anton Blanchard12f04f22013-09-23 12:04:36 +1000264 hpte_v = be64_to_cpu(hptep->v);
David Gibson96e28442005-07-13 01:11:42 -0700265 if ((hpte_v & HPTE_V_VALID)
266 && !(hpte_v & HPTE_V_BOLTED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 break;
268 native_unlock_hpte(hptep);
269 }
270
271 slot_offset++;
272 slot_offset &= 0x7;
273 }
274
275 if (i == HPTES_PER_GROUP)
276 return -1;
277
278 /* Invalidate the hpte. NOTE: this also unlocks it */
David Gibson96e28442005-07-13 01:11:42 -0700279 hptep->v = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
281 return i;
282}
283
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100284static long native_hpte_updatepp(unsigned long slot, unsigned long newpp,
Aneesh Kumar K.Vdb3d8532013-06-20 14:30:13 +0530285 unsigned long vpn, int bpsize,
286 int apsize, int ssize, int local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
David Gibson8e561e72007-06-13 14:52:56 +1000288 struct hash_pte *hptep = htab_address + slot;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100289 unsigned long hpte_v, want_v;
290 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Aneesh Kumar K.Vdb3d8532013-06-20 14:30:13 +0530292 want_v = hpte_encode_avpn(vpn, bpsize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100293
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000294 DBG_LOW(" update(vpn=%016lx, avpnv=%016lx, group=%lx, newpp=%lx)",
295 vpn, want_v & HPTE_V_AVPN, slot, newpp);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100296
Anton Blanchard12f04f22013-09-23 12:04:36 +1000297 hpte_v = be64_to_cpu(hptep->v);
Aneesh Kumar K.V0608d692013-05-31 01:03:24 +0000298 /*
299 * We need to invalidate the TLB always because hpte_remove doesn't do
300 * a tlb invalidate. If a hash bucket gets full, we "evict" a more/less
301 * random entry from it. When we do that we don't invalidate the TLB
302 * (hpte_remove) because we assume the old translation is still
303 * technically "valid".
304 */
Aneesh Kumar K.Vdb3d8532013-06-20 14:30:13 +0530305 if (!HPTE_V_COMPARE(hpte_v, want_v) || !(hpte_v & HPTE_V_VALID)) {
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100306 DBG_LOW(" -> miss\n");
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100307 ret = -1;
308 } else {
Aneesh Kumar K.V0ec26982014-11-03 20:21:34 +0530309 native_lock_hpte(hptep);
310 /* recheck with locks held */
311 hpte_v = be64_to_cpu(hptep->v);
312 if (unlikely(!HPTE_V_COMPARE(hpte_v, want_v) ||
313 !(hpte_v & HPTE_V_VALID))) {
314 ret = -1;
315 } else {
316 DBG_LOW(" -> hit\n");
317 /* Update the HPTE */
318 hptep->r = cpu_to_be64((be64_to_cpu(hptep->r) &
319 ~(HPTE_R_PP | HPTE_R_N)) |
320 (newpp & (HPTE_R_PP | HPTE_R_N |
321 HPTE_R_C)));
322 }
323 native_unlock_hpte(hptep);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100324 }
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100325 /* Ensure it is out of the tlb too. */
Aneesh Kumar K.Vdb3d8532013-06-20 14:30:13 +0530326 tlbie(vpn, bpsize, apsize, ssize, local);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100327 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328}
329
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000330static long native_hpte_find(unsigned long vpn, int psize, int ssize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
David Gibson8e561e72007-06-13 14:52:56 +1000332 struct hash_pte *hptep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 unsigned long hash;
Paul Mackerras1189be62007-10-11 20:37:10 +1000334 unsigned long i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 long slot;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100336 unsigned long want_v, hpte_v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000338 hash = hpt_hash(vpn, mmu_psize_defs[psize].shift, ssize);
Aneesh Kumar K.V74f227b2013-04-28 09:37:34 +0000339 want_v = hpte_encode_avpn(vpn, psize, ssize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Paul Mackerras1189be62007-10-11 20:37:10 +1000341 /* Bolted mappings are only ever in the primary group */
342 slot = (hash & htab_hash_mask) * HPTES_PER_GROUP;
343 for (i = 0; i < HPTES_PER_GROUP; i++) {
344 hptep = htab_address + slot;
Anton Blanchard12f04f22013-09-23 12:04:36 +1000345 hpte_v = be64_to_cpu(hptep->v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Paul Mackerras1189be62007-10-11 20:37:10 +1000347 if (HPTE_V_COMPARE(hpte_v, want_v) && (hpte_v & HPTE_V_VALID))
348 /* HPTE matches */
349 return slot;
350 ++slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 }
352
353 return -1;
354}
355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356/*
357 * Update the page protection bits. Intended to be used to create
358 * guard pages for kernel data structures on pages which are bolted
359 * in the HPT. Assumes pages being operated on will not be stolen.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 *
361 * No need to lock here because we should be the only user.
362 */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100363static void native_hpte_updateboltedpp(unsigned long newpp, unsigned long ea,
Paul Mackerras1189be62007-10-11 20:37:10 +1000364 int psize, int ssize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365{
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000366 unsigned long vpn;
367 unsigned long vsid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 long slot;
David Gibson8e561e72007-06-13 14:52:56 +1000369 struct hash_pte *hptep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Paul Mackerras1189be62007-10-11 20:37:10 +1000371 vsid = get_kernel_vsid(ea, ssize);
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000372 vpn = hpt_vpn(ea, vsid, ssize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000374 slot = native_hpte_find(vpn, psize, ssize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 if (slot == -1)
376 panic("could not find page to bolt\n");
377 hptep = htab_address + slot;
378
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100379 /* Update the HPTE */
Anton Blanchard12f04f22013-09-23 12:04:36 +1000380 hptep->r = cpu_to_be64((be64_to_cpu(hptep->r) &
381 ~(HPTE_R_PP | HPTE_R_N)) |
382 (newpp & (HPTE_R_PP | HPTE_R_N)));
Aneesh Kumar K.Vdb3d8532013-06-20 14:30:13 +0530383 /*
384 * Ensure it is out of the tlb too. Bolted entries base and
385 * actual page size will be same.
386 */
387 tlbie(vpn, psize, psize, ssize, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388}
389
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000390static void native_hpte_invalidate(unsigned long slot, unsigned long vpn,
Aneesh Kumar K.Vdb3d8532013-06-20 14:30:13 +0530391 int bpsize, int apsize, int ssize, int local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
David Gibson8e561e72007-06-13 14:52:56 +1000393 struct hash_pte *hptep = htab_address + slot;
David Gibson96e28442005-07-13 01:11:42 -0700394 unsigned long hpte_v;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100395 unsigned long want_v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000400 DBG_LOW(" invalidate(vpn=%016lx, hash: %lx)\n", vpn, slot);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100401
Aneesh Kumar K.Vdb3d8532013-06-20 14:30:13 +0530402 want_v = hpte_encode_avpn(vpn, bpsize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100403 native_lock_hpte(hptep);
Anton Blanchard12f04f22013-09-23 12:04:36 +1000404 hpte_v = be64_to_cpu(hptep->v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Aneesh Kumar K.V0608d692013-05-31 01:03:24 +0000406 /*
407 * We need to invalidate the TLB always because hpte_remove doesn't do
408 * a tlb invalidate. If a hash bucket gets full, we "evict" a more/less
409 * random entry from it. When we do that we don't invalidate the TLB
410 * (hpte_remove) because we assume the old translation is still
411 * technically "valid".
412 */
Aneesh Kumar K.Vdb3d8532013-06-20 14:30:13 +0530413 if (!HPTE_V_COMPARE(hpte_v, want_v) || !(hpte_v & HPTE_V_VALID))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 native_unlock_hpte(hptep);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100415 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 /* Invalidate the hpte. NOTE: this also unlocks it */
David Gibson96e28442005-07-13 01:11:42 -0700417 hptep->v = 0;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100418
419 /* Invalidate the TLB */
Aneesh Kumar K.Vdb3d8532013-06-20 14:30:13 +0530420 tlbie(vpn, bpsize, apsize, ssize, local);
421
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100422 local_irq_restore(flags);
423}
424
Aneesh Kumar K.Vfa1f8ae2014-08-13 12:31:58 +0530425static void native_hugepage_invalidate(unsigned long vsid,
426 unsigned long addr,
Aneesh Kumar K.V1a527282013-06-20 14:30:27 +0530427 unsigned char *hpte_slot_array,
Aneesh Kumar K.Vd557b092014-11-02 21:15:28 +0530428 int psize, int ssize, int local)
Aneesh Kumar K.V1a527282013-06-20 14:30:27 +0530429{
Aneesh Kumar K.V969b7b22014-08-13 12:32:01 +0530430 int i;
Aneesh Kumar K.V1a527282013-06-20 14:30:27 +0530431 struct hash_pte *hptep;
432 int actual_psize = MMU_PAGE_16M;
433 unsigned int max_hpte_count, valid;
434 unsigned long flags, s_addr = addr;
435 unsigned long hpte_v, want_v, shift;
Aneesh Kumar K.Vfa1f8ae2014-08-13 12:31:58 +0530436 unsigned long hidx, vpn = 0, hash, slot;
Aneesh Kumar K.V1a527282013-06-20 14:30:27 +0530437
438 shift = mmu_psize_defs[psize].shift;
439 max_hpte_count = 1U << (PMD_SHIFT - shift);
440
441 local_irq_save(flags);
442 for (i = 0; i < max_hpte_count; i++) {
443 valid = hpte_valid(hpte_slot_array, i);
444 if (!valid)
445 continue;
446 hidx = hpte_hash_index(hpte_slot_array, i);
447
448 /* get the vpn */
449 addr = s_addr + (i * (1ul << shift));
Aneesh Kumar K.V1a527282013-06-20 14:30:27 +0530450 vpn = hpt_vpn(addr, vsid, ssize);
451 hash = hpt_hash(vpn, shift, ssize);
452 if (hidx & _PTEIDX_SECONDARY)
453 hash = ~hash;
454
455 slot = (hash & htab_hash_mask) * HPTES_PER_GROUP;
456 slot += hidx & _PTEIDX_GROUP_IX;
457
458 hptep = htab_address + slot;
459 want_v = hpte_encode_avpn(vpn, psize, ssize);
460 native_lock_hpte(hptep);
Anton Blanchard12f04f22013-09-23 12:04:36 +1000461 hpte_v = be64_to_cpu(hptep->v);
Aneesh Kumar K.V1a527282013-06-20 14:30:27 +0530462
463 /* Even if we miss, we need to invalidate the TLB */
464 if (!HPTE_V_COMPARE(hpte_v, want_v) || !(hpte_v & HPTE_V_VALID))
465 native_unlock_hpte(hptep);
466 else
467 /* Invalidate the hpte. NOTE: this also unlocks it */
468 hptep->v = 0;
Aneesh Kumar K.V969b7b22014-08-13 12:32:01 +0530469 /*
470 * We need to do tlb invalidate for all the address, tlbie
471 * instruction compares entry_VA in tlb with the VA specified
472 * here
473 */
Aneesh Kumar K.Vd557b092014-11-02 21:15:28 +0530474 tlbie(vpn, psize, actual_psize, ssize, local);
Aneesh Kumar K.V1a527282013-06-20 14:30:27 +0530475 }
Aneesh Kumar K.V1a527282013-06-20 14:30:27 +0530476 local_irq_restore(flags);
477}
478
Aneesh Kumar K.Vdb3d8532013-06-20 14:30:13 +0530479static inline int __hpte_actual_psize(unsigned int lp, int psize)
480{
481 int i, shift;
482 unsigned int mask;
483
484 /* start from 1 ignoring MMU_PAGE_4K */
485 for (i = 1; i < MMU_PAGE_COUNT; i++) {
486
487 /* invalid penc */
488 if (mmu_psize_defs[psize].penc[i] == -1)
489 continue;
490 /*
491 * encoding bits per actual page size
492 * PTE LP actual page size
493 * rrrr rrrz >=8KB
494 * rrrr rrzz >=16KB
495 * rrrr rzzz >=32KB
496 * rrrr zzzz >=64KB
497 * .......
498 */
499 shift = mmu_psize_defs[i].shift - LP_SHIFT;
500 if (shift > LP_BITS)
501 shift = LP_BITS;
502 mask = (1 << shift) - 1;
503 if ((lp & mask) == mmu_psize_defs[psize].penc[i])
504 return i;
505 }
506 return -1;
507}
508
David Gibson8e561e72007-06-13 14:52:56 +1000509static void hpte_decode(struct hash_pte *hpte, unsigned long slot,
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000510 int *psize, int *apsize, int *ssize, unsigned long *vpn)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100511{
Aneesh Kumar K.Vdcda2872012-09-10 02:52:49 +0000512 unsigned long avpn, pteg, vpi;
Anton Blanchard12f04f22013-09-23 12:04:36 +1000513 unsigned long hpte_v = be64_to_cpu(hpte->v);
514 unsigned long hpte_r = be64_to_cpu(hpte->r);
Aneesh Kumar K.Vdcda2872012-09-10 02:52:49 +0000515 unsigned long vsid, seg_off;
Aneesh Kumar K.V7e74c392013-04-28 09:37:36 +0000516 int size, a_size, shift;
517 /* Look at the 8 bit LP value */
Anton Blanchard12f04f22013-09-23 12:04:36 +1000518 unsigned int lp = (hpte_r >> LP_SHIFT) & ((1 << LP_BITS) - 1);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100519
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000520 if (!(hpte_v & HPTE_V_LARGE)) {
521 size = MMU_PAGE_4K;
522 a_size = MMU_PAGE_4K;
523 } else {
Luke Browning71bf08b2007-05-03 00:19:11 +1000524 for (size = 0; size < MMU_PAGE_COUNT; size++) {
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100525
Luke Browning71bf08b2007-05-03 00:19:11 +1000526 /* valid entries have a shift value */
527 if (!mmu_psize_defs[size].shift)
528 continue;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100529
Aneesh Kumar K.V7e74c392013-04-28 09:37:36 +0000530 a_size = __hpte_actual_psize(lp, size);
531 if (a_size != -1)
532 break;
Luke Browning71bf08b2007-05-03 00:19:11 +1000533 }
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 Mackerras1189be62007-10-11 20:37:10 +1000536 *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 *
578 * TODO: add batching support when enabled. remember, no dynamic memory here,
579 * athough there is the control page available...
580 */
581static void native_hpte_clear(void)
582{
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000583 unsigned long vpn = 0;
R Sharadaf4c82d52005-06-25 14:58:08 -0700584 unsigned long slot, slots, flags;
David Gibson8e561e72007-06-13 14:52:56 +1000585 struct hash_pte *hptep = htab_address;
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000586 unsigned long hpte_v;
R Sharadaf4c82d52005-06-25 14:58:08 -0700587 unsigned long pteg_count;
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000588 int psize, apsize, ssize;
R Sharadaf4c82d52005-06-25 14:58:08 -0700589
590 pteg_count = htab_hash_mask + 1;
591
592 local_irq_save(flags);
593
594 /* we take the tlbie lock and hold it. Some hardware will
595 * deadlock if we try to tlbie from two processors at once.
596 */
Thomas Gleixner6b9c9b82010-02-18 02:22:35 +0000597 raw_spin_lock(&native_tlbie_lock);
R Sharadaf4c82d52005-06-25 14:58:08 -0700598
599 slots = pteg_count * HPTES_PER_GROUP;
600
601 for (slot = 0; slot < slots; slot++, hptep++) {
602 /*
603 * we could lock the pte here, but we are the only cpu
604 * running, right? and for crash dump, we probably
605 * don't want to wait for a maybe bad cpu.
606 */
Anton Blanchard12f04f22013-09-23 12:04:36 +1000607 hpte_v = be64_to_cpu(hptep->v);
R Sharadaf4c82d52005-06-25 14:58:08 -0700608
R Sharada47f78a42006-02-22 21:43:08 +0530609 /*
610 * Call __tlbie() here rather than tlbie() since we
611 * already hold the native_tlbie_lock.
612 */
David Gibson96e28442005-07-13 01:11:42 -0700613 if (hpte_v & HPTE_V_VALID) {
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000614 hpte_decode(hptep, slot, &psize, &apsize, &ssize, &vpn);
David Gibson96e28442005-07-13 01:11:42 -0700615 hptep->v = 0;
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000616 __tlbie(vpn, psize, apsize, ssize);
R Sharadaf4c82d52005-06-25 14:58:08 -0700617 }
618 }
619
R Sharada47f78a42006-02-22 21:43:08 +0530620 asm volatile("eieio; tlbsync; ptesync":::"memory");
Thomas Gleixner6b9c9b82010-02-18 02:22:35 +0000621 raw_spin_unlock(&native_tlbie_lock);
R Sharadaf4c82d52005-06-25 14:58:08 -0700622 local_irq_restore(flags);
623}
624
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100625/*
626 * Batched hash table flush, we batch the tlbie's to avoid taking/releasing
627 * the lock all the time
628 */
Benjamin Herrenschmidt61b1a942005-09-20 13:52:50 +1000629static void native_flush_hash_range(unsigned long number, int local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630{
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000631 unsigned long vpn;
632 unsigned long hash, index, hidx, shift, slot;
David Gibson8e561e72007-06-13 14:52:56 +1000633 struct hash_pte *hptep;
David Gibson96e28442005-07-13 01:11:42 -0700634 unsigned long hpte_v;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100635 unsigned long want_v;
636 unsigned long flags;
637 real_pte_t pte;
Christoph Lameter69111ba2014-10-21 15:23:25 -0500638 struct ppc64_tlb_batch *batch = this_cpu_ptr(&ppc64_tlb_batch);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100639 unsigned long psize = batch->psize;
Paul Mackerras1189be62007-10-11 20:37:10 +1000640 int ssize = batch->ssize;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100641 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
643 local_irq_save(flags);
644
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 for (i = 0; i < number; i++) {
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000646 vpn = batch->vpn[i];
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100647 pte = batch->pte[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000649 pte_iterate_hashed_subpages(pte, psize, vpn, index, shift) {
650 hash = hpt_hash(vpn, shift, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100651 hidx = __rpte_to_hidx(pte, index);
652 if (hidx & _PTEIDX_SECONDARY)
653 hash = ~hash;
654 slot = (hash & htab_hash_mask) * HPTES_PER_GROUP;
655 slot += hidx & _PTEIDX_GROUP_IX;
656 hptep = htab_address + slot;
Aneesh Kumar K.V74f227b2013-04-28 09:37:34 +0000657 want_v = hpte_encode_avpn(vpn, psize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100658 native_lock_hpte(hptep);
Anton Blanchard12f04f22013-09-23 12:04:36 +1000659 hpte_v = be64_to_cpu(hptep->v);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100660 if (!HPTE_V_COMPARE(hpte_v, want_v) ||
661 !(hpte_v & HPTE_V_VALID))
662 native_unlock_hpte(hptep);
663 else
664 hptep->v = 0;
665 } pte_iterate_hashed_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 }
667
Matt Evans44ae3ab2011-04-06 19:48:50 +0000668 if (mmu_has_feature(MMU_FTR_TLBIEL) &&
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100669 mmu_psize_defs[psize].tlbiel && local) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 asm volatile("ptesync":::"memory");
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100671 for (i = 0; i < number; i++) {
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000672 vpn = batch->vpn[i];
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100673 pte = batch->pte[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000675 pte_iterate_hashed_subpages(pte, psize,
676 vpn, index, shift) {
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000677 __tlbiel(vpn, psize, psize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100678 } pte_iterate_hashed_end();
679 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 asm volatile("ptesync":::"memory");
681 } else {
Matt Evans44ae3ab2011-04-06 19:48:50 +0000682 int lock_tlbie = !mmu_has_feature(MMU_FTR_LOCKLESS_TLBIE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
684 if (lock_tlbie)
Thomas Gleixner6b9c9b82010-02-18 02:22:35 +0000685 raw_spin_lock(&native_tlbie_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
687 asm volatile("ptesync":::"memory");
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100688 for (i = 0; i < number; i++) {
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000689 vpn = batch->vpn[i];
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100690 pte = batch->pte[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000692 pte_iterate_hashed_subpages(pte, psize,
693 vpn, index, shift) {
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000694 __tlbie(vpn, psize, psize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100695 } pte_iterate_hashed_end();
696 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 asm volatile("eieio; tlbsync; ptesync":::"memory");
698
699 if (lock_tlbie)
Thomas Gleixner6b9c9b82010-02-18 02:22:35 +0000700 raw_spin_unlock(&native_tlbie_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 }
702
703 local_irq_restore(flags);
704}
705
Michael Ellerman7d0daae2006-06-23 18:16:38 +1000706void __init hpte_init_native(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707{
708 ppc_md.hpte_invalidate = native_hpte_invalidate;
709 ppc_md.hpte_updatepp = native_hpte_updatepp;
710 ppc_md.hpte_updateboltedpp = native_hpte_updateboltedpp;
711 ppc_md.hpte_insert = native_hpte_insert;
R Sharadaf4c82d52005-06-25 14:58:08 -0700712 ppc_md.hpte_remove = native_hpte_remove;
713 ppc_md.hpte_clear_all = native_hpte_clear;
Michael Ellerman8e166992012-09-20 22:08:28 +0000714 ppc_md.flush_hash_range = native_flush_hash_range;
Aneesh Kumar K.V1a527282013-06-20 14:30:27 +0530715 ppc_md.hugepage_invalidate = native_hugepage_invalidate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716}