The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [PATCH] ASoC: amd: yc: Add Alienware m15 R7 AMD to DMIC quirk table
@ 2026-06-30  0:33 Jetha Chan
  2026-06-30 17:40 ` Mark Brown
  2026-07-01  6:03 ` Mukunda,Vijendar
  0 siblings, 2 replies; 3+ messages in thread
From: Jetha Chan @ 2026-06-30  0:33 UTC (permalink / raw)
  To: Vijendar Mukunda, Venkata Prasad Potturu, Liam Girdwood,
	Mark Brown
  Cc: Jaroslav Kysela, Takashi Iwai, linux-sound, linux-kernel

The Alienware m15 R7 AMD exposes an ACP6x DMIC path, but its DMI
product name is not present in the Yellow Carp ACP quirk table. As a
result, the ACP machine driver does not enable the DMIC card on this
system.

Add the DMI product name for this machine. With this quirk applied, the
kernel reports:

  acp_yc_mach acp_yc_mach.0: Enabling ACP DMIC support via DMI

and ALSA exposes the ACP DMIC capture device:

  card 3: acp6x
  device 0: DMIC capture dmic-hifi-0

Tested on an Alienware m15 R7 AMD with product SKU 0B59.

Link: https://jethachan.net/dev/2026/03/21/fixing-internal-microphone-alienware-linux.html
Assisted-by: OpenAI-Codex:gpt-5.5
Signed-off-by: Jetha Chan <jethachan@gmail.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 000000000000..000000000000 100644
--- a/sound/soc/amd/yc/acp6x-mach.c
+++ b/sound/soc/amd/yc/acp6x-mach.c
@@ -504,6 +504,13 @@ static const struct dmi_system_id yc_acp_quirk_table[] = {
 		.driver_data = &acp6x_card,
 		.matches = {
 			DMI_MATCH(DMI_BOARD_VENDOR, "Alienware"),
+			DMI_MATCH(DMI_PRODUCT_NAME, "Alienware m15 R7 AMD"),
+		}
+	},
+	{
+		.driver_data = &acp6x_card,
+		.matches = {
+			DMI_MATCH(DMI_BOARD_VENDOR, "Alienware"),
 			DMI_MATCH(DMI_PRODUCT_NAME, "Alienware m17 R5 AMD"),
 		}
 	},
-- 
2.50.0

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] ASoC: amd: yc: Add Alienware m15 R7 AMD to DMIC quirk table
  2026-06-30  0:33 [PATCH] ASoC: amd: yc: Add Alienware m15 R7 AMD to DMIC quirk table Jetha Chan
@ 2026-06-30 17:40 ` Mark Brown
  2026-07-01  6:03 ` Mukunda,Vijendar
  1 sibling, 0 replies; 3+ messages in thread
From: Mark Brown @ 2026-06-30 17:40 UTC (permalink / raw)
  To: Vijendar Mukunda, Venkata Prasad Potturu, Liam Girdwood,
	Jetha Chan
  Cc: Jaroslav Kysela, Takashi Iwai, linux-sound, linux-kernel

On Tue, 30 Jun 2026 09:33:28 +0900, Jetha Chan wrote:
> ASoC: amd: yc: Add Alienware m15 R7 AMD to DMIC quirk table

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-7.2

Thanks!

[1/1] ASoC: amd: yc: Add Alienware m15 R7 AMD to DMIC quirk table
      https://git.kernel.org/broonie/sound/c/e782d687d2f5

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] 3+ messages in thread

* Re: [PATCH] ASoC: amd: yc: Add Alienware m15 R7 AMD to DMIC quirk table
  2026-06-30  0:33 [PATCH] ASoC: amd: yc: Add Alienware m15 R7 AMD to DMIC quirk table Jetha Chan
  2026-06-30 17:40 ` Mark Brown
@ 2026-07-01  6:03 ` Mukunda,Vijendar
  1 sibling, 0 replies; 3+ messages in thread
From: Mukunda,Vijendar @ 2026-07-01  6:03 UTC (permalink / raw)
  To: Jetha Chan, Venkata Prasad Potturu, Liam Girdwood, Mark Brown
  Cc: Jaroslav Kysela, Takashi Iwai, linux-sound, linux-kernel



On 6/30/26 06:03, Jetha Chan wrote:
> [You don't often get email from jethachan@gmail.com. Learn why this is important at https://aka.ms/LearnAboutSenderIdentification ]
>
> The Alienware m15 R7 AMD exposes an ACP6x DMIC path, but its DMI
> product name is not present in the Yellow Carp ACP quirk table. As a
> result, the ACP machine driver does not enable the DMIC card on this
> system.
>
> Add the DMI product name for this machine. With this quirk applied, the
> kernel reports:
>
>    acp_yc_mach acp_yc_mach.0: Enabling ACP DMIC support via DMI
>
> and ALSA exposes the ACP DMIC capture device:
>
>    card 3: acp6x
>    device 0: DMIC capture dmic-hifi-0
>
> Tested on an Alienware m15 R7 AMD with product SKU 0B59.
>
> Link: https://jethachan.net/dev/2026/03/21/fixing-internal-microphone-alienware-linux.html
> Assisted-by: OpenAI-Codex:gpt-5.5
> Signed-off-by: Jetha Chan <jethachan@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 000000000000..000000000000 100644
> --- a/sound/soc/amd/yc/acp6x-mach.c
> +++ b/sound/soc/amd/yc/acp6x-mach.c
> @@ -504,6 +504,13 @@ static const struct dmi_system_id yc_acp_quirk_table[] = {
>                  .driver_data = &acp6x_card,
>                  .matches = {
>                          DMI_MATCH(DMI_BOARD_VENDOR, "Alienware"),
> +                       DMI_MATCH(DMI_PRODUCT_NAME, "Alienware m15 R7 AMD"),
> +               }
> +       },
> +       {
> +               .driver_data = &acp6x_card,
> +               .matches = {
> +                       DMI_MATCH(DMI_BOARD_VENDOR, "Alienware"),
>                          DMI_MATCH(DMI_PRODUCT_NAME, "Alienware m17 R5 AMD"),
>                  }
>          },
> --
> 2.50.0


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2026-07-01 11:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-30  0:33 [PATCH] ASoC: amd: yc: Add Alienware m15 R7 AMD to DMIC quirk table Jetha Chan
2026-06-30 17:40 ` Mark Brown
2026-07-01  6:03 ` Mukunda,Vijendar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox