diff options
author | Igor Mammedov | 2022-06-08 15:53:06 +0200 |
---|---|---|
committer | Michael S. Tsirkin | 2022-06-10 01:32:48 +0200 |
commit | 23609e47c0f62b537ba9803cb15e69993fd0c266 (patch) | |
tree | 1c47f9dccdaca7166581a0ffb5dca28a81f562cd /hw/acpi/meson.build | |
parent | Merge tag 'pull-tpm-2022-06-07-1' of https://github.com/stefanberger/qemu-tpm... (diff) | |
download | qemu-23609e47c0f62b537ba9803cb15e69993fd0c266.tar.gz qemu-23609e47c0f62b537ba9803cb15e69993fd0c266.tar.xz qemu-23609e47c0f62b537ba9803cb15e69993fd0c266.zip |
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>
Diffstat (limited to 'hw/acpi/meson.build')
-rw-r--r-- | hw/acpi/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/acpi/meson.build b/hw/acpi/meson.build index cea2f5f93a..f8c820ca94 100644 --- a/hw/acpi/meson.build +++ b/hw/acpi/meson.build @@ -29,7 +29,7 @@ acpi_ss.add(when: 'CONFIG_PC', if_false: files('acpi-x86-stub.c')) if have_tpm acpi_ss.add(files('tpm.c')) endif -softmmu_ss.add(when: 'CONFIG_ACPI', if_false: files('acpi-stub.c', 'aml-build-stub.c', 'ghes-stub.c')) +softmmu_ss.add(when: 'CONFIG_ACPI', if_false: files('acpi-stub.c', 'aml-build-stub.c', 'ghes-stub.c', 'acpi_interface.c')) softmmu_ss.add_all(when: 'CONFIG_ACPI', if_true: acpi_ss) softmmu_ss.add(when: 'CONFIG_ALL', if_true: files('acpi-stub.c', 'aml-build-stub.c', 'acpi-x86-stub.c', 'ipmi-stub.c', 'ghes-stub.c', |