Linux Audio

Check our new training course

Loading...
v3.1
  1/*
  2 * ST1232 Touchscreen Controller Driver
  3 *
  4 * Copyright (C) 2010 Renesas Solutions Corp.
  5 *	Tony SIM <chinyeow.sim.xt@renesas.com>
  6 *
  7 * Using code from:
  8 *  - android.git.kernel.org: projects/kernel/common.git: synaptics_i2c_rmi.c
  9 *	Copyright (C) 2007 Google, Inc.
 10 *
 11 * This software is licensed under the terms of the GNU General Public
 12 * License version 2, as published by the Free Software Foundation, and
 13 * may be copied, distributed, and modified under those terms.
 14 *
 15 * This program is distributed in the hope that it will be useful,
 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 18 * GNU General Public License for more details.
 19 */
 20
 21#include <linux/delay.h>
 22#include <linux/i2c.h>
 23#include <linux/input.h>
 24#include <linux/interrupt.h>
 25#include <linux/module.h>
 
 26#include <linux/slab.h>
 27#include <linux/types.h>
 28
 29#define ST1232_TS_NAME	"st1232-ts"
 30
 31#define MIN_X		0x00
 32#define MIN_Y		0x00
 33#define MAX_X		0x31f	/* (800 - 1) */
 34#define MAX_Y		0x1df	/* (480 - 1) */
 35#define MAX_AREA	0xff
 36#define MAX_FINGERS	2
 37
 38struct st1232_ts_finger {
 39	u16 x;
 40	u16 y;
 41	u8 t;
 42	bool is_valid;
 43};
 44
 45struct st1232_ts_data {
 46	struct i2c_client *client;
 47	struct input_dev *input_dev;
 48	struct st1232_ts_finger finger[MAX_FINGERS];
 
 49};
 50
 51static int st1232_ts_read_data(struct st1232_ts_data *ts)
 52{
 53	struct st1232_ts_finger *finger = ts->finger;
 54	struct i2c_client *client = ts->client;
 55	struct i2c_msg msg[2];
 56	int error;
 57	u8 start_reg;
 58	u8 buf[10];
 59
 60	/* read touchscreen data from ST1232 */
 61	msg[0].addr = client->addr;
 62	msg[0].flags = 0;
 63	msg[0].len = 1;
 64	msg[0].buf = &start_reg;
 65	start_reg = 0x10;
 66
 67	msg[1].addr = ts->client->addr;
 68	msg[1].flags = I2C_M_RD;
 69	msg[1].len = sizeof(buf);
 70	msg[1].buf = buf;
 71
 72	error = i2c_transfer(client->adapter, msg, 2);
 73	if (error < 0)
 74		return error;
 75
 76	/* get "valid" bits */
 77	finger[0].is_valid = buf[2] >> 7;
 78	finger[1].is_valid = buf[5] >> 7;
 79
 80	/* get xy coordinate */
 81	if (finger[0].is_valid) {
 82		finger[0].x = ((buf[2] & 0x0070) << 4) | buf[3];
 83		finger[0].y = ((buf[2] & 0x0007) << 8) | buf[4];
 84		finger[0].t = buf[8];
 85	}
 86
 87	if (finger[1].is_valid) {
 88		finger[1].x = ((buf[5] & 0x0070) << 4) | buf[6];
 89		finger[1].y = ((buf[5] & 0x0007) << 8) | buf[7];
 90		finger[1].t = buf[9];
 91	}
 92
 93	return 0;
 94}
 95
 96static irqreturn_t st1232_ts_irq_handler(int irq, void *dev_id)
 97{
 98	struct st1232_ts_data *ts = dev_id;
 99	struct st1232_ts_finger *finger = ts->finger;
100	struct input_dev *input_dev = ts->input_dev;
101	int count = 0;
102	int i, ret;
103
104	ret = st1232_ts_read_data(ts);
105	if (ret < 0)
106		goto end;
107
108	/* multi touch protocol */
109	for (i = 0; i < MAX_FINGERS; i++) {
110		if (!finger[i].is_valid)
111			continue;
112
113		input_report_abs(input_dev, ABS_MT_TOUCH_MAJOR, finger[i].t);
114		input_report_abs(input_dev, ABS_MT_POSITION_X, finger[i].x);
115		input_report_abs(input_dev, ABS_MT_POSITION_Y, finger[i].y);
116		input_mt_sync(input_dev);
117		count++;
118	}
119
120	/* SYN_MT_REPORT only if no contact */
121	if (!count)
122		input_mt_sync(input_dev);
 
 
 
 
 
 
 
 
 
123
124	/* SYN_REPORT */
125	input_sync(input_dev);
126
127end:
128	return IRQ_HANDLED;
129}
130
131static int __devinit st1232_ts_probe(struct i2c_client *client,
132					const struct i2c_device_id *id)
133{
134	struct st1232_ts_data *ts;
135	struct input_dev *input_dev;
136	int error;
137
138	if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) {
139		dev_err(&client->dev, "need I2C_FUNC_I2C\n");
140		return -EIO;
141	}
142
143	if (!client->irq) {
144		dev_err(&client->dev, "no IRQ?\n");
145		return -EINVAL;
146	}
147
148
149	ts = kzalloc(sizeof(struct st1232_ts_data), GFP_KERNEL);
150	input_dev = input_allocate_device();
151	if (!ts || !input_dev) {
152		error = -ENOMEM;
153		goto err_free_mem;
154	}
155
156	ts->client = client;
157	ts->input_dev = input_dev;
158
159	input_dev->name = "st1232-touchscreen";
160	input_dev->id.bustype = BUS_I2C;
161	input_dev->dev.parent = &client->dev;
162
163	__set_bit(EV_SYN, input_dev->evbit);
164	__set_bit(EV_KEY, input_dev->evbit);
165	__set_bit(EV_ABS, input_dev->evbit);
166
167	input_set_abs_params(input_dev, ABS_MT_TOUCH_MAJOR, 0, MAX_AREA, 0, 0);
168	input_set_abs_params(input_dev, ABS_MT_POSITION_X, MIN_X, MAX_X, 0, 0);
169	input_set_abs_params(input_dev, ABS_MT_POSITION_Y, MIN_Y, MAX_Y, 0, 0);
170
171	error = request_threaded_irq(client->irq, NULL, st1232_ts_irq_handler,
172				     IRQF_ONESHOT, client->name, ts);
173	if (error) {
174		dev_err(&client->dev, "Failed to register interrupt\n");
175		goto err_free_mem;
176	}
177
178	error = input_register_device(ts->input_dev);
179	if (error) {
180		dev_err(&client->dev, "Unable to register %s input device\n",
181			input_dev->name);
182		goto err_free_irq;
183	}
184
185	i2c_set_clientdata(client, ts);
186	device_init_wakeup(&client->dev, 1);
187
188	return 0;
189
190err_free_irq:
191	free_irq(client->irq, ts);
192err_free_mem:
193	input_free_device(input_dev);
194	kfree(ts);
195	return error;
196}
197
198static int __devexit st1232_ts_remove(struct i2c_client *client)
199{
200	struct st1232_ts_data *ts = i2c_get_clientdata(client);
201
202	device_init_wakeup(&client->dev, 0);
203	free_irq(client->irq, ts);
204	input_unregister_device(ts->input_dev);
205	kfree(ts);
206
207	return 0;
208}
209
210#ifdef CONFIG_PM
211static int st1232_ts_suspend(struct device *dev)
212{
213	struct i2c_client *client = to_i2c_client(dev);
214
215	if (device_may_wakeup(&client->dev))
216		enable_irq_wake(client->irq);
217	else
218		disable_irq(client->irq);
219
220	return 0;
221}
222
223static int st1232_ts_resume(struct device *dev)
224{
225	struct i2c_client *client = to_i2c_client(dev);
226
227	if (device_may_wakeup(&client->dev))
228		disable_irq_wake(client->irq);
229	else
230		enable_irq(client->irq);
231
232	return 0;
233}
234
235static const struct dev_pm_ops st1232_ts_pm_ops = {
236	.suspend	= st1232_ts_suspend,
237	.resume		= st1232_ts_resume,
238};
239#endif
240
 
 
 
