1 /* SPDX-License-Identifier: GPL-2.0-only */
5 #include <console/console.h>
6 #include <cpu/x86/cache.h>
7 #include <cpu/x86/smm.h>
8 #include <cpu/intel/em64t100_save_state.h>
9 #include <device/mmio.h>
10 #include <device/pci_ops.h>
11 #include <device/pci_def.h>
16 #include <soc/pci_devs.h>
18 #include <spi-generic.h>
21 void southbridge_smi_set_eos(void)
26 static void busmaster_disable_on_bus(int bus
)
32 for (slot
= 0; slot
< 0x20; slot
++) {
33 for (func
= 0; func
< 8; func
++) {
35 pci_devfn_t dev
= PCI_DEV(bus
, slot
, func
);
37 val
= pci_read_config32(dev
, PCI_VENDOR_ID
);
39 if (val
== 0xffffffff || val
== 0x00000000 ||
40 val
== 0x0000ffff || val
== 0xffff0000)
43 /* Disable Bus Mastering for this one device */
44 reg16
= pci_read_config16(dev
, PCI_COMMAND
);
45 reg16
&= ~PCI_COMMAND_MASTER
;
46 pci_write_config16(dev
, PCI_COMMAND
, reg16
);
48 /* If this is a bridge, then follow it. */
49 hdr
= pci_read_config8(dev
, PCI_HEADER_TYPE
);
51 if (hdr
== PCI_HEADER_TYPE_BRIDGE
|| hdr
== PCI_HEADER_TYPE_CARDBUS
) {
53 buses
= pci_read_config32(dev
, PCI_PRIMARY_BUS
);
54 busmaster_disable_on_bus((buses
>> 8) & 0xff);
60 static void tristate_gpios(uint32_t val
)
63 write32p(COMMUNITY_GPSOUTHEAST_BASE
+ SDMMC1_CMD_MMIO_OFFSET
, val
);
64 write32p(COMMUNITY_GPSOUTHEAST_BASE
+ SDMMC1_D0_MMIO_OFFSET
, val
);
65 write32p(COMMUNITY_GPSOUTHEAST_BASE
+ SDMMC1_D1_MMIO_OFFSET
, val
);
66 write32p(COMMUNITY_GPSOUTHEAST_BASE
+ SDMMC1_D2_MMIO_OFFSET
, val
);
67 write32p(COMMUNITY_GPSOUTHEAST_BASE
+ SDMMC1_D3_MMIO_OFFSET
, val
);
68 write32p(COMMUNITY_GPSOUTHEAST_BASE
+ MMC1_D4_SD_WE_MMIO_OFFSET
, val
);
69 write32p(COMMUNITY_GPSOUTHEAST_BASE
+ MMC1_D5_MMIO_OFFSET
, val
);
70 write32p(COMMUNITY_GPSOUTHEAST_BASE
+ MMC1_D6_MMIO_OFFSET
, val
);
71 write32p(COMMUNITY_GPSOUTHEAST_BASE
+ MMC1_D7_MMIO_OFFSET
, val
);
72 write32p(COMMUNITY_GPSOUTHEAST_BASE
+ MMC1_RCLK_OFFSET
, val
);
75 write32p(COMMUNITY_GPNORTH_BASE
+ HV_DDI2_DDC_SDA_MMIO_OFFSET
, val
);
76 write32p(COMMUNITY_GPNORTH_BASE
+ HV_DDI2_DDC_SCL_MMIO_OFFSET
, val
);
78 /* Tri-state CFIO 139 and 140 */
79 write32p(COMMUNITY_GPSOUTHWEST_BASE
+ CFIO_139_MMIO_OFFSET
, val
);
80 write32p(COMMUNITY_GPSOUTHWEST_BASE
+ CFIO_140_MMIO_OFFSET
, val
);
83 static void southbridge_smi_sleep(void)
87 uint16_t pmbase
= get_pmbase();
89 /* First, disable further SMIs */
90 disable_smi(SLP_SMI_EN
);
92 /* Figure out SLP_TYP */
93 reg32
= inl(pmbase
+ PM1_CNT
);
94 printk(BIOS_SPEW
, "SMI#: SLP = 0x%08x\n", reg32
);
95 slp_typ
= acpi_sleep_from_pm1(reg32
);
97 /* Do any mainboard sleep handling */
98 mainboard_smi_sleep(slp_typ
);
100 /* Log S3, S4, and S5 entry */
101 if (slp_typ
>= ACPI_S3
)
102 elog_gsmi_add_event_byte(ELOG_TYPE_ACPI_ENTER
, slp_typ
);
104 /* Clear pending GPE events */
107 /* Next, do the deed. */
110 printk(BIOS_DEBUG
, "SMI#: Entering S0 (On)\n");
113 printk(BIOS_DEBUG
, "SMI#: Entering S1 (Assert STPCLK#)\n");
116 printk(BIOS_DEBUG
, "SMI#: Entering S3 (Suspend-To-RAM)\n");
118 /* Invalidate the cache before going to S3 */
122 printk(BIOS_DEBUG
, "SMI#: Entering S4 (Suspend-To-Disk)\n");
125 printk(BIOS_DEBUG
, "SMI#: Entering S5 (Soft Power off)\n");
127 /* Disable all GPE */
130 /* Also iterates over all bridges on bus 0 */
131 busmaster_disable_on_bus(0);
134 printk(BIOS_DEBUG
, "SMI#: ERROR: SLP_TYP reserved\n");
138 /* Clear pending wake status bit to avoid immediate wake */
139 write32p(0xfed88000 + 0x0200, read32p(0xfed88000 + 0x0200));
141 /* Tri-state specific GPIOS to avoid leakage during S3/S5 */
142 if ((slp_typ
== ACPI_S3
) || (slp_typ
== ACPI_S5
))
143 tristate_gpios(PAD_CONTROL_REG0_TRISTATE
);
146 * Write back to the SLP register to cause the originally intended event again.
147 * We need to set BIT13 (SLP_EN) though to make the sleep happen.
149 enable_pm1_control(SLP_EN
);
151 /* Make sure to stop executing code here for S3/S4/S5 */
152 if (slp_typ
>= ACPI_S3
)
156 * In most sleep states, the code flow of this function ends at
157 * the line above. However, if we entered sleep state S1 and wake
158 * up again, we will continue to execute code in this function.
160 reg32
= inl(pmbase
+ PM1_CNT
);
161 if (reg32
& SCI_EN
) {
162 /* The OS is not an ACPI OS, so we set the state to S0 */
163 disable_pm1_control(SLP_EN
| SLP_TYP
);
168 * Look for Synchronous IO SMI and use save state from that core in case
169 * we are not running on the same core that initiated the IO transaction.
171 static em64t100_smm_state_save_area_t
*smi_apmc_find_state_save(uint8_t cmd
)
173 em64t100_smm_state_save_area_t
*state
;
176 /* Check all nodes looking for the one that issued the IO */
177 for (node
= 0; node
< CONFIG_MAX_CPUS
; node
++) {
178 state
= smm_get_save_state(node
);
180 /* Check for Synchronous IO (bit0==1) */
181 if (!(state
->io_misc_info
& (1 << 0)))
184 /* Make sure it was a write (bit4==0) */
185 if (state
->io_misc_info
& (1 << 4))
188 /* Check for APMC IO port */
189 if (((state
->io_misc_info
>> 16) & 0xff) != APM_CNT
)
192 /* Check AX against the requested command */
193 if ((state
->rax
& 0xff) != cmd
)
202 static void southbridge_smi_gsmi(void)
206 em64t100_smm_state_save_area_t
*io_smi
= smi_apmc_find_state_save(APM_CNT_ELOG_GSMI
);
211 /* Command and return value in EAX */
212 ret
= (u32
*)&io_smi
->rax
;
213 sub_command
= (uint8_t)(*ret
>> 8);
215 /* Parameter buffer in EBX */
216 param
= (u32
*)&io_smi
->rbx
;
218 /* drivers/elog/gsmi.c */
219 *ret
= gsmi_exec(sub_command
, param
);
222 static void southbridge_smi_store(void)
225 em64t100_smm_state_save_area_t
*io_smi
= smi_apmc_find_state_save(APM_CNT_SMMSTORE
);
230 /* Command and return value in EAX */
231 sub_command
= (io_smi
->rax
>> 8) & 0xff;
233 /* Parameter buffer in EBX */
234 reg_ebx
= io_smi
->rbx
;
236 /* drivers/smmstore/smi.c */
237 ret
= smmstore_exec(sub_command
, (void *)reg_ebx
);
241 static void southbridge_smi_apmc(void)
245 reg8
= apm_get_apmc();
247 case APM_CNT_ACPI_DISABLE
:
248 disable_pm1_control(SCI_EN
);
250 case APM_CNT_ACPI_ENABLE
:
251 enable_pm1_control(SCI_EN
);
253 case APM_CNT_ELOG_GSMI
:
254 if (CONFIG(ELOG_GSMI
))
255 southbridge_smi_gsmi();
257 case APM_CNT_SMMSTORE
:
258 if (CONFIG(SMMSTORE
))
259 southbridge_smi_store();
263 mainboard_smi_apmc(reg8
);
266 static void southbridge_smi_pm1(void)
268 uint16_t pm1_sts
= clear_pm1_status();
270 /* While OSPM is not active, poweroff immediately on a power button event */
271 if (pm1_sts
& PWRBTN_STS
) {
272 /* Power button pressed */
273 elog_gsmi_add_event(ELOG_TYPE_POWER_BUTTON
);
274 disable_pm1_control(-1UL);
275 enable_pm1_control(SLP_EN
| (SLP_TYP_S5
<< SLP_TYP_SHIFT
));
279 static void southbridge_smi_gpe0(void)
284 static void southbridge_smi_tco(void)
286 uint32_t tco_sts
= clear_tco_status();
292 if (tco_sts
& TCO_TIMEOUT
) { /* TIMEOUT */
293 /* Handle TCO timeout */
294 printk(BIOS_DEBUG
, "TCO Timeout.\n");
298 static void southbridge_smi_periodic(void)
302 reg32
= inl(get_pmbase() + SMI_EN
);
304 /* Are periodic SMIs enabled? */
305 if ((reg32
& PERIODIC_EN
) == 0)
308 printk(BIOS_DEBUG
, "Periodic SMI.\n");
311 typedef void (*smi_handler_t
)(void);
313 static const smi_handler_t southbridge_smi
[32] = {
314 NULL
, /* [0] reserved */
315 NULL
, /* [1] reserved */
316 NULL
, /* [2] BIOS_STS */
317 NULL
, /* [3] LEGACY_USB_STS */
318 southbridge_smi_sleep
, /* [4] SLP_SMI_STS */
319 southbridge_smi_apmc
, /* [5] APM_STS */
320 NULL
, /* [6] SWSMI_TMR_STS */
321 NULL
, /* [7] reserved */
322 southbridge_smi_pm1
, /* [8] PM1_STS */
323 southbridge_smi_gpe0
, /* [9] GPE0_STS */
324 NULL
, /* [10] reserved */
325 NULL
, /* [11] reserved */
326 NULL
, /* [12] reserved */
327 southbridge_smi_tco
, /* [13] TCO_STS */
328 southbridge_smi_periodic
, /* [14] PERIODIC_STS */
329 NULL
, /* [15] SERIRQ_SMI_STS */
330 NULL
, /* [16] SMBUS_SMI_STS */
331 NULL
, /* [17] LEGACY_USB2_STS */
332 NULL
, /* [18] INTEL_USB2_STS */
333 NULL
, /* [19] reserved */
334 NULL
, /* [20] PCI_EXP_SMI_STS */
335 NULL
, /* [21] reserved */
336 NULL
, /* [22] reserved */
337 NULL
, /* [23] reserved */
338 NULL
, /* [24] reserved */
339 NULL
, /* [25] reserved */
340 NULL
, /* [26] SPI_STS */
341 NULL
, /* [27] reserved */
342 NULL
, /* [28] PUNIT */
343 NULL
, /* [29] GUNIT */
344 NULL
, /* [30] reserved */
345 NULL
/* [31] reserved */
348 void southbridge_smi_handler(void)
354 * We need to clear the SMI status registers, or we won't see what's
355 * happening in the following calls.
357 smi_sts
= clear_smi_status();
359 /* Call SMI sub handler for each of the status bits */
360 for (i
= 0; i
< ARRAY_SIZE(southbridge_smi
); i
++) {
361 if (!(smi_sts
& (1 << i
)))
364 if (southbridge_smi
[i
] != NULL
) {
365 southbridge_smi
[i
]();
368 "SMI_STS[%d] occurred, but no handler available.\n", i
);
373 * The GPIO SMI events do not have a status bit in SMI_STS. Therefore,
374 * these events need to be cleared and checked unconditionally.
376 mainboard_smi_gpi(clear_alt_status());