mb/starlabs/{lite_adl,byte_adl}: Don't select MAINBOARD_HAS_TPM2
[coreboot2.git] / src / mainboard / intel / strago / smihandler.c
blob3f3a81b4d2663c57db575ff21a7156fdd1ed3112
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <acpi/acpi.h>
4 #include <cpu/x86/smm.h>
5 #include "ec.h"
7 #include <ec/google/chromeec/smm.h>
9 #include <soc/pm.h>
10 #include <soc/gpio.h>
12 #include "onboard.h"
14 /* The wake gpio is SUS_GPIO[0]. */
15 #define WAKE_GPIO_EN SUS_GPIO_EN0
18 * The entire 32-bit ALT_GPIO_SMI register is passed as a parameter. Note, that
19 * this includes the enable bits in the lower 16 bits.
21 void mainboard_smi_gpi(uint32_t alt_gpio_smi)
23 if (alt_gpio_smi & (1 << EC_SMI_GPI))
24 chromeec_smi_process_events();
27 void mainboard_smi_sleep(uint8_t slp_typ)
29 /* Disable USB charging if required */
30 chromeec_set_usb_charge_mode(slp_typ);
32 switch (slp_typ) {
33 case ACPI_S3:
34 /* Enable wake pin in GPE block. */
35 enable_gpe(WAKE_GPIO_EN);
36 break;
39 chromeec_smi_sleep(slp_typ, MAINBOARD_EC_S3_WAKE_EVENTS, MAINBOARD_EC_S5_WAKE_EVENTS);
41 /* Set LPC lines to low power in S3/S5. */
42 if ((slp_typ == ACPI_S3) || (slp_typ == ACPI_S5))
43 lpc_set_low_power();
46 int mainboard_smi_apmc(uint8_t apmc)
48 chromeec_smi_apmc(apmc, MAINBOARD_EC_SCI_EVENTS, MAINBOARD_EC_SMI_EVENTS);
49 return 0;