Skip to content

Commit 1b03391

Browse files
peterjakubekbroonie
authored andcommitted
ASoC: Intel: sof_sdw: Add quirk for Alienware Area 51 (2025) 0CCC SKU
Add DMI quirk entry for Alienware systems with SKU "0CCC" to enable proper speaker codec configuration (SOC_SDW_CODEC_SPKR). This system requires the same audio configuration as some existing Dell systems. Without this patch, the laptop's speakers and microphone will not work. Signed-off-by: Peter Jakubek <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Mark Brown <[email protected]>
1 parent 9843cf7 commit 1b03391

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

sound/soc/intel/boards/sof_sdw.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -741,6 +741,14 @@ static const struct dmi_system_id sof_sdw_quirk_table[] = {
741741
},
742742
.driver_data = (void *)(SOC_SDW_CODEC_SPKR),
743743
},
744+
{
745+
.callback = sof_sdw_quirk_cb,
746+
.matches = {
747+
DMI_MATCH(DMI_SYS_VENDOR, "Alienware"),
748+
DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0CCC")
749+
},
750+
.driver_data = (void *)(SOC_SDW_CODEC_SPKR),
751+
},
744752
/* Pantherlake devices*/
745753
{
746754
.callback = sof_sdw_quirk_cb,

0 commit comments

Comments
 (0)