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
)
24 /* Switch to requested VMID */
25 kvm
= kern_hyp_va(kvm
);
26 write_sysreg(kvm
->arch
.vttbr
, vttbr_el2
);
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...
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.
44 asm volatile("tlbi vmalle1is" : : );
48 write_sysreg(0, vttbr_el2
);
51 void __hyp_text
__kvm_tlb_flush_vmid(struct kvm
*kvm
)
55 /* Switch to requested VMID */
56 kvm
= kern_hyp_va(kvm
);
57 write_sysreg(kvm
->arch
.vttbr
, vttbr_el2
);
60 asm volatile("tlbi vmalls12e1is" : : );
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
);
75 asm volatile("tlbi vmalle1" : : );
79 write_sysreg(0, vttbr_el2
);
82 void __hyp_text
__kvm_flush_vm_context(void)
85 asm volatile("tlbi alle1is \n"