Skip to content

Commit 2bf34f9

Browse files
Naveen Manoharnaveen-manohar
authored andcommitted
ASoC: Intel: sof_sdw: Add support for wclrvp & ocelot in WCL platform
Add an entry in the soundwire quirk table for Wildcat boards to support WCL RVP Signed-off-by: Naveen Manohar <naveen.m@intel.com>
1 parent 15b3016 commit 2bf34f9

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

sound/soc/intel/boards/sof_sdw.c

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -778,6 +778,24 @@ static const struct dmi_system_id sof_sdw_quirk_table[] = {
778778
SOF_BT_OFFLOAD_SSP(2) |
779779
SOF_SSP_BT_OFFLOAD_PRESENT),
780780
},
781+
/* Wildcatlake devices*/
782+
{
783+
.callback = sof_sdw_quirk_cb,
784+
.matches = {
785+
DMI_MATCH(DMI_PRODUCT_FAMILY, "Intel_wclrvp"),
786+
},
787+
.driver_data = (void *)(SOC_SDW_PCH_DMIC),
788+
},
789+
{
790+
.callback = sof_sdw_quirk_cb,
791+
.matches = {
792+
DMI_MATCH(DMI_SYS_VENDOR, "Google"),
793+
DMI_MATCH(DMI_PRODUCT_NAME, "Ocelot"),
794+
},
795+
.driver_data = (void *)(SOC_SDW_PCH_DMIC |
796+
SOF_BT_OFFLOAD_SSP(2) |
797+
SOF_SSP_BT_OFFLOAD_PRESENT),
798+
},
781799
{}
782800
};
783801

0 commit comments

Comments
 (0)