snd_hda: Support Intel Raptor Lake 0x7a50

PR:		276379
Sponsored by:	The FreeBSD Foundation
MFC after:	1 week
Reviewed by:	emaste, markj
Differential Revision:	https://reviews.freebsd.org/D49389

(cherry picked from commit fc40132603f5133037a35e2c14ac1356a0128c50)
This commit is contained in:
Christos Margiolis 2025-03-19 19:18:37 +01:00
parent 38dc6b814a
commit a3dfa53bbf
2 changed files with 2 additions and 0 deletions

View file

@ -117,6 +117,7 @@ static const struct {
{ 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_RPTLK3, "Intel Raptor Lake-S", 0, 0 },
{ HDA_INTEL_MTL, "Intel Meteor Lake-P", 0, 0 },
{ HDA_INTEL_ARLS, "Intel Arrow Lake-S", 0, 0 },
{ HDA_INTEL_ARL, "Intel Arrow Lake", 0, 0 },

View file

@ -77,6 +77,7 @@
#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_RPTLK3 HDA_MODEL_CONSTRUCT(INTEL, 0x7a50)
#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)