blob: b425b8aab45b3aab9077045d843cf875141afb32 [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 Zyngier68908bf2015-01-29 15:47:55 +000022#include <asm/kvm_asm.h>
Marc Zyngierfb5ee362016-09-06 09:28:45 +010023#include <asm/kvm_emulate.h>
Marc Zyngier13720a52016-01-28 13:44:07 +000024#include <asm/kvm_hyp.h>
Suzuki K Poulose82e01912016-11-08 13:56:21 +000025#include <asm/fpsimd.h>
Alex Bennéee3feebf2017-11-23 12:11:34 +000026#include <asm/debug-monitors.h>
Marc Zyngierbe901e92015-10-21 09:57:10 +010027
Marc Zyngier32876222015-10-28 14:15:45 +000028static bool __hyp_text __fpsimd_enabled_nvhe(void)
29{
30 return !(read_sysreg(cptr_el2) & CPTR_EL2_TFP);
31}
32
33static bool __hyp_text __fpsimd_enabled_vhe(void)
34{
35 return !!(read_sysreg(cpacr_el1) & CPACR_EL1_FPEN);
36}
37
38static hyp_alternate_select(__fpsimd_is_enabled,
39 __fpsimd_enabled_nvhe, __fpsimd_enabled_vhe,
40 ARM64_HAS_VIRT_HOST_EXTN);
41
42bool __hyp_text __fpsimd_enabled(void)
43{
44 return __fpsimd_is_enabled()();
45}
46
Marc Zyngier68908bf2015-01-29 15:47:55 +000047static void __hyp_text __activate_traps_vhe(void)
48{
49 u64 val;
50
51 val = read_sysreg(cpacr_el1);
52 val |= CPACR_EL1_TTA;
Dave Martin17eed272017-10-31 15:51:16 +000053 val &= ~(CPACR_EL1_FPEN | CPACR_EL1_ZEN);
Marc Zyngier68908bf2015-01-29 15:47:55 +000054 write_sysreg(val, cpacr_el1);
55
Marc Zyngier6840bdd2018-01-03 16:38:35 +000056 write_sysreg(kvm_get_hyp_vector(), vbar_el1);
Marc Zyngier68908bf2015-01-29 15:47:55 +000057}
58
59static void __hyp_text __activate_traps_nvhe(void)
60{
61 u64 val;
62
63 val = CPTR_EL2_DEFAULT;
Dave Martin17eed272017-10-31 15:51:16 +000064 val |= CPTR_EL2_TTA | CPTR_EL2_TFP | CPTR_EL2_TZ;
Marc Zyngier68908bf2015-01-29 15:47:55 +000065 write_sysreg(val, cptr_el2);
66}
67
68static hyp_alternate_select(__activate_traps_arch,
69 __activate_traps_nvhe, __activate_traps_vhe,
70 ARM64_HAS_VIRT_HOST_EXTN);
71
Marc Zyngierbe901e92015-10-21 09:57:10 +010072static void __hyp_text __activate_traps(struct kvm_vcpu *vcpu)
73{
74 u64 val;
75
76 /*
77 * We are about to set CPTR_EL2.TFP to trap all floating point
78 * register accesses to EL2, however, the ARM ARM clearly states that
79 * traps are only taken to EL2 if the operation would not otherwise
80 * trap to EL1. Therefore, always make sure that for 32-bit guests,
81 * we set FPEXC.EN to prevent traps to EL1, when setting the TFP bit.
Suzuki K Poulose82e01912016-11-08 13:56:21 +000082 * If FP/ASIMD is not implemented, FPEXC is UNDEFINED and any access to
83 * it will cause an exception.
Marc Zyngierbe901e92015-10-21 09:57:10 +010084 */
85 val = vcpu->arch.hcr_el2;
Dave Martin93390c02017-10-31 15:50:56 +000086
Suzuki K Poulose82e01912016-11-08 13:56:21 +000087 if (!(val & HCR_RW) && system_supports_fpsimd()) {
Marc Zyngierbe901e92015-10-21 09:57:10 +010088 write_sysreg(1 << 30, fpexc32_el2);
89 isb();
90 }
Dave Martin93390c02017-10-31 15:50:56 +000091
92 if (val & HCR_RW) /* for AArch64 only: */
93 val |= HCR_TID3; /* TID3: trap feature register accesses */
94
Marc Zyngierbe901e92015-10-21 09:57:10 +010095 write_sysreg(val, hcr_el2);
Dave Martin93390c02017-10-31 15:50:56 +000096
James Morse4715c142018-01-15 19:39:01 +000097 if (cpus_have_const_cap(ARM64_HAS_RAS_EXTN) && (val & HCR_VSE))
98 write_sysreg_s(vcpu->arch.vsesr_el2, SYS_VSESR_EL2);
99
Marc Zyngierbe901e92015-10-21 09:57:10 +0100100 /* Trap on AArch32 cp15 c15 accesses (EL1 or EL0) */
101 write_sysreg(1 << 15, hstr_el2);
Marc Zyngier21cbe3c2016-12-06 14:34:22 +0000102 /*
103 * Make sure we trap PMU access from EL0 to EL2. Also sanitize
104 * PMSELR_EL0 to make sure it never contains the cycle
105 * counter, which could make a PMXEVCNTR_EL0 access UNDEF at
106 * EL1 instead of being trapped to EL2.
107 */
108 write_sysreg(0, pmselr_el0);
Shannon Zhaod692b8a2015-09-08 15:15:56 +0800109 write_sysreg(ARMV8_PMU_USERENR_MASK, pmuserenr_el0);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100110 write_sysreg(vcpu->arch.mdcr_el2, mdcr_el2);
Marc Zyngier68908bf2015-01-29 15:47:55 +0000111 __activate_traps_arch()();
Marc Zyngierbe901e92015-10-21 09:57:10 +0100112}
113
Marc Zyngier68908bf2015-01-29 15:47:55 +0000114static void __hyp_text __deactivate_traps_vhe(void)
115{
116 extern char vectors[]; /* kernel exception vectors */
Will Deaconf85279b2016-09-22 11:35:43 +0100117 u64 mdcr_el2 = read_sysreg(mdcr_el2);
Marc Zyngier68908bf2015-01-29 15:47:55 +0000118
Will Deaconf85279b2016-09-22 11:35:43 +0100119 mdcr_el2 &= MDCR_EL2_HPMN_MASK |
120 MDCR_EL2_E2PB_MASK << MDCR_EL2_E2PB_SHIFT |
121 MDCR_EL2_TPMS;
122
123 write_sysreg(mdcr_el2, mdcr_el2);
Marc Zyngier68908bf2015-01-29 15:47:55 +0000124 write_sysreg(HCR_HOST_VHE_FLAGS, hcr_el2);
Dave Martin17eed272017-10-31 15:51:16 +0000125 write_sysreg(CPACR_EL1_DEFAULT, cpacr_el1);
Marc Zyngier68908bf2015-01-29 15:47:55 +0000126 write_sysreg(vectors, vbar_el1);
127}
128
129static void __hyp_text __deactivate_traps_nvhe(void)
130{
Will Deaconf85279b2016-09-22 11:35:43 +0100131 u64 mdcr_el2 = read_sysreg(mdcr_el2);
132
133 mdcr_el2 &= MDCR_EL2_HPMN_MASK;
134 mdcr_el2 |= MDCR_EL2_E2PB_MASK << MDCR_EL2_E2PB_SHIFT;
135
136 write_sysreg(mdcr_el2, mdcr_el2);
Marc Zyngier68908bf2015-01-29 15:47:55 +0000137 write_sysreg(HCR_RW, hcr_el2);
138 write_sysreg(CPTR_EL2_DEFAULT, cptr_el2);
139}
140
141static hyp_alternate_select(__deactivate_traps_arch,
142 __deactivate_traps_nvhe, __deactivate_traps_vhe,
143 ARM64_HAS_VIRT_HOST_EXTN);
144
Marc Zyngierbe901e92015-10-21 09:57:10 +0100145static void __hyp_text __deactivate_traps(struct kvm_vcpu *vcpu)
146{
Marc Zyngier44636f92016-09-06 14:02:00 +0100147 /*
148 * If we pended a virtual abort, preserve it until it gets
149 * cleared. See D1.14.3 (Virtual Interrupts) for details, but
150 * the crucial bit is "On taking a vSError interrupt,
151 * HCR_EL2.VSE is cleared to 0."
152 */
153 if (vcpu->arch.hcr_el2 & HCR_VSE)
154 vcpu->arch.hcr_el2 = read_sysreg(hcr_el2);
155
Marc Zyngier68908bf2015-01-29 15:47:55 +0000156 __deactivate_traps_arch()();
Marc Zyngierbe901e92015-10-21 09:57:10 +0100157 write_sysreg(0, hstr_el2);
Shannon Zhaod692b8a2015-09-08 15:15:56 +0800158 write_sysreg(0, pmuserenr_el0);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100159}
160
161static void __hyp_text __activate_vm(struct kvm_vcpu *vcpu)
162{
163 struct kvm *kvm = kern_hyp_va(vcpu->kvm);
164 write_sysreg(kvm->arch.vttbr, vttbr_el2);
165}
166
167static void __hyp_text __deactivate_vm(struct kvm_vcpu *vcpu)
168{
169 write_sysreg(0, vttbr_el2);
170}
171
Marc Zyngierbe901e92015-10-21 09:57:10 +0100172static void __hyp_text __vgic_save_state(struct kvm_vcpu *vcpu)
173{
Vladimir Murzin5a7a8422016-09-12 15:49:15 +0100174 if (static_branch_unlikely(&kvm_vgic_global_state.gicv3_cpuif))
175 __vgic_v3_save_state(vcpu);
176 else
177 __vgic_v2_save_state(vcpu);
178
Marc Zyngierbe901e92015-10-21 09:57:10 +0100179 write_sysreg(read_sysreg(hcr_el2) & ~HCR_INT_OVERRIDE, hcr_el2);
180}
181
182static void __hyp_text __vgic_restore_state(struct kvm_vcpu *vcpu)
183{
184 u64 val;
185
186 val = read_sysreg(hcr_el2);
187 val |= HCR_INT_OVERRIDE;
188 val |= vcpu->arch.irq_lines;
189 write_sysreg(val, hcr_el2);
190
Vladimir Murzin5a7a8422016-09-12 15:49:15 +0100191 if (static_branch_unlikely(&kvm_vgic_global_state.gicv3_cpuif))
192 __vgic_v3_restore_state(vcpu);
193 else
194 __vgic_v2_restore_state(vcpu);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100195}
196
Marc Zyngier5f05a722015-10-28 15:06:47 +0000197static bool __hyp_text __true_value(void)
198{
199 return true;
200}
201
202static bool __hyp_text __false_value(void)
203{
204 return false;
205}
206
207static hyp_alternate_select(__check_arm_834220,
208 __false_value, __true_value,
209 ARM64_WORKAROUND_834220);
210
211static bool __hyp_text __translate_far_to_hpfar(u64 far, u64 *hpfar)
212{
213 u64 par, tmp;
214
215 /*
216 * Resolve the IPA the hard way using the guest VA.
217 *
218 * Stage-1 translation already validated the memory access
219 * rights. As such, we can use the EL1 translation regime, and
220 * don't have to distinguish between EL0 and EL1 access.
221 *
222 * We do need to save/restore PAR_EL1 though, as we haven't
223 * saved the guest context yet, and we may return early...
224 */
225 par = read_sysreg(par_el1);
226 asm volatile("at s1e1r, %0" : : "r" (far));
227 isb();
228
229 tmp = read_sysreg(par_el1);
230 write_sysreg(par, par_el1);
231
232 if (unlikely(tmp & 1))
233 return false; /* Translation failed, back to guest */
234
235 /* Convert PAR to HPFAR format */
236 *hpfar = ((tmp >> 12) & ((1UL << 36) - 1)) << 4;
237 return true;
238}
239
240static bool __hyp_text __populate_fault_info(struct kvm_vcpu *vcpu)
241{
242 u64 esr = read_sysreg_el2(esr);
Mark Rutland561454e2016-05-31 12:33:02 +0100243 u8 ec = ESR_ELx_EC(esr);
Marc Zyngier5f05a722015-10-28 15:06:47 +0000244 u64 hpfar, far;
245
246 vcpu->arch.fault.esr_el2 = esr;
247
248 if (ec != ESR_ELx_EC_DABT_LOW && ec != ESR_ELx_EC_IABT_LOW)
249 return true;
250
251 far = read_sysreg_el2(far);
252
253 /*
254 * The HPFAR can be invalid if the stage 2 fault did not
255 * happen during a stage 1 page table walk (the ESR_EL2.S1PTW
256 * bit is clear) and one of the two following cases are true:
257 * 1. The fault was due to a permission fault
258 * 2. The processor carries errata 834220
259 *
260 * Therefore, for all non S1PTW faults where we either have a
261 * permission fault or the errata workaround is enabled, we
262 * resolve the IPA using the AT instruction.
263 */
264 if (!(esr & ESR_ELx_S1PTW) &&
265 (__check_arm_834220()() || (esr & ESR_ELx_FSC_TYPE) == FSC_PERM)) {
266 if (!__translate_far_to_hpfar(far, &hpfar))
267 return false;
268 } else {
269 hpfar = read_sysreg(hpfar_el2);
270 }
271
272 vcpu->arch.fault.far_el2 = far;
273 vcpu->arch.fault.hpfar_el2 = hpfar;
274 return true;
275}
276
Alex Bennéee3feebf2017-11-23 12:11:34 +0000277/* Skip an instruction which has been emulated. Returns true if
278 * execution can continue or false if we need to exit hyp mode because
279 * single-step was in effect.
280 */
281static bool __hyp_text __skip_instr(struct kvm_vcpu *vcpu)
Marc Zyngierfb5ee362016-09-06 09:28:45 +0100282{
283 *vcpu_pc(vcpu) = read_sysreg_el2(elr);
284
285 if (vcpu_mode_is_32bit(vcpu)) {
286 vcpu->arch.ctxt.gp_regs.regs.pstate = read_sysreg_el2(spsr);
287 kvm_skip_instr32(vcpu, kvm_vcpu_trap_il_is32bit(vcpu));
288 write_sysreg_el2(vcpu->arch.ctxt.gp_regs.regs.pstate, spsr);
289 } else {
290 *vcpu_pc(vcpu) += 4;
291 }
292
293 write_sysreg_el2(*vcpu_pc(vcpu), elr);
Alex Bennéee3feebf2017-11-23 12:11:34 +0000294
295 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) {
296 vcpu->arch.fault.esr_el2 =
297 (ESR_ELx_EC_SOFTSTP_LOW << ESR_ELx_EC_SHIFT) | 0x22;
298 return false;
299 } else {
300 return true;
301 }
Marc Zyngierfb5ee362016-09-06 09:28:45 +0100302}
303
Christoffer Dallcf0ba182016-09-01 13:16:03 +0200304int __hyp_text __kvm_vcpu_run(struct kvm_vcpu *vcpu)
Marc Zyngierbe901e92015-10-21 09:57:10 +0100305{
306 struct kvm_cpu_context *host_ctxt;
307 struct kvm_cpu_context *guest_ctxt;
Marc Zyngierc13d1682015-10-26 08:34:09 +0000308 bool fp_enabled;
Marc Zyngierbe901e92015-10-21 09:57:10 +0100309 u64 exit_code;
310
311 vcpu = kern_hyp_va(vcpu);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100312
313 host_ctxt = kern_hyp_va(vcpu->arch.host_cpu_context);
James Morsec97e1662018-01-08 15:38:05 +0000314 host_ctxt->__hyp_running_vcpu = vcpu;
Marc Zyngierbe901e92015-10-21 09:57:10 +0100315 guest_ctxt = &vcpu->arch.ctxt;
316
Marc Zyngieredef5282015-10-28 12:17:35 +0000317 __sysreg_save_host_state(host_ctxt);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100318 __debug_cond_save_host_state(vcpu);
319
320 __activate_traps(vcpu);
321 __activate_vm(vcpu);
322
323 __vgic_restore_state(vcpu);
Christoffer Dall688c50a2017-01-04 16:10:28 +0100324 __timer_enable_traps(vcpu);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100325
326 /*
327 * We must restore the 32-bit state before the sysregs, thanks
Marc Zyngier674e7012016-08-16 15:03:01 +0100328 * to erratum #852523 (Cortex-A57) or #853709 (Cortex-A72).
Marc Zyngierbe901e92015-10-21 09:57:10 +0100329 */
330 __sysreg32_restore_state(vcpu);
Marc Zyngieredef5282015-10-28 12:17:35 +0000331 __sysreg_restore_guest_state(guest_ctxt);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100332 __debug_restore_state(vcpu, kern_hyp_va(vcpu->arch.debug_ptr), guest_ctxt);
333
334 /* Jump in the fire! */
Marc Zyngier5f05a722015-10-28 15:06:47 +0000335again:
Marc Zyngierbe901e92015-10-21 09:57:10 +0100336 exit_code = __guest_enter(vcpu, host_ctxt);
337 /* And we're baaack! */
338
Marc Zyngier395ea792016-09-06 14:02:07 +0100339 /*
340 * We're using the raw exception code in order to only process
341 * the trap if no SError is pending. We will come back to the
342 * same PC once the SError has been injected, and replay the
343 * trapping instruction.
344 */
Marc Zyngier5f05a722015-10-28 15:06:47 +0000345 if (exit_code == ARM_EXCEPTION_TRAP && !__populate_fault_info(vcpu))
346 goto again;
347
Marc Zyngier90348682018-01-03 16:38:37 +0000348 if (exit_code == ARM_EXCEPTION_TRAP &&
349 (kvm_vcpu_trap_get_class(vcpu) == ESR_ELx_EC_HVC64 ||
350 kvm_vcpu_trap_get_class(vcpu) == ESR_ELx_EC_HVC32) &&
351 vcpu_get_reg(vcpu, 0) == PSCI_0_2_FN_PSCI_VERSION) {
352 u64 val = PSCI_RET_NOT_SUPPORTED;
353 if (test_bit(KVM_ARM_VCPU_PSCI_0_2, vcpu->arch.features))
354 val = 2;
355
356 vcpu_set_reg(vcpu, 0, val);
357 goto again;
358 }
359
Marc Zyngierfb5ee362016-09-06 09:28:45 +0100360 if (static_branch_unlikely(&vgic_v2_cpuif_trap) &&
361 exit_code == ARM_EXCEPTION_TRAP) {
362 bool valid;
363
364 valid = kvm_vcpu_trap_get_class(vcpu) == ESR_ELx_EC_DABT_LOW &&
365 kvm_vcpu_trap_get_fault_type(vcpu) == FSC_FAULT &&
366 kvm_vcpu_dabt_isvalid(vcpu) &&
367 !kvm_vcpu_dabt_isextabt(vcpu) &&
368 !kvm_vcpu_dabt_iss1tw(vcpu);
369
Marc Zyngier3272f0d2016-09-06 14:02:17 +0100370 if (valid) {
371 int ret = __vgic_v2_perform_cpuif_access(vcpu);
372
373 if (ret == 1) {
Alex Bennéee3feebf2017-11-23 12:11:34 +0000374 if (__skip_instr(vcpu))
375 goto again;
376 else
377 exit_code = ARM_EXCEPTION_TRAP;
Marc Zyngier3272f0d2016-09-06 14:02:17 +0100378 }
379
380 if (ret == -1) {
Alex Bennéee3feebf2017-11-23 12:11:34 +0000381 /* Promote an illegal access to an
382 * SError. If we would be returning
383 * due to single-step clear the SS
384 * bit so handle_exit knows what to
385 * do after dealing with the error.
386 */
387 if (!__skip_instr(vcpu))
388 *vcpu_cpsr(vcpu) &= ~DBG_SPSR_SS;
Marc Zyngier3272f0d2016-09-06 14:02:17 +0100389 exit_code = ARM_EXCEPTION_EL1_SERROR;
390 }
391
392 /* 0 falls through to be handler out of EL2 */
Marc Zyngierfb5ee362016-09-06 09:28:45 +0100393 }
394 }
395
Marc Zyngier59da1cb2017-06-09 12:49:33 +0100396 if (static_branch_unlikely(&vgic_v3_cpuif_trap) &&
397 exit_code == ARM_EXCEPTION_TRAP &&
398 (kvm_vcpu_trap_get_class(vcpu) == ESR_ELx_EC_SYS64 ||
399 kvm_vcpu_trap_get_class(vcpu) == ESR_ELx_EC_CP15_32)) {
400 int ret = __vgic_v3_perform_cpuif_access(vcpu);
401
402 if (ret == 1) {
Alex Bennéee3feebf2017-11-23 12:11:34 +0000403 if (__skip_instr(vcpu))
404 goto again;
405 else
406 exit_code = ARM_EXCEPTION_TRAP;
Marc Zyngier59da1cb2017-06-09 12:49:33 +0100407 }
408
409 /* 0 falls through to be handled out of EL2 */
410 }
411
Shanker Donthineniec82b562018-01-05 14:28:59 -0600412 if (cpus_have_const_cap(ARM64_HARDEN_BP_POST_GUEST_EXIT)) {
413 u32 midr = read_cpuid_id();
414
415 /* Apply BTAC predictors mitigation to all Falkor chips */
416 if ((midr & MIDR_CPU_MODEL_MASK) == MIDR_QCOM_FALKOR_V1)
417 __qcom_hyp_sanitize_btac_predictors();
418 }
419
Marc Zyngierc13d1682015-10-26 08:34:09 +0000420 fp_enabled = __fpsimd_enabled();
421
Marc Zyngieredef5282015-10-28 12:17:35 +0000422 __sysreg_save_guest_state(guest_ctxt);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100423 __sysreg32_save_state(vcpu);
Christoffer Dall688c50a2017-01-04 16:10:28 +0100424 __timer_disable_traps(vcpu);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100425 __vgic_save_state(vcpu);
426
427 __deactivate_traps(vcpu);
428 __deactivate_vm(vcpu);
429
Marc Zyngieredef5282015-10-28 12:17:35 +0000430 __sysreg_restore_host_state(host_ctxt);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100431
Marc Zyngierc13d1682015-10-26 08:34:09 +0000432 if (fp_enabled) {
433 __fpsimd_save_state(&guest_ctxt->gp_regs.fp_regs);
434 __fpsimd_restore_state(&host_ctxt->gp_regs.fp_regs);
435 }
436
Marc Zyngierbe901e92015-10-21 09:57:10 +0100437 __debug_save_state(vcpu, kern_hyp_va(vcpu->arch.debug_ptr), guest_ctxt);
Will Deaconf85279b2016-09-22 11:35:43 +0100438 /*
439 * This must come after restoring the host sysregs, since a non-VHE
440 * system may enable SPE here and make use of the TTBRs.
441 */
Marc Zyngierbe901e92015-10-21 09:57:10 +0100442 __debug_cond_restore_host_state(vcpu);
443
444 return exit_code;
445}
Marc Zyngier53fd5b62015-10-25 15:21:52 +0000446
447static const char __hyp_panic_string[] = "HYP panic:\nPS:%08llx PC:%016llx ESR:%08llx\nFAR:%016llx HPFAR:%016llx PAR:%016llx\nVCPU:%p\n";
448
James Morsec97e1662018-01-08 15:38:05 +0000449static void __hyp_text __hyp_call_panic_nvhe(u64 spsr, u64 elr, u64 par,
450 struct kvm_vcpu *vcpu)
Marc Zyngier53fd5b62015-10-25 15:21:52 +0000451{
Marc Zyngiercf7df132016-06-30 18:40:35 +0100452 unsigned long str_va;
Marc Zyngier253dcbd2015-11-17 14:07:45 +0000453
Marc Zyngiercf7df132016-06-30 18:40:35 +0100454 /*
455 * Force the panic string to be loaded from the literal pool,
456 * making sure it is a kernel address and not a PC-relative
457 * reference.
458 */
459 asm volatile("ldr %0, =__hyp_panic_string" : "=r" (str_va));
460
461 __hyp_do_panic(str_va,
Marc Zyngier253dcbd2015-11-17 14:07:45 +0000462 spsr, elr,
463 read_sysreg(esr_el2), read_sysreg_el2(far),
James Morsec97e1662018-01-08 15:38:05 +0000464 read_sysreg(hpfar_el2), par, vcpu);
Marc Zyngier253dcbd2015-11-17 14:07:45 +0000465}
466
James Morsec97e1662018-01-08 15:38:05 +0000467static void __hyp_text __hyp_call_panic_vhe(u64 spsr, u64 elr, u64 par,
468 struct kvm_vcpu *vcpu)
Marc Zyngier253dcbd2015-11-17 14:07:45 +0000469{
470 panic(__hyp_panic_string,
471 spsr, elr,
472 read_sysreg_el2(esr), read_sysreg_el2(far),
James Morsec97e1662018-01-08 15:38:05 +0000473 read_sysreg(hpfar_el2), par, vcpu);
Marc Zyngier253dcbd2015-11-17 14:07:45 +0000474}
475
476static hyp_alternate_select(__hyp_call_panic,
477 __hyp_call_panic_nvhe, __hyp_call_panic_vhe,
478 ARM64_HAS_VIRT_HOST_EXTN);
479
James Morsec97e1662018-01-08 15:38:05 +0000480void __hyp_text __noreturn hyp_panic(struct kvm_cpu_context *__host_ctxt)
Marc Zyngier253dcbd2015-11-17 14:07:45 +0000481{
James Morsec97e1662018-01-08 15:38:05 +0000482 struct kvm_vcpu *vcpu = NULL;
483
Marc Zyngier253dcbd2015-11-17 14:07:45 +0000484 u64 spsr = read_sysreg_el2(spsr);
485 u64 elr = read_sysreg_el2(elr);
Marc Zyngier53fd5b62015-10-25 15:21:52 +0000486 u64 par = read_sysreg(par_el1);
487
488 if (read_sysreg(vttbr_el2)) {
Marc Zyngier53fd5b62015-10-25 15:21:52 +0000489 struct kvm_cpu_context *host_ctxt;
490
James Morsec97e1662018-01-08 15:38:05 +0000491 host_ctxt = kern_hyp_va(__host_ctxt);
492 vcpu = host_ctxt->__hyp_running_vcpu;
Christoffer Dall688c50a2017-01-04 16:10:28 +0100493 __timer_disable_traps(vcpu);
Marc Zyngier53fd5b62015-10-25 15:21:52 +0000494 __deactivate_traps(vcpu);
495 __deactivate_vm(vcpu);
Marc Zyngieredef5282015-10-28 12:17:35 +0000496 __sysreg_restore_host_state(host_ctxt);
Marc Zyngier53fd5b62015-10-25 15:21:52 +0000497 }
498
499 /* Call panic for real */
James Morsec97e1662018-01-08 15:38:05 +0000500 __hyp_call_panic()(spsr, elr, par, vcpu);
Marc Zyngier53fd5b62015-10-25 15:21:52 +0000501
502 unreachable();
503}