From 5dff66bfd3388ed521720c1141bc24bbc7aea3d4 Mon Sep 17 00:00:00 2001 From: Kevin Chang Date: Mon, 7 Feb 2022 15:23:04 +0800 Subject: [PATCH] mb/google/brya/var/taeko: Add WiFi SAR table for taeko Add WiFi SAR table for taeko. BUG=b:212405459 TEST=build FW and checked SAR table can load by WiFi driver. Signed-off-by: Kevin Chang Change-Id: I061dc798ae7177d05bc50648cfda46a3eec2c912 Reviewed-on: https://review.coreboot.org/c/coreboot/+/61665 Tested-by: build bot (Jenkins) Reviewed-by: Tim Wawrzynczak --- src/mainboard/google/brya/Kconfig.name | 2 ++ src/mainboard/google/brya/variants/taeko/Makefile.inc | 2 ++ src/mainboard/google/brya/variants/taeko/variant.c | 8 ++++++++ src/mainboard/google/brya/variants/taeko4es/Makefile.inc | 2 ++ src/mainboard/google/brya/variants/taeko4es/variant.c | 8 ++++++++ 5 files changed, 22 insertions(+) create mode 100644 src/mainboard/google/brya/variants/taeko/variant.c create mode 100644 src/mainboard/google/brya/variants/taeko4es/variant.c diff --git a/src/mainboard/google/brya/Kconfig.name b/src/mainboard/google/brya/Kconfig.name index 0a3b1d913b..769b402186 100644 --- a/src/mainboard/google/brya/Kconfig.name +++ b/src/mainboard/google/brya/Kconfig.name @@ -128,12 +128,14 @@ config BOARD_GOOGLE_TAEKO select BOARD_GOOGLE_BASEBOARD_BRYA select DRIVERS_GENERIC_BAYHUB_LV2 select DRIVERS_GENESYSLOGIC_GL9763E + select CHROMEOS_WIFI_SAR if CHROMEOS config BOARD_GOOGLE_TAEKO4ES bool "-> Taeko4ES" select BOARD_GOOGLE_BASEBOARD_BRYA select DRIVERS_GENERIC_BAYHUB_LV2 select DRIVERS_GENESYSLOGIC_GL9763E + select CHROMEOS_WIFI_SAR if CHROMEOS config BOARD_GOOGLE_TANIKS bool "-> Taniks" diff --git a/src/mainboard/google/brya/variants/taeko/Makefile.inc b/src/mainboard/google/brya/variants/taeko/Makefile.inc index c61f75a647..396e5be222 100644 --- a/src/mainboard/google/brya/variants/taeko/Makefile.inc +++ b/src/mainboard/google/brya/variants/taeko/Makefile.inc @@ -7,3 +7,5 @@ romstage-y += memory.c ramstage-y += gpio.c ramstage-$(CONFIG_FW_CONFIG) += fw_config.c + +ramstage-$(CONFIG_FW_CONFIG) += variant.c diff --git a/src/mainboard/google/brya/variants/taeko/variant.c b/src/mainboard/google/brya/variants/taeko/variant.c new file mode 100644 index 0000000000..6a79780f6e --- /dev/null +++ b/src/mainboard/google/brya/variants/taeko/variant.c @@ -0,0 +1,8 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + +#include + +const char *get_wifi_sar_cbfs_filename(void) +{ + return "wifi_sar_0.hex"; +} diff --git a/src/mainboard/google/brya/variants/taeko4es/Makefile.inc b/src/mainboard/google/brya/variants/taeko4es/Makefile.inc index c61f75a647..396e5be222 100644 --- a/src/mainboard/google/brya/variants/taeko4es/Makefile.inc +++ b/src/mainboard/google/brya/variants/taeko4es/Makefile.inc @@ -7,3 +7,5 @@ romstage-y += memory.c ramstage-y += gpio.c ramstage-$(CONFIG_FW_CONFIG) += fw_config.c + +ramstage-$(CONFIG_FW_CONFIG) += variant.c diff --git a/src/mainboard/google/brya/variants/taeko4es/variant.c b/src/mainboard/google/brya/variants/taeko4es/variant.c new file mode 100644 index 0000000000..6a79780f6e --- /dev/null +++ b/src/mainboard/google/brya/variants/taeko4es/variant.c @@ -0,0 +1,8 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + +#include + +const char *get_wifi_sar_cbfs_filename(void) +{ + return "wifi_sar_0.hex"; +}