Input: ads7846 - correct the value got from SPI
authorAndrey Gelman <andrey.gelman@compulab.co.il>
Tue, 6 Oct 2015 22:43:43 +0000 (15:43 -0700)
committerDanny Wood <danwood76@gmail.com>
Tue, 29 Jan 2019 13:13:01 +0000 (13:13 +0000)
commit814b8d9fe9ece30fa0b2f058cd818fae37f0b68e
tree83f01ded9104cf3d64d6fb469d5b71c51172c8e9
parent3126d9991025a088e63174055df13c924ded8097
Input: ads7846 - correct the value got from SPI

commit 879f2fea8a5a748bcbf98d2cdce9139c045505d3 upstream.

According to the touch controller spec, SPI return a 16 bit value, only 12
bits are valid, they are bit[14-3].

The value of MISO and MOSI can be configured when SPI is in idle mode.
Currently this touch driver assumes the SPI bus sets the MOSI and MISO in
low level when SPI bus is in idle mode. So the bit[15] of the value got
from SPI bus is always 0. But when SPI bus congfigures the MOSI and MISO in
high level during the SPI idle mode, the bit[15] of the value get from SPI
is always 1. If bit[15] is not masked, we may get the wrong value.

Mask the invalid bit to make sure the correct value gets returned.
Regardless of the SPI bus idle configuration.

Signed-off-by: Andrey Gelman <andrey.gelman@compulab.co.il>
Signed-off-by: Haibo Chen <haibo.chen@freescale.com>
Signed-off-by: Igor Grinberg <grinberg@compulab.co.il>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Signed-off-by: Willy Tarreau <w@1wt.eu>
drivers/input/touchscreen/ads7846.c