blob: 9a478437fda6c5f01ec6b27339580df28f228e69 [file] [log] [blame]
Angel Ponsc3f58f62020-04-05 15:46:41 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Aaron Durbin7837be62013-10-21 22:32:00 -05002
3#include <stdint.h>
Kyösti Mälkki4abc7312021-01-12 17:46:30 +02004#include <acpi/acpi_gnvs.h>
Aaron Durbin7837be62013-10-21 22:32:00 -05005#include <arch/io.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02006#include <device/pci_ops.h>
Aaron Durbin7837be62013-10-21 22:32:00 -05007#include <console/console.h>
8#include <cpu/x86/cache.h>
9#include <cpu/x86/smm.h>
Kyösti Mälkkie31ec292019-08-10 17:27:01 +030010#include <cpu/intel/em64t100_save_state.h>
Aaron Durbin7837be62013-10-21 22:32:00 -050011#include <device/pci_def.h>
12#include <elog.h>
Patrick Georgi546953c2014-11-29 10:38:17 +010013#include <halt.h>
Aaron Durbin20885712014-02-09 16:04:06 -060014#include <spi-generic.h>
Matt DeVillierbd6bdc52018-12-25 21:54:52 -060015#include <smmstore.h>
Aaron Durbin7837be62013-10-21 22:32:00 -050016
Marc Jones9afc5c02014-09-24 10:53:48 -060017#include <soc/iosf.h>
Julius Werner18ea2d32014-10-07 16:42:17 -070018#include <soc/pci_devs.h>
Angel Ponsb5320b22020-07-07 18:27:30 +020019#include <soc/pm.h>
Julius Werner18ea2d32014-10-07 16:42:17 -070020#include <soc/nvs.h>
Kyösti Mälkki4abc7312021-01-12 17:46:30 +020021#include <soc/device_nvs.h>
22
Aaron Durbin7837be62013-10-21 22:32:00 -050023void southbridge_smi_set_eos(void)
24{
25 enable_smi(EOS);
26}
27
Aaron Durbin7837be62013-10-21 22:32:00 -050028static void busmaster_disable_on_bus(int bus)
29{
30 int slot, func;
31 unsigned int val;
32 unsigned char hdr;
33
34 for (slot = 0; slot < 0x20; slot++) {
35 for (func = 0; func < 8; func++) {
Elyes HAOUAS6468d87d2020-04-29 10:22:42 +020036 u16 reg16;
Elyes HAOUASc8a649c2018-06-10 23:36:44 +020037 pci_devfn_t dev = PCI_DEV(bus, slot, func);
Aaron Durbin7837be62013-10-21 22:32:00 -050038
39 val = pci_read_config32(dev, PCI_VENDOR_ID);
40
41 if (val == 0xffffffff || val == 0x00000000 ||
42 val == 0x0000ffff || val == 0xffff0000)
43 continue;
44
45 /* Disable Bus Mastering for this one device */
Elyes HAOUAS6468d87d2020-04-29 10:22:42 +020046 reg16 = pci_read_config16(dev, PCI_COMMAND);
47 reg16 &= ~PCI_COMMAND_MASTER;
48 pci_write_config16(dev, PCI_COMMAND, reg16);
Aaron Durbin7837be62013-10-21 22:32:00 -050049
50 /* If this is a bridge, then follow it. */
51 hdr = pci_read_config8(dev, PCI_HEADER_TYPE);
52 hdr &= 0x7f;
Angel Pons5bcd35d2020-07-07 18:15:47 +020053 if (hdr == PCI_HEADER_TYPE_BRIDGE || hdr == PCI_HEADER_TYPE_CARDBUS) {
Aaron Durbin7837be62013-10-21 22:32:00 -050054 unsigned int buses;
55 buses = pci_read_config32(dev, PCI_PRIMARY_BUS);
56 busmaster_disable_on_bus((buses >> 8) & 0xff);
57 }
58 }
59 }
60}
61
62static void southbridge_smi_sleep(void)
63{
64 uint32_t reg32;
65 uint8_t slp_typ;
66 uint16_t pmbase = get_pmbase();
67
68 /* First, disable further SMIs */
69 disable_smi(SLP_SMI_EN);
70
71 /* Figure out SLP_TYP */
72 reg32 = inl(pmbase + PM1_CNT);
73 printk(BIOS_SPEW, "SMI#: SLP = 0x%08x\n", reg32);
Aaron Durbinf5cfaa32016-07-13 23:20:07 -050074 slp_typ = acpi_sleep_from_pm1(reg32);
Aaron Durbin7837be62013-10-21 22:32:00 -050075
76 /* Do any mainboard sleep handling */
Aaron Durbinf5cfaa32016-07-13 23:20:07 -050077 mainboard_smi_sleep(slp_typ);
Aaron Durbin7837be62013-10-21 22:32:00 -050078
Aaron Durbin7837be62013-10-21 22:32:00 -050079 /* Log S3, S4, and S5 entry */
Aaron Durbinf5cfaa32016-07-13 23:20:07 -050080 if (slp_typ >= ACPI_S3)
Kyösti Mälkki9dd1a122019-11-06 11:04:27 +020081 elog_gsmi_add_event_byte(ELOG_TYPE_ACPI_ENTER, slp_typ);
Aaron Durbin7837be62013-10-21 22:32:00 -050082
Angel Pons26b49cc2020-07-07 17:17:51 +020083 /* Next, do the deed. */
Aaron Durbin7837be62013-10-21 22:32:00 -050084 switch (slp_typ) {
Aaron Durbinf5cfaa32016-07-13 23:20:07 -050085 case ACPI_S0:
Aaron Durbin7837be62013-10-21 22:32:00 -050086 printk(BIOS_DEBUG, "SMI#: Entering S0 (On)\n");
87 break;
Aaron Durbinf5cfaa32016-07-13 23:20:07 -050088 case ACPI_S1:
Aaron Durbin7837be62013-10-21 22:32:00 -050089 printk(BIOS_DEBUG, "SMI#: Entering S1 (Assert STPCLK#)\n");
90 break;
Aaron Durbinf5cfaa32016-07-13 23:20:07 -050091 case ACPI_S3:
Aaron Durbin7837be62013-10-21 22:32:00 -050092 printk(BIOS_DEBUG, "SMI#: Entering S3 (Suspend-To-RAM)\n");
93
94 /* Invalidate the cache before going to S3 */
95 wbinvd();
96 break;
Aaron Durbinf5cfaa32016-07-13 23:20:07 -050097 case ACPI_S4:
Aaron Durbin7837be62013-10-21 22:32:00 -050098 printk(BIOS_DEBUG, "SMI#: Entering S4 (Suspend-To-Disk)\n");
99 break;
Aaron Durbinf5cfaa32016-07-13 23:20:07 -0500100 case ACPI_S5:
Aaron Durbin7837be62013-10-21 22:32:00 -0500101 printk(BIOS_DEBUG, "SMI#: Entering S5 (Soft Power off)\n");
102
103 /* Disable all GPE */
104 disable_all_gpe();
105
Angel Pons26b49cc2020-07-07 17:17:51 +0200106 /* Also iterates over all bridges on bus 0 */
Aaron Durbin7837be62013-10-21 22:32:00 -0500107 busmaster_disable_on_bus(0);
108 break;
109 default:
110 printk(BIOS_DEBUG, "SMI#: ERROR: SLP_TYP reserved\n");
111 break;
112 }
113
Angel Pons26b49cc2020-07-07 17:17:51 +0200114 /*
115 * Write back to the SLP register to cause the originally intended event again.
116 * We need to set BIT13 (SLP_EN) though to make the sleep happen.
Aaron Durbin7837be62013-10-21 22:32:00 -0500117 */
118 enable_pm1_control(SLP_EN);
119
120 /* Make sure to stop executing code here for S3/S4/S5 */
Aaron Durbinf5cfaa32016-07-13 23:20:07 -0500121 if (slp_typ >= ACPI_S3)
Patrick Georgi546953c2014-11-29 10:38:17 +0100122 halt();
Aaron Durbin7837be62013-10-21 22:32:00 -0500123
Angel Pons26b49cc2020-07-07 17:17:51 +0200124 /*
125 * In most sleep states, the code flow of this function ends at
Aaron Durbin7837be62013-10-21 22:32:00 -0500126 * the line above. However, if we entered sleep state S1 and wake
127 * up again, we will continue to execute code in this function.
128 */
129 reg32 = inl(pmbase + PM1_CNT);
130 if (reg32 & SCI_EN) {
131 /* The OS is not an ACPI OS, so we set the state to S0 */
132 disable_pm1_control(SLP_EN | SLP_TYP);
133 }
134}
135
136/*
Angel Pons26b49cc2020-07-07 17:17:51 +0200137 * Look for Synchronous IO SMI and use save state from that core in case
138 * we are not running on the same core that initiated the IO transaction.
Aaron Durbin7837be62013-10-21 22:32:00 -0500139 */
140static em64t100_smm_state_save_area_t *smi_apmc_find_state_save(uint8_t cmd)
141{
142 em64t100_smm_state_save_area_t *state;
143 int node;
144
145 /* Check all nodes looking for the one that issued the IO */
146 for (node = 0; node < CONFIG_MAX_CPUS; node++) {
147 state = smm_get_save_state(node);
148
149 /* Check for Synchronous IO (bit0==1) */
150 if (!(state->io_misc_info & (1 << 0)))
151 continue;
152
153 /* Make sure it was a write (bit4==0) */
154 if (state->io_misc_info & (1 << 4))
155 continue;
156
157 /* Check for APMC IO port */
158 if (((state->io_misc_info >> 16) & 0xff) != APM_CNT)
159 continue;
160
161 /* Check AX against the requested command */
162 if ((state->rax & 0xff) != cmd)
163 continue;
164
165 return state;
166 }
167
168 return NULL;
169}
170
Aaron Durbin7837be62013-10-21 22:32:00 -0500171static void southbridge_smi_gsmi(void)
172{
173 u32 *ret, *param;
174 uint8_t sub_command;
Angel Pons5bcd35d2020-07-07 18:15:47 +0200175 em64t100_smm_state_save_area_t *io_smi = smi_apmc_find_state_save(APM_CNT_ELOG_GSMI);
Aaron Durbin7837be62013-10-21 22:32:00 -0500176
177 if (!io_smi)
178 return;
179
180 /* Command and return value in EAX */
Angel Pons5bcd35d2020-07-07 18:15:47 +0200181 ret = (u32 *)&io_smi->rax;
Aaron Durbin7837be62013-10-21 22:32:00 -0500182 sub_command = (uint8_t)(*ret >> 8);
183
184 /* Parameter buffer in EBX */
Angel Pons5bcd35d2020-07-07 18:15:47 +0200185 param = (u32 *)&io_smi->rbx;
Aaron Durbin7837be62013-10-21 22:32:00 -0500186
187 /* drivers/elog/gsmi.c */
188 *ret = gsmi_exec(sub_command, param);
189}
Aaron Durbin20885712014-02-09 16:04:06 -0600190
Kyösti Mälkki4abc7312021-01-12 17:46:30 +0200191void *acpi_get_device_nvs(void)
192{
Kyösti Mälkki4bd91872021-03-16 19:02:26 +0200193 return (u8 *)gnvs + ALIGN_UP(sizeof(struct global_nvs), sizeof(uint64_t));
Kyösti Mälkki4abc7312021-01-12 17:46:30 +0200194}
195
Marc Jones9afc5c02014-09-24 10:53:48 -0600196/*
197 * soc_legacy: A payload (Depthcharge) has indicated that the
198 * legacy payload (SeaBIOS) is being loaded. Switch devices that are
199 * in ACPI mode to PCI mode so that non-ACPI drivers may work.
200 *
201 */
202static void soc_legacy(void)
203{
Kyösti Mälkki4abc7312021-01-12 17:46:30 +0200204 struct device_nvs *dev_nvs = acpi_get_device_nvs();
Marc Jones9afc5c02014-09-24 10:53:48 -0600205 u32 reg32;
206
207 /* LPE Device */
Kyösti Mälkki4abc7312021-01-12 17:46:30 +0200208 if (dev_nvs->lpe_en) {
Marc Jones9afc5c02014-09-24 10:53:48 -0600209 reg32 = iosf_port58_read(LPE_PCICFGCTR1);
210 reg32 &=
211 ~(LPE_PCICFGCTR1_PCI_CFG_DIS | LPE_PCICFGCTR1_ACPI_INT_EN);
212 iosf_port58_write(LPE_PCICFGCTR1, reg32);
213 }
214
215 /* SCC Devices */
216#define SCC_ACPI_MODE_DISABLE(name_) \
Kyösti Mälkki4abc7312021-01-12 17:46:30 +0200217 do { if (dev_nvs->scc_en[SCC_NVS_ ## name_]) { \
Marc Jones9afc5c02014-09-24 10:53:48 -0600218 reg32 = iosf_scc_read(SCC_ ## name_ ## _CTL); \
219 reg32 &= ~(SCC_CTL_PCI_CFG_DIS | SCC_CTL_ACPI_INT_EN); \
220 iosf_scc_write(SCC_ ## name_ ## _CTL, reg32); \
221 } } while (0)
222
223 SCC_ACPI_MODE_DISABLE(MMC);
224 SCC_ACPI_MODE_DISABLE(SD);
225 SCC_ACPI_MODE_DISABLE(SDIO);
226
227 /* LPSS Devices */
228#define LPSS_ACPI_MODE_DISABLE(name_) \
Kyösti Mälkki4abc7312021-01-12 17:46:30 +0200229 do { if (dev_nvs->lpss_en[LPSS_NVS_ ## name_]) { \
Marc Jones9afc5c02014-09-24 10:53:48 -0600230 reg32 = iosf_lpss_read(LPSS_ ## name_ ## _CTL); \
231 reg32 &= ~LPSS_CTL_PCI_CFG_DIS | ~LPSS_CTL_ACPI_INT_EN; \
232 iosf_lpss_write(LPSS_ ## name_ ## _CTL, reg32); \
233 } } while (0)
234
235 LPSS_ACPI_MODE_DISABLE(SIO_DMA1);
236 LPSS_ACPI_MODE_DISABLE(I2C1);
237 LPSS_ACPI_MODE_DISABLE(I2C2);
238 LPSS_ACPI_MODE_DISABLE(I2C3);
239 LPSS_ACPI_MODE_DISABLE(I2C4);
240 LPSS_ACPI_MODE_DISABLE(I2C5);
241 LPSS_ACPI_MODE_DISABLE(I2C6);
242 LPSS_ACPI_MODE_DISABLE(I2C7);
243 LPSS_ACPI_MODE_DISABLE(SIO_DMA2);
244 LPSS_ACPI_MODE_DISABLE(PWM1);
245 LPSS_ACPI_MODE_DISABLE(PWM2);
246 LPSS_ACPI_MODE_DISABLE(HSUART1);
247 LPSS_ACPI_MODE_DISABLE(HSUART2);
248 LPSS_ACPI_MODE_DISABLE(SPI);
249}
250
Matt DeVillierbd6bdc52018-12-25 21:54:52 -0600251static void southbridge_smi_store(void)
252{
253 u8 sub_command, ret;
Angel Pons5bcd35d2020-07-07 18:15:47 +0200254 em64t100_smm_state_save_area_t *io_smi = smi_apmc_find_state_save(APM_CNT_SMMSTORE);
Matt DeVillierbd6bdc52018-12-25 21:54:52 -0600255 uint32_t reg_ebx;
256
257 if (!io_smi)
258 return;
259 /* Command and return value in EAX */
260 sub_command = (io_smi->rax >> 8) & 0xff;
261
262 /* Parameter buffer in EBX */
263 reg_ebx = io_smi->rbx;
264
265 /* drivers/smmstore/smi.c */
266 ret = smmstore_exec(sub_command, (void *)reg_ebx);
267 io_smi->rax = ret;
268}
269
Aaron Durbin7837be62013-10-21 22:32:00 -0500270static void southbridge_smi_apmc(void)
271{
272 uint8_t reg8;
Aaron Durbin7837be62013-10-21 22:32:00 -0500273
Kyösti Mälkki9a1620f2021-01-08 13:27:33 +0200274 reg8 = apm_get_apmc();
Aaron Durbin7837be62013-10-21 22:32:00 -0500275 switch (reg8) {
Aaron Durbin7837be62013-10-21 22:32:00 -0500276 case APM_CNT_ACPI_DISABLE:
277 disable_pm1_control(SCI_EN);
Aaron Durbin7837be62013-10-21 22:32:00 -0500278 break;
279 case APM_CNT_ACPI_ENABLE:
280 enable_pm1_control(SCI_EN);
Aaron Durbin7837be62013-10-21 22:32:00 -0500281 break;
Patrick Georgid61839c2018-12-03 16:10:33 +0100282 case APM_CNT_ELOG_GSMI:
Kyösti Mälkki9dd1a122019-11-06 11:04:27 +0200283 if (CONFIG(ELOG_GSMI))
284 southbridge_smi_gsmi();
Aaron Durbin7837be62013-10-21 22:32:00 -0500285 break;
Marc Jones9afc5c02014-09-24 10:53:48 -0600286 case APM_CNT_LEGACY:
287 soc_legacy();
288 break;
Matt DeVillierbd6bdc52018-12-25 21:54:52 -0600289 case APM_CNT_SMMSTORE:
290 if (CONFIG(SMMSTORE))
291 southbridge_smi_store();
292 break;
Aaron Durbin7837be62013-10-21 22:32:00 -0500293 }
294
295 mainboard_smi_apmc(reg8);
296}
297
298static void southbridge_smi_pm1(void)
299{
300 uint16_t pm1_sts = clear_pm1_status();
301
Angel Pons26b49cc2020-07-07 17:17:51 +0200302 /* While OSPM is not active, poweroff immediately on a power button event */
Aaron Durbin7837be62013-10-21 22:32:00 -0500303 if (pm1_sts & PWRBTN_STS) {
Angel Pons26b49cc2020-07-07 17:17:51 +0200304 /* Power button pressed */
Kyösti Mälkki9dd1a122019-11-06 11:04:27 +0200305 elog_gsmi_add_event(ELOG_TYPE_POWER_BUTTON);
Aaron Durbin7837be62013-10-21 22:32:00 -0500306 disable_pm1_control(-1UL);
Aaron Durbin9f83e872013-11-11 14:45:27 -0600307 enable_pm1_control(SLP_EN | (SLP_TYP_S5 << SLP_TYP_SHIFT));
Aaron Durbin7837be62013-10-21 22:32:00 -0500308 }
309}
310
311static void southbridge_smi_gpe0(void)
312{
313 clear_gpe_status();
314}
315
316static void southbridge_smi_tco(void)
317{
318 uint32_t tco_sts = clear_tco_status();
319
320 /* Any TCO event? */
321 if (!tco_sts)
322 return;
323
324 if (tco_sts & TCO_TIMEOUT) { /* TIMEOUT */
325 /* Handle TCO timeout */
326 printk(BIOS_DEBUG, "TCO Timeout.\n");
327 }
328}
329
330static void southbridge_smi_periodic(void)
331{
332 uint32_t reg32;
333
334 reg32 = inl(get_pmbase() + SMI_EN);
335
336 /* Are periodic SMIs enabled? */
337 if ((reg32 & PERIODIC_EN) == 0)
338 return;
339
340 printk(BIOS_DEBUG, "Periodic SMI.\n");
341}
342
343typedef void (*smi_handler_t)(void);
344
345static const smi_handler_t southbridge_smi[32] = {
Angel Pons26b49cc2020-07-07 17:17:51 +0200346 NULL, /* [0] reserved */
347 NULL, /* [1] reserved */
348 NULL, /* [2] BIOS_STS */
349 NULL, /* [3] LEGACY_USB_STS */
350 southbridge_smi_sleep, /* [4] SLP_SMI_STS */
351 southbridge_smi_apmc, /* [5] APM_STS */
352 NULL, /* [6] SWSMI_TMR_STS */
353 NULL, /* [7] reserved */
354 southbridge_smi_pm1, /* [8] PM1_STS */
355 southbridge_smi_gpe0, /* [9] GPE0_STS */
356 NULL, /* [10] reserved */
357 NULL, /* [11] reserved */
358 NULL, /* [12] reserved */
359 southbridge_smi_tco, /* [13] TCO_STS */
360 southbridge_smi_periodic, /* [14] PERIODIC_STS */
361 NULL, /* [15] SERIRQ_SMI_STS */
362 NULL, /* [16] SMBUS_SMI_STS */
363 NULL, /* [17] LEGACY_USB2_STS */
364 NULL, /* [18] INTEL_USB2_STS */
365 NULL, /* [19] reserved */
366 NULL, /* [20] PCI_EXP_SMI_STS */
367 NULL, /* [21] reserved */
368 NULL, /* [22] reserved */
369 NULL, /* [23] reserved */
370 NULL, /* [24] reserved */
371 NULL, /* [25] reserved */
372 NULL, /* [26] SPI_STS */
373 NULL, /* [27] reserved */
374 NULL, /* [28] PUNIT */
375 NULL, /* [29] GUNIT */
376 NULL, /* [30] reserved */
377 NULL /* [31] reserved */
Aaron Durbin7837be62013-10-21 22:32:00 -0500378};
379
380void southbridge_smi_handler(void)
381{
382 int i;
383 uint32_t smi_sts;
384
Angel Pons26b49cc2020-07-07 17:17:51 +0200385 /*
386 * We need to clear the SMI status registers, or we won't see what's
Aaron Durbin7837be62013-10-21 22:32:00 -0500387 * happening in the following calls.
388 */
389 smi_sts = clear_smi_status();
390
391 /* Call SMI sub handler for each of the status bits */
392 for (i = 0; i < ARRAY_SIZE(southbridge_smi); i++) {
393 if (!(smi_sts & (1 << i)))
394 continue;
395
396 if (southbridge_smi[i] != NULL) {
397 southbridge_smi[i]();
398 } else {
399 printk(BIOS_DEBUG,
Angel Pons5bcd35d2020-07-07 18:15:47 +0200400 "SMI_STS[%d] occurred, but no handler available.\n", i);
Aaron Durbin7837be62013-10-21 22:32:00 -0500401 }
402 }
Aaron Durbin9f83e872013-11-11 14:45:27 -0600403
Angel Pons26b49cc2020-07-07 17:17:51 +0200404 /*
405 * The GPIO SMI events do not have a status bit in SMI_STS. Therefore,
406 * these events need to be cleared and checked unconditionally.
407 */
Aaron Durbin9f83e872013-11-11 14:45:27 -0600408 mainboard_smi_gpi(clear_alt_status());
Aaron Durbin7837be62013-10-21 22:32:00 -0500409}