blob: faa82ddb014b87cb2c1b0c4fb4004ce7378e7b7f [file] [log] [blame]
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -05001/*
2 * drivers/input/touchscreen/tsc2007.c
3 *
4 * Copyright (c) 2008 MtekVision Co., Ltd.
5 * Kwangwoo Lee <kwlee@mtekvision.com>
6 *
7 * Using code from:
8 * - ads7846.c
9 * Copyright (c) 2005 David Brownell
10 * Copyright (c) 2006 Nokia Corporation
11 * - corgi_ts.c
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
17 *
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.
21 */
22
23#include <linux/module.h>
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -050024#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
Dmitry Torokhov141586bc2009-07-24 23:14:16 -070030#define TS_POLL_PERIOD 1 /* ms delay between samples */
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -050031
32#define TSC2007_MEASURE_TEMP0 (0x0 << 4)
33#define TSC2007_MEASURE_AUX (0x2 << 4)
34#define TSC2007_MEASURE_TEMP1 (0x4 << 4)
35#define TSC2007_ACTIVATE_XN (0x8 << 4)
36#define TSC2007_ACTIVATE_YN (0x9 << 4)
37#define TSC2007_ACTIVATE_YP_XN (0xa << 4)
38#define TSC2007_SETUP (0xb << 4)
39#define TSC2007_MEASURE_X (0xc << 4)
40#define TSC2007_MEASURE_Y (0xd << 4)
41#define TSC2007_MEASURE_Z1 (0xe << 4)
42#define TSC2007_MEASURE_Z2 (0xf << 4)
43
44#define TSC2007_POWER_OFF_IRQ_EN (0x0 << 2)
45#define TSC2007_ADC_ON_IRQ_DIS0 (0x1 << 2)
46#define TSC2007_ADC_OFF_IRQ_EN (0x2 << 2)
47#define TSC2007_ADC_ON_IRQ_DIS1 (0x3 << 2)
48
49#define TSC2007_12BIT (0x0 << 1)
50#define TSC2007_8BIT (0x1 << 1)
51
52#define MAX_12BIT ((1 << 12) - 1)
53
54#define ADC_ON_12BIT (TSC2007_12BIT | TSC2007_ADC_ON_IRQ_DIS0)
55
56#define READ_Y (ADC_ON_12BIT | TSC2007_MEASURE_Y)
57#define READ_Z1 (ADC_ON_12BIT | TSC2007_MEASURE_Z1)
58#define READ_Z2 (ADC_ON_12BIT | TSC2007_MEASURE_Z2)
59#define READ_X (ADC_ON_12BIT | TSC2007_MEASURE_X)
60#define PWRDOWN (TSC2007_12BIT | TSC2007_POWER_OFF_IRQ_EN)
61
62struct ts_event {
63 u16 x;
64 u16 y;
65 u16 z1, z2;
66};
67
68struct tsc2007 {
69 struct input_dev *input;
70 char phys[32];
Richard Röjfors75fba3b2009-07-24 22:01:39 -070071 struct delayed_work work;
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -050072
73 struct i2c_client *client;
74
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -050075 u16 model;
76 u16 x_plate_ohms;
Thierry Reding84005eb2011-05-17 09:31:01 -070077 u16 max_rt;
Thierry Reding2d137c7e2011-05-17 09:31:33 -070078 unsigned long poll_delay;
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -050079
Dmitry Torokhov141586bc2009-07-24 23:14:16 -070080 bool pendown;
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -050081 int irq;
82
83 int (*get_pendown_state)(void);
84 void (*clear_penirq)(void);
85};
86
87static inline int tsc2007_xfer(struct tsc2007 *tsc, u8 cmd)
88{
89 s32 data;
90 u16 val;
91
92 data = i2c_smbus_read_word_data(tsc->client, cmd);
93 if (data < 0) {
94 dev_err(&tsc->client->dev, "i2c io error: %d\n", data);
95 return data;
96 }
97
98 /* The protocol and raw data format from i2c interface:
99 * S Addr Wr [A] Comm [A] S Addr Rd [A] [DataLow] A [DataHigh] NA P
100 * Where DataLow has [D11-D4], DataHigh has [D3-D0 << 4 | Dummy 4bit].
101 */
102 val = swab16(data) >> 4;
103
104 dev_dbg(&tsc->client->dev, "data: 0x%x, val: 0x%x\n", data, val);
105
106 return val;
107}
108
Dmitry Torokhovd570e9e2009-08-04 22:07:26 -0700109static void tsc2007_read_values(struct tsc2007 *tsc, struct ts_event *tc)
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -0500110{
Dmitry Torokhovd570e9e2009-08-04 22:07:26 -0700111 /* y- still on; turn on only y+ (and ADC) */
112 tc->y = tsc2007_xfer(tsc, READ_Y);
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -0500113
Dmitry Torokhovd570e9e2009-08-04 22:07:26 -0700114 /* turn y- off, x+ on, then leave in lowpower */
115 tc->x = tsc2007_xfer(tsc, READ_X);
116
117 /* turn y+ off, x- on; we'll use formula #1 */
118 tc->z1 = tsc2007_xfer(tsc, READ_Z1);
119 tc->z2 = tsc2007_xfer(tsc, READ_Z2);
120
121 /* Prepare for next touch reading - power down ADC, enable PENIRQ */
122 tsc2007_xfer(tsc, PWRDOWN);
123}
124
125static u32 tsc2007_calculate_pressure(struct tsc2007 *tsc, struct ts_event *tc)
126{
127 u32 rt = 0;
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -0500128
129 /* range filtering */
Dmitry Torokhovd570e9e2009-08-04 22:07:26 -0700130 if (tc->x == MAX_12BIT)
131 tc->x = 0;
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -0500132
Dmitry Torokhovd570e9e2009-08-04 22:07:26 -0700133 if (likely(tc->x && tc->z1)) {
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -0500134 /* compute touch pressure resistance using equation #1 */
Dmitry Torokhovd570e9e2009-08-04 22:07:26 -0700135 rt = tc->z2 - tc->z1;
136 rt *= tc->x;
137 rt *= tsc->x_plate_ohms;
138 rt /= tc->z1;
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -0500139 rt = (rt + 2047) >> 12;
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -0500140 }
141
Dmitry Torokhovd570e9e2009-08-04 22:07:26 -0700142 return rt;
143}
144
145static void tsc2007_send_up_event(struct tsc2007 *tsc)
146{
147 struct input_dev *input = tsc->input;
148
149 dev_dbg(&tsc->client->dev, "UP\n");
150
151 input_report_key(input, BTN_TOUCH, 0);
152 input_report_abs(input, ABS_PRESSURE, 0);
153 input_sync(input);
154}
155
156static void tsc2007_work(struct work_struct *work)
157{
158 struct tsc2007 *ts =
159 container_of(to_delayed_work(work), struct tsc2007, work);
Thierry Reding4a1a42a2011-05-17 09:29:45 -0700160 bool debounced = false;
Dmitry Torokhovd570e9e2009-08-04 22:07:26 -0700161 struct ts_event tc;
162 u32 rt;
163
Dmitry Torokhov141586bc2009-07-24 23:14:16 -0700164 /*
165 * NOTE: We can't rely on the pressure to determine the pen down
Dmitry Torokhovd570e9e2009-08-04 22:07:26 -0700166 * state, even though this controller has a pressure sensor.
167 * The pressure value can fluctuate for quite a while after
168 * lifting the pen and in some cases may not even settle at the
169 * expected value.
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -0500170 *
171 * The only safe way to check for the pen up condition is in the
Dmitry Torokhovd570e9e2009-08-04 22:07:26 -0700172 * work function by reading the pen signal state (it's a GPIO
173 * and IRQ). Unfortunately such callback is not always available,
174 * in that case we have rely on the pressure anyway.
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -0500175 */
Dmitry Torokhovd570e9e2009-08-04 22:07:26 -0700176 if (ts->get_pendown_state) {
177 if (unlikely(!ts->get_pendown_state())) {
178 tsc2007_send_up_event(ts);
179 ts->pendown = false;
180 goto out;
181 }
182
183 dev_dbg(&ts->client->dev, "pen is still down\n");
184 }
185
186 tsc2007_read_values(ts, &tc);
187
188 rt = tsc2007_calculate_pressure(ts, &tc);
Thierry Reding84005eb2011-05-17 09:31:01 -0700189 if (rt > ts->max_rt) {
Dmitry Torokhovd570e9e2009-08-04 22:07:26 -0700190 /*
191 * Sample found inconsistent by debouncing or pressure is
192 * beyond the maximum. Don't report it to user space,
193 * repeat at least once more the measurement.
194 */
195 dev_dbg(&ts->client->dev, "ignored pressure %d\n", rt);
Thierry Reding4a1a42a2011-05-17 09:29:45 -0700196 debounced = true;
Dmitry Torokhovd570e9e2009-08-04 22:07:26 -0700197 goto out;
198
199 }
200
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -0500201 if (rt) {
202 struct input_dev *input = ts->input;
203
204 if (!ts->pendown) {
205 dev_dbg(&ts->client->dev, "DOWN\n");
206
207 input_report_key(input, BTN_TOUCH, 1);
Dmitry Torokhov141586bc2009-07-24 23:14:16 -0700208 ts->pendown = true;
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -0500209 }
210
Dmitry Torokhovd570e9e2009-08-04 22:07:26 -0700211 input_report_abs(input, ABS_X, tc.x);
212 input_report_abs(input, ABS_Y, tc.y);
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -0500213 input_report_abs(input, ABS_PRESSURE, rt);
214
215 input_sync(input);
216
217 dev_dbg(&ts->client->dev, "point(%4d,%4d), pressure (%4u)\n",
Dmitry Torokhovd570e9e2009-08-04 22:07:26 -0700218 tc.x, tc.y, rt);
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -0500219
Dmitry Torokhovd570e9e2009-08-04 22:07:26 -0700220 } else if (!ts->get_pendown_state && ts->pendown) {
221 /*
222 * We don't have callback to check pendown state, so we
223 * have to assume that since pressure reported is 0 the
224 * pen was lifted up.
225 */
226 tsc2007_send_up_event(ts);
Dmitry Torokhov141586bc2009-07-24 23:14:16 -0700227 ts->pendown = false;
Dmitry Torokhovd570e9e2009-08-04 22:07:26 -0700228 }
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -0500229
Dmitry Torokhovd570e9e2009-08-04 22:07:26 -0700230 out:
Thierry Reding4a1a42a2011-05-17 09:29:45 -0700231 if (ts->pendown || debounced)
Dmitry Torokhov141586bc2009-07-24 23:14:16 -0700232 schedule_delayed_work(&ts->work,
233 msecs_to_jiffies(TS_POLL_PERIOD));
Dmitry Torokhovd570e9e2009-08-04 22:07:26 -0700234 else
235 enable_irq(ts->irq);
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -0500236}
237
238static irqreturn_t tsc2007_irq(int irq, void *handle)
239{
240 struct tsc2007 *ts = handle;
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -0500241
Dmitry Torokhovd570e9e2009-08-04 22:07:26 -0700242 if (!ts->get_pendown_state || likely(ts->get_pendown_state())) {
Ben Nizette29fa98b2009-04-17 20:35:57 -0700243 disable_irq_nosync(ts->irq);
Dmitry Torokhov141586bc2009-07-24 23:14:16 -0700244 schedule_delayed_work(&ts->work,
Thierry Reding2d137c7e2011-05-17 09:31:33 -0700245 msecs_to_jiffies(ts->poll_delay));
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -0500246 }
247
248 if (ts->clear_penirq)
249 ts->clear_penirq();
250
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -0500251 return IRQ_HANDLED;
252}
253
Dmitry Torokhov141586bc2009-07-24 23:14:16 -0700254static void tsc2007_free_irq(struct tsc2007 *ts)
255{
256 free_irq(ts->irq, ts);
257 if (cancel_delayed_work_sync(&ts->work)) {
258 /*
259 * Work was pending, therefore we need to enable
260 * IRQ here to balance the disable_irq() done in the
261 * interrupt handler.
262 */
263 enable_irq(ts->irq);
264 }
265}
266
267static int __devinit tsc2007_probe(struct i2c_client *client,
268 const struct i2c_device_id *id)
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -0500269{
270 struct tsc2007 *ts;
Axel Linb496acb2010-09-02 19:52:41 -0700271 struct tsc2007_platform_data *pdata = client->dev.platform_data;
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -0500272 struct input_dev *input_dev;
273 int err;
274
Dmitry Torokhovd570e9e2009-08-04 22:07:26 -0700275 if (!pdata) {
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -0500276 dev_err(&client->dev, "platform data is required!\n");
277 return -EINVAL;
278 }
279
280 if (!i2c_check_functionality(client->adapter,
281 I2C_FUNC_SMBUS_READ_WORD_DATA))
282 return -EIO;
283
284 ts = kzalloc(sizeof(struct tsc2007), GFP_KERNEL);
285 input_dev = input_allocate_device();
286 if (!ts || !input_dev) {
287 err = -ENOMEM;
288 goto err_free_mem;
289 }
290
291 ts->client = client;
Dmitry Torokhov141586bc2009-07-24 23:14:16 -0700292 ts->irq = client->irq;
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -0500293 ts->input = input_dev;
Dmitry Torokhov141586bc2009-07-24 23:14:16 -0700294 INIT_DELAYED_WORK(&ts->work, tsc2007_work);
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -0500295
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -0500296 ts->model = pdata->model;
297 ts->x_plate_ohms = pdata->x_plate_ohms;
Thierry Reding84005eb2011-05-17 09:31:01 -0700298 ts->max_rt = pdata->max_rt ? : MAX_12BIT;
Thierry Reding2d137c7e2011-05-17 09:31:33 -0700299 ts->poll_delay = pdata->poll_delay ? : 1;
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -0500300 ts->get_pendown_state = pdata->get_pendown_state;
301 ts->clear_penirq = pdata->clear_penirq;
302
Kay Sievers4e8718a2009-01-29 22:56:08 -0800303 snprintf(ts->phys, sizeof(ts->phys),
304 "%s/input0", dev_name(&client->dev));
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -0500305
306 input_dev->name = "TSC2007 Touchscreen";
307 input_dev->phys = ts->phys;
308 input_dev->id.bustype = BUS_I2C;
309
310 input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
311 input_dev->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH);
312
313 input_set_abs_params(input_dev, ABS_X, 0, MAX_12BIT, 0, 0);
314 input_set_abs_params(input_dev, ABS_Y, 0, MAX_12BIT, 0, 0);
315 input_set_abs_params(input_dev, ABS_PRESSURE, 0, MAX_12BIT, 0, 0);
316
Richard Röjforscad065f2009-07-24 23:14:17 -0700317 if (pdata->init_platform_hw)
318 pdata->init_platform_hw();
Richard Röjfors75fba3b2009-07-24 22:01:39 -0700319
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -0500320 err = request_irq(ts->irq, tsc2007_irq, 0,
321 client->dev.driver->name, ts);
322 if (err < 0) {
323 dev_err(&client->dev, "irq %d busy?\n", ts->irq);
324 goto err_free_mem;
325 }
326
Richard Röjforscf5f4392009-08-04 22:34:10 -0700327 /* Prepare for touch readings - power down ADC and enable PENIRQ */
328 err = tsc2007_xfer(ts, PWRDOWN);
329 if (err < 0)
330 goto err_free_irq;
331
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -0500332 err = input_register_device(input_dev);
333 if (err)
334 goto err_free_irq;
335
Dmitry Torokhov141586bc2009-07-24 23:14:16 -0700336 i2c_set_clientdata(client, ts);
337
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -0500338 return 0;
339
340 err_free_irq:
Dmitry Torokhov141586bc2009-07-24 23:14:16 -0700341 tsc2007_free_irq(ts);
Richard Röjforscad065f2009-07-24 23:14:17 -0700342 if (pdata->exit_platform_hw)
343 pdata->exit_platform_hw();
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -0500344 err_free_mem:
345 input_free_device(input_dev);
346 kfree(ts);
347 return err;
348}
349
Dmitry Torokhov141586bc2009-07-24 23:14:16 -0700350static int __devexit tsc2007_remove(struct i2c_client *client)
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -0500351{
352 struct tsc2007 *ts = i2c_get_clientdata(client);
Dmitry Torokhov141586bc2009-07-24 23:14:16 -0700353 struct tsc2007_platform_data *pdata = client->dev.platform_data;
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -0500354
Dmitry Torokhov141586bc2009-07-24 23:14:16 -0700355 tsc2007_free_irq(ts);
Richard Röjfors75fba3b2009-07-24 22:01:39 -0700356
Richard Röjforscad065f2009-07-24 23:14:17 -0700357 if (pdata->exit_platform_hw)
358 pdata->exit_platform_hw();
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -0500359
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -0500360 input_unregister_device(ts->input);
361 kfree(ts);
362
363 return 0;
364}
365
Márton Némethce7b39a2010-01-09 23:23:02 -0800366static const struct i2c_device_id tsc2007_idtable[] = {
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -0500367 { "tsc2007", 0 },
368 { }
369};
370
371MODULE_DEVICE_TABLE(i2c, tsc2007_idtable);
372
373static struct i2c_driver tsc2007_driver = {
374 .driver = {
375 .owner = THIS_MODULE,
376 .name = "tsc2007"
377 },
378 .id_table = tsc2007_idtable,
379 .probe = tsc2007_probe,
Dmitry Torokhov141586bc2009-07-24 23:14:16 -0700380 .remove = __devexit_p(tsc2007_remove),
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -0500381};
382
383static int __init tsc2007_init(void)
384{
385 return i2c_add_driver(&tsc2007_driver);
386}
387
388static void __exit tsc2007_exit(void)
389{
390 i2c_del_driver(&tsc2007_driver);
391}
392
393module_init(tsc2007_init);
394module_exit(tsc2007_exit);
395
396MODULE_AUTHOR("Kwangwoo Lee <kwlee@mtekvision.com>");
397MODULE_DESCRIPTION("TSC2007 TouchScreen Driver");
398MODULE_LICENSE("GPL");