[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 6/7] target/arm/kvm: don't check TYPE_AARCH64_CPU
From: |
Peter Maydell |
Subject: |
[PATCH v2 6/7] target/arm/kvm: don't check TYPE_AARCH64_CPU |
Date: |
Tue, 29 Apr 2025 14:21:59 +0100 |
We want to merge TYPE_AARCH64_CPU with TYPE_ARM_CPU, so enforcing in
kvm_arch_init_vcpu() that the CPU class is a subclass of
TYPE_AARCH64_CPU will no longer be possible.
It's safe to just remove this test, because any purely-AArch32 CPU
will fail the "kvm_target isn't set" check, because we no longer
support the old AArch32-host KVM setup and so CPUs like the Cortex-A7
no longer set cpu->kvm_target. Only the 'host', 'max', and the
odd special cases 'cortex-a53' and 'cortex-a57' set kvm_target.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
target/arm/kvm.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/target/arm/kvm.c b/target/arm/kvm.c
index 97de8c7e939..6b2c788e0fa 100644
--- a/target/arm/kvm.c
+++ b/target/arm/kvm.c
@@ -1882,8 +1882,7 @@ int kvm_arch_init_vcpu(CPUState *cs)
CPUARMState *env = &cpu->env;
uint64_t psciver;
- if (cpu->kvm_target == QEMU_KVM_ARM_TARGET_NONE ||
- !object_dynamic_cast(OBJECT(cpu), TYPE_AARCH64_CPU)) {
+ if (cpu->kvm_target == QEMU_KVM_ARM_TARGET_NONE) {
error_report("KVM is not supported for this guest CPU type");
return -EINVAL;
}
--
2.43.0
- [PATCH v2 0/7] target/arm: Remove TYPE_AARCH64_CPU class, Peter Maydell, 2025/04/29
- [PATCH v2 6/7] target/arm/kvm: don't check TYPE_AARCH64_CPU,
Peter Maydell <=
- [PATCH v2 2/7] target/microblaze: Delay gdb_register_coprocessor() to realize, Peter Maydell, 2025/04/29
- [PATCH v2 1/7] target/microblaze: Use 'obj' in DEVICE() casts in mb_cpu_initfn(), Peter Maydell, 2025/04/29
- [PATCH v2 5/7] target/arm: Move aarch64 CPU property code to TYPE_ARM_CPU, Peter Maydell, 2025/04/29
- [PATCH v2 3/7] hw/core/cpu-common: Don't init gdbstub until cpu_exec_realizefn(), Peter Maydell, 2025/04/29
- [PATCH v2 7/7] target/arm: Remove TYPE_AARCH64_CPU, Peter Maydell, 2025/04/29
- [PATCH v2 4/7] target/arm: Present AArch64 gdbstub based on ARM_FEATURE_AARCH64, Peter Maydell, 2025/04/29