diff mbox series

ALSA: hda: add Intel 5 Series / 3400 PCI DID

Message ID 20220912183716.2126312-1-kai.vehmanen@linux.intel.com (mailing list archive)
State New, archived
Headers show
Series ALSA: hda: add Intel 5 Series / 3400 PCI DID | expand

Commit Message

Kai Vehmanen Sept. 12, 2022, 6:37 p.m. UTC
Handle 0x3b57 variant with same AZX_DCAPS_INTEL_PCH_NOPM
capabilities as 0x3b56. In practise this allow use of HDMI/DP
display audio via i915.

BugLink: https://gitlab.freedesktop.org/drm/intel/-/issues/2751
Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
---
 sound/pci/hda/hda_intel.c | 2 ++
 1 file changed, 2 insertions(+)


base-commit: 0186f7325909dec0cb52814384062f6de3b87941

Comments

Takashi Iwai Sept. 13, 2022, 5:18 a.m. UTC | #1
On Mon, 12 Sep 2022 20:37:16 +0200,
Kai Vehmanen wrote:
> 
> Handle 0x3b57 variant with same AZX_DCAPS_INTEL_PCH_NOPM
> capabilities as 0x3b56. In practise this allow use of HDMI/DP
> display audio via i915.
> 
> BugLink: https://gitlab.freedesktop.org/drm/intel/-/issues/2751
> Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>

Thanks, applied.


Takashi
diff mbox series

Patch

diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c
index 7e605ce43f41..2a93bc64c2d8 100644
--- a/sound/pci/hda/hda_intel.c
+++ b/sound/pci/hda/hda_intel.c
@@ -2543,6 +2543,8 @@  static const struct pci_device_id azx_ids[] = {
 	/* 5 Series/3400 */
 	{ PCI_DEVICE(0x8086, 0x3b56),
 	  .driver_data = AZX_DRIVER_SCH | AZX_DCAPS_INTEL_PCH_NOPM },
+	{ PCI_DEVICE(0x8086, 0x3b57),
+	  .driver_data = AZX_DRIVER_SCH | AZX_DCAPS_INTEL_PCH_NOPM },
 	/* Poulsbo */
 	{ PCI_DEVICE(0x8086, 0x811b),
 	  .driver_data = AZX_DRIVER_SCH | AZX_DCAPS_INTEL_PCH_BASE },