blob: fd845dda007a89f2d781d3282661e2b7f8a9b955 [file] [log] [blame]
Marc Zyngierbe901e92015-10-21 09:57:10 +01001/*
2 * Copyright (C) 2015 - ARM Ltd
3 * Author: Marc Zyngier <marc.zyngier@arm.com>
4 *
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.
8 *
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.
13 *
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/>.
16 */
17
Marc Zyngier5f05a722015-10-28 15:06:47 +000018#include <linux/types.h>
Vladimir Murzin5a7a8422016-09-12 15:49:15 +010019#include <linux/jump_label.h>
Marc Zyngier90348682018-01-03 16:38:37 +000020#include <uapi/linux/psci.h>
Vladimir Murzin5a7a8422016-09-12 15:49:15 +010021
Marc Zyngiera4097b32018-02-06 17:56:13 +000022#include <kvm/arm_psci.h>
23
Marc Zyngier68908bf2015-01-29 15:47:55 +000024#include <asm/kvm_asm.h>
Marc Zyngierfb5ee362016-09-06 09:28:45 +010025#include <asm/kvm_emulate.h>
Marc Zyngier13720a52016-01-28 13:44:07 +000026#include <asm/kvm_hyp.h>
Marc Zyngierd6811982017-10-23 17:11:14 +010027#include <asm/kvm_mmu.h>
Suzuki K Poulose82e01912016-11-08 13:56:21 +000028#include <asm/fpsimd.h>
Alex Bennéee3feebf2017-11-23 12:11:34 +000029#include <asm/debug-monitors.h>
Marc Zyngierbe901e92015-10-21 09:57:10 +010030
Marc Zyngier32876222015-10-28 14:15:45 +000031static bool __hyp_text __fpsimd_enabled_nvhe(void)
32{
33 return !(read_sysreg(cptr_el2) & CPTR_EL2_TFP);
34}
35
36static bool __hyp_text __fpsimd_enabled_vhe(void)
37{
38 return !!(read_sysreg(cpacr_el1) & CPACR_EL1_FPEN);
39}
40
41static hyp_alternate_select(__fpsimd_is_enabled,
42 __fpsimd_enabled_nvhe, __fpsimd_enabled_vhe,
43 ARM64_HAS_VIRT_HOST_EXTN);
44
45bool __hyp_text __fpsimd_enabled(void)
46{
47 return __fpsimd_is_enabled()();
48}
49
Marc Zyngier68908bf2015-01-29 15:47:55 +000050static void __hyp_text __activate_traps_vhe(void)
51{
52 u64 val;
53
54 val = read_sysreg(cpacr_el1);
55 val |= CPACR_EL1_TTA;
Dave Martin17eed272017-10-31 15:51:16 +000056 val &= ~(CPACR_EL1_FPEN | CPACR_EL1_ZEN);
Marc Zyngier68908bf2015-01-29 15:47:55 +000057 write_sysreg(val, cpacr_el1);
58
Marc Zyngier6840bdd2018-01-03 16:38:35 +000059 write_sysreg(kvm_get_hyp_vector(), vbar_el1);
Marc Zyngier68908bf2015-01-29 15:47:55 +000060}
61
62static void __hyp_text __activate_traps_nvhe(void)
63{
64 u64 val;
65
66 val = CPTR_EL2_DEFAULT;
Dave Martin17eed272017-10-31 15:51:16 +000067 val |= CPTR_EL2_TTA | CPTR_EL2_TFP | CPTR_EL2_TZ;
Marc Zyngier68908bf2015-01-29 15:47:55 +000068 write_sysreg(val, cptr_el2);
69}
70
71static hyp_alternate_select(__activate_traps_arch,
72 __activate_traps_nvhe, __activate_traps_vhe,
73 ARM64_HAS_VIRT_HOST_EXTN);
74
Marc Zyngierbe901e92015-10-21 09:57:10 +010075static void __hyp_text __activate_traps(struct kvm_vcpu *vcpu)
76{
Christoffer Dalle72341c2017-12-13 22:56:48 +010077 u64 hcr = vcpu->arch.hcr_el2;
Marc Zyngierbe901e92015-10-21 09:57:10 +010078
79 /*
80 * We are about to set CPTR_EL2.TFP to trap all floating point
81 * register accesses to EL2, however, the ARM ARM clearly states that
82 * traps are only taken to EL2 if the operation would not otherwise
83 * trap to EL1. Therefore, always make sure that for 32-bit guests,
84 * we set FPEXC.EN to prevent traps to EL1, when setting the TFP bit.
Suzuki K Poulose82e01912016-11-08 13:56:21 +000085 * If FP/ASIMD is not implemented, FPEXC is UNDEFINED and any access to
86 * it will cause an exception.
Marc Zyngierbe901e92015-10-21 09:57:10 +010087 */
Christoffer Dalle72341c2017-12-13 22:56:48 +010088 if (vcpu_el1_is_32bit(vcpu) && system_supports_fpsimd()) {
Marc Zyngierbe901e92015-10-21 09:57:10 +010089 write_sysreg(1 << 30, fpexc32_el2);
90 isb();
91 }
Dave Martin93390c02017-10-31 15:50:56 +000092
Christoffer Dalle72341c2017-12-13 22:56:48 +010093 if (cpus_have_const_cap(ARM64_HAS_RAS_EXTN) && (hcr & HCR_VSE))
James Morse4715c142018-01-15 19:39:01 +000094 write_sysreg_s(vcpu->arch.vsesr_el2, SYS_VSESR_EL2);
95
Christoffer Dalle72341c2017-12-13 22:56:48 +010096 write_sysreg(hcr, hcr_el2);
97
Marc Zyngierbe901e92015-10-21 09:57:10 +010098 /* Trap on AArch32 cp15 c15 accesses (EL1 or EL0) */
99 write_sysreg(1 << 15, hstr_el2);
Marc Zyngier21cbe3c2016-12-06 14:34:22 +0000100 /*
101 * Make sure we trap PMU access from EL0 to EL2. Also sanitize
102 * PMSELR_EL0 to make sure it never contains the cycle
103 * counter, which could make a PMXEVCNTR_EL0 access UNDEF at
104 * EL1 instead of being trapped to EL2.
105 */
106 write_sysreg(0, pmselr_el0);
Shannon Zhaod692b8a2015-09-08 15:15:56 +0800107 write_sysreg(ARMV8_PMU_USERENR_MASK, pmuserenr_el0);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100108 write_sysreg(vcpu->arch.mdcr_el2, mdcr_el2);
Marc Zyngier68908bf2015-01-29 15:47:55 +0000109 __activate_traps_arch()();
Marc Zyngierbe901e92015-10-21 09:57:10 +0100110}
111
Marc Zyngier68908bf2015-01-29 15:47:55 +0000112static void __hyp_text __deactivate_traps_vhe(void)
113{
114 extern char vectors[]; /* kernel exception vectors */
Will Deaconf85279b2016-09-22 11:35:43 +0100115 u64 mdcr_el2 = read_sysreg(mdcr_el2);
Marc Zyngier68908bf2015-01-29 15:47:55 +0000116
Will Deaconf85279b2016-09-22 11:35:43 +0100117 mdcr_el2 &= MDCR_EL2_HPMN_MASK |
118 MDCR_EL2_E2PB_MASK << MDCR_EL2_E2PB_SHIFT |
119 MDCR_EL2_TPMS;
120
121 write_sysreg(mdcr_el2, mdcr_el2);
Marc Zyngier68908bf2015-01-29 15:47:55 +0000122 write_sysreg(HCR_HOST_VHE_FLAGS, hcr_el2);
Dave Martin17eed272017-10-31 15:51:16 +0000123 write_sysreg(CPACR_EL1_DEFAULT, cpacr_el1);
Marc Zyngier68908bf2015-01-29 15:47:55 +0000124 write_sysreg(vectors, vbar_el1);
125}
126
127static void __hyp_text __deactivate_traps_nvhe(void)
128{
Will Deaconf85279b2016-09-22 11:35:43 +0100129 u64 mdcr_el2 = read_sysreg(mdcr_el2);
130
131 mdcr_el2 &= MDCR_EL2_HPMN_MASK;
132 mdcr_el2 |= MDCR_EL2_E2PB_MASK << MDCR_EL2_E2PB_SHIFT;
133
134 write_sysreg(mdcr_el2, mdcr_el2);
Marc Zyngier68908bf2015-01-29 15:47:55 +0000135 write_sysreg(HCR_RW, hcr_el2);
136 write_sysreg(CPTR_EL2_DEFAULT, cptr_el2);
137}
138
139static hyp_alternate_select(__deactivate_traps_arch,
140 __deactivate_traps_nvhe, __deactivate_traps_vhe,
141 ARM64_HAS_VIRT_HOST_EXTN);
142
Marc Zyngierbe901e92015-10-21 09:57:10 +0100143static void __hyp_text __deactivate_traps(struct kvm_vcpu *vcpu)
144{
Marc Zyngier44636f92016-09-06 14:02:00 +0100145 /*
146 * If we pended a virtual abort, preserve it until it gets
147 * cleared. See D1.14.3 (Virtual Interrupts) for details, but
148 * the crucial bit is "On taking a vSError interrupt,
149 * HCR_EL2.VSE is cleared to 0."
150 */
151 if (vcpu->arch.hcr_el2 & HCR_VSE)
152 vcpu->arch.hcr_el2 = read_sysreg(hcr_el2);
153
Marc Zyngier68908bf2015-01-29 15:47:55 +0000154 __deactivate_traps_arch()();
Marc Zyngierbe901e92015-10-21 09:57:10 +0100155 write_sysreg(0, hstr_el2);
Shannon Zhaod692b8a2015-09-08 15:15:56 +0800156 write_sysreg(0, pmuserenr_el0);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100157}
158
Christoffer Dall34f8cdf2017-10-10 13:25:21 +0200159static void __hyp_text __activate_vm(struct kvm *kvm)
Marc Zyngierbe901e92015-10-21 09:57:10 +0100160{
Marc Zyngierbe901e92015-10-21 09:57:10 +0100161 write_sysreg(kvm->arch.vttbr, vttbr_el2);
162}
163
164static void __hyp_text __deactivate_vm(struct kvm_vcpu *vcpu)
165{
166 write_sysreg(0, vttbr_el2);
167}
168
Marc Zyngierbe901e92015-10-21 09:57:10 +0100169static void __hyp_text __vgic_save_state(struct kvm_vcpu *vcpu)
170{
Vladimir Murzin5a7a8422016-09-12 15:49:15 +0100171 if (static_branch_unlikely(&kvm_vgic_global_state.gicv3_cpuif))
172 __vgic_v3_save_state(vcpu);
173 else
174 __vgic_v2_save_state(vcpu);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100175}
176
177static void __hyp_text __vgic_restore_state(struct kvm_vcpu *vcpu)
178{
Vladimir Murzin5a7a8422016-09-12 15:49:15 +0100179 if (static_branch_unlikely(&kvm_vgic_global_state.gicv3_cpuif))
180 __vgic_v3_restore_state(vcpu);
181 else
182 __vgic_v2_restore_state(vcpu);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100183}
184
Marc Zyngier5f05a722015-10-28 15:06:47 +0000185static bool __hyp_text __true_value(void)
186{
187 return true;
188}
189
190static bool __hyp_text __false_value(void)
191{
192 return false;
193}
194
195static hyp_alternate_select(__check_arm_834220,
196 __false_value, __true_value,
197 ARM64_WORKAROUND_834220);
198
199static bool __hyp_text __translate_far_to_hpfar(u64 far, u64 *hpfar)
200{
201 u64 par, tmp;
202
203 /*
204 * Resolve the IPA the hard way using the guest VA.
205 *
206 * Stage-1 translation already validated the memory access
207 * rights. As such, we can use the EL1 translation regime, and
208 * don't have to distinguish between EL0 and EL1 access.
209 *
210 * We do need to save/restore PAR_EL1 though, as we haven't
211 * saved the guest context yet, and we may return early...
212 */
213 par = read_sysreg(par_el1);
214 asm volatile("at s1e1r, %0" : : "r" (far));
215 isb();
216
217 tmp = read_sysreg(par_el1);
218 write_sysreg(par, par_el1);
219
220 if (unlikely(tmp & 1))
221 return false; /* Translation failed, back to guest */
222
223 /* Convert PAR to HPFAR format */
224 *hpfar = ((tmp >> 12) & ((1UL << 36) - 1)) << 4;
225 return true;
226}
227
228static bool __hyp_text __populate_fault_info(struct kvm_vcpu *vcpu)
229{
James Morsec60590b2018-01-15 19:39:03 +0000230 u8 ec;
231 u64 esr;
Marc Zyngier5f05a722015-10-28 15:06:47 +0000232 u64 hpfar, far;
233
James Morsec60590b2018-01-15 19:39:03 +0000234 esr = vcpu->arch.fault.esr_el2;
235 ec = ESR_ELx_EC(esr);
Marc Zyngier5f05a722015-10-28 15:06:47 +0000236
237 if (ec != ESR_ELx_EC_DABT_LOW && ec != ESR_ELx_EC_IABT_LOW)
238 return true;
239
240 far = read_sysreg_el2(far);
241
242 /*
243 * The HPFAR can be invalid if the stage 2 fault did not
244 * happen during a stage 1 page table walk (the ESR_EL2.S1PTW
245 * bit is clear) and one of the two following cases are true:
246 * 1. The fault was due to a permission fault
247 * 2. The processor carries errata 834220
248 *
249 * Therefore, for all non S1PTW faults where we either have a
250 * permission fault or the errata workaround is enabled, we
251 * resolve the IPA using the AT instruction.
252 */
253 if (!(esr & ESR_ELx_S1PTW) &&
254 (__check_arm_834220()() || (esr & ESR_ELx_FSC_TYPE) == FSC_PERM)) {
255 if (!__translate_far_to_hpfar(far, &hpfar))
256 return false;
257 } else {
258 hpfar = read_sysreg(hpfar_el2);
259 }
260
261 vcpu->arch.fault.far_el2 = far;
262 vcpu->arch.fault.hpfar_el2 = hpfar;
263 return true;
264}
265
Alex Bennéee3feebf2017-11-23 12:11:34 +0000266/* Skip an instruction which has been emulated. Returns true if
267 * execution can continue or false if we need to exit hyp mode because
268 * single-step was in effect.
269 */
270static bool __hyp_text __skip_instr(struct kvm_vcpu *vcpu)
Marc Zyngierfb5ee362016-09-06 09:28:45 +0100271{
272 *vcpu_pc(vcpu) = read_sysreg_el2(elr);
273
274 if (vcpu_mode_is_32bit(vcpu)) {
275 vcpu->arch.ctxt.gp_regs.regs.pstate = read_sysreg_el2(spsr);
276 kvm_skip_instr32(vcpu, kvm_vcpu_trap_il_is32bit(vcpu));
277 write_sysreg_el2(vcpu->arch.ctxt.gp_regs.regs.pstate, spsr);
278 } else {
279 *vcpu_pc(vcpu) += 4;
280 }
281
282 write_sysreg_el2(*vcpu_pc(vcpu), elr);
Alex Bennéee3feebf2017-11-23 12:11:34 +0000283
284 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) {
285 vcpu->arch.fault.esr_el2 =
286 (ESR_ELx_EC_SOFTSTP_LOW << ESR_ELx_EC_SHIFT) | 0x22;
287 return false;
288 } else {
289 return true;
290 }
Marc Zyngierfb5ee362016-09-06 09:28:45 +0100291}
292
Christoffer Dalldc251402017-10-03 13:16:04 +0200293/*
294 * Return true when we were able to fixup the guest exit and should return to
295 * the guest, false when we should restore the host state and return to the
296 * main run loop.
297 */
298static bool __hyp_text fixup_guest_exit(struct kvm_vcpu *vcpu, u64 *exit_code)
299{
300 if (ARM_EXCEPTION_CODE(*exit_code) != ARM_EXCEPTION_IRQ)
301 vcpu->arch.fault.esr_el2 = read_sysreg_el2(esr);
302
303 /*
304 * We're using the raw exception code in order to only process
305 * the trap if no SError is pending. We will come back to the
306 * same PC once the SError has been injected, and replay the
307 * trapping instruction.
308 */
309 if (*exit_code == ARM_EXCEPTION_TRAP && !__populate_fault_info(vcpu))
310 return true;
311
312 if (static_branch_unlikely(&vgic_v2_cpuif_trap) &&
313 *exit_code == ARM_EXCEPTION_TRAP) {
314 bool valid;
315
316 valid = kvm_vcpu_trap_get_class(vcpu) == ESR_ELx_EC_DABT_LOW &&
317 kvm_vcpu_trap_get_fault_type(vcpu) == FSC_FAULT &&
318 kvm_vcpu_dabt_isvalid(vcpu) &&
319 !kvm_vcpu_dabt_isextabt(vcpu) &&
320 !kvm_vcpu_dabt_iss1tw(vcpu);
321
322 if (valid) {
323 int ret = __vgic_v2_perform_cpuif_access(vcpu);
324
325 if (ret == 1) {
326 if (__skip_instr(vcpu))
327 return true;
328 else
329 *exit_code = ARM_EXCEPTION_TRAP;
330 }
331
332 if (ret == -1) {
333 /* Promote an illegal access to an
334 * SError. If we would be returning
335 * due to single-step clear the SS
336 * bit so handle_exit knows what to
337 * do after dealing with the error.
338 */
339 if (!__skip_instr(vcpu))
340 *vcpu_cpsr(vcpu) &= ~DBG_SPSR_SS;
341 *exit_code = ARM_EXCEPTION_EL1_SERROR;
342 }
343 }
344 }
345
346 if (static_branch_unlikely(&vgic_v3_cpuif_trap) &&
347 *exit_code == ARM_EXCEPTION_TRAP &&
348 (kvm_vcpu_trap_get_class(vcpu) == ESR_ELx_EC_SYS64 ||
349 kvm_vcpu_trap_get_class(vcpu) == ESR_ELx_EC_CP15_32)) {
350 int ret = __vgic_v3_perform_cpuif_access(vcpu);
351
352 if (ret == 1) {
353 if (__skip_instr(vcpu))
354 return true;
355 else
356 *exit_code = ARM_EXCEPTION_TRAP;
357 }
358 }
359
360 /* Return to the host kernel and handle the exit */
361 return false;
362}
363
Christoffer Dall3f5c90b2017-10-03 14:02:12 +0200364/* Switch to the guest for VHE systems running in EL2 */
365int kvm_vcpu_run_vhe(struct kvm_vcpu *vcpu)
366{
367 struct kvm_cpu_context *host_ctxt;
368 struct kvm_cpu_context *guest_ctxt;
369 bool fp_enabled;
370 u64 exit_code;
371
Christoffer Dall86d05682016-12-23 00:20:38 +0100372 host_ctxt = vcpu->arch.host_cpu_context;
Christoffer Dall3f5c90b2017-10-03 14:02:12 +0200373 host_ctxt->__hyp_running_vcpu = vcpu;
374 guest_ctxt = &vcpu->arch.ctxt;
375
Christoffer Dallf8374532017-10-10 22:19:31 +0200376 sysreg_save_host_state_vhe(host_ctxt);
Christoffer Dall3f5c90b2017-10-03 14:02:12 +0200377
378 __activate_traps(vcpu);
Christoffer Dall34f8cdf2017-10-10 13:25:21 +0200379 __activate_vm(vcpu->kvm);
Christoffer Dall3f5c90b2017-10-03 14:02:12 +0200380
381 __vgic_restore_state(vcpu);
Christoffer Dall3f5c90b2017-10-03 14:02:12 +0200382
383 /*
384 * We must restore the 32-bit state before the sysregs, thanks
385 * to erratum #852523 (Cortex-A57) or #853709 (Cortex-A72).
386 */
387 __sysreg32_restore_state(vcpu);
Christoffer Dallf8374532017-10-10 22:19:31 +0200388 sysreg_restore_guest_state_vhe(guest_ctxt);
Christoffer Dall3f5c90b2017-10-03 14:02:12 +0200389 __debug_switch_to_guest(vcpu);
390
391 do {
392 /* Jump in the fire! */
393 exit_code = __guest_enter(vcpu, host_ctxt);
394
395 /* And we're baaack! */
396 } while (fixup_guest_exit(vcpu, &exit_code));
397
398 fp_enabled = __fpsimd_enabled();
399
Christoffer Dallf8374532017-10-10 22:19:31 +0200400 sysreg_save_guest_state_vhe(guest_ctxt);
Christoffer Dall3f5c90b2017-10-03 14:02:12 +0200401 __sysreg32_save_state(vcpu);
Christoffer Dall3f5c90b2017-10-03 14:02:12 +0200402 __vgic_save_state(vcpu);
403
404 __deactivate_traps(vcpu);
Christoffer Dall3f5c90b2017-10-03 14:02:12 +0200405
Christoffer Dallf8374532017-10-10 22:19:31 +0200406 sysreg_restore_host_state_vhe(host_ctxt);
Christoffer Dall3f5c90b2017-10-03 14:02:12 +0200407
408 if (fp_enabled) {
409 __fpsimd_save_state(&guest_ctxt->gp_regs.fp_regs);
410 __fpsimd_restore_state(&host_ctxt->gp_regs.fp_regs);
411 }
412
Christoffer Dall3f5c90b2017-10-03 14:02:12 +0200413 __debug_switch_to_host(vcpu);
414
415 return exit_code;
416}
417
418/* Switch to the guest for legacy non-VHE systems */
419int __hyp_text __kvm_vcpu_run_nvhe(struct kvm_vcpu *vcpu)
Marc Zyngierbe901e92015-10-21 09:57:10 +0100420{
421 struct kvm_cpu_context *host_ctxt;
422 struct kvm_cpu_context *guest_ctxt;
Marc Zyngierc13d1682015-10-26 08:34:09 +0000423 bool fp_enabled;
Marc Zyngierbe901e92015-10-21 09:57:10 +0100424 u64 exit_code;
425
426 vcpu = kern_hyp_va(vcpu);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100427
428 host_ctxt = kern_hyp_va(vcpu->arch.host_cpu_context);
James Morsec97e1662018-01-08 15:38:05 +0000429 host_ctxt->__hyp_running_vcpu = vcpu;
Marc Zyngierbe901e92015-10-21 09:57:10 +0100430 guest_ctxt = &vcpu->arch.ctxt;
431
Christoffer Dallf8374532017-10-10 22:19:31 +0200432 __sysreg_save_host_state_nvhe(host_ctxt);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100433
434 __activate_traps(vcpu);
Christoffer Dall34f8cdf2017-10-10 13:25:21 +0200435 __activate_vm(kern_hyp_va(vcpu->kvm));
Marc Zyngierbe901e92015-10-21 09:57:10 +0100436
437 __vgic_restore_state(vcpu);
Christoffer Dall688c50a2017-01-04 16:10:28 +0100438 __timer_enable_traps(vcpu);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100439
440 /*
441 * We must restore the 32-bit state before the sysregs, thanks
Marc Zyngier674e7012016-08-16 15:03:01 +0100442 * to erratum #852523 (Cortex-A57) or #853709 (Cortex-A72).
Marc Zyngierbe901e92015-10-21 09:57:10 +0100443 */
444 __sysreg32_restore_state(vcpu);
Christoffer Dallf8374532017-10-10 22:19:31 +0200445 __sysreg_restore_guest_state_nvhe(guest_ctxt);
Christoffer Dall014c4c72017-10-10 20:10:08 +0200446 __debug_switch_to_guest(vcpu);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100447
Christoffer Dalldc251402017-10-03 13:16:04 +0200448 do {
449 /* Jump in the fire! */
450 exit_code = __guest_enter(vcpu, host_ctxt);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100451
Christoffer Dalldc251402017-10-03 13:16:04 +0200452 /* And we're baaack! */
453 } while (fixup_guest_exit(vcpu, &exit_code));
Marc Zyngier59da1cb2017-06-09 12:49:33 +0100454
Shanker Donthineniec82b562018-01-05 14:28:59 -0600455 if (cpus_have_const_cap(ARM64_HARDEN_BP_POST_GUEST_EXIT)) {
456 u32 midr = read_cpuid_id();
457
458 /* Apply BTAC predictors mitigation to all Falkor chips */
Shanker Donthineni16e574d2018-02-11 19:16:15 -0600459 if (((midr & MIDR_CPU_MODEL_MASK) == MIDR_QCOM_FALKOR) ||
460 ((midr & MIDR_CPU_MODEL_MASK) == MIDR_QCOM_FALKOR_V1)) {
Shanker Donthineniec82b562018-01-05 14:28:59 -0600461 __qcom_hyp_sanitize_btac_predictors();
Shanker Donthineni16e574d2018-02-11 19:16:15 -0600462 }
Shanker Donthineniec82b562018-01-05 14:28:59 -0600463 }
464
Marc Zyngierc13d1682015-10-26 08:34:09 +0000465 fp_enabled = __fpsimd_enabled();
466
Christoffer Dallf8374532017-10-10 22:19:31 +0200467 __sysreg_save_guest_state_nvhe(guest_ctxt);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100468 __sysreg32_save_state(vcpu);
Christoffer Dall688c50a2017-01-04 16:10:28 +0100469 __timer_disable_traps(vcpu);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100470 __vgic_save_state(vcpu);
471
472 __deactivate_traps(vcpu);
473 __deactivate_vm(vcpu);
474
Christoffer Dallf8374532017-10-10 22:19:31 +0200475 __sysreg_restore_host_state_nvhe(host_ctxt);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100476
Marc Zyngierc13d1682015-10-26 08:34:09 +0000477 if (fp_enabled) {
478 __fpsimd_save_state(&guest_ctxt->gp_regs.fp_regs);
479 __fpsimd_restore_state(&host_ctxt->gp_regs.fp_regs);
480 }
481
Will Deaconf85279b2016-09-22 11:35:43 +0100482 /*
483 * This must come after restoring the host sysregs, since a non-VHE
484 * system may enable SPE here and make use of the TTBRs.
485 */
Christoffer Dall014c4c72017-10-10 20:10:08 +0200486 __debug_switch_to_host(vcpu);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100487
488 return exit_code;
489}
Marc Zyngier53fd5b62015-10-25 15:21:52 +0000490
491static const char __hyp_panic_string[] = "HYP panic:\nPS:%08llx PC:%016llx ESR:%08llx\nFAR:%016llx HPFAR:%016llx PAR:%016llx\nVCPU:%p\n";
492
James Morsec97e1662018-01-08 15:38:05 +0000493static void __hyp_text __hyp_call_panic_nvhe(u64 spsr, u64 elr, u64 par,
Christoffer Dall8f17f5e2017-10-09 21:43:50 +0200494 struct kvm_cpu_context *__host_ctxt)
Marc Zyngier53fd5b62015-10-25 15:21:52 +0000495{
Christoffer Dall8f17f5e2017-10-09 21:43:50 +0200496 struct kvm_vcpu *vcpu;
Marc Zyngiercf7df132016-06-30 18:40:35 +0100497 unsigned long str_va;
Marc Zyngier253dcbd2015-11-17 14:07:45 +0000498
Christoffer Dall8f17f5e2017-10-09 21:43:50 +0200499 vcpu = __host_ctxt->__hyp_running_vcpu;
500
501 if (read_sysreg(vttbr_el2)) {
502 __timer_disable_traps(vcpu);
503 __deactivate_traps(vcpu);
504 __deactivate_vm(vcpu);
Christoffer Dallf8374532017-10-10 22:19:31 +0200505 __sysreg_restore_host_state_nvhe(__host_ctxt);
Christoffer Dall8f17f5e2017-10-09 21:43:50 +0200506 }
507
Marc Zyngiercf7df132016-06-30 18:40:35 +0100508 /*
509 * Force the panic string to be loaded from the literal pool,
510 * making sure it is a kernel address and not a PC-relative
511 * reference.
512 */
513 asm volatile("ldr %0, =__hyp_panic_string" : "=r" (str_va));
514
515 __hyp_do_panic(str_va,
Marc Zyngier253dcbd2015-11-17 14:07:45 +0000516 spsr, elr,
517 read_sysreg(esr_el2), read_sysreg_el2(far),
James Morsec97e1662018-01-08 15:38:05 +0000518 read_sysreg(hpfar_el2), par, vcpu);
Marc Zyngier253dcbd2015-11-17 14:07:45 +0000519}
520
Christoffer Dall8f17f5e2017-10-09 21:43:50 +0200521static void __hyp_call_panic_vhe(u64 spsr, u64 elr, u64 par,
522 struct kvm_cpu_context *host_ctxt)
Marc Zyngier253dcbd2015-11-17 14:07:45 +0000523{
Christoffer Dall8f17f5e2017-10-09 21:43:50 +0200524 struct kvm_vcpu *vcpu;
525 vcpu = host_ctxt->__hyp_running_vcpu;
526
527 __deactivate_traps(vcpu);
Christoffer Dallf8374532017-10-10 22:19:31 +0200528 sysreg_restore_host_state_vhe(host_ctxt);
Christoffer Dall8f17f5e2017-10-09 21:43:50 +0200529
Marc Zyngier253dcbd2015-11-17 14:07:45 +0000530 panic(__hyp_panic_string,
531 spsr, elr,
532 read_sysreg_el2(esr), read_sysreg_el2(far),
James Morsec97e1662018-01-08 15:38:05 +0000533 read_sysreg(hpfar_el2), par, vcpu);
Marc Zyngier253dcbd2015-11-17 14:07:45 +0000534}
535
Christoffer Dall4464e212017-10-08 17:01:56 +0200536void __hyp_text __noreturn hyp_panic(struct kvm_cpu_context *host_ctxt)
Marc Zyngier253dcbd2015-11-17 14:07:45 +0000537{
538 u64 spsr = read_sysreg_el2(spsr);
539 u64 elr = read_sysreg_el2(elr);
Marc Zyngier53fd5b62015-10-25 15:21:52 +0000540 u64 par = read_sysreg(par_el1);
541
Christoffer Dall8f17f5e2017-10-09 21:43:50 +0200542 if (!has_vhe())
543 __hyp_call_panic_nvhe(spsr, elr, par, host_ctxt);
544 else
545 __hyp_call_panic_vhe(spsr, elr, par, host_ctxt);
Marc Zyngier53fd5b62015-10-25 15:21:52 +0000546
547 unreachable();
548}