241static const struct i2c_device_id st1232_ts_id[] = {
242	{ ST1232_TS_NAME, 0 },
243	{ }
244};
245MODULE_DEVICE_TABLE(i2c, st1232_ts_id);
246
 
 
 
 
 
 
 
 
247static struct i2c_driver st1232_ts_driver = {
248	.probe		= st1232_ts_probe,
249	.remove		= __devexit_p(st1232_ts_remove),
250	.id_table	= st1232_ts_id,
251	.driver = {
252		.name	= ST1232_TS_NAME,
253		.owner	= THIS_MODULE,
254#ifdef CONFIG_PM
255		.pm	= &st1232_ts_pm_ops,
256#endif
257	},
258};
259
260static int __init st1232_ts_init(void)
261{
262	return i2c_add_driver(&st1232_ts_driver);
263}
264module_init(st1232_ts_init);
265
266static void __exit st1232_ts_exit(void)
267{
268	i2c_del_driver(&st1232_ts_driver);
269}
270module_exit(st1232_ts_exit);
271
272MODULE_AUTHOR("Tony SIM <chinyeow.sim.xt@renesas.com>");
273MODULE_DESCRIPTION("SITRONIX ST1232 Touchscreen Controller Driver");
274MODULE_LICENSE("GPL");
v3.5.6
  1/*
  2 * ST1232 Touchscreen Controller Driver
  3 *
  4 * Copyright (C) 2010 Renesas Solutions Corp.
  5 *	Tony SIM <chinyeow.sim.xt@renesas.com>
  6 *
  7 * Using code from:
  8 *  - android.git.kernel.org: projects/kernel/common.git: synaptics_i2c_rmi.c
  9 *	Copyright (C) 2007 Google, Inc.
 10 *
 11 * This software is licensed under the terms of the GNU General Public
 12 * License version 2, as published by the Free Software Foundation, and
 13 * may be copied, distributed, and modified under those terms.
 14 *
 15 * This program is distributed in the hope that it will be useful,
 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 18 * GNU General Public License for more details.
 19 */
 20
 21#include <linux/delay.h>
 22#include <linux/i2c.h>
 23#include <linux/input.h>
 24#include <linux/interrupt.h>
 25#include <linux/module.h>
 26#include <linux/pm_qos.h>
 27#include <linux/slab.h>
 28#include <linux/types.h>
 29
 30#define ST1232_TS_NAME	"st1232-ts"
 31
 32#define MIN_X		0x00
 33#define MIN_Y		0x00
 34#define MAX_X		0x31f	/* (800 - 1) */
 35#define MAX_Y		0x1df	/* (480 - 1) */
 36#define MAX_AREA	0xff
 37#define MAX_FINGERS	2
 38
 39struct st1232_ts_finger {
 40	u16 x;
 41	u16 y;
 42	u8 t;
 43	bool is_valid;
 44};
 45
 46struct st1232_ts_data {
 47	struct i2c_client *client;
 48	struct input_dev *input_dev;
 49	struct st1232_ts_finger finger[MAX_FINGERS];
 50	struct dev_pm_qos_request low_latency_req;
 51};
 52
 53static int st1232_ts_read_data(struct st1232_ts_data *ts)
 54{
 55	struct st1232_ts_finger *finger = ts->finger;
 56	struct i2c_client *client = ts->client;
 57	struct i2c_msg msg[2];
 58	int error;
 59	u8 start_reg;
 60	u8 buf[10];
 61
 62	/* read touchscreen data from ST1232 */
 63	msg[0].addr = client->addr;
 64	msg[0].flags = 0;
 65	msg[0].len = 1;
 66	msg[0].buf = &start_reg;
 67	start_reg = 0x10;
 68
 69	msg[1].addr = ts->client->addr;
 70	msg[1].flags = I2C_M_RD;
 71	msg[1].len = sizeof(buf);
 72	msg[1].buf = buf;
 73
 74	error = i2c_transfer(client->adapter, msg, 2);
 75	if (error < 0)
 76		return error;
 77
 78	/* get "valid" bits */
 79	finger[0].is_valid = buf[2] >> 7;
 80	finger[1].is_valid = buf[5] >> 7;
 81
 82	/* get xy coordinate */
 83	if (finger[0].is_valid) {
 84		finger[0].x = ((buf[2] & 0x0070) << 4) | buf[3];
 85		finger[0].y = ((buf[2] & 0x0007) << 8) | buf[4];
 86		finger[0].t = buf[8];
 87	}
 88
 89	if (finger[1].is_valid) {
 90		finger[1].x = ((buf[5] & 0x0070) << 4) | buf[6];
 91		finger[1].y = ((buf[5] & 0x0007) << 8) | buf[7];
 92		finger[1].t = buf[9];
 93	}
 94
 95	return 0;
 96}
 97
 98static irqreturn_t st1232_ts_irq_handler(int irq, void *dev_id)
 99{
100	struct st1232_ts_data *ts = dev_id;
101	struct st1232_ts_finger *finger = ts->finger;
102	struct input_dev *input_dev = ts->input_dev;
103	int count = 0;
104	int i, ret;
105
106	ret = st1232_ts_read_data(ts);
107	if (ret < 0)
108		goto end;
109
110	/* multi touch protocol */
111	for (i = 0; i < MAX_FINGERS; i++) {
112		if (!finger[i].is_valid)
113			continue;
114
115		input_report_abs(input_dev, ABS_MT_TOUCH_MAJOR, finger[i].t);
116		input_report_abs(input_dev, ABS_MT_POSITION_X, finger[i].x);
117		input_report_abs(input_dev, ABS_MT_POSITION_Y, finger[i].y);
118		input_mt_sync(input_dev);
119		count++;
120	}
121
122	/* SYN_MT_REPORT only if no contact */
123	if (!count) {
124		input_mt_sync(input_dev);
125		if (ts->low_latency_req.dev) {
126			dev_pm_qos_remove_request(&ts->low_latency_req);
127			ts->low_latency_req.dev = NULL;
128		}
129	} else if (!ts->low_latency_req.dev) {
130		/* First contact, request 100 us latency. */
131		dev_pm_qos_add_ancestor_request(&ts->client->dev,
132						&ts->low_latency_req, 100);
133	}
134
135	/* SYN_REPORT */
136	input_sync(input_dev);
137
138end:
139	return IRQ_HANDLED;
140}
141
142static int __devinit st1232_ts_probe(struct i2c_client *client,
143					const struct i2c_device_id *id)
144{
145	struct st1232_ts_data *ts;
146	struct input_dev *input_dev;
147	int error;
148
149	if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) {
150		dev_err(&client->dev, "need I2C_FUNC_I2C\n");
151		return -EIO;
152	}
153
154	if (!client->irq) {
155		dev_err(&client->dev, "no IRQ?\n");
156		return -EINVAL;
157	}
158
159
160	ts = kzalloc(sizeof(struct st1232_ts_data), GFP_KERNEL);
161	input_dev = input_allocate_device();
162	if (!ts || !input_dev) {
163		error = -ENOMEM;
164		goto err_free_mem;
165	}
166
167	ts->client = client;
168	ts->input_dev = input_dev;
169
170	input_dev->name = "st1232-touchscreen";
171	input_dev->id.bustype = BUS_I2C;
172	input_dev->dev.parent = &client->dev;
173
174	__set_bit(EV_SYN, input_dev->evbit);
175	__set_bit(EV_KEY, input_dev->evbit);
176	__set_bit(EV_ABS, input_dev->evbit);
177
178	input_set_abs_params(input_dev, ABS_MT_TOUCH_MAJOR, 0, MAX_AREA, 0, 0);
179	input_set_abs_params(input_dev, ABS_MT_POSITION_X, MIN_X, MAX_X, 0, 0);
180	input_set_abs_params(input_dev, ABS_MT_POSITION_Y, MIN_Y, MAX_Y, 0, 0);
181
182	error = request_threaded_irq(client->irq, NULL, st1232_ts_irq_handler,
183				     IRQF_ONESHOT, client->name, ts);
184	if (error) {
185		dev_err(&client->dev, "Failed to register interrupt\n");
186		goto err_free_mem;
187	}
188
189	error = input_register_device(ts->input_dev);
190	if (error) {
191		dev_err(&client->dev, "Unable to register %s input device\n",
192			input_dev->name);
193		goto err_free_irq;
194	}
195
196	i2c_set_clientdata(client, ts);
197	device_init_wakeup(&client->dev, 1);
198
199	return 0;
200
201err_free_irq:
202	free_irq(client->irq, ts);
203err_free_mem:
204	input_free_device(input_dev);
205	kfree(ts);
206	return error;
207}
208
209static int __devexit st1232_ts_remove(struct i2c_client *client)
210{
211	struct st1232_ts_data *ts = i2c_get_clientdata(client);
212
213	device_init_wakeup(&client->dev, 0);
214	free_irq(client->irq, ts);
215	input_unregister_device(ts->input_dev);
216	kfree(ts);
217
218	return 0;
219}
220
221#ifdef CONFIG_PM_SLEEP
222static int st1232_ts_suspend(struct device *dev)
223{
224	struct i2c_client *client = to_i2c_client(dev);
225
226	if (device_may_wakeup(&client->dev))
227		enable_irq_wake(client->irq);
228	else
229		disable_irq(client->irq);
230
231	return 0;
232}
233
234static int st1232_ts_resume(struct device *dev)
235{
236	struct i2c_client *client = to_i2c_client(dev);
237
238	if (device_may_wakeup(&client->dev))
239		disable_irq_wake(client->irq);
240	else
241		enable_irq(client->irq);
242
243	return 0;
244}
245
 
 
 
 
246#endif
247
248static SIMPLE_DEV_PM_OPS(st1232_ts_pm_ops,
249			 st1232_ts_suspend, st1232_ts_resume);
250
251static const struct i2c_device_id st1232_ts_id[] = {
252	{ ST1232_TS_NAME, 0 },
253	{ }
254};
255MODULE_DEVICE_TABLE(i2c, st1232_ts_id);
256
257#ifdef CONFIG_OF
258static const struct of_device_id st1232_ts_dt_ids[] __devinitconst = {
259	{ .compatible = "sitronix,st1232", },
260	{ }
261};
262MODULE_DEVICE_TABLE(of, st1232_ts_dt_ids);
263#endif
264
265static struct i2c_driver st1232_ts_driver = {
266	.probe		= st1232_ts_probe,
267	.remove		= __devexit_p(st1232_ts_remove),
268	.id_table	= st1232_ts_id,
269	.driver = {
270		.name	= ST1232_TS_NAME,
271		.owner	= THIS_MODULE,
272		.of_match_table = of_match_ptr(st1232_ts_dt_ids),
273		.pm	= &st1232_ts_pm_ops,
 
274	},
275};
276
277module_i2c_driver(st1232_ts_driver);
 
 
 
 
 
 
 
 
 
 
278
279MODULE_AUTHOR("Tony SIM <chinyeow.sim.xt@renesas.com>");
280MODULE_DESCRIPTION("SITRONIX ST1232 Touchscreen Controller Driver");
281MODULE_LICENSE("GPL");