* [PATCH] ASoC: amd: yc: Add ASUS EXPERTBOOK BM1503CDA to quirk table
@ 2026-02-17 12:12 Azamat Almazbek uulu
2026-02-18 4:39 ` Mukunda,Vijendar
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Azamat Almazbek uulu @ 2026-02-17 12:12 UTC (permalink / raw)
To: Vijendar Mukunda, Venkata Prasad Potturu
Cc: Liam Girdwood, Mark Brown, linux-sound, almazbek1608
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 <almazbek1608@gmail.com>
---
sound/soc/amd/yc/acp6x-mach.c | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/sound/soc/amd/yc/acp6x-mach.c b/sound/soc/amd/yc/acp6x-mach.c
index 67f2fee..9417b53 100644
--- a/sound/soc/amd/yc/acp6x-mach.c
+++ b/sound/soc/amd/yc/acp6x-mach.c
@@ -696,7 +696,13 @@ static const struct dmi_system_id yc_acp_quirk_table[] = {
DMI_MATCH(DMI_BOARD_NAME, "XyloD5_RBU"),
}
},
-
+ {
+ .driver_data = &acp6x_card,
+ .matches = {
+ DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK COMPUTER INC."),
+ DMI_MATCH(DMI_PRODUCT_NAME, "ASUS EXPERTBOOK BM1503CDA"),
+ }
+ },
{}
};
--
2.53.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] ASoC: amd: yc: Add ASUS EXPERTBOOK BM1503CDA to quirk table
2026-02-17 12:12 [PATCH] ASoC: amd: yc: Add ASUS EXPERTBOOK BM1503CDA to quirk table Azamat Almazbek uulu
@ 2026-02-18 4:39 ` Mukunda,Vijendar
2026-02-18 12:20 ` Mark Brown
` (2 subsequent siblings)
3 siblings, 0 replies; 6+ messages in thread
From: Mukunda,Vijendar @ 2026-02-18 4:39 UTC (permalink / raw)
To: Azamat Almazbek uulu, Venkata Prasad Potturu
Cc: Liam Girdwood, Mark Brown, linux-sound
On 17/02/26 17:42, Azamat Almazbek uulu wrote:
> 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 <almazbek1608@gmail.com>
Reviewed-by: Vijendar Mukunda <Vijendar.Mukunda@amd.com>
> ---
> sound/soc/amd/yc/acp6x-mach.c | 8 +++++++-
> 1 file changed, 7 insertions(+), 1 deletion(-)
>
> diff --git a/sound/soc/amd/yc/acp6x-mach.c b/sound/soc/amd/yc/acp6x-mach.c
> index 67f2fee..9417b53 100644
> --- a/sound/soc/amd/yc/acp6x-mach.c
> +++ b/sound/soc/amd/yc/acp6x-mach.c
> @@ -696,7 +696,13 @@ static const struct dmi_system_id yc_acp_quirk_table[] = {
> DMI_MATCH(DMI_BOARD_NAME, "XyloD5_RBU"),
> }
> },
> -
> + {
> + .driver_data = &acp6x_card,
> + .matches = {
> + DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK COMPUTER INC."),
> + DMI_MATCH(DMI_PRODUCT_NAME, "ASUS EXPERTBOOK BM1503CDA"),
> + }
> + },
> {}
> };
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] ASoC: amd: yc: Add ASUS EXPERTBOOK BM1503CDA to quirk table
2026-02-17 12:12 [PATCH] ASoC: amd: yc: Add ASUS EXPERTBOOK BM1503CDA to quirk table Azamat Almazbek uulu
2026-02-18 4:39 ` Mukunda,Vijendar
@ 2026-02-18 12:20 ` Mark Brown
2026-02-21 11:48 ` [PATCH v2] " Azamat Almazbek uulu
2026-02-23 19:09 ` [PATCH] " Mark Brown
3 siblings, 0 replies; 6+ messages in thread
From: Mark Brown @ 2026-02-18 12:20 UTC (permalink / raw)
To: Azamat Almazbek uulu
Cc: Vijendar Mukunda, Venkata Prasad Potturu, Liam Girdwood,
linux-sound
[-- Attachment #1: Type: text/plain, Size: 403 bytes --]
On Tue, Feb 17, 2026 at 12:12:19PM +0000, Azamat Almazbek uulu wrote:
> 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.
This doesn't apply against current code, please check and resend.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH v2] ASoC: amd: yc: Add ASUS EXPERTBOOK BM1503CDA to quirk table
2026-02-17 12:12 [PATCH] ASoC: amd: yc: Add ASUS EXPERTBOOK BM1503CDA to quirk table Azamat Almazbek uulu
2026-02-18 4:39 ` Mukunda,Vijendar
2026-02-18 12:20 ` Mark Brown
@ 2026-02-21 11:48 ` Azamat Almazbek uulu
2026-02-23 19:09 ` Mark Brown
2026-02-23 19:09 ` [PATCH] " Mark Brown
3 siblings, 1 reply; 6+ messages in thread
From: Azamat Almazbek uulu @ 2026-02-21 11:48 UTC (permalink / raw)
To: Vijendar Mukunda, Venkata Prasad Potturu
Cc: Liam Girdwood, Mark Brown, linux-sound, almazbek1608
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 <almazbek1608@gmail.com>
Reviewed-by: Vijendar Mukunda <Vijendar.Mukunda@amd.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 f1a63475..7af4daeb 100644
--- a/sound/soc/amd/yc/acp6x-mach.c
+++ b/sound/soc/amd/yc/acp6x-mach.c
@@ -703,6 +703,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.53.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] ASoC: amd: yc: Add ASUS EXPERTBOOK BM1503CDA to quirk table
2026-02-17 12:12 [PATCH] ASoC: amd: yc: Add ASUS EXPERTBOOK BM1503CDA to quirk table Azamat Almazbek uulu
` (2 preceding siblings ...)
2026-02-21 11:48 ` [PATCH v2] " Azamat Almazbek uulu
@ 2026-02-23 19:09 ` Mark Brown
3 siblings, 0 replies; 6+ messages in thread
From: Mark Brown @ 2026-02-23 19:09 UTC (permalink / raw)
To: Vijendar Mukunda, Venkata Prasad Potturu, Azamat Almazbek uulu
Cc: Liam Girdwood, linux-sound
On Tue, 17 Feb 2026 12:12:19 +0000, Azamat Almazbek uulu wrote:
> 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.
>
> [...]
Applied to
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next
Thanks!
[1/1] ASoC: amd: yc: Add ASUS EXPERTBOOK BM1503CDA to quirk table
commit: 32fc4168fa56f6301d858c778a3d712774e9657e
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v2] ASoC: amd: yc: Add ASUS EXPERTBOOK BM1503CDA to quirk table
2026-02-21 11:48 ` [PATCH v2] " Azamat Almazbek uulu
@ 2026-02-23 19:09 ` Mark Brown
0 siblings, 0 replies; 6+ messages in thread
From: Mark Brown @ 2026-02-23 19:09 UTC (permalink / raw)
To: Vijendar Mukunda, Venkata Prasad Potturu, Azamat Almazbek uulu
Cc: Liam Girdwood, linux-sound
On Sat, 21 Feb 2026 12:48:13 +0100, Azamat Almazbek uulu wrote:
> 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.
>
> [...]
Applied to
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next
Thanks!
[1/1] ASoC: amd: yc: Add ASUS EXPERTBOOK BM1503CDA to quirk table
commit: 32fc4168fa56f6301d858c778a3d712774e9657e
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-02-23 19:09 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-17 12:12 [PATCH] ASoC: amd: yc: Add ASUS EXPERTBOOK BM1503CDA to quirk table Azamat Almazbek uulu
2026-02-18 4:39 ` Mukunda,Vijendar
2026-02-18 12:20 ` Mark Brown
2026-02-21 11:48 ` [PATCH v2] " Azamat Almazbek uulu
2026-02-23 19:09 ` Mark Brown
2026-02-23 19:09 ` [PATCH] " Mark Brown
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox