aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2020-04-19 22:19:30 +0200
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2020-06-04 10:06:23 +0200
commite1404a1037b3c1c07ab8c4057449a04778f335a6 (patch)
tree2e4c898bb431f18f5e5de8cd2302bab96ba292cf
parent48d64783a73d750270999664ca36113e54a1339a (diff)
downloadkernel_replicant_linux-upstreaming/pressure-report.tar.gz
kernel_replicant_linux-upstreaming/pressure-report.tar.bz2
kernel_replicant_linux-upstreaming/pressure-report.zip
Input: mms114: don't report 0 pressure while slidingupstreaming/pressure-report
When sliding we manage to have events that look like that: Event: time 1571859641.595517, -------------- SYN_REPORT ------------ Event: time 1571859641.606593, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 1193 Event: time 1571859641.606593, type 3 (EV_ABS), code 48 (ABS_MT_TOUCH_MAJOR), value 21 Event: time 1571859641.606593, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 0 Event: time 1571859641.606593, type 3 (EV_ABS), code 1 (ABS_Y), value 1193 Event: time 1571859641.606593, type 3 (EV_ABS), code 24 (ABS_PRESSURE), value 0 Event: time 1571859641.606593, -------------- SYN_REPORT ------------ However in Documentation/input/multi-touch-protocol.rst, we have: ABS_MT_PRESSURE The pressure, in arbitrary units, on the contact area. May be used instead of TOUCH and WIDTH for pressure-based devices or any device with a spatial signal intensity distribution. Because of that userspace may use a ABS_MT_PRESSURE of 0 as an indication that the sliding stopped. However having an ABS_MT_PRESSURE of 0 is not consistent with having ABS_MT_TOUCH_MAJOR > 0 along with an ABS_MT_TRACKING_ID that is still valid. This was tested on the following devices: - GT-I9300 with a glass screen protection - GT-I9300 without any screen protection - GT-N7105 with a glass screen protection Reported-by: Javi Ferrer <javi.f.o@gmail.com> Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
-rw-r--r--drivers/input/touchscreen/mms114.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/input/touchscreen/mms114.c b/drivers/input/touchscreen/mms114.c
index 2ef1adaed9af..adc18cd9a437 100644
--- a/drivers/input/touchscreen/mms114.c
+++ b/drivers/input/touchscreen/mms114.c
@@ -183,7 +183,10 @@ static void mms114_process_mt(struct mms114_data *data, struct mms114_touch *tou
if (touch->pressed) {
touchscreen_report_pos(input_dev, &data->props, x, y, true);
input_report_abs(input_dev, ABS_MT_TOUCH_MAJOR, touch->width);
- input_report_abs(input_dev, ABS_MT_PRESSURE, touch->strength);
+ if (touch->strength) {
+ input_report_abs(input_dev, ABS_MT_PRESSURE,
+ touch->strength);
+ }
}
}