blob: f2c2ffedeff58d1bc9896c5e3213a52728e13b95 [file] [log] [blame]
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001/*
Arjan Opmeer3f8c0df2009-04-18 19:05:40 -07002 * Elantech Touchpad driver (v6)
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04003 *
Arjan Opmeer3f8c0df2009-04-18 19:05:40 -07004 * Copyright (C) 2007-2009 Arjan Opmeer <arjan@opmeer.net>
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04005 *
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.
9 *
10 * Trademarks are the property of their respective owners.
11 */
12
13#include <linux/delay.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Arjan Opmeer2a0bd752008-10-16 22:10:19 -040015#include <linux/module.h>
16#include <linux/input.h>
Éric Piel89eec4d2011-05-16 22:45:54 -070017#include <linux/input/mt.h>
Arjan Opmeer2a0bd752008-10-16 22:10:19 -040018#include <linux/serio.h>
19#include <linux/libps2.h>
20#include "psmouse.h"
21#include "elantech.h"
22
Dmitry Torokhovd4ae84a2010-05-13 00:41:15 -070023#define elantech_debug(fmt, ...) \
24 do { \
25 if (etd->debug) \
Dmitry Torokhovb5d21702011-10-10 18:27:03 -070026 psmouse_printk(KERN_DEBUG, psmouse, \
27 fmt, ##__VA_ARGS__); \
Arjan Opmeer2a0bd752008-10-16 22:10:19 -040028 } while (0)
29
30/*
31 * Send a Synaptics style sliced query command
32 */
33static int synaptics_send_cmd(struct psmouse *psmouse, unsigned char c,
34 unsigned char *param)
35{
36 if (psmouse_sliced_command(psmouse, c) ||
37 ps2_command(&psmouse->ps2dev, param, PSMOUSE_CMD_GETINFO)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -070038 psmouse_err(psmouse, "%s query 0x%02x failed.\n", __func__, c);
Arjan Opmeer2a0bd752008-10-16 22:10:19 -040039 return -1;
40 }
41
42 return 0;
43}
44
45/*
JJ Dingb56b92a2011-11-20 22:21:45 -080046 * V3 and later support this fast command
47 */
48static int elantech_send_cmd(struct psmouse *psmouse, unsigned char c,
49 unsigned char *param)
50{
51 struct ps2dev *ps2dev = &psmouse->ps2dev;
52
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);
57 return -1;
58 }
59
60 return 0;
61}
62
63/*
Arjan Opmeer2a0bd752008-10-16 22:10:19 -040064 * A retrying version of ps2_command
65 */
66static int elantech_ps2_command(struct psmouse *psmouse,
67 unsigned char *param, int command)
68{
69 struct ps2dev *ps2dev = &psmouse->ps2dev;
70 struct elantech_data *etd = psmouse->private;
71 int rc;
72 int tries = ETP_PS2_COMMAND_TRIES;
73
74 do {
75 rc = ps2_command(ps2dev, param, command);
76 if (rc == 0)
77 break;
78 tries--;
Dmitry Torokhovd4ae84a2010-05-13 00:41:15 -070079 elantech_debug("retrying ps2 command 0x%02x (%d).\n",
80 command, tries);
Arjan Opmeer2a0bd752008-10-16 22:10:19 -040081 msleep(ETP_PS2_COMMAND_DELAY);
82 } while (tries > 0);
83
84 if (rc)
Dmitry Torokhovb5d21702011-10-10 18:27:03 -070085 psmouse_err(psmouse, "ps2 command 0x%02x failed.\n", command);
Arjan Opmeer2a0bd752008-10-16 22:10:19 -040086
87 return rc;
88}
89
90/*
91 * Send an Elantech style special command to read a value from a register
92 */
93static int elantech_read_reg(struct psmouse *psmouse, unsigned char reg,
94 unsigned char *val)
95{
96 struct elantech_data *etd = psmouse->private;
97 unsigned char param[3];
98 int rc = 0;
99
JJ Ding1dc6ede2011-09-09 10:31:58 -0700100 if (reg < 0x07 || reg > 0x26)
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400101 return -1;
102
103 if (reg > 0x11 && reg < 0x20)
104 return -1;
105
106 switch (etd->hw_version) {
107 case 1:
108 if (psmouse_sliced_command(psmouse, ETP_REGISTER_READ) ||
109 psmouse_sliced_command(psmouse, reg) ||
110 ps2_command(&psmouse->ps2dev, param, PSMOUSE_CMD_GETINFO)) {
111 rc = -1;
112 }
113 break;
114
115 case 2:
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)) {
121 rc = -1;
122 }
123 break;
JJ Ding28f49612011-09-09 10:30:31 -0700124
JJ Ding1dc6ede2011-09-09 10:31:58 -0700125 case 3 ... 4:
JJ Ding28f49612011-09-09 10:30:31 -0700126 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)) {
131 rc = -1;
132 }
133 break;
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400134 }
135
136 if (rc)
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700137 psmouse_err(psmouse, "failed to read register 0x%02x.\n", reg);
JJ Ding1dc6ede2011-09-09 10:31:58 -0700138 else if (etd->hw_version != 4)
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400139 *val = param[0];
JJ Ding1dc6ede2011-09-09 10:31:58 -0700140 else
141 *val = param[1];
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400142
143 return rc;
144}
145
146/*
147 * Send an Elantech style special command to write a register with a value
148 */
149static int elantech_write_reg(struct psmouse *psmouse, unsigned char reg,
150 unsigned char val)
151{
152 struct elantech_data *etd = psmouse->private;
153 int rc = 0;
154
JJ Ding1dc6ede2011-09-09 10:31:58 -0700155 if (reg < 0x07 || reg > 0x26)
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400156 return -1;
157
158 if (reg > 0x11 && reg < 0x20)
159 return -1;
160
161 switch (etd->hw_version) {
162 case 1:
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)) {
167 rc = -1;
168 }
169 break;
170
171 case 2:
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)) {
179 rc = -1;
180 }
181 break;
JJ Ding28f49612011-09-09 10:30:31 -0700182
183 case 3:
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)) {
191 rc = -1;
192 }
193 break;
JJ Ding1dc6ede2011-09-09 10:31:58 -0700194
195 case 4:
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)) {
205 rc = -1;
206 }
207 break;
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400208 }
209
210 if (rc)
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700211 psmouse_err(psmouse,
212 "failed to write register 0x%02x with value 0x%02x.\n",
213 reg, val);
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400214
215 return rc;
216}
217
218/*
219 * Dump a complete mouse movement packet to the syslog
220 */
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700221static void elantech_packet_dump(struct psmouse *psmouse)
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400222{
223 int i;
224
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700225 psmouse_printk(KERN_DEBUG, psmouse, "PS/2 packet [");
226 for (i = 0; i < psmouse->pktsize; i++)
227 printk("%s0x%02x ", i ? ", " : " ", psmouse->packet[i]);
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400228 printk("]\n");
229}
230
231/*
232 * Interpret complete data packets and report absolute mode input events for
233 * hardware version 1. (4 byte packets)
234 */
235static void elantech_report_absolute_v1(struct psmouse *psmouse)
236{
237 struct input_dev *dev = psmouse->dev;
238 struct elantech_data *etd = psmouse->private;
239 unsigned char *packet = psmouse->packet;
240 int fingers;
241
Dmitry Torokhov504e8be2010-05-13 00:41:15 -0700242 if (etd->fw_version < 0x020000) {
Florian Ragwitze938fbf2010-05-03 23:29:37 -0700243 /*
244 * byte 0: D U p1 p2 1 p3 R L
245 * byte 1: f 0 th tw x9 x8 y9 y8
246 */
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400247 fingers = ((packet[1] & 0x80) >> 7) +
248 ((packet[1] & 0x30) >> 4);
249 } else {
Florian Ragwitze938fbf2010-05-03 23:29:37 -0700250 /*
251 * byte 0: n1 n0 p2 p1 1 p3 R L
252 * byte 1: 0 0 0 0 x9 x8 y9 y8
253 */
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400254 fingers = (packet[0] & 0xc0) >> 6;
255 }
256
Arjan Opmeer3f8c0df2009-04-18 19:05:40 -0700257 if (etd->jumpy_cursor) {
Éric Piel7f29f172010-08-05 23:51:49 -0700258 if (fingers != 1) {
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++;
Dmitry Torokhovd4ae84a2010-05-13 00:41:15 -0700263 elantech_debug("discarding packet\n");
Éric Piel7f29f172010-08-05 23:51:49 -0700264 return;
Arjan Opmeer3f8c0df2009-04-18 19:05:40 -0700265 }
266 }
267
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400268 input_report_key(dev, BTN_TOUCH, fingers != 0);
269
Florian Ragwitze938fbf2010-05-03 23:29:37 -0700270 /*
271 * byte 2: x7 x6 x5 x4 x3 x2 x1 x0
272 * byte 3: y7 y6 y5 y4 y3 y2 y1 y0
273 */
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400274 if (fingers) {
275 input_report_abs(dev, ABS_X,
276 ((packet[1] & 0x0c) << 6) | packet[2]);
Florian Ragwitze938fbf2010-05-03 23:29:37 -0700277 input_report_abs(dev, ABS_Y,
JJ Ding230282a2011-09-09 10:26:16 -0700278 etd->y_max - (((packet[1] & 0x03) << 8) | packet[3]));
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400279 }
280
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);
286
Dmitry Torokhov504e8be2010-05-13 00:41:15 -0700287 if (etd->fw_version < 0x020000 &&
JJ Ding230282a2011-09-09 10:26:16 -0700288 (etd->capabilities[0] & ETP_CAP_HAS_ROCKER)) {
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400289 /* rocker up */
290 input_report_key(dev, BTN_FORWARD, packet[0] & 0x40);
291 /* rocker down */
292 input_report_key(dev, BTN_BACK, packet[0] & 0x80);
293 }
294
295 input_sync(dev);
296}
297
Éric Piel89eec4d2011-05-16 22:45:54 -0700298static void elantech_set_slot(struct input_dev *dev, int slot, bool active,
299 unsigned int x, unsigned int y)
300{
301 input_mt_slot(dev, slot);
302 input_mt_report_slot_state(dev, MT_TOOL_FINGER, active);
303 if (active) {
304 input_report_abs(dev, ABS_MT_POSITION_X, x);
305 input_report_abs(dev, ABS_MT_POSITION_Y, y);
306 }
307}
308
309/* x1 < x2 and y1 < y2 when two fingers, x = y = 0 when not pressed */
310static 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)
314{
315 elantech_set_slot(dev, 0, num_fingers != 0, x1, y1);
316 elantech_set_slot(dev, 1, num_fingers == 2, x2, y2);
317}
318
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400319/*
320 * Interpret complete data packets and report absolute mode input events for
321 * hardware version 2. (6 byte packets)
322 */
323static void elantech_report_absolute_v2(struct psmouse *psmouse)
324{
Éric Pielf941c702011-05-16 22:45:54 -0700325 struct elantech_data *etd = psmouse->private;
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400326 struct input_dev *dev = psmouse->dev;
327 unsigned char *packet = psmouse->packet;
JJ Ding461a7912011-09-09 10:22:58 -0700328 unsigned int fingers, x1 = 0, y1 = 0, x2 = 0, y2 = 0;
329 unsigned int width = 0, pres = 0;
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400330
331 /* byte 0: n1 n0 . . . . R L */
332 fingers = (packet[0] & 0xc0) >> 6;
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400333
334 switch (fingers) {
Éric Piel22462d92010-08-05 23:51:49 -0700335 case 3:
336 /*
337 * Same as one finger, except report of more than 3 fingers:
338 * byte 3: n4 . w1 w0 . . . .
339 */
340 if (packet[3] & 0x80)
341 fingers = 4;
342 /* pass through... */
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400343 case 1:
Florian Ragwitze938fbf2010-05-03 23:29:37 -0700344 /*
JJ Ding11559612011-09-09 10:22:19 -0700345 * byte 1: . . . . x11 x10 x9 x8
Florian Ragwitze938fbf2010-05-03 23:29:37 -0700346 * byte 2: x7 x6 x5 x4 x4 x2 x1 x0
347 */
JJ Ding11559612011-09-09 10:22:19 -0700348 x1 = ((packet[1] & 0x0f) << 8) | packet[2];
Florian Ragwitze938fbf2010-05-03 23:29:37 -0700349 /*
JJ Ding11559612011-09-09 10:22:19 -0700350 * byte 4: . . . . y11 y10 y9 y8
Florian Ragwitze938fbf2010-05-03 23:29:37 -0700351 * byte 5: y7 y6 y5 y4 y3 y2 y1 y0
352 */
JJ Ding230282a2011-09-09 10:26:16 -0700353 y1 = etd->y_max - (((packet[4] & 0x0f) << 8) | packet[5]);
Éric Piel89eec4d2011-05-16 22:45:54 -0700354
Éric Pielf941c702011-05-16 22:45:54 -0700355 pres = (packet[1] & 0xf0) | ((packet[4] & 0xf0) >> 4);
356 width = ((packet[0] & 0x30) >> 2) | ((packet[3] & 0x30) >> 4);
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400357 break;
358
359 case 2:
Florian Ragwitze938fbf2010-05-03 23:29:37 -0700360 /*
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
365 */
JJ Ding461a7912011-09-09 10:22:58 -0700366 x1 = (((packet[0] & 0x10) << 4) | packet[1]) << 2;
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400367 /* byte 2: ay7 ay6 ay5 ay4 ay3 ay2 ay1 ay0 */
JJ Ding230282a2011-09-09 10:26:16 -0700368 y1 = etd->y_max -
JJ Ding461a7912011-09-09 10:22:58 -0700369 ((((packet[0] & 0x20) << 3) | packet[2]) << 2);
Florian Ragwitze938fbf2010-05-03 23:29:37 -0700370 /*
371 * byte 3: . . by8 bx8 . . . .
372 * byte 4: bx7 bx6 bx5 bx4 bx3 bx2 bx1 bx0
373 */
JJ Ding461a7912011-09-09 10:22:58 -0700374 x2 = (((packet[3] & 0x10) << 4) | packet[4]) << 2;
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400375 /* byte 5: by7 by8 by5 by4 by3 by2 by1 by0 */
JJ Ding230282a2011-09-09 10:26:16 -0700376 y2 = etd->y_max -
JJ Ding461a7912011-09-09 10:22:58 -0700377 ((((packet[3] & 0x20) << 3) | packet[5]) << 2);
Éric Pielf941c702011-05-16 22:45:54 -0700378
379 /* Unknown so just report sensible values */
380 pres = 127;
381 width = 7;
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400382 break;
383 }
384
JJ Ding461a7912011-09-09 10:22:58 -0700385 input_report_key(dev, BTN_TOUCH, fingers != 0);
386 if (fingers != 0) {
387 input_report_abs(dev, ABS_X, x1);
388 input_report_abs(dev, ABS_Y, y1);
389 }
Éric Piel89eec4d2011-05-16 22:45:54 -0700390 elantech_report_semi_mt_data(dev, fingers, x1, y1, x2, y2);
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400391 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);
Éric Piel22462d92010-08-05 23:51:49 -0700394 input_report_key(dev, BTN_TOOL_QUADTAP, fingers == 4);
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400395 input_report_key(dev, BTN_LEFT, packet[0] & 0x01);
396 input_report_key(dev, BTN_RIGHT, packet[0] & 0x02);
Éric Pielf941c702011-05-16 22:45:54 -0700397 if (etd->reports_pressure) {
398 input_report_abs(dev, ABS_PRESSURE, pres);
399 input_report_abs(dev, ABS_TOOL_WIDTH, width);
400 }
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400401
402 input_sync(dev);
403}
404
JJ Ding28f49612011-09-09 10:30:31 -0700405/*
406 * Interpret complete data packets and report absolute mode input events for
407 * hardware version 3. (12 byte packets for two fingers)
408 */
409static void elantech_report_absolute_v3(struct psmouse *psmouse,
410 int packet_type)
411{
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;
417
418 /* byte 0: n1 n0 . . . . R L */
419 fingers = (packet[0] & 0xc0) >> 6;
420
421 switch (fingers) {
422 case 3:
423 case 1:
424 /*
425 * byte 1: . . . . x11 x10 x9 x8
426 * byte 2: x7 x6 x5 x4 x4 x2 x1 x0
427 */
428 x1 = ((packet[1] & 0x0f) << 8) | packet[2];
429 /*
430 * byte 4: . . . . y11 y10 y9 y8
431 * byte 5: y7 y6 y5 y4 y3 y2 y1 y0
432 */
433 y1 = etd->y_max - (((packet[4] & 0x0f) << 8) | packet[5]);
434 break;
435
436 case 2:
437 if (packet_type == PACKET_V3_HEAD) {
438 /*
439 * byte 1: . . . . ax11 ax10 ax9 ax8
440 * byte 2: ax7 ax6 ax5 ax4 ax3 ax2 ax1 ax0
441 */
JJ Ding1dc6ede2011-09-09 10:31:58 -0700442 etd->mt[0].x = ((packet[1] & 0x0f) << 8) | packet[2];
JJ Ding28f49612011-09-09 10:30:31 -0700443 /*
444 * byte 4: . . . . ay11 ay10 ay9 ay8
445 * byte 5: ay7 ay6 ay5 ay4 ay3 ay2 ay1 ay0
446 */
JJ Ding1dc6ede2011-09-09 10:31:58 -0700447 etd->mt[0].y = etd->y_max -
JJ Ding28f49612011-09-09 10:30:31 -0700448 (((packet[4] & 0x0f) << 8) | packet[5]);
449 /*
450 * wait for next packet
451 */
452 return;
453 }
454
455 /* packet_type == PACKET_V3_TAIL */
JJ Ding1dc6ede2011-09-09 10:31:58 -0700456 x1 = etd->mt[0].x;
457 y1 = etd->mt[0].y;
JJ Ding28f49612011-09-09 10:30:31 -0700458 x2 = ((packet[1] & 0x0f) << 8) | packet[2];
459 y2 = etd->y_max - (((packet[4] & 0x0f) << 8) | packet[5]);
460 break;
461 }
462
463 pres = (packet[1] & 0xf0) | ((packet[4] & 0xf0) >> 4);
464 width = ((packet[0] & 0x30) >> 2) | ((packet[3] & 0x30) >> 4);
465
466 input_report_key(dev, BTN_TOUCH, fingers != 0);
467 if (fingers != 0) {
468 input_report_abs(dev, ABS_X, x1);
469 input_report_abs(dev, ABS_Y, y1);
470 }
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);
Hans de Goedec80dcb82014-06-07 22:35:07 -0700475
476 /* For clickpads map both buttons to BTN_LEFT */
477 if (etd->fw_version & 0x001000) {
478 input_report_key(dev, BTN_LEFT, packet[0] & 0x03);
479 } else {
480 input_report_key(dev, BTN_LEFT, packet[0] & 0x01);
481 input_report_key(dev, BTN_RIGHT, packet[0] & 0x02);
482 }
483
JJ Ding28f49612011-09-09 10:30:31 -0700484 input_report_abs(dev, ABS_PRESSURE, pres);
485 input_report_abs(dev, ABS_TOOL_WIDTH, width);
486
487 input_sync(dev);
488}
489
JJ Ding1dc6ede2011-09-09 10:31:58 -0700490static void elantech_input_sync_v4(struct psmouse *psmouse)
491{
492 struct input_dev *dev = psmouse->dev;
Hans de Goedec80dcb82014-06-07 22:35:07 -0700493 struct elantech_data *etd = psmouse->private;
JJ Ding1dc6ede2011-09-09 10:31:58 -0700494 unsigned char *packet = psmouse->packet;
495
Hans de Goedec80dcb82014-06-07 22:35:07 -0700496 /* For clickpads map both buttons to BTN_LEFT */
497 if (etd->fw_version & 0x001000) {
498 input_report_key(dev, BTN_LEFT, packet[0] & 0x03);
499 } else {
500 input_report_key(dev, BTN_LEFT, packet[0] & 0x01);
501 input_report_key(dev, BTN_RIGHT, packet[0] & 0x02);
502 }
503
JJ Ding1dc6ede2011-09-09 10:31:58 -0700504 input_mt_report_pointer_emulation(dev, true);
505 input_sync(dev);
506}
507
508static void process_packet_status_v4(struct psmouse *psmouse)
509{
510 struct input_dev *dev = psmouse->dev;
511 unsigned char *packet = psmouse->packet;
512 unsigned fingers;
513 int i;
514
515 /* notify finger state change */
516 fingers = packet[1] & 0x1f;
517 for (i = 0; i < ETP_MAX_FINGERS; i++) {
518 if ((fingers & (1 << i)) == 0) {
519 input_mt_slot(dev, i);
520 input_mt_report_slot_state(dev, MT_TOOL_FINGER, false);
521 }
522 }
523
524 elantech_input_sync_v4(psmouse);
525}
526
527static void process_packet_head_v4(struct psmouse *psmouse)
528{
529 struct input_dev *dev = psmouse->dev;
530 struct elantech_data *etd = psmouse->private;
531 unsigned char *packet = psmouse->packet;
532 int id = ((packet[3] & 0xe0) >> 5) - 1;
533 int pres, traces;
534
535 if (id < 0)
536 return;
537
538 etd->mt[id].x = ((packet[1] & 0x0f) << 8) | packet[2];
539 etd->mt[id].y = etd->y_max - (((packet[4] & 0x0f) << 8) | packet[5]);
540 pres = (packet[1] & 0xf0) | ((packet[4] & 0xf0) >> 4);
541 traces = (packet[0] & 0xf0) >> 4;
542
543 input_mt_slot(dev, id);
544 input_mt_report_slot_state(dev, MT_TOOL_FINGER, true);
545
546 input_report_abs(dev, ABS_MT_POSITION_X, etd->mt[id].x);
547 input_report_abs(dev, ABS_MT_POSITION_Y, etd->mt[id].y);
548 input_report_abs(dev, ABS_MT_PRESSURE, pres);
549 input_report_abs(dev, ABS_MT_TOUCH_MAJOR, traces * etd->width);
550 /* report this for backwards compatibility */
551 input_report_abs(dev, ABS_TOOL_WIDTH, traces);
552
553 elantech_input_sync_v4(psmouse);
554}
555
556static void process_packet_motion_v4(struct psmouse *psmouse)
557{
558 struct input_dev *dev = psmouse->dev;
559 struct elantech_data *etd = psmouse->private;
560 unsigned char *packet = psmouse->packet;
561 int weight, delta_x1 = 0, delta_y1 = 0, delta_x2 = 0, delta_y2 = 0;
562 int id, sid;
563
564 id = ((packet[0] & 0xe0) >> 5) - 1;
565 if (id < 0)
566 return;
567
568 sid = ((packet[3] & 0xe0) >> 5) - 1;
569 weight = (packet[0] & 0x10) ? ETP_WEIGHT_VALUE : 1;
570 /*
571 * Motion packets give us the delta of x, y values of specific fingers,
572 * but in two's complement. Let the compiler do the conversion for us.
573 * Also _enlarge_ the numbers to int, in case of overflow.
574 */
575 delta_x1 = (signed char)packet[1];
576 delta_y1 = (signed char)packet[2];
577 delta_x2 = (signed char)packet[4];
578 delta_y2 = (signed char)packet[5];
579
580 etd->mt[id].x += delta_x1 * weight;
581 etd->mt[id].y -= delta_y1 * weight;
582 input_mt_slot(dev, id);
583 input_report_abs(dev, ABS_MT_POSITION_X, etd->mt[id].x);
584 input_report_abs(dev, ABS_MT_POSITION_Y, etd->mt[id].y);
585
586 if (sid >= 0) {
587 etd->mt[sid].x += delta_x2 * weight;
588 etd->mt[sid].y -= delta_y2 * weight;
589 input_mt_slot(dev, sid);
590 input_report_abs(dev, ABS_MT_POSITION_X, etd->mt[sid].x);
591 input_report_abs(dev, ABS_MT_POSITION_Y, etd->mt[sid].y);
592 }
593
594 elantech_input_sync_v4(psmouse);
595}
596
597static void elantech_report_absolute_v4(struct psmouse *psmouse,
598 int packet_type)
599{
600 switch (packet_type) {
601 case PACKET_V4_STATUS:
602 process_packet_status_v4(psmouse);
603 break;
604
605 case PACKET_V4_HEAD:
606 process_packet_head_v4(psmouse);
607 break;
608
609 case PACKET_V4_MOTION:
610 process_packet_motion_v4(psmouse);
611 break;
612
613 case PACKET_UNKNOWN:
614 default:
615 /* impossible to get here */
616 break;
617 }
618}
619
JJ Ding7894f212011-09-09 10:28:04 -0700620static int elantech_packet_check_v1(struct psmouse *psmouse)
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400621{
622 struct elantech_data *etd = psmouse->private;
623 unsigned char *packet = psmouse->packet;
624 unsigned char p1, p2, p3;
625
626 /* Parity bits are placed differently */
Dmitry Torokhov504e8be2010-05-13 00:41:15 -0700627 if (etd->fw_version < 0x020000) {
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400628 /* byte 0: D U p1 p2 1 p3 R L */
629 p1 = (packet[0] & 0x20) >> 5;
630 p2 = (packet[0] & 0x10) >> 4;
631 } else {
632 /* byte 0: n1 n0 p2 p1 1 p3 R L */
633 p1 = (packet[0] & 0x10) >> 4;
634 p2 = (packet[0] & 0x20) >> 5;
635 }
636
637 p3 = (packet[0] & 0x04) >> 2;
638
639 return etd->parity[packet[1]] == p1 &&
640 etd->parity[packet[2]] == p2 &&
641 etd->parity[packet[3]] == p3;
642}
643
JJ Ding84a90b62011-09-20 22:42:51 -0700644static int elantech_debounce_check_v2(struct psmouse *psmouse)
645{
646 /*
647 * When we encounter packet that matches this exactly, it means the
648 * hardware is in debounce status. Just ignore the whole packet.
649 */
650 const u8 debounce_packet[] = { 0x84, 0xff, 0xff, 0x02, 0xff, 0xff };
651 unsigned char *packet = psmouse->packet;
652
653 return !memcmp(packet, debounce_packet, sizeof(debounce_packet));
654}
655
JJ Ding7894f212011-09-09 10:28:04 -0700656static int elantech_packet_check_v2(struct psmouse *psmouse)
657{
658 struct elantech_data *etd = psmouse->private;
659 unsigned char *packet = psmouse->packet;
660
661 /*
662 * V2 hardware has two flavors. Older ones that do not report pressure,
663 * and newer ones that reports pressure and width. With newer ones, all
664 * packets (1, 2, 3 finger touch) have the same constant bits. With
665 * older ones, 1/3 finger touch packets and 2 finger touch packets
666 * have different constant bits.
667 * With all three cases, if the constant bits are not exactly what I
668 * expected, I consider them invalid.
669 */
670 if (etd->reports_pressure)
671 return (packet[0] & 0x0c) == 0x04 &&
672 (packet[3] & 0x0f) == 0x02;
673
674 if ((packet[0] & 0xc0) == 0x80)
675 return (packet[0] & 0x0c) == 0x0c &&
676 (packet[3] & 0x0e) == 0x08;
677
678 return (packet[0] & 0x3c) == 0x3c &&
679 (packet[1] & 0xf0) == 0x00 &&
680 (packet[3] & 0x3e) == 0x38 &&
681 (packet[4] & 0xf0) == 0x00;
682}
683
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400684/*
JJ Ding28f49612011-09-09 10:30:31 -0700685 * We check the constant bits to determine what packet type we get,
JJ Ding1dc6ede2011-09-09 10:31:58 -0700686 * so packet checking is mandatory for v3 and later hardware.
JJ Ding28f49612011-09-09 10:30:31 -0700687 */
688static int elantech_packet_check_v3(struct psmouse *psmouse)
689{
690 const u8 debounce_packet[] = { 0xc4, 0xff, 0xff, 0x02, 0xff, 0xff };
691 unsigned char *packet = psmouse->packet;
692
693 /*
694 * check debounce first, it has the same signature in byte 0
695 * and byte 3 as PACKET_V3_HEAD.
696 */
697 if (!memcmp(packet, debounce_packet, sizeof(debounce_packet)))
698 return PACKET_DEBOUNCE;
699
700 if ((packet[0] & 0x0c) == 0x04 && (packet[3] & 0xcf) == 0x02)
701 return PACKET_V3_HEAD;
702
703 if ((packet[0] & 0x0c) == 0x0c && (packet[3] & 0xce) == 0x0c)
704 return PACKET_V3_TAIL;
705
706 return PACKET_UNKNOWN;
707}
708
JJ Ding1dc6ede2011-09-09 10:31:58 -0700709static int elantech_packet_check_v4(struct psmouse *psmouse)
710{
711 unsigned char *packet = psmouse->packet;
712
713 if ((packet[0] & 0x0c) == 0x04 &&
714 (packet[3] & 0x1f) == 0x11)
715 return PACKET_V4_HEAD;
716
717 if ((packet[0] & 0x0c) == 0x04 &&
718 (packet[3] & 0x1f) == 0x12)
719 return PACKET_V4_MOTION;
720
721 if ((packet[0] & 0x0c) == 0x04 &&
722 (packet[3] & 0x1f) == 0x10)
723 return PACKET_V4_STATUS;
724
725 return PACKET_UNKNOWN;
726}
727
JJ Ding28f49612011-09-09 10:30:31 -0700728/*
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400729 * Process byte stream from mouse and handle complete packets
730 */
731static psmouse_ret_t elantech_process_byte(struct psmouse *psmouse)
732{
733 struct elantech_data *etd = psmouse->private;
JJ Ding28f49612011-09-09 10:30:31 -0700734 int packet_type;
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400735
736 if (psmouse->pktcnt < psmouse->pktsize)
737 return PSMOUSE_GOOD_DATA;
738
739 if (etd->debug > 1)
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700740 elantech_packet_dump(psmouse);
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400741
742 switch (etd->hw_version) {
743 case 1:
JJ Ding7894f212011-09-09 10:28:04 -0700744 if (etd->paritycheck && !elantech_packet_check_v1(psmouse))
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400745 return PSMOUSE_BAD_DATA;
746
747 elantech_report_absolute_v1(psmouse);
748 break;
749
750 case 2:
JJ Ding84a90b62011-09-20 22:42:51 -0700751 /* ignore debounce */
752 if (elantech_debounce_check_v2(psmouse))
753 return PSMOUSE_FULL_PACKET;
754
JJ Ding7894f212011-09-09 10:28:04 -0700755 if (etd->paritycheck && !elantech_packet_check_v2(psmouse))
756 return PSMOUSE_BAD_DATA;
757
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400758 elantech_report_absolute_v2(psmouse);
759 break;
JJ Ding28f49612011-09-09 10:30:31 -0700760
761 case 3:
762 packet_type = elantech_packet_check_v3(psmouse);
763 /* ignore debounce */
764 if (packet_type == PACKET_DEBOUNCE)
765 return PSMOUSE_FULL_PACKET;
766
767 if (packet_type == PACKET_UNKNOWN)
768 return PSMOUSE_BAD_DATA;
769
770 elantech_report_absolute_v3(psmouse, packet_type);
771 break;
JJ Ding1dc6ede2011-09-09 10:31:58 -0700772
773 case 4:
774 packet_type = elantech_packet_check_v4(psmouse);
775 if (packet_type == PACKET_UNKNOWN)
776 return PSMOUSE_BAD_DATA;
777
778 elantech_report_absolute_v4(psmouse, packet_type);
779 break;
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400780 }
781
782 return PSMOUSE_FULL_PACKET;
783}
784
785/*
786 * Put the touchpad into absolute mode
787 */
788static int elantech_set_absolute_mode(struct psmouse *psmouse)
789{
790 struct elantech_data *etd = psmouse->private;
791 unsigned char val;
792 int tries = ETP_READ_BACK_TRIES;
793 int rc = 0;
794
795 switch (etd->hw_version) {
796 case 1:
797 etd->reg_10 = 0x16;
798 etd->reg_11 = 0x8f;
799 if (elantech_write_reg(psmouse, 0x10, etd->reg_10) ||
800 elantech_write_reg(psmouse, 0x11, etd->reg_11)) {
801 rc = -1;
802 }
803 break;
804
805 case 2:
806 /* Windows driver values */
807 etd->reg_10 = 0x54;
808 etd->reg_11 = 0x88; /* 0x8a */
809 etd->reg_21 = 0x60; /* 0x00 */
810 if (elantech_write_reg(psmouse, 0x10, etd->reg_10) ||
811 elantech_write_reg(psmouse, 0x11, etd->reg_11) ||
812 elantech_write_reg(psmouse, 0x21, etd->reg_21)) {
813 rc = -1;
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400814 }
JJ Ding28f49612011-09-09 10:30:31 -0700815 break;
816
817 case 3:
818 etd->reg_10 = 0x0b;
819 if (elantech_write_reg(psmouse, 0x10, etd->reg_10))
820 rc = -1;
821
822 break;
JJ Ding1dc6ede2011-09-09 10:31:58 -0700823
824 case 4:
825 etd->reg_07 = 0x01;
826 if (elantech_write_reg(psmouse, 0x07, etd->reg_07))
827 rc = -1;
828
829 goto skip_readback_reg_10; /* v4 has no reg 0x10 to read */
Arjan Opmeerb2546df2009-04-18 19:10:17 -0700830 }
831
832 if (rc == 0) {
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400833 /*
Arjan Opmeerb2546df2009-04-18 19:10:17 -0700834 * Read back reg 0x10. For hardware version 1 we must make
835 * sure the absolute mode bit is set. For hardware version 2
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700836 * the touchpad is probably initializing and not ready until
Arjan Opmeerb2546df2009-04-18 19:10:17 -0700837 * we read back the value we just wrote.
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400838 */
839 do {
840 rc = elantech_read_reg(psmouse, 0x10, &val);
841 if (rc == 0)
842 break;
843 tries--;
Dmitry Torokhovd4ae84a2010-05-13 00:41:15 -0700844 elantech_debug("retrying read (%d).\n", tries);
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400845 msleep(ETP_READ_BACK_DELAY);
846 } while (tries > 0);
Arjan Opmeerb2546df2009-04-18 19:10:17 -0700847
848 if (rc) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700849 psmouse_err(psmouse,
850 "failed to read back register 0x10.\n");
Arjan Opmeerb2546df2009-04-18 19:10:17 -0700851 } else if (etd->hw_version == 1 &&
852 !(val & ETP_R10_ABSOLUTE_MODE)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700853 psmouse_err(psmouse,
854 "touchpad refuses to switch to absolute mode.\n");
Arjan Opmeerb2546df2009-04-18 19:10:17 -0700855 rc = -1;
856 }
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400857 }
858
JJ Ding1dc6ede2011-09-09 10:31:58 -0700859 skip_readback_reg_10:
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400860 if (rc)
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700861 psmouse_err(psmouse, "failed to initialise registers.\n");
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400862
863 return rc;
864}
865
JJ Ding28f49612011-09-09 10:30:31 -0700866static int elantech_set_range(struct psmouse *psmouse,
867 unsigned int *x_min, unsigned int *y_min,
JJ Ding1dc6ede2011-09-09 10:31:58 -0700868 unsigned int *x_max, unsigned int *y_max,
869 unsigned int *width)
JJ Ding230282a2011-09-09 10:26:16 -0700870{
871 struct elantech_data *etd = psmouse->private;
JJ Ding28f49612011-09-09 10:30:31 -0700872 unsigned char param[3];
JJ Ding1dc6ede2011-09-09 10:31:58 -0700873 unsigned char traces;
JJ Ding230282a2011-09-09 10:26:16 -0700874
875 switch (etd->hw_version) {
876 case 1:
877 *x_min = ETP_XMIN_V1;
878 *y_min = ETP_YMIN_V1;
879 *x_max = ETP_XMAX_V1;
880 *y_max = ETP_YMAX_V1;
881 break;
882
883 case 2:
884 if (etd->fw_version == 0x020800 ||
885 etd->fw_version == 0x020b00 ||
886 etd->fw_version == 0x020030) {
887 *x_min = ETP_XMIN_V2;
888 *y_min = ETP_YMIN_V2;
889 *x_max = ETP_XMAX_V2;
890 *y_max = ETP_YMAX_V2;
891 } else {
JJ Ding84a90b62011-09-20 22:42:51 -0700892 int i;
893 int fixed_dpi;
894
JJ Ding230282a2011-09-09 10:26:16 -0700895 i = (etd->fw_version > 0x020800 &&
896 etd->fw_version < 0x020900) ? 1 : 2;
JJ Ding84a90b62011-09-20 22:42:51 -0700897
JJ Dingb56b92a2011-11-20 22:21:45 -0800898 if (etd->send_cmd(psmouse, ETP_FW_ID_QUERY, param))
JJ Ding84a90b62011-09-20 22:42:51 -0700899 return -1;
900
901 fixed_dpi = param[1] & 0x10;
902
903 if (((etd->fw_version >> 16) == 0x14) && fixed_dpi) {
JJ Dingb56b92a2011-11-20 22:21:45 -0800904 if (etd->send_cmd(psmouse, ETP_SAMPLE_QUERY, param))
JJ Ding84a90b62011-09-20 22:42:51 -0700905 return -1;
906
907 *x_max = (etd->capabilities[1] - i) * param[1] / 2;
908 *y_max = (etd->capabilities[2] - i) * param[2] / 2;
909 } else if (etd->fw_version == 0x040216) {
910 *x_max = 819;
911 *y_max = 405;
912 } else if (etd->fw_version == 0x040219 || etd->fw_version == 0x040215) {
913 *x_max = 900;
914 *y_max = 500;
915 } else {
916 *x_max = (etd->capabilities[1] - i) * 64;
917 *y_max = (etd->capabilities[2] - i) * 64;
918 }
JJ Ding230282a2011-09-09 10:26:16 -0700919 }
920 break;
JJ Ding28f49612011-09-09 10:30:31 -0700921
922 case 3:
JJ Dingb56b92a2011-11-20 22:21:45 -0800923 if (etd->send_cmd(psmouse, ETP_FW_ID_QUERY, param))
JJ Ding28f49612011-09-09 10:30:31 -0700924 return -1;
925
926 *x_max = (0x0f & param[0]) << 8 | param[1];
927 *y_max = (0xf0 & param[0]) << 4 | param[2];
928 break;
JJ Ding1dc6ede2011-09-09 10:31:58 -0700929
930 case 4:
JJ Dingb56b92a2011-11-20 22:21:45 -0800931 if (etd->send_cmd(psmouse, ETP_FW_ID_QUERY, param))
JJ Ding1dc6ede2011-09-09 10:31:58 -0700932 return -1;
933
934 *x_max = (0x0f & param[0]) << 8 | param[1];
935 *y_max = (0xf0 & param[0]) << 4 | param[2];
936 traces = etd->capabilities[1];
937 if ((traces < 2) || (traces > *x_max))
938 return -1;
939
940 *width = *x_max / (traces - 1);
941 break;
JJ Ding230282a2011-09-09 10:26:16 -0700942 }
JJ Ding28f49612011-09-09 10:30:31 -0700943
944 return 0;
JJ Ding230282a2011-09-09 10:26:16 -0700945}
946
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400947/*
JJ Ding3d95fd62011-11-20 22:26:56 -0800948 * (value from firmware) * 10 + 790 = dpi
949 * we also have to convert dpi to dots/mm (*10/254 to avoid floating point)
950 */
951static unsigned int elantech_convert_res(unsigned int val)
952{
953 return (val * 10 + 790) * 10 / 254;
954}
955
956static int elantech_get_resolution_v4(struct psmouse *psmouse,
957 unsigned int *x_res,
958 unsigned int *y_res)
959{
960 unsigned char param[3];
961
962 if (elantech_send_cmd(psmouse, ETP_RESOLUTION_QUERY, param))
963 return -1;
964
965 *x_res = elantech_convert_res(param[1] & 0x0f);
966 *y_res = elantech_convert_res((param[1] & 0xf0) >> 4);
967
968 return 0;
969}
970
971/*
Hans de Goede037a0572013-12-16 07:09:25 -0800972 * Advertise INPUT_PROP_BUTTONPAD for clickpads. The testing of bit 12 in
973 * fw_version for this is based on the following fw_version & caps table:
974 *
975 * Laptop-model: fw_version: caps: buttons:
976 * Acer S3 0x461f00 10, 13, 0e clickpad
977 * Acer S7-392 0x581f01 50, 17, 0d clickpad
978 * Acer V5-131 0x461f02 01, 16, 0c clickpad
979 * Acer V5-551 0x461f00 ? clickpad
980 * Asus K53SV 0x450f01 78, 15, 0c 2 hw buttons
981 * Asus G46VW 0x460f02 00, 18, 0c 2 hw buttons
982 * Asus G750JX 0x360f00 00, 16, 0c 2 hw buttons
983 * Asus UX31 0x361f00 20, 15, 0e clickpad
984 * Asus UX32VD 0x361f02 00, 15, 0e clickpad
985 * Avatar AVIU-145A2 0x361f00 ? clickpad
986 * Gigabyte U2442 0x450f01 58, 17, 0c 2 hw buttons
987 * Lenovo L430 0x350f02 b9, 15, 0c 2 hw buttons (*)
988 * Samsung NF210 0x150b00 78, 14, 0a 2 hw buttons
989 * Samsung NP770Z5E 0x575f01 10, 15, 0f clickpad
990 * Samsung NP700Z5B 0x361f06 21, 15, 0f clickpad
991 * Samsung NP900X3E-A02 0x575f03 ? clickpad
992 * Samsung NP-QX410 0x851b00 19, 14, 0c clickpad
993 * Samsung RC512 0x450f00 08, 15, 0c 2 hw buttons
994 * Samsung RF710 0x450f00 ? 2 hw buttons
995 * System76 Pangolin 0x250f01 ? 2 hw buttons
996 * (*) + 3 trackpoint buttons
997 */
998static void elantech_set_buttonpad_prop(struct psmouse *psmouse)
999{
1000 struct input_dev *dev = psmouse->dev;
1001 struct elantech_data *etd = psmouse->private;
1002
1003 if (etd->fw_version & 0x001000) {
1004 __set_bit(INPUT_PROP_BUTTONPAD, dev->propbit);
1005 __clear_bit(BTN_RIGHT, dev->keybit);
1006 }
1007}
1008
1009/*
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001010 * Set the appropriate event bits for the input subsystem
1011 */
JJ Ding28f49612011-09-09 10:30:31 -07001012static int elantech_set_input_params(struct psmouse *psmouse)
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001013{
1014 struct input_dev *dev = psmouse->dev;
1015 struct elantech_data *etd = psmouse->private;
JJ Ding1dc6ede2011-09-09 10:31:58 -07001016 unsigned int x_min = 0, y_min = 0, x_max = 0, y_max = 0, width = 0;
JJ Ding3d95fd62011-11-20 22:26:56 -08001017 unsigned int x_res = 0, y_res = 0;
JJ Ding230282a2011-09-09 10:26:16 -07001018
JJ Ding1dc6ede2011-09-09 10:31:58 -07001019 if (elantech_set_range(psmouse, &x_min, &y_min, &x_max, &y_max, &width))
JJ Ding28f49612011-09-09 10:30:31 -07001020 return -1;
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001021
JJ Dinge3dde4f2012-04-10 00:30:12 -07001022 __set_bit(INPUT_PROP_POINTER, dev->propbit);
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001023 __set_bit(EV_KEY, dev->evbit);
1024 __set_bit(EV_ABS, dev->evbit);
Dmitry Torokhovc7a1f3c2009-11-16 22:12:21 -08001025 __clear_bit(EV_REL, dev->evbit);
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001026
1027 __set_bit(BTN_LEFT, dev->keybit);
1028 __set_bit(BTN_RIGHT, dev->keybit);
1029
1030 __set_bit(BTN_TOUCH, dev->keybit);
1031 __set_bit(BTN_TOOL_FINGER, dev->keybit);
1032 __set_bit(BTN_TOOL_DOUBLETAP, dev->keybit);
1033 __set_bit(BTN_TOOL_TRIPLETAP, dev->keybit);
1034
1035 switch (etd->hw_version) {
1036 case 1:
1037 /* Rocker button */
Dmitry Torokhov504e8be2010-05-13 00:41:15 -07001038 if (etd->fw_version < 0x020000 &&
JJ Ding230282a2011-09-09 10:26:16 -07001039 (etd->capabilities[0] & ETP_CAP_HAS_ROCKER)) {
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001040 __set_bit(BTN_FORWARD, dev->keybit);
1041 __set_bit(BTN_BACK, dev->keybit);
1042 }
JJ Ding230282a2011-09-09 10:26:16 -07001043 input_set_abs_params(dev, ABS_X, x_min, x_max, 0, 0);
1044 input_set_abs_params(dev, ABS_Y, y_min, y_max, 0, 0);
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001045 break;
1046
1047 case 2:
Éric Piel22462d92010-08-05 23:51:49 -07001048 __set_bit(BTN_TOOL_QUADTAP, dev->keybit);
JJ Ding28f49612011-09-09 10:30:31 -07001049 __set_bit(INPUT_PROP_SEMI_MT, dev->propbit);
1050 /* fall through */
1051 case 3:
Hans de Goede037a0572013-12-16 07:09:25 -08001052 if (etd->hw_version == 3)
1053 elantech_set_buttonpad_prop(psmouse);
JJ Ding230282a2011-09-09 10:26:16 -07001054 input_set_abs_params(dev, ABS_X, x_min, x_max, 0, 0);
1055 input_set_abs_params(dev, ABS_Y, y_min, y_max, 0, 0);
Éric Pielf941c702011-05-16 22:45:54 -07001056 if (etd->reports_pressure) {
1057 input_set_abs_params(dev, ABS_PRESSURE, ETP_PMIN_V2,
1058 ETP_PMAX_V2, 0, 0);
1059 input_set_abs_params(dev, ABS_TOOL_WIDTH, ETP_WMIN_V2,
1060 ETP_WMAX_V2, 0, 0);
1061 }
Éric Piel89eec4d2011-05-16 22:45:54 -07001062 input_mt_init_slots(dev, 2);
JJ Ding230282a2011-09-09 10:26:16 -07001063 input_set_abs_params(dev, ABS_MT_POSITION_X, x_min, x_max, 0, 0);
1064 input_set_abs_params(dev, ABS_MT_POSITION_Y, y_min, y_max, 0, 0);
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001065 break;
JJ Ding1dc6ede2011-09-09 10:31:58 -07001066
1067 case 4:
JJ Ding3d95fd62011-11-20 22:26:56 -08001068 if (elantech_get_resolution_v4(psmouse, &x_res, &y_res)) {
1069 /*
1070 * if query failed, print a warning and leave the values
1071 * zero to resemble synaptics.c behavior.
1072 */
1073 psmouse_warn(psmouse, "couldn't query resolution data.\n");
1074 }
Hans de Goede037a0572013-12-16 07:09:25 -08001075 elantech_set_buttonpad_prop(psmouse);
JJ Ding1dc6ede2011-09-09 10:31:58 -07001076 __set_bit(BTN_TOOL_QUADTAP, dev->keybit);
1077 /* For X to recognize me as touchpad. */
1078 input_set_abs_params(dev, ABS_X, x_min, x_max, 0, 0);
1079 input_set_abs_params(dev, ABS_Y, y_min, y_max, 0, 0);
JJ Ding3d95fd62011-11-20 22:26:56 -08001080 input_abs_set_res(dev, ABS_X, x_res);
1081 input_abs_set_res(dev, ABS_Y, y_res);
JJ Ding1dc6ede2011-09-09 10:31:58 -07001082 /*
1083 * range of pressure and width is the same as v2,
1084 * report ABS_PRESSURE, ABS_TOOL_WIDTH for compatibility.
1085 */
1086 input_set_abs_params(dev, ABS_PRESSURE, ETP_PMIN_V2,
1087 ETP_PMAX_V2, 0, 0);
1088 input_set_abs_params(dev, ABS_TOOL_WIDTH, ETP_WMIN_V2,
1089 ETP_WMAX_V2, 0, 0);
1090 /* Multitouch capable pad, up to 5 fingers. */
1091 input_mt_init_slots(dev, ETP_MAX_FINGERS);
1092 input_set_abs_params(dev, ABS_MT_POSITION_X, x_min, x_max, 0, 0);
1093 input_set_abs_params(dev, ABS_MT_POSITION_Y, y_min, y_max, 0, 0);
JJ Ding3d95fd62011-11-20 22:26:56 -08001094 input_abs_set_res(dev, ABS_MT_POSITION_X, x_res);
1095 input_abs_set_res(dev, ABS_MT_POSITION_Y, y_res);
JJ Ding1dc6ede2011-09-09 10:31:58 -07001096 input_set_abs_params(dev, ABS_MT_PRESSURE, ETP_PMIN_V2,
1097 ETP_PMAX_V2, 0, 0);
1098 /*
1099 * The firmware reports how many trace lines the finger spans,
1100 * convert to surface unit as Protocol-B requires.
1101 */
1102 input_set_abs_params(dev, ABS_MT_TOUCH_MAJOR, 0,
1103 ETP_WMAX_V2 * width, 0, 0);
1104 break;
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001105 }
JJ Ding230282a2011-09-09 10:26:16 -07001106
1107 etd->y_max = y_max;
JJ Ding1dc6ede2011-09-09 10:31:58 -07001108 etd->width = width;
JJ Ding28f49612011-09-09 10:30:31 -07001109
1110 return 0;
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001111}
1112
1113struct elantech_attr_data {
1114 size_t field_offset;
1115 unsigned char reg;
1116};
1117
1118/*
1119 * Display a register value by reading a sysfs entry
1120 */
1121static ssize_t elantech_show_int_attr(struct psmouse *psmouse, void *data,
1122 char *buf)
1123{
1124 struct elantech_data *etd = psmouse->private;
1125 struct elantech_attr_data *attr = data;
1126 unsigned char *reg = (unsigned char *) etd + attr->field_offset;
1127 int rc = 0;
1128
1129 if (attr->reg)
1130 rc = elantech_read_reg(psmouse, attr->reg, reg);
1131
1132 return sprintf(buf, "0x%02x\n", (attr->reg && rc) ? -1 : *reg);
1133}
1134
1135/*
1136 * Write a register value by writing a sysfs entry
1137 */
1138static ssize_t elantech_set_int_attr(struct psmouse *psmouse,
1139 void *data, const char *buf, size_t count)
1140{
1141 struct elantech_data *etd = psmouse->private;
1142 struct elantech_attr_data *attr = data;
1143 unsigned char *reg = (unsigned char *) etd + attr->field_offset;
JJ Ding76496e72011-11-09 10:20:14 -08001144 unsigned char value;
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001145 int err;
1146
JJ Ding76496e72011-11-09 10:20:14 -08001147 err = kstrtou8(buf, 16, &value);
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001148 if (err)
1149 return err;
1150
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001151 /* Do we need to preserve some bits for version 2 hardware too? */
1152 if (etd->hw_version == 1) {
1153 if (attr->reg == 0x10)
1154 /* Force absolute mode always on */
1155 value |= ETP_R10_ABSOLUTE_MODE;
1156 else if (attr->reg == 0x11)
1157 /* Force 4 byte mode always on */
1158 value |= ETP_R11_4_BYTE_MODE;
1159 }
1160
1161 if (!attr->reg || elantech_write_reg(psmouse, attr->reg, value) == 0)
1162 *reg = value;
1163
1164 return count;
1165}
1166
1167#define ELANTECH_INT_ATTR(_name, _register) \
1168 static struct elantech_attr_data elantech_attr_##_name = { \
1169 .field_offset = offsetof(struct elantech_data, _name), \
1170 .reg = _register, \
1171 }; \
1172 PSMOUSE_DEFINE_ATTR(_name, S_IWUSR | S_IRUGO, \
1173 &elantech_attr_##_name, \
1174 elantech_show_int_attr, \
1175 elantech_set_int_attr)
1176
JJ Ding1dc6ede2011-09-09 10:31:58 -07001177ELANTECH_INT_ATTR(reg_07, 0x07);
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001178ELANTECH_INT_ATTR(reg_10, 0x10);
1179ELANTECH_INT_ATTR(reg_11, 0x11);
1180ELANTECH_INT_ATTR(reg_20, 0x20);
1181ELANTECH_INT_ATTR(reg_21, 0x21);
1182ELANTECH_INT_ATTR(reg_22, 0x22);
1183ELANTECH_INT_ATTR(reg_23, 0x23);
1184ELANTECH_INT_ATTR(reg_24, 0x24);
1185ELANTECH_INT_ATTR(reg_25, 0x25);
1186ELANTECH_INT_ATTR(reg_26, 0x26);
1187ELANTECH_INT_ATTR(debug, 0);
1188ELANTECH_INT_ATTR(paritycheck, 0);
1189
1190static struct attribute *elantech_attrs[] = {
JJ Ding1dc6ede2011-09-09 10:31:58 -07001191 &psmouse_attr_reg_07.dattr.attr,
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001192 &psmouse_attr_reg_10.dattr.attr,
1193 &psmouse_attr_reg_11.dattr.attr,
1194 &psmouse_attr_reg_20.dattr.attr,
1195 &psmouse_attr_reg_21.dattr.attr,
1196 &psmouse_attr_reg_22.dattr.attr,
1197 &psmouse_attr_reg_23.dattr.attr,
1198 &psmouse_attr_reg_24.dattr.attr,
1199 &psmouse_attr_reg_25.dattr.attr,
1200 &psmouse_attr_reg_26.dattr.attr,
1201 &psmouse_attr_debug.dattr.attr,
1202 &psmouse_attr_paritycheck.dattr.attr,
1203 NULL
1204};
1205
1206static struct attribute_group elantech_attr_group = {
1207 .attrs = elantech_attrs,
1208};
1209
Dmitry Torokhova0836322010-05-19 10:11:13 -07001210static bool elantech_is_signature_valid(const unsigned char *param)
1211{
1212 static const unsigned char rates[] = { 200, 100, 80, 60, 40, 20, 10 };
1213 int i;
1214
1215 if (param[0] == 0)
1216 return false;
1217
1218 if (param[1] == 0)
1219 return true;
1220
Hans de Goede32b45e02014-09-08 14:39:52 -07001221 /*
1222 * Some models have a revision higher then 20. Meaning param[2] may
1223 * be 10 or 20, skip the rates check for these.
1224 */
1225 if (param[0] == 0x46 && (param[1] & 0xef) == 0x0f && param[2] < 40)
1226 return true;
1227
Dmitry Torokhova0836322010-05-19 10:11:13 -07001228 for (i = 0; i < ARRAY_SIZE(rates); i++)
1229 if (param[2] == rates[i])
1230 return false;
1231
1232 return true;
1233}
1234
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001235/*
1236 * Use magic knock to detect Elantech touchpad
1237 */
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001238int elantech_detect(struct psmouse *psmouse, bool set_properties)
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001239{
1240 struct ps2dev *ps2dev = &psmouse->ps2dev;
1241 unsigned char param[3];
1242
1243 ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_RESET_DIS);
1244
1245 if (ps2_command(ps2dev, NULL, PSMOUSE_CMD_DISABLE) ||
1246 ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11) ||
1247 ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11) ||
1248 ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11) ||
1249 ps2_command(ps2dev, param, PSMOUSE_CMD_GETINFO)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001250 psmouse_dbg(psmouse, "sending Elantech magic knock failed.\n");
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001251 return -1;
1252 }
1253
1254 /*
1255 * Report this in case there are Elantech models that use a different
1256 * set of magic numbers
1257 */
JJ Ding28f49612011-09-09 10:30:31 -07001258 if (param[0] != 0x3c || param[1] != 0x03 ||
1259 (param[2] != 0xc8 && param[2] != 0x00)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001260 psmouse_dbg(psmouse,
1261 "unexpected magic knock result 0x%02x, 0x%02x, 0x%02x.\n",
1262 param[0], param[1], param[2]);
Arjan Opmeer9ab7b252009-02-28 13:52:40 -08001263 return -1;
1264 }
1265
1266 /*
1267 * Query touchpad's firmware version and see if it reports known
1268 * value to avoid mis-detection. Logitech mice are known to respond
1269 * to Elantech magic knock and there might be more.
1270 */
1271 if (synaptics_send_cmd(psmouse, ETP_FW_VERSION_QUERY, param)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001272 psmouse_dbg(psmouse, "failed to query firmware version.\n");
Arjan Opmeer9ab7b252009-02-28 13:52:40 -08001273 return -1;
1274 }
1275
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001276 psmouse_dbg(psmouse,
1277 "Elantech version query result 0x%02x, 0x%02x, 0x%02x.\n",
1278 param[0], param[1], param[2]);
Arjan Opmeer9ab7b252009-02-28 13:52:40 -08001279
Dmitry Torokhova0836322010-05-19 10:11:13 -07001280 if (!elantech_is_signature_valid(param)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001281 psmouse_dbg(psmouse,
1282 "Probably not a real Elantech touchpad. Aborting.\n");
JJ Ding4af61e92011-09-20 22:42:51 -07001283 return -1;
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001284 }
1285
1286 if (set_properties) {
1287 psmouse->vendor = "Elantech";
1288 psmouse->name = "Touchpad";
1289 }
1290
1291 return 0;
1292}
1293
1294/*
1295 * Clean up sysfs entries when disconnecting
1296 */
1297static void elantech_disconnect(struct psmouse *psmouse)
1298{
1299 sysfs_remove_group(&psmouse->ps2dev.serio->dev.kobj,
1300 &elantech_attr_group);
1301 kfree(psmouse->private);
1302 psmouse->private = NULL;
1303}
1304
1305/*
1306 * Put the touchpad back into absolute mode when reconnecting
1307 */
1308static int elantech_reconnect(struct psmouse *psmouse)
1309{
JJ Dinga67ada72012-04-10 00:29:12 -07001310 psmouse_reset(psmouse);
1311
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001312 if (elantech_detect(psmouse, 0))
1313 return -1;
1314
1315 if (elantech_set_absolute_mode(psmouse)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001316 psmouse_err(psmouse,
1317 "failed to put touchpad back into absolute mode.\n");
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001318 return -1;
1319 }
1320
1321 return 0;
1322}
1323
1324/*
JJ Ding3c8bbb92011-09-09 10:28:19 -07001325 * determine hardware version and set some properties according to it.
1326 */
JJ Ding28f49612011-09-09 10:30:31 -07001327static int elantech_set_properties(struct elantech_data *etd)
JJ Ding3c8bbb92011-09-09 10:28:19 -07001328{
JJ Ding3940d612011-11-08 22:13:14 -08001329 /* This represents the version of IC body. */
JJ Ding1dc6ede2011-09-09 10:31:58 -07001330 int ver = (etd->fw_version & 0x0f0000) >> 16;
1331
JJ Ding3940d612011-11-08 22:13:14 -08001332 /* Early version of Elan touchpads doesn't obey the rule. */
JJ Ding3c8bbb92011-09-09 10:28:19 -07001333 if (etd->fw_version < 0x020030 || etd->fw_version == 0x020600)
1334 etd->hw_version = 1;
JJ Ding3940d612011-11-08 22:13:14 -08001335 else {
1336 switch (ver) {
1337 case 2:
1338 case 4:
1339 etd->hw_version = 2;
1340 break;
1341 case 5:
1342 etd->hw_version = 3;
1343 break;
1344 case 6:
1345 etd->hw_version = 4;
1346 break;
1347 default:
1348 return -1;
1349 }
1350 }
JJ Ding3c8bbb92011-09-09 10:28:19 -07001351
JJ Dingb56b92a2011-11-20 22:21:45 -08001352 /* decide which send_cmd we're gonna use early */
1353 etd->send_cmd = etd->hw_version >= 3 ? elantech_send_cmd :
1354 synaptics_send_cmd;
1355
1356 /* Turn on packet checking by default */
JJ Ding3c8bbb92011-09-09 10:28:19 -07001357 etd->paritycheck = 1;
1358
1359 /*
1360 * This firmware suffers from misreporting coordinates when
1361 * a touch action starts causing the mouse cursor or scrolled page
1362 * to jump. Enable a workaround.
1363 */
1364 etd->jumpy_cursor =
1365 (etd->fw_version == 0x020022 || etd->fw_version == 0x020600);
1366
JJ Ding28f49612011-09-09 10:30:31 -07001367 if (etd->hw_version > 1) {
JJ Ding3c8bbb92011-09-09 10:28:19 -07001368 /* For now show extra debug information */
1369 etd->debug = 1;
1370
1371 if (etd->fw_version >= 0x020800)
1372 etd->reports_pressure = true;
1373 }
JJ Ding28f49612011-09-09 10:30:31 -07001374
1375 return 0;
JJ Ding3c8bbb92011-09-09 10:28:19 -07001376}
1377
1378/*
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001379 * Initialize the touchpad and create sysfs entries
1380 */
1381int elantech_init(struct psmouse *psmouse)
1382{
1383 struct elantech_data *etd;
1384 int i, error;
1385 unsigned char param[3];
1386
Arjan Opmeer9ab7b252009-02-28 13:52:40 -08001387 psmouse->private = etd = kzalloc(sizeof(struct elantech_data), GFP_KERNEL);
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001388 if (!etd)
Davidlohr Bueso6792cbb2010-09-29 18:53:35 -07001389 return -ENOMEM;
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001390
JJ Dinga67ada72012-04-10 00:29:12 -07001391 psmouse_reset(psmouse);
1392
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001393 etd->parity[0] = 1;
1394 for (i = 1; i < 256; i++)
1395 etd->parity[i] = etd->parity[i & (i - 1)] ^ 1;
1396
1397 /*
Arjan Opmeer9ab7b252009-02-28 13:52:40 -08001398 * Do the version query again so we can store the result
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001399 */
1400 if (synaptics_send_cmd(psmouse, ETP_FW_VERSION_QUERY, param)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001401 psmouse_err(psmouse, "failed to query firmware version.\n");
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001402 goto init_fail;
1403 }
Dmitry Torokhov504e8be2010-05-13 00:41:15 -07001404 etd->fw_version = (param[0] << 16) | (param[1] << 8) | param[2];
JJ Ding28f49612011-09-09 10:30:31 -07001405
1406 if (elantech_set_properties(etd)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001407 psmouse_err(psmouse, "unknown hardware version, aborting...\n");
JJ Ding28f49612011-09-09 10:30:31 -07001408 goto init_fail;
1409 }
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001410 psmouse_info(psmouse,
1411 "assuming hardware version %d (with firmware version 0x%02x%02x%02x)\n",
1412 etd->hw_version, param[0], param[1], param[2]);
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001413
JJ Dingb56b92a2011-11-20 22:21:45 -08001414 if (etd->send_cmd(psmouse, ETP_CAPABILITIES_QUERY,
JJ Ding230282a2011-09-09 10:26:16 -07001415 etd->capabilities)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001416 psmouse_err(psmouse, "failed to query capabilities.\n");
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001417 goto init_fail;
1418 }
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001419 psmouse_info(psmouse,
1420 "Synaptics capabilities query result 0x%02x, 0x%02x, 0x%02x.\n",
1421 etd->capabilities[0], etd->capabilities[1],
1422 etd->capabilities[2]);
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001423
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001424 if (elantech_set_absolute_mode(psmouse)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001425 psmouse_err(psmouse,
1426 "failed to put touchpad into absolute mode.\n");
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001427 goto init_fail;
1428 }
1429
JJ Ding28f49612011-09-09 10:30:31 -07001430 if (elantech_set_input_params(psmouse)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001431 psmouse_err(psmouse, "failed to query touchpad range.\n");
JJ Ding28f49612011-09-09 10:30:31 -07001432 goto init_fail;
1433 }
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001434
1435 error = sysfs_create_group(&psmouse->ps2dev.serio->dev.kobj,
1436 &elantech_attr_group);
1437 if (error) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001438 psmouse_err(psmouse,
1439 "failed to create sysfs attributes, error: %d.\n",
1440 error);
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001441 goto init_fail;
1442 }
1443
1444 psmouse->protocol_handler = elantech_process_byte;
1445 psmouse->disconnect = elantech_disconnect;
1446 psmouse->reconnect = elantech_reconnect;
JJ Ding28f49612011-09-09 10:30:31 -07001447 psmouse->pktsize = etd->hw_version > 1 ? 6 : 4;
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001448
1449 return 0;
1450
1451 init_fail:
1452 kfree(etd);
1453 return -1;
1454}