From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 3B7CA1E00B6; Wed, 19 Feb 2025 08:36:18 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1739954178; cv=none; b=ZbdmuyZTT9ZzErSORbROowtLMhIwaPdrJ9yX2aNIBBGqmiL8cVV7OlQox3BLklLWx+Tw+n+P1CPTKJE+yU1YHN3HMZVHwRJou06bjbtaN6OeS1PSp8+Xa5CJfh+swcPokvTcS7io3a4+SkLu++0qSv+Z/MjJ6mVoSWlNj6WishM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1739954178; c=relaxed/simple; bh=8FRLhmkcrUCIkIbiQimXHa77qK7gcvE+YnRHovmp0t4=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=uZYUpvzqovzrs+IBxppmpfBX/jxHPL3f67pg1p4mGum6OabPPmG2r7p9pKRc9++XcGw/bkhIfn0J2+V7yPEoRLUQquRRkb0U7e8yp1JrinYTjIQlLNLbZtuWg4IHVkAeMHEIUqZ/VPl4yzgfpc6w8R9jhaF8ZTiPyZ8W8aytpF0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=043HNgs6; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="043HNgs6" Received: by smtp.kernel.org (Postfix) with ESMTPSA id AE0BCC4CEE7; Wed, 19 Feb 2025 08:36:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1739954178; bh=8FRLhmkcrUCIkIbiQimXHa77qK7gcvE+YnRHovmp0t4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=043HNgs64krJSnciXfsUXp4rJTOl9IMeCsMQAAnkVlyth4jCuWTKjMw6Hnp71Eikz uPexR29J15IrYpaIUwHHGMRTaP4iafxLsqivIa7S4QvXDaaDxoYgCzG3oiF/v0i0AS JHUQYSdSLtLVmch6urZZec1WFzziYzdqQ/fl8xs8= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Hans de Goede , "Rafael J. Wysocki" , Sasha Levin Subject: [PATCH 6.13 104/274] ACPI: x86: Add skip i2c clients quirk for Vexia EDU ATLA 10 tablet 5V Date: Wed, 19 Feb 2025 09:25:58 +0100 Message-ID: <20250219082613.689017435@linuxfoundation.org> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250219082609.533585153@linuxfoundation.org> References: <20250219082609.533585153@linuxfoundation.org> User-Agent: quilt/0.68 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.13-stable review patch. If anyone has any objections, please let me know. ------------------ From: Hans de Goede [ Upstream commit 8f62ca9c338aae4f73e9ce0221c3d4668359ddd8 ] 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 Link: https://patch.msgid.link/20250123132202.18209-1-hdegoede@redhat.com Signed-off-by: Rafael J. Wysocki Signed-off-by: Sasha Levin --- drivers/acpi/x86/utils.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/drivers/acpi/x86/utils.c b/drivers/acpi/x86/utils.c index cb45ef5240dab..068c1612660bc 100644 --- a/drivers/acpi/x86/utils.c +++ b/drivers/acpi/x86/utils.c @@ -407,6 +407,19 @@ static const struct dmi_system_id acpi_quirk_skip_dmi_ids[] = { .driver_data = (void *)(ACPI_QUIRK_SKIP_I2C_CLIENTS | ACPI_QUIRK_SKIP_ACPI_AC_AND_BATTERY), }, + { + /* Vexia Edu Atla 10 tablet 5V version */ + .matches = { + /* Having all 3 of these not set is somewhat unique */ + DMI_MATCH(DMI_SYS_VENDOR, "To be filled by O.E.M."), + DMI_MATCH(DMI_PRODUCT_NAME, "To be filled by O.E.M."), + DMI_MATCH(DMI_BOARD_NAME, "To be filled by O.E.M."), + /* Above strings are too generic, also match on BIOS date */ + DMI_MATCH(DMI_BIOS_DATE, "05/14/2015"), + }, + .driver_data = (void *)(ACPI_QUIRK_SKIP_I2C_CLIENTS | + ACPI_QUIRK_SKIP_ACPI_AC_AND_BATTERY), + }, { /* Vexia Edu Atla 10 tablet 9V version */ .matches = { -- 2.39.5