Skip to content

Commit 0107f28

Browse files
jwrdegoedebroonie
authored andcommitted
ASoC: Intel: bytcr_rt5640: Add DMI quirk for Vexia Edu Atla 10 tablet
The Vexia Edu Atla 10 tablet mostly uses the BYTCR tablet defaults, but as happens on more models it is using IN1 instead of IN3 for its internal mic and JD_SRC_JD2_IN4N instead of JD_SRC_JD1_IN4P for jack-detection. Add a DMI quirk for this to fix the internal-mic and jack-detection. Signed-off-by: Hans de Goede <hdegoede@redhat.com> Link: https://patch.msgid.link/20241024211615.79518-2-hdegoede@redhat.com Signed-off-by: Mark Brown <broonie@kernel.org>
1 parent d48696b commit 0107f28

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

sound/soc/intel/boards/bytcr_rt5640.c

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1132,6 +1132,21 @@ static const struct dmi_system_id byt_rt5640_quirk_table[] = {
11321132
BYT_RT5640_SSP0_AIF2 |
11331133
BYT_RT5640_MCLK_EN),
11341134
},
1135+
{ /* Vexia Edu Atla 10 tablet */
1136+
.matches = {
1137+
DMI_MATCH(DMI_BOARD_VENDOR, "AMI Corporation"),
1138+
DMI_MATCH(DMI_BOARD_NAME, "Aptio CRB"),
1139+
/* Above strings are too generic, also match on BIOS date */
1140+
DMI_MATCH(DMI_BIOS_DATE, "08/25/2014"),
1141+
},
1142+
.driver_data = (void *)(BYT_RT5640_IN1_MAP |
1143+
BYT_RT5640_JD_SRC_JD2_IN4N |
1144+
BYT_RT5640_OVCD_TH_2000UA |
1145+
BYT_RT5640_OVCD_SF_0P75 |
1146+
BYT_RT5640_DIFF_MIC |
1147+
BYT_RT5640_SSP0_AIF2 |
1148+
BYT_RT5640_MCLK_EN),
1149+
},
11351150
{ /* Voyo Winpad A15 */
11361151
.matches = {
11371152
DMI_MATCH(DMI_BOARD_VENDOR, "AMI Corporation"),

0 commit comments

Comments
 (0)