aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Hogan <james.hogan@imgtec.com>2014-12-08 18:07:56 -0500
committerJames Hogan <james.hogan@imgtec.com>2015-03-27 17:25:22 -0400
commitd952bd070f79b6dcbad52c03dbc41cbc8ba086c8 (patch)
treee4b361c9c5e9529d427a96d53cabbc57b204dad8
parentab86bd600400357ffa0dfdb1797f587476d01352 (diff)
MIPS: KVM: Wire up MSA capability
Now that the code is in place for KVM to support MIPS SIMD Architecutre (MSA) in MIPS guests, wire up the new KVM_CAP_MIPS_MSA capability. For backwards compatibility, the capability must be explicitly enabled in order to detect or make use of MSA from the guest. The capability is not supported if the hardware supports MSA vector partitioning, since the extra support cannot be tested yet and it extends the state that the userland program would have to save. Signed-off-by: James Hogan <james.hogan@imgtec.com> Acked-by: Paolo Bonzini <pbonzini@redhat.com> Cc: Ralf Baechle <ralf@linux-mips.org> Cc: Gleb Natapov <gleb@kernel.org> Cc: Jonathan Corbet <corbet@lwn.net> Cc: linux-mips@linux-mips.org Cc: kvm@vger.kernel.org Cc: linux-api@vger.kernel.org Cc: linux-doc@vger.kernel.org
-rw-r--r--Documentation/virtual/kvm/api.txt12
-rw-r--r--arch/mips/kvm/mips.c18
-rw-r--r--include/uapi/linux/kvm.h1
3 files changed, 31 insertions, 0 deletions
diff --git a/Documentation/virtual/kvm/api.txt b/Documentation/virtual/kvm/api.txt
index 62809871814b..1490eb0ef798 100644
--- a/Documentation/virtual/kvm/api.txt
+++ b/Documentation/virtual/kvm/api.txt
@@ -3335,6 +3335,18 @@ done the KVM_REG_MIPS_FPR_* and KVM_REG_MIPS_FCR_* registers can be accessed
3335Config5.FRE bits are accessible via the KVM API and also from the guest, 3335Config5.FRE bits are accessible via the KVM API and also from the guest,
3336depending on them being supported by the FPU. 3336depending on them being supported by the FPU.
3337 3337
33386.10 KVM_CAP_MIPS_MSA
3339
3340Architectures: mips
3341Target: vcpu
3342Parameters: args[0] is reserved for future use (should be 0).
3343
3344This capability allows the use of the MIPS SIMD Architecture (MSA) by the guest.
3345It allows the Config3.MSAP bit to be set to enable the use of MSA by the guest.
3346Once this is done the KVM_REG_MIPS_VEC_* and KVM_REG_MIPS_MSA_* registers can be
3347accessed, and the Config5.MSAEn bit is accessible via the KVM API and also from
3348the guest.
3349
33387. Capabilities that can be enabled on VMs 33507. Capabilities that can be enabled on VMs
3339------------------------------------------ 3351------------------------------------------
3340 3352
diff --git a/arch/mips/kvm/mips.c b/arch/mips/kvm/mips.c
index 35d3146895f1..bb68e8d520e8 100644
--- a/arch/mips/kvm/mips.c
+++ b/arch/mips/kvm/mips.c
@@ -880,6 +880,9 @@ static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
880 case KVM_CAP_MIPS_FPU: 880 case KVM_CAP_MIPS_FPU:
881 vcpu->arch.fpu_enabled = true; 881 vcpu->arch.fpu_enabled = true;
882 break; 882 break;
883 case KVM_CAP_MIPS_MSA:
884 vcpu->arch.msa_enabled = true;
885 break;
883 default: 886 default:
884 r = -EINVAL; 887 r = -EINVAL;
885 break; 888 break;
@@ -1071,6 +1074,21 @@ int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
1071 case KVM_CAP_MIPS_FPU: 1074 case KVM_CAP_MIPS_FPU:
1072 r = !!cpu_has_fpu; 1075 r = !!cpu_has_fpu;
1073 break; 1076 break;
1077 case KVM_CAP_MIPS_MSA:
1078 /*
1079 * We don't support MSA vector partitioning yet:
1080 * 1) It would require explicit support which can't be tested
1081 * yet due to lack of support in current hardware.
1082 * 2) It extends the state that would need to be saved/restored
1083 * by e.g. QEMU for migration.
1084 *
1085 * When vector partitioning hardware becomes available, support
1086 * could be added by requiring a flag when enabling
1087 * KVM_CAP_MIPS_MSA capability to indicate that userland knows
1088 * to save/restore the appropriate extra state.
1089 */
1090 r = cpu_has_msa && !(boot_cpu_data.msa_id & MSA_IR_WRPF);
1091 break;
1074 default: 1092 default:
1075 r = 0; 1093 r = 0;
1076 break; 1094 break;
diff --git a/include/uapi/linux/kvm.h b/include/uapi/linux/kvm.h
index ce49688976d2..05a2083f7a28 100644
--- a/include/uapi/linux/kvm.h
+++ b/include/uapi/linux/kvm.h
@@ -803,6 +803,7 @@ struct kvm_ppc_smmu_info {
803#define KVM_CAP_S390_USER_STSI 109 803#define KVM_CAP_S390_USER_STSI 109
804#define KVM_CAP_S390_SKEYS 110 804#define KVM_CAP_S390_SKEYS 110
805#define KVM_CAP_MIPS_FPU 111 805#define KVM_CAP_MIPS_FPU 111
806#define KVM_CAP_MIPS_MSA 112
806 807
807#ifdef KVM_CAP_IRQ_ROUTING 808#ifdef KVM_CAP_IRQ_ROUTING
808 809