sound/soc/amd/yc/acp6x-mach.c | 7 +++++++ 1 file changed, 7 insertions(+)
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
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?
© 2016 - 2026 Red Hat, Inc.