John Zhao has uploaded this change for review. ( https://review.coreboot.org/27966
Change subject: mb/google/octopus: Enable SAR config for Intel 9560 module ......................................................................
mb/google/octopus: Enable SAR config for Intel 9560 module
Enable the GEO SAR feature for Octopus. Program wifi_sar VPD key. coreboot reads the VPD and creates the ACPI table as per the WGDS spec.
BUG=b:112288077 TEST=Program VPD key, extract acpi table ssdt and valiate WGDS entry.
Change-Id: I40a6fd9e0ec8b440996bf3389322fd89bcca15a4 Signed-off-by: John Zhao john.zhao@intel.com --- M 3rdparty/blobs M src/mainboard/google/octopus/Kconfig 2 files changed, 10 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/66/27966/1
diff --git a/3rdparty/blobs b/3rdparty/blobs index 372012e..c285102 160000 --- a/3rdparty/blobs +++ b/3rdparty/blobs @@ -1 +1 @@ -Subproject commit 372012e8e1d0d01f3e77ff73b118665b41ff68b6 +Subproject commit c2851026e72dcb7b8c1d19e750c0416a6abf41ce diff --git a/src/mainboard/google/octopus/Kconfig b/src/mainboard/google/octopus/Kconfig index dc58ec8..4831aaf 100644 --- a/src/mainboard/google/octopus/Kconfig +++ b/src/mainboard/google/octopus/Kconfig @@ -1,6 +1,7 @@
config BOARD_GOOGLE_BASEBOARD_OCTOPUS def_bool n + select CHROMEOS_WIFI_SAR if CHROMEOS select SOC_INTEL_GLK select BOARD_ROMSIZE_KB_16384 select DRIVERS_GENERIC_MAX98357A @@ -17,9 +18,17 @@ select SOC_ESPI select MAINBOARD_HAS_SPI_TPM_CR50 select MAINBOARD_HAS_TPM2 + select GEO_SAR_ENABLE if CHROMEOS_WIFI_SAR
if BOARD_GOOGLE_BASEBOARD_OCTOPUS
+config CHROMEOS_WIFI_SAR + bool + depends on CHROMEOS + select DSAR_ENABLE + select SAR_ENABLE + select USE_SAR + config BASEBOARD_OCTOPUS_LAPTOP def_bool n select SYSTEM_TYPE_LAPTOP