aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Hasemeyer <[email protected]>2023-10-18 17:59:31 -0600
committerTakashi Iwai <[email protected]>2023-10-20 17:39:44 +0200
commit7c05b44e1a50d9cbfc4f731dddc436a24ddc129a (patch)
treea6ce6007d92b0d484bd1eca7abf05e9cd9b010af
parent8e13caa2150b5a1287a1900952d3d7e04363f921 (diff)
ALSA: hda: intel-dsp-config: Fix JSL Chromebook quirk detection
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: [email protected] Signed-off-by: Mark Hasemeyer <[email protected]> Reviewed-by: Pierre-Louis Bossart <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Takashi Iwai <[email protected]>
-rw-r--r--sound/hda/intel-dsp-config.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/sound/hda/intel-dsp-config.c b/sound/hda/intel-dsp-config.c
index 24a948baf1bc..756fa0aa69bb 100644
--- a/sound/hda/intel-dsp-config.c
+++ b/sound/hda/intel-dsp-config.c
@@ -336,6 +336,12 @@ static const struct config_entry config_table[] = {
DMI_MATCH(DMI_SYS_VENDOR, "Google"),
}
},
+ {
+ .ident = "Google firmware",
+ .matches = {
+ DMI_MATCH(DMI_BIOS_VERSION, "Google"),
+ }
+ },
{}
}
},