summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/jasperlake/pmutil.c
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/soc/intel/jasperlake/pmutil.c
parente6d6d3620e20f6eddf92f71e30a7e0c47d403489 (diff)
downloadcoreboot-fdcf698a89ebfe2316fc6ef2f94df7c8203a7f4b.tar.gz
coreboot-fdcf698a89ebfe2316fc6ef2f94df7c8203a7f4b.tar.bz2
coreboot-fdcf698a89ebfe2316fc6ef2f94df7c8203a7f4b.zip
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/jasperlake/pmutil.c')
-rw-r--r--src/soc/intel/jasperlake/pmutil.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/jasperlake/pmutil.c b/src/soc/intel/jasperlake/pmutil.c
index fb1aecd7fc58..f2a4c90d6795 100644
--- a/src/soc/intel/jasperlake/pmutil.c
+++ b/src/soc/intel/jasperlake/pmutil.c
@@ -184,7 +184,7 @@ int soc_get_rtc_failed(void)
{
const struct chipset_power_state *ps;
- if (acpi_pm_state_for_rtc(&ps) < 0)
+ if (acpi_fetch_pm_state(&ps, PS_CLAIMER_RTC) < 0)
return 1;
return check_rtc_failed(ps->gen_pmcon_b);