summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuXin Xiao <xiaoyueyoqwq@gmail.com>2026-08-25 02:15:59 +0800
committerAndi Shyti <andi.shyti@linux.intel.com>2026-09-09 11:52:15 +0200
commit6bbac64095dfa606fac5fe87e9161913cae92294 (patch)
tree67b4c596281ca8624b200dec11767b5152b80926
parentcee9395acd8043be0644b25c34bfa86623f2b935 (diff)
downloadlinux-next-6bbac64095dfa606fac5fe87e9161913cae92294.tar.gz
linux-next-6bbac64095dfa606fac5fe87e9161913cae92294.zip
i2c: acpi: Add DELL0A86 to i2c_acpi_force_100khz_device_ids
The ELAN 04F3:3185 touchpad exposed as DELL0A86 on the Dell Inspiron 13 5310 intermittently exhibits excessive smoothing when the I2C bus runs at 400 kHz. During an affected period pointer movement becomes severely sluggish and sticky for tens of seconds. The ACPI firmware configures the touchpad bus for 400 kHz. Add DELL0A86 to i2c_acpi_force_100khz_device_ids so that the bus runs at 100 kHz, as is already done for other touchpads exhibiting the same excessive smoothing problem. With the quirk applied, the kernel reports that the firmware requested 400 kHz and that the bus is forced to 100 kHz. The problem did not recur during extended heavy use, including an S4 hibernate/resume cycle. An independent 2021 report from another Dell Inspiron 13 5310 user describes the same intermittent sticky behavior and identifies the same DELL0A86 / 04F3:3185 touchpad. Link: https://www.reddit.com/r/linuxquestions/comments/nsso5b/help_needed_with_sticky_touchpad_spoiling_brand/ Signed-off-by: YuXin Xiao <xiaoyueyoqwq@gmail.com> Assisted-by: Codex:ChatGPT-5.6-Sol Assisted-by: OpenCode:Ox Alpha (x-preview-f-free) Acked-by: Mika Westerberg <mika.westerberg@linux.intel.com> Signed-off-by: Andi Shyti <andi.shyti@kernel.org> Link: https://patch.msgid.link/20260824181559.146133-1-xiaoyueyoqwq@gmail.com
-rw-r--r--drivers/i2c/i2c-core-acpi.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/i2c/i2c-core-acpi.c b/drivers/i2c/i2c-core-acpi.c
index 8f3bdd50186e..3af0e0551185 100644
--- a/drivers/i2c/i2c-core-acpi.c
+++ b/drivers/i2c/i2c-core-acpi.c
@@ -371,6 +371,7 @@ static const struct acpi_device_id i2c_acpi_force_100khz_device_ids[] = {
* the device works without issues on Windows at what is expected to be
* a 400KHz frequency. The root cause of the issue is not known.
*/
+ { "DELL0A86", 0 },
{ "DLL0945", 0 },
{ "ELAN0678", 0 },
{ "ELAN06FA", 0 },