svn commit: r359114 - stable/11/sys/dev/sound/pci/hda
Oleksandr Tymoshenko
gonzo at FreeBSD.org
Thu Mar 19 02:22:09 UTC 2020
Author: gonzo
Date: Thu Mar 19 02:22:08 2020
New Revision: 359114
URL: https://svnweb.freebsd.org/changeset/base/359114
Log:
MFC r352775-r352776
r352775:
snd_hda: Add Intel Cannon Lake support
Add PCI ids for Intel Cannon Lake PCH
Tested on: HP Spectre x360 13-p0043dx
PR: 240574
Submitted by: Neel Chauhan <neel at neelc.org>
Reviewed by: imp, mizhka, ray
Differential Revision: https://reviews.freebsd.org/D21789
r352776:
snd_hda: Add Intel Cannon Lake support
Add missing header change ommitted in r352775
X-MFC-with: 352775
Modified:
stable/11/sys/dev/sound/pci/hda/hdac.c
stable/11/sys/dev/sound/pci/hda/hdac.h
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/sys/dev/sound/pci/hda/hdac.c
==============================================================================
--- stable/11/sys/dev/sound/pci/hda/hdac.c Thu Mar 19 01:50:24 2020 (r359113)
+++ stable/11/sys/dev/sound/pci/hda/hdac.c Thu Mar 19 02:22:08 2020 (r359114)
@@ -99,6 +99,7 @@ static const struct {
{ HDA_INTEL_KBLK, "Intel Kaby Lake", 0, 0 },
{ HDA_INTEL_KBLKH, "Intel Kaby Lake-H", 0, 0 },
{ HDA_INTEL_CFLK, "Intel Coffee Lake", 0, 0 },
+ { HDA_INTEL_CNLK, "Intel Cannon Lake", 0, 0 },
{ HDA_INTEL_82801F, "Intel 82801F", 0, 0 },
{ HDA_INTEL_63XXESB, "Intel 631x/632xESB", 0, 0 },
{ HDA_INTEL_82801G, "Intel 82801G", 0, 0 },
Modified: stable/11/sys/dev/sound/pci/hda/hdac.h
==============================================================================
--- stable/11/sys/dev/sound/pci/hda/hdac.h Thu Mar 19 01:50:24 2020 (r359113)
+++ stable/11/sys/dev/sound/pci/hda/hdac.h Thu Mar 19 02:22:08 2020 (r359114)
@@ -75,6 +75,7 @@
#define HDA_INTEL_KBLK HDA_MODEL_CONSTRUCT(INTEL, 0xa171)
#define HDA_INTEL_KBLKH HDA_MODEL_CONSTRUCT(INTEL, 0xa2f0)
#define HDA_INTEL_CFLK HDA_MODEL_CONSTRUCT(INTEL, 0xa348)
+#define HDA_INTEL_CNLK HDA_MODEL_CONSTRUCT(INTEL, 0x9dc8)
#define HDA_INTEL_ALL HDA_MODEL_CONSTRUCT(INTEL, 0xffff)
/* Nvidia */
More information about the svn-src-all
mailing list