qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH] acpi: Add Windows ACPI Emulated Device Table (WAET)


From: Igor Mammedov
Subject: Re: [PATCH] acpi: Add Windows ACPI Emulated Device Table (WAET)
Date: Fri, 13 Mar 2020 10:36:56 +0100

On Thu, 12 Mar 2020 13:09:51 -0400
"Michael S. Tsirkin" <address@hidden> wrote:

> On Thu, Mar 12, 2020 at 05:27:45PM +0100, Igor Mammedov wrote:
> > On Wed, 11 Mar 2020 19:08:26 +0200
> > Liran Alon <address@hidden> wrote:
> >   
> > > From: Elad Gabay <address@hidden>
> > > 
> > > Microsoft introduced this ACPI table to avoid Windows guests performing
> > > various workarounds for device erratas. As the virtual device emulated
> > > by VMM may not have the errata.
> > > 
> > > Currently, WAET allows hypervisor to inform guest about two
> > > specific behaviors: One for RTC and the other for ACPI PM Timer.
> > > 
> > > Support for WAET have been introduced since Windows Vista. This ACPI
> > > table is also exposed by other hypervisors, such as VMware, by default.
> > > 
> > > This patch adds WAET ACPI Table to QEMU. It also makes sure to introduce
> > > the new ACPI table only for new machine-types.  
> > 
> > in addition to comments made by Michael ...
> >   
> > > 
> > > Signed-off-by: Elad Gabay <address@hidden>
> > > Co-developed-by: Liran Alon <address@hidden>
> > > Signed-off-by: Liran Alon <address@hidden>
> > > ---
> > >  hw/i386/acpi-build.c        | 18 ++++++++++++++++++
> > >  hw/i386/pc_piix.c           |  2 ++
> > >  hw/i386/pc_q35.c            |  2 ++
> > >  include/hw/acpi/acpi-defs.h | 25 +++++++++++++++++++++++++
> > >  include/hw/i386/pc.h        |  1 +
> > >  5 files changed, 48 insertions(+)
> > > 
> > > diff --git a/hw/i386/acpi-build.c b/hw/i386/acpi-build.c
> > > index 9c4e46fa7466..29f70741cd96 100644
> > > --- a/hw/i386/acpi-build.c
> > > +++ b/hw/i386/acpi-build.c
> > > @@ -2512,6 +2512,19 @@ build_dmar_q35(GArray *table_data, BIOSLinker 
> > > *linker)
> > >      build_header(linker, table_data, (void *)(table_data->data + 
> > > dmar_start),
> > >                   "DMAR", table_data->len - dmar_start, 1, NULL, NULL);
> > >  }
> > > +
> > > +static void
> > > +build_waet(GArray *table_data, BIOSLinker *linker)  
> > see build_hmat_lb() for example how to doc comment for such function
> > should look like. Use earliest spec version where table was introduced.
> >   
> > > +{
> > > +    AcpiTableWaet *waet;
> > > +
> > > +    waet = acpi_data_push(table_data, sizeof(*waet));
> > > +    waet->emulated_device_flags = cpu_to_le32(ACPI_WAET_PM_TIMER_GOOD);  
> > 
> > we don't use packed structures for building ACPI tables anymore (there is
> > old code that still does but that's being converted when we touch it)
> > 
> > pls use build_append_int_noprefix() api instead, see build_amd_iommu() as
> > an example how to build binary tables using it and how to use comments
> > to document fields.
> > Basic idea is that api makes function building a table match table's
> > description in spec (each call represents a row in spec) and comment
> > belonging to a row should contain verbatim field name as used by spec
> > so reader could copy/past and grep it easily.  
> 
> 
> BTW how about a better name for this function?

how about [aml|acpi]_int_raw 
[...]




reply via email to

[Prev in Thread] Current Thread [Next in Thread]