2 * Driver for cypress touch screen controller
4 * Copyright (c) 2009 Aava Mobile
6 * Some cleanups by Alan Cox <alan@linux.intel.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #include <linux/module.h>
23 #include <linux/kernel.h>
24 #include <linux/input.h>
25 #include <linux/slab.h>
26 #include <linux/interrupt.h>
28 #include <linux/i2c.h>
29 #include <linux/gpio.h>
30 #include <linux/input/cy8ctmg110_pdata.h>
32 #define CY8CTMG110_DRIVER_NAME "cy8ctmg110"
34 /* Touch coordinates */
35 #define CY8CTMG110_X_MIN 0
36 #define CY8CTMG110_Y_MIN 0
37 #define CY8CTMG110_X_MAX 759
38 #define CY8CTMG110_Y_MAX 465
41 /* cy8ctmg110 register definitions */
42 #define CY8CTMG110_TOUCH_WAKEUP_TIME 0
43 #define CY8CTMG110_TOUCH_SLEEP_TIME 2
44 #define CY8CTMG110_TOUCH_X1 3
45 #define CY8CTMG110_TOUCH_Y1 5
46 #define CY8CTMG110_TOUCH_X2 7
47 #define CY8CTMG110_TOUCH_Y2 9
48 #define CY8CTMG110_FINGERS 11
49 #define CY8CTMG110_GESTURE 12
50 #define CY8CTMG110_REG_MAX 13
54 * The touch driver structure.
57 struct input_dev
*input
;
59 struct i2c_client
*client
;
65 * cy8ctmg110_power is the routine that is called when touch hardware
66 * will powered off or on.
68 static void cy8ctmg110_power(struct cy8ctmg110
*ts
, bool poweron
)
71 gpio_direction_output(ts
->reset_pin
, 1 - poweron
);
74 static int cy8ctmg110_write_regs(struct cy8ctmg110
*tsc
, unsigned char reg
,
75 unsigned char len
, unsigned char *value
)
77 struct i2c_client
*client
= tsc
->client
;
79 unsigned char i2c_data
[6];
84 memcpy(i2c_data
+ 1, value
, len
);
86 ret
= i2c_master_send(client
, i2c_data
, len
+ 1);
88 dev_err(&client
->dev
, "i2c write data cmd failed\n");
89 return ret
? ret
: -EIO
;
95 static int cy8ctmg110_read_regs(struct cy8ctmg110
*tsc
,
96 unsigned char *data
, unsigned char len
, unsigned char cmd
)
98 struct i2c_client
*client
= tsc
->client
;
100 struct i2c_msg msg
[2] = {
101 /* first write slave position to i2c devices */
102 { client
->addr
, 0, 1, &cmd
},
103 /* Second read data from position */
104 { client
->addr
, I2C_M_RD
, len
, data
}
107 ret
= i2c_transfer(client
->adapter
, msg
, 2);
114 static int cy8ctmg110_touch_pos(struct cy8ctmg110
*tsc
)
116 struct input_dev
*input
= tsc
->input
;
117 unsigned char reg_p
[CY8CTMG110_REG_MAX
];
120 memset(reg_p
, 0, CY8CTMG110_REG_MAX
);
122 /* Reading coordinates */
123 if (cy8ctmg110_read_regs(tsc
, reg_p
, 9, CY8CTMG110_TOUCH_X1
) != 0)
126 y
= reg_p
[2] << 8 | reg_p
[3];
127 x
= reg_p
[0] << 8 | reg_p
[1];
129 /* Number of touch */
131 input_report_key(input
, BTN_TOUCH
, 0);
133 input_report_key(input
, BTN_TOUCH
, 1);
134 input_report_abs(input
, ABS_X
, x
);
135 input_report_abs(input
, ABS_Y
, y
);
143 static int cy8ctmg110_set_sleepmode(struct cy8ctmg110
*ts
, bool sleep
)
145 unsigned char reg_p
[3];
157 return cy8ctmg110_write_regs(ts
, CY8CTMG110_TOUCH_WAKEUP_TIME
, 3, reg_p
);
160 static irqreturn_t
cy8ctmg110_irq_thread(int irq
, void *dev_id
)
162 struct cy8ctmg110
*tsc
= dev_id
;
164 cy8ctmg110_touch_pos(tsc
);
169 static int __devinit
cy8ctmg110_probe(struct i2c_client
*client
,
170 const struct i2c_device_id
*id
)
172 const struct cy8ctmg110_pdata
*pdata
= client
->dev
.platform_data
;
173 struct cy8ctmg110
*ts
;
174 struct input_dev
*input_dev
;
177 /* No pdata no way forward */
179 dev_err(&client
->dev
, "no pdata\n");
183 if (!i2c_check_functionality(client
->adapter
,
184 I2C_FUNC_SMBUS_READ_WORD_DATA
))
187 ts
= kzalloc(sizeof(struct cy8ctmg110
), GFP_KERNEL
);
188 input_dev
= input_allocate_device();
189 if (!ts
|| !input_dev
) {
195 ts
->input
= input_dev
;
197 snprintf(ts
->phys
, sizeof(ts
->phys
),
198 "%s/input0", dev_name(&client
->dev
));
200 input_dev
->name
= CY8CTMG110_DRIVER_NAME
" Touchscreen";
201 input_dev
->phys
= ts
->phys
;
202 input_dev
->id
.bustype
= BUS_I2C
;
203 input_dev
->dev
.parent
= &client
->dev
;
205 input_dev
->evbit
[0] = BIT_MASK(EV_KEY
) | BIT_MASK(EV_ABS
);
206 input_dev
->keybit
[BIT_WORD(BTN_TOUCH
)] = BIT_MASK(BTN_TOUCH
);
208 input_set_abs_params(input_dev
, ABS_X
,
209 CY8CTMG110_X_MIN
, CY8CTMG110_X_MAX
, 4, 0);
210 input_set_abs_params(input_dev
, ABS_Y
,
211 CY8CTMG110_Y_MIN
, CY8CTMG110_Y_MAX
, 4, 0);
214 err
= gpio_request(ts
->reset_pin
, NULL
);
216 dev_err(&client
->dev
,
217 "Unable to request GPIO pin %d.\n",
223 cy8ctmg110_power(ts
, true);
224 cy8ctmg110_set_sleepmode(ts
, false);
226 err
= gpio_request(ts
->irq_pin
, "touch_irq_key");
228 dev_err(&client
->dev
,
229 "Failed to request GPIO %d, error %d\n",
231 goto err_shutoff_device
;
234 err
= gpio_direction_input(ts
->irq_pin
);
236 dev_err(&client
->dev
,
237 "Failed to configure input direction for GPIO %d, error %d\n",
239 goto err_free_irq_gpio
;
242 client
->irq
= gpio_to_irq(ts
->irq_pin
);
243 if (client
->irq
< 0) {
245 dev_err(&client
->dev
,
246 "Unable to get irq number for GPIO %d, error %d\n",
248 goto err_free_irq_gpio
;
251 err
= request_threaded_irq(client
->irq
, NULL
, cy8ctmg110_irq_thread
,
252 IRQF_TRIGGER_RISING
, "touch_reset_key", ts
);
254 dev_err(&client
->dev
,
255 "irq %d busy? error %d\n", client
->irq
, err
);
256 goto err_free_irq_gpio
;
259 err
= input_register_device(input_dev
);
263 i2c_set_clientdata(client
, ts
);
264 device_init_wakeup(&client
->dev
, 1);
268 free_irq(client
->irq
, ts
);
270 gpio_free(ts
->irq_pin
);
272 cy8ctmg110_set_sleepmode(ts
, true);
273 cy8ctmg110_power(ts
, false);
275 gpio_free(ts
->reset_pin
);
277 input_free_device(input_dev
);
283 static int cy8ctmg110_suspend(struct device
*dev
)
285 struct i2c_client
*client
= to_i2c_client(dev
);
286 struct cy8ctmg110
*ts
= i2c_get_clientdata(client
);
288 if (device_may_wakeup(&client
->dev
))
289 enable_irq_wake(client
->irq
);
291 cy8ctmg110_set_sleepmode(ts
, true);
292 cy8ctmg110_power(ts
, false);
297 static int cy8ctmg110_resume(struct device
*dev
)
299 struct i2c_client
*client
= to_i2c_client(dev
);
300 struct cy8ctmg110
*ts
= i2c_get_clientdata(client
);
302 if (device_may_wakeup(&client
->dev
))
303 disable_irq_wake(client
->irq
);
305 cy8ctmg110_power(ts
, true);
306 cy8ctmg110_set_sleepmode(ts
, false);
311 static SIMPLE_DEV_PM_OPS(cy8ctmg110_pm
, cy8ctmg110_suspend
, cy8ctmg110_resume
);
314 static int __devexit
cy8ctmg110_remove(struct i2c_client
*client
)
316 struct cy8ctmg110
*ts
= i2c_get_clientdata(client
);
318 cy8ctmg110_set_sleepmode(ts
, true);
319 cy8ctmg110_power(ts
, false);
321 free_irq(client
->irq
, ts
);
322 input_unregister_device(ts
->input
);
323 gpio_free(ts
->irq_pin
);
325 gpio_free(ts
->reset_pin
);
331 static struct i2c_device_id cy8ctmg110_idtable
[] = {
332 { CY8CTMG110_DRIVER_NAME
, 1 },
336 MODULE_DEVICE_TABLE(i2c
, cy8ctmg110_idtable
);
338 static struct i2c_driver cy8ctmg110_driver
= {
340 .owner
= THIS_MODULE
,
341 .name
= CY8CTMG110_DRIVER_NAME
,
343 .pm
= &cy8ctmg110_pm
,
346 .id_table
= cy8ctmg110_idtable
,
347 .probe
= cy8ctmg110_probe
,
348 .remove
= __devexit_p(cy8ctmg110_remove
),
351 static int __init
cy8ctmg110_init(void)
353 return i2c_add_driver(&cy8ctmg110_driver
);
356 static void __exit
cy8ctmg110_exit(void)
358 i2c_del_driver(&cy8ctmg110_driver
);
361 module_init(cy8ctmg110_init
);
362 module_exit(cy8ctmg110_exit
);
364 MODULE_AUTHOR("Samuli Konttila <samuli.konttila@aavamobile.com>");
365 MODULE_DESCRIPTION("cy8ctmg110 TouchScreen Driver");
366 MODULE_LICENSE("GPL v2");