xref: /openbmc/linux/arch/arm64/kvm/reset.c (revision babbdf5b)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Copyright (C) 2012,2013 - ARM Ltd
4  * Author: Marc Zyngier <marc.zyngier@arm.com>
5  *
6  * Derived from arch/arm/kvm/reset.c
7  * Copyright (C) 2012 - Virtual Open Systems and Columbia University
8  * Author: Christoffer Dall <c.dall@virtualopensystems.com>
9  */
10 
11 #include <linux/errno.h>
12 #include <linux/kernel.h>
13 #include <linux/kvm_host.h>
14 #include <linux/kvm.h>
15 #include <linux/hw_breakpoint.h>
16 #include <linux/slab.h>
17 #include <linux/string.h>
18 #include <linux/types.h>
19 
20 #include <kvm/arm_arch_timer.h>
21 
22 #include <asm/cpufeature.h>
23 #include <asm/cputype.h>
24 #include <asm/fpsimd.h>
25 #include <asm/ptrace.h>
26 #include <asm/kvm_arm.h>
27 #include <asm/kvm_asm.h>
28 #include <asm/kvm_emulate.h>
29 #include <asm/kvm_mmu.h>
30 #include <asm/virt.h>
31 
32 /* Maximum phys_shift supported for any VM on this host */
33 static u32 kvm_ipa_limit;
34 
35 /*
36  * ARMv8 Reset Values
37  */
38 #define VCPU_RESET_PSTATE_EL1	(PSR_MODE_EL1h | PSR_A_BIT | PSR_I_BIT | \
39 				 PSR_F_BIT | PSR_D_BIT)
40 
41 #define VCPU_RESET_PSTATE_SVC	(PSR_AA32_MODE_SVC | PSR_AA32_A_BIT | \
42 				 PSR_AA32_I_BIT | PSR_AA32_F_BIT)
43 
44 unsigned int kvm_sve_max_vl;
45 
46 int kvm_arm_init_sve(void)
47 {
48 	if (system_supports_sve()) {
49 		kvm_sve_max_vl = sve_max_virtualisable_vl;
50 
51 		/*
52 		 * The get_sve_reg()/set_sve_reg() ioctl interface will need
53 		 * to be extended with multiple register slice support in
54 		 * order to support vector lengths greater than
55 		 * SVE_VL_ARCH_MAX:
56 		 */
57 		if (WARN_ON(kvm_sve_max_vl > SVE_VL_ARCH_MAX))
58 			kvm_sve_max_vl = SVE_VL_ARCH_MAX;
59 
60 		/*
61 		 * Don't even try to make use of vector lengths that
62 		 * aren't available on all CPUs, for now:
63 		 */
64 		if (kvm_sve_max_vl < sve_max_vl)
65 			pr_warn("KVM: SVE vector length for guests limited to %u bytes\n",
66 				kvm_sve_max_vl);
67 	}
68 
69 	return 0;
70 }
71 
72 static int kvm_vcpu_enable_sve(struct kvm_vcpu *vcpu)
73 {
74 	if (!system_supports_sve())
75 		return -EINVAL;
76 
77 	vcpu->arch.sve_max_vl = kvm_sve_max_vl;
78 
79 	/*
80 	 * Userspace can still customize the vector lengths by writing
81 	 * KVM_REG_ARM64_SVE_VLS.  Allocation is deferred until
82 	 * kvm_arm_vcpu_finalize(), which freezes the configuration.
83 	 */
84 	vcpu->arch.flags |= KVM_ARM64_GUEST_HAS_SVE;
85 
86 	return 0;
87 }
88 
89 /*
90  * Finalize vcpu's maximum SVE vector length, allocating
91  * vcpu->arch.sve_state as necessary.
92  */
93 static int kvm_vcpu_finalize_sve(struct kvm_vcpu *vcpu)
94 {
95 	void *buf;
96 	unsigned int vl;
97 
98 	vl = vcpu->arch.sve_max_vl;
99 
100 	/*
101 	 * Responsibility for these properties is shared between
102 	 * kvm_arm_init_arch_resources(), kvm_vcpu_enable_sve() and
103 	 * set_sve_vls().  Double-check here just to be sure:
104 	 */
105 	if (WARN_ON(!sve_vl_valid(vl) || vl > sve_max_virtualisable_vl ||
106 		    vl > SVE_VL_ARCH_MAX))
107 		return -EIO;
108 
109 	buf = kzalloc(SVE_SIG_REGS_SIZE(sve_vq_from_vl(vl)), GFP_KERNEL);
110 	if (!buf)
111 		return -ENOMEM;
112 
113 	vcpu->arch.sve_state = buf;
114 	vcpu->arch.flags |= KVM_ARM64_VCPU_SVE_FINALIZED;
115 	return 0;
116 }
117 
118 int kvm_arm_vcpu_finalize(struct kvm_vcpu *vcpu, int feature)
119 {
120 	switch (feature) {
121 	case KVM_ARM_VCPU_SVE:
122 		if (!vcpu_has_sve(vcpu))
123 			return -EINVAL;
124 
125 		if (kvm_arm_vcpu_sve_finalized(vcpu))
126 			return -EPERM;
127 
128 		return kvm_vcpu_finalize_sve(vcpu);
129 	}
130 
131 	return -EINVAL;
132 }
133 
134 bool kvm_arm_vcpu_is_finalized(struct kvm_vcpu *vcpu)
135 {
136 	if (vcpu_has_sve(vcpu) && !kvm_arm_vcpu_sve_finalized(vcpu))
137 		return false;
138 
139 	return true;
140 }
141 
142 void kvm_arm_vcpu_destroy(struct kvm_vcpu *vcpu)
143 {
144 	kfree(vcpu->arch.sve_state);
145 }
146 
147 static void kvm_vcpu_reset_sve(struct kvm_vcpu *vcpu)
148 {
149 	if (vcpu_has_sve(vcpu))
150 		memset(vcpu->arch.sve_state, 0, vcpu_sve_state_size(vcpu));
151 }
152 
153 static int kvm_vcpu_enable_ptrauth(struct kvm_vcpu *vcpu)
154 {
155 	/*
156 	 * For now make sure that both address/generic pointer authentication
157 	 * features are requested by the userspace together and the system
158 	 * supports these capabilities.
159 	 */
160 	if (!test_bit(KVM_ARM_VCPU_PTRAUTH_ADDRESS, vcpu->arch.features) ||
161 	    !test_bit(KVM_ARM_VCPU_PTRAUTH_GENERIC, vcpu->arch.features) ||
162 	    !system_has_full_ptr_auth())
163 		return -EINVAL;
164 
165 	vcpu->arch.flags |= KVM_ARM64_GUEST_HAS_PTRAUTH;
166 	return 0;
167 }
168 
169 static bool vcpu_allowed_register_width(struct kvm_vcpu *vcpu)
170 {
171 	struct kvm_vcpu *tmp;
172 	bool is32bit;
173 	int i;
174 
175 	is32bit = vcpu_has_feature(vcpu, KVM_ARM_VCPU_EL1_32BIT);
176 	if (!cpus_have_const_cap(ARM64_HAS_32BIT_EL1) && is32bit)
177 		return false;
178 
179 	/* Check that the vcpus are either all 32bit or all 64bit */
180 	kvm_for_each_vcpu(i, tmp, vcpu->kvm) {
181 		if (vcpu_has_feature(tmp, KVM_ARM_VCPU_EL1_32BIT) != is32bit)
182 			return false;
183 	}
184 
185 	return true;
186 }
187 
188 /**
189  * kvm_reset_vcpu - sets core registers and sys_regs to reset value
190  * @vcpu: The VCPU pointer
191  *
192  * This function finds the right table above and sets the registers on
193  * the virtual CPU struct to their architecturally defined reset
194  * values, except for registers whose reset is deferred until
195  * kvm_arm_vcpu_finalize().
196  *
197  * Note: This function can be called from two paths: The KVM_ARM_VCPU_INIT
198  * ioctl or as part of handling a request issued by another VCPU in the PSCI
199  * handling code.  In the first case, the VCPU will not be loaded, and in the
200  * second case the VCPU will be loaded.  Because this function operates purely
201  * on the memory-backed values of system registers, we want to do a full put if
202  * we were loaded (handling a request) and load the values back at the end of
203  * the function.  Otherwise we leave the state alone.  In both cases, we
204  * disable preemption around the vcpu reset as we would otherwise race with
205  * preempt notifiers which also call put/load.
206  */
207 int kvm_reset_vcpu(struct kvm_vcpu *vcpu)
208 {
209 	int ret;
210 	bool loaded;
211 	u32 pstate;
212 
213 	/* Reset PMU outside of the non-preemptible section */
214 	kvm_pmu_vcpu_reset(vcpu);
215 
216 	preempt_disable();
217 	loaded = (vcpu->cpu != -1);
218 	if (loaded)
219 		kvm_arch_vcpu_put(vcpu);
220 
221 	if (!kvm_arm_vcpu_sve_finalized(vcpu)) {
222 		if (test_bit(KVM_ARM_VCPU_SVE, vcpu->arch.features)) {
223 			ret = kvm_vcpu_enable_sve(vcpu);
224 			if (ret)
225 				goto out;
226 		}
227 	} else {
228 		kvm_vcpu_reset_sve(vcpu);
229 	}
230 
231 	if (test_bit(KVM_ARM_VCPU_PTRAUTH_ADDRESS, vcpu->arch.features) ||
232 	    test_bit(KVM_ARM_VCPU_PTRAUTH_GENERIC, vcpu->arch.features)) {
233 		if (kvm_vcpu_enable_ptrauth(vcpu)) {
234 			ret = -EINVAL;
235 			goto out;
236 		}
237 	}
238 
239 	if (!vcpu_allowed_register_width(vcpu)) {
240 		ret = -EINVAL;
241 		goto out;
242 	}
243 
244 	switch (vcpu->arch.target) {
245 	default:
246 		if (test_bit(KVM_ARM_VCPU_EL1_32BIT, vcpu->arch.features)) {
247 			pstate = VCPU_RESET_PSTATE_SVC;
248 		} else {
249 			pstate = VCPU_RESET_PSTATE_EL1;
250 		}
251 
252 		if (kvm_vcpu_has_pmu(vcpu) && !kvm_arm_support_pmu_v3()) {
253 			ret = -EINVAL;
254 			goto out;
255 		}
256 		break;
257 	}
258 
259 	/* Reset core registers */
260 	memset(vcpu_gp_regs(vcpu), 0, sizeof(*vcpu_gp_regs(vcpu)));
261 	memset(&vcpu->arch.ctxt.fp_regs, 0, sizeof(vcpu->arch.ctxt.fp_regs));
262 	vcpu->arch.ctxt.spsr_abt = 0;
263 	vcpu->arch.ctxt.spsr_und = 0;
264 	vcpu->arch.ctxt.spsr_irq = 0;
265 	vcpu->arch.ctxt.spsr_fiq = 0;
266 	vcpu_gp_regs(vcpu)->pstate = pstate;
267 
268 	/* Reset system registers */
269 	kvm_reset_sys_regs(vcpu);
270 
271 	/*
272 	 * Additional reset state handling that PSCI may have imposed on us.
273 	 * Must be done after all the sys_reg reset.
274 	 */
275 	if (vcpu->arch.reset_state.reset) {
276 		unsigned long target_pc = vcpu->arch.reset_state.pc;
277 
278 		/* Gracefully handle Thumb2 entry point */
279 		if (vcpu_mode_is_32bit(vcpu) && (target_pc & 1)) {
280 			target_pc &= ~1UL;
281 			vcpu_set_thumb(vcpu);
282 		}
283 
284 		/* Propagate caller endianness */
285 		if (vcpu->arch.reset_state.be)
286 			kvm_vcpu_set_be(vcpu);
287 
288 		*vcpu_pc(vcpu) = target_pc;
289 		vcpu_set_reg(vcpu, 0, vcpu->arch.reset_state.r0);
290 
291 		vcpu->arch.reset_state.reset = false;
292 	}
293 
294 	/* Reset timer */
295 	ret = kvm_timer_vcpu_reset(vcpu);
296 out:
297 	if (loaded)
298 		kvm_arch_vcpu_load(vcpu, smp_processor_id());
299 	preempt_enable();
300 	return ret;
301 }
302 
303 u32 get_kvm_ipa_limit(void)
304 {
305 	return kvm_ipa_limit;
306 }
307 
308 int kvm_set_ipa_limit(void)
309 {
310 	unsigned int parange, tgran_2;
311 	u64 mmfr0;
312 
313 	mmfr0 = read_sanitised_ftr_reg(SYS_ID_AA64MMFR0_EL1);
314 	parange = cpuid_feature_extract_unsigned_field(mmfr0,
315 				ID_AA64MMFR0_PARANGE_SHIFT);
316 
317 	/*
318 	 * Check with ARMv8.5-GTG that our PAGE_SIZE is supported at
319 	 * Stage-2. If not, things will stop very quickly.
320 	 */
321 	switch (PAGE_SIZE) {
322 	default:
323 	case SZ_4K:
324 		tgran_2 = ID_AA64MMFR0_TGRAN4_2_SHIFT;
325 		break;
326 	case SZ_16K:
327 		tgran_2 = ID_AA64MMFR0_TGRAN16_2_SHIFT;
328 		break;
329 	case SZ_64K:
330 		tgran_2 = ID_AA64MMFR0_TGRAN64_2_SHIFT;
331 		break;
332 	}
333 
334 	switch (cpuid_feature_extract_unsigned_field(mmfr0, tgran_2)) {
335 	case ID_AA64MMFR0_TGRAN_2_SUPPORTED_NONE:
336 		kvm_err("PAGE_SIZE not supported at Stage-2, giving up\n");
337 		return -EINVAL;
338 	case ID_AA64MMFR0_TGRAN_2_SUPPORTED_DEFAULT:
339 		kvm_debug("PAGE_SIZE supported at Stage-2 (default)\n");
340 		break;
341 	case ID_AA64MMFR0_TGRAN_2_SUPPORTED_MIN ... ID_AA64MMFR0_TGRAN_2_SUPPORTED_MAX:
342 		kvm_debug("PAGE_SIZE supported at Stage-2 (advertised)\n");
343 		break;
344 	default:
345 		kvm_err("Unsupported value for TGRAN_2, giving up\n");
346 		return -EINVAL;
347 	}
348 
349 	kvm_ipa_limit = id_aa64mmfr0_parange_to_phys_shift(parange);
350 	kvm_info("IPA Size Limit: %d bits%s\n", kvm_ipa_limit,
351 		 ((kvm_ipa_limit < KVM_PHYS_SHIFT) ?
352 		  " (Reduced IPA size, limited VM/VMM compatibility)" : ""));
353 
354 	return 0;
355 }
356 
357 int kvm_arm_setup_stage2(struct kvm *kvm, unsigned long type)
358 {
359 	u64 mmfr0, mmfr1;
360 	u32 phys_shift;
361 
362 	if (type & ~KVM_VM_TYPE_ARM_IPA_SIZE_MASK)
363 		return -EINVAL;
364 
365 	phys_shift = KVM_VM_TYPE_ARM_IPA_SIZE(type);
366 	if (phys_shift) {
367 		if (phys_shift > kvm_ipa_limit ||
368 		    phys_shift < 32)
369 			return -EINVAL;
370 	} else {
371 		phys_shift = KVM_PHYS_SHIFT;
372 		if (phys_shift > kvm_ipa_limit) {
373 			pr_warn_once("%s using unsupported default IPA limit, upgrade your VMM\n",
374 				     current->comm);
375 			return -EINVAL;
376 		}
377 	}
378 
379 	mmfr0 = read_sanitised_ftr_reg(SYS_ID_AA64MMFR0_EL1);
380 	mmfr1 = read_sanitised_ftr_reg(SYS_ID_AA64MMFR1_EL1);
381 	kvm->arch.vtcr = kvm_get_vtcr(mmfr0, mmfr1, phys_shift);
382 
383 	return 0;
384 }
385