diff options
Diffstat (limited to 'src/soc/intel/broadwell')
-rw-r--r-- | src/soc/intel/broadwell/pch/elog.c | 9 | ||||
-rw-r--r-- | src/soc/intel/broadwell/ramstage.c | 4 |
2 files changed, 5 insertions, 8 deletions
diff --git a/src/soc/intel/broadwell/pch/elog.c b/src/soc/intel/broadwell/pch/elog.c index 1d4d773fcd..3f625560dc 100644 --- a/src/soc/intel/broadwell/pch/elog.c +++ b/src/soc/intel/broadwell/pch/elog.c @@ -1,7 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +#include <acpi/acpi_pm.h> #include <bootstate.h> -#include <cbmem.h> #include <console/console.h> #include <stdint.h> #include <elog.h> @@ -106,13 +106,10 @@ static void pch_log_power_and_resets(const struct chipset_power_state *ps) static void pch_log_state(void *unused) { - struct chipset_power_state *ps = cbmem_find(CBMEM_ID_POWER_STATE); + const struct chipset_power_state *ps; - if (ps == NULL) { - printk(BIOS_ERR, "Not logging power state information. " - "Power state not found in cbmem.\n"); + if (acpi_pm_state_for_elog(&ps) < 0) return; - } /* Power and Reset */ pch_log_power_and_resets(ps); diff --git a/src/soc/intel/broadwell/ramstage.c b/src/soc/intel/broadwell/ramstage.c index 418e469828..93bc01dda0 100644 --- a/src/soc/intel/broadwell/ramstage.c +++ b/src/soc/intel/broadwell/ramstage.c @@ -2,7 +2,7 @@ #include <acpi/acpi.h> #include <acpi/acpi_gnvs.h> -#include <cbmem.h> +#include <acpi/acpi_pm.h> #include <console/console.h> #include <device/device.h> #include <string.h> @@ -14,7 +14,7 @@ /* Save bit index for PM1_STS and GPE_STS for ACPI _SWS */ static void save_acpi_wake_source(void) { - struct chipset_power_state *ps = cbmem_find(CBMEM_ID_POWER_STATE); + struct chipset_power_state *ps = acpi_get_pm_state(); struct global_nvs *gnvs = acpi_get_gnvs(); uint16_t pm1; int gpe_reg; |