Date: Sat, 10 Sep 2022 01:08:00 GMT From: Neel Chauhan <nc@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: 8db127525ec4 - stable/12 - snd_hda: Add the full Intel AlderLake HD Audio PCI IDs Message-ID: <202209100108.28A180He030926@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/12 has been updated by nc (ports committer): URL: https://cgit.FreeBSD.org/src/commit/?id=8db127525ec4b39ed5609bc027c7c50b7316d3b8 commit 8db127525ec4b39ed5609bc027c7c50b7316d3b8 Author: Neel Chauhan <nc@FreeBSD.org> AuthorDate: 2022-09-07 02:35:02 +0000 Commit: Neel Chauhan <nc@FreeBSD.org> CommitDate: 2022-09-10 01:07:56 +0000 snd_hda: Add the full Intel AlderLake HD Audio PCI IDs This is based off the Linux file sound/hda/intel-dsp-config.c. Reviewed by: imp (src) Tested on: HP Spectre x360 16-f0023dx MFC after: 3 days Differential Revision: https://reviews.freebsd.org/D36476 (cherry picked from commit 22ecfc580b4834e3e9871944de62ce0c5ff0cd38) --- sys/dev/sound/pci/hda/hdac.c | 8 ++++++++ sys/dev/sound/pci/hda/hdac.h | 7 +++++++ 2 files changed, 15 insertions(+) diff --git a/sys/dev/sound/pci/hda/hdac.c b/sys/dev/sound/pci/hda/hdac.c index a9d13f1a03e6..49f4849ce8a7 100644 --- a/sys/dev/sound/pci/hda/hdac.c +++ b/sys/dev/sound/pci/hda/hdac.c @@ -114,6 +114,14 @@ static const struct { { HDA_INTEL_TGLK, "Intel Tiger Lake", 0, 0 }, { HDA_INTEL_GMLK, "Intel Gemini Lake", 0, 0 }, { HDA_INTEL_ALLK, "Intel Alder Lake", 0, 0 }, + { HDA_INTEL_ALLKM, "Intel Alder Lake-M", 0, 0 }, + { HDA_INTEL_ALLKN, "Intel Alder Lake-N", 0, 0 }, + { HDA_INTEL_ALLKP1, "Intel Alder Lake-P", 0, 0 }, + { HDA_INTEL_ALLKP2, "Intel Alder Lake-P", 0, 0 }, + { HDA_INTEL_ALLKPS, "Intel Alder Lake-PS", 0, 0 }, + { HDA_INTEL_ALLKPS, "Intel Alder Lake-PS", 0, 0 }, + { HDA_INTEL_RPTLK1, "Intel Raptor Lake-P", 0, 0 }, + { HDA_INTEL_RPTLK2, "Intel Raptor Lake-P", 0, 0 }, { HDA_INTEL_82801F, "Intel 82801F", 0, 0 }, { HDA_INTEL_63XXESB, "Intel 631x/632xESB", 0, 0 }, { HDA_INTEL_82801G, "Intel 82801G", 0, 0 }, diff --git a/sys/dev/sound/pci/hda/hdac.h b/sys/dev/sound/pci/hda/hdac.h index cc3f020aed69..075e575ab017 100644 --- a/sys/dev/sound/pci/hda/hdac.h +++ b/sys/dev/sound/pci/hda/hdac.h @@ -71,6 +71,13 @@ #define HDA_INTEL_BXTNP HDA_MODEL_CONSTRUCT(INTEL, 0x5a98) #define HDA_INTEL_MACBOOKPRO92 HDA_MODEL_CONSTRUCT(INTEL, 0x7270) #define HDA_INTEL_ALLK HDA_MODEL_CONSTRUCT(INTEL, 0x7ad0) +#define HDA_INTEL_ALLKM HDA_MODEL_CONSTRUCT(INTEL, 0x51cc) +#define HDA_INTEL_ALLKN HDA_MODEL_CONSTRUCT(INTEL, 0x54c8) +#define HDA_INTEL_ALLKP1 HDA_MODEL_CONSTRUCT(INTEL, 0x51c8) +#define HDA_INTEL_ALLKP2 HDA_MODEL_CONSTRUCT(INTEL, 0x51cd) +#define HDA_INTEL_ALLKPS HDA_MODEL_CONSTRUCT(INTEL, 0x51c9) +#define HDA_INTEL_RPTLK1 HDA_MODEL_CONSTRUCT(INTEL, 0x51ca) +#define HDA_INTEL_RPTLK2 HDA_MODEL_CONSTRUCT(INTEL, 0x51cb) #define HDA_INTEL_SCH HDA_MODEL_CONSTRUCT(INTEL, 0x811b) #define HDA_INTEL_LPT1 HDA_MODEL_CONSTRUCT(INTEL, 0x8c20) #define HDA_INTEL_LPT2 HDA_MODEL_CONSTRUCT(INTEL, 0x8c21)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202209100108.28A180He030926>