[PATCH] ASoC: amd: yc: Add DMI quirk for HP Victus Laptop 16-e1xxx

Zhang Heng posted 1 patch 4 days, 16 hours ago
sound/soc/amd/yc/acp6x-mach.c | 8 ++++++++
1 file changed, 8 insertions(+)
[PATCH] ASoC: amd: yc: Add DMI quirk for HP Victus Laptop 16-e1xxx
Posted by Zhang Heng 4 days, 16 hours ago
From: CuerdOS Dev Team <cuerdoslinux@proton.me>

Add DMI quirk to enable ACP6x sound card for HP Victus by HP Laptop
16-e1xxx, which fixes microphone not working issue.

Without this quirk, the DMIC on acp6x device is not properly enabled,
causing the microphone to not work.

Link: https://bugzilla.kernel.org/show_bug.cgi?id=218926
Link: https://github.com/CuerdOS/linux-kernel-nhs/commit/b29ba27a0ed672664071b4b345e63b62a419d31d
Reviewed-by: Zhang Heng <zhangheng@kylinos.cn>
Reported-by: CuerdOS Dev Team <cuerdoslinux@proton.me>
Signed-off-by: CuerdOS Dev Team <cuerdoslinux@proton.me>
---
 sound/soc/amd/yc/acp6x-mach.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/sound/soc/amd/yc/acp6x-mach.c b/sound/soc/amd/yc/acp6x-mach.c
index f71f08c48253..7f42b88aabdd 100644
--- a/sound/soc/amd/yc/acp6x-mach.c
+++ b/sound/soc/amd/yc/acp6x-mach.c
@@ -710,6 +710,13 @@ static const struct dmi_system_id yc_acp_quirk_table[] = {
 			DMI_MATCH(DMI_BOARD_NAME, "8E35"),
 		}
 	},
+	{
+		.driver_data = &acp6x_card,
+		.matches = {
+			DMI_MATCH(DMI_BOARD_VENDOR, "HP"),
+			DMI_MATCH(DMI_PRODUCT_NAME, "Victus by HP Laptop 16-e1xxx"),
+		}
+	},
 	{
 		.driver_data = &acp6x_card,
 		.matches = {
-- 
2.45.1
Re: [PATCH] ASoC: amd: yc: Add DMI quirk for HP Victus Laptop 16-e1xxx
Posted by Mark Brown 3 days, 8 hours ago
On Mon, Jul 20, 2026 at 05:51:20PM +0800, Zhang Heng wrote:
> From: CuerdOS Dev Team <cuerdoslinux@proton.me>

> Reviewed-by: Zhang Heng <zhangheng@kylinos.cn>
> Reported-by: CuerdOS Dev Team <cuerdoslinux@proton.me>
> Signed-off-by: CuerdOS Dev Team <cuerdoslinux@proton.me>

You've not provided a Signed-off-by for this so I can't do anything with
it, please see Documentation/process/submitting-patches.rst for details
on what this is and why it's important.