]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/input/mouse/synaptics.c
Merge branch 'for-3.20/drivers' of git://git.kernel.dk/linux-block
[mirror_ubuntu-artful-kernel.git] / drivers / input / mouse / synaptics.c
CommitLineData
1da177e4
LT
1/*
2 * Synaptics TouchPad PS/2 mouse driver
3 *
4 * 2003 Dmitry Torokhov <dtor@mail.ru>
5 * Added support for pass-through port. Special thanks to Peter Berg Larsen
6 * for explaining various Synaptics quirks.
7 *
8 * 2003 Peter Osterlund <petero2@telia.com>
9 * Ported to 2.5 input device infrastructure.
10 *
11 * Copyright (C) 2001 Stefan Gmeiner <riddlebox@freesurf.ch>
12 * start merging tpconfig and gpm code to a xfree-input module
13 * adding some changes and extensions (ex. 3rd and 4th button)
14 *
15 * Copyright (c) 1997 C. Scott Ananian <cananian@alumni.priceton.edu>
16 * Copyright (c) 1998-2000 Bruce Kalk <kall@compass.com>
17 * code for the special synaptics commands (from the tpconfig-source)
18 *
19 * This program is free software; you can redistribute it and/or modify it
20 * under the terms of the GNU General Public License version 2 as published by
21 * the Free Software Foundation.
22 *
23 * Trademarks are the property of their respective owners.
24 */
25
26#include <linux/module.h>
8521478f 27#include <linux/delay.h>
7705d548 28#include <linux/dmi.h>
fec6e525 29#include <linux/input/mt.h>
1da177e4
LT
30#include <linux/serio.h>
31#include <linux/libps2.h>
5a0e3ad6 32#include <linux/slab.h>
1da177e4
LT
33#include "psmouse.h"
34#include "synaptics.h"
35
36/*
37 * The x/y limits are taken from the Synaptics TouchPad interfacing Guide,
38 * section 2.3.2, which says that they should be valid regardless of the
39 * actual size of the sensor.
83ba9ea8
DT
40 * Note that newer firmware allows querying device for maximum useable
41 * coordinates.
1da177e4 42 */
c0394506
SF
43#define XMIN 0
44#define XMAX 6143
45#define YMIN 0
46#define YMAX 6143
1da177e4
LT
47#define XMIN_NOMINAL 1472
48#define XMAX_NOMINAL 5472
49#define YMIN_NOMINAL 1408
50#define YMAX_NOMINAL 4448
51
c0394506
SF
52/* Size in bits of absolute position values reported by the hardware */
53#define ABS_POS_BITS 13
54
55/*
824efd37
SF
56 * These values should represent the absolute maximum value that will
57 * be reported for a positive position value. Some Synaptics firmware
58 * uses this value to indicate a finger near the edge of the touchpad
59 * whose precise position cannot be determined.
60 *
61 * At least one touchpad is known to report positions in excess of this
62 * value which are actually negative values truncated to the 13-bit
63 * reporting range. These values have never been observed to be lower
64 * than 8184 (i.e. -8), so we treat all values greater than 8176 as
65 * negative and any other value as positive.
c0394506 66 */
824efd37
SF
67#define X_MAX_POSITIVE 8176
68#define Y_MAX_POSITIVE 8176
55e3d922 69
6ab17a84
BT
70/* maximum ABS_MT_POSITION displacement (in mm) */
71#define DMAX 10
72
1da177e4 73/*****************************************************************************
55e3d922 74 * Stuff we need even when we do not want native Synaptics support
1da177e4
LT
75 ****************************************************************************/
76
77/*
55e3d922 78 * Set the synaptics touchpad mode byte by special commands
1da177e4 79 */
55e3d922 80static int synaptics_mode_cmd(struct psmouse *psmouse, unsigned char mode)
1da177e4 81{
55e3d922
AS
82 unsigned char param[1];
83
84 if (psmouse_sliced_command(psmouse, mode))
1da177e4 85 return -1;
55e3d922
AS
86 param[0] = SYN_PS_SET_MODE2;
87 if (ps2_command(&psmouse->ps2dev, param, PSMOUSE_CMD_SETRATE))
1da177e4
LT
88 return -1;
89 return 0;
90}
91
b7802c5c 92int synaptics_detect(struct psmouse *psmouse, bool set_properties)
55e3d922
AS
93{
94 struct ps2dev *ps2dev = &psmouse->ps2dev;
95 unsigned char param[4];
96
97 param[0] = 0;
98
99 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES);
100 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES);
101 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES);
102 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES);
103 ps2_command(ps2dev, param, PSMOUSE_CMD_GETINFO);
104
105 if (param[1] != 0x47)
106 return -ENODEV;
107
108 if (set_properties) {
109 psmouse->vendor = "Synaptics";
110 psmouse->name = "TouchPad";
111 }
112
113 return 0;
114}
115
116void synaptics_reset(struct psmouse *psmouse)
117{
118 /* reset touchpad back to relative mode, gestures enabled */
119 synaptics_mode_cmd(psmouse, 0);
120}
121
122#ifdef CONFIG_MOUSE_PS2_SYNAPTICS
e08d9afa
HR
123
124static bool cr48_profile_sensor;
125
0f68f39c
HG
126struct min_max_quirk {
127 const char * const *pnp_ids;
128 int x_min, x_max, y_min, y_max;
129};
130
131static const struct min_max_quirk min_max_pnpid_table[] = {
132 {
133 (const char * const []){"LEN0033", NULL},
134 1024, 5052, 2258, 4832
135 },
136 {
137 (const char * const []){"LEN0035", "LEN0042", NULL},
138 1232, 5710, 1156, 4696
139 },
140 {
8543cf1c
PH
141 (const char * const []){"LEN0034", "LEN0036", "LEN0037",
142 "LEN0039", "LEN2002", "LEN2004",
143 NULL},
0f68f39c
HG
144 1024, 5112, 2024, 4832
145 },
146 {
147 (const char * const []){"LEN2001", NULL},
148 1024, 5022, 2508, 4832
149 },
bce4f9e7
BS
150 {
151 (const char * const []){"LEN2006", NULL},
152 1264, 5675, 1171, 4688
153 },
0f68f39c
HG
154 { }
155};
156
43e19888
HG
157/* This list has been kindly provided by Synaptics. */
158static const char * const topbuttonpad_pnp_ids[] = {
159 "LEN0017",
160 "LEN0018",
161 "LEN0019",
162 "LEN0023",
163 "LEN002A",
164 "LEN002B",
165 "LEN002C",
166 "LEN002D",
167 "LEN002E",
168 "LEN0033", /* Helix */
0f68f39c 169 "LEN0034", /* T431s, L440, L540, T540, W540, X1 Carbon 2nd */
43e19888
HG
170 "LEN0035", /* X240 */
171 "LEN0036", /* T440 */
8543cf1c 172 "LEN0037", /* X1 Carbon 2nd */
43e19888 173 "LEN0038",
e4742b1e 174 "LEN0039", /* T440s */
43e19888
HG
175 "LEN0041",
176 "LEN0042", /* Yoga */
177 "LEN0045",
178 "LEN0046",
179 "LEN0047",
180 "LEN0048",
181 "LEN0049",
182 "LEN2000",
0f68f39c 183 "LEN2001", /* Edge E431 */
e76aed9d 184 "LEN2002", /* Edge E531 */
43e19888
HG
185 "LEN2003",
186 "LEN2004", /* L440 */
187 "LEN2005",
188 "LEN2006",
189 "LEN2007",
190 "LEN2008",
191 "LEN2009",
192 "LEN200A",
193 "LEN200B",
194 NULL
195};
55e3d922
AS
196
197/*****************************************************************************
198 * Synaptics communications functions
199 ****************************************************************************/
200
1a49a0a0
JD
201/*
202 * Synaptics touchpads report the y coordinate from bottom to top, which is
203 * opposite from what userspace expects.
204 * This function is used to invert y before reporting.
205 */
206static int synaptics_invert_y(int y)
207{
208 return YMAX_NOMINAL + YMIN_NOMINAL - y;
209}
210
1da177e4 211/*
55e3d922 212 * Send a command to the synpatics touchpad by special commands
1da177e4 213 */
55e3d922 214static int synaptics_send_cmd(struct psmouse *psmouse, unsigned char c, unsigned char *param)
1da177e4 215{
55e3d922 216 if (psmouse_sliced_command(psmouse, c))
1da177e4 217 return -1;
55e3d922 218 if (ps2_command(&psmouse->ps2dev, param, PSMOUSE_CMD_GETINFO))
1da177e4
LT
219 return -1;
220 return 0;
221}
222
223/*
224 * Read the model-id bytes from the touchpad
225 * see also SYN_MODEL_* macros
226 */
227static int synaptics_model_id(struct psmouse *psmouse)
228{
229 struct synaptics_data *priv = psmouse->private;
230 unsigned char mi[3];
231
232 if (synaptics_send_cmd(psmouse, SYN_QUE_MODEL, mi))
233 return -1;
234 priv->model_id = (mi[0]<<16) | (mi[1]<<8) | mi[2];
235 return 0;
236}
237
c6bd9d46
DK
238/*
239 * Read the board id from the touchpad
240 * The board id is encoded in the "QUERY MODES" response
241 */
242static int synaptics_board_id(struct psmouse *psmouse)
243{
244 struct synaptics_data *priv = psmouse->private;
245 unsigned char bid[3];
246
247 if (synaptics_send_cmd(psmouse, SYN_QUE_MODES, bid))
248 return -1;
249 priv->board_id = ((bid[0] & 0xfc) << 6) | bid[1];
250 return 0;
251}
252
253/*
254 * Read the firmware id from the touchpad
255 */
256static int synaptics_firmware_id(struct psmouse *psmouse)
257{
258 struct synaptics_data *priv = psmouse->private;
259 unsigned char fwid[3];
260
261 if (synaptics_send_cmd(psmouse, SYN_QUE_FIRMWARE_ID, fwid))
262 return -1;
263 priv->firmware_id = (fwid[0] << 16) | (fwid[1] << 8) | fwid[2];
264 return 0;
265}
266
1da177e4
LT
267/*
268 * Read the capability-bits from the touchpad
269 * see also the SYN_CAP_* macros
270 */
271static int synaptics_capability(struct psmouse *psmouse)
272{
273 struct synaptics_data *priv = psmouse->private;
274 unsigned char cap[3];
275
276 if (synaptics_send_cmd(psmouse, SYN_QUE_CAPABILITIES, cap))
277 return -1;
278 priv->capabilities = (cap[0] << 16) | (cap[1] << 8) | cap[2];
5f57d67d
TI
279 priv->ext_cap = priv->ext_cap_0c = 0;
280
3619b8fe
DT
281 /*
282 * Older firmwares had submodel ID fixed to 0x47
283 */
284 if (SYN_ID_FULL(priv->identity) < 0x705 &&
285 SYN_CAP_SUBMODEL_ID(priv->capabilities) != 0x47) {
1da177e4 286 return -1;
3619b8fe 287 }
1da177e4
LT
288
289 /*
290 * Unless capExtended is set the rest of the flags should be ignored
291 */
292 if (!SYN_CAP_EXTENDED(priv->capabilities))
293 priv->capabilities = 0;
294
295 if (SYN_EXT_CAP_REQUESTS(priv->capabilities) >= 1) {
296 if (synaptics_send_cmd(psmouse, SYN_QUE_EXT_CAPAB, cap)) {
b5d21704
DT
297 psmouse_warn(psmouse,
298 "device claims to have extended capabilities, but I'm not able to read them.\n");
1da177e4
LT
299 } else {
300 priv->ext_cap = (cap[0] << 16) | (cap[1] << 8) | cap[2];
301
302 /*
303 * if nExtBtn is greater than 8 it should be considered
304 * invalid and treated as 0
305 */
306 if (SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap) > 8)
307 priv->ext_cap &= 0xff0fff;
308 }
309 }
5f57d67d
TI
310
311 if (SYN_EXT_CAP_REQUESTS(priv->capabilities) >= 4) {
312 if (synaptics_send_cmd(psmouse, SYN_QUE_EXT_CAPAB_0C, cap)) {
b5d21704
DT
313 psmouse_warn(psmouse,
314 "device claims to have extended capability 0x0c, but I'm not able to read it.\n");
5f57d67d
TI
315 } else {
316 priv->ext_cap_0c = (cap[0] << 16) | (cap[1] << 8) | cap[2];
317 }
318 }
319
1da177e4
LT
320 return 0;
321}
322
323/*
324 * Identify Touchpad
325 * See also the SYN_ID_* macros
326 */
327static int synaptics_identify(struct psmouse *psmouse)
328{
329 struct synaptics_data *priv = psmouse->private;
330 unsigned char id[3];
331
332 if (synaptics_send_cmd(psmouse, SYN_QUE_IDENTIFY, id))
333 return -1;
334 priv->identity = (id[0]<<16) | (id[1]<<8) | id[2];
335 if (SYN_ID_IS_SYNAPTICS(priv->identity))
336 return 0;
337 return -1;
338}
339
ec20a022 340/*
83ba9ea8 341 * Read touchpad resolution and maximum reported coordinates
ec20a022
TS
342 * Resolution is left zero if touchpad does not support the query
343 */
421e08c4 344
ec20a022
TS
345static int synaptics_resolution(struct psmouse *psmouse)
346{
347 struct synaptics_data *priv = psmouse->private;
a66413fb 348 unsigned char resp[3];
0f68f39c 349 int i;
ec20a022
TS
350
351 if (SYN_ID_MAJOR(priv->identity) < 4)
bbddd199 352 return 0;
ec20a022 353
a66413fb
DT
354 if (synaptics_send_cmd(psmouse, SYN_QUE_RESOLUTION, resp) == 0) {
355 if (resp[0] != 0 && (resp[1] & 0x80) && resp[2] != 0) {
356 priv->x_res = resp[0]; /* x resolution in units/mm */
357 priv->y_res = resp[2]; /* y resolution in units/mm */
83ba9ea8
DT
358 }
359 }
ec20a022 360
d49cb7ae 361 for (i = 0; min_max_pnpid_table[i].pnp_ids; i++) {
2c75ada6
HG
362 if (psmouse_matches_pnp_id(psmouse,
363 min_max_pnpid_table[i].pnp_ids)) {
d49cb7ae
BT
364 priv->x_min = min_max_pnpid_table[i].x_min;
365 priv->x_max = min_max_pnpid_table[i].x_max;
366 priv->y_min = min_max_pnpid_table[i].y_min;
367 priv->y_max = min_max_pnpid_table[i].y_max;
368 return 0;
369 }
370 }
371
83ba9ea8
DT
372 if (SYN_EXT_CAP_REQUESTS(priv->capabilities) >= 5 &&
373 SYN_CAP_MAX_DIMENSIONS(priv->ext_cap_0c)) {
a66413fb 374 if (synaptics_send_cmd(psmouse, SYN_QUE_EXT_MAX_COORDS, resp)) {
b5d21704
DT
375 psmouse_warn(psmouse,
376 "device claims to have max coordinates query, but I'm not able to read it.\n");
a66413fb
DT
377 } else {
378 priv->x_max = (resp[0] << 5) | ((resp[1] & 0x0f) << 1);
379 priv->y_max = (resp[2] << 5) | ((resp[1] & 0xf0) >> 3);
380 }
381 }
382
383 if (SYN_EXT_CAP_REQUESTS(priv->capabilities) >= 7 &&
384 SYN_CAP_MIN_DIMENSIONS(priv->ext_cap_0c)) {
385 if (synaptics_send_cmd(psmouse, SYN_QUE_EXT_MIN_COORDS, resp)) {
b5d21704
DT
386 psmouse_warn(psmouse,
387 "device claims to have min coordinates query, but I'm not able to read it.\n");
83ba9ea8 388 } else {
a66413fb
DT
389 priv->x_min = (resp[0] << 5) | ((resp[1] & 0x0f) << 1);
390 priv->y_min = (resp[2] << 5) | ((resp[1] & 0xf0) >> 3);
83ba9ea8 391 }
ec20a022
TS
392 }
393
394 return 0;
395}
396
1da177e4
LT
397static int synaptics_query_hardware(struct psmouse *psmouse)
398{
1da177e4
LT
399 if (synaptics_identify(psmouse))
400 return -1;
401 if (synaptics_model_id(psmouse))
402 return -1;
c6bd9d46
DK
403 if (synaptics_firmware_id(psmouse))
404 return -1;
405 if (synaptics_board_id(psmouse))
406 return -1;
1da177e4
LT
407 if (synaptics_capability(psmouse))
408 return -1;
ec20a022
TS
409 if (synaptics_resolution(psmouse))
410 return -1;
1da177e4
LT
411
412 return 0;
413}
414
7968a5dd
DD
415static int synaptics_set_advanced_gesture_mode(struct psmouse *psmouse)
416{
417 static unsigned char param = 0xc8;
418 struct synaptics_data *priv = psmouse->private;
419
899c612d
BH
420 if (!(SYN_CAP_ADV_GESTURE(priv->ext_cap_0c) ||
421 SYN_CAP_IMAGE_SENSOR(priv->ext_cap_0c)))
7968a5dd
DD
422 return 0;
423
424 if (psmouse_sliced_command(psmouse, SYN_QUE_MODEL))
425 return -1;
426
427 if (ps2_command(&psmouse->ps2dev, &param, PSMOUSE_CMD_SETRATE))
428 return -1;
429
430 /* Advanced gesture mode also sends multi finger data */
431 priv->capabilities |= BIT(1);
432
433 return 0;
434}
435
436static int synaptics_set_mode(struct psmouse *psmouse)
1da177e4
LT
437{
438 struct synaptics_data *priv = psmouse->private;
439
7968a5dd
DD
440 priv->mode = 0;
441 if (priv->absolute_mode)
442 priv->mode |= SYN_BIT_ABSOLUTE_MODE;
443 if (priv->disable_gesture)
1da177e4 444 priv->mode |= SYN_BIT_DISABLE_GESTURE;
7968a5dd
DD
445 if (psmouse->rate >= 80)
446 priv->mode |= SYN_BIT_HIGH_RATE;
1da177e4
LT
447 if (SYN_CAP_EXTENDED(priv->capabilities))
448 priv->mode |= SYN_BIT_W_MODE;
449
450 if (synaptics_mode_cmd(psmouse, priv->mode))
451 return -1;
452
7968a5dd
DD
453 if (priv->absolute_mode &&
454 synaptics_set_advanced_gesture_mode(psmouse)) {
455 psmouse_err(psmouse, "Advanced gesture mode init failed.\n");
456 return -1;
457 }
458
1da177e4
LT
459 return 0;
460}
461
462static void synaptics_set_rate(struct psmouse *psmouse, unsigned int rate)
463{
464 struct synaptics_data *priv = psmouse->private;
465
466 if (rate >= 80) {
467 priv->mode |= SYN_BIT_HIGH_RATE;
468 psmouse->rate = 80;
469 } else {
470 priv->mode &= ~SYN_BIT_HIGH_RATE;
471 psmouse->rate = 40;
472 }
473
474 synaptics_mode_cmd(psmouse, priv->mode);
475}
476
477/*****************************************************************************
478 * Synaptics pass-through PS/2 port support
479 ****************************************************************************/
480static int synaptics_pt_write(struct serio *serio, unsigned char c)
481{
482 struct psmouse *parent = serio_get_drvdata(serio->parent);
483 char rate_param = SYN_PS_CLIENT_CMD; /* indicates that we want pass-through port */
484
485 if (psmouse_sliced_command(parent, c))
486 return -1;
487 if (ps2_command(&parent->ps2dev, &rate_param, PSMOUSE_CMD_SETRATE))
488 return -1;
489 return 0;
490}
491
a8b3c0f5
DT
492static int synaptics_pt_start(struct serio *serio)
493{
494 struct psmouse *parent = serio_get_drvdata(serio->parent);
495 struct synaptics_data *priv = parent->private;
496
497 serio_pause_rx(parent->ps2dev.serio);
498 priv->pt_port = serio;
499 serio_continue_rx(parent->ps2dev.serio);
500
501 return 0;
502}
503
504static void synaptics_pt_stop(struct serio *serio)
505{
506 struct psmouse *parent = serio_get_drvdata(serio->parent);
507 struct synaptics_data *priv = parent->private;
508
509 serio_pause_rx(parent->ps2dev.serio);
510 priv->pt_port = NULL;
511 serio_continue_rx(parent->ps2dev.serio);
512}
513
514static int synaptics_is_pt_packet(unsigned char *buf)
1da177e4
LT
515{
516 return (buf[0] & 0xFC) == 0x84 && (buf[3] & 0xCC) == 0xC4;
517}
518
519static void synaptics_pass_pt_packet(struct serio *ptport, unsigned char *packet)
520{
521 struct psmouse *child = serio_get_drvdata(ptport);
522
523 if (child && child->state == PSMOUSE_ACTIVATED) {
7d12e780
DH
524 serio_interrupt(ptport, packet[1], 0);
525 serio_interrupt(ptport, packet[4], 0);
526 serio_interrupt(ptport, packet[5], 0);
33fdfa97 527 if (child->pktsize == 4)
7d12e780 528 serio_interrupt(ptport, packet[2], 0);
1da177e4 529 } else
7d12e780 530 serio_interrupt(ptport, packet[1], 0);
1da177e4
LT
531}
532
533static void synaptics_pt_activate(struct psmouse *psmouse)
534{
1da177e4 535 struct synaptics_data *priv = psmouse->private;
a8b3c0f5 536 struct psmouse *child = serio_get_drvdata(priv->pt_port);
1da177e4
LT
537
538 /* adjust the touchpad to child's choice of protocol */
539 if (child) {
33fdfa97 540 if (child->pktsize == 4)
1da177e4
LT
541 priv->mode |= SYN_BIT_FOUR_BYTE_CLIENT;
542 else
543 priv->mode &= ~SYN_BIT_FOUR_BYTE_CLIENT;
544
545 if (synaptics_mode_cmd(psmouse, priv->mode))
b5d21704
DT
546 psmouse_warn(psmouse,
547 "failed to switch guest protocol\n");
1da177e4
LT
548 }
549}
550
551static void synaptics_pt_create(struct psmouse *psmouse)
552{
553 struct serio *serio;
554
b39787a9 555 serio = kzalloc(sizeof(struct serio), GFP_KERNEL);
1da177e4 556 if (!serio) {
b5d21704
DT
557 psmouse_err(psmouse,
558 "not enough memory for pass-through port\n");
1da177e4
LT
559 return;
560 }
561
1da177e4
LT
562 serio->id.type = SERIO_PS_PSTHRU;
563 strlcpy(serio->name, "Synaptics pass-through", sizeof(serio->name));
564 strlcpy(serio->phys, "synaptics-pt/serio0", sizeof(serio->name));
565 serio->write = synaptics_pt_write;
a8b3c0f5
DT
566 serio->start = synaptics_pt_start;
567 serio->stop = synaptics_pt_stop;
1da177e4
LT
568 serio->parent = psmouse->ps2dev.serio;
569
570 psmouse->pt_activate = synaptics_pt_activate;
571
b5d21704
DT
572 psmouse_info(psmouse, "serio: %s port at %s\n",
573 serio->name, psmouse->phys);
1da177e4
LT
574 serio_register_port(serio);
575}
576
577/*****************************************************************************
578 * Functions to interpret the absolute mode packets
579 ****************************************************************************/
580
7afdb842 581static void synaptics_parse_agm(const unsigned char buf[],
a6ca40c1
DK
582 struct synaptics_data *priv,
583 struct synaptics_hw_state *hw)
7afdb842
DK
584{
585 struct synaptics_hw_state *agm = &priv->agm;
a6ca40c1
DK
586 int agm_packet_type;
587
588 agm_packet_type = (buf[5] & 0x30) >> 4;
589 switch (agm_packet_type) {
590 case 1:
591 /* Gesture packet: (x, y, z) half resolution */
592 agm->w = hw->w;
593 agm->x = (((buf[4] & 0x0f) << 8) | buf[1]) << 1;
594 agm->y = (((buf[4] & 0xf0) << 4) | buf[2]) << 1;
595 agm->z = ((buf[3] & 0x30) | (buf[5] & 0x0f)) << 1;
596 break;
597
598 case 2:
e9e8520f
BT
599 /* AGM-CONTACT packet: we are only interested in the count */
600 priv->agm_count = buf[1];
a6ca40c1
DK
601 break;
602
603 default:
604 break;
605 }
7afdb842
DK
606}
607
aa972409
DT
608static bool is_forcepad;
609
fec6e525
HR
610static int synaptics_parse_hw_state(const unsigned char buf[],
611 struct synaptics_data *priv,
612 struct synaptics_hw_state *hw)
1da177e4
LT
613{
614 memset(hw, 0, sizeof(struct synaptics_hw_state));
615
616 if (SYN_MODEL_NEWABS(priv->model_id)) {
1da177e4
LT
617 hw->w = (((buf[0] & 0x30) >> 2) |
618 ((buf[0] & 0x04) >> 1) |
619 ((buf[3] & 0x04) >> 2));
620
5715fc76
DT
621 if ((SYN_CAP_ADV_GESTURE(priv->ext_cap_0c) ||
622 SYN_CAP_IMAGE_SENSOR(priv->ext_cap_0c)) &&
623 hw->w == 2) {
624 synaptics_parse_agm(buf, priv, hw);
625 return 1;
626 }
627
628 hw->x = (((buf[3] & 0x10) << 8) |
629 ((buf[1] & 0x0f) << 8) |
630 buf[4]);
631 hw->y = (((buf[3] & 0x20) << 7) |
632 ((buf[1] & 0xf0) << 4) |
633 buf[5]);
634 hw->z = buf[2];
635
1da177e4
LT
636 hw->left = (buf[0] & 0x01) ? 1 : 0;
637 hw->right = (buf[0] & 0x02) ? 1 : 0;
638
aa972409 639 if (is_forcepad) {
5715fc76
DT
640 /*
641 * ForcePads, like Clickpads, use middle button
642 * bits to report primary button clicks.
643 * Unfortunately they report primary button not
644 * only when user presses on the pad above certain
645 * threshold, but also when there are more than one
646 * finger on the touchpad, which interferes with
647 * out multi-finger gestures.
648 */
649 if (hw->z == 0) {
650 /* No contacts */
651 priv->press = priv->report_press = false;
652 } else if (hw->w >= 4 && ((buf[0] ^ buf[3]) & 0x01)) {
653 /*
654 * Single-finger touch with pressure above
655 * the threshold. If pressure stays long
656 * enough, we'll start reporting primary
657 * button. We rely on the device continuing
658 * sending data even if finger does not
659 * move.
660 */
661 if (!priv->press) {
662 priv->press_start = jiffies;
663 priv->press = true;
664 } else if (time_after(jiffies,
665 priv->press_start +
666 msecs_to_jiffies(50))) {
667 priv->report_press = true;
668 }
669 } else {
670 priv->press = false;
671 }
672
673 hw->left = priv->report_press;
674
675 } else if (SYN_CAP_CLICKPAD(priv->ext_cap_0c)) {
5f57d67d
TI
676 /*
677 * Clickpad's button is transmitted as middle button,
678 * however, since it is primary button, we will report
679 * it as BTN_LEFT.
680 */
681 hw->left = ((buf[0] ^ buf[3]) & 0x01) ? 1 : 0;
682
683 } else if (SYN_CAP_MIDDLE_BUTTON(priv->capabilities)) {
1da177e4
LT
684 hw->middle = ((buf[0] ^ buf[3]) & 0x01) ? 1 : 0;
685 if (hw->w == 2)
686 hw->scroll = (signed char)(buf[1]);
687 }
688
689 if (SYN_CAP_FOUR_BUTTON(priv->capabilities)) {
690 hw->up = ((buf[0] ^ buf[3]) & 0x01) ? 1 : 0;
691 hw->down = ((buf[0] ^ buf[3]) & 0x02) ? 1 : 0;
692 }
693
694 if (SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap) &&
695 ((buf[0] ^ buf[3]) & 0x02)) {
696 switch (SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap) & ~0x01) {
697 default:
698 /*
699 * if nExtBtn is greater than 8 it should be
700 * considered invalid and treated as 0
701 */
702 break;
703 case 8:
704 hw->ext_buttons |= ((buf[5] & 0x08)) ? 0x80 : 0;
705 hw->ext_buttons |= ((buf[4] & 0x08)) ? 0x40 : 0;
706 case 6:
707 hw->ext_buttons |= ((buf[5] & 0x04)) ? 0x20 : 0;
708 hw->ext_buttons |= ((buf[4] & 0x04)) ? 0x10 : 0;
709 case 4:
710 hw->ext_buttons |= ((buf[5] & 0x02)) ? 0x08 : 0;
711 hw->ext_buttons |= ((buf[4] & 0x02)) ? 0x04 : 0;
712 case 2:
713 hw->ext_buttons |= ((buf[5] & 0x01)) ? 0x02 : 0;
714 hw->ext_buttons |= ((buf[4] & 0x01)) ? 0x01 : 0;
715 }
716 }
717 } else {
718 hw->x = (((buf[1] & 0x1f) << 8) | buf[2]);
719 hw->y = (((buf[4] & 0x1f) << 8) | buf[5]);
720
721 hw->z = (((buf[0] & 0x30) << 2) | (buf[3] & 0x3F));
722 hw->w = (((buf[1] & 0x80) >> 4) | ((buf[0] & 0x04) >> 1));
723
724 hw->left = (buf[0] & 0x01) ? 1 : 0;
725 hw->right = (buf[0] & 0x02) ? 1 : 0;
726 }
fec6e525 727
824efd37
SF
728 /*
729 * Convert wrap-around values to negative. (X|Y)_MAX_POSITIVE
730 * is used by some firmware to indicate a finger at the edge of
731 * the touchpad whose precise position cannot be determined, so
732 * convert these values to the maximum axis value.
733 */
c0394506
SF
734 if (hw->x > X_MAX_POSITIVE)
735 hw->x -= 1 << ABS_POS_BITS;
824efd37
SF
736 else if (hw->x == X_MAX_POSITIVE)
737 hw->x = XMAX;
738
c0394506
SF
739 if (hw->y > Y_MAX_POSITIVE)
740 hw->y -= 1 << ABS_POS_BITS;
824efd37
SF
741 else if (hw->y == Y_MAX_POSITIVE)
742 hw->y = YMAX;
c0394506 743
fec6e525
HR
744 return 0;
745}
746
bea9f0ff
DK
747static void synaptics_report_semi_mt_slot(struct input_dev *dev, int slot,
748 bool active, int x, int y)
fec6e525
HR
749{
750 input_mt_slot(dev, slot);
751 input_mt_report_slot_state(dev, MT_TOOL_FINGER, active);
752 if (active) {
753 input_report_abs(dev, ABS_MT_POSITION_X, x);
6de58dd6 754 input_report_abs(dev, ABS_MT_POSITION_Y, synaptics_invert_y(y));
fec6e525
HR
755 }
756}
757
758static void synaptics_report_semi_mt_data(struct input_dev *dev,
759 const struct synaptics_hw_state *a,
760 const struct synaptics_hw_state *b,
761 int num_fingers)
762{
763 if (num_fingers >= 2) {
bea9f0ff
DK
764 synaptics_report_semi_mt_slot(dev, 0, true, min(a->x, b->x),
765 min(a->y, b->y));
766 synaptics_report_semi_mt_slot(dev, 1, true, max(a->x, b->x),
767 max(a->y, b->y));
fec6e525 768 } else if (num_fingers == 1) {
bea9f0ff
DK
769 synaptics_report_semi_mt_slot(dev, 0, true, a->x, a->y);
770 synaptics_report_semi_mt_slot(dev, 1, false, 0, 0);
fec6e525 771 } else {
bea9f0ff
DK
772 synaptics_report_semi_mt_slot(dev, 0, false, 0, 0);
773 synaptics_report_semi_mt_slot(dev, 1, false, 0, 0);
fec6e525 774 }
1da177e4
LT
775}
776
3cdfee9e
DK
777static void synaptics_report_buttons(struct psmouse *psmouse,
778 const struct synaptics_hw_state *hw)
779{
780 struct input_dev *dev = psmouse->dev;
781 struct synaptics_data *priv = psmouse->private;
782 int i;
783
784 input_report_key(dev, BTN_LEFT, hw->left);
785 input_report_key(dev, BTN_RIGHT, hw->right);
786
787 if (SYN_CAP_MIDDLE_BUTTON(priv->capabilities))
788 input_report_key(dev, BTN_MIDDLE, hw->middle);
789
790 if (SYN_CAP_FOUR_BUTTON(priv->capabilities)) {
791 input_report_key(dev, BTN_FORWARD, hw->up);
792 input_report_key(dev, BTN_BACK, hw->down);
793 }
794
795 for (i = 0; i < SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap); i++)
796 input_report_key(dev, BTN_0 + i, hw->ext_buttons & (1 << i));
797}
798
3cdfee9e 799static void synaptics_report_mt_data(struct psmouse *psmouse,
e9e8520f
BT
800 const struct synaptics_hw_state *sgm,
801 int num_fingers)
3cdfee9e
DK
802{
803 struct input_dev *dev = psmouse->dev;
804 struct synaptics_data *priv = psmouse->private;
e9e8520f
BT
805 const struct synaptics_hw_state *hw[2] = { sgm, &priv->agm };
806 struct input_mt_pos pos[2];
807 int slot[2], nsemi, i;
3cdfee9e 808
e9e8520f 809 nsemi = clamp_val(num_fingers, 0, 2);
4dc772d2 810
e9e8520f
BT
811 for (i = 0; i < nsemi; i++) {
812 pos[i].x = hw[i]->x;
813 pos[i].y = synaptics_invert_y(hw[i]->y);
3cdfee9e
DK
814 }
815
6ab17a84 816 input_mt_assign_slots(dev, slot, pos, nsemi, DMAX * priv->x_res);
e9e8520f
BT
817
818 for (i = 0; i < nsemi; i++) {
819 input_mt_slot(dev, slot[i]);
820 input_mt_report_slot_state(dev, MT_TOOL_FINGER, true);
821 input_report_abs(dev, ABS_MT_POSITION_X, pos[i].x);
822 input_report_abs(dev, ABS_MT_POSITION_Y, pos[i].y);
823 input_report_abs(dev, ABS_MT_PRESSURE, hw[i]->z);
824 }
825
826 input_mt_drop_unused(dev);
827
3cdfee9e
DK
828 /* Don't use active slot count to generate BTN_TOOL events. */
829 input_mt_report_pointer_emulation(dev, false);
830
831 /* Send the number of fingers reported by touchpad itself. */
e9e8520f 832 input_mt_report_finger_count(dev, num_fingers);
3cdfee9e
DK
833
834 synaptics_report_buttons(psmouse, sgm);
835
836 input_sync(dev);
837}
838
839static void synaptics_image_sensor_process(struct psmouse *psmouse,
840 struct synaptics_hw_state *sgm)
841{
4dc772d2 842 struct synaptics_data *priv = psmouse->private;
e9e8520f 843 int num_fingers;
4dc772d2
DK
844
845 /*
846 * Update mt_state using the new finger count and current mt_state.
847 */
3cdfee9e 848 if (sgm->z == 0)
e9e8520f 849 num_fingers = 0;
3cdfee9e 850 else if (sgm->w >= 4)
e9e8520f 851 num_fingers = 1;
3cdfee9e 852 else if (sgm->w == 0)
e9e8520f
BT
853 num_fingers = 2;
854 else if (sgm->w == 1)
855 num_fingers = priv->agm_count ? priv->agm_count : 3;
6b4b49fe 856 else
e9e8520f 857 num_fingers = 4;
3cdfee9e
DK
858
859 /* Send resulting input events to user space */
e9e8520f 860 synaptics_report_mt_data(psmouse, sgm, num_fingers);
e08d9afa
HR
861}
862
1da177e4
LT
863/*
864 * called for each full received packet from the touchpad
865 */
866static void synaptics_process_packet(struct psmouse *psmouse)
867{
2e5b636b 868 struct input_dev *dev = psmouse->dev;
1da177e4
LT
869 struct synaptics_data *priv = psmouse->private;
870 struct synaptics_hw_state hw;
871 int num_fingers;
872 int finger_width;
1da177e4 873
fec6e525
HR
874 if (synaptics_parse_hw_state(psmouse->packet, priv, &hw))
875 return;
1da177e4 876
3cdfee9e
DK
877 if (SYN_CAP_IMAGE_SENSOR(priv->ext_cap_0c)) {
878 synaptics_image_sensor_process(psmouse, &hw);
879 return;
880 }
881
1da177e4
LT
882 if (hw.scroll) {
883 priv->scroll += hw.scroll;
884
885 while (priv->scroll >= 4) {
886 input_report_key(dev, BTN_BACK, !hw.down);
887 input_sync(dev);
888 input_report_key(dev, BTN_BACK, hw.down);
889 input_sync(dev);
890 priv->scroll -= 4;
891 }
892 while (priv->scroll <= -4) {
893 input_report_key(dev, BTN_FORWARD, !hw.up);
894 input_sync(dev);
895 input_report_key(dev, BTN_FORWARD, hw.up);
896 input_sync(dev);
897 priv->scroll += 4;
898 }
899 return;
900 }
901
4f56ce92 902 if (hw.z > 0 && hw.x > 1) {
1da177e4
LT
903 num_fingers = 1;
904 finger_width = 5;
905 if (SYN_CAP_EXTENDED(priv->capabilities)) {
906 switch (hw.w) {
907 case 0 ... 1:
908 if (SYN_CAP_MULTIFINGER(priv->capabilities))
909 num_fingers = hw.w + 2;
910 break;
911 case 2:
912 if (SYN_MODEL_PEN(priv->model_id))
913 ; /* Nothing, treat a pen as a single finger */
914 break;
915 case 4 ... 15:
916 if (SYN_CAP_PALMDETECT(priv->capabilities))
917 finger_width = hw.w;
918 break;
919 }
920 }
921 } else {
922 num_fingers = 0;
923 finger_width = 0;
924 }
925
e08d9afa 926 if (cr48_profile_sensor) {
aa104b1a 927 synaptics_report_mt_data(psmouse, &hw, num_fingers);
e08d9afa
HR
928 return;
929 }
930
fec6e525 931 if (SYN_CAP_ADV_GESTURE(priv->ext_cap_0c))
7afdb842
DK
932 synaptics_report_semi_mt_data(dev, &hw, &priv->agm,
933 num_fingers);
fec6e525 934
1da177e4
LT
935 /* Post events
936 * BTN_TOUCH has to be first as mousedev relies on it when doing
937 * absolute -> relative conversion
938 */
939 if (hw.z > 30) input_report_key(dev, BTN_TOUCH, 1);
940 if (hw.z < 25) input_report_key(dev, BTN_TOUCH, 0);
941
4f56ce92 942 if (num_fingers > 0) {
1da177e4 943 input_report_abs(dev, ABS_X, hw.x);
6de58dd6 944 input_report_abs(dev, ABS_Y, synaptics_invert_y(hw.y));
1da177e4
LT
945 }
946 input_report_abs(dev, ABS_PRESSURE, hw.z);
947
2a8e7710
CB
948 if (SYN_CAP_PALMDETECT(priv->capabilities))
949 input_report_abs(dev, ABS_TOOL_WIDTH, finger_width);
950
1da177e4 951 input_report_key(dev, BTN_TOOL_FINGER, num_fingers == 1);
e42b6646
PH
952 if (SYN_CAP_MULTIFINGER(priv->capabilities)) {
953 input_report_key(dev, BTN_TOOL_DOUBLETAP, num_fingers == 2);
954 input_report_key(dev, BTN_TOOL_TRIPLETAP, num_fingers == 3);
955 }
956
3cdfee9e 957 synaptics_report_buttons(psmouse, &hw);
1da177e4
LT
958
959 input_sync(dev);
960}
961
b5d21704
DT
962static int synaptics_validate_byte(struct psmouse *psmouse,
963 int idx, unsigned char pkt_type)
1da177e4 964{
e38de678
HD
965 static const unsigned char newabs_mask[] = { 0xC8, 0x00, 0x00, 0xC8, 0x00 };
966 static const unsigned char newabs_rel_mask[] = { 0xC0, 0x00, 0x00, 0xC0, 0x00 };
967 static const unsigned char newabs_rslt[] = { 0x80, 0x00, 0x00, 0xC0, 0x00 };
968 static const unsigned char oldabs_mask[] = { 0xC0, 0x60, 0x00, 0xC0, 0x60 };
969 static const unsigned char oldabs_rslt[] = { 0xC0, 0x00, 0x00, 0x80, 0x00 };
b5d21704 970 const char *packet = psmouse->packet;
1da177e4
LT
971
972 if (idx < 0 || idx > 4)
973 return 0;
974
975 switch (pkt_type) {
1da177e4 976
a62f0d27
DT
977 case SYN_NEWABS:
978 case SYN_NEWABS_RELAXED:
979 return (packet[idx] & newabs_rel_mask[idx]) == newabs_rslt[idx];
1da177e4 980
a62f0d27
DT
981 case SYN_NEWABS_STRICT:
982 return (packet[idx] & newabs_mask[idx]) == newabs_rslt[idx];
1da177e4 983
a62f0d27
DT
984 case SYN_OLDABS:
985 return (packet[idx] & oldabs_mask[idx]) == oldabs_rslt[idx];
986
987 default:
b5d21704 988 psmouse_err(psmouse, "unknown packet type %d\n", pkt_type);
a62f0d27 989 return 0;
1da177e4
LT
990 }
991}
992
993static unsigned char synaptics_detect_pkt_type(struct psmouse *psmouse)
994{
995 int i;
996
997 for (i = 0; i < 5; i++)
b5d21704
DT
998 if (!synaptics_validate_byte(psmouse, i, SYN_NEWABS_STRICT)) {
999 psmouse_info(psmouse, "using relaxed packet validation\n");
1da177e4
LT
1000 return SYN_NEWABS_RELAXED;
1001 }
1002
1003 return SYN_NEWABS_STRICT;
1004}
1005
7d12e780 1006static psmouse_ret_t synaptics_process_byte(struct psmouse *psmouse)
1da177e4 1007{
1da177e4
LT
1008 struct synaptics_data *priv = psmouse->private;
1009
1da177e4
LT
1010 if (psmouse->pktcnt >= 6) { /* Full packet received */
1011 if (unlikely(priv->pkt_type == SYN_NEWABS))
1012 priv->pkt_type = synaptics_detect_pkt_type(psmouse);
1013
a8b3c0f5
DT
1014 if (SYN_CAP_PASS_THROUGH(priv->capabilities) &&
1015 synaptics_is_pt_packet(psmouse->packet)) {
1016 if (priv->pt_port)
1017 synaptics_pass_pt_packet(priv->pt_port, psmouse->packet);
1da177e4
LT
1018 } else
1019 synaptics_process_packet(psmouse);
1020
1021 return PSMOUSE_FULL_PACKET;
1022 }
1023
b5d21704 1024 return synaptics_validate_byte(psmouse, psmouse->pktcnt - 1, priv->pkt_type) ?
1da177e4
LT
1025 PSMOUSE_GOOD_DATA : PSMOUSE_BAD_DATA;
1026}
1027
1028/*****************************************************************************
1029 * Driver initialization/cleanup functions
1030 ****************************************************************************/
85615476
DK
1031static void set_abs_position_params(struct input_dev *dev,
1032 struct synaptics_data *priv, int x_code,
1033 int y_code)
1da177e4 1034{
85615476
DK
1035 int x_min = priv->x_min ?: XMIN_NOMINAL;
1036 int x_max = priv->x_max ?: XMAX_NOMINAL;
1037 int y_min = priv->y_min ?: YMIN_NOMINAL;
1038 int y_max = priv->y_max ?: YMAX_NOMINAL;
a9f0b79e
DK
1039 int fuzz = SYN_CAP_REDUCED_FILTERING(priv->ext_cap_0c) ?
1040 SYN_REDUCED_FILTER_FUZZ : 0;
1da177e4 1041
85615476
DK
1042 input_set_abs_params(dev, x_code, x_min, x_max, fuzz, 0);
1043 input_set_abs_params(dev, y_code, y_min, y_max, fuzz, 0);
1044 input_abs_set_res(dev, x_code, priv->x_res);
1045 input_abs_set_res(dev, y_code, priv->y_res);
1046}
1047
43e19888
HG
1048static void set_input_params(struct psmouse *psmouse,
1049 struct synaptics_data *priv)
85615476 1050{
43e19888 1051 struct input_dev *dev = psmouse->dev;
85615476
DK
1052 int i;
1053
7968a5dd 1054 /* Things that apply to both modes */
c14890a8 1055 __set_bit(INPUT_PROP_POINTER, dev->propbit);
7968a5dd
DD
1056 __set_bit(EV_KEY, dev->evbit);
1057 __set_bit(BTN_LEFT, dev->keybit);
1058 __set_bit(BTN_RIGHT, dev->keybit);
c14890a8 1059
7968a5dd
DD
1060 if (SYN_CAP_MIDDLE_BUTTON(priv->capabilities))
1061 __set_bit(BTN_MIDDLE, dev->keybit);
1062
1063 if (!priv->absolute_mode) {
1064 /* Relative mode */
1065 __set_bit(EV_REL, dev->evbit);
1066 __set_bit(REL_X, dev->relbit);
1067 __set_bit(REL_Y, dev->relbit);
1068 return;
1069 }
1070
1071 /* Absolute mode */
b7802c5c 1072 __set_bit(EV_ABS, dev->evbit);
85615476 1073 set_abs_position_params(dev, priv, ABS_X, ABS_Y);
1da177e4 1074 input_set_abs_params(dev, ABS_PRESSURE, 0, 255, 0, 0);
2a8e7710 1075
e08d9afa
HR
1076 if (cr48_profile_sensor)
1077 input_set_abs_params(dev, ABS_MT_PRESSURE, 0, 255, 0, 0);
1078
3cdfee9e 1079 if (SYN_CAP_IMAGE_SENSOR(priv->ext_cap_0c)) {
3cdfee9e
DK
1080 set_abs_position_params(dev, priv, ABS_MT_POSITION_X,
1081 ABS_MT_POSITION_Y);
1082 /* Image sensors can report per-contact pressure */
1083 input_set_abs_params(dev, ABS_MT_PRESSURE, 0, 255, 0, 0);
e9e8520f 1084 input_mt_init_slots(dev, 2, INPUT_MT_POINTER | INPUT_MT_TRACK);
6b4b49fe
DK
1085
1086 /* Image sensors can signal 4 and 5 finger clicks */
1087 __set_bit(BTN_TOOL_QUADTAP, dev->keybit);
1088 __set_bit(BTN_TOOL_QUINTTAP, dev->keybit);
3cdfee9e 1089 } else if (SYN_CAP_ADV_GESTURE(priv->ext_cap_0c)) {
85615476
DK
1090 set_abs_position_params(dev, priv, ABS_MT_POSITION_X,
1091 ABS_MT_POSITION_Y);
e08d9afa
HR
1092 /*
1093 * Profile sensor in CR-48 tracks contacts reasonably well,
1094 * other non-image sensors with AGM use semi-mt.
1095 */
ae84197f 1096 input_mt_init_slots(dev, 2,
e08d9afa
HR
1097 INPUT_MT_POINTER |
1098 (cr48_profile_sensor ?
1099 INPUT_MT_TRACK : INPUT_MT_SEMI_MT));
fec6e525
HR
1100 }
1101
2a8e7710 1102 if (SYN_CAP_PALMDETECT(priv->capabilities))
58fb0218 1103 input_set_abs_params(dev, ABS_TOOL_WIDTH, 0, 15, 0, 0);
1da177e4 1104
b7802c5c
DT
1105 __set_bit(BTN_TOUCH, dev->keybit);
1106 __set_bit(BTN_TOOL_FINGER, dev->keybit);
1da177e4 1107
e42b6646 1108 if (SYN_CAP_MULTIFINGER(priv->capabilities)) {
b7802c5c
DT
1109 __set_bit(BTN_TOOL_DOUBLETAP, dev->keybit);
1110 __set_bit(BTN_TOOL_TRIPLETAP, dev->keybit);
e42b6646
PH
1111 }
1112
1da177e4
LT
1113 if (SYN_CAP_FOUR_BUTTON(priv->capabilities) ||
1114 SYN_CAP_MIDDLE_BUTTON(priv->capabilities)) {
b7802c5c
DT
1115 __set_bit(BTN_FORWARD, dev->keybit);
1116 __set_bit(BTN_BACK, dev->keybit);
1da177e4
LT
1117 }
1118
1119 for (i = 0; i < SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap); i++)
b7802c5c 1120 __set_bit(BTN_0 + i, dev->keybit);
1da177e4 1121
b7802c5c
DT
1122 __clear_bit(EV_REL, dev->evbit);
1123 __clear_bit(REL_X, dev->relbit);
1124 __clear_bit(REL_Y, dev->relbit);
ec20a022 1125
5f57d67d 1126 if (SYN_CAP_CLICKPAD(priv->ext_cap_0c)) {
c14890a8 1127 __set_bit(INPUT_PROP_BUTTONPAD, dev->propbit);
2c75ada6 1128 if (psmouse_matches_pnp_id(psmouse, topbuttonpad_pnp_ids))
e2f61102 1129 __set_bit(INPUT_PROP_TOPBUTTONPAD, dev->propbit);
5f57d67d
TI
1130 /* Clickpads report only left button */
1131 __clear_bit(BTN_RIGHT, dev->keybit);
1132 __clear_bit(BTN_MIDDLE, dev->keybit);
1133 }
1da177e4
LT
1134}
1135
7968a5dd
DD
1136static ssize_t synaptics_show_disable_gesture(struct psmouse *psmouse,
1137 void *data, char *buf)
1138{
1139 struct synaptics_data *priv = psmouse->private;
1140
1141 return sprintf(buf, "%c\n", priv->disable_gesture ? '1' : '0');
1142}
1143
1144static ssize_t synaptics_set_disable_gesture(struct psmouse *psmouse,
1145 void *data, const char *buf,
1146 size_t len)
1147{
1148 struct synaptics_data *priv = psmouse->private;
1149 unsigned int value;
1150 int err;
1151
1152 err = kstrtouint(buf, 10, &value);
1153 if (err)
1154 return err;
1155
1156 if (value > 1)
1157 return -EINVAL;
1158
1159 if (value == priv->disable_gesture)
1160 return len;
1161
1162 priv->disable_gesture = value;
1163 if (value)
1164 priv->mode |= SYN_BIT_DISABLE_GESTURE;
1165 else
1166 priv->mode &= ~SYN_BIT_DISABLE_GESTURE;
1167
1168 if (synaptics_mode_cmd(psmouse, priv->mode))
1169 return -EIO;
1170
1171 return len;
1172}
1173
1174PSMOUSE_DEFINE_ATTR(disable_gesture, S_IWUSR | S_IRUGO, NULL,
1175 synaptics_show_disable_gesture,
1176 synaptics_set_disable_gesture);
1177
1da177e4
LT
1178static void synaptics_disconnect(struct psmouse *psmouse)
1179{
7968a5dd
DD
1180 struct synaptics_data *priv = psmouse->private;
1181
1182 if (!priv->absolute_mode && SYN_ID_DISGEST_SUPPORTED(priv->identity))
1183 device_remove_file(&psmouse->ps2dev.serio->dev,
1184 &psmouse_attr_disable_gesture.dattr);
1185
1da177e4 1186 synaptics_reset(psmouse);
7968a5dd 1187 kfree(priv);
1da177e4
LT
1188 psmouse->private = NULL;
1189}
1190
1191static int synaptics_reconnect(struct psmouse *psmouse)
1192{
1193 struct synaptics_data *priv = psmouse->private;
1194 struct synaptics_data old_priv = *priv;
eeb06558 1195 unsigned char param[2];
c63fe0a4
APF
1196 int retry = 0;
1197 int error;
1da177e4 1198
c63fe0a4
APF
1199 do {
1200 psmouse_reset(psmouse);
8521478f
DT
1201 if (retry) {
1202 /*
1203 * On some boxes, right after resuming, the touchpad
1204 * needs some time to finish initializing (I assume
1205 * it needs time to calibrate) and start responding
1206 * to Synaptics-specific queries, so let's wait a
1207 * bit.
1208 */
1209 ssleep(1);
1210 }
eeb06558 1211 ps2_command(&psmouse->ps2dev, param, PSMOUSE_CMD_GETID);
c63fe0a4
APF
1212 error = synaptics_detect(psmouse, 0);
1213 } while (error && ++retry < 3);
4d368456 1214
c63fe0a4 1215 if (error)
1da177e4
LT
1216 return -1;
1217
c63fe0a4 1218 if (retry > 1)
b5d21704 1219 psmouse_dbg(psmouse, "reconnected after %d tries\n", retry);
c63fe0a4 1220
1da177e4 1221 if (synaptics_query_hardware(psmouse)) {
b5d21704 1222 psmouse_err(psmouse, "Unable to query device.\n");
1da177e4
LT
1223 return -1;
1224 }
1225
7968a5dd 1226 if (synaptics_set_mode(psmouse)) {
b5d21704 1227 psmouse_err(psmouse, "Unable to initialize device.\n");
1da177e4
LT
1228 return -1;
1229 }
1230
baddf589
APF
1231 if (old_priv.identity != priv->identity ||
1232 old_priv.model_id != priv->model_id ||
1233 old_priv.capabilities != priv->capabilities ||
1234 old_priv.ext_cap != priv->ext_cap) {
b5d21704
DT
1235 psmouse_err(psmouse,
1236 "hardware appears to be different: id(%ld-%ld), model(%ld-%ld), caps(%lx-%lx), ext(%lx-%lx).\n",
1237 old_priv.identity, priv->identity,
1238 old_priv.model_id, priv->model_id,
1239 old_priv.capabilities, priv->capabilities,
1240 old_priv.ext_cap, priv->ext_cap);
baddf589
APF
1241 return -1;
1242 }
1243
1da177e4
LT
1244 return 0;
1245}
1246
7705d548
DT
1247static bool impaired_toshiba_kbc;
1248
c963156c 1249static const struct dmi_system_id toshiba_dmi_table[] __initconst = {
7705d548 1250#if defined(CONFIG_DMI) && defined(CONFIG_X86)
1da177e4 1251 {
9961e259 1252 /* Toshiba Satellite */
1da177e4
LT
1253 .matches = {
1254 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
53a2670c 1255 DMI_MATCH(DMI_PRODUCT_NAME, "Satellite"),
1da177e4
LT
1256 },
1257 },
9ba5eaaf 1258 {
9961e259 1259 /* Toshiba Dynabook */
9ba5eaaf
SH
1260 .matches = {
1261 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
53a2670c
RT
1262 DMI_MATCH(DMI_PRODUCT_NAME, "dynabook"),
1263 },
1264 },
1265 {
9961e259 1266 /* Toshiba Portege M300 */
53a2670c
RT
1267 .matches = {
1268 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1269 DMI_MATCH(DMI_PRODUCT_NAME, "PORTEGE M300"),
9ba5eaaf 1270 },
5f5eeff4
DT
1271
1272 },
1273 {
9961e259 1274 /* Toshiba Portege M300 */
5f5eeff4
DT
1275 .matches = {
1276 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1277 DMI_MATCH(DMI_PRODUCT_NAME, "Portable PC"),
1278 DMI_MATCH(DMI_PRODUCT_VERSION, "Version 1.0"),
1279 },
1280
9ba5eaaf 1281 },
1da177e4 1282#endif
70874867 1283 { }
7705d548
DT
1284};
1285
ef8313bb
AS
1286static bool broken_olpc_ec;
1287
c963156c 1288static const struct dmi_system_id olpc_dmi_table[] __initconst = {
ef8313bb
AS
1289#if defined(CONFIG_DMI) && defined(CONFIG_OLPC)
1290 {
1291 /* OLPC XO-1 or XO-1.5 */
1292 .matches = {
1293 DMI_MATCH(DMI_SYS_VENDOR, "OLPC"),
1294 DMI_MATCH(DMI_PRODUCT_NAME, "XO"),
1295 },
1296 },
ef8313bb 1297#endif
70874867 1298 { }
ef8313bb
AS
1299};
1300
e08d9afa
HR
1301static const struct dmi_system_id __initconst cr48_dmi_table[] = {
1302#if defined(CONFIG_DMI) && defined(CONFIG_X86)
1303 {
1304 /* Cr-48 Chromebook (Codename Mario) */
1305 .matches = {
1306 DMI_MATCH(DMI_SYS_VENDOR, "IEC"),
1307 DMI_MATCH(DMI_PRODUCT_NAME, "Mario"),
1308 },
1309 },
1310#endif
1311 { }
1312};
1313
aa972409
DT
1314static const struct dmi_system_id forcepad_dmi_table[] __initconst = {
1315#if defined(CONFIG_DMI) && defined(CONFIG_X86)
1316 {
1317 .matches = {
1318 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1319 DMI_MATCH(DMI_PRODUCT_NAME, "HP EliteBook Folio 1040 G1"),
1320 },
1321 },
1322#endif
1323 { }
1324};
1325
7705d548
DT
1326void __init synaptics_module_init(void)
1327{
1328 impaired_toshiba_kbc = dmi_check_system(toshiba_dmi_table);
ef8313bb 1329 broken_olpc_ec = dmi_check_system(olpc_dmi_table);
e08d9afa 1330 cr48_profile_sensor = dmi_check_system(cr48_dmi_table);
aa972409
DT
1331
1332 /*
1333 * Unfortunately ForcePad capability is not exported over PS/2,
1334 * so we have to resort to checking DMI.
1335 */
1336 is_forcepad = dmi_check_system(forcepad_dmi_table);
7705d548 1337}
1da177e4 1338
7968a5dd 1339static int __synaptics_init(struct psmouse *psmouse, bool absolute_mode)
1da177e4
LT
1340{
1341 struct synaptics_data *priv;
7968a5dd 1342 int err = -1;
1da177e4 1343
ef8313bb 1344 /*
83551c01
DD
1345 * The OLPC XO has issues with Synaptics' absolute mode; the constant
1346 * packet spew overloads the EC such that key presses on the keyboard
1347 * are missed. Given that, don't even attempt to use Absolute mode.
1348 * Relative mode seems to work just fine.
ef8313bb 1349 */
83551c01 1350 if (absolute_mode && broken_olpc_ec) {
b5d21704
DT
1351 psmouse_info(psmouse,
1352 "OLPC XO detected, not enabling Synaptics protocol.\n");
ef8313bb
AS
1353 return -ENODEV;
1354 }
1355
b39787a9 1356 psmouse->private = priv = kzalloc(sizeof(struct synaptics_data), GFP_KERNEL);
1da177e4 1357 if (!priv)
6792cbbb 1358 return -ENOMEM;
1da177e4 1359
4d368456
AW
1360 psmouse_reset(psmouse);
1361
1da177e4 1362 if (synaptics_query_hardware(psmouse)) {
b5d21704 1363 psmouse_err(psmouse, "Unable to query device.\n");
1da177e4
LT
1364 goto init_fail;
1365 }
1366
7968a5dd
DD
1367 priv->absolute_mode = absolute_mode;
1368 if (SYN_ID_DISGEST_SUPPORTED(priv->identity))
1369 priv->disable_gesture = true;
1da177e4 1370
7968a5dd
DD
1371 if (synaptics_set_mode(psmouse)) {
1372 psmouse_err(psmouse, "Unable to initialize device.\n");
fec6e525
HR
1373 goto init_fail;
1374 }
1375
1da177e4
LT
1376 priv->pkt_type = SYN_MODEL_NEWABS(priv->model_id) ? SYN_NEWABS : SYN_OLDABS;
1377
b5d21704 1378 psmouse_info(psmouse,
c6bd9d46 1379 "Touchpad model: %ld, fw: %ld.%ld, id: %#lx, caps: %#lx/%#lx/%#lx, board id: %lu, fw id: %lu\n",
b5d21704
DT
1380 SYN_ID_MODEL(priv->identity),
1381 SYN_ID_MAJOR(priv->identity), SYN_ID_MINOR(priv->identity),
1382 priv->model_id,
c6bd9d46
DK
1383 priv->capabilities, priv->ext_cap, priv->ext_cap_0c,
1384 priv->board_id, priv->firmware_id);
409b7506 1385
43e19888 1386 set_input_params(psmouse, priv);
1da177e4 1387
887cc127
DT
1388 /*
1389 * Encode touchpad model so that it can be used to set
1390 * input device->id.version and be visible to userspace.
1391 * Because version is __u16 we have to drop something.
1392 * Hardware info bits seem to be good candidates as they
1393 * are documented to be for Synaptics corp. internal use.
1394 */
1395 psmouse->model = ((priv->model_id & 0x00ff0000) >> 8) |
1396 (priv->model_id & 0x000000ff);
1397
7968a5dd
DD
1398 if (absolute_mode) {
1399 psmouse->protocol_handler = synaptics_process_byte;
1400 psmouse->pktsize = 6;
1401 } else {
1402 /* Relative mode follows standard PS/2 mouse protocol */
1403 psmouse->protocol_handler = psmouse_process_byte;
1404 psmouse->pktsize = 3;
1405 }
1406
1da177e4
LT
1407 psmouse->set_rate = synaptics_set_rate;
1408 psmouse->disconnect = synaptics_disconnect;
1409 psmouse->reconnect = synaptics_reconnect;
a1cec061 1410 psmouse->cleanup = synaptics_reset;
f0d5c6f4
DT
1411 /* Synaptics can usually stay in sync without extra help */
1412 psmouse->resync_time = 0;
1da177e4
LT
1413
1414 if (SYN_CAP_PASS_THROUGH(priv->capabilities))
1415 synaptics_pt_create(psmouse);
1416
1da177e4
LT
1417 /*
1418 * Toshiba's KBC seems to have trouble handling data from
7ee99161
AS
1419 * Synaptics at full rate. Switch to a lower rate (roughly
1420 * the same rate as a standard PS/2 mouse).
1da177e4 1421 */
7705d548 1422 if (psmouse->rate >= 80 && impaired_toshiba_kbc) {
b5d21704
DT
1423 psmouse_info(psmouse,
1424 "Toshiba %s detected, limiting rate to 40pps.\n",
1425 dmi_get_system_info(DMI_PRODUCT_NAME));
1da177e4
LT
1426 psmouse->rate = 40;
1427 }
1da177e4 1428
7968a5dd
DD
1429 if (!priv->absolute_mode && SYN_ID_DISGEST_SUPPORTED(priv->identity)) {
1430 err = device_create_file(&psmouse->ps2dev.serio->dev,
1431 &psmouse_attr_disable_gesture.dattr);
1432 if (err) {
1433 psmouse_err(psmouse,
1434 "Failed to create disable_gesture attribute (%d)",
1435 err);
1436 goto init_fail;
1437 }
1438 }
1439
1da177e4
LT
1440 return 0;
1441
1442 init_fail:
1443 kfree(priv);
7968a5dd
DD
1444 return err;
1445}
1446
1447int synaptics_init(struct psmouse *psmouse)
1448{
1449 return __synaptics_init(psmouse, true);
1450}
1451
1452int synaptics_init_relative(struct psmouse *psmouse)
1453{
1454 return __synaptics_init(psmouse, false);
1da177e4
LT
1455}
1456
e4e6efd2
DD
1457bool synaptics_supported(void)
1458{
1459 return true;
1460}
1461
55e3d922
AS
1462#else /* CONFIG_MOUSE_PS2_SYNAPTICS */
1463
7705d548
DT
1464void __init synaptics_module_init(void)
1465{
1466}
1467
55e3d922
AS
1468int synaptics_init(struct psmouse *psmouse)
1469{
1470 return -ENOSYS;
1471}
1472
e4e6efd2
DD
1473bool synaptics_supported(void)
1474{
1475 return false;
1476}
1477
55e3d922 1478#endif /* CONFIG_MOUSE_PS2_SYNAPTICS */