Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1324734

[PATCH v3 2/3] input: touchscreen: ad7879: fix default x/y axis assignment

From Stefan Agner <stefan@agner.ch>
Newsgroups linux.kernel
Subject [PATCH v3 2/3] input: touchscreen: ad7879: fix default x/y axis assignment
Date 2016-02-03 00:30 +0100
Message-ID <qXSyv-23G-35@gated-at.bofh.it> (permalink)
References <qXSoO-1XH-15@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


The X/Y position measurements read from the controller are interpreted
wrong. The first measurement X+ contains the Y position, and the second
measurement Y+ the X position (see also Table 11 Register Table in the
data sheet).

The problem is already known and a swap option has been introduced:
commit 6680884a4420 ("Input: ad7879 - add option to correct xy axis")

However, the meaning of the new boolean is inverted since the underlying
values are already swapped. Let ts->swap_xy set to true actually be the
swapped configuration of the two axis.

Signed-off-by: Stefan Agner <stefan@agner.ch>
---
Changes since v2:
- (none)
Changes since v1:
- Keep axis swapped by default when using platform data

 drivers/input/touchscreen/ad7879.c | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/drivers/input/touchscreen/ad7879.c b/drivers/input/touchscreen/ad7879.c
index 93b8ea2..abd0220 100644
--- a/drivers/input/touchscreen/ad7879.c
+++ b/drivers/input/touchscreen/ad7879.c
@@ -94,8 +94,8 @@
 #define AD7879_TEMP_BIT			(1<<1)
 
 enum {
-	AD7879_SEQ_XPOS  = 0,
-	AD7879_SEQ_YPOS  = 1,
+	AD7879_SEQ_YPOS  = 0,
+	AD7879_SEQ_XPOS  = 1,
 	AD7879_SEQ_Z1    = 2,
 	AD7879_SEQ_Z2    = 3,
 	AD7879_NR_SENSE  = 4,
@@ -517,7 +517,9 @@ struct ad7879 *ad7879_probe(struct device *dev, u8 devid, unsigned int irq,
 	ts->dev = dev;
 	ts->input = input_dev;
 	ts->irq = irq;
-	ts->swap_xy = pdata->swap_xy;
+
+	/* Use swapped axis by default (backward compatibility) */
+	ts->swap_xy = !pdata->swap_xy;
 
 	setup_timer(&ts->timer, ad7879_timer, (unsigned long) ts);
 
-- 
2.7.0

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH v3 1/3] input: touchscreen: ad7879: move header to platform_data directory Stefan Agner <stefan@agner.ch> - 2016-02-03 00:20 +0100
  [PATCH v3 2/3] input: touchscreen: ad7879: fix default x/y axis assignment Stefan Agner <stefan@agner.ch> - 2016-02-03 00:30 +0100
  [PATCH v3 3/3] input: touchscreen: ad7879: add device tree support Stefan Agner <stefan@agner.ch> - 2016-02-03 00:30 +0100

csiph-web