projects
/
linux
/
.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
65ab45b
)
ASoC: Intel: sof_sdw: Add quirks for some new Dell laptops
author
Charles Keepax
<ckeepax@opensource.cirrus.com>
Mon, 27 May 2024 19:35:44 +0000
(14:35 -0500)
committer
Mark Brown
<broonie@kernel.org>
Wed, 29 May 2024 10:10:52 +0000
(11:10 +0100)
Add quirks for some new Dell laptops using Cirrus amplifiers in a bridge
configuration.
Reviewed-by: Bard Liao <yung-chuan.liao@linux.intel.com>
Signed-off-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Link:
https://msgid.link/r/20240527193552.165567-11-pierre-louis.bossart@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/intel/boards/sof_sdw.c
patch
|
blob
|
history
diff --git
a/sound/soc/intel/boards/sof_sdw.c
b/sound/soc/intel/boards/sof_sdw.c
index 0516ae660824c8e72f1890273463bfced35337f5..b646b32dd311941ae00c0612ccf8f6263d8b669d 100644
(file)
--- a/
sound/soc/intel/boards/sof_sdw.c
+++ b/
sound/soc/intel/boards/sof_sdw.c
@@
-505,6
+505,22
@@
static const struct dmi_system_id sof_sdw_quirk_table[] = {
},
.driver_data = (void *)(RT711_JD2),
},
+ {
+ .callback = sof_sdw_quirk_cb,
+ .matches = {
+ DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
+ DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0CE3")
+ },
+ .driver_data = (void *)(SOF_SIDECAR_AMPS),
+ },
+ {
+ .callback = sof_sdw_quirk_cb,
+ .matches = {
+ DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
+ DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0CE4")
+ },
+ .driver_data = (void *)(SOF_SIDECAR_AMPS),
+ },
{}
};