From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 202D026A1CF; Mon, 23 Mar 2026 15:01:53 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774278113; cv=none; b=MBmjmvzLTA+RRwASIwtW29741TQjwSNLj3/cqRa2piJYAFfh2jfMK5WgX7vVVtpMMiC2b10w9U4yK/cSLe6Syat2cgIwrI7vzBzWDlATPpkHMpiqC6LpV+IL9wT5ybYDRK9k009D+TFBQD9RaVYoMEU8nVsw/aefRM6VV2XxNF4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774278113; c=relaxed/simple; bh=4/G9O9L/VRFVcgeZp0g2H7+aT7Gu29IZ+Yi9ACvSCs0=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=P29JVwQBCIwCb1DST8wXxD/NgbsWYzEfEPt+33TIShzMtUHb92HE8W/toKuM5eSCHaJOUi3z+M8Hh1IV0KZYMsgJzmpgLwPZn8um/x7wS1WstZz6+QCOT0L5naEHoGP7yqSiLr3jLbwFAmRNZwxN5uGU4xuE8hcIhJtoOrxTIKU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=P9QM+YTk; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="P9QM+YTk" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 968EEC4CEF7; Mon, 23 Mar 2026 15:01:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1774278113; bh=4/G9O9L/VRFVcgeZp0g2H7+aT7Gu29IZ+Yi9ACvSCs0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=P9QM+YTkDXLtzJpGiSGSlZv6Y8NDJDaSDyX/p9JSV/Rm0WpU0DIeJ50pRQ7s2IPz4 GYZDiOydPnPrC26vRxIRGj6AUTKlVC6Cjshy8ac1NCj6lbcPFW/U6GudORNwQiJ0rm 1kAO9tWtqRVKD/fpjny4URb0k0LJiRetjlYkvd8I= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Azamat Almazbek uulu , Vijendar Mukunda , Mark Brown , Sasha Levin Subject: [PATCH 6.6 205/567] ASoC: amd: yc: Add ASUS EXPERTBOOK BM1503CDA to quirk table Date: Mon, 23 Mar 2026 14:42:05 +0100 Message-ID: <20260323134538.913315939@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260323134533.749096647@linuxfoundation.org> References: <20260323134533.749096647@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Azamat Almazbek uulu [ Upstream commit 32fc4168fa56f6301d858c778a3d712774e9657e ] The ASUS ExpertBook BM1503CDA (Ryzen 5 7535U, Barcelo-R) has an internal DMIC connected through the AMD ACP (Audio CoProcessor) but is missing from the DMI quirk table, so the acp6x machine driver probe returns -ENODEV and no DMIC capture device is created. Add the DMI entry so the internal microphone works out of the box. Signed-off-by: Azamat Almazbek uulu Reviewed-by: Vijendar Mukunda Link: https://patch.msgid.link/20260221114813.5610-1-almazbek1608@gmail.com Signed-off-by: Mark Brown Signed-off-by: Sasha Levin --- 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 5aeacbcb1f6ad..106012da7443e 100644 --- a/sound/soc/amd/yc/acp6x-mach.c +++ b/sound/soc/amd/yc/acp6x-mach.c @@ -696,6 +696,13 @@ static const struct dmi_system_id yc_acp_quirk_table[] = { DMI_MATCH(DMI_PRODUCT_NAME, "Vivobook_ASUSLaptop M6501RR_M6501RR"), } }, + { + .driver_data = &acp6x_card, + .matches = { + DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_PRODUCT_NAME, "ASUS EXPERTBOOK BM1503CDA"), + } + }, {} }; -- 2.51.0