blob: db034fc24529f0fc4d3160e031dc4e0bfdb128e5 [file] [log] [blame]
Angel Pons182dbde2020-04-02 23:49:05 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Arthur Heymansa0508172018-01-25 11:30:22 +01002
3#include <types.h>
4#include <arch/io.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02005#include <device/pci_ops.h>
Furquan Shaikh76cedd22020-05-02 10:24:23 -07006#include <acpi/acpi.h>
Arthur Heymansa0508172018-01-25 11:30:22 +01007#include <console/console.h>
8#include <cpu/x86/cache.h>
9#include <device/pci_def.h>
10#include <cpu/x86/smm.h>
Kyösti Mälkkie31ec292019-08-10 17:27:01 +030011#include <cpu/intel/em64t101_save_state.h>
Arthur Heymansa0508172018-01-25 11:30:22 +010012#include <elog.h>
13#include <halt.h>
Kyösti Mälkkicbf95712020-01-05 08:05:45 +020014#include <option.h>
Patrick Rudolphed3242e2018-06-29 10:34:37 +020015#include <southbridge/intel/common/pmbase.h>
Arthur Heymans4c804252018-12-03 01:28:18 +010016#include <smmstore.h>
Patrick Rudolphed3242e2018-06-29 10:34:37 +020017
Arthur Heymansa0508172018-01-25 11:30:22 +010018#include "pmutil.h"
19
Arthur Heymansa0508172018-01-25 11:30:22 +010020u16 get_pmbase(void)
21{
Patrick Rudolphed3242e2018-06-29 10:34:37 +020022 return lpc_get_pmbase();
Arthur Heymansa0508172018-01-25 11:30:22 +010023}
24
Arthur Heymansa0508172018-01-25 11:30:22 +010025void gpi_route_interrupt(u8 gpi, u8 mode)
26{
27 u32 gpi_rout;
28 if (gpi >= 16)
29 return;
30
31 alt_gpi_mask(1 << gpi, 0);
32 gpe0_mask(1 << (gpi+16), 0);
33
34 gpi_rout = pci_read_config32(PCI_DEV(0, 0x1f, 0), D31F0_GPIO_ROUT);
35 gpi_rout &= ~(3 << (2 * gpi));
36 gpi_rout |= ((mode & 3) << (2 * gpi));
37 pci_write_config32(PCI_DEV(0, 0x1f, 0), D31F0_GPIO_ROUT, gpi_rout);
38
39 if (mode == GPI_IS_SCI)
40 gpe0_mask(0, 1 << (gpi+16));
41 else if (mode == GPI_IS_SMI)
42 alt_gpi_mask(0, 1 << gpi);
43}
44
45/**
46 * @brief Set the EOS bit
47 */
48void southbridge_smi_set_eos(void)
49{
Patrick Rudolphed3242e2018-06-29 10:34:37 +020050 write_pmbase8(SMI_EN, read_pmbase8(SMI_EN) | EOS);
Arthur Heymansa0508172018-01-25 11:30:22 +010051}
52
53static void busmaster_disable_on_bus(int bus)
54{
55 int slot, func;
56 unsigned int val;
57 unsigned char hdr;
58
59 for (slot = 0; slot < 0x20; slot++) {
60 for (func = 0; func < 8; func++) {
Elyes HAOUAS804a3402020-04-27 05:25:06 +020061 u16 reg16;
Arthur Heymansa0508172018-01-25 11:30:22 +010062 pci_devfn_t dev = PCI_DEV(bus, slot, func);
63
64 val = pci_read_config32(dev, PCI_VENDOR_ID);
65
66 if (val == 0xffffffff || val == 0x00000000 ||
67 val == 0x0000ffff || val == 0xffff0000)
68 continue;
69
70 /* Disable Bus Mastering for this one device */
Elyes HAOUAS804a3402020-04-27 05:25:06 +020071 reg16 = pci_read_config16(dev, PCI_COMMAND);
72 reg16 &= ~PCI_COMMAND_MASTER;
73 pci_write_config16(dev, PCI_COMMAND, reg16);
Arthur Heymansa0508172018-01-25 11:30:22 +010074
75 /* If this is a bridge, then follow it. */
76 hdr = pci_read_config8(dev, PCI_HEADER_TYPE);
77 hdr &= 0x7f;
78 if (hdr == PCI_HEADER_TYPE_BRIDGE ||
79 hdr == PCI_HEADER_TYPE_CARDBUS) {
80 unsigned int buses;
81 buses = pci_read_config32(dev, PCI_PRIMARY_BUS);
82 busmaster_disable_on_bus((buses >> 8) & 0xff);
83 }
84 }
85 }
86}
87
Aaron Durbin64031672018-04-21 14:45:32 -060088__weak void southbridge_gate_memory_reset(void)
Arthur Heymansa0508172018-01-25 11:30:22 +010089{
90}
91
Aaron Durbin64031672018-04-21 14:45:32 -060092__weak void southbridge_smm_xhci_sleep(u8 slp_type)
Arthur Heymansa0508172018-01-25 11:30:22 +010093{
94}
95
Kyösti Mälkki3c181862021-01-08 19:01:30 +020096static int power_on_after_fail(void)
Arthur Heymansa0508172018-01-25 11:30:22 +010097{
Kyösti Mälkki3c181862021-01-08 19:01:30 +020098 /* save and recover RTC port values */
Arthur Heymansa0508172018-01-25 11:30:22 +010099 u8 tmp70, tmp72;
100 tmp70 = inb(0x70);
101 tmp72 = inb(0x72);
Angel Pons62719a32021-04-19 13:15:28 +0200102 const int s5pwr = get_int_option("power_on_after_fail",
103 CONFIG_MAINBOARD_POWER_FAILURE_STATE);
Arthur Heymansa0508172018-01-25 11:30:22 +0100104 outb(tmp70, 0x70);
105 outb(tmp72, 0x72);
106
Kyösti Mälkki3c181862021-01-08 19:01:30 +0200107 /* For "KEEP", switch to "OFF" - KEEP is software emulated. */
108 return (s5pwr == MAINBOARD_POWER_ON);
109}
110
111static void southbridge_smi_sleep(void)
112{
113 u32 reg32;
114 u8 slp_typ;
115
Arthur Heymansa0508172018-01-25 11:30:22 +0100116 /* First, disable further SMIs */
Patrick Rudolphed3242e2018-06-29 10:34:37 +0200117 write_pmbase8(SMI_EN, read_pmbase8(SMI_EN) & ~SLP_SMI_EN);
Arthur Heymansa0508172018-01-25 11:30:22 +0100118
119 /* Figure out SLP_TYP */
Patrick Rudolphed3242e2018-06-29 10:34:37 +0200120 reg32 = read_pmbase32(PM1_CNT);
Arthur Heymansa0508172018-01-25 11:30:22 +0100121 slp_typ = acpi_sleep_from_pm1(reg32);
122
Kyösti Mälkkic1d524b2021-01-08 16:41:02 +0200123 printk(BIOS_SPEW, "SMI#: SLP = 0x%08x, TYPE = 0x%02x\n", reg32, slp_typ);
124
Arthur Heymansa0508172018-01-25 11:30:22 +0100125 southbridge_smm_xhci_sleep(slp_typ);
126
127 /* Do any mainboard sleep handling */
128 mainboard_smi_sleep(slp_typ);
129
Arthur Heymansa0508172018-01-25 11:30:22 +0100130 /* Log S3, S4, and S5 entry */
131 if (slp_typ >= ACPI_S3)
Kyösti Mälkki9dd1a122019-11-06 11:04:27 +0200132 elog_gsmi_add_event_byte(ELOG_TYPE_ACPI_ENTER, slp_typ);
Arthur Heymansa0508172018-01-25 11:30:22 +0100133
134 /* Next, do the deed.
135 */
136
137 switch (slp_typ) {
138 case ACPI_S0:
139 printk(BIOS_DEBUG, "SMI#: Entering S0 (On)\n");
140 break;
141 case ACPI_S1:
142 printk(BIOS_DEBUG, "SMI#: Entering S1 (Assert STPCLK#)\n");
143 break;
144 case ACPI_S3:
145 printk(BIOS_DEBUG, "SMI#: Entering S3 (Suspend-To-RAM)\n");
146
147 /* Gate memory reset */
148 southbridge_gate_memory_reset();
149
150 /* Invalidate the cache before going to S3 */
151 wbinvd();
152 break;
153 case ACPI_S4:
154 printk(BIOS_DEBUG, "SMI#: Entering S4 (Suspend-To-Disk)\n");
155 break;
156 case ACPI_S5:
157 printk(BIOS_DEBUG, "SMI#: Entering S5 (Soft Power off)\n");
158
Patrick Rudolphed3242e2018-06-29 10:34:37 +0200159 write_pmbase32(GPE0_EN, 0);
Arthur Heymansa0508172018-01-25 11:30:22 +0100160
Kyösti Mälkki3c181862021-01-08 19:01:30 +0200161 /* Always set the flag in case CMOS was changed on runtime. */
162 if (power_on_after_fail())
163 pci_and_config8(PCI_DEV(0, 0x1f, 0), D31F0_GEN_PMCON_3, ~1);
164 else
165 pci_or_config8(PCI_DEV(0, 0x1f, 0), D31F0_GEN_PMCON_3, 1);
Arthur Heymansa0508172018-01-25 11:30:22 +0100166
167 /* also iterates over all bridges on bus 0 */
168 busmaster_disable_on_bus(0);
169 break;
170 default: printk(BIOS_DEBUG, "SMI#: ERROR: SLP_TYP reserved\n"); break;
171 }
172
173 /* Write back to the SLP register to cause the originally intended
174 * event again. We need to set BIT13 (SLP_EN) though to make the
175 * sleep happen.
176 */
Patrick Rudolphed3242e2018-06-29 10:34:37 +0200177 write_pmbase32(PM1_CNT, reg32 | SLP_EN);
Arthur Heymansa0508172018-01-25 11:30:22 +0100178
179 /* Make sure to stop executing code here for S3/S4/S5 */
180 if (slp_typ >= ACPI_S3)
181 halt();
182
183 /* In most sleep states, the code flow of this function ends at
184 * the line above. However, if we entered sleep state S1 and wake
185 * up again, we will continue to execute code in this function.
186 */
Patrick Rudolphed3242e2018-06-29 10:34:37 +0200187 reg32 = read_pmbase32(PM1_CNT);
Arthur Heymansa0508172018-01-25 11:30:22 +0100188 if (reg32 & SCI_EN) {
189 /* The OS is not an ACPI OS, so we set the state to S0 */
190 reg32 &= ~(SLP_EN | SLP_TYP);
Patrick Rudolphed3242e2018-06-29 10:34:37 +0200191 write_pmbase32(PM1_CNT, reg32);
Arthur Heymansa0508172018-01-25 11:30:22 +0100192 }
193}
194
195/*
196 * Look for Synchronous IO SMI and use save state from that
197 * core in case we are not running on the same core that
198 * initiated the IO transaction.
199 */
Kyösti Mälkki8c2cc682020-06-29 05:57:12 +0300200static em64t101_smm_state_save_area_t *smi_apmc_find_state_save(u8 cmd)
Arthur Heymansa0508172018-01-25 11:30:22 +0100201{
202 em64t101_smm_state_save_area_t *state;
203 int node;
204
205 /* Check all nodes looking for the one that issued the IO */
206 for (node = 0; node < CONFIG_MAX_CPUS; node++) {
207 state = smm_get_save_state(node);
208
Elyes HAOUAS581fe582018-04-26 09:57:07 +0200209 /* Check for Synchronous IO (bit0 == 1) */
Arthur Heymansa0508172018-01-25 11:30:22 +0100210 if (!(state->io_misc_info & (1 << 0)))
211 continue;
212
Elyes HAOUAS581fe582018-04-26 09:57:07 +0200213 /* Make sure it was a write (bit4 == 0) */
Arthur Heymansa0508172018-01-25 11:30:22 +0100214 if (state->io_misc_info & (1 << 4))
215 continue;
216
217 /* Check for APMC IO port */
218 if (((state->io_misc_info >> 16) & 0xff) != APM_CNT)
219 continue;
220
221 /* Check AX against the requested command */
222 if ((state->rax & 0xff) != cmd)
223 continue;
224
225 return state;
226 }
227
228 return NULL;
229}
230
Arthur Heymansa0508172018-01-25 11:30:22 +0100231static void southbridge_smi_gsmi(void)
232{
233 u32 *ret, *param;
234 u8 sub_command;
235 em64t101_smm_state_save_area_t *io_smi =
Patrick Georgid61839c2018-12-03 16:10:33 +0100236 smi_apmc_find_state_save(APM_CNT_ELOG_GSMI);
Arthur Heymansa0508172018-01-25 11:30:22 +0100237
238 if (!io_smi)
239 return;
240
241 /* Command and return value in EAX */
242 ret = (u32*)&io_smi->rax;
243 sub_command = (u8)(*ret >> 8);
244
245 /* Parameter buffer in EBX */
246 param = (u32*)&io_smi->rbx;
247
248 /* drivers/elog/gsmi.c */
249 *ret = gsmi_exec(sub_command, param);
250}
Arthur Heymansa0508172018-01-25 11:30:22 +0100251
Arthur Heymans4c804252018-12-03 01:28:18 +0100252static void southbridge_smi_store(void)
253{
254 u8 sub_command, ret;
255 em64t101_smm_state_save_area_t *io_smi =
256 smi_apmc_find_state_save(APM_CNT_SMMSTORE);
Patrick Rudolph03cfae42019-10-20 18:09:58 +0200257 uintptr_t reg_rbx;
Arthur Heymans4c804252018-12-03 01:28:18 +0100258
259 if (!io_smi)
260 return;
261 /* Command and return value in EAX */
262 sub_command = (io_smi->rax >> 8) & 0xff;
263
264 /* Parameter buffer in EBX */
Patrick Rudolph03cfae42019-10-20 18:09:58 +0200265 reg_rbx = (uintptr_t)io_smi->rbx;
Arthur Heymans4c804252018-12-03 01:28:18 +0100266
267 /* drivers/smmstore/smi.c */
Patrick Rudolph03cfae42019-10-20 18:09:58 +0200268 ret = smmstore_exec(sub_command, (void *)reg_rbx);
Arthur Heymans4c804252018-12-03 01:28:18 +0100269 io_smi->rax = ret;
270}
271
Arthur Heymansa0508172018-01-25 11:30:22 +0100272static int mainboard_finalized = 0;
273
274static void southbridge_smi_apmc(void)
275{
Arthur Heymansa0508172018-01-25 11:30:22 +0100276 u8 reg8;
277
Kyösti Mälkki9a1620f2021-01-08 13:27:33 +0200278 reg8 = apm_get_apmc();
Arthur Heymansa0508172018-01-25 11:30:22 +0100279 switch (reg8) {
Arthur Heymansa0508172018-01-25 11:30:22 +0100280 case APM_CNT_ACPI_DISABLE:
Patrick Rudolphed3242e2018-06-29 10:34:37 +0200281 write_pmbase32(PM1_CNT, read_pmbase32(PM1_CNT) & ~SCI_EN);
Arthur Heymansa0508172018-01-25 11:30:22 +0100282 break;
283 case APM_CNT_ACPI_ENABLE:
Patrick Rudolphed3242e2018-06-29 10:34:37 +0200284 write_pmbase32(PM1_CNT, read_pmbase32(PM1_CNT) | SCI_EN);
Arthur Heymansa0508172018-01-25 11:30:22 +0100285 break;
Arthur Heymansa0508172018-01-25 11:30:22 +0100286 case APM_CNT_FINALIZE:
287 if (mainboard_finalized) {
288 printk(BIOS_DEBUG, "SMI#: Already finalized\n");
289 return;
290 }
291
292 southbridge_finalize_all();
293 mainboard_finalized = 1;
294 break;
Patrick Georgid61839c2018-12-03 16:10:33 +0100295 case APM_CNT_ELOG_GSMI:
Kyösti Mälkki9dd1a122019-11-06 11:04:27 +0200296 if (CONFIG(ELOG_GSMI))
297 southbridge_smi_gsmi();
Arthur Heymansa0508172018-01-25 11:30:22 +0100298 break;
Arthur Heymans4c804252018-12-03 01:28:18 +0100299 case APM_CNT_SMMSTORE:
300 if (CONFIG(SMMSTORE))
301 southbridge_smi_store();
302 break;
Arthur Heymansa0508172018-01-25 11:30:22 +0100303 }
304
305 mainboard_smi_apmc(reg8);
306}
307
308static void southbridge_smi_pm1(void)
309{
310 u16 pm1_sts;
311
312 pm1_sts = reset_pm1_status();
313 dump_pm1_status(pm1_sts);
314
315 /* While OSPM is not active, poweroff immediately
316 * on a power button event.
317 */
318 if (pm1_sts & PWRBTN_STS) {
319 // power button pressed
320 u32 reg32;
321 reg32 = (7 << 10) | (1 << 13);
Kyösti Mälkki9dd1a122019-11-06 11:04:27 +0200322 elog_gsmi_add_event(ELOG_TYPE_POWER_BUTTON);
Patrick Rudolphed3242e2018-06-29 10:34:37 +0200323 write_pmbase32(PM1_CNT, reg32);
Arthur Heymansa0508172018-01-25 11:30:22 +0100324 }
325}
326
327static void southbridge_smi_gpe0(void)
328{
329 u32 gpe0_sts;
330
331 gpe0_sts = reset_gpe0_status();
332 dump_gpe0_status(gpe0_sts);
333}
334
335static void southbridge_smi_gpi(void)
336{
337 u16 reg16;
Arthur Heymansa0508172018-01-25 11:30:22 +0100338
Patrick Rudolphed3242e2018-06-29 10:34:37 +0200339 reg16 = reset_alt_gp_smi_status();
340 reg16 &= read_pmbase16(ALT_GP_SMI_EN);
Arthur Heymansa0508172018-01-25 11:30:22 +0100341
342 mainboard_smi_gpi(reg16);
343
344 if (reg16)
345 printk(BIOS_DEBUG, "GPI (mask %04x)\n", reg16);
346
Patrick Rudolphed3242e2018-06-29 10:34:37 +0200347 write_pmbase16(ALT_GP_SMI_STS, reg16);
Arthur Heymansa0508172018-01-25 11:30:22 +0100348}
349
350static void southbridge_smi_mc(void)
351{
352 u32 reg32;
353
Patrick Rudolphed3242e2018-06-29 10:34:37 +0200354 reg32 = read_pmbase32(SMI_EN);
Arthur Heymansa0508172018-01-25 11:30:22 +0100355
356 /* Are periodic SMIs enabled? */
357 if ((reg32 & MCSMI_EN) == 0)
358 return;
359
360 printk(BIOS_DEBUG, "Microcontroller SMI.\n");
361}
362
Arthur Heymansa0508172018-01-25 11:30:22 +0100363static void southbridge_smi_tco(void)
364{
365 u32 tco_sts;
366
367 tco_sts = reset_tco_status();
368
369 /* Any TCO event? */
370 if (!tco_sts)
371 return;
372
373 if (tco_sts & (1 << 8)) { // BIOSWR
374 u8 bios_cntl;
375
Angel Ponscc36c4c2021-03-30 10:49:24 +0200376 bios_cntl = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0xdc);
Arthur Heymansa0508172018-01-25 11:30:22 +0100377
378 if (bios_cntl & 1) {
379 /* BWE is RW, so the SMI was caused by a
380 * write to BWE, not by a write to the BIOS
381 */
382
383 /* This is the place where we notice someone
384 * is trying to tinker with the BIOS. We are
385 * trying to be nice and just ignore it. A more
386 * resolute answer would be to power down the
387 * box.
388 */
389 printk(BIOS_DEBUG, "Switching back to RO\n");
Angel Ponscc36c4c2021-03-30 10:49:24 +0200390 pci_write_config8(PCI_DEV(0, 0x1f, 0), 0xdc,
Arthur Heymansa0508172018-01-25 11:30:22 +0100391 (bios_cntl & ~1));
392 } /* No else for now? */
393 } else if (tco_sts & (1 << 3)) { /* TIMEOUT */
394 /* Handle TCO timeout */
395 printk(BIOS_DEBUG, "TCO Timeout.\n");
Jacob Garber7eb8eed2019-04-03 09:18:32 -0600396 } else {
Arthur Heymansa0508172018-01-25 11:30:22 +0100397 dump_tco_status(tco_sts);
398 }
399}
400
401static void southbridge_smi_periodic(void)
402{
403 u32 reg32;
404
Patrick Rudolphed3242e2018-06-29 10:34:37 +0200405 reg32 = read_pmbase32(SMI_EN);
Arthur Heymansa0508172018-01-25 11:30:22 +0100406
407 /* Are periodic SMIs enabled? */
408 if ((reg32 & PERIODIC_EN) == 0)
409 return;
410
411 printk(BIOS_DEBUG, "Periodic SMI.\n");
412}
413
414typedef void (*smi_handler_t)(void);
415
416static smi_handler_t southbridge_smi[32] = {
417 NULL, // [0] reserved
418 NULL, // [1] reserved
419 NULL, // [2] BIOS_STS
420 NULL, // [3] LEGACY_USB_STS
421 southbridge_smi_sleep, // [4] SLP_SMI_STS
422 southbridge_smi_apmc, // [5] APM_STS
423 NULL, // [6] SWSMI_TMR_STS
424 NULL, // [7] reserved
425 southbridge_smi_pm1, // [8] PM1_STS
426 southbridge_smi_gpe0, // [9] GPE0_STS
427 southbridge_smi_gpi, // [10] GPI_STS
428 southbridge_smi_mc, // [11] MCSMI_STS
429 NULL, // [12] DEVMON_STS
430 southbridge_smi_tco, // [13] TCO_STS
431 southbridge_smi_periodic, // [14] PERIODIC_STS
432 NULL, // [15] SERIRQ_SMI_STS
433 NULL, // [16] SMBUS_SMI_STS
434 NULL, // [17] LEGACY_USB2_STS
435 NULL, // [18] INTEL_USB2_STS
436 NULL, // [19] reserved
437 NULL, // [20] PCI_EXP_SMI_STS
438 southbridge_smi_monitor, // [21] MONITOR_STS
439 NULL, // [22] reserved
440 NULL, // [23] reserved
441 NULL, // [24] reserved
442 NULL, // [25] EL_SMI_STS
443 NULL, // [26] SPI_STS
444 NULL, // [27] reserved
445 NULL, // [28] reserved
446 NULL, // [29] reserved
447 NULL, // [30] reserved
448 NULL // [31] reserved
449};
450
451/**
452 * @brief Interrupt handler for SMI#
Arthur Heymansa0508172018-01-25 11:30:22 +0100453 */
454void southbridge_smi_handler(void)
455{
456 int i, dump = 0;
457 u32 smi_sts;
458
Arthur Heymansa0508172018-01-25 11:30:22 +0100459 /* We need to clear the SMI status registers, or we won't see what's
460 * happening in the following calls.
461 */
462 smi_sts = reset_smi_status();
463
464 /* Call SMI sub handler for each of the status bits */
465 for (i = 0; i < 31; i++) {
466 if (smi_sts & (1 << i)) {
467 if (southbridge_smi[i]) {
468 southbridge_smi[i]();
469 } else {
470 printk(BIOS_DEBUG, "SMI_STS[%d] occurred,"
471 " but no handler available.\n", i);
472 dump = 1;
473 }
474 }
475 }
476
477 if (dump) {
478 dump_smi_status(smi_sts);
479 }
480}