/* SPDX-License-Identifier: GPL-2.0-only */ #include #include #include #include #include #include #include #include const char *get_wifi_sar_cbfs_filename(void) { if (fw_config_probe(FW_CONFIG(TABLETMODE, TABLETMODE_ENABLED))) return "wifi_sar-drawcia.hex"; return WIFI_SAR_CBFS_DEFAULT_FILENAME; } const char *mainboard_vbt_filename(void) { if (fw_config_probe(FW_CONFIG(DB_PORTS, DB_PORTS_1A_HDMI)) || fw_config_probe(FW_CONFIG(DB_PORTS, DB_PORTS_1A_HDMI_LTE))) return "vbt_drawman.bin"; return "vbt.bin"; } static void power_off_lte_module(void) { gpio_output(GPP_H0, 0); mdelay(20); gpio_output(GPP_A10, 0); } void variant_smi_sleep(u8 slp_typ) { /* * Once the FW_CONFIG is provisioned, power off LTE module only under * the situation where it is stuffed. */ if (slp_typ == ACPI_S5) power_off_lte_module(); }