diff options
author | Gongjun Song <gongjun.song@intel.com> | 2021-11-05 10:26:41 +0800 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2021-11-05 17:04:15 +0000 |
commit | 6fef4c2f458680399b7c512cb810c1e1784d7444 (patch) | |
tree | c09b820d152e9528dc5b5aeabe12fa26260991fd | |
parent | cf304329e4afb97ffabce232eadaba94f025641d (diff) | |
download | linux-stable-6fef4c2f458680399b7c512cb810c1e1784d7444.tar.gz linux-stable-6fef4c2f458680399b7c512cb810c1e1784d7444.tar.bz2 linux-stable-6fef4c2f458680399b7c512cb810c1e1784d7444.zip |
ASoC: Intel: sof_sdw: Add support for SKU 0B11 product
This product supports a SoundWire headset codec, SoundWire
capture from local microphones and two SoundWire amplifiers.
Signed-off-by: Gongjun Song <gongjun.song@intel.com>
Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Reviewed-by: Rander Wang <rander.wang@intel.com>
Signed-off-by: Bard Liao <yung-chuan.liao@linux.intel.com>
Link: https://lore.kernel.org/r/20211105022646.26305-5-yung-chuan.liao@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/intel/boards/sof_sdw.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sound/soc/intel/boards/sof_sdw.c b/sound/soc/intel/boards/sof_sdw.c index 55c3e5935585..d0bea028b9b7 100644 --- a/sound/soc/intel/boards/sof_sdw.c +++ b/sound/soc/intel/boards/sof_sdw.c @@ -278,6 +278,16 @@ static const struct dmi_system_id sof_sdw_quirk_table[] = { RT711_JD2 | SOF_SDW_FOUR_SPK), }, + { + .callback = sof_sdw_quirk_cb, + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"), + DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0B11") + }, + .driver_data = (void *)(SOF_SDW_TGL_HDMI | + RT711_JD2 | + SOF_SDW_FOUR_SPK), + }, {} }; |