[PATCH] ASoC: amd: yc: Fix internal mic for HP board 8C30

David posted 1 patch 2 weeks, 5 days ago
sound/soc/amd/yc/acp6x-mach.c | 7 +++++++
1 file changed, 7 insertions(+)
[PATCH] ASoC: amd: yc: Fix internal mic for HP board 8C30
Posted by David 2 weeks, 5 days ago
The HP laptop with AMD Ryzen 5 7535HS and ACP 6.x coprocessor (PCI ID
1022:15e2, subsystem 103c:8c30) requires an entry in yc_acp_quirk_table[]
to enable the internal digital microphone (DMIC).

Without this quirk, acp6x_probe() returns -ENODEV and the internal
microphone remains undetected.

Add a DMI quirk matching vendor "HP" and board name "8C30" to enable
ACP DMIC support.

Signed-off-by: David <mafiatamilan@yahoo.com>
---
 sound/soc/amd/yc/acp6x-mach.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/sound/soc/amd/yc/acp6x-mach.c b/sound/soc/amd/yc/acp6x-mach.c
index 73baa48..0d3304d 100644
--- a/sound/soc/amd/yc/acp6x-mach.c
+++ b/sound/soc/amd/yc/acp6x-mach.c
@@ -721,6 +721,13 @@ static const struct dmi_system_id yc_acp_quirk_table[] = {
 		.driver_data = &acp6x_card,
 		.matches = {
 			DMI_MATCH(DMI_BOARD_VENDOR, "HP"),
+			DMI_MATCH(DMI_BOARD_NAME, "8C30"),
+		}
+	},
+	{
+		.driver_data = &acp6x_card,
+		.matches = {
+			DMI_MATCH(DMI_BOARD_VENDOR, "HP"),
 			DMI_MATCH(DMI_BOARD_NAME, "8EE4"),
 		}
 	},
-- 
2.45.0
Re: [PATCH] ASoC: amd: yc: Fix internal mic for HP board 8C30
Posted by Mark Brown 2 weeks, 4 days ago
On Sun, Sep 06, 2026 at 12:39:39PM +0530, David wrote:
> The HP laptop with AMD Ryzen 5 7535HS and ACP 6.x coprocessor (PCI ID
> 1022:15e2, subsystem 103c:8c30) requires an entry in yc_acp_quirk_table[]
> to enable the internal digital microphone (DMIC).
> 
> Without this quirk, acp6x_probe() returns -ENODEV and the internal
> microphone remains undetected.
> 
> Add a DMI quirk matching vendor "HP" and board name "8C30" to enable
> ACP DMIC support.

Does this already merged patch:

   https://patch.msgid.link/20250715031434.222062-1-queler+k@gmail.com

also get things working for your system?