blob: b9f28dedc47716252a0cb5f6059f33dd80f511ca [file] [log] [blame]
Ravi Sarawadi91ffac82022-05-07 16:37:09 -07001/* SPDX-License-Identifier: GPL-2.0-only */
2
3/*
4 * Helper functions for dealing with power management registers
5 * and the differences between PCH variants.
6 */
7
8#define __SIMPLE_DEVICE__
9
10#include <acpi/acpi_pm.h>
11#include <device/mmio.h>
12#include <device/device.h>
13#include <device/pci.h>
14#include <device/pci_def.h>
15#include <console/console.h>
16#include <intelblocks/pmclib.h>
17#include <intelblocks/rtc.h>
18#include <intelblocks/tco.h>
19#include <security/vboot/vbnv.h>
20#include <soc/espi.h>
21#include <soc/gpe.h>
22#include <soc/gpio.h>
23#include <soc/iomap.h>
24#include <soc/pci_devs.h>
25#include <soc/pm.h>
26#include <soc/smbus.h>
27#include <soc/soc_chip.h>
28#include <types.h>
29
30/*
31 * SMI
32 */
33const char *const *soc_smi_sts_array(size_t *a)
34{
35 static const char *const smi_sts_bits[] = {
36 [BIOS_STS_BIT] = "BIOS",
37 [LEGACY_USB_STS_BIT] = "LEGACY_USB",
38 [SMI_ON_SLP_EN_STS_BIT] = "SLP_SMI",
39 [APM_STS_BIT] = "APM",
40 [SWSMI_TMR_STS_BIT] = "SWSMI_TMR",
41 [PM1_STS_BIT] = "PM1",
42 [GPE0_STS_BIT] = "GPE0",
43 [GPIO_STS_BIT] = "GPI",
44 [MCSMI_STS_BIT] = "MCSMI",
45 [DEVMON_STS_BIT] = "DEVMON",
46 [TCO_STS_BIT] = "TCO",
47 [PERIODIC_STS_BIT] = "PERIODIC",
48 [SERIRQ_SMI_STS_BIT] = "SERIRQ_SMI",
49 [SMBUS_SMI_STS_BIT] = "SMBUS_SMI",
50 [PCI_EXP_SMI_STS_BIT] = "PCI_EXP_SMI",
51 [MONITOR_STS_BIT] = "MONITOR",
52 [SPI_SMI_STS_BIT] = "SPI",
53 [GPIO_UNLOCK_SMI_STS_BIT] = "GPIO_UNLOCK",
54 [ESPI_SMI_STS_BIT] = "ESPI_SMI",
55 };
56
57 *a = ARRAY_SIZE(smi_sts_bits);
58 return smi_sts_bits;
59}
60
61/*
62 * TCO
63 */
64const char *const *soc_tco_sts_array(size_t *a)
65{
66 static const char *const tco_sts_bits[] = {
67 [0] = "NMI2SMI",
68 [1] = "SW_TCO",
69 [2] = "TCO_INT",
70 [3] = "TIMEOUT",
71 [7] = "NEWCENTURY",
72 [8] = "BIOSWR",
73 [9] = "DMISCI",
74 [10] = "DMISMI",
75 [12] = "DMISERR",
76 [13] = "SLVSEL",
77 [16] = "INTRD_DET",
78 [17] = "SECOND_TO",
79 [18] = "BOOT",
80 [20] = "SMLINK_SLV"
81 };
82
83 *a = ARRAY_SIZE(tco_sts_bits);
84 return tco_sts_bits;
85}
86
87/*
88 * GPE0
89 */
90const char *const *soc_std_gpe_sts_array(size_t *a)
91{
92 static const char *const gpe_sts_bits[] = {
93 [1] = "HOTPLUG",
94 [2] = "SWGPE",
95 [6] = "TCO_SCI",
96 [7] = "SMB_WAK",
97 [9] = "PCI_EXP",
98 [10] = "BATLOW",
99 [11] = "PME",
100 [12] = "ME",
101 [13] = "PME_B0",
102 [14] = "eSPI",
103 [15] = "GPIO Tier-2",
104 [16] = "LAN_WAKE",
105 [18] = "WADT"
106 };
107
108 *a = ARRAY_SIZE(gpe_sts_bits);
109 return gpe_sts_bits;
110}
111
112void pmc_set_disb(void)
113{
114 /* Set the DISB after DRAM init */
115 uint8_t disb_val;
116 /* Only care about bits [23:16] of register GEN_PMCON_A */
117 uint8_t *addr = (uint8_t *)(pmc_mmio_regs() + GEN_PMCON_A + 2);
118
119 disb_val = read8(addr);
120 disb_val |= (DISB >> 16);
121
122 /* Don't clear bits that are write-1-to-clear */
123 disb_val &= ~((MS4V | SUS_PWR_FLR) >> 16);
124 write8(addr, disb_val);
125}
126
127/*
128 * PMC controller gets hidden from PCI bus
129 * during FSP-Silicon init call. Hence PWRMBASE
130 * can't be accessible using PCI configuration space
131 * read/write.
132 */
133uint8_t *pmc_mmio_regs(void)
134{
135 return (void *)(uintptr_t)PCH_PWRM_BASE_ADDRESS;
136}
137
138uintptr_t soc_read_pmc_base(void)
139{
140 return (uintptr_t)pmc_mmio_regs();
141}
142
143uint32_t *soc_pmc_etr_addr(void)
144{
145 return (uint32_t *)(soc_read_pmc_base() + ETR);
146}
147
148void soc_get_gpi_gpe_configs(uint8_t *dw0, uint8_t *dw1, uint8_t *dw2)
149{
150 DEVTREE_CONST struct soc_intel_meteorlake_config *config;
151
152 config = config_of_soc();
153
154 /* Assign to out variable */
155 *dw0 = config->pmc_gpe0_dw0;
156 *dw1 = config->pmc_gpe0_dw1;
157 *dw2 = config->pmc_gpe0_dw2;
158}
159
160static int rtc_failed(uint32_t gen_pmcon_b)
161{
162 return !!(gen_pmcon_b & RTC_BATTERY_DEAD);
163}
164
165int soc_get_rtc_failed(void)
166{
167 const struct chipset_power_state *ps;
168
169 if (acpi_pm_state_for_rtc(&ps) < 0)
170 return 1;
171
172 return rtc_failed(ps->gen_pmcon_b);
173}
174
175int vbnv_cmos_failed(void)
176{
177 return rtc_failed(read32(pmc_mmio_regs() + GEN_PMCON_B));
178}
179
180static inline int deep_s3_enabled(void)
181{
182 uint32_t deep_s3_pol;
183
184 deep_s3_pol = read32(pmc_mmio_regs() + S3_PWRGATE_POL);
185 return !!(deep_s3_pol & (S3DC_GATE_SUS | S3AC_GATE_SUS));
186}
187
188/* Return 0, 3, or 5 to indicate the previous sleep state. */
189int soc_prev_sleep_state(const struct chipset_power_state *ps, int prev_sleep_state)
190{
191 /*
192 * Check for any power failure to determine if this a wake from
193 * S5 because the PCH does not set the WAK_STS bit when waking
194 * from a true G3 state.
195 */
196 if (ps->gen_pmcon_a & (PWR_FLR | SUS_PWR_FLR))
197 prev_sleep_state = ACPI_S5;
198
199 /*
200 * If waking from S3 determine if deep S3 is enabled. If not,
201 * need to check both deep sleep well and normal suspend well.
202 * Otherwise just check deep sleep well.
203 */
204 if (prev_sleep_state == ACPI_S3) {
205 /* PWR_FLR represents deep sleep power well loss. */
206 uint32_t mask = PWR_FLR;
207
208 /* If deep s3 isn't enabled check the suspend well too. */
209 if (!deep_s3_enabled())
210 mask |= SUS_PWR_FLR;
211
212 if (ps->gen_pmcon_a & mask)
213 prev_sleep_state = ACPI_S5;
214 }
215
216 return prev_sleep_state;
217}
218
219void soc_fill_power_state(struct chipset_power_state *ps)
220{
221 uint8_t *pmc;
222
223 ps->tco1_sts = tco_read_reg(TCO1_STS);
224 ps->tco2_sts = tco_read_reg(TCO2_STS);
225
226 printk(BIOS_DEBUG, "TCO_STS: %04x %04x\n", ps->tco1_sts, ps->tco2_sts);
227
228 pmc = pmc_mmio_regs();
229 ps->gen_pmcon_a = read32(pmc + GEN_PMCON_A);
230 ps->gen_pmcon_b = read32(pmc + GEN_PMCON_B);
231 ps->gblrst_cause[0] = read32(pmc + GBLRST_CAUSE0);
232 ps->gblrst_cause[1] = read32(pmc + GBLRST_CAUSE1);
233 ps->hpr_cause0 = read32(pmc + HPR_CAUSE0);
234
235 printk(BIOS_DEBUG, "GEN_PMCON: %08x %08x\n",
236 ps->gen_pmcon_a, ps->gen_pmcon_b);
237
238 printk(BIOS_DEBUG, "GBLRST_CAUSE: %08x %08x\n",
239 ps->gblrst_cause[0], ps->gblrst_cause[1]);
240
241 printk(BIOS_DEBUG, "HPR_CAUSE0: %08x\n", ps->hpr_cause0);
242}
243
244/* STM Support */
245uint16_t get_pmbase(void)
246{
247 return (uint16_t) ACPI_BASE_ADDRESS;
248}
249
250/*
251 * Set which power state system will be after reapplying
252 * the power (from G3 State)
253 */
254void pmc_soc_set_afterg3_en(const bool on)
255{
256 uint8_t reg8;
257 uint8_t *const pmcbase = pmc_mmio_regs();
258
259 reg8 = read8(pmcbase + GEN_PMCON_A);
260 if (on)
261 reg8 &= ~SLEEP_AFTER_POWER_FAIL;
262 else
263 reg8 |= SLEEP_AFTER_POWER_FAIL;
264 write8(pmcbase + GEN_PMCON_A, reg8);
265}