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