|
@@ -147,6 +147,13 @@ static int kvm_handle_unknown_ec(struct kvm_vcpu *vcpu, struct kvm_run *run)
|
|
|
return 1;
|
|
|
}
|
|
|
|
|
|
+static int handle_sve(struct kvm_vcpu *vcpu, struct kvm_run *run)
|
|
|
+{
|
|
|
+ /* Until SVE is supported for guests: */
|
|
|
+ kvm_inject_undefined(vcpu);
|
|
|
+ return 1;
|
|
|
+}
|
|
|
+
|
|
|
static exit_handle_fn arm_exit_handlers[] = {
|
|
|
[0 ... ESR_ELx_EC_MAX] = kvm_handle_unknown_ec,
|
|
|
[ESR_ELx_EC_WFx] = kvm_handle_wfx,
|
|
@@ -160,6 +167,7 @@ static exit_handle_fn arm_exit_handlers[] = {
|
|
|
[ESR_ELx_EC_HVC64] = handle_hvc,
|
|
|
[ESR_ELx_EC_SMC64] = handle_smc,
|
|
|
[ESR_ELx_EC_SYS64] = kvm_handle_sys_reg,
|
|
|
+ [ESR_ELx_EC_SVE] = handle_sve,
|
|
|
[ESR_ELx_EC_IABT_LOW] = kvm_handle_guest_abort,
|
|
|
[ESR_ELx_EC_DABT_LOW] = kvm_handle_guest_abort,
|
|
|
[ESR_ELx_EC_SOFTSTP_LOW]= kvm_handle_guest_debug,
|