blob: ecf5b05d1e16c82338b69d1f0153952631dfa6ad [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>
Marc Zyngier68908bf2015-01-29 15:47:55 +000019#include <asm/kvm_asm.h>
20
Marc Zyngierbe901e92015-10-21 09:57:10 +010021#include "hyp.h"
22
Marc Zyngier32876222015-10-28 14:15:45 +000023static bool __hyp_text __fpsimd_enabled_nvhe(void)
24{
25 return !(read_sysreg(cptr_el2) & CPTR_EL2_TFP);
26}
27
28static bool __hyp_text __fpsimd_enabled_vhe(void)
29{
30 return !!(read_sysreg(cpacr_el1) & CPACR_EL1_FPEN);
31}
32
33static hyp_alternate_select(__fpsimd_is_enabled,
34 __fpsimd_enabled_nvhe, __fpsimd_enabled_vhe,
35 ARM64_HAS_VIRT_HOST_EXTN);
36
37bool __hyp_text __fpsimd_enabled(void)
38{
39 return __fpsimd_is_enabled()();
40}
41
Marc Zyngier68908bf2015-01-29 15:47:55 +000042static void __hyp_text __activate_traps_vhe(void)
43{
44 u64 val;
45
46 val = read_sysreg(cpacr_el1);
47 val |= CPACR_EL1_TTA;
48 val &= ~CPACR_EL1_FPEN;
49 write_sysreg(val, cpacr_el1);
50
51 write_sysreg(__kvm_hyp_vector, vbar_el1);
52}
53
54static void __hyp_text __activate_traps_nvhe(void)
55{
56 u64 val;
57
58 val = CPTR_EL2_DEFAULT;
59 val |= CPTR_EL2_TTA | CPTR_EL2_TFP;
60 write_sysreg(val, cptr_el2);
61}
62
63static hyp_alternate_select(__activate_traps_arch,
64 __activate_traps_nvhe, __activate_traps_vhe,
65 ARM64_HAS_VIRT_HOST_EXTN);
66
Marc Zyngierbe901e92015-10-21 09:57:10 +010067static void __hyp_text __activate_traps(struct kvm_vcpu *vcpu)
68{
69 u64 val;
70
71 /*
72 * We are about to set CPTR_EL2.TFP to trap all floating point
73 * register accesses to EL2, however, the ARM ARM clearly states that
74 * traps are only taken to EL2 if the operation would not otherwise
75 * trap to EL1. Therefore, always make sure that for 32-bit guests,
76 * we set FPEXC.EN to prevent traps to EL1, when setting the TFP bit.
77 */
78 val = vcpu->arch.hcr_el2;
79 if (!(val & HCR_RW)) {
80 write_sysreg(1 << 30, fpexc32_el2);
81 isb();
82 }
83 write_sysreg(val, hcr_el2);
84 /* Trap on AArch32 cp15 c15 accesses (EL1 or EL0) */
85 write_sysreg(1 << 15, hstr_el2);
Marc Zyngierbe901e92015-10-21 09:57:10 +010086 write_sysreg(vcpu->arch.mdcr_el2, mdcr_el2);
Marc Zyngier68908bf2015-01-29 15:47:55 +000087 __activate_traps_arch()();
Marc Zyngierbe901e92015-10-21 09:57:10 +010088}
89
Marc Zyngier68908bf2015-01-29 15:47:55 +000090static void __hyp_text __deactivate_traps_vhe(void)
91{
92 extern char vectors[]; /* kernel exception vectors */
93
94 write_sysreg(HCR_HOST_VHE_FLAGS, hcr_el2);
95 write_sysreg(CPACR_EL1_FPEN, cpacr_el1);
96 write_sysreg(vectors, vbar_el1);
97}
98
99static void __hyp_text __deactivate_traps_nvhe(void)
100{
101 write_sysreg(HCR_RW, hcr_el2);
102 write_sysreg(CPTR_EL2_DEFAULT, cptr_el2);
103}
104
105static hyp_alternate_select(__deactivate_traps_arch,
106 __deactivate_traps_nvhe, __deactivate_traps_vhe,
107 ARM64_HAS_VIRT_HOST_EXTN);
108
Marc Zyngierbe901e92015-10-21 09:57:10 +0100109static void __hyp_text __deactivate_traps(struct kvm_vcpu *vcpu)
110{
Marc Zyngier68908bf2015-01-29 15:47:55 +0000111 __deactivate_traps_arch()();
Marc Zyngierbe901e92015-10-21 09:57:10 +0100112 write_sysreg(0, hstr_el2);
113 write_sysreg(read_sysreg(mdcr_el2) & MDCR_EL2_HPMN_MASK, mdcr_el2);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100114}
115
116static void __hyp_text __activate_vm(struct kvm_vcpu *vcpu)
117{
118 struct kvm *kvm = kern_hyp_va(vcpu->kvm);
119 write_sysreg(kvm->arch.vttbr, vttbr_el2);
120}
121
122static void __hyp_text __deactivate_vm(struct kvm_vcpu *vcpu)
123{
124 write_sysreg(0, vttbr_el2);
125}
126
127static hyp_alternate_select(__vgic_call_save_state,
128 __vgic_v2_save_state, __vgic_v3_save_state,
129 ARM64_HAS_SYSREG_GIC_CPUIF);
130
131static hyp_alternate_select(__vgic_call_restore_state,
132 __vgic_v2_restore_state, __vgic_v3_restore_state,
133 ARM64_HAS_SYSREG_GIC_CPUIF);
134
135static void __hyp_text __vgic_save_state(struct kvm_vcpu *vcpu)
136{
137 __vgic_call_save_state()(vcpu);
138 write_sysreg(read_sysreg(hcr_el2) & ~HCR_INT_OVERRIDE, hcr_el2);
139}
140
141static void __hyp_text __vgic_restore_state(struct kvm_vcpu *vcpu)
142{
143 u64 val;
144
145 val = read_sysreg(hcr_el2);
146 val |= HCR_INT_OVERRIDE;
147 val |= vcpu->arch.irq_lines;
148 write_sysreg(val, hcr_el2);
149
150 __vgic_call_restore_state()(vcpu);
151}
152
Marc Zyngier5f05a722015-10-28 15:06:47 +0000153static bool __hyp_text __true_value(void)
154{
155 return true;
156}
157
158static bool __hyp_text __false_value(void)
159{
160 return false;
161}
162
163static hyp_alternate_select(__check_arm_834220,
164 __false_value, __true_value,
165 ARM64_WORKAROUND_834220);
166
167static bool __hyp_text __translate_far_to_hpfar(u64 far, u64 *hpfar)
168{
169 u64 par, tmp;
170
171 /*
172 * Resolve the IPA the hard way using the guest VA.
173 *
174 * Stage-1 translation already validated the memory access
175 * rights. As such, we can use the EL1 translation regime, and
176 * don't have to distinguish between EL0 and EL1 access.
177 *
178 * We do need to save/restore PAR_EL1 though, as we haven't
179 * saved the guest context yet, and we may return early...
180 */
181 par = read_sysreg(par_el1);
182 asm volatile("at s1e1r, %0" : : "r" (far));
183 isb();
184
185 tmp = read_sysreg(par_el1);
186 write_sysreg(par, par_el1);
187
188 if (unlikely(tmp & 1))
189 return false; /* Translation failed, back to guest */
190
191 /* Convert PAR to HPFAR format */
192 *hpfar = ((tmp >> 12) & ((1UL << 36) - 1)) << 4;
193 return true;
194}
195
196static bool __hyp_text __populate_fault_info(struct kvm_vcpu *vcpu)
197{
198 u64 esr = read_sysreg_el2(esr);
199 u8 ec = esr >> ESR_ELx_EC_SHIFT;
200 u64 hpfar, far;
201
202 vcpu->arch.fault.esr_el2 = esr;
203
204 if (ec != ESR_ELx_EC_DABT_LOW && ec != ESR_ELx_EC_IABT_LOW)
205 return true;
206
207 far = read_sysreg_el2(far);
208
209 /*
210 * The HPFAR can be invalid if the stage 2 fault did not
211 * happen during a stage 1 page table walk (the ESR_EL2.S1PTW
212 * bit is clear) and one of the two following cases are true:
213 * 1. The fault was due to a permission fault
214 * 2. The processor carries errata 834220
215 *
216 * Therefore, for all non S1PTW faults where we either have a
217 * permission fault or the errata workaround is enabled, we
218 * resolve the IPA using the AT instruction.
219 */
220 if (!(esr & ESR_ELx_S1PTW) &&
221 (__check_arm_834220()() || (esr & ESR_ELx_FSC_TYPE) == FSC_PERM)) {
222 if (!__translate_far_to_hpfar(far, &hpfar))
223 return false;
224 } else {
225 hpfar = read_sysreg(hpfar_el2);
226 }
227
228 vcpu->arch.fault.far_el2 = far;
229 vcpu->arch.fault.hpfar_el2 = hpfar;
230 return true;
231}
232
Marc Zyngier3ffa75c2015-10-26 09:10:07 +0000233static int __hyp_text __guest_run(struct kvm_vcpu *vcpu)
Marc Zyngierbe901e92015-10-21 09:57:10 +0100234{
235 struct kvm_cpu_context *host_ctxt;
236 struct kvm_cpu_context *guest_ctxt;
Marc Zyngierc13d1682015-10-26 08:34:09 +0000237 bool fp_enabled;
Marc Zyngierbe901e92015-10-21 09:57:10 +0100238 u64 exit_code;
239
240 vcpu = kern_hyp_va(vcpu);
241 write_sysreg(vcpu, tpidr_el2);
242
243 host_ctxt = kern_hyp_va(vcpu->arch.host_cpu_context);
244 guest_ctxt = &vcpu->arch.ctxt;
245
Marc Zyngieredef5282015-10-28 12:17:35 +0000246 __sysreg_save_host_state(host_ctxt);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100247 __debug_cond_save_host_state(vcpu);
248
249 __activate_traps(vcpu);
250 __activate_vm(vcpu);
251
252 __vgic_restore_state(vcpu);
253 __timer_restore_state(vcpu);
254
255 /*
256 * We must restore the 32-bit state before the sysregs, thanks
257 * to Cortex-A57 erratum #852523.
258 */
259 __sysreg32_restore_state(vcpu);
Marc Zyngieredef5282015-10-28 12:17:35 +0000260 __sysreg_restore_guest_state(guest_ctxt);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100261 __debug_restore_state(vcpu, kern_hyp_va(vcpu->arch.debug_ptr), guest_ctxt);
262
263 /* Jump in the fire! */
Marc Zyngier5f05a722015-10-28 15:06:47 +0000264again:
Marc Zyngierbe901e92015-10-21 09:57:10 +0100265 exit_code = __guest_enter(vcpu, host_ctxt);
266 /* And we're baaack! */
267
Marc Zyngier5f05a722015-10-28 15:06:47 +0000268 if (exit_code == ARM_EXCEPTION_TRAP && !__populate_fault_info(vcpu))
269 goto again;
270
Marc Zyngierc13d1682015-10-26 08:34:09 +0000271 fp_enabled = __fpsimd_enabled();
272
Marc Zyngieredef5282015-10-28 12:17:35 +0000273 __sysreg_save_guest_state(guest_ctxt);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100274 __sysreg32_save_state(vcpu);
275 __timer_save_state(vcpu);
276 __vgic_save_state(vcpu);
277
278 __deactivate_traps(vcpu);
279 __deactivate_vm(vcpu);
280
Marc Zyngieredef5282015-10-28 12:17:35 +0000281 __sysreg_restore_host_state(host_ctxt);
Marc Zyngierbe901e92015-10-21 09:57:10 +0100282
Marc Zyngierc13d1682015-10-26 08:34:09 +0000283 if (fp_enabled) {
284 __fpsimd_save_state(&guest_ctxt->gp_regs.fp_regs);
285 __fpsimd_restore_state(&host_ctxt->gp_regs.fp_regs);
286 }
287
Marc Zyngierbe901e92015-10-21 09:57:10 +0100288 __debug_save_state(vcpu, kern_hyp_va(vcpu->arch.debug_ptr), guest_ctxt);
289 __debug_cond_restore_host_state(vcpu);
290
291 return exit_code;
292}
Marc Zyngier53fd5b62015-10-25 15:21:52 +0000293
Marc Zyngier3ffa75c2015-10-26 09:10:07 +0000294__alias(__guest_run) int __kvm_vcpu_run(struct kvm_vcpu *vcpu);
Marc Zyngier044ac372015-10-25 13:58:00 +0000295
Marc Zyngier53fd5b62015-10-25 15:21:52 +0000296static const char __hyp_panic_string[] = "HYP panic:\nPS:%08llx PC:%016llx ESR:%08llx\nFAR:%016llx HPFAR:%016llx PAR:%016llx\nVCPU:%p\n";
297
Marc Zyngier253dcbd2015-11-17 14:07:45 +0000298static void __hyp_text __hyp_call_panic_nvhe(u64 spsr, u64 elr, u64 par)
Marc Zyngier53fd5b62015-10-25 15:21:52 +0000299{
300 unsigned long str_va = (unsigned long)__hyp_panic_string;
Marc Zyngier253dcbd2015-11-17 14:07:45 +0000301
302 __hyp_do_panic(hyp_kern_va(str_va),
303 spsr, elr,
304 read_sysreg(esr_el2), read_sysreg_el2(far),
305 read_sysreg(hpfar_el2), par,
306 (void *)read_sysreg(tpidr_el2));
307}
308
309static void __hyp_text __hyp_call_panic_vhe(u64 spsr, u64 elr, u64 par)
310{
311 panic(__hyp_panic_string,
312 spsr, elr,
313 read_sysreg_el2(esr), read_sysreg_el2(far),
314 read_sysreg(hpfar_el2), par,
315 (void *)read_sysreg(tpidr_el2));
316}
317
318static hyp_alternate_select(__hyp_call_panic,
319 __hyp_call_panic_nvhe, __hyp_call_panic_vhe,
320 ARM64_HAS_VIRT_HOST_EXTN);
321
322void __hyp_text __noreturn __hyp_panic(void)
323{
324 u64 spsr = read_sysreg_el2(spsr);
325 u64 elr = read_sysreg_el2(elr);
Marc Zyngier53fd5b62015-10-25 15:21:52 +0000326 u64 par = read_sysreg(par_el1);
327
328 if (read_sysreg(vttbr_el2)) {
329 struct kvm_vcpu *vcpu;
330 struct kvm_cpu_context *host_ctxt;
331
332 vcpu = (struct kvm_vcpu *)read_sysreg(tpidr_el2);
333 host_ctxt = kern_hyp_va(vcpu->arch.host_cpu_context);
334 __deactivate_traps(vcpu);
335 __deactivate_vm(vcpu);
Marc Zyngieredef5282015-10-28 12:17:35 +0000336 __sysreg_restore_host_state(host_ctxt);
Marc Zyngier53fd5b62015-10-25 15:21:52 +0000337 }
338
339 /* Call panic for real */
Marc Zyngier253dcbd2015-11-17 14:07:45 +0000340 __hyp_call_panic()(spsr, elr, par);
Marc Zyngier53fd5b62015-10-25 15:21:52 +0000341
342 unreachable();
343}