1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * TLB flush routines for radix kernels.
5 * Copyright 2015-2016, Aneesh Kumar K.V, IBM Corporation.
9 #include <linux/hugetlb.h>
10 #include <linux/memblock.h>
11 #include <linux/mmu_context.h>
12 #include <linux/sched/mm.h>
14 #include <asm/ppc-opcode.h>
16 #include <asm/tlbflush.h>
17 #include <asm/trace.h>
18 #include <asm/cputhreads.h>
20 #define RIC_FLUSH_TLB 0
21 #define RIC_FLUSH_PWC 1
22 #define RIC_FLUSH_ALL 2
25 * tlbiel instruction for radix, set invalidation
26 * i.e., r=1 and is=01 or is=10 or is=11
28 static __always_inline void tlbiel_radix_set_isa300(unsigned int set, unsigned int is,
30 unsigned int ric, unsigned int prs)
35 rb = (set << PPC_BITLSHIFT(51)) | (is << PPC_BITLSHIFT(53));
36 rs = ((unsigned long)pid << PPC_BITLSHIFT(31));
38 asm volatile(PPC_TLBIEL(%0, %1, %2, %3, 1)
39 : : "r"(rb), "r"(rs), "i"(ric), "i"(prs)
43 static void tlbiel_all_isa300(unsigned int num_sets, unsigned int is)
47 asm volatile("ptesync": : :"memory");
50 * Flush the first set of the TLB, and the entire Page Walk Cache
51 * and partition table entries. Then flush the remaining sets of the
55 if (early_cpu_has_feature(CPU_FTR_HVMODE)) {
56 /* MSR[HV] should flush partition scope translations first. */
57 tlbiel_radix_set_isa300(0, is, 0, RIC_FLUSH_ALL, 0);
58 for (set = 1; set < num_sets; set++)
59 tlbiel_radix_set_isa300(set, is, 0, RIC_FLUSH_TLB, 0);
62 /* Flush process scoped entries. */
63 tlbiel_radix_set_isa300(0, is, 0, RIC_FLUSH_ALL, 1);
64 for (set = 1; set < num_sets; set++)
65 tlbiel_radix_set_isa300(set, is, 0, RIC_FLUSH_TLB, 1);
67 asm volatile("ptesync": : :"memory");
70 void radix__tlbiel_all(unsigned int action)
75 case TLB_INVAL_SCOPE_GLOBAL:
78 case TLB_INVAL_SCOPE_LPID:
85 if (early_cpu_has_feature(CPU_FTR_ARCH_300))
86 tlbiel_all_isa300(POWER9_TLB_SETS_RADIX, is);
88 WARN(1, "%s called on pre-POWER9 CPU\n", __func__);
90 asm volatile(PPC_ISA_3_0_INVALIDATE_ERAT "; isync" : : :"memory");
93 static __always_inline void __tlbiel_pid(unsigned long pid, int set,
96 unsigned long rb,rs,prs,r;
98 rb = PPC_BIT(53); /* IS = 1 */
99 rb |= set << PPC_BITLSHIFT(51);
100 rs = ((unsigned long)pid) << PPC_BITLSHIFT(31);
101 prs = 1; /* process scoped */
102 r = 1; /* radix format */
104 asm volatile(PPC_TLBIEL(%0, %4, %3, %2, %1)
105 : : "r"(rb), "i"(r), "i"(prs), "i"(ric), "r"(rs) : "memory");
106 trace_tlbie(0, 1, rb, rs, ric, prs, r);
109 static __always_inline void __tlbie_pid(unsigned long pid, unsigned long ric)
111 unsigned long rb,rs,prs,r;
113 rb = PPC_BIT(53); /* IS = 1 */
114 rs = pid << PPC_BITLSHIFT(31);
115 prs = 1; /* process scoped */
116 r = 1; /* radix format */
118 asm volatile(PPC_TLBIE_5(%0, %4, %3, %2, %1)
119 : : "r"(rb), "i"(r), "i"(prs), "i"(ric), "r"(rs) : "memory");
120 trace_tlbie(0, 0, rb, rs, ric, prs, r);
123 static __always_inline void __tlbie_lpid(unsigned long lpid, unsigned long ric)
125 unsigned long rb,rs,prs,r;
127 rb = PPC_BIT(52); /* IS = 2 */
129 prs = 0; /* partition scoped */
130 r = 1; /* radix format */
132 asm volatile(PPC_TLBIE_5(%0, %4, %3, %2, %1)
133 : : "r"(rb), "i"(r), "i"(prs), "i"(ric), "r"(rs) : "memory");
134 trace_tlbie(lpid, 0, rb, rs, ric, prs, r);
137 static __always_inline void __tlbie_lpid_guest(unsigned long lpid, unsigned long ric)
139 unsigned long rb,rs,prs,r;
141 rb = PPC_BIT(52); /* IS = 2 */
143 prs = 1; /* process scoped */
144 r = 1; /* radix format */
146 asm volatile(PPC_TLBIE_5(%0, %4, %3, %2, %1)
147 : : "r"(rb), "i"(r), "i"(prs), "i"(ric), "r"(rs) : "memory");
148 trace_tlbie(lpid, 0, rb, rs, ric, prs, r);
151 static __always_inline void __tlbiel_va(unsigned long va, unsigned long pid,
152 unsigned long ap, unsigned long ric)
154 unsigned long rb,rs,prs,r;
156 rb = va & ~(PPC_BITMASK(52, 63));
157 rb |= ap << PPC_BITLSHIFT(58);
158 rs = pid << PPC_BITLSHIFT(31);
159 prs = 1; /* process scoped */
160 r = 1; /* radix format */
162 asm volatile(PPC_TLBIEL(%0, %4, %3, %2, %1)
163 : : "r"(rb), "i"(r), "i"(prs), "i"(ric), "r"(rs) : "memory");
164 trace_tlbie(0, 1, rb, rs, ric, prs, r);
167 static __always_inline void __tlbie_va(unsigned long va, unsigned long pid,
168 unsigned long ap, unsigned long ric)
170 unsigned long rb,rs,prs,r;
172 rb = va & ~(PPC_BITMASK(52, 63));
173 rb |= ap << PPC_BITLSHIFT(58);
174 rs = pid << PPC_BITLSHIFT(31);
175 prs = 1; /* process scoped */
176 r = 1; /* radix format */
178 asm volatile(PPC_TLBIE_5(%0, %4, %3, %2, %1)
179 : : "r"(rb), "i"(r), "i"(prs), "i"(ric), "r"(rs) : "memory");
180 trace_tlbie(0, 0, rb, rs, ric, prs, r);
183 static __always_inline void __tlbie_lpid_va(unsigned long va, unsigned long lpid,
184 unsigned long ap, unsigned long ric)
186 unsigned long rb,rs,prs,r;
188 rb = va & ~(PPC_BITMASK(52, 63));
189 rb |= ap << PPC_BITLSHIFT(58);
191 prs = 0; /* partition scoped */
192 r = 1; /* radix format */
194 asm volatile(PPC_TLBIE_5(%0, %4, %3, %2, %1)
195 : : "r"(rb), "i"(r), "i"(prs), "i"(ric), "r"(rs) : "memory");
196 trace_tlbie(lpid, 0, rb, rs, ric, prs, r);
200 static inline void fixup_tlbie_va(unsigned long va, unsigned long pid,
203 if (cpu_has_feature(CPU_FTR_P9_TLBIE_ERAT_BUG)) {
204 asm volatile("ptesync": : :"memory");
205 __tlbie_va(va, 0, ap, RIC_FLUSH_TLB);
208 if (cpu_has_feature(CPU_FTR_P9_TLBIE_STQ_BUG)) {
209 asm volatile("ptesync": : :"memory");
210 __tlbie_va(va, pid, ap, RIC_FLUSH_TLB);
214 static inline void fixup_tlbie_va_range(unsigned long va, unsigned long pid,
217 if (cpu_has_feature(CPU_FTR_P9_TLBIE_ERAT_BUG)) {
218 asm volatile("ptesync": : :"memory");
219 __tlbie_pid(0, RIC_FLUSH_TLB);
222 if (cpu_has_feature(CPU_FTR_P9_TLBIE_STQ_BUG)) {
223 asm volatile("ptesync": : :"memory");
224 __tlbie_va(va, pid, ap, RIC_FLUSH_TLB);
228 static inline void fixup_tlbie_pid(unsigned long pid)
231 * We can use any address for the invalidation, pick one which is
232 * probably unused as an optimisation.
234 unsigned long va = ((1UL << 52) - 1);
236 if (cpu_has_feature(CPU_FTR_P9_TLBIE_ERAT_BUG)) {
237 asm volatile("ptesync": : :"memory");
238 __tlbie_pid(0, RIC_FLUSH_TLB);
241 if (cpu_has_feature(CPU_FTR_P9_TLBIE_STQ_BUG)) {
242 asm volatile("ptesync": : :"memory");
243 __tlbie_va(va, pid, mmu_get_ap(MMU_PAGE_64K), RIC_FLUSH_TLB);
248 static inline void fixup_tlbie_lpid_va(unsigned long va, unsigned long lpid,
251 if (cpu_has_feature(CPU_FTR_P9_TLBIE_ERAT_BUG)) {
252 asm volatile("ptesync": : :"memory");
253 __tlbie_lpid_va(va, 0, ap, RIC_FLUSH_TLB);
256 if (cpu_has_feature(CPU_FTR_P9_TLBIE_STQ_BUG)) {
257 asm volatile("ptesync": : :"memory");
258 __tlbie_lpid_va(va, lpid, ap, RIC_FLUSH_TLB);
262 static inline void fixup_tlbie_lpid(unsigned long lpid)
265 * We can use any address for the invalidation, pick one which is
266 * probably unused as an optimisation.
268 unsigned long va = ((1UL << 52) - 1);
270 if (cpu_has_feature(CPU_FTR_P9_TLBIE_ERAT_BUG)) {
271 asm volatile("ptesync": : :"memory");
272 __tlbie_lpid(0, RIC_FLUSH_TLB);
275 if (cpu_has_feature(CPU_FTR_P9_TLBIE_STQ_BUG)) {
276 asm volatile("ptesync": : :"memory");
277 __tlbie_lpid_va(va, lpid, mmu_get_ap(MMU_PAGE_64K), RIC_FLUSH_TLB);
282 * We use 128 set in radix mode and 256 set in hpt mode.
284 static __always_inline void _tlbiel_pid(unsigned long pid, unsigned long ric)
288 asm volatile("ptesync": : :"memory");
291 * Flush the first set of the TLB, and if we're doing a RIC_FLUSH_ALL,
292 * also flush the entire Page Walk Cache.
294 __tlbiel_pid(pid, 0, ric);
296 /* For PWC, only one flush is needed */
297 if (ric == RIC_FLUSH_PWC) {
298 asm volatile("ptesync": : :"memory");
302 /* For the remaining sets, just flush the TLB */
303 for (set = 1; set < POWER9_TLB_SETS_RADIX ; set++)
304 __tlbiel_pid(pid, set, RIC_FLUSH_TLB);
306 asm volatile("ptesync": : :"memory");
307 asm volatile(PPC_RADIX_INVALIDATE_ERAT_USER "; isync" : : :"memory");
310 static inline void _tlbie_pid(unsigned long pid, unsigned long ric)
312 asm volatile("ptesync": : :"memory");
315 * Workaround the fact that the "ric" argument to __tlbie_pid
316 * must be a compile-time contraint to match the "i" constraint
317 * in the asm statement.
321 __tlbie_pid(pid, RIC_FLUSH_TLB);
322 fixup_tlbie_pid(pid);
325 __tlbie_pid(pid, RIC_FLUSH_PWC);
329 __tlbie_pid(pid, RIC_FLUSH_ALL);
330 fixup_tlbie_pid(pid);
332 asm volatile("eieio; tlbsync; ptesync": : :"memory");
340 static void do_tlbiel_pid(void *info)
342 struct tlbiel_pid *t = info;
344 if (t->ric == RIC_FLUSH_TLB)
345 _tlbiel_pid(t->pid, RIC_FLUSH_TLB);
346 else if (t->ric == RIC_FLUSH_PWC)
347 _tlbiel_pid(t->pid, RIC_FLUSH_PWC);
349 _tlbiel_pid(t->pid, RIC_FLUSH_ALL);
352 static inline void _tlbiel_pid_multicast(struct mm_struct *mm,
353 unsigned long pid, unsigned long ric)
355 struct cpumask *cpus = mm_cpumask(mm);
356 struct tlbiel_pid t = { .pid = pid, .ric = ric };
358 on_each_cpu_mask(cpus, do_tlbiel_pid, &t, 1);
360 * Always want the CPU translations to be invalidated with tlbiel in
361 * these paths, so while coprocessors must use tlbie, we can not
362 * optimise away the tlbiel component.
364 if (atomic_read(&mm->context.copros) > 0)
365 _tlbie_pid(pid, RIC_FLUSH_ALL);
368 static inline void _tlbie_lpid(unsigned long lpid, unsigned long ric)
370 asm volatile("ptesync": : :"memory");
373 * Workaround the fact that the "ric" argument to __tlbie_pid
374 * must be a compile-time contraint to match the "i" constraint
375 * in the asm statement.
379 __tlbie_lpid(lpid, RIC_FLUSH_TLB);
380 fixup_tlbie_lpid(lpid);
383 __tlbie_lpid(lpid, RIC_FLUSH_PWC);
387 __tlbie_lpid(lpid, RIC_FLUSH_ALL);
388 fixup_tlbie_lpid(lpid);
390 asm volatile("eieio; tlbsync; ptesync": : :"memory");
393 static __always_inline void _tlbie_lpid_guest(unsigned long lpid, unsigned long ric)
396 * Workaround the fact that the "ric" argument to __tlbie_pid
397 * must be a compile-time contraint to match the "i" constraint
398 * in the asm statement.
402 __tlbie_lpid_guest(lpid, RIC_FLUSH_TLB);
405 __tlbie_lpid_guest(lpid, RIC_FLUSH_PWC);
409 __tlbie_lpid_guest(lpid, RIC_FLUSH_ALL);
411 fixup_tlbie_lpid(lpid);
412 asm volatile("eieio; tlbsync; ptesync": : :"memory");
415 static inline void __tlbiel_va_range(unsigned long start, unsigned long end,
416 unsigned long pid, unsigned long page_size,
420 unsigned long ap = mmu_get_ap(psize);
422 for (addr = start; addr < end; addr += page_size)
423 __tlbiel_va(addr, pid, ap, RIC_FLUSH_TLB);
426 static __always_inline void _tlbiel_va(unsigned long va, unsigned long pid,
427 unsigned long psize, unsigned long ric)
429 unsigned long ap = mmu_get_ap(psize);
431 asm volatile("ptesync": : :"memory");
432 __tlbiel_va(va, pid, ap, ric);
433 asm volatile("ptesync": : :"memory");
436 static inline void _tlbiel_va_range(unsigned long start, unsigned long end,
437 unsigned long pid, unsigned long page_size,
438 unsigned long psize, bool also_pwc)
440 asm volatile("ptesync": : :"memory");
442 __tlbiel_pid(pid, 0, RIC_FLUSH_PWC);
443 __tlbiel_va_range(start, end, pid, page_size, psize);
444 asm volatile("ptesync": : :"memory");
447 static inline void __tlbie_va_range(unsigned long start, unsigned long end,
448 unsigned long pid, unsigned long page_size,
452 unsigned long ap = mmu_get_ap(psize);
454 for (addr = start; addr < end; addr += page_size)
455 __tlbie_va(addr, pid, ap, RIC_FLUSH_TLB);
457 fixup_tlbie_va_range(addr - page_size, pid, ap);
460 static __always_inline void _tlbie_va(unsigned long va, unsigned long pid,
461 unsigned long psize, unsigned long ric)
463 unsigned long ap = mmu_get_ap(psize);
465 asm volatile("ptesync": : :"memory");
466 __tlbie_va(va, pid, ap, ric);
467 fixup_tlbie_va(va, pid, ap);
468 asm volatile("eieio; tlbsync; ptesync": : :"memory");
478 static void do_tlbiel_va(void *info)
480 struct tlbiel_va *t = info;
482 if (t->ric == RIC_FLUSH_TLB)
483 _tlbiel_va(t->va, t->pid, t->psize, RIC_FLUSH_TLB);
484 else if (t->ric == RIC_FLUSH_PWC)
485 _tlbiel_va(t->va, t->pid, t->psize, RIC_FLUSH_PWC);
487 _tlbiel_va(t->va, t->pid, t->psize, RIC_FLUSH_ALL);
490 static inline void _tlbiel_va_multicast(struct mm_struct *mm,
491 unsigned long va, unsigned long pid,
492 unsigned long psize, unsigned long ric)
494 struct cpumask *cpus = mm_cpumask(mm);
495 struct tlbiel_va t = { .va = va, .pid = pid, .psize = psize, .ric = ric };
496 on_each_cpu_mask(cpus, do_tlbiel_va, &t, 1);
497 if (atomic_read(&mm->context.copros) > 0)
498 _tlbie_va(va, pid, psize, RIC_FLUSH_TLB);
501 struct tlbiel_va_range {
505 unsigned long page_size;
510 static void do_tlbiel_va_range(void *info)
512 struct tlbiel_va_range *t = info;
514 _tlbiel_va_range(t->start, t->end, t->pid, t->page_size,
515 t->psize, t->also_pwc);
518 static __always_inline void _tlbie_lpid_va(unsigned long va, unsigned long lpid,
519 unsigned long psize, unsigned long ric)
521 unsigned long ap = mmu_get_ap(psize);
523 asm volatile("ptesync": : :"memory");
524 __tlbie_lpid_va(va, lpid, ap, ric);
525 fixup_tlbie_lpid_va(va, lpid, ap);
526 asm volatile("eieio; tlbsync; ptesync": : :"memory");
529 static inline void _tlbie_va_range(unsigned long start, unsigned long end,
530 unsigned long pid, unsigned long page_size,
531 unsigned long psize, bool also_pwc)
533 asm volatile("ptesync": : :"memory");
535 __tlbie_pid(pid, RIC_FLUSH_PWC);
536 __tlbie_va_range(start, end, pid, page_size, psize);
537 asm volatile("eieio; tlbsync; ptesync": : :"memory");
540 static inline void _tlbiel_va_range_multicast(struct mm_struct *mm,
541 unsigned long start, unsigned long end,
542 unsigned long pid, unsigned long page_size,
543 unsigned long psize, bool also_pwc)
545 struct cpumask *cpus = mm_cpumask(mm);
546 struct tlbiel_va_range t = { .start = start, .end = end,
547 .pid = pid, .page_size = page_size,
548 .psize = psize, .also_pwc = also_pwc };
550 on_each_cpu_mask(cpus, do_tlbiel_va_range, &t, 1);
551 if (atomic_read(&mm->context.copros) > 0)
552 _tlbie_va_range(start, end, pid, page_size, psize, also_pwc);
556 * Base TLB flushing operations:
558 * - flush_tlb_mm(mm) flushes the specified mm context TLB's
559 * - flush_tlb_page(vma, vmaddr) flushes one page
560 * - flush_tlb_range(vma, start, end) flushes a range of pages
561 * - flush_tlb_kernel_range(start, end) flushes kernel pages
563 * - local_* variants of page and mm only apply to the current
566 void radix__local_flush_tlb_mm(struct mm_struct *mm)
571 pid = mm->context.id;
572 if (pid != MMU_NO_CONTEXT)
573 _tlbiel_pid(pid, RIC_FLUSH_TLB);
576 EXPORT_SYMBOL(radix__local_flush_tlb_mm);
579 void radix__local_flush_all_mm(struct mm_struct *mm)
584 pid = mm->context.id;
585 if (pid != MMU_NO_CONTEXT)
586 _tlbiel_pid(pid, RIC_FLUSH_ALL);
589 EXPORT_SYMBOL(radix__local_flush_all_mm);
590 #endif /* CONFIG_SMP */
592 void radix__local_flush_tlb_page_psize(struct mm_struct *mm, unsigned long vmaddr,
598 pid = mm->context.id;
599 if (pid != MMU_NO_CONTEXT)
600 _tlbiel_va(vmaddr, pid, psize, RIC_FLUSH_TLB);
604 void radix__local_flush_tlb_page(struct vm_area_struct *vma, unsigned long vmaddr)
606 #ifdef CONFIG_HUGETLB_PAGE
607 /* need the return fix for nohash.c */
608 if (is_vm_hugetlb_page(vma))
609 return radix__local_flush_hugetlb_page(vma, vmaddr);
611 radix__local_flush_tlb_page_psize(vma->vm_mm, vmaddr, mmu_virtual_psize);
613 EXPORT_SYMBOL(radix__local_flush_tlb_page);
615 static bool mm_is_singlethreaded(struct mm_struct *mm)
617 if (atomic_read(&mm->context.copros) > 0)
619 if (atomic_read(&mm->mm_users) <= 1 && current->mm == mm)
624 static bool mm_needs_flush_escalation(struct mm_struct *mm)
627 * P9 nest MMU has issues with the page walk cache
628 * caching PTEs and not flushing them properly when
629 * RIC = 0 for a PID/LPID invalidate
631 if (atomic_read(&mm->context.copros) > 0)
637 static void do_exit_flush_lazy_tlb(void *arg)
639 struct mm_struct *mm = arg;
640 unsigned long pid = mm->context.id;
642 if (current->mm == mm)
643 return; /* Local CPU */
645 if (current->active_mm == mm) {
647 * Must be a kernel thread because sender is single-threaded.
651 switch_mm(mm, &init_mm, current);
652 current->active_mm = &init_mm;
655 _tlbiel_pid(pid, RIC_FLUSH_ALL);
658 static void exit_flush_lazy_tlbs(struct mm_struct *mm)
661 * Would be nice if this was async so it could be run in
662 * parallel with our local flush, but generic code does not
663 * give a good API for it. Could extend the generic code or
664 * make a special powerpc IPI for flushing TLBs.
665 * For now it's not too performance critical.
667 smp_call_function_many(mm_cpumask(mm), do_exit_flush_lazy_tlb,
669 mm_reset_thread_local(mm);
672 void radix__flush_tlb_mm(struct mm_struct *mm)
676 pid = mm->context.id;
677 if (unlikely(pid == MMU_NO_CONTEXT))
682 * Order loads of mm_cpumask vs previous stores to clear ptes before
683 * the invalidate. See barrier in switch_mm_irqs_off
686 if (!mm_is_thread_local(mm)) {
687 if (unlikely(mm_is_singlethreaded(mm))) {
688 exit_flush_lazy_tlbs(mm);
692 if (cputlb_use_tlbie()) {
693 if (mm_needs_flush_escalation(mm))
694 _tlbie_pid(pid, RIC_FLUSH_ALL);
696 _tlbie_pid(pid, RIC_FLUSH_TLB);
698 _tlbiel_pid_multicast(mm, pid, RIC_FLUSH_TLB);
702 _tlbiel_pid(pid, RIC_FLUSH_TLB);
706 EXPORT_SYMBOL(radix__flush_tlb_mm);
708 static void __flush_all_mm(struct mm_struct *mm, bool fullmm)
712 pid = mm->context.id;
713 if (unlikely(pid == MMU_NO_CONTEXT))
717 smp_mb(); /* see radix__flush_tlb_mm */
718 if (!mm_is_thread_local(mm)) {
719 if (unlikely(mm_is_singlethreaded(mm))) {
721 exit_flush_lazy_tlbs(mm);
725 if (cputlb_use_tlbie())
726 _tlbie_pid(pid, RIC_FLUSH_ALL);
728 _tlbiel_pid_multicast(mm, pid, RIC_FLUSH_ALL);
731 _tlbiel_pid(pid, RIC_FLUSH_ALL);
736 void radix__flush_all_mm(struct mm_struct *mm)
738 __flush_all_mm(mm, false);
740 EXPORT_SYMBOL(radix__flush_all_mm);
742 void radix__flush_tlb_page_psize(struct mm_struct *mm, unsigned long vmaddr,
747 pid = mm->context.id;
748 if (unlikely(pid == MMU_NO_CONTEXT))
752 smp_mb(); /* see radix__flush_tlb_mm */
753 if (!mm_is_thread_local(mm)) {
754 if (unlikely(mm_is_singlethreaded(mm))) {
755 exit_flush_lazy_tlbs(mm);
758 if (cputlb_use_tlbie())
759 _tlbie_va(vmaddr, pid, psize, RIC_FLUSH_TLB);
761 _tlbiel_va_multicast(mm, vmaddr, pid, psize, RIC_FLUSH_TLB);
764 _tlbiel_va(vmaddr, pid, psize, RIC_FLUSH_TLB);
769 void radix__flush_tlb_page(struct vm_area_struct *vma, unsigned long vmaddr)
771 #ifdef CONFIG_HUGETLB_PAGE
772 if (is_vm_hugetlb_page(vma))
773 return radix__flush_hugetlb_page(vma, vmaddr);
775 radix__flush_tlb_page_psize(vma->vm_mm, vmaddr, mmu_virtual_psize);
777 EXPORT_SYMBOL(radix__flush_tlb_page);
779 #else /* CONFIG_SMP */
780 #define radix__flush_all_mm radix__local_flush_all_mm
781 #endif /* CONFIG_SMP */
783 static void do_tlbiel_kernel(void *info)
785 _tlbiel_pid(0, RIC_FLUSH_ALL);
788 static inline void _tlbiel_kernel_broadcast(void)
790 on_each_cpu(do_tlbiel_kernel, NULL, 1);
793 * Coherent accelerators don't refcount kernel memory mappings,
794 * so have to always issue a tlbie for them. This is quite a
797 _tlbie_pid(0, RIC_FLUSH_ALL);
802 * If kernel TLBIs ever become local rather than global, then
803 * drivers/misc/ocxl/link.c:ocxl_link_add_pe will need some work, as it
804 * assumes kernel TLBIs are global.
806 void radix__flush_tlb_kernel_range(unsigned long start, unsigned long end)
808 if (cputlb_use_tlbie())
809 _tlbie_pid(0, RIC_FLUSH_ALL);
811 _tlbiel_kernel_broadcast();
813 EXPORT_SYMBOL(radix__flush_tlb_kernel_range);
815 #define TLB_FLUSH_ALL -1UL
818 * Number of pages above which we invalidate the entire PID rather than
819 * flush individual pages, for local and global flushes respectively.
821 * tlbie goes out to the interconnect and individual ops are more costly.
822 * It also does not iterate over sets like the local tlbiel variant when
823 * invalidating a full PID, so it has a far lower threshold to change from
824 * individual page flushes to full-pid flushes.
826 static unsigned long tlb_single_page_flush_ceiling __read_mostly = 33;
827 static unsigned long tlb_local_single_page_flush_ceiling __read_mostly = POWER9_TLB_SETS_RADIX * 2;
829 static inline void __radix__flush_tlb_range(struct mm_struct *mm,
830 unsigned long start, unsigned long end)
834 unsigned int page_shift = mmu_psize_defs[mmu_virtual_psize].shift;
835 unsigned long page_size = 1UL << page_shift;
836 unsigned long nr_pages = (end - start) >> page_shift;
839 pid = mm->context.id;
840 if (unlikely(pid == MMU_NO_CONTEXT))
844 smp_mb(); /* see radix__flush_tlb_mm */
845 if (!mm_is_thread_local(mm)) {
846 if (unlikely(mm_is_singlethreaded(mm))) {
847 if (end != TLB_FLUSH_ALL) {
848 exit_flush_lazy_tlbs(mm);
853 full = (end == TLB_FLUSH_ALL ||
854 nr_pages > tlb_single_page_flush_ceiling);
858 full = (end == TLB_FLUSH_ALL ||
859 nr_pages > tlb_local_single_page_flush_ceiling);
864 _tlbiel_pid(pid, RIC_FLUSH_TLB);
866 if (cputlb_use_tlbie()) {
867 if (mm_needs_flush_escalation(mm))
868 _tlbie_pid(pid, RIC_FLUSH_ALL);
870 _tlbie_pid(pid, RIC_FLUSH_TLB);
872 _tlbiel_pid_multicast(mm, pid, RIC_FLUSH_TLB);
877 unsigned long hstart, hend;
879 if (IS_ENABLED(CONFIG_TRANSPARENT_HUGEPAGE)) {
880 hstart = (start + PMD_SIZE - 1) & PMD_MASK;
881 hend = end & PMD_MASK;
889 asm volatile("ptesync": : :"memory");
890 __tlbiel_va_range(start, end, pid, page_size, mmu_virtual_psize);
892 __tlbiel_va_range(hstart, hend, pid,
893 PMD_SIZE, MMU_PAGE_2M);
894 asm volatile("ptesync": : :"memory");
895 } else if (cputlb_use_tlbie()) {
896 asm volatile("ptesync": : :"memory");
897 __tlbie_va_range(start, end, pid, page_size, mmu_virtual_psize);
899 __tlbie_va_range(hstart, hend, pid,
900 PMD_SIZE, MMU_PAGE_2M);
901 asm volatile("eieio; tlbsync; ptesync": : :"memory");
903 _tlbiel_va_range_multicast(mm,
904 start, end, pid, page_size, mmu_virtual_psize, false);
906 _tlbiel_va_range_multicast(mm,
907 hstart, hend, pid, PMD_SIZE, MMU_PAGE_2M, false);
913 void radix__flush_tlb_range(struct vm_area_struct *vma, unsigned long start,
917 #ifdef CONFIG_HUGETLB_PAGE
918 if (is_vm_hugetlb_page(vma))
919 return radix__flush_hugetlb_tlb_range(vma, start, end);
922 __radix__flush_tlb_range(vma->vm_mm, start, end);
924 EXPORT_SYMBOL(radix__flush_tlb_range);
926 static int radix_get_mmu_psize(int page_size)
930 if (page_size == (1UL << mmu_psize_defs[mmu_virtual_psize].shift))
931 psize = mmu_virtual_psize;
932 else if (page_size == (1UL << mmu_psize_defs[MMU_PAGE_2M].shift))
934 else if (page_size == (1UL << mmu_psize_defs[MMU_PAGE_1G].shift))
942 * Flush partition scoped LPID address translation for all CPUs.
944 void radix__flush_tlb_lpid_page(unsigned int lpid,
946 unsigned long page_size)
948 int psize = radix_get_mmu_psize(page_size);
950 _tlbie_lpid_va(addr, lpid, psize, RIC_FLUSH_TLB);
952 EXPORT_SYMBOL_GPL(radix__flush_tlb_lpid_page);
955 * Flush partition scoped PWC from LPID for all CPUs.
957 void radix__flush_pwc_lpid(unsigned int lpid)
959 _tlbie_lpid(lpid, RIC_FLUSH_PWC);
961 EXPORT_SYMBOL_GPL(radix__flush_pwc_lpid);
964 * Flush partition scoped translations from LPID (=LPIDR)
966 void radix__flush_all_lpid(unsigned int lpid)
968 _tlbie_lpid(lpid, RIC_FLUSH_ALL);
970 EXPORT_SYMBOL_GPL(radix__flush_all_lpid);
973 * Flush process scoped translations from LPID (=LPIDR)
975 void radix__flush_all_lpid_guest(unsigned int lpid)
977 _tlbie_lpid_guest(lpid, RIC_FLUSH_ALL);
980 static void radix__flush_tlb_pwc_range_psize(struct mm_struct *mm, unsigned long start,
981 unsigned long end, int psize);
983 void radix__tlb_flush(struct mmu_gather *tlb)
986 struct mm_struct *mm = tlb->mm;
987 int page_size = tlb->page_size;
988 unsigned long start = tlb->start;
989 unsigned long end = tlb->end;
992 * if page size is not something we understand, do a full mm flush
994 * A "fullmm" flush must always do a flush_all_mm (RIC=2) flush
995 * that flushes the process table entry cache upon process teardown.
996 * See the comment for radix in arch_exit_mmap().
998 if (tlb->fullmm || tlb->need_flush_all) {
999 __flush_all_mm(mm, true);
1000 } else if ( (psize = radix_get_mmu_psize(page_size)) == -1) {
1001 if (!tlb->freed_tables)
1002 radix__flush_tlb_mm(mm);
1004 radix__flush_all_mm(mm);
1006 if (!tlb->freed_tables)
1007 radix__flush_tlb_range_psize(mm, start, end, psize);
1009 radix__flush_tlb_pwc_range_psize(mm, start, end, psize);
1013 static __always_inline void __radix__flush_tlb_range_psize(struct mm_struct *mm,
1014 unsigned long start, unsigned long end,
1015 int psize, bool also_pwc)
1018 unsigned int page_shift = mmu_psize_defs[psize].shift;
1019 unsigned long page_size = 1UL << page_shift;
1020 unsigned long nr_pages = (end - start) >> page_shift;
1023 pid = mm->context.id;
1024 if (unlikely(pid == MMU_NO_CONTEXT))
1028 smp_mb(); /* see radix__flush_tlb_mm */
1029 if (!mm_is_thread_local(mm)) {
1030 if (unlikely(mm_is_singlethreaded(mm))) {
1031 if (end != TLB_FLUSH_ALL) {
1032 exit_flush_lazy_tlbs(mm);
1037 full = (end == TLB_FLUSH_ALL ||
1038 nr_pages > tlb_single_page_flush_ceiling);
1042 full = (end == TLB_FLUSH_ALL ||
1043 nr_pages > tlb_local_single_page_flush_ceiling);
1048 _tlbiel_pid(pid, also_pwc ? RIC_FLUSH_ALL : RIC_FLUSH_TLB);
1050 if (cputlb_use_tlbie()) {
1051 if (mm_needs_flush_escalation(mm))
1055 also_pwc ? RIC_FLUSH_ALL : RIC_FLUSH_TLB);
1057 _tlbiel_pid_multicast(mm, pid,
1058 also_pwc ? RIC_FLUSH_ALL : RIC_FLUSH_TLB);
1064 _tlbiel_va_range(start, end, pid, page_size, psize, also_pwc);
1065 else if (cputlb_use_tlbie())
1066 _tlbie_va_range(start, end, pid, page_size, psize, also_pwc);
1068 _tlbiel_va_range_multicast(mm,
1069 start, end, pid, page_size, psize, also_pwc);
1074 void radix__flush_tlb_range_psize(struct mm_struct *mm, unsigned long start,
1075 unsigned long end, int psize)
1077 return __radix__flush_tlb_range_psize(mm, start, end, psize, false);
1080 static void radix__flush_tlb_pwc_range_psize(struct mm_struct *mm, unsigned long start,
1081 unsigned long end, int psize)
1083 __radix__flush_tlb_range_psize(mm, start, end, psize, true);
1086 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
1087 void radix__flush_tlb_collapsed_pmd(struct mm_struct *mm, unsigned long addr)
1089 unsigned long pid, end;
1091 pid = mm->context.id;
1092 if (unlikely(pid == MMU_NO_CONTEXT))
1095 /* 4k page size, just blow the world */
1096 if (PAGE_SIZE == 0x1000) {
1097 radix__flush_all_mm(mm);
1101 end = addr + HPAGE_PMD_SIZE;
1103 /* Otherwise first do the PWC, then iterate the pages. */
1105 smp_mb(); /* see radix__flush_tlb_mm */
1106 if (!mm_is_thread_local(mm)) {
1107 if (unlikely(mm_is_singlethreaded(mm))) {
1108 exit_flush_lazy_tlbs(mm);
1111 if (cputlb_use_tlbie())
1112 _tlbie_va_range(addr, end, pid, PAGE_SIZE, mmu_virtual_psize, true);
1114 _tlbiel_va_range_multicast(mm,
1115 addr, end, pid, PAGE_SIZE, mmu_virtual_psize, true);
1118 _tlbiel_va_range(addr, end, pid, PAGE_SIZE, mmu_virtual_psize, true);
1123 #endif /* CONFIG_TRANSPARENT_HUGEPAGE */
1125 void radix__flush_pmd_tlb_range(struct vm_area_struct *vma,
1126 unsigned long start, unsigned long end)
1128 radix__flush_tlb_range_psize(vma->vm_mm, start, end, MMU_PAGE_2M);
1130 EXPORT_SYMBOL(radix__flush_pmd_tlb_range);
1132 void radix__flush_tlb_all(void)
1134 unsigned long rb,prs,r,rs;
1135 unsigned long ric = RIC_FLUSH_ALL;
1137 rb = 0x3 << PPC_BITLSHIFT(53); /* IS = 3 */
1138 prs = 0; /* partition scoped */
1139 r = 1; /* radix format */
1140 rs = 1 & ((1UL << 32) - 1); /* any LPID value to flush guest mappings */
1142 asm volatile("ptesync": : :"memory");
1144 * now flush guest entries by passing PRS = 1 and LPID != 0
1146 asm volatile(PPC_TLBIE_5(%0, %4, %3, %2, %1)
1147 : : "r"(rb), "i"(r), "i"(1), "i"(ric), "r"(rs) : "memory");
1149 * now flush host entires by passing PRS = 0 and LPID == 0
1151 asm volatile(PPC_TLBIE_5(%0, %4, %3, %2, %1)
1152 : : "r"(rb), "i"(r), "i"(prs), "i"(ric), "r"(0) : "memory");
1153 asm volatile("eieio; tlbsync; ptesync": : :"memory");
1156 #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
1157 extern void radix_kvm_prefetch_workaround(struct mm_struct *mm)
1159 unsigned long pid = mm->context.id;
1161 if (unlikely(pid == MMU_NO_CONTEXT))
1165 * If this context hasn't run on that CPU before and KVM is
1166 * around, there's a slim chance that the guest on another
1167 * CPU just brought in obsolete translation into the TLB of
1168 * this CPU due to a bad prefetch using the guest PID on
1169 * the way into the hypervisor.
1171 * We work around this here. If KVM is possible, we check if
1172 * any sibling thread is in KVM. If it is, the window may exist
1173 * and thus we flush that PID from the core.
1175 * A potential future improvement would be to mark which PIDs
1176 * have never been used on the system and avoid it if the PID
1177 * is new and the process has no other cpumask bit set.
1179 if (cpu_has_feature(CPU_FTR_HVMODE) && radix_enabled()) {
1180 int cpu = smp_processor_id();
1181 int sib = cpu_first_thread_sibling(cpu);
1184 for (; sib <= cpu_last_thread_sibling(cpu) && !flush; sib++) {
1187 if (!cpu_possible(sib))
1189 if (paca_ptrs[sib]->kvm_hstate.kvm_vcpu)
1193 _tlbiel_pid(pid, RIC_FLUSH_ALL);
1196 EXPORT_SYMBOL_GPL(radix_kvm_prefetch_workaround);
1197 #endif /* CONFIG_KVM_BOOK3S_HV_POSSIBLE */