aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorFabio Aiuto <fabioaiuto83@gmail.com>2022-09-11 12:25:13 +0200
committerFelix Held <felix-coreboot@felixheld.de>2022-09-27 14:19:01 +0000
commitfdcf698a89ebfe2316fc6ef2f94df7c8203a7f4b (patch)
treee88b014b82bcf76b546c7c1010d208ee337bf494 /src/include
parente6d6d3620e20f6eddf92f71e30a7e0c47d403489 (diff)
acpi/acpi_pm.c: refactor acpi_pm_state_for_* functions
Use just one function to get the chipset powerstate and add an argument to specify the powerstate claimer {RTC,ELOG,WAKE} and adjust the failure log accordingly. TEST: compile tested and qemu emulation successfully run Signed-off-by: Fabio Aiuto <fabioaiuto83@gmail.com> Change-Id: I8addc0b05f9e360afc52091c4bb731341d7213cf Reviewed-on: https://review.coreboot.org/c/coreboot/+/67618 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> 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, 9 insertions, 3 deletions
diff --git a/src/include/acpi/acpi_pm.h b/src/include/acpi/acpi_pm.h
index 48342a3ac8..584265edde 100644
--- a/src/include/acpi/acpi_pm.h
+++ b/src/include/acpi/acpi_pm.h
@@ -3,10 +3,16 @@
#ifndef ACPI_PM_H
#define ACPI_PM_H
+enum power_state_claimer {
+ PS_CLAIMER_ELOG,
+ PS_CLAIMER_RTC,
+ PS_CLAIMER_WAKE,
+ PS_CLAIMER_MAX /* Not a valid value, needs to be last element */
+};
+
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);
+int acpi_fetch_pm_state(const struct chipset_power_state **ps,
+ enum power_state_claimer ps_claimer);
#endif