blob: 143d7b7358f2c9d85d3657dd14d9c0c8d8cdaacd [file] [log] [blame]
Thomas Gleixnercaab2772019-06-03 07:44:50 +02001// SPDX-License-Identifier: GPL-2.0-only
Marc Zyngier6d6ec202015-10-19 18:02:48 +01002/*
3 * Copyright (C) 2012-2015 - ARM Ltd
4 * Author: Marc Zyngier <marc.zyngier@arm.com>
Marc Zyngier6d6ec202015-10-19 18:02:48 +01005 */
6
7#include <linux/compiler.h>
8#include <linux/kvm_host.h>
9
James Morse7d826022019-01-24 16:32:54 +000010#include <asm/kprobes.h>
Marc Zyngier9d8415d2015-10-25 19:57:11 +000011#include <asm/kvm_asm.h>
Christoffer Dalle72341c2017-12-13 22:56:48 +010012#include <asm/kvm_emulate.h>
Marc Zyngier13720a52016-01-28 13:44:07 +000013#include <asm/kvm_hyp.h>
Marc Zyngier6d6ec202015-10-19 18:02:48 +010014
Marc Zyngier9c6c3562015-10-28 12:39:38 +000015/*
16 * Non-VHE: Both host and guest must save everything.
17 *
Marc Zyngier6e977982020-04-24 14:24:34 +010018 * VHE: Host and guest must save mdscr_el1 and sp_el0 (and the PC and
19 * pstate, which are handled as part of the el2 return state) on every
20 * switch (sp_el0 is being dealt with in the assembly code).
Christoffer Dallfc7563b2016-03-15 19:43:45 +010021 * tpidr_el0 and tpidrro_el0 only need to be switched when going
22 * to host userspace or a different VCPU. EL1 registers only need to be
23 * switched when potentially going to run a different VCPU. The latter two
24 * classes are handled as part of kvm_arch_vcpu_load and kvm_arch_vcpu_put.
Marc Zyngier9c6c3562015-10-28 12:39:38 +000025 */
26
27static void __hyp_text __sysreg_save_common_state(struct kvm_cpu_context *ctxt)
28{
Marc Zyngier4c47eb12016-07-19 13:56:54 +010029 ctxt->sys_regs[MDSCR_EL1] = read_sysreg(mdscr_el1);
Marc Zyngier9c6c3562015-10-28 12:39:38 +000030}
31
Christoffer Dall060701f2016-03-15 21:41:55 +010032static void __hyp_text __sysreg_save_user_state(struct kvm_cpu_context *ctxt)
33{
34 ctxt->sys_regs[TPIDR_EL0] = read_sysreg(tpidr_el0);
35 ctxt->sys_regs[TPIDRRO_EL0] = read_sysreg(tpidrro_el0);
36}
37
38static void __hyp_text __sysreg_save_el1_state(struct kvm_cpu_context *ctxt)
Marc Zyngier6d6ec202015-10-19 18:02:48 +010039{
Marc Zyngier6d6ec202015-10-19 18:02:48 +010040 ctxt->sys_regs[CSSELR_EL1] = read_sysreg(csselr_el1);
Dave Martinfdec2a92019-04-06 11:29:40 +010041 ctxt->sys_regs[SCTLR_EL1] = read_sysreg_el1(SYS_SCTLR);
Christoffer Dall060701f2016-03-15 21:41:55 +010042 ctxt->sys_regs[ACTLR_EL1] = read_sysreg(actlr_el1);
Dave Martinfdec2a92019-04-06 11:29:40 +010043 ctxt->sys_regs[CPACR_EL1] = read_sysreg_el1(SYS_CPACR);
44 ctxt->sys_regs[TTBR0_EL1] = read_sysreg_el1(SYS_TTBR0);
45 ctxt->sys_regs[TTBR1_EL1] = read_sysreg_el1(SYS_TTBR1);
46 ctxt->sys_regs[TCR_EL1] = read_sysreg_el1(SYS_TCR);
47 ctxt->sys_regs[ESR_EL1] = read_sysreg_el1(SYS_ESR);
48 ctxt->sys_regs[AFSR0_EL1] = read_sysreg_el1(SYS_AFSR0);
49 ctxt->sys_regs[AFSR1_EL1] = read_sysreg_el1(SYS_AFSR1);
50 ctxt->sys_regs[FAR_EL1] = read_sysreg_el1(SYS_FAR);
51 ctxt->sys_regs[MAIR_EL1] = read_sysreg_el1(SYS_MAIR);
52 ctxt->sys_regs[VBAR_EL1] = read_sysreg_el1(SYS_VBAR);
53 ctxt->sys_regs[CONTEXTIDR_EL1] = read_sysreg_el1(SYS_CONTEXTIDR);
54 ctxt->sys_regs[AMAIR_EL1] = read_sysreg_el1(SYS_AMAIR);
55 ctxt->sys_regs[CNTKCTL_EL1] = read_sysreg_el1(SYS_CNTKCTL);
Marc Zyngier6d6ec202015-10-19 18:02:48 +010056 ctxt->sys_regs[PAR_EL1] = read_sysreg(par_el1);
James Morse1f742672018-01-08 15:38:07 +000057 ctxt->sys_regs[TPIDR_EL1] = read_sysreg(tpidr_el1);
Marc Zyngier6d6ec202015-10-19 18:02:48 +010058
Marc Zyngier6d6ec202015-10-19 18:02:48 +010059 ctxt->gp_regs.sp_el1 = read_sysreg(sp_el1);
Dave Martinfdec2a92019-04-06 11:29:40 +010060 ctxt->gp_regs.elr_el1 = read_sysreg_el1(SYS_ELR);
61 ctxt->gp_regs.spsr[KVM_SPSR_EL1]= read_sysreg_el1(SYS_SPSR);
Christoffer Dall0c389d92017-10-10 22:54:57 +020062}
63
64static void __hyp_text __sysreg_save_el2_return_state(struct kvm_cpu_context *ctxt)
65{
Dave Martinfdec2a92019-04-06 11:29:40 +010066 ctxt->gp_regs.regs.pc = read_sysreg_el2(SYS_ELR);
67 ctxt->gp_regs.regs.pstate = read_sysreg_el2(SYS_SPSR);
James Morsec773ae22018-01-15 19:39:02 +000068
Mark Rutlandb5475d82020-02-21 14:50:22 +000069 if (cpus_have_final_cap(ARM64_HAS_RAS_EXTN))
James Morsec773ae22018-01-15 19:39:02 +000070 ctxt->sys_regs[DISR_EL1] = read_sysreg_s(SYS_VDISR_EL2);
Marc Zyngier6d6ec202015-10-19 18:02:48 +010071}
72
Christoffer Dall4cdecab2017-10-10 22:40:13 +020073void __hyp_text __sysreg_save_state_nvhe(struct kvm_cpu_context *ctxt)
Christoffer Dallf8374532017-10-10 22:19:31 +020074{
75 __sysreg_save_el1_state(ctxt);
76 __sysreg_save_common_state(ctxt);
77 __sysreg_save_user_state(ctxt);
Christoffer Dall0c389d92017-10-10 22:54:57 +020078 __sysreg_save_el2_return_state(ctxt);
Christoffer Dallf8374532017-10-10 22:19:31 +020079}
80
81void sysreg_save_host_state_vhe(struct kvm_cpu_context *ctxt)
82{
83 __sysreg_save_common_state(ctxt);
Christoffer Dallf8374532017-10-10 22:19:31 +020084}
James Morse7d826022019-01-24 16:32:54 +000085NOKPROBE_SYMBOL(sysreg_save_host_state_vhe);
Christoffer Dallf8374532017-10-10 22:19:31 +020086
87void sysreg_save_guest_state_vhe(struct kvm_cpu_context *ctxt)
Marc Zyngieredef5282015-10-28 12:17:35 +000088{
Marc Zyngier9c6c3562015-10-28 12:39:38 +000089 __sysreg_save_common_state(ctxt);
Christoffer Dall0c389d92017-10-10 22:54:57 +020090 __sysreg_save_el2_return_state(ctxt);
Marc Zyngier9c6c3562015-10-28 12:39:38 +000091}
James Morse7d826022019-01-24 16:32:54 +000092NOKPROBE_SYMBOL(sysreg_save_guest_state_vhe);
Marc Zyngier9c6c3562015-10-28 12:39:38 +000093
94static void __hyp_text __sysreg_restore_common_state(struct kvm_cpu_context *ctxt)
95{
Marc Zyngier4c47eb12016-07-19 13:56:54 +010096 write_sysreg(ctxt->sys_regs[MDSCR_EL1], mdscr_el1);
Marc Zyngieredef5282015-10-28 12:17:35 +000097}
98
Christoffer Dall060701f2016-03-15 21:41:55 +010099static void __hyp_text __sysreg_restore_user_state(struct kvm_cpu_context *ctxt)
100{
Dave Martinfdec2a92019-04-06 11:29:40 +0100101 write_sysreg(ctxt->sys_regs[TPIDR_EL0], tpidr_el0);
102 write_sysreg(ctxt->sys_regs[TPIDRRO_EL0], tpidrro_el0);
Christoffer Dall060701f2016-03-15 21:41:55 +0100103}
104
105static void __hyp_text __sysreg_restore_el1_state(struct kvm_cpu_context *ctxt)
Marc Zyngier6d6ec202015-10-19 18:02:48 +0100106{
Marc Zyngier094f8232015-10-28 12:56:25 +0000107 write_sysreg(ctxt->sys_regs[MPIDR_EL1], vmpidr_el2);
108 write_sysreg(ctxt->sys_regs[CSSELR_EL1], csselr_el1);
Marc Zyngierbd227552019-07-30 11:15:31 +0100109
Mark Rutlandb5475d82020-02-21 14:50:22 +0000110 if (!cpus_have_final_cap(ARM64_WORKAROUND_SPECULATIVE_AT_NVHE)) {
Marc Zyngierbd227552019-07-30 11:15:31 +0100111 write_sysreg_el1(ctxt->sys_regs[SCTLR_EL1], SYS_SCTLR);
112 write_sysreg_el1(ctxt->sys_regs[TCR_EL1], SYS_TCR);
113 } else if (!ctxt->__hyp_running_vcpu) {
114 /*
115 * Must only be done for guest registers, hence the context
116 * test. We're coming from the host, so SCTLR.M is already
117 * set. Pairs with __activate_traps_nvhe().
118 */
119 write_sysreg_el1((ctxt->sys_regs[TCR_EL1] |
120 TCR_EPD1_MASK | TCR_EPD0_MASK),
121 SYS_TCR);
122 isb();
123 }
124
Dave Martinfdec2a92019-04-06 11:29:40 +0100125 write_sysreg(ctxt->sys_regs[ACTLR_EL1], actlr_el1);
126 write_sysreg_el1(ctxt->sys_regs[CPACR_EL1], SYS_CPACR);
127 write_sysreg_el1(ctxt->sys_regs[TTBR0_EL1], SYS_TTBR0);
128 write_sysreg_el1(ctxt->sys_regs[TTBR1_EL1], SYS_TTBR1);
Dave Martinfdec2a92019-04-06 11:29:40 +0100129 write_sysreg_el1(ctxt->sys_regs[ESR_EL1], SYS_ESR);
130 write_sysreg_el1(ctxt->sys_regs[AFSR0_EL1], SYS_AFSR0);
131 write_sysreg_el1(ctxt->sys_regs[AFSR1_EL1], SYS_AFSR1);
132 write_sysreg_el1(ctxt->sys_regs[FAR_EL1], SYS_FAR);
133 write_sysreg_el1(ctxt->sys_regs[MAIR_EL1], SYS_MAIR);
134 write_sysreg_el1(ctxt->sys_regs[VBAR_EL1], SYS_VBAR);
135 write_sysreg_el1(ctxt->sys_regs[CONTEXTIDR_EL1],SYS_CONTEXTIDR);
136 write_sysreg_el1(ctxt->sys_regs[AMAIR_EL1], SYS_AMAIR);
137 write_sysreg_el1(ctxt->sys_regs[CNTKCTL_EL1], SYS_CNTKCTL);
Marc Zyngier094f8232015-10-28 12:56:25 +0000138 write_sysreg(ctxt->sys_regs[PAR_EL1], par_el1);
James Morse1f742672018-01-08 15:38:07 +0000139 write_sysreg(ctxt->sys_regs[TPIDR_EL1], tpidr_el1);
Marc Zyngier6d6ec202015-10-19 18:02:48 +0100140
Mark Rutlandb5475d82020-02-21 14:50:22 +0000141 if (cpus_have_final_cap(ARM64_WORKAROUND_SPECULATIVE_AT_NVHE) &&
Marc Zyngierbd227552019-07-30 11:15:31 +0100142 ctxt->__hyp_running_vcpu) {
143 /*
144 * Must only be done for host registers, hence the context
145 * test. Pairs with __deactivate_traps_nvhe().
146 */
147 isb();
148 /*
149 * At this stage, and thanks to the above isb(), S2 is
150 * deconfigured and disabled. We can now restore the host's
151 * S1 configuration: SCTLR, and only then TCR.
152 */
153 write_sysreg_el1(ctxt->sys_regs[SCTLR_EL1], SYS_SCTLR);
154 isb();
155 write_sysreg_el1(ctxt->sys_regs[TCR_EL1], SYS_TCR);
156 }
157
Marc Zyngier094f8232015-10-28 12:56:25 +0000158 write_sysreg(ctxt->gp_regs.sp_el1, sp_el1);
Dave Martinfdec2a92019-04-06 11:29:40 +0100159 write_sysreg_el1(ctxt->gp_regs.elr_el1, SYS_ELR);
160 write_sysreg_el1(ctxt->gp_regs.spsr[KVM_SPSR_EL1],SYS_SPSR);
Christoffer Dall0c389d92017-10-10 22:54:57 +0200161}
162
163static void __hyp_text
164__sysreg_restore_el2_return_state(struct kvm_cpu_context *ctxt)
165{
Christoffer Dalle4e11cc2018-10-17 20:21:16 +0200166 u64 pstate = ctxt->gp_regs.regs.pstate;
167 u64 mode = pstate & PSR_AA32_MODE_MASK;
168
169 /*
170 * Safety check to ensure we're setting the CPU up to enter the guest
171 * in a less privileged mode.
172 *
173 * If we are attempting a return to EL2 or higher in AArch64 state,
174 * program SPSR_EL2 with M=EL2h and the IL bit set which ensures that
175 * we'll take an illegal exception state exception immediately after
176 * the ERET to the guest. Attempts to return to AArch32 Hyp will
177 * result in an illegal exception return because EL2's execution state
178 * is determined by SCR_EL3.RW.
179 */
180 if (!(mode & PSR_MODE32_BIT) && mode >= PSR_MODE_EL2t)
181 pstate = PSR_MODE_EL2h | PSR_IL_BIT;
182
Dave Martinfdec2a92019-04-06 11:29:40 +0100183 write_sysreg_el2(ctxt->gp_regs.regs.pc, SYS_ELR);
184 write_sysreg_el2(pstate, SYS_SPSR);
James Morsec773ae22018-01-15 19:39:02 +0000185
Mark Rutlandb5475d82020-02-21 14:50:22 +0000186 if (cpus_have_final_cap(ARM64_HAS_RAS_EXTN))
James Morsec773ae22018-01-15 19:39:02 +0000187 write_sysreg_s(ctxt->sys_regs[DISR_EL1], SYS_VDISR_EL2);
Marc Zyngier6d6ec202015-10-19 18:02:48 +0100188}
Marc Zyngierc209ec82015-10-19 19:28:29 +0100189
Christoffer Dall4cdecab2017-10-10 22:40:13 +0200190void __hyp_text __sysreg_restore_state_nvhe(struct kvm_cpu_context *ctxt)
Christoffer Dallf8374532017-10-10 22:19:31 +0200191{
192 __sysreg_restore_el1_state(ctxt);
193 __sysreg_restore_common_state(ctxt);
194 __sysreg_restore_user_state(ctxt);
Christoffer Dall0c389d92017-10-10 22:54:57 +0200195 __sysreg_restore_el2_return_state(ctxt);
Christoffer Dallf8374532017-10-10 22:19:31 +0200196}
197
198void sysreg_restore_host_state_vhe(struct kvm_cpu_context *ctxt)
199{
200 __sysreg_restore_common_state(ctxt);
Christoffer Dallf8374532017-10-10 22:19:31 +0200201}
James Morse7d826022019-01-24 16:32:54 +0000202NOKPROBE_SYMBOL(sysreg_restore_host_state_vhe);
Christoffer Dallf8374532017-10-10 22:19:31 +0200203
204void sysreg_restore_guest_state_vhe(struct kvm_cpu_context *ctxt)
Marc Zyngieredef5282015-10-28 12:17:35 +0000205{
Marc Zyngier9c6c3562015-10-28 12:39:38 +0000206 __sysreg_restore_common_state(ctxt);
Christoffer Dall0c389d92017-10-10 22:54:57 +0200207 __sysreg_restore_el2_return_state(ctxt);
Marc Zyngieredef5282015-10-28 12:17:35 +0000208}
James Morse7d826022019-01-24 16:32:54 +0000209NOKPROBE_SYMBOL(sysreg_restore_guest_state_vhe);
Marc Zyngieredef5282015-10-28 12:17:35 +0000210
Marc Zyngierc209ec82015-10-19 19:28:29 +0100211void __hyp_text __sysreg32_save_state(struct kvm_vcpu *vcpu)
212{
213 u64 *spsr, *sysreg;
214
Christoffer Dalle72341c2017-12-13 22:56:48 +0100215 if (!vcpu_el1_is_32bit(vcpu))
Marc Zyngierc209ec82015-10-19 19:28:29 +0100216 return;
217
218 spsr = vcpu->arch.ctxt.gp_regs.spsr;
219 sysreg = vcpu->arch.ctxt.sys_regs;
220
221 spsr[KVM_SPSR_ABT] = read_sysreg(spsr_abt);
222 spsr[KVM_SPSR_UND] = read_sysreg(spsr_und);
223 spsr[KVM_SPSR_IRQ] = read_sysreg(spsr_irq);
224 spsr[KVM_SPSR_FIQ] = read_sysreg(spsr_fiq);
225
226 sysreg[DACR32_EL2] = read_sysreg(dacr32_el2);
227 sysreg[IFSR32_EL2] = read_sysreg(ifsr32_el2);
228
Dave Martinfa89d31c2018-05-08 14:47:23 +0100229 if (has_vhe() || vcpu->arch.flags & KVM_ARM64_DEBUG_DIRTY)
Marc Zyngierc209ec82015-10-19 19:28:29 +0100230 sysreg[DBGVCR32_EL2] = read_sysreg(dbgvcr32_el2);
231}
232
233void __hyp_text __sysreg32_restore_state(struct kvm_vcpu *vcpu)
234{
235 u64 *spsr, *sysreg;
236
Christoffer Dalle72341c2017-12-13 22:56:48 +0100237 if (!vcpu_el1_is_32bit(vcpu))
Marc Zyngierc209ec82015-10-19 19:28:29 +0100238 return;
239
240 spsr = vcpu->arch.ctxt.gp_regs.spsr;
241 sysreg = vcpu->arch.ctxt.sys_regs;
242
243 write_sysreg(spsr[KVM_SPSR_ABT], spsr_abt);
244 write_sysreg(spsr[KVM_SPSR_UND], spsr_und);
245 write_sysreg(spsr[KVM_SPSR_IRQ], spsr_irq);
246 write_sysreg(spsr[KVM_SPSR_FIQ], spsr_fiq);
247
248 write_sysreg(sysreg[DACR32_EL2], dacr32_el2);
249 write_sysreg(sysreg[IFSR32_EL2], ifsr32_el2);
250
Dave Martinfa89d31c2018-05-08 14:47:23 +0100251 if (has_vhe() || vcpu->arch.flags & KVM_ARM64_DEBUG_DIRTY)
Marc Zyngierc209ec82015-10-19 19:28:29 +0100252 write_sysreg(sysreg[DBGVCR32_EL2], dbgvcr32_el2);
253}
Christoffer Dall4464e212017-10-08 17:01:56 +0200254
Christoffer Dallbc192ce2017-10-10 10:21:18 +0200255/**
256 * kvm_vcpu_load_sysregs - Load guest system registers to the physical CPU
257 *
258 * @vcpu: The VCPU pointer
259 *
260 * Load system registers that do not affect the host's execution, for
261 * example EL1 system registers on a VHE system where the host kernel
262 * runs at EL2. This function is called from KVM's vcpu_load() function
263 * and loading system register state early avoids having to load them on
264 * every entry to the VM.
265 */
266void kvm_vcpu_load_sysregs(struct kvm_vcpu *vcpu)
267{
Christoffer Dallfc7563b2016-03-15 19:43:45 +0100268 struct kvm_cpu_context *guest_ctxt = &vcpu->arch.ctxt;
Marc Zyngier07da1ff2020-06-05 14:08:13 +0100269 struct kvm_cpu_context *host_ctxt;
Christoffer Dallfc7563b2016-03-15 19:43:45 +0100270
271 if (!has_vhe())
272 return;
273
Marc Zyngier07da1ff2020-06-05 14:08:13 +0100274 host_ctxt = &__hyp_this_cpu_ptr(kvm_host_data)->host_ctxt;
Christoffer Dallfc7563b2016-03-15 19:43:45 +0100275 __sysreg_save_user_state(host_ctxt);
276
Christoffer Dallb9f8ca42017-12-27 22:12:12 +0100277 /*
278 * Load guest EL1 and user state
279 *
280 * We must restore the 32-bit state before the sysregs, thanks
281 * to erratum #852523 (Cortex-A57) or #853709 (Cortex-A72).
282 */
283 __sysreg32_restore_state(vcpu);
Christoffer Dallfc7563b2016-03-15 19:43:45 +0100284 __sysreg_restore_user_state(guest_ctxt);
285 __sysreg_restore_el1_state(guest_ctxt);
286
287 vcpu->arch.sysregs_loaded_on_cpu = true;
Christoffer Dalla2465622017-08-04 13:47:18 +0200288
289 activate_traps_vhe_load(vcpu);
Christoffer Dallbc192ce2017-10-10 10:21:18 +0200290}
291
292/**
293 * kvm_vcpu_put_sysregs - Restore host system registers to the physical CPU
294 *
295 * @vcpu: The VCPU pointer
296 *
297 * Save guest system registers that do not affect the host's execution, for
298 * example EL1 system registers on a VHE system where the host kernel
299 * runs at EL2. This function is called from KVM's vcpu_put() function
300 * and deferring saving system register state until we're no longer running the
301 * VCPU avoids having to save them on every exit from the VM.
302 */
303void kvm_vcpu_put_sysregs(struct kvm_vcpu *vcpu)
304{
Christoffer Dallfc7563b2016-03-15 19:43:45 +0100305 struct kvm_cpu_context *guest_ctxt = &vcpu->arch.ctxt;
Marc Zyngier07da1ff2020-06-05 14:08:13 +0100306 struct kvm_cpu_context *host_ctxt;
Christoffer Dallfc7563b2016-03-15 19:43:45 +0100307
308 if (!has_vhe())
309 return;
310
Marc Zyngier07da1ff2020-06-05 14:08:13 +0100311 host_ctxt = &__hyp_this_cpu_ptr(kvm_host_data)->host_ctxt;
Christoffer Dalla2465622017-08-04 13:47:18 +0200312 deactivate_traps_vhe_put();
313
Christoffer Dallfc7563b2016-03-15 19:43:45 +0100314 __sysreg_save_el1_state(guest_ctxt);
315 __sysreg_save_user_state(guest_ctxt);
Christoffer Dallb9f8ca42017-12-27 22:12:12 +0100316 __sysreg32_save_state(vcpu);
Christoffer Dallfc7563b2016-03-15 19:43:45 +0100317
318 /* Restore host user state */
319 __sysreg_restore_user_state(host_ctxt);
320
321 vcpu->arch.sysregs_loaded_on_cpu = false;
Christoffer Dallbc192ce2017-10-10 10:21:18 +0200322}
Will Deacon7c364472018-08-08 16:10:54 +0100323
324void __hyp_text __kvm_enable_ssbs(void)
325{
326 u64 tmp;
327
328 asm volatile(
329 "mrs %0, sctlr_el2\n"
330 "orr %0, %0, %1\n"
331 "msr sctlr_el2, %0"
332 : "=&r" (tmp) : "L" (SCTLR_ELx_DSSBS));
333}