blob: 51f31a1280c0978458a819dee1ca2548e7cdc96f [file] [log] [blame]
Angel Ponsf94ac9a2020-04-05 15:46:48 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Duncan Lauriec88c54c2014-04-30 16:36:13 -07002
3#include <device/device.h>
4#include <device/pci.h>
5#include <console/console.h>
6#include <arch/io.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -07007#include <cpu/x86/smm.h>
Kyösti Mälkkifaf20d32019-08-14 05:41:41 +03008#include <cpu/intel/smm_reloc.h>
Julius Werner4ee4bd52014-10-20 13:46:39 -07009#include <soc/iomap.h>
10#include <soc/pch.h>
11#include <soc/pm.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070012
Kyösti Mälkkifaf20d32019-08-14 05:41:41 +030013void smm_southbridge_clear_state(void)
Duncan Lauriec88c54c2014-04-30 16:36:13 -070014{
15 u32 smi_en;
16
Duncan Lauriec88c54c2014-04-30 16:36:13 -070017 smi_en = inl(ACPI_BASE_ADDRESS + SMI_EN);
18 if (smi_en & APMC_EN) {
19 printk(BIOS_INFO, "SMI# handler already enabled?\n");
20 return;
21 }
22
Duncan Lauriec88c54c2014-04-30 16:36:13 -070023 /* Dump and clear status registers */
24 clear_smi_status();
25 clear_pm1_status();
26 clear_tco_status();
27 clear_gpe_status();
28}
29
Kyösti Mälkki0778c862020-06-10 12:44:03 +030030static void smm_southbridge_enable(uint16_t pm1_events)
Duncan Lauriec88c54c2014-04-30 16:36:13 -070031{
32 printk(BIOS_DEBUG, "Enabling SMIs.\n");
33 /* Configure events */
Kyösti Mälkki0778c862020-06-10 12:44:03 +030034 enable_pm1(pm1_events);
Duncan Lauriec88c54c2014-04-30 16:36:13 -070035 disable_gpe(PME_B0_EN);
36
37 /* Enable SMI generation:
38 * - on APMC writes (io 0xb2)
39 * - on writes to SLP_EN (sleep states)
40 * - on writes to GBL_RLS (bios commands)
41 * No SMIs:
42 * - on microcontroller writes (io 0x62/0x66)
43 * - on TCO events
44 */
45 enable_smi(APMC_EN | SLP_SMI_EN | GBL_SMI_EN | EOS);
46}
47
Kyösti Mälkki0778c862020-06-10 12:44:03 +030048void global_smi_enable(void)
49{
50 smm_southbridge_enable(PWRBTN_EN | GBL_EN);
51}