1 /* SPDX-License-Identifier: GPL-2.0-only */
4 * Helper functions for dealing with power management registers
5 * and the differences between PCH variants.
8 #define __SIMPLE_DEVICE__
10 #include <console/console.h>
11 #include <device/pci.h>
12 #include <intelblocks/pmclib.h>
13 #include <intelblocks/rtc.h>
14 #include <soc/pci_devs.h>
23 const char *const *soc_smi_sts_array(size_t *smi_arr
)
25 static const char *const smi_sts_bits
[] = {
50 *smi_arr
= ARRAY_SIZE(smi_sts_bits
);
58 const char *const *soc_tco_sts_array(size_t *tco_arr
)
60 static const char *const tco_sts_bits
[] = {
76 *tco_arr
= ARRAY_SIZE(tco_sts_bits
);
84 const char *const *soc_std_gpe_sts_array(size_t *gpe_arr
)
86 static const char *const gpe_sts_bits
[] = {
89 *gpe_arr
= ARRAY_SIZE(gpe_sts_bits
);
93 void soc_get_gpi_gpe_configs(uint8_t *dw0
, uint8_t *dw1
, uint8_t *dw2
)
95 /* No functionality for this yet */
98 /* Return 0, 3, or 5 to indicate the previous sleep state. */
99 int soc_prev_sleep_state(const struct chipset_power_state
*ps
, int prev_sleep_state
)
102 * Check for any power failure to determine if this a wake from
103 * S5 because the PCH does not set the WAK_STS bit when waking
104 * from a true G3 state.
106 if (!(ps
->pm1_sts
& WAK_STS
) &&
107 (ps
->gen_pmcon_b
& (PWR_FLR
| SUS_PWR_FLR
)))
108 prev_sleep_state
= ACPI_S5
;
110 return prev_sleep_state
;
114 uint16_t get_pmbase(void)
116 return ACPI_BASE_ADDRESS
;