diff options
-rw-r--r-- | src/mainboard/google/falco/smihandler.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mainboard/google/falco/smihandler.c b/src/mainboard/google/falco/smihandler.c index 52dd77654a..ee56987d02 100644 --- a/src/mainboard/google/falco/smihandler.c +++ b/src/mainboard/google/falco/smihandler.c @@ -34,6 +34,7 @@ /* GPIO46 controls the WLAN_DISABLE_L signal. */ #define GPIO_WLAN_DISABLE_L 46 +#define GPIO_LTE_DISABLE_L 59 int mainboard_io_trap_handler(int smif) { @@ -104,6 +105,8 @@ void mainboard_smi_sleep(u8 slp_typ) /* Prevent leak from standby rail to WLAN rail in S3. */ set_gpio(GPIO_WLAN_DISABLE_L, 0); + /* Disable LTE */ + set_gpio(GPIO_LTE_DISABLE_L, 0); break; case 5: if (smm_get_gnvs()->s5u0 == 0) @@ -115,6 +118,8 @@ void mainboard_smi_sleep(u8 slp_typ) /* Prevent leak from standby rail to WLAN rail in S5. */ set_gpio(GPIO_WLAN_DISABLE_L, 0); + /* Disable LTE */ + set_gpio(GPIO_LTE_DISABLE_L, 0); break; } |