[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 06/11] acpi: add get_dev_aml_func() helper
From: |
Igor Mammedov |
Subject: |
[PATCH 06/11] acpi: add get_dev_aml_func() helper |
Date: |
Mon, 17 Oct 2022 12:21:41 +0200 |
It will be used in followup commits to figure out if
device has it's own, device specific AML block.
Signed-off-by: Igor Mammedov <imammedo@redhat.com>
---
include/hw/acpi/acpi_aml_interface.h | 13 +++++++++++--
1 file changed, 11 insertions(+), 2 deletions(-)
diff --git a/include/hw/acpi/acpi_aml_interface.h
b/include/hw/acpi/acpi_aml_interface.h
index ab76f0e55d..436da069d6 100644
--- a/include/hw/acpi/acpi_aml_interface.h
+++ b/include/hw/acpi/acpi_aml_interface.h
@@ -29,11 +29,20 @@ struct AcpiDevAmlIfClass {
dev_aml_fn build_dev_aml;
};
-static inline void call_dev_aml_func(DeviceState *dev, Aml *scope)
+static inline dev_aml_fn get_dev_aml_func(DeviceState *dev)
{
if (object_dynamic_cast(OBJECT(dev), TYPE_ACPI_DEV_AML_IF)) {
AcpiDevAmlIfClass *klass = ACPI_DEV_AML_IF_GET_CLASS(dev);
- klass->build_dev_aml(ACPI_DEV_AML_IF(dev), scope);
+ return klass->build_dev_aml;
+ }
+ return NULL;
+}
+
+static inline void call_dev_aml_func(DeviceState *dev, Aml *scope)
+{
+ dev_aml_fn fn = get_dev_aml_func(dev);
+ if (fn) {
+ fn(ACPI_DEV_AML_IF(dev), scope);
}
}
--
2.31.1
- [PATCH 00/11] x86: clean up ACPI PCI code part 2, Igor Mammedov, 2022/10/17
- [PATCH 05/11] tests: acpi: whitelist DSDT before generating ICH9_SMB AML automatically, Igor Mammedov, 2022/10/17
- [PATCH 01/11] acpi: pc: vga: use AcpiDevAmlIf interface to build VGA device descriptors, Igor Mammedov, 2022/10/17
- [PATCH 02/11] tests: acpi: whitelist DSDT before generating PCI-ISA bridge AML automatically, Igor Mammedov, 2022/10/17
- [PATCH 07/11] acpi: enumerate SMB bridge automatically along with other PCI devices, Igor Mammedov, 2022/10/17
- [PATCH 04/11] tests: acpi: update expected DSDT after ISA bridge is moved directly under PCI host bridge, Igor Mammedov, 2022/10/17
- [PATCH 06/11] acpi: add get_dev_aml_func() helper,
Igor Mammedov <=
- [PATCH 03/11] acpi: pc/q35: drop ad-hoc PCI-ISA bridge AML routines and let bus ennumeration generate AML, Igor Mammedov, 2022/10/17
- [PATCH 10/11] acpi: pc/35: sanitize _GPE declaration order, Igor Mammedov, 2022/10/17
- [PATCH 08/11] tests: acpi: update expected blobs, Igor Mammedov, 2022/10/17
- [PATCH 09/11] tests: acpi: pc/q35 whitelist DSDT before \_GPE cleanup, Igor Mammedov, 2022/10/17
- [PATCH 11/11] tests: acpi: update expected blobs, Igor Mammedov, 2022/10/17
- Re: [PATCH 00/11] x86: clean up ACPI PCI code part 2, Igor Mammedov, 2022/10/27