mfd: wm8350-i2c: Make sure the i2c regmap functions are compiled
[linux/fpc-iii.git] / drivers / input / mouse / elantech.c
blobcbe20b0099a257c97dbf678081f54754e6abb711
1 /*
2 * Elantech Touchpad driver (v6)
4 * Copyright (C) 2007-2009 Arjan Opmeer <arjan@opmeer.net>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation.
10 * Trademarks are the property of their respective owners.
13 #include <linux/delay.h>
14 #include <linux/dmi.h>
15 #include <linux/slab.h>
16 #include <linux/module.h>
17 #include <linux/input.h>
18 #include <linux/input/mt.h>
19 #include <linux/serio.h>
20 #include <linux/libps2.h>
21 #include "psmouse.h"
22 #include "elantech.h"
24 #define elantech_debug(fmt, ...) \
25 do { \
26 if (etd->debug) \
27 psmouse_printk(KERN_DEBUG, psmouse, \
28 fmt, ##__VA_ARGS__); \
29 } while (0)
32 * Send a Synaptics style sliced query command
34 static int synaptics_send_cmd(struct psmouse *psmouse, unsigned char c,
35 unsigned char *param)
37 if (psmouse_sliced_command(psmouse, c) ||
38 ps2_command(&psmouse->ps2dev, param, PSMOUSE_CMD_GETINFO)) {
39 psmouse_err(psmouse, "%s query 0x%02x failed.\n", __func__, c);
40 return -1;
43 return 0;
47 * V3 and later support this fast command
49 static int elantech_send_cmd(struct psmouse *psmouse, unsigned char c,
50 unsigned char *param)
52 struct ps2dev *ps2dev = &psmouse->ps2dev;
54 if (ps2_command(ps2dev, NULL, ETP_PS2_CUSTOM_COMMAND) ||
55 ps2_command(ps2dev, NULL, c) ||
56 ps2_command(ps2dev, param, PSMOUSE_CMD_GETINFO)) {
57 psmouse_err(psmouse, "%s query 0x%02x failed.\n", __func__, c);
58 return -1;
61 return 0;
65 * A retrying version of ps2_command
67 static int elantech_ps2_command(struct psmouse *psmouse,
68 unsigned char *param, int command)
70 struct ps2dev *ps2dev = &psmouse->ps2dev;
71 struct elantech_data *etd = psmouse->private;
72 int rc;
73 int tries = ETP_PS2_COMMAND_TRIES;
75 do {
76 rc = ps2_command(ps2dev, param, command);
77 if (rc == 0)
78 break;
79 tries--;
80 elantech_debug("retrying ps2 command 0x%02x (%d).\n",
81 command, tries);
82 msleep(ETP_PS2_COMMAND_DELAY);
83 } while (tries > 0);
85 if (rc)
86 psmouse_err(psmouse, "ps2 command 0x%02x failed.\n", command);
88 return rc;
92 * Send an Elantech style special command to read a value from a register
94 static int elantech_read_reg(struct psmouse *psmouse, unsigned char reg,
95 unsigned char *val)
97 struct elantech_data *etd = psmouse->private;
98 unsigned char param[3];
99 int rc = 0;
101 if (reg < 0x07 || reg > 0x26)
102 return -1;
104 if (reg > 0x11 && reg < 0x20)
105 return -1;
107 switch (etd->hw_version) {
108 case 1:
109 if (psmouse_sliced_command(psmouse, ETP_REGISTER_READ) ||
110 psmouse_sliced_command(psmouse, reg) ||
111 ps2_command(&psmouse->ps2dev, param, PSMOUSE_CMD_GETINFO)) {
112 rc = -1;
114 break;
116 case 2:
117 if (elantech_ps2_command(psmouse, NULL, ETP_PS2_CUSTOM_COMMAND) ||
118 elantech_ps2_command(psmouse, NULL, ETP_REGISTER_READ) ||
119 elantech_ps2_command(psmouse, NULL, ETP_PS2_CUSTOM_COMMAND) ||
120 elantech_ps2_command(psmouse, NULL, reg) ||
121 elantech_ps2_command(psmouse, param, PSMOUSE_CMD_GETINFO)) {
122 rc = -1;
124 break;
126 case 3 ... 4:
127 if (elantech_ps2_command(psmouse, NULL, ETP_PS2_CUSTOM_COMMAND) ||
128 elantech_ps2_command(psmouse, NULL, ETP_REGISTER_READWRITE) ||
129 elantech_ps2_command(psmouse, NULL, ETP_PS2_CUSTOM_COMMAND) ||
130 elantech_ps2_command(psmouse, NULL, reg) ||
131 elantech_ps2_command(psmouse, param, PSMOUSE_CMD_GETINFO)) {
132 rc = -1;
134 break;
137 if (rc)
138 psmouse_err(psmouse, "failed to read register 0x%02x.\n", reg);
139 else if (etd->hw_version != 4)
140 *val = param[0];
141 else
142 *val = param[1];
144 return rc;
148 * Send an Elantech style special command to write a register with a value
150 static int elantech_write_reg(struct psmouse *psmouse, unsigned char reg,
151 unsigned char val)
153 struct elantech_data *etd = psmouse->private;
154 int rc = 0;
156 if (reg < 0x07 || reg > 0x26)
157 return -1;
159 if (reg > 0x11 && reg < 0x20)
160 return -1;
162 switch (etd->hw_version) {
163 case 1:
164 if (psmouse_sliced_command(psmouse, ETP_REGISTER_WRITE) ||
165 psmouse_sliced_command(psmouse, reg) ||
166 psmouse_sliced_command(psmouse, val) ||
167 ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_SETSCALE11)) {
168 rc = -1;
170 break;
172 case 2:
173 if (elantech_ps2_command(psmouse, NULL, ETP_PS2_CUSTOM_COMMAND) ||
174 elantech_ps2_command(psmouse, NULL, ETP_REGISTER_WRITE) ||
175 elantech_ps2_command(psmouse, NULL, ETP_PS2_CUSTOM_COMMAND) ||
176 elantech_ps2_command(psmouse, NULL, reg) ||
177 elantech_ps2_command(psmouse, NULL, ETP_PS2_CUSTOM_COMMAND) ||
178 elantech_ps2_command(psmouse, NULL, val) ||
179 elantech_ps2_command(psmouse, NULL, PSMOUSE_CMD_SETSCALE11)) {
180 rc = -1;
182 break;
184 case 3:
185 if (elantech_ps2_command(psmouse, NULL, ETP_PS2_CUSTOM_COMMAND) ||
186 elantech_ps2_command(psmouse, NULL, ETP_REGISTER_READWRITE) ||
187 elantech_ps2_command(psmouse, NULL, ETP_PS2_CUSTOM_COMMAND) ||
188 elantech_ps2_command(psmouse, NULL, reg) ||
189 elantech_ps2_command(psmouse, NULL, ETP_PS2_CUSTOM_COMMAND) ||
190 elantech_ps2_command(psmouse, NULL, val) ||
191 elantech_ps2_command(psmouse, NULL, PSMOUSE_CMD_SETSCALE11)) {
192 rc = -1;
194 break;
196 case 4:
197 if (elantech_ps2_command(psmouse, NULL, ETP_PS2_CUSTOM_COMMAND) ||
198 elantech_ps2_command(psmouse, NULL, ETP_REGISTER_READWRITE) ||
199 elantech_ps2_command(psmouse, NULL, ETP_PS2_CUSTOM_COMMAND) ||
200 elantech_ps2_command(psmouse, NULL, reg) ||
201 elantech_ps2_command(psmouse, NULL, ETP_PS2_CUSTOM_COMMAND) ||
202 elantech_ps2_command(psmouse, NULL, ETP_REGISTER_READWRITE) ||
203 elantech_ps2_command(psmouse, NULL, ETP_PS2_CUSTOM_COMMAND) ||
204 elantech_ps2_command(psmouse, NULL, val) ||
205 elantech_ps2_command(psmouse, NULL, PSMOUSE_CMD_SETSCALE11)) {
206 rc = -1;
208 break;
211 if (rc)
212 psmouse_err(psmouse,
213 "failed to write register 0x%02x with value 0x%02x.\n",
214 reg, val);
216 return rc;
220 * Dump a complete mouse movement packet to the syslog
222 static void elantech_packet_dump(struct psmouse *psmouse)
224 int i;
226 psmouse_printk(KERN_DEBUG, psmouse, "PS/2 packet [");
227 for (i = 0; i < psmouse->pktsize; i++)
228 printk("%s0x%02x ", i ? ", " : " ", psmouse->packet[i]);
229 printk("]\n");
233 * Interpret complete data packets and report absolute mode input events for
234 * hardware version 1. (4 byte packets)
236 static void elantech_report_absolute_v1(struct psmouse *psmouse)
238 struct input_dev *dev = psmouse->dev;
239 struct elantech_data *etd = psmouse->private;
240 unsigned char *packet = psmouse->packet;
241 int fingers;
243 if (etd->fw_version < 0x020000) {
245 * byte 0: D U p1 p2 1 p3 R L
246 * byte 1: f 0 th tw x9 x8 y9 y8
248 fingers = ((packet[1] & 0x80) >> 7) +
249 ((packet[1] & 0x30) >> 4);
250 } else {
252 * byte 0: n1 n0 p2 p1 1 p3 R L
253 * byte 1: 0 0 0 0 x9 x8 y9 y8
255 fingers = (packet[0] & 0xc0) >> 6;
258 if (etd->jumpy_cursor) {
259 if (fingers != 1) {
260 etd->single_finger_reports = 0;
261 } else if (etd->single_finger_reports < 2) {
262 /* Discard first 2 reports of one finger, bogus */
263 etd->single_finger_reports++;
264 elantech_debug("discarding packet\n");
265 return;
269 input_report_key(dev, BTN_TOUCH, fingers != 0);
272 * byte 2: x7 x6 x5 x4 x3 x2 x1 x0
273 * byte 3: y7 y6 y5 y4 y3 y2 y1 y0
275 if (fingers) {
276 input_report_abs(dev, ABS_X,
277 ((packet[1] & 0x0c) << 6) | packet[2]);
278 input_report_abs(dev, ABS_Y,
279 etd->y_max - (((packet[1] & 0x03) << 8) | packet[3]));
282 input_report_key(dev, BTN_TOOL_FINGER, fingers == 1);
283 input_report_key(dev, BTN_TOOL_DOUBLETAP, fingers == 2);
284 input_report_key(dev, BTN_TOOL_TRIPLETAP, fingers == 3);
285 input_report_key(dev, BTN_LEFT, packet[0] & 0x01);
286 input_report_key(dev, BTN_RIGHT, packet[0] & 0x02);
288 if (etd->fw_version < 0x020000 &&
289 (etd->capabilities[0] & ETP_CAP_HAS_ROCKER)) {
290 /* rocker up */
291 input_report_key(dev, BTN_FORWARD, packet[0] & 0x40);
292 /* rocker down */
293 input_report_key(dev, BTN_BACK, packet[0] & 0x80);
296 input_sync(dev);
299 static void elantech_set_slot(struct input_dev *dev, int slot, bool active,
300 unsigned int x, unsigned int y)
302 input_mt_slot(dev, slot);
303 input_mt_report_slot_state(dev, MT_TOOL_FINGER, active);
304 if (active) {
305 input_report_abs(dev, ABS_MT_POSITION_X, x);
306 input_report_abs(dev, ABS_MT_POSITION_Y, y);
310 /* x1 < x2 and y1 < y2 when two fingers, x = y = 0 when not pressed */
311 static void elantech_report_semi_mt_data(struct input_dev *dev,
312 unsigned int num_fingers,
313 unsigned int x1, unsigned int y1,
314 unsigned int x2, unsigned int y2)
316 elantech_set_slot(dev, 0, num_fingers != 0, x1, y1);
317 elantech_set_slot(dev, 1, num_fingers >= 2, x2, y2);
321 * Interpret complete data packets and report absolute mode input events for
322 * hardware version 2. (6 byte packets)
324 static void elantech_report_absolute_v2(struct psmouse *psmouse)
326 struct elantech_data *etd = psmouse->private;
327 struct input_dev *dev = psmouse->dev;
328 unsigned char *packet = psmouse->packet;
329 unsigned int fingers, x1 = 0, y1 = 0, x2 = 0, y2 = 0;
330 unsigned int width = 0, pres = 0;
332 /* byte 0: n1 n0 . . . . R L */
333 fingers = (packet[0] & 0xc0) >> 6;
335 switch (fingers) {
336 case 3:
338 * Same as one finger, except report of more than 3 fingers:
339 * byte 3: n4 . w1 w0 . . . .
341 if (packet[3] & 0x80)
342 fingers = 4;
343 /* pass through... */
344 case 1:
346 * byte 1: . . . . x11 x10 x9 x8
347 * byte 2: x7 x6 x5 x4 x4 x2 x1 x0
349 x1 = ((packet[1] & 0x0f) << 8) | packet[2];
351 * byte 4: . . . . y11 y10 y9 y8
352 * byte 5: y7 y6 y5 y4 y3 y2 y1 y0
354 y1 = etd->y_max - (((packet[4] & 0x0f) << 8) | packet[5]);
356 pres = (packet[1] & 0xf0) | ((packet[4] & 0xf0) >> 4);
357 width = ((packet[0] & 0x30) >> 2) | ((packet[3] & 0x30) >> 4);
358 break;
360 case 2:
362 * The coordinate of each finger is reported separately
363 * with a lower resolution for two finger touches:
364 * byte 0: . . ay8 ax8 . . . .
365 * byte 1: ax7 ax6 ax5 ax4 ax3 ax2 ax1 ax0
367 x1 = (((packet[0] & 0x10) << 4) | packet[1]) << 2;
368 /* byte 2: ay7 ay6 ay5 ay4 ay3 ay2 ay1 ay0 */
369 y1 = etd->y_max -
370 ((((packet[0] & 0x20) << 3) | packet[2]) << 2);
372 * byte 3: . . by8 bx8 . . . .
373 * byte 4: bx7 bx6 bx5 bx4 bx3 bx2 bx1 bx0
375 x2 = (((packet[3] & 0x10) << 4) | packet[4]) << 2;
376 /* byte 5: by7 by8 by5 by4 by3 by2 by1 by0 */
377 y2 = etd->y_max -
378 ((((packet[3] & 0x20) << 3) | packet[5]) << 2);
380 /* Unknown so just report sensible values */
381 pres = 127;
382 width = 7;
383 break;
386 input_report_key(dev, BTN_TOUCH, fingers != 0);
387 if (fingers != 0) {
388 input_report_abs(dev, ABS_X, x1);
389 input_report_abs(dev, ABS_Y, y1);
391 elantech_report_semi_mt_data(dev, fingers, x1, y1, x2, y2);
392 input_report_key(dev, BTN_TOOL_FINGER, fingers == 1);
393 input_report_key(dev, BTN_TOOL_DOUBLETAP, fingers == 2);
394 input_report_key(dev, BTN_TOOL_TRIPLETAP, fingers == 3);
395 input_report_key(dev, BTN_TOOL_QUADTAP, fingers == 4);
396 input_report_key(dev, BTN_LEFT, packet[0] & 0x01);
397 input_report_key(dev, BTN_RIGHT, packet[0] & 0x02);
398 if (etd->reports_pressure) {
399 input_report_abs(dev, ABS_PRESSURE, pres);
400 input_report_abs(dev, ABS_TOOL_WIDTH, width);
403 input_sync(dev);
407 * Interpret complete data packets and report absolute mode input events for
408 * hardware version 3. (12 byte packets for two fingers)
410 static void elantech_report_absolute_v3(struct psmouse *psmouse,
411 int packet_type)
413 struct input_dev *dev = psmouse->dev;
414 struct elantech_data *etd = psmouse->private;
415 unsigned char *packet = psmouse->packet;
416 unsigned int fingers = 0, x1 = 0, y1 = 0, x2 = 0, y2 = 0;
417 unsigned int width = 0, pres = 0;
419 /* byte 0: n1 n0 . . . . R L */
420 fingers = (packet[0] & 0xc0) >> 6;
422 switch (fingers) {
423 case 3:
424 case 1:
426 * byte 1: . . . . x11 x10 x9 x8
427 * byte 2: x7 x6 x5 x4 x4 x2 x1 x0
429 x1 = ((packet[1] & 0x0f) << 8) | packet[2];
431 * byte 4: . . . . y11 y10 y9 y8
432 * byte 5: y7 y6 y5 y4 y3 y2 y1 y0
434 y1 = etd->y_max - (((packet[4] & 0x0f) << 8) | packet[5]);
435 break;
437 case 2:
438 if (packet_type == PACKET_V3_HEAD) {
440 * byte 1: . . . . ax11 ax10 ax9 ax8
441 * byte 2: ax7 ax6 ax5 ax4 ax3 ax2 ax1 ax0
443 etd->mt[0].x = ((packet[1] & 0x0f) << 8) | packet[2];
445 * byte 4: . . . . ay11 ay10 ay9 ay8
446 * byte 5: ay7 ay6 ay5 ay4 ay3 ay2 ay1 ay0
448 etd->mt[0].y = etd->y_max -
449 (((packet[4] & 0x0f) << 8) | packet[5]);
451 * wait for next packet
453 return;
456 /* packet_type == PACKET_V3_TAIL */
457 x1 = etd->mt[0].x;
458 y1 = etd->mt[0].y;
459 x2 = ((packet[1] & 0x0f) << 8) | packet[2];
460 y2 = etd->y_max - (((packet[4] & 0x0f) << 8) | packet[5]);
461 break;
464 pres = (packet[1] & 0xf0) | ((packet[4] & 0xf0) >> 4);
465 width = ((packet[0] & 0x30) >> 2) | ((packet[3] & 0x30) >> 4);
467 input_report_key(dev, BTN_TOUCH, fingers != 0);
468 if (fingers != 0) {
469 input_report_abs(dev, ABS_X, x1);
470 input_report_abs(dev, ABS_Y, y1);
472 elantech_report_semi_mt_data(dev, fingers, x1, y1, x2, y2);
473 input_report_key(dev, BTN_TOOL_FINGER, fingers == 1);
474 input_report_key(dev, BTN_TOOL_DOUBLETAP, fingers == 2);
475 input_report_key(dev, BTN_TOOL_TRIPLETAP, fingers == 3);
477 /* For clickpads map both buttons to BTN_LEFT */
478 if (etd->fw_version & 0x001000) {
479 input_report_key(dev, BTN_LEFT, packet[0] & 0x03);
480 } else {
481 input_report_key(dev, BTN_LEFT, packet[0] & 0x01);
482 input_report_key(dev, BTN_RIGHT, packet[0] & 0x02);
485 input_report_abs(dev, ABS_PRESSURE, pres);
486 input_report_abs(dev, ABS_TOOL_WIDTH, width);
488 input_sync(dev);
491 static void elantech_input_sync_v4(struct psmouse *psmouse)
493 struct input_dev *dev = psmouse->dev;
494 struct elantech_data *etd = psmouse->private;
495 unsigned char *packet = psmouse->packet;
497 /* For clickpads map both buttons to BTN_LEFT */
498 if (etd->fw_version & 0x001000) {
499 input_report_key(dev, BTN_LEFT, packet[0] & 0x03);
500 } else {
501 input_report_key(dev, BTN_LEFT, packet[0] & 0x01);
502 input_report_key(dev, BTN_RIGHT, packet[0] & 0x02);
505 input_mt_report_pointer_emulation(dev, true);
506 input_sync(dev);
509 static void process_packet_status_v4(struct psmouse *psmouse)
511 struct input_dev *dev = psmouse->dev;
512 unsigned char *packet = psmouse->packet;
513 unsigned fingers;
514 int i;
516 /* notify finger state change */
517 fingers = packet[1] & 0x1f;
518 for (i = 0; i < ETP_MAX_FINGERS; i++) {
519 if ((fingers & (1 << i)) == 0) {
520 input_mt_slot(dev, i);
521 input_mt_report_slot_state(dev, MT_TOOL_FINGER, false);
525 elantech_input_sync_v4(psmouse);
528 static void process_packet_head_v4(struct psmouse *psmouse)
530 struct input_dev *dev = psmouse->dev;
531 struct elantech_data *etd = psmouse->private;
532 unsigned char *packet = psmouse->packet;
533 int id = ((packet[3] & 0xe0) >> 5) - 1;
534 int pres, traces;
536 if (id < 0)
537 return;
539 etd->mt[id].x = ((packet[1] & 0x0f) << 8) | packet[2];
540 etd->mt[id].y = etd->y_max - (((packet[4] & 0x0f) << 8) | packet[5]);
541 pres = (packet[1] & 0xf0) | ((packet[4] & 0xf0) >> 4);
542 traces = (packet[0] & 0xf0) >> 4;
544 input_mt_slot(dev, id);
545 input_mt_report_slot_state(dev, MT_TOOL_FINGER, true);
547 input_report_abs(dev, ABS_MT_POSITION_X, etd->mt[id].x);
548 input_report_abs(dev, ABS_MT_POSITION_Y, etd->mt[id].y);
549 input_report_abs(dev, ABS_MT_PRESSURE, pres);
550 input_report_abs(dev, ABS_MT_TOUCH_MAJOR, traces * etd->width);
551 /* report this for backwards compatibility */
552 input_report_abs(dev, ABS_TOOL_WIDTH, traces);
554 elantech_input_sync_v4(psmouse);
557 static void process_packet_motion_v4(struct psmouse *psmouse)
559 struct input_dev *dev = psmouse->dev;
560 struct elantech_data *etd = psmouse->private;
561 unsigned char *packet = psmouse->packet;
562 int weight, delta_x1 = 0, delta_y1 = 0, delta_x2 = 0, delta_y2 = 0;
563 int id, sid;
565 id = ((packet[0] & 0xe0) >> 5) - 1;
566 if (id < 0)
567 return;
569 sid = ((packet[3] & 0xe0) >> 5) - 1;
570 weight = (packet[0] & 0x10) ? ETP_WEIGHT_VALUE : 1;
572 * Motion packets give us the delta of x, y values of specific fingers,
573 * but in two's complement. Let the compiler do the conversion for us.
574 * Also _enlarge_ the numbers to int, in case of overflow.
576 delta_x1 = (signed char)packet[1];
577 delta_y1 = (signed char)packet[2];
578 delta_x2 = (signed char)packet[4];
579 delta_y2 = (signed char)packet[5];
581 etd->mt[id].x += delta_x1 * weight;
582 etd->mt[id].y -= delta_y1 * weight;
583 input_mt_slot(dev, id);
584 input_report_abs(dev, ABS_MT_POSITION_X, etd->mt[id].x);
585 input_report_abs(dev, ABS_MT_POSITION_Y, etd->mt[id].y);
587 if (sid >= 0) {
588 etd->mt[sid].x += delta_x2 * weight;
589 etd->mt[sid].y -= delta_y2 * weight;
590 input_mt_slot(dev, sid);
591 input_report_abs(dev, ABS_MT_POSITION_X, etd->mt[sid].x);
592 input_report_abs(dev, ABS_MT_POSITION_Y, etd->mt[sid].y);
595 elantech_input_sync_v4(psmouse);
598 static void elantech_report_absolute_v4(struct psmouse *psmouse,
599 int packet_type)
601 switch (packet_type) {
602 case PACKET_V4_STATUS:
603 process_packet_status_v4(psmouse);
604 break;
606 case PACKET_V4_HEAD:
607 process_packet_head_v4(psmouse);
608 break;
610 case PACKET_V4_MOTION:
611 process_packet_motion_v4(psmouse);
612 break;
614 case PACKET_UNKNOWN:
615 default:
616 /* impossible to get here */
617 break;
621 static int elantech_packet_check_v1(struct psmouse *psmouse)
623 struct elantech_data *etd = psmouse->private;
624 unsigned char *packet = psmouse->packet;
625 unsigned char p1, p2, p3;
627 /* Parity bits are placed differently */
628 if (etd->fw_version < 0x020000) {
629 /* byte 0: D U p1 p2 1 p3 R L */
630 p1 = (packet[0] & 0x20) >> 5;
631 p2 = (packet[0] & 0x10) >> 4;
632 } else {
633 /* byte 0: n1 n0 p2 p1 1 p3 R L */
634 p1 = (packet[0] & 0x10) >> 4;
635 p2 = (packet[0] & 0x20) >> 5;
638 p3 = (packet[0] & 0x04) >> 2;
640 return etd->parity[packet[1]] == p1 &&
641 etd->parity[packet[2]] == p2 &&
642 etd->parity[packet[3]] == p3;
645 static int elantech_debounce_check_v2(struct psmouse *psmouse)
648 * When we encounter packet that matches this exactly, it means the
649 * hardware is in debounce status. Just ignore the whole packet.
651 const u8 debounce_packet[] = { 0x84, 0xff, 0xff, 0x02, 0xff, 0xff };
652 unsigned char *packet = psmouse->packet;
654 return !memcmp(packet, debounce_packet, sizeof(debounce_packet));
657 static int elantech_packet_check_v2(struct psmouse *psmouse)
659 struct elantech_data *etd = psmouse->private;
660 unsigned char *packet = psmouse->packet;
663 * V2 hardware has two flavors. Older ones that do not report pressure,
664 * and newer ones that reports pressure and width. With newer ones, all
665 * packets (1, 2, 3 finger touch) have the same constant bits. With
666 * older ones, 1/3 finger touch packets and 2 finger touch packets
667 * have different constant bits.
668 * With all three cases, if the constant bits are not exactly what I
669 * expected, I consider them invalid.
671 if (etd->reports_pressure)
672 return (packet[0] & 0x0c) == 0x04 &&
673 (packet[3] & 0x0f) == 0x02;
675 if ((packet[0] & 0xc0) == 0x80)
676 return (packet[0] & 0x0c) == 0x0c &&
677 (packet[3] & 0x0e) == 0x08;
679 return (packet[0] & 0x3c) == 0x3c &&
680 (packet[1] & 0xf0) == 0x00 &&
681 (packet[3] & 0x3e) == 0x38 &&
682 (packet[4] & 0xf0) == 0x00;
686 * We check the constant bits to determine what packet type we get,
687 * so packet checking is mandatory for v3 and later hardware.
689 static int elantech_packet_check_v3(struct psmouse *psmouse)
691 struct elantech_data *etd = psmouse->private;
692 const u8 debounce_packet[] = { 0xc4, 0xff, 0xff, 0x02, 0xff, 0xff };
693 unsigned char *packet = psmouse->packet;
696 * check debounce first, it has the same signature in byte 0
697 * and byte 3 as PACKET_V3_HEAD.
699 if (!memcmp(packet, debounce_packet, sizeof(debounce_packet)))
700 return PACKET_DEBOUNCE;
703 * If the hardware flag 'crc_enabled' is set the packets have
704 * different signatures.
706 if (etd->crc_enabled) {
707 if ((packet[3] & 0x09) == 0x08)
708 return PACKET_V3_HEAD;
710 if ((packet[3] & 0x09) == 0x09)
711 return PACKET_V3_TAIL;
712 } else {
713 if ((packet[0] & 0x0c) == 0x04 && (packet[3] & 0xcf) == 0x02)
714 return PACKET_V3_HEAD;
716 if ((packet[0] & 0x0c) == 0x0c && (packet[3] & 0xce) == 0x0c)
717 return PACKET_V3_TAIL;
720 return PACKET_UNKNOWN;
723 static int elantech_packet_check_v4(struct psmouse *psmouse)
725 struct elantech_data *etd = psmouse->private;
726 unsigned char *packet = psmouse->packet;
727 unsigned char packet_type = packet[3] & 0x03;
728 bool sanity_check;
731 * Sanity check based on the constant bits of a packet.
732 * The constant bits change depending on the value of
733 * the hardware flag 'crc_enabled' but are the same for
734 * every packet, regardless of the type.
736 if (etd->crc_enabled)
737 sanity_check = ((packet[3] & 0x08) == 0x00);
738 else
739 sanity_check = ((packet[0] & 0x0c) == 0x04 &&
740 (packet[3] & 0x1c) == 0x10);
742 if (!sanity_check)
743 return PACKET_UNKNOWN;
745 switch (packet_type) {
746 case 0:
747 return PACKET_V4_STATUS;
749 case 1:
750 return PACKET_V4_HEAD;
752 case 2:
753 return PACKET_V4_MOTION;
756 return PACKET_UNKNOWN;
760 * Process byte stream from mouse and handle complete packets
762 static psmouse_ret_t elantech_process_byte(struct psmouse *psmouse)
764 struct elantech_data *etd = psmouse->private;
765 int packet_type;
767 if (psmouse->pktcnt < psmouse->pktsize)
768 return PSMOUSE_GOOD_DATA;
770 if (etd->debug > 1)
771 elantech_packet_dump(psmouse);
773 switch (etd->hw_version) {
774 case 1:
775 if (etd->paritycheck && !elantech_packet_check_v1(psmouse))
776 return PSMOUSE_BAD_DATA;
778 elantech_report_absolute_v1(psmouse);
779 break;
781 case 2:
782 /* ignore debounce */
783 if (elantech_debounce_check_v2(psmouse))
784 return PSMOUSE_FULL_PACKET;
786 if (etd->paritycheck && !elantech_packet_check_v2(psmouse))
787 return PSMOUSE_BAD_DATA;
789 elantech_report_absolute_v2(psmouse);
790 break;
792 case 3:
793 packet_type = elantech_packet_check_v3(psmouse);
794 /* ignore debounce */
795 if (packet_type == PACKET_DEBOUNCE)
796 return PSMOUSE_FULL_PACKET;
798 if (packet_type == PACKET_UNKNOWN)
799 return PSMOUSE_BAD_DATA;
801 elantech_report_absolute_v3(psmouse, packet_type);
802 break;
804 case 4:
805 packet_type = elantech_packet_check_v4(psmouse);
806 if (packet_type == PACKET_UNKNOWN)
807 return PSMOUSE_BAD_DATA;
809 elantech_report_absolute_v4(psmouse, packet_type);
810 break;
813 return PSMOUSE_FULL_PACKET;
817 * This writes the reg_07 value again to the hardware at the end of every
818 * set_rate call because the register loses its value. reg_07 allows setting
819 * absolute mode on v4 hardware
821 static void elantech_set_rate_restore_reg_07(struct psmouse *psmouse,
822 unsigned int rate)
824 struct elantech_data *etd = psmouse->private;
826 etd->original_set_rate(psmouse, rate);
827 if (elantech_write_reg(psmouse, 0x07, etd->reg_07))
828 psmouse_err(psmouse, "restoring reg_07 failed\n");
832 * Put the touchpad into absolute mode
834 static int elantech_set_absolute_mode(struct psmouse *psmouse)
836 struct elantech_data *etd = psmouse->private;
837 unsigned char val;
838 int tries = ETP_READ_BACK_TRIES;
839 int rc = 0;
841 switch (etd->hw_version) {
842 case 1:
843 etd->reg_10 = 0x16;
844 etd->reg_11 = 0x8f;
845 if (elantech_write_reg(psmouse, 0x10, etd->reg_10) ||
846 elantech_write_reg(psmouse, 0x11, etd->reg_11)) {
847 rc = -1;
849 break;
851 case 2:
852 /* Windows driver values */
853 etd->reg_10 = 0x54;
854 etd->reg_11 = 0x88; /* 0x8a */
855 etd->reg_21 = 0x60; /* 0x00 */
856 if (elantech_write_reg(psmouse, 0x10, etd->reg_10) ||
857 elantech_write_reg(psmouse, 0x11, etd->reg_11) ||
858 elantech_write_reg(psmouse, 0x21, etd->reg_21)) {
859 rc = -1;
861 break;
863 case 3:
864 if (etd->set_hw_resolution)
865 etd->reg_10 = 0x0b;
866 else
867 etd->reg_10 = 0x01;
869 if (elantech_write_reg(psmouse, 0x10, etd->reg_10))
870 rc = -1;
872 break;
874 case 4:
875 etd->reg_07 = 0x01;
876 if (elantech_write_reg(psmouse, 0x07, etd->reg_07))
877 rc = -1;
879 goto skip_readback_reg_10; /* v4 has no reg 0x10 to read */
882 if (rc == 0) {
884 * Read back reg 0x10. For hardware version 1 we must make
885 * sure the absolute mode bit is set. For hardware version 2
886 * the touchpad is probably initializing and not ready until
887 * we read back the value we just wrote.
889 do {
890 rc = elantech_read_reg(psmouse, 0x10, &val);
891 if (rc == 0)
892 break;
893 tries--;
894 elantech_debug("retrying read (%d).\n", tries);
895 msleep(ETP_READ_BACK_DELAY);
896 } while (tries > 0);
898 if (rc) {
899 psmouse_err(psmouse,
900 "failed to read back register 0x10.\n");
901 } else if (etd->hw_version == 1 &&
902 !(val & ETP_R10_ABSOLUTE_MODE)) {
903 psmouse_err(psmouse,
904 "touchpad refuses to switch to absolute mode.\n");
905 rc = -1;
909 skip_readback_reg_10:
910 if (rc)
911 psmouse_err(psmouse, "failed to initialise registers.\n");
913 return rc;
916 static int elantech_set_range(struct psmouse *psmouse,
917 unsigned int *x_min, unsigned int *y_min,
918 unsigned int *x_max, unsigned int *y_max,
919 unsigned int *width)
921 struct elantech_data *etd = psmouse->private;
922 unsigned char param[3];
923 unsigned char traces;
925 switch (etd->hw_version) {
926 case 1:
927 *x_min = ETP_XMIN_V1;
928 *y_min = ETP_YMIN_V1;
929 *x_max = ETP_XMAX_V1;
930 *y_max = ETP_YMAX_V1;
931 break;
933 case 2:
934 if (etd->fw_version == 0x020800 ||
935 etd->fw_version == 0x020b00 ||
936 etd->fw_version == 0x020030) {
937 *x_min = ETP_XMIN_V2;
938 *y_min = ETP_YMIN_V2;
939 *x_max = ETP_XMAX_V2;
940 *y_max = ETP_YMAX_V2;
941 } else {
942 int i;
943 int fixed_dpi;
945 i = (etd->fw_version > 0x020800 &&
946 etd->fw_version < 0x020900) ? 1 : 2;
948 if (etd->send_cmd(psmouse, ETP_FW_ID_QUERY, param))
949 return -1;
951 fixed_dpi = param[1] & 0x10;
953 if (((etd->fw_version >> 16) == 0x14) && fixed_dpi) {
954 if (etd->send_cmd(psmouse, ETP_SAMPLE_QUERY, param))
955 return -1;
957 *x_max = (etd->capabilities[1] - i) * param[1] / 2;
958 *y_max = (etd->capabilities[2] - i) * param[2] / 2;
959 } else if (etd->fw_version == 0x040216) {
960 *x_max = 819;
961 *y_max = 405;
962 } else if (etd->fw_version == 0x040219 || etd->fw_version == 0x040215) {
963 *x_max = 900;
964 *y_max = 500;
965 } else {
966 *x_max = (etd->capabilities[1] - i) * 64;
967 *y_max = (etd->capabilities[2] - i) * 64;
970 break;
972 case 3:
973 if (etd->send_cmd(psmouse, ETP_FW_ID_QUERY, param))
974 return -1;
976 *x_max = (0x0f & param[0]) << 8 | param[1];
977 *y_max = (0xf0 & param[0]) << 4 | param[2];
978 break;
980 case 4:
981 if (etd->send_cmd(psmouse, ETP_FW_ID_QUERY, param))
982 return -1;
984 *x_max = (0x0f & param[0]) << 8 | param[1];
985 *y_max = (0xf0 & param[0]) << 4 | param[2];
986 traces = etd->capabilities[1];
987 if ((traces < 2) || (traces > *x_max))
988 return -1;
990 *width = *x_max / (traces - 1);
991 break;
994 return 0;
998 * (value from firmware) * 10 + 790 = dpi
999 * we also have to convert dpi to dots/mm (*10/254 to avoid floating point)
1001 static unsigned int elantech_convert_res(unsigned int val)
1003 return (val * 10 + 790) * 10 / 254;
1006 static int elantech_get_resolution_v4(struct psmouse *psmouse,
1007 unsigned int *x_res,
1008 unsigned int *y_res)
1010 unsigned char param[3];
1012 if (elantech_send_cmd(psmouse, ETP_RESOLUTION_QUERY, param))
1013 return -1;
1015 *x_res = elantech_convert_res(param[1] & 0x0f);
1016 *y_res = elantech_convert_res((param[1] & 0xf0) >> 4);
1018 return 0;
1022 * Advertise INPUT_PROP_BUTTONPAD for clickpads. The testing of bit 12 in
1023 * fw_version for this is based on the following fw_version & caps table:
1025 * Laptop-model: fw_version: caps: buttons:
1026 * Acer S3 0x461f00 10, 13, 0e clickpad
1027 * Acer S7-392 0x581f01 50, 17, 0d clickpad
1028 * Acer V5-131 0x461f02 01, 16, 0c clickpad
1029 * Acer V5-551 0x461f00 ? clickpad
1030 * Asus K53SV 0x450f01 78, 15, 0c 2 hw buttons
1031 * Asus G46VW 0x460f02 00, 18, 0c 2 hw buttons
1032 * Asus G750JX 0x360f00 00, 16, 0c 2 hw buttons
1033 * Asus TP500LN 0x381f17 10, 14, 0e clickpad
1034 * Asus X750JN 0x381f17 10, 14, 0e clickpad
1035 * Asus UX31 0x361f00 20, 15, 0e clickpad
1036 * Asus UX32VD 0x361f02 00, 15, 0e clickpad
1037 * Avatar AVIU-145A2 0x361f00 ? clickpad
1038 * Fujitsu LIFEBOOK E544 0x470f00 d0, 12, 09 2 hw buttons
1039 * Fujitsu LIFEBOOK E554 0x570f01 40, 14, 0c 2 hw buttons
1040 * Gigabyte U2442 0x450f01 58, 17, 0c 2 hw buttons
1041 * Lenovo L430 0x350f02 b9, 15, 0c 2 hw buttons (*)
1042 * Samsung NF210 0x150b00 78, 14, 0a 2 hw buttons
1043 * Samsung NP770Z5E 0x575f01 10, 15, 0f clickpad
1044 * Samsung NP700Z5B 0x361f06 21, 15, 0f clickpad
1045 * Samsung NP900X3E-A02 0x575f03 ? clickpad
1046 * Samsung NP-QX410 0x851b00 19, 14, 0c clickpad
1047 * Samsung RC512 0x450f00 08, 15, 0c 2 hw buttons
1048 * Samsung RF710 0x450f00 ? 2 hw buttons
1049 * System76 Pangolin 0x250f01 ? 2 hw buttons
1050 * (*) + 3 trackpoint buttons
1052 static void elantech_set_buttonpad_prop(struct psmouse *psmouse)
1054 struct input_dev *dev = psmouse->dev;
1055 struct elantech_data *etd = psmouse->private;
1057 if (etd->fw_version & 0x001000) {
1058 __set_bit(INPUT_PROP_BUTTONPAD, dev->propbit);
1059 __clear_bit(BTN_RIGHT, dev->keybit);
1064 * Set the appropriate event bits for the input subsystem
1066 static int elantech_set_input_params(struct psmouse *psmouse)
1068 struct input_dev *dev = psmouse->dev;
1069 struct elantech_data *etd = psmouse->private;
1070 unsigned int x_min = 0, y_min = 0, x_max = 0, y_max = 0, width = 0;
1071 unsigned int x_res = 0, y_res = 0;
1073 if (elantech_set_range(psmouse, &x_min, &y_min, &x_max, &y_max, &width))
1074 return -1;
1076 __set_bit(INPUT_PROP_POINTER, dev->propbit);
1077 __set_bit(EV_KEY, dev->evbit);
1078 __set_bit(EV_ABS, dev->evbit);
1079 __clear_bit(EV_REL, dev->evbit);
1081 __set_bit(BTN_LEFT, dev->keybit);
1082 __set_bit(BTN_RIGHT, dev->keybit);
1084 __set_bit(BTN_TOUCH, dev->keybit);
1085 __set_bit(BTN_TOOL_FINGER, dev->keybit);
1086 __set_bit(BTN_TOOL_DOUBLETAP, dev->keybit);
1087 __set_bit(BTN_TOOL_TRIPLETAP, dev->keybit);
1089 switch (etd->hw_version) {
1090 case 1:
1091 /* Rocker button */
1092 if (etd->fw_version < 0x020000 &&
1093 (etd->capabilities[0] & ETP_CAP_HAS_ROCKER)) {
1094 __set_bit(BTN_FORWARD, dev->keybit);
1095 __set_bit(BTN_BACK, dev->keybit);
1097 input_set_abs_params(dev, ABS_X, x_min, x_max, 0, 0);
1098 input_set_abs_params(dev, ABS_Y, y_min, y_max, 0, 0);
1099 break;
1101 case 2:
1102 __set_bit(BTN_TOOL_QUADTAP, dev->keybit);
1103 __set_bit(INPUT_PROP_SEMI_MT, dev->propbit);
1104 /* fall through */
1105 case 3:
1106 if (etd->hw_version == 3)
1107 elantech_set_buttonpad_prop(psmouse);
1108 input_set_abs_params(dev, ABS_X, x_min, x_max, 0, 0);
1109 input_set_abs_params(dev, ABS_Y, y_min, y_max, 0, 0);
1110 if (etd->reports_pressure) {
1111 input_set_abs_params(dev, ABS_PRESSURE, ETP_PMIN_V2,
1112 ETP_PMAX_V2, 0, 0);
1113 input_set_abs_params(dev, ABS_TOOL_WIDTH, ETP_WMIN_V2,
1114 ETP_WMAX_V2, 0, 0);
1116 input_mt_init_slots(dev, 2, INPUT_MT_SEMI_MT);
1117 input_set_abs_params(dev, ABS_MT_POSITION_X, x_min, x_max, 0, 0);
1118 input_set_abs_params(dev, ABS_MT_POSITION_Y, y_min, y_max, 0, 0);
1119 break;
1121 case 4:
1122 if (elantech_get_resolution_v4(psmouse, &x_res, &y_res)) {
1124 * if query failed, print a warning and leave the values
1125 * zero to resemble synaptics.c behavior.
1127 psmouse_warn(psmouse, "couldn't query resolution data.\n");
1129 elantech_set_buttonpad_prop(psmouse);
1130 __set_bit(BTN_TOOL_QUADTAP, dev->keybit);
1131 /* For X to recognize me as touchpad. */
1132 input_set_abs_params(dev, ABS_X, x_min, x_max, 0, 0);
1133 input_set_abs_params(dev, ABS_Y, y_min, y_max, 0, 0);
1134 input_abs_set_res(dev, ABS_X, x_res);
1135 input_abs_set_res(dev, ABS_Y, y_res);
1137 * range of pressure and width is the same as v2,
1138 * report ABS_PRESSURE, ABS_TOOL_WIDTH for compatibility.
1140 input_set_abs_params(dev, ABS_PRESSURE, ETP_PMIN_V2,
1141 ETP_PMAX_V2, 0, 0);
1142 input_set_abs_params(dev, ABS_TOOL_WIDTH, ETP_WMIN_V2,
1143 ETP_WMAX_V2, 0, 0);
1144 /* Multitouch capable pad, up to 5 fingers. */
1145 input_mt_init_slots(dev, ETP_MAX_FINGERS, 0);
1146 input_set_abs_params(dev, ABS_MT_POSITION_X, x_min, x_max, 0, 0);
1147 input_set_abs_params(dev, ABS_MT_POSITION_Y, y_min, y_max, 0, 0);
1148 input_abs_set_res(dev, ABS_MT_POSITION_X, x_res);
1149 input_abs_set_res(dev, ABS_MT_POSITION_Y, y_res);
1150 input_set_abs_params(dev, ABS_MT_PRESSURE, ETP_PMIN_V2,
1151 ETP_PMAX_V2, 0, 0);
1153 * The firmware reports how many trace lines the finger spans,
1154 * convert to surface unit as Protocol-B requires.
1156 input_set_abs_params(dev, ABS_MT_TOUCH_MAJOR, 0,
1157 ETP_WMAX_V2 * width, 0, 0);
1158 break;
1161 etd->y_max = y_max;
1162 etd->width = width;
1164 return 0;
1167 struct elantech_attr_data {
1168 size_t field_offset;
1169 unsigned char reg;
1173 * Display a register value by reading a sysfs entry
1175 static ssize_t elantech_show_int_attr(struct psmouse *psmouse, void *data,
1176 char *buf)
1178 struct elantech_data *etd = psmouse->private;
1179 struct elantech_attr_data *attr = data;
1180 unsigned char *reg = (unsigned char *) etd + attr->field_offset;
1181 int rc = 0;
1183 if (attr->reg)
1184 rc = elantech_read_reg(psmouse, attr->reg, reg);
1186 return sprintf(buf, "0x%02x\n", (attr->reg && rc) ? -1 : *reg);
1190 * Write a register value by writing a sysfs entry
1192 static ssize_t elantech_set_int_attr(struct psmouse *psmouse,
1193 void *data, const char *buf, size_t count)
1195 struct elantech_data *etd = psmouse->private;
1196 struct elantech_attr_data *attr = data;
1197 unsigned char *reg = (unsigned char *) etd + attr->field_offset;
1198 unsigned char value;
1199 int err;
1201 err = kstrtou8(buf, 16, &value);
1202 if (err)
1203 return err;
1205 /* Do we need to preserve some bits for version 2 hardware too? */
1206 if (etd->hw_version == 1) {
1207 if (attr->reg == 0x10)
1208 /* Force absolute mode always on */
1209 value |= ETP_R10_ABSOLUTE_MODE;
1210 else if (attr->reg == 0x11)
1211 /* Force 4 byte mode always on */
1212 value |= ETP_R11_4_BYTE_MODE;
1215 if (!attr->reg || elantech_write_reg(psmouse, attr->reg, value) == 0)
1216 *reg = value;
1218 return count;
1221 #define ELANTECH_INT_ATTR(_name, _register) \
1222 static struct elantech_attr_data elantech_attr_##_name = { \
1223 .field_offset = offsetof(struct elantech_data, _name), \
1224 .reg = _register, \
1225 }; \
1226 PSMOUSE_DEFINE_ATTR(_name, S_IWUSR | S_IRUGO, \
1227 &elantech_attr_##_name, \
1228 elantech_show_int_attr, \
1229 elantech_set_int_attr)
1231 ELANTECH_INT_ATTR(reg_07, 0x07);
1232 ELANTECH_INT_ATTR(reg_10, 0x10);
1233 ELANTECH_INT_ATTR(reg_11, 0x11);
1234 ELANTECH_INT_ATTR(reg_20, 0x20);
1235 ELANTECH_INT_ATTR(reg_21, 0x21);
1236 ELANTECH_INT_ATTR(reg_22, 0x22);
1237 ELANTECH_INT_ATTR(reg_23, 0x23);
1238 ELANTECH_INT_ATTR(reg_24, 0x24);
1239 ELANTECH_INT_ATTR(reg_25, 0x25);
1240 ELANTECH_INT_ATTR(reg_26, 0x26);
1241 ELANTECH_INT_ATTR(debug, 0);
1242 ELANTECH_INT_ATTR(paritycheck, 0);
1244 static struct attribute *elantech_attrs[] = {
1245 &psmouse_attr_reg_07.dattr.attr,
1246 &psmouse_attr_reg_10.dattr.attr,
1247 &psmouse_attr_reg_11.dattr.attr,
1248 &psmouse_attr_reg_20.dattr.attr,
1249 &psmouse_attr_reg_21.dattr.attr,
1250 &psmouse_attr_reg_22.dattr.attr,
1251 &psmouse_attr_reg_23.dattr.attr,
1252 &psmouse_attr_reg_24.dattr.attr,
1253 &psmouse_attr_reg_25.dattr.attr,
1254 &psmouse_attr_reg_26.dattr.attr,
1255 &psmouse_attr_debug.dattr.attr,
1256 &psmouse_attr_paritycheck.dattr.attr,
1257 NULL
1260 static struct attribute_group elantech_attr_group = {
1261 .attrs = elantech_attrs,
1264 static bool elantech_is_signature_valid(const unsigned char *param)
1266 static const unsigned char rates[] = { 200, 100, 80, 60, 40, 20, 10 };
1267 int i;
1269 if (param[0] == 0)
1270 return false;
1272 if (param[1] == 0)
1273 return true;
1276 * Some hw_version >= 4 models have a revision higher then 20. Meaning
1277 * that param[2] may be 10 or 20, skip the rates check for these.
1279 if ((param[0] & 0x0f) >= 0x06 && (param[1] & 0xaf) == 0x0f &&
1280 param[2] < 40)
1281 return true;
1283 for (i = 0; i < ARRAY_SIZE(rates); i++)
1284 if (param[2] == rates[i])
1285 return false;
1287 return true;
1291 * Use magic knock to detect Elantech touchpad
1293 int elantech_detect(struct psmouse *psmouse, bool set_properties)
1295 struct ps2dev *ps2dev = &psmouse->ps2dev;
1296 unsigned char param[3];
1298 ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_RESET_DIS);
1300 if (ps2_command(ps2dev, NULL, PSMOUSE_CMD_DISABLE) ||
1301 ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11) ||
1302 ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11) ||
1303 ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11) ||
1304 ps2_command(ps2dev, param, PSMOUSE_CMD_GETINFO)) {
1305 psmouse_dbg(psmouse, "sending Elantech magic knock failed.\n");
1306 return -1;
1310 * Report this in case there are Elantech models that use a different
1311 * set of magic numbers
1313 if (param[0] != 0x3c || param[1] != 0x03 ||
1314 (param[2] != 0xc8 && param[2] != 0x00)) {
1315 psmouse_dbg(psmouse,
1316 "unexpected magic knock result 0x%02x, 0x%02x, 0x%02x.\n",
1317 param[0], param[1], param[2]);
1318 return -1;
1322 * Query touchpad's firmware version and see if it reports known
1323 * value to avoid mis-detection. Logitech mice are known to respond
1324 * to Elantech magic knock and there might be more.
1326 if (synaptics_send_cmd(psmouse, ETP_FW_VERSION_QUERY, param)) {
1327 psmouse_dbg(psmouse, "failed to query firmware version.\n");
1328 return -1;
1331 psmouse_dbg(psmouse,
1332 "Elantech version query result 0x%02x, 0x%02x, 0x%02x.\n",
1333 param[0], param[1], param[2]);
1335 if (!elantech_is_signature_valid(param)) {
1336 psmouse_dbg(psmouse,
1337 "Probably not a real Elantech touchpad. Aborting.\n");
1338 return -1;
1341 if (set_properties) {
1342 psmouse->vendor = "Elantech";
1343 psmouse->name = "Touchpad";
1346 return 0;
1350 * Clean up sysfs entries when disconnecting
1352 static void elantech_disconnect(struct psmouse *psmouse)
1354 sysfs_remove_group(&psmouse->ps2dev.serio->dev.kobj,
1355 &elantech_attr_group);
1356 kfree(psmouse->private);
1357 psmouse->private = NULL;
1361 * Put the touchpad back into absolute mode when reconnecting
1363 static int elantech_reconnect(struct psmouse *psmouse)
1365 psmouse_reset(psmouse);
1367 if (elantech_detect(psmouse, 0))
1368 return -1;
1370 if (elantech_set_absolute_mode(psmouse)) {
1371 psmouse_err(psmouse,
1372 "failed to put touchpad back into absolute mode.\n");
1373 return -1;
1376 return 0;
1380 * Some hw_version 4 models do not work with crc_disabled
1382 static const struct dmi_system_id elantech_dmi_force_crc_enabled[] = {
1383 #if defined(CONFIG_DMI) && defined(CONFIG_X86)
1385 /* Fujitsu H730 does not work with crc_enabled == 0 */
1386 .matches = {
1387 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
1388 DMI_MATCH(DMI_PRODUCT_NAME, "CELSIUS H730"),
1392 /* Fujitsu LIFEBOOK E554 does not work with crc_enabled == 0 */
1393 .matches = {
1394 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
1395 DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK E554"),
1399 /* Fujitsu LIFEBOOK E544 does not work with crc_enabled == 0 */
1400 .matches = {
1401 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
1402 DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK E544"),
1405 #endif
1410 * Some hw_version 3 models go into error state when we try to set
1411 * bit 3 and/or bit 1 of r10.
1413 static const struct dmi_system_id no_hw_res_dmi_table[] = {
1414 #if defined(CONFIG_DMI) && defined(CONFIG_X86)
1416 /* Gigabyte U2442 */
1417 .matches = {
1418 DMI_MATCH(DMI_SYS_VENDOR, "GIGABYTE"),
1419 DMI_MATCH(DMI_PRODUCT_NAME, "U2442"),
1423 /* Fujitsu LIFEBOOK U745 does not work with crc_enabled == 0 */
1424 .matches = {
1425 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
1426 DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK U745"),
1429 #endif
1434 * determine hardware version and set some properties according to it.
1436 static int elantech_set_properties(struct elantech_data *etd)
1438 /* This represents the version of IC body. */
1439 int ver = (etd->fw_version & 0x0f0000) >> 16;
1441 /* Early version of Elan touchpads doesn't obey the rule. */
1442 if (etd->fw_version < 0x020030 || etd->fw_version == 0x020600)
1443 etd->hw_version = 1;
1444 else {
1445 switch (ver) {
1446 case 2:
1447 case 4:
1448 etd->hw_version = 2;
1449 break;
1450 case 5:
1451 etd->hw_version = 3;
1452 break;
1453 case 6:
1454 case 7:
1455 case 8:
1456 etd->hw_version = 4;
1457 break;
1458 default:
1459 return -1;
1463 /* decide which send_cmd we're gonna use early */
1464 etd->send_cmd = etd->hw_version >= 3 ? elantech_send_cmd :
1465 synaptics_send_cmd;
1467 /* Turn on packet checking by default */
1468 etd->paritycheck = 1;
1471 * This firmware suffers from misreporting coordinates when
1472 * a touch action starts causing the mouse cursor or scrolled page
1473 * to jump. Enable a workaround.
1475 etd->jumpy_cursor =
1476 (etd->fw_version == 0x020022 || etd->fw_version == 0x020600);
1478 if (etd->hw_version > 1) {
1479 /* For now show extra debug information */
1480 etd->debug = 1;
1482 if (etd->fw_version >= 0x020800)
1483 etd->reports_pressure = true;
1487 * The signatures of v3 and v4 packets change depending on the
1488 * value of this hardware flag.
1490 etd->crc_enabled = (etd->fw_version & 0x4000) == 0x4000 ||
1491 dmi_check_system(elantech_dmi_force_crc_enabled);
1493 /* Enable real hardware resolution on hw_version 3 ? */
1494 etd->set_hw_resolution = !dmi_check_system(no_hw_res_dmi_table);
1496 return 0;
1500 * Initialize the touchpad and create sysfs entries
1502 int elantech_init(struct psmouse *psmouse)
1504 struct elantech_data *etd;
1505 int i, error;
1506 unsigned char param[3];
1508 psmouse->private = etd = kzalloc(sizeof(struct elantech_data), GFP_KERNEL);
1509 if (!etd)
1510 return -ENOMEM;
1512 psmouse_reset(psmouse);
1514 etd->parity[0] = 1;
1515 for (i = 1; i < 256; i++)
1516 etd->parity[i] = etd->parity[i & (i - 1)] ^ 1;
1519 * Do the version query again so we can store the result
1521 if (synaptics_send_cmd(psmouse, ETP_FW_VERSION_QUERY, param)) {
1522 psmouse_err(psmouse, "failed to query firmware version.\n");
1523 goto init_fail;
1525 etd->fw_version = (param[0] << 16) | (param[1] << 8) | param[2];
1527 if (elantech_set_properties(etd)) {
1528 psmouse_err(psmouse, "unknown hardware version, aborting...\n");
1529 goto init_fail;
1531 psmouse_info(psmouse,
1532 "assuming hardware version %d (with firmware version 0x%02x%02x%02x)\n",
1533 etd->hw_version, param[0], param[1], param[2]);
1535 if (etd->send_cmd(psmouse, ETP_CAPABILITIES_QUERY,
1536 etd->capabilities)) {
1537 psmouse_err(psmouse, "failed to query capabilities.\n");
1538 goto init_fail;
1540 psmouse_info(psmouse,
1541 "Synaptics capabilities query result 0x%02x, 0x%02x, 0x%02x.\n",
1542 etd->capabilities[0], etd->capabilities[1],
1543 etd->capabilities[2]);
1545 if (elantech_set_absolute_mode(psmouse)) {
1546 psmouse_err(psmouse,
1547 "failed to put touchpad into absolute mode.\n");
1548 goto init_fail;
1551 if (etd->fw_version == 0x381f17) {
1552 etd->original_set_rate = psmouse->set_rate;
1553 psmouse->set_rate = elantech_set_rate_restore_reg_07;
1556 if (elantech_set_input_params(psmouse)) {
1557 psmouse_err(psmouse, "failed to query touchpad range.\n");
1558 goto init_fail;
1561 error = sysfs_create_group(&psmouse->ps2dev.serio->dev.kobj,
1562 &elantech_attr_group);
1563 if (error) {
1564 psmouse_err(psmouse,
1565 "failed to create sysfs attributes, error: %d.\n",
1566 error);
1567 goto init_fail;
1570 psmouse->protocol_handler = elantech_process_byte;
1571 psmouse->disconnect = elantech_disconnect;
1572 psmouse->reconnect = elantech_reconnect;
1573 psmouse->pktsize = etd->hw_version > 1 ? 6 : 4;
1575 return 0;
1577 init_fail:
1578 kfree(etd);
1579 return -1;