Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Input: synaptics - reset the ABS_X/Y fuzz after initializing MT axes

input_mt_init_slots() resets the ABS_X/Y fuzz to 0 and expects the driver
to call input_mt_report_pointer_emulation(). That is based on the MT
position bits which are already defuzzed - hence a fuzz of 0.

In the case of synaptics semi-mt devices, we report the ABS_X/Y axes
manually. This results in the MT position being defuzzed but the
single-touch emulation missing that defuzzing.

Work around this by re-initializing the ABS_X/Y axes after the MT axis to
get the same fuzz value back.

https://bugs.freedesktop.org/show_bug.cgi?id=104533

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>

authored by

Peter Hutterer and committed by
Dmitry Torokhov
19eb4ed1 2bc4298f

+10
+10
drivers/input/mouse/synaptics.c
··· 1280 1280 INPUT_MT_POINTER | 1281 1281 (cr48_profile_sensor ? 1282 1282 INPUT_MT_TRACK : INPUT_MT_SEMI_MT)); 1283 + 1284 + /* 1285 + * For semi-mt devices we send ABS_X/Y ourselves instead of 1286 + * input_mt_report_pointer_emulation. But 1287 + * input_mt_init_slots() resets the fuzz to 0, leading to a 1288 + * filtered ABS_MT_POSITION_X but an unfiltered ABS_X 1289 + * position. Let's re-initialize ABS_X/Y here. 1290 + */ 1291 + if (!cr48_profile_sensor) 1292 + set_abs_position_params(dev, &priv->info, ABS_X, ABS_Y); 1283 1293 } 1284 1294 1285 1295 if (SYN_CAP_PALMDETECT(info->capabilities))