1 // SPDX-License-Identifier: GPL-2.0-only
3 * drivers/input/touchscreen/tsc2007.c
5 * Copyright (c) 2008 MtekVision Co., Ltd.
6 * Kwangwoo Lee <kwlee@mtekvision.com>
10 * Copyright (c) 2005 David Brownell
11 * Copyright (c) 2006 Nokia Corporation
13 * Copyright (C) 2004-2005 Richard Purdie
14 * - omap_ts.[hc], ads7846.h, ts_osk.c
15 * Copyright (C) 2002 MontaVista Software
16 * Copyright (C) 2004 Texas Instruments
17 * Copyright (C) 2005 Dirk Behme
20 #include <linux/module.h>
21 #include <linux/slab.h>
22 #include <linux/gpio/consumer.h>
23 #include <linux/input.h>
24 #include <linux/interrupt.h>
25 #include <linux/i2c.h>
26 #include <linux/mod_devicetable.h>
27 #include <linux/property.h>
28 #include <linux/platform_data/tsc2007.h>
31 int tsc2007_xfer(struct tsc2007
*tsc
, u8 cmd
)
36 data
= i2c_smbus_read_word_data(tsc
->client
, cmd
);
38 dev_err(&tsc
->client
->dev
, "i2c io error: %d\n", data
);
42 /* The protocol and raw data format from i2c interface:
43 * S Addr Wr [A] Comm [A] S Addr Rd [A] [DataLow] A [DataHigh] NA P
44 * Where DataLow has [D11-D4], DataHigh has [D3-D0 << 4 | Dummy 4bit].
46 val
= swab16(data
) >> 4;
48 dev_dbg(&tsc
->client
->dev
, "data: 0x%x, val: 0x%x\n", data
, val
);
53 static void tsc2007_read_values(struct tsc2007
*tsc
, struct ts_event
*tc
)
55 /* y- still on; turn on only y+ (and ADC) */
56 tc
->y
= tsc2007_xfer(tsc
, READ_Y
);
58 /* turn y- off, x+ on, then leave in lowpower */
59 tc
->x
= tsc2007_xfer(tsc
, READ_X
);
61 /* turn y+ off, x- on; we'll use formula #1 */
62 tc
->z1
= tsc2007_xfer(tsc
, READ_Z1
);
63 tc
->z2
= tsc2007_xfer(tsc
, READ_Z2
);
65 /* Prepare for next touch reading - power down ADC, enable PENIRQ */
66 tsc2007_xfer(tsc
, PWRDOWN
);
69 u32
tsc2007_calculate_resistance(struct tsc2007
*tsc
, struct ts_event
*tc
)
74 if (tc
->x
== MAX_12BIT
)
77 if (likely(tc
->x
&& tc
->z1
)) {
78 /* compute touch resistance using equation #1 */
81 rt
*= tsc
->x_plate_ohms
;
83 rt
= (rt
+ 2047) >> 12;
89 bool tsc2007_is_pen_down(struct tsc2007
*ts
)
92 * NOTE: We can't rely on the pressure to determine the pen down
93 * state, even though this controller has a pressure sensor.
94 * The pressure value can fluctuate for quite a while after
95 * lifting the pen and in some cases may not even settle at the
98 * The only safe way to check for the pen up condition is in the
99 * work function by reading the pen signal state (it's a GPIO
100 * and IRQ). Unfortunately such callback is not always available,
101 * in that case we assume that the pen is down and expect caller
102 * to fall back on the pressure reading.
105 if (!ts
->get_pendown_state
)
108 return ts
->get_pendown_state(&ts
->client
->dev
);
111 static irqreturn_t
tsc2007_soft_irq(int irq
, void *handle
)
113 struct tsc2007
*ts
= handle
;
114 struct input_dev
*input
= ts
->input
;
118 while (!ts
->stopped
&& tsc2007_is_pen_down(ts
)) {
120 /* pen is down, continue with the measurement */
122 mutex_lock(&ts
->mlock
);
123 tsc2007_read_values(ts
, &tc
);
124 mutex_unlock(&ts
->mlock
);
126 rt
= tsc2007_calculate_resistance(ts
, &tc
);
128 if (!rt
&& !ts
->get_pendown_state
) {
130 * If pressure reported is 0 and we don't have
131 * callback to check pendown state, we have to
132 * assume that pen was lifted up.
137 if (rt
<= ts
->max_rt
) {
138 dev_dbg(&ts
->client
->dev
,
139 "DOWN point(%4d,%4d), resistance (%4u)\n",
142 rt
= ts
->max_rt
- rt
;
144 input_report_key(input
, BTN_TOUCH
, 1);
145 input_report_abs(input
, ABS_X
, tc
.x
);
146 input_report_abs(input
, ABS_Y
, tc
.y
);
147 input_report_abs(input
, ABS_PRESSURE
, rt
);
153 * Sample found inconsistent by debouncing or pressure is
154 * beyond the maximum. Don't report it to user space,
155 * repeat at least once more the measurement.
157 dev_dbg(&ts
->client
->dev
, "ignored pressure %d\n", rt
);
160 wait_event_timeout(ts
->wait
, ts
->stopped
, ts
->poll_period
);
163 dev_dbg(&ts
->client
->dev
, "UP\n");
165 input_report_key(input
, BTN_TOUCH
, 0);
166 input_report_abs(input
, ABS_PRESSURE
, 0);
169 if (ts
->clear_penirq
)
175 static void tsc2007_stop(struct tsc2007
*ts
)
181 disable_irq(ts
->irq
);
184 static int tsc2007_open(struct input_dev
*input_dev
)
186 struct tsc2007
*ts
= input_get_drvdata(input_dev
);
194 /* Prepare for touch readings - power down ADC and enable PENIRQ */
195 err
= tsc2007_xfer(ts
, PWRDOWN
);
204 static void tsc2007_close(struct input_dev
*input_dev
)
206 struct tsc2007
*ts
= input_get_drvdata(input_dev
);
211 static int tsc2007_get_pendown_state_gpio(struct device
*dev
)
213 struct i2c_client
*client
= to_i2c_client(dev
);
214 struct tsc2007
*ts
= i2c_get_clientdata(client
);
216 return gpiod_get_value_cansleep(ts
->gpiod
);
219 static int tsc2007_probe_properties(struct device
*dev
, struct tsc2007
*ts
)
224 if (!device_property_read_u32(dev
, "ti,max-rt", &val32
))
227 ts
->max_rt
= MAX_12BIT
;
229 if (!device_property_read_u32(dev
, "ti,fuzzx", &val32
))
232 if (!device_property_read_u32(dev
, "ti,fuzzy", &val32
))
235 if (!device_property_read_u32(dev
, "ti,fuzzz", &val32
))
238 if (!device_property_read_u64(dev
, "ti,poll-period", &val64
))
239 ts
->poll_period
= msecs_to_jiffies(val64
);
241 ts
->poll_period
= msecs_to_jiffies(1);
243 if (!device_property_read_u32(dev
, "ti,x-plate-ohms", &val32
)) {
244 ts
->x_plate_ohms
= val32
;
246 dev_err(dev
, "Missing ti,x-plate-ohms device property\n");
250 ts
->gpiod
= devm_gpiod_get_optional(dev
, NULL
, GPIOD_IN
);
251 if (IS_ERR(ts
->gpiod
))
252 return PTR_ERR(ts
->gpiod
);
255 ts
->get_pendown_state
= tsc2007_get_pendown_state_gpio
;
257 dev_warn(dev
, "Pen down GPIO is not specified in properties\n");
262 static int tsc2007_probe_pdev(struct device
*dev
, struct tsc2007
*ts
,
263 const struct tsc2007_platform_data
*pdata
,
264 const struct i2c_device_id
*id
)
266 ts
->model
= pdata
->model
;
267 ts
->x_plate_ohms
= pdata
->x_plate_ohms
;
268 ts
->max_rt
= pdata
->max_rt
? : MAX_12BIT
;
269 ts
->poll_period
= msecs_to_jiffies(pdata
->poll_period
? : 1);
270 ts
->get_pendown_state
= pdata
->get_pendown_state
;
271 ts
->clear_penirq
= pdata
->clear_penirq
;
272 ts
->fuzzx
= pdata
->fuzzx
;
273 ts
->fuzzy
= pdata
->fuzzy
;
274 ts
->fuzzz
= pdata
->fuzzz
;
276 if (pdata
->x_plate_ohms
== 0) {
277 dev_err(dev
, "x_plate_ohms is not set up in platform data\n");
284 static void tsc2007_call_exit_platform_hw(void *data
)
286 struct device
*dev
= data
;
287 const struct tsc2007_platform_data
*pdata
= dev_get_platdata(dev
);
289 pdata
->exit_platform_hw();
292 static int tsc2007_probe(struct i2c_client
*client
)
294 const struct i2c_device_id
*id
= i2c_client_get_device_id(client
);
295 const struct tsc2007_platform_data
*pdata
=
296 dev_get_platdata(&client
->dev
);
298 struct input_dev
*input_dev
;
301 if (!i2c_check_functionality(client
->adapter
,
302 I2C_FUNC_SMBUS_READ_WORD_DATA
))
305 ts
= devm_kzalloc(&client
->dev
, sizeof(struct tsc2007
), GFP_KERNEL
);
310 err
= tsc2007_probe_pdev(&client
->dev
, ts
, pdata
, id
);
312 err
= tsc2007_probe_properties(&client
->dev
, ts
);
316 input_dev
= devm_input_allocate_device(&client
->dev
);
320 i2c_set_clientdata(client
, ts
);
323 ts
->irq
= client
->irq
;
324 ts
->input
= input_dev
;
326 init_waitqueue_head(&ts
->wait
);
327 mutex_init(&ts
->mlock
);
329 snprintf(ts
->phys
, sizeof(ts
->phys
),
330 "%s/input0", dev_name(&client
->dev
));
332 input_dev
->name
= "TSC2007 Touchscreen";
333 input_dev
->phys
= ts
->phys
;
334 input_dev
->id
.bustype
= BUS_I2C
;
336 input_dev
->open
= tsc2007_open
;
337 input_dev
->close
= tsc2007_close
;
339 input_set_drvdata(input_dev
, ts
);
341 input_set_capability(input_dev
, EV_KEY
, BTN_TOUCH
);
343 input_set_abs_params(input_dev
, ABS_X
, 0, MAX_12BIT
, ts
->fuzzx
, 0);
344 input_set_abs_params(input_dev
, ABS_Y
, 0, MAX_12BIT
, ts
->fuzzy
, 0);
345 input_set_abs_params(input_dev
, ABS_PRESSURE
, 0, MAX_12BIT
,
349 if (pdata
->exit_platform_hw
) {
350 err
= devm_add_action(&client
->dev
,
351 tsc2007_call_exit_platform_hw
,
354 dev_err(&client
->dev
,
355 "Failed to register exit_platform_hw action, %d\n",
361 if (pdata
->init_platform_hw
)
362 pdata
->init_platform_hw();
365 err
= devm_request_threaded_irq(&client
->dev
, ts
->irq
,
366 NULL
, tsc2007_soft_irq
,
368 client
->dev
.driver
->name
, ts
);
370 dev_err(&client
->dev
, "Failed to request irq %d: %d\n",
377 /* power down the chip (TSC2007_SETUP does not ACK on I2C) */
378 err
= tsc2007_xfer(ts
, PWRDOWN
);
380 dev_err(&client
->dev
,
381 "Failed to setup chip: %d\n", err
);
382 return err
; /* chip does not respond */
385 err
= input_register_device(input_dev
);
387 dev_err(&client
->dev
,
388 "Failed to register input device: %d\n", err
);
392 err
= tsc2007_iio_configure(ts
);
394 dev_err(&client
->dev
,
395 "Failed to register with IIO: %d\n", err
);
402 static const struct i2c_device_id tsc2007_idtable
[] = {
407 MODULE_DEVICE_TABLE(i2c
, tsc2007_idtable
);
409 static const struct of_device_id tsc2007_of_match
[] = {
410 { .compatible
= "ti,tsc2007" },
413 MODULE_DEVICE_TABLE(of
, tsc2007_of_match
);
415 static struct i2c_driver tsc2007_driver
= {
418 .of_match_table
= tsc2007_of_match
,
420 .id_table
= tsc2007_idtable
,
421 .probe
= tsc2007_probe
,
424 module_i2c_driver(tsc2007_driver
);
426 MODULE_AUTHOR("Kwangwoo Lee <kwlee@mtekvision.com>");
427 MODULE_DESCRIPTION("TSC2007 TouchScreen Driver");
428 MODULE_LICENSE("GPL");