blob: 247a159df541a0c71b11890b912c61d939f3cc88 [file] [log] [blame]
Felix Held4a8cd722020-04-18 22:26:39 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Martin Roth5c354b92019-04-22 14:55:16 -06002
Furquan Shaikh76cedd22020-05-02 10:24:23 -07003#include <acpi/acpi.h>
Martin Roth5c354b92019-04-22 14:55:16 -06004#include <amdblocks/acpi.h>
Felix Held15c43452021-03-09 00:14:48 +01005#include <amdblocks/acpimmio.h>
Marshall Dawsone8ffa9f2020-03-16 19:20:20 -06006#include <amdblocks/psp.h>
Felix Helda5a52952020-12-01 18:14:01 +01007#include <amdblocks/smi.h>
Felix Helda3a66b62021-02-10 03:29:48 +01008#include <amdblocks/smm.h>
Felix Held15c43452021-03-09 00:14:48 +01009#include <arch/hlt.h>
10#include <arch/io.h>
11#include <console/console.h>
12#include <cpu/x86/cache.h>
13#include <cpu/x86/smm.h>
Martin Roth5c354b92019-04-22 14:55:16 -060014#include <elog.h>
Felix Held15c43452021-03-09 00:14:48 +010015#include <soc/smi.h>
Marshall Dawson4dc4cb62020-04-03 12:07:00 -060016#include <soc/smu.h>
Felix Held15c43452021-03-09 00:14:48 +010017#include <soc/southbridge.h>
Felix Held2e978972021-02-10 16:48:23 +010018#include <types.h>
Martin Roth5c354b92019-04-22 14:55:16 -060019
Felix Heldf43e0e72022-06-24 21:54:46 +020020/*
21 * Both the psp_notify_sx_info and the smu_sx_entry call will clobber the SMN index register
22 * during the SMN accesses. Since the SMI handler is the last thing that gets called before
23 * entering S3, this won't interfere with any indirect SMN accesses via the same register pair.
24 */
Felix Helda2db88e2021-02-10 16:46:11 +010025static void fch_slp_typ_handler(void)
Martin Roth5c354b92019-04-22 14:55:16 -060026{
27 uint32_t pci_ctrl, reg32;
28 uint16_t pm1cnt, reg16;
29 uint8_t slp_typ, rst_ctrl;
30
31 /* Figure out SLP_TYP */
32 pm1cnt = acpi_read16(MMIO_ACPI_PM1_CNT_BLK);
33 printk(BIOS_SPEW, "SMI#: SLP = 0x%04x\n", pm1cnt);
34 slp_typ = acpi_sleep_from_pm1(pm1cnt);
35
36 /* Do any mainboard sleep handling */
37 mainboard_smi_sleep(slp_typ);
38
39 switch (slp_typ) {
40 case ACPI_S0:
41 printk(BIOS_DEBUG, "SMI#: Entering S0 (On)\n");
42 break;
43 case ACPI_S3:
44 printk(BIOS_DEBUG, "SMI#: Entering S3 (Suspend-To-RAM)\n");
45 break;
46 case ACPI_S4:
47 printk(BIOS_DEBUG, "SMI#: Entering S4 (Suspend-To-Disk)\n");
48 break;
49 case ACPI_S5:
50 printk(BIOS_DEBUG, "SMI#: Entering S5 (Soft Power off)\n");
51 break;
52 default:
53 printk(BIOS_DEBUG, "SMI#: ERROR: SLP_TYP reserved\n");
54 break;
55 }
56
57 if (slp_typ >= ACPI_S3) {
58 /* Sleep Type Elog S3, S4, and S5 entry */
Kyösti Mälkki9dd1a122019-11-06 11:04:27 +020059 elog_gsmi_add_event_byte(ELOG_TYPE_ACPI_ENTER, slp_typ);
Martin Roth5c354b92019-04-22 14:55:16 -060060
61 wbinvd();
62
Felix Held4f69ab72021-02-10 01:26:07 +010063 clear_all_smi_status();
Martin Roth5c354b92019-04-22 14:55:16 -060064
65 /* Do not send SMI before AcpiPm1CntBlkx00[SlpTyp] */
66 pci_ctrl = pm_read32(PM_PCI_CTRL);
67 pci_ctrl &= ~FORCE_SLPSTATE_RETRY;
Martin Roth5c354b92019-04-22 14:55:16 -060068 pm_write32(PM_PCI_CTRL, pci_ctrl);
69
70 /* Enable SlpTyp */
71 rst_ctrl = pm_read8(PM_RST_CTRL1);
72 rst_ctrl |= SLPTYPE_CONTROL_EN;
73 pm_write8(PM_RST_CTRL1, rst_ctrl);
74
75 /*
76 * Before the final command, check if there's pending wake
77 * event. Read enable first, so that reading the actual status
78 * is as close as possible to entering S3. The idea is to
79 * minimize the opportunity for a wake event to happen before
80 * actually entering S3. If there's a pending wake event, log
81 * it and continue normal path. S3 will fail and the wake event
82 * becomes a SCI.
83 */
84 if (CONFIG(ELOG_GSMI)) {
85 reg16 = acpi_read16(MMIO_ACPI_PM1_EN);
86 reg16 &= acpi_read16(MMIO_ACPI_PM1_STS);
87 if (reg16)
88 elog_add_extended_event(
89 ELOG_SLEEP_PENDING_PM1_WAKE,
90 (u32)reg16);
91
92 reg32 = acpi_read32(MMIO_ACPI_GPE0_EN);
93 reg32 &= acpi_read32(MMIO_ACPI_GPE0_STS);
94 if (reg32)
95 elog_add_extended_event(
96 ELOG_SLEEP_PENDING_GPE0_WAKE,
97 reg32);
98 } /* if (CONFIG(ELOG_GSMI)) */
99
Marshall Dawson4d38c752020-07-01 17:04:03 -0600100 if (slp_typ == ACPI_S3)
101 psp_notify_sx_info(ACPI_S3);
Marshall Dawson90b83392020-03-19 15:08:01 -0600102
Marshall Dawson4dc4cb62020-04-03 12:07:00 -0600103 smu_sx_entry(); /* Leave SlpTypeEn clear, SMU will set */
Julius Wernere9665952022-01-21 17:06:20 -0800104 printk(BIOS_ERR, "System did not go to sleep\n");
Marshall Dawson4dc4cb62020-04-03 12:07:00 -0600105
Martin Roth5c354b92019-04-22 14:55:16 -0600106 hlt();
107 }
108}
109
Martin Roth5c354b92019-04-22 14:55:16 -0600110/*
111 * Table of functions supported in the SMI handler. Note that SMI source setup
Felix Held37fbbfd2021-02-10 00:48:33 +0100112 * in fch.c is unrelated to this list.
Martin Roth5c354b92019-04-22 14:55:16 -0600113 */
114static const struct smi_sources_t smi_sources[] = {
Felix Helda2db88e2021-02-10 16:46:11 +0100115 { .type = SMITYPE_SMI_CMD_PORT, .handler = fch_apmc_smi_handler },
116 { .type = SMITYPE_SLP_TYP, .handler = fch_slp_typ_handler},
Martin Roth5c354b92019-04-22 14:55:16 -0600117};
118
Felix Helda3a66b62021-02-10 03:29:48 +0100119void *get_smi_source_handler(int source)
Martin Roth5c354b92019-04-22 14:55:16 -0600120{
Felix Held2e978972021-02-10 16:48:23 +0100121 size_t i;
Martin Roth5c354b92019-04-22 14:55:16 -0600122
123 for (i = 0 ; i < ARRAY_SIZE(smi_sources) ; i++)
124 if (smi_sources[i].type == source)
125 return smi_sources[i].handler;
126
127 return NULL;
128}