aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2021-01-21 16:05:26 +0200
committerFelix Held <felix-coreboot@felixheld.de>2021-01-23 20:31:09 +0000
commit2787237dd52550b5d7e1dc3dabcf380126ff804c (patch)
tree33cbe7d7d77d20fa4c142c8af7a5ffb82d78cd56 /src/include
parent10f7f997ad439681b959962682cafc1993677c56 (diff)
ACPI: Add helpers for CBMEM_ID_POWER_STATE
Create uniform logging for the (unlikely) case of a CBMEM entry disappearing. Change-Id: I7c5414a03d869423c8ae5192a990fde5f9582f2d Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/49817 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/include')
-rw-r--r--src/include/acpi/acpi_pm.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/include/acpi/acpi_pm.h b/src/include/acpi/acpi_pm.h
new file mode 100644
index 0000000000..48342a3ac8
--- /dev/null
+++ b/src/include/acpi/acpi_pm.h
@@ -0,0 +1,12 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+
+#ifndef ACPI_PM_H
+#define ACPI_PM_H
+
+struct chipset_power_state;
+struct chipset_power_state *acpi_get_pm_state(void);
+int acpi_pm_state_for_elog(const struct chipset_power_state **ps);
+int acpi_pm_state_for_rtc(const struct chipset_power_state **ps);
+int acpi_pm_state_for_wake(const struct chipset_power_state **ps);
+
+#endif