xref: /openbmc/linux/arch/arm64/kvm/fpsimd.c (revision 4c181e3d352e9280c84fb4b4c7a8940ce005374e)
1e6b673b7SDave Martin // SPDX-License-Identifier: GPL-2.0
2e6b673b7SDave Martin /*
3e6b673b7SDave Martin  * arch/arm64/kvm/fpsimd.c: Guest/host FPSIMD context coordination helpers
4e6b673b7SDave Martin  *
5e6b673b7SDave Martin  * Copyright 2018 Arm Limited
6e6b673b7SDave Martin  * Author: Dave Martin <Dave.Martin@arm.com>
7e6b673b7SDave Martin  */
8b045e4d0SDave Martin #include <linux/irqflags.h>
9e6b673b7SDave Martin #include <linux/sched.h>
10e6b673b7SDave Martin #include <linux/kvm_host.h>
1104950674SDave Martin #include <asm/fpsimd.h>
12e6b673b7SDave Martin #include <asm/kvm_asm.h>
1383857371SMarc Zyngier #include <asm/kvm_hyp.h>
14e6b673b7SDave Martin #include <asm/kvm_mmu.h>
15b3eb56b6SDave Martin #include <asm/sysreg.h>
16e6b673b7SDave Martin 
1752b28657SQuentin Perret void kvm_vcpu_unshare_task_fp(struct kvm_vcpu *vcpu)
1852b28657SQuentin Perret {
1952b28657SQuentin Perret 	struct task_struct *p = vcpu->arch.parent_task;
2052b28657SQuentin Perret 	struct user_fpsimd_state *fpsimd;
2152b28657SQuentin Perret 
2252b28657SQuentin Perret 	if (!is_protected_kvm_enabled() || !p)
2352b28657SQuentin Perret 		return;
2452b28657SQuentin Perret 
2552b28657SQuentin Perret 	fpsimd = &p->thread.uw.fpsimd_state;
2652b28657SQuentin Perret 	kvm_unshare_hyp(fpsimd, fpsimd + 1);
2752b28657SQuentin Perret 	put_task_struct(p);
2852b28657SQuentin Perret }
2952b28657SQuentin Perret 
30e6b673b7SDave Martin /*
31e6b673b7SDave Martin  * Called on entry to KVM_RUN unless this vcpu previously ran at least
32e6b673b7SDave Martin  * once and the most recent prior KVM_RUN for this vcpu was called from
33e6b673b7SDave Martin  * the same task as current (highly likely).
34e6b673b7SDave Martin  *
35e6b673b7SDave Martin  * This is guaranteed to execute before kvm_arch_vcpu_load_fp(vcpu),
36e6b673b7SDave Martin  * such that on entering hyp the relevant parts of current are already
37e6b673b7SDave Martin  * mapped.
38e6b673b7SDave Martin  */
39e6b673b7SDave Martin int kvm_arch_vcpu_run_map_fp(struct kvm_vcpu *vcpu)
40e6b673b7SDave Martin {
41e6b673b7SDave Martin 	int ret;
42e6b673b7SDave Martin 
43e6b673b7SDave Martin 	struct user_fpsimd_state *fpsimd = &current->thread.uw.fpsimd_state;
44e6b673b7SDave Martin 
4552b28657SQuentin Perret 	kvm_vcpu_unshare_task_fp(vcpu);
4652b28657SQuentin Perret 
47bee14bcaSMarc Zyngier 	/* Make sure the host task fpsimd state is visible to hyp: */
483f868e14SQuentin Perret 	ret = kvm_share_hyp(fpsimd, fpsimd + 1);
4952b28657SQuentin Perret 	if (ret)
5052b28657SQuentin Perret 		return ret;
5152b28657SQuentin Perret 
52e6b673b7SDave Martin 	vcpu->arch.host_fpsimd_state = kern_hyp_va(fpsimd);
532d761dbfSMarc Zyngier 
5452b28657SQuentin Perret 	/*
5552b28657SQuentin Perret 	 * We need to keep current's task_struct pinned until its data has been
5652b28657SQuentin Perret 	 * unshared with the hypervisor to make sure it is not re-used by the
5752b28657SQuentin Perret 	 * kernel and donated to someone else while already shared -- see
5852b28657SQuentin Perret 	 * kvm_vcpu_unshare_task_fp() for the matching put_task_struct().
5952b28657SQuentin Perret 	 */
6052b28657SQuentin Perret 	if (is_protected_kvm_enabled()) {
6152b28657SQuentin Perret 		get_task_struct(current);
6252b28657SQuentin Perret 		vcpu->arch.parent_task = current;
6352b28657SQuentin Perret 	}
6452b28657SQuentin Perret 
6552b28657SQuentin Perret 	return 0;
66e6b673b7SDave Martin }
67e6b673b7SDave Martin 
68e6b673b7SDave Martin /*
69e6b673b7SDave Martin  * Prepare vcpu for saving the host's FPSIMD state and loading the guest's.
70e6b673b7SDave Martin  * The actual loading is done by the FPSIMD access trap taken to hyp.
71e6b673b7SDave Martin  *
72e6b673b7SDave Martin  * Here, we just set the correct metadata to indicate that the FPSIMD
73e6b673b7SDave Martin  * state in the cpu regs (if any) belongs to current on the host.
74e6b673b7SDave Martin  */
75e6b673b7SDave Martin void kvm_arch_vcpu_load_fp(struct kvm_vcpu *vcpu)
76e6b673b7SDave Martin {
77e6b673b7SDave Martin 	BUG_ON(!current->mm);
78e6b673b7SDave Martin 
79b4da9187SMarc Zyngier 	if (!system_supports_fpsimd())
80b4da9187SMarc Zyngier 		return;
81b4da9187SMarc Zyngier 
8293ae6b01SMark Brown 	fpsimd_kvm_prepare();
8393ae6b01SMark Brown 
84*4c181e3dSMark Brown 	/*
85*4c181e3dSMark Brown 	 * We will check TIF_FOREIGN_FPSTATE just before entering the
86*4c181e3dSMark Brown 	 * guest in kvm_arch_vcpu_ctxflush_fp() and override this to
87*4c181e3dSMark Brown 	 * FP_STATE_FREE if the flag set.
88*4c181e3dSMark Brown 	 */
89f8077b0dSMarc Zyngier 	vcpu->arch.fp_state = FP_STATE_HOST_OWNED;
90b3eb56b6SDave Martin 
910affa37fSMarc Zyngier 	vcpu_clear_flag(vcpu, HOST_SVE_ENABLED);
92b3eb56b6SDave Martin 	if (read_sysreg(cpacr_el1) & CPACR_EL1_ZEN_EL0EN)
930affa37fSMarc Zyngier 		vcpu_set_flag(vcpu, HOST_SVE_ENABLED);
94861262abSMark Brown 
95861262abSMark Brown 	/*
96861262abSMark Brown 	 * We don't currently support SME guests but if we leave
97861262abSMark Brown 	 * things in streaming mode then when the guest starts running
98861262abSMark Brown 	 * FPSIMD or SVE code it may generate SME traps so as a
99861262abSMark Brown 	 * special case if we are in streaming mode we force the host
100861262abSMark Brown 	 * state to be saved now and exit streaming mode so that we
101861262abSMark Brown 	 * don't have to handle any SME traps for valid guest
102861262abSMark Brown 	 * operations. Do this for ZA as well for now for simplicity.
103861262abSMark Brown 	 */
104861262abSMark Brown 	if (system_supports_sme()) {
1050affa37fSMarc Zyngier 		vcpu_clear_flag(vcpu, HOST_SME_ENABLED);
106861262abSMark Brown 		if (read_sysreg(cpacr_el1) & CPACR_EL1_SMEN_EL0EN)
1070affa37fSMarc Zyngier 			vcpu_set_flag(vcpu, HOST_SME_ENABLED);
108861262abSMark Brown 
109f8077b0dSMarc Zyngier 		if (read_sysreg_s(SYS_SVCR) & (SVCR_SM_MASK | SVCR_ZA_MASK)) {
110f8077b0dSMarc Zyngier 			vcpu->arch.fp_state = FP_STATE_FREE;
111861262abSMark Brown 			fpsimd_save_and_flush_cpu_state();
112861262abSMark Brown 		}
113861262abSMark Brown 	}
114e6b673b7SDave Martin }
115e6b673b7SDave Martin 
11623afc825SMark Brown /*
117e9ada6c2SMarc Zyngier  * Called just before entering the guest once we are no longer preemptable
118e9ada6c2SMarc Zyngier  * and interrupts are disabled. If we have managed to run anything using
119e9ada6c2SMarc Zyngier  * FP while we were preemptible (such as off the back of an interrupt),
120e9ada6c2SMarc Zyngier  * then neither the host nor the guest own the FP hardware (and it was the
121e9ada6c2SMarc Zyngier  * responsibility of the code that used FP to save the existing state).
12223afc825SMark Brown  */
123af9a0e21SMarc Zyngier void kvm_arch_vcpu_ctxflush_fp(struct kvm_vcpu *vcpu)
124af9a0e21SMarc Zyngier {
125b4da9187SMarc Zyngier 	if (test_thread_flag(TIF_FOREIGN_FPSTATE))
126f8077b0dSMarc Zyngier 		vcpu->arch.fp_state = FP_STATE_FREE;
127af9a0e21SMarc Zyngier }
128af9a0e21SMarc Zyngier 
129e6b673b7SDave Martin /*
13023afc825SMark Brown  * Called just after exiting the guest. If the guest FPSIMD state
13123afc825SMark Brown  * was loaded, update the host's context tracking data mark the CPU
13223afc825SMark Brown  * FPSIMD regs as dirty and belonging to vcpu so that they will be
13323afc825SMark Brown  * written back if the kernel clobbers them due to kernel-mode NEON
13423afc825SMark Brown  * before re-entry into the guest.
135e6b673b7SDave Martin  */
136e6b673b7SDave Martin void kvm_arch_vcpu_ctxsync_fp(struct kvm_vcpu *vcpu)
137e6b673b7SDave Martin {
1381192b93bSMark Brown 	struct cpu_fp_state fp_state;
139deeb8f9aSMark Brown 
140e6b673b7SDave Martin 	WARN_ON_ONCE(!irqs_disabled());
141e6b673b7SDave Martin 
142f8077b0dSMarc Zyngier 	if (vcpu->arch.fp_state == FP_STATE_GUEST_OWNED) {
143deeb8f9aSMark Brown 
144b40c559bSMark Brown 		/*
145b40c559bSMark Brown 		 * Currently we do not support SME guests so SVCR is
146b40c559bSMark Brown 		 * always 0 and we just need a variable to point to.
147b40c559bSMark Brown 		 */
1481192b93bSMark Brown 		fp_state.st = &vcpu->arch.ctxt.fp_regs;
1491192b93bSMark Brown 		fp_state.sve_state = vcpu->arch.sve_state;
1501192b93bSMark Brown 		fp_state.sve_vl = vcpu->arch.sve_max_vl;
151ce514000SMark Brown 		fp_state.sme_state = NULL;
1521192b93bSMark Brown 		fp_state.svcr = &vcpu->arch.svcr;
1531192b93bSMark Brown 		fp_state.fp_type = &vcpu->arch.fp_type;
1541192b93bSMark Brown 
1551192b93bSMark Brown 		if (vcpu_has_sve(vcpu))
1561192b93bSMark Brown 			fp_state.to_save = FP_STATE_SVE;
1571192b93bSMark Brown 		else
1581192b93bSMark Brown 			fp_state.to_save = FP_STATE_FPSIMD;
1591192b93bSMark Brown 
1601192b93bSMark Brown 		fpsimd_bind_state_to_cpu(&fp_state);
16104950674SDave Martin 
162e6b673b7SDave Martin 		clear_thread_flag(TIF_FOREIGN_FPSTATE);
163e6b673b7SDave Martin 	}
164e6b673b7SDave Martin }
165e6b673b7SDave Martin 
166e6b673b7SDave Martin /*
167e6b673b7SDave Martin  * Write back the vcpu FPSIMD regs if they are dirty, and invalidate the
168e6b673b7SDave Martin  * cpu FPSIMD regs so that they can't be spuriously reused if this vcpu
169e6b673b7SDave Martin  * disappears and another task or vcpu appears that recycles the same
170e6b673b7SDave Martin  * struct fpsimd_state.
171e6b673b7SDave Martin  */
172e6b673b7SDave Martin void kvm_arch_vcpu_put_fp(struct kvm_vcpu *vcpu)
173e6b673b7SDave Martin {
174b045e4d0SDave Martin 	unsigned long flags;
175b045e4d0SDave Martin 
176b045e4d0SDave Martin 	local_irq_save(flags);
177e6b673b7SDave Martin 
178861262abSMark Brown 	/*
179861262abSMark Brown 	 * If we have VHE then the Hyp code will reset CPACR_EL1 to
180861262abSMark Brown 	 * CPACR_EL1_DEFAULT and we need to reenable SME.
181861262abSMark Brown 	 */
182861262abSMark Brown 	if (has_vhe() && system_supports_sme()) {
183861262abSMark Brown 		/* Also restore EL0 state seen on entry */
1840affa37fSMarc Zyngier 		if (vcpu_get_flag(vcpu, HOST_SME_ENABLED))
185861262abSMark Brown 			sysreg_clear_set(CPACR_EL1, 0,
186861262abSMark Brown 					 CPACR_EL1_SMEN_EL0EN |
187861262abSMark Brown 					 CPACR_EL1_SMEN_EL1EN);
188861262abSMark Brown 		else
189861262abSMark Brown 			sysreg_clear_set(CPACR_EL1,
190861262abSMark Brown 					 CPACR_EL1_SMEN_EL0EN,
191861262abSMark Brown 					 CPACR_EL1_SMEN_EL1EN);
19259d78a2eSNianyao Tang 		isb();
193861262abSMark Brown 	}
194861262abSMark Brown 
195f8077b0dSMarc Zyngier 	if (vcpu->arch.fp_state == FP_STATE_GUEST_OWNED) {
1968383741aSMarc Zyngier 		if (vcpu_has_sve(vcpu)) {
19783857371SMarc Zyngier 			__vcpu_sys_reg(vcpu, ZCR_EL1) = read_sysreg_el1(SYS_ZCR);
198b145a843SMarc Zyngier 
1998c8010d6SMarc Zyngier 			/* Restore the VL that was saved when bound to the CPU */
2008c8010d6SMarc Zyngier 			if (!has_vhe())
2018c8010d6SMarc Zyngier 				sve_cond_update_zcr_vq(vcpu_sve_max_vq(vcpu) - 1,
2028c8010d6SMarc Zyngier 						       SYS_ZCR_EL1);
2038c8010d6SMarc Zyngier 		}
2048c8010d6SMarc Zyngier 
205b145a843SMarc Zyngier 		fpsimd_save_and_flush_cpu_state();
2068383741aSMarc Zyngier 	} else if (has_vhe() && system_supports_sve()) {
207b3eb56b6SDave Martin 		/*
208b3eb56b6SDave Martin 		 * The FPSIMD/SVE state in the CPU has not been touched, and we
209b3eb56b6SDave Martin 		 * have SVE (and VHE): CPACR_EL1 (alias CPTR_EL2) has been
210b3eb56b6SDave Martin 		 * reset to CPACR_EL1_DEFAULT by the Hyp code, disabling SVE
211b3eb56b6SDave Martin 		 * for EL0.  To avoid spurious traps, restore the trap state
212b3eb56b6SDave Martin 		 * seen by kvm_arch_vcpu_load_fp():
213b3eb56b6SDave Martin 		 */
2140affa37fSMarc Zyngier 		if (vcpu_get_flag(vcpu, HOST_SVE_ENABLED))
215b3eb56b6SDave Martin 			sysreg_clear_set(CPACR_EL1, 0, CPACR_EL1_ZEN_EL0EN);
216b3eb56b6SDave Martin 		else
217b3eb56b6SDave Martin 			sysreg_clear_set(CPACR_EL1, CPACR_EL1_ZEN_EL0EN, 0);
218e6b673b7SDave Martin 	}
219e6b673b7SDave Martin 
220b045e4d0SDave Martin 	local_irq_restore(flags);
221e6b673b7SDave Martin }
222