diff options
author | YH Lin <yueherngl@google.com> | 2023-09-29 09:43:25 -0700 |
---|---|---|
committer | Subrata Banik <subratabanik@google.com> | 2023-10-18 05:46:34 +0000 |
commit | b5b79c8ea9860a21559eba3f229edf39116d253f (patch) | |
tree | d6e3ccf5023782390d9f8984d1dcf0d339c6e187 /src/mainboard/google/rex/variants | |
parent | 6e620c27b9bf7c2e5c201bee9d8873ca5a191a05 (diff) |
mb/google/rex/var/karis: add hook for WiFi SAR table
WiFi SAR table for karis will be place into the CBFS later on and
as a result adding the hook in coreboot to make use of the SAR
table once the table is available.
BUG=b:290689824
TEST=emerge-rex coreboot
Change-Id: Ic989024ab9eb0fc439fc701c335a85986c4cfec5
Signed-off-by: YH Lin <yueherngl@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/78260
Reviewed-by: Eric Lai <ericllai@google.com>
Reviewed-by: Subrata Banik <subratabanik@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google/rex/variants')
-rw-r--r-- | src/mainboard/google/rex/variants/karis/Makefile.inc | 1 | ||||
-rw-r--r-- | src/mainboard/google/rex/variants/karis/variant.c | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/src/mainboard/google/rex/variants/karis/Makefile.inc b/src/mainboard/google/rex/variants/karis/Makefile.inc index 263854084b..5595937af7 100644 --- a/src/mainboard/google/rex/variants/karis/Makefile.inc +++ b/src/mainboard/google/rex/variants/karis/Makefile.inc @@ -4,3 +4,4 @@ bootblock-y += gpio.c romstage-y += gpio.c ramstage-$(CONFIG_FW_CONFIG) += fw_config.c ramstage-y += gpio.c +ramstage-y += variant.c diff --git a/src/mainboard/google/rex/variants/karis/variant.c b/src/mainboard/google/rex/variants/karis/variant.c new file mode 100644 index 0000000000..308eea6a28 --- /dev/null +++ b/src/mainboard/google/rex/variants/karis/variant.c @@ -0,0 +1,11 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + +#include <baseboard/variants.h> +#include <chip.h> +#include <fw_config.h> +#include <sar.h> + +const char *get_wifi_sar_cbfs_filename(void) +{ + return get_wifi_sar_fw_config_filename(FW_CONFIG_FIELD(WIFI_TYPE)); +} |