blob: c52a8451637c483f949b40f931e3a0ba3a99351e [file] [log] [blame]
Marc Zyngier6d6ec202015-10-19 18:02:48 +01001/*
2 * Copyright (C) 2012-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
18#include <linux/compiler.h>
19#include <linux/kvm_host.h>
20
James Morse7d826022019-01-24 16:32:54 +000021#include <asm/kprobes.h>
Marc Zyngier9d8415d2015-10-25 19:57:11 +000022#include <asm/kvm_asm.h>
Christoffer Dalle72341c2017-12-13 22:56:48 +010023#include <asm/kvm_emulate.h>
Marc Zyngier13720a52016-01-28 13:44:07 +000024#include <asm/kvm_hyp.h>
Marc Zyngier6d6ec202015-10-19 18:02:48 +010025
Marc Zyngier9c6c3562015-10-28 12:39:38 +000026/*
27 * Non-VHE: Both host and guest must save everything.
28 *
Christoffer Dallfc7563b2016-03-15 19:43:45 +010029 * VHE: Host and guest must save mdscr_el1 and sp_el0 (and the PC and pstate,
30 * which are handled as part of the el2 return state) on every switch.
31 * tpidr_el0 and tpidrro_el0 only need to be switched when going
32 * to host userspace or a different VCPU. EL1 registers only need to be
33 * switched when potentially going to run a different VCPU. The latter two
34 * classes are handled as part of kvm_arch_vcpu_load and kvm_arch_vcpu_put.
Marc Zyngier9c6c3562015-10-28 12:39:38 +000035 */
36
37static void __hyp_text __sysreg_save_common_state(struct kvm_cpu_context *ctxt)
38{
Marc Zyngier4c47eb12016-07-19 13:56:54 +010039 ctxt->sys_regs[MDSCR_EL1] = read_sysreg(mdscr_el1);
Christoffer Dall060701f2016-03-15 21:41:55 +010040
41 /*
42 * The host arm64 Linux uses sp_el0 to point to 'current' and it must
43 * therefore be saved/restored on every entry/exit to/from the guest.
44 */
Marc Zyngier9c6c3562015-10-28 12:39:38 +000045 ctxt->gp_regs.regs.sp = read_sysreg(sp_el0);
Marc Zyngier9c6c3562015-10-28 12:39:38 +000046}
47
Christoffer Dall060701f2016-03-15 21:41:55 +010048static void __hyp_text __sysreg_save_user_state(struct kvm_cpu_context *ctxt)
49{
50 ctxt->sys_regs[TPIDR_EL0] = read_sysreg(tpidr_el0);
51 ctxt->sys_regs[TPIDRRO_EL0] = read_sysreg(tpidrro_el0);
52}
53
54static void __hyp_text __sysreg_save_el1_state(struct kvm_cpu_context *ctxt)
Marc Zyngier6d6ec202015-10-19 18:02:48 +010055{
Marc Zyngier6d6ec202015-10-19 18:02:48 +010056 ctxt->sys_regs[CSSELR_EL1] = read_sysreg(csselr_el1);
Marc Zyngier094f8232015-10-28 12:56:25 +000057 ctxt->sys_regs[SCTLR_EL1] = read_sysreg_el1(sctlr);
Christoffer Dall060701f2016-03-15 21:41:55 +010058 ctxt->sys_regs[ACTLR_EL1] = read_sysreg(actlr_el1);
Marc Zyngier094f8232015-10-28 12:56:25 +000059 ctxt->sys_regs[CPACR_EL1] = read_sysreg_el1(cpacr);
60 ctxt->sys_regs[TTBR0_EL1] = read_sysreg_el1(ttbr0);
61 ctxt->sys_regs[TTBR1_EL1] = read_sysreg_el1(ttbr1);
62 ctxt->sys_regs[TCR_EL1] = read_sysreg_el1(tcr);
63 ctxt->sys_regs[ESR_EL1] = read_sysreg_el1(esr);
64 ctxt->sys_regs[AFSR0_EL1] = read_sysreg_el1(afsr0);
65 ctxt->sys_regs[AFSR1_EL1] = read_sysreg_el1(afsr1);
66 ctxt->sys_regs[FAR_EL1] = read_sysreg_el1(far);
67 ctxt->sys_regs[MAIR_EL1] = read_sysreg_el1(mair);
68 ctxt->sys_regs[VBAR_EL1] = read_sysreg_el1(vbar);
69 ctxt->sys_regs[CONTEXTIDR_EL1] = read_sysreg_el1(contextidr);
70 ctxt->sys_regs[AMAIR_EL1] = read_sysreg_el1(amair);
71 ctxt->sys_regs[CNTKCTL_EL1] = read_sysreg_el1(cntkctl);
Marc Zyngier6d6ec202015-10-19 18:02:48 +010072 ctxt->sys_regs[PAR_EL1] = read_sysreg(par_el1);
James Morse1f742672018-01-08 15:38:07 +000073 ctxt->sys_regs[TPIDR_EL1] = read_sysreg(tpidr_el1);
Marc Zyngier6d6ec202015-10-19 18:02:48 +010074
Marc Zyngier6d6ec202015-10-19 18:02:48 +010075 ctxt->gp_regs.sp_el1 = read_sysreg(sp_el1);
Marc Zyngier094f8232015-10-28 12:56:25 +000076 ctxt->gp_regs.elr_el1 = read_sysreg_el1(elr);
77 ctxt->gp_regs.spsr[KVM_SPSR_EL1]= read_sysreg_el1(spsr);
Christoffer Dall0c389d92017-10-10 22:54:57 +020078}
79
80static void __hyp_text __sysreg_save_el2_return_state(struct kvm_cpu_context *ctxt)
81{
James Morse1f742672018-01-08 15:38:07 +000082 ctxt->gp_regs.regs.pc = read_sysreg_el2(elr);
83 ctxt->gp_regs.regs.pstate = read_sysreg_el2(spsr);
James Morsec773ae22018-01-15 19:39:02 +000084
85 if (cpus_have_const_cap(ARM64_HAS_RAS_EXTN))
86 ctxt->sys_regs[DISR_EL1] = read_sysreg_s(SYS_VDISR_EL2);
Marc Zyngier6d6ec202015-10-19 18:02:48 +010087}
88
Christoffer Dall4cdecab2017-10-10 22:40:13 +020089void __hyp_text __sysreg_save_state_nvhe(struct kvm_cpu_context *ctxt)
Christoffer Dallf8374532017-10-10 22:19:31 +020090{
91 __sysreg_save_el1_state(ctxt);
92 __sysreg_save_common_state(ctxt);
93 __sysreg_save_user_state(ctxt);
Christoffer Dall0c389d92017-10-10 22:54:57 +020094 __sysreg_save_el2_return_state(ctxt);
Christoffer Dallf8374532017-10-10 22:19:31 +020095}
96
97void sysreg_save_host_state_vhe(struct kvm_cpu_context *ctxt)
98{
99 __sysreg_save_common_state(ctxt);
Christoffer Dallf8374532017-10-10 22:19:31 +0200100}
James Morse7d826022019-01-24 16:32:54 +0000101NOKPROBE_SYMBOL(sysreg_save_host_state_vhe);
Christoffer Dallf8374532017-10-10 22:19:31 +0200102
103void sysreg_save_guest_state_vhe(struct kvm_cpu_context *ctxt)
Marc Zyngieredef5282015-10-28 12:17:35 +0000104{
Marc Zyngier9c6c3562015-10-28 12:39:38 +0000105 __sysreg_save_common_state(ctxt);
Christoffer Dall0c389d92017-10-10 22:54:57 +0200106 __sysreg_save_el2_return_state(ctxt);
Marc Zyngier9c6c3562015-10-28 12:39:38 +0000107}
James Morse7d826022019-01-24 16:32:54 +0000108NOKPROBE_SYMBOL(sysreg_save_guest_state_vhe);
Marc Zyngier9c6c3562015-10-28 12:39:38 +0000109
110static void __hyp_text __sysreg_restore_common_state(struct kvm_cpu_context *ctxt)
111{
Marc Zyngier4c47eb12016-07-19 13:56:54 +0100112 write_sysreg(ctxt->sys_regs[MDSCR_EL1], mdscr_el1);
Christoffer Dall060701f2016-03-15 21:41:55 +0100113
114 /*
115 * The host arm64 Linux uses sp_el0 to point to 'current' and it must
116 * therefore be saved/restored on every entry/exit to/from the guest.
117 */
Marc Zyngier9c6c3562015-10-28 12:39:38 +0000118 write_sysreg(ctxt->gp_regs.regs.sp, sp_el0);
Marc Zyngieredef5282015-10-28 12:17:35 +0000119}
120
Christoffer Dall060701f2016-03-15 21:41:55 +0100121static void __hyp_text __sysreg_restore_user_state(struct kvm_cpu_context *ctxt)
122{
123 write_sysreg(ctxt->sys_regs[TPIDR_EL0], tpidr_el0);
124 write_sysreg(ctxt->sys_regs[TPIDRRO_EL0], tpidrro_el0);
125}
126
127static void __hyp_text __sysreg_restore_el1_state(struct kvm_cpu_context *ctxt)
Marc Zyngier6d6ec202015-10-19 18:02:48 +0100128{
Marc Zyngier094f8232015-10-28 12:56:25 +0000129 write_sysreg(ctxt->sys_regs[MPIDR_EL1], vmpidr_el2);
130 write_sysreg(ctxt->sys_regs[CSSELR_EL1], csselr_el1);
131 write_sysreg_el1(ctxt->sys_regs[SCTLR_EL1], sctlr);
Christoffer Dall060701f2016-03-15 21:41:55 +0100132 write_sysreg(ctxt->sys_regs[ACTLR_EL1], actlr_el1);
Marc Zyngier094f8232015-10-28 12:56:25 +0000133 write_sysreg_el1(ctxt->sys_regs[CPACR_EL1], cpacr);
134 write_sysreg_el1(ctxt->sys_regs[TTBR0_EL1], ttbr0);
135 write_sysreg_el1(ctxt->sys_regs[TTBR1_EL1], ttbr1);
136 write_sysreg_el1(ctxt->sys_regs[TCR_EL1], tcr);
137 write_sysreg_el1(ctxt->sys_regs[ESR_EL1], esr);
138 write_sysreg_el1(ctxt->sys_regs[AFSR0_EL1], afsr0);
139 write_sysreg_el1(ctxt->sys_regs[AFSR1_EL1], afsr1);
140 write_sysreg_el1(ctxt->sys_regs[FAR_EL1], far);
141 write_sysreg_el1(ctxt->sys_regs[MAIR_EL1], mair);
142 write_sysreg_el1(ctxt->sys_regs[VBAR_EL1], vbar);
143 write_sysreg_el1(ctxt->sys_regs[CONTEXTIDR_EL1],contextidr);
144 write_sysreg_el1(ctxt->sys_regs[AMAIR_EL1], amair);
145 write_sysreg_el1(ctxt->sys_regs[CNTKCTL_EL1], cntkctl);
146 write_sysreg(ctxt->sys_regs[PAR_EL1], par_el1);
James Morse1f742672018-01-08 15:38:07 +0000147 write_sysreg(ctxt->sys_regs[TPIDR_EL1], tpidr_el1);
Marc Zyngier6d6ec202015-10-19 18:02:48 +0100148
Marc Zyngier094f8232015-10-28 12:56:25 +0000149 write_sysreg(ctxt->gp_regs.sp_el1, sp_el1);
150 write_sysreg_el1(ctxt->gp_regs.elr_el1, elr);
151 write_sysreg_el1(ctxt->gp_regs.spsr[KVM_SPSR_EL1],spsr);
Christoffer Dall0c389d92017-10-10 22:54:57 +0200152}
153
154static void __hyp_text
155__sysreg_restore_el2_return_state(struct kvm_cpu_context *ctxt)
156{
Christoffer Dalle4e11cc2018-10-17 20:21:16 +0200157 u64 pstate = ctxt->gp_regs.regs.pstate;
158 u64 mode = pstate & PSR_AA32_MODE_MASK;
159
160 /*
161 * Safety check to ensure we're setting the CPU up to enter the guest
162 * in a less privileged mode.
163 *
164 * If we are attempting a return to EL2 or higher in AArch64 state,
165 * program SPSR_EL2 with M=EL2h and the IL bit set which ensures that
166 * we'll take an illegal exception state exception immediately after
167 * the ERET to the guest. Attempts to return to AArch32 Hyp will
168 * result in an illegal exception return because EL2's execution state
169 * is determined by SCR_EL3.RW.
170 */
171 if (!(mode & PSR_MODE32_BIT) && mode >= PSR_MODE_EL2t)
172 pstate = PSR_MODE_EL2h | PSR_IL_BIT;
173
James Morse1f742672018-01-08 15:38:07 +0000174 write_sysreg_el2(ctxt->gp_regs.regs.pc, elr);
Christoffer Dalle4e11cc2018-10-17 20:21:16 +0200175 write_sysreg_el2(pstate, spsr);
James Morsec773ae22018-01-15 19:39:02 +0000176
177 if (cpus_have_const_cap(ARM64_HAS_RAS_EXTN))
178 write_sysreg_s(ctxt->sys_regs[DISR_EL1], SYS_VDISR_EL2);
Marc Zyngier6d6ec202015-10-19 18:02:48 +0100179}
Marc Zyngierc209ec82015-10-19 19:28:29 +0100180
Christoffer Dall4cdecab2017-10-10 22:40:13 +0200181void __hyp_text __sysreg_restore_state_nvhe(struct kvm_cpu_context *ctxt)
Christoffer Dallf8374532017-10-10 22:19:31 +0200182{
183 __sysreg_restore_el1_state(ctxt);
184 __sysreg_restore_common_state(ctxt);
185 __sysreg_restore_user_state(ctxt);
Christoffer Dall0c389d92017-10-10 22:54:57 +0200186 __sysreg_restore_el2_return_state(ctxt);
Christoffer Dallf8374532017-10-10 22:19:31 +0200187}
188
189void sysreg_restore_host_state_vhe(struct kvm_cpu_context *ctxt)
190{
191 __sysreg_restore_common_state(ctxt);
Christoffer Dallf8374532017-10-10 22:19:31 +0200192}
James Morse7d826022019-01-24 16:32:54 +0000193NOKPROBE_SYMBOL(sysreg_restore_host_state_vhe);
Christoffer Dallf8374532017-10-10 22:19:31 +0200194
195void sysreg_restore_guest_state_vhe(struct kvm_cpu_context *ctxt)
Marc Zyngieredef5282015-10-28 12:17:35 +0000196{
Marc Zyngier9c6c3562015-10-28 12:39:38 +0000197 __sysreg_restore_common_state(ctxt);
Christoffer Dall0c389d92017-10-10 22:54:57 +0200198 __sysreg_restore_el2_return_state(ctxt);
Marc Zyngieredef5282015-10-28 12:17:35 +0000199}
James Morse7d826022019-01-24 16:32:54 +0000200NOKPROBE_SYMBOL(sysreg_restore_guest_state_vhe);
Marc Zyngieredef5282015-10-28 12:17:35 +0000201
Marc Zyngierc209ec82015-10-19 19:28:29 +0100202void __hyp_text __sysreg32_save_state(struct kvm_vcpu *vcpu)
203{
204 u64 *spsr, *sysreg;
205
Christoffer Dalle72341c2017-12-13 22:56:48 +0100206 if (!vcpu_el1_is_32bit(vcpu))
Marc Zyngierc209ec82015-10-19 19:28:29 +0100207 return;
208
209 spsr = vcpu->arch.ctxt.gp_regs.spsr;
210 sysreg = vcpu->arch.ctxt.sys_regs;
211
212 spsr[KVM_SPSR_ABT] = read_sysreg(spsr_abt);
213 spsr[KVM_SPSR_UND] = read_sysreg(spsr_und);
214 spsr[KVM_SPSR_IRQ] = read_sysreg(spsr_irq);
215 spsr[KVM_SPSR_FIQ] = read_sysreg(spsr_fiq);
216
217 sysreg[DACR32_EL2] = read_sysreg(dacr32_el2);
218 sysreg[IFSR32_EL2] = read_sysreg(ifsr32_el2);
219
Dave Martinfa89d31c2018-05-08 14:47:23 +0100220 if (has_vhe() || vcpu->arch.flags & KVM_ARM64_DEBUG_DIRTY)
Marc Zyngierc209ec82015-10-19 19:28:29 +0100221 sysreg[DBGVCR32_EL2] = read_sysreg(dbgvcr32_el2);
222}
223
224void __hyp_text __sysreg32_restore_state(struct kvm_vcpu *vcpu)
225{
226 u64 *spsr, *sysreg;
227
Christoffer Dalle72341c2017-12-13 22:56:48 +0100228 if (!vcpu_el1_is_32bit(vcpu))
Marc Zyngierc209ec82015-10-19 19:28:29 +0100229 return;
230
231 spsr = vcpu->arch.ctxt.gp_regs.spsr;
232 sysreg = vcpu->arch.ctxt.sys_regs;
233
234 write_sysreg(spsr[KVM_SPSR_ABT], spsr_abt);
235 write_sysreg(spsr[KVM_SPSR_UND], spsr_und);
236 write_sysreg(spsr[KVM_SPSR_IRQ], spsr_irq);
237 write_sysreg(spsr[KVM_SPSR_FIQ], spsr_fiq);
238
239 write_sysreg(sysreg[DACR32_EL2], dacr32_el2);
240 write_sysreg(sysreg[IFSR32_EL2], ifsr32_el2);
241
Dave Martinfa89d31c2018-05-08 14:47:23 +0100242 if (has_vhe() || vcpu->arch.flags & KVM_ARM64_DEBUG_DIRTY)
Marc Zyngierc209ec82015-10-19 19:28:29 +0100243 write_sysreg(sysreg[DBGVCR32_EL2], dbgvcr32_el2);
244}
Christoffer Dall4464e212017-10-08 17:01:56 +0200245
Christoffer Dallbc192ce2017-10-10 10:21:18 +0200246/**
247 * kvm_vcpu_load_sysregs - Load guest system registers to the physical CPU
248 *
249 * @vcpu: The VCPU pointer
250 *
251 * Load system registers that do not affect the host's execution, for
252 * example EL1 system registers on a VHE system where the host kernel
253 * runs at EL2. This function is called from KVM's vcpu_load() function
254 * and loading system register state early avoids having to load them on
255 * every entry to the VM.
256 */
257void kvm_vcpu_load_sysregs(struct kvm_vcpu *vcpu)
258{
Christoffer Dallfc7563b2016-03-15 19:43:45 +0100259 struct kvm_cpu_context *host_ctxt = vcpu->arch.host_cpu_context;
260 struct kvm_cpu_context *guest_ctxt = &vcpu->arch.ctxt;
261
262 if (!has_vhe())
263 return;
264
265 __sysreg_save_user_state(host_ctxt);
266
Christoffer Dallb9f8ca42017-12-27 22:12:12 +0100267 /*
268 * Load guest EL1 and user state
269 *
270 * We must restore the 32-bit state before the sysregs, thanks
271 * to erratum #852523 (Cortex-A57) or #853709 (Cortex-A72).
272 */
273 __sysreg32_restore_state(vcpu);
Christoffer Dallfc7563b2016-03-15 19:43:45 +0100274 __sysreg_restore_user_state(guest_ctxt);
275 __sysreg_restore_el1_state(guest_ctxt);
276
277 vcpu->arch.sysregs_loaded_on_cpu = true;
Christoffer Dalla2465622017-08-04 13:47:18 +0200278
279 activate_traps_vhe_load(vcpu);
Christoffer Dallbc192ce2017-10-10 10:21:18 +0200280}
281
282/**
283 * kvm_vcpu_put_sysregs - Restore host system registers to the physical CPU
284 *
285 * @vcpu: The VCPU pointer
286 *
287 * Save guest system registers that do not affect the host's execution, for
288 * example EL1 system registers on a VHE system where the host kernel
289 * runs at EL2. This function is called from KVM's vcpu_put() function
290 * and deferring saving system register state until we're no longer running the
291 * VCPU avoids having to save them on every exit from the VM.
292 */
293void kvm_vcpu_put_sysregs(struct kvm_vcpu *vcpu)
294{
Christoffer Dallfc7563b2016-03-15 19:43:45 +0100295 struct kvm_cpu_context *host_ctxt = vcpu->arch.host_cpu_context;
296 struct kvm_cpu_context *guest_ctxt = &vcpu->arch.ctxt;
297
298 if (!has_vhe())
299 return;
300
Christoffer Dalla2465622017-08-04 13:47:18 +0200301 deactivate_traps_vhe_put();
302
Christoffer Dallfc7563b2016-03-15 19:43:45 +0100303 __sysreg_save_el1_state(guest_ctxt);
304 __sysreg_save_user_state(guest_ctxt);
Christoffer Dallb9f8ca42017-12-27 22:12:12 +0100305 __sysreg32_save_state(vcpu);
Christoffer Dallfc7563b2016-03-15 19:43:45 +0100306
307 /* Restore host user state */
308 __sysreg_restore_user_state(host_ctxt);
309
310 vcpu->arch.sysregs_loaded_on_cpu = false;
Christoffer Dallbc192ce2017-10-10 10:21:18 +0200311}
Will Deacon7c364472018-08-08 16:10:54 +0100312
313void __hyp_text __kvm_enable_ssbs(void)
314{
315 u64 tmp;
316
317 asm volatile(
318 "mrs %0, sctlr_el2\n"
319 "orr %0, %0, %1\n"
320 "msr sctlr_el2, %0"
321 : "=&r" (tmp) : "L" (SCTLR_ELx_DSSBS));
322}