blob: 3ea26c25590be1dabe4a057882f35b77f5dfe7c1 [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
32#ifdef DEBUG_LOW
33#define DBG_LOW(fmt...) udbg_printf(fmt)
34#else
35#define DBG_LOW(fmt...)
36#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Anton Blanchard12f04f22013-09-23 12:04:36 +100038#ifdef __BIG_ENDIAN__
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#define HPTE_LOCK_BIT 3
Anton Blanchard12f04f22013-09-23 12:04:36 +100040#else
41#define HPTE_LOCK_BIT (56+3)
42#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Paul Mackerras9e368f22011-06-29 00:40:08 +000044DEFINE_RAW_SPINLOCK(native_tlbie_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +000046static inline void __tlbie(unsigned long vpn, int psize, int apsize, int ssize)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110047{
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +000048 unsigned long va;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110049 unsigned int penc;
Aneesh Kumar K.Vde640952013-07-04 10:34:45 +053050 unsigned long sllp;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110051
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +000052 /*
53 * We need 14 to 65 bits of va for a tlibe of 4K page
54 * With vpn we ignore the lower VPN_SHIFT bits already.
55 * And top two bits are already ignored because we can
56 * only accomadate 76 bits in a 64 bit vpn with a VPN_SHIFT
57 * of 12.
58 */
59 va = vpn << VPN_SHIFT;
60 /*
61 * clear top 16 bits of 64bit va, non SLS segment
62 * Older versions of the architecture (2.02 and earler) require the
63 * masking of the top 16 bits.
64 */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110065 va &= ~(0xffffULL << 48);
66
67 switch (psize) {
68 case MMU_PAGE_4K:
Aneesh Kumar K.V1f6aaac2013-04-28 09:37:39 +000069 /* clear out bits after (52) [0....52.....63] */
70 va &= ~((1ul << (64 - 52)) - 1);
Paul Mackerras1189be62007-10-11 20:37:10 +100071 va |= ssize << 8;
Aneesh Kumar K.Vde640952013-07-04 10:34:45 +053072 sllp = ((mmu_psize_defs[apsize].sllp & SLB_VSID_L) >> 6) |
73 ((mmu_psize_defs[apsize].sllp & SLB_VSID_LP) >> 4);
74 va |= sllp << 5;
Michael Neulinga32e2522011-04-06 18:23:29 +000075 asm volatile(ASM_FTR_IFCLR("tlbie %0,0", PPC_TLBIE(%1,%0), %2)
Paul Mackerras969391c2011-06-29 00:26:11 +000076 : : "r" (va), "r"(0), "i" (CPU_FTR_ARCH_206)
Milton Miller60dbf432009-04-29 20:58:01 +000077 : "memory");
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110078 break;
79 default:
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +000080 /* We need 14 to 14 + i bits of va */
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +000081 penc = mmu_psize_defs[psize].penc[apsize];
Aneesh Kumar K.V1f6aaac2013-04-28 09:37:39 +000082 va &= ~((1ul << mmu_psize_defs[apsize].shift) - 1);
Arnd Bergmann19242b22006-06-15 21:15:44 +100083 va |= penc << 12;
Paul Mackerras1189be62007-10-11 20:37:10 +100084 va |= ssize << 8;
Aneesh Kumar K.V1f6aaac2013-04-28 09:37:39 +000085 /* Add AVAL part */
86 if (psize != apsize) {
87 /*
88 * MPSS, 64K base page size and 16MB parge page size
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);
95 }
Milton Miller60dbf432009-04-29 20:58:01 +000096 va |= 1; /* L */
Michael Neulinga32e2522011-04-06 18:23:29 +000097 asm volatile(ASM_FTR_IFCLR("tlbie %0,1", PPC_TLBIE(%1,%0), %2)
Paul Mackerras969391c2011-06-29 00:26:11 +000098 : : "r" (va), "r"(0), "i" (CPU_FTR_ARCH_206)
Milton Miller60dbf432009-04-29 20:58:01 +000099 : "memory");
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100100 break;
101 }
102}
103
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000104static inline void __tlbiel(unsigned long vpn, int psize, int apsize, int ssize)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100105{
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000106 unsigned long va;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100107 unsigned int penc;
Aneesh Kumar K.Vde640952013-07-04 10:34:45 +0530108 unsigned long sllp;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100109
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000110 /* VPN_SHIFT can be atmost 12 */
111 va = vpn << VPN_SHIFT;
112 /*
113 * clear top 16 bits of 64 bit va, non SLS segment
114 * Older versions of the architecture (2.02 and earler) require the
115 * masking of the top 16 bits.
116 */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100117 va &= ~(0xffffULL << 48);
118
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.Vde640952013-07-04 10:34:45 +0530124 sllp = ((mmu_psize_defs[apsize].sllp & SLB_VSID_L) >> 6) |
125 ((mmu_psize_defs[apsize].sllp & SLB_VSID_LP) >> 4);
126 va |= sllp << 5;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100127 asm volatile(".long 0x7c000224 | (%0 << 11) | (0 << 21)"
128 : : "r"(va) : "memory");
129 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.V1f6aaac2013-04-28 09:37:39 +0000136 /* Add AVAL part */
137 if (psize != apsize) {
138 /*
139 * MPSS, 64K base page size and 16MB parge page size
140 * We don't need all the bits, but rest of the bits
141 * must be ignored by the processor.
142 * vpn cover upto 65 bits of va. (0...65) and we need
143 * 58..64 bits of va.
144 */
145 va |= (vpn & 0xfe);
146 }
Milton Miller60dbf432009-04-29 20:58:01 +0000147 va |= 1; /* L */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100148 asm volatile(".long 0x7c000224 | (%0 << 11) | (1 << 21)"
149 : : "r"(va) : "memory");
150 break;
151 }
152
153}
154
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000155static inline void tlbie(unsigned long vpn, int psize, int apsize,
156 int ssize, int local)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100157{
Matt Evans44ae3ab2011-04-06 19:48:50 +0000158 unsigned int use_local = local && mmu_has_feature(MMU_FTR_TLBIEL);
159 int lock_tlbie = !mmu_has_feature(MMU_FTR_LOCKLESS_TLBIE);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100160
161 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;
226 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
Anton Blanchard12f04f22013-09-23 12:04:36 +1000233 hptep->r = cpu_to_be64(hpte_r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 /* Guarantee the second dword is visible before the valid bit */
Kumar Gala74a0ba62007-07-09 23:49:09 -0500235 eieio();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 /*
237 * Now set the first dword including the valid bit
238 * NOTE: this also unlocks the hpte
239 */
Anton Blanchard12f04f22013-09-23 12:04:36 +1000240 hptep->v = cpu_to_be64(hpte_v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242 __asm__ __volatile__ ("ptesync" : : : "memory");
243
David Gibson96e28442005-07-13 01:11:42 -0700244 return i | (!!(vflags & HPTE_V_SECONDARY) << 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245}
246
247static long native_hpte_remove(unsigned long hpte_group)
248{
David Gibson8e561e72007-06-13 14:52:56 +1000249 struct hash_pte *hptep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 int i;
251 int slot_offset;
David Gibson96e28442005-07-13 01:11:42 -0700252 unsigned long hpte_v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100254 DBG_LOW(" remove(group=%lx)\n", hpte_group);
255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 /* pick a random entry to start at */
257 slot_offset = mftb() & 0x7;
258
259 for (i = 0; i < HPTES_PER_GROUP; i++) {
260 hptep = htab_address + hpte_group + slot_offset;
Anton Blanchard12f04f22013-09-23 12:04:36 +1000261 hpte_v = be64_to_cpu(hptep->v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
David Gibson96e28442005-07-13 01:11:42 -0700263 if ((hpte_v & HPTE_V_VALID) && !(hpte_v & HPTE_V_BOLTED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 /* retry with lock held */
265 native_lock_hpte(hptep);
Anton Blanchard12f04f22013-09-23 12:04:36 +1000266 hpte_v = be64_to_cpu(hptep->v);
David Gibson96e28442005-07-13 01:11:42 -0700267 if ((hpte_v & HPTE_V_VALID)
268 && !(hpte_v & HPTE_V_BOLTED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 break;
270 native_unlock_hpte(hptep);
271 }
272
273 slot_offset++;
274 slot_offset &= 0x7;
275 }
276
277 if (i == HPTES_PER_GROUP)
278 return -1;
279
280 /* Invalidate the hpte. NOTE: this also unlocks it */
David Gibson96e28442005-07-13 01:11:42 -0700281 hptep->v = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283 return i;
284}
285
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100286static long native_hpte_updatepp(unsigned long slot, unsigned long newpp,
Aneesh Kumar K.Vdb3d8532013-06-20 14:30:13 +0530287 unsigned long vpn, int bpsize,
288 int apsize, int ssize, int local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
David Gibson8e561e72007-06-13 14:52:56 +1000290 struct hash_pte *hptep = htab_address + slot;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100291 unsigned long hpte_v, want_v;
292 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Aneesh Kumar K.Vdb3d8532013-06-20 14:30:13 +0530294 want_v = hpte_encode_avpn(vpn, bpsize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100295
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000296 DBG_LOW(" update(vpn=%016lx, avpnv=%016lx, group=%lx, newpp=%lx)",
297 vpn, want_v & HPTE_V_AVPN, slot, newpp);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100298
299 native_lock_hpte(hptep);
300
Anton Blanchard12f04f22013-09-23 12:04:36 +1000301 hpte_v = be64_to_cpu(hptep->v);
Aneesh Kumar K.V0608d692013-05-31 01:03:24 +0000302 /*
303 * We need to invalidate the TLB always because hpte_remove doesn't do
304 * a tlb invalidate. If a hash bucket gets full, we "evict" a more/less
305 * random entry from it. When we do that we don't invalidate the TLB
306 * (hpte_remove) because we assume the old translation is still
307 * technically "valid".
308 */
Aneesh Kumar K.Vdb3d8532013-06-20 14:30:13 +0530309 if (!HPTE_V_COMPARE(hpte_v, want_v) || !(hpte_v & HPTE_V_VALID)) {
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100310 DBG_LOW(" -> miss\n");
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100311 ret = -1;
312 } else {
313 DBG_LOW(" -> hit\n");
314 /* Update the HPTE */
Anton Blanchard12f04f22013-09-23 12:04:36 +1000315 hptep->r = cpu_to_be64((be64_to_cpu(hptep->r) & ~(HPTE_R_PP | HPTE_R_N)) |
316 (newpp & (HPTE_R_PP | HPTE_R_N | HPTE_R_C)));
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100317 }
Jon Tollefson3f1df7a2007-05-18 04:49:22 +1000318 native_unlock_hpte(hptep);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100319
320 /* Ensure it is out of the tlb too. */
Aneesh Kumar K.Vdb3d8532013-06-20 14:30:13 +0530321 tlbie(vpn, bpsize, apsize, ssize, local);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100322
323 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324}
325
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000326static long native_hpte_find(unsigned long vpn, int psize, int ssize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327{
David Gibson8e561e72007-06-13 14:52:56 +1000328 struct hash_pte *hptep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 unsigned long hash;
Paul Mackerras1189be62007-10-11 20:37:10 +1000330 unsigned long i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 long slot;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100332 unsigned long want_v, hpte_v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000334 hash = hpt_hash(vpn, mmu_psize_defs[psize].shift, ssize);
Aneesh Kumar K.V74f227b2013-04-28 09:37:34 +0000335 want_v = hpte_encode_avpn(vpn, psize, ssize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Paul Mackerras1189be62007-10-11 20:37:10 +1000337 /* Bolted mappings are only ever in the primary group */
338 slot = (hash & htab_hash_mask) * HPTES_PER_GROUP;
339 for (i = 0; i < HPTES_PER_GROUP; i++) {
340 hptep = htab_address + slot;
Anton Blanchard12f04f22013-09-23 12:04:36 +1000341 hpte_v = be64_to_cpu(hptep->v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Paul Mackerras1189be62007-10-11 20:37:10 +1000343 if (HPTE_V_COMPARE(hpte_v, want_v) && (hpte_v & HPTE_V_VALID))
344 /* HPTE matches */
345 return slot;
346 ++slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 }
348
349 return -1;
350}
351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352/*
353 * Update the page protection bits. Intended to be used to create
354 * guard pages for kernel data structures on pages which are bolted
355 * in the HPT. Assumes pages being operated on will not be stolen.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 *
357 * No need to lock here because we should be the only user.
358 */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100359static void native_hpte_updateboltedpp(unsigned long newpp, unsigned long ea,
Paul Mackerras1189be62007-10-11 20:37:10 +1000360 int psize, int ssize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000362 unsigned long vpn;
363 unsigned long vsid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 long slot;
David Gibson8e561e72007-06-13 14:52:56 +1000365 struct hash_pte *hptep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Paul Mackerras1189be62007-10-11 20:37:10 +1000367 vsid = get_kernel_vsid(ea, ssize);
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000368 vpn = hpt_vpn(ea, vsid, ssize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000370 slot = native_hpte_find(vpn, psize, ssize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 if (slot == -1)
372 panic("could not find page to bolt\n");
373 hptep = htab_address + slot;
374
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100375 /* Update the HPTE */
Anton Blanchard12f04f22013-09-23 12:04:36 +1000376 hptep->r = cpu_to_be64((be64_to_cpu(hptep->r) &
377 ~(HPTE_R_PP | HPTE_R_N)) |
378 (newpp & (HPTE_R_PP | HPTE_R_N)));
Aneesh Kumar K.Vdb3d8532013-06-20 14:30:13 +0530379 /*
380 * Ensure it is out of the tlb too. Bolted entries base and
381 * actual page size will be same.
382 */
383 tlbie(vpn, psize, psize, ssize, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384}
385
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000386static void native_hpte_invalidate(unsigned long slot, unsigned long vpn,
Aneesh Kumar K.Vdb3d8532013-06-20 14:30:13 +0530387 int bpsize, int apsize, int ssize, int local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
David Gibson8e561e72007-06-13 14:52:56 +1000389 struct hash_pte *hptep = htab_address + slot;
David Gibson96e28442005-07-13 01:11:42 -0700390 unsigned long hpte_v;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100391 unsigned long want_v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
394 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000396 DBG_LOW(" invalidate(vpn=%016lx, hash: %lx)\n", vpn, slot);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100397
Aneesh Kumar K.Vdb3d8532013-06-20 14:30:13 +0530398 want_v = hpte_encode_avpn(vpn, bpsize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100399 native_lock_hpte(hptep);
Anton Blanchard12f04f22013-09-23 12:04:36 +1000400 hpte_v = be64_to_cpu(hptep->v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Aneesh Kumar K.V0608d692013-05-31 01:03:24 +0000402 /*
403 * We need to invalidate the TLB always because hpte_remove doesn't do
404 * a tlb invalidate. If a hash bucket gets full, we "evict" a more/less
405 * random entry from it. When we do that we don't invalidate the TLB
406 * (hpte_remove) because we assume the old translation is still
407 * technically "valid".
408 */
Aneesh Kumar K.Vdb3d8532013-06-20 14:30:13 +0530409 if (!HPTE_V_COMPARE(hpte_v, want_v) || !(hpte_v & HPTE_V_VALID))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 native_unlock_hpte(hptep);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100411 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 /* Invalidate the hpte. NOTE: this also unlocks it */
David Gibson96e28442005-07-13 01:11:42 -0700413 hptep->v = 0;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100414
415 /* Invalidate the TLB */
Aneesh Kumar K.Vdb3d8532013-06-20 14:30:13 +0530416 tlbie(vpn, bpsize, apsize, ssize, local);
417
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100418 local_irq_restore(flags);
419}
420
Aneesh Kumar K.V1a527282013-06-20 14:30:27 +0530421static void native_hugepage_invalidate(struct mm_struct *mm,
422 unsigned char *hpte_slot_array,
423 unsigned long addr, int psize)
424{
425 int ssize = 0, i;
426 int lock_tlbie;
427 struct hash_pte *hptep;
428 int actual_psize = MMU_PAGE_16M;
429 unsigned int max_hpte_count, valid;
430 unsigned long flags, s_addr = addr;
431 unsigned long hpte_v, want_v, shift;
432 unsigned long hidx, vpn = 0, vsid, hash, slot;
433
434 shift = mmu_psize_defs[psize].shift;
435 max_hpte_count = 1U << (PMD_SHIFT - shift);
436
437 local_irq_save(flags);
438 for (i = 0; i < max_hpte_count; i++) {
439 valid = hpte_valid(hpte_slot_array, i);
440 if (!valid)
441 continue;
442 hidx = hpte_hash_index(hpte_slot_array, i);
443
444 /* get the vpn */
445 addr = s_addr + (i * (1ul << shift));
446 if (!is_kernel_addr(addr)) {
447 ssize = user_segment_size(addr);
448 vsid = get_vsid(mm->context.id, addr, ssize);
449 WARN_ON(vsid == 0);
450 } else {
451 vsid = get_kernel_vsid(addr, mmu_kernel_ssize);
452 ssize = mmu_kernel_ssize;
453 }
454
455 vpn = hpt_vpn(addr, vsid, ssize);
456 hash = hpt_hash(vpn, shift, ssize);
457 if (hidx & _PTEIDX_SECONDARY)
458 hash = ~hash;
459
460 slot = (hash & htab_hash_mask) * HPTES_PER_GROUP;
461 slot += hidx & _PTEIDX_GROUP_IX;
462
463 hptep = htab_address + slot;
464 want_v = hpte_encode_avpn(vpn, psize, ssize);
465 native_lock_hpte(hptep);
Anton Blanchard12f04f22013-09-23 12:04:36 +1000466 hpte_v = be64_to_cpu(hptep->v);
Aneesh Kumar K.V1a527282013-06-20 14:30:27 +0530467
468 /* Even if we miss, we need to invalidate the TLB */
469 if (!HPTE_V_COMPARE(hpte_v, want_v) || !(hpte_v & HPTE_V_VALID))
470 native_unlock_hpte(hptep);
471 else
472 /* Invalidate the hpte. NOTE: this also unlocks it */
473 hptep->v = 0;
474 }
475 /*
476 * Since this is a hugepage, we just need a single tlbie.
477 * use the last vpn.
478 */
479 lock_tlbie = !mmu_has_feature(MMU_FTR_LOCKLESS_TLBIE);
480 if (lock_tlbie)
481 raw_spin_lock(&native_tlbie_lock);
482
483 asm volatile("ptesync":::"memory");
484 __tlbie(vpn, psize, actual_psize, ssize);
485 asm volatile("eieio; tlbsync; ptesync":::"memory");
486
487 if (lock_tlbie)
488 raw_spin_unlock(&native_tlbie_lock);
489
490 local_irq_restore(flags);
491}
492
Aneesh Kumar K.Vdb3d8532013-06-20 14:30:13 +0530493static inline int __hpte_actual_psize(unsigned int lp, int psize)
494{
495 int i, shift;
496 unsigned int mask;
497
498 /* start from 1 ignoring MMU_PAGE_4K */
499 for (i = 1; i < MMU_PAGE_COUNT; i++) {
500
501 /* invalid penc */
502 if (mmu_psize_defs[psize].penc[i] == -1)
503 continue;
504 /*
505 * encoding bits per actual page size
506 * PTE LP actual page size
507 * rrrr rrrz >=8KB
508 * rrrr rrzz >=16KB
509 * rrrr rzzz >=32KB
510 * rrrr zzzz >=64KB
511 * .......
512 */
513 shift = mmu_psize_defs[i].shift - LP_SHIFT;
514 if (shift > LP_BITS)
515 shift = LP_BITS;
516 mask = (1 << shift) - 1;
517 if ((lp & mask) == mmu_psize_defs[psize].penc[i])
518 return i;
519 }
520 return -1;
521}
522
David Gibson8e561e72007-06-13 14:52:56 +1000523static void hpte_decode(struct hash_pte *hpte, unsigned long slot,
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000524 int *psize, int *apsize, int *ssize, unsigned long *vpn)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100525{
Aneesh Kumar K.Vdcda2872012-09-10 02:52:49 +0000526 unsigned long avpn, pteg, vpi;
Anton Blanchard12f04f22013-09-23 12:04:36 +1000527 unsigned long hpte_v = be64_to_cpu(hpte->v);
528 unsigned long hpte_r = be64_to_cpu(hpte->r);
Aneesh Kumar K.Vdcda2872012-09-10 02:52:49 +0000529 unsigned long vsid, seg_off;
Aneesh Kumar K.V7e74c392013-04-28 09:37:36 +0000530 int size, a_size, shift;
531 /* Look at the 8 bit LP value */
Anton Blanchard12f04f22013-09-23 12:04:36 +1000532 unsigned int lp = (hpte_r >> LP_SHIFT) & ((1 << LP_BITS) - 1);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100533
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000534 if (!(hpte_v & HPTE_V_LARGE)) {
535 size = MMU_PAGE_4K;
536 a_size = MMU_PAGE_4K;
537 } else {
Luke Browning71bf08b2007-05-03 00:19:11 +1000538 for (size = 0; size < MMU_PAGE_COUNT; size++) {
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100539
Luke Browning71bf08b2007-05-03 00:19:11 +1000540 /* valid entries have a shift value */
541 if (!mmu_psize_defs[size].shift)
542 continue;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100543
Aneesh Kumar K.V7e74c392013-04-28 09:37:36 +0000544 a_size = __hpte_actual_psize(lp, size);
545 if (a_size != -1)
546 break;
Luke Browning71bf08b2007-05-03 00:19:11 +1000547 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 }
Paul Mackerras2454c7e2007-05-10 15:28:44 +1000549 /* This works for all page sizes, and for 256M and 1T segments */
Paul Mackerras1189be62007-10-11 20:37:10 +1000550 *ssize = hpte_v >> HPTE_V_SSIZE_SHIFT;
Aneesh Kumar K.Vdcda2872012-09-10 02:52:49 +0000551 shift = mmu_psize_defs[size].shift;
552
553 avpn = (HPTE_V_AVPN_VAL(hpte_v) & ~mmu_psize_defs[size].avpnm);
554 pteg = slot / HPTES_PER_GROUP;
555 if (hpte_v & HPTE_V_SECONDARY)
556 pteg = ~pteg;
557
558 switch (*ssize) {
559 case MMU_SEGSIZE_256M:
560 /* We only have 28 - 23 bits of seg_off in avpn */
561 seg_off = (avpn & 0x1f) << 23;
562 vsid = avpn >> 5;
563 /* We can find more bits from the pteg value */
564 if (shift < 23) {
565 vpi = (vsid ^ pteg) & htab_hash_mask;
566 seg_off |= vpi << shift;
567 }
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000568 *vpn = vsid << (SID_SHIFT - VPN_SHIFT) | seg_off >> VPN_SHIFT;
Aneesh Kumar K.V83383b72013-07-03 13:50:03 +0530569 break;
Aneesh Kumar K.Vdcda2872012-09-10 02:52:49 +0000570 case MMU_SEGSIZE_1T:
571 /* We only have 40 - 23 bits of seg_off in avpn */
572 seg_off = (avpn & 0x1ffff) << 23;
573 vsid = avpn >> 17;
574 if (shift < 23) {
575 vpi = (vsid ^ (vsid << 25) ^ pteg) & htab_hash_mask;
576 seg_off |= vpi << shift;
577 }
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000578 *vpn = vsid << (SID_SHIFT_1T - VPN_SHIFT) | seg_off >> VPN_SHIFT;
Aneesh Kumar K.V83383b72013-07-03 13:50:03 +0530579 break;
Aneesh Kumar K.Vdcda2872012-09-10 02:52:49 +0000580 default:
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000581 *vpn = size = 0;
Aneesh Kumar K.Vdcda2872012-09-10 02:52:49 +0000582 }
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000583 *psize = size;
584 *apsize = a_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585}
586
R Sharadaf4c82d52005-06-25 14:58:08 -0700587/*
588 * clear all mappings on kexec. All cpus are in real mode (or they will
589 * be when they isi), and we are the only one left. We rely on our kernel
590 * mapping being 0xC0's and the hardware ignoring those two real bits.
591 *
592 * TODO: add batching support when enabled. remember, no dynamic memory here,
593 * athough there is the control page available...
594 */
595static void native_hpte_clear(void)
596{
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000597 unsigned long vpn = 0;
R Sharadaf4c82d52005-06-25 14:58:08 -0700598 unsigned long slot, slots, flags;
David Gibson8e561e72007-06-13 14:52:56 +1000599 struct hash_pte *hptep = htab_address;
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000600 unsigned long hpte_v;
R Sharadaf4c82d52005-06-25 14:58:08 -0700601 unsigned long pteg_count;
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000602 int psize, apsize, ssize;
R Sharadaf4c82d52005-06-25 14:58:08 -0700603
604 pteg_count = htab_hash_mask + 1;
605
606 local_irq_save(flags);
607
608 /* we take the tlbie lock and hold it. Some hardware will
609 * deadlock if we try to tlbie from two processors at once.
610 */
Thomas Gleixner6b9c9b82010-02-18 02:22:35 +0000611 raw_spin_lock(&native_tlbie_lock);
R Sharadaf4c82d52005-06-25 14:58:08 -0700612
613 slots = pteg_count * HPTES_PER_GROUP;
614
615 for (slot = 0; slot < slots; slot++, hptep++) {
616 /*
617 * we could lock the pte here, but we are the only cpu
618 * running, right? and for crash dump, we probably
619 * don't want to wait for a maybe bad cpu.
620 */
Anton Blanchard12f04f22013-09-23 12:04:36 +1000621 hpte_v = be64_to_cpu(hptep->v);
R Sharadaf4c82d52005-06-25 14:58:08 -0700622
R Sharada47f78a42006-02-22 21:43:08 +0530623 /*
624 * Call __tlbie() here rather than tlbie() since we
625 * already hold the native_tlbie_lock.
626 */
David Gibson96e28442005-07-13 01:11:42 -0700627 if (hpte_v & HPTE_V_VALID) {
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000628 hpte_decode(hptep, slot, &psize, &apsize, &ssize, &vpn);
David Gibson96e28442005-07-13 01:11:42 -0700629 hptep->v = 0;
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000630 __tlbie(vpn, psize, apsize, ssize);
R Sharadaf4c82d52005-06-25 14:58:08 -0700631 }
632 }
633
R Sharada47f78a42006-02-22 21:43:08 +0530634 asm volatile("eieio; tlbsync; ptesync":::"memory");
Thomas Gleixner6b9c9b82010-02-18 02:22:35 +0000635 raw_spin_unlock(&native_tlbie_lock);
R Sharadaf4c82d52005-06-25 14:58:08 -0700636 local_irq_restore(flags);
637}
638
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100639/*
640 * Batched hash table flush, we batch the tlbie's to avoid taking/releasing
641 * the lock all the time
642 */
Benjamin Herrenschmidt61b1a942005-09-20 13:52:50 +1000643static void native_flush_hash_range(unsigned long number, int local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000645 unsigned long vpn;
646 unsigned long hash, index, hidx, shift, slot;
David Gibson8e561e72007-06-13 14:52:56 +1000647 struct hash_pte *hptep;
David Gibson96e28442005-07-13 01:11:42 -0700648 unsigned long hpte_v;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100649 unsigned long want_v;
650 unsigned long flags;
651 real_pte_t pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 struct ppc64_tlb_batch *batch = &__get_cpu_var(ppc64_tlb_batch);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100653 unsigned long psize = batch->psize;
Paul Mackerras1189be62007-10-11 20:37:10 +1000654 int ssize = batch->ssize;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100655 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
657 local_irq_save(flags);
658
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 for (i = 0; i < number; i++) {
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000660 vpn = batch->vpn[i];
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100661 pte = batch->pte[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000663 pte_iterate_hashed_subpages(pte, psize, vpn, index, shift) {
664 hash = hpt_hash(vpn, shift, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100665 hidx = __rpte_to_hidx(pte, index);
666 if (hidx & _PTEIDX_SECONDARY)
667 hash = ~hash;
668 slot = (hash & htab_hash_mask) * HPTES_PER_GROUP;
669 slot += hidx & _PTEIDX_GROUP_IX;
670 hptep = htab_address + slot;
Aneesh Kumar K.V74f227b2013-04-28 09:37:34 +0000671 want_v = hpte_encode_avpn(vpn, psize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100672 native_lock_hpte(hptep);
Anton Blanchard12f04f22013-09-23 12:04:36 +1000673 hpte_v = be64_to_cpu(hptep->v);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100674 if (!HPTE_V_COMPARE(hpte_v, want_v) ||
675 !(hpte_v & HPTE_V_VALID))
676 native_unlock_hpte(hptep);
677 else
678 hptep->v = 0;
679 } pte_iterate_hashed_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 }
681
Matt Evans44ae3ab2011-04-06 19:48:50 +0000682 if (mmu_has_feature(MMU_FTR_TLBIEL) &&
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100683 mmu_psize_defs[psize].tlbiel && local) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 asm volatile("ptesync":::"memory");
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100685 for (i = 0; i < number; i++) {
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000686 vpn = batch->vpn[i];
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100687 pte = batch->pte[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000689 pte_iterate_hashed_subpages(pte, psize,
690 vpn, index, shift) {
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000691 __tlbiel(vpn, psize, psize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100692 } pte_iterate_hashed_end();
693 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 asm volatile("ptesync":::"memory");
695 } else {
Matt Evans44ae3ab2011-04-06 19:48:50 +0000696 int lock_tlbie = !mmu_has_feature(MMU_FTR_LOCKLESS_TLBIE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
698 if (lock_tlbie)
Thomas Gleixner6b9c9b82010-02-18 02:22:35 +0000699 raw_spin_lock(&native_tlbie_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
701 asm volatile("ptesync":::"memory");
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100702 for (i = 0; i < number; i++) {
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000703 vpn = batch->vpn[i];
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100704 pte = batch->pte[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000706 pte_iterate_hashed_subpages(pte, psize,
707 vpn, index, shift) {
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000708 __tlbie(vpn, psize, psize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100709 } pte_iterate_hashed_end();
710 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 asm volatile("eieio; tlbsync; ptesync":::"memory");
712
713 if (lock_tlbie)
Thomas Gleixner6b9c9b82010-02-18 02:22:35 +0000714 raw_spin_unlock(&native_tlbie_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 }
716
717 local_irq_restore(flags);
718}
719
Michael Ellerman7d0daae2006-06-23 18:16:38 +1000720void __init hpte_init_native(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721{
722 ppc_md.hpte_invalidate = native_hpte_invalidate;
723 ppc_md.hpte_updatepp = native_hpte_updatepp;
724 ppc_md.hpte_updateboltedpp = native_hpte_updateboltedpp;
725 ppc_md.hpte_insert = native_hpte_insert;
R Sharadaf4c82d52005-06-25 14:58:08 -0700726 ppc_md.hpte_remove = native_hpte_remove;
727 ppc_md.hpte_clear_all = native_hpte_clear;
Michael Ellerman8e166992012-09-20 22:08:28 +0000728 ppc_md.flush_hash_range = native_flush_hash_range;
Aneesh Kumar K.V1a527282013-06-20 14:30:27 +0530729 ppc_md.hugepage_invalidate = native_hugepage_invalidate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730}