aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input/touchscreen/ili210x.c
diff options
context:
space:
mode:
authorMarek Vasut <marex@denx.de>2021-11-09 22:17:49 -0800
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2021-11-09 22:23:02 -0800
commit27931d38ce057f36e68bc68cd4bf4ba24bbb9c57 (patch)
tree16c1af442a48c15ef6a17f1d7a73d77f863061f3 /drivers/input/touchscreen/ili210x.c
parentInput: ili210x - improve polled sample spacing (diff)
downloadlinux-dev-27931d38ce057f36e68bc68cd4bf4ba24bbb9c57.tar.xz
linux-dev-27931d38ce057f36e68bc68cd4bf4ba24bbb9c57.zip
Input: ili210x - reduce sample period to 15ms
Modern devices may redraw display at 60 Hz, make sure we have one input sample per one frame. Reduce sample period to 15ms, so we would get up to 66.6 samples per second, although realistically with all the jitter and extra scheduling wiggle room, we would end up just above 60 samples per second. This should be a good compromise between sampling too often and sampling too seldom. Signed-off-by: Marek Vasut <marex@denx.de> Link: https://lore.kernel.org/r/20211108114145.84118-1-marex@denx.de Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input/touchscreen/ili210x.c')
-rw-r--r--drivers/input/touchscreen/ili210x.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/touchscreen/ili210x.c b/drivers/input/touchscreen/ili210x.c
index de81ba77ffc7..2bd407d86bae 100644
--- a/drivers/input/touchscreen/ili210x.c
+++ b/drivers/input/touchscreen/ili210x.c
@@ -14,7 +14,7 @@
#include <linux/slab.h>
#include <asm/unaligned.h>
-#define ILI2XXX_POLL_PERIOD 20
+#define ILI2XXX_POLL_PERIOD 15
#define ILI210X_DATA_SIZE 64
#define ILI211X_DATA_SIZE 43