mb/google/brya/variants/gimble: Enable Bluetooth offload support

Enable CnviBtAudioOffload UPD

BUG=b:199180746
TEST=emerge-byra coreboot

Signed-off-by: Mac Chiang <mac.chiang@intel.com>
Change-Id: Ic507b1d0f7c2f38de8d24247cd677b897a7463f1
Reviewed-on: https://review.coreboot.org/c/coreboot/+/58514
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
This commit is contained in:
Mac Chiang 2021-10-21 12:19:01 +08:00 committed by Tim Wawrzynczak
parent e1f392ea34
commit 299649a31c
1 changed files with 9 additions and 0 deletions

View File

@ -1,8 +1,17 @@
/* SPDX-License-Identifier: GPL-2.0-only */
#include <sar.h>
#include <chip.h>
#include <fw_config.h>
#include <baseboard/variants.h>
const char *get_wifi_sar_cbfs_filename(void)
{
return "wifi_sar_0.hex";
}
void variant_update_soc_chip_config(struct soc_intel_alderlake_config *config)
{
config->CnviBtAudioOffload = fw_config_probe(FW_CONFIG(AUDIO,
MAX98390_ALC5682I_I2S_SSP1));
}