diff options
author | Igor Mammedov <imammedo@redhat.com> | 2014-06-16 19:12:27 +0200 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2014-06-19 18:44:22 +0300 |
commit | 43f50410088847376c8b146e817a9042bd2a5f36 (patch) | |
tree | a8e170b918adc00773966b0ce966f0ee616975d9 /include | |
parent | 521b3673ac16ec7fa33b1ec2cdfe75ec708f073e (diff) | |
download | qemu-43f50410088847376c8b146e817a9042bd2a5f36.zip qemu-43f50410088847376c8b146e817a9042bd2a5f36.tar.gz qemu-43f50410088847376c8b146e817a9042bd2a5f36.tar.bz2 |
acpi: implement ospm_status() method for PIIX4/ICH9_LPC devices
... using TYPE_ACPI_DEVICE_IF interface.
Which provides status reporting of ACPI declared memory devices
Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Acked-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/hw/acpi/ich9.h | 3 | ||||
-rw-r--r-- | include/hw/acpi/memory_hotplug.h | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/include/hw/acpi/ich9.h b/include/hw/acpi/ich9.h index 1977f1b..7e42448 100644 --- a/include/hw/acpi/ich9.h +++ b/include/hw/acpi/ich9.h @@ -24,6 +24,7 @@ #include "hw/acpi/acpi.h" #include "hw/acpi/cpu_hotplug.h" #include "hw/acpi/memory_hotplug.h" +#include "hw/acpi/acpi_dev_interface.h" typedef struct ICH9LPCPMRegs { /* @@ -59,4 +60,6 @@ extern const VMStateDescription vmstate_ich9_pm; void ich9_pm_add_properties(Object *obj, ICH9LPCPMRegs *pm, Error **errp); void ich9_pm_device_plug_cb(ICH9LPCPMRegs *pm, DeviceState *dev, Error **errp); + +void ich9_pm_ospm_status(AcpiDeviceIf *adev, ACPIOSTInfoList ***list); #endif /* HW_ACPI_ICH9_H */ diff --git a/include/hw/acpi/memory_hotplug.h b/include/hw/acpi/memory_hotplug.h index 4588459..7bbf8a0 100644 --- a/include/hw/acpi/memory_hotplug.h +++ b/include/hw/acpi/memory_hotplug.h @@ -34,4 +34,5 @@ extern const VMStateDescription vmstate_memory_hotplug; VMSTATE_STRUCT(memhp, state, 1, \ vmstate_memory_hotplug, MemHotplugState) +void acpi_memory_ospm_status(MemHotplugState *mem_st, ACPIOSTInfoList ***list); #endif |