[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v2 04/12] target/arm: spe: Only enable SPE from 5.2 compat ma
From: |
Andrew Jones |
Subject: |
Re: [PATCH v2 04/12] target/arm: spe: Only enable SPE from 5.2 compat machines. |
Date: |
Tue, 8 Sep 2020 12:52:30 +0200 |
On Tue, Sep 08, 2020 at 08:13:22AM +0000, Haibo Xu wrote:
> 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
>
Reviewed-by: Andrew Jones <drjones@redhat.com>
- [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, 2020/09/08
- Re: [PATCH v2 04/12] target/arm: spe: Only enable SPE from 5.2 compat machines.,
Andrew Jones <=
- [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