Skip to content

Commit a5cb069

Browse files
jwrdegoederafaeljw
authored andcommitted
ACPI: x86: Add skip i2c clients quirk for Acer Iconia One 7 B1-750
The Acer Iconia One 7 B1-750 is a x86 tablet which ships with Android x86 as factory OS. The Android x86 kernel fork ignores I2C devices described in the DSDT, except for the PMIC and Audio codecs. As usual the Acer Iconia One 7 B1-750's DSDT contains a bunch of extra I2C devices which are not actually there, causing various resource conflicts. Add an ACPI_QUIRK_SKIP_I2C_CLIENTS quirk for the Acer Iconia One 7 B1-750 to the acpi_quirk_skip_dmi_ids table to woraround this. The DSDT also contains broken ACPI GPIO event handlers, disable those too. Signed-off-by: Hans de Goede <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent 5adc409 commit a5cb069

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

drivers/acpi/x86/utils.c

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,16 @@ static const struct dmi_system_id acpi_quirk_skip_dmi_ids[] = {
280280
* need the x86-android-tablets module to properly work.
281281
*/
282282
#if IS_ENABLED(CONFIG_X86_ANDROID_TABLETS)
283+
{
284+
/* Acer Iconia One 7 B1-750 */
285+
.matches = {
286+
DMI_MATCH(DMI_SYS_VENDOR, "Insyde"),
287+
DMI_MATCH(DMI_PRODUCT_NAME, "VESPA2"),
288+
},
289+
.driver_data = (void *)(ACPI_QUIRK_SKIP_I2C_CLIENTS |
290+
ACPI_QUIRK_SKIP_ACPI_AC_AND_BATTERY |
291+
ACPI_QUIRK_SKIP_GPIO_EVENT_HANDLERS),
292+
},
283293
{
284294
.matches = {
285295
DMI_EXACT_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),

0 commit comments

Comments
 (0)