Marc Zyngier | be901e9 | 2015-10-21 09:57:10 +0100 | [diff] [blame] | 1 | /* |
| 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 Zyngier | 5f05a72a | 2015-10-28 15:06:47 +0000 | [diff] [blame] | 18 | #include <linux/types.h> |
Vladimir Murzin | 5a7a842 | 2016-09-12 15:49:15 +0100 | [diff] [blame] | 19 | #include <linux/jump_label.h> |
Marc Zyngier | 9034868 | 2018-01-03 16:38:37 +0000 | [diff] [blame] | 20 | #include <uapi/linux/psci.h> |
Vladimir Murzin | 5a7a842 | 2016-09-12 15:49:15 +0100 | [diff] [blame] | 21 | |
Marc Zyngier | a4097b3 | 2018-02-06 17:56:13 +0000 | [diff] [blame] | 22 | #include <kvm/arm_psci.h> |
| 23 | |
Marc Zyngier | 68908bf | 2015-01-29 15:47:55 +0000 | [diff] [blame] | 24 | #include <asm/kvm_asm.h> |
Marc Zyngier | fb5ee36 | 2016-09-06 09:28:45 +0100 | [diff] [blame] | 25 | #include <asm/kvm_emulate.h> |
Marc Zyngier | 13720a5 | 2016-01-28 13:44:07 +0000 | [diff] [blame] | 26 | #include <asm/kvm_hyp.h> |
Marc Zyngier | d681198 | 2017-10-23 17:11:14 +0100 | [diff] [blame] | 27 | #include <asm/kvm_mmu.h> |
Suzuki K Poulose | 82e0191 | 2016-11-08 13:56:21 +0000 | [diff] [blame] | 28 | #include <asm/fpsimd.h> |
Alex Bennée | e3feebf | 2017-11-23 12:11:34 +0000 | [diff] [blame] | 29 | #include <asm/debug-monitors.h> |
Marc Zyngier | be901e9 | 2015-10-21 09:57:10 +0100 | [diff] [blame] | 30 | |
Marc Zyngier | 3287622 | 2015-10-28 14:15:45 +0000 | [diff] [blame] | 31 | static bool __hyp_text __fpsimd_enabled_nvhe(void) |
| 32 | { |
| 33 | return !(read_sysreg(cptr_el2) & CPTR_EL2_TFP); |
| 34 | } |
| 35 | |
| 36 | static bool __hyp_text __fpsimd_enabled_vhe(void) |
| 37 | { |
| 38 | return !!(read_sysreg(cpacr_el1) & CPACR_EL1_FPEN); |
| 39 | } |
| 40 | |
| 41 | static hyp_alternate_select(__fpsimd_is_enabled, |
| 42 | __fpsimd_enabled_nvhe, __fpsimd_enabled_vhe, |
| 43 | ARM64_HAS_VIRT_HOST_EXTN); |
| 44 | |
| 45 | bool __hyp_text __fpsimd_enabled(void) |
| 46 | { |
| 47 | return __fpsimd_is_enabled()(); |
| 48 | } |
| 49 | |
Marc Zyngier | 68908bf | 2015-01-29 15:47:55 +0000 | [diff] [blame] | 50 | static void __hyp_text __activate_traps_vhe(void) |
| 51 | { |
| 52 | u64 val; |
| 53 | |
| 54 | val = read_sysreg(cpacr_el1); |
| 55 | val |= CPACR_EL1_TTA; |
Dave Martin | 17eed27 | 2017-10-31 15:51:16 +0000 | [diff] [blame] | 56 | val &= ~(CPACR_EL1_FPEN | CPACR_EL1_ZEN); |
Marc Zyngier | 68908bf | 2015-01-29 15:47:55 +0000 | [diff] [blame] | 57 | write_sysreg(val, cpacr_el1); |
| 58 | |
Marc Zyngier | 6840bdd | 2018-01-03 16:38:35 +0000 | [diff] [blame] | 59 | write_sysreg(kvm_get_hyp_vector(), vbar_el1); |
Marc Zyngier | 68908bf | 2015-01-29 15:47:55 +0000 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | static void __hyp_text __activate_traps_nvhe(void) |
| 63 | { |
| 64 | u64 val; |
| 65 | |
| 66 | val = CPTR_EL2_DEFAULT; |
Dave Martin | 17eed27 | 2017-10-31 15:51:16 +0000 | [diff] [blame] | 67 | val |= CPTR_EL2_TTA | CPTR_EL2_TFP | CPTR_EL2_TZ; |
Marc Zyngier | 68908bf | 2015-01-29 15:47:55 +0000 | [diff] [blame] | 68 | write_sysreg(val, cptr_el2); |
| 69 | } |
| 70 | |
| 71 | static hyp_alternate_select(__activate_traps_arch, |
| 72 | __activate_traps_nvhe, __activate_traps_vhe, |
| 73 | ARM64_HAS_VIRT_HOST_EXTN); |
| 74 | |
Marc Zyngier | be901e9 | 2015-10-21 09:57:10 +0100 | [diff] [blame] | 75 | static void __hyp_text __activate_traps(struct kvm_vcpu *vcpu) |
| 76 | { |
| 77 | u64 val; |
| 78 | |
| 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 Poulose | 82e0191 | 2016-11-08 13:56:21 +0000 | [diff] [blame] | 85 | * If FP/ASIMD is not implemented, FPEXC is UNDEFINED and any access to |
| 86 | * it will cause an exception. |
Marc Zyngier | be901e9 | 2015-10-21 09:57:10 +0100 | [diff] [blame] | 87 | */ |
| 88 | val = vcpu->arch.hcr_el2; |
Dave Martin | 93390c0 | 2017-10-31 15:50:56 +0000 | [diff] [blame] | 89 | |
Suzuki K Poulose | 82e0191 | 2016-11-08 13:56:21 +0000 | [diff] [blame] | 90 | if (!(val & HCR_RW) && system_supports_fpsimd()) { |
Marc Zyngier | be901e9 | 2015-10-21 09:57:10 +0100 | [diff] [blame] | 91 | write_sysreg(1 << 30, fpexc32_el2); |
| 92 | isb(); |
| 93 | } |
| 94 | write_sysreg(val, hcr_el2); |
Dave Martin | 93390c0 | 2017-10-31 15:50:56 +0000 | [diff] [blame] | 95 | |
James Morse | 4715c14 | 2018-01-15 19:39:01 +0000 | [diff] [blame] | 96 | if (cpus_have_const_cap(ARM64_HAS_RAS_EXTN) && (val & HCR_VSE)) |
| 97 | write_sysreg_s(vcpu->arch.vsesr_el2, SYS_VSESR_EL2); |
| 98 | |
Marc Zyngier | be901e9 | 2015-10-21 09:57:10 +0100 | [diff] [blame] | 99 | /* Trap on AArch32 cp15 c15 accesses (EL1 or EL0) */ |
| 100 | write_sysreg(1 << 15, hstr_el2); |
Marc Zyngier | 21cbe3c | 2016-12-06 14:34:22 +0000 | [diff] [blame] | 101 | /* |
| 102 | * Make sure we trap PMU access from EL0 to EL2. Also sanitize |
| 103 | * PMSELR_EL0 to make sure it never contains the cycle |
| 104 | * counter, which could make a PMXEVCNTR_EL0 access UNDEF at |
| 105 | * EL1 instead of being trapped to EL2. |
| 106 | */ |
| 107 | write_sysreg(0, pmselr_el0); |
Shannon Zhao | d692b8a | 2015-09-08 15:15:56 +0800 | [diff] [blame] | 108 | write_sysreg(ARMV8_PMU_USERENR_MASK, pmuserenr_el0); |
Marc Zyngier | be901e9 | 2015-10-21 09:57:10 +0100 | [diff] [blame] | 109 | write_sysreg(vcpu->arch.mdcr_el2, mdcr_el2); |
Marc Zyngier | 68908bf | 2015-01-29 15:47:55 +0000 | [diff] [blame] | 110 | __activate_traps_arch()(); |
Marc Zyngier | be901e9 | 2015-10-21 09:57:10 +0100 | [diff] [blame] | 111 | } |
| 112 | |
Marc Zyngier | 68908bf | 2015-01-29 15:47:55 +0000 | [diff] [blame] | 113 | static void __hyp_text __deactivate_traps_vhe(void) |
| 114 | { |
| 115 | extern char vectors[]; /* kernel exception vectors */ |
Will Deacon | f85279b | 2016-09-22 11:35:43 +0100 | [diff] [blame] | 116 | u64 mdcr_el2 = read_sysreg(mdcr_el2); |
Marc Zyngier | 68908bf | 2015-01-29 15:47:55 +0000 | [diff] [blame] | 117 | |
Will Deacon | f85279b | 2016-09-22 11:35:43 +0100 | [diff] [blame] | 118 | mdcr_el2 &= MDCR_EL2_HPMN_MASK | |
| 119 | MDCR_EL2_E2PB_MASK << MDCR_EL2_E2PB_SHIFT | |
| 120 | MDCR_EL2_TPMS; |
| 121 | |
| 122 | write_sysreg(mdcr_el2, mdcr_el2); |
Marc Zyngier | 68908bf | 2015-01-29 15:47:55 +0000 | [diff] [blame] | 123 | write_sysreg(HCR_HOST_VHE_FLAGS, hcr_el2); |
Dave Martin | 17eed27 | 2017-10-31 15:51:16 +0000 | [diff] [blame] | 124 | write_sysreg(CPACR_EL1_DEFAULT, cpacr_el1); |
Marc Zyngier | 68908bf | 2015-01-29 15:47:55 +0000 | [diff] [blame] | 125 | write_sysreg(vectors, vbar_el1); |
| 126 | } |
| 127 | |
| 128 | static void __hyp_text __deactivate_traps_nvhe(void) |
| 129 | { |
Will Deacon | f85279b | 2016-09-22 11:35:43 +0100 | [diff] [blame] | 130 | u64 mdcr_el2 = read_sysreg(mdcr_el2); |
| 131 | |
| 132 | mdcr_el2 &= MDCR_EL2_HPMN_MASK; |
| 133 | mdcr_el2 |= MDCR_EL2_E2PB_MASK << MDCR_EL2_E2PB_SHIFT; |
| 134 | |
| 135 | write_sysreg(mdcr_el2, mdcr_el2); |
Marc Zyngier | 68908bf | 2015-01-29 15:47:55 +0000 | [diff] [blame] | 136 | write_sysreg(HCR_RW, hcr_el2); |
| 137 | write_sysreg(CPTR_EL2_DEFAULT, cptr_el2); |
| 138 | } |
| 139 | |
| 140 | static hyp_alternate_select(__deactivate_traps_arch, |
| 141 | __deactivate_traps_nvhe, __deactivate_traps_vhe, |
| 142 | ARM64_HAS_VIRT_HOST_EXTN); |
| 143 | |
Marc Zyngier | be901e9 | 2015-10-21 09:57:10 +0100 | [diff] [blame] | 144 | static void __hyp_text __deactivate_traps(struct kvm_vcpu *vcpu) |
| 145 | { |
Marc Zyngier | 44636f9 | 2016-09-06 14:02:00 +0100 | [diff] [blame] | 146 | /* |
| 147 | * If we pended a virtual abort, preserve it until it gets |
| 148 | * cleared. See D1.14.3 (Virtual Interrupts) for details, but |
| 149 | * the crucial bit is "On taking a vSError interrupt, |
| 150 | * HCR_EL2.VSE is cleared to 0." |
| 151 | */ |
| 152 | if (vcpu->arch.hcr_el2 & HCR_VSE) |
| 153 | vcpu->arch.hcr_el2 = read_sysreg(hcr_el2); |
| 154 | |
Marc Zyngier | 68908bf | 2015-01-29 15:47:55 +0000 | [diff] [blame] | 155 | __deactivate_traps_arch()(); |
Marc Zyngier | be901e9 | 2015-10-21 09:57:10 +0100 | [diff] [blame] | 156 | write_sysreg(0, hstr_el2); |
Shannon Zhao | d692b8a | 2015-09-08 15:15:56 +0800 | [diff] [blame] | 157 | write_sysreg(0, pmuserenr_el0); |
Marc Zyngier | be901e9 | 2015-10-21 09:57:10 +0100 | [diff] [blame] | 158 | } |
| 159 | |
| 160 | static void __hyp_text __activate_vm(struct kvm_vcpu *vcpu) |
| 161 | { |
| 162 | struct kvm *kvm = kern_hyp_va(vcpu->kvm); |
| 163 | write_sysreg(kvm->arch.vttbr, vttbr_el2); |
| 164 | } |
| 165 | |
| 166 | static void __hyp_text __deactivate_vm(struct kvm_vcpu *vcpu) |
| 167 | { |
| 168 | write_sysreg(0, vttbr_el2); |
| 169 | } |
| 170 | |
Marc Zyngier | be901e9 | 2015-10-21 09:57:10 +0100 | [diff] [blame] | 171 | static void __hyp_text __vgic_save_state(struct kvm_vcpu *vcpu) |
| 172 | { |
Vladimir Murzin | 5a7a842 | 2016-09-12 15:49:15 +0100 | [diff] [blame] | 173 | if (static_branch_unlikely(&kvm_vgic_global_state.gicv3_cpuif)) |
| 174 | __vgic_v3_save_state(vcpu); |
| 175 | else |
| 176 | __vgic_v2_save_state(vcpu); |
| 177 | |
Marc Zyngier | be901e9 | 2015-10-21 09:57:10 +0100 | [diff] [blame] | 178 | write_sysreg(read_sysreg(hcr_el2) & ~HCR_INT_OVERRIDE, hcr_el2); |
| 179 | } |
| 180 | |
| 181 | static void __hyp_text __vgic_restore_state(struct kvm_vcpu *vcpu) |
| 182 | { |
| 183 | u64 val; |
| 184 | |
| 185 | val = read_sysreg(hcr_el2); |
| 186 | val |= HCR_INT_OVERRIDE; |
| 187 | val |= vcpu->arch.irq_lines; |
| 188 | write_sysreg(val, hcr_el2); |
| 189 | |
Vladimir Murzin | 5a7a842 | 2016-09-12 15:49:15 +0100 | [diff] [blame] | 190 | if (static_branch_unlikely(&kvm_vgic_global_state.gicv3_cpuif)) |
| 191 | __vgic_v3_restore_state(vcpu); |
| 192 | else |
| 193 | __vgic_v2_restore_state(vcpu); |
Marc Zyngier | be901e9 | 2015-10-21 09:57:10 +0100 | [diff] [blame] | 194 | } |
| 195 | |
Marc Zyngier | 5f05a72a | 2015-10-28 15:06:47 +0000 | [diff] [blame] | 196 | static bool __hyp_text __true_value(void) |
| 197 | { |
| 198 | return true; |
| 199 | } |
| 200 | |
| 201 | static bool __hyp_text __false_value(void) |
| 202 | { |
| 203 | return false; |
| 204 | } |
| 205 | |
| 206 | static hyp_alternate_select(__check_arm_834220, |
| 207 | __false_value, __true_value, |
| 208 | ARM64_WORKAROUND_834220); |
| 209 | |
| 210 | static bool __hyp_text __translate_far_to_hpfar(u64 far, u64 *hpfar) |
| 211 | { |
| 212 | u64 par, tmp; |
| 213 | |
| 214 | /* |
| 215 | * Resolve the IPA the hard way using the guest VA. |
| 216 | * |
| 217 | * Stage-1 translation already validated the memory access |
| 218 | * rights. As such, we can use the EL1 translation regime, and |
| 219 | * don't have to distinguish between EL0 and EL1 access. |
| 220 | * |
| 221 | * We do need to save/restore PAR_EL1 though, as we haven't |
| 222 | * saved the guest context yet, and we may return early... |
| 223 | */ |
| 224 | par = read_sysreg(par_el1); |
| 225 | asm volatile("at s1e1r, %0" : : "r" (far)); |
| 226 | isb(); |
| 227 | |
| 228 | tmp = read_sysreg(par_el1); |
| 229 | write_sysreg(par, par_el1); |
| 230 | |
| 231 | if (unlikely(tmp & 1)) |
| 232 | return false; /* Translation failed, back to guest */ |
| 233 | |
| 234 | /* Convert PAR to HPFAR format */ |
| 235 | *hpfar = ((tmp >> 12) & ((1UL << 36) - 1)) << 4; |
| 236 | return true; |
| 237 | } |
| 238 | |
| 239 | static bool __hyp_text __populate_fault_info(struct kvm_vcpu *vcpu) |
| 240 | { |
James Morse | c60590b | 2018-01-15 19:39:03 +0000 | [diff] [blame] | 241 | u8 ec; |
| 242 | u64 esr; |
Marc Zyngier | 5f05a72a | 2015-10-28 15:06:47 +0000 | [diff] [blame] | 243 | u64 hpfar, far; |
| 244 | |
James Morse | c60590b | 2018-01-15 19:39:03 +0000 | [diff] [blame] | 245 | esr = vcpu->arch.fault.esr_el2; |
| 246 | ec = ESR_ELx_EC(esr); |
Marc Zyngier | 5f05a72a | 2015-10-28 15:06:47 +0000 | [diff] [blame] | 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ée | e3feebf | 2017-11-23 12:11:34 +0000 | [diff] [blame] | 277 | /* 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 | */ |
| 281 | static bool __hyp_text __skip_instr(struct kvm_vcpu *vcpu) |
Marc Zyngier | fb5ee36 | 2016-09-06 09:28:45 +0100 | [diff] [blame] | 282 | { |
| 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ée | e3feebf | 2017-11-23 12:11:34 +0000 | [diff] [blame] | 294 | |
| 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 Zyngier | fb5ee36 | 2016-09-06 09:28:45 +0100 | [diff] [blame] | 302 | } |
| 303 | |
Christoffer Dall | cf0ba18 | 2016-09-01 13:16:03 +0200 | [diff] [blame] | 304 | int __hyp_text __kvm_vcpu_run(struct kvm_vcpu *vcpu) |
Marc Zyngier | be901e9 | 2015-10-21 09:57:10 +0100 | [diff] [blame] | 305 | { |
| 306 | struct kvm_cpu_context *host_ctxt; |
| 307 | struct kvm_cpu_context *guest_ctxt; |
Marc Zyngier | c13d168 | 2015-10-26 08:34:09 +0000 | [diff] [blame] | 308 | bool fp_enabled; |
Marc Zyngier | be901e9 | 2015-10-21 09:57:10 +0100 | [diff] [blame] | 309 | u64 exit_code; |
| 310 | |
| 311 | vcpu = kern_hyp_va(vcpu); |
Marc Zyngier | be901e9 | 2015-10-21 09:57:10 +0100 | [diff] [blame] | 312 | |
| 313 | host_ctxt = kern_hyp_va(vcpu->arch.host_cpu_context); |
James Morse | c97e166 | 2018-01-08 15:38:05 +0000 | [diff] [blame] | 314 | host_ctxt->__hyp_running_vcpu = vcpu; |
Marc Zyngier | be901e9 | 2015-10-21 09:57:10 +0100 | [diff] [blame] | 315 | guest_ctxt = &vcpu->arch.ctxt; |
| 316 | |
Marc Zyngier | edef528 | 2015-10-28 12:17:35 +0000 | [diff] [blame] | 317 | __sysreg_save_host_state(host_ctxt); |
Marc Zyngier | be901e9 | 2015-10-21 09:57:10 +0100 | [diff] [blame] | 318 | __debug_cond_save_host_state(vcpu); |
| 319 | |
| 320 | __activate_traps(vcpu); |
| 321 | __activate_vm(vcpu); |
| 322 | |
| 323 | __vgic_restore_state(vcpu); |
Christoffer Dall | 688c50a | 2017-01-04 16:10:28 +0100 | [diff] [blame] | 324 | __timer_enable_traps(vcpu); |
Marc Zyngier | be901e9 | 2015-10-21 09:57:10 +0100 | [diff] [blame] | 325 | |
| 326 | /* |
| 327 | * We must restore the 32-bit state before the sysregs, thanks |
Marc Zyngier | 674e701 | 2016-08-16 15:03:01 +0100 | [diff] [blame] | 328 | * to erratum #852523 (Cortex-A57) or #853709 (Cortex-A72). |
Marc Zyngier | be901e9 | 2015-10-21 09:57:10 +0100 | [diff] [blame] | 329 | */ |
| 330 | __sysreg32_restore_state(vcpu); |
Marc Zyngier | edef528 | 2015-10-28 12:17:35 +0000 | [diff] [blame] | 331 | __sysreg_restore_guest_state(guest_ctxt); |
Marc Zyngier | be901e9 | 2015-10-21 09:57:10 +0100 | [diff] [blame] | 332 | __debug_restore_state(vcpu, kern_hyp_va(vcpu->arch.debug_ptr), guest_ctxt); |
| 333 | |
| 334 | /* Jump in the fire! */ |
Marc Zyngier | 5f05a72a | 2015-10-28 15:06:47 +0000 | [diff] [blame] | 335 | again: |
Marc Zyngier | be901e9 | 2015-10-21 09:57:10 +0100 | [diff] [blame] | 336 | exit_code = __guest_enter(vcpu, host_ctxt); |
| 337 | /* And we're baaack! */ |
| 338 | |
James Morse | c60590b | 2018-01-15 19:39:03 +0000 | [diff] [blame] | 339 | if (ARM_EXCEPTION_CODE(exit_code) != ARM_EXCEPTION_IRQ) |
| 340 | vcpu->arch.fault.esr_el2 = read_sysreg_el2(esr); |
Marc Zyngier | 395ea79 | 2016-09-06 14:02:07 +0100 | [diff] [blame] | 341 | /* |
| 342 | * We're using the raw exception code in order to only process |
| 343 | * the trap if no SError is pending. We will come back to the |
| 344 | * same PC once the SError has been injected, and replay the |
| 345 | * trapping instruction. |
| 346 | */ |
Marc Zyngier | 5f05a72a | 2015-10-28 15:06:47 +0000 | [diff] [blame] | 347 | if (exit_code == ARM_EXCEPTION_TRAP && !__populate_fault_info(vcpu)) |
| 348 | goto again; |
| 349 | |
Marc Zyngier | fb5ee36 | 2016-09-06 09:28:45 +0100 | [diff] [blame] | 350 | if (static_branch_unlikely(&vgic_v2_cpuif_trap) && |
| 351 | exit_code == ARM_EXCEPTION_TRAP) { |
| 352 | bool valid; |
| 353 | |
| 354 | valid = kvm_vcpu_trap_get_class(vcpu) == ESR_ELx_EC_DABT_LOW && |
| 355 | kvm_vcpu_trap_get_fault_type(vcpu) == FSC_FAULT && |
| 356 | kvm_vcpu_dabt_isvalid(vcpu) && |
| 357 | !kvm_vcpu_dabt_isextabt(vcpu) && |
| 358 | !kvm_vcpu_dabt_iss1tw(vcpu); |
| 359 | |
Marc Zyngier | 3272f0d | 2016-09-06 14:02:17 +0100 | [diff] [blame] | 360 | if (valid) { |
| 361 | int ret = __vgic_v2_perform_cpuif_access(vcpu); |
| 362 | |
| 363 | if (ret == 1) { |
Alex Bennée | e3feebf | 2017-11-23 12:11:34 +0000 | [diff] [blame] | 364 | if (__skip_instr(vcpu)) |
| 365 | goto again; |
| 366 | else |
| 367 | exit_code = ARM_EXCEPTION_TRAP; |
Marc Zyngier | 3272f0d | 2016-09-06 14:02:17 +0100 | [diff] [blame] | 368 | } |
| 369 | |
| 370 | if (ret == -1) { |
Alex Bennée | e3feebf | 2017-11-23 12:11:34 +0000 | [diff] [blame] | 371 | /* Promote an illegal access to an |
| 372 | * SError. If we would be returning |
| 373 | * due to single-step clear the SS |
| 374 | * bit so handle_exit knows what to |
| 375 | * do after dealing with the error. |
| 376 | */ |
| 377 | if (!__skip_instr(vcpu)) |
| 378 | *vcpu_cpsr(vcpu) &= ~DBG_SPSR_SS; |
Marc Zyngier | 3272f0d | 2016-09-06 14:02:17 +0100 | [diff] [blame] | 379 | exit_code = ARM_EXCEPTION_EL1_SERROR; |
| 380 | } |
| 381 | |
| 382 | /* 0 falls through to be handler out of EL2 */ |
Marc Zyngier | fb5ee36 | 2016-09-06 09:28:45 +0100 | [diff] [blame] | 383 | } |
| 384 | } |
| 385 | |
Marc Zyngier | 59da1cb | 2017-06-09 12:49:33 +0100 | [diff] [blame] | 386 | if (static_branch_unlikely(&vgic_v3_cpuif_trap) && |
| 387 | exit_code == ARM_EXCEPTION_TRAP && |
| 388 | (kvm_vcpu_trap_get_class(vcpu) == ESR_ELx_EC_SYS64 || |
| 389 | kvm_vcpu_trap_get_class(vcpu) == ESR_ELx_EC_CP15_32)) { |
| 390 | int ret = __vgic_v3_perform_cpuif_access(vcpu); |
| 391 | |
| 392 | if (ret == 1) { |
Alex Bennée | e3feebf | 2017-11-23 12:11:34 +0000 | [diff] [blame] | 393 | if (__skip_instr(vcpu)) |
| 394 | goto again; |
| 395 | else |
| 396 | exit_code = ARM_EXCEPTION_TRAP; |
Marc Zyngier | 59da1cb | 2017-06-09 12:49:33 +0100 | [diff] [blame] | 397 | } |
| 398 | |
| 399 | /* 0 falls through to be handled out of EL2 */ |
| 400 | } |
| 401 | |
Shanker Donthineni | ec82b56 | 2018-01-05 14:28:59 -0600 | [diff] [blame] | 402 | if (cpus_have_const_cap(ARM64_HARDEN_BP_POST_GUEST_EXIT)) { |
| 403 | u32 midr = read_cpuid_id(); |
| 404 | |
| 405 | /* Apply BTAC predictors mitigation to all Falkor chips */ |
Shanker Donthineni | 16e574d | 2018-02-11 19:16:15 -0600 | [diff] [blame] | 406 | if (((midr & MIDR_CPU_MODEL_MASK) == MIDR_QCOM_FALKOR) || |
| 407 | ((midr & MIDR_CPU_MODEL_MASK) == MIDR_QCOM_FALKOR_V1)) { |
Shanker Donthineni | ec82b56 | 2018-01-05 14:28:59 -0600 | [diff] [blame] | 408 | __qcom_hyp_sanitize_btac_predictors(); |
Shanker Donthineni | 16e574d | 2018-02-11 19:16:15 -0600 | [diff] [blame] | 409 | } |
Shanker Donthineni | ec82b56 | 2018-01-05 14:28:59 -0600 | [diff] [blame] | 410 | } |
| 411 | |
Marc Zyngier | c13d168 | 2015-10-26 08:34:09 +0000 | [diff] [blame] | 412 | fp_enabled = __fpsimd_enabled(); |
| 413 | |
Marc Zyngier | edef528 | 2015-10-28 12:17:35 +0000 | [diff] [blame] | 414 | __sysreg_save_guest_state(guest_ctxt); |
Marc Zyngier | be901e9 | 2015-10-21 09:57:10 +0100 | [diff] [blame] | 415 | __sysreg32_save_state(vcpu); |
Christoffer Dall | 688c50a | 2017-01-04 16:10:28 +0100 | [diff] [blame] | 416 | __timer_disable_traps(vcpu); |
Marc Zyngier | be901e9 | 2015-10-21 09:57:10 +0100 | [diff] [blame] | 417 | __vgic_save_state(vcpu); |
| 418 | |
| 419 | __deactivate_traps(vcpu); |
| 420 | __deactivate_vm(vcpu); |
| 421 | |
Marc Zyngier | edef528 | 2015-10-28 12:17:35 +0000 | [diff] [blame] | 422 | __sysreg_restore_host_state(host_ctxt); |
Marc Zyngier | be901e9 | 2015-10-21 09:57:10 +0100 | [diff] [blame] | 423 | |
Marc Zyngier | c13d168 | 2015-10-26 08:34:09 +0000 | [diff] [blame] | 424 | if (fp_enabled) { |
| 425 | __fpsimd_save_state(&guest_ctxt->gp_regs.fp_regs); |
| 426 | __fpsimd_restore_state(&host_ctxt->gp_regs.fp_regs); |
| 427 | } |
| 428 | |
Marc Zyngier | be901e9 | 2015-10-21 09:57:10 +0100 | [diff] [blame] | 429 | __debug_save_state(vcpu, kern_hyp_va(vcpu->arch.debug_ptr), guest_ctxt); |
Will Deacon | f85279b | 2016-09-22 11:35:43 +0100 | [diff] [blame] | 430 | /* |
| 431 | * This must come after restoring the host sysregs, since a non-VHE |
| 432 | * system may enable SPE here and make use of the TTBRs. |
| 433 | */ |
Marc Zyngier | be901e9 | 2015-10-21 09:57:10 +0100 | [diff] [blame] | 434 | __debug_cond_restore_host_state(vcpu); |
| 435 | |
| 436 | return exit_code; |
| 437 | } |
Marc Zyngier | 53fd5b6 | 2015-10-25 15:21:52 +0000 | [diff] [blame] | 438 | |
| 439 | static const char __hyp_panic_string[] = "HYP panic:\nPS:%08llx PC:%016llx ESR:%08llx\nFAR:%016llx HPFAR:%016llx PAR:%016llx\nVCPU:%p\n"; |
| 440 | |
James Morse | c97e166 | 2018-01-08 15:38:05 +0000 | [diff] [blame] | 441 | static void __hyp_text __hyp_call_panic_nvhe(u64 spsr, u64 elr, u64 par, |
| 442 | struct kvm_vcpu *vcpu) |
Marc Zyngier | 53fd5b6 | 2015-10-25 15:21:52 +0000 | [diff] [blame] | 443 | { |
Marc Zyngier | cf7df13 | 2016-06-30 18:40:35 +0100 | [diff] [blame] | 444 | unsigned long str_va; |
Marc Zyngier | 253dcbd | 2015-11-17 14:07:45 +0000 | [diff] [blame] | 445 | |
Marc Zyngier | cf7df13 | 2016-06-30 18:40:35 +0100 | [diff] [blame] | 446 | /* |
| 447 | * Force the panic string to be loaded from the literal pool, |
| 448 | * making sure it is a kernel address and not a PC-relative |
| 449 | * reference. |
| 450 | */ |
| 451 | asm volatile("ldr %0, =__hyp_panic_string" : "=r" (str_va)); |
| 452 | |
| 453 | __hyp_do_panic(str_va, |
Marc Zyngier | 253dcbd | 2015-11-17 14:07:45 +0000 | [diff] [blame] | 454 | spsr, elr, |
| 455 | read_sysreg(esr_el2), read_sysreg_el2(far), |
James Morse | c97e166 | 2018-01-08 15:38:05 +0000 | [diff] [blame] | 456 | read_sysreg(hpfar_el2), par, vcpu); |
Marc Zyngier | 253dcbd | 2015-11-17 14:07:45 +0000 | [diff] [blame] | 457 | } |
| 458 | |
James Morse | c97e166 | 2018-01-08 15:38:05 +0000 | [diff] [blame] | 459 | static void __hyp_text __hyp_call_panic_vhe(u64 spsr, u64 elr, u64 par, |
| 460 | struct kvm_vcpu *vcpu) |
Marc Zyngier | 253dcbd | 2015-11-17 14:07:45 +0000 | [diff] [blame] | 461 | { |
| 462 | panic(__hyp_panic_string, |
| 463 | spsr, elr, |
| 464 | read_sysreg_el2(esr), read_sysreg_el2(far), |
James Morse | c97e166 | 2018-01-08 15:38:05 +0000 | [diff] [blame] | 465 | read_sysreg(hpfar_el2), par, vcpu); |
Marc Zyngier | 253dcbd | 2015-11-17 14:07:45 +0000 | [diff] [blame] | 466 | } |
| 467 | |
| 468 | static hyp_alternate_select(__hyp_call_panic, |
| 469 | __hyp_call_panic_nvhe, __hyp_call_panic_vhe, |
| 470 | ARM64_HAS_VIRT_HOST_EXTN); |
| 471 | |
Christoffer Dall | 4464e21 | 2017-10-08 17:01:56 +0200 | [diff] [blame^] | 472 | void __hyp_text __noreturn hyp_panic(struct kvm_cpu_context *host_ctxt) |
Marc Zyngier | 253dcbd | 2015-11-17 14:07:45 +0000 | [diff] [blame] | 473 | { |
James Morse | c97e166 | 2018-01-08 15:38:05 +0000 | [diff] [blame] | 474 | struct kvm_vcpu *vcpu = NULL; |
| 475 | |
Marc Zyngier | 253dcbd | 2015-11-17 14:07:45 +0000 | [diff] [blame] | 476 | u64 spsr = read_sysreg_el2(spsr); |
| 477 | u64 elr = read_sysreg_el2(elr); |
Marc Zyngier | 53fd5b6 | 2015-10-25 15:21:52 +0000 | [diff] [blame] | 478 | u64 par = read_sysreg(par_el1); |
| 479 | |
| 480 | if (read_sysreg(vttbr_el2)) { |
James Morse | c97e166 | 2018-01-08 15:38:05 +0000 | [diff] [blame] | 481 | vcpu = host_ctxt->__hyp_running_vcpu; |
Christoffer Dall | 688c50a | 2017-01-04 16:10:28 +0100 | [diff] [blame] | 482 | __timer_disable_traps(vcpu); |
Marc Zyngier | 53fd5b6 | 2015-10-25 15:21:52 +0000 | [diff] [blame] | 483 | __deactivate_traps(vcpu); |
| 484 | __deactivate_vm(vcpu); |
Marc Zyngier | edef528 | 2015-10-28 12:17:35 +0000 | [diff] [blame] | 485 | __sysreg_restore_host_state(host_ctxt); |
Marc Zyngier | 53fd5b6 | 2015-10-25 15:21:52 +0000 | [diff] [blame] | 486 | } |
| 487 | |
| 488 | /* Call panic for real */ |
James Morse | c97e166 | 2018-01-08 15:38:05 +0000 | [diff] [blame] | 489 | __hyp_call_panic()(spsr, elr, par, vcpu); |
Marc Zyngier | 53fd5b6 | 2015-10-25 15:21:52 +0000 | [diff] [blame] | 490 | |
| 491 | unreachable(); |
| 492 | } |