git: 68b6567d09dd - main - snd_hda: Patch Framework AMD 13th gen

From: Christos Margiolis <christos_at_FreeBSD.org>
Date: Thu, 13 Mar 2025 21:52:05 UTC
The branch main has been updated by christos:

URL: https://cgit.FreeBSD.org/src/commit/?id=68b6567d09ddd29a16443ad709e2609a9902a190

commit 68b6567d09ddd29a16443ad709e2609a9902a190
Author:     Christos Margiolis <christos@FreeBSD.org>
AuthorDate: 2025-03-13 21:50:30 +0000
Commit:     Christos Margiolis <christos@FreeBSD.org>
CommitDate: 2025-03-13 21:51:45 +0000

    snd_hda: Patch Framework AMD 13th gen
    
    Redirect sound to headphone jack when plugged in.
    
    Sponsored by:   The FreeBSD Foundation
    MFC after:      1 week
    Reviewed by:    emaste
    Differential Revision:  https://reviews.freebsd.org/D49346
---
 sys/dev/sound/pci/hda/hdaa_patches.c | 7 +++++++
 sys/dev/sound/pci/hda/hdac.h         | 1 +
 2 files changed, 8 insertions(+)

diff --git a/sys/dev/sound/pci/hda/hdaa_patches.c b/sys/dev/sound/pci/hda/hdaa_patches.c
index 3c063deb0822..8ad1c845c254 100644
--- a/sys/dev/sound/pci/hda/hdaa_patches.c
+++ b/sys/dev/sound/pci/hda/hdaa_patches.c
@@ -340,6 +340,13 @@ hdac_pin_patch(struct hdaa_widget *w)
 			patch_str = "as=3 seq=15 color=Black loc=Left";
 			break;
 		}
+	} else if (id == HDA_CODEC_ALC295 &&
+	    subid == FRAMEWORK_LAPTOP_0006_SUBVENDOR) {
+		switch (nid) {
+		case 33:
+			patch_str = "as=1 seq=15 color=Black loc=Left";
+			break;
+		}
 	} else if (id == HDA_CODEC_ALC230 &&
 	    subid == LENOVO_IDEAPAD330_SUBVENDOR) {
 		switch (nid) {
diff --git a/sys/dev/sound/pci/hda/hdac.h b/sys/dev/sound/pci/hda/hdac.h
index 40b697b05e78..72da5a4a44ac 100644
--- a/sys/dev/sound/pci/hda/hdac.h
+++ b/sys/dev/sound/pci/hda/hdac.h
@@ -529,6 +529,7 @@
 #define FRAMEWORK_LAPTOP_0001_SUBVENDOR HDA_MODEL_CONSTRUCT(FRAMEWORK, 0x0001)
 #define FRAMEWORK_LAPTOP_0002_SUBVENDOR HDA_MODEL_CONSTRUCT(FRAMEWORK, 0x0002)
 #define FRAMEWORK_LAPTOP_0003_SUBVENDOR HDA_MODEL_CONSTRUCT(FRAMEWORK, 0x0003)
+#define FRAMEWORK_LAPTOP_0006_SUBVENDOR HDA_MODEL_CONSTRUCT(FRAMEWORK, 0x0006)
 
 /* All codecs you can eat... */
 #define HDA_CODEC_CONSTRUCT(vendor, id) \