soc/intel/ptl: Update ME specification version to 21
[coreboot.git] / src / mainboard / google / dedede / variants / kracko / variant.c
blob66d7b068895a5f27aaf5696c6b3e291e3f609369
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 #include <acpi/acpi.h>
4 #include <baseboard/variants.h>
5 #include <delay.h>
6 #include <gpio.h>
7 #include <sar.h>
9 const char *get_wifi_sar_cbfs_filename(void)
11 return "wifi_sar-kracko.hex";
15 static void power_off_lte_module(void)
17 gpio_output(GPP_H17, 0);
18 mdelay(20);
19 gpio_output(GPP_A10, 0);
22 void variant_smi_sleep(u8 slp_typ)
25 * Once the FW_CONFIG is provisioned, power off LTE module only under
26 * the situation where it is stuffed.
28 if (slp_typ == ACPI_S5)
29 power_off_lte_module();