blob: dfd764896db07bd26255648ec60a465006061ad2 [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>
17#include <linux/threads.h>
18#include <linux/smp.h>
19
20#include <asm/abs_addr.h>
21#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
38#define HPTE_LOCK_BIT 3
39
Thomas Gleixner6b9c9b82010-02-18 02:22:35 +000040static DEFINE_RAW_SPINLOCK(native_tlbie_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Paul Mackerras1189be62007-10-11 20:37:10 +100042static inline void __tlbie(unsigned long va, int psize, int ssize)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110043{
44 unsigned int penc;
45
46 /* clear top 16 bits, non SLS segment */
47 va &= ~(0xffffULL << 48);
48
49 switch (psize) {
50 case MMU_PAGE_4K:
51 va &= ~0xffful;
Paul Mackerras1189be62007-10-11 20:37:10 +100052 va |= ssize << 8;
Michael Neulinga32e2522011-04-06 18:23:29 +000053 asm volatile(ASM_FTR_IFCLR("tlbie %0,0", PPC_TLBIE(%1,%0), %2)
54 : : "r" (va), "r"(0), "i" (CPU_FTR_HVMODE_206)
Milton Miller60dbf432009-04-29 20:58:01 +000055 : "memory");
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110056 break;
57 default:
58 penc = mmu_psize_defs[psize].penc;
59 va &= ~((1ul << mmu_psize_defs[psize].shift) - 1);
Arnd Bergmann19242b22006-06-15 21:15:44 +100060 va |= penc << 12;
Paul Mackerras1189be62007-10-11 20:37:10 +100061 va |= ssize << 8;
Milton Miller60dbf432009-04-29 20:58:01 +000062 va |= 1; /* L */
Michael Neulinga32e2522011-04-06 18:23:29 +000063 asm volatile(ASM_FTR_IFCLR("tlbie %0,1", PPC_TLBIE(%1,%0), %2)
64 : : "r" (va), "r"(0), "i" (CPU_FTR_HVMODE_206)
Milton Miller60dbf432009-04-29 20:58:01 +000065 : "memory");
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110066 break;
67 }
68}
69
Paul Mackerras1189be62007-10-11 20:37:10 +100070static inline void __tlbiel(unsigned long va, int psize, int ssize)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110071{
72 unsigned int penc;
73
74 /* clear top 16 bits, non SLS segment */
75 va &= ~(0xffffULL << 48);
76
77 switch (psize) {
78 case MMU_PAGE_4K:
79 va &= ~0xffful;
Paul Mackerras1189be62007-10-11 20:37:10 +100080 va |= ssize << 8;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110081 asm volatile(".long 0x7c000224 | (%0 << 11) | (0 << 21)"
82 : : "r"(va) : "memory");
83 break;
84 default:
85 penc = mmu_psize_defs[psize].penc;
86 va &= ~((1ul << mmu_psize_defs[psize].shift) - 1);
Arnd Bergmann19242b22006-06-15 21:15:44 +100087 va |= penc << 12;
Paul Mackerras1189be62007-10-11 20:37:10 +100088 va |= ssize << 8;
Milton Miller60dbf432009-04-29 20:58:01 +000089 va |= 1; /* L */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110090 asm volatile(".long 0x7c000224 | (%0 << 11) | (1 << 21)"
91 : : "r"(va) : "memory");
92 break;
93 }
94
95}
96
Paul Mackerras1189be62007-10-11 20:37:10 +100097static inline void tlbie(unsigned long va, int psize, int ssize, int local)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110098{
Matt Evans44ae3ab2011-04-06 19:48:50 +000099 unsigned int use_local = local && mmu_has_feature(MMU_FTR_TLBIEL);
100 int lock_tlbie = !mmu_has_feature(MMU_FTR_LOCKLESS_TLBIE);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100101
102 if (use_local)
103 use_local = mmu_psize_defs[psize].tlbiel;
104 if (lock_tlbie && !use_local)
Thomas Gleixner6b9c9b82010-02-18 02:22:35 +0000105 raw_spin_lock(&native_tlbie_lock);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100106 asm volatile("ptesync": : :"memory");
107 if (use_local) {
Paul Mackerras1189be62007-10-11 20:37:10 +1000108 __tlbiel(va, psize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100109 asm volatile("ptesync": : :"memory");
110 } else {
Paul Mackerras1189be62007-10-11 20:37:10 +1000111 __tlbie(va, psize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100112 asm volatile("eieio; tlbsync; ptesync": : :"memory");
113 }
114 if (lock_tlbie && !use_local)
Thomas Gleixner6b9c9b82010-02-18 02:22:35 +0000115 raw_spin_unlock(&native_tlbie_lock);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100116}
117
David Gibson8e561e72007-06-13 14:52:56 +1000118static inline void native_lock_hpte(struct hash_pte *hptep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
David Gibson96e28442005-07-13 01:11:42 -0700120 unsigned long *word = &hptep->v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122 while (1) {
Anton Blanchard66d99b82010-02-10 01:03:06 +0000123 if (!test_and_set_bit_lock(HPTE_LOCK_BIT, word))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 break;
125 while(test_bit(HPTE_LOCK_BIT, word))
126 cpu_relax();
127 }
128}
129
David Gibson8e561e72007-06-13 14:52:56 +1000130static inline void native_unlock_hpte(struct hash_pte *hptep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
David Gibson96e28442005-07-13 01:11:42 -0700132 unsigned long *word = &hptep->v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Anton Blanchard66d99b82010-02-10 01:03:06 +0000134 clear_bit_unlock(HPTE_LOCK_BIT, word);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135}
136
Geoff Levand035223f2006-10-05 11:35:10 -0700137static long native_hpte_insert(unsigned long hpte_group, unsigned long va,
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100138 unsigned long pa, unsigned long rflags,
Paul Mackerras1189be62007-10-11 20:37:10 +1000139 unsigned long vflags, int psize, int ssize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
David Gibson8e561e72007-06-13 14:52:56 +1000141 struct hash_pte *hptep = htab_address + hpte_group;
David Gibson96e28442005-07-13 01:11:42 -0700142 unsigned long hpte_v, hpte_r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 int i;
144
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100145 if (!(vflags & HPTE_V_BOLTED)) {
146 DBG_LOW(" insert(group=%lx, va=%016lx, pa=%016lx,"
147 " rflags=%lx, vflags=%lx, psize=%d)\n",
148 hpte_group, va, pa, rflags, vflags, psize);
149 }
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 for (i = 0; i < HPTES_PER_GROUP; i++) {
David Gibson96e28442005-07-13 01:11:42 -0700152 if (! (hptep->v & HPTE_V_VALID)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 /* retry with lock held */
154 native_lock_hpte(hptep);
David Gibson96e28442005-07-13 01:11:42 -0700155 if (! (hptep->v & HPTE_V_VALID))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 break;
157 native_unlock_hpte(hptep);
158 }
159
160 hptep++;
161 }
162
163 if (i == HPTES_PER_GROUP)
164 return -1;
165
Paul Mackerras1189be62007-10-11 20:37:10 +1000166 hpte_v = hpte_encode_v(va, psize, ssize) | vflags | HPTE_V_VALID;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100167 hpte_r = hpte_encode_r(pa, psize) | rflags;
168
169 if (!(vflags & HPTE_V_BOLTED)) {
170 DBG_LOW(" i=%x hpte_v=%016lx, hpte_r=%016lx\n",
171 i, hpte_v, hpte_r);
172 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
David Gibson96e28442005-07-13 01:11:42 -0700174 hptep->r = hpte_r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 /* Guarantee the second dword is visible before the valid bit */
Kumar Gala74a0ba62007-07-09 23:49:09 -0500176 eieio();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 /*
178 * Now set the first dword including the valid bit
179 * NOTE: this also unlocks the hpte
180 */
David Gibson96e28442005-07-13 01:11:42 -0700181 hptep->v = hpte_v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183 __asm__ __volatile__ ("ptesync" : : : "memory");
184
David Gibson96e28442005-07-13 01:11:42 -0700185 return i | (!!(vflags & HPTE_V_SECONDARY) << 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186}
187
188static long native_hpte_remove(unsigned long hpte_group)
189{
David Gibson8e561e72007-06-13 14:52:56 +1000190 struct hash_pte *hptep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 int i;
192 int slot_offset;
David Gibson96e28442005-07-13 01:11:42 -0700193 unsigned long hpte_v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100195 DBG_LOW(" remove(group=%lx)\n", hpte_group);
196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 /* pick a random entry to start at */
198 slot_offset = mftb() & 0x7;
199
200 for (i = 0; i < HPTES_PER_GROUP; i++) {
201 hptep = htab_address + hpte_group + slot_offset;
David Gibson96e28442005-07-13 01:11:42 -0700202 hpte_v = hptep->v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
David Gibson96e28442005-07-13 01:11:42 -0700204 if ((hpte_v & HPTE_V_VALID) && !(hpte_v & HPTE_V_BOLTED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 /* retry with lock held */
206 native_lock_hpte(hptep);
David Gibson96e28442005-07-13 01:11:42 -0700207 hpte_v = hptep->v;
208 if ((hpte_v & HPTE_V_VALID)
209 && !(hpte_v & HPTE_V_BOLTED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 break;
211 native_unlock_hpte(hptep);
212 }
213
214 slot_offset++;
215 slot_offset &= 0x7;
216 }
217
218 if (i == HPTES_PER_GROUP)
219 return -1;
220
221 /* Invalidate the hpte. NOTE: this also unlocks it */
David Gibson96e28442005-07-13 01:11:42 -0700222 hptep->v = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224 return i;
225}
226
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100227static long native_hpte_updatepp(unsigned long slot, unsigned long newpp,
Paul Mackerras1189be62007-10-11 20:37:10 +1000228 unsigned long va, int psize, int ssize,
229 int local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
David Gibson8e561e72007-06-13 14:52:56 +1000231 struct hash_pte *hptep = htab_address + slot;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100232 unsigned long hpte_v, want_v;
233 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Paul Mackerras1189be62007-10-11 20:37:10 +1000235 want_v = hpte_encode_v(va, psize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100236
237 DBG_LOW(" update(va=%016lx, avpnv=%016lx, hash=%016lx, newpp=%x)",
238 va, want_v & HPTE_V_AVPN, slot, newpp);
239
240 native_lock_hpte(hptep);
241
242 hpte_v = hptep->v;
243
244 /* Even if we miss, we need to invalidate the TLB */
245 if (!HPTE_V_COMPARE(hpte_v, want_v) || !(hpte_v & HPTE_V_VALID)) {
246 DBG_LOW(" -> miss\n");
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100247 ret = -1;
248 } else {
249 DBG_LOW(" -> hit\n");
250 /* Update the HPTE */
251 hptep->r = (hptep->r & ~(HPTE_R_PP | HPTE_R_N)) |
Benjamin Herrenschmidtc5cf0e32006-05-30 14:14:19 +1000252 (newpp & (HPTE_R_PP | HPTE_R_N | HPTE_R_C));
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100253 }
Jon Tollefson3f1df7a2007-05-18 04:49:22 +1000254 native_unlock_hpte(hptep);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100255
256 /* Ensure it is out of the tlb too. */
Paul Mackerras1189be62007-10-11 20:37:10 +1000257 tlbie(va, psize, ssize, local);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100258
259 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}
261
Paul Mackerras1189be62007-10-11 20:37:10 +1000262static long native_hpte_find(unsigned long va, int psize, int ssize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
David Gibson8e561e72007-06-13 14:52:56 +1000264 struct hash_pte *hptep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 unsigned long hash;
Paul Mackerras1189be62007-10-11 20:37:10 +1000266 unsigned long i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 long slot;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100268 unsigned long want_v, hpte_v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Paul Mackerras1189be62007-10-11 20:37:10 +1000270 hash = hpt_hash(va, mmu_psize_defs[psize].shift, ssize);
271 want_v = hpte_encode_v(va, psize, ssize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Paul Mackerras1189be62007-10-11 20:37:10 +1000273 /* Bolted mappings are only ever in the primary group */
274 slot = (hash & htab_hash_mask) * HPTES_PER_GROUP;
275 for (i = 0; i < HPTES_PER_GROUP; i++) {
276 hptep = htab_address + slot;
277 hpte_v = hptep->v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Paul Mackerras1189be62007-10-11 20:37:10 +1000279 if (HPTE_V_COMPARE(hpte_v, want_v) && (hpte_v & HPTE_V_VALID))
280 /* HPTE matches */
281 return slot;
282 ++slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 }
284
285 return -1;
286}
287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288/*
289 * Update the page protection bits. Intended to be used to create
290 * guard pages for kernel data structures on pages which are bolted
291 * in the HPT. Assumes pages being operated on will not be stolen.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 *
293 * No need to lock here because we should be the only user.
294 */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100295static void native_hpte_updateboltedpp(unsigned long newpp, unsigned long ea,
Paul Mackerras1189be62007-10-11 20:37:10 +1000296 int psize, int ssize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100298 unsigned long vsid, va;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 long slot;
David Gibson8e561e72007-06-13 14:52:56 +1000300 struct hash_pte *hptep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Paul Mackerras1189be62007-10-11 20:37:10 +1000302 vsid = get_kernel_vsid(ea, ssize);
303 va = hpt_va(ea, vsid, ssize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Paul Mackerras1189be62007-10-11 20:37:10 +1000305 slot = native_hpte_find(va, psize, ssize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 if (slot == -1)
307 panic("could not find page to bolt\n");
308 hptep = htab_address + slot;
309
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100310 /* Update the HPTE */
311 hptep->r = (hptep->r & ~(HPTE_R_PP | HPTE_R_N)) |
312 (newpp & (HPTE_R_PP | HPTE_R_N));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100314 /* Ensure it is out of the tlb too. */
Paul Mackerras1189be62007-10-11 20:37:10 +1000315 tlbie(va, psize, ssize, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316}
317
318static void native_hpte_invalidate(unsigned long slot, unsigned long va,
Paul Mackerras1189be62007-10-11 20:37:10 +1000319 int psize, int ssize, int local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320{
David Gibson8e561e72007-06-13 14:52:56 +1000321 struct hash_pte *hptep = htab_address + slot;
David Gibson96e28442005-07-13 01:11:42 -0700322 unsigned long hpte_v;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100323 unsigned long want_v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100328 DBG_LOW(" invalidate(va=%016lx, hash: %x)\n", va, slot);
329
Paul Mackerras1189be62007-10-11 20:37:10 +1000330 want_v = hpte_encode_v(va, psize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100331 native_lock_hpte(hptep);
David Gibson96e28442005-07-13 01:11:42 -0700332 hpte_v = hptep->v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
334 /* Even if we miss, we need to invalidate the TLB */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100335 if (!HPTE_V_COMPARE(hpte_v, want_v) || !(hpte_v & HPTE_V_VALID))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 native_unlock_hpte(hptep);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100337 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 /* Invalidate the hpte. NOTE: this also unlocks it */
David Gibson96e28442005-07-13 01:11:42 -0700339 hptep->v = 0;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100340
341 /* Invalidate the TLB */
Paul Mackerras1189be62007-10-11 20:37:10 +1000342 tlbie(va, psize, ssize, local);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100343
344 local_irq_restore(flags);
345}
346
Luke Browning71bf08b2007-05-03 00:19:11 +1000347#define LP_SHIFT 12
348#define LP_BITS 8
349#define LP_MASK(i) ((0xFF >> (i)) << LP_SHIFT)
350
David Gibson8e561e72007-06-13 14:52:56 +1000351static void hpte_decode(struct hash_pte *hpte, unsigned long slot,
Paul Mackerras1189be62007-10-11 20:37:10 +1000352 int *psize, int *ssize, unsigned long *va)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100353{
Luke Browning71bf08b2007-05-03 00:19:11 +1000354 unsigned long hpte_r = hpte->r;
355 unsigned long hpte_v = hpte->v;
356 unsigned long avpn;
Stephen Rothwell8980ae82007-05-11 15:38:34 +1000357 int i, size, shift, penc;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100358
Luke Browning71bf08b2007-05-03 00:19:11 +1000359 if (!(hpte_v & HPTE_V_LARGE))
360 size = MMU_PAGE_4K;
361 else {
362 for (i = 0; i < LP_BITS; i++) {
363 if ((hpte_r & LP_MASK(i+1)) == LP_MASK(i+1))
364 break;
365 }
366 penc = LP_MASK(i+1) >> LP_SHIFT;
367 for (size = 0; size < MMU_PAGE_COUNT; size++) {
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100368
Luke Browning71bf08b2007-05-03 00:19:11 +1000369 /* 4K pages are not represented by LP */
370 if (size == MMU_PAGE_4K)
371 continue;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100372
Luke Browning71bf08b2007-05-03 00:19:11 +1000373 /* valid entries have a shift value */
374 if (!mmu_psize_defs[size].shift)
375 continue;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100376
Luke Browning71bf08b2007-05-03 00:19:11 +1000377 if (penc == mmu_psize_defs[size].penc)
378 break;
379 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 }
381
Paul Mackerras2454c7e2007-05-10 15:28:44 +1000382 /* This works for all page sizes, and for 256M and 1T segments */
Luke Browning71bf08b2007-05-03 00:19:11 +1000383 shift = mmu_psize_defs[size].shift;
Paul Mackerras2454c7e2007-05-10 15:28:44 +1000384 avpn = (HPTE_V_AVPN_VAL(hpte_v) & ~mmu_psize_defs[size].avpnm) << 23;
Luke Browning71bf08b2007-05-03 00:19:11 +1000385
Paul Mackerras2454c7e2007-05-10 15:28:44 +1000386 if (shift < 23) {
387 unsigned long vpi, vsid, pteg;
Luke Browning71bf08b2007-05-03 00:19:11 +1000388
Paul Mackerras2454c7e2007-05-10 15:28:44 +1000389 pteg = slot / HPTES_PER_GROUP;
390 if (hpte_v & HPTE_V_SECONDARY)
391 pteg = ~pteg;
392 switch (hpte_v >> HPTE_V_SSIZE_SHIFT) {
393 case MMU_SEGSIZE_256M:
Luke Browning71bf08b2007-05-03 00:19:11 +1000394 vpi = ((avpn >> 28) ^ pteg) & htab_hash_mask;
Paul Mackerras2454c7e2007-05-10 15:28:44 +1000395 break;
396 case MMU_SEGSIZE_1T:
397 vsid = avpn >> 40;
398 vpi = (vsid ^ (vsid << 25) ^ pteg) & htab_hash_mask;
399 break;
400 default:
Stephen Rothwell0c12fe52007-05-11 15:37:38 +1000401 avpn = vpi = size = 0;
Luke Browning71bf08b2007-05-03 00:19:11 +1000402 }
Paul Mackerras2454c7e2007-05-10 15:28:44 +1000403 avpn |= (vpi << mmu_psize_defs[size].shift);
Luke Browning71bf08b2007-05-03 00:19:11 +1000404 }
405
406 *va = avpn;
407 *psize = size;
Paul Mackerras1189be62007-10-11 20:37:10 +1000408 *ssize = hpte_v >> HPTE_V_SSIZE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409}
410
R Sharadaf4c82d52005-06-25 14:58:08 -0700411/*
412 * clear all mappings on kexec. All cpus are in real mode (or they will
413 * be when they isi), and we are the only one left. We rely on our kernel
414 * mapping being 0xC0's and the hardware ignoring those two real bits.
415 *
416 * TODO: add batching support when enabled. remember, no dynamic memory here,
417 * athough there is the control page available...
418 */
419static void native_hpte_clear(void)
420{
421 unsigned long slot, slots, flags;
David Gibson8e561e72007-06-13 14:52:56 +1000422 struct hash_pte *hptep = htab_address;
Luke Browning71bf08b2007-05-03 00:19:11 +1000423 unsigned long hpte_v, va;
R Sharadaf4c82d52005-06-25 14:58:08 -0700424 unsigned long pteg_count;
Paul Mackerras1189be62007-10-11 20:37:10 +1000425 int psize, ssize;
R Sharadaf4c82d52005-06-25 14:58:08 -0700426
427 pteg_count = htab_hash_mask + 1;
428
429 local_irq_save(flags);
430
431 /* we take the tlbie lock and hold it. Some hardware will
432 * deadlock if we try to tlbie from two processors at once.
433 */
Thomas Gleixner6b9c9b82010-02-18 02:22:35 +0000434 raw_spin_lock(&native_tlbie_lock);
R Sharadaf4c82d52005-06-25 14:58:08 -0700435
436 slots = pteg_count * HPTES_PER_GROUP;
437
438 for (slot = 0; slot < slots; slot++, hptep++) {
439 /*
440 * we could lock the pte here, but we are the only cpu
441 * running, right? and for crash dump, we probably
442 * don't want to wait for a maybe bad cpu.
443 */
David Gibson96e28442005-07-13 01:11:42 -0700444 hpte_v = hptep->v;
R Sharadaf4c82d52005-06-25 14:58:08 -0700445
R Sharada47f78a42006-02-22 21:43:08 +0530446 /*
447 * Call __tlbie() here rather than tlbie() since we
448 * already hold the native_tlbie_lock.
449 */
David Gibson96e28442005-07-13 01:11:42 -0700450 if (hpte_v & HPTE_V_VALID) {
Paul Mackerras1189be62007-10-11 20:37:10 +1000451 hpte_decode(hptep, slot, &psize, &ssize, &va);
David Gibson96e28442005-07-13 01:11:42 -0700452 hptep->v = 0;
Paul Mackerras1189be62007-10-11 20:37:10 +1000453 __tlbie(va, psize, ssize);
R Sharadaf4c82d52005-06-25 14:58:08 -0700454 }
455 }
456
R Sharada47f78a42006-02-22 21:43:08 +0530457 asm volatile("eieio; tlbsync; ptesync":::"memory");
Thomas Gleixner6b9c9b82010-02-18 02:22:35 +0000458 raw_spin_unlock(&native_tlbie_lock);
R Sharadaf4c82d52005-06-25 14:58:08 -0700459 local_irq_restore(flags);
460}
461
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100462/*
463 * Batched hash table flush, we batch the tlbie's to avoid taking/releasing
464 * the lock all the time
465 */
Benjamin Herrenschmidt61b1a942005-09-20 13:52:50 +1000466static void native_flush_hash_range(unsigned long number, int local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100468 unsigned long va, hash, index, hidx, shift, slot;
David Gibson8e561e72007-06-13 14:52:56 +1000469 struct hash_pte *hptep;
David Gibson96e28442005-07-13 01:11:42 -0700470 unsigned long hpte_v;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100471 unsigned long want_v;
472 unsigned long flags;
473 real_pte_t pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 struct ppc64_tlb_batch *batch = &__get_cpu_var(ppc64_tlb_batch);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100475 unsigned long psize = batch->psize;
Paul Mackerras1189be62007-10-11 20:37:10 +1000476 int ssize = batch->ssize;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100477 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
479 local_irq_save(flags);
480
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 for (i = 0; i < number; i++) {
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100482 va = batch->vaddr[i];
483 pte = batch->pte[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100485 pte_iterate_hashed_subpages(pte, psize, va, index, shift) {
Paul Mackerras1189be62007-10-11 20:37:10 +1000486 hash = hpt_hash(va, shift, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100487 hidx = __rpte_to_hidx(pte, index);
488 if (hidx & _PTEIDX_SECONDARY)
489 hash = ~hash;
490 slot = (hash & htab_hash_mask) * HPTES_PER_GROUP;
491 slot += hidx & _PTEIDX_GROUP_IX;
492 hptep = htab_address + slot;
Paul Mackerras1189be62007-10-11 20:37:10 +1000493 want_v = hpte_encode_v(va, psize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100494 native_lock_hpte(hptep);
495 hpte_v = hptep->v;
496 if (!HPTE_V_COMPARE(hpte_v, want_v) ||
497 !(hpte_v & HPTE_V_VALID))
498 native_unlock_hpte(hptep);
499 else
500 hptep->v = 0;
501 } pte_iterate_hashed_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 }
503
Matt Evans44ae3ab2011-04-06 19:48:50 +0000504 if (mmu_has_feature(MMU_FTR_TLBIEL) &&
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100505 mmu_psize_defs[psize].tlbiel && local) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 asm volatile("ptesync":::"memory");
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100507 for (i = 0; i < number; i++) {
508 va = batch->vaddr[i];
509 pte = batch->pte[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100511 pte_iterate_hashed_subpages(pte, psize, va, index,
512 shift) {
Paul Mackerras1189be62007-10-11 20:37:10 +1000513 __tlbiel(va, psize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100514 } pte_iterate_hashed_end();
515 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 asm volatile("ptesync":::"memory");
517 } else {
Matt Evans44ae3ab2011-04-06 19:48:50 +0000518 int lock_tlbie = !mmu_has_feature(MMU_FTR_LOCKLESS_TLBIE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520 if (lock_tlbie)
Thomas Gleixner6b9c9b82010-02-18 02:22:35 +0000521 raw_spin_lock(&native_tlbie_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
523 asm volatile("ptesync":::"memory");
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100524 for (i = 0; i < number; i++) {
525 va = batch->vaddr[i];
526 pte = batch->pte[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100528 pte_iterate_hashed_subpages(pte, psize, va, index,
529 shift) {
Paul Mackerras1189be62007-10-11 20:37:10 +1000530 __tlbie(va, psize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100531 } pte_iterate_hashed_end();
532 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 asm volatile("eieio; tlbsync; ptesync":::"memory");
534
535 if (lock_tlbie)
Thomas Gleixner6b9c9b82010-02-18 02:22:35 +0000536 raw_spin_unlock(&native_tlbie_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 }
538
539 local_irq_restore(flags);
540}
541
542#ifdef CONFIG_PPC_PSERIES
543/* Disable TLB batching on nighthawk */
544static inline int tlb_batching_enabled(void)
545{
546 struct device_node *root = of_find_node_by_path("/");
547 int enabled = 1;
548
549 if (root) {
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000550 const char *model = of_get_property(root, "model", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 if (model && !strcmp(model, "IBM,9076-N81"))
552 enabled = 0;
553 of_node_put(root);
554 }
555
556 return enabled;
557}
558#else
559static inline int tlb_batching_enabled(void)
560{
561 return 1;
562}
563#endif
564
Michael Ellerman7d0daae2006-06-23 18:16:38 +1000565void __init hpte_init_native(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566{
567 ppc_md.hpte_invalidate = native_hpte_invalidate;
568 ppc_md.hpte_updatepp = native_hpte_updatepp;
569 ppc_md.hpte_updateboltedpp = native_hpte_updateboltedpp;
570 ppc_md.hpte_insert = native_hpte_insert;
R Sharadaf4c82d52005-06-25 14:58:08 -0700571 ppc_md.hpte_remove = native_hpte_remove;
572 ppc_md.hpte_clear_all = native_hpte_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 if (tlb_batching_enabled())
574 ppc_md.flush_hash_range = native_flush_hash_range;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575}