kvm: take srcu lock around kvm_steal_time_set_preempted()
[linux/fpc-iii.git] / arch / arm64 / kvm / hyp / tlb.c
blob88e2f2b938f070c7570a8d76ae9ca348b1fd71e9
1 /*
2 * Copyright (C) 2015 - ARM Ltd
3 * Author: Marc Zyngier <marc.zyngier@arm.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 #include <asm/kvm_hyp.h>
20 void __hyp_text __kvm_tlb_flush_vmid_ipa(struct kvm *kvm, phys_addr_t ipa)
22 dsb(ishst);
24 /* Switch to requested VMID */
25 kvm = kern_hyp_va(kvm);
26 write_sysreg(kvm->arch.vttbr, vttbr_el2);
27 isb();
30 * We could do so much better if we had the VA as well.
31 * Instead, we invalidate Stage-2 for this IPA, and the
32 * whole of Stage-1. Weep...
34 ipa >>= 12;
35 asm volatile("tlbi ipas2e1is, %0" : : "r" (ipa));
38 * We have to ensure completion of the invalidation at Stage-2,
39 * since a table walk on another CPU could refill a TLB with a
40 * complete (S1 + S2) walk based on the old Stage-2 mapping if
41 * the Stage-1 invalidation happened first.
43 dsb(ish);
44 asm volatile("tlbi vmalle1is" : : );
45 dsb(ish);
46 isb();
48 write_sysreg(0, vttbr_el2);
51 void __hyp_text __kvm_tlb_flush_vmid(struct kvm *kvm)
53 dsb(ishst);
55 /* Switch to requested VMID */
56 kvm = kern_hyp_va(kvm);
57 write_sysreg(kvm->arch.vttbr, vttbr_el2);
58 isb();
60 asm volatile("tlbi vmalls12e1is" : : );
61 dsb(ish);
62 isb();
64 write_sysreg(0, vttbr_el2);
67 void __hyp_text __kvm_tlb_flush_local_vmid(struct kvm_vcpu *vcpu)
69 struct kvm *kvm = kern_hyp_va(kern_hyp_va(vcpu)->kvm);
71 /* Switch to requested VMID */
72 write_sysreg(kvm->arch.vttbr, vttbr_el2);
73 isb();
75 asm volatile("tlbi vmalle1" : : );
76 dsb(nsh);
77 isb();
79 write_sysreg(0, vttbr_el2);
82 void __hyp_text __kvm_flush_vm_context(void)
84 dsb(ishst);
85 asm volatile("tlbi alle1is \n"
86 "ic ialluis ": : );
87 dsb(ish);