Rui Zhou has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/85044?usp=email )
Change subject: mb/google/nissa/var/rull: when using pcie wifi7, turn off CNVI BT ......................................................................
mb/google/nissa/var/rull: when using pcie wifi7, turn off CNVI BT
When we use PCIE wifi7, CNVI BT and BT offload should be turned off.
BUG=b:374629673 BRANCH=None TEST=emerge-nissa coreboot chromeos-bootimage
Change-Id: I0adc446220051da59560c9a59d6f334b3a11ac7b --- M src/mainboard/google/brya/variants/rull/variant.c 1 file changed, 4 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/44/85044/1
diff --git a/src/mainboard/google/brya/variants/rull/variant.c b/src/mainboard/google/brya/variants/rull/variant.c index 8bb7fac..31367e7 100644 --- a/src/mainboard/google/brya/variants/rull/variant.c +++ b/src/mainboard/google/brya/variants/rull/variant.c @@ -22,6 +22,10 @@ printk(BIOS_INFO, "CNVi bluetooth enabled by fw_config\n"); config->cnvi_bt_core = true; config->cnvi_bt_audio_offload = true; + } else if(fw_config_probe(FW_CONFIG(WIFI, WIFI_PCIE_WIFI7))) { + printk(BIOS_INFO, "CNVi bluetooth disabled by fw_config\n"); + config->cnvi_bt_core = false; + config->cnvi_bt_audio_offload = false; } }