summaryrefslogtreecommitdiff
path: root/chip
diff options
context:
space:
mode:
authorDuncan Laurie <dlaurie@chromium.org>2013-05-31 09:41:21 -0700
committerChromeBot <chrome-bot@google.com>2013-06-03 14:32:07 -0700
commitd6d3b7cbc5621519d54d231aba13aa4ab50651aa (patch)
tree53cfcb6b51131184a2a7a5eea2b645a52af34f31 /chip
parentf8e12df9dfb8d028cee1e9a039c4cbcebc608385 (diff)
downloadchrome-ec-d6d3b7cbc5621519d54d231aba13aa4ab50651aa.tar.gz
Add wireless switch control for WWAN
Haswell devices have EC control of the WWAN power rail. Expose a new wireless switch enable flag for this under the existing wirless enable command. This change also abstracts the wireless enable function to call a per-board handler so the different boards can do the right thing based on their GPIO setup. The haswell boards will switch WLAN radio and WWAN power rails based on the switch inputs. These boards do not have EC control of bluetooth radio/rail power. WLAN (power and radio) still defaults to enabled. Disabling with ectool will turn off the radio but keep the power enabled in order to prevent the PCIe device from disappearing. WWAN (power) still defaults to disabled. Disabling with ectool will turn off the power rail. BUG=chrome-os-partner:19871 BRANCH=none TEST=manual: boot on slippy DEFAULT: > ectool gpioget pp3300_wlan_en GPIO pp3300_wlan_en = 1 > ectool gpioget wlan_off_l GPIO wlan_off_l = 1 > ectool gpioget pp3300_lte_en GPIO pp3300_lte_en = 0 ENABLE WWAN: > ectool wireless 0x7 Success. > ectool gpioget pp3300_lte_en GPIO pp3300_lte_en = 1 DISABLE WLAN (radio): > ectool wireless 0x7 Success. > ectool gpioget pp3300_wlan_en GPIO pp3300_wlan_en = 1 > ectool gpioget wlan_off_l GPIO wlan_off_l = 0 Change-Id: I6f760b8cf5ab47d8f7f0dd8cd4d3e6563464043e Signed-off-by: Duncan Laurie <dlaurie@chromium.org> Reviewed-on: https://gerrit.chromium.org/gerrit/57215 Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'chip')
-rw-r--r--chip/lm4/switch.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/chip/lm4/switch.c b/chip/lm4/switch.c
index 3cfb4e8568..0d20f9cd25 100644
--- a/chip/lm4/switch.c
+++ b/chip/lm4/switch.c
@@ -546,15 +546,8 @@ DECLARE_HOST_COMMAND(EC_CMD_SWITCH_ENABLE_BKLIGHT,
static int switch_command_enable_wireless(struct host_cmd_handler_args *args)
{
-#ifdef BOARD_link /* HEY: Slippy? */
const struct ec_params_switch_enable_wireless *p = args->params;
-
- gpio_set_level(GPIO_RADIO_ENABLE_WLAN,
- p->enabled & EC_WIRELESS_SWITCH_WLAN);
- gpio_set_level(GPIO_RADIO_ENABLE_BT,
- p->enabled & EC_WIRELESS_SWITCH_BLUETOOTH);
-#endif
-
+ board_enable_wireless(p->enabled);
return EC_RES_SUCCESS;
}
DECLARE_HOST_COMMAND(EC_CMD_SWITCH_ENABLE_WIRELESS,