blob: e146dfa257b15eadd866b101d73c8b3bc7d0e862 [file] [log] [blame]
Thomas Gleixner9c92ab62019-05-29 07:17:56 -07001// SPDX-License-Identifier: GPL-2.0-only
Jianchun Bian36a281e2011-12-30 15:16:21 -08002/*
3 * Driver for Pixcir I2C touchscreen controllers.
4 *
5 * Copyright (C) 2010-2011 Pixcir, Inc.
Jianchun Bian36a281e2011-12-30 15:16:21 -08006 */
7
8#include <linux/delay.h>
9#include <linux/module.h>
10#include <linux/interrupt.h>
11#include <linux/slab.h>
12#include <linux/i2c.h>
13#include <linux/input.h>
Roger Quadros62e65b72014-07-28 09:58:54 -070014#include <linux/input/mt.h>
Dmitry Torokhovd48259a2015-07-06 14:29:29 -070015#include <linux/input/touchscreen.h>
Roger Quadros0dfc8d42014-05-18 22:46:43 -070016#include <linux/gpio.h>
Dmitry Torokhovcb4a5f02015-07-06 11:56:21 -070017#include <linux/gpio/consumer.h>
Roger Quadrosa4054592014-07-28 10:05:39 -070018#include <linux/of_device.h>
Dmitry Torokhov28a74c02015-07-06 11:48:47 -070019#include <linux/platform_data/pixcir_i2c_ts.h>
Hans de Goede0bb11e92016-07-15 14:31:31 -070020#include <asm/unaligned.h>
Jianchun Bian36a281e2011-12-30 15:16:21 -080021
Roger Quadros36874c72014-07-28 10:01:07 -070022#define PIXCIR_MAX_SLOTS 5 /* Max fingers supported by driver */
Roger Quadros62e65b72014-07-28 09:58:54 -070023
Jianchun Bian36a281e2011-12-30 15:16:21 -080024struct pixcir_i2c_ts_data {
25 struct i2c_client *client;
26 struct input_dev *input;
Dmitry Torokhovcb4a5f02015-07-06 11:56:21 -070027 struct gpio_desc *gpio_attb;
Roger Quadros40929162015-07-06 13:27:43 -070028 struct gpio_desc *gpio_reset;
Sander Verminbcf5b3d2015-12-01 13:25:05 -080029 struct gpio_desc *gpio_enable;
30 struct gpio_desc *gpio_wake;
Dmitry Torokhovd48259a2015-07-06 14:29:29 -070031 const struct pixcir_i2c_chip_data *chip;
Hans de Goede0bb11e92016-07-15 14:31:31 -070032 struct touchscreen_properties prop;
Roger Quadros36874c72014-07-28 10:01:07 -070033 int max_fingers; /* Max fingers supported in this instance */
Dmitry Torokhovd48259a2015-07-06 14:29:29 -070034 bool running;
Jianchun Bian36a281e2011-12-30 15:16:21 -080035};
36
Roger Quadros62e65b72014-07-28 09:58:54 -070037struct pixcir_report_data {
38 int num_touches;
Hans de Goede0bb11e92016-07-15 14:31:31 -070039 struct input_mt_pos pos[PIXCIR_MAX_SLOTS];
40 int ids[PIXCIR_MAX_SLOTS];
Roger Quadros62e65b72014-07-28 09:58:54 -070041};
42
43static void pixcir_ts_parse(struct pixcir_i2c_ts_data *tsdata,
44 struct pixcir_report_data *report)
Jianchun Bian36a281e2011-12-30 15:16:21 -080045{
Roger Quadros36874c72014-07-28 10:01:07 -070046 u8 rdbuf[2 + PIXCIR_MAX_SLOTS * 5];
47 u8 wrbuf[1] = { 0 };
Roger Quadros62e65b72014-07-28 09:58:54 -070048 u8 *bufptr;
Jianchun Bian36a281e2011-12-30 15:16:21 -080049 u8 touch;
Roger Quadros62e65b72014-07-28 09:58:54 -070050 int ret, i;
Roger Quadros36874c72014-07-28 10:01:07 -070051 int readsize;
Dmitry Torokhovd48259a2015-07-06 14:29:29 -070052 const struct pixcir_i2c_chip_data *chip = tsdata->chip;
Roger Quadros62e65b72014-07-28 09:58:54 -070053
54 memset(report, 0, sizeof(struct pixcir_report_data));
Jianchun Bian36a281e2011-12-30 15:16:21 -080055
Roger Quadros36874c72014-07-28 10:01:07 -070056 i = chip->has_hw_ids ? 1 : 0;
57 readsize = 2 + tsdata->max_fingers * (4 + i);
58 if (readsize > sizeof(rdbuf))
59 readsize = sizeof(rdbuf);
60
Jianchun Bian36a281e2011-12-30 15:16:21 -080061 ret = i2c_master_send(tsdata->client, wrbuf, sizeof(wrbuf));
62 if (ret != sizeof(wrbuf)) {
63 dev_err(&tsdata->client->dev,
64 "%s: i2c_master_send failed(), ret=%d\n",
65 __func__, ret);
66 return;
67 }
68
Roger Quadros36874c72014-07-28 10:01:07 -070069 ret = i2c_master_recv(tsdata->client, rdbuf, readsize);
Frodo Lai469d7d22015-06-16 15:03:53 -070070 if (ret != readsize) {
Jianchun Bian36a281e2011-12-30 15:16:21 -080071 dev_err(&tsdata->client->dev,
72 "%s: i2c_master_recv failed(), ret=%d\n",
73 __func__, ret);
74 return;
75 }
76
Roger Quadros62e65b72014-07-28 09:58:54 -070077 touch = rdbuf[0] & 0x7;
Roger Quadros36874c72014-07-28 10:01:07 -070078 if (touch > tsdata->max_fingers)
79 touch = tsdata->max_fingers;
Jianchun Bian36a281e2011-12-30 15:16:21 -080080
Roger Quadros62e65b72014-07-28 09:58:54 -070081 report->num_touches = touch;
82 bufptr = &rdbuf[2];
Jianchun Bian36a281e2011-12-30 15:16:21 -080083
Roger Quadros62e65b72014-07-28 09:58:54 -070084 for (i = 0; i < touch; i++) {
Hans de Goede0bb11e92016-07-15 14:31:31 -070085 touchscreen_set_mt_pos(&report->pos[i], &tsdata->prop,
86 get_unaligned_le16(bufptr),
87 get_unaligned_le16(bufptr + 2));
Roger Quadros36874c72014-07-28 10:01:07 -070088 if (chip->has_hw_ids) {
Hans de Goede0bb11e92016-07-15 14:31:31 -070089 report->ids[i] = bufptr[4];
Roger Quadros36874c72014-07-28 10:01:07 -070090 bufptr = bufptr + 5;
91 } else {
92 bufptr = bufptr + 4;
93 }
Roger Quadros62e65b72014-07-28 09:58:54 -070094 }
95}
96
97static void pixcir_ts_report(struct pixcir_i2c_ts_data *ts,
98 struct pixcir_report_data *report)
99{
Roger Quadros62e65b72014-07-28 09:58:54 -0700100 int slots[PIXCIR_MAX_SLOTS];
Roger Quadros62e65b72014-07-28 09:58:54 -0700101 int n, i, slot;
102 struct device *dev = &ts->client->dev;
Dmitry Torokhovd48259a2015-07-06 14:29:29 -0700103 const struct pixcir_i2c_chip_data *chip = ts->chip;
Roger Quadros62e65b72014-07-28 09:58:54 -0700104
105 n = report->num_touches;
106 if (n > PIXCIR_MAX_SLOTS)
107 n = PIXCIR_MAX_SLOTS;
108
Hans de Goede0bb11e92016-07-15 14:31:31 -0700109 if (!ts->chip->has_hw_ids)
110 input_mt_assign_slots(ts->input, slots, report->pos, n, 0);
Jianchun Bian36a281e2011-12-30 15:16:21 -0800111
Roger Quadros62e65b72014-07-28 09:58:54 -0700112 for (i = 0; i < n; i++) {
Roger Quadros36874c72014-07-28 10:01:07 -0700113 if (chip->has_hw_ids) {
Hans de Goede0bb11e92016-07-15 14:31:31 -0700114 slot = input_mt_get_slot_by_key(ts->input,
115 report->ids[i]);
Roger Quadros36874c72014-07-28 10:01:07 -0700116 if (slot < 0) {
117 dev_dbg(dev, "no free slot for id 0x%x\n",
Hans de Goede0bb11e92016-07-15 14:31:31 -0700118 report->ids[i]);
Roger Quadros36874c72014-07-28 10:01:07 -0700119 continue;
120 }
121 } else {
122 slot = slots[i];
123 }
Roger Quadros62e65b72014-07-28 09:58:54 -0700124
125 input_mt_slot(ts->input, slot);
Hans de Goede0bb11e92016-07-15 14:31:31 -0700126 input_mt_report_slot_state(ts->input, MT_TOOL_FINGER, true);
Roger Quadros62e65b72014-07-28 09:58:54 -0700127
Hans de Goede0bb11e92016-07-15 14:31:31 -0700128 input_report_abs(ts->input, ABS_MT_POSITION_X,
129 report->pos[i].x);
130 input_report_abs(ts->input, ABS_MT_POSITION_Y,
131 report->pos[i].y);
Roger Quadros62e65b72014-07-28 09:58:54 -0700132
133 dev_dbg(dev, "%d: slot %d, x %d, y %d\n",
Hans de Goede0bb11e92016-07-15 14:31:31 -0700134 i, slot, report->pos[i].x, report->pos[i].y);
Roger Quadros62e65b72014-07-28 09:58:54 -0700135 }
136
137 input_mt_sync_frame(ts->input);
138 input_sync(ts->input);
Jianchun Bian36a281e2011-12-30 15:16:21 -0800139}
140
141static irqreturn_t pixcir_ts_isr(int irq, void *dev_id)
142{
143 struct pixcir_i2c_ts_data *tsdata = dev_id;
Roger Quadros62e65b72014-07-28 09:58:54 -0700144 struct pixcir_report_data report;
Jianchun Bian36a281e2011-12-30 15:16:21 -0800145
Roger Quadros3b36fbb2014-05-18 22:44:35 -0700146 while (tsdata->running) {
Roger Quadros62e65b72014-07-28 09:58:54 -0700147 /* parse packet */
148 pixcir_ts_parse(tsdata, &report);
Jianchun Bian36a281e2011-12-30 15:16:21 -0800149
Roger Quadros62e65b72014-07-28 09:58:54 -0700150 /* report it */
151 pixcir_ts_report(tsdata, &report);
152
Dmitry Torokhov127520c2015-07-06 13:27:00 -0700153 if (gpiod_get_value_cansleep(tsdata->gpio_attb)) {
Roger Quadros62e65b72014-07-28 09:58:54 -0700154 if (report.num_touches) {
155 /*
156 * Last report with no finger up?
157 * Do it now then.
158 */
159 input_mt_sync_frame(tsdata->input);
160 input_sync(tsdata->input);
161 }
Jianchun Bian36a281e2011-12-30 15:16:21 -0800162 break;
Roger Quadros62e65b72014-07-28 09:58:54 -0700163 }
Jianchun Bian36a281e2011-12-30 15:16:21 -0800164
165 msleep(20);
166 }
167
168 return IRQ_HANDLED;
169}
170
Roger Quadros40929162015-07-06 13:27:43 -0700171static void pixcir_reset(struct pixcir_i2c_ts_data *tsdata)
172{
173 if (!IS_ERR_OR_NULL(tsdata->gpio_reset)) {
174 gpiod_set_value_cansleep(tsdata->gpio_reset, 1);
175 ndelay(100); /* datasheet section 1.2.3 says 80ns min. */
176 gpiod_set_value_cansleep(tsdata->gpio_reset, 0);
177 /* wait for controller ready. 100ms guess. */
178 msleep(100);
179 }
180}
181
Roger Quadros3b36fbb2014-05-18 22:44:35 -0700182static int pixcir_set_power_mode(struct pixcir_i2c_ts_data *ts,
183 enum pixcir_power_mode mode)
184{
185 struct device *dev = &ts->client->dev;
186 int ret;
187
Sander Verminbcf5b3d2015-12-01 13:25:05 -0800188 if (mode == PIXCIR_POWER_ACTIVE || mode == PIXCIR_POWER_IDLE) {
189 if (ts->gpio_wake)
190 gpiod_set_value_cansleep(ts->gpio_wake, 1);
191 }
192
Roger Quadros3b36fbb2014-05-18 22:44:35 -0700193 ret = i2c_smbus_read_byte_data(ts->client, PIXCIR_REG_POWER_MODE);
194 if (ret < 0) {
195 dev_err(dev, "%s: can't read reg 0x%x : %d\n",
196 __func__, PIXCIR_REG_POWER_MODE, ret);
197 return ret;
198 }
199
200 ret &= ~PIXCIR_POWER_MODE_MASK;
201 ret |= mode;
202
203 /* Always AUTO_IDLE */
204 ret |= PIXCIR_POWER_ALLOW_IDLE;
205
206 ret = i2c_smbus_write_byte_data(ts->client, PIXCIR_REG_POWER_MODE, ret);
207 if (ret < 0) {
208 dev_err(dev, "%s: can't write reg 0x%x : %d\n",
209 __func__, PIXCIR_REG_POWER_MODE, ret);
210 return ret;
211 }
212
Sander Verminbcf5b3d2015-12-01 13:25:05 -0800213 if (mode == PIXCIR_POWER_HALT) {
214 if (ts->gpio_wake)
215 gpiod_set_value_cansleep(ts->gpio_wake, 0);
216 }
217
Roger Quadros3b36fbb2014-05-18 22:44:35 -0700218 return 0;
219}
220
221/*
222 * Set the interrupt mode for the device i.e. ATTB line behaviour
223 *
224 * @polarity : 1 for active high, 0 for active low.
225 */
226static int pixcir_set_int_mode(struct pixcir_i2c_ts_data *ts,
227 enum pixcir_int_mode mode, bool polarity)
228{
229 struct device *dev = &ts->client->dev;
230 int ret;
231
232 ret = i2c_smbus_read_byte_data(ts->client, PIXCIR_REG_INT_MODE);
233 if (ret < 0) {
234 dev_err(dev, "%s: can't read reg 0x%x : %d\n",
235 __func__, PIXCIR_REG_INT_MODE, ret);
236 return ret;
237 }
238
239 ret &= ~PIXCIR_INT_MODE_MASK;
240 ret |= mode;
241
242 if (polarity)
243 ret |= PIXCIR_INT_POL_HIGH;
244 else
245 ret &= ~PIXCIR_INT_POL_HIGH;
246
247 ret = i2c_smbus_write_byte_data(ts->client, PIXCIR_REG_INT_MODE, ret);
248 if (ret < 0) {
249 dev_err(dev, "%s: can't write reg 0x%x : %d\n",
250 __func__, PIXCIR_REG_INT_MODE, ret);
251 return ret;
252 }
253
254 return 0;
255}
256
257/*
258 * Enable/disable interrupt generation
259 */
260static int pixcir_int_enable(struct pixcir_i2c_ts_data *ts, bool enable)
261{
262 struct device *dev = &ts->client->dev;
263 int ret;
264
265 ret = i2c_smbus_read_byte_data(ts->client, PIXCIR_REG_INT_MODE);
266 if (ret < 0) {
267 dev_err(dev, "%s: can't read reg 0x%x : %d\n",
268 __func__, PIXCIR_REG_INT_MODE, ret);
269 return ret;
270 }
271
272 if (enable)
273 ret |= PIXCIR_INT_ENABLE;
274 else
275 ret &= ~PIXCIR_INT_ENABLE;
276
277 ret = i2c_smbus_write_byte_data(ts->client, PIXCIR_REG_INT_MODE, ret);
278 if (ret < 0) {
279 dev_err(dev, "%s: can't write reg 0x%x : %d\n",
280 __func__, PIXCIR_REG_INT_MODE, ret);
281 return ret;
282 }
283
284 return 0;
285}
286
287static int pixcir_start(struct pixcir_i2c_ts_data *ts)
288{
289 struct device *dev = &ts->client->dev;
290 int error;
291
Sander Verminbcf5b3d2015-12-01 13:25:05 -0800292 if (ts->gpio_enable) {
293 gpiod_set_value_cansleep(ts->gpio_enable, 1);
294 msleep(100);
295 }
296
Roger Quadros3b36fbb2014-05-18 22:44:35 -0700297 /* LEVEL_TOUCH interrupt with active low polarity */
298 error = pixcir_set_int_mode(ts, PIXCIR_INT_LEVEL_TOUCH, 0);
299 if (error) {
300 dev_err(dev, "Failed to set interrupt mode: %d\n", error);
301 return error;
302 }
303
304 ts->running = true;
305 mb(); /* Update status before IRQ can fire */
306
307 /* enable interrupt generation */
308 error = pixcir_int_enable(ts, true);
309 if (error) {
310 dev_err(dev, "Failed to enable interrupt generation: %d\n",
311 error);
312 return error;
313 }
314
315 return 0;
316}
317
318static int pixcir_stop(struct pixcir_i2c_ts_data *ts)
319{
320 int error;
321
322 /* Disable interrupt generation */
323 error = pixcir_int_enable(ts, false);
324 if (error) {
325 dev_err(&ts->client->dev,
326 "Failed to disable interrupt generation: %d\n",
327 error);
328 return error;
329 }
330
331 /* Exit ISR if running, no more report parsing */
332 ts->running = false;
333 mb(); /* update status before we synchronize irq */
334
335 /* Wait till running ISR is complete */
336 synchronize_irq(ts->client->irq);
337
Sander Verminbcf5b3d2015-12-01 13:25:05 -0800338 if (ts->gpio_enable)
339 gpiod_set_value_cansleep(ts->gpio_enable, 0);
340
Roger Quadros3b36fbb2014-05-18 22:44:35 -0700341 return 0;
342}
343
344static int pixcir_input_open(struct input_dev *dev)
345{
346 struct pixcir_i2c_ts_data *ts = input_get_drvdata(dev);
347
348 return pixcir_start(ts);
349}
350
351static void pixcir_input_close(struct input_dev *dev)
352{
353 struct pixcir_i2c_ts_data *ts = input_get_drvdata(dev);
354
355 pixcir_stop(ts);
356}
357
Jingoo Han02b6a582014-11-02 00:04:14 -0700358static int __maybe_unused pixcir_i2c_ts_suspend(struct device *dev)
Jianchun Bian36a281e2011-12-30 15:16:21 -0800359{
360 struct i2c_client *client = to_i2c_client(dev);
Roger Quadros7cdcb8d2014-05-18 22:49:20 -0700361 struct pixcir_i2c_ts_data *ts = i2c_get_clientdata(client);
362 struct input_dev *input = ts->input;
363 int ret = 0;
Jianchun Bian36a281e2011-12-30 15:16:21 -0800364
Roger Quadros7cdcb8d2014-05-18 22:49:20 -0700365 mutex_lock(&input->mutex);
366
367 if (device_may_wakeup(&client->dev)) {
368 if (!input->users) {
369 ret = pixcir_start(ts);
370 if (ret) {
371 dev_err(dev, "Failed to start\n");
372 goto unlock;
373 }
374 }
Roger Quadros7cdcb8d2014-05-18 22:49:20 -0700375 } else if (input->users) {
376 ret = pixcir_stop(ts);
377 }
Jianchun Bian36a281e2011-12-30 15:16:21 -0800378
Roger Quadros7cdcb8d2014-05-18 22:49:20 -0700379unlock:
380 mutex_unlock(&input->mutex);
381
382 return ret;
Jianchun Bian36a281e2011-12-30 15:16:21 -0800383}
384
Jingoo Han02b6a582014-11-02 00:04:14 -0700385static int __maybe_unused pixcir_i2c_ts_resume(struct device *dev)
Jianchun Bian36a281e2011-12-30 15:16:21 -0800386{
387 struct i2c_client *client = to_i2c_client(dev);
Roger Quadros7cdcb8d2014-05-18 22:49:20 -0700388 struct pixcir_i2c_ts_data *ts = i2c_get_clientdata(client);
389 struct input_dev *input = ts->input;
390 int ret = 0;
Jianchun Bian36a281e2011-12-30 15:16:21 -0800391
Roger Quadros7cdcb8d2014-05-18 22:49:20 -0700392 mutex_lock(&input->mutex);
393
394 if (device_may_wakeup(&client->dev)) {
Roger Quadros7cdcb8d2014-05-18 22:49:20 -0700395 if (!input->users) {
396 ret = pixcir_stop(ts);
397 if (ret) {
398 dev_err(dev, "Failed to stop\n");
399 goto unlock;
400 }
401 }
402 } else if (input->users) {
403 ret = pixcir_start(ts);
404 }
405
406unlock:
407 mutex_unlock(&input->mutex);
408
409 return ret;
Jianchun Bian36a281e2011-12-30 15:16:21 -0800410}
Jianchun Bian36a281e2011-12-30 15:16:21 -0800411
412static SIMPLE_DEV_PM_OPS(pixcir_dev_pm_ops,
413 pixcir_i2c_ts_suspend, pixcir_i2c_ts_resume);
414
Roger Quadrosa4054592014-07-28 10:05:39 -0700415#ifdef CONFIG_OF
416static const struct of_device_id pixcir_of_match[];
417
Dmitry Torokhovd48259a2015-07-06 14:29:29 -0700418static int pixcir_parse_dt(struct device *dev,
419 struct pixcir_i2c_ts_data *tsdata)
Roger Quadrosa4054592014-07-28 10:05:39 -0700420{
LABBE Corentin8ffef3c2016-08-19 10:16:51 -0700421 tsdata->chip = of_device_get_match_data(dev);
Dmitry Torokhovd48259a2015-07-06 14:29:29 -0700422 if (!tsdata->chip)
423 return -EINVAL;
Roger Quadrosa4054592014-07-28 10:05:39 -0700424
Dmitry Torokhovd48259a2015-07-06 14:29:29 -0700425 return 0;
Roger Quadrosa4054592014-07-28 10:05:39 -0700426}
427#else
Dmitry Torokhovd48259a2015-07-06 14:29:29 -0700428static int pixcir_parse_dt(struct device *dev,
429 struct pixcir_i2c_ts_data *tsdata)
Roger Quadrosa4054592014-07-28 10:05:39 -0700430{
Dmitry Torokhovd48259a2015-07-06 14:29:29 -0700431 return -EINVAL;
Roger Quadrosa4054592014-07-28 10:05:39 -0700432}
433#endif
434
Bill Pemberton5298cc42012-11-23 21:38:25 -0800435static int pixcir_i2c_ts_probe(struct i2c_client *client,
Dmitry Torokhovd48259a2015-07-06 14:29:29 -0700436 const struct i2c_device_id *id)
Jianchun Bian36a281e2011-12-30 15:16:21 -0800437{
Jingoo Hanc838cb32013-12-05 19:21:10 -0800438 const struct pixcir_ts_platform_data *pdata =
439 dev_get_platdata(&client->dev);
Roger Quadrose9d47182014-05-18 22:43:42 -0700440 struct device *dev = &client->dev;
Jianchun Bian36a281e2011-12-30 15:16:21 -0800441 struct pixcir_i2c_ts_data *tsdata;
442 struct input_dev *input;
443 int error;
444
Dmitry Torokhovd48259a2015-07-06 14:29:29 -0700445 tsdata = devm_kzalloc(dev, sizeof(*tsdata), GFP_KERNEL);
446 if (!tsdata)
447 return -ENOMEM;
Roger Quadrosa4054592014-07-28 10:05:39 -0700448
Dmitry Torokhovd48259a2015-07-06 14:29:29 -0700449 if (pdata) {
450 tsdata->chip = &pdata->chip;
451 } else if (dev->of_node) {
452 error = pixcir_parse_dt(dev, tsdata);
453 if (error)
454 return error;
455 } else {
Guenter Roeckd7ddf152017-01-21 23:46:47 -0800456 dev_err(dev, "platform data not defined\n");
Jianchun Bian36a281e2011-12-30 15:16:21 -0800457 return -EINVAL;
458 }
459
Dmitry Torokhovd48259a2015-07-06 14:29:29 -0700460 if (!tsdata->chip->max_fingers) {
461 dev_err(dev, "Invalid max_fingers in chip data\n");
Roger Quadros36874c72014-07-28 10:01:07 -0700462 return -EINVAL;
463 }
464
Roger Quadrose9d47182014-05-18 22:43:42 -0700465 input = devm_input_allocate_device(dev);
466 if (!input) {
467 dev_err(dev, "Failed to allocate input device\n");
468 return -ENOMEM;
Jianchun Bian36a281e2011-12-30 15:16:21 -0800469 }
470
471 tsdata->client = client;
472 tsdata->input = input;
Jianchun Bian36a281e2011-12-30 15:16:21 -0800473
474 input->name = client->name;
475 input->id.bustype = BUS_I2C;
Roger Quadros3b36fbb2014-05-18 22:44:35 -0700476 input->open = pixcir_input_open;
477 input->close = pixcir_input_close;
Guenter Roeckd7ddf152017-01-21 23:46:47 -0800478 input->dev.parent = dev;
Jianchun Bian36a281e2011-12-30 15:16:21 -0800479
Dmitry Torokhovd48259a2015-07-06 14:29:29 -0700480 if (pdata) {
481 input_set_abs_params(input, ABS_MT_POSITION_X, 0, pdata->x_max, 0, 0);
482 input_set_abs_params(input, ABS_MT_POSITION_Y, 0, pdata->y_max, 0, 0);
483 } else {
484 input_set_capability(input, EV_ABS, ABS_MT_POSITION_X);
485 input_set_capability(input, EV_ABS, ABS_MT_POSITION_Y);
Hans de Goede0bb11e92016-07-15 14:31:31 -0700486 touchscreen_parse_properties(input, true, &tsdata->prop);
Dmitry Torokhovd48259a2015-07-06 14:29:29 -0700487 if (!input_abs_get_max(input, ABS_MT_POSITION_X) ||
488 !input_abs_get_max(input, ABS_MT_POSITION_Y)) {
489 dev_err(dev, "Touchscreen size is not specified\n");
490 return -EINVAL;
491 }
492 }
Jianchun Bian36a281e2011-12-30 15:16:21 -0800493
Dmitry Torokhovd48259a2015-07-06 14:29:29 -0700494 tsdata->max_fingers = tsdata->chip->max_fingers;
Roger Quadros36874c72014-07-28 10:01:07 -0700495 if (tsdata->max_fingers > PIXCIR_MAX_SLOTS) {
496 tsdata->max_fingers = PIXCIR_MAX_SLOTS;
497 dev_info(dev, "Limiting maximum fingers to %d\n",
498 tsdata->max_fingers);
499 }
500
501 error = input_mt_init_slots(input, tsdata->max_fingers,
Roger Quadros62e65b72014-07-28 09:58:54 -0700502 INPUT_MT_DIRECT | INPUT_MT_DROP_UNUSED);
503 if (error) {
504 dev_err(dev, "Error initializing Multi-Touch slots\n");
505 return error;
506 }
507
Jianchun Bian36a281e2011-12-30 15:16:21 -0800508 input_set_drvdata(input, tsdata);
509
Dmitry Torokhovcb4a5f02015-07-06 11:56:21 -0700510 tsdata->gpio_attb = devm_gpiod_get(dev, "attb", GPIOD_IN);
511 if (IS_ERR(tsdata->gpio_attb)) {
512 error = PTR_ERR(tsdata->gpio_attb);
513 dev_err(dev, "Failed to request ATTB gpio: %d\n", error);
Roger Quadros0dfc8d42014-05-18 22:46:43 -0700514 return error;
515 }
516
Roger Quadros40929162015-07-06 13:27:43 -0700517 tsdata->gpio_reset = devm_gpiod_get_optional(dev, "reset",
518 GPIOD_OUT_LOW);
519 if (IS_ERR(tsdata->gpio_reset)) {
520 error = PTR_ERR(tsdata->gpio_reset);
521 dev_err(dev, "Failed to request RESET gpio: %d\n", error);
522 return error;
523 }
524
Sander Verminbcf5b3d2015-12-01 13:25:05 -0800525 tsdata->gpio_wake = devm_gpiod_get_optional(dev, "wake",
526 GPIOD_OUT_HIGH);
527 if (IS_ERR(tsdata->gpio_wake)) {
528 error = PTR_ERR(tsdata->gpio_wake);
529 if (error != -EPROBE_DEFER)
530 dev_err(dev, "Failed to get wake gpio: %d\n", error);
531 return error;
532 }
533
534 tsdata->gpio_enable = devm_gpiod_get_optional(dev, "enable",
535 GPIOD_OUT_HIGH);
536 if (IS_ERR(tsdata->gpio_enable)) {
537 error = PTR_ERR(tsdata->gpio_enable);
538 if (error != -EPROBE_DEFER)
539 dev_err(dev, "Failed to get enable gpio: %d\n", error);
540 return error;
541 }
542
543 if (tsdata->gpio_enable)
544 msleep(100);
545
Roger Quadrose9d47182014-05-18 22:43:42 -0700546 error = devm_request_threaded_irq(dev, client->irq, NULL, pixcir_ts_isr,
547 IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
548 client->name, tsdata);
Jianchun Bian36a281e2011-12-30 15:16:21 -0800549 if (error) {
Roger Quadrose9d47182014-05-18 22:43:42 -0700550 dev_err(dev, "failed to request irq %d\n", client->irq);
551 return error;
Jianchun Bian36a281e2011-12-30 15:16:21 -0800552 }
553
Roger Quadros40929162015-07-06 13:27:43 -0700554 pixcir_reset(tsdata);
555
Roger Quadros3b36fbb2014-05-18 22:44:35 -0700556 /* Always be in IDLE mode to save power, device supports auto wake */
557 error = pixcir_set_power_mode(tsdata, PIXCIR_POWER_IDLE);
558 if (error) {
559 dev_err(dev, "Failed to set IDLE mode\n");
560 return error;
561 }
562
563 /* Stop device till opened */
564 error = pixcir_stop(tsdata);
565 if (error)
566 return error;
567
Jianchun Bian36a281e2011-12-30 15:16:21 -0800568 error = input_register_device(input);
569 if (error)
Roger Quadrose9d47182014-05-18 22:43:42 -0700570 return error;
Jianchun Bian36a281e2011-12-30 15:16:21 -0800571
Roger Quadros7cdcb8d2014-05-18 22:49:20 -0700572 i2c_set_clientdata(client, tsdata);
Jianchun Bian36a281e2011-12-30 15:16:21 -0800573
Jianchun Bian36a281e2011-12-30 15:16:21 -0800574 return 0;
575}
576
577static const struct i2c_device_id pixcir_i2c_ts_id[] = {
578 { "pixcir_ts", 0 },
Roger Quadrosa4054592014-07-28 10:05:39 -0700579 { "pixcir_tangoc", 0 },
Jianchun Bian36a281e2011-12-30 15:16:21 -0800580 { }
581};
582MODULE_DEVICE_TABLE(i2c, pixcir_i2c_ts_id);
583
Roger Quadrosa4054592014-07-28 10:05:39 -0700584#ifdef CONFIG_OF
585static const struct pixcir_i2c_chip_data pixcir_ts_data = {
586 .max_fingers = 2,
587 /* no hw id support */
588};
589
590static const struct pixcir_i2c_chip_data pixcir_tangoc_data = {
591 .max_fingers = 5,
592 .has_hw_ids = true,
593};
594
595static const struct of_device_id pixcir_of_match[] = {
596 { .compatible = "pixcir,pixcir_ts", .data = &pixcir_ts_data },
597 { .compatible = "pixcir,pixcir_tangoc", .data = &pixcir_tangoc_data },
598 { }
599};
600MODULE_DEVICE_TABLE(of, pixcir_of_match);
601#endif
602
Jianchun Bian36a281e2011-12-30 15:16:21 -0800603static struct i2c_driver pixcir_i2c_ts_driver = {
604 .driver = {
Jianchun Bian36a281e2011-12-30 15:16:21 -0800605 .name = "pixcir_ts",
606 .pm = &pixcir_dev_pm_ops,
Roger Quadrosa4054592014-07-28 10:05:39 -0700607 .of_match_table = of_match_ptr(pixcir_of_match),
Jianchun Bian36a281e2011-12-30 15:16:21 -0800608 },
609 .probe = pixcir_i2c_ts_probe,
Jianchun Bian36a281e2011-12-30 15:16:21 -0800610 .id_table = pixcir_i2c_ts_id,
611};
612
Dmitry Torokhov4a533832012-03-16 23:05:44 -0700613module_i2c_driver(pixcir_i2c_ts_driver);
Jianchun Bian36a281e2011-12-30 15:16:21 -0800614
615MODULE_AUTHOR("Jianchun Bian <jcbian@pixcir.com.cn>, Dequan Meng <dqmeng@pixcir.com.cn>");
616MODULE_DESCRIPTION("Pixcir I2C Touchscreen Driver");
617MODULE_LICENSE("GPL");