blob: 056d23a1b105f851757a082bcb04001e374a48b3 [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
40static DEFINE_SPINLOCK(native_tlbie_lock);
41
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;
Milton Miller60dbf432009-04-29 20:58:01 +000053 asm volatile(ASM_MMU_FTR_IFCLR("tlbie %0,0", PPC_TLBIE(%1,%0),
54 %2)
55 : : "r" (va), "r"(0), "i" (MMU_FTR_TLBIE_206)
56 : "memory");
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110057 break;
58 default:
59 penc = mmu_psize_defs[psize].penc;
60 va &= ~((1ul << mmu_psize_defs[psize].shift) - 1);
Arnd Bergmann19242b22006-06-15 21:15:44 +100061 va |= penc << 12;
Paul Mackerras1189be62007-10-11 20:37:10 +100062 va |= ssize << 8;
Milton Miller60dbf432009-04-29 20:58:01 +000063 va |= 1; /* L */
64 asm volatile(ASM_MMU_FTR_IFCLR("tlbie %0,1", PPC_TLBIE(%1,%0),
65 %2)
66 : : "r" (va), "r"(0), "i" (MMU_FTR_TLBIE_206)
67 : "memory");
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110068 break;
69 }
70}
71
Paul Mackerras1189be62007-10-11 20:37:10 +100072static inline void __tlbiel(unsigned long va, int psize, int ssize)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110073{
74 unsigned int penc;
75
76 /* clear top 16 bits, non SLS segment */
77 va &= ~(0xffffULL << 48);
78
79 switch (psize) {
80 case MMU_PAGE_4K:
81 va &= ~0xffful;
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) | (0 << 21)"
84 : : "r"(va) : "memory");
85 break;
86 default:
87 penc = mmu_psize_defs[psize].penc;
88 va &= ~((1ul << mmu_psize_defs[psize].shift) - 1);
Arnd Bergmann19242b22006-06-15 21:15:44 +100089 va |= penc << 12;
Paul Mackerras1189be62007-10-11 20:37:10 +100090 va |= ssize << 8;
Milton Miller60dbf432009-04-29 20:58:01 +000091 va |= 1; /* L */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110092 asm volatile(".long 0x7c000224 | (%0 << 11) | (1 << 21)"
93 : : "r"(va) : "memory");
94 break;
95 }
96
97}
98
Paul Mackerras1189be62007-10-11 20:37:10 +100099static inline void tlbie(unsigned long va, int psize, int ssize, int local)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100100{
101 unsigned int use_local = local && cpu_has_feature(CPU_FTR_TLBIEL);
102 int lock_tlbie = !cpu_has_feature(CPU_FTR_LOCKLESS_TLBIE);
103
104 if (use_local)
105 use_local = mmu_psize_defs[psize].tlbiel;
106 if (lock_tlbie && !use_local)
107 spin_lock(&native_tlbie_lock);
108 asm volatile("ptesync": : :"memory");
109 if (use_local) {
Paul Mackerras1189be62007-10-11 20:37:10 +1000110 __tlbiel(va, psize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100111 asm volatile("ptesync": : :"memory");
112 } else {
Paul Mackerras1189be62007-10-11 20:37:10 +1000113 __tlbie(va, psize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100114 asm volatile("eieio; tlbsync; ptesync": : :"memory");
115 }
116 if (lock_tlbie && !use_local)
117 spin_unlock(&native_tlbie_lock);
118}
119
David Gibson8e561e72007-06-13 14:52:56 +1000120static inline void native_lock_hpte(struct hash_pte *hptep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
David Gibson96e28442005-07-13 01:11:42 -0700122 unsigned long *word = &hptep->v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124 while (1) {
125 if (!test_and_set_bit(HPTE_LOCK_BIT, word))
126 break;
127 while(test_bit(HPTE_LOCK_BIT, word))
128 cpu_relax();
129 }
130}
131
David Gibson8e561e72007-06-13 14:52:56 +1000132static inline void native_unlock_hpte(struct hash_pte *hptep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
David Gibson96e28442005-07-13 01:11:42 -0700134 unsigned long *word = &hptep->v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136 asm volatile("lwsync":::"memory");
137 clear_bit(HPTE_LOCK_BIT, word);
138}
139
Geoff Levand035223f2006-10-05 11:35:10 -0700140static long native_hpte_insert(unsigned long hpte_group, unsigned long va,
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100141 unsigned long pa, unsigned long rflags,
Paul Mackerras1189be62007-10-11 20:37:10 +1000142 unsigned long vflags, int psize, int ssize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
David Gibson8e561e72007-06-13 14:52:56 +1000144 struct hash_pte *hptep = htab_address + hpte_group;
David Gibson96e28442005-07-13 01:11:42 -0700145 unsigned long hpte_v, hpte_r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 int i;
147
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100148 if (!(vflags & HPTE_V_BOLTED)) {
149 DBG_LOW(" insert(group=%lx, va=%016lx, pa=%016lx,"
150 " rflags=%lx, vflags=%lx, psize=%d)\n",
151 hpte_group, va, pa, rflags, vflags, psize);
152 }
153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 for (i = 0; i < HPTES_PER_GROUP; i++) {
David Gibson96e28442005-07-13 01:11:42 -0700155 if (! (hptep->v & HPTE_V_VALID)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 /* retry with lock held */
157 native_lock_hpte(hptep);
David Gibson96e28442005-07-13 01:11:42 -0700158 if (! (hptep->v & HPTE_V_VALID))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 break;
160 native_unlock_hpte(hptep);
161 }
162
163 hptep++;
164 }
165
166 if (i == HPTES_PER_GROUP)
167 return -1;
168
Paul Mackerras1189be62007-10-11 20:37:10 +1000169 hpte_v = hpte_encode_v(va, psize, ssize) | vflags | HPTE_V_VALID;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100170 hpte_r = hpte_encode_r(pa, psize) | rflags;
171
172 if (!(vflags & HPTE_V_BOLTED)) {
173 DBG_LOW(" i=%x hpte_v=%016lx, hpte_r=%016lx\n",
174 i, hpte_v, hpte_r);
175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
David Gibson96e28442005-07-13 01:11:42 -0700177 hptep->r = hpte_r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 /* Guarantee the second dword is visible before the valid bit */
Kumar Gala74a0ba62007-07-09 23:49:09 -0500179 eieio();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 /*
181 * Now set the first dword including the valid bit
182 * NOTE: this also unlocks the hpte
183 */
David Gibson96e28442005-07-13 01:11:42 -0700184 hptep->v = hpte_v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 __asm__ __volatile__ ("ptesync" : : : "memory");
187
David Gibson96e28442005-07-13 01:11:42 -0700188 return i | (!!(vflags & HPTE_V_SECONDARY) << 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189}
190
191static long native_hpte_remove(unsigned long hpte_group)
192{
David Gibson8e561e72007-06-13 14:52:56 +1000193 struct hash_pte *hptep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 int i;
195 int slot_offset;
David Gibson96e28442005-07-13 01:11:42 -0700196 unsigned long hpte_v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100198 DBG_LOW(" remove(group=%lx)\n", hpte_group);
199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 /* pick a random entry to start at */
201 slot_offset = mftb() & 0x7;
202
203 for (i = 0; i < HPTES_PER_GROUP; i++) {
204 hptep = htab_address + hpte_group + slot_offset;
David Gibson96e28442005-07-13 01:11:42 -0700205 hpte_v = hptep->v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
David Gibson96e28442005-07-13 01:11:42 -0700207 if ((hpte_v & HPTE_V_VALID) && !(hpte_v & HPTE_V_BOLTED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 /* retry with lock held */
209 native_lock_hpte(hptep);
David Gibson96e28442005-07-13 01:11:42 -0700210 hpte_v = hptep->v;
211 if ((hpte_v & HPTE_V_VALID)
212 && !(hpte_v & HPTE_V_BOLTED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 break;
214 native_unlock_hpte(hptep);
215 }
216
217 slot_offset++;
218 slot_offset &= 0x7;
219 }
220
221 if (i == HPTES_PER_GROUP)
222 return -1;
223
224 /* Invalidate the hpte. NOTE: this also unlocks it */
David Gibson96e28442005-07-13 01:11:42 -0700225 hptep->v = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227 return i;
228}
229
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100230static long native_hpte_updatepp(unsigned long slot, unsigned long newpp,
Paul Mackerras1189be62007-10-11 20:37:10 +1000231 unsigned long va, int psize, int ssize,
232 int local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
David Gibson8e561e72007-06-13 14:52:56 +1000234 struct hash_pte *hptep = htab_address + slot;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100235 unsigned long hpte_v, want_v;
236 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Paul Mackerras1189be62007-10-11 20:37:10 +1000238 want_v = hpte_encode_v(va, psize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100239
240 DBG_LOW(" update(va=%016lx, avpnv=%016lx, hash=%016lx, newpp=%x)",
241 va, want_v & HPTE_V_AVPN, slot, newpp);
242
243 native_lock_hpte(hptep);
244
245 hpte_v = hptep->v;
246
247 /* Even if we miss, we need to invalidate the TLB */
248 if (!HPTE_V_COMPARE(hpte_v, want_v) || !(hpte_v & HPTE_V_VALID)) {
249 DBG_LOW(" -> miss\n");
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100250 ret = -1;
251 } else {
252 DBG_LOW(" -> hit\n");
253 /* Update the HPTE */
254 hptep->r = (hptep->r & ~(HPTE_R_PP | HPTE_R_N)) |
Benjamin Herrenschmidtc5cf0e32006-05-30 14:14:19 +1000255 (newpp & (HPTE_R_PP | HPTE_R_N | HPTE_R_C));
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100256 }
Jon Tollefson3f1df7a2007-05-18 04:49:22 +1000257 native_unlock_hpte(hptep);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100258
259 /* Ensure it is out of the tlb too. */
Paul Mackerras1189be62007-10-11 20:37:10 +1000260 tlbie(va, psize, ssize, local);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100261
262 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
Paul Mackerras1189be62007-10-11 20:37:10 +1000265static long native_hpte_find(unsigned long va, int psize, int ssize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
David Gibson8e561e72007-06-13 14:52:56 +1000267 struct hash_pte *hptep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 unsigned long hash;
Paul Mackerras1189be62007-10-11 20:37:10 +1000269 unsigned long i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 long slot;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100271 unsigned long want_v, hpte_v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Paul Mackerras1189be62007-10-11 20:37:10 +1000273 hash = hpt_hash(va, mmu_psize_defs[psize].shift, ssize);
274 want_v = hpte_encode_v(va, psize, ssize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Paul Mackerras1189be62007-10-11 20:37:10 +1000276 /* Bolted mappings are only ever in the primary group */
277 slot = (hash & htab_hash_mask) * HPTES_PER_GROUP;
278 for (i = 0; i < HPTES_PER_GROUP; i++) {
279 hptep = htab_address + slot;
280 hpte_v = hptep->v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Paul Mackerras1189be62007-10-11 20:37:10 +1000282 if (HPTE_V_COMPARE(hpte_v, want_v) && (hpte_v & HPTE_V_VALID))
283 /* HPTE matches */
284 return slot;
285 ++slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 }
287
288 return -1;
289}
290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291/*
292 * Update the page protection bits. Intended to be used to create
293 * guard pages for kernel data structures on pages which are bolted
294 * in the HPT. Assumes pages being operated on will not be stolen.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 *
296 * No need to lock here because we should be the only user.
297 */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100298static void native_hpte_updateboltedpp(unsigned long newpp, unsigned long ea,
Paul Mackerras1189be62007-10-11 20:37:10 +1000299 int psize, int ssize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100301 unsigned long vsid, va;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 long slot;
David Gibson8e561e72007-06-13 14:52:56 +1000303 struct hash_pte *hptep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Paul Mackerras1189be62007-10-11 20:37:10 +1000305 vsid = get_kernel_vsid(ea, ssize);
306 va = hpt_va(ea, vsid, ssize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Paul Mackerras1189be62007-10-11 20:37:10 +1000308 slot = native_hpte_find(va, psize, ssize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 if (slot == -1)
310 panic("could not find page to bolt\n");
311 hptep = htab_address + slot;
312
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100313 /* Update the HPTE */
314 hptep->r = (hptep->r & ~(HPTE_R_PP | HPTE_R_N)) |
315 (newpp & (HPTE_R_PP | HPTE_R_N));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100317 /* Ensure it is out of the tlb too. */
Paul Mackerras1189be62007-10-11 20:37:10 +1000318 tlbie(va, psize, ssize, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319}
320
321static void native_hpte_invalidate(unsigned long slot, unsigned long va,
Paul Mackerras1189be62007-10-11 20:37:10 +1000322 int psize, int ssize, int local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
David Gibson8e561e72007-06-13 14:52:56 +1000324 struct hash_pte *hptep = htab_address + slot;
David Gibson96e28442005-07-13 01:11:42 -0700325 unsigned long hpte_v;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100326 unsigned long want_v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
329 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100331 DBG_LOW(" invalidate(va=%016lx, hash: %x)\n", va, slot);
332
Paul Mackerras1189be62007-10-11 20:37:10 +1000333 want_v = hpte_encode_v(va, psize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100334 native_lock_hpte(hptep);
David Gibson96e28442005-07-13 01:11:42 -0700335 hpte_v = hptep->v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
337 /* Even if we miss, we need to invalidate the TLB */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100338 if (!HPTE_V_COMPARE(hpte_v, want_v) || !(hpte_v & HPTE_V_VALID))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 native_unlock_hpte(hptep);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100340 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 /* Invalidate the hpte. NOTE: this also unlocks it */
David Gibson96e28442005-07-13 01:11:42 -0700342 hptep->v = 0;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100343
344 /* Invalidate the TLB */
Paul Mackerras1189be62007-10-11 20:37:10 +1000345 tlbie(va, psize, ssize, local);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100346
347 local_irq_restore(flags);
348}
349
Luke Browning71bf08b2007-05-03 00:19:11 +1000350#define LP_SHIFT 12
351#define LP_BITS 8
352#define LP_MASK(i) ((0xFF >> (i)) << LP_SHIFT)
353
David Gibson8e561e72007-06-13 14:52:56 +1000354static void hpte_decode(struct hash_pte *hpte, unsigned long slot,
Paul Mackerras1189be62007-10-11 20:37:10 +1000355 int *psize, int *ssize, unsigned long *va)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100356{
Luke Browning71bf08b2007-05-03 00:19:11 +1000357 unsigned long hpte_r = hpte->r;
358 unsigned long hpte_v = hpte->v;
359 unsigned long avpn;
Stephen Rothwell8980ae82007-05-11 15:38:34 +1000360 int i, size, shift, penc;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100361
Luke Browning71bf08b2007-05-03 00:19:11 +1000362 if (!(hpte_v & HPTE_V_LARGE))
363 size = MMU_PAGE_4K;
364 else {
365 for (i = 0; i < LP_BITS; i++) {
366 if ((hpte_r & LP_MASK(i+1)) == LP_MASK(i+1))
367 break;
368 }
369 penc = LP_MASK(i+1) >> LP_SHIFT;
370 for (size = 0; size < MMU_PAGE_COUNT; size++) {
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100371
Luke Browning71bf08b2007-05-03 00:19:11 +1000372 /* 4K pages are not represented by LP */
373 if (size == MMU_PAGE_4K)
374 continue;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100375
Luke Browning71bf08b2007-05-03 00:19:11 +1000376 /* valid entries have a shift value */
377 if (!mmu_psize_defs[size].shift)
378 continue;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100379
Luke Browning71bf08b2007-05-03 00:19:11 +1000380 if (penc == mmu_psize_defs[size].penc)
381 break;
382 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 }
384
Paul Mackerras2454c7e2007-05-10 15:28:44 +1000385 /* This works for all page sizes, and for 256M and 1T segments */
Luke Browning71bf08b2007-05-03 00:19:11 +1000386 shift = mmu_psize_defs[size].shift;
Paul Mackerras2454c7e2007-05-10 15:28:44 +1000387 avpn = (HPTE_V_AVPN_VAL(hpte_v) & ~mmu_psize_defs[size].avpnm) << 23;
Luke Browning71bf08b2007-05-03 00:19:11 +1000388
Paul Mackerras2454c7e2007-05-10 15:28:44 +1000389 if (shift < 23) {
390 unsigned long vpi, vsid, pteg;
Luke Browning71bf08b2007-05-03 00:19:11 +1000391
Paul Mackerras2454c7e2007-05-10 15:28:44 +1000392 pteg = slot / HPTES_PER_GROUP;
393 if (hpte_v & HPTE_V_SECONDARY)
394 pteg = ~pteg;
395 switch (hpte_v >> HPTE_V_SSIZE_SHIFT) {
396 case MMU_SEGSIZE_256M:
Luke Browning71bf08b2007-05-03 00:19:11 +1000397 vpi = ((avpn >> 28) ^ pteg) & htab_hash_mask;
Paul Mackerras2454c7e2007-05-10 15:28:44 +1000398 break;
399 case MMU_SEGSIZE_1T:
400 vsid = avpn >> 40;
401 vpi = (vsid ^ (vsid << 25) ^ pteg) & htab_hash_mask;
402 break;
403 default:
Stephen Rothwell0c12fe52007-05-11 15:37:38 +1000404 avpn = vpi = size = 0;
Luke Browning71bf08b2007-05-03 00:19:11 +1000405 }
Paul Mackerras2454c7e2007-05-10 15:28:44 +1000406 avpn |= (vpi << mmu_psize_defs[size].shift);
Luke Browning71bf08b2007-05-03 00:19:11 +1000407 }
408
409 *va = avpn;
410 *psize = size;
Paul Mackerras1189be62007-10-11 20:37:10 +1000411 *ssize = hpte_v >> HPTE_V_SSIZE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412}
413
R Sharadaf4c82d52005-06-25 14:58:08 -0700414/*
415 * clear all mappings on kexec. All cpus are in real mode (or they will
416 * be when they isi), and we are the only one left. We rely on our kernel
417 * mapping being 0xC0's and the hardware ignoring those two real bits.
418 *
419 * TODO: add batching support when enabled. remember, no dynamic memory here,
420 * athough there is the control page available...
421 */
422static void native_hpte_clear(void)
423{
424 unsigned long slot, slots, flags;
David Gibson8e561e72007-06-13 14:52:56 +1000425 struct hash_pte *hptep = htab_address;
Luke Browning71bf08b2007-05-03 00:19:11 +1000426 unsigned long hpte_v, va;
R Sharadaf4c82d52005-06-25 14:58:08 -0700427 unsigned long pteg_count;
Paul Mackerras1189be62007-10-11 20:37:10 +1000428 int psize, ssize;
R Sharadaf4c82d52005-06-25 14:58:08 -0700429
430 pteg_count = htab_hash_mask + 1;
431
432 local_irq_save(flags);
433
434 /* we take the tlbie lock and hold it. Some hardware will
435 * deadlock if we try to tlbie from two processors at once.
436 */
437 spin_lock(&native_tlbie_lock);
438
439 slots = pteg_count * HPTES_PER_GROUP;
440
441 for (slot = 0; slot < slots; slot++, hptep++) {
442 /*
443 * we could lock the pte here, but we are the only cpu
444 * running, right? and for crash dump, we probably
445 * don't want to wait for a maybe bad cpu.
446 */
David Gibson96e28442005-07-13 01:11:42 -0700447 hpte_v = hptep->v;
R Sharadaf4c82d52005-06-25 14:58:08 -0700448
R Sharada47f78a42006-02-22 21:43:08 +0530449 /*
450 * Call __tlbie() here rather than tlbie() since we
451 * already hold the native_tlbie_lock.
452 */
David Gibson96e28442005-07-13 01:11:42 -0700453 if (hpte_v & HPTE_V_VALID) {
Paul Mackerras1189be62007-10-11 20:37:10 +1000454 hpte_decode(hptep, slot, &psize, &ssize, &va);
David Gibson96e28442005-07-13 01:11:42 -0700455 hptep->v = 0;
Paul Mackerras1189be62007-10-11 20:37:10 +1000456 __tlbie(va, psize, ssize);
R Sharadaf4c82d52005-06-25 14:58:08 -0700457 }
458 }
459
R Sharada47f78a42006-02-22 21:43:08 +0530460 asm volatile("eieio; tlbsync; ptesync":::"memory");
R Sharadaf4c82d52005-06-25 14:58:08 -0700461 spin_unlock(&native_tlbie_lock);
462 local_irq_restore(flags);
463}
464
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100465/*
466 * Batched hash table flush, we batch the tlbie's to avoid taking/releasing
467 * the lock all the time
468 */
Benjamin Herrenschmidt61b1a942005-09-20 13:52:50 +1000469static void native_flush_hash_range(unsigned long number, int local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100471 unsigned long va, hash, index, hidx, shift, slot;
David Gibson8e561e72007-06-13 14:52:56 +1000472 struct hash_pte *hptep;
David Gibson96e28442005-07-13 01:11:42 -0700473 unsigned long hpte_v;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100474 unsigned long want_v;
475 unsigned long flags;
476 real_pte_t pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 struct ppc64_tlb_batch *batch = &__get_cpu_var(ppc64_tlb_batch);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100478 unsigned long psize = batch->psize;
Paul Mackerras1189be62007-10-11 20:37:10 +1000479 int ssize = batch->ssize;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100480 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
482 local_irq_save(flags);
483
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 for (i = 0; i < number; i++) {
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100485 va = batch->vaddr[i];
486 pte = batch->pte[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100488 pte_iterate_hashed_subpages(pte, psize, va, index, shift) {
Paul Mackerras1189be62007-10-11 20:37:10 +1000489 hash = hpt_hash(va, shift, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100490 hidx = __rpte_to_hidx(pte, index);
491 if (hidx & _PTEIDX_SECONDARY)
492 hash = ~hash;
493 slot = (hash & htab_hash_mask) * HPTES_PER_GROUP;
494 slot += hidx & _PTEIDX_GROUP_IX;
495 hptep = htab_address + slot;
Paul Mackerras1189be62007-10-11 20:37:10 +1000496 want_v = hpte_encode_v(va, psize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100497 native_lock_hpte(hptep);
498 hpte_v = hptep->v;
499 if (!HPTE_V_COMPARE(hpte_v, want_v) ||
500 !(hpte_v & HPTE_V_VALID))
501 native_unlock_hpte(hptep);
502 else
503 hptep->v = 0;
504 } pte_iterate_hashed_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 }
506
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100507 if (cpu_has_feature(CPU_FTR_TLBIEL) &&
508 mmu_psize_defs[psize].tlbiel && local) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 asm volatile("ptesync":::"memory");
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100510 for (i = 0; i < number; i++) {
511 va = batch->vaddr[i];
512 pte = batch->pte[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100514 pte_iterate_hashed_subpages(pte, psize, va, index,
515 shift) {
Paul Mackerras1189be62007-10-11 20:37:10 +1000516 __tlbiel(va, psize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100517 } pte_iterate_hashed_end();
518 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 asm volatile("ptesync":::"memory");
520 } else {
521 int lock_tlbie = !cpu_has_feature(CPU_FTR_LOCKLESS_TLBIE);
522
523 if (lock_tlbie)
524 spin_lock(&native_tlbie_lock);
525
526 asm volatile("ptesync":::"memory");
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100527 for (i = 0; i < number; i++) {
528 va = batch->vaddr[i];
529 pte = batch->pte[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100531 pte_iterate_hashed_subpages(pte, psize, va, index,
532 shift) {
Paul Mackerras1189be62007-10-11 20:37:10 +1000533 __tlbie(va, psize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100534 } pte_iterate_hashed_end();
535 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 asm volatile("eieio; tlbsync; ptesync":::"memory");
537
538 if (lock_tlbie)
539 spin_unlock(&native_tlbie_lock);
540 }
541
542 local_irq_restore(flags);
543}
544
545#ifdef CONFIG_PPC_PSERIES
546/* Disable TLB batching on nighthawk */
547static inline int tlb_batching_enabled(void)
548{
549 struct device_node *root = of_find_node_by_path("/");
550 int enabled = 1;
551
552 if (root) {
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000553 const char *model = of_get_property(root, "model", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 if (model && !strcmp(model, "IBM,9076-N81"))
555 enabled = 0;
556 of_node_put(root);
557 }
558
559 return enabled;
560}
561#else
562static inline int tlb_batching_enabled(void)
563{
564 return 1;
565}
566#endif
567
Michael Ellerman7d0daae2006-06-23 18:16:38 +1000568void __init hpte_init_native(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
570 ppc_md.hpte_invalidate = native_hpte_invalidate;
571 ppc_md.hpte_updatepp = native_hpte_updatepp;
572 ppc_md.hpte_updateboltedpp = native_hpte_updateboltedpp;
573 ppc_md.hpte_insert = native_hpte_insert;
R Sharadaf4c82d52005-06-25 14:58:08 -0700574 ppc_md.hpte_remove = native_hpte_remove;
575 ppc_md.hpte_clear_all = native_hpte_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 if (tlb_batching_enabled())
577 ppc_md.flush_hash_range = native_flush_hash_range;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578}