blob: 5d36243bdc79455dcb8a41dcced8d287dcd98e4e [file] [log] [blame]
Jianchun Bian36a281e2011-12-30 15:16:21 -08001/*
2 * Driver for Pixcir I2C touchscreen controllers.
3 *
4 * Copyright (C) 2010-2011 Pixcir, Inc.
5 *
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#include <linux/delay.h>
21#include <linux/module.h>
22#include <linux/interrupt.h>
23#include <linux/slab.h>
24#include <linux/i2c.h>
25#include <linux/input.h>
26#include <linux/input/pixcir_ts.h>
27
28struct pixcir_i2c_ts_data {
29 struct i2c_client *client;
30 struct input_dev *input;
31 const struct pixcir_ts_platform_data *chip;
32 bool exiting;
33};
34
35static void pixcir_ts_poscheck(struct pixcir_i2c_ts_data *data)
36{
37 struct pixcir_i2c_ts_data *tsdata = data;
38 u8 rdbuf[10], wrbuf[1] = { 0 };
39 u8 touch;
40 int ret;
41
42 ret = i2c_master_send(tsdata->client, wrbuf, sizeof(wrbuf));
43 if (ret != sizeof(wrbuf)) {
44 dev_err(&tsdata->client->dev,
45 "%s: i2c_master_send failed(), ret=%d\n",
46 __func__, ret);
47 return;
48 }
49
50 ret = i2c_master_recv(tsdata->client, rdbuf, sizeof(rdbuf));
51 if (ret != sizeof(rdbuf)) {
52 dev_err(&tsdata->client->dev,
53 "%s: i2c_master_recv failed(), ret=%d\n",
54 __func__, ret);
55 return;
56 }
57
58 touch = rdbuf[0];
59 if (touch) {
60 u16 posx1 = (rdbuf[3] << 8) | rdbuf[2];
61 u16 posy1 = (rdbuf[5] << 8) | rdbuf[4];
62 u16 posx2 = (rdbuf[7] << 8) | rdbuf[6];
63 u16 posy2 = (rdbuf[9] << 8) | rdbuf[8];
64
65 input_report_key(tsdata->input, BTN_TOUCH, 1);
66 input_report_abs(tsdata->input, ABS_X, posx1);
67 input_report_abs(tsdata->input, ABS_Y, posy1);
68
69 input_report_abs(tsdata->input, ABS_MT_POSITION_X, posx1);
70 input_report_abs(tsdata->input, ABS_MT_POSITION_Y, posy1);
71 input_mt_sync(tsdata->input);
72
73 if (touch == 2) {
74 input_report_abs(tsdata->input,
75 ABS_MT_POSITION_X, posx2);
76 input_report_abs(tsdata->input,
77 ABS_MT_POSITION_Y, posy2);
78 input_mt_sync(tsdata->input);
79 }
80 } else {
81 input_report_key(tsdata->input, BTN_TOUCH, 0);
82 }
83
84 input_sync(tsdata->input);
85}
86
87static irqreturn_t pixcir_ts_isr(int irq, void *dev_id)
88{
89 struct pixcir_i2c_ts_data *tsdata = dev_id;
90
91 while (!tsdata->exiting) {
92 pixcir_ts_poscheck(tsdata);
93
94 if (tsdata->chip->attb_read_val())
95 break;
96
97 msleep(20);
98 }
99
100 return IRQ_HANDLED;
101}
102
103#ifdef CONFIG_PM_SLEEP
104static int pixcir_i2c_ts_suspend(struct device *dev)
105{
106 struct i2c_client *client = to_i2c_client(dev);
107
108 if (device_may_wakeup(&client->dev))
109 enable_irq_wake(client->irq);
110
111 return 0;
112}
113
114static int pixcir_i2c_ts_resume(struct device *dev)
115{
116 struct i2c_client *client = to_i2c_client(dev);
117
118 if (device_may_wakeup(&client->dev))
119 disable_irq_wake(client->irq);
120
121 return 0;
122}
123#endif
124
125static SIMPLE_DEV_PM_OPS(pixcir_dev_pm_ops,
126 pixcir_i2c_ts_suspend, pixcir_i2c_ts_resume);
127
Bill Pemberton5298cc42012-11-23 21:38:25 -0800128static int pixcir_i2c_ts_probe(struct i2c_client *client,
Jianchun Bian36a281e2011-12-30 15:16:21 -0800129 const struct i2c_device_id *id)
130{
Jingoo Hanc838cb32013-12-05 19:21:10 -0800131 const struct pixcir_ts_platform_data *pdata =
132 dev_get_platdata(&client->dev);
Roger Quadrose9d47182014-05-18 22:43:42 -0700133 struct device *dev = &client->dev;
Jianchun Bian36a281e2011-12-30 15:16:21 -0800134 struct pixcir_i2c_ts_data *tsdata;
135 struct input_dev *input;
136 int error;
137
138 if (!pdata) {
139 dev_err(&client->dev, "platform data not defined\n");
140 return -EINVAL;
141 }
142
Roger Quadrose9d47182014-05-18 22:43:42 -0700143 tsdata = devm_kzalloc(dev, sizeof(*tsdata), GFP_KERNEL);
144 if (!tsdata)
145 return -ENOMEM;
146
147 input = devm_input_allocate_device(dev);
148 if (!input) {
149 dev_err(dev, "Failed to allocate input device\n");
150 return -ENOMEM;
Jianchun Bian36a281e2011-12-30 15:16:21 -0800151 }
152
153 tsdata->client = client;
154 tsdata->input = input;
155 tsdata->chip = pdata;
156
157 input->name = client->name;
158 input->id.bustype = BUS_I2C;
159 input->dev.parent = &client->dev;
160
161 __set_bit(EV_KEY, input->evbit);
162 __set_bit(EV_ABS, input->evbit);
163 __set_bit(BTN_TOUCH, input->keybit);
164 input_set_abs_params(input, ABS_X, 0, pdata->x_max, 0, 0);
165 input_set_abs_params(input, ABS_Y, 0, pdata->y_max, 0, 0);
166 input_set_abs_params(input, ABS_MT_POSITION_X, 0, pdata->x_max, 0, 0);
167 input_set_abs_params(input, ABS_MT_POSITION_Y, 0, pdata->y_max, 0, 0);
168
169 input_set_drvdata(input, tsdata);
170
Roger Quadrose9d47182014-05-18 22:43:42 -0700171 error = devm_request_threaded_irq(dev, client->irq, NULL, pixcir_ts_isr,
172 IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
173 client->name, tsdata);
Jianchun Bian36a281e2011-12-30 15:16:21 -0800174 if (error) {
Roger Quadrose9d47182014-05-18 22:43:42 -0700175 dev_err(dev, "failed to request irq %d\n", client->irq);
176 return error;
Jianchun Bian36a281e2011-12-30 15:16:21 -0800177 }
178
179 error = input_register_device(input);
180 if (error)
Roger Quadrose9d47182014-05-18 22:43:42 -0700181 return error;
Jianchun Bian36a281e2011-12-30 15:16:21 -0800182
183 i2c_set_clientdata(client, tsdata);
184 device_init_wakeup(&client->dev, 1);
185
186 return 0;
Jianchun Bian36a281e2011-12-30 15:16:21 -0800187}
188
Bill Pembertone2619cf2012-11-23 21:50:47 -0800189static int pixcir_i2c_ts_remove(struct i2c_client *client)
Jianchun Bian36a281e2011-12-30 15:16:21 -0800190{
191 struct pixcir_i2c_ts_data *tsdata = i2c_get_clientdata(client);
192
193 device_init_wakeup(&client->dev, 0);
194
195 tsdata->exiting = true;
196 mb();
Jianchun Bian36a281e2011-12-30 15:16:21 -0800197
198 return 0;
199}
200
201static const struct i2c_device_id pixcir_i2c_ts_id[] = {
202 { "pixcir_ts", 0 },
203 { }
204};
205MODULE_DEVICE_TABLE(i2c, pixcir_i2c_ts_id);
206
207static struct i2c_driver pixcir_i2c_ts_driver = {
208 .driver = {
209 .owner = THIS_MODULE,
210 .name = "pixcir_ts",
211 .pm = &pixcir_dev_pm_ops,
212 },
213 .probe = pixcir_i2c_ts_probe,
Bill Pemberton1cb0aa82012-11-23 21:27:39 -0800214 .remove = pixcir_i2c_ts_remove,
Jianchun Bian36a281e2011-12-30 15:16:21 -0800215 .id_table = pixcir_i2c_ts_id,
216};
217
Dmitry Torokhov4a533832012-03-16 23:05:44 -0700218module_i2c_driver(pixcir_i2c_ts_driver);
Jianchun Bian36a281e2011-12-30 15:16:21 -0800219
220MODULE_AUTHOR("Jianchun Bian <jcbian@pixcir.com.cn>, Dequan Meng <dqmeng@pixcir.com.cn>");
221MODULE_DESCRIPTION("Pixcir I2C Touchscreen Driver");
222MODULE_LICENSE("GPL");