Skip to content

Commit d3e7529

Browse files
naveen-manoharbroonie
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> Reviewed-by: Péter Ujfalusi <peter.ujfalusi@linux.intel.com> Signed-off-by: Bard Liao <yung-chuan.liao@linux.intel.com> Link: https://patch.msgid.link/20250521034840.8083-1-yung-chuan.liao@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
1 parent 831962e commit d3e7529

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
@@ -759,6 +759,24 @@ static const struct dmi_system_id sof_sdw_quirk_table[] = {
759759
SOF_BT_OFFLOAD_SSP(2) |
760760
SOF_SSP_BT_OFFLOAD_PRESENT),
761761
},
762+
/* Wildcatlake devices*/
763+
{
764+
.callback = sof_sdw_quirk_cb,
765+
.matches = {
766+
DMI_MATCH(DMI_PRODUCT_FAMILY, "Intel_wclrvp"),
767+
},
768+
.driver_data = (void *)(SOC_SDW_PCH_DMIC),
769+
},
770+
{
771+
.callback = sof_sdw_quirk_cb,
772+
.matches = {
773+
DMI_MATCH(DMI_SYS_VENDOR, "Google"),
774+
DMI_MATCH(DMI_PRODUCT_NAME, "Ocelot"),
775+
},
776+
.driver_data = (void *)(SOC_SDW_PCH_DMIC |
777+
SOF_BT_OFFLOAD_SSP(2) |
778+
SOF_SSP_BT_OFFLOAD_PRESENT),
779+
},
762780
{}
763781
};
764782

0 commit comments

Comments
 (0)