This is a note to let you know that I've just added the patch titled ALSA: hda: intel-dsp-config: Fix JSL Chromebook quirk detection to the 6.1-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: alsa-hda-intel-dsp-config-fix-jsl-chromebook-quirk-detection.patch and it can be found in the queue-6.1 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 7c05b44e1a50d9cbfc4f731dddc436a24ddc129a Mon Sep 17 00:00:00 2001 From: Mark Hasemeyer <markhas@xxxxxxxxxxxx> Date: Wed, 18 Oct 2023 17:59:31 -0600 Subject: ALSA: hda: intel-dsp-config: Fix JSL Chromebook quirk detection From: Mark Hasemeyer <markhas@xxxxxxxxxxxx> commit 7c05b44e1a50d9cbfc4f731dddc436a24ddc129a upstream. Some Jasperlake Chromebooks overwrite the system vendor DMI value to the name of the OEM that manufactured the device. This breaks Chromebook quirk detection as it expects the system vendor to be "Google". Add another quirk detection entry that looks for "Google" in the BIOS version. Cc: stable@xxxxxxxxxxxxxxx Signed-off-by: Mark Hasemeyer <markhas@xxxxxxxxxxxx> Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@xxxxxxxxxxxxxxx> Link: https://lore.kernel.org/r/20231018235944.1860717-1-markhas@xxxxxxxxxxxx Signed-off-by: Takashi Iwai <tiwai@xxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- sound/hda/intel-dsp-config.c | 6 ++++++ 1 file changed, 6 insertions(+) --- a/sound/hda/intel-dsp-config.c +++ b/sound/hda/intel-dsp-config.c @@ -343,6 +343,12 @@ static const struct config_entry config_ DMI_MATCH(DMI_SYS_VENDOR, "Google"), } }, + { + .ident = "Google firmware", + .matches = { + DMI_MATCH(DMI_BIOS_VERSION, "Google"), + } + }, {} } }, Patches currently in stable-queue which might be from markhas@xxxxxxxxxxxx are queue-6.1/alsa-hda-intel-dsp-config-fix-jsl-chromebook-quirk-detection.patch queue-6.1/asoc-sof-sof-pci-dev-fix-community-key-quirk-detection.patch