1 // SPDX-License-Identifier: GPL-2.0-only
3 * Elo serial touchscreen driver
5 * Copyright (c) 2004 Vojtech Pavlik
10 * This driver can handle serial Elo touchscreens using either the Elo standard
11 * 'E271-2210' 10-byte protocol, Elo legacy 'E281A-4002' 6-byte protocol, Elo
12 * legacy 'E271-140' 4-byte protocol and Elo legacy 'E261-280' 3-byte protocol.
15 #include <linux/errno.h>
16 #include <linux/kernel.h>
17 #include <linux/module.h>
18 #include <linux/slab.h>
19 #include <linux/input.h>
20 #include <linux/serio.h>
21 #include <linux/ctype.h>
23 #define DRIVER_DESC "Elo serial touchscreen driver"
26 MODULE_DESCRIPTION(DRIVER_DESC);
27 MODULE_LICENSE("GPL");
30 * Definitions & global arrays.
33 #define ELO_MAX_LENGTH 10
35 #define ELO10_PACKET_LEN 8
36 #define ELO10_TOUCH 0x03
37 #define ELO10_PRESSURE 0x80
39 #define ELO10_LEAD_BYTE 'U'
41 #define ELO10_ID_CMD 'i'
43 #define ELO10_TOUCH_PACKET 'T'
44 #define ELO10_ACK_PACKET 'A'
45 #define ELI10_ID_PACKET 'I'
48 * Per-touchscreen data.
52 struct input_dev *dev;
54 struct mutex cmd_mutex;
55 struct completion cmd_done;
58 unsigned char expected_packet;
60 unsigned char data[ELO_MAX_LENGTH];
61 unsigned char response[ELO10_PACKET_LEN];
65 static void elo_process_data_10(struct elo *elo, unsigned char data)
67 struct input_dev *dev = elo->dev;
69 elo->data[elo->idx] = data;
74 if (data != ELO10_LEAD_BYTE) {
75 dev_dbg(&elo->serio->dev,
76 "unsynchronized data: 0x%02x\n", data);
83 if (data != elo->csum) {
84 dev_dbg(&elo->serio->dev,
85 "bad checksum: 0x%02x, expected 0x%02x\n",
89 if (elo->data[1] != elo->expected_packet) {
90 if (elo->data[1] != ELO10_TOUCH_PACKET)
91 dev_dbg(&elo->serio->dev,
92 "unexpected packet: 0x%02x\n",
96 if (likely(elo->data[1] == ELO10_TOUCH_PACKET)) {
97 input_report_abs(dev, ABS_X, (elo->data[4] << 8) | elo->data[3]);
98 input_report_abs(dev, ABS_Y, (elo->data[6] << 8) | elo->data[5]);
99 if (elo->data[2] & ELO10_PRESSURE)
100 input_report_abs(dev, ABS_PRESSURE,
101 (elo->data[8] << 8) | elo->data[7]);
102 input_report_key(dev, BTN_TOUCH, elo->data[2] & ELO10_TOUCH);
104 } else if (elo->data[1] == ELO10_ACK_PACKET) {
105 if (elo->data[2] == '0')
106 elo->expected_packet = ELO10_TOUCH_PACKET;
107 complete(&elo->cmd_done);
109 memcpy(elo->response, &elo->data[1], ELO10_PACKET_LEN);
110 elo->expected_packet = ELO10_ACK_PACKET;
117 static void elo_process_data_6(struct elo *elo, unsigned char data)
119 struct input_dev *dev = elo->dev;
121 elo->data[elo->idx] = data;
123 switch (elo->idx++) {
126 if ((data & 0xc0) != 0xc0)
131 if ((data & 0xc0) != 0x80)
136 if ((data & 0xc0) != 0x40)
146 input_report_abs(dev, ABS_X, ((elo->data[0] & 0x3f) << 6) | (elo->data[1] & 0x3f));
147 input_report_abs(dev, ABS_Y, ((elo->data[2] & 0x3f) << 6) | (elo->data[3] & 0x3f));
150 input_report_key(dev, BTN_TOUCH, 1);
165 if ((data & 0xf0) == 0) {
166 input_report_abs(dev, ABS_PRESSURE, elo->data[5]);
167 input_report_key(dev, BTN_TOUCH, !!elo->data[5]);
175 static void elo_process_data_3(struct elo *elo, unsigned char data)
177 struct input_dev *dev = elo->dev;
179 elo->data[elo->idx] = data;
181 switch (elo->idx++) {
184 if ((data & 0x7f) != 0x01)
188 input_report_key(dev, BTN_TOUCH, !(elo->data[1] & 0x80));
189 input_report_abs(dev, ABS_X, elo->data[1]);
190 input_report_abs(dev, ABS_Y, elo->data[2]);
197 static irqreturn_t elo_interrupt(struct serio *serio,
198 unsigned char data, unsigned int flags)
200 struct elo *elo = serio_get_drvdata(serio);
204 elo_process_data_10(elo, data);
209 elo_process_data_6(elo, data);
213 elo_process_data_3(elo, data);
220 static int elo_command_10(struct elo *elo, unsigned char *packet)
224 unsigned char csum = 0xaa + ELO10_LEAD_BYTE;
226 mutex_lock(&elo->cmd_mutex);
228 serio_pause_rx(elo->serio);
229 elo->expected_packet = toupper(packet[0]);
230 init_completion(&elo->cmd_done);
231 serio_continue_rx(elo->serio);
233 if (serio_write(elo->serio, ELO10_LEAD_BYTE))
236 for (i = 0; i < ELO10_PACKET_LEN; i++) {
238 if (serio_write(elo->serio, packet[i]))
242 if (serio_write(elo->serio, csum))
245 wait_for_completion_timeout(&elo->cmd_done, HZ);
247 if (elo->expected_packet == ELO10_TOUCH_PACKET) {
248 /* We are back in reporting mode, the command was ACKed */
249 memcpy(packet, elo->response, ELO10_PACKET_LEN);
254 mutex_unlock(&elo->cmd_mutex);
258 static int elo_setup_10(struct elo *elo)
260 static const char *elo_types[] = { "Accu", "Dura", "Intelli", "Carroll" };
261 struct input_dev *dev = elo->dev;
262 unsigned char packet[ELO10_PACKET_LEN] = { ELO10_ID_CMD };
264 if (elo_command_10(elo, packet))
267 dev->id.version = (packet[5] << 8) | packet[4];
269 input_set_abs_params(dev, ABS_X, 96, 4000, 0, 0);
270 input_set_abs_params(dev, ABS_Y, 96, 4000, 0, 0);
271 if (packet[3] & ELO10_PRESSURE)
272 input_set_abs_params(dev, ABS_PRESSURE, 0, 255, 0, 0);
274 dev_info(&elo->serio->dev,
275 "%sTouch touchscreen, fw: %02x.%02x, features: 0x%02x, controller: 0x%02x\n",
276 elo_types[(packet[1] -'0') & 0x03],
277 packet[5], packet[4], packet[3], packet[7]);
283 * elo_disconnect() is the opposite of elo_connect()
286 static void elo_disconnect(struct serio *serio)
288 struct elo *elo = serio_get_drvdata(serio);
290 input_get_device(elo->dev);
291 input_unregister_device(elo->dev);
293 serio_set_drvdata(serio, NULL);
294 input_put_device(elo->dev);
299 * elo_connect() is the routine that is called when someone adds a
300 * new serio device that supports Gunze protocol and registers it as
304 static int elo_connect(struct serio *serio, struct serio_driver *drv)
307 struct input_dev *input_dev;
310 elo = kzalloc(sizeof(struct elo), GFP_KERNEL);
311 input_dev = input_allocate_device();
312 if (!elo || !input_dev) {
318 elo->id = serio->id.id;
319 elo->dev = input_dev;
320 elo->expected_packet = ELO10_TOUCH_PACKET;
321 mutex_init(&elo->cmd_mutex);
322 init_completion(&elo->cmd_done);
323 snprintf(elo->phys, sizeof(elo->phys), "%s/input0", serio->phys);
325 input_dev->name = "Elo Serial TouchScreen";
326 input_dev->phys = elo->phys;
327 input_dev->id.bustype = BUS_RS232;
328 input_dev->id.vendor = SERIO_ELO;
329 input_dev->id.product = elo->id;
330 input_dev->id.version = 0x0100;
331 input_dev->dev.parent = &serio->dev;
333 input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
334 input_dev->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH);
336 serio_set_drvdata(serio, elo);
337 err = serio_open(serio, drv);
343 case 0: /* 10-byte protocol */
344 if (elo_setup_10(elo)) {
351 case 1: /* 6-byte protocol */
352 input_set_abs_params(input_dev, ABS_PRESSURE, 0, 15, 0, 0);
355 case 2: /* 4-byte protocol */
356 input_set_abs_params(input_dev, ABS_X, 96, 4000, 0, 0);
357 input_set_abs_params(input_dev, ABS_Y, 96, 4000, 0, 0);
360 case 3: /* 3-byte protocol */
361 input_set_abs_params(input_dev, ABS_X, 0, 255, 0, 0);
362 input_set_abs_params(input_dev, ABS_Y, 0, 255, 0, 0);
366 err = input_register_device(elo->dev);
372 fail3: serio_close(serio);
373 fail2: serio_set_drvdata(serio, NULL);
374 fail1: input_free_device(input_dev);
380 * The serio driver structure.
383 static const struct serio_device_id elo_serio_ids[] = {
393 MODULE_DEVICE_TABLE(serio, elo_serio_ids);
395 static struct serio_driver elo_drv = {
399 .description = DRIVER_DESC,
400 .id_table = elo_serio_ids,
401 .interrupt = elo_interrupt,
402 .connect = elo_connect,
403 .disconnect = elo_disconnect,
406 module_serio_driver(elo_drv);