svn commit: r359113 - stable/12/sys/dev/sound/pci/hda

Oleksandr Tymoshenko gonzo at FreeBSD.org
Thu Mar 19 01:50:26 UTC 2020


Author: gonzo
Date: Thu Mar 19 01:50:24 2020
New Revision: 359113
URL: https://svnweb.freebsd.org/changeset/base/359113

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/12/sys/dev/sound/pci/hda/hdac.c
  stable/12/sys/dev/sound/pci/hda/hdac.h
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/dev/sound/pci/hda/hdac.c
==============================================================================
--- stable/12/sys/dev/sound/pci/hda/hdac.c	Thu Mar 19 01:05:54 2020	(r359112)
+++ stable/12/sys/dev/sound/pci/hda/hdac.c	Thu Mar 19 01:50:24 2020	(r359113)
@@ -102,6 +102,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/12/sys/dev/sound/pci/hda/hdac.h
==============================================================================
--- stable/12/sys/dev/sound/pci/hda/hdac.h	Thu Mar 19 01:05:54 2020	(r359112)
+++ stable/12/sys/dev/sound/pci/hda/hdac.h	Thu Mar 19 01:50:24 2020	(r359113)
@@ -77,6 +77,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