fpsimd.c 5.9 KB
Newer Older
1 2 3 4 5 6 7
// SPDX-License-Identifier: GPL-2.0
/*
 * arch/arm64/kvm/fpsimd.c: Guest/host FPSIMD context coordination helpers
 *
 * Copyright 2018 Arm Limited
 * Author: Dave Martin <Dave.Martin@arm.com>
 */
8
#include <linux/irqflags.h>
9 10
#include <linux/sched.h>
#include <linux/kvm_host.h>
11
#include <asm/fpsimd.h>
12
#include <asm/kvm_asm.h>
13
#include <asm/kvm_hyp.h>
14
#include <asm/kvm_mmu.h>
15
#include <asm/sysreg.h>
16

17 18 19 20 21 22 23 24 25 26 27 28 29
void kvm_vcpu_unshare_task_fp(struct kvm_vcpu *vcpu)
{
	struct task_struct *p = vcpu->arch.parent_task;
	struct user_fpsimd_state *fpsimd;

	if (!is_protected_kvm_enabled() || !p)
		return;

	fpsimd = &p->thread.uw.fpsimd_state;
	kvm_unshare_hyp(fpsimd, fpsimd + 1);
	put_task_struct(p);
}

30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
/*
 * Called on entry to KVM_RUN unless this vcpu previously ran at least
 * once and the most recent prior KVM_RUN for this vcpu was called from
 * the same task as current (highly likely).
 *
 * This is guaranteed to execute before kvm_arch_vcpu_load_fp(vcpu),
 * such that on entering hyp the relevant parts of current are already
 * mapped.
 */
int kvm_arch_vcpu_run_map_fp(struct kvm_vcpu *vcpu)
{
	int ret;

	struct user_fpsimd_state *fpsimd = &current->thread.uw.fpsimd_state;

45 46
	kvm_vcpu_unshare_task_fp(vcpu);

47
	/* Make sure the host task fpsimd state is visible to hyp: */
48
	ret = kvm_share_hyp(fpsimd, fpsimd + 1);
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
	if (ret)
		return ret;

	vcpu->arch.host_fpsimd_state = kern_hyp_va(fpsimd);

	/*
	 * We need to keep current's task_struct pinned until its data has been
	 * unshared with the hypervisor to make sure it is not re-used by the
	 * kernel and donated to someone else while already shared -- see
	 * kvm_vcpu_unshare_task_fp() for the matching put_task_struct().
	 */
	if (is_protected_kvm_enabled()) {
		get_task_struct(current);
		vcpu->arch.parent_task = current;
	}
64

65
	return 0;
66 67 68 69 70 71 72 73 74 75 76 77
}

/*
 * Prepare vcpu for saving the host's FPSIMD state and loading the guest's.
 * The actual loading is done by the FPSIMD access trap taken to hyp.
 *
 * Here, we just set the correct metadata to indicate that the FPSIMD
 * state in the cpu regs (if any) belongs to current on the host.
 */
void kvm_arch_vcpu_load_fp(struct kvm_vcpu *vcpu)
{
	BUG_ON(!current->mm);
78
	BUG_ON(test_thread_flag(TIF_SVE));
79

80
	vcpu->arch.flags &= ~KVM_ARM64_FP_ENABLED;
81
	vcpu->arch.flags |= KVM_ARM64_FP_HOST;
82 83 84

	if (read_sysreg(cpacr_el1) & CPACR_EL1_ZEN_EL0EN)
		vcpu->arch.flags |= KVM_ARM64_HOST_SVE_ENABLED;
85 86 87 88 89 90 91 92 93 94 95 96 97 98

	/*
	 * We don't currently support SME guests but if we leave
	 * things in streaming mode then when the guest starts running
	 * FPSIMD or SVE code it may generate SME traps so as a
	 * special case if we are in streaming mode we force the host
	 * state to be saved now and exit streaming mode so that we
	 * don't have to handle any SME traps for valid guest
	 * operations. Do this for ZA as well for now for simplicity.
	 */
	if (system_supports_sme()) {
		if (read_sysreg(cpacr_el1) & CPACR_EL1_SMEN_EL0EN)
			vcpu->arch.flags |= KVM_ARM64_HOST_SME_ENABLED;

99 100
		if (read_sysreg_s(SYS_SVCR) &
		    (SVCR_SM_MASK | SVCR_ZA_MASK)) {
101 102 103 104
			vcpu->arch.flags &= ~KVM_ARM64_FP_HOST;
			fpsimd_save_and_flush_cpu_state();
		}
	}
105 106
}

107 108 109 110 111
/*
 * Called just before entering the guest once we are no longer
 * preemptable. Syncs the host's TIF_FOREIGN_FPSTATE with the KVM
 * mirror of the flag used by the hypervisor.
 */
112 113 114 115 116 117 118 119
void kvm_arch_vcpu_ctxflush_fp(struct kvm_vcpu *vcpu)
{
	if (test_thread_flag(TIF_FOREIGN_FPSTATE))
		vcpu->arch.flags |= KVM_ARM64_FP_FOREIGN_FPSTATE;
	else
		vcpu->arch.flags &= ~KVM_ARM64_FP_FOREIGN_FPSTATE;
}

120
/*
121 122 123 124 125
 * Called just after exiting the guest. If the guest FPSIMD state
 * was loaded, update the host's context tracking data mark the CPU
 * FPSIMD regs as dirty and belonging to vcpu so that they will be
 * written back if the kernel clobbers them due to kernel-mode NEON
 * before re-entry into the guest.
126 127 128 129 130 131
 */
void kvm_arch_vcpu_ctxsync_fp(struct kvm_vcpu *vcpu)
{
	WARN_ON_ONCE(!irqs_disabled());

	if (vcpu->arch.flags & KVM_ARM64_FP_ENABLED) {
132 133 134 135
		/*
		 * Currently we do not support SME guests so SVCR is
		 * always 0 and we just need a variable to point to.
		 */
136
		fpsimd_bind_state_to_cpu(&vcpu->arch.ctxt.fp_regs,
137
					 vcpu->arch.sve_state,
138
					 vcpu->arch.sve_max_vl,
139
					 NULL, 0, &vcpu->arch.svcr);
140

141
		clear_thread_flag(TIF_FOREIGN_FPSTATE);
142
		update_thread_flag(TIF_SVE, vcpu_has_sve(vcpu));
143 144 145 146 147 148 149 150 151 152 153
	}
}

/*
 * Write back the vcpu FPSIMD regs if they are dirty, and invalidate the
 * cpu FPSIMD regs so that they can't be spuriously reused if this vcpu
 * disappears and another task or vcpu appears that recycles the same
 * struct fpsimd_state.
 */
void kvm_arch_vcpu_put_fp(struct kvm_vcpu *vcpu)
{
154 155 156
	unsigned long flags;

	local_irq_save(flags);
157

158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
	/*
	 * If we have VHE then the Hyp code will reset CPACR_EL1 to
	 * CPACR_EL1_DEFAULT and we need to reenable SME.
	 */
	if (has_vhe() && system_supports_sme()) {
		/* Also restore EL0 state seen on entry */
		if (vcpu->arch.flags & KVM_ARM64_HOST_SME_ENABLED)
			sysreg_clear_set(CPACR_EL1, 0,
					 CPACR_EL1_SMEN_EL0EN |
					 CPACR_EL1_SMEN_EL1EN);
		else
			sysreg_clear_set(CPACR_EL1,
					 CPACR_EL1_SMEN_EL0EN,
					 CPACR_EL1_SMEN_EL1EN);
	}

174
	if (vcpu->arch.flags & KVM_ARM64_FP_ENABLED) {
175
		if (vcpu_has_sve(vcpu)) {
176
			__vcpu_sys_reg(vcpu, ZCR_EL1) = read_sysreg_el1(SYS_ZCR);
177

178 179 180 181 182 183
			/* Restore the VL that was saved when bound to the CPU */
			if (!has_vhe())
				sve_cond_update_zcr_vq(vcpu_sve_max_vq(vcpu) - 1,
						       SYS_ZCR_EL1);
		}

184
		fpsimd_save_and_flush_cpu_state();
185
	} else if (has_vhe() && system_supports_sve()) {
186 187 188 189 190 191 192 193 194 195 196
		/*
		 * The FPSIMD/SVE state in the CPU has not been touched, and we
		 * have SVE (and VHE): CPACR_EL1 (alias CPTR_EL2) has been
		 * reset to CPACR_EL1_DEFAULT by the Hyp code, disabling SVE
		 * for EL0.  To avoid spurious traps, restore the trap state
		 * seen by kvm_arch_vcpu_load_fp():
		 */
		if (vcpu->arch.flags & KVM_ARM64_HOST_SVE_ENABLED)
			sysreg_clear_set(CPACR_EL1, 0, CPACR_EL1_ZEN_EL0EN);
		else
			sysreg_clear_set(CPACR_EL1, CPACR_EL1_ZEN_EL0EN, 0);
197 198
	}

199
	update_thread_flag(TIF_SVE, 0);
200

201
	local_irq_restore(flags);
202
}