diff options
author | Hannah Williams <hannah.williams@intel.com> | 2018-05-11 19:14:38 -0700 |
---|---|---|
committer | Furquan Shaikh <furquan@google.com> | 2018-05-18 06:19:32 +0000 |
commit | 09b883f352f9029d87d2fd48a3918f894f8d0c8c (patch) | |
tree | 6aa4d4b545189d2904ed607efed8e7f8b1388a8f /src/mainboard/google/octopus/smihandler.c | |
parent | 5c3452b80032eb81cc458d1fae63089ccc96d95a (diff) |
mb/google/octopus: Disable BT before S5 entry
The CNVi wifi/bt module prevents entry into S5 by keeping internal
SoC clocks running. Therefore it's necessary to disable BT prior to
S5 entry.
BUG=b:79606769
TEST= Test if BT device works under following cases:
1. Power-on
2. Press powerbtn before OS entry
3. Power-on from S5 again
Change-Id: Ibc14b4080a27de48d197e16d0eed162603482de2
Signed-off-by: Hannah Williams <hannah.williams@intel.com>
Reviewed-on: https://review.coreboot.org/26238
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-by: Furquan Shaikh <furquan@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google/octopus/smihandler.c')
-rw-r--r-- | src/mainboard/google/octopus/smihandler.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/google/octopus/smihandler.c b/src/mainboard/google/octopus/smihandler.c index d430c4d17f..ecd41ae300 100644 --- a/src/mainboard/google/octopus/smihandler.c +++ b/src/mainboard/google/octopus/smihandler.c @@ -34,7 +34,7 @@ void mainboard_smi_sleep(u8 slp_typ) const struct pad_config *pads; size_t num; - pads = variant_sleep_gpio_table(&num); + pads = variant_sleep_gpio_table(&num, slp_typ); gpio_configure_pads(pads, num); chromeec_smi_sleep(slp_typ, MAINBOARD_EC_S3_WAKE_EVENTS, |