summaryrefslogtreecommitdiffstats
path: root/hw/acpi/Makefile.objs
diff options
context:
space:
mode:
authorIgor Mammedov2014-06-16 19:12:26 +0200
committerMichael S. Tsirkin2014-06-19 17:44:22 +0200
commit521b3673ac16ec7fa33b1ec2cdfe75ec708f073e (patch)
tree5126aa874621807f4aaa7cd45f5d8bacc6afed9e /hw/acpi/Makefile.objs
parentqmp: add query-memory-devices command (diff)
downloadqemu-521b3673ac16ec7fa33b1ec2cdfe75ec708f073e.tar.gz
qemu-521b3673ac16ec7fa33b1ec2cdfe75ec708f073e.tar.xz
qemu-521b3673ac16ec7fa33b1ec2cdfe75ec708f073e.zip
acpi: introduce TYPE_ACPI_DEVICE_IF interface
... it will be used to abstract generic ACPI bits from device that implements ACPI interface. ACPIOSTInfo type is used for passing-through raw _OST event/status codes reported by guest OS to a management layer. It lets management tools interpret values as specified by ACPI spec if it is interested in it. QEMU doesn't encode these values as enum, since it doesn't need to handle them and it allows interface to scale well without any changes in QEMU while guest OS and management evolves in time. 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 'hw/acpi/Makefile.objs')
-rw-r--r--hw/acpi/Makefile.objs1
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/acpi/Makefile.objs b/hw/acpi/Makefile.objs
index 004e1b2090..acd2389431 100644
--- a/hw/acpi/Makefile.objs
+++ b/hw/acpi/Makefile.objs
@@ -1,2 +1,3 @@
common-obj-$(CONFIG_ACPI) += core.o piix4.o ich9.o pcihp.o cpu_hotplug.o
common-obj-$(CONFIG_ACPI) += memory_hotplug.o
+common-obj-$(CONFIG_ACPI) += acpi_interface.o