All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ALSA: hda: intel-dsp-config: Fix Huawei Matebook D14 NBLB-WAX9N quirk detection
@ 2024-04-18  8:48 Mauro Carvalho Chehab
  2024-04-18 10:04 ` Mauro Carvalho Chehab
  2024-04-18 14:07 ` Andy Shevchenko
  0 siblings, 2 replies; 11+ messages in thread
From: Mauro Carvalho Chehab @ 2024-04-18  8:48 UTC (permalink / raw)
  To: Pierre-Louis Bossart
  Cc: linux-kernel, Mauro Carvalho Chehab,
	Amadeusz Sławiński, Andy Shevchenko, Bard Liao,
	Brady Norander, Jaroslav Kysela, Mark Brown, Mark Hasemeyer,
	Takashi Iwai, linux-sound, stable

Newer Matebook D14 model comes with essx8336 and supports SOF,
but the initial models use the legacy driver, with a Realtek ALC 256
AC97 chip on it.

The BIOS seems to be prepared to be used by both models, so
it contains an entry for ESSX8336 on its DSDT table.

Add a quirk, as otherwise dspconfig driver will try to load
SOF, causing audio probe to fail.

Cc: stable@vger.kernel.org
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
---
 sound/hda/intel-dsp-config.c | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/sound/hda/intel-dsp-config.c b/sound/hda/intel-dsp-config.c
index 6a384b922e4f..8e728f0585dd 100644
--- a/sound/hda/intel-dsp-config.c
+++ b/sound/hda/intel-dsp-config.c
@@ -46,6 +46,22 @@ static const struct snd_soc_acpi_codecs __maybe_unused essx_83x6 = {
  * - the first successful match will win
  */
 static const struct config_entry config_table[] = {
+	/* Quirks */
+	{
+		.flags = 0,	/* Model uses AC97 with Realtek ALC 256 */
+		.device = PCI_DEVICE_ID_INTEL_HDA_CML_LP,
+		.dmi_table = (const struct dmi_system_id []) {
+			{
+				.ident = "Huawei NBLB-WAX9N",
+				.matches = {
+					DMI_MATCH(DMI_SYS_VENDOR, "HUAWEI"),
+					DMI_MATCH(DMI_PRODUCT_NAME, "NBLB-WAX9N"),
+				}
+			},
+			{}
+		}
+	},
+
 /* Merrifield */
 #if IS_ENABLED(CONFIG_SND_SOC_SOF_MERRIFIELD)
 	{
-- 
2.44.0


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

end of thread, other threads:[~2024-04-29 15:00 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-18  8:48 [PATCH] ALSA: hda: intel-dsp-config: Fix Huawei Matebook D14 NBLB-WAX9N quirk detection Mauro Carvalho Chehab
2024-04-18 10:04 ` Mauro Carvalho Chehab
2024-04-18 13:24   ` Pierre-Louis Bossart
2024-04-18 20:22     ` Mauro Carvalho Chehab
2024-04-29 12:17     ` Takashi Iwai
2024-04-29 12:25       ` Andy Shevchenko
2024-04-29 13:51         ` Pierre-Louis Bossart
2024-04-29 15:00           ` Takashi Iwai
2024-04-18 14:06   ` Andy Shevchenko
2024-04-18 14:09     ` Takashi Iwai
2024-04-18 14:07 ` Andy Shevchenko

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.