acpi: add interface to build device specific AML
commit23609e47c0f62b537ba9803cb15e69993fd0c266
authorIgor Mammedov <imammedo@redhat.com>
Wed, 8 Jun 2022 13:53:06 +0000 (8 09:53 -0400)
committerMichael S. Tsirkin <mst@redhat.com>
Thu, 9 Jun 2022 23:32:48 +0000 (9 19:32 -0400)
tree1c47f9dccdaca7166581a0ffb5dca28a81f562cd
parent6d940eff4734bcb40b1a25f62d7cec5a396f994a
acpi: add interface to build device specific AML

There is already ISADeviceClass::build_aml() callback which
builds device specific AML blob for some ISA devices.
To extend the same idea to other devices, add TYPE_ACPI_DEV_AML_IF
Interface that will provide a more generic callback which
will be used not only for ISA but other devices. It will
allow get rid of some data-mining and ad-hoc AML building,
by asking device(s) to generate its own AML blob like it's
done for ISA devices.

Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Acked-by: Gerd Hoffmann <kraxel@redhat.com>
Message-Id: <20220608135340.3304695-2-imammedo@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
hw/acpi/acpi_interface.c
hw/acpi/meson.build
include/hw/acpi/acpi_aml_interface.h [new file with mode: 0644]