summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMehmet Aysel <mehmet4ysel@gmail.com>2026-08-25 12:24:31 +0300
committerMark Brown <broonie@kernel.org>2026-08-26 15:01:54 +0100
commit032bb633e0c34a88b70a4bfc65ebd4e2b510f706 (patch)
treea2171f341da44e3aa33c33f94741e026104bc971
parent84d2d96ac3f1bb467aca65adf2c19431e6eeb151 (diff)
downloadlinux-032bb633e0c34a88b70a4bfc65ebd4e2b510f706.tar.gz
linux-032bb633e0c34a88b70a4bfc65ebd4e2b510f706.zip
ASoC: amd: acp-config: Add HVY-WXX9/M1060 DMI quirk
Add DMI match table entry for HUAWEI HVY-WXX9 board, product version M1060, a MateBook D16 2021 (Ryzen 5 4600H) revision not covered by the existing M1010/M1020/M1040 entries. This board uses the same FLAG_AMD_LEGACY / ACP_PCI_DEV_ID configuration as the other HVY-WXX9 variants. Signed-off-by: Mehmet Aysel <mehmet4ysel@gmail.com> Link: https://patch.msgid.link/20260825092432.56292-1-mehmet4ysel@gmail.com Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r--sound/soc/amd/acp-config.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/sound/soc/amd/acp-config.c b/sound/soc/amd/acp-config.c
index 3021dc498c85..ef6fa3cca848 100644
--- a/sound/soc/amd/acp-config.c
+++ b/sound/soc/amd/acp-config.c
@@ -209,6 +209,20 @@ static const struct config_entry config_table[] = {
{}
},
},
+ {
+ .flags = FLAG_AMD_LEGACY,
+ .device = ACP_PCI_DEV_ID,
+ .dmi_table = (const struct dmi_system_id []) {
+ {
+ .matches = {
+ DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "HUAWEI"),
+ DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "HVY-WXX9"),
+ DMI_EXACT_MATCH(DMI_PRODUCT_VERSION, "M1060"),
+ },
+ },
+ {}
+ },
+ },
};
static int snd_amd_acp_acpi_find_config(struct pci_dev *pci)