Re: [Qemu-devel] [PATCH 18/26] hw: acpi: Initial hardware-reduced support

2018-10-24 Thread Michael S. Tsirkin
On Wed, Oct 24, 2018 at 12:09:18AM +0200, Paolo Bonzini wrote: > On 22/10/2018 20:36, Samuel Ortiz wrote: > > We build a minimal set of ACPI hardware-reduced tables: XSDT, > > FADT, MADT and a DSDT pointed by a RSDP. > > The DSDT only contains one PCI host bridge for now. > > > > This API will be

Re: [Qemu-devel] [PATCH 18/26] hw: acpi: Initial hardware-reduced support

2018-10-23 Thread Paolo Bonzini
On 22/10/2018 20:36, Samuel Ortiz wrote: > + > +static void acpi_reduced_build_update(void *build_opaque) > +{ > +MachineState *ms = MACHINE(build_opaque); > +AcpiBuildState *build_state = ms->firmware_build_state.acpi.state; > +AcpiConfiguration *conf = ms->firmware_build_state.acpi.co

Re: [Qemu-devel] [PATCH 18/26] hw: acpi: Initial hardware-reduced support

2018-10-23 Thread Paolo Bonzini
On 22/10/2018 20:36, Samuel Ortiz wrote: > We build a minimal set of ACPI hardware-reduced tables: XSDT, > FADT, MADT and a DSDT pointed by a RSDP. > The DSDT only contains one PCI host bridge for now. > > This API will be consumed by new x86 machine type but also potentially > by the ARM virt one

[Qemu-devel] [PATCH 18/26] hw: acpi: Initial hardware-reduced support

2018-10-22 Thread Samuel Ortiz
We build a minimal set of ACPI hardware-reduced tables: XSDT, FADT, MADT and a DSDT pointed by a RSDP. The DSDT only contains one PCI host bridge for now. This API will be consumed by new x86 machine type but also potentially by the ARM virt one. Cc: "Michael S. Tsirkin" Cc: Igor Mammedov Signe