diff options
author | Fabio Aiuto <fabioaiuto83@gmail.com> | 2022-09-11 12:25:13 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-09-27 14:19:01 +0000 |
commit | fdcf698a89ebfe2316fc6ef2f94df7c8203a7f4b (patch) | |
tree | e88b014b82bcf76b546c7c1010d208ee337bf494 /src/soc/intel/broadwell | |
parent | e6d6d3620e20f6eddf92f71e30a7e0c47d403489 (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/soc/intel/broadwell')
-rw-r--r-- | src/soc/intel/broadwell/pch/elog.c | 2 | ||||
-rw-r--r-- | src/soc/intel/broadwell/pch/ramstage.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/intel/broadwell/pch/elog.c b/src/soc/intel/broadwell/pch/elog.c index 789b4e84a7..e3e8c0cab1 100644 --- a/src/soc/intel/broadwell/pch/elog.c +++ b/src/soc/intel/broadwell/pch/elog.c @@ -107,7 +107,7 @@ static void pch_log_state(void *unused) { const struct chipset_power_state *ps; - if (acpi_pm_state_for_elog(&ps) < 0) + if (acpi_fetch_pm_state(&ps, PS_CLAIMER_ELOG) < 0) return; /* Power and Reset */ diff --git a/src/soc/intel/broadwell/pch/ramstage.c b/src/soc/intel/broadwell/pch/ramstage.c index 9794d4e08a..027b3bb1c9 100644 --- a/src/soc/intel/broadwell/pch/ramstage.c +++ b/src/soc/intel/broadwell/pch/ramstage.c @@ -51,7 +51,7 @@ static void acpi_save_wake_source(void *unused) if (acpi_reset_gnvs_for_wake(&gnvs) < 0) return; - if (acpi_pm_state_for_wake(&ps) < 0) + if (acpi_fetch_pm_state(&ps, PS_CLAIMER_WAKE) < 0) return; pm_fill_gnvs(gnvs, ps); |