blob: 155ab3ba84eefbd21698a238af5c3afa66427561 [file] [log] [blame]
Simon Budig43c4d132012-07-24 23:29:36 -07001/*
2 * Copyright (C) 2012 Simon Budig, <simon.budig@kernelconcepts.de>
3 *
4 * This software is licensed under the terms of the GNU General Public
5 * License version 2, as published by the Free Software Foundation, and
6 * may be copied, distributed, and modified under those terms.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this library; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 */
17
18/*
19 * This is a driver for the EDT "Polytouch" family of touch controllers
20 * based on the FocalTech FT5x06 line of chips.
21 *
22 * Development of this driver has been sponsored by Glyn:
23 * http://www.glyn.com/Products/Displays
24 */
25
26#include <linux/module.h>
27#include <linux/ratelimit.h>
28#include <linux/interrupt.h>
29#include <linux/input.h>
30#include <linux/i2c.h>
31#include <linux/uaccess.h>
32#include <linux/delay.h>
33#include <linux/debugfs.h>
34#include <linux/slab.h>
35#include <linux/gpio.h>
36#include <linux/input/mt.h>
37#include <linux/input/edt-ft5x06.h>
38
39#define MAX_SUPPORT_POINTS 5
40
41#define WORK_REGISTER_THRESHOLD 0x00
42#define WORK_REGISTER_REPORT_RATE 0x08
43#define WORK_REGISTER_GAIN 0x30
44#define WORK_REGISTER_OFFSET 0x31
45#define WORK_REGISTER_NUM_X 0x33
46#define WORK_REGISTER_NUM_Y 0x34
47
48#define WORK_REGISTER_OPMODE 0x3c
49#define FACTORY_REGISTER_OPMODE 0x01
50
51#define TOUCH_EVENT_DOWN 0x00
52#define TOUCH_EVENT_UP 0x01
53#define TOUCH_EVENT_ON 0x02
54#define TOUCH_EVENT_RESERVED 0x03
55
56#define EDT_NAME_LEN 23
57#define EDT_SWITCH_MODE_RETRIES 10
58#define EDT_SWITCH_MODE_DELAY 5 /* msec */
59#define EDT_RAW_DATA_RETRIES 100
60#define EDT_RAW_DATA_DELAY 1 /* msec */
61
62struct edt_ft5x06_ts_data {
63 struct i2c_client *client;
64 struct input_dev *input;
65 u16 num_x;
66 u16 num_y;
67
68#if defined(CONFIG_DEBUG_FS)
69 struct dentry *debug_dir;
70 u8 *raw_buffer;
71 size_t raw_bufsize;
72#endif
73
74 struct mutex mutex;
75 bool factory_mode;
76 int threshold;
77 int gain;
78 int offset;
79 int report_rate;
80
81 char name[EDT_NAME_LEN];
82};
83
84static int edt_ft5x06_ts_readwrite(struct i2c_client *client,
85 u16 wr_len, u8 *wr_buf,
86 u16 rd_len, u8 *rd_buf)
87{
88 struct i2c_msg wrmsg[2];
89 int i = 0;
90 int ret;
91
92 if (wr_len) {
93 wrmsg[i].addr = client->addr;
94 wrmsg[i].flags = 0;
95 wrmsg[i].len = wr_len;
96 wrmsg[i].buf = wr_buf;
97 i++;
98 }
99 if (rd_len) {
100 wrmsg[i].addr = client->addr;
101 wrmsg[i].flags = I2C_M_RD;
102 wrmsg[i].len = rd_len;
103 wrmsg[i].buf = rd_buf;
104 i++;
105 }
106
107 ret = i2c_transfer(client->adapter, wrmsg, i);
108 if (ret < 0)
109 return ret;
110 if (ret != i)
111 return -EIO;
112
113 return 0;
114}
115
116static bool edt_ft5x06_ts_check_crc(struct edt_ft5x06_ts_data *tsdata,
117 u8 *buf, int buflen)
118{
119 int i;
120 u8 crc = 0;
121
122 for (i = 0; i < buflen - 1; i++)
123 crc ^= buf[i];
124
125 if (crc != buf[buflen-1]) {
126 dev_err_ratelimited(&tsdata->client->dev,
127 "crc error: 0x%02x expected, got 0x%02x\n",
128 crc, buf[buflen-1]);
129 return false;
130 }
131
132 return true;
133}
134
135static irqreturn_t edt_ft5x06_ts_isr(int irq, void *dev_id)
136{
137 struct edt_ft5x06_ts_data *tsdata = dev_id;
138 struct device *dev = &tsdata->client->dev;
139 u8 cmd = 0xf9;
140 u8 rdbuf[26];
141 int i, type, x, y, id;
142 int error;
143
144 memset(rdbuf, 0, sizeof(rdbuf));
145
146 error = edt_ft5x06_ts_readwrite(tsdata->client,
147 sizeof(cmd), &cmd,
148 sizeof(rdbuf), rdbuf);
149 if (error) {
150 dev_err_ratelimited(dev, "Unable to fetch data, error: %d\n",
151 error);
152 goto out;
153 }
154
155 if (rdbuf[0] != 0xaa || rdbuf[1] != 0xaa || rdbuf[2] != 26) {
156 dev_err_ratelimited(dev, "Unexpected header: %02x%02x%02x!\n",
157 rdbuf[0], rdbuf[1], rdbuf[2]);
158 goto out;
159 }
160
161 if (!edt_ft5x06_ts_check_crc(tsdata, rdbuf, 26))
162 goto out;
163
164 for (i = 0; i < MAX_SUPPORT_POINTS; i++) {
165 u8 *buf = &rdbuf[i * 4 + 5];
166 bool down;
167
168 type = buf[0] >> 6;
169 /* ignore Reserved events */
170 if (type == TOUCH_EVENT_RESERVED)
171 continue;
172
173 x = ((buf[0] << 8) | buf[1]) & 0x0fff;
174 y = ((buf[2] << 8) | buf[3]) & 0x0fff;
175 id = (buf[2] >> 4) & 0x0f;
Lothar Waßmann1730d812014-03-28 09:20:08 -0700176 down = type != TOUCH_EVENT_UP;
Simon Budig43c4d132012-07-24 23:29:36 -0700177
178 input_mt_slot(tsdata->input, id);
179 input_mt_report_slot_state(tsdata->input, MT_TOOL_FINGER, down);
180
181 if (!down)
182 continue;
183
184 input_report_abs(tsdata->input, ABS_MT_POSITION_X, x);
185 input_report_abs(tsdata->input, ABS_MT_POSITION_Y, y);
186 }
187
188 input_mt_report_pointer_emulation(tsdata->input, true);
189 input_sync(tsdata->input);
190
191out:
192 return IRQ_HANDLED;
193}
194
195static int edt_ft5x06_register_write(struct edt_ft5x06_ts_data *tsdata,
196 u8 addr, u8 value)
197{
198 u8 wrbuf[4];
199
200 wrbuf[0] = tsdata->factory_mode ? 0xf3 : 0xfc;
201 wrbuf[1] = tsdata->factory_mode ? addr & 0x7f : addr & 0x3f;
202 wrbuf[2] = value;
203 wrbuf[3] = wrbuf[0] ^ wrbuf[1] ^ wrbuf[2];
204
205 return edt_ft5x06_ts_readwrite(tsdata->client, 4, wrbuf, 0, NULL);
206}
207
208static int edt_ft5x06_register_read(struct edt_ft5x06_ts_data *tsdata,
209 u8 addr)
210{
211 u8 wrbuf[2], rdbuf[2];
212 int error;
213
214 wrbuf[0] = tsdata->factory_mode ? 0xf3 : 0xfc;
215 wrbuf[1] = tsdata->factory_mode ? addr & 0x7f : addr & 0x3f;
216 wrbuf[1] |= tsdata->factory_mode ? 0x80 : 0x40;
217
218 error = edt_ft5x06_ts_readwrite(tsdata->client, 2, wrbuf, 2, rdbuf);
219 if (error)
220 return error;
221
222 if ((wrbuf[0] ^ wrbuf[1] ^ rdbuf[0]) != rdbuf[1]) {
223 dev_err(&tsdata->client->dev,
224 "crc error: 0x%02x expected, got 0x%02x\n",
225 wrbuf[0] ^ wrbuf[1] ^ rdbuf[0], rdbuf[1]);
226 return -EIO;
227 }
228
229 return rdbuf[0];
230}
231
232struct edt_ft5x06_attribute {
233 struct device_attribute dattr;
234 size_t field_offset;
235 u8 limit_low;
236 u8 limit_high;
237 u8 addr;
238};
239
240#define EDT_ATTR(_field, _mode, _addr, _limit_low, _limit_high) \
241 struct edt_ft5x06_attribute edt_ft5x06_attr_##_field = { \
242 .dattr = __ATTR(_field, _mode, \
243 edt_ft5x06_setting_show, \
244 edt_ft5x06_setting_store), \
245 .field_offset = \
246 offsetof(struct edt_ft5x06_ts_data, _field), \
247 .limit_low = _limit_low, \
248 .limit_high = _limit_high, \
249 .addr = _addr, \
250 }
251
252static ssize_t edt_ft5x06_setting_show(struct device *dev,
253 struct device_attribute *dattr,
254 char *buf)
255{
256 struct i2c_client *client = to_i2c_client(dev);
257 struct edt_ft5x06_ts_data *tsdata = i2c_get_clientdata(client);
258 struct edt_ft5x06_attribute *attr =
259 container_of(dattr, struct edt_ft5x06_attribute, dattr);
Lothar Waßmann1730d812014-03-28 09:20:08 -0700260 u8 *field = (u8 *)tsdata + attr->field_offset;
Simon Budig43c4d132012-07-24 23:29:36 -0700261 int val;
262 size_t count = 0;
263 int error = 0;
264
265 mutex_lock(&tsdata->mutex);
266
267 if (tsdata->factory_mode) {
268 error = -EIO;
269 goto out;
270 }
271
272 val = edt_ft5x06_register_read(tsdata, attr->addr);
273 if (val < 0) {
274 error = val;
275 dev_err(&tsdata->client->dev,
276 "Failed to fetch attribute %s, error %d\n",
277 dattr->attr.name, error);
278 goto out;
279 }
280
281 if (val != *field) {
282 dev_warn(&tsdata->client->dev,
283 "%s: read (%d) and stored value (%d) differ\n",
284 dattr->attr.name, val, *field);
285 *field = val;
286 }
287
288 count = scnprintf(buf, PAGE_SIZE, "%d\n", val);
289out:
290 mutex_unlock(&tsdata->mutex);
291 return error ?: count;
292}
293
294static ssize_t edt_ft5x06_setting_store(struct device *dev,
295 struct device_attribute *dattr,
296 const char *buf, size_t count)
297{
298 struct i2c_client *client = to_i2c_client(dev);
299 struct edt_ft5x06_ts_data *tsdata = i2c_get_clientdata(client);
300 struct edt_ft5x06_attribute *attr =
301 container_of(dattr, struct edt_ft5x06_attribute, dattr);
Lothar Waßmann1730d812014-03-28 09:20:08 -0700302 u8 *field = (u8 *)tsdata + attr->field_offset;
Simon Budig43c4d132012-07-24 23:29:36 -0700303 unsigned int val;
304 int error;
305
306 mutex_lock(&tsdata->mutex);
307
308 if (tsdata->factory_mode) {
309 error = -EIO;
310 goto out;
311 }
312
313 error = kstrtouint(buf, 0, &val);
314 if (error)
315 goto out;
316
317 if (val < attr->limit_low || val > attr->limit_high) {
318 error = -ERANGE;
319 goto out;
320 }
321
322 error = edt_ft5x06_register_write(tsdata, attr->addr, val);
323 if (error) {
324 dev_err(&tsdata->client->dev,
325 "Failed to update attribute %s, error: %d\n",
326 dattr->attr.name, error);
327 goto out;
328 }
329
330 *field = val;
331
332out:
333 mutex_unlock(&tsdata->mutex);
334 return error ?: count;
335}
336
337static EDT_ATTR(gain, S_IWUSR | S_IRUGO, WORK_REGISTER_GAIN, 0, 31);
338static EDT_ATTR(offset, S_IWUSR | S_IRUGO, WORK_REGISTER_OFFSET, 0, 31);
339static EDT_ATTR(threshold, S_IWUSR | S_IRUGO,
340 WORK_REGISTER_THRESHOLD, 20, 80);
341static EDT_ATTR(report_rate, S_IWUSR | S_IRUGO,
342 WORK_REGISTER_REPORT_RATE, 3, 14);
343
344static struct attribute *edt_ft5x06_attrs[] = {
345 &edt_ft5x06_attr_gain.dattr.attr,
346 &edt_ft5x06_attr_offset.dattr.attr,
347 &edt_ft5x06_attr_threshold.dattr.attr,
348 &edt_ft5x06_attr_report_rate.dattr.attr,
349 NULL
350};
351
352static const struct attribute_group edt_ft5x06_attr_group = {
353 .attrs = edt_ft5x06_attrs,
354};
355
356#ifdef CONFIG_DEBUG_FS
357static int edt_ft5x06_factory_mode(struct edt_ft5x06_ts_data *tsdata)
358{
359 struct i2c_client *client = tsdata->client;
360 int retries = EDT_SWITCH_MODE_RETRIES;
361 int ret;
362 int error;
363
364 disable_irq(client->irq);
365
366 if (!tsdata->raw_buffer) {
367 tsdata->raw_bufsize = tsdata->num_x * tsdata->num_y *
368 sizeof(u16);
369 tsdata->raw_buffer = kzalloc(tsdata->raw_bufsize, GFP_KERNEL);
370 if (!tsdata->raw_buffer) {
371 error = -ENOMEM;
372 goto err_out;
373 }
374 }
375
376 /* mode register is 0x3c when in the work mode */
377 error = edt_ft5x06_register_write(tsdata, WORK_REGISTER_OPMODE, 0x03);
378 if (error) {
379 dev_err(&client->dev,
380 "failed to switch to factory mode, error %d\n", error);
381 goto err_out;
382 }
383
384 tsdata->factory_mode = true;
385 do {
386 mdelay(EDT_SWITCH_MODE_DELAY);
387 /* mode register is 0x01 when in factory mode */
388 ret = edt_ft5x06_register_read(tsdata, FACTORY_REGISTER_OPMODE);
389 if (ret == 0x03)
390 break;
391 } while (--retries > 0);
392
393 if (retries == 0) {
394 dev_err(&client->dev, "not in factory mode after %dms.\n",
395 EDT_SWITCH_MODE_RETRIES * EDT_SWITCH_MODE_DELAY);
396 error = -EIO;
397 goto err_out;
398 }
399
400 return 0;
401
402err_out:
403 kfree(tsdata->raw_buffer);
404 tsdata->raw_buffer = NULL;
405 tsdata->factory_mode = false;
406 enable_irq(client->irq);
407
408 return error;
409}
410
411static int edt_ft5x06_work_mode(struct edt_ft5x06_ts_data *tsdata)
412{
413 struct i2c_client *client = tsdata->client;
414 int retries = EDT_SWITCH_MODE_RETRIES;
415 int ret;
416 int error;
417
418 /* mode register is 0x01 when in the factory mode */
419 error = edt_ft5x06_register_write(tsdata, FACTORY_REGISTER_OPMODE, 0x1);
420 if (error) {
421 dev_err(&client->dev,
422 "failed to switch to work mode, error: %d\n", error);
423 return error;
424 }
425
426 tsdata->factory_mode = false;
427
428 do {
429 mdelay(EDT_SWITCH_MODE_DELAY);
430 /* mode register is 0x01 when in factory mode */
431 ret = edt_ft5x06_register_read(tsdata, WORK_REGISTER_OPMODE);
432 if (ret == 0x01)
433 break;
434 } while (--retries > 0);
435
436 if (retries == 0) {
437 dev_err(&client->dev, "not in work mode after %dms.\n",
438 EDT_SWITCH_MODE_RETRIES * EDT_SWITCH_MODE_DELAY);
439 tsdata->factory_mode = true;
440 return -EIO;
441 }
442
Sachin Kamat8efcc502013-03-28 01:14:42 -0700443 kfree(tsdata->raw_buffer);
Simon Budig43c4d132012-07-24 23:29:36 -0700444 tsdata->raw_buffer = NULL;
445
446 /* restore parameters */
447 edt_ft5x06_register_write(tsdata, WORK_REGISTER_THRESHOLD,
448 tsdata->threshold);
449 edt_ft5x06_register_write(tsdata, WORK_REGISTER_GAIN,
450 tsdata->gain);
451 edt_ft5x06_register_write(tsdata, WORK_REGISTER_OFFSET,
452 tsdata->offset);
453 edt_ft5x06_register_write(tsdata, WORK_REGISTER_REPORT_RATE,
454 tsdata->report_rate);
455
456 enable_irq(client->irq);
457
458 return 0;
459}
460
461static int edt_ft5x06_debugfs_mode_get(void *data, u64 *mode)
462{
463 struct edt_ft5x06_ts_data *tsdata = data;
464
465 *mode = tsdata->factory_mode;
466
467 return 0;
468};
469
470static int edt_ft5x06_debugfs_mode_set(void *data, u64 mode)
471{
472 struct edt_ft5x06_ts_data *tsdata = data;
473 int retval = 0;
474
475 if (mode > 1)
476 return -ERANGE;
477
478 mutex_lock(&tsdata->mutex);
479
480 if (mode != tsdata->factory_mode) {
481 retval = mode ? edt_ft5x06_factory_mode(tsdata) :
Lothar Waßmann1730d812014-03-28 09:20:08 -0700482 edt_ft5x06_work_mode(tsdata);
Simon Budig43c4d132012-07-24 23:29:36 -0700483 }
484
485 mutex_unlock(&tsdata->mutex);
486
487 return retval;
488};
489
490DEFINE_SIMPLE_ATTRIBUTE(debugfs_mode_fops, edt_ft5x06_debugfs_mode_get,
491 edt_ft5x06_debugfs_mode_set, "%llu\n");
492
Simon Budig43c4d132012-07-24 23:29:36 -0700493static ssize_t edt_ft5x06_debugfs_raw_data_read(struct file *file,
494 char __user *buf, size_t count, loff_t *off)
495{
496 struct edt_ft5x06_ts_data *tsdata = file->private_data;
497 struct i2c_client *client = tsdata->client;
498 int retries = EDT_RAW_DATA_RETRIES;
499 int val, i, error;
500 size_t read = 0;
501 int colbytes;
502 char wrbuf[3];
503 u8 *rdbuf;
504
505 if (*off < 0 || *off >= tsdata->raw_bufsize)
506 return 0;
507
508 mutex_lock(&tsdata->mutex);
509
510 if (!tsdata->factory_mode || !tsdata->raw_buffer) {
511 error = -EIO;
512 goto out;
513 }
514
515 error = edt_ft5x06_register_write(tsdata, 0x08, 0x01);
516 if (error) {
517 dev_dbg(&client->dev,
518 "failed to write 0x08 register, error %d\n", error);
519 goto out;
520 }
521
522 do {
523 msleep(EDT_RAW_DATA_DELAY);
524 val = edt_ft5x06_register_read(tsdata, 0x08);
525 if (val < 1)
526 break;
527 } while (--retries > 0);
528
529 if (val < 0) {
530 error = val;
531 dev_dbg(&client->dev,
532 "failed to read 0x08 register, error %d\n", error);
533 goto out;
534 }
535
536 if (retries == 0) {
537 dev_dbg(&client->dev,
538 "timed out waiting for register to settle\n");
539 error = -ETIMEDOUT;
540 goto out;
541 }
542
543 rdbuf = tsdata->raw_buffer;
544 colbytes = tsdata->num_y * sizeof(u16);
545
546 wrbuf[0] = 0xf5;
547 wrbuf[1] = 0x0e;
548 for (i = 0; i < tsdata->num_x; i++) {
549 wrbuf[2] = i; /* column index */
550 error = edt_ft5x06_ts_readwrite(tsdata->client,
551 sizeof(wrbuf), wrbuf,
552 colbytes, rdbuf);
553 if (error)
554 goto out;
555
556 rdbuf += colbytes;
557 }
558
559 read = min_t(size_t, count, tsdata->raw_bufsize - *off);
Axel Lin35b1da42012-09-19 15:56:23 -0700560 if (copy_to_user(buf, tsdata->raw_buffer + *off, read)) {
561 error = -EFAULT;
562 goto out;
563 }
564
565 *off += read;
Simon Budig43c4d132012-07-24 23:29:36 -0700566out:
567 mutex_unlock(&tsdata->mutex);
568 return error ?: read;
569};
570
Simon Budig43c4d132012-07-24 23:29:36 -0700571static const struct file_operations debugfs_raw_data_fops = {
Wei Yongjunf6c0df62012-10-17 23:55:54 -0700572 .open = simple_open,
Simon Budig43c4d132012-07-24 23:29:36 -0700573 .read = edt_ft5x06_debugfs_raw_data_read,
574};
575
Bill Pemberton5298cc42012-11-23 21:38:25 -0800576static void
Simon Budig43c4d132012-07-24 23:29:36 -0700577edt_ft5x06_ts_prepare_debugfs(struct edt_ft5x06_ts_data *tsdata,
578 const char *debugfs_name)
579{
580 tsdata->debug_dir = debugfs_create_dir(debugfs_name, NULL);
581 if (!tsdata->debug_dir)
582 return;
583
584 debugfs_create_u16("num_x", S_IRUSR, tsdata->debug_dir, &tsdata->num_x);
585 debugfs_create_u16("num_y", S_IRUSR, tsdata->debug_dir, &tsdata->num_y);
586
587 debugfs_create_file("mode", S_IRUSR | S_IWUSR,
588 tsdata->debug_dir, tsdata, &debugfs_mode_fops);
589 debugfs_create_file("raw_data", S_IRUSR,
590 tsdata->debug_dir, tsdata, &debugfs_raw_data_fops);
591}
592
Bill Pembertone2619cf2012-11-23 21:50:47 -0800593static void
Simon Budig43c4d132012-07-24 23:29:36 -0700594edt_ft5x06_ts_teardown_debugfs(struct edt_ft5x06_ts_data *tsdata)
595{
596 if (tsdata->debug_dir)
597 debugfs_remove_recursive(tsdata->debug_dir);
Guenter Roecka1d0fa72012-08-21 22:01:45 -0700598 kfree(tsdata->raw_buffer);
Simon Budig43c4d132012-07-24 23:29:36 -0700599}
600
601#else
602
603static inline void
604edt_ft5x06_ts_prepare_debugfs(struct edt_ft5x06_ts_data *tsdata,
605 const char *debugfs_name)
606{
607}
608
609static inline void
610edt_ft5x06_ts_teardown_debugfs(struct edt_ft5x06_ts_data *tsdata)
611{
612}
613
614#endif /* CONFIG_DEBUGFS */
615
Bill Pemberton5298cc42012-11-23 21:38:25 -0800616static int edt_ft5x06_ts_reset(struct i2c_client *client,
Simon Budig43c4d132012-07-24 23:29:36 -0700617 int reset_pin)
618{
619 int error;
620
621 if (gpio_is_valid(reset_pin)) {
622 /* this pulls reset down, enabling the low active reset */
Lothar Waßmann02300bd2014-01-16 16:26:55 -0800623 error = devm_gpio_request_one(&client->dev, reset_pin,
624 GPIOF_OUT_INIT_LOW,
625 "edt-ft5x06 reset");
Simon Budig43c4d132012-07-24 23:29:36 -0700626 if (error) {
627 dev_err(&client->dev,
628 "Failed to request GPIO %d as reset pin, error %d\n",
629 reset_pin, error);
630 return error;
631 }
632
633 mdelay(50);
634 gpio_set_value(reset_pin, 1);
635 mdelay(100);
636 }
637
638 return 0;
639}
640
Bill Pemberton5298cc42012-11-23 21:38:25 -0800641static int edt_ft5x06_ts_identify(struct i2c_client *client,
Simon Budig43c4d132012-07-24 23:29:36 -0700642 char *model_name,
643 char *fw_version)
644{
645 u8 rdbuf[EDT_NAME_LEN];
646 char *p;
647 int error;
648
649 error = edt_ft5x06_ts_readwrite(client, 1, "\xbb",
650 EDT_NAME_LEN - 1, rdbuf);
651 if (error)
652 return error;
653
654 /* remove last '$' end marker */
655 rdbuf[EDT_NAME_LEN - 1] = '\0';
656 if (rdbuf[EDT_NAME_LEN - 2] == '$')
657 rdbuf[EDT_NAME_LEN - 2] = '\0';
658
659 /* look for Model/Version separator */
660 p = strchr(rdbuf, '*');
661 if (p)
662 *p++ = '\0';
663
664 strlcpy(model_name, rdbuf + 1, EDT_NAME_LEN);
665 strlcpy(fw_version, p ? p : "", EDT_NAME_LEN);
666
667 return 0;
668}
669
670#define EDT_ATTR_CHECKSET(name, reg) \
671 if (pdata->name >= edt_ft5x06_attr_##name.limit_low && \
672 pdata->name <= edt_ft5x06_attr_##name.limit_high) \
673 edt_ft5x06_register_write(tsdata, reg, pdata->name)
674
Bill Pemberton5298cc42012-11-23 21:38:25 -0800675static void
Simon Budig43c4d132012-07-24 23:29:36 -0700676edt_ft5x06_ts_get_defaults(struct edt_ft5x06_ts_data *tsdata,
677 const struct edt_ft5x06_platform_data *pdata)
678{
679 if (!pdata->use_parameters)
680 return;
681
682 /* pick up defaults from the platform data */
683 EDT_ATTR_CHECKSET(threshold, WORK_REGISTER_THRESHOLD);
684 EDT_ATTR_CHECKSET(gain, WORK_REGISTER_GAIN);
685 EDT_ATTR_CHECKSET(offset, WORK_REGISTER_OFFSET);
686 EDT_ATTR_CHECKSET(report_rate, WORK_REGISTER_REPORT_RATE);
687}
688
Bill Pemberton5298cc42012-11-23 21:38:25 -0800689static void
Simon Budig43c4d132012-07-24 23:29:36 -0700690edt_ft5x06_ts_get_parameters(struct edt_ft5x06_ts_data *tsdata)
691{
692 tsdata->threshold = edt_ft5x06_register_read(tsdata,
693 WORK_REGISTER_THRESHOLD);
694 tsdata->gain = edt_ft5x06_register_read(tsdata, WORK_REGISTER_GAIN);
695 tsdata->offset = edt_ft5x06_register_read(tsdata, WORK_REGISTER_OFFSET);
696 tsdata->report_rate = edt_ft5x06_register_read(tsdata,
697 WORK_REGISTER_REPORT_RATE);
698 tsdata->num_x = edt_ft5x06_register_read(tsdata, WORK_REGISTER_NUM_X);
699 tsdata->num_y = edt_ft5x06_register_read(tsdata, WORK_REGISTER_NUM_Y);
700}
701
Bill Pemberton5298cc42012-11-23 21:38:25 -0800702static int edt_ft5x06_ts_probe(struct i2c_client *client,
Simon Budig43c4d132012-07-24 23:29:36 -0700703 const struct i2c_device_id *id)
704{
705 const struct edt_ft5x06_platform_data *pdata =
Jingoo Hanc838cb32013-12-05 19:21:10 -0800706 dev_get_platdata(&client->dev);
Simon Budig43c4d132012-07-24 23:29:36 -0700707 struct edt_ft5x06_ts_data *tsdata;
708 struct input_dev *input;
709 int error;
710 char fw_version[EDT_NAME_LEN];
711
712 dev_dbg(&client->dev, "probing for EDT FT5x06 I2C\n");
713
714 if (!pdata) {
715 dev_err(&client->dev, "no platform data?\n");
716 return -EINVAL;
717 }
718
719 error = edt_ft5x06_ts_reset(client, pdata->reset_pin);
720 if (error)
721 return error;
722
723 if (gpio_is_valid(pdata->irq_pin)) {
Lothar Waßmann02300bd2014-01-16 16:26:55 -0800724 error = devm_gpio_request_one(&client->dev, pdata->irq_pin,
725 GPIOF_IN, "edt-ft5x06 irq");
Simon Budig43c4d132012-07-24 23:29:36 -0700726 if (error) {
727 dev_err(&client->dev,
728 "Failed to request GPIO %d, error %d\n",
729 pdata->irq_pin, error);
730 return error;
731 }
732 }
733
Lothar Waßmann02300bd2014-01-16 16:26:55 -0800734 tsdata = devm_kzalloc(&client->dev, sizeof(*tsdata), GFP_KERNEL);
735 if (!tsdata) {
Simon Budig43c4d132012-07-24 23:29:36 -0700736 dev_err(&client->dev, "failed to allocate driver data.\n");
Lothar Waßmann02300bd2014-01-16 16:26:55 -0800737 return -ENOMEM;
738 }
739
740 input = devm_input_allocate_device(&client->dev);
741 if (!input) {
742 dev_err(&client->dev, "failed to allocate input device.\n");
743 return -ENOMEM;
Simon Budig43c4d132012-07-24 23:29:36 -0700744 }
745
746 mutex_init(&tsdata->mutex);
747 tsdata->client = client;
748 tsdata->input = input;
749 tsdata->factory_mode = false;
750
751 error = edt_ft5x06_ts_identify(client, tsdata->name, fw_version);
752 if (error) {
753 dev_err(&client->dev, "touchscreen probe failed\n");
Lothar Waßmann02300bd2014-01-16 16:26:55 -0800754 return error;
Simon Budig43c4d132012-07-24 23:29:36 -0700755 }
756
757 edt_ft5x06_ts_get_defaults(tsdata, pdata);
758 edt_ft5x06_ts_get_parameters(tsdata);
759
760 dev_dbg(&client->dev,
761 "Model \"%s\", Rev. \"%s\", %dx%d sensors\n",
762 tsdata->name, fw_version, tsdata->num_x, tsdata->num_y);
763
764 input->name = tsdata->name;
765 input->id.bustype = BUS_I2C;
766 input->dev.parent = &client->dev;
767
768 __set_bit(EV_SYN, input->evbit);
769 __set_bit(EV_KEY, input->evbit);
770 __set_bit(EV_ABS, input->evbit);
771 __set_bit(BTN_TOUCH, input->keybit);
772 input_set_abs_params(input, ABS_X, 0, tsdata->num_x * 64 - 1, 0, 0);
773 input_set_abs_params(input, ABS_Y, 0, tsdata->num_y * 64 - 1, 0, 0);
774 input_set_abs_params(input, ABS_MT_POSITION_X,
775 0, tsdata->num_x * 64 - 1, 0, 0);
776 input_set_abs_params(input, ABS_MT_POSITION_Y,
777 0, tsdata->num_y * 64 - 1, 0, 0);
Henrik Rydbergb4adbbe2012-08-11 22:07:55 +0200778 error = input_mt_init_slots(input, MAX_SUPPORT_POINTS, 0);
Simon Budig43c4d132012-07-24 23:29:36 -0700779 if (error) {
780 dev_err(&client->dev, "Unable to init MT slots.\n");
Lothar Waßmann02300bd2014-01-16 16:26:55 -0800781 return error;
Simon Budig43c4d132012-07-24 23:29:36 -0700782 }
783
784 input_set_drvdata(input, tsdata);
785 i2c_set_clientdata(client, tsdata);
786
Lothar Waßmann02300bd2014-01-16 16:26:55 -0800787 error = devm_request_threaded_irq(&client->dev, client->irq,
788 NULL, edt_ft5x06_ts_isr,
789 IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
790 client->name, tsdata);
Simon Budig43c4d132012-07-24 23:29:36 -0700791 if (error) {
792 dev_err(&client->dev, "Unable to request touchscreen IRQ.\n");
Lothar Waßmann02300bd2014-01-16 16:26:55 -0800793 return error;
Simon Budig43c4d132012-07-24 23:29:36 -0700794 }
795
796 error = sysfs_create_group(&client->dev.kobj, &edt_ft5x06_attr_group);
797 if (error)
Lothar Waßmann02300bd2014-01-16 16:26:55 -0800798 return error;
Simon Budig43c4d132012-07-24 23:29:36 -0700799
800 error = input_register_device(input);
Lothar Waßmann02300bd2014-01-16 16:26:55 -0800801 if (error) {
802 sysfs_remove_group(&client->dev.kobj, &edt_ft5x06_attr_group);
803 return error;
804 }
Simon Budig43c4d132012-07-24 23:29:36 -0700805
806 edt_ft5x06_ts_prepare_debugfs(tsdata, dev_driver_string(&client->dev));
807 device_init_wakeup(&client->dev, 1);
808
809 dev_dbg(&client->dev,
810 "EDT FT5x06 initialized: IRQ pin %d, Reset pin %d.\n",
811 pdata->irq_pin, pdata->reset_pin);
812
813 return 0;
Simon Budig43c4d132012-07-24 23:29:36 -0700814}
815
Bill Pembertone2619cf2012-11-23 21:50:47 -0800816static int edt_ft5x06_ts_remove(struct i2c_client *client)
Simon Budig43c4d132012-07-24 23:29:36 -0700817{
Simon Budig43c4d132012-07-24 23:29:36 -0700818 struct edt_ft5x06_ts_data *tsdata = i2c_get_clientdata(client);
819
820 edt_ft5x06_ts_teardown_debugfs(tsdata);
821 sysfs_remove_group(&client->dev.kobj, &edt_ft5x06_attr_group);
822
Simon Budig43c4d132012-07-24 23:29:36 -0700823 return 0;
824}
825
826#ifdef CONFIG_PM_SLEEP
827static int edt_ft5x06_ts_suspend(struct device *dev)
828{
829 struct i2c_client *client = to_i2c_client(dev);
830
831 if (device_may_wakeup(dev))
832 enable_irq_wake(client->irq);
833
834 return 0;
835}
836
837static int edt_ft5x06_ts_resume(struct device *dev)
838{
839 struct i2c_client *client = to_i2c_client(dev);
840
841 if (device_may_wakeup(dev))
842 disable_irq_wake(client->irq);
843
844 return 0;
845}
846#endif
847
848static SIMPLE_DEV_PM_OPS(edt_ft5x06_ts_pm_ops,
849 edt_ft5x06_ts_suspend, edt_ft5x06_ts_resume);
850
851static const struct i2c_device_id edt_ft5x06_ts_id[] = {
Lothar Waßmann1730d812014-03-28 09:20:08 -0700852 { "edt-ft5x06", 0, },
853 { /* sentinel */ }
Simon Budig43c4d132012-07-24 23:29:36 -0700854};
855MODULE_DEVICE_TABLE(i2c, edt_ft5x06_ts_id);
856
857static struct i2c_driver edt_ft5x06_ts_driver = {
858 .driver = {
859 .owner = THIS_MODULE,
860 .name = "edt_ft5x06",
861 .pm = &edt_ft5x06_ts_pm_ops,
862 },
863 .id_table = edt_ft5x06_ts_id,
864 .probe = edt_ft5x06_ts_probe,
Bill Pemberton1cb0aa82012-11-23 21:27:39 -0800865 .remove = edt_ft5x06_ts_remove,
Simon Budig43c4d132012-07-24 23:29:36 -0700866};
867
868module_i2c_driver(edt_ft5x06_ts_driver);
869
870MODULE_AUTHOR("Simon Budig <simon.budig@kernelconcepts.de>");
871MODULE_DESCRIPTION("EDT FT5x06 I2C Touchscreen Driver");
872MODULE_LICENSE("GPL");