1 /* SPDX-License-Identifier: GPL-2.0-or-later */
4 #include <baseboard/variants.h>
10 const char *get_wifi_sar_cbfs_filename(void)
12 const char *filename
= NULL
;
14 if (fw_config_probe(FW_CONFIG(TABLETMODE
, TABLETMODE_ENABLED
)))
15 filename
= "wifi_sar-cret.hex";
20 static void power_off_lte_module(void)
22 gpio_output(GPP_H17
, 0);
24 gpio_output(GPP_A10
, 0);
27 void variant_smi_sleep(u8 slp_typ
)
30 * Once the FW_CONFIG is provisioned, power off LTE module only under
31 * the situation where it is stuffed.
33 if (slp_typ
== ACPI_S5
)
34 power_off_lte_module();