blob: 34e5c0b219b92f5792a3ecc886740c0c130ca024 [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>
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110030
31#ifdef DEBUG_LOW
32#define DBG_LOW(fmt...) udbg_printf(fmt)
33#else
34#define DBG_LOW(fmt...)
35#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37#define HPTE_LOCK_BIT 3
38
39static DEFINE_SPINLOCK(native_tlbie_lock);
40
Paul Mackerras1189be62007-10-11 20:37:10 +100041static inline void __tlbie(unsigned long va, int psize, int ssize)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110042{
43 unsigned int penc;
44
45 /* clear top 16 bits, non SLS segment */
46 va &= ~(0xffffULL << 48);
47
48 switch (psize) {
49 case MMU_PAGE_4K:
50 va &= ~0xffful;
Paul Mackerras1189be62007-10-11 20:37:10 +100051 va |= ssize << 8;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110052 asm volatile("tlbie %0,0" : : "r" (va) : "memory");
53 break;
54 default:
55 penc = mmu_psize_defs[psize].penc;
56 va &= ~((1ul << mmu_psize_defs[psize].shift) - 1);
Arnd Bergmann19242b22006-06-15 21:15:44 +100057 va |= penc << 12;
Paul Mackerras1189be62007-10-11 20:37:10 +100058 va |= ssize << 8;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110059 asm volatile("tlbie %0,1" : : "r" (va) : "memory");
60 break;
61 }
62}
63
Paul Mackerras1189be62007-10-11 20:37:10 +100064static inline void __tlbiel(unsigned long va, int psize, int ssize)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110065{
66 unsigned int penc;
67
68 /* clear top 16 bits, non SLS segment */
69 va &= ~(0xffffULL << 48);
70
71 switch (psize) {
72 case MMU_PAGE_4K:
73 va &= ~0xffful;
Paul Mackerras1189be62007-10-11 20:37:10 +100074 va |= ssize << 8;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110075 asm volatile(".long 0x7c000224 | (%0 << 11) | (0 << 21)"
76 : : "r"(va) : "memory");
77 break;
78 default:
79 penc = mmu_psize_defs[psize].penc;
80 va &= ~((1ul << mmu_psize_defs[psize].shift) - 1);
Arnd Bergmann19242b22006-06-15 21:15:44 +100081 va |= penc << 12;
Paul Mackerras1189be62007-10-11 20:37:10 +100082 va |= ssize << 8;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110083 asm volatile(".long 0x7c000224 | (%0 << 11) | (1 << 21)"
84 : : "r"(va) : "memory");
85 break;
86 }
87
88}
89
Paul Mackerras1189be62007-10-11 20:37:10 +100090static inline void tlbie(unsigned long va, int psize, int ssize, int local)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110091{
92 unsigned int use_local = local && cpu_has_feature(CPU_FTR_TLBIEL);
93 int lock_tlbie = !cpu_has_feature(CPU_FTR_LOCKLESS_TLBIE);
94
95 if (use_local)
96 use_local = mmu_psize_defs[psize].tlbiel;
97 if (lock_tlbie && !use_local)
98 spin_lock(&native_tlbie_lock);
99 asm volatile("ptesync": : :"memory");
100 if (use_local) {
Paul Mackerras1189be62007-10-11 20:37:10 +1000101 __tlbiel(va, psize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100102 asm volatile("ptesync": : :"memory");
103 } else {
Paul Mackerras1189be62007-10-11 20:37:10 +1000104 __tlbie(va, psize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100105 asm volatile("eieio; tlbsync; ptesync": : :"memory");
106 }
107 if (lock_tlbie && !use_local)
108 spin_unlock(&native_tlbie_lock);
109}
110
David Gibson8e561e72007-06-13 14:52:56 +1000111static inline void native_lock_hpte(struct hash_pte *hptep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
David Gibson96e28442005-07-13 01:11:42 -0700113 unsigned long *word = &hptep->v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115 while (1) {
116 if (!test_and_set_bit(HPTE_LOCK_BIT, word))
117 break;
118 while(test_bit(HPTE_LOCK_BIT, word))
119 cpu_relax();
120 }
121}
122
David Gibson8e561e72007-06-13 14:52:56 +1000123static inline void native_unlock_hpte(struct hash_pte *hptep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
David Gibson96e28442005-07-13 01:11:42 -0700125 unsigned long *word = &hptep->v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127 asm volatile("lwsync":::"memory");
128 clear_bit(HPTE_LOCK_BIT, word);
129}
130
Geoff Levand035223f2006-10-05 11:35:10 -0700131static long native_hpte_insert(unsigned long hpte_group, unsigned long va,
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100132 unsigned long pa, unsigned long rflags,
Paul Mackerras1189be62007-10-11 20:37:10 +1000133 unsigned long vflags, int psize, int ssize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
David Gibson8e561e72007-06-13 14:52:56 +1000135 struct hash_pte *hptep = htab_address + hpte_group;
David Gibson96e28442005-07-13 01:11:42 -0700136 unsigned long hpte_v, hpte_r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 int i;
138
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100139 if (!(vflags & HPTE_V_BOLTED)) {
140 DBG_LOW(" insert(group=%lx, va=%016lx, pa=%016lx,"
141 " rflags=%lx, vflags=%lx, psize=%d)\n",
142 hpte_group, va, pa, rflags, vflags, psize);
143 }
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 for (i = 0; i < HPTES_PER_GROUP; i++) {
David Gibson96e28442005-07-13 01:11:42 -0700146 if (! (hptep->v & HPTE_V_VALID)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 /* retry with lock held */
148 native_lock_hpte(hptep);
David Gibson96e28442005-07-13 01:11:42 -0700149 if (! (hptep->v & HPTE_V_VALID))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 break;
151 native_unlock_hpte(hptep);
152 }
153
154 hptep++;
155 }
156
157 if (i == HPTES_PER_GROUP)
158 return -1;
159
Paul Mackerras1189be62007-10-11 20:37:10 +1000160 hpte_v = hpte_encode_v(va, psize, ssize) | vflags | HPTE_V_VALID;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100161 hpte_r = hpte_encode_r(pa, psize) | rflags;
162
163 if (!(vflags & HPTE_V_BOLTED)) {
164 DBG_LOW(" i=%x hpte_v=%016lx, hpte_r=%016lx\n",
165 i, hpte_v, hpte_r);
166 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
David Gibson96e28442005-07-13 01:11:42 -0700168 hptep->r = hpte_r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 /* Guarantee the second dword is visible before the valid bit */
Kumar Gala74a0ba62007-07-09 23:49:09 -0500170 eieio();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 /*
172 * Now set the first dword including the valid bit
173 * NOTE: this also unlocks the hpte
174 */
David Gibson96e28442005-07-13 01:11:42 -0700175 hptep->v = hpte_v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177 __asm__ __volatile__ ("ptesync" : : : "memory");
178
David Gibson96e28442005-07-13 01:11:42 -0700179 return i | (!!(vflags & HPTE_V_SECONDARY) << 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180}
181
182static long native_hpte_remove(unsigned long hpte_group)
183{
David Gibson8e561e72007-06-13 14:52:56 +1000184 struct hash_pte *hptep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 int i;
186 int slot_offset;
David Gibson96e28442005-07-13 01:11:42 -0700187 unsigned long hpte_v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100189 DBG_LOW(" remove(group=%lx)\n", hpte_group);
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 /* pick a random entry to start at */
192 slot_offset = mftb() & 0x7;
193
194 for (i = 0; i < HPTES_PER_GROUP; i++) {
195 hptep = htab_address + hpte_group + slot_offset;
David Gibson96e28442005-07-13 01:11:42 -0700196 hpte_v = hptep->v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
David Gibson96e28442005-07-13 01:11:42 -0700198 if ((hpte_v & HPTE_V_VALID) && !(hpte_v & HPTE_V_BOLTED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 /* retry with lock held */
200 native_lock_hpte(hptep);
David Gibson96e28442005-07-13 01:11:42 -0700201 hpte_v = hptep->v;
202 if ((hpte_v & HPTE_V_VALID)
203 && !(hpte_v & HPTE_V_BOLTED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 break;
205 native_unlock_hpte(hptep);
206 }
207
208 slot_offset++;
209 slot_offset &= 0x7;
210 }
211
212 if (i == HPTES_PER_GROUP)
213 return -1;
214
215 /* Invalidate the hpte. NOTE: this also unlocks it */
David Gibson96e28442005-07-13 01:11:42 -0700216 hptep->v = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218 return i;
219}
220
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100221static long native_hpte_updatepp(unsigned long slot, unsigned long newpp,
Paul Mackerras1189be62007-10-11 20:37:10 +1000222 unsigned long va, int psize, int ssize,
223 int local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
David Gibson8e561e72007-06-13 14:52:56 +1000225 struct hash_pte *hptep = htab_address + slot;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100226 unsigned long hpte_v, want_v;
227 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Paul Mackerras1189be62007-10-11 20:37:10 +1000229 want_v = hpte_encode_v(va, psize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100230
231 DBG_LOW(" update(va=%016lx, avpnv=%016lx, hash=%016lx, newpp=%x)",
232 va, want_v & HPTE_V_AVPN, slot, newpp);
233
234 native_lock_hpte(hptep);
235
236 hpte_v = hptep->v;
237
238 /* Even if we miss, we need to invalidate the TLB */
239 if (!HPTE_V_COMPARE(hpte_v, want_v) || !(hpte_v & HPTE_V_VALID)) {
240 DBG_LOW(" -> miss\n");
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100241 ret = -1;
242 } else {
243 DBG_LOW(" -> hit\n");
244 /* Update the HPTE */
245 hptep->r = (hptep->r & ~(HPTE_R_PP | HPTE_R_N)) |
Benjamin Herrenschmidtc5cf0e32006-05-30 14:14:19 +1000246 (newpp & (HPTE_R_PP | HPTE_R_N | HPTE_R_C));
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100247 }
Jon Tollefson3f1df7a2007-05-18 04:49:22 +1000248 native_unlock_hpte(hptep);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100249
250 /* Ensure it is out of the tlb too. */
Paul Mackerras1189be62007-10-11 20:37:10 +1000251 tlbie(va, psize, ssize, local);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100252
253 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
255
Paul Mackerras1189be62007-10-11 20:37:10 +1000256static long native_hpte_find(unsigned long va, int psize, int ssize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
David Gibson8e561e72007-06-13 14:52:56 +1000258 struct hash_pte *hptep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 unsigned long hash;
Paul Mackerras1189be62007-10-11 20:37:10 +1000260 unsigned long i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 long slot;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100262 unsigned long want_v, hpte_v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Paul Mackerras1189be62007-10-11 20:37:10 +1000264 hash = hpt_hash(va, mmu_psize_defs[psize].shift, ssize);
265 want_v = hpte_encode_v(va, psize, ssize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Paul Mackerras1189be62007-10-11 20:37:10 +1000267 /* Bolted mappings are only ever in the primary group */
268 slot = (hash & htab_hash_mask) * HPTES_PER_GROUP;
269 for (i = 0; i < HPTES_PER_GROUP; i++) {
270 hptep = htab_address + slot;
271 hpte_v = hptep->v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Paul Mackerras1189be62007-10-11 20:37:10 +1000273 if (HPTE_V_COMPARE(hpte_v, want_v) && (hpte_v & HPTE_V_VALID))
274 /* HPTE matches */
275 return slot;
276 ++slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 }
278
279 return -1;
280}
281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282/*
283 * Update the page protection bits. Intended to be used to create
284 * guard pages for kernel data structures on pages which are bolted
285 * in the HPT. Assumes pages being operated on will not be stolen.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 *
287 * No need to lock here because we should be the only user.
288 */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100289static void native_hpte_updateboltedpp(unsigned long newpp, unsigned long ea,
Paul Mackerras1189be62007-10-11 20:37:10 +1000290 int psize, int ssize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100292 unsigned long vsid, va;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 long slot;
David Gibson8e561e72007-06-13 14:52:56 +1000294 struct hash_pte *hptep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Paul Mackerras1189be62007-10-11 20:37:10 +1000296 vsid = get_kernel_vsid(ea, ssize);
297 va = hpt_va(ea, vsid, ssize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Paul Mackerras1189be62007-10-11 20:37:10 +1000299 slot = native_hpte_find(va, psize, ssize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 if (slot == -1)
301 panic("could not find page to bolt\n");
302 hptep = htab_address + slot;
303
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100304 /* Update the HPTE */
305 hptep->r = (hptep->r & ~(HPTE_R_PP | HPTE_R_N)) |
306 (newpp & (HPTE_R_PP | HPTE_R_N));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100308 /* Ensure it is out of the tlb too. */
Paul Mackerras1189be62007-10-11 20:37:10 +1000309 tlbie(va, psize, ssize, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310}
311
312static void native_hpte_invalidate(unsigned long slot, unsigned long va,
Paul Mackerras1189be62007-10-11 20:37:10 +1000313 int psize, int ssize, int local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
David Gibson8e561e72007-06-13 14:52:56 +1000315 struct hash_pte *hptep = htab_address + slot;
David Gibson96e28442005-07-13 01:11:42 -0700316 unsigned long hpte_v;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100317 unsigned long want_v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
320 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100322 DBG_LOW(" invalidate(va=%016lx, hash: %x)\n", va, slot);
323
Paul Mackerras1189be62007-10-11 20:37:10 +1000324 want_v = hpte_encode_v(va, psize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100325 native_lock_hpte(hptep);
David Gibson96e28442005-07-13 01:11:42 -0700326 hpte_v = hptep->v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 /* Even if we miss, we need to invalidate the TLB */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100329 if (!HPTE_V_COMPARE(hpte_v, want_v) || !(hpte_v & HPTE_V_VALID))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 native_unlock_hpte(hptep);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100331 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 /* Invalidate the hpte. NOTE: this also unlocks it */
David Gibson96e28442005-07-13 01:11:42 -0700333 hptep->v = 0;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100334
335 /* Invalidate the TLB */
Paul Mackerras1189be62007-10-11 20:37:10 +1000336 tlbie(va, psize, ssize, local);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100337
338 local_irq_restore(flags);
339}
340
Luke Browning71bf08b2007-05-03 00:19:11 +1000341#define LP_SHIFT 12
342#define LP_BITS 8
343#define LP_MASK(i) ((0xFF >> (i)) << LP_SHIFT)
344
David Gibson8e561e72007-06-13 14:52:56 +1000345static void hpte_decode(struct hash_pte *hpte, unsigned long slot,
Paul Mackerras1189be62007-10-11 20:37:10 +1000346 int *psize, int *ssize, unsigned long *va)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100347{
Luke Browning71bf08b2007-05-03 00:19:11 +1000348 unsigned long hpte_r = hpte->r;
349 unsigned long hpte_v = hpte->v;
350 unsigned long avpn;
Stephen Rothwell8980ae82007-05-11 15:38:34 +1000351 int i, size, shift, penc;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100352
Luke Browning71bf08b2007-05-03 00:19:11 +1000353 if (!(hpte_v & HPTE_V_LARGE))
354 size = MMU_PAGE_4K;
355 else {
356 for (i = 0; i < LP_BITS; i++) {
357 if ((hpte_r & LP_MASK(i+1)) == LP_MASK(i+1))
358 break;
359 }
360 penc = LP_MASK(i+1) >> LP_SHIFT;
361 for (size = 0; size < MMU_PAGE_COUNT; size++) {
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100362
Luke Browning71bf08b2007-05-03 00:19:11 +1000363 /* 4K pages are not represented by LP */
364 if (size == MMU_PAGE_4K)
365 continue;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100366
Luke Browning71bf08b2007-05-03 00:19:11 +1000367 /* valid entries have a shift value */
368 if (!mmu_psize_defs[size].shift)
369 continue;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100370
Luke Browning71bf08b2007-05-03 00:19:11 +1000371 if (penc == mmu_psize_defs[size].penc)
372 break;
373 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 }
375
Paul Mackerras2454c7e2007-05-10 15:28:44 +1000376 /* This works for all page sizes, and for 256M and 1T segments */
Luke Browning71bf08b2007-05-03 00:19:11 +1000377 shift = mmu_psize_defs[size].shift;
Paul Mackerras2454c7e2007-05-10 15:28:44 +1000378 avpn = (HPTE_V_AVPN_VAL(hpte_v) & ~mmu_psize_defs[size].avpnm) << 23;
Luke Browning71bf08b2007-05-03 00:19:11 +1000379
Paul Mackerras2454c7e2007-05-10 15:28:44 +1000380 if (shift < 23) {
381 unsigned long vpi, vsid, pteg;
Luke Browning71bf08b2007-05-03 00:19:11 +1000382
Paul Mackerras2454c7e2007-05-10 15:28:44 +1000383 pteg = slot / HPTES_PER_GROUP;
384 if (hpte_v & HPTE_V_SECONDARY)
385 pteg = ~pteg;
386 switch (hpte_v >> HPTE_V_SSIZE_SHIFT) {
387 case MMU_SEGSIZE_256M:
Luke Browning71bf08b2007-05-03 00:19:11 +1000388 vpi = ((avpn >> 28) ^ pteg) & htab_hash_mask;
Paul Mackerras2454c7e2007-05-10 15:28:44 +1000389 break;
390 case MMU_SEGSIZE_1T:
391 vsid = avpn >> 40;
392 vpi = (vsid ^ (vsid << 25) ^ pteg) & htab_hash_mask;
393 break;
394 default:
Stephen Rothwell0c12fe52007-05-11 15:37:38 +1000395 avpn = vpi = size = 0;
Luke Browning71bf08b2007-05-03 00:19:11 +1000396 }
Paul Mackerras2454c7e2007-05-10 15:28:44 +1000397 avpn |= (vpi << mmu_psize_defs[size].shift);
Luke Browning71bf08b2007-05-03 00:19:11 +1000398 }
399
400 *va = avpn;
401 *psize = size;
Paul Mackerras1189be62007-10-11 20:37:10 +1000402 *ssize = hpte_v >> HPTE_V_SSIZE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403}
404
R Sharadaf4c82d52005-06-25 14:58:08 -0700405/*
406 * clear all mappings on kexec. All cpus are in real mode (or they will
407 * be when they isi), and we are the only one left. We rely on our kernel
408 * mapping being 0xC0's and the hardware ignoring those two real bits.
409 *
410 * TODO: add batching support when enabled. remember, no dynamic memory here,
411 * athough there is the control page available...
412 */
413static void native_hpte_clear(void)
414{
415 unsigned long slot, slots, flags;
David Gibson8e561e72007-06-13 14:52:56 +1000416 struct hash_pte *hptep = htab_address;
Luke Browning71bf08b2007-05-03 00:19:11 +1000417 unsigned long hpte_v, va;
R Sharadaf4c82d52005-06-25 14:58:08 -0700418 unsigned long pteg_count;
Paul Mackerras1189be62007-10-11 20:37:10 +1000419 int psize, ssize;
R Sharadaf4c82d52005-06-25 14:58:08 -0700420
421 pteg_count = htab_hash_mask + 1;
422
423 local_irq_save(flags);
424
425 /* we take the tlbie lock and hold it. Some hardware will
426 * deadlock if we try to tlbie from two processors at once.
427 */
428 spin_lock(&native_tlbie_lock);
429
430 slots = pteg_count * HPTES_PER_GROUP;
431
432 for (slot = 0; slot < slots; slot++, hptep++) {
433 /*
434 * we could lock the pte here, but we are the only cpu
435 * running, right? and for crash dump, we probably
436 * don't want to wait for a maybe bad cpu.
437 */
David Gibson96e28442005-07-13 01:11:42 -0700438 hpte_v = hptep->v;
R Sharadaf4c82d52005-06-25 14:58:08 -0700439
R Sharada47f78a42006-02-22 21:43:08 +0530440 /*
441 * Call __tlbie() here rather than tlbie() since we
442 * already hold the native_tlbie_lock.
443 */
David Gibson96e28442005-07-13 01:11:42 -0700444 if (hpte_v & HPTE_V_VALID) {
Paul Mackerras1189be62007-10-11 20:37:10 +1000445 hpte_decode(hptep, slot, &psize, &ssize, &va);
David Gibson96e28442005-07-13 01:11:42 -0700446 hptep->v = 0;
Paul Mackerras1189be62007-10-11 20:37:10 +1000447 __tlbie(va, psize, ssize);
R Sharadaf4c82d52005-06-25 14:58:08 -0700448 }
449 }
450
R Sharada47f78a42006-02-22 21:43:08 +0530451 asm volatile("eieio; tlbsync; ptesync":::"memory");
R Sharadaf4c82d52005-06-25 14:58:08 -0700452 spin_unlock(&native_tlbie_lock);
453 local_irq_restore(flags);
454}
455
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100456/*
457 * Batched hash table flush, we batch the tlbie's to avoid taking/releasing
458 * the lock all the time
459 */
Benjamin Herrenschmidt61b1a942005-09-20 13:52:50 +1000460static void native_flush_hash_range(unsigned long number, int local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100462 unsigned long va, hash, index, hidx, shift, slot;
David Gibson8e561e72007-06-13 14:52:56 +1000463 struct hash_pte *hptep;
David Gibson96e28442005-07-13 01:11:42 -0700464 unsigned long hpte_v;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100465 unsigned long want_v;
466 unsigned long flags;
467 real_pte_t pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 struct ppc64_tlb_batch *batch = &__get_cpu_var(ppc64_tlb_batch);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100469 unsigned long psize = batch->psize;
Paul Mackerras1189be62007-10-11 20:37:10 +1000470 int ssize = batch->ssize;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100471 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
473 local_irq_save(flags);
474
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 for (i = 0; i < number; i++) {
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100476 va = batch->vaddr[i];
477 pte = batch->pte[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100479 pte_iterate_hashed_subpages(pte, psize, va, index, shift) {
Paul Mackerras1189be62007-10-11 20:37:10 +1000480 hash = hpt_hash(va, shift, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100481 hidx = __rpte_to_hidx(pte, index);
482 if (hidx & _PTEIDX_SECONDARY)
483 hash = ~hash;
484 slot = (hash & htab_hash_mask) * HPTES_PER_GROUP;
485 slot += hidx & _PTEIDX_GROUP_IX;
486 hptep = htab_address + slot;
Paul Mackerras1189be62007-10-11 20:37:10 +1000487 want_v = hpte_encode_v(va, psize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100488 native_lock_hpte(hptep);
489 hpte_v = hptep->v;
490 if (!HPTE_V_COMPARE(hpte_v, want_v) ||
491 !(hpte_v & HPTE_V_VALID))
492 native_unlock_hpte(hptep);
493 else
494 hptep->v = 0;
495 } pte_iterate_hashed_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 }
497
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100498 if (cpu_has_feature(CPU_FTR_TLBIEL) &&
499 mmu_psize_defs[psize].tlbiel && local) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 asm volatile("ptesync":::"memory");
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100501 for (i = 0; i < number; i++) {
502 va = batch->vaddr[i];
503 pte = batch->pte[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100505 pte_iterate_hashed_subpages(pte, psize, va, index,
506 shift) {
Paul Mackerras1189be62007-10-11 20:37:10 +1000507 __tlbiel(va, psize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100508 } pte_iterate_hashed_end();
509 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 asm volatile("ptesync":::"memory");
511 } else {
512 int lock_tlbie = !cpu_has_feature(CPU_FTR_LOCKLESS_TLBIE);
513
514 if (lock_tlbie)
515 spin_lock(&native_tlbie_lock);
516
517 asm volatile("ptesync":::"memory");
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100518 for (i = 0; i < number; i++) {
519 va = batch->vaddr[i];
520 pte = batch->pte[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100522 pte_iterate_hashed_subpages(pte, psize, va, index,
523 shift) {
Paul Mackerras1189be62007-10-11 20:37:10 +1000524 __tlbie(va, psize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100525 } pte_iterate_hashed_end();
526 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 asm volatile("eieio; tlbsync; ptesync":::"memory");
528
529 if (lock_tlbie)
530 spin_unlock(&native_tlbie_lock);
531 }
532
533 local_irq_restore(flags);
534}
535
536#ifdef CONFIG_PPC_PSERIES
537/* Disable TLB batching on nighthawk */
538static inline int tlb_batching_enabled(void)
539{
540 struct device_node *root = of_find_node_by_path("/");
541 int enabled = 1;
542
543 if (root) {
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000544 const char *model = of_get_property(root, "model", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 if (model && !strcmp(model, "IBM,9076-N81"))
546 enabled = 0;
547 of_node_put(root);
548 }
549
550 return enabled;
551}
552#else
553static inline int tlb_batching_enabled(void)
554{
555 return 1;
556}
557#endif
558
Michael Ellerman7d0daae2006-06-23 18:16:38 +1000559void __init hpte_init_native(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560{
561 ppc_md.hpte_invalidate = native_hpte_invalidate;
562 ppc_md.hpte_updatepp = native_hpte_updatepp;
563 ppc_md.hpte_updateboltedpp = native_hpte_updateboltedpp;
564 ppc_md.hpte_insert = native_hpte_insert;
R Sharadaf4c82d52005-06-25 14:58:08 -0700565 ppc_md.hpte_remove = native_hpte_remove;
566 ppc_md.hpte_clear_all = native_hpte_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 if (tlb_batching_enabled())
568 ppc_md.flush_hash_range = native_flush_hash_range;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569}