qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Philippe Mathieu-Daudé" <philmd@redhat.com>
To: Paolo Bonzini <pbonzini@redhat.com>, qemu-devel@nongnu.org
Cc: slp@redhat.com
Subject: Re: [PATCH v2 5/8] x86: move SMM property to X86MachineState
Date: Fri, 13 Dec 2019 15:50:32 +0100	[thread overview]
Message-ID: <e1b3649c-9622-1077-65e2-0dc6e73dadb8@redhat.com> (raw)
In-Reply-To: <1576171754-45138-6-git-send-email-pbonzini@redhat.com>

On 12/12/19 6:29 PM, Paolo Bonzini wrote:
> Add it to microvm as well, it is a generic property of the x86
> architecture.
> 
> Suggested-by: Sergio Lopez <slp@redhat.com>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>

Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>

> ---
>   hw/i386/pc.c          | 49 -------------------------------------------------
>   hw/i386/pc_piix.c     |  6 +++---
>   hw/i386/pc_q35.c      |  2 +-
>   hw/i386/x86.c         | 50 +++++++++++++++++++++++++++++++++++++++++++++++++-
>   include/hw/i386/pc.h  |  3 ---
>   include/hw/i386/x86.h |  5 +++++
>   target/i386/kvm.c     |  3 +--
>   7 files changed, 59 insertions(+), 59 deletions(-)
> 
> diff --git a/hw/i386/pc.c b/hw/i386/pc.c
> index fdbd2bf..6a3212e 100644
> --- a/hw/i386/pc.c
> +++ b/hw/i386/pc.c
> @@ -2028,48 +2028,6 @@ static void pc_machine_set_vmport(Object *obj, Visitor *v, const char *name,
>       visit_type_OnOffAuto(v, name, &pcms->vmport, errp);
>   }
>   
> -bool pc_machine_is_smm_enabled(PCMachineState *pcms)
> -{
> -    bool smm_available = false;
> -
> -    if (pcms->smm == ON_OFF_AUTO_OFF) {
> -        return false;
> -    }
> -
> -    if (tcg_enabled() || qtest_enabled()) {
> -        smm_available = true;
> -    } else if (kvm_enabled()) {
> -        smm_available = kvm_has_smm();
> -    }
> -
> -    if (smm_available) {
> -        return true;
> -    }
> -
> -    if (pcms->smm == ON_OFF_AUTO_ON) {
> -        error_report("System Management Mode not supported by this hypervisor.");
> -        exit(1);
> -    }
> -    return false;
> -}
> -
> -static void pc_machine_get_smm(Object *obj, Visitor *v, const char *name,
> -                               void *opaque, Error **errp)
> -{
> -    PCMachineState *pcms = PC_MACHINE(obj);
> -    OnOffAuto smm = pcms->smm;
> -
> -    visit_type_OnOffAuto(v, name, &smm, errp);
> -}
> -
> -static void pc_machine_set_smm(Object *obj, Visitor *v, const char *name,
> -                               void *opaque, Error **errp)
> -{
> -    PCMachineState *pcms = PC_MACHINE(obj);
> -
> -    visit_type_OnOffAuto(v, name, &pcms->smm, errp);
> -}
> -
>   static bool pc_machine_get_smbus(Object *obj, Error **errp)
>   {
>       PCMachineState *pcms = PC_MACHINE(obj);
> @@ -2116,7 +2074,6 @@ static void pc_machine_initfn(Object *obj)
>   {
>       PCMachineState *pcms = PC_MACHINE(obj);
>   
> -    pcms->smm = ON_OFF_AUTO_AUTO;
>   #ifdef CONFIG_VMPORT
>       pcms->vmport = ON_OFF_AUTO_AUTO;
>   #else
> @@ -2223,12 +2180,6 @@ static void pc_machine_class_init(ObjectClass *oc, void *data)
>           pc_machine_get_device_memory_region_size, NULL,
>           NULL, NULL, &error_abort);
>   
> -    object_class_property_add(oc, PC_MACHINE_SMM, "OnOffAuto",
> -        pc_machine_get_smm, pc_machine_set_smm,
> -        NULL, NULL, &error_abort);
> -    object_class_property_set_description(oc, PC_MACHINE_SMM,
> -        "Enable SMM (pc & q35)", &error_abort);
> -
>       object_class_property_add(oc, PC_MACHINE_VMPORT, "OnOffAuto",
>           pc_machine_get_vmport, pc_machine_set_vmport,
>           NULL, NULL, &error_abort);
> diff --git a/hw/i386/pc_piix.c b/hw/i386/pc_piix.c
> index 1bd70d1..dd0f00e 100644
> --- a/hw/i386/pc_piix.c
> +++ b/hw/i386/pc_piix.c
> @@ -281,7 +281,7 @@ else {
>           /* TODO: Populate SPD eeprom data.  */
>           pcms->smbus = piix4_pm_init(pci_bus, piix3_devfn + 3, 0xb100,
>                                       x86ms->gsi[9], smi_irq,
> -                                    pc_machine_is_smm_enabled(pcms),
> +                                    x86_machine_is_smm_enabled(x86ms),
>                                       &piix4_pm);
>           smbus_eeprom_init(pcms->smbus, 8, NULL, 0);
>   
> @@ -309,9 +309,9 @@ else {
>   
>   static void pc_compat_2_3_fn(MachineState *machine)
>   {
> -    PCMachineState *pcms = PC_MACHINE(machine);
> +    X86MachineState *x86ms = X86_MACHINE(machine);
>       if (kvm_enabled()) {
> -        pcms->smm = ON_OFF_AUTO_OFF;
> +        x86ms->smm = ON_OFF_AUTO_OFF;
>       }
>   }
>   
> diff --git a/hw/i386/pc_q35.c b/hw/i386/pc_q35.c
> index 385e5cf..bccaaee 100644
> --- a/hw/i386/pc_q35.c
> +++ b/hw/i386/pc_q35.c
> @@ -276,7 +276,7 @@ static void pc_q35_init(MachineState *machine)
>                            0xff0104);
>   
>       /* connect pm stuff to lpc */
> -    ich9_lpc_pm_init(lpc, pc_machine_is_smm_enabled(pcms));
> +    ich9_lpc_pm_init(lpc, x86_machine_is_smm_enabled(x86ms));
>   
>       if (pcms->sata_enabled) {
>           /* ahci and SATA device, for q35 1 ahci controller is built-in */
> diff --git a/hw/i386/x86.c b/hw/i386/x86.c
> index 3e4aee5..6fb01e4 100644
> --- a/hw/i386/x86.c
> +++ b/hw/i386/x86.c
> @@ -746,10 +746,53 @@ static void x86_machine_set_max_ram_below_4g(Object *obj, Visitor *v,
>       x86ms->max_ram_below_4g = value;
>   }
>   
> +bool x86_machine_is_smm_enabled(X86MachineState *x86ms)
> +{
> +    bool smm_available = false;
> +
> +    if (x86ms->smm == ON_OFF_AUTO_OFF) {
> +        return false;
> +    }
> +
> +    if (tcg_enabled() || qtest_enabled()) {
> +        smm_available = true;
> +    } else if (kvm_enabled()) {
> +        smm_available = kvm_has_smm();
> +    }
> +
> +    if (smm_available) {
> +        return true;
> +    }
> +
> +    if (x86ms->smm == ON_OFF_AUTO_ON) {
> +        error_report("System Management Mode not supported by this hypervisor.");
> +        exit(1);
> +    }
> +    return false;
> +}
> +
> +static void x86_machine_get_smm(Object *obj, Visitor *v, const char *name,
> +                               void *opaque, Error **errp)
> +{
> +    X86MachineState *x86ms = X86_MACHINE(obj);
> +    OnOffAuto smm = x86ms->smm;
> +
> +    visit_type_OnOffAuto(v, name, &smm, errp);
> +}
> +
> +static void x86_machine_set_smm(Object *obj, Visitor *v, const char *name,
> +                               void *opaque, Error **errp)
> +{
> +    X86MachineState *x86ms = X86_MACHINE(obj);
> +
> +    visit_type_OnOffAuto(v, name, &x86ms->smm, errp);
> +}
> +
>   static void x86_machine_initfn(Object *obj)
>   {
>       X86MachineState *x86ms = X86_MACHINE(obj);
>   
> +    x86ms->smm = ON_OFF_AUTO_AUTO;
>       x86ms->max_ram_below_4g = 0; /* use default */
>       x86ms->smp_dies = 1;
>   }
> @@ -770,9 +813,14 @@ static void x86_machine_class_init(ObjectClass *oc, void *data)
>       object_class_property_add(oc, X86_MACHINE_MAX_RAM_BELOW_4G, "size",
>           x86_machine_get_max_ram_below_4g, x86_machine_set_max_ram_below_4g,
>           NULL, NULL, &error_abort);
> -
>       object_class_property_set_description(oc, X86_MACHINE_MAX_RAM_BELOW_4G,
>           "Maximum ram below the 4G boundary (32bit boundary)", &error_abort);
> +
> +    object_class_property_add(oc, X86_MACHINE_SMM, "OnOffAuto",
> +        x86_machine_get_smm, x86_machine_set_smm,
> +        NULL, NULL, &error_abort);
> +    object_class_property_set_description(oc, X86_MACHINE_SMM,
> +        "Enable SMM", &error_abort);
>   }
>   
>   static const TypeInfo x86_machine_info = {
> diff --git a/include/hw/i386/pc.h b/include/hw/i386/pc.h
> index 82447f8..ca641e8 100644
> --- a/include/hw/i386/pc.h
> +++ b/include/hw/i386/pc.h
> @@ -43,7 +43,6 @@ struct PCMachineState {
>   
>       /* Configuration options: */
>       OnOffAuto vmport;
> -    OnOffAuto smm;
>   
>       bool acpi_build_enabled;
>       bool smbus_enabled;
> @@ -61,7 +60,6 @@ struct PCMachineState {
>   #define PC_MACHINE_ACPI_DEVICE_PROP "acpi-device"
>   #define PC_MACHINE_DEVMEM_REGION_SIZE "device-memory-region-size"
>   #define PC_MACHINE_VMPORT           "vmport"
> -#define PC_MACHINE_SMM              "smm"
>   #define PC_MACHINE_SMBUS            "smbus"
>   #define PC_MACHINE_SATA             "sata"
>   #define PC_MACHINE_PIT              "pit"
> @@ -165,7 +163,6 @@ void vmmouse_set_data(const uint32_t *data);
>   /* pc.c */
>   extern int fd_bootchk;
>   
> -bool pc_machine_is_smm_enabled(PCMachineState *pcms);
>   void pc_acpi_smi_interrupt(void *opaque, int irq, int level);
>   
>   void pc_hot_add_cpu(MachineState *ms, const int64_t id, Error **errp);
> diff --git a/include/hw/i386/x86.h b/include/hw/i386/x86.h
> index 4b84917..97d1575 100644
> --- a/include/hw/i386/x86.h
> +++ b/include/hw/i386/x86.h
> @@ -60,6 +60,8 @@ typedef struct {
>       uint16_t boot_cpus;
>       unsigned smp_dies;
>   
> +    OnOffAuto smm;
> +
>       /*
>        * Address space used by IOAPIC device. All IOAPIC interrupts
>        * will be translated to MSI messages in the address space.
> @@ -68,6 +70,7 @@ typedef struct {
>   } X86MachineState;
>   
>   #define X86_MACHINE_MAX_RAM_BELOW_4G "max-ram-below-4g"
> +#define X86_MACHINE_SMM              "smm"
>   
>   #define TYPE_X86_MACHINE   MACHINE_TYPE_NAME("x86")
>   #define X86_MACHINE(obj) \
> @@ -95,4 +98,6 @@ void x86_load_linux(X86MachineState *x86ms,
>                       bool pvh_enabled,
>                       bool linuxboot_dma_enabled);
>   
> +bool x86_machine_is_smm_enabled(X86MachineState *x86ms);
> +
>   #endif
> diff --git a/target/i386/kvm.c b/target/i386/kvm.c
> index ef63f3a..c7ff67a 100644
> --- a/target/i386/kvm.c
> +++ b/target/i386/kvm.c
> @@ -2173,8 +2173,7 @@ int kvm_arch_init(MachineState *ms, KVMState *s)
>       }
>   
>       if (kvm_check_extension(s, KVM_CAP_X86_SMM) &&
> -        object_dynamic_cast(OBJECT(ms), TYPE_PC_MACHINE) &&
> -        pc_machine_is_smm_enabled(PC_MACHINE(ms))) {
> +        x86_machine_is_smm_enabled(X86_MACHINE(ms))) {
>           smram_machine_done.notify = register_smram_listener;
>           qemu_add_machine_init_done_notifier(&smram_machine_done);
>       }
> 



  reply	other threads:[~2019-12-13 21:22 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-12-12 17:29 [PATCH v2 0/8] x86: allow building without PC machine types Paolo Bonzini
2019-12-12 17:29 ` [PATCH v2 1/8] i386: conditionally compile more files Paolo Bonzini
2019-12-12 17:29 ` [PATCH v2 2/8] fw_cfg: allow building without other devices Paolo Bonzini
2019-12-12 17:29 ` [PATCH v2 3/8] hw: replace hw/i386/pc.h with a header just for the i8259 Paolo Bonzini
2019-12-12 19:03   ` Philippe Mathieu-Daudé
2019-12-12 20:05     ` Paolo Bonzini
2019-12-13  9:43       ` Philippe Mathieu-Daudé
2019-12-13 14:56         ` Paolo Bonzini
2019-12-12 17:29 ` [PATCH v2 4/8] pci-stub: add more MSI functions Paolo Bonzini
2019-12-12 19:49   ` Philippe Mathieu-Daudé
2019-12-12 17:29 ` [PATCH v2 5/8] x86: move SMM property to X86MachineState Paolo Bonzini
2019-12-13 14:50   ` Philippe Mathieu-Daudé [this message]
2019-12-12 17:29 ` [PATCH v2 6/8] x86: move more x86-generic functions out of PC files Paolo Bonzini
2020-01-08  8:03   ` Gerd Hoffmann
2020-01-08  8:19     ` Paolo Bonzini
2019-12-12 17:29 ` [PATCH v2 7/8] acpi: move PC stubs out of stubs/ Paolo Bonzini
2019-12-12 17:29 ` [PATCH v2 8/8] pc: stubify x86 iommu Paolo Bonzini
2020-01-07 14:26   ` Thomas Huth
2020-01-07 14:59     ` Thomas Huth

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=e1b3649c-9622-1077-65e2-0dc6e73dadb8@redhat.com \
    --to=philmd@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=slp@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).