[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 04/12] target/arm: spe: Only enable SPE from 5.2 compat machin
From: |
Haibo Xu |
Subject: |
[PATCH v2 04/12] target/arm: spe: Only enable SPE from 5.2 compat machines. |
Date: |
Tue, 8 Sep 2020 08:13:22 +0000 |
Signed-off-by: Haibo Xu <haibo.xu@linaro.org>
---
hw/arm/virt.c | 7 +++++++
include/hw/arm/virt.h | 1 +
2 files changed, 8 insertions(+)
diff --git a/hw/arm/virt.c b/hw/arm/virt.c
index acf9bfbece..3f6d26c531 100644
--- a/hw/arm/virt.c
+++ b/hw/arm/virt.c
@@ -1830,6 +1830,10 @@ static void machvirt_init(MachineState *machine)
object_property_set_bool(cpuobj, "pmu", false, NULL);
}
+ if (vmc->no_spe && object_property_find(cpuobj, "spe", NULL)) {
+ object_property_set_bool(cpuobj, "spe", false, NULL);
+ }
+
if (object_property_find(cpuobj, "reset-cbar", NULL)) {
object_property_set_int(cpuobj, "reset-cbar",
vms->memmap[VIRT_CPUPERIPHS].base,
@@ -2553,8 +2557,11 @@ DEFINE_VIRT_MACHINE_AS_LATEST(5, 2)
static void virt_machine_5_1_options(MachineClass *mc)
{
+ VirtMachineClass *vmc = VIRT_MACHINE_CLASS(OBJECT_CLASS(mc));
+
virt_machine_5_2_options(mc);
compat_props_add(mc->compat_props, hw_compat_5_1, hw_compat_5_1_len);
+ vmc->no_spe = true;
}
DEFINE_VIRT_MACHINE(5, 1)
diff --git a/include/hw/arm/virt.h b/include/hw/arm/virt.h
index dff67e1bef..72c269aaa5 100644
--- a/include/hw/arm/virt.h
+++ b/include/hw/arm/virt.h
@@ -126,6 +126,7 @@ typedef struct {
bool no_ged; /* Machines < 4.2 has no support for ACPI GED device */
bool kvm_no_adjvtime;
bool acpi_expose_flash;
+ bool no_spe;
} VirtMachineClass;
typedef struct {
--
2.17.1
- [PATCH v2 00/12] target/arm: Add vSPE support to KVM guest, Haibo Xu, 2020/09/08
- [PATCH v2 01/12] update Linux headers with new vSPE macros, Haibo Xu, 2020/09/08
- [PATCH v2 02/12] target/arm/kvm: spe: Add helper to detect SPE when using KVM, Haibo Xu, 2020/09/08
- [PATCH v2 04/12] target/arm: spe: Only enable SPE from 5.2 compat machines.,
Haibo Xu <=
- [PATCH v2 05/12] target/arm/kvm: spe: Unify device attr operation helper, Haibo Xu, 2020/09/08
- [PATCH v2 03/12] target/arm/cpu: spe: Add an option to turn on/off vSPE support, Haibo Xu, 2020/09/08
- [PATCH v2 07/12] hw/arm/virt: Move post cpu realize check into its own function, Haibo Xu, 2020/09/08
- [PATCH v2 06/12] target/arm/kvm: spe: Add device init and set_irq operations, Haibo Xu, 2020/09/08