blob: 3d3815020e3627488dbcf4de139ddf1709399178 [file] [log] [blame]
Thomas Gleixnercaab2772019-06-03 07:44:50 +02001// SPDX-License-Identifier: GPL-2.0-only
Marc Zyngierbe901e92015-10-21 09:57:10 +01002/*
3 * Copyright (C) 2015 - ARM Ltd
4 * Author: Marc Zyngier <marc.zyngier@arm.com>
Marc Zyngierbe901e92015-10-21 09:57:10 +01005 */
6
Marc Zyngier55e37482018-05-29 13:11:16 +01007#include <linux/arm-smccc.h>
James Morseb7c50fa2019-05-22 18:47:04 +01008#include <linux/kvm_host.h>
Marc Zyngier5f05a72a2015-10-28 15:06:47 +00009#include <linux/types.h>
Vladimir Murzin5a7a8422016-09-12 15:49:15 +010010#include <linux/jump_label.h>
Marc Zyngier90348682018-01-03 16:38:37 +000011#include <uapi/linux/psci.h>
Vladimir Murzin5a7a8422016-09-12 15:49:15 +010012
Marc Zyngiera4097b32018-02-06 17:56:13 +000013#include <kvm/arm_psci.h>
14
Julien Thierry85738e02019-01-31 14:58:48 +000015#include <asm/arch_gicv3.h>
Dave Martin85acda32018-04-20 16:20:43 +010016#include <asm/cpufeature.h>
James Morse7d826022019-01-24 16:32:54 +000017#include <asm/kprobes.h>
Marc Zyngier68908bf2015-01-29 15:47:55 +000018#include <asm/kvm_asm.h>
Marc Zyngierfb5ee362016-09-06 09:28:45 +010019#include <asm/kvm_emulate.h>
Dave Martine6b673b2018-04-06 14:55:59 +010020#include <asm/kvm_host.h>
Marc Zyngier13720a52016-01-28 13:44:07 +000021#include <asm/kvm_hyp.h>
Marc Zyngierd6811982017-10-23 17:11:14 +010022#include <asm/kvm_mmu.h>
Suzuki K Poulose82e01912016-11-08 13:56:21 +000023#include <asm/fpsimd.h>
Alex Bennéee3feebf2017-11-23 12:11:34 +000024#include <asm/debug-monitors.h>
Dave Martin85acda32018-04-20 16:20:43 +010025#include <asm/processor.h>
Dave Martine6b673b2018-04-06 14:55:59 +010026#include <asm/thread_info.h>
Marc Zyngierbe901e92015-10-21 09:57:10 +010027
Dave Martine6b673b2018-04-06 14:55:59 +010028/* Check whether the FP regs were dirtied while in the host-side run loop: */
29static bool __hyp_text update_fp_enabled(struct kvm_vcpu *vcpu)
Marc Zyngier32876222015-10-28 14:15:45 +000030{
Dave Martine6b673b2018-04-06 14:55:59 +010031 if (vcpu->arch.host_thread_info->flags & _TIF_FOREIGN_FPSTATE)
32 vcpu->arch.flags &= ~(KVM_ARM64_FP_ENABLED |
33 KVM_ARM64_FP_HOST);
Marc Zyngier32876222015-10-28 14:15:45 +000034
Dave Martine6b673b2018-04-06 14:55:59 +010035 return !!(vcpu->arch.flags & KVM_ARM64_FP_ENABLED);
Marc Zyngier32876222015-10-28 14:15:45 +000036}
37
Christoffer Dallb9f8ca42017-12-27 22:12:12 +010038/* Save the 32-bit only FPSIMD system register state */
39static void __hyp_text __fpsimd_save_fpexc32(struct kvm_vcpu *vcpu)
40{
41 if (!vcpu_el1_is_32bit(vcpu))
42 return;
43
44 vcpu->arch.ctxt.sys_regs[FPEXC32_EL2] = read_sysreg(fpexc32_el2);
45}
46
Christoffer Dalld5a21bc2017-08-04 08:50:25 +020047static void __hyp_text __activate_traps_fpsimd32(struct kvm_vcpu *vcpu)
48{
49 /*
50 * We are about to set CPTR_EL2.TFP to trap all floating point
51 * register accesses to EL2, however, the ARM ARM clearly states that
52 * traps are only taken to EL2 if the operation would not otherwise
53 * trap to EL1. Therefore, always make sure that for 32-bit guests,
54 * we set FPEXC.EN to prevent traps to EL1, when setting the TFP bit.
55 * If FP/ASIMD is not implemented, FPEXC is UNDEFINED and any access to
56 * it will cause an exception.
57 */
58 if (vcpu_el1_is_32bit(vcpu) && system_supports_fpsimd()) {
59 write_sysreg(1 << 30, fpexc32_el2);
60 isb();
61 }
62}
63
64static void __hyp_text __activate_traps_common(struct kvm_vcpu *vcpu)
65{
66 /* Trap on AArch32 cp15 c15 (impdef sysregs) accesses (EL1 or EL0) */
67 write_sysreg(1 << 15, hstr_el2);
68
69 /*
70 * Make sure we trap PMU access from EL0 to EL2. Also sanitize
71 * PMSELR_EL0 to make sure it never contains the cycle
72 * counter, which could make a PMXEVCNTR_EL0 access UNDEF at
73 * EL1 instead of being trapped to EL2.
74 */
75 write_sysreg(0, pmselr_el0);
76 write_sysreg(ARMV8_PMU_USERENR_MASK, pmuserenr_el0);
77 write_sysreg(vcpu->arch.mdcr_el2, mdcr_el2);
78}
79
80static void __hyp_text __deactivate_traps_common(void)
81{
82 write_sysreg(0, hstr_el2);
83 write_sysreg(0, pmuserenr_el0);
84}
85
Christoffer Dallb7787e62017-10-03 17:06:15 +020086static void activate_traps_vhe(struct kvm_vcpu *vcpu)
Marc Zyngier68908bf2015-01-29 15:47:55 +000087{
88 u64 val;
89
90 val = read_sysreg(cpacr_el1);
91 val |= CPACR_EL1_TTA;
Dave Martine6b673b2018-04-06 14:55:59 +010092 val &= ~CPACR_EL1_ZEN;
Dave Martinb43b5dd2018-09-28 14:39:17 +010093 if (update_fp_enabled(vcpu)) {
94 if (vcpu_has_sve(vcpu))
95 val |= CPACR_EL1_ZEN;
96 } else {
Dave Martine6b673b2018-04-06 14:55:59 +010097 val &= ~CPACR_EL1_FPEN;
Marc Zyngier7d149192018-08-23 11:51:43 +010098 __activate_traps_fpsimd32(vcpu);
99 }
Dave Martine6b673b2018-04-06 14:55:59 +0100100
Marc Zyngier68908bf2015-01-29 15:47:55 +0000101 write_sysreg(val, cpacr_el1);
102
Marc Zyngier6840bdd2018-01-03 16:38:35 +0000103 write_sysreg(kvm_get_hyp_vector(), vbar_el1);
Marc Zyngier68908bf2015-01-29 15:47:55 +0000104}
James Morse7d826022019-01-24 16:32:54 +0000105NOKPROBE_SYMBOL(activate_traps_vhe);
Marc Zyngier68908bf2015-01-29 15:47:55 +0000106
Christoffer Dalld5a21bc2017-08-04 08:50:25 +0200107static void __hyp_text __activate_traps_nvhe(struct kvm_vcpu *vcpu)
Marc Zyngier68908bf2015-01-29 15:47:55 +0000108{
109 u64 val;
110
Christoffer Dalla2465622017-08-04 13:47:18 +0200111 __activate_traps_common(vcpu);
112
Marc Zyngier68908bf2015-01-29 15:47:55 +0000113 val = CPTR_EL2_DEFAULT;
Dave Martine6b673b2018-04-06 14:55:59 +0100114 val |= CPTR_EL2_TTA | CPTR_EL2_TZ;
Marc Zyngier7d149192018-08-23 11:51:43 +0100115 if (!update_fp_enabled(vcpu)) {
Dave Martine6b673b2018-04-06 14:55:59 +0100116 val |= CPTR_EL2_TFP;
Marc Zyngier7d149192018-08-23 11:51:43 +0100117 __activate_traps_fpsimd32(vcpu);
118 }
Dave Martine6b673b2018-04-06 14:55:59 +0100119
Marc Zyngier68908bf2015-01-29 15:47:55 +0000120 write_sysreg(val, cptr_el2);
121}
122
Marc Zyngierbe901e92015-10-21 09:57:10 +0100123static void __hyp_text __activate_traps(struct kvm_vcpu *vcpu)
124{
Christoffer Dalle72341c2017-12-13 22:56:48 +0100125 u64 hcr = vcpu->arch.hcr_el2;
Marc Zyngierbe901e92015-10-21 09:57:10 +0100126
Christoffer Dalld5a21bc2017-08-04 08:50:25 +0200127 write_sysreg(hcr, hcr_el2);
Dave Martin93390c02017-10-31 15:50:56 +0000128
Christoffer Dalle72341c2017-12-13 22:56:48 +0100129 if (cpus_have_const_cap(ARM64_HAS_RAS_EXTN) && (hcr & HCR_VSE))
James Morse4715c142018-01-15 19:39:01 +0000130 write_sysreg_s(vcpu->arch.vsesr_el2, SYS_VSESR_EL2);
131
Christoffer Dallb7787e62017-10-03 17:06:15 +0200132 if (has_vhe())
133 activate_traps_vhe(vcpu);
134 else
135 __activate_traps_nvhe(vcpu);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100136}
137
Christoffer Dallb7787e62017-10-03 17:06:15 +0200138static void deactivate_traps_vhe(void)
Marc Zyngier68908bf2015-01-29 15:47:55 +0000139{
140 extern char vectors[]; /* kernel exception vectors */
Marc Zyngier68908bf2015-01-29 15:47:55 +0000141 write_sysreg(HCR_HOST_VHE_FLAGS, hcr_el2);
Marc Zyngier1e4448c2018-12-06 17:31:24 +0000142
143 /*
144 * ARM erratum 1165522 requires the actual execution of the above
145 * before we can switch to the EL2/EL0 translation regime used by
146 * the host.
147 */
148 asm(ALTERNATIVE("nop", "isb", ARM64_WORKAROUND_1165522));
149
Dave Martin17eed272017-10-31 15:51:16 +0000150 write_sysreg(CPACR_EL1_DEFAULT, cpacr_el1);
Marc Zyngier68908bf2015-01-29 15:47:55 +0000151 write_sysreg(vectors, vbar_el1);
152}
James Morse7d826022019-01-24 16:32:54 +0000153NOKPROBE_SYMBOL(deactivate_traps_vhe);
Marc Zyngier68908bf2015-01-29 15:47:55 +0000154
155static void __hyp_text __deactivate_traps_nvhe(void)
156{
Will Deaconf85279b2016-09-22 11:35:43 +0100157 u64 mdcr_el2 = read_sysreg(mdcr_el2);
158
Christoffer Dalla2465622017-08-04 13:47:18 +0200159 __deactivate_traps_common();
160
Will Deaconf85279b2016-09-22 11:35:43 +0100161 mdcr_el2 &= MDCR_EL2_HPMN_MASK;
162 mdcr_el2 |= MDCR_EL2_E2PB_MASK << MDCR_EL2_E2PB_SHIFT;
163
164 write_sysreg(mdcr_el2, mdcr_el2);
Mark Rutland4eaed6a2018-12-07 18:39:21 +0000165 write_sysreg(HCR_HOST_NVHE_FLAGS, hcr_el2);
Marc Zyngier68908bf2015-01-29 15:47:55 +0000166 write_sysreg(CPTR_EL2_DEFAULT, cptr_el2);
167}
168
Marc Zyngierbe901e92015-10-21 09:57:10 +0100169static void __hyp_text __deactivate_traps(struct kvm_vcpu *vcpu)
170{
Marc Zyngier44636f92016-09-06 14:02:00 +0100171 /*
172 * If we pended a virtual abort, preserve it until it gets
173 * cleared. See D1.14.3 (Virtual Interrupts) for details, but
174 * the crucial bit is "On taking a vSError interrupt,
175 * HCR_EL2.VSE is cleared to 0."
176 */
177 if (vcpu->arch.hcr_el2 & HCR_VSE)
178 vcpu->arch.hcr_el2 = read_sysreg(hcr_el2);
179
Christoffer Dallb7787e62017-10-03 17:06:15 +0200180 if (has_vhe())
181 deactivate_traps_vhe();
182 else
183 __deactivate_traps_nvhe();
Marc Zyngierbe901e92015-10-21 09:57:10 +0100184}
185
Christoffer Dalla2465622017-08-04 13:47:18 +0200186void activate_traps_vhe_load(struct kvm_vcpu *vcpu)
187{
188 __activate_traps_common(vcpu);
189}
190
191void deactivate_traps_vhe_put(void)
192{
193 u64 mdcr_el2 = read_sysreg(mdcr_el2);
194
195 mdcr_el2 &= MDCR_EL2_HPMN_MASK |
196 MDCR_EL2_E2PB_MASK << MDCR_EL2_E2PB_SHIFT |
197 MDCR_EL2_TPMS;
198
199 write_sysreg(mdcr_el2, mdcr_el2);
200
201 __deactivate_traps_common();
202}
203
Christoffer Dall34f8cdf2017-10-10 13:25:21 +0200204static void __hyp_text __activate_vm(struct kvm *kvm)
Marc Zyngierbe901e92015-10-21 09:57:10 +0100205{
Suzuki K Poulose9f98ddd2018-09-26 17:32:39 +0100206 __load_guest_stage2(kvm);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100207}
208
209static void __hyp_text __deactivate_vm(struct kvm_vcpu *vcpu)
210{
211 write_sysreg(0, vttbr_el2);
212}
213
Christoffer Dall771621b2017-10-04 23:42:32 +0200214/* Save VGICv3 state on non-VHE systems */
215static void __hyp_text __hyp_vgic_save_state(struct kvm_vcpu *vcpu)
Marc Zyngierbe901e92015-10-21 09:57:10 +0100216{
Christoffer Dall2d0e63e2017-10-05 17:19:19 +0200217 if (static_branch_unlikely(&kvm_vgic_global_state.gicv3_cpuif)) {
Vladimir Murzin5a7a8422016-09-12 15:49:15 +0100218 __vgic_v3_save_state(vcpu);
Christoffer Dall2d0e63e2017-10-05 17:19:19 +0200219 __vgic_v3_deactivate_traps(vcpu);
220 }
Marc Zyngierbe901e92015-10-21 09:57:10 +0100221}
222
Christoffer Dall771621b2017-10-04 23:42:32 +0200223/* Restore VGICv3 state on non_VEH systems */
224static void __hyp_text __hyp_vgic_restore_state(struct kvm_vcpu *vcpu)
Marc Zyngierbe901e92015-10-21 09:57:10 +0100225{
Christoffer Dall2d0e63e2017-10-05 17:19:19 +0200226 if (static_branch_unlikely(&kvm_vgic_global_state.gicv3_cpuif)) {
227 __vgic_v3_activate_traps(vcpu);
Vladimir Murzin5a7a8422016-09-12 15:49:15 +0100228 __vgic_v3_restore_state(vcpu);
Christoffer Dall2d0e63e2017-10-05 17:19:19 +0200229 }
Marc Zyngierbe901e92015-10-21 09:57:10 +0100230}
231
Marc Zyngier5f05a72a2015-10-28 15:06:47 +0000232static bool __hyp_text __translate_far_to_hpfar(u64 far, u64 *hpfar)
233{
234 u64 par, tmp;
235
236 /*
237 * Resolve the IPA the hard way using the guest VA.
238 *
239 * Stage-1 translation already validated the memory access
240 * rights. As such, we can use the EL1 translation regime, and
241 * don't have to distinguish between EL0 and EL1 access.
242 *
243 * We do need to save/restore PAR_EL1 though, as we haven't
244 * saved the guest context yet, and we may return early...
245 */
246 par = read_sysreg(par_el1);
247 asm volatile("at s1e1r, %0" : : "r" (far));
248 isb();
249
250 tmp = read_sysreg(par_el1);
251 write_sysreg(par, par_el1);
252
Will Deacon5c062ef2019-08-22 17:21:21 +0100253 if (unlikely(tmp & SYS_PAR_EL1_F))
Marc Zyngier5f05a72a2015-10-28 15:06:47 +0000254 return false; /* Translation failed, back to guest */
255
256 /* Convert PAR to HPFAR format */
Suzuki K Poulosebc1d7de2018-09-26 17:32:51 +0100257 *hpfar = PAR_TO_HPFAR(tmp);
Marc Zyngier5f05a72a2015-10-28 15:06:47 +0000258 return true;
259}
260
261static bool __hyp_text __populate_fault_info(struct kvm_vcpu *vcpu)
262{
James Morsec60590b2018-01-15 19:39:03 +0000263 u8 ec;
264 u64 esr;
Marc Zyngier5f05a72a2015-10-28 15:06:47 +0000265 u64 hpfar, far;
266
James Morsec60590b2018-01-15 19:39:03 +0000267 esr = vcpu->arch.fault.esr_el2;
268 ec = ESR_ELx_EC(esr);
Marc Zyngier5f05a72a2015-10-28 15:06:47 +0000269
270 if (ec != ESR_ELx_EC_DABT_LOW && ec != ESR_ELx_EC_IABT_LOW)
271 return true;
272
Dave Martinfdec2a92019-04-06 11:29:40 +0100273 far = read_sysreg_el2(SYS_FAR);
Marc Zyngier5f05a72a2015-10-28 15:06:47 +0000274
275 /*
276 * The HPFAR can be invalid if the stage 2 fault did not
277 * happen during a stage 1 page table walk (the ESR_EL2.S1PTW
278 * bit is clear) and one of the two following cases are true:
279 * 1. The fault was due to a permission fault
280 * 2. The processor carries errata 834220
281 *
282 * Therefore, for all non S1PTW faults where we either have a
283 * permission fault or the errata workaround is enabled, we
284 * resolve the IPA using the AT instruction.
285 */
286 if (!(esr & ESR_ELx_S1PTW) &&
Marc Zyngierb6749e22019-09-01 22:12:35 +0100287 (cpus_have_const_cap(ARM64_WORKAROUND_834220) ||
288 (esr & ESR_ELx_FSC_TYPE) == FSC_PERM)) {
Marc Zyngier5f05a72a2015-10-28 15:06:47 +0000289 if (!__translate_far_to_hpfar(far, &hpfar))
290 return false;
291 } else {
292 hpfar = read_sysreg(hpfar_el2);
293 }
294
295 vcpu->arch.fault.far_el2 = far;
296 vcpu->arch.fault.hpfar_el2 = hpfar;
297 return true;
298}
299
Dave Martinb43b5dd2018-09-28 14:39:17 +0100300/* Check for an FPSIMD/SVE trap and handle as appropriate */
301static bool __hyp_text __hyp_handle_fpsimd(struct kvm_vcpu *vcpu)
Dave Martinceda9ff2018-02-16 16:35:32 +0000302{
Dave Martinb43b5dd2018-09-28 14:39:17 +0100303 bool vhe, sve_guest, sve_host;
304 u8 hsr_ec;
Dave Martin85acda32018-04-20 16:20:43 +0100305
Dave Martinb43b5dd2018-09-28 14:39:17 +0100306 if (!system_supports_fpsimd())
307 return false;
308
309 if (system_supports_sve()) {
310 sve_guest = vcpu_has_sve(vcpu);
311 sve_host = vcpu->arch.flags & KVM_ARM64_HOST_SVE_IN_USE;
312 vhe = true;
313 } else {
314 sve_guest = false;
315 sve_host = false;
316 vhe = has_vhe();
317 }
318
319 hsr_ec = kvm_vcpu_trap_get_class(vcpu);
320 if (hsr_ec != ESR_ELx_EC_FP_ASIMD &&
321 hsr_ec != ESR_ELx_EC_SVE)
322 return false;
323
324 /* Don't handle SVE traps for non-SVE vcpus here: */
325 if (!sve_guest)
326 if (hsr_ec != ESR_ELx_EC_FP_ASIMD)
327 return false;
328
329 /* Valid trap. Switch the context: */
330
331 if (vhe) {
332 u64 reg = read_sysreg(cpacr_el1) | CPACR_EL1_FPEN;
333
334 if (sve_guest)
335 reg |= CPACR_EL1_ZEN;
336
337 write_sysreg(reg, cpacr_el1);
338 } else {
Dave Martinceda9ff2018-02-16 16:35:32 +0000339 write_sysreg(read_sysreg(cptr_el2) & ~(u64)CPTR_EL2_TFP,
340 cptr_el2);
Dave Martinb43b5dd2018-09-28 14:39:17 +0100341 }
Dave Martinceda9ff2018-02-16 16:35:32 +0000342
343 isb();
344
Dave Martine6b673b2018-04-06 14:55:59 +0100345 if (vcpu->arch.flags & KVM_ARM64_FP_HOST) {
Dave Martin85acda32018-04-20 16:20:43 +0100346 /*
347 * In the SVE case, VHE is assumed: it is enforced by
348 * Kconfig and kvm_arch_init().
349 */
Dave Martinb43b5dd2018-09-28 14:39:17 +0100350 if (sve_host) {
Dave Martin85acda32018-04-20 16:20:43 +0100351 struct thread_struct *thread = container_of(
Dave Martinb43b5dd2018-09-28 14:39:17 +0100352 vcpu->arch.host_fpsimd_state,
Dave Martin85acda32018-04-20 16:20:43 +0100353 struct thread_struct, uw.fpsimd_state);
354
Dave Martinb43b5dd2018-09-28 14:39:17 +0100355 sve_save_state(sve_pffr(thread),
356 &vcpu->arch.host_fpsimd_state->fpsr);
Dave Martin85acda32018-04-20 16:20:43 +0100357 } else {
Dave Martinb43b5dd2018-09-28 14:39:17 +0100358 __fpsimd_save_state(vcpu->arch.host_fpsimd_state);
Dave Martin85acda32018-04-20 16:20:43 +0100359 }
360
Dave Martine6b673b2018-04-06 14:55:59 +0100361 vcpu->arch.flags &= ~KVM_ARM64_FP_HOST;
362 }
363
Dave Martinb43b5dd2018-09-28 14:39:17 +0100364 if (sve_guest) {
365 sve_load_state(vcpu_sve_pffr(vcpu),
366 &vcpu->arch.ctxt.gp_regs.fp_regs.fpsr,
367 sve_vq_from_vl(vcpu->arch.sve_max_vl) - 1);
Dave Martin73433762018-09-28 14:39:16 +0100368 write_sysreg_s(vcpu->arch.ctxt.sys_regs[ZCR_EL1], SYS_ZCR_EL12);
Dave Martinb43b5dd2018-09-28 14:39:17 +0100369 } else {
370 __fpsimd_restore_state(&vcpu->arch.ctxt.gp_regs.fp_regs);
371 }
Dave Martin73433762018-09-28 14:39:16 +0100372
Dave Martinceda9ff2018-02-16 16:35:32 +0000373 /* Skip restoring fpexc32 for AArch64 guests */
374 if (!(read_sysreg(hcr_el2) & HCR_RW))
375 write_sysreg(vcpu->arch.ctxt.sys_regs[FPEXC32_EL2],
376 fpexc32_el2);
Dave Martine6b673b2018-04-06 14:55:59 +0100377
378 vcpu->arch.flags |= KVM_ARM64_FP_ENABLED;
Dave Martincf412b02018-05-02 14:18:02 +0100379
380 return true;
Dave Martinceda9ff2018-02-16 16:35:32 +0000381}
382
Christoffer Dalldc251402017-10-03 13:16:04 +0200383/*
384 * Return true when we were able to fixup the guest exit and should return to
385 * the guest, false when we should restore the host state and return to the
386 * main run loop.
387 */
388static bool __hyp_text fixup_guest_exit(struct kvm_vcpu *vcpu, u64 *exit_code)
389{
390 if (ARM_EXCEPTION_CODE(*exit_code) != ARM_EXCEPTION_IRQ)
Dave Martinfdec2a92019-04-06 11:29:40 +0100391 vcpu->arch.fault.esr_el2 = read_sysreg_el2(SYS_ESR);
Christoffer Dalldc251402017-10-03 13:16:04 +0200392
393 /*
394 * We're using the raw exception code in order to only process
395 * the trap if no SError is pending. We will come back to the
396 * same PC once the SError has been injected, and replay the
397 * trapping instruction.
398 */
Dave Martin7846b312018-05-02 13:36:48 +0100399 if (*exit_code != ARM_EXCEPTION_TRAP)
400 goto exit;
401
Dave Martincf412b02018-05-02 14:18:02 +0100402 /*
403 * We trap the first access to the FP/SIMD to save the host context
404 * and restore the guest context lazily.
405 * If FP/SIMD is not implemented, handle the trap and inject an
406 * undefined instruction exception to the guest.
Dave Martinb43b5dd2018-09-28 14:39:17 +0100407 * Similarly for trapped SVE accesses.
Dave Martincf412b02018-05-02 14:18:02 +0100408 */
Dave Martinb43b5dd2018-09-28 14:39:17 +0100409 if (__hyp_handle_fpsimd(vcpu))
410 return true;
Dave Martincf412b02018-05-02 14:18:02 +0100411
Dave Martin7846b312018-05-02 13:36:48 +0100412 if (!__populate_fault_info(vcpu))
Christoffer Dalldc251402017-10-03 13:16:04 +0200413 return true;
414
Dave Martin7846b312018-05-02 13:36:48 +0100415 if (static_branch_unlikely(&vgic_v2_cpuif_trap)) {
Christoffer Dalldc251402017-10-03 13:16:04 +0200416 bool valid;
417
418 valid = kvm_vcpu_trap_get_class(vcpu) == ESR_ELx_EC_DABT_LOW &&
419 kvm_vcpu_trap_get_fault_type(vcpu) == FSC_FAULT &&
420 kvm_vcpu_dabt_isvalid(vcpu) &&
421 !kvm_vcpu_dabt_isextabt(vcpu) &&
422 !kvm_vcpu_dabt_iss1tw(vcpu);
423
424 if (valid) {
425 int ret = __vgic_v2_perform_cpuif_access(vcpu);
426
Mark Rutlandbd7d95c2018-11-09 15:07:11 +0000427 if (ret == 1)
Dave Martinba4f4cb2018-05-02 13:23:07 +0100428 return true;
Christoffer Dalldc251402017-10-03 13:16:04 +0200429
Mark Rutlandbd7d95c2018-11-09 15:07:11 +0000430 /* Promote an illegal access to an SError.*/
431 if (ret == -1)
Christoffer Dalldc251402017-10-03 13:16:04 +0200432 *exit_code = ARM_EXCEPTION_EL1_SERROR;
Dave Martin7846b312018-05-02 13:36:48 +0100433
434 goto exit;
Christoffer Dalldc251402017-10-03 13:16:04 +0200435 }
436 }
437
438 if (static_branch_unlikely(&vgic_v3_cpuif_trap) &&
Christoffer Dalldc251402017-10-03 13:16:04 +0200439 (kvm_vcpu_trap_get_class(vcpu) == ESR_ELx_EC_SYS64 ||
440 kvm_vcpu_trap_get_class(vcpu) == ESR_ELx_EC_CP15_32)) {
441 int ret = __vgic_v3_perform_cpuif_access(vcpu);
442
Mark Rutlandbd7d95c2018-11-09 15:07:11 +0000443 if (ret == 1)
Dave Martinba4f4cb2018-05-02 13:23:07 +0100444 return true;
Christoffer Dalldc251402017-10-03 13:16:04 +0200445 }
446
Dave Martin7846b312018-05-02 13:36:48 +0100447exit:
Christoffer Dalldc251402017-10-03 13:16:04 +0200448 /* Return to the host kernel and handle the exit */
449 return false;
450}
451
Marc Zyngier55e37482018-05-29 13:11:16 +0100452static inline bool __hyp_text __needs_ssbd_off(struct kvm_vcpu *vcpu)
453{
454 if (!cpus_have_const_cap(ARM64_SSBD))
455 return false;
456
457 return !(vcpu->arch.workaround_flags & VCPU_WORKAROUND_2_FLAG);
458}
459
460static void __hyp_text __set_guest_arch_workaround_state(struct kvm_vcpu *vcpu)
461{
462#ifdef CONFIG_ARM64_SSBD
463 /*
464 * The host runs with the workaround always present. If the
465 * guest wants it disabled, so be it...
466 */
467 if (__needs_ssbd_off(vcpu) &&
468 __hyp_this_cpu_read(arm64_ssbd_callback_required))
469 arm_smccc_1_1_smc(ARM_SMCCC_ARCH_WORKAROUND_2, 0, NULL);
470#endif
471}
472
473static void __hyp_text __set_host_arch_workaround_state(struct kvm_vcpu *vcpu)
474{
475#ifdef CONFIG_ARM64_SSBD
476 /*
477 * If the guest has disabled the workaround, bring it back on.
478 */
479 if (__needs_ssbd_off(vcpu) &&
480 __hyp_this_cpu_read(arm64_ssbd_callback_required))
481 arm_smccc_1_1_smc(ARM_SMCCC_ARCH_WORKAROUND_2, 1, NULL);
482#endif
483}
484
James Morseb7c50fa2019-05-22 18:47:04 +0100485/**
486 * Disable host events, enable guest events
487 */
488static bool __hyp_text __pmu_switch_to_guest(struct kvm_cpu_context *host_ctxt)
489{
490 struct kvm_host_data *host;
491 struct kvm_pmu_events *pmu;
492
493 host = container_of(host_ctxt, struct kvm_host_data, host_ctxt);
494 pmu = &host->pmu_events;
495
496 if (pmu->events_host)
497 write_sysreg(pmu->events_host, pmcntenclr_el0);
498
499 if (pmu->events_guest)
500 write_sysreg(pmu->events_guest, pmcntenset_el0);
501
502 return (pmu->events_host || pmu->events_guest);
503}
504
505/**
506 * Disable guest events, enable host events
507 */
508static void __hyp_text __pmu_switch_to_host(struct kvm_cpu_context *host_ctxt)
509{
510 struct kvm_host_data *host;
511 struct kvm_pmu_events *pmu;
512
513 host = container_of(host_ctxt, struct kvm_host_data, host_ctxt);
514 pmu = &host->pmu_events;
515
516 if (pmu->events_guest)
517 write_sysreg(pmu->events_guest, pmcntenclr_el0);
518
519 if (pmu->events_host)
520 write_sysreg(pmu->events_host, pmcntenset_el0);
521}
522
Christoffer Dall3f5c90b2017-10-03 14:02:12 +0200523/* Switch to the guest for VHE systems running in EL2 */
524int kvm_vcpu_run_vhe(struct kvm_vcpu *vcpu)
525{
526 struct kvm_cpu_context *host_ctxt;
527 struct kvm_cpu_context *guest_ctxt;
Christoffer Dall3f5c90b2017-10-03 14:02:12 +0200528 u64 exit_code;
529
Christoffer Dall86d05682016-12-23 00:20:38 +0100530 host_ctxt = vcpu->arch.host_cpu_context;
Christoffer Dall3f5c90b2017-10-03 14:02:12 +0200531 host_ctxt->__hyp_running_vcpu = vcpu;
532 guest_ctxt = &vcpu->arch.ctxt;
533
Christoffer Dallf8374532017-10-10 22:19:31 +0200534 sysreg_save_host_state_vhe(host_ctxt);
Christoffer Dall3f5c90b2017-10-03 14:02:12 +0200535
Marc Zyngier1e4448c2018-12-06 17:31:24 +0000536 /*
537 * ARM erratum 1165522 requires us to configure both stage 1 and
538 * stage 2 translation for the guest context before we clear
539 * HCR_EL2.TGE.
540 *
541 * We have already configured the guest's stage 1 translation in
542 * kvm_vcpu_load_sysregs above. We must now call __activate_vm
543 * before __activate_traps, because __activate_vm configures
544 * stage 2 translation, and __activate_traps clear HCR_EL2.TGE
545 * (among other things).
546 */
Christoffer Dall34f8cdf2017-10-10 13:25:21 +0200547 __activate_vm(vcpu->kvm);
Marc Zyngierbfae1b92018-12-06 17:31:21 +0000548 __activate_traps(vcpu);
Christoffer Dall3f5c90b2017-10-03 14:02:12 +0200549
Christoffer Dallf8374532017-10-10 22:19:31 +0200550 sysreg_restore_guest_state_vhe(guest_ctxt);
Christoffer Dall3f5c90b2017-10-03 14:02:12 +0200551 __debug_switch_to_guest(vcpu);
552
Marc Zyngier55e37482018-05-29 13:11:16 +0100553 __set_guest_arch_workaround_state(vcpu);
554
Christoffer Dall3f5c90b2017-10-03 14:02:12 +0200555 do {
556 /* Jump in the fire! */
557 exit_code = __guest_enter(vcpu, host_ctxt);
558
559 /* And we're baaack! */
560 } while (fixup_guest_exit(vcpu, &exit_code));
561
Marc Zyngier55e37482018-05-29 13:11:16 +0100562 __set_host_arch_workaround_state(vcpu);
563
Christoffer Dallf8374532017-10-10 22:19:31 +0200564 sysreg_save_guest_state_vhe(guest_ctxt);
Christoffer Dall3f5c90b2017-10-03 14:02:12 +0200565
566 __deactivate_traps(vcpu);
Christoffer Dall3f5c90b2017-10-03 14:02:12 +0200567
Christoffer Dallf8374532017-10-10 22:19:31 +0200568 sysreg_restore_host_state_vhe(host_ctxt);
Christoffer Dall3f5c90b2017-10-03 14:02:12 +0200569
Dave Martine6b673b2018-04-06 14:55:59 +0100570 if (vcpu->arch.flags & KVM_ARM64_FP_ENABLED)
Christoffer Dallb9f8ca42017-12-27 22:12:12 +0100571 __fpsimd_save_fpexc32(vcpu);
Christoffer Dall3f5c90b2017-10-03 14:02:12 +0200572
Christoffer Dall3f5c90b2017-10-03 14:02:12 +0200573 __debug_switch_to_host(vcpu);
574
575 return exit_code;
576}
James Morse7d826022019-01-24 16:32:54 +0000577NOKPROBE_SYMBOL(kvm_vcpu_run_vhe);
Christoffer Dall3f5c90b2017-10-03 14:02:12 +0200578
579/* Switch to the guest for legacy non-VHE systems */
580int __hyp_text __kvm_vcpu_run_nvhe(struct kvm_vcpu *vcpu)
Marc Zyngierbe901e92015-10-21 09:57:10 +0100581{
582 struct kvm_cpu_context *host_ctxt;
583 struct kvm_cpu_context *guest_ctxt;
Andrew Murray3d91bef2019-04-09 20:22:14 +0100584 bool pmu_switch_needed;
Marc Zyngierbe901e92015-10-21 09:57:10 +0100585 u64 exit_code;
586
Julien Thierry85738e02019-01-31 14:58:48 +0000587 /*
588 * Having IRQs masked via PMR when entering the guest means the GIC
589 * will not signal the CPU of interrupts of lower priority, and the
590 * only way to get out will be via guest exceptions.
591 * Naturally, we want to avoid this.
592 */
593 if (system_uses_irq_prio_masking()) {
Julien Thierrybd82d4b2019-06-11 10:38:10 +0100594 gic_write_pmr(GIC_PRIO_IRQON | GIC_PRIO_PSR_I_SET);
Julien Thierry85738e02019-01-31 14:58:48 +0000595 dsb(sy);
596 }
597
Marc Zyngierbe901e92015-10-21 09:57:10 +0100598 vcpu = kern_hyp_va(vcpu);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100599
600 host_ctxt = kern_hyp_va(vcpu->arch.host_cpu_context);
James Morsec97e1662018-01-08 15:38:05 +0000601 host_ctxt->__hyp_running_vcpu = vcpu;
Marc Zyngierbe901e92015-10-21 09:57:10 +0100602 guest_ctxt = &vcpu->arch.ctxt;
603
Andrew Murray3d91bef2019-04-09 20:22:14 +0100604 pmu_switch_needed = __pmu_switch_to_guest(host_ctxt);
605
Christoffer Dall4cdecab2017-10-10 22:40:13 +0200606 __sysreg_save_state_nvhe(host_ctxt);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100607
Christoffer Dall34f8cdf2017-10-10 13:25:21 +0200608 __activate_vm(kern_hyp_va(vcpu->kvm));
Marc Zyngierbfae1b92018-12-06 17:31:21 +0000609 __activate_traps(vcpu);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100610
Christoffer Dall771621b2017-10-04 23:42:32 +0200611 __hyp_vgic_restore_state(vcpu);
Christoffer Dall688c50a2017-01-04 16:10:28 +0100612 __timer_enable_traps(vcpu);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100613
614 /*
615 * We must restore the 32-bit state before the sysregs, thanks
Marc Zyngier674e7012016-08-16 15:03:01 +0100616 * to erratum #852523 (Cortex-A57) or #853709 (Cortex-A72).
Marc Zyngierbe901e92015-10-21 09:57:10 +0100617 */
618 __sysreg32_restore_state(vcpu);
Christoffer Dall4cdecab2017-10-10 22:40:13 +0200619 __sysreg_restore_state_nvhe(guest_ctxt);
Christoffer Dall014c4c72017-10-10 20:10:08 +0200620 __debug_switch_to_guest(vcpu);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100621
Marc Zyngier55e37482018-05-29 13:11:16 +0100622 __set_guest_arch_workaround_state(vcpu);
623
Christoffer Dalldc251402017-10-03 13:16:04 +0200624 do {
625 /* Jump in the fire! */
626 exit_code = __guest_enter(vcpu, host_ctxt);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100627
Christoffer Dalldc251402017-10-03 13:16:04 +0200628 /* And we're baaack! */
629 } while (fixup_guest_exit(vcpu, &exit_code));
Marc Zyngier59da1cb2017-06-09 12:49:33 +0100630
Marc Zyngier55e37482018-05-29 13:11:16 +0100631 __set_host_arch_workaround_state(vcpu);
632
Christoffer Dall4cdecab2017-10-10 22:40:13 +0200633 __sysreg_save_state_nvhe(guest_ctxt);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100634 __sysreg32_save_state(vcpu);
Christoffer Dall688c50a2017-01-04 16:10:28 +0100635 __timer_disable_traps(vcpu);
Christoffer Dall771621b2017-10-04 23:42:32 +0200636 __hyp_vgic_save_state(vcpu);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100637
638 __deactivate_traps(vcpu);
639 __deactivate_vm(vcpu);
640
Christoffer Dall4cdecab2017-10-10 22:40:13 +0200641 __sysreg_restore_state_nvhe(host_ctxt);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100642
Dave Martine6b673b2018-04-06 14:55:59 +0100643 if (vcpu->arch.flags & KVM_ARM64_FP_ENABLED)
Christoffer Dallb9f8ca42017-12-27 22:12:12 +0100644 __fpsimd_save_fpexc32(vcpu);
Marc Zyngierc13d1682015-10-26 08:34:09 +0000645
Will Deaconf85279b2016-09-22 11:35:43 +0100646 /*
647 * This must come after restoring the host sysregs, since a non-VHE
648 * system may enable SPE here and make use of the TTBRs.
649 */
Christoffer Dall014c4c72017-10-10 20:10:08 +0200650 __debug_switch_to_host(vcpu);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100651
Andrew Murray3d91bef2019-04-09 20:22:14 +0100652 if (pmu_switch_needed)
653 __pmu_switch_to_host(host_ctxt);
654
Julien Thierry85738e02019-01-31 14:58:48 +0000655 /* Returning to host will clear PSR.I, remask PMR if needed */
656 if (system_uses_irq_prio_masking())
657 gic_write_pmr(GIC_PRIO_IRQOFF);
658
Marc Zyngierbe901e92015-10-21 09:57:10 +0100659 return exit_code;
660}
Marc Zyngier53fd5b62015-10-25 15:21:52 +0000661
662static const char __hyp_panic_string[] = "HYP panic:\nPS:%08llx PC:%016llx ESR:%08llx\nFAR:%016llx HPFAR:%016llx PAR:%016llx\nVCPU:%p\n";
663
James Morsec97e1662018-01-08 15:38:05 +0000664static void __hyp_text __hyp_call_panic_nvhe(u64 spsr, u64 elr, u64 par,
Christoffer Dall8f17f5e2017-10-09 21:43:50 +0200665 struct kvm_cpu_context *__host_ctxt)
Marc Zyngier53fd5b62015-10-25 15:21:52 +0000666{
Christoffer Dall8f17f5e2017-10-09 21:43:50 +0200667 struct kvm_vcpu *vcpu;
Marc Zyngiercf7df132016-06-30 18:40:35 +0100668 unsigned long str_va;
Marc Zyngier253dcbd2015-11-17 14:07:45 +0000669
Christoffer Dall8f17f5e2017-10-09 21:43:50 +0200670 vcpu = __host_ctxt->__hyp_running_vcpu;
671
672 if (read_sysreg(vttbr_el2)) {
673 __timer_disable_traps(vcpu);
674 __deactivate_traps(vcpu);
675 __deactivate_vm(vcpu);
Christoffer Dall4cdecab2017-10-10 22:40:13 +0200676 __sysreg_restore_state_nvhe(__host_ctxt);
Christoffer Dall8f17f5e2017-10-09 21:43:50 +0200677 }
678
Marc Zyngiercf7df132016-06-30 18:40:35 +0100679 /*
680 * Force the panic string to be loaded from the literal pool,
681 * making sure it is a kernel address and not a PC-relative
682 * reference.
683 */
684 asm volatile("ldr %0, =__hyp_panic_string" : "=r" (str_va));
685
686 __hyp_do_panic(str_va,
Dave Martinfdec2a92019-04-06 11:29:40 +0100687 spsr, elr,
688 read_sysreg(esr_el2), read_sysreg_el2(SYS_FAR),
James Morsec97e1662018-01-08 15:38:05 +0000689 read_sysreg(hpfar_el2), par, vcpu);
Marc Zyngier253dcbd2015-11-17 14:07:45 +0000690}
691
Christoffer Dall8f17f5e2017-10-09 21:43:50 +0200692static void __hyp_call_panic_vhe(u64 spsr, u64 elr, u64 par,
693 struct kvm_cpu_context *host_ctxt)
Marc Zyngier253dcbd2015-11-17 14:07:45 +0000694{
Christoffer Dall8f17f5e2017-10-09 21:43:50 +0200695 struct kvm_vcpu *vcpu;
696 vcpu = host_ctxt->__hyp_running_vcpu;
697
698 __deactivate_traps(vcpu);
Christoffer Dallf8374532017-10-10 22:19:31 +0200699 sysreg_restore_host_state_vhe(host_ctxt);
Christoffer Dall8f17f5e2017-10-09 21:43:50 +0200700
Marc Zyngier253dcbd2015-11-17 14:07:45 +0000701 panic(__hyp_panic_string,
702 spsr, elr,
Dave Martinfdec2a92019-04-06 11:29:40 +0100703 read_sysreg_el2(SYS_ESR), read_sysreg_el2(SYS_FAR),
James Morsec97e1662018-01-08 15:38:05 +0000704 read_sysreg(hpfar_el2), par, vcpu);
Marc Zyngier253dcbd2015-11-17 14:07:45 +0000705}
James Morse7d826022019-01-24 16:32:54 +0000706NOKPROBE_SYMBOL(__hyp_call_panic_vhe);
Marc Zyngier253dcbd2015-11-17 14:07:45 +0000707
Christoffer Dall4464e212017-10-08 17:01:56 +0200708void __hyp_text __noreturn hyp_panic(struct kvm_cpu_context *host_ctxt)
Marc Zyngier253dcbd2015-11-17 14:07:45 +0000709{
Dave Martinfdec2a92019-04-06 11:29:40 +0100710 u64 spsr = read_sysreg_el2(SYS_SPSR);
711 u64 elr = read_sysreg_el2(SYS_ELR);
Marc Zyngier53fd5b62015-10-25 15:21:52 +0000712 u64 par = read_sysreg(par_el1);
713
Christoffer Dall8f17f5e2017-10-09 21:43:50 +0200714 if (!has_vhe())
715 __hyp_call_panic_nvhe(spsr, elr, par, host_ctxt);
716 else
717 __hyp_call_panic_vhe(spsr, elr, par, host_ctxt);
Marc Zyngier53fd5b62015-10-25 15:21:52 +0000718
719 unreachable();
720}