Skip to content

Commit 713d79d

Browse files
jwrdegoedegregkh
authored andcommitted
ACPI: x86: Add skip i2c clients quirk for Vexia EDU ATLA 10 tablet 5V
[ Upstream commit 8f62ca9 ] The Vexia EDU ATLA 10 tablet comes in 2 different versions with significantly different mainboards. The only outward difference is that the charging barrel on one is marked 5V and the other is marked 9V. Both ship with Android 4.4 as factory OS and have the usual broken DSDT issues for x86 Android tablets. Add a quirk to skip ACPI I2C client enumeration for the 5V version to complement the existing quirk for the 9V version. Signed-off-by: Hans de Goede <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Rafael J. Wysocki <[email protected]> Signed-off-by: Sasha Levin <[email protected]>
1 parent f141064 commit 713d79d

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

drivers/acpi/x86/utils.c

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -407,6 +407,19 @@ static const struct dmi_system_id acpi_quirk_skip_dmi_ids[] = {
407407
.driver_data = (void *)(ACPI_QUIRK_SKIP_I2C_CLIENTS |
408408
ACPI_QUIRK_SKIP_ACPI_AC_AND_BATTERY),
409409
},
410+
{
411+
/* Vexia Edu Atla 10 tablet 5V version */
412+
.matches = {
413+
/* Having all 3 of these not set is somewhat unique */
414+
DMI_MATCH(DMI_SYS_VENDOR, "To be filled by O.E.M."),
415+
DMI_MATCH(DMI_PRODUCT_NAME, "To be filled by O.E.M."),
416+
DMI_MATCH(DMI_BOARD_NAME, "To be filled by O.E.M."),
417+
/* Above strings are too generic, also match on BIOS date */
418+
DMI_MATCH(DMI_BIOS_DATE, "05/14/2015"),
419+
},
420+
.driver_data = (void *)(ACPI_QUIRK_SKIP_I2C_CLIENTS |
421+
ACPI_QUIRK_SKIP_ACPI_AC_AND_BATTERY),
422+
},
410423
{
411424
/* Vexia Edu Atla 10 tablet 9V version */
412425
.matches = {

0 commit comments

Comments
 (0)