[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20250514192159.1751538-4-rananta@google.com>
Date: Wed, 14 May 2025 19:21:59 +0000
From: Raghavendra Rao Ananta <rananta@...gle.com>
To: Oliver Upton <oliver.upton@...ux.dev>, Marc Zyngier <maz@...nel.org>
Cc: Raghavendra Rao Anata <rananta@...gle.com>, Mingwei Zhang <mizhang@...gle.com>,
linux-arm-kernel@...ts.infradead.org, kvmarm@...ts.linux.dev,
linux-kernel@...r.kernel.org, kvm@...r.kernel.org
Subject: [PATCH 3/3] KVM: selftests: Extend vgic_init to test GICv4 config attr
Extend the arm64 vgic_init test to check KVM_DEV_ARM_VGIC_CONFIG_GICV4
attribute. This includes testing the interface with various
configurations when KVM has vGICv4 enabled (kvm-arm.vgic_v4_enable=1
cmdline) and disabled.
Signed-off-by: Raghavendra Rao Ananta <rananta@...gle.com>
---
tools/testing/selftests/kvm/arm64/vgic_init.c | 58 +++++++++++++++++++
1 file changed, 58 insertions(+)
diff --git a/tools/testing/selftests/kvm/arm64/vgic_init.c b/tools/testing/selftests/kvm/arm64/vgic_init.c
index b3b5fb0ff0a9..adcfaf461b2b 100644
--- a/tools/testing/selftests/kvm/arm64/vgic_init.c
+++ b/tools/testing/selftests/kvm/arm64/vgic_init.c
@@ -675,6 +675,63 @@ static void test_v3_its_region(void)
vm_gic_destroy(&v);
}
+static void test_v3_vgicv4_config(void)
+{
+ struct kvm_vcpu *vcpus[NR_VCPUS];
+ uint8_t gicv4_config;
+ struct vm_gic v;
+ int ret;
+
+ v = vm_gic_create_with_vcpus(KVM_DEV_TYPE_ARM_VGIC_V3, NR_VCPUS, vcpus);
+ if (__kvm_has_device_attr(v.gic_fd, KVM_DEV_ARM_VGIC_GRP_CTRL,
+ KVM_DEV_ARM_VGIC_CONFIG_GICV4))
+ return;
+
+ kvm_device_attr_get(v.gic_fd, KVM_DEV_ARM_VGIC_GRP_CTRL,
+ KVM_DEV_ARM_VGIC_CONFIG_GICV4, &gicv4_config);
+
+ if (gicv4_config == KVM_DEV_ARM_VGIC_CONFIG_GICV4_UNAVAILABLE) {
+ gicv4_config = KVM_DEV_ARM_VGIC_CONFIG_GICV4_DISABLE;
+ ret = __kvm_device_attr_set(v.gic_fd, KVM_DEV_ARM_VGIC_GRP_CTRL,
+ KVM_DEV_ARM_VGIC_CONFIG_GICV4, &gicv4_config);
+ TEST_ASSERT(ret && errno == ENXIO,
+ "vGICv4 allowed to be disabled even though it's unavailable");
+
+ gicv4_config = KVM_DEV_ARM_VGIC_CONFIG_GICV4_ENABLE;
+ ret = __kvm_device_attr_set(v.gic_fd, KVM_DEV_ARM_VGIC_GRP_CTRL,
+ KVM_DEV_ARM_VGIC_CONFIG_GICV4, &gicv4_config);
+ TEST_ASSERT(ret && errno == ENXIO,
+ "vGICv4 allowed to be enabled even though it's unavailable");
+ } else { /* kvm-arm.vgic_v4_enable=1 */
+ TEST_ASSERT(gicv4_config == KVM_DEV_ARM_VGIC_CONFIG_GICV4_ENABLE,
+ "Expected vGICv4 to be enabled by default");
+
+ gicv4_config = KVM_DEV_ARM_VGIC_CONFIG_GICV4_DISABLE;
+ kvm_device_attr_set(v.gic_fd, KVM_DEV_ARM_VGIC_GRP_CTRL,
+ KVM_DEV_ARM_VGIC_CONFIG_GICV4, &gicv4_config);
+
+ gicv4_config = KVM_DEV_ARM_VGIC_CONFIG_GICV4_ENABLE;
+ kvm_device_attr_set(v.gic_fd, KVM_DEV_ARM_VGIC_GRP_CTRL,
+ KVM_DEV_ARM_VGIC_CONFIG_GICV4, &gicv4_config);
+
+ gicv4_config = KVM_DEV_ARM_VGIC_CONFIG_GICV4_ENABLE + 1;
+ ret = __kvm_device_attr_set(v.gic_fd, KVM_DEV_ARM_VGIC_GRP_CTRL,
+ KVM_DEV_ARM_VGIC_CONFIG_GICV4, &gicv4_config);
+ TEST_ASSERT(ret && errno == EINVAL,
+ "vGICv4 allowed to be configured with unknown value");
+
+ kvm_device_attr_set(v.gic_fd, KVM_DEV_ARM_VGIC_GRP_CTRL,
+ KVM_DEV_ARM_VGIC_CTRL_INIT, NULL);
+ gicv4_config = KVM_DEV_ARM_VGIC_CONFIG_GICV4_DISABLE;
+ ret = __kvm_device_attr_set(v.gic_fd, KVM_DEV_ARM_VGIC_GRP_CTRL,
+ KVM_DEV_ARM_VGIC_CONFIG_GICV4, &gicv4_config);
+ TEST_ASSERT(ret && errno == EBUSY,
+ "Changing vGICv4 config allowed after vGIC initialization");
+ }
+
+ vm_gic_destroy(&v);
+}
+
/*
* Returns 0 if it's possible to create GIC device of a given type (V2 or V3).
*/
@@ -730,6 +787,7 @@ void run_tests(uint32_t gic_dev_type)
test_v3_last_bit_single_rdist();
test_v3_redist_ipa_range_check_at_vcpu_run();
test_v3_its_region();
+ test_v3_vgicv4_config();
}
}
--
2.49.0.1101.gccaa498523-goog
Powered by blists - more mailing lists