2 * native hashtable management.
4 * SMP scalability work:
5 * Copyright (C) 2001 Anton Blanchard <anton@au.ibm.com>, IBM
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.
15 #include <linux/spinlock.h>
16 #include <linux/bitops.h>
17 #include <linux/threads.h>
18 #include <linux/smp.h>
20 #include <asm/abs_addr.h>
21 #include <asm/machdep.h>
23 #include <asm/mmu_context.h>
24 #include <asm/pgtable.h>
25 #include <asm/tlbflush.h>
27 #include <asm/cputable.h>
31 #define DBG_LOW(fmt...) udbg_printf(fmt)
33 #define DBG_LOW(fmt...)
36 #define HPTE_LOCK_BIT 3
38 static DEFINE_SPINLOCK(native_tlbie_lock
);
40 static inline void __tlbie(unsigned long va
, unsigned int psize
)
44 /* clear top 16 bits, non SLS segment */
45 va
&= ~(0xffffULL
<< 48);
50 asm volatile("tlbie %0,0" : : "r" (va
) : "memory");
53 penc
= mmu_psize_defs
[psize
].penc
;
54 va
&= ~((1ul << mmu_psize_defs
[psize
].shift
) - 1);
56 asm volatile("tlbie %0,1" : : "r" (va
) : "memory");
61 static inline void __tlbiel(unsigned long va
, unsigned int psize
)
65 /* clear top 16 bits, non SLS segment */
66 va
&= ~(0xffffULL
<< 48);
71 asm volatile(".long 0x7c000224 | (%0 << 11) | (0 << 21)"
72 : : "r"(va
) : "memory");
75 penc
= mmu_psize_defs
[psize
].penc
;
76 va
&= ~((1ul << mmu_psize_defs
[psize
].shift
) - 1);
78 asm volatile(".long 0x7c000224 | (%0 << 11) | (1 << 21)"
79 : : "r"(va
) : "memory");
85 static inline void tlbie(unsigned long va
, int psize
, int local
)
87 unsigned int use_local
= local
&& cpu_has_feature(CPU_FTR_TLBIEL
);
88 int lock_tlbie
= !cpu_has_feature(CPU_FTR_LOCKLESS_TLBIE
);
91 use_local
= mmu_psize_defs
[psize
].tlbiel
;
92 if (lock_tlbie
&& !use_local
)
93 spin_lock(&native_tlbie_lock
);
94 asm volatile("ptesync": : :"memory");
97 asm volatile("ptesync": : :"memory");
100 asm volatile("eieio; tlbsync; ptesync": : :"memory");
102 if (lock_tlbie
&& !use_local
)
103 spin_unlock(&native_tlbie_lock
);
106 static inline void native_lock_hpte(hpte_t
*hptep
)
108 unsigned long *word
= &hptep
->v
;
111 if (!test_and_set_bit(HPTE_LOCK_BIT
, word
))
113 while(test_bit(HPTE_LOCK_BIT
, word
))
118 static inline void native_unlock_hpte(hpte_t
*hptep
)
120 unsigned long *word
= &hptep
->v
;
122 asm volatile("lwsync":::"memory");
123 clear_bit(HPTE_LOCK_BIT
, word
);
126 long native_hpte_insert(unsigned long hpte_group
, unsigned long va
,
127 unsigned long pa
, unsigned long rflags
,
128 unsigned long vflags
, int psize
)
130 hpte_t
*hptep
= htab_address
+ hpte_group
;
131 unsigned long hpte_v
, hpte_r
;
134 if (!(vflags
& HPTE_V_BOLTED
)) {
135 DBG_LOW(" insert(group=%lx, va=%016lx, pa=%016lx,"
136 " rflags=%lx, vflags=%lx, psize=%d)\n",
137 hpte_group
, va
, pa
, rflags
, vflags
, psize
);
140 for (i
= 0; i
< HPTES_PER_GROUP
; i
++) {
141 if (! (hptep
->v
& HPTE_V_VALID
)) {
142 /* retry with lock held */
143 native_lock_hpte(hptep
);
144 if (! (hptep
->v
& HPTE_V_VALID
))
146 native_unlock_hpte(hptep
);
152 if (i
== HPTES_PER_GROUP
)
155 hpte_v
= hpte_encode_v(va
, psize
) | vflags
| HPTE_V_VALID
;
156 hpte_r
= hpte_encode_r(pa
, psize
) | rflags
;
158 if (!(vflags
& HPTE_V_BOLTED
)) {
159 DBG_LOW(" i=%x hpte_v=%016lx, hpte_r=%016lx\n",
164 /* Guarantee the second dword is visible before the valid bit */
165 __asm__
__volatile__ ("eieio" : : : "memory");
167 * Now set the first dword including the valid bit
168 * NOTE: this also unlocks the hpte
172 __asm__
__volatile__ ("ptesync" : : : "memory");
174 return i
| (!!(vflags
& HPTE_V_SECONDARY
) << 3);
177 static long native_hpte_remove(unsigned long hpte_group
)
182 unsigned long hpte_v
;
184 DBG_LOW(" remove(group=%lx)\n", hpte_group
);
186 /* pick a random entry to start at */
187 slot_offset
= mftb() & 0x7;
189 for (i
= 0; i
< HPTES_PER_GROUP
; i
++) {
190 hptep
= htab_address
+ hpte_group
+ slot_offset
;
193 if ((hpte_v
& HPTE_V_VALID
) && !(hpte_v
& HPTE_V_BOLTED
)) {
194 /* retry with lock held */
195 native_lock_hpte(hptep
);
197 if ((hpte_v
& HPTE_V_VALID
)
198 && !(hpte_v
& HPTE_V_BOLTED
))
200 native_unlock_hpte(hptep
);
207 if (i
== HPTES_PER_GROUP
)
210 /* Invalidate the hpte. NOTE: this also unlocks it */
216 static long native_hpte_updatepp(unsigned long slot
, unsigned long newpp
,
217 unsigned long va
, int psize
, int local
)
219 hpte_t
*hptep
= htab_address
+ slot
;
220 unsigned long hpte_v
, want_v
;
223 want_v
= hpte_encode_v(va
, psize
);
225 DBG_LOW(" update(va=%016lx, avpnv=%016lx, hash=%016lx, newpp=%x)",
226 va
, want_v
& HPTE_V_AVPN
, slot
, newpp
);
228 native_lock_hpte(hptep
);
232 /* Even if we miss, we need to invalidate the TLB */
233 if (!HPTE_V_COMPARE(hpte_v
, want_v
) || !(hpte_v
& HPTE_V_VALID
)) {
234 DBG_LOW(" -> miss\n");
235 native_unlock_hpte(hptep
);
238 DBG_LOW(" -> hit\n");
239 /* Update the HPTE */
240 hptep
->r
= (hptep
->r
& ~(HPTE_R_PP
| HPTE_R_N
)) |
241 (newpp
& (HPTE_R_PP
| HPTE_R_N
| HPTE_R_C
));
242 native_unlock_hpte(hptep
);
245 /* Ensure it is out of the tlb too. */
246 tlbie(va
, psize
, local
);
251 static long native_hpte_find(unsigned long va
, int psize
)
257 unsigned long want_v
, hpte_v
;
259 hash
= hpt_hash(va
, mmu_psize_defs
[psize
].shift
);
260 want_v
= hpte_encode_v(va
, psize
);
262 for (j
= 0; j
< 2; j
++) {
263 slot
= (hash
& htab_hash_mask
) * HPTES_PER_GROUP
;
264 for (i
= 0; i
< HPTES_PER_GROUP
; i
++) {
265 hptep
= htab_address
+ slot
;
268 if (HPTE_V_COMPARE(hpte_v
, want_v
)
269 && (hpte_v
& HPTE_V_VALID
)
270 && ( !!(hpte_v
& HPTE_V_SECONDARY
) == j
)) {
285 * Update the page protection bits. Intended to be used to create
286 * guard pages for kernel data structures on pages which are bolted
287 * in the HPT. Assumes pages being operated on will not be stolen.
289 * No need to lock here because we should be the only user.
291 static void native_hpte_updateboltedpp(unsigned long newpp
, unsigned long ea
,
294 unsigned long vsid
, va
;
298 vsid
= get_kernel_vsid(ea
);
299 va
= (vsid
<< 28) | (ea
& 0x0fffffff);
301 slot
= native_hpte_find(va
, psize
);
303 panic("could not find page to bolt\n");
304 hptep
= htab_address
+ slot
;
306 /* Update the HPTE */
307 hptep
->r
= (hptep
->r
& ~(HPTE_R_PP
| HPTE_R_N
)) |
308 (newpp
& (HPTE_R_PP
| HPTE_R_N
));
310 /* Ensure it is out of the tlb too. */
314 static void native_hpte_invalidate(unsigned long slot
, unsigned long va
,
315 int psize
, int local
)
317 hpte_t
*hptep
= htab_address
+ slot
;
318 unsigned long hpte_v
;
319 unsigned long want_v
;
322 local_irq_save(flags
);
324 DBG_LOW(" invalidate(va=%016lx, hash: %x)\n", va
, slot
);
326 want_v
= hpte_encode_v(va
, psize
);
327 native_lock_hpte(hptep
);
330 /* Even if we miss, we need to invalidate the TLB */
331 if (!HPTE_V_COMPARE(hpte_v
, want_v
) || !(hpte_v
& HPTE_V_VALID
))
332 native_unlock_hpte(hptep
);
334 /* Invalidate the hpte. NOTE: this also unlocks it */
337 /* Invalidate the TLB */
338 tlbie(va
, psize
, local
);
340 local_irq_restore(flags
);
344 * XXX This need fixing based on page size. It's only used by
345 * native_hpte_clear() for now which needs fixing too so they
346 * make a good pair...
348 static unsigned long slot2va(unsigned long hpte_v
, unsigned long slot
)
350 unsigned long avpn
= HPTE_V_AVPN_VAL(hpte_v
);
355 if (! (hpte_v
& HPTE_V_LARGE
)) {
356 unsigned long vpi
, pteg
;
358 pteg
= slot
/ HPTES_PER_GROUP
;
359 if (hpte_v
& HPTE_V_SECONDARY
)
362 vpi
= ((va
>> 28) ^ pteg
) & htab_hash_mask
;
364 va
|= vpi
<< PAGE_SHIFT
;
371 * clear all mappings on kexec. All cpus are in real mode (or they will
372 * be when they isi), and we are the only one left. We rely on our kernel
373 * mapping being 0xC0's and the hardware ignoring those two real bits.
375 * TODO: add batching support when enabled. remember, no dynamic memory here,
376 * athough there is the control page available...
378 * XXX FIXME: 4k only for now !
380 static void native_hpte_clear(void)
382 unsigned long slot
, slots
, flags
;
383 hpte_t
*hptep
= htab_address
;
384 unsigned long hpte_v
;
385 unsigned long pteg_count
;
387 pteg_count
= htab_hash_mask
+ 1;
389 local_irq_save(flags
);
391 /* we take the tlbie lock and hold it. Some hardware will
392 * deadlock if we try to tlbie from two processors at once.
394 spin_lock(&native_tlbie_lock
);
396 slots
= pteg_count
* HPTES_PER_GROUP
;
398 for (slot
= 0; slot
< slots
; slot
++, hptep
++) {
400 * we could lock the pte here, but we are the only cpu
401 * running, right? and for crash dump, we probably
402 * don't want to wait for a maybe bad cpu.
407 * Call __tlbie() here rather than tlbie() since we
408 * already hold the native_tlbie_lock.
410 if (hpte_v
& HPTE_V_VALID
) {
412 __tlbie(slot2va(hpte_v
, slot
), MMU_PAGE_4K
);
416 asm volatile("eieio; tlbsync; ptesync":::"memory");
417 spin_unlock(&native_tlbie_lock
);
418 local_irq_restore(flags
);
422 * Batched hash table flush, we batch the tlbie's to avoid taking/releasing
423 * the lock all the time
425 static void native_flush_hash_range(unsigned long number
, int local
)
427 unsigned long va
, hash
, index
, hidx
, shift
, slot
;
429 unsigned long hpte_v
;
430 unsigned long want_v
;
433 struct ppc64_tlb_batch
*batch
= &__get_cpu_var(ppc64_tlb_batch
);
434 unsigned long psize
= batch
->psize
;
437 local_irq_save(flags
);
439 for (i
= 0; i
< number
; i
++) {
440 va
= batch
->vaddr
[i
];
443 pte_iterate_hashed_subpages(pte
, psize
, va
, index
, shift
) {
444 hash
= hpt_hash(va
, shift
);
445 hidx
= __rpte_to_hidx(pte
, index
);
446 if (hidx
& _PTEIDX_SECONDARY
)
448 slot
= (hash
& htab_hash_mask
) * HPTES_PER_GROUP
;
449 slot
+= hidx
& _PTEIDX_GROUP_IX
;
450 hptep
= htab_address
+ slot
;
451 want_v
= hpte_encode_v(va
, psize
);
452 native_lock_hpte(hptep
);
454 if (!HPTE_V_COMPARE(hpte_v
, want_v
) ||
455 !(hpte_v
& HPTE_V_VALID
))
456 native_unlock_hpte(hptep
);
459 } pte_iterate_hashed_end();
462 if (cpu_has_feature(CPU_FTR_TLBIEL
) &&
463 mmu_psize_defs
[psize
].tlbiel
&& local
) {
464 asm volatile("ptesync":::"memory");
465 for (i
= 0; i
< number
; i
++) {
466 va
= batch
->vaddr
[i
];
469 pte_iterate_hashed_subpages(pte
, psize
, va
, index
,
472 } pte_iterate_hashed_end();
474 asm volatile("ptesync":::"memory");
476 int lock_tlbie
= !cpu_has_feature(CPU_FTR_LOCKLESS_TLBIE
);
479 spin_lock(&native_tlbie_lock
);
481 asm volatile("ptesync":::"memory");
482 for (i
= 0; i
< number
; i
++) {
483 va
= batch
->vaddr
[i
];
486 pte_iterate_hashed_subpages(pte
, psize
, va
, index
,
489 } pte_iterate_hashed_end();
491 asm volatile("eieio; tlbsync; ptesync":::"memory");
494 spin_unlock(&native_tlbie_lock
);
497 local_irq_restore(flags
);
500 #ifdef CONFIG_PPC_PSERIES
501 /* Disable TLB batching on nighthawk */
502 static inline int tlb_batching_enabled(void)
504 struct device_node
*root
= of_find_node_by_path("/");
508 const char *model
= get_property(root
, "model", NULL
);
509 if (model
&& !strcmp(model
, "IBM,9076-N81"))
517 static inline int tlb_batching_enabled(void)
523 void __init
hpte_init_native(void)
525 ppc_md
.hpte_invalidate
= native_hpte_invalidate
;
526 ppc_md
.hpte_updatepp
= native_hpte_updatepp
;
527 ppc_md
.hpte_updateboltedpp
= native_hpte_updateboltedpp
;
528 ppc_md
.hpte_insert
= native_hpte_insert
;
529 ppc_md
.hpte_remove
= native_hpte_remove
;
530 ppc_md
.hpte_clear_all
= native_hpte_clear
;
531 if (tlb_batching_enabled())
532 ppc_md
.flush_hash_range
= native_flush_hash_range
;