]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/powerpc/mm/hash_native_64.c
Merge tag 'media/v4.10-1' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab...
[mirror_ubuntu-bionic-kernel.git] / arch / powerpc / mm / hash_native_64.c
CommitLineData
1da177e4
LT
1/*
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 */
3c726f8d
BH
12
13#undef DEBUG_LOW
14
1da177e4
LT
15#include <linux/spinlock.h>
16#include <linux/bitops.h>
beacc6da 17#include <linux/of.h>
1da177e4
LT
18#include <linux/threads.h>
19#include <linux/smp.h>
20
1da177e4
LT
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>
3c726f8d 28#include <asm/udbg.h>
71bf08b6 29#include <asm/kexec.h>
60dbf438 30#include <asm/ppc-opcode.h>
3c726f8d 31
ec249dd8 32#include <misc/cxl-base.h>
4c6d9acc 33
3c726f8d
BH
34#ifdef DEBUG_LOW
35#define DBG_LOW(fmt...) udbg_printf(fmt)
36#else
37#define DBG_LOW(fmt...)
38#endif
1da177e4 39
12f04f2b 40#ifdef __BIG_ENDIAN__
1da177e4 41#define HPTE_LOCK_BIT 3
12f04f2b
AB
42#else
43#define HPTE_LOCK_BIT (56+3)
44#endif
1da177e4 45
9e368f29 46DEFINE_RAW_SPINLOCK(native_tlbie_lock);
1da177e4 47
b1022fbd 48static inline void __tlbie(unsigned long vpn, int psize, int apsize, int ssize)
3c726f8d 49{
5524a27d 50 unsigned long va;
3c726f8d 51 unsigned int penc;
de640959 52 unsigned long sllp;
3c726f8d 53
5524a27d
AK
54 /*
55 * We need 14 to 65 bits of va for a tlibe of 4K page
56 * With vpn we ignore the lower VPN_SHIFT bits already.
57 * And top two bits are already ignored because we can
027dfac6 58 * only accomodate 76 bits in a 64 bit vpn with a VPN_SHIFT
5524a27d
AK
59 * of 12.
60 */
61 va = vpn << VPN_SHIFT;
62 /*
63 * clear top 16 bits of 64bit va, non SLS segment
64 * Older versions of the architecture (2.02 and earler) require the
65 * masking of the top 16 bits.
66 */
accfad7d
AK
67 if (mmu_has_feature(MMU_FTR_TLBIE_CROP_VA))
68 va &= ~(0xffffULL << 48);
3c726f8d
BH
69
70 switch (psize) {
71 case MMU_PAGE_4K:
1f6aaacc
AK
72 /* clear out bits after (52) [0....52.....63] */
73 va &= ~((1ul << (64 - 52)) - 1);
1189be65 74 va |= ssize << 8;
138ee7ee 75 sllp = get_sllp_encoding(apsize);
de640959 76 va |= sllp << 5;
a32e252f 77 asm volatile(ASM_FTR_IFCLR("tlbie %0,0", PPC_TLBIE(%1,%0), %2)
969391c5 78 : : "r" (va), "r"(0), "i" (CPU_FTR_ARCH_206)
60dbf438 79 : "memory");
3c726f8d
BH
80 break;
81 default:
5524a27d 82 /* We need 14 to 14 + i bits of va */
b1022fbd 83 penc = mmu_psize_defs[psize].penc[apsize];
1f6aaacc 84 va &= ~((1ul << mmu_psize_defs[apsize].shift) - 1);
19242b24 85 va |= penc << 12;
1189be65 86 va |= ssize << 8;
29ef7a3e
AK
87 /*
88 * AVAL bits:
89 * We don't need all the bits, but rest of the bits
90 * must be ignored by the processor.
91 * vpn cover upto 65 bits of va. (0...65) and we need
92 * 58..64 bits of va.
93 */
94 va |= (vpn & 0xfe); /* AVAL */
60dbf438 95 va |= 1; /* L */
a32e252f 96 asm volatile(ASM_FTR_IFCLR("tlbie %0,1", PPC_TLBIE(%1,%0), %2)
969391c5 97 : : "r" (va), "r"(0), "i" (CPU_FTR_ARCH_206)
60dbf438 98 : "memory");
3c726f8d
BH
99 break;
100 }
101}
102
b1022fbd 103static inline void __tlbiel(unsigned long vpn, int psize, int apsize, int ssize)
3c726f8d 104{
5524a27d 105 unsigned long va;
3c726f8d 106 unsigned int penc;
de640959 107 unsigned long sllp;
3c726f8d 108
5524a27d
AK
109 /* VPN_SHIFT can be atmost 12 */
110 va = vpn << VPN_SHIFT;
111 /*
112 * clear top 16 bits of 64 bit va, non SLS segment
113 * Older versions of the architecture (2.02 and earler) require the
114 * masking of the top 16 bits.
115 */
accfad7d
AK
116 if (mmu_has_feature(MMU_FTR_TLBIE_CROP_VA))
117 va &= ~(0xffffULL << 48);
3c726f8d
BH
118
119 switch (psize) {
120 case MMU_PAGE_4K:
1f6aaacc
AK
121 /* clear out bits after(52) [0....52.....63] */
122 va &= ~((1ul << (64 - 52)) - 1);
1189be65 123 va |= ssize << 8;
138ee7ee 124 sllp = get_sllp_encoding(apsize);
de640959 125 va |= sllp << 5;
f923efbc
BS
126 asm volatile(ASM_FTR_IFSET("tlbiel %0", "tlbiel %0,0", %1)
127 : : "r" (va), "i" (CPU_FTR_ARCH_206)
128 : "memory");
3c726f8d
BH
129 break;
130 default:
5524a27d 131 /* We need 14 to 14 + i bits of va */
b1022fbd 132 penc = mmu_psize_defs[psize].penc[apsize];
1f6aaacc 133 va &= ~((1ul << mmu_psize_defs[apsize].shift) - 1);
19242b24 134 va |= penc << 12;
1189be65 135 va |= ssize << 8;
29ef7a3e
AK
136 /*
137 * AVAL bits:
138 * We don't need all the bits, but rest of the bits
139 * must be ignored by the processor.
140 * vpn cover upto 65 bits of va. (0...65) and we need
141 * 58..64 bits of va.
142 */
143 va |= (vpn & 0xfe);
60dbf438 144 va |= 1; /* L */
f923efbc
BS
145 asm volatile(ASM_FTR_IFSET("tlbiel %0", "tlbiel %0,1", %1)
146 : : "r" (va), "i" (CPU_FTR_ARCH_206)
147 : "memory");
3c726f8d
BH
148 break;
149 }
150
151}
152
b1022fbd
AK
153static inline void tlbie(unsigned long vpn, int psize, int apsize,
154 int ssize, int local)
3c726f8d 155{
4c6d9acc 156 unsigned int use_local;
44ae3ab3 157 int lock_tlbie = !mmu_has_feature(MMU_FTR_LOCKLESS_TLBIE);
3c726f8d 158
4c6d9acc
IM
159 use_local = local && mmu_has_feature(MMU_FTR_TLBIEL) && !cxl_ctx_in_use();
160
3c726f8d
BH
161 if (use_local)
162 use_local = mmu_psize_defs[psize].tlbiel;
163 if (lock_tlbie && !use_local)
6b9c9b8a 164 raw_spin_lock(&native_tlbie_lock);
3c726f8d
BH
165 asm volatile("ptesync": : :"memory");
166 if (use_local) {
b1022fbd 167 __tlbiel(vpn, psize, apsize, ssize);
3c726f8d
BH
168 asm volatile("ptesync": : :"memory");
169 } else {
b1022fbd 170 __tlbie(vpn, psize, apsize, ssize);
3c726f8d
BH
171 asm volatile("eieio; tlbsync; ptesync": : :"memory");
172 }
173 if (lock_tlbie && !use_local)
6b9c9b8a 174 raw_spin_unlock(&native_tlbie_lock);
3c726f8d
BH
175}
176
8e561e7e 177static inline void native_lock_hpte(struct hash_pte *hptep)
1da177e4 178{
12f04f2b 179 unsigned long *word = (unsigned long *)&hptep->v;
1da177e4
LT
180
181 while (1) {
66d99b88 182 if (!test_and_set_bit_lock(HPTE_LOCK_BIT, word))
1da177e4
LT
183 break;
184 while(test_bit(HPTE_LOCK_BIT, word))
185 cpu_relax();
186 }
187}
188
8e561e7e 189static inline void native_unlock_hpte(struct hash_pte *hptep)
1da177e4 190{
12f04f2b 191 unsigned long *word = (unsigned long *)&hptep->v;
1da177e4 192
66d99b88 193 clear_bit_unlock(HPTE_LOCK_BIT, word);
1da177e4
LT
194}
195
5524a27d 196static long native_hpte_insert(unsigned long hpte_group, unsigned long vpn,
3c726f8d 197 unsigned long pa, unsigned long rflags,
b1022fbd 198 unsigned long vflags, int psize, int apsize, int ssize)
1da177e4 199{
8e561e7e 200 struct hash_pte *hptep = htab_address + hpte_group;
96e28449 201 unsigned long hpte_v, hpte_r;
1da177e4
LT
202 int i;
203
3c726f8d 204 if (!(vflags & HPTE_V_BOLTED)) {
5524a27d 205 DBG_LOW(" insert(group=%lx, vpn=%016lx, pa=%016lx,"
3c726f8d 206 " rflags=%lx, vflags=%lx, psize=%d)\n",
5524a27d 207 hpte_group, vpn, pa, rflags, vflags, psize);
3c726f8d
BH
208 }
209
1da177e4 210 for (i = 0; i < HPTES_PER_GROUP; i++) {
12f04f2b 211 if (! (be64_to_cpu(hptep->v) & HPTE_V_VALID)) {
1da177e4
LT
212 /* retry with lock held */
213 native_lock_hpte(hptep);
12f04f2b 214 if (! (be64_to_cpu(hptep->v) & HPTE_V_VALID))
1da177e4
LT
215 break;
216 native_unlock_hpte(hptep);
217 }
218
219 hptep++;
220 }
221
222 if (i == HPTES_PER_GROUP)
223 return -1;
224
b1022fbd 225 hpte_v = hpte_encode_v(vpn, psize, apsize, ssize) | vflags | HPTE_V_VALID;
6b243fcf 226 hpte_r = hpte_encode_r(pa, psize, apsize) | rflags;
3c726f8d
BH
227
228 if (!(vflags & HPTE_V_BOLTED)) {
229 DBG_LOW(" i=%x hpte_v=%016lx, hpte_r=%016lx\n",
230 i, hpte_v, hpte_r);
231 }
1da177e4 232
6b243fcf
PM
233 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
234 hpte_r = hpte_old_to_new_r(hpte_v, hpte_r);
235 hpte_v = hpte_old_to_new_v(hpte_v);
236 }
237
12f04f2b 238 hptep->r = cpu_to_be64(hpte_r);
1da177e4 239 /* Guarantee the second dword is visible before the valid bit */
74a0ba61 240 eieio();
1da177e4
LT
241 /*
242 * Now set the first dword including the valid bit
243 * NOTE: this also unlocks the hpte
244 */
12f04f2b 245 hptep->v = cpu_to_be64(hpte_v);
1da177e4
LT
246
247 __asm__ __volatile__ ("ptesync" : : : "memory");
248
96e28449 249 return i | (!!(vflags & HPTE_V_SECONDARY) << 3);
1da177e4
LT
250}
251
252static long native_hpte_remove(unsigned long hpte_group)
253{
8e561e7e 254 struct hash_pte *hptep;
1da177e4
LT
255 int i;
256 int slot_offset;
96e28449 257 unsigned long hpte_v;
1da177e4 258
3c726f8d
BH
259 DBG_LOW(" remove(group=%lx)\n", hpte_group);
260
1da177e4
LT
261 /* pick a random entry to start at */
262 slot_offset = mftb() & 0x7;
263
264 for (i = 0; i < HPTES_PER_GROUP; i++) {
265 hptep = htab_address + hpte_group + slot_offset;
12f04f2b 266 hpte_v = be64_to_cpu(hptep->v);
1da177e4 267
96e28449 268 if ((hpte_v & HPTE_V_VALID) && !(hpte_v & HPTE_V_BOLTED)) {
1da177e4
LT
269 /* retry with lock held */
270 native_lock_hpte(hptep);
12f04f2b 271 hpte_v = be64_to_cpu(hptep->v);
96e28449
DG
272 if ((hpte_v & HPTE_V_VALID)
273 && !(hpte_v & HPTE_V_BOLTED))
1da177e4
LT
274 break;
275 native_unlock_hpte(hptep);
276 }
277
278 slot_offset++;
279 slot_offset &= 0x7;
280 }
281
282 if (i == HPTES_PER_GROUP)
283 return -1;
284
285 /* Invalidate the hpte. NOTE: this also unlocks it */
96e28449 286 hptep->v = 0;
1da177e4
LT
287
288 return i;
289}
290
3c726f8d 291static long native_hpte_updatepp(unsigned long slot, unsigned long newpp,
db3d8534 292 unsigned long vpn, int bpsize,
aefa5688 293 int apsize, int ssize, unsigned long flags)
1da177e4 294{
8e561e7e 295 struct hash_pte *hptep = htab_address + slot;
3c726f8d 296 unsigned long hpte_v, want_v;
aefa5688 297 int ret = 0, local = 0;
3c726f8d 298
db3d8534 299 want_v = hpte_encode_avpn(vpn, bpsize, ssize);
3c726f8d 300
5524a27d
AK
301 DBG_LOW(" update(vpn=%016lx, avpnv=%016lx, group=%lx, newpp=%lx)",
302 vpn, want_v & HPTE_V_AVPN, slot, newpp);
3c726f8d 303
12f04f2b 304 hpte_v = be64_to_cpu(hptep->v);
6b243fcf
PM
305 if (cpu_has_feature(CPU_FTR_ARCH_300))
306 hpte_v = hpte_new_to_old_v(hpte_v, be64_to_cpu(hptep->r));
0608d692
AK
307 /*
308 * We need to invalidate the TLB always because hpte_remove doesn't do
309 * a tlb invalidate. If a hash bucket gets full, we "evict" a more/less
310 * random entry from it. When we do that we don't invalidate the TLB
311 * (hpte_remove) because we assume the old translation is still
312 * technically "valid".
313 */
db3d8534 314 if (!HPTE_V_COMPARE(hpte_v, want_v) || !(hpte_v & HPTE_V_VALID)) {
3c726f8d 315 DBG_LOW(" -> miss\n");
3c726f8d
BH
316 ret = -1;
317 } else {
0ec2698f
AK
318 native_lock_hpte(hptep);
319 /* recheck with locks held */
320 hpte_v = be64_to_cpu(hptep->v);
6b243fcf
PM
321 if (cpu_has_feature(CPU_FTR_ARCH_300))
322 hpte_v = hpte_new_to_old_v(hpte_v, be64_to_cpu(hptep->r));
0ec2698f
AK
323 if (unlikely(!HPTE_V_COMPARE(hpte_v, want_v) ||
324 !(hpte_v & HPTE_V_VALID))) {
325 ret = -1;
326 } else {
327 DBG_LOW(" -> hit\n");
328 /* Update the HPTE */
329 hptep->r = cpu_to_be64((be64_to_cpu(hptep->r) &
8550e2fa
AK
330 ~(HPTE_R_PPP | HPTE_R_N)) |
331 (newpp & (HPTE_R_PPP | HPTE_R_N |
0ec2698f
AK
332 HPTE_R_C)));
333 }
334 native_unlock_hpte(hptep);
3c726f8d 335 }
aefa5688
AK
336
337 if (flags & HPTE_LOCAL_UPDATE)
338 local = 1;
339 /*
340 * Ensure it is out of the tlb too if it is not a nohpte fault
341 */
342 if (!(flags & HPTE_NOHPTE_UPDATE))
343 tlbie(vpn, bpsize, apsize, ssize, local);
344
3c726f8d 345 return ret;
1da177e4
LT
346}
347
5524a27d 348static long native_hpte_find(unsigned long vpn, int psize, int ssize)
1da177e4 349{
8e561e7e 350 struct hash_pte *hptep;
1da177e4 351 unsigned long hash;
1189be65 352 unsigned long i;
1da177e4 353 long slot;
3c726f8d 354 unsigned long want_v, hpte_v;
1da177e4 355
5524a27d 356 hash = hpt_hash(vpn, mmu_psize_defs[psize].shift, ssize);
74f227b2 357 want_v = hpte_encode_avpn(vpn, psize, ssize);
1da177e4 358
1189be65
PM
359 /* Bolted mappings are only ever in the primary group */
360 slot = (hash & htab_hash_mask) * HPTES_PER_GROUP;
361 for (i = 0; i < HPTES_PER_GROUP; i++) {
362 hptep = htab_address + slot;
12f04f2b 363 hpte_v = be64_to_cpu(hptep->v);
6b243fcf
PM
364 if (cpu_has_feature(CPU_FTR_ARCH_300))
365 hpte_v = hpte_new_to_old_v(hpte_v, be64_to_cpu(hptep->r));
1da177e4 366
1189be65
PM
367 if (HPTE_V_COMPARE(hpte_v, want_v) && (hpte_v & HPTE_V_VALID))
368 /* HPTE matches */
369 return slot;
370 ++slot;
1da177e4
LT
371 }
372
373 return -1;
374}
375
1da177e4
LT
376/*
377 * Update the page protection bits. Intended to be used to create
378 * guard pages for kernel data structures on pages which are bolted
379 * in the HPT. Assumes pages being operated on will not be stolen.
1da177e4
LT
380 *
381 * No need to lock here because we should be the only user.
382 */
3c726f8d 383static void native_hpte_updateboltedpp(unsigned long newpp, unsigned long ea,
1189be65 384 int psize, int ssize)
1da177e4 385{
5524a27d
AK
386 unsigned long vpn;
387 unsigned long vsid;
1da177e4 388 long slot;
8e561e7e 389 struct hash_pte *hptep;
1da177e4 390
1189be65 391 vsid = get_kernel_vsid(ea, ssize);
5524a27d 392 vpn = hpt_vpn(ea, vsid, ssize);
1da177e4 393
5524a27d 394 slot = native_hpte_find(vpn, psize, ssize);
1da177e4
LT
395 if (slot == -1)
396 panic("could not find page to bolt\n");
397 hptep = htab_address + slot;
398
3c726f8d 399 /* Update the HPTE */
12f04f2b 400 hptep->r = cpu_to_be64((be64_to_cpu(hptep->r) &
8550e2fa
AK
401 ~(HPTE_R_PPP | HPTE_R_N)) |
402 (newpp & (HPTE_R_PPP | HPTE_R_N)));
db3d8534
AK
403 /*
404 * Ensure it is out of the tlb too. Bolted entries base and
405 * actual page size will be same.
406 */
407 tlbie(vpn, psize, psize, ssize, 0);
1da177e4
LT
408}
409
5524a27d 410static void native_hpte_invalidate(unsigned long slot, unsigned long vpn,
db3d8534 411 int bpsize, int apsize, int ssize, int local)
1da177e4 412{
8e561e7e 413 struct hash_pte *hptep = htab_address + slot;
96e28449 414 unsigned long hpte_v;
3c726f8d 415 unsigned long want_v;
1da177e4 416 unsigned long flags;
1da177e4
LT
417
418 local_irq_save(flags);
1da177e4 419
5524a27d 420 DBG_LOW(" invalidate(vpn=%016lx, hash: %lx)\n", vpn, slot);
3c726f8d 421
db3d8534 422 want_v = hpte_encode_avpn(vpn, bpsize, ssize);
3c726f8d 423 native_lock_hpte(hptep);
12f04f2b 424 hpte_v = be64_to_cpu(hptep->v);
6b243fcf
PM
425 if (cpu_has_feature(CPU_FTR_ARCH_300))
426 hpte_v = hpte_new_to_old_v(hpte_v, be64_to_cpu(hptep->r));
1da177e4 427
0608d692
AK
428 /*
429 * We need to invalidate the TLB always because hpte_remove doesn't do
430 * a tlb invalidate. If a hash bucket gets full, we "evict" a more/less
431 * random entry from it. When we do that we don't invalidate the TLB
432 * (hpte_remove) because we assume the old translation is still
433 * technically "valid".
434 */
db3d8534 435 if (!HPTE_V_COMPARE(hpte_v, want_v) || !(hpte_v & HPTE_V_VALID))
1da177e4 436 native_unlock_hpte(hptep);
3c726f8d 437 else
1da177e4 438 /* Invalidate the hpte. NOTE: this also unlocks it */
96e28449 439 hptep->v = 0;
1da177e4 440
3c726f8d 441 /* Invalidate the TLB */
db3d8534
AK
442 tlbie(vpn, bpsize, apsize, ssize, local);
443
1da177e4
LT
444 local_irq_restore(flags);
445}
446
e34aa03c 447#ifdef CONFIG_TRANSPARENT_HUGEPAGE
fa1f8ae8
AK
448static void native_hugepage_invalidate(unsigned long vsid,
449 unsigned long addr,
1a527286 450 unsigned char *hpte_slot_array,
d557b098 451 int psize, int ssize, int local)
1a527286 452{
969b7b20 453 int i;
1a527286
AK
454 struct hash_pte *hptep;
455 int actual_psize = MMU_PAGE_16M;
456 unsigned int max_hpte_count, valid;
457 unsigned long flags, s_addr = addr;
458 unsigned long hpte_v, want_v, shift;
fa1f8ae8 459 unsigned long hidx, vpn = 0, hash, slot;
1a527286
AK
460
461 shift = mmu_psize_defs[psize].shift;
462 max_hpte_count = 1U << (PMD_SHIFT - shift);
463
464 local_irq_save(flags);
465 for (i = 0; i < max_hpte_count; i++) {
466 valid = hpte_valid(hpte_slot_array, i);
467 if (!valid)
468 continue;
469 hidx = hpte_hash_index(hpte_slot_array, i);
470
471 /* get the vpn */
472 addr = s_addr + (i * (1ul << shift));
1a527286
AK
473 vpn = hpt_vpn(addr, vsid, ssize);
474 hash = hpt_hash(vpn, shift, ssize);
475 if (hidx & _PTEIDX_SECONDARY)
476 hash = ~hash;
477
478 slot = (hash & htab_hash_mask) * HPTES_PER_GROUP;
479 slot += hidx & _PTEIDX_GROUP_IX;
480
481 hptep = htab_address + slot;
482 want_v = hpte_encode_avpn(vpn, psize, ssize);
483 native_lock_hpte(hptep);
12f04f2b 484 hpte_v = be64_to_cpu(hptep->v);
6b243fcf
PM
485 if (cpu_has_feature(CPU_FTR_ARCH_300))
486 hpte_v = hpte_new_to_old_v(hpte_v, be64_to_cpu(hptep->r));
1a527286
AK
487
488 /* Even if we miss, we need to invalidate the TLB */
489 if (!HPTE_V_COMPARE(hpte_v, want_v) || !(hpte_v & HPTE_V_VALID))
490 native_unlock_hpte(hptep);
491 else
492 /* Invalidate the hpte. NOTE: this also unlocks it */
493 hptep->v = 0;
969b7b20
AK
494 /*
495 * We need to do tlb invalidate for all the address, tlbie
496 * instruction compares entry_VA in tlb with the VA specified
497 * here
498 */
d557b098 499 tlbie(vpn, psize, actual_psize, ssize, local);
1a527286 500 }
1a527286
AK
501 local_irq_restore(flags);
502}
e34aa03c
AK
503#else
504static void native_hugepage_invalidate(unsigned long vsid,
505 unsigned long addr,
506 unsigned char *hpte_slot_array,
507 int psize, int ssize, int local)
508{
509 WARN(1, "%s called without THP support\n", __func__);
510}
511#endif
1a527286 512
8e561e7e 513static void hpte_decode(struct hash_pte *hpte, unsigned long slot,
b1022fbd 514 int *psize, int *apsize, int *ssize, unsigned long *vpn)
71bf08b6 515{
dcda287a 516 unsigned long avpn, pteg, vpi;
12f04f2b
AB
517 unsigned long hpte_v = be64_to_cpu(hpte->v);
518 unsigned long hpte_r = be64_to_cpu(hpte->r);
dcda287a 519 unsigned long vsid, seg_off;
7e74c392
AK
520 int size, a_size, shift;
521 /* Look at the 8 bit LP value */
12f04f2b 522 unsigned int lp = (hpte_r >> LP_SHIFT) & ((1 << LP_BITS) - 1);
71bf08b6 523
6b243fcf
PM
524 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
525 hpte_v = hpte_new_to_old_v(hpte_v, hpte_r);
526 hpte_r = hpte_new_to_old_r(hpte_r);
527 }
b1022fbd
AK
528 if (!(hpte_v & HPTE_V_LARGE)) {
529 size = MMU_PAGE_4K;
530 a_size = MMU_PAGE_4K;
531 } else {
0eeede0c
PM
532 size = hpte_page_sizes[lp] & 0xf;
533 a_size = hpte_page_sizes[lp] >> 4;
71bf08b6 534 }
2454c7e9 535 /* This works for all page sizes, and for 256M and 1T segments */
6b243fcf 536 *ssize = hpte_v >> HPTE_V_SSIZE_SHIFT;
71bf08b6 537 shift = mmu_psize_defs[size].shift;
71bf08b6 538
dcda287a
AK
539 avpn = (HPTE_V_AVPN_VAL(hpte_v) & ~mmu_psize_defs[size].avpnm);
540 pteg = slot / HPTES_PER_GROUP;
541 if (hpte_v & HPTE_V_SECONDARY)
542 pteg = ~pteg;
543
544 switch (*ssize) {
545 case MMU_SEGSIZE_256M:
546 /* We only have 28 - 23 bits of seg_off in avpn */
547 seg_off = (avpn & 0x1f) << 23;
548 vsid = avpn >> 5;
549 /* We can find more bits from the pteg value */
550 if (shift < 23) {
551 vpi = (vsid ^ pteg) & htab_hash_mask;
552 seg_off |= vpi << shift;
553 }
5524a27d 554 *vpn = vsid << (SID_SHIFT - VPN_SHIFT) | seg_off >> VPN_SHIFT;
83383b73 555 break;
dcda287a
AK
556 case MMU_SEGSIZE_1T:
557 /* We only have 40 - 23 bits of seg_off in avpn */
558 seg_off = (avpn & 0x1ffff) << 23;
559 vsid = avpn >> 17;
560 if (shift < 23) {
2454c7e9 561 vpi = (vsid ^ (vsid << 25) ^ pteg) & htab_hash_mask;
dcda287a 562 seg_off |= vpi << shift;
71bf08b6 563 }
5524a27d 564 *vpn = vsid << (SID_SHIFT_1T - VPN_SHIFT) | seg_off >> VPN_SHIFT;
83383b73 565 break;
dcda287a 566 default:
5524a27d 567 *vpn = size = 0;
3c726f8d 568 }
b1022fbd
AK
569 *psize = size;
570 *apsize = a_size;
3c726f8d
BH
571}
572
f4c82d51
S
573/*
574 * clear all mappings on kexec. All cpus are in real mode (or they will
575 * be when they isi), and we are the only one left. We rely on our kernel
576 * mapping being 0xC0's and the hardware ignoring those two real bits.
577 *
fdf880a6
CB
578 * This must be called with interrupts disabled.
579 *
580 * Taking the native_tlbie_lock is unsafe here due to the possibility of
581 * lockdep being on. On pre POWER5 hardware, not taking the lock could
582 * cause deadlock. POWER5 and newer not taking the lock is fine. This only
583 * gets called during boot before secondary CPUs have come up and during
584 * crashdump and all bets are off anyway.
585 *
f4c82d51 586 * TODO: add batching support when enabled. remember, no dynamic memory here,
027dfac6 587 * although there is the control page available...
f4c82d51
S
588 */
589static void native_hpte_clear(void)
590{
5524a27d 591 unsigned long vpn = 0;
fdf880a6 592 unsigned long slot, slots;
8e561e7e 593 struct hash_pte *hptep = htab_address;
5524a27d 594 unsigned long hpte_v;
f4c82d51 595 unsigned long pteg_count;
b1022fbd 596 int psize, apsize, ssize;
f4c82d51
S
597
598 pteg_count = htab_hash_mask + 1;
599
f4c82d51
S
600 slots = pteg_count * HPTES_PER_GROUP;
601
602 for (slot = 0; slot < slots; slot++, hptep++) {
603 /*
604 * we could lock the pte here, but we are the only cpu
605 * running, right? and for crash dump, we probably
606 * don't want to wait for a maybe bad cpu.
607 */
12f04f2b 608 hpte_v = be64_to_cpu(hptep->v);
f4c82d51 609
47f78a49 610 /*
fdf880a6
CB
611 * Call __tlbie() here rather than tlbie() since we can't take the
612 * native_tlbie_lock.
47f78a49 613 */
96e28449 614 if (hpte_v & HPTE_V_VALID) {
b1022fbd 615 hpte_decode(hptep, slot, &psize, &apsize, &ssize, &vpn);
96e28449 616 hptep->v = 0;
b1022fbd 617 __tlbie(vpn, psize, apsize, ssize);
f4c82d51
S
618 }
619 }
620
47f78a49 621 asm volatile("eieio; tlbsync; ptesync":::"memory");
f4c82d51
S
622}
623
3c726f8d
BH
624/*
625 * Batched hash table flush, we batch the tlbie's to avoid taking/releasing
626 * the lock all the time
627 */
61b1a942 628static void native_flush_hash_range(unsigned long number, int local)
1da177e4 629{
5524a27d
AK
630 unsigned long vpn;
631 unsigned long hash, index, hidx, shift, slot;
8e561e7e 632 struct hash_pte *hptep;
96e28449 633 unsigned long hpte_v;
3c726f8d
BH
634 unsigned long want_v;
635 unsigned long flags;
636 real_pte_t pte;
69111bac 637 struct ppc64_tlb_batch *batch = this_cpu_ptr(&ppc64_tlb_batch);
3c726f8d 638 unsigned long psize = batch->psize;
1189be65 639 int ssize = batch->ssize;
3c726f8d 640 int i;
1da177e4
LT
641
642 local_irq_save(flags);
643
1da177e4 644 for (i = 0; i < number; i++) {
5524a27d 645 vpn = batch->vpn[i];
3c726f8d
BH
646 pte = batch->pte[i];
647
5524a27d
AK
648 pte_iterate_hashed_subpages(pte, psize, vpn, index, shift) {
649 hash = hpt_hash(vpn, shift, ssize);
3c726f8d
BH
650 hidx = __rpte_to_hidx(pte, index);
651 if (hidx & _PTEIDX_SECONDARY)
652 hash = ~hash;
653 slot = (hash & htab_hash_mask) * HPTES_PER_GROUP;
654 slot += hidx & _PTEIDX_GROUP_IX;
655 hptep = htab_address + slot;
74f227b2 656 want_v = hpte_encode_avpn(vpn, psize, ssize);
3c726f8d 657 native_lock_hpte(hptep);
12f04f2b 658 hpte_v = be64_to_cpu(hptep->v);
6b243fcf
PM
659 if (cpu_has_feature(CPU_FTR_ARCH_300))
660 hpte_v = hpte_new_to_old_v(hpte_v,
661 be64_to_cpu(hptep->r));
3c726f8d
BH
662 if (!HPTE_V_COMPARE(hpte_v, want_v) ||
663 !(hpte_v & HPTE_V_VALID))
664 native_unlock_hpte(hptep);
665 else
666 hptep->v = 0;
667 } pte_iterate_hashed_end();
1da177e4
LT
668 }
669
44ae3ab3 670 if (mmu_has_feature(MMU_FTR_TLBIEL) &&
3c726f8d 671 mmu_psize_defs[psize].tlbiel && local) {
1da177e4 672 asm volatile("ptesync":::"memory");
3c726f8d 673 for (i = 0; i < number; i++) {
5524a27d 674 vpn = batch->vpn[i];
3c726f8d
BH
675 pte = batch->pte[i];
676
5524a27d
AK
677 pte_iterate_hashed_subpages(pte, psize,
678 vpn, index, shift) {
b1022fbd 679 __tlbiel(vpn, psize, psize, ssize);
3c726f8d
BH
680 } pte_iterate_hashed_end();
681 }
1da177e4
LT
682 asm volatile("ptesync":::"memory");
683 } else {
44ae3ab3 684 int lock_tlbie = !mmu_has_feature(MMU_FTR_LOCKLESS_TLBIE);
1da177e4
LT
685
686 if (lock_tlbie)
6b9c9b8a 687 raw_spin_lock(&native_tlbie_lock);
1da177e4
LT
688
689 asm volatile("ptesync":::"memory");
3c726f8d 690 for (i = 0; i < number; i++) {
5524a27d 691 vpn = batch->vpn[i];
3c726f8d
BH
692 pte = batch->pte[i];
693
5524a27d
AK
694 pte_iterate_hashed_subpages(pte, psize,
695 vpn, index, shift) {
b1022fbd 696 __tlbie(vpn, psize, psize, ssize);
3c726f8d
BH
697 } pte_iterate_hashed_end();
698 }
1da177e4
LT
699 asm volatile("eieio; tlbsync; ptesync":::"memory");
700
701 if (lock_tlbie)
6b9c9b8a 702 raw_spin_unlock(&native_tlbie_lock);
1da177e4
LT
703 }
704
705 local_irq_restore(flags);
706}
707
83209bc8
AK
708static int native_register_proc_table(unsigned long base, unsigned long page_size,
709 unsigned long table_size)
50de596d 710{
83209bc8
AK
711 unsigned long patb1 = base << 25; /* VSID */
712
713 patb1 |= (page_size << 5); /* sllp */
714 patb1 |= table_size;
715
50de596d
AK
716 partition_tb->patb1 = cpu_to_be64(patb1);
717 return 0;
718}
719
7d0daae4 720void __init hpte_init_native(void)
1da177e4 721{
7025776e
BH
722 mmu_hash_ops.hpte_invalidate = native_hpte_invalidate;
723 mmu_hash_ops.hpte_updatepp = native_hpte_updatepp;
724 mmu_hash_ops.hpte_updateboltedpp = native_hpte_updateboltedpp;
725 mmu_hash_ops.hpte_insert = native_hpte_insert;
726 mmu_hash_ops.hpte_remove = native_hpte_remove;
727 mmu_hash_ops.hpte_clear_all = native_hpte_clear;
728 mmu_hash_ops.flush_hash_range = native_flush_hash_range;
729 mmu_hash_ops.hugepage_invalidate = native_hugepage_invalidate;
50de596d
AK
730
731 if (cpu_has_feature(CPU_FTR_ARCH_300))
eea8148c 732 register_process_table = native_register_proc_table;
1da177e4 733}