All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Input: ads7846 - correct the value got from SPI
@ 2016-05-03 17:22 Fabio Estevam
  2016-05-08 17:09 ` Greg KH
  0 siblings, 1 reply; 4+ messages in thread
From: Fabio Estevam @ 2016-05-03 17:22 UTC (permalink / raw)
  To: gregkh
  Cc: andrey.gelman, dmitry.torokhov, otavio, festevam, stable,
	Haibo Chen, Igor Grinberg, Fabio Estevam

From: Andrey Gelman <andrey.gelman@compulab.co.il>

commit 9ebedd30eec9c21d81bf3108d890faa2941fc847 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.

Cc: <stable@vger.kernel.org> # 3.14.x
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: Fabio Estevam <fabio.estevam@nxp.com>
---
 drivers/input/touchscreen/ads7846.c | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/drivers/input/touchscreen/ads7846.c b/drivers/input/touchscreen/ads7846.c
index 45a06e4..3512a68 100644
--- a/drivers/input/touchscreen/ads7846.c
+++ b/drivers/input/touchscreen/ads7846.c
@@ -668,18 +668,22 @@ static int ads7846_no_filter(void *ads, int data_idx, int *val)
 
 static int ads7846_get_value(struct ads7846 *ts, struct spi_message *m)
 {
+	int value;
 	struct spi_transfer *t =
 		list_entry(m->transfers.prev, struct spi_transfer, transfer_list);
 
 	if (ts->model == 7845) {
-		return be16_to_cpup((__be16 *)&(((char*)t->rx_buf)[1])) >> 3;
+		value = be16_to_cpup((__be16 *)&(((char *)t->rx_buf)[1]));
 	} else {
 		/*
 		 * adjust:  on-wire is a must-ignore bit, a BE12 value, then
 		 * padding; built from two 8 bit values written msb-first.
 		 */
-		return be16_to_cpup((__be16 *)t->rx_buf) >> 3;
+		value = be16_to_cpup((__be16 *)t->rx_buf);
 	}
+
+	/* enforce ADC output is 12 bits width */
+	return (value >> 3) & 0xfff;
 }
 
 static void ads7846_update_value(struct spi_message *m, int val)
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] Input: ads7846 - correct the value got from SPI
  2016-05-03 17:22 [PATCH] Input: ads7846 - correct the value got from SPI Fabio Estevam
@ 2016-05-08 17:09 ` Greg KH
  2016-05-08 17:44   ` Fabio Estevam
  0 siblings, 1 reply; 4+ messages in thread
From: Greg KH @ 2016-05-08 17:09 UTC (permalink / raw)
  To: Fabio Estevam
  Cc: andrey.gelman, dmitry.torokhov, otavio, festevam, stable,
	Haibo Chen, Igor Grinberg

On Tue, May 03, 2016 at 02:22:00PM -0300, Fabio Estevam wrote:
> From: Andrey Gelman <andrey.gelman@compulab.co.il>
> 
> commit 9ebedd30eec9c21d81bf3108d890faa2941fc847 upstream.

No, this is 879f2fea8a5a748bcbf98d2cdce9139c045505d3 upstream.  Please
be more careful next time :(

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] Input: ads7846 - correct the value got from SPI
  2016-05-08 17:09 ` Greg KH
@ 2016-05-08 17:44   ` Fabio Estevam
  2016-05-09  7:12     ` Greg KH
  0 siblings, 1 reply; 4+ messages in thread
From: Fabio Estevam @ 2016-05-08 17:44 UTC (permalink / raw)
  To: Greg KH
  Cc: Fabio Estevam, andrey.gelman, Dmitry Torokhov, Otavio Salvador,
	stable, Haibo Chen, Igor Grinberg

On Sun, May 8, 2016 at 2:09 PM, Greg KH <gregkh@linuxfoundation.org> wrote:
> On Tue, May 03, 2016 at 02:22:00PM -0300, Fabio Estevam wrote:
>> From: Andrey Gelman <andrey.gelman@compulab.co.il>
>>
>> commit 9ebedd30eec9c21d81bf3108d890faa2941fc847 upstream.
>
> No, this is 879f2fea8a5a748bcbf98d2cdce9139c045505d3 upstream.  Please
> be more careful next time :(

Ops, sorry about that. I have just resent it with the correct commit ID.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] Input: ads7846 - correct the value got from SPI
  2016-05-08 17:44   ` Fabio Estevam
@ 2016-05-09  7:12     ` Greg KH
  0 siblings, 0 replies; 4+ messages in thread
From: Greg KH @ 2016-05-09  7:12 UTC (permalink / raw)
  To: Fabio Estevam
  Cc: Fabio Estevam, andrey.gelman, Dmitry Torokhov, Otavio Salvador,
	stable, Haibo Chen, Igor Grinberg

On Sun, May 08, 2016 at 02:44:40PM -0300, Fabio Estevam wrote:
> On Sun, May 8, 2016 at 2:09 PM, Greg KH <gregkh@linuxfoundation.org> wrote:
> > On Tue, May 03, 2016 at 02:22:00PM -0300, Fabio Estevam wrote:
> >> From: Andrey Gelman <andrey.gelman@compulab.co.il>
> >>
> >> commit 9ebedd30eec9c21d81bf3108d890faa2941fc847 upstream.
> >
> > No, this is 879f2fea8a5a748bcbf98d2cdce9139c045505d3 upstream.  Please
> > be more careful next time :(
> 
> Ops, sorry about that. I have just resent it with the correct commit ID.

Thanks but I already applied it :)



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-05-09  7:12 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-05-03 17:22 [PATCH] Input: ads7846 - correct the value got from SPI Fabio Estevam
2016-05-08 17:09 ` Greg KH
2016-05-08 17:44   ` Fabio Estevam
2016-05-09  7:12     ` Greg KH

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.