Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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>

authored by

Naveen Manohar and committed by
Mark Brown
d3e75291 831962e9

+18
+18
sound/soc/intel/boards/sof_sdw.c
··· 759 759 SOF_BT_OFFLOAD_SSP(2) | 760 760 SOF_SSP_BT_OFFLOAD_PRESENT), 761 761 }, 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 + }, 762 780 {} 763 781 }; 764 782