blob: 704169f16c7de60cc8345dd81c79d97dfa5f844d [file] [log] [blame]
Magnus Damm885c3162008-05-07 11:15:02 -04001/*
2 * Touch Screen driver for Renesas MIGO-R Platform
3 *
4 * Copyright (c) 2008 Magnus Damm
5 * Copyright (c) 2007 Ujjwal Pande <ujjwal@kenati.com>,
6 * Kenati Technologies Pvt Ltd.
7 *
8 * This file is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
12 *
13 * This file is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */
22#include <linux/module.h>
23#include <linux/kernel.h>
24#include <linux/input.h>
25#include <linux/interrupt.h>
Mark Brownd72e64e2011-01-06 23:01:03 -080026#include <linux/pm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Magnus Damm885c3162008-05-07 11:15:02 -040028#include <asm/io.h>
29#include <linux/i2c.h>
30#include <linux/timer.h>
31
32#define EVENT_PENDOWN 1
33#define EVENT_REPEAT 2
34#define EVENT_PENUP 3
35
36struct migor_ts_priv {
37 struct i2c_client *client;
38 struct input_dev *input;
Magnus Damm885c3162008-05-07 11:15:02 -040039 int irq;
40};
41
42static const u_int8_t migor_ts_ena_seq[17] = { 0x33, 0x22, 0x11,
43 0x01, 0x06, 0x07, };
44static const u_int8_t migor_ts_dis_seq[17] = { };
45
Dmitry Torokhov468792e2011-11-30 23:44:30 -080046static irqreturn_t migor_ts_isr(int irq, void *dev_id)
Magnus Damm885c3162008-05-07 11:15:02 -040047{
Dmitry Torokhov468792e2011-11-30 23:44:30 -080048 struct migor_ts_priv *priv = dev_id;
Magnus Damm885c3162008-05-07 11:15:02 -040049 unsigned short xpos, ypos;
50 unsigned char event;
51 u_int8_t buf[16];
52
Dmitry Torokhov468792e2011-11-30 23:44:30 -080053 /*
54 * The touch screen controller chip is hooked up to the CPU
55 * using I2C and a single interrupt line. The interrupt line
56 * is pulled low whenever someone taps the screen. To deassert
57 * the interrupt line we need to acknowledge the interrupt by
58 * communicating with the controller over the slow i2c bus.
59 *
60 * Since I2C bus controller may sleep we are using threaded
61 * IRQ here.
62 */
63
Magnus Damm885c3162008-05-07 11:15:02 -040064 memset(buf, 0, sizeof(buf));
65
66 /* Set Index 0 */
67 buf[0] = 0;
68 if (i2c_master_send(priv->client, buf, 1) != 1) {
69 dev_err(&priv->client->dev, "Unable to write i2c index\n");
70 goto out;
71 }
72
73 /* Now do Page Read */
74 if (i2c_master_recv(priv->client, buf, sizeof(buf)) != sizeof(buf)) {
75 dev_err(&priv->client->dev, "Unable to read i2c page\n");
76 goto out;
77 }
78
79 ypos = ((buf[9] & 0x03) << 8 | buf[8]);
80 xpos = ((buf[11] & 0x03) << 8 | buf[10]);
81 event = buf[12];
82
Dmitry Torokhov468792e2011-11-30 23:44:30 -080083 switch (event) {
84 case EVENT_PENDOWN:
85 case EVENT_REPEAT:
Magnus Damm885c3162008-05-07 11:15:02 -040086 input_report_key(priv->input, BTN_TOUCH, 1);
87 input_report_abs(priv->input, ABS_X, ypos); /*X-Y swap*/
88 input_report_abs(priv->input, ABS_Y, xpos);
89 input_sync(priv->input);
Dmitry Torokhov468792e2011-11-30 23:44:30 -080090 break;
91
92 case EVENT_PENUP:
Magnus Damm885c3162008-05-07 11:15:02 -040093 input_report_key(priv->input, BTN_TOUCH, 0);
94 input_sync(priv->input);
Dmitry Torokhov468792e2011-11-30 23:44:30 -080095 break;
Magnus Damm885c3162008-05-07 11:15:02 -040096 }
Dmitry Torokhov468792e2011-11-30 23:44:30 -080097
Magnus Damm885c3162008-05-07 11:15:02 -040098 out:
Magnus Damm885c3162008-05-07 11:15:02 -040099 return IRQ_HANDLED;
100}
101
Magnus Damm885c3162008-05-07 11:15:02 -0400102static int migor_ts_open(struct input_dev *dev)
103{
104 struct migor_ts_priv *priv = input_get_drvdata(dev);
105 struct i2c_client *client = priv->client;
106 int count;
107
108 /* enable controller */
109 count = i2c_master_send(client, migor_ts_ena_seq,
110 sizeof(migor_ts_ena_seq));
111 if (count != sizeof(migor_ts_ena_seq)) {
112 dev_err(&client->dev, "Unable to enable touchscreen.\n");
113 return -ENXIO;
114 }
115
116 return 0;
117}
118
119static void migor_ts_close(struct input_dev *dev)
120{
121 struct migor_ts_priv *priv = input_get_drvdata(dev);
122 struct i2c_client *client = priv->client;
123
124 disable_irq(priv->irq);
125
Magnus Damm885c3162008-05-07 11:15:02 -0400126 /* disable controller */
127 i2c_master_send(client, migor_ts_dis_seq, sizeof(migor_ts_dis_seq));
128
129 enable_irq(priv->irq);
130}
131
132static int migor_ts_probe(struct i2c_client *client,
133 const struct i2c_device_id *idp)
134{
135 struct migor_ts_priv *priv;
136 struct input_dev *input;
137 int error;
138
139 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
140 if (!priv) {
141 dev_err(&client->dev, "failed to allocate driver data\n");
142 error = -ENOMEM;
143 goto err0;
144 }
145
Magnus Damm885c3162008-05-07 11:15:02 -0400146 input = input_allocate_device();
147 if (!input) {
148 dev_err(&client->dev, "Failed to allocate input device.\n");
149 error = -ENOMEM;
150 goto err1;
151 }
152
153 input->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
154 input->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH);
155
156 input_set_abs_params(input, ABS_X, 95, 955, 0, 0);
157 input_set_abs_params(input, ABS_Y, 85, 935, 0, 0);
158
Magnus Dammb6ce9ad2008-08-11 14:53:49 +0900159 input->name = client->name;
Magnus Damm885c3162008-05-07 11:15:02 -0400160 input->id.bustype = BUS_I2C;
161 input->dev.parent = &client->dev;
162
163 input->open = migor_ts_open;
164 input->close = migor_ts_close;
165
166 input_set_drvdata(input, priv);
167
168 priv->client = client;
169 priv->input = input;
Magnus Damm885c3162008-05-07 11:15:02 -0400170 priv->irq = client->irq;
171
172 error = input_register_device(input);
173 if (error)
174 goto err1;
175
Dmitry Torokhov468792e2011-11-30 23:44:30 -0800176 error = request_threaded_irq(priv->irq, NULL, migor_ts_isr,
177 IRQF_TRIGGER_LOW | IRQF_ONESHOT,
178 client->name, priv);
Magnus Damm885c3162008-05-07 11:15:02 -0400179 if (error) {
180 dev_err(&client->dev, "Unable to request touchscreen IRQ.\n");
181 goto err2;
182 }
183
Dmitry Torokhovec208612011-11-30 23:44:30 -0800184 i2c_set_clientdata(client, priv);
Magnus Damm0935ade2009-04-01 14:49:41 +0000185 device_init_wakeup(&client->dev, 1);
Magnus Damm885c3162008-05-07 11:15:02 -0400186 return 0;
187
188 err2:
189 input_unregister_device(input);
190 input = NULL; /* so we dont try to free it below */
191 err1:
192 input_free_device(input);
193 kfree(priv);
194 err0:
195 dev_set_drvdata(&client->dev, NULL);
196 return error;
197}
198
199static int migor_ts_remove(struct i2c_client *client)
200{
Dmitry Torokhovec208612011-11-30 23:44:30 -0800201 struct migor_ts_priv *priv = i2c_get_clientdata(client);
Magnus Damm885c3162008-05-07 11:15:02 -0400202
203 free_irq(priv->irq, priv);
204 input_unregister_device(priv->input);
205 kfree(priv);
206
207 dev_set_drvdata(&client->dev, NULL);
208
209 return 0;
210}
211
Mark Brownd72e64e2011-01-06 23:01:03 -0800212static int migor_ts_suspend(struct device *dev)
Magnus Damm0935ade2009-04-01 14:49:41 +0000213{
Mark Brownd72e64e2011-01-06 23:01:03 -0800214 struct i2c_client *client = to_i2c_client(dev);
Dmitry Torokhovec208612011-11-30 23:44:30 -0800215 struct migor_ts_priv *priv = i2c_get_clientdata(client);
Magnus Damm0935ade2009-04-01 14:49:41 +0000216
217 if (device_may_wakeup(&client->dev))
218 enable_irq_wake(priv->irq);
219
220 return 0;
221}
222
Mark Brownd72e64e2011-01-06 23:01:03 -0800223static int migor_ts_resume(struct device *dev)
Magnus Damm0935ade2009-04-01 14:49:41 +0000224{
Mark Brownd72e64e2011-01-06 23:01:03 -0800225 struct i2c_client *client = to_i2c_client(dev);
Dmitry Torokhovec208612011-11-30 23:44:30 -0800226 struct migor_ts_priv *priv = i2c_get_clientdata(client);
Magnus Damm0935ade2009-04-01 14:49:41 +0000227
228 if (device_may_wakeup(&client->dev))
229 disable_irq_wake(priv->irq);
230
231 return 0;
232}
233
Mark Brownd72e64e2011-01-06 23:01:03 -0800234static SIMPLE_DEV_PM_OPS(migor_ts_pm, migor_ts_suspend, migor_ts_resume);
235
Magnus Dammb6ce9ad2008-08-11 14:53:49 +0900236static const struct i2c_device_id migor_ts_id[] = {
237 { "migor_ts", 0 },
238 { }
239};
240MODULE_DEVICE_TABLE(i2c, migor_ts);
241
Magnus Damm885c3162008-05-07 11:15:02 -0400242static struct i2c_driver migor_ts_driver = {
243 .driver = {
244 .name = "migor_ts",
Mark Brownd72e64e2011-01-06 23:01:03 -0800245 .pm = &migor_ts_pm,
Magnus Damm885c3162008-05-07 11:15:02 -0400246 },
247 .probe = migor_ts_probe,
248 .remove = migor_ts_remove,
Magnus Dammb6ce9ad2008-08-11 14:53:49 +0900249 .id_table = migor_ts_id,
Magnus Damm885c3162008-05-07 11:15:02 -0400250};
251
252static int __init migor_ts_init(void)
253{
254 return i2c_add_driver(&migor_ts_driver);
255}
256
257static void __exit migor_ts_exit(void)
258{
259 i2c_del_driver(&migor_ts_driver);
260}
261
262MODULE_DESCRIPTION("MigoR Touchscreen driver");
263MODULE_AUTHOR("Magnus Damm <damm@opensource.se>");
264MODULE_LICENSE("GPL");
265
266module_init(migor_ts_init);
267module_exit(migor_ts_exit);