blob: 5738722873bbe46a208888a8f0d89d2eff7d0636 [file] [log] [blame]
Simon Budig43c4d132012-07-24 23:29:36 -07001/*
2 * Copyright (C) 2012 Simon Budig, <simon.budig@kernelconcepts.de>
Lothar Waßmannfd335ab2014-03-28 09:31:14 -07003 * Daniel Wagener <daniel.wagener@kernelconcepts.de> (M09 firmware support)
Lothar Waßmanndac90dc22014-03-28 09:23:02 -07004 * Lothar Waßmann <LW@KARO-electronics.de> (DT support)
Simon Budig43c4d132012-07-24 23:29:36 -07005 *
6 * This software is licensed under the terms of the GNU General Public
7 * License version 2, as published by the Free Software Foundation, and
8 * may be copied, distributed, and modified under those terms.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
20/*
21 * This is a driver for the EDT "Polytouch" family of touch controllers
22 * based on the FocalTech FT5x06 line of chips.
23 *
24 * Development of this driver has been sponsored by Glyn:
25 * http://www.glyn.com/Products/Displays
26 */
27
28#include <linux/module.h>
29#include <linux/ratelimit.h>
30#include <linux/interrupt.h>
31#include <linux/input.h>
32#include <linux/i2c.h>
33#include <linux/uaccess.h>
34#include <linux/delay.h>
35#include <linux/debugfs.h>
36#include <linux/slab.h>
Franklin S Cooper Jr13c23cd2015-09-11 17:30:34 -070037#include <linux/gpio/consumer.h>
Simon Budig43c4d132012-07-24 23:29:36 -070038#include <linux/input/mt.h>
Maxime Ripard2c005592015-03-21 20:18:06 -070039#include <linux/input/touchscreen.h>
Simon Budig43c4d132012-07-24 23:29:36 -070040#include <linux/input/edt-ft5x06.h>
41
42#define MAX_SUPPORT_POINTS 5
43
44#define WORK_REGISTER_THRESHOLD 0x00
45#define WORK_REGISTER_REPORT_RATE 0x08
46#define WORK_REGISTER_GAIN 0x30
47#define WORK_REGISTER_OFFSET 0x31
48#define WORK_REGISTER_NUM_X 0x33
49#define WORK_REGISTER_NUM_Y 0x34
50
Lothar Waßmannfd335ab2014-03-28 09:31:14 -070051#define M09_REGISTER_THRESHOLD 0x80
52#define M09_REGISTER_GAIN 0x92
53#define M09_REGISTER_OFFSET 0x93
54#define M09_REGISTER_NUM_X 0x94
55#define M09_REGISTER_NUM_Y 0x95
56
57#define NO_REGISTER 0xff
58
Simon Budig43c4d132012-07-24 23:29:36 -070059#define WORK_REGISTER_OPMODE 0x3c
60#define FACTORY_REGISTER_OPMODE 0x01
61
62#define TOUCH_EVENT_DOWN 0x00
63#define TOUCH_EVENT_UP 0x01
64#define TOUCH_EVENT_ON 0x02
65#define TOUCH_EVENT_RESERVED 0x03
66
67#define EDT_NAME_LEN 23
68#define EDT_SWITCH_MODE_RETRIES 10
69#define EDT_SWITCH_MODE_DELAY 5 /* msec */
70#define EDT_RAW_DATA_RETRIES 100
71#define EDT_RAW_DATA_DELAY 1 /* msec */
72
Lothar Waßmannfd335ab2014-03-28 09:31:14 -070073enum edt_ver {
74 M06,
75 M09,
76};
77
78struct edt_reg_addr {
79 int reg_threshold;
80 int reg_report_rate;
81 int reg_gain;
82 int reg_offset;
83 int reg_num_x;
84 int reg_num_y;
85};
86
Simon Budig43c4d132012-07-24 23:29:36 -070087struct edt_ft5x06_ts_data {
88 struct i2c_client *client;
89 struct input_dev *input;
90 u16 num_x;
91 u16 num_y;
92
Franklin S Cooper Jr13c23cd2015-09-11 17:30:34 -070093 struct gpio_desc *reset_gpio;
94 struct gpio_desc *wake_gpio;
95 struct gpio_desc *irq_gpio;
Lothar Waßmanndac90dc22014-03-28 09:23:02 -070096
Simon Budig43c4d132012-07-24 23:29:36 -070097#if defined(CONFIG_DEBUG_FS)
98 struct dentry *debug_dir;
99 u8 *raw_buffer;
100 size_t raw_bufsize;
101#endif
102
103 struct mutex mutex;
104 bool factory_mode;
105 int threshold;
106 int gain;
107 int offset;
108 int report_rate;
109
110 char name[EDT_NAME_LEN];
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700111
112 struct edt_reg_addr reg_addr;
113 enum edt_ver version;
Simon Budig43c4d132012-07-24 23:29:36 -0700114};
115
116static int edt_ft5x06_ts_readwrite(struct i2c_client *client,
117 u16 wr_len, u8 *wr_buf,
118 u16 rd_len, u8 *rd_buf)
119{
120 struct i2c_msg wrmsg[2];
121 int i = 0;
122 int ret;
123
124 if (wr_len) {
125 wrmsg[i].addr = client->addr;
126 wrmsg[i].flags = 0;
127 wrmsg[i].len = wr_len;
128 wrmsg[i].buf = wr_buf;
129 i++;
130 }
131 if (rd_len) {
132 wrmsg[i].addr = client->addr;
133 wrmsg[i].flags = I2C_M_RD;
134 wrmsg[i].len = rd_len;
135 wrmsg[i].buf = rd_buf;
136 i++;
137 }
138
139 ret = i2c_transfer(client->adapter, wrmsg, i);
140 if (ret < 0)
141 return ret;
142 if (ret != i)
143 return -EIO;
144
145 return 0;
146}
147
148static bool edt_ft5x06_ts_check_crc(struct edt_ft5x06_ts_data *tsdata,
149 u8 *buf, int buflen)
150{
151 int i;
152 u8 crc = 0;
153
154 for (i = 0; i < buflen - 1; i++)
155 crc ^= buf[i];
156
157 if (crc != buf[buflen-1]) {
158 dev_err_ratelimited(&tsdata->client->dev,
159 "crc error: 0x%02x expected, got 0x%02x\n",
160 crc, buf[buflen-1]);
161 return false;
162 }
163
164 return true;
165}
166
167static irqreturn_t edt_ft5x06_ts_isr(int irq, void *dev_id)
168{
169 struct edt_ft5x06_ts_data *tsdata = dev_id;
170 struct device *dev = &tsdata->client->dev;
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700171 u8 cmd;
172 u8 rdbuf[29];
Simon Budig43c4d132012-07-24 23:29:36 -0700173 int i, type, x, y, id;
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700174 int offset, tplen, datalen;
Simon Budig43c4d132012-07-24 23:29:36 -0700175 int error;
176
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700177 switch (tsdata->version) {
178 case M06:
179 cmd = 0xf9; /* tell the controller to send touch data */
180 offset = 5; /* where the actual touch data starts */
181 tplen = 4; /* data comes in so called frames */
182 datalen = 26; /* how much bytes to listen for */
183 break;
184
185 case M09:
186 cmd = 0x02;
187 offset = 1;
188 tplen = 6;
189 datalen = 29;
190 break;
191
192 default:
193 goto out;
194 }
195
Simon Budig43c4d132012-07-24 23:29:36 -0700196 memset(rdbuf, 0, sizeof(rdbuf));
197
198 error = edt_ft5x06_ts_readwrite(tsdata->client,
199 sizeof(cmd), &cmd,
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700200 datalen, rdbuf);
Simon Budig43c4d132012-07-24 23:29:36 -0700201 if (error) {
202 dev_err_ratelimited(dev, "Unable to fetch data, error: %d\n",
203 error);
204 goto out;
205 }
206
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700207 /* M09 does not send header or CRC */
208 if (tsdata->version == M06) {
209 if (rdbuf[0] != 0xaa || rdbuf[1] != 0xaa ||
210 rdbuf[2] != datalen) {
211 dev_err_ratelimited(dev,
212 "Unexpected header: %02x%02x%02x!\n",
213 rdbuf[0], rdbuf[1], rdbuf[2]);
214 goto out;
215 }
216
217 if (!edt_ft5x06_ts_check_crc(tsdata, rdbuf, datalen))
218 goto out;
Simon Budig43c4d132012-07-24 23:29:36 -0700219 }
220
Simon Budig43c4d132012-07-24 23:29:36 -0700221 for (i = 0; i < MAX_SUPPORT_POINTS; i++) {
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700222 u8 *buf = &rdbuf[i * tplen + offset];
Simon Budig43c4d132012-07-24 23:29:36 -0700223 bool down;
224
225 type = buf[0] >> 6;
226 /* ignore Reserved events */
227 if (type == TOUCH_EVENT_RESERVED)
228 continue;
229
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700230 /* M06 sometimes sends bogus coordinates in TOUCH_DOWN */
231 if (tsdata->version == M06 && type == TOUCH_EVENT_DOWN)
Lothar Waßmannee3e9462014-03-28 09:28:17 -0700232 continue;
233
Simon Budig43c4d132012-07-24 23:29:36 -0700234 x = ((buf[0] << 8) | buf[1]) & 0x0fff;
235 y = ((buf[2] << 8) | buf[3]) & 0x0fff;
236 id = (buf[2] >> 4) & 0x0f;
Lothar Waßmann1730d812014-03-28 09:20:08 -0700237 down = type != TOUCH_EVENT_UP;
Simon Budig43c4d132012-07-24 23:29:36 -0700238
239 input_mt_slot(tsdata->input, id);
240 input_mt_report_slot_state(tsdata->input, MT_TOOL_FINGER, down);
241
242 if (!down)
243 continue;
244
245 input_report_abs(tsdata->input, ABS_MT_POSITION_X, x);
246 input_report_abs(tsdata->input, ABS_MT_POSITION_Y, y);
247 }
248
249 input_mt_report_pointer_emulation(tsdata->input, true);
250 input_sync(tsdata->input);
251
252out:
253 return IRQ_HANDLED;
254}
255
256static int edt_ft5x06_register_write(struct edt_ft5x06_ts_data *tsdata,
257 u8 addr, u8 value)
258{
259 u8 wrbuf[4];
260
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700261 switch (tsdata->version) {
262 case M06:
263 wrbuf[0] = tsdata->factory_mode ? 0xf3 : 0xfc;
264 wrbuf[1] = tsdata->factory_mode ? addr & 0x7f : addr & 0x3f;
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700265 wrbuf[2] = value;
266 wrbuf[3] = wrbuf[0] ^ wrbuf[1] ^ wrbuf[2];
267 return edt_ft5x06_ts_readwrite(tsdata->client, 4,
268 wrbuf, 0, NULL);
269 case M09:
270 wrbuf[0] = addr;
271 wrbuf[1] = value;
Simon Budig43c4d132012-07-24 23:29:36 -0700272
Robert Woerlecc071ac2014-06-07 22:20:23 -0700273 return edt_ft5x06_ts_readwrite(tsdata->client, 2,
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700274 wrbuf, 0, NULL);
275
276 default:
277 return -EINVAL;
278 }
Simon Budig43c4d132012-07-24 23:29:36 -0700279}
280
281static int edt_ft5x06_register_read(struct edt_ft5x06_ts_data *tsdata,
282 u8 addr)
283{
284 u8 wrbuf[2], rdbuf[2];
285 int error;
286
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700287 switch (tsdata->version) {
288 case M06:
289 wrbuf[0] = tsdata->factory_mode ? 0xf3 : 0xfc;
290 wrbuf[1] = tsdata->factory_mode ? addr & 0x7f : addr & 0x3f;
291 wrbuf[1] |= tsdata->factory_mode ? 0x80 : 0x40;
Simon Budig43c4d132012-07-24 23:29:36 -0700292
Dan Carpentere2c3ecf2014-04-03 09:17:05 -0700293 error = edt_ft5x06_ts_readwrite(tsdata->client, 2, wrbuf, 2,
294 rdbuf);
295 if (error)
296 return error;
Simon Budig43c4d132012-07-24 23:29:36 -0700297
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700298 if ((wrbuf[0] ^ wrbuf[1] ^ rdbuf[0]) != rdbuf[1]) {
299 dev_err(&tsdata->client->dev,
300 "crc error: 0x%02x expected, got 0x%02x\n",
301 wrbuf[0] ^ wrbuf[1] ^ rdbuf[0],
302 rdbuf[1]);
303 return -EIO;
304 }
305 break;
306
307 case M09:
308 wrbuf[0] = addr;
309 error = edt_ft5x06_ts_readwrite(tsdata->client, 1,
310 wrbuf, 1, rdbuf);
311 if (error)
312 return error;
313 break;
314
315 default:
316 return -EINVAL;
Simon Budig43c4d132012-07-24 23:29:36 -0700317 }
318
319 return rdbuf[0];
320}
321
322struct edt_ft5x06_attribute {
323 struct device_attribute dattr;
324 size_t field_offset;
325 u8 limit_low;
326 u8 limit_high;
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700327 u8 addr_m06;
328 u8 addr_m09;
Simon Budig43c4d132012-07-24 23:29:36 -0700329};
330
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700331#define EDT_ATTR(_field, _mode, _addr_m06, _addr_m09, \
332 _limit_low, _limit_high) \
Simon Budig43c4d132012-07-24 23:29:36 -0700333 struct edt_ft5x06_attribute edt_ft5x06_attr_##_field = { \
334 .dattr = __ATTR(_field, _mode, \
335 edt_ft5x06_setting_show, \
336 edt_ft5x06_setting_store), \
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700337 .field_offset = offsetof(struct edt_ft5x06_ts_data, _field), \
338 .addr_m06 = _addr_m06, \
339 .addr_m09 = _addr_m09, \
Simon Budig43c4d132012-07-24 23:29:36 -0700340 .limit_low = _limit_low, \
341 .limit_high = _limit_high, \
Simon Budig43c4d132012-07-24 23:29:36 -0700342 }
343
344static ssize_t edt_ft5x06_setting_show(struct device *dev,
345 struct device_attribute *dattr,
346 char *buf)
347{
348 struct i2c_client *client = to_i2c_client(dev);
349 struct edt_ft5x06_ts_data *tsdata = i2c_get_clientdata(client);
350 struct edt_ft5x06_attribute *attr =
351 container_of(dattr, struct edt_ft5x06_attribute, dattr);
Lothar Waßmann1730d812014-03-28 09:20:08 -0700352 u8 *field = (u8 *)tsdata + attr->field_offset;
Simon Budig43c4d132012-07-24 23:29:36 -0700353 int val;
354 size_t count = 0;
355 int error = 0;
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700356 u8 addr;
Simon Budig43c4d132012-07-24 23:29:36 -0700357
358 mutex_lock(&tsdata->mutex);
359
360 if (tsdata->factory_mode) {
361 error = -EIO;
362 goto out;
363 }
364
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700365 switch (tsdata->version) {
366 case M06:
367 addr = attr->addr_m06;
368 break;
369
370 case M09:
371 addr = attr->addr_m09;
372 break;
373
374 default:
375 error = -ENODEV;
Simon Budig43c4d132012-07-24 23:29:36 -0700376 goto out;
377 }
378
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700379 if (addr != NO_REGISTER) {
380 val = edt_ft5x06_register_read(tsdata, addr);
381 if (val < 0) {
382 error = val;
383 dev_err(&tsdata->client->dev,
384 "Failed to fetch attribute %s, error %d\n",
385 dattr->attr.name, error);
386 goto out;
387 }
388 } else {
389 val = *field;
390 }
391
Simon Budig43c4d132012-07-24 23:29:36 -0700392 if (val != *field) {
393 dev_warn(&tsdata->client->dev,
394 "%s: read (%d) and stored value (%d) differ\n",
395 dattr->attr.name, val, *field);
396 *field = val;
397 }
398
399 count = scnprintf(buf, PAGE_SIZE, "%d\n", val);
400out:
401 mutex_unlock(&tsdata->mutex);
402 return error ?: count;
403}
404
405static ssize_t edt_ft5x06_setting_store(struct device *dev,
406 struct device_attribute *dattr,
407 const char *buf, size_t count)
408{
409 struct i2c_client *client = to_i2c_client(dev);
410 struct edt_ft5x06_ts_data *tsdata = i2c_get_clientdata(client);
411 struct edt_ft5x06_attribute *attr =
412 container_of(dattr, struct edt_ft5x06_attribute, dattr);
Lothar Waßmann1730d812014-03-28 09:20:08 -0700413 u8 *field = (u8 *)tsdata + attr->field_offset;
Simon Budig43c4d132012-07-24 23:29:36 -0700414 unsigned int val;
415 int error;
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700416 u8 addr;
Simon Budig43c4d132012-07-24 23:29:36 -0700417
418 mutex_lock(&tsdata->mutex);
419
420 if (tsdata->factory_mode) {
421 error = -EIO;
422 goto out;
423 }
424
425 error = kstrtouint(buf, 0, &val);
426 if (error)
427 goto out;
428
429 if (val < attr->limit_low || val > attr->limit_high) {
430 error = -ERANGE;
431 goto out;
432 }
433
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700434 switch (tsdata->version) {
435 case M06:
436 addr = attr->addr_m06;
437 break;
438
439 case M09:
440 addr = attr->addr_m09;
441 break;
442
443 default:
444 error = -ENODEV;
Simon Budig43c4d132012-07-24 23:29:36 -0700445 goto out;
446 }
447
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700448 if (addr != NO_REGISTER) {
449 error = edt_ft5x06_register_write(tsdata, addr, val);
450 if (error) {
451 dev_err(&tsdata->client->dev,
452 "Failed to update attribute %s, error: %d\n",
453 dattr->attr.name, error);
454 goto out;
455 }
456 }
Simon Budig43c4d132012-07-24 23:29:36 -0700457 *field = val;
458
459out:
460 mutex_unlock(&tsdata->mutex);
461 return error ?: count;
462}
463
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700464static EDT_ATTR(gain, S_IWUSR | S_IRUGO, WORK_REGISTER_GAIN,
465 M09_REGISTER_GAIN, 0, 31);
466static EDT_ATTR(offset, S_IWUSR | S_IRUGO, WORK_REGISTER_OFFSET,
467 M09_REGISTER_OFFSET, 0, 31);
468static EDT_ATTR(threshold, S_IWUSR | S_IRUGO, WORK_REGISTER_THRESHOLD,
469 M09_REGISTER_THRESHOLD, 20, 80);
470static EDT_ATTR(report_rate, S_IWUSR | S_IRUGO, WORK_REGISTER_REPORT_RATE,
471 NO_REGISTER, 3, 14);
Simon Budig43c4d132012-07-24 23:29:36 -0700472
473static struct attribute *edt_ft5x06_attrs[] = {
474 &edt_ft5x06_attr_gain.dattr.attr,
475 &edt_ft5x06_attr_offset.dattr.attr,
476 &edt_ft5x06_attr_threshold.dattr.attr,
477 &edt_ft5x06_attr_report_rate.dattr.attr,
478 NULL
479};
480
481static const struct attribute_group edt_ft5x06_attr_group = {
482 .attrs = edt_ft5x06_attrs,
483};
484
485#ifdef CONFIG_DEBUG_FS
486static int edt_ft5x06_factory_mode(struct edt_ft5x06_ts_data *tsdata)
487{
488 struct i2c_client *client = tsdata->client;
489 int retries = EDT_SWITCH_MODE_RETRIES;
490 int ret;
491 int error;
492
493 disable_irq(client->irq);
494
495 if (!tsdata->raw_buffer) {
496 tsdata->raw_bufsize = tsdata->num_x * tsdata->num_y *
497 sizeof(u16);
498 tsdata->raw_buffer = kzalloc(tsdata->raw_bufsize, GFP_KERNEL);
499 if (!tsdata->raw_buffer) {
500 error = -ENOMEM;
501 goto err_out;
502 }
503 }
504
505 /* mode register is 0x3c when in the work mode */
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700506 if (tsdata->version == M09)
507 goto m09_out;
508
Simon Budig43c4d132012-07-24 23:29:36 -0700509 error = edt_ft5x06_register_write(tsdata, WORK_REGISTER_OPMODE, 0x03);
510 if (error) {
511 dev_err(&client->dev,
512 "failed to switch to factory mode, error %d\n", error);
513 goto err_out;
514 }
515
516 tsdata->factory_mode = true;
517 do {
518 mdelay(EDT_SWITCH_MODE_DELAY);
519 /* mode register is 0x01 when in factory mode */
520 ret = edt_ft5x06_register_read(tsdata, FACTORY_REGISTER_OPMODE);
521 if (ret == 0x03)
522 break;
523 } while (--retries > 0);
524
525 if (retries == 0) {
526 dev_err(&client->dev, "not in factory mode after %dms.\n",
527 EDT_SWITCH_MODE_RETRIES * EDT_SWITCH_MODE_DELAY);
528 error = -EIO;
529 goto err_out;
530 }
531
532 return 0;
533
534err_out:
535 kfree(tsdata->raw_buffer);
536 tsdata->raw_buffer = NULL;
537 tsdata->factory_mode = false;
538 enable_irq(client->irq);
539
540 return error;
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700541
542m09_out:
543 dev_err(&client->dev, "No factory mode support for M09\n");
544 return -EINVAL;
545
Simon Budig43c4d132012-07-24 23:29:36 -0700546}
547
548static int edt_ft5x06_work_mode(struct edt_ft5x06_ts_data *tsdata)
549{
550 struct i2c_client *client = tsdata->client;
551 int retries = EDT_SWITCH_MODE_RETRIES;
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700552 struct edt_reg_addr *reg_addr = &tsdata->reg_addr;
Simon Budig43c4d132012-07-24 23:29:36 -0700553 int ret;
554 int error;
555
556 /* mode register is 0x01 when in the factory mode */
557 error = edt_ft5x06_register_write(tsdata, FACTORY_REGISTER_OPMODE, 0x1);
558 if (error) {
559 dev_err(&client->dev,
560 "failed to switch to work mode, error: %d\n", error);
561 return error;
562 }
563
564 tsdata->factory_mode = false;
565
566 do {
567 mdelay(EDT_SWITCH_MODE_DELAY);
568 /* mode register is 0x01 when in factory mode */
569 ret = edt_ft5x06_register_read(tsdata, WORK_REGISTER_OPMODE);
570 if (ret == 0x01)
571 break;
572 } while (--retries > 0);
573
574 if (retries == 0) {
575 dev_err(&client->dev, "not in work mode after %dms.\n",
576 EDT_SWITCH_MODE_RETRIES * EDT_SWITCH_MODE_DELAY);
577 tsdata->factory_mode = true;
578 return -EIO;
579 }
580
Sachin Kamat8efcc502013-03-28 01:14:42 -0700581 kfree(tsdata->raw_buffer);
Simon Budig43c4d132012-07-24 23:29:36 -0700582 tsdata->raw_buffer = NULL;
583
584 /* restore parameters */
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700585 edt_ft5x06_register_write(tsdata, reg_addr->reg_threshold,
Simon Budig43c4d132012-07-24 23:29:36 -0700586 tsdata->threshold);
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700587 edt_ft5x06_register_write(tsdata, reg_addr->reg_gain,
Simon Budig43c4d132012-07-24 23:29:36 -0700588 tsdata->gain);
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700589 edt_ft5x06_register_write(tsdata, reg_addr->reg_offset,
Simon Budig43c4d132012-07-24 23:29:36 -0700590 tsdata->offset);
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700591 if (reg_addr->reg_report_rate)
592 edt_ft5x06_register_write(tsdata, reg_addr->reg_report_rate,
Simon Budig43c4d132012-07-24 23:29:36 -0700593 tsdata->report_rate);
594
595 enable_irq(client->irq);
596
597 return 0;
598}
599
600static int edt_ft5x06_debugfs_mode_get(void *data, u64 *mode)
601{
602 struct edt_ft5x06_ts_data *tsdata = data;
603
604 *mode = tsdata->factory_mode;
605
606 return 0;
607};
608
609static int edt_ft5x06_debugfs_mode_set(void *data, u64 mode)
610{
611 struct edt_ft5x06_ts_data *tsdata = data;
612 int retval = 0;
613
614 if (mode > 1)
615 return -ERANGE;
616
617 mutex_lock(&tsdata->mutex);
618
619 if (mode != tsdata->factory_mode) {
620 retval = mode ? edt_ft5x06_factory_mode(tsdata) :
Lothar Waßmann1730d812014-03-28 09:20:08 -0700621 edt_ft5x06_work_mode(tsdata);
Simon Budig43c4d132012-07-24 23:29:36 -0700622 }
623
624 mutex_unlock(&tsdata->mutex);
625
626 return retval;
627};
628
629DEFINE_SIMPLE_ATTRIBUTE(debugfs_mode_fops, edt_ft5x06_debugfs_mode_get,
630 edt_ft5x06_debugfs_mode_set, "%llu\n");
631
Simon Budig43c4d132012-07-24 23:29:36 -0700632static ssize_t edt_ft5x06_debugfs_raw_data_read(struct file *file,
633 char __user *buf, size_t count, loff_t *off)
634{
635 struct edt_ft5x06_ts_data *tsdata = file->private_data;
636 struct i2c_client *client = tsdata->client;
637 int retries = EDT_RAW_DATA_RETRIES;
638 int val, i, error;
639 size_t read = 0;
640 int colbytes;
641 char wrbuf[3];
642 u8 *rdbuf;
643
644 if (*off < 0 || *off >= tsdata->raw_bufsize)
645 return 0;
646
647 mutex_lock(&tsdata->mutex);
648
649 if (!tsdata->factory_mode || !tsdata->raw_buffer) {
650 error = -EIO;
651 goto out;
652 }
653
654 error = edt_ft5x06_register_write(tsdata, 0x08, 0x01);
655 if (error) {
656 dev_dbg(&client->dev,
657 "failed to write 0x08 register, error %d\n", error);
658 goto out;
659 }
660
661 do {
662 msleep(EDT_RAW_DATA_DELAY);
663 val = edt_ft5x06_register_read(tsdata, 0x08);
664 if (val < 1)
665 break;
666 } while (--retries > 0);
667
668 if (val < 0) {
669 error = val;
670 dev_dbg(&client->dev,
671 "failed to read 0x08 register, error %d\n", error);
672 goto out;
673 }
674
675 if (retries == 0) {
676 dev_dbg(&client->dev,
677 "timed out waiting for register to settle\n");
678 error = -ETIMEDOUT;
679 goto out;
680 }
681
682 rdbuf = tsdata->raw_buffer;
683 colbytes = tsdata->num_y * sizeof(u16);
684
685 wrbuf[0] = 0xf5;
686 wrbuf[1] = 0x0e;
687 for (i = 0; i < tsdata->num_x; i++) {
688 wrbuf[2] = i; /* column index */
689 error = edt_ft5x06_ts_readwrite(tsdata->client,
690 sizeof(wrbuf), wrbuf,
691 colbytes, rdbuf);
692 if (error)
693 goto out;
694
695 rdbuf += colbytes;
696 }
697
698 read = min_t(size_t, count, tsdata->raw_bufsize - *off);
Axel Lin35b1da42012-09-19 15:56:23 -0700699 if (copy_to_user(buf, tsdata->raw_buffer + *off, read)) {
700 error = -EFAULT;
701 goto out;
702 }
703
704 *off += read;
Simon Budig43c4d132012-07-24 23:29:36 -0700705out:
706 mutex_unlock(&tsdata->mutex);
707 return error ?: read;
708};
709
Simon Budig43c4d132012-07-24 23:29:36 -0700710static const struct file_operations debugfs_raw_data_fops = {
Wei Yongjunf6c0df62012-10-17 23:55:54 -0700711 .open = simple_open,
Simon Budig43c4d132012-07-24 23:29:36 -0700712 .read = edt_ft5x06_debugfs_raw_data_read,
713};
714
Bill Pemberton5298cc42012-11-23 21:38:25 -0800715static void
Simon Budig43c4d132012-07-24 23:29:36 -0700716edt_ft5x06_ts_prepare_debugfs(struct edt_ft5x06_ts_data *tsdata,
717 const char *debugfs_name)
718{
719 tsdata->debug_dir = debugfs_create_dir(debugfs_name, NULL);
720 if (!tsdata->debug_dir)
721 return;
722
723 debugfs_create_u16("num_x", S_IRUSR, tsdata->debug_dir, &tsdata->num_x);
724 debugfs_create_u16("num_y", S_IRUSR, tsdata->debug_dir, &tsdata->num_y);
725
726 debugfs_create_file("mode", S_IRUSR | S_IWUSR,
727 tsdata->debug_dir, tsdata, &debugfs_mode_fops);
728 debugfs_create_file("raw_data", S_IRUSR,
729 tsdata->debug_dir, tsdata, &debugfs_raw_data_fops);
730}
731
Bill Pembertone2619cf2012-11-23 21:50:47 -0800732static void
Simon Budig43c4d132012-07-24 23:29:36 -0700733edt_ft5x06_ts_teardown_debugfs(struct edt_ft5x06_ts_data *tsdata)
734{
Fabian Frederickf69c6ec2014-07-09 09:45:57 -0700735 debugfs_remove_recursive(tsdata->debug_dir);
Guenter Roecka1d0fa72012-08-21 22:01:45 -0700736 kfree(tsdata->raw_buffer);
Simon Budig43c4d132012-07-24 23:29:36 -0700737}
738
739#else
740
741static inline void
742edt_ft5x06_ts_prepare_debugfs(struct edt_ft5x06_ts_data *tsdata,
743 const char *debugfs_name)
744{
745}
746
747static inline void
748edt_ft5x06_ts_teardown_debugfs(struct edt_ft5x06_ts_data *tsdata)
749{
750}
751
752#endif /* CONFIG_DEBUGFS */
753
Bill Pemberton5298cc42012-11-23 21:38:25 -0800754static int edt_ft5x06_ts_identify(struct i2c_client *client,
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700755 struct edt_ft5x06_ts_data *tsdata,
756 char *fw_version)
Simon Budig43c4d132012-07-24 23:29:36 -0700757{
758 u8 rdbuf[EDT_NAME_LEN];
759 char *p;
760 int error;
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700761 char *model_name = tsdata->name;
Simon Budig43c4d132012-07-24 23:29:36 -0700762
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700763 /* see what we find if we assume it is a M06 *
764 * if we get less than EDT_NAME_LEN, we don't want
765 * to have garbage in there
766 */
767 memset(rdbuf, 0, sizeof(rdbuf));
Simon Budig43c4d132012-07-24 23:29:36 -0700768 error = edt_ft5x06_ts_readwrite(client, 1, "\xbb",
769 EDT_NAME_LEN - 1, rdbuf);
770 if (error)
771 return error;
772
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700773 /* if we find something consistent, stay with that assumption
774 * at least M09 won't send 3 bytes here
775 */
Rasmus Villemoes0f3ae5b2014-10-13 15:54:48 -0700776 if (!(strncasecmp(rdbuf + 1, "EP0", 3))) {
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700777 tsdata->version = M06;
Simon Budig43c4d132012-07-24 23:29:36 -0700778
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700779 /* remove last '$' end marker */
780 rdbuf[EDT_NAME_LEN - 1] = '\0';
781 if (rdbuf[EDT_NAME_LEN - 2] == '$')
782 rdbuf[EDT_NAME_LEN - 2] = '\0';
Simon Budig43c4d132012-07-24 23:29:36 -0700783
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700784 /* look for Model/Version separator */
785 p = strchr(rdbuf, '*');
786 if (p)
787 *p++ = '\0';
788 strlcpy(model_name, rdbuf + 1, EDT_NAME_LEN);
789 strlcpy(fw_version, p ? p : "", EDT_NAME_LEN);
790 } else {
791 /* since there are only two versions around (M06, M09) */
792 tsdata->version = M09;
793
794 error = edt_ft5x06_ts_readwrite(client, 1, "\xA6",
795 2, rdbuf);
796 if (error)
797 return error;
798
799 strlcpy(fw_version, rdbuf, 2);
800
801 error = edt_ft5x06_ts_readwrite(client, 1, "\xA8",
802 1, rdbuf);
803 if (error)
804 return error;
805
806 snprintf(model_name, EDT_NAME_LEN, "EP0%i%i0M09",
807 rdbuf[0] >> 4, rdbuf[0] & 0x0F);
808 }
Simon Budig43c4d132012-07-24 23:29:36 -0700809
810 return 0;
811}
812
813#define EDT_ATTR_CHECKSET(name, reg) \
Asaf Vertz189387f2014-12-13 10:59:04 -0800814do { \
Simon Budig43c4d132012-07-24 23:29:36 -0700815 if (pdata->name >= edt_ft5x06_attr_##name.limit_low && \
816 pdata->name <= edt_ft5x06_attr_##name.limit_high) \
Asaf Vertz189387f2014-12-13 10:59:04 -0800817 edt_ft5x06_register_write(tsdata, reg, pdata->name); \
818} while (0)
Simon Budig43c4d132012-07-24 23:29:36 -0700819
Lothar Waßmanndac90dc22014-03-28 09:23:02 -0700820#define EDT_GET_PROP(name, reg) { \
821 u32 val; \
822 if (of_property_read_u32(np, #name, &val) == 0) \
823 edt_ft5x06_register_write(tsdata, reg, val); \
824}
825
826static void edt_ft5x06_ts_get_dt_defaults(struct device_node *np,
827 struct edt_ft5x06_ts_data *tsdata)
828{
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700829 struct edt_reg_addr *reg_addr = &tsdata->reg_addr;
830
831 EDT_GET_PROP(threshold, reg_addr->reg_threshold);
832 EDT_GET_PROP(gain, reg_addr->reg_gain);
833 EDT_GET_PROP(offset, reg_addr->reg_offset);
Lothar Waßmanndac90dc22014-03-28 09:23:02 -0700834}
835
Bill Pemberton5298cc42012-11-23 21:38:25 -0800836static void
Simon Budig43c4d132012-07-24 23:29:36 -0700837edt_ft5x06_ts_get_defaults(struct edt_ft5x06_ts_data *tsdata,
838 const struct edt_ft5x06_platform_data *pdata)
839{
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700840 struct edt_reg_addr *reg_addr = &tsdata->reg_addr;
841
Simon Budig43c4d132012-07-24 23:29:36 -0700842 if (!pdata->use_parameters)
843 return;
844
845 /* pick up defaults from the platform data */
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700846 EDT_ATTR_CHECKSET(threshold, reg_addr->reg_threshold);
847 EDT_ATTR_CHECKSET(gain, reg_addr->reg_gain);
848 EDT_ATTR_CHECKSET(offset, reg_addr->reg_offset);
849 if (reg_addr->reg_report_rate != NO_REGISTER)
850 EDT_ATTR_CHECKSET(report_rate, reg_addr->reg_report_rate);
Simon Budig43c4d132012-07-24 23:29:36 -0700851}
852
Bill Pemberton5298cc42012-11-23 21:38:25 -0800853static void
Simon Budig43c4d132012-07-24 23:29:36 -0700854edt_ft5x06_ts_get_parameters(struct edt_ft5x06_ts_data *tsdata)
855{
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700856 struct edt_reg_addr *reg_addr = &tsdata->reg_addr;
857
Simon Budig43c4d132012-07-24 23:29:36 -0700858 tsdata->threshold = edt_ft5x06_register_read(tsdata,
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700859 reg_addr->reg_threshold);
860 tsdata->gain = edt_ft5x06_register_read(tsdata, reg_addr->reg_gain);
861 tsdata->offset = edt_ft5x06_register_read(tsdata, reg_addr->reg_offset);
862 if (reg_addr->reg_report_rate != NO_REGISTER)
863 tsdata->report_rate = edt_ft5x06_register_read(tsdata,
864 reg_addr->reg_report_rate);
865 tsdata->num_x = edt_ft5x06_register_read(tsdata, reg_addr->reg_num_x);
866 tsdata->num_y = edt_ft5x06_register_read(tsdata, reg_addr->reg_num_y);
867}
868
869static void
870edt_ft5x06_ts_set_regs(struct edt_ft5x06_ts_data *tsdata)
871{
872 struct edt_reg_addr *reg_addr = &tsdata->reg_addr;
873
874 switch (tsdata->version) {
875 case M06:
876 reg_addr->reg_threshold = WORK_REGISTER_THRESHOLD;
877 reg_addr->reg_report_rate = WORK_REGISTER_REPORT_RATE;
878 reg_addr->reg_gain = WORK_REGISTER_GAIN;
879 reg_addr->reg_offset = WORK_REGISTER_OFFSET;
880 reg_addr->reg_num_x = WORK_REGISTER_NUM_X;
881 reg_addr->reg_num_y = WORK_REGISTER_NUM_Y;
882 break;
883
884 case M09:
885 reg_addr->reg_threshold = M09_REGISTER_THRESHOLD;
886 reg_addr->reg_gain = M09_REGISTER_GAIN;
887 reg_addr->reg_offset = M09_REGISTER_OFFSET;
888 reg_addr->reg_num_x = M09_REGISTER_NUM_X;
889 reg_addr->reg_num_y = M09_REGISTER_NUM_Y;
890 break;
891 }
Simon Budig43c4d132012-07-24 23:29:36 -0700892}
893
Bill Pemberton5298cc42012-11-23 21:38:25 -0800894static int edt_ft5x06_ts_probe(struct i2c_client *client,
Simon Budig43c4d132012-07-24 23:29:36 -0700895 const struct i2c_device_id *id)
896{
897 const struct edt_ft5x06_platform_data *pdata =
Jingoo Hanc838cb32013-12-05 19:21:10 -0800898 dev_get_platdata(&client->dev);
Simon Budig43c4d132012-07-24 23:29:36 -0700899 struct edt_ft5x06_ts_data *tsdata;
900 struct input_dev *input;
901 int error;
902 char fw_version[EDT_NAME_LEN];
903
904 dev_dbg(&client->dev, "probing for EDT FT5x06 I2C\n");
905
Lothar Waßmann02300bd2014-01-16 16:26:55 -0800906 tsdata = devm_kzalloc(&client->dev, sizeof(*tsdata), GFP_KERNEL);
907 if (!tsdata) {
Simon Budig43c4d132012-07-24 23:29:36 -0700908 dev_err(&client->dev, "failed to allocate driver data.\n");
Lothar Waßmann02300bd2014-01-16 16:26:55 -0800909 return -ENOMEM;
910 }
911
Franklin S Cooper Jr13c23cd2015-09-11 17:30:34 -0700912 tsdata->reset_gpio = devm_gpiod_get_optional(&client->dev,
913 "reset", GPIOD_OUT_HIGH);
914 if (IS_ERR(tsdata->reset_gpio)) {
915 error = PTR_ERR(tsdata->reset_gpio);
916 dev_err(&client->dev,
917 "Failed to request GPIO reset pin, error %d\n", error);
918 return error;
Lothar Waßmanndac90dc22014-03-28 09:23:02 -0700919 }
920
Franklin S Cooper Jr13c23cd2015-09-11 17:30:34 -0700921 tsdata->wake_gpio = devm_gpiod_get_optional(&client->dev,
922 "wake", GPIOD_OUT_LOW);
923 if (IS_ERR(tsdata->wake_gpio)) {
924 error = PTR_ERR(tsdata->wake_gpio);
925 dev_err(&client->dev,
926 "Failed to request GPIO wake pin, error %d\n", error);
Lothar Waßmanndac90dc22014-03-28 09:23:02 -0700927 return error;
Franklin S Cooper Jr13c23cd2015-09-11 17:30:34 -0700928 }
Lothar Waßmanndac90dc22014-03-28 09:23:02 -0700929
Franklin S Cooper Jr13c23cd2015-09-11 17:30:34 -0700930 tsdata->irq_gpio = devm_gpiod_get_optional(&client->dev,
931 "irq", GPIOD_IN);
932 if (IS_ERR(tsdata->irq_gpio)) {
933 error = PTR_ERR(tsdata->irq_gpio);
934 dev_err(&client->dev,
935 "Failed to request GPIO irq pin, error %d\n", error);
936 return error;
937 }
938
939 if (tsdata->wake_gpio) {
940 usleep_range(5000, 6000);
941 gpiod_set_value_cansleep(tsdata->wake_gpio, 1);
942 }
943
944 if (tsdata->reset_gpio) {
945 usleep_range(5000, 6000);
946 gpiod_set_value_cansleep(tsdata->reset_gpio, 0);
947 msleep(300);
Lothar Waßmanndac90dc22014-03-28 09:23:02 -0700948 }
949
Lothar Waßmann02300bd2014-01-16 16:26:55 -0800950 input = devm_input_allocate_device(&client->dev);
951 if (!input) {
952 dev_err(&client->dev, "failed to allocate input device.\n");
953 return -ENOMEM;
Simon Budig43c4d132012-07-24 23:29:36 -0700954 }
955
956 mutex_init(&tsdata->mutex);
957 tsdata->client = client;
958 tsdata->input = input;
959 tsdata->factory_mode = false;
960
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700961 error = edt_ft5x06_ts_identify(client, tsdata, fw_version);
Simon Budig43c4d132012-07-24 23:29:36 -0700962 if (error) {
963 dev_err(&client->dev, "touchscreen probe failed\n");
Lothar Waßmann02300bd2014-01-16 16:26:55 -0800964 return error;
Simon Budig43c4d132012-07-24 23:29:36 -0700965 }
966
Lothar Waßmannfd335ab2014-03-28 09:31:14 -0700967 edt_ft5x06_ts_set_regs(tsdata);
968
Lothar Waßmanndac90dc22014-03-28 09:23:02 -0700969 if (!pdata)
970 edt_ft5x06_ts_get_dt_defaults(client->dev.of_node, tsdata);
971 else
972 edt_ft5x06_ts_get_defaults(tsdata, pdata);
973
Simon Budig43c4d132012-07-24 23:29:36 -0700974 edt_ft5x06_ts_get_parameters(tsdata);
975
976 dev_dbg(&client->dev,
977 "Model \"%s\", Rev. \"%s\", %dx%d sensors\n",
978 tsdata->name, fw_version, tsdata->num_x, tsdata->num_y);
979
980 input->name = tsdata->name;
981 input->id.bustype = BUS_I2C;
982 input->dev.parent = &client->dev;
983
Simon Budig43c4d132012-07-24 23:29:36 -0700984 input_set_abs_params(input, ABS_MT_POSITION_X,
985 0, tsdata->num_x * 64 - 1, 0, 0);
986 input_set_abs_params(input, ABS_MT_POSITION_Y,
987 0, tsdata->num_y * 64 - 1, 0, 0);
Maxime Ripard2c005592015-03-21 20:18:06 -0700988
989 if (!pdata)
Dmitry Torokhov4200e832015-07-06 15:18:24 -0700990 touchscreen_parse_properties(input, true);
Maxime Ripard2c005592015-03-21 20:18:06 -0700991
Dmitry Torokhov38e1b722015-06-01 10:41:11 -0700992 error = input_mt_init_slots(input, MAX_SUPPORT_POINTS, INPUT_MT_DIRECT);
Simon Budig43c4d132012-07-24 23:29:36 -0700993 if (error) {
994 dev_err(&client->dev, "Unable to init MT slots.\n");
Lothar Waßmann02300bd2014-01-16 16:26:55 -0800995 return error;
Simon Budig43c4d132012-07-24 23:29:36 -0700996 }
997
998 input_set_drvdata(input, tsdata);
999 i2c_set_clientdata(client, tsdata);
1000
Lothar Waßmanndac90dc22014-03-28 09:23:02 -07001001 error = devm_request_threaded_irq(&client->dev, client->irq, NULL,
1002 edt_ft5x06_ts_isr,
1003 IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
1004 client->name, tsdata);
Simon Budig43c4d132012-07-24 23:29:36 -07001005 if (error) {
1006 dev_err(&client->dev, "Unable to request touchscreen IRQ.\n");
Lothar Waßmann02300bd2014-01-16 16:26:55 -08001007 return error;
Simon Budig43c4d132012-07-24 23:29:36 -07001008 }
1009
1010 error = sysfs_create_group(&client->dev.kobj, &edt_ft5x06_attr_group);
1011 if (error)
Lothar Waßmann02300bd2014-01-16 16:26:55 -08001012 return error;
Simon Budig43c4d132012-07-24 23:29:36 -07001013
1014 error = input_register_device(input);
Lothar Waßmanndac90dc22014-03-28 09:23:02 -07001015 if (error)
1016 goto err_remove_attrs;
Simon Budig43c4d132012-07-24 23:29:36 -07001017
1018 edt_ft5x06_ts_prepare_debugfs(tsdata, dev_driver_string(&client->dev));
1019 device_init_wakeup(&client->dev, 1);
1020
1021 dev_dbg(&client->dev,
Lothar Waßmanndac90dc22014-03-28 09:23:02 -07001022 "EDT FT5x06 initialized: IRQ %d, WAKE pin %d, Reset pin %d.\n",
Franklin S Cooper Jr13c23cd2015-09-11 17:30:34 -07001023 client->irq, desc_to_gpio(tsdata->wake_gpio),
1024 desc_to_gpio(tsdata->reset_gpio));
Simon Budig43c4d132012-07-24 23:29:36 -07001025
1026 return 0;
Lothar Waßmanndac90dc22014-03-28 09:23:02 -07001027
1028err_remove_attrs:
1029 sysfs_remove_group(&client->dev.kobj, &edt_ft5x06_attr_group);
1030 return error;
Simon Budig43c4d132012-07-24 23:29:36 -07001031}
1032
Bill Pembertone2619cf2012-11-23 21:50:47 -08001033static int edt_ft5x06_ts_remove(struct i2c_client *client)
Simon Budig43c4d132012-07-24 23:29:36 -07001034{
Simon Budig43c4d132012-07-24 23:29:36 -07001035 struct edt_ft5x06_ts_data *tsdata = i2c_get_clientdata(client);
1036
1037 edt_ft5x06_ts_teardown_debugfs(tsdata);
1038 sysfs_remove_group(&client->dev.kobj, &edt_ft5x06_attr_group);
1039
Simon Budig43c4d132012-07-24 23:29:36 -07001040 return 0;
1041}
1042
Jingoo Han02b6a582014-11-02 00:04:14 -07001043static int __maybe_unused edt_ft5x06_ts_suspend(struct device *dev)
Simon Budig43c4d132012-07-24 23:29:36 -07001044{
1045 struct i2c_client *client = to_i2c_client(dev);
1046
1047 if (device_may_wakeup(dev))
1048 enable_irq_wake(client->irq);
1049
1050 return 0;
1051}
1052
Jingoo Han02b6a582014-11-02 00:04:14 -07001053static int __maybe_unused edt_ft5x06_ts_resume(struct device *dev)
Simon Budig43c4d132012-07-24 23:29:36 -07001054{
1055 struct i2c_client *client = to_i2c_client(dev);
1056
1057 if (device_may_wakeup(dev))
1058 disable_irq_wake(client->irq);
1059
1060 return 0;
1061}
Simon Budig43c4d132012-07-24 23:29:36 -07001062
1063static SIMPLE_DEV_PM_OPS(edt_ft5x06_ts_pm_ops,
1064 edt_ft5x06_ts_suspend, edt_ft5x06_ts_resume);
1065
1066static const struct i2c_device_id edt_ft5x06_ts_id[] = {
Lothar Waßmann1730d812014-03-28 09:20:08 -07001067 { "edt-ft5x06", 0, },
1068 { /* sentinel */ }
Simon Budig43c4d132012-07-24 23:29:36 -07001069};
1070MODULE_DEVICE_TABLE(i2c, edt_ft5x06_ts_id);
1071
Lothar Waßmanndac90dc22014-03-28 09:23:02 -07001072#ifdef CONFIG_OF
1073static const struct of_device_id edt_ft5x06_of_match[] = {
1074 { .compatible = "edt,edt-ft5206", },
1075 { .compatible = "edt,edt-ft5306", },
1076 { .compatible = "edt,edt-ft5406", },
1077 { /* sentinel */ }
1078};
1079MODULE_DEVICE_TABLE(of, edt_ft5x06_of_match);
1080#endif
1081
Simon Budig43c4d132012-07-24 23:29:36 -07001082static struct i2c_driver edt_ft5x06_ts_driver = {
1083 .driver = {
Simon Budig43c4d132012-07-24 23:29:36 -07001084 .name = "edt_ft5x06",
Lothar Waßmanndac90dc22014-03-28 09:23:02 -07001085 .of_match_table = of_match_ptr(edt_ft5x06_of_match),
Simon Budig43c4d132012-07-24 23:29:36 -07001086 .pm = &edt_ft5x06_ts_pm_ops,
1087 },
1088 .id_table = edt_ft5x06_ts_id,
1089 .probe = edt_ft5x06_ts_probe,
Bill Pemberton1cb0aa82012-11-23 21:27:39 -08001090 .remove = edt_ft5x06_ts_remove,
Simon Budig43c4d132012-07-24 23:29:36 -07001091};
1092
1093module_i2c_driver(edt_ft5x06_ts_driver);
1094
1095MODULE_AUTHOR("Simon Budig <simon.budig@kernelconcepts.de>");
1096MODULE_DESCRIPTION("EDT FT5x06 I2C Touchscreen Driver");
1097MODULE_LICENSE("GPL");