mb/google/nissa/var/pujjolo/pujjoquince: Add wifi sar table

Add AX211 and BE200 wifi sar table for pujjolo/pujjoquince
wifi sar config. Use fw_config to separate different wifi card settings.

WIFI_SAR_TABLE_PUJJOLO_AX211		:0
WIFI_SAR_TABLE_PUJJOLO_BE200		:1
WIFI_SAR_TABLE_PUJJOQUINCE_AX211	:2
option WIFI_SAR_TABLE_PUJJOQUINCE_BE200	:3

BUG=b:428071905
Test=emerge-nissa coreboot

Change-Id: Iea8b32a19c4c2116afb5e5e4014dbc32e484ae3e
Signed-off-by: Luca Lai <luca.lai@lcfc.corp-partner.google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/88908
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Eric Lai <ericllai@google.com>
This commit is contained in:
Luca Lai 2025-08-23 01:14:58 +08:00 committed by Subrata Banik
commit f94469c2a9
2 changed files with 9 additions and 2 deletions

View file

@ -5,8 +5,10 @@ fw_config
option 5G_PRESENT 2
end
field WIFI_SAR_ID 17 20
option WIFI_SAR_TABLE_AX211 0
option WIFI_SAR_TABLE_AX203 1
option WIFI_SAR_TABLE_PUJJOLO_AX211 0
option WIFI_SAR_TABLE_PUJJOLO_BE200 1
option WIFI_SAR_TABLE_PUJJOQUINCE_AX211 2
option WIFI_SAR_TABLE_PUJJOQUINCE_BE200 3
end
field PDC 21 22
option PDC_PUJJOQUINCE 0

View file

@ -2,6 +2,7 @@
#include <baseboard/variants.h>
#include <chip.h>
#include <sar.h>
#include <fw_config.h>
#include <soc/gpio_soc_defs.h>
#include <intelblocks/graphics.h>
@ -9,6 +10,10 @@
#include <acpi/acpigen.h>
#include <variant/gpio.h>
const char *get_wifi_sar_cbfs_filename(void)
{
return get_wifi_sar_fw_config_filename(FW_CONFIG_FIELD(WIFI_SAR_ID));
}
void variant_generate_s0ix_hook(enum s0ix_entry entry)
{