blob: c23eef2b81a61f5a1beadc3c6322bcbd00593b43 [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;
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{
Matt Evans44ae3ab2011-04-06 19:48:50 +0000101 unsigned int use_local = local && mmu_has_feature(MMU_FTR_TLBIEL);
102 int lock_tlbie = !mmu_has_feature(MMU_FTR_LOCKLESS_TLBIE);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100103
104 if (use_local)
105 use_local = mmu_psize_defs[psize].tlbiel;
106 if (lock_tlbie && !use_local)
Thomas Gleixner6b9c9b82010-02-18 02:22:35 +0000107 raw_spin_lock(&native_tlbie_lock);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100108 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)
Thomas Gleixner6b9c9b82010-02-18 02:22:35 +0000117 raw_spin_unlock(&native_tlbie_lock);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100118}
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) {
Anton Blanchard66d99b82010-02-10 01:03:06 +0000125 if (!test_and_set_bit_lock(HPTE_LOCK_BIT, word))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 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
Anton Blanchard66d99b82010-02-10 01:03:06 +0000136 clear_bit_unlock(HPTE_LOCK_BIT, word);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
Geoff Levand035223f2006-10-05 11:35:10 -0700139static long native_hpte_insert(unsigned long hpte_group, unsigned long va,
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100140 unsigned long pa, unsigned long rflags,
Paul Mackerras1189be62007-10-11 20:37:10 +1000141 unsigned long vflags, int psize, int ssize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
David Gibson8e561e72007-06-13 14:52:56 +1000143 struct hash_pte *hptep = htab_address + hpte_group;
David Gibson96e28442005-07-13 01:11:42 -0700144 unsigned long hpte_v, hpte_r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 int i;
146
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100147 if (!(vflags & HPTE_V_BOLTED)) {
148 DBG_LOW(" insert(group=%lx, va=%016lx, pa=%016lx,"
149 " rflags=%lx, vflags=%lx, psize=%d)\n",
150 hpte_group, va, pa, rflags, vflags, psize);
151 }
152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 for (i = 0; i < HPTES_PER_GROUP; i++) {
David Gibson96e28442005-07-13 01:11:42 -0700154 if (! (hptep->v & HPTE_V_VALID)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 /* retry with lock held */
156 native_lock_hpte(hptep);
David Gibson96e28442005-07-13 01:11:42 -0700157 if (! (hptep->v & HPTE_V_VALID))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 break;
159 native_unlock_hpte(hptep);
160 }
161
162 hptep++;
163 }
164
165 if (i == HPTES_PER_GROUP)
166 return -1;
167
Paul Mackerras1189be62007-10-11 20:37:10 +1000168 hpte_v = hpte_encode_v(va, psize, ssize) | vflags | HPTE_V_VALID;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100169 hpte_r = hpte_encode_r(pa, psize) | rflags;
170
171 if (!(vflags & HPTE_V_BOLTED)) {
172 DBG_LOW(" i=%x hpte_v=%016lx, hpte_r=%016lx\n",
173 i, hpte_v, hpte_r);
174 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
David Gibson96e28442005-07-13 01:11:42 -0700176 hptep->r = hpte_r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 /* Guarantee the second dword is visible before the valid bit */
Kumar Gala74a0ba62007-07-09 23:49:09 -0500178 eieio();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 /*
180 * Now set the first dword including the valid bit
181 * NOTE: this also unlocks the hpte
182 */
David Gibson96e28442005-07-13 01:11:42 -0700183 hptep->v = hpte_v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185 __asm__ __volatile__ ("ptesync" : : : "memory");
186
David Gibson96e28442005-07-13 01:11:42 -0700187 return i | (!!(vflags & HPTE_V_SECONDARY) << 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188}
189
190static long native_hpte_remove(unsigned long hpte_group)
191{
David Gibson8e561e72007-06-13 14:52:56 +1000192 struct hash_pte *hptep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 int i;
194 int slot_offset;
David Gibson96e28442005-07-13 01:11:42 -0700195 unsigned long hpte_v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100197 DBG_LOW(" remove(group=%lx)\n", hpte_group);
198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 /* pick a random entry to start at */
200 slot_offset = mftb() & 0x7;
201
202 for (i = 0; i < HPTES_PER_GROUP; i++) {
203 hptep = htab_address + hpte_group + slot_offset;
David Gibson96e28442005-07-13 01:11:42 -0700204 hpte_v = hptep->v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
David Gibson96e28442005-07-13 01:11:42 -0700206 if ((hpte_v & HPTE_V_VALID) && !(hpte_v & HPTE_V_BOLTED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 /* retry with lock held */
208 native_lock_hpte(hptep);
David Gibson96e28442005-07-13 01:11:42 -0700209 hpte_v = hptep->v;
210 if ((hpte_v & HPTE_V_VALID)
211 && !(hpte_v & HPTE_V_BOLTED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 break;
213 native_unlock_hpte(hptep);
214 }
215
216 slot_offset++;
217 slot_offset &= 0x7;
218 }
219
220 if (i == HPTES_PER_GROUP)
221 return -1;
222
223 /* Invalidate the hpte. NOTE: this also unlocks it */
David Gibson96e28442005-07-13 01:11:42 -0700224 hptep->v = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 return i;
227}
228
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100229static long native_hpte_updatepp(unsigned long slot, unsigned long newpp,
Paul Mackerras1189be62007-10-11 20:37:10 +1000230 unsigned long va, int psize, int ssize,
231 int local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
David Gibson8e561e72007-06-13 14:52:56 +1000233 struct hash_pte *hptep = htab_address + slot;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100234 unsigned long hpte_v, want_v;
235 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Paul Mackerras1189be62007-10-11 20:37:10 +1000237 want_v = hpte_encode_v(va, psize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100238
239 DBG_LOW(" update(va=%016lx, avpnv=%016lx, hash=%016lx, newpp=%x)",
240 va, want_v & HPTE_V_AVPN, slot, newpp);
241
242 native_lock_hpte(hptep);
243
244 hpte_v = hptep->v;
245
246 /* Even if we miss, we need to invalidate the TLB */
247 if (!HPTE_V_COMPARE(hpte_v, want_v) || !(hpte_v & HPTE_V_VALID)) {
248 DBG_LOW(" -> miss\n");
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100249 ret = -1;
250 } else {
251 DBG_LOW(" -> hit\n");
252 /* Update the HPTE */
253 hptep->r = (hptep->r & ~(HPTE_R_PP | HPTE_R_N)) |
Benjamin Herrenschmidtc5cf0e32006-05-30 14:14:19 +1000254 (newpp & (HPTE_R_PP | HPTE_R_N | HPTE_R_C));
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100255 }
Jon Tollefson3f1df7a2007-05-18 04:49:22 +1000256 native_unlock_hpte(hptep);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100257
258 /* Ensure it is out of the tlb too. */
Paul Mackerras1189be62007-10-11 20:37:10 +1000259 tlbie(va, psize, ssize, local);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100260
261 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262}
263
Paul Mackerras1189be62007-10-11 20:37:10 +1000264static long native_hpte_find(unsigned long va, int psize, int ssize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
David Gibson8e561e72007-06-13 14:52:56 +1000266 struct hash_pte *hptep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 unsigned long hash;
Paul Mackerras1189be62007-10-11 20:37:10 +1000268 unsigned long i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 long slot;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100270 unsigned long want_v, hpte_v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Paul Mackerras1189be62007-10-11 20:37:10 +1000272 hash = hpt_hash(va, mmu_psize_defs[psize].shift, ssize);
273 want_v = hpte_encode_v(va, psize, ssize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Paul Mackerras1189be62007-10-11 20:37:10 +1000275 /* Bolted mappings are only ever in the primary group */
276 slot = (hash & htab_hash_mask) * HPTES_PER_GROUP;
277 for (i = 0; i < HPTES_PER_GROUP; i++) {
278 hptep = htab_address + slot;
279 hpte_v = hptep->v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Paul Mackerras1189be62007-10-11 20:37:10 +1000281 if (HPTE_V_COMPARE(hpte_v, want_v) && (hpte_v & HPTE_V_VALID))
282 /* HPTE matches */
283 return slot;
284 ++slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 }
286
287 return -1;
288}
289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290/*
291 * Update the page protection bits. Intended to be used to create
292 * guard pages for kernel data structures on pages which are bolted
293 * in the HPT. Assumes pages being operated on will not be stolen.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 *
295 * No need to lock here because we should be the only user.
296 */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100297static void native_hpte_updateboltedpp(unsigned long newpp, unsigned long ea,
Paul Mackerras1189be62007-10-11 20:37:10 +1000298 int psize, int ssize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100300 unsigned long vsid, va;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 long slot;
David Gibson8e561e72007-06-13 14:52:56 +1000302 struct hash_pte *hptep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Paul Mackerras1189be62007-10-11 20:37:10 +1000304 vsid = get_kernel_vsid(ea, ssize);
305 va = hpt_va(ea, vsid, ssize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Paul Mackerras1189be62007-10-11 20:37:10 +1000307 slot = native_hpte_find(va, psize, ssize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 if (slot == -1)
309 panic("could not find page to bolt\n");
310 hptep = htab_address + slot;
311
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100312 /* Update the HPTE */
313 hptep->r = (hptep->r & ~(HPTE_R_PP | HPTE_R_N)) |
314 (newpp & (HPTE_R_PP | HPTE_R_N));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100316 /* Ensure it is out of the tlb too. */
Paul Mackerras1189be62007-10-11 20:37:10 +1000317 tlbie(va, psize, ssize, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318}
319
320static void native_hpte_invalidate(unsigned long slot, unsigned long va,
Paul Mackerras1189be62007-10-11 20:37:10 +1000321 int psize, int ssize, int local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
David Gibson8e561e72007-06-13 14:52:56 +1000323 struct hash_pte *hptep = htab_address + slot;
David Gibson96e28442005-07-13 01:11:42 -0700324 unsigned long hpte_v;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100325 unsigned long want_v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100330 DBG_LOW(" invalidate(va=%016lx, hash: %x)\n", va, slot);
331
Paul Mackerras1189be62007-10-11 20:37:10 +1000332 want_v = hpte_encode_v(va, psize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100333 native_lock_hpte(hptep);
David Gibson96e28442005-07-13 01:11:42 -0700334 hpte_v = hptep->v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
336 /* Even if we miss, we need to invalidate the TLB */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100337 if (!HPTE_V_COMPARE(hpte_v, want_v) || !(hpte_v & HPTE_V_VALID))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 native_unlock_hpte(hptep);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100339 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 /* Invalidate the hpte. NOTE: this also unlocks it */
David Gibson96e28442005-07-13 01:11:42 -0700341 hptep->v = 0;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100342
343 /* Invalidate the TLB */
Paul Mackerras1189be62007-10-11 20:37:10 +1000344 tlbie(va, psize, ssize, local);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100345
346 local_irq_restore(flags);
347}
348
Luke Browning71bf08b2007-05-03 00:19:11 +1000349#define LP_SHIFT 12
350#define LP_BITS 8
351#define LP_MASK(i) ((0xFF >> (i)) << LP_SHIFT)
352
David Gibson8e561e72007-06-13 14:52:56 +1000353static void hpte_decode(struct hash_pte *hpte, unsigned long slot,
Paul Mackerras1189be62007-10-11 20:37:10 +1000354 int *psize, int *ssize, unsigned long *va)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100355{
Luke Browning71bf08b2007-05-03 00:19:11 +1000356 unsigned long hpte_r = hpte->r;
357 unsigned long hpte_v = hpte->v;
358 unsigned long avpn;
Stephen Rothwell8980ae82007-05-11 15:38:34 +1000359 int i, size, shift, penc;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100360
Luke Browning71bf08b2007-05-03 00:19:11 +1000361 if (!(hpte_v & HPTE_V_LARGE))
362 size = MMU_PAGE_4K;
363 else {
364 for (i = 0; i < LP_BITS; i++) {
365 if ((hpte_r & LP_MASK(i+1)) == LP_MASK(i+1))
366 break;
367 }
368 penc = LP_MASK(i+1) >> LP_SHIFT;
369 for (size = 0; size < MMU_PAGE_COUNT; size++) {
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100370
Luke Browning71bf08b2007-05-03 00:19:11 +1000371 /* 4K pages are not represented by LP */
372 if (size == MMU_PAGE_4K)
373 continue;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100374
Luke Browning71bf08b2007-05-03 00:19:11 +1000375 /* valid entries have a shift value */
376 if (!mmu_psize_defs[size].shift)
377 continue;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100378
Luke Browning71bf08b2007-05-03 00:19:11 +1000379 if (penc == mmu_psize_defs[size].penc)
380 break;
381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 }
383
Paul Mackerras2454c7e2007-05-10 15:28:44 +1000384 /* This works for all page sizes, and for 256M and 1T segments */
Luke Browning71bf08b2007-05-03 00:19:11 +1000385 shift = mmu_psize_defs[size].shift;
Paul Mackerras2454c7e2007-05-10 15:28:44 +1000386 avpn = (HPTE_V_AVPN_VAL(hpte_v) & ~mmu_psize_defs[size].avpnm) << 23;
Luke Browning71bf08b2007-05-03 00:19:11 +1000387
Paul Mackerras2454c7e2007-05-10 15:28:44 +1000388 if (shift < 23) {
389 unsigned long vpi, vsid, pteg;
Luke Browning71bf08b2007-05-03 00:19:11 +1000390
Paul Mackerras2454c7e2007-05-10 15:28:44 +1000391 pteg = slot / HPTES_PER_GROUP;
392 if (hpte_v & HPTE_V_SECONDARY)
393 pteg = ~pteg;
394 switch (hpte_v >> HPTE_V_SSIZE_SHIFT) {
395 case MMU_SEGSIZE_256M:
Luke Browning71bf08b2007-05-03 00:19:11 +1000396 vpi = ((avpn >> 28) ^ pteg) & htab_hash_mask;
Paul Mackerras2454c7e2007-05-10 15:28:44 +1000397 break;
398 case MMU_SEGSIZE_1T:
399 vsid = avpn >> 40;
400 vpi = (vsid ^ (vsid << 25) ^ pteg) & htab_hash_mask;
401 break;
402 default:
Stephen Rothwell0c12fe52007-05-11 15:37:38 +1000403 avpn = vpi = size = 0;
Luke Browning71bf08b2007-05-03 00:19:11 +1000404 }
Paul Mackerras2454c7e2007-05-10 15:28:44 +1000405 avpn |= (vpi << mmu_psize_defs[size].shift);
Luke Browning71bf08b2007-05-03 00:19:11 +1000406 }
407
408 *va = avpn;
409 *psize = size;
Paul Mackerras1189be62007-10-11 20:37:10 +1000410 *ssize = hpte_v >> HPTE_V_SSIZE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411}
412
R Sharadaf4c82d52005-06-25 14:58:08 -0700413/*
414 * clear all mappings on kexec. All cpus are in real mode (or they will
415 * be when they isi), and we are the only one left. We rely on our kernel
416 * mapping being 0xC0's and the hardware ignoring those two real bits.
417 *
418 * TODO: add batching support when enabled. remember, no dynamic memory here,
419 * athough there is the control page available...
420 */
421static void native_hpte_clear(void)
422{
423 unsigned long slot, slots, flags;
David Gibson8e561e72007-06-13 14:52:56 +1000424 struct hash_pte *hptep = htab_address;
Luke Browning71bf08b2007-05-03 00:19:11 +1000425 unsigned long hpte_v, va;
R Sharadaf4c82d52005-06-25 14:58:08 -0700426 unsigned long pteg_count;
Paul Mackerras1189be62007-10-11 20:37:10 +1000427 int psize, ssize;
R Sharadaf4c82d52005-06-25 14:58:08 -0700428
429 pteg_count = htab_hash_mask + 1;
430
431 local_irq_save(flags);
432
433 /* we take the tlbie lock and hold it. Some hardware will
434 * deadlock if we try to tlbie from two processors at once.
435 */
Thomas Gleixner6b9c9b82010-02-18 02:22:35 +0000436 raw_spin_lock(&native_tlbie_lock);
R Sharadaf4c82d52005-06-25 14:58:08 -0700437
438 slots = pteg_count * HPTES_PER_GROUP;
439
440 for (slot = 0; slot < slots; slot++, hptep++) {
441 /*
442 * we could lock the pte here, but we are the only cpu
443 * running, right? and for crash dump, we probably
444 * don't want to wait for a maybe bad cpu.
445 */
David Gibson96e28442005-07-13 01:11:42 -0700446 hpte_v = hptep->v;
R Sharadaf4c82d52005-06-25 14:58:08 -0700447
R Sharada47f78a42006-02-22 21:43:08 +0530448 /*
449 * Call __tlbie() here rather than tlbie() since we
450 * already hold the native_tlbie_lock.
451 */
David Gibson96e28442005-07-13 01:11:42 -0700452 if (hpte_v & HPTE_V_VALID) {
Paul Mackerras1189be62007-10-11 20:37:10 +1000453 hpte_decode(hptep, slot, &psize, &ssize, &va);
David Gibson96e28442005-07-13 01:11:42 -0700454 hptep->v = 0;
Paul Mackerras1189be62007-10-11 20:37:10 +1000455 __tlbie(va, psize, ssize);
R Sharadaf4c82d52005-06-25 14:58:08 -0700456 }
457 }
458
R Sharada47f78a42006-02-22 21:43:08 +0530459 asm volatile("eieio; tlbsync; ptesync":::"memory");
Thomas Gleixner6b9c9b82010-02-18 02:22:35 +0000460 raw_spin_unlock(&native_tlbie_lock);
R Sharadaf4c82d52005-06-25 14:58:08 -0700461 local_irq_restore(flags);
462}
463
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100464/*
465 * Batched hash table flush, we batch the tlbie's to avoid taking/releasing
466 * the lock all the time
467 */
Benjamin Herrenschmidt61b1a942005-09-20 13:52:50 +1000468static void native_flush_hash_range(unsigned long number, int local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100470 unsigned long va, hash, index, hidx, shift, slot;
David Gibson8e561e72007-06-13 14:52:56 +1000471 struct hash_pte *hptep;
David Gibson96e28442005-07-13 01:11:42 -0700472 unsigned long hpte_v;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100473 unsigned long want_v;
474 unsigned long flags;
475 real_pte_t pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 struct ppc64_tlb_batch *batch = &__get_cpu_var(ppc64_tlb_batch);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100477 unsigned long psize = batch->psize;
Paul Mackerras1189be62007-10-11 20:37:10 +1000478 int ssize = batch->ssize;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100479 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
481 local_irq_save(flags);
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 for (i = 0; i < number; i++) {
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100484 va = batch->vaddr[i];
485 pte = batch->pte[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100487 pte_iterate_hashed_subpages(pte, psize, va, index, shift) {
Paul Mackerras1189be62007-10-11 20:37:10 +1000488 hash = hpt_hash(va, shift, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100489 hidx = __rpte_to_hidx(pte, index);
490 if (hidx & _PTEIDX_SECONDARY)
491 hash = ~hash;
492 slot = (hash & htab_hash_mask) * HPTES_PER_GROUP;
493 slot += hidx & _PTEIDX_GROUP_IX;
494 hptep = htab_address + slot;
Paul Mackerras1189be62007-10-11 20:37:10 +1000495 want_v = hpte_encode_v(va, psize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100496 native_lock_hpte(hptep);
497 hpte_v = hptep->v;
498 if (!HPTE_V_COMPARE(hpte_v, want_v) ||
499 !(hpte_v & HPTE_V_VALID))
500 native_unlock_hpte(hptep);
501 else
502 hptep->v = 0;
503 } pte_iterate_hashed_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 }
505
Matt Evans44ae3ab2011-04-06 19:48:50 +0000506 if (mmu_has_feature(MMU_FTR_TLBIEL) &&
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100507 mmu_psize_defs[psize].tlbiel && local) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 asm volatile("ptesync":::"memory");
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100509 for (i = 0; i < number; i++) {
510 va = batch->vaddr[i];
511 pte = batch->pte[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100513 pte_iterate_hashed_subpages(pte, psize, va, index,
514 shift) {
Paul Mackerras1189be62007-10-11 20:37:10 +1000515 __tlbiel(va, psize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100516 } pte_iterate_hashed_end();
517 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 asm volatile("ptesync":::"memory");
519 } else {
Matt Evans44ae3ab2011-04-06 19:48:50 +0000520 int lock_tlbie = !mmu_has_feature(MMU_FTR_LOCKLESS_TLBIE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
522 if (lock_tlbie)
Thomas Gleixner6b9c9b82010-02-18 02:22:35 +0000523 raw_spin_lock(&native_tlbie_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525 asm volatile("ptesync":::"memory");
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100526 for (i = 0; i < number; i++) {
527 va = batch->vaddr[i];
528 pte = batch->pte[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100530 pte_iterate_hashed_subpages(pte, psize, va, index,
531 shift) {
Paul Mackerras1189be62007-10-11 20:37:10 +1000532 __tlbie(va, psize, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100533 } pte_iterate_hashed_end();
534 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 asm volatile("eieio; tlbsync; ptesync":::"memory");
536
537 if (lock_tlbie)
Thomas Gleixner6b9c9b82010-02-18 02:22:35 +0000538 raw_spin_unlock(&native_tlbie_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 }
540
541 local_irq_restore(flags);
542}
543
544#ifdef CONFIG_PPC_PSERIES
545/* Disable TLB batching on nighthawk */
546static inline int tlb_batching_enabled(void)
547{
548 struct device_node *root = of_find_node_by_path("/");
549 int enabled = 1;
550
551 if (root) {
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000552 const char *model = of_get_property(root, "model", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 if (model && !strcmp(model, "IBM,9076-N81"))
554 enabled = 0;
555 of_node_put(root);
556 }
557
558 return enabled;
559}
560#else
561static inline int tlb_batching_enabled(void)
562{
563 return 1;
564}
565#endif
566
Michael Ellerman7d0daae2006-06-23 18:16:38 +1000567void __init hpte_init_native(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
569 ppc_md.hpte_invalidate = native_hpte_invalidate;
570 ppc_md.hpte_updatepp = native_hpte_updatepp;
571 ppc_md.hpte_updateboltedpp = native_hpte_updateboltedpp;
572 ppc_md.hpte_insert = native_hpte_insert;
R Sharadaf4c82d52005-06-25 14:58:08 -0700573 ppc_md.hpte_remove = native_hpte_remove;
574 ppc_md.hpte_clear_all = native_hpte_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 if (tlb_batching_enabled())
576 ppc_md.flush_hash_range = native_flush_hash_range;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577}