2016-01-26 21:17:03 +03:00
|
|
|
#include "qemu/osdep.h"
|
2014-06-16 21:12:26 +04:00
|
|
|
#include "hw/acpi/acpi_dev_interface.h"
|
2022-06-08 16:53:06 +03:00
|
|
|
#include "hw/acpi/acpi_aml_interface.h"
|
2014-06-16 21:12:26 +04:00
|
|
|
#include "qemu/module.h"
|
2023-01-21 18:19:36 +03:00
|
|
|
#include "qemu/queue.h"
|
2014-06-16 21:12:26 +04:00
|
|
|
|
2016-05-31 12:57:57 +03:00
|
|
|
void acpi_send_event(DeviceState *dev, AcpiEventStatusBits event)
|
|
|
|
{
|
|
|
|
AcpiDeviceIfClass *adevc = ACPI_DEVICE_IF_GET_CLASS(dev);
|
|
|
|
if (adevc->send_event) {
|
|
|
|
AcpiDeviceIf *adev = ACPI_DEVICE_IF(dev);
|
|
|
|
adevc->send_event(adev, event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-21 18:19:36 +03:00
|
|
|
void qbus_build_aml(BusState *bus, Aml *scope)
|
|
|
|
{
|
|
|
|
BusChild *kid;
|
|
|
|
|
|
|
|
QTAILQ_FOREACH(kid, &bus->children, sibling) {
|
|
|
|
call_dev_aml_func(DEVICE(kid->child), scope);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-16 21:12:26 +04:00
|
|
|
static void register_types(void)
|
|
|
|
{
|
|
|
|
static const TypeInfo acpi_dev_if_info = {
|
|
|
|
.name = TYPE_ACPI_DEVICE_IF,
|
|
|
|
.parent = TYPE_INTERFACE,
|
|
|
|
.class_size = sizeof(AcpiDeviceIfClass),
|
|
|
|
};
|
2022-06-08 16:53:06 +03:00
|
|
|
static const TypeInfo acpi_dev_aml_if_info = {
|
|
|
|
.name = TYPE_ACPI_DEV_AML_IF,
|
|
|
|
.parent = TYPE_INTERFACE,
|
|
|
|
.class_size = sizeof(AcpiDevAmlIfClass),
|
|
|
|
};
|
|
|
|
|
2014-06-16 21:12:26 +04:00
|
|
|
|
|
|
|
type_register_static(&acpi_dev_if_info);
|
2022-06-08 16:53:06 +03:00
|
|
|
type_register_static(&acpi_dev_aml_if_info);
|
2014-06-16 21:12:26 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
type_init(register_types)
|