* [PATCH 1/2] ALSA: hda/hdmi: keep codec entries in numerical order
2023-07-21 13:57 [PATCH 0/2] ALSA: hda/hdmi: Add Intel Lunar Lake support Peter Ujfalusi
@ 2023-07-21 13:57 ` Peter Ujfalusi
2023-07-21 13:57 ` [PATCH 2/2] ALSA: hda: add HDMI codec ID for Intel LNL Peter Ujfalusi
2023-07-21 14:47 ` [PATCH 0/2] ALSA: hda/hdmi: Add Intel Lunar Lake support Takashi Iwai
2 siblings, 0 replies; 4+ messages in thread
From: Peter Ujfalusi @ 2023-07-21 13:57 UTC (permalink / raw)
To: tiwai, perex
Cc: kai.vehmanen, pierre-louis.bossart, yung-chuan.liao, alsa-devel
From: Kai Vehmanen <kai.vehmanen@linux.intel.com>
Switch order of Intel MTL and RPL codec entries to keep the codec device
id list nicely ordered. Also use the opportunity to fix the naming
to the convention used elsewhere in the drivers.
Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
Reviewed-by: Bard Liao <yung-chuan.liao@linux.intel.com>
Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Signed-off-by: Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
---
sound/pci/hda/patch_hdmi.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sound/pci/hda/patch_hdmi.c b/sound/pci/hda/patch_hdmi.c
index 260d3e64f658..5139b6e087b3 100644
--- a/sound/pci/hda/patch_hdmi.c
+++ b/sound/pci/hda/patch_hdmi.c
@@ -4632,8 +4632,8 @@ HDA_CODEC_ENTRY(0x80862819, "DG2 HDMI", patch_i915_tgl_hdmi),
HDA_CODEC_ENTRY(0x8086281a, "Jasperlake HDMI", patch_i915_icl_hdmi),
HDA_CODEC_ENTRY(0x8086281b, "Elkhartlake HDMI", patch_i915_icl_hdmi),
HDA_CODEC_ENTRY(0x8086281c, "Alderlake-P HDMI", patch_i915_adlp_hdmi),
-HDA_CODEC_ENTRY(0x8086281f, "Raptorlake-P HDMI", patch_i915_adlp_hdmi),
-HDA_CODEC_ENTRY(0x8086281d, "Meteorlake HDMI", patch_i915_adlp_hdmi),
+HDA_CODEC_ENTRY(0x8086281d, "Meteor Lake HDMI", patch_i915_adlp_hdmi),
+HDA_CODEC_ENTRY(0x8086281f, "Raptor Lake P HDMI", patch_i915_adlp_hdmi),
HDA_CODEC_ENTRY(0x80862880, "CedarTrail HDMI", patch_generic_hdmi),
HDA_CODEC_ENTRY(0x80862882, "Valleyview2 HDMI", patch_i915_byt_hdmi),
HDA_CODEC_ENTRY(0x80862883, "Braswell HDMI", patch_i915_byt_hdmi),
--
2.41.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 2/2] ALSA: hda: add HDMI codec ID for Intel LNL
2023-07-21 13:57 [PATCH 0/2] ALSA: hda/hdmi: Add Intel Lunar Lake support Peter Ujfalusi
2023-07-21 13:57 ` [PATCH 1/2] ALSA: hda/hdmi: keep codec entries in numerical order Peter Ujfalusi
@ 2023-07-21 13:57 ` Peter Ujfalusi
2023-07-21 14:47 ` [PATCH 0/2] ALSA: hda/hdmi: Add Intel Lunar Lake support Takashi Iwai
2 siblings, 0 replies; 4+ messages in thread
From: Peter Ujfalusi @ 2023-07-21 13:57 UTC (permalink / raw)
To: tiwai, perex
Cc: kai.vehmanen, pierre-louis.bossart, yung-chuan.liao, alsa-devel
From: Kai Vehmanen <kai.vehmanen@linux.intel.com>
Add HDMI codec ID for Intel Lunar Lake platform.
Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
Reviewed-by: Bard Liao <yung-chuan.liao@linux.intel.com>
Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Signed-off-by: Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
---
sound/pci/hda/patch_hdmi.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/sound/pci/hda/patch_hdmi.c b/sound/pci/hda/patch_hdmi.c
index 5139b6e087b3..1cde2a69bdb4 100644
--- a/sound/pci/hda/patch_hdmi.c
+++ b/sound/pci/hda/patch_hdmi.c
@@ -4634,6 +4634,7 @@ HDA_CODEC_ENTRY(0x8086281b, "Elkhartlake HDMI", patch_i915_icl_hdmi),
HDA_CODEC_ENTRY(0x8086281c, "Alderlake-P HDMI", patch_i915_adlp_hdmi),
HDA_CODEC_ENTRY(0x8086281d, "Meteor Lake HDMI", patch_i915_adlp_hdmi),
HDA_CODEC_ENTRY(0x8086281f, "Raptor Lake P HDMI", patch_i915_adlp_hdmi),
+HDA_CODEC_ENTRY(0x80862820, "Lunar Lake HDMI", patch_i915_adlp_hdmi),
HDA_CODEC_ENTRY(0x80862880, "CedarTrail HDMI", patch_generic_hdmi),
HDA_CODEC_ENTRY(0x80862882, "Valleyview2 HDMI", patch_i915_byt_hdmi),
HDA_CODEC_ENTRY(0x80862883, "Braswell HDMI", patch_i915_byt_hdmi),
--
2.41.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 0/2] ALSA: hda/hdmi: Add Intel Lunar Lake support
2023-07-21 13:57 [PATCH 0/2] ALSA: hda/hdmi: Add Intel Lunar Lake support Peter Ujfalusi
2023-07-21 13:57 ` [PATCH 1/2] ALSA: hda/hdmi: keep codec entries in numerical order Peter Ujfalusi
2023-07-21 13:57 ` [PATCH 2/2] ALSA: hda: add HDMI codec ID for Intel LNL Peter Ujfalusi
@ 2023-07-21 14:47 ` Takashi Iwai
2 siblings, 0 replies; 4+ messages in thread
From: Takashi Iwai @ 2023-07-21 14:47 UTC (permalink / raw)
To: Peter Ujfalusi
Cc: tiwai, perex, kai.vehmanen, pierre-louis.bossart, yung-chuan.liao,
alsa-devel
On Fri, 21 Jul 2023 15:57:20 +0200,
Peter Ujfalusi wrote:
>
> Hi,
>
> after fixing the ordering, add the HDMI codec ID for LNL
>
> Regards,
> Peter
> ---
> Kai Vehmanen (2):
> ALSA: hda/hdmi: keep codec entries in numerical order
> ALSA: hda: add HDMI codec ID for Intel LNL
Applied both patches now. Thanks.
Takashi
^ permalink raw reply [flat|nested] 4+ messages in thread