2 * drivers/input/touchscreen/tsc2007.c
4 * Copyright (c) 2008 MtekVision Co., Ltd.
5 * Kwangwoo Lee <kwlee@mtekvision.com>
9 * Copyright (c) 2005 David Brownell
10 * Copyright (c) 2006 Nokia Corporation
12 * Copyright (C) 2004-2005 Richard Purdie
13 * - omap_ts.[hc], ads7846.h, ts_osk.c
14 * Copyright (C) 2002 MontaVista Software
15 * Copyright (C) 2004 Texas Instruments
16 * Copyright (C) 2005 Dirk Behme
18 * This program is free software; you can redistribute it and/or modify
19 * it under the terms of the GNU General Public License version 2 as
20 * published by the Free Software Foundation.
23 #include <linux/module.h>
24 #include <linux/slab.h>
25 #include <linux/input.h>
26 #include <linux/interrupt.h>
27 #include <linux/i2c.h>
28 #include <linux/i2c/tsc2007.h>
29 #include <linux/of_device.h>
31 #include <linux/of_gpio.h>
33 #define TSC2007_MEASURE_TEMP0 (0x0 << 4)
34 #define TSC2007_MEASURE_AUX (0x2 << 4)
35 #define TSC2007_MEASURE_TEMP1 (0x4 << 4)
36 #define TSC2007_ACTIVATE_XN (0x8 << 4)
37 #define TSC2007_ACTIVATE_YN (0x9 << 4)
38 #define TSC2007_ACTIVATE_YP_XN (0xa << 4)
39 #define TSC2007_SETUP (0xb << 4)
40 #define TSC2007_MEASURE_X (0xc << 4)
41 #define TSC2007_MEASURE_Y (0xd << 4)
42 #define TSC2007_MEASURE_Z1 (0xe << 4)
43 #define TSC2007_MEASURE_Z2 (0xf << 4)
45 #define TSC2007_POWER_OFF_IRQ_EN (0x0 << 2)
46 #define TSC2007_ADC_ON_IRQ_DIS0 (0x1 << 2)
47 #define TSC2007_ADC_OFF_IRQ_EN (0x2 << 2)
48 #define TSC2007_ADC_ON_IRQ_DIS1 (0x3 << 2)
50 #define TSC2007_12BIT (0x0 << 1)
51 #define TSC2007_8BIT (0x1 << 1)
53 #define MAX_12BIT ((1 << 12) - 1)
55 #define ADC_ON_12BIT (TSC2007_12BIT | TSC2007_ADC_ON_IRQ_DIS0)
57 #define READ_Y (ADC_ON_12BIT | TSC2007_MEASURE_Y)
58 #define READ_Z1 (ADC_ON_12BIT | TSC2007_MEASURE_Z1)
59 #define READ_Z2 (ADC_ON_12BIT | TSC2007_MEASURE_Z2)
60 #define READ_X (ADC_ON_12BIT | TSC2007_MEASURE_X)
61 #define PWRDOWN (TSC2007_12BIT | TSC2007_POWER_OFF_IRQ_EN)
70 struct input_dev
*input
;
73 struct i2c_client
*client
;
78 unsigned long poll_period
;
86 wait_queue_head_t wait
;
89 int (*get_pendown_state
)(struct device
*);
90 void (*clear_penirq
)(void);
93 static inline int tsc2007_xfer(struct tsc2007
*tsc
, u8 cmd
)
98 data
= i2c_smbus_read_word_data(tsc
->client
, cmd
);
100 dev_err(&tsc
->client
->dev
, "i2c io error: %d\n", data
);
104 /* The protocol and raw data format from i2c interface:
105 * S Addr Wr [A] Comm [A] S Addr Rd [A] [DataLow] A [DataHigh] NA P
106 * Where DataLow has [D11-D4], DataHigh has [D3-D0 << 4 | Dummy 4bit].
108 val
= swab16(data
) >> 4;
110 dev_dbg(&tsc
->client
->dev
, "data: 0x%x, val: 0x%x\n", data
, val
);
115 static void tsc2007_read_values(struct tsc2007
*tsc
, struct ts_event
*tc
)
117 /* y- still on; turn on only y+ (and ADC) */
118 tc
->y
= tsc2007_xfer(tsc
, READ_Y
);
120 /* turn y- off, x+ on, then leave in lowpower */
121 tc
->x
= tsc2007_xfer(tsc
, READ_X
);
123 /* turn y+ off, x- on; we'll use formula #1 */
124 tc
->z1
= tsc2007_xfer(tsc
, READ_Z1
);
125 tc
->z2
= tsc2007_xfer(tsc
, READ_Z2
);
127 /* Prepare for next touch reading - power down ADC, enable PENIRQ */
128 tsc2007_xfer(tsc
, PWRDOWN
);
131 static u32
tsc2007_calculate_pressure(struct tsc2007
*tsc
, struct ts_event
*tc
)
135 /* range filtering */
136 if (tc
->x
== MAX_12BIT
)
139 if (likely(tc
->x
&& tc
->z1
)) {
140 /* compute touch pressure resistance using equation #1 */
141 rt
= tc
->z2
- tc
->z1
;
143 rt
*= tsc
->x_plate_ohms
;
145 rt
= (rt
+ 2047) >> 12;
151 static bool tsc2007_is_pen_down(struct tsc2007
*ts
)
154 * NOTE: We can't rely on the pressure to determine the pen down
155 * state, even though this controller has a pressure sensor.
156 * The pressure value can fluctuate for quite a while after
157 * lifting the pen and in some cases may not even settle at the
160 * The only safe way to check for the pen up condition is in the
161 * work function by reading the pen signal state (it's a GPIO
162 * and IRQ). Unfortunately such callback is not always available,
163 * in that case we assume that the pen is down and expect caller
164 * to fall back on the pressure reading.
167 if (!ts
->get_pendown_state
)
170 return ts
->get_pendown_state(&ts
->client
->dev
);
173 static irqreturn_t
tsc2007_soft_irq(int irq
, void *handle
)
175 struct tsc2007
*ts
= handle
;
176 struct input_dev
*input
= ts
->input
;
180 while (!ts
->stopped
&& tsc2007_is_pen_down(ts
)) {
182 /* pen is down, continue with the measurement */
183 tsc2007_read_values(ts
, &tc
);
185 rt
= tsc2007_calculate_pressure(ts
, &tc
);
187 if (!rt
&& !ts
->get_pendown_state
) {
189 * If pressure reported is 0 and we don't have
190 * callback to check pendown state, we have to
191 * assume that pen was lifted up.
196 if (rt
<= ts
->max_rt
) {
197 dev_dbg(&ts
->client
->dev
,
198 "DOWN point(%4d,%4d), pressure (%4u)\n",
201 input_report_key(input
, BTN_TOUCH
, 1);
202 input_report_abs(input
, ABS_X
, tc
.x
);
203 input_report_abs(input
, ABS_Y
, tc
.y
);
204 input_report_abs(input
, ABS_PRESSURE
, rt
);
210 * Sample found inconsistent by debouncing or pressure is
211 * beyond the maximum. Don't report it to user space,
212 * repeat at least once more the measurement.
214 dev_dbg(&ts
->client
->dev
, "ignored pressure %d\n", rt
);
217 wait_event_timeout(ts
->wait
, ts
->stopped
,
218 msecs_to_jiffies(ts
->poll_period
));
221 dev_dbg(&ts
->client
->dev
, "UP\n");
223 input_report_key(input
, BTN_TOUCH
, 0);
224 input_report_abs(input
, ABS_PRESSURE
, 0);
227 if (ts
->clear_penirq
)
233 static irqreturn_t
tsc2007_hard_irq(int irq
, void *handle
)
235 struct tsc2007
*ts
= handle
;
237 if (tsc2007_is_pen_down(ts
))
238 return IRQ_WAKE_THREAD
;
240 if (ts
->clear_penirq
)
246 static void tsc2007_stop(struct tsc2007
*ts
)
252 disable_irq(ts
->irq
);
255 static int tsc2007_open(struct input_dev
*input_dev
)
257 struct tsc2007
*ts
= input_get_drvdata(input_dev
);
265 /* Prepare for touch readings - power down ADC and enable PENIRQ */
266 err
= tsc2007_xfer(ts
, PWRDOWN
);
275 static void tsc2007_close(struct input_dev
*input_dev
)
277 struct tsc2007
*ts
= input_get_drvdata(input_dev
);
283 static int tsc2007_get_pendown_state_gpio(struct device
*dev
)
285 struct i2c_client
*client
= to_i2c_client(dev
);
286 struct tsc2007
*ts
= i2c_get_clientdata(client
);
288 return !gpio_get_value(ts
->gpio
);
291 static int tsc2007_probe_dt(struct i2c_client
*client
, struct tsc2007
*ts
)
293 struct device_node
*np
= client
->dev
.of_node
;
298 dev_err(&client
->dev
, "missing device tree data\n");
302 if (!of_property_read_u32(np
, "ti,max-rt", &val32
))
305 ts
->max_rt
= MAX_12BIT
;
307 if (!of_property_read_u32(np
, "ti,fuzzx", &val32
))
310 if (!of_property_read_u32(np
, "ti,fuzzy", &val32
))
313 if (!of_property_read_u32(np
, "ti,fuzzz", &val32
))
316 if (!of_property_read_u64(np
, "ti,poll-period", &val64
))
317 ts
->poll_period
= val64
;
321 if (!of_property_read_u32(np
, "ti,x-plate-ohms", &val32
)) {
322 ts
->x_plate_ohms
= val32
;
324 dev_err(&client
->dev
, "missing ti,x-plate-ohms devicetree property.");
328 ts
->gpio
= of_get_gpio(np
, 0);
329 if (gpio_is_valid(ts
->gpio
))
330 ts
->get_pendown_state
= tsc2007_get_pendown_state_gpio
;
332 dev_warn(&client
->dev
,
333 "GPIO not specified in DT (of_get_gpio returned %d)\n",
339 static int tsc2007_probe_dt(struct i2c_client
*client
, struct tsc2007
*ts
)
341 dev_err(&client
->dev
, "platform data is required!\n");
346 static int tsc2007_probe_pdev(struct i2c_client
*client
, struct tsc2007
*ts
,
347 const struct tsc2007_platform_data
*pdata
,
348 const struct i2c_device_id
*id
)
350 ts
->model
= pdata
->model
;
351 ts
->x_plate_ohms
= pdata
->x_plate_ohms
;
352 ts
->max_rt
= pdata
->max_rt
? : MAX_12BIT
;
353 ts
->poll_period
= pdata
->poll_period
? : 1;
354 ts
->get_pendown_state
= pdata
->get_pendown_state
;
355 ts
->clear_penirq
= pdata
->clear_penirq
;
356 ts
->fuzzx
= pdata
->fuzzx
;
357 ts
->fuzzy
= pdata
->fuzzy
;
358 ts
->fuzzz
= pdata
->fuzzz
;
360 if (pdata
->x_plate_ohms
== 0) {
361 dev_err(&client
->dev
, "x_plate_ohms is not set up in platform data");
368 static void tsc2007_call_exit_platform_hw(void *data
)
370 struct device
*dev
= data
;
371 const struct tsc2007_platform_data
*pdata
= dev_get_platdata(dev
);
373 pdata
->exit_platform_hw();
376 static int tsc2007_probe(struct i2c_client
*client
,
377 const struct i2c_device_id
*id
)
379 const struct tsc2007_platform_data
*pdata
= dev_get_platdata(&client
->dev
);
381 struct input_dev
*input_dev
;
384 if (!i2c_check_functionality(client
->adapter
,
385 I2C_FUNC_SMBUS_READ_WORD_DATA
))
388 ts
= devm_kzalloc(&client
->dev
, sizeof(struct tsc2007
), GFP_KERNEL
);
393 err
= tsc2007_probe_pdev(client
, ts
, pdata
, id
);
395 err
= tsc2007_probe_dt(client
, ts
);
399 input_dev
= devm_input_allocate_device(&client
->dev
);
403 i2c_set_clientdata(client
, ts
);
406 ts
->irq
= client
->irq
;
407 ts
->input
= input_dev
;
408 init_waitqueue_head(&ts
->wait
);
410 snprintf(ts
->phys
, sizeof(ts
->phys
),
411 "%s/input0", dev_name(&client
->dev
));
413 input_dev
->name
= "TSC2007 Touchscreen";
414 input_dev
->phys
= ts
->phys
;
415 input_dev
->id
.bustype
= BUS_I2C
;
417 input_dev
->open
= tsc2007_open
;
418 input_dev
->close
= tsc2007_close
;
420 input_set_drvdata(input_dev
, ts
);
422 input_dev
->evbit
[0] = BIT_MASK(EV_KEY
) | BIT_MASK(EV_ABS
);
423 input_dev
->keybit
[BIT_WORD(BTN_TOUCH
)] = BIT_MASK(BTN_TOUCH
);
425 input_set_abs_params(input_dev
, ABS_X
, 0, MAX_12BIT
, ts
->fuzzx
, 0);
426 input_set_abs_params(input_dev
, ABS_Y
, 0, MAX_12BIT
, ts
->fuzzy
, 0);
427 input_set_abs_params(input_dev
, ABS_PRESSURE
, 0, MAX_12BIT
,
431 if (pdata
->exit_platform_hw
) {
432 err
= devm_add_action(&client
->dev
,
433 tsc2007_call_exit_platform_hw
,
436 dev_err(&client
->dev
,
437 "Failed to register exit_platform_hw action, %d\n",
443 if (pdata
->init_platform_hw
)
444 pdata
->init_platform_hw();
447 err
= devm_request_threaded_irq(&client
->dev
, ts
->irq
,
448 tsc2007_hard_irq
, tsc2007_soft_irq
,
450 client
->dev
.driver
->name
, ts
);
452 dev_err(&client
->dev
, "Failed to request irq %d: %d\n",
459 err
= input_register_device(input_dev
);
461 dev_err(&client
->dev
,
462 "Failed to register input device: %d\n", err
);
469 static const struct i2c_device_id tsc2007_idtable
[] = {
474 MODULE_DEVICE_TABLE(i2c
, tsc2007_idtable
);
477 static const struct of_device_id tsc2007_of_match
[] = {
478 { .compatible
= "ti,tsc2007" },
481 MODULE_DEVICE_TABLE(of
, tsc2007_of_match
);
484 static struct i2c_driver tsc2007_driver
= {
486 .owner
= THIS_MODULE
,
488 .of_match_table
= of_match_ptr(tsc2007_of_match
),
490 .id_table
= tsc2007_idtable
,
491 .probe
= tsc2007_probe
,
494 module_i2c_driver(tsc2007_driver
);
496 MODULE_AUTHOR("Kwangwoo Lee <kwlee@mtekvision.com>");
497 MODULE_DESCRIPTION("TSC2007 TouchScreen Driver");
498 MODULE_LICENSE("GPL");