Skip to content

Commit 139769f

Browse files
committed
ASoC: Intel: sof_sdw: Add quirk to exclude RT722 speaker
This SKU does not use the RT722 internal speaker. Add SOC_SDW_CODEC_SPKR to exclude via codec_info_list.dais.quirk_exclude. Other SKUs are not affected and continue to function whether the SDCA property is present. Signed-off-by: Mac Chiang <mac.chiang@intel.com>
1 parent 06c19ed commit 139769f

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

sound/soc/intel/boards/sof_sdw.c

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -768,6 +768,17 @@ static const struct dmi_system_id sof_sdw_quirk_table[] = {
768768
},
769769
.driver_data = (void *)(SOC_SDW_PCH_DMIC),
770770
},
771+
{
772+
.callback = sof_sdw_quirk_cb,
773+
.matches = {
774+
DMI_MATCH(DMI_SYS_VENDOR, "Google"),
775+
DMI_MATCH(DMI_PRODUCT_NAME, "Francka"),
776+
},
777+
.driver_data = (void *)(SOC_SDW_CODEC_SPKR |
778+
SOC_SDW_PCH_DMIC |
779+
SOF_BT_OFFLOAD_SSP(2) |
780+
SOF_SSP_BT_OFFLOAD_PRESENT),
781+
},
771782
{
772783
.callback = sof_sdw_quirk_cb,
773784
.matches = {

0 commit comments

Comments
 (0)