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/slab.h>
15 #include <linux/module.h>
16 #include <linux/input.h>
17 #include <linux/input/mt.h>
18 #include <linux/serio.h>
19 #include <linux/libps2.h>
23 #define elantech_debug(fmt, ...) \
26 psmouse_printk(KERN_DEBUG, psmouse, \
27 fmt, ##__VA_ARGS__); \
31 * Send a Synaptics style sliced query command
33 static int synaptics_send_cmd(struct psmouse
*psmouse
, unsigned char c
,
36 if (psmouse_sliced_command(psmouse
, c
) ||
37 ps2_command(&psmouse
->ps2dev
, param
, PSMOUSE_CMD_GETINFO
)) {
38 psmouse_err(psmouse
, "%s query 0x%02x failed.\n", __func__
, c
);
46 * V3 and later support this fast command
48 static int elantech_send_cmd(struct psmouse
*psmouse
, unsigned char c
,
51 struct ps2dev
*ps2dev
= &psmouse
->ps2dev
;
53 if (ps2_command(ps2dev
, NULL
, ETP_PS2_CUSTOM_COMMAND
) ||
54 ps2_command(ps2dev
, NULL
, c
) ||
55 ps2_command(ps2dev
, param
, PSMOUSE_CMD_GETINFO
)) {
56 psmouse_err(psmouse
, "%s query 0x%02x failed.\n", __func__
, c
);
64 * A retrying version of ps2_command
66 static int elantech_ps2_command(struct psmouse
*psmouse
,
67 unsigned char *param
, int command
)
69 struct ps2dev
*ps2dev
= &psmouse
->ps2dev
;
70 struct elantech_data
*etd
= psmouse
->private;
72 int tries
= ETP_PS2_COMMAND_TRIES
;
75 rc
= ps2_command(ps2dev
, param
, command
);
79 elantech_debug("retrying ps2 command 0x%02x (%d).\n",
81 msleep(ETP_PS2_COMMAND_DELAY
);
85 psmouse_err(psmouse
, "ps2 command 0x%02x failed.\n", command
);
91 * Send an Elantech style special command to read a value from a register
93 static int elantech_read_reg(struct psmouse
*psmouse
, unsigned char reg
,
96 struct elantech_data
*etd
= psmouse
->private;
97 unsigned char param
[3];
100 if (reg
< 0x07 || reg
> 0x26)
103 if (reg
> 0x11 && reg
< 0x20)
106 switch (etd
->hw_version
) {
108 if (psmouse_sliced_command(psmouse
, ETP_REGISTER_READ
) ||
109 psmouse_sliced_command(psmouse
, reg
) ||
110 ps2_command(&psmouse
->ps2dev
, param
, PSMOUSE_CMD_GETINFO
)) {
116 if (elantech_ps2_command(psmouse
, NULL
, ETP_PS2_CUSTOM_COMMAND
) ||
117 elantech_ps2_command(psmouse
, NULL
, ETP_REGISTER_READ
) ||
118 elantech_ps2_command(psmouse
, NULL
, ETP_PS2_CUSTOM_COMMAND
) ||
119 elantech_ps2_command(psmouse
, NULL
, reg
) ||
120 elantech_ps2_command(psmouse
, param
, PSMOUSE_CMD_GETINFO
)) {
126 if (elantech_ps2_command(psmouse
, NULL
, ETP_PS2_CUSTOM_COMMAND
) ||
127 elantech_ps2_command(psmouse
, NULL
, ETP_REGISTER_READWRITE
) ||
128 elantech_ps2_command(psmouse
, NULL
, ETP_PS2_CUSTOM_COMMAND
) ||
129 elantech_ps2_command(psmouse
, NULL
, reg
) ||
130 elantech_ps2_command(psmouse
, param
, PSMOUSE_CMD_GETINFO
)) {
137 psmouse_err(psmouse
, "failed to read register 0x%02x.\n", reg
);
138 else if (etd
->hw_version
!= 4)
147 * Send an Elantech style special command to write a register with a value
149 static int elantech_write_reg(struct psmouse
*psmouse
, unsigned char reg
,
152 struct elantech_data
*etd
= psmouse
->private;
155 if (reg
< 0x07 || reg
> 0x26)
158 if (reg
> 0x11 && reg
< 0x20)
161 switch (etd
->hw_version
) {
163 if (psmouse_sliced_command(psmouse
, ETP_REGISTER_WRITE
) ||
164 psmouse_sliced_command(psmouse
, reg
) ||
165 psmouse_sliced_command(psmouse
, val
) ||
166 ps2_command(&psmouse
->ps2dev
, NULL
, PSMOUSE_CMD_SETSCALE11
)) {
172 if (elantech_ps2_command(psmouse
, NULL
, ETP_PS2_CUSTOM_COMMAND
) ||
173 elantech_ps2_command(psmouse
, NULL
, ETP_REGISTER_WRITE
) ||
174 elantech_ps2_command(psmouse
, NULL
, ETP_PS2_CUSTOM_COMMAND
) ||
175 elantech_ps2_command(psmouse
, NULL
, reg
) ||
176 elantech_ps2_command(psmouse
, NULL
, ETP_PS2_CUSTOM_COMMAND
) ||
177 elantech_ps2_command(psmouse
, NULL
, val
) ||
178 elantech_ps2_command(psmouse
, NULL
, PSMOUSE_CMD_SETSCALE11
)) {
184 if (elantech_ps2_command(psmouse
, NULL
, ETP_PS2_CUSTOM_COMMAND
) ||
185 elantech_ps2_command(psmouse
, NULL
, ETP_REGISTER_READWRITE
) ||
186 elantech_ps2_command(psmouse
, NULL
, ETP_PS2_CUSTOM_COMMAND
) ||
187 elantech_ps2_command(psmouse
, NULL
, reg
) ||
188 elantech_ps2_command(psmouse
, NULL
, ETP_PS2_CUSTOM_COMMAND
) ||
189 elantech_ps2_command(psmouse
, NULL
, val
) ||
190 elantech_ps2_command(psmouse
, NULL
, PSMOUSE_CMD_SETSCALE11
)) {
196 if (elantech_ps2_command(psmouse
, NULL
, ETP_PS2_CUSTOM_COMMAND
) ||
197 elantech_ps2_command(psmouse
, NULL
, ETP_REGISTER_READWRITE
) ||
198 elantech_ps2_command(psmouse
, NULL
, ETP_PS2_CUSTOM_COMMAND
) ||
199 elantech_ps2_command(psmouse
, NULL
, reg
) ||
200 elantech_ps2_command(psmouse
, NULL
, ETP_PS2_CUSTOM_COMMAND
) ||
201 elantech_ps2_command(psmouse
, NULL
, ETP_REGISTER_READWRITE
) ||
202 elantech_ps2_command(psmouse
, NULL
, ETP_PS2_CUSTOM_COMMAND
) ||
203 elantech_ps2_command(psmouse
, NULL
, val
) ||
204 elantech_ps2_command(psmouse
, NULL
, PSMOUSE_CMD_SETSCALE11
)) {
212 "failed to write register 0x%02x with value 0x%02x.\n",
219 * Dump a complete mouse movement packet to the syslog
221 static void elantech_packet_dump(struct psmouse
*psmouse
)
225 psmouse_printk(KERN_DEBUG
, psmouse
, "PS/2 packet [");
226 for (i
= 0; i
< psmouse
->pktsize
; i
++)
227 printk("%s0x%02x ", i
? ", " : " ", psmouse
->packet
[i
]);
232 * Interpret complete data packets and report absolute mode input events for
233 * hardware version 1. (4 byte packets)
235 static void elantech_report_absolute_v1(struct psmouse
*psmouse
)
237 struct input_dev
*dev
= psmouse
->dev
;
238 struct elantech_data
*etd
= psmouse
->private;
239 unsigned char *packet
= psmouse
->packet
;
242 if (etd
->fw_version
< 0x020000) {
244 * byte 0: D U p1 p2 1 p3 R L
245 * byte 1: f 0 th tw x9 x8 y9 y8
247 fingers
= ((packet
[1] & 0x80) >> 7) +
248 ((packet
[1] & 0x30) >> 4);
251 * byte 0: n1 n0 p2 p1 1 p3 R L
252 * byte 1: 0 0 0 0 x9 x8 y9 y8
254 fingers
= (packet
[0] & 0xc0) >> 6;
257 if (etd
->jumpy_cursor
) {
259 etd
->single_finger_reports
= 0;
260 } else if (etd
->single_finger_reports
< 2) {
261 /* Discard first 2 reports of one finger, bogus */
262 etd
->single_finger_reports
++;
263 elantech_debug("discarding packet\n");
268 input_report_key(dev
, BTN_TOUCH
, fingers
!= 0);
271 * byte 2: x7 x6 x5 x4 x3 x2 x1 x0
272 * byte 3: y7 y6 y5 y4 y3 y2 y1 y0
275 input_report_abs(dev
, ABS_X
,
276 ((packet
[1] & 0x0c) << 6) | packet
[2]);
277 input_report_abs(dev
, ABS_Y
,
278 etd
->y_max
- (((packet
[1] & 0x03) << 8) | packet
[3]));
281 input_report_key(dev
, BTN_TOOL_FINGER
, fingers
== 1);
282 input_report_key(dev
, BTN_TOOL_DOUBLETAP
, fingers
== 2);
283 input_report_key(dev
, BTN_TOOL_TRIPLETAP
, fingers
== 3);
284 input_report_key(dev
, BTN_LEFT
, packet
[0] & 0x01);
285 input_report_key(dev
, BTN_RIGHT
, packet
[0] & 0x02);
287 if (etd
->fw_version
< 0x020000 &&
288 (etd
->capabilities
[0] & ETP_CAP_HAS_ROCKER
)) {
290 input_report_key(dev
, BTN_FORWARD
, packet
[0] & 0x40);
292 input_report_key(dev
, BTN_BACK
, packet
[0] & 0x80);
298 static void elantech_set_slot(struct input_dev
*dev
, int slot
, bool active
,
299 unsigned int x
, unsigned int y
)
301 input_mt_slot(dev
, slot
);
302 input_mt_report_slot_state(dev
, MT_TOOL_FINGER
, active
);
304 input_report_abs(dev
, ABS_MT_POSITION_X
, x
);
305 input_report_abs(dev
, ABS_MT_POSITION_Y
, y
);
309 /* x1 < x2 and y1 < y2 when two fingers, x = y = 0 when not pressed */
310 static void elantech_report_semi_mt_data(struct input_dev
*dev
,
311 unsigned int num_fingers
,
312 unsigned int x1
, unsigned int y1
,
313 unsigned int x2
, unsigned int y2
)
315 elantech_set_slot(dev
, 0, num_fingers
!= 0, x1
, y1
);
316 elantech_set_slot(dev
, 1, num_fingers
== 2, x2
, y2
);
320 * Interpret complete data packets and report absolute mode input events for
321 * hardware version 2. (6 byte packets)
323 static void elantech_report_absolute_v2(struct psmouse
*psmouse
)
325 struct elantech_data
*etd
= psmouse
->private;
326 struct input_dev
*dev
= psmouse
->dev
;
327 unsigned char *packet
= psmouse
->packet
;
328 unsigned int fingers
, x1
= 0, y1
= 0, x2
= 0, y2
= 0;
329 unsigned int width
= 0, pres
= 0;
331 /* byte 0: n1 n0 . . . . R L */
332 fingers
= (packet
[0] & 0xc0) >> 6;
337 * Same as one finger, except report of more than 3 fingers:
338 * byte 3: n4 . w1 w0 . . . .
340 if (packet
[3] & 0x80)
342 /* pass through... */
345 * byte 1: . . . . x11 x10 x9 x8
346 * byte 2: x7 x6 x5 x4 x4 x2 x1 x0
348 x1
= ((packet
[1] & 0x0f) << 8) | packet
[2];
350 * byte 4: . . . . y11 y10 y9 y8
351 * byte 5: y7 y6 y5 y4 y3 y2 y1 y0
353 y1
= etd
->y_max
- (((packet
[4] & 0x0f) << 8) | packet
[5]);
355 pres
= (packet
[1] & 0xf0) | ((packet
[4] & 0xf0) >> 4);
356 width
= ((packet
[0] & 0x30) >> 2) | ((packet
[3] & 0x30) >> 4);
361 * The coordinate of each finger is reported separately
362 * with a lower resolution for two finger touches:
363 * byte 0: . . ay8 ax8 . . . .
364 * byte 1: ax7 ax6 ax5 ax4 ax3 ax2 ax1 ax0
366 x1
= (((packet
[0] & 0x10) << 4) | packet
[1]) << 2;
367 /* byte 2: ay7 ay6 ay5 ay4 ay3 ay2 ay1 ay0 */
369 ((((packet
[0] & 0x20) << 3) | packet
[2]) << 2);
371 * byte 3: . . by8 bx8 . . . .
372 * byte 4: bx7 bx6 bx5 bx4 bx3 bx2 bx1 bx0
374 x2
= (((packet
[3] & 0x10) << 4) | packet
[4]) << 2;
375 /* byte 5: by7 by8 by5 by4 by3 by2 by1 by0 */
377 ((((packet
[3] & 0x20) << 3) | packet
[5]) << 2);
379 /* Unknown so just report sensible values */
385 input_report_key(dev
, BTN_TOUCH
, fingers
!= 0);
387 input_report_abs(dev
, ABS_X
, x1
);
388 input_report_abs(dev
, ABS_Y
, y1
);
390 elantech_report_semi_mt_data(dev
, fingers
, x1
, y1
, x2
, y2
);
391 input_report_key(dev
, BTN_TOOL_FINGER
, fingers
== 1);
392 input_report_key(dev
, BTN_TOOL_DOUBLETAP
, fingers
== 2);
393 input_report_key(dev
, BTN_TOOL_TRIPLETAP
, fingers
== 3);
394 input_report_key(dev
, BTN_TOOL_QUADTAP
, fingers
== 4);
395 input_report_key(dev
, BTN_LEFT
, packet
[0] & 0x01);
396 input_report_key(dev
, BTN_RIGHT
, packet
[0] & 0x02);
397 if (etd
->reports_pressure
) {
398 input_report_abs(dev
, ABS_PRESSURE
, pres
);
399 input_report_abs(dev
, ABS_TOOL_WIDTH
, width
);
406 * Interpret complete data packets and report absolute mode input events for
407 * hardware version 3. (12 byte packets for two fingers)
409 static void elantech_report_absolute_v3(struct psmouse
*psmouse
,
412 struct input_dev
*dev
= psmouse
->dev
;
413 struct elantech_data
*etd
= psmouse
->private;
414 unsigned char *packet
= psmouse
->packet
;
415 unsigned int fingers
= 0, x1
= 0, y1
= 0, x2
= 0, y2
= 0;
416 unsigned int width
= 0, pres
= 0;
418 /* byte 0: n1 n0 . . . . R L */
419 fingers
= (packet
[0] & 0xc0) >> 6;
425 * byte 1: . . . . x11 x10 x9 x8
426 * byte 2: x7 x6 x5 x4 x4 x2 x1 x0
428 x1
= ((packet
[1] & 0x0f) << 8) | packet
[2];
430 * byte 4: . . . . y11 y10 y9 y8
431 * byte 5: y7 y6 y5 y4 y3 y2 y1 y0
433 y1
= etd
->y_max
- (((packet
[4] & 0x0f) << 8) | packet
[5]);
437 if (packet_type
== PACKET_V3_HEAD
) {
439 * byte 1: . . . . ax11 ax10 ax9 ax8
440 * byte 2: ax7 ax6 ax5 ax4 ax3 ax2 ax1 ax0
442 etd
->mt
[0].x
= ((packet
[1] & 0x0f) << 8) | packet
[2];
444 * byte 4: . . . . ay11 ay10 ay9 ay8
445 * byte 5: ay7 ay6 ay5 ay4 ay3 ay2 ay1 ay0
447 etd
->mt
[0].y
= etd
->y_max
-
448 (((packet
[4] & 0x0f) << 8) | packet
[5]);
450 * wait for next packet
455 /* packet_type == PACKET_V3_TAIL */
458 x2
= ((packet
[1] & 0x0f) << 8) | packet
[2];
459 y2
= etd
->y_max
- (((packet
[4] & 0x0f) << 8) | packet
[5]);
463 pres
= (packet
[1] & 0xf0) | ((packet
[4] & 0xf0) >> 4);
464 width
= ((packet
[0] & 0x30) >> 2) | ((packet
[3] & 0x30) >> 4);
466 input_report_key(dev
, BTN_TOUCH
, fingers
!= 0);
468 input_report_abs(dev
, ABS_X
, x1
);
469 input_report_abs(dev
, ABS_Y
, y1
);
471 elantech_report_semi_mt_data(dev
, fingers
, x1
, y1
, x2
, y2
);
472 input_report_key(dev
, BTN_TOOL_FINGER
, fingers
== 1);
473 input_report_key(dev
, BTN_TOOL_DOUBLETAP
, fingers
== 2);
474 input_report_key(dev
, BTN_TOOL_TRIPLETAP
, fingers
== 3);
475 input_report_key(dev
, BTN_LEFT
, packet
[0] & 0x01);
476 input_report_key(dev
, BTN_RIGHT
, packet
[0] & 0x02);
477 input_report_abs(dev
, ABS_PRESSURE
, pres
);
478 input_report_abs(dev
, ABS_TOOL_WIDTH
, width
);
483 static void elantech_input_sync_v4(struct psmouse
*psmouse
)
485 struct input_dev
*dev
= psmouse
->dev
;
486 unsigned char *packet
= psmouse
->packet
;
488 input_report_key(dev
, BTN_LEFT
, packet
[0] & 0x01);
489 input_report_key(dev
, BTN_RIGHT
, packet
[0] & 0x02);
490 input_mt_report_pointer_emulation(dev
, true);
494 static void process_packet_status_v4(struct psmouse
*psmouse
)
496 struct input_dev
*dev
= psmouse
->dev
;
497 unsigned char *packet
= psmouse
->packet
;
501 /* notify finger state change */
502 fingers
= packet
[1] & 0x1f;
503 for (i
= 0; i
< ETP_MAX_FINGERS
; i
++) {
504 if ((fingers
& (1 << i
)) == 0) {
505 input_mt_slot(dev
, i
);
506 input_mt_report_slot_state(dev
, MT_TOOL_FINGER
, false);
510 elantech_input_sync_v4(psmouse
);
513 static void process_packet_head_v4(struct psmouse
*psmouse
)
515 struct input_dev
*dev
= psmouse
->dev
;
516 struct elantech_data
*etd
= psmouse
->private;
517 unsigned char *packet
= psmouse
->packet
;
518 int id
= ((packet
[3] & 0xe0) >> 5) - 1;
524 etd
->mt
[id
].x
= ((packet
[1] & 0x0f) << 8) | packet
[2];
525 etd
->mt
[id
].y
= etd
->y_max
- (((packet
[4] & 0x0f) << 8) | packet
[5]);
526 pres
= (packet
[1] & 0xf0) | ((packet
[4] & 0xf0) >> 4);
527 traces
= (packet
[0] & 0xf0) >> 4;
529 input_mt_slot(dev
, id
);
530 input_mt_report_slot_state(dev
, MT_TOOL_FINGER
, true);
532 input_report_abs(dev
, ABS_MT_POSITION_X
, etd
->mt
[id
].x
);
533 input_report_abs(dev
, ABS_MT_POSITION_Y
, etd
->mt
[id
].y
);
534 input_report_abs(dev
, ABS_MT_PRESSURE
, pres
);
535 input_report_abs(dev
, ABS_MT_TOUCH_MAJOR
, traces
* etd
->width
);
536 /* report this for backwards compatibility */
537 input_report_abs(dev
, ABS_TOOL_WIDTH
, traces
);
539 elantech_input_sync_v4(psmouse
);
542 static void process_packet_motion_v4(struct psmouse
*psmouse
)
544 struct input_dev
*dev
= psmouse
->dev
;
545 struct elantech_data
*etd
= psmouse
->private;
546 unsigned char *packet
= psmouse
->packet
;
547 int weight
, delta_x1
= 0, delta_y1
= 0, delta_x2
= 0, delta_y2
= 0;
550 id
= ((packet
[0] & 0xe0) >> 5) - 1;
554 sid
= ((packet
[3] & 0xe0) >> 5) - 1;
555 weight
= (packet
[0] & 0x10) ? ETP_WEIGHT_VALUE
: 1;
557 * Motion packets give us the delta of x, y values of specific fingers,
558 * but in two's complement. Let the compiler do the conversion for us.
559 * Also _enlarge_ the numbers to int, in case of overflow.
561 delta_x1
= (signed char)packet
[1];
562 delta_y1
= (signed char)packet
[2];
563 delta_x2
= (signed char)packet
[4];
564 delta_y2
= (signed char)packet
[5];
566 etd
->mt
[id
].x
+= delta_x1
* weight
;
567 etd
->mt
[id
].y
-= delta_y1
* weight
;
568 input_mt_slot(dev
, id
);
569 input_report_abs(dev
, ABS_MT_POSITION_X
, etd
->mt
[id
].x
);
570 input_report_abs(dev
, ABS_MT_POSITION_Y
, etd
->mt
[id
].y
);
573 etd
->mt
[sid
].x
+= delta_x2
* weight
;
574 etd
->mt
[sid
].y
-= delta_y2
* weight
;
575 input_mt_slot(dev
, sid
);
576 input_report_abs(dev
, ABS_MT_POSITION_X
, etd
->mt
[sid
].x
);
577 input_report_abs(dev
, ABS_MT_POSITION_Y
, etd
->mt
[sid
].y
);
580 elantech_input_sync_v4(psmouse
);
583 static void elantech_report_absolute_v4(struct psmouse
*psmouse
,
586 switch (packet_type
) {
587 case PACKET_V4_STATUS
:
588 process_packet_status_v4(psmouse
);
592 process_packet_head_v4(psmouse
);
595 case PACKET_V4_MOTION
:
596 process_packet_motion_v4(psmouse
);
601 /* impossible to get here */
606 static int elantech_packet_check_v1(struct psmouse
*psmouse
)
608 struct elantech_data
*etd
= psmouse
->private;
609 unsigned char *packet
= psmouse
->packet
;
610 unsigned char p1
, p2
, p3
;
612 /* Parity bits are placed differently */
613 if (etd
->fw_version
< 0x020000) {
614 /* byte 0: D U p1 p2 1 p3 R L */
615 p1
= (packet
[0] & 0x20) >> 5;
616 p2
= (packet
[0] & 0x10) >> 4;
618 /* byte 0: n1 n0 p2 p1 1 p3 R L */
619 p1
= (packet
[0] & 0x10) >> 4;
620 p2
= (packet
[0] & 0x20) >> 5;
623 p3
= (packet
[0] & 0x04) >> 2;
625 return etd
->parity
[packet
[1]] == p1
&&
626 etd
->parity
[packet
[2]] == p2
&&
627 etd
->parity
[packet
[3]] == p3
;
630 static int elantech_debounce_check_v2(struct psmouse
*psmouse
)
633 * When we encounter packet that matches this exactly, it means the
634 * hardware is in debounce status. Just ignore the whole packet.
636 const u8 debounce_packet
[] = { 0x84, 0xff, 0xff, 0x02, 0xff, 0xff };
637 unsigned char *packet
= psmouse
->packet
;
639 return !memcmp(packet
, debounce_packet
, sizeof(debounce_packet
));
642 static int elantech_packet_check_v2(struct psmouse
*psmouse
)
644 struct elantech_data
*etd
= psmouse
->private;
645 unsigned char *packet
= psmouse
->packet
;
648 * V2 hardware has two flavors. Older ones that do not report pressure,
649 * and newer ones that reports pressure and width. With newer ones, all
650 * packets (1, 2, 3 finger touch) have the same constant bits. With
651 * older ones, 1/3 finger touch packets and 2 finger touch packets
652 * have different constant bits.
653 * With all three cases, if the constant bits are not exactly what I
654 * expected, I consider them invalid.
656 if (etd
->reports_pressure
)
657 return (packet
[0] & 0x0c) == 0x04 &&
658 (packet
[3] & 0x0f) == 0x02;
660 if ((packet
[0] & 0xc0) == 0x80)
661 return (packet
[0] & 0x0c) == 0x0c &&
662 (packet
[3] & 0x0e) == 0x08;
664 return (packet
[0] & 0x3c) == 0x3c &&
665 (packet
[1] & 0xf0) == 0x00 &&
666 (packet
[3] & 0x3e) == 0x38 &&
667 (packet
[4] & 0xf0) == 0x00;
671 * We check the constant bits to determine what packet type we get,
672 * so packet checking is mandatory for v3 and later hardware.
674 static int elantech_packet_check_v3(struct psmouse
*psmouse
)
676 struct elantech_data
*etd
= psmouse
->private;
677 const u8 debounce_packet
[] = { 0xc4, 0xff, 0xff, 0x02, 0xff, 0xff };
678 unsigned char *packet
= psmouse
->packet
;
681 * check debounce first, it has the same signature in byte 0
682 * and byte 3 as PACKET_V3_HEAD.
684 if (!memcmp(packet
, debounce_packet
, sizeof(debounce_packet
)))
685 return PACKET_DEBOUNCE
;
688 * If the hardware flag 'crc_enabled' is set the packets have
689 * different signatures.
691 if (etd
->crc_enabled
) {
692 if ((packet
[3] & 0x09) == 0x08)
693 return PACKET_V3_HEAD
;
695 if ((packet
[3] & 0x09) == 0x09)
696 return PACKET_V3_TAIL
;
698 if ((packet
[0] & 0x0c) == 0x04 && (packet
[3] & 0xcf) == 0x02)
699 return PACKET_V3_HEAD
;
701 if ((packet
[0] & 0x0c) == 0x0c && (packet
[3] & 0xce) == 0x0c)
702 return PACKET_V3_TAIL
;
705 return PACKET_UNKNOWN
;
708 static int elantech_packet_check_v4(struct psmouse
*psmouse
)
710 struct elantech_data
*etd
= psmouse
->private;
711 unsigned char *packet
= psmouse
->packet
;
712 unsigned char packet_type
= packet
[3] & 0x03;
716 * Sanity check based on the constant bits of a packet.
717 * The constant bits change depending on the value of
718 * the hardware flag 'crc_enabled' but are the same for
719 * every packet, regardless of the type.
721 if (etd
->crc_enabled
)
722 sanity_check
= ((packet
[3] & 0x08) == 0x00);
724 sanity_check
= ((packet
[0] & 0x0c) == 0x04 &&
725 (packet
[3] & 0x1c) == 0x10);
728 return PACKET_UNKNOWN
;
730 switch (packet_type
) {
732 return PACKET_V4_STATUS
;
735 return PACKET_V4_HEAD
;
738 return PACKET_V4_MOTION
;
741 return PACKET_UNKNOWN
;
745 * Process byte stream from mouse and handle complete packets
747 static psmouse_ret_t
elantech_process_byte(struct psmouse
*psmouse
)
749 struct elantech_data
*etd
= psmouse
->private;
752 if (psmouse
->pktcnt
< psmouse
->pktsize
)
753 return PSMOUSE_GOOD_DATA
;
756 elantech_packet_dump(psmouse
);
758 switch (etd
->hw_version
) {
760 if (etd
->paritycheck
&& !elantech_packet_check_v1(psmouse
))
761 return PSMOUSE_BAD_DATA
;
763 elantech_report_absolute_v1(psmouse
);
767 /* ignore debounce */
768 if (elantech_debounce_check_v2(psmouse
))
769 return PSMOUSE_FULL_PACKET
;
771 if (etd
->paritycheck
&& !elantech_packet_check_v2(psmouse
))
772 return PSMOUSE_BAD_DATA
;
774 elantech_report_absolute_v2(psmouse
);
778 packet_type
= elantech_packet_check_v3(psmouse
);
779 /* ignore debounce */
780 if (packet_type
== PACKET_DEBOUNCE
)
781 return PSMOUSE_FULL_PACKET
;
783 if (packet_type
== PACKET_UNKNOWN
)
784 return PSMOUSE_BAD_DATA
;
786 elantech_report_absolute_v3(psmouse
, packet_type
);
790 packet_type
= elantech_packet_check_v4(psmouse
);
791 if (packet_type
== PACKET_UNKNOWN
)
792 return PSMOUSE_BAD_DATA
;
794 elantech_report_absolute_v4(psmouse
, packet_type
);
798 return PSMOUSE_FULL_PACKET
;
802 * Put the touchpad into absolute mode
804 static int elantech_set_absolute_mode(struct psmouse
*psmouse
)
806 struct elantech_data
*etd
= psmouse
->private;
808 int tries
= ETP_READ_BACK_TRIES
;
811 switch (etd
->hw_version
) {
815 if (elantech_write_reg(psmouse
, 0x10, etd
->reg_10
) ||
816 elantech_write_reg(psmouse
, 0x11, etd
->reg_11
)) {
822 /* Windows driver values */
824 etd
->reg_11
= 0x88; /* 0x8a */
825 etd
->reg_21
= 0x60; /* 0x00 */
826 if (elantech_write_reg(psmouse
, 0x10, etd
->reg_10
) ||
827 elantech_write_reg(psmouse
, 0x11, etd
->reg_11
) ||
828 elantech_write_reg(psmouse
, 0x21, etd
->reg_21
)) {
835 if (elantech_write_reg(psmouse
, 0x10, etd
->reg_10
))
842 if (elantech_write_reg(psmouse
, 0x07, etd
->reg_07
))
845 goto skip_readback_reg_10
; /* v4 has no reg 0x10 to read */
850 * Read back reg 0x10. For hardware version 1 we must make
851 * sure the absolute mode bit is set. For hardware version 2
852 * the touchpad is probably initializing and not ready until
853 * we read back the value we just wrote.
856 rc
= elantech_read_reg(psmouse
, 0x10, &val
);
860 elantech_debug("retrying read (%d).\n", tries
);
861 msleep(ETP_READ_BACK_DELAY
);
866 "failed to read back register 0x10.\n");
867 } else if (etd
->hw_version
== 1 &&
868 !(val
& ETP_R10_ABSOLUTE_MODE
)) {
870 "touchpad refuses to switch to absolute mode.\n");
875 skip_readback_reg_10
:
877 psmouse_err(psmouse
, "failed to initialise registers.\n");
882 static int elantech_set_range(struct psmouse
*psmouse
,
883 unsigned int *x_min
, unsigned int *y_min
,
884 unsigned int *x_max
, unsigned int *y_max
,
887 struct elantech_data
*etd
= psmouse
->private;
888 unsigned char param
[3];
889 unsigned char traces
;
891 switch (etd
->hw_version
) {
893 *x_min
= ETP_XMIN_V1
;
894 *y_min
= ETP_YMIN_V1
;
895 *x_max
= ETP_XMAX_V1
;
896 *y_max
= ETP_YMAX_V1
;
900 if (etd
->fw_version
== 0x020800 ||
901 etd
->fw_version
== 0x020b00 ||
902 etd
->fw_version
== 0x020030) {
903 *x_min
= ETP_XMIN_V2
;
904 *y_min
= ETP_YMIN_V2
;
905 *x_max
= ETP_XMAX_V2
;
906 *y_max
= ETP_YMAX_V2
;
911 i
= (etd
->fw_version
> 0x020800 &&
912 etd
->fw_version
< 0x020900) ? 1 : 2;
914 if (etd
->send_cmd(psmouse
, ETP_FW_ID_QUERY
, param
))
917 fixed_dpi
= param
[1] & 0x10;
919 if (((etd
->fw_version
>> 16) == 0x14) && fixed_dpi
) {
920 if (etd
->send_cmd(psmouse
, ETP_SAMPLE_QUERY
, param
))
923 *x_max
= (etd
->capabilities
[1] - i
) * param
[1] / 2;
924 *y_max
= (etd
->capabilities
[2] - i
) * param
[2] / 2;
925 } else if (etd
->fw_version
== 0x040216) {
928 } else if (etd
->fw_version
== 0x040219 || etd
->fw_version
== 0x040215) {
932 *x_max
= (etd
->capabilities
[1] - i
) * 64;
933 *y_max
= (etd
->capabilities
[2] - i
) * 64;
939 if (etd
->send_cmd(psmouse
, ETP_FW_ID_QUERY
, param
))
942 *x_max
= (0x0f & param
[0]) << 8 | param
[1];
943 *y_max
= (0xf0 & param
[0]) << 4 | param
[2];
947 if (etd
->send_cmd(psmouse
, ETP_FW_ID_QUERY
, param
))
950 *x_max
= (0x0f & param
[0]) << 8 | param
[1];
951 *y_max
= (0xf0 & param
[0]) << 4 | param
[2];
952 traces
= etd
->capabilities
[1];
953 if ((traces
< 2) || (traces
> *x_max
))
956 *width
= *x_max
/ (traces
- 1);
964 * (value from firmware) * 10 + 790 = dpi
965 * we also have to convert dpi to dots/mm (*10/254 to avoid floating point)
967 static unsigned int elantech_convert_res(unsigned int val
)
969 return (val
* 10 + 790) * 10 / 254;
972 static int elantech_get_resolution_v4(struct psmouse
*psmouse
,
976 unsigned char param
[3];
978 if (elantech_send_cmd(psmouse
, ETP_RESOLUTION_QUERY
, param
))
981 *x_res
= elantech_convert_res(param
[1] & 0x0f);
982 *y_res
= elantech_convert_res((param
[1] & 0xf0) >> 4);
988 * Advertise INPUT_PROP_BUTTONPAD for clickpads. The testing of bit 12 in
989 * fw_version for this is based on the following fw_version & caps table:
991 * Laptop-model: fw_version: caps: buttons:
992 * Acer S3 0x461f00 10, 13, 0e clickpad
993 * Acer S7-392 0x581f01 50, 17, 0d clickpad
994 * Acer V5-131 0x461f02 01, 16, 0c clickpad
995 * Acer V5-551 0x461f00 ? clickpad
996 * Asus K53SV 0x450f01 78, 15, 0c 2 hw buttons
997 * Asus G46VW 0x460f02 00, 18, 0c 2 hw buttons
998 * Asus G750JX 0x360f00 00, 16, 0c 2 hw buttons
999 * Asus UX31 0x361f00 20, 15, 0e clickpad
1000 * Asus UX32VD 0x361f02 00, 15, 0e clickpad
1001 * Avatar AVIU-145A2 0x361f00 ? clickpad
1002 * Gigabyte U2442 0x450f01 58, 17, 0c 2 hw buttons
1003 * Lenovo L430 0x350f02 b9, 15, 0c 2 hw buttons (*)
1004 * Samsung NF210 0x150b00 78, 14, 0a 2 hw buttons
1005 * Samsung NP770Z5E 0x575f01 10, 15, 0f clickpad
1006 * Samsung NP700Z5B 0x361f06 21, 15, 0f clickpad
1007 * Samsung NP900X3E-A02 0x575f03 ? clickpad
1008 * Samsung NP-QX410 0x851b00 19, 14, 0c clickpad
1009 * Samsung RC512 0x450f00 08, 15, 0c 2 hw buttons
1010 * Samsung RF710 0x450f00 ? 2 hw buttons
1011 * System76 Pangolin 0x250f01 ? 2 hw buttons
1012 * (*) + 3 trackpoint buttons
1014 static void elantech_set_buttonpad_prop(struct psmouse
*psmouse
)
1016 struct input_dev
*dev
= psmouse
->dev
;
1017 struct elantech_data
*etd
= psmouse
->private;
1019 if (etd
->fw_version
& 0x001000) {
1020 __set_bit(INPUT_PROP_BUTTONPAD
, dev
->propbit
);
1021 __clear_bit(BTN_RIGHT
, dev
->keybit
);
1026 * Set the appropriate event bits for the input subsystem
1028 static int elantech_set_input_params(struct psmouse
*psmouse
)
1030 struct input_dev
*dev
= psmouse
->dev
;
1031 struct elantech_data
*etd
= psmouse
->private;
1032 unsigned int x_min
= 0, y_min
= 0, x_max
= 0, y_max
= 0, width
= 0;
1033 unsigned int x_res
= 0, y_res
= 0;
1035 if (elantech_set_range(psmouse
, &x_min
, &y_min
, &x_max
, &y_max
, &width
))
1038 __set_bit(INPUT_PROP_POINTER
, dev
->propbit
);
1039 __set_bit(EV_KEY
, dev
->evbit
);
1040 __set_bit(EV_ABS
, dev
->evbit
);
1041 __clear_bit(EV_REL
, dev
->evbit
);
1043 __set_bit(BTN_LEFT
, dev
->keybit
);
1044 __set_bit(BTN_RIGHT
, dev
->keybit
);
1046 __set_bit(BTN_TOUCH
, dev
->keybit
);
1047 __set_bit(BTN_TOOL_FINGER
, dev
->keybit
);
1048 __set_bit(BTN_TOOL_DOUBLETAP
, dev
->keybit
);
1049 __set_bit(BTN_TOOL_TRIPLETAP
, dev
->keybit
);
1051 switch (etd
->hw_version
) {
1054 if (etd
->fw_version
< 0x020000 &&
1055 (etd
->capabilities
[0] & ETP_CAP_HAS_ROCKER
)) {
1056 __set_bit(BTN_FORWARD
, dev
->keybit
);
1057 __set_bit(BTN_BACK
, dev
->keybit
);
1059 input_set_abs_params(dev
, ABS_X
, x_min
, x_max
, 0, 0);
1060 input_set_abs_params(dev
, ABS_Y
, y_min
, y_max
, 0, 0);
1064 __set_bit(BTN_TOOL_QUADTAP
, dev
->keybit
);
1065 __set_bit(INPUT_PROP_SEMI_MT
, dev
->propbit
);
1068 if (etd
->hw_version
== 3)
1069 elantech_set_buttonpad_prop(psmouse
);
1070 input_set_abs_params(dev
, ABS_X
, x_min
, x_max
, 0, 0);
1071 input_set_abs_params(dev
, ABS_Y
, y_min
, y_max
, 0, 0);
1072 if (etd
->reports_pressure
) {
1073 input_set_abs_params(dev
, ABS_PRESSURE
, ETP_PMIN_V2
,
1075 input_set_abs_params(dev
, ABS_TOOL_WIDTH
, ETP_WMIN_V2
,
1078 input_mt_init_slots(dev
, 2, 0);
1079 input_set_abs_params(dev
, ABS_MT_POSITION_X
, x_min
, x_max
, 0, 0);
1080 input_set_abs_params(dev
, ABS_MT_POSITION_Y
, y_min
, y_max
, 0, 0);
1084 if (elantech_get_resolution_v4(psmouse
, &x_res
, &y_res
)) {
1086 * if query failed, print a warning and leave the values
1087 * zero to resemble synaptics.c behavior.
1089 psmouse_warn(psmouse
, "couldn't query resolution data.\n");
1091 elantech_set_buttonpad_prop(psmouse
);
1092 __set_bit(BTN_TOOL_QUADTAP
, dev
->keybit
);
1093 /* For X to recognize me as touchpad. */
1094 input_set_abs_params(dev
, ABS_X
, x_min
, x_max
, 0, 0);
1095 input_set_abs_params(dev
, ABS_Y
, y_min
, y_max
, 0, 0);
1096 input_abs_set_res(dev
, ABS_X
, x_res
);
1097 input_abs_set_res(dev
, ABS_Y
, y_res
);
1099 * range of pressure and width is the same as v2,
1100 * report ABS_PRESSURE, ABS_TOOL_WIDTH for compatibility.
1102 input_set_abs_params(dev
, ABS_PRESSURE
, ETP_PMIN_V2
,
1104 input_set_abs_params(dev
, ABS_TOOL_WIDTH
, ETP_WMIN_V2
,
1106 /* Multitouch capable pad, up to 5 fingers. */
1107 input_mt_init_slots(dev
, ETP_MAX_FINGERS
, 0);
1108 input_set_abs_params(dev
, ABS_MT_POSITION_X
, x_min
, x_max
, 0, 0);
1109 input_set_abs_params(dev
, ABS_MT_POSITION_Y
, y_min
, y_max
, 0, 0);
1110 input_abs_set_res(dev
, ABS_MT_POSITION_X
, x_res
);
1111 input_abs_set_res(dev
, ABS_MT_POSITION_Y
, y_res
);
1112 input_set_abs_params(dev
, ABS_MT_PRESSURE
, ETP_PMIN_V2
,
1115 * The firmware reports how many trace lines the finger spans,
1116 * convert to surface unit as Protocol-B requires.
1118 input_set_abs_params(dev
, ABS_MT_TOUCH_MAJOR
, 0,
1119 ETP_WMAX_V2
* width
, 0, 0);
1129 struct elantech_attr_data
{
1130 size_t field_offset
;
1135 * Display a register value by reading a sysfs entry
1137 static ssize_t
elantech_show_int_attr(struct psmouse
*psmouse
, void *data
,
1140 struct elantech_data
*etd
= psmouse
->private;
1141 struct elantech_attr_data
*attr
= data
;
1142 unsigned char *reg
= (unsigned char *) etd
+ attr
->field_offset
;
1146 rc
= elantech_read_reg(psmouse
, attr
->reg
, reg
);
1148 return sprintf(buf
, "0x%02x\n", (attr
->reg
&& rc
) ? -1 : *reg
);
1152 * Write a register value by writing a sysfs entry
1154 static ssize_t
elantech_set_int_attr(struct psmouse
*psmouse
,
1155 void *data
, const char *buf
, size_t count
)
1157 struct elantech_data
*etd
= psmouse
->private;
1158 struct elantech_attr_data
*attr
= data
;
1159 unsigned char *reg
= (unsigned char *) etd
+ attr
->field_offset
;
1160 unsigned char value
;
1163 err
= kstrtou8(buf
, 16, &value
);
1167 /* Do we need to preserve some bits for version 2 hardware too? */
1168 if (etd
->hw_version
== 1) {
1169 if (attr
->reg
== 0x10)
1170 /* Force absolute mode always on */
1171 value
|= ETP_R10_ABSOLUTE_MODE
;
1172 else if (attr
->reg
== 0x11)
1173 /* Force 4 byte mode always on */
1174 value
|= ETP_R11_4_BYTE_MODE
;
1177 if (!attr
->reg
|| elantech_write_reg(psmouse
, attr
->reg
, value
) == 0)
1183 #define ELANTECH_INT_ATTR(_name, _register) \
1184 static struct elantech_attr_data elantech_attr_##_name = { \
1185 .field_offset = offsetof(struct elantech_data, _name), \
1188 PSMOUSE_DEFINE_ATTR(_name, S_IWUSR | S_IRUGO, \
1189 &elantech_attr_##_name, \
1190 elantech_show_int_attr, \
1191 elantech_set_int_attr)
1193 ELANTECH_INT_ATTR(reg_07
, 0x07);
1194 ELANTECH_INT_ATTR(reg_10
, 0x10);
1195 ELANTECH_INT_ATTR(reg_11
, 0x11);
1196 ELANTECH_INT_ATTR(reg_20
, 0x20);
1197 ELANTECH_INT_ATTR(reg_21
, 0x21);
1198 ELANTECH_INT_ATTR(reg_22
, 0x22);
1199 ELANTECH_INT_ATTR(reg_23
, 0x23);
1200 ELANTECH_INT_ATTR(reg_24
, 0x24);
1201 ELANTECH_INT_ATTR(reg_25
, 0x25);
1202 ELANTECH_INT_ATTR(reg_26
, 0x26);
1203 ELANTECH_INT_ATTR(debug
, 0);
1204 ELANTECH_INT_ATTR(paritycheck
, 0);
1206 static struct attribute
*elantech_attrs
[] = {
1207 &psmouse_attr_reg_07
.dattr
.attr
,
1208 &psmouse_attr_reg_10
.dattr
.attr
,
1209 &psmouse_attr_reg_11
.dattr
.attr
,
1210 &psmouse_attr_reg_20
.dattr
.attr
,
1211 &psmouse_attr_reg_21
.dattr
.attr
,
1212 &psmouse_attr_reg_22
.dattr
.attr
,
1213 &psmouse_attr_reg_23
.dattr
.attr
,
1214 &psmouse_attr_reg_24
.dattr
.attr
,
1215 &psmouse_attr_reg_25
.dattr
.attr
,
1216 &psmouse_attr_reg_26
.dattr
.attr
,
1217 &psmouse_attr_debug
.dattr
.attr
,
1218 &psmouse_attr_paritycheck
.dattr
.attr
,
1222 static struct attribute_group elantech_attr_group
= {
1223 .attrs
= elantech_attrs
,
1226 static bool elantech_is_signature_valid(const unsigned char *param
)
1228 static const unsigned char rates
[] = { 200, 100, 80, 60, 40, 20, 10 };
1237 for (i
= 0; i
< ARRAY_SIZE(rates
); i
++)
1238 if (param
[2] == rates
[i
])
1245 * Use magic knock to detect Elantech touchpad
1247 int elantech_detect(struct psmouse
*psmouse
, bool set_properties
)
1249 struct ps2dev
*ps2dev
= &psmouse
->ps2dev
;
1250 unsigned char param
[3];
1252 ps2_command(&psmouse
->ps2dev
, NULL
, PSMOUSE_CMD_RESET_DIS
);
1254 if (ps2_command(ps2dev
, NULL
, PSMOUSE_CMD_DISABLE
) ||
1255 ps2_command(ps2dev
, NULL
, PSMOUSE_CMD_SETSCALE11
) ||
1256 ps2_command(ps2dev
, NULL
, PSMOUSE_CMD_SETSCALE11
) ||
1257 ps2_command(ps2dev
, NULL
, PSMOUSE_CMD_SETSCALE11
) ||
1258 ps2_command(ps2dev
, param
, PSMOUSE_CMD_GETINFO
)) {
1259 psmouse_dbg(psmouse
, "sending Elantech magic knock failed.\n");
1264 * Report this in case there are Elantech models that use a different
1265 * set of magic numbers
1267 if (param
[0] != 0x3c || param
[1] != 0x03 ||
1268 (param
[2] != 0xc8 && param
[2] != 0x00)) {
1269 psmouse_dbg(psmouse
,
1270 "unexpected magic knock result 0x%02x, 0x%02x, 0x%02x.\n",
1271 param
[0], param
[1], param
[2]);
1276 * Query touchpad's firmware version and see if it reports known
1277 * value to avoid mis-detection. Logitech mice are known to respond
1278 * to Elantech magic knock and there might be more.
1280 if (synaptics_send_cmd(psmouse
, ETP_FW_VERSION_QUERY
, param
)) {
1281 psmouse_dbg(psmouse
, "failed to query firmware version.\n");
1285 psmouse_dbg(psmouse
,
1286 "Elantech version query result 0x%02x, 0x%02x, 0x%02x.\n",
1287 param
[0], param
[1], param
[2]);
1289 if (!elantech_is_signature_valid(param
)) {
1290 psmouse_dbg(psmouse
,
1291 "Probably not a real Elantech touchpad. Aborting.\n");
1295 if (set_properties
) {
1296 psmouse
->vendor
= "Elantech";
1297 psmouse
->name
= "Touchpad";
1304 * Clean up sysfs entries when disconnecting
1306 static void elantech_disconnect(struct psmouse
*psmouse
)
1308 sysfs_remove_group(&psmouse
->ps2dev
.serio
->dev
.kobj
,
1309 &elantech_attr_group
);
1310 kfree(psmouse
->private);
1311 psmouse
->private = NULL
;
1315 * Put the touchpad back into absolute mode when reconnecting
1317 static int elantech_reconnect(struct psmouse
*psmouse
)
1319 psmouse_reset(psmouse
);
1321 if (elantech_detect(psmouse
, 0))
1324 if (elantech_set_absolute_mode(psmouse
)) {
1325 psmouse_err(psmouse
,
1326 "failed to put touchpad back into absolute mode.\n");
1334 * determine hardware version and set some properties according to it.
1336 static int elantech_set_properties(struct elantech_data
*etd
)
1338 /* This represents the version of IC body. */
1339 int ver
= (etd
->fw_version
& 0x0f0000) >> 16;
1341 /* Early version of Elan touchpads doesn't obey the rule. */
1342 if (etd
->fw_version
< 0x020030 || etd
->fw_version
== 0x020600)
1343 etd
->hw_version
= 1;
1348 etd
->hw_version
= 2;
1351 etd
->hw_version
= 3;
1356 etd
->hw_version
= 4;
1363 /* decide which send_cmd we're gonna use early */
1364 etd
->send_cmd
= etd
->hw_version
>= 3 ? elantech_send_cmd
:
1367 /* Turn on packet checking by default */
1368 etd
->paritycheck
= 1;
1371 * This firmware suffers from misreporting coordinates when
1372 * a touch action starts causing the mouse cursor or scrolled page
1373 * to jump. Enable a workaround.
1376 (etd
->fw_version
== 0x020022 || etd
->fw_version
== 0x020600);
1378 if (etd
->hw_version
> 1) {
1379 /* For now show extra debug information */
1382 if (etd
->fw_version
>= 0x020800)
1383 etd
->reports_pressure
= true;
1387 * The signatures of v3 and v4 packets change depending on the
1388 * value of this hardware flag.
1390 etd
->crc_enabled
= ((etd
->fw_version
& 0x4000) == 0x4000);
1396 * Initialize the touchpad and create sysfs entries
1398 int elantech_init(struct psmouse
*psmouse
)
1400 struct elantech_data
*etd
;
1402 unsigned char param
[3];
1404 psmouse
->private = etd
= kzalloc(sizeof(struct elantech_data
), GFP_KERNEL
);
1408 psmouse_reset(psmouse
);
1411 for (i
= 1; i
< 256; i
++)
1412 etd
->parity
[i
] = etd
->parity
[i
& (i
- 1)] ^ 1;
1415 * Do the version query again so we can store the result
1417 if (synaptics_send_cmd(psmouse
, ETP_FW_VERSION_QUERY
, param
)) {
1418 psmouse_err(psmouse
, "failed to query firmware version.\n");
1421 etd
->fw_version
= (param
[0] << 16) | (param
[1] << 8) | param
[2];
1423 if (elantech_set_properties(etd
)) {
1424 psmouse_err(psmouse
, "unknown hardware version, aborting...\n");
1427 psmouse_info(psmouse
,
1428 "assuming hardware version %d (with firmware version 0x%02x%02x%02x)\n",
1429 etd
->hw_version
, param
[0], param
[1], param
[2]);
1431 if (etd
->send_cmd(psmouse
, ETP_CAPABILITIES_QUERY
,
1432 etd
->capabilities
)) {
1433 psmouse_err(psmouse
, "failed to query capabilities.\n");
1436 psmouse_info(psmouse
,
1437 "Synaptics capabilities query result 0x%02x, 0x%02x, 0x%02x.\n",
1438 etd
->capabilities
[0], etd
->capabilities
[1],
1439 etd
->capabilities
[2]);
1441 if (elantech_set_absolute_mode(psmouse
)) {
1442 psmouse_err(psmouse
,
1443 "failed to put touchpad into absolute mode.\n");
1447 if (elantech_set_input_params(psmouse
)) {
1448 psmouse_err(psmouse
, "failed to query touchpad range.\n");
1452 error
= sysfs_create_group(&psmouse
->ps2dev
.serio
->dev
.kobj
,
1453 &elantech_attr_group
);
1455 psmouse_err(psmouse
,
1456 "failed to create sysfs attributes, error: %d.\n",
1461 psmouse
->protocol_handler
= elantech_process_byte
;
1462 psmouse
->disconnect
= elantech_disconnect
;
1463 psmouse
->reconnect
= elantech_reconnect
;
1464 psmouse
->pktsize
= etd
->hw_version
> 1 ? 6 : 4;