mirror of
https://abf.rosa.ru/djam/kernel-5.15.git
synced 2025-02-23 18:42:55 +00:00
69 lines
2 KiB
Diff
69 lines
2 KiB
Diff
![]() |
From ba8dd3ed39111ad502e4bcf4f163aba178395ef2 Mon Sep 17 00:00:00 2001
|
||
|
From: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
|
||
|
Date: Wed, 6 Apr 2022 14:04:18 -0500
|
||
|
Subject: [PATCH 434/435] ALSA: hda: intel-dsp-config: update AlderLake PCI IDs
|
||
|
|
||
|
Add missing AlderLake-PS and RaptorLake-S PCI IDs (already in HDaudio
|
||
|
and SOF drivers), add comments and regroup by skew.
|
||
|
|
||
|
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
|
||
|
Reviewed-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
|
||
|
Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
|
||
|
Link: https://lore.kernel.org/r/20220406190418.245044-1-pierre-louis.bossart@linux.intel.com
|
||
|
Signed-off-by: Takashi Iwai <tiwai@suse.de>
|
||
|
|
||
|
[ mikhailnov:
|
||
|
copied from https://github.com/torvalds/linux/blob/d52eee988597ac2a2c5d17d842946616d7d41070/sound/hda/intel-dsp-config.c ]
|
||
|
---
|
||
|
sound/hda/intel-dsp-config.c | 22 ++++++++++++++++++++++
|
||
|
1 file changed, 22 insertions(+)
|
||
|
|
||
|
diff --git a/sound/hda/intel-dsp-config.c b/sound/hda/intel-dsp-config.c
|
||
|
index 036ba4889..3257dc8a3 100644
|
||
|
--- a/sound/hda/intel-dsp-config.c
|
||
|
+++ b/sound/hda/intel-dsp-config.c
|
||
|
@@ -368,18 +368,40 @@ static const struct config_entry config_table[] = {
|
||
|
|
||
|
/* Alder Lake */
|
||
|
#if IS_ENABLED(CONFIG_SND_SOC_SOF_ALDERLAKE)
|
||
|
+ /* Alderlake-S */
|
||
|
{
|
||
|
.flags = FLAG_SOF | FLAG_SOF_ONLY_IF_DMIC_OR_SOUNDWIRE,
|
||
|
.device = 0x7ad0,
|
||
|
},
|
||
|
+ /* RaptorLake-S */
|
||
|
+ {
|
||
|
+ .flags = FLAG_SOF | FLAG_SOF_ONLY_IF_DMIC_OR_SOUNDWIRE,
|
||
|
+ .device = 0x7a50,
|
||
|
+ },
|
||
|
+ /* Alderlake-P */
|
||
|
{
|
||
|
.flags = FLAG_SOF | FLAG_SOF_ONLY_IF_DMIC_OR_SOUNDWIRE,
|
||
|
.device = 0x51c8,
|
||
|
},
|
||
|
+ {
|
||
|
+ .flags = FLAG_SOF | FLAG_SOF_ONLY_IF_DMIC_OR_SOUNDWIRE,
|
||
|
+ .device = 0x51cd,
|
||
|
+ },
|
||
|
+ /* Alderlake-PS */
|
||
|
+ {
|
||
|
+ .flags = FLAG_SOF | FLAG_SOF_ONLY_IF_DMIC_OR_SOUNDWIRE,
|
||
|
+ .device = 0x51c9,
|
||
|
+ },
|
||
|
+ /* Alderlake-M */
|
||
|
{
|
||
|
.flags = FLAG_SOF | FLAG_SOF_ONLY_IF_DMIC_OR_SOUNDWIRE,
|
||
|
.device = 0x51cc,
|
||
|
},
|
||
|
+ /* Alderlake-N */
|
||
|
+ {
|
||
|
+ .flags = FLAG_SOF | FLAG_SOF_ONLY_IF_DMIC_OR_SOUNDWIRE,
|
||
|
+ .device = 0x54c8,
|
||
|
+ },
|
||
|
#endif
|
||
|
|
||
|
};
|
||
|
--
|
||
|
2.35.2
|
||
|
|