mb/google/brya/var/omniknight: Add WIFI SAR table

Add WIFI SAR table for omniknight.

BUG=b:320172979
TEST=FW_NAME=omnigul emerge-brya coreboot

Change-Id: I70e79577612b3d5c4dc0f92211f87cbea0532d5d
Signed-off-by: jamie_chen <jamie_chen@compal.corp-partner.google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/80152
Reviewed-by: Subrata Banik <subratabanik@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Eric Lai <ericllai@google.com>
Reviewed-by: Sumeet R Pawnikar <sumeet.r.pawnikar@intel.com>
This commit is contained in:
jamie_chen 2024-01-24 11:46:21 +08:00 committed by Felix Held
parent 2820d2a327
commit 6aa0da7b73
2 changed files with 11 additions and 1 deletions

View file

@ -4,6 +4,10 @@ fw_config
option STORAGE_UFS 1
option STORAGE_NVME 2
end
field WIFI_SAR_TABLE 5
option OMNIGUL_WIFI_SAR_0 0
option OMNIKNIGHT_WIFI_SAR_1 1
end
field FINGERPRINT 9
option DISABLE_FP 0
option ENABLE_FP 1

View file

@ -1,8 +1,14 @@
/* SPDX-License-Identifier: GPL-2.0-only */
#include <sar.h>
#include <fw_config.h>
const char *get_wifi_sar_cbfs_filename(void)
{
return "wifi_sar_0.hex";
if (fw_config_probe(FW_CONFIG(WIFI_SAR_TABLE, OMNIGUL_WIFI_SAR_0)))
return "wifi_sar_0.hex";
if (fw_config_probe(FW_CONFIG(WIFI_SAR_TABLE, OMNIKNIGHT_WIFI_SAR_1)))
return "wifi_sar_1.hex";
return NULL;
}