summaryrefslogtreecommitdiff
path: root/board/link/board.c
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 /board/link/board.c
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 'board/link/board.c')
-rw-r--r--board/link/board.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/board/link/board.c b/board/link/board.c
index e3cb7522ad..c0a4dd5108 100644
--- a/board/link/board.c
+++ b/board/link/board.c
@@ -5,8 +5,10 @@
/* EC for Link board configuration */
#include "adc.h"
+#include "board.h"
#include "chip_temp_sensor.h"
#include "common.h"
+#include "ec_commands.h"
#include "extpower.h"
#include "gpio.h"
#include "i2c.h"
@@ -202,3 +204,14 @@ void configure_fan_gpios(void)
/* PM6:7 alternate function 1 = channel 0 PWM/tach */
gpio_set_alternate_function(LM4_GPIO_M, 0xc0, 1);
}
+
+/**
+ * Set wireless switch state.
+ */
+void board_enable_wireless(uint8_t enabled)
+{
+ gpio_set_level(GPIO_RADIO_ENABLE_WLAN,
+ enabled & EC_WIRELESS_SWITCH_WLAN);
+ gpio_set_level(GPIO_RADIO_ENABLE_BT,
+ enabled & EC_WIRELESS_SWITCH_BLUETOOTH);
+}