mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
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>
This commit is contained in:
parent
6d940eff47
commit
23609e47c0
3 changed files with 49 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
|||
#include "qemu/osdep.h"
|
||||
#include "hw/acpi/acpi_dev_interface.h"
|
||||
#include "hw/acpi/acpi_aml_interface.h"
|
||||
#include "qemu/module.h"
|
||||
|
||||
void acpi_send_event(DeviceState *dev, AcpiEventStatusBits event)
|
||||
|
@ -18,8 +19,15 @@ static void register_types(void)
|
|||
.parent = TYPE_INTERFACE,
|
||||
.class_size = sizeof(AcpiDeviceIfClass),
|
||||
};
|
||||
static const TypeInfo acpi_dev_aml_if_info = {
|
||||
.name = TYPE_ACPI_DEV_AML_IF,
|
||||
.parent = TYPE_INTERFACE,
|
||||
.class_size = sizeof(AcpiDevAmlIfClass),
|
||||
};
|
||||
|
||||
|
||||
type_register_static(&acpi_dev_if_info);
|
||||
type_register_static(&acpi_dev_aml_if_info);
|
||||
}
|
||||
|
||||
type_init(register_types)
|
||||
|
|
|
@ -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',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue