blob: 35bc16832efe28ae3e6a85d4e906f1e94024f0c4 [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
Marc Zyngier9d8415d2015-10-25 19:57:11 +000021#include <asm/kvm_asm.h>
Christoffer Dalle72341c2017-12-13 22:56:48 +010022#include <asm/kvm_emulate.h>
Marc Zyngier13720a52016-01-28 13:44:07 +000023#include <asm/kvm_hyp.h>
Marc Zyngier6d6ec202015-10-19 18:02:48 +010024
Marc Zyngier9c6c3562015-10-28 12:39:38 +000025/*
26 * Non-VHE: Both host and guest must save everything.
27 *
Christoffer Dallfc7563b2016-03-15 19:43:45 +010028 * VHE: Host and guest must save mdscr_el1 and sp_el0 (and the PC and pstate,
29 * which are handled as part of the el2 return state) on every switch.
30 * tpidr_el0 and tpidrro_el0 only need to be switched when going
31 * to host userspace or a different VCPU. EL1 registers only need to be
32 * switched when potentially going to run a different VCPU. The latter two
33 * classes are handled as part of kvm_arch_vcpu_load and kvm_arch_vcpu_put.
Marc Zyngier9c6c3562015-10-28 12:39:38 +000034 */
35
36static void __hyp_text __sysreg_save_common_state(struct kvm_cpu_context *ctxt)
37{
Marc Zyngier4c47eb12016-07-19 13:56:54 +010038 ctxt->sys_regs[MDSCR_EL1] = read_sysreg(mdscr_el1);
Christoffer Dall060701f2016-03-15 21:41:55 +010039
40 /*
41 * The host arm64 Linux uses sp_el0 to point to 'current' and it must
42 * therefore be saved/restored on every entry/exit to/from the guest.
43 */
Marc Zyngier9c6c3562015-10-28 12:39:38 +000044 ctxt->gp_regs.regs.sp = read_sysreg(sp_el0);
Marc Zyngier9c6c3562015-10-28 12:39:38 +000045}
46
Christoffer Dall060701f2016-03-15 21:41:55 +010047static void __hyp_text __sysreg_save_user_state(struct kvm_cpu_context *ctxt)
48{
49 ctxt->sys_regs[TPIDR_EL0] = read_sysreg(tpidr_el0);
50 ctxt->sys_regs[TPIDRRO_EL0] = read_sysreg(tpidrro_el0);
51}
52
53static void __hyp_text __sysreg_save_el1_state(struct kvm_cpu_context *ctxt)
Marc Zyngier6d6ec202015-10-19 18:02:48 +010054{
55 ctxt->sys_regs[MPIDR_EL1] = read_sysreg(vmpidr_el2);
56 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}
101
102void sysreg_save_guest_state_vhe(struct kvm_cpu_context *ctxt)
Marc Zyngieredef5282015-10-28 12:17:35 +0000103{
Marc Zyngier9c6c3562015-10-28 12:39:38 +0000104 __sysreg_save_common_state(ctxt);
Christoffer Dall0c389d92017-10-10 22:54:57 +0200105 __sysreg_save_el2_return_state(ctxt);
Marc Zyngier9c6c3562015-10-28 12:39:38 +0000106}
107
108static void __hyp_text __sysreg_restore_common_state(struct kvm_cpu_context *ctxt)
109{
Marc Zyngier4c47eb12016-07-19 13:56:54 +0100110 write_sysreg(ctxt->sys_regs[MDSCR_EL1], mdscr_el1);
Christoffer Dall060701f2016-03-15 21:41:55 +0100111
112 /*
113 * The host arm64 Linux uses sp_el0 to point to 'current' and it must
114 * therefore be saved/restored on every entry/exit to/from the guest.
115 */
Marc Zyngier9c6c3562015-10-28 12:39:38 +0000116 write_sysreg(ctxt->gp_regs.regs.sp, sp_el0);
Marc Zyngieredef5282015-10-28 12:17:35 +0000117}
118
Christoffer Dall060701f2016-03-15 21:41:55 +0100119static void __hyp_text __sysreg_restore_user_state(struct kvm_cpu_context *ctxt)
120{
121 write_sysreg(ctxt->sys_regs[TPIDR_EL0], tpidr_el0);
122 write_sysreg(ctxt->sys_regs[TPIDRRO_EL0], tpidrro_el0);
123}
124
125static void __hyp_text __sysreg_restore_el1_state(struct kvm_cpu_context *ctxt)
Marc Zyngier6d6ec202015-10-19 18:02:48 +0100126{
Marc Zyngier094f8232015-10-28 12:56:25 +0000127 write_sysreg(ctxt->sys_regs[MPIDR_EL1], vmpidr_el2);
128 write_sysreg(ctxt->sys_regs[CSSELR_EL1], csselr_el1);
129 write_sysreg_el1(ctxt->sys_regs[SCTLR_EL1], sctlr);
Christoffer Dall060701f2016-03-15 21:41:55 +0100130 write_sysreg(ctxt->sys_regs[ACTLR_EL1], actlr_el1);
Marc Zyngier094f8232015-10-28 12:56:25 +0000131 write_sysreg_el1(ctxt->sys_regs[CPACR_EL1], cpacr);
132 write_sysreg_el1(ctxt->sys_regs[TTBR0_EL1], ttbr0);
133 write_sysreg_el1(ctxt->sys_regs[TTBR1_EL1], ttbr1);
134 write_sysreg_el1(ctxt->sys_regs[TCR_EL1], tcr);
135 write_sysreg_el1(ctxt->sys_regs[ESR_EL1], esr);
136 write_sysreg_el1(ctxt->sys_regs[AFSR0_EL1], afsr0);
137 write_sysreg_el1(ctxt->sys_regs[AFSR1_EL1], afsr1);
138 write_sysreg_el1(ctxt->sys_regs[FAR_EL1], far);
139 write_sysreg_el1(ctxt->sys_regs[MAIR_EL1], mair);
140 write_sysreg_el1(ctxt->sys_regs[VBAR_EL1], vbar);
141 write_sysreg_el1(ctxt->sys_regs[CONTEXTIDR_EL1],contextidr);
142 write_sysreg_el1(ctxt->sys_regs[AMAIR_EL1], amair);
143 write_sysreg_el1(ctxt->sys_regs[CNTKCTL_EL1], cntkctl);
144 write_sysreg(ctxt->sys_regs[PAR_EL1], par_el1);
James Morse1f742672018-01-08 15:38:07 +0000145 write_sysreg(ctxt->sys_regs[TPIDR_EL1], tpidr_el1);
Marc Zyngier6d6ec202015-10-19 18:02:48 +0100146
Marc Zyngier094f8232015-10-28 12:56:25 +0000147 write_sysreg(ctxt->gp_regs.sp_el1, sp_el1);
148 write_sysreg_el1(ctxt->gp_regs.elr_el1, elr);
149 write_sysreg_el1(ctxt->gp_regs.spsr[KVM_SPSR_EL1],spsr);
Christoffer Dall0c389d92017-10-10 22:54:57 +0200150}
151
152static void __hyp_text
153__sysreg_restore_el2_return_state(struct kvm_cpu_context *ctxt)
154{
James Morse1f742672018-01-08 15:38:07 +0000155 write_sysreg_el2(ctxt->gp_regs.regs.pc, elr);
156 write_sysreg_el2(ctxt->gp_regs.regs.pstate, spsr);
James Morsec773ae22018-01-15 19:39:02 +0000157
158 if (cpus_have_const_cap(ARM64_HAS_RAS_EXTN))
159 write_sysreg_s(ctxt->sys_regs[DISR_EL1], SYS_VDISR_EL2);
Marc Zyngier6d6ec202015-10-19 18:02:48 +0100160}
Marc Zyngierc209ec82015-10-19 19:28:29 +0100161
Christoffer Dall4cdecab2017-10-10 22:40:13 +0200162void __hyp_text __sysreg_restore_state_nvhe(struct kvm_cpu_context *ctxt)
Christoffer Dallf8374532017-10-10 22:19:31 +0200163{
164 __sysreg_restore_el1_state(ctxt);
165 __sysreg_restore_common_state(ctxt);
166 __sysreg_restore_user_state(ctxt);
Christoffer Dall0c389d92017-10-10 22:54:57 +0200167 __sysreg_restore_el2_return_state(ctxt);
Christoffer Dallf8374532017-10-10 22:19:31 +0200168}
169
170void sysreg_restore_host_state_vhe(struct kvm_cpu_context *ctxt)
171{
172 __sysreg_restore_common_state(ctxt);
Christoffer Dallf8374532017-10-10 22:19:31 +0200173}
174
175void sysreg_restore_guest_state_vhe(struct kvm_cpu_context *ctxt)
Marc Zyngieredef5282015-10-28 12:17:35 +0000176{
Marc Zyngier9c6c3562015-10-28 12:39:38 +0000177 __sysreg_restore_common_state(ctxt);
Christoffer Dall0c389d92017-10-10 22:54:57 +0200178 __sysreg_restore_el2_return_state(ctxt);
Marc Zyngieredef5282015-10-28 12:17:35 +0000179}
180
Marc Zyngierc209ec82015-10-19 19:28:29 +0100181void __hyp_text __sysreg32_save_state(struct kvm_vcpu *vcpu)
182{
183 u64 *spsr, *sysreg;
184
Christoffer Dalle72341c2017-12-13 22:56:48 +0100185 if (!vcpu_el1_is_32bit(vcpu))
Marc Zyngierc209ec82015-10-19 19:28:29 +0100186 return;
187
188 spsr = vcpu->arch.ctxt.gp_regs.spsr;
189 sysreg = vcpu->arch.ctxt.sys_regs;
190
191 spsr[KVM_SPSR_ABT] = read_sysreg(spsr_abt);
192 spsr[KVM_SPSR_UND] = read_sysreg(spsr_und);
193 spsr[KVM_SPSR_IRQ] = read_sysreg(spsr_irq);
194 spsr[KVM_SPSR_FIQ] = read_sysreg(spsr_fiq);
195
196 sysreg[DACR32_EL2] = read_sysreg(dacr32_el2);
197 sysreg[IFSR32_EL2] = read_sysreg(ifsr32_el2);
198
Dave Martinfa89d31c2018-05-08 14:47:23 +0100199 if (has_vhe() || vcpu->arch.flags & KVM_ARM64_DEBUG_DIRTY)
Marc Zyngierc209ec82015-10-19 19:28:29 +0100200 sysreg[DBGVCR32_EL2] = read_sysreg(dbgvcr32_el2);
201}
202
203void __hyp_text __sysreg32_restore_state(struct kvm_vcpu *vcpu)
204{
205 u64 *spsr, *sysreg;
206
Christoffer Dalle72341c2017-12-13 22:56:48 +0100207 if (!vcpu_el1_is_32bit(vcpu))
Marc Zyngierc209ec82015-10-19 19:28:29 +0100208 return;
209
210 spsr = vcpu->arch.ctxt.gp_regs.spsr;
211 sysreg = vcpu->arch.ctxt.sys_regs;
212
213 write_sysreg(spsr[KVM_SPSR_ABT], spsr_abt);
214 write_sysreg(spsr[KVM_SPSR_UND], spsr_und);
215 write_sysreg(spsr[KVM_SPSR_IRQ], spsr_irq);
216 write_sysreg(spsr[KVM_SPSR_FIQ], spsr_fiq);
217
218 write_sysreg(sysreg[DACR32_EL2], dacr32_el2);
219 write_sysreg(sysreg[IFSR32_EL2], ifsr32_el2);
220
Dave Martinfa89d31c2018-05-08 14:47:23 +0100221 if (has_vhe() || vcpu->arch.flags & KVM_ARM64_DEBUG_DIRTY)
Marc Zyngierc209ec82015-10-19 19:28:29 +0100222 write_sysreg(sysreg[DBGVCR32_EL2], dbgvcr32_el2);
223}
Christoffer Dall4464e212017-10-08 17:01:56 +0200224
Christoffer Dallbc192ce2017-10-10 10:21:18 +0200225/**
226 * kvm_vcpu_load_sysregs - Load guest system registers to the physical CPU
227 *
228 * @vcpu: The VCPU pointer
229 *
230 * Load system registers that do not affect the host's execution, for
231 * example EL1 system registers on a VHE system where the host kernel
232 * runs at EL2. This function is called from KVM's vcpu_load() function
233 * and loading system register state early avoids having to load them on
234 * every entry to the VM.
235 */
236void kvm_vcpu_load_sysregs(struct kvm_vcpu *vcpu)
237{
Christoffer Dallfc7563b2016-03-15 19:43:45 +0100238 struct kvm_cpu_context *host_ctxt = vcpu->arch.host_cpu_context;
239 struct kvm_cpu_context *guest_ctxt = &vcpu->arch.ctxt;
240
241 if (!has_vhe())
242 return;
243
244 __sysreg_save_user_state(host_ctxt);
245
Christoffer Dallb9f8ca42017-12-27 22:12:12 +0100246 /*
247 * Load guest EL1 and user state
248 *
249 * We must restore the 32-bit state before the sysregs, thanks
250 * to erratum #852523 (Cortex-A57) or #853709 (Cortex-A72).
251 */
252 __sysreg32_restore_state(vcpu);
Christoffer Dallfc7563b2016-03-15 19:43:45 +0100253 __sysreg_restore_user_state(guest_ctxt);
254 __sysreg_restore_el1_state(guest_ctxt);
255
256 vcpu->arch.sysregs_loaded_on_cpu = true;
Christoffer Dalla2465622017-08-04 13:47:18 +0200257
258 activate_traps_vhe_load(vcpu);
Christoffer Dallbc192ce2017-10-10 10:21:18 +0200259}
260
261/**
262 * kvm_vcpu_put_sysregs - Restore host system registers to the physical CPU
263 *
264 * @vcpu: The VCPU pointer
265 *
266 * Save guest system registers that do not affect the host's execution, for
267 * example EL1 system registers on a VHE system where the host kernel
268 * runs at EL2. This function is called from KVM's vcpu_put() function
269 * and deferring saving system register state until we're no longer running the
270 * VCPU avoids having to save them on every exit from the VM.
271 */
272void kvm_vcpu_put_sysregs(struct kvm_vcpu *vcpu)
273{
Christoffer Dallfc7563b2016-03-15 19:43:45 +0100274 struct kvm_cpu_context *host_ctxt = vcpu->arch.host_cpu_context;
275 struct kvm_cpu_context *guest_ctxt = &vcpu->arch.ctxt;
276
277 if (!has_vhe())
278 return;
279
Christoffer Dalla2465622017-08-04 13:47:18 +0200280 deactivate_traps_vhe_put();
281
Christoffer Dallfc7563b2016-03-15 19:43:45 +0100282 __sysreg_save_el1_state(guest_ctxt);
283 __sysreg_save_user_state(guest_ctxt);
Christoffer Dallb9f8ca42017-12-27 22:12:12 +0100284 __sysreg32_save_state(vcpu);
Christoffer Dallfc7563b2016-03-15 19:43:45 +0100285
286 /* Restore host user state */
287 __sysreg_restore_user_state(host_ctxt);
288
289 vcpu->arch.sysregs_loaded_on_cpu = false;
Christoffer Dallbc192ce2017-10-10 10:21:18 +0200290}
291
Christoffer Dall4464e212017-10-08 17:01:56 +0200292void __hyp_text __kvm_set_tpidr_el2(u64 tpidr_el2)
293{
294 asm("msr tpidr_el2, %0": : "r" (tpidr_el2));
295}