diff options
author | Duncan Laurie <dlaurie@chromium.org> | 2017-04-10 23:10:51 -0700 |
---|---|---|
committer | Duncan Laurie <dlaurie@chromium.org> | 2017-04-13 09:09:45 +0200 |
commit | 654c8de9f10d9d8304e69d556585608b697d47da (patch) | |
tree | 715796238d1120e13c5de0f50de5061d45a605bf | |
parent | 1fe32d6bb2579b8c1d14edc31724b758a071d79a (diff) | |
download | coreboot-654c8de9f10d9d8304e69d556585608b697d47da.tar.xz |
google/eve: Enable WiFi SAR feature
Enable the Intel WiFi SAR feature for Eve, which will be used to
provide wifi power tables based on values read from VPD.
This is enabled based on CONFIG_CHROMEOS because it relies on the
presence of VPD code from vendorcode/google/chromeos.
BUG=b:36727652
BRANCH=none
TEST=test on Eve by setting "wifi_sar" in VPD and ensuring that
the ACPI WIFI device gets the expected "WRDS" and "EWRD" tables
with the values that were set in VPD.
Change-Id: I11c129baca891221177575108ac09ba1707b516e
Signed-off-by: Duncan Laurie <dlaurie@chromium.org>
Reviewed-on: https://review.coreboot.org/19241
Tested-by: build bot (Jenkins)
Reviewed-by: Furquan Shaikh <furquan@google.com>
Reviewed-by: Philippe Mathieu-Daudé <philippe.mathieu.daude@gmail.com>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
-rw-r--r-- | src/mainboard/google/eve/Kconfig | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mainboard/google/eve/Kconfig b/src/mainboard/google/eve/Kconfig index 1d1fa7b133..ccffae50c5 100644 --- a/src/mainboard/google/eve/Kconfig +++ b/src/mainboard/google/eve/Kconfig @@ -27,6 +27,11 @@ config VBOOT select VBOOT_LID_SWITCH select MRC_CLEAR_NORMAL_CACHE_ON_RECOVERY_RETRAIN +config CHROMEOS + select DSAR_ENABLE + select SAR_ENABLE + select USE_SAR + config DRIVER_TPM_I2C_BUS hex default 0x1 |