blob: 2176874a41b11687f61bfb3fe8dfcf6289288e95 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
Dmitry Torokhov85214782011-12-12 00:05:53 -080027#include <linux/delay.h>
Dmitry Torokhov7705d542009-12-03 23:21:14 -080028#include <linux/dmi.h>
Henrik Rydbergfec6e522010-12-21 18:11:25 +010029#include <linux/input/mt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/serio.h>
31#include <linux/libps2.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#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.
Dmitry Torokhov83ba9ea82010-05-10 23:06:52 -070040 * Note that newer firmware allows querying device for maximum useable
41 * coordinates.
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 */
Seth Forsheec03945062012-07-24 23:54:11 -070043#define XMIN 0
44#define XMAX 6143
45#define YMIN 0
46#define YMAX 6143
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#define XMIN_NOMINAL 1472
48#define XMAX_NOMINAL 5472
49#define YMIN_NOMINAL 1408
50#define YMAX_NOMINAL 4448
51
Seth Forsheec03945062012-07-24 23:54:11 -070052/* Size in bits of absolute position values reported by the hardware */
53#define ABS_POS_BITS 13
54
55/*
Seth Forshee824efd32012-09-28 10:29:21 -070056 * 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.
Seth Forsheec03945062012-07-24 23:54:11 -070066 */
Seth Forshee824efd32012-09-28 10:29:21 -070067#define X_MAX_POSITIVE 8176
68#define Y_MAX_POSITIVE 8176
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Andres Salomon55e3d922007-03-10 01:39:54 -050070/*****************************************************************************
71 * Stuff we need even when we do not want native Synaptics support
72 ****************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74/*
75 * Set the synaptics touchpad mode byte by special commands
76 */
77static int synaptics_mode_cmd(struct psmouse *psmouse, unsigned char mode)
78{
79 unsigned char param[1];
80
81 if (psmouse_sliced_command(psmouse, mode))
82 return -1;
83 param[0] = SYN_PS_SET_MODE2;
84 if (ps2_command(&psmouse->ps2dev, param, PSMOUSE_CMD_SETRATE))
85 return -1;
86 return 0;
87}
88
Dmitry Torokhovb7802c52009-09-09 19:13:20 -070089int synaptics_detect(struct psmouse *psmouse, bool set_properties)
Andres Salomon55e3d922007-03-10 01:39:54 -050090{
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
Henrik Rydberge08d9af2014-07-14 10:26:56 -0700120
121static bool cr48_profile_sensor;
122
Daniel Martin5b3089d2015-03-08 22:29:15 -0700123#define ANY_BOARD_ID 0
Hans de Goede0f68f392014-05-19 22:54:09 -0700124struct min_max_quirk {
125 const char * const *pnp_ids;
Daniel Martin5b3089d2015-03-08 22:29:15 -0700126 struct {
127 unsigned long int min, max;
128 } board_id;
Hans de Goede0f68f392014-05-19 22:54:09 -0700129 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},
Daniel Martin5b3089d2015-03-08 22:29:15 -0700135 {ANY_BOARD_ID, ANY_BOARD_ID},
Hans de Goede0f68f392014-05-19 22:54:09 -0700136 1024, 5052, 2258, 4832
137 },
138 {
Daniel Martinb05f4d12015-03-08 22:29:07 -0700139 (const char * const []){"LEN0042", NULL},
Daniel Martin5b3089d2015-03-08 22:29:15 -0700140 {ANY_BOARD_ID, ANY_BOARD_ID},
Hans de Goede0f68f392014-05-19 22:54:09 -0700141 1232, 5710, 1156, 4696
142 },
143 {
Peter Hutterer8543cf12015-01-19 16:29:25 -0800144 (const char * const []){"LEN0034", "LEN0036", "LEN0037",
145 "LEN0039", "LEN2002", "LEN2004",
146 NULL},
Benjamin Tissoires02e07492015-03-08 22:29:25 -0700147 {ANY_BOARD_ID, 2961},
Hans de Goede0f68f392014-05-19 22:54:09 -0700148 1024, 5112, 2024, 4832
149 },
150 {
151 (const char * const []){"LEN2001", NULL},
Daniel Martin5b3089d2015-03-08 22:29:15 -0700152 {ANY_BOARD_ID, ANY_BOARD_ID},
Hans de Goede0f68f392014-05-19 22:54:09 -0700153 1024, 5022, 2508, 4832
154 },
Ben Sagalbce4f9e2014-11-16 17:23:40 -0800155 {
156 (const char * const []){"LEN2006", NULL},
Daniel Martin5b3089d2015-03-08 22:29:15 -0700157 {ANY_BOARD_ID, ANY_BOARD_ID},
Ben Sagalbce4f9e2014-11-16 17:23:40 -0800158 1264, 5675, 1171, 4688
159 },
Hans de Goede0f68f392014-05-19 22:54:09 -0700160 { }
161};
162
Hans de Goede43e19882014-04-19 22:26:41 -0700163/* 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 */
Hans de Goede0f68f392014-05-19 22:54:09 -0700175 "LEN0034", /* T431s, L440, L540, T540, W540, X1 Carbon 2nd */
Hans de Goede43e19882014-04-19 22:26:41 -0700176 "LEN0035", /* X240 */
177 "LEN0036", /* T440 */
Peter Hutterer8543cf12015-01-19 16:29:25 -0800178 "LEN0037", /* X1 Carbon 2nd */
Hans de Goede43e19882014-04-19 22:26:41 -0700179 "LEN0038",
Takashi Iwaie4742b12014-11-06 09:27:11 -0800180 "LEN0039", /* T440s */
Hans de Goede43e19882014-04-19 22:26:41 -0700181 "LEN0041",
182 "LEN0042", /* Yoga */
183 "LEN0045",
184 "LEN0046",
185 "LEN0047",
186 "LEN0048",
187 "LEN0049",
188 "LEN2000",
Hans de Goede0f68f392014-05-19 22:54:09 -0700189 "LEN2001", /* Edge E431 */
Hans de Goedee76aed92014-07-14 17:12:21 -0700190 "LEN2002", /* Edge E531 */
Hans de Goede43e19882014-04-19 22:26:41 -0700191 "LEN2003",
192 "LEN2004", /* L440 */
193 "LEN2005",
194 "LEN2006",
195 "LEN2007",
196 "LEN2008",
197 "LEN2009",
198 "LEN200A",
199 "LEN200B",
200 NULL
201};
Andres Salomon55e3d922007-03-10 01:39:54 -0500202
203/*****************************************************************************
204 * Synaptics communications functions
205 ****************************************************************************/
206
207/*
JJ Ding1a49a0a2012-05-10 22:32:00 -0700208 * Synaptics touchpads report the y coordinate from bottom to top, which is
209 * opposite from what userspace expects.
210 * This function is used to invert y before reporting.
211 */
212static int synaptics_invert_y(int y)
213{
214 return YMAX_NOMINAL + YMIN_NOMINAL - y;
215}
216
217/*
Andres Salomon55e3d922007-03-10 01:39:54 -0500218 * Send a command to the synpatics touchpad by special commands
219 */
220static int synaptics_send_cmd(struct psmouse *psmouse, unsigned char c, unsigned char *param)
221{
222 if (psmouse_sliced_command(psmouse, c))
223 return -1;
224 if (ps2_command(&psmouse->ps2dev, param, PSMOUSE_CMD_GETINFO))
225 return -1;
226 return 0;
227}
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229/*
230 * Read the model-id bytes from the touchpad
231 * see also SYN_MODEL_* macros
232 */
233static int synaptics_model_id(struct psmouse *psmouse)
234{
235 struct synaptics_data *priv = psmouse->private;
236 unsigned char mi[3];
237
238 if (synaptics_send_cmd(psmouse, SYN_QUE_MODEL, mi))
239 return -1;
240 priv->model_id = (mi[0]<<16) | (mi[1]<<8) | mi[2];
241 return 0;
242}
243
244/*
Daniel Kurtzc6bd9d42012-07-07 18:08:51 -0700245 * Read the board id from the touchpad
246 * The board id is encoded in the "QUERY MODES" response
247 */
248static int synaptics_board_id(struct psmouse *psmouse)
249{
250 struct synaptics_data *priv = psmouse->private;
251 unsigned char bid[3];
252
Benjamin Tissoiresb57a7122015-03-08 22:33:36 -0700253 /* firmwares prior 7.5 have no board_id encoded */
254 if (SYN_ID_FULL(priv->identity) < 0x705)
255 return 0;
256
Daniel Kurtzc6bd9d42012-07-07 18:08:51 -0700257 if (synaptics_send_cmd(psmouse, SYN_QUE_MODES, bid))
258 return -1;
259 priv->board_id = ((bid[0] & 0xfc) << 6) | bid[1];
260 return 0;
261}
262
263/*
264 * Read the firmware id from the touchpad
265 */
266static int synaptics_firmware_id(struct psmouse *psmouse)
267{
268 struct synaptics_data *priv = psmouse->private;
269 unsigned char fwid[3];
270
271 if (synaptics_send_cmd(psmouse, SYN_QUE_FIRMWARE_ID, fwid))
272 return -1;
273 priv->firmware_id = (fwid[0] << 16) | (fwid[1] << 8) | fwid[2];
274 return 0;
275}
276
277/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 * Read the capability-bits from the touchpad
279 * see also the SYN_CAP_* macros
280 */
281static int synaptics_capability(struct psmouse *psmouse)
282{
283 struct synaptics_data *priv = psmouse->private;
284 unsigned char cap[3];
285
286 if (synaptics_send_cmd(psmouse, SYN_QUE_CAPABILITIES, cap))
287 return -1;
288 priv->capabilities = (cap[0] << 16) | (cap[1] << 8) | cap[2];
Takashi Iwai5f57d672010-04-19 10:37:21 -0700289 priv->ext_cap = priv->ext_cap_0c = 0;
290
Dmitry Torokhov3619b8f2010-07-21 00:01:19 -0700291 /*
292 * Older firmwares had submodel ID fixed to 0x47
293 */
294 if (SYN_ID_FULL(priv->identity) < 0x705 &&
295 SYN_CAP_SUBMODEL_ID(priv->capabilities) != 0x47) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 return -1;
Dmitry Torokhov3619b8f2010-07-21 00:01:19 -0700297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
299 /*
300 * Unless capExtended is set the rest of the flags should be ignored
301 */
302 if (!SYN_CAP_EXTENDED(priv->capabilities))
303 priv->capabilities = 0;
304
305 if (SYN_EXT_CAP_REQUESTS(priv->capabilities) >= 1) {
306 if (synaptics_send_cmd(psmouse, SYN_QUE_EXT_CAPAB, cap)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700307 psmouse_warn(psmouse,
308 "device claims to have extended capabilities, but I'm not able to read them.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 } else {
310 priv->ext_cap = (cap[0] << 16) | (cap[1] << 8) | cap[2];
311
312 /*
313 * if nExtBtn is greater than 8 it should be considered
314 * invalid and treated as 0
315 */
316 if (SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap) > 8)
317 priv->ext_cap &= 0xff0fff;
318 }
319 }
Takashi Iwai5f57d672010-04-19 10:37:21 -0700320
321 if (SYN_EXT_CAP_REQUESTS(priv->capabilities) >= 4) {
322 if (synaptics_send_cmd(psmouse, SYN_QUE_EXT_CAPAB_0C, cap)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700323 psmouse_warn(psmouse,
324 "device claims to have extended capability 0x0c, but I'm not able to read it.\n");
Takashi Iwai5f57d672010-04-19 10:37:21 -0700325 } else {
326 priv->ext_cap_0c = (cap[0] << 16) | (cap[1] << 8) | cap[2];
327 }
328 }
329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 return 0;
331}
332
333/*
334 * Identify Touchpad
335 * See also the SYN_ID_* macros
336 */
337static int synaptics_identify(struct psmouse *psmouse)
338{
339 struct synaptics_data *priv = psmouse->private;
340 unsigned char id[3];
341
342 if (synaptics_send_cmd(psmouse, SYN_QUE_IDENTIFY, id))
343 return -1;
344 priv->identity = (id[0]<<16) | (id[1]<<8) | id[2];
345 if (SYN_ID_IS_SYNAPTICS(priv->identity))
346 return 0;
347 return -1;
348}
349
Tero Saarniec20a022009-06-10 23:27:24 -0700350/*
Dmitry Torokhov83ba9ea82010-05-10 23:06:52 -0700351 * Read touchpad resolution and maximum reported coordinates
Tero Saarniec20a022009-06-10 23:27:24 -0700352 * Resolution is left zero if touchpad does not support the query
353 */
Benjamin Tissoires421e08c2014-03-28 00:43:00 -0700354
Tero Saarniec20a022009-06-10 23:27:24 -0700355static int synaptics_resolution(struct psmouse *psmouse)
356{
357 struct synaptics_data *priv = psmouse->private;
Dmitry Torokhova66413f2011-07-09 12:32:56 -0700358 unsigned char resp[3];
Tero Saarniec20a022009-06-10 23:27:24 -0700359
360 if (SYN_ID_MAJOR(priv->identity) < 4)
Takashi Iwaibbddd192010-07-14 09:32:46 -0700361 return 0;
Tero Saarniec20a022009-06-10 23:27:24 -0700362
Dmitry Torokhova66413f2011-07-09 12:32:56 -0700363 if (synaptics_send_cmd(psmouse, SYN_QUE_RESOLUTION, resp) == 0) {
364 if (resp[0] != 0 && (resp[1] & 0x80) && resp[2] != 0) {
365 priv->x_res = resp[0]; /* x resolution in units/mm */
366 priv->y_res = resp[2]; /* y resolution in units/mm */
Dmitry Torokhov83ba9ea82010-05-10 23:06:52 -0700367 }
368 }
Tero Saarniec20a022009-06-10 23:27:24 -0700369
Dmitry Torokhov83ba9ea82010-05-10 23:06:52 -0700370 if (SYN_EXT_CAP_REQUESTS(priv->capabilities) >= 5 &&
371 SYN_CAP_MAX_DIMENSIONS(priv->ext_cap_0c)) {
Dmitry Torokhova66413f2011-07-09 12:32:56 -0700372 if (synaptics_send_cmd(psmouse, SYN_QUE_EXT_MAX_COORDS, resp)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700373 psmouse_warn(psmouse,
374 "device claims to have max coordinates query, but I'm not able to read it.\n");
Dmitry Torokhov83ba9ea82010-05-10 23:06:52 -0700375 } else {
Dmitry Torokhova66413f2011-07-09 12:32:56 -0700376 priv->x_max = (resp[0] << 5) | ((resp[1] & 0x0f) << 1);
377 priv->y_max = (resp[2] << 5) | ((resp[1] & 0xf0) >> 3);
Daniel Martin9aff6592015-03-08 22:28:29 -0700378 psmouse_info(psmouse,
379 "queried max coordinates: x [..%d], y [..%d]\n",
380 priv->x_max, priv->y_max);
Dmitry Torokhova66413f2011-07-09 12:32:56 -0700381 }
382 }
383
Daniel Martinac097932015-03-08 22:28:40 -0700384 if (SYN_CAP_MIN_DIMENSIONS(priv->ext_cap_0c) &&
385 (SYN_EXT_CAP_REQUESTS(priv->capabilities) >= 7 ||
386 /*
387 * Firmware v8.1 does not report proper number of extended
388 * capabilities, but has been proven to report correct min
389 * coordinates.
390 */
391 SYN_ID_FULL(priv->identity) == 0x801)) {
Dmitry Torokhova66413f2011-07-09 12:32:56 -0700392 if (synaptics_send_cmd(psmouse, SYN_QUE_EXT_MIN_COORDS, resp)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700393 psmouse_warn(psmouse,
394 "device claims to have min coordinates query, but I'm not able to read it.\n");
Dmitry Torokhova66413f2011-07-09 12:32:56 -0700395 } else {
396 priv->x_min = (resp[0] << 5) | ((resp[1] & 0x0f) << 1);
397 priv->y_min = (resp[2] << 5) | ((resp[1] & 0xf0) >> 3);
Daniel Martin9aff6592015-03-08 22:28:29 -0700398 psmouse_info(psmouse,
399 "queried min coordinates: x [%d..], y [%d..]\n",
400 priv->x_min, priv->y_min);
Dmitry Torokhov83ba9ea82010-05-10 23:06:52 -0700401 }
Tero Saarniec20a022009-06-10 23:27:24 -0700402 }
403
404 return 0;
405}
406
Daniel Martin8b04bab2015-03-08 22:27:37 -0700407/*
408 * Apply quirk(s) if the hardware matches
409 */
410
411static void synaptics_apply_quirks(struct psmouse *psmouse)
412{
413 struct synaptics_data *priv = psmouse->private;
414 int i;
415
416 for (i = 0; min_max_pnpid_table[i].pnp_ids; i++) {
Daniel Martin5b3089d2015-03-08 22:29:15 -0700417 if (!psmouse_matches_pnp_id(psmouse,
418 min_max_pnpid_table[i].pnp_ids))
419 continue;
420
421 if (min_max_pnpid_table[i].board_id.min != ANY_BOARD_ID &&
422 priv->board_id < min_max_pnpid_table[i].board_id.min)
423 continue;
424
425 if (min_max_pnpid_table[i].board_id.max != ANY_BOARD_ID &&
426 priv->board_id > min_max_pnpid_table[i].board_id.max)
427 continue;
428
429 priv->x_min = min_max_pnpid_table[i].x_min;
430 priv->x_max = min_max_pnpid_table[i].x_max;
431 priv->y_min = min_max_pnpid_table[i].y_min;
432 priv->y_max = min_max_pnpid_table[i].y_max;
433 psmouse_info(psmouse,
434 "quirked min/max coordinates: x [%d..%d], y [%d..%d]\n",
435 priv->x_min, priv->x_max,
436 priv->y_min, priv->y_max);
437 break;
Daniel Martin8b04bab2015-03-08 22:27:37 -0700438 }
439}
440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441static int synaptics_query_hardware(struct psmouse *psmouse)
442{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 if (synaptics_identify(psmouse))
444 return -1;
445 if (synaptics_model_id(psmouse))
446 return -1;
Daniel Kurtzc6bd9d42012-07-07 18:08:51 -0700447 if (synaptics_firmware_id(psmouse))
448 return -1;
449 if (synaptics_board_id(psmouse))
450 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 if (synaptics_capability(psmouse))
452 return -1;
Tero Saarniec20a022009-06-10 23:27:24 -0700453 if (synaptics_resolution(psmouse))
454 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Daniel Martin8b04bab2015-03-08 22:27:37 -0700456 synaptics_apply_quirks(psmouse);
457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 return 0;
459}
460
Daniel Drake7968a5d2011-11-08 00:00:35 -0800461static int synaptics_set_advanced_gesture_mode(struct psmouse *psmouse)
462{
463 static unsigned char param = 0xc8;
464 struct synaptics_data *priv = psmouse->private;
465
Benjamin Herrenschmidt899c6122012-04-20 22:34:49 -0700466 if (!(SYN_CAP_ADV_GESTURE(priv->ext_cap_0c) ||
467 SYN_CAP_IMAGE_SENSOR(priv->ext_cap_0c)))
Daniel Drake7968a5d2011-11-08 00:00:35 -0800468 return 0;
469
470 if (psmouse_sliced_command(psmouse, SYN_QUE_MODEL))
471 return -1;
472
473 if (ps2_command(&psmouse->ps2dev, &param, PSMOUSE_CMD_SETRATE))
474 return -1;
475
476 /* Advanced gesture mode also sends multi finger data */
477 priv->capabilities |= BIT(1);
478
479 return 0;
480}
481
482static int synaptics_set_mode(struct psmouse *psmouse)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
484 struct synaptics_data *priv = psmouse->private;
485
Daniel Drake7968a5d2011-11-08 00:00:35 -0800486 priv->mode = 0;
487 if (priv->absolute_mode)
488 priv->mode |= SYN_BIT_ABSOLUTE_MODE;
489 if (priv->disable_gesture)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 priv->mode |= SYN_BIT_DISABLE_GESTURE;
Daniel Drake7968a5d2011-11-08 00:00:35 -0800491 if (psmouse->rate >= 80)
492 priv->mode |= SYN_BIT_HIGH_RATE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 if (SYN_CAP_EXTENDED(priv->capabilities))
494 priv->mode |= SYN_BIT_W_MODE;
495
496 if (synaptics_mode_cmd(psmouse, priv->mode))
497 return -1;
498
Daniel Drake7968a5d2011-11-08 00:00:35 -0800499 if (priv->absolute_mode &&
500 synaptics_set_advanced_gesture_mode(psmouse)) {
501 psmouse_err(psmouse, "Advanced gesture mode init failed.\n");
502 return -1;
503 }
504
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 return 0;
506}
507
508static void synaptics_set_rate(struct psmouse *psmouse, unsigned int rate)
509{
510 struct synaptics_data *priv = psmouse->private;
511
512 if (rate >= 80) {
513 priv->mode |= SYN_BIT_HIGH_RATE;
514 psmouse->rate = 80;
515 } else {
516 priv->mode &= ~SYN_BIT_HIGH_RATE;
517 psmouse->rate = 40;
518 }
519
520 synaptics_mode_cmd(psmouse, priv->mode);
521}
522
523/*****************************************************************************
524 * Synaptics pass-through PS/2 port support
525 ****************************************************************************/
526static int synaptics_pt_write(struct serio *serio, unsigned char c)
527{
528 struct psmouse *parent = serio_get_drvdata(serio->parent);
529 char rate_param = SYN_PS_CLIENT_CMD; /* indicates that we want pass-through port */
530
531 if (psmouse_sliced_command(parent, c))
532 return -1;
533 if (ps2_command(&parent->ps2dev, &rate_param, PSMOUSE_CMD_SETRATE))
534 return -1;
535 return 0;
536}
537
Dmitry Torokhova8b3c0f2010-10-04 21:46:10 -0700538static int synaptics_pt_start(struct serio *serio)
539{
540 struct psmouse *parent = serio_get_drvdata(serio->parent);
541 struct synaptics_data *priv = parent->private;
542
543 serio_pause_rx(parent->ps2dev.serio);
544 priv->pt_port = serio;
545 serio_continue_rx(parent->ps2dev.serio);
546
547 return 0;
548}
549
550static void synaptics_pt_stop(struct serio *serio)
551{
552 struct psmouse *parent = serio_get_drvdata(serio->parent);
553 struct synaptics_data *priv = parent->private;
554
555 serio_pause_rx(parent->ps2dev.serio);
556 priv->pt_port = NULL;
557 serio_continue_rx(parent->ps2dev.serio);
558}
559
560static int synaptics_is_pt_packet(unsigned char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561{
562 return (buf[0] & 0xFC) == 0x84 && (buf[3] & 0xCC) == 0xC4;
563}
564
565static void synaptics_pass_pt_packet(struct serio *ptport, unsigned char *packet)
566{
567 struct psmouse *child = serio_get_drvdata(ptport);
568
569 if (child && child->state == PSMOUSE_ACTIVATED) {
David Howells7d12e782006-10-05 14:55:46 +0100570 serio_interrupt(ptport, packet[1], 0);
571 serio_interrupt(ptport, packet[4], 0);
572 serio_interrupt(ptport, packet[5], 0);
Sergey Vlasov33fdfa92005-07-24 00:53:32 -0500573 if (child->pktsize == 4)
David Howells7d12e782006-10-05 14:55:46 +0100574 serio_interrupt(ptport, packet[2], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 } else
David Howells7d12e782006-10-05 14:55:46 +0100576 serio_interrupt(ptport, packet[1], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577}
578
579static void synaptics_pt_activate(struct psmouse *psmouse)
580{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 struct synaptics_data *priv = psmouse->private;
Dmitry Torokhova8b3c0f2010-10-04 21:46:10 -0700582 struct psmouse *child = serio_get_drvdata(priv->pt_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584 /* adjust the touchpad to child's choice of protocol */
585 if (child) {
Sergey Vlasov33fdfa92005-07-24 00:53:32 -0500586 if (child->pktsize == 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 priv->mode |= SYN_BIT_FOUR_BYTE_CLIENT;
588 else
589 priv->mode &= ~SYN_BIT_FOUR_BYTE_CLIENT;
590
591 if (synaptics_mode_cmd(psmouse, priv->mode))
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700592 psmouse_warn(psmouse,
593 "failed to switch guest protocol\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 }
595}
596
597static void synaptics_pt_create(struct psmouse *psmouse)
598{
599 struct serio *serio;
600
Eric Sesterhennb39787a2006-03-14 00:09:16 -0500601 serio = kzalloc(sizeof(struct serio), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 if (!serio) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700603 psmouse_err(psmouse,
604 "not enough memory for pass-through port\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 return;
606 }
607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 serio->id.type = SERIO_PS_PSTHRU;
609 strlcpy(serio->name, "Synaptics pass-through", sizeof(serio->name));
610 strlcpy(serio->phys, "synaptics-pt/serio0", sizeof(serio->name));
611 serio->write = synaptics_pt_write;
Dmitry Torokhova8b3c0f2010-10-04 21:46:10 -0700612 serio->start = synaptics_pt_start;
613 serio->stop = synaptics_pt_stop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 serio->parent = psmouse->ps2dev.serio;
615
616 psmouse->pt_activate = synaptics_pt_activate;
617
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700618 psmouse_info(psmouse, "serio: %s port at %s\n",
619 serio->name, psmouse->phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 serio_register_port(serio);
621}
622
623/*****************************************************************************
624 * Functions to interpret the absolute mode packets
625 ****************************************************************************/
626
Daniel Kurtza6ca40c2011-08-23 23:02:31 -0700627static void synaptics_mt_state_set(struct synaptics_mt_state *state, int count,
628 int sgm, int agm)
629{
630 state->count = count;
631 state->sgm = sgm;
632 state->agm = agm;
633}
634
Daniel Kurtz7afdb842011-08-23 23:00:33 -0700635static void synaptics_parse_agm(const unsigned char buf[],
Daniel Kurtza6ca40c2011-08-23 23:02:31 -0700636 struct synaptics_data *priv,
637 struct synaptics_hw_state *hw)
Daniel Kurtz7afdb842011-08-23 23:00:33 -0700638{
639 struct synaptics_hw_state *agm = &priv->agm;
Daniel Kurtza6ca40c2011-08-23 23:02:31 -0700640 int agm_packet_type;
Daniel Kurtz7afdb842011-08-23 23:00:33 -0700641
Daniel Kurtza6ca40c2011-08-23 23:02:31 -0700642 agm_packet_type = (buf[5] & 0x30) >> 4;
643 switch (agm_packet_type) {
644 case 1:
645 /* Gesture packet: (x, y, z) half resolution */
646 agm->w = hw->w;
647 agm->x = (((buf[4] & 0x0f) << 8) | buf[1]) << 1;
648 agm->y = (((buf[4] & 0xf0) << 4) | buf[2]) << 1;
649 agm->z = ((buf[3] & 0x30) | (buf[5] & 0x0f)) << 1;
650 break;
651
652 case 2:
653 /* AGM-CONTACT packet: (count, sgm, agm) */
654 synaptics_mt_state_set(&agm->mt_state, buf[1], buf[2], buf[4]);
655 break;
656
657 default:
658 break;
659 }
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700660
661 /* Record that at least one AGM has been received since last SGM */
662 priv->agm_pending = true;
Daniel Kurtz7afdb842011-08-23 23:00:33 -0700663}
664
Dmitry Torokhovdc5465d2015-03-08 22:30:43 -0700665static void synaptics_parse_ext_buttons(const unsigned char buf[],
666 struct synaptics_data *priv,
667 struct synaptics_hw_state *hw)
668{
669 unsigned int ext_bits =
670 (SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap) + 1) >> 1;
671 unsigned int ext_mask = GENMASK(ext_bits - 1, 0);
672
673 hw->ext_buttons = buf[4] & ext_mask;
674 hw->ext_buttons |= (buf[5] & ext_mask) << ext_bits;
675}
676
Dmitry Torokhovaa97240992014-09-02 09:49:18 -0700677static bool is_forcepad;
678
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100679static int synaptics_parse_hw_state(const unsigned char buf[],
680 struct synaptics_data *priv,
681 struct synaptics_hw_state *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
683 memset(hw, 0, sizeof(struct synaptics_hw_state));
684
685 if (SYN_MODEL_NEWABS(priv->model_id)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 hw->w = (((buf[0] & 0x30) >> 2) |
687 ((buf[0] & 0x04) >> 1) |
688 ((buf[3] & 0x04) >> 2));
689
Dmitry Torokhov5715fc72014-08-30 13:51:06 -0700690 if ((SYN_CAP_ADV_GESTURE(priv->ext_cap_0c) ||
691 SYN_CAP_IMAGE_SENSOR(priv->ext_cap_0c)) &&
692 hw->w == 2) {
693 synaptics_parse_agm(buf, priv, hw);
694 return 1;
695 }
696
697 hw->x = (((buf[3] & 0x10) << 8) |
698 ((buf[1] & 0x0f) << 8) |
699 buf[4]);
700 hw->y = (((buf[3] & 0x20) << 7) |
701 ((buf[1] & 0xf0) << 4) |
702 buf[5]);
703 hw->z = buf[2];
704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 hw->left = (buf[0] & 0x01) ? 1 : 0;
706 hw->right = (buf[0] & 0x02) ? 1 : 0;
707
Dmitry Torokhovaa97240992014-09-02 09:49:18 -0700708 if (is_forcepad) {
Dmitry Torokhov5715fc72014-08-30 13:51:06 -0700709 /*
710 * ForcePads, like Clickpads, use middle button
711 * bits to report primary button clicks.
712 * Unfortunately they report primary button not
713 * only when user presses on the pad above certain
714 * threshold, but also when there are more than one
715 * finger on the touchpad, which interferes with
716 * out multi-finger gestures.
717 */
718 if (hw->z == 0) {
719 /* No contacts */
720 priv->press = priv->report_press = false;
721 } else if (hw->w >= 4 && ((buf[0] ^ buf[3]) & 0x01)) {
722 /*
723 * Single-finger touch with pressure above
724 * the threshold. If pressure stays long
725 * enough, we'll start reporting primary
726 * button. We rely on the device continuing
727 * sending data even if finger does not
728 * move.
729 */
730 if (!priv->press) {
731 priv->press_start = jiffies;
732 priv->press = true;
733 } else if (time_after(jiffies,
734 priv->press_start +
735 msecs_to_jiffies(50))) {
736 priv->report_press = true;
737 }
738 } else {
739 priv->press = false;
740 }
741
742 hw->left = priv->report_press;
743
744 } else if (SYN_CAP_CLICKPAD(priv->ext_cap_0c)) {
Takashi Iwai5f57d672010-04-19 10:37:21 -0700745 /*
746 * Clickpad's button is transmitted as middle button,
747 * however, since it is primary button, we will report
748 * it as BTN_LEFT.
749 */
750 hw->left = ((buf[0] ^ buf[3]) & 0x01) ? 1 : 0;
751
752 } else if (SYN_CAP_MIDDLE_BUTTON(priv->capabilities)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 hw->middle = ((buf[0] ^ buf[3]) & 0x01) ? 1 : 0;
754 if (hw->w == 2)
755 hw->scroll = (signed char)(buf[1]);
756 }
757
758 if (SYN_CAP_FOUR_BUTTON(priv->capabilities)) {
759 hw->up = ((buf[0] ^ buf[3]) & 0x01) ? 1 : 0;
760 hw->down = ((buf[0] ^ buf[3]) & 0x02) ? 1 : 0;
761 }
762
Dmitry Torokhovdc5465d2015-03-08 22:30:43 -0700763 if (SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap) > 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 ((buf[0] ^ buf[3]) & 0x02)) {
Dmitry Torokhovdc5465d2015-03-08 22:30:43 -0700765 synaptics_parse_ext_buttons(buf, priv, hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 }
767 } else {
768 hw->x = (((buf[1] & 0x1f) << 8) | buf[2]);
769 hw->y = (((buf[4] & 0x1f) << 8) | buf[5]);
770
771 hw->z = (((buf[0] & 0x30) << 2) | (buf[3] & 0x3F));
772 hw->w = (((buf[1] & 0x80) >> 4) | ((buf[0] & 0x04) >> 1));
773
774 hw->left = (buf[0] & 0x01) ? 1 : 0;
775 hw->right = (buf[0] & 0x02) ? 1 : 0;
776 }
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100777
Seth Forshee824efd32012-09-28 10:29:21 -0700778 /*
779 * Convert wrap-around values to negative. (X|Y)_MAX_POSITIVE
780 * is used by some firmware to indicate a finger at the edge of
781 * the touchpad whose precise position cannot be determined, so
782 * convert these values to the maximum axis value.
783 */
Seth Forsheec03945062012-07-24 23:54:11 -0700784 if (hw->x > X_MAX_POSITIVE)
785 hw->x -= 1 << ABS_POS_BITS;
Seth Forshee824efd32012-09-28 10:29:21 -0700786 else if (hw->x == X_MAX_POSITIVE)
787 hw->x = XMAX;
788
Seth Forsheec03945062012-07-24 23:54:11 -0700789 if (hw->y > Y_MAX_POSITIVE)
790 hw->y -= 1 << ABS_POS_BITS;
Seth Forshee824efd32012-09-28 10:29:21 -0700791 else if (hw->y == Y_MAX_POSITIVE)
792 hw->y = YMAX;
Seth Forsheec03945062012-07-24 23:54:11 -0700793
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100794 return 0;
795}
796
Daniel Kurtzbea9f0f2011-07-06 22:42:52 -0700797static void synaptics_report_semi_mt_slot(struct input_dev *dev, int slot,
798 bool active, int x, int y)
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100799{
800 input_mt_slot(dev, slot);
801 input_mt_report_slot_state(dev, MT_TOOL_FINGER, active);
802 if (active) {
803 input_report_abs(dev, ABS_MT_POSITION_X, x);
Daniel Kurtz6de58dd2011-08-23 23:00:24 -0700804 input_report_abs(dev, ABS_MT_POSITION_Y, synaptics_invert_y(y));
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100805 }
806}
807
808static void synaptics_report_semi_mt_data(struct input_dev *dev,
809 const struct synaptics_hw_state *a,
810 const struct synaptics_hw_state *b,
811 int num_fingers)
812{
813 if (num_fingers >= 2) {
Daniel Kurtzbea9f0f2011-07-06 22:42:52 -0700814 synaptics_report_semi_mt_slot(dev, 0, true, min(a->x, b->x),
815 min(a->y, b->y));
816 synaptics_report_semi_mt_slot(dev, 1, true, max(a->x, b->x),
817 max(a->y, b->y));
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100818 } else if (num_fingers == 1) {
Daniel Kurtzbea9f0f2011-07-06 22:42:52 -0700819 synaptics_report_semi_mt_slot(dev, 0, true, a->x, a->y);
820 synaptics_report_semi_mt_slot(dev, 1, false, 0, 0);
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100821 } else {
Daniel Kurtzbea9f0f2011-07-06 22:42:52 -0700822 synaptics_report_semi_mt_slot(dev, 0, false, 0, 0);
823 synaptics_report_semi_mt_slot(dev, 1, false, 0, 0);
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100824 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825}
826
Benjamin Tissoiresebc80842015-03-08 22:32:43 -0700827static void synaptics_report_ext_buttons(struct psmouse *psmouse,
828 const struct synaptics_hw_state *hw)
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700829{
830 struct input_dev *dev = psmouse->dev;
831 struct synaptics_data *priv = psmouse->private;
Dmitry Torokhovdc5465d2015-03-08 22:30:43 -0700832 int ext_bits = (SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap) + 1) >> 1;
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700833 int i;
834
Benjamin Tissoiresebc80842015-03-08 22:32:43 -0700835 if (!SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap))
836 return;
837
838 /* Bug in FW 8.1, buttons are reported only when ExtBit is 1 */
839 if (SYN_ID_FULL(priv->identity) == 0x801 &&
840 !((psmouse->packet[0] ^ psmouse->packet[3]) & 0x02))
841 return;
842
843 for (i = 0; i < ext_bits; i++) {
844 input_report_key(dev, BTN_0 + 2 * i,
845 hw->ext_buttons & (1 << i));
846 input_report_key(dev, BTN_1 + 2 * i,
847 hw->ext_buttons & (1 << (i + ext_bits)));
848 }
849}
850
851static void synaptics_report_buttons(struct psmouse *psmouse,
852 const struct synaptics_hw_state *hw)
853{
854 struct input_dev *dev = psmouse->dev;
855 struct synaptics_data *priv = psmouse->private;
856
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700857 input_report_key(dev, BTN_LEFT, hw->left);
858 input_report_key(dev, BTN_RIGHT, hw->right);
859
860 if (SYN_CAP_MIDDLE_BUTTON(priv->capabilities))
861 input_report_key(dev, BTN_MIDDLE, hw->middle);
862
863 if (SYN_CAP_FOUR_BUTTON(priv->capabilities)) {
864 input_report_key(dev, BTN_FORWARD, hw->up);
865 input_report_key(dev, BTN_BACK, hw->down);
866 }
867
Benjamin Tissoiresebc80842015-03-08 22:32:43 -0700868 synaptics_report_ext_buttons(psmouse, hw);
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700869}
870
871static void synaptics_report_slot(struct input_dev *dev, int slot,
872 const struct synaptics_hw_state *hw)
873{
874 input_mt_slot(dev, slot);
875 input_mt_report_slot_state(dev, MT_TOOL_FINGER, (hw != NULL));
876 if (!hw)
877 return;
878
879 input_report_abs(dev, ABS_MT_POSITION_X, hw->x);
880 input_report_abs(dev, ABS_MT_POSITION_Y, synaptics_invert_y(hw->y));
881 input_report_abs(dev, ABS_MT_PRESSURE, hw->z);
882}
883
884static void synaptics_report_mt_data(struct psmouse *psmouse,
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700885 struct synaptics_mt_state *mt_state,
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700886 const struct synaptics_hw_state *sgm)
887{
888 struct input_dev *dev = psmouse->dev;
889 struct synaptics_data *priv = psmouse->private;
890 struct synaptics_hw_state *agm = &priv->agm;
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700891 struct synaptics_mt_state *old = &priv->mt_state;
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700892
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700893 switch (mt_state->count) {
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700894 case 0:
895 synaptics_report_slot(dev, 0, NULL);
896 synaptics_report_slot(dev, 1, NULL);
897 break;
898 case 1:
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700899 if (mt_state->sgm == -1) {
900 synaptics_report_slot(dev, 0, NULL);
901 synaptics_report_slot(dev, 1, NULL);
902 } else if (mt_state->sgm == 0) {
903 synaptics_report_slot(dev, 0, sgm);
904 synaptics_report_slot(dev, 1, NULL);
905 } else {
906 synaptics_report_slot(dev, 0, NULL);
907 synaptics_report_slot(dev, 1, sgm);
908 }
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700909 break;
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700910 default:
911 /*
912 * If the finger slot contained in SGM is valid, and either
Daniel Kurtz48064bd2013-02-13 13:53:07 -0800913 * hasn't changed, or is new, or the old SGM has now moved to
914 * AGM, then report SGM in MTB slot 0.
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700915 * Otherwise, empty MTB slot 0.
916 */
917 if (mt_state->sgm != -1 &&
Daniel Kurtz48064bd2013-02-13 13:53:07 -0800918 (mt_state->sgm == old->sgm ||
919 old->sgm == -1 || mt_state->agm == old->sgm))
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700920 synaptics_report_slot(dev, 0, sgm);
921 else
922 synaptics_report_slot(dev, 0, NULL);
923
924 /*
925 * If the finger slot contained in AGM is valid, and either
926 * hasn't changed, or is new, then report AGM in MTB slot 1.
927 * Otherwise, empty MTB slot 1.
Daniel Kurtz48064bd2013-02-13 13:53:07 -0800928 *
929 * However, in the case where the AGM is new, make sure that
930 * that it is either the same as the old SGM, or there was no
931 * SGM.
932 *
933 * Otherwise, if the SGM was just 1, and the new AGM is 2, then
934 * the new AGM will keep the old SGM's tracking ID, which can
935 * cause apparent drumroll. This happens if in the following
936 * valid finger sequence:
937 *
938 * Action SGM AGM (MTB slot:Contact)
939 * 1. Touch contact 0 (0:0)
940 * 2. Touch contact 1 (0:0, 1:1)
941 * 3. Lift contact 0 (1:1)
942 * 4. Touch contacts 2,3 (0:2, 1:3)
943 *
944 * In step 4, contact 3, in AGM must not be given the same
945 * tracking ID as contact 1 had in step 3. To avoid this,
946 * the first agm with contact 3 is dropped and slot 1 is
947 * invalidated (tracking ID = -1).
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700948 */
949 if (mt_state->agm != -1 &&
Daniel Kurtz48064bd2013-02-13 13:53:07 -0800950 (mt_state->agm == old->agm ||
951 (old->agm == -1 &&
952 (old->sgm == -1 || mt_state->agm == old->sgm))))
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700953 synaptics_report_slot(dev, 1, agm);
954 else
955 synaptics_report_slot(dev, 1, NULL);
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700956 break;
957 }
958
959 /* Don't use active slot count to generate BTN_TOOL events. */
960 input_mt_report_pointer_emulation(dev, false);
961
962 /* Send the number of fingers reported by touchpad itself. */
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700963 input_mt_report_finger_count(dev, mt_state->count);
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700964
965 synaptics_report_buttons(psmouse, sgm);
966
967 input_sync(dev);
968}
969
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700970/* Handle case where mt_state->count = 0 */
971static void synaptics_image_sensor_0f(struct synaptics_data *priv,
972 struct synaptics_mt_state *mt_state)
973{
974 synaptics_mt_state_set(mt_state, 0, -1, -1);
975 priv->mt_state_lost = false;
976}
977
978/* Handle case where mt_state->count = 1 */
979static void synaptics_image_sensor_1f(struct synaptics_data *priv,
980 struct synaptics_mt_state *mt_state)
981{
982 struct synaptics_hw_state *agm = &priv->agm;
983 struct synaptics_mt_state *old = &priv->mt_state;
984
985 /*
986 * If the last AGM was (0,0,0), and there is only one finger left,
987 * then we absolutely know that SGM contains slot 0, and all other
988 * fingers have been removed.
989 */
990 if (priv->agm_pending && agm->z == 0) {
991 synaptics_mt_state_set(mt_state, 1, 0, -1);
992 priv->mt_state_lost = false;
993 return;
994 }
995
996 switch (old->count) {
997 case 0:
998 synaptics_mt_state_set(mt_state, 1, 0, -1);
999 break;
1000 case 1:
1001 /*
1002 * If mt_state_lost, then the previous transition was 3->1,
1003 * and SGM now contains either slot 0 or 1, but we don't know
1004 * which. So, we just assume that the SGM now contains slot 1.
1005 *
1006 * If pending AGM and either:
1007 * (a) the previous SGM slot contains slot 0, or
1008 * (b) there was no SGM slot
1009 * then, the SGM now contains slot 1
1010 *
1011 * Case (a) happens with very rapid "drum roll" gestures, where
1012 * slot 0 finger is lifted and a new slot 1 finger touches
1013 * within one reporting interval.
1014 *
1015 * Case (b) happens if initially two or more fingers tap
1016 * briefly, and all but one lift before the end of the first
1017 * reporting interval.
1018 *
1019 * (In both these cases, slot 0 will becomes empty, so SGM
1020 * contains slot 1 with the new finger)
1021 *
1022 * Else, if there was no previous SGM, it now contains slot 0.
1023 *
1024 * Otherwise, SGM still contains the same slot.
1025 */
1026 if (priv->mt_state_lost ||
1027 (priv->agm_pending && old->sgm <= 0))
1028 synaptics_mt_state_set(mt_state, 1, 1, -1);
1029 else if (old->sgm == -1)
1030 synaptics_mt_state_set(mt_state, 1, 0, -1);
1031 break;
1032 case 2:
1033 /*
1034 * If mt_state_lost, we don't know which finger SGM contains.
1035 *
1036 * So, report 1 finger, but with both slots empty.
1037 * We will use slot 1 on subsequent 1->1
1038 */
1039 if (priv->mt_state_lost) {
1040 synaptics_mt_state_set(mt_state, 1, -1, -1);
1041 break;
1042 }
1043 /*
1044 * Since the last AGM was NOT (0,0,0), it was the finger in
1045 * slot 0 that has been removed.
1046 * So, SGM now contains previous AGM's slot, and AGM is now
1047 * empty.
1048 */
1049 synaptics_mt_state_set(mt_state, 1, old->agm, -1);
1050 break;
1051 case 3:
1052 /*
1053 * Since last AGM was not (0,0,0), we don't know which finger
1054 * is left.
1055 *
1056 * So, report 1 finger, but with both slots empty.
1057 * We will use slot 1 on subsequent 1->1
1058 */
1059 synaptics_mt_state_set(mt_state, 1, -1, -1);
1060 priv->mt_state_lost = true;
1061 break;
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -07001062 case 4:
1063 case 5:
1064 /* mt_state was updated by AGM-CONTACT packet */
1065 break;
Daniel Kurtz4dc772d2011-08-23 23:02:40 -07001066 }
1067}
1068
1069/* Handle case where mt_state->count = 2 */
1070static void synaptics_image_sensor_2f(struct synaptics_data *priv,
1071 struct synaptics_mt_state *mt_state)
1072{
1073 struct synaptics_mt_state *old = &priv->mt_state;
1074
1075 switch (old->count) {
1076 case 0:
1077 synaptics_mt_state_set(mt_state, 2, 0, 1);
1078 break;
1079 case 1:
1080 /*
1081 * If previous SGM contained slot 1 or higher, SGM now contains
1082 * slot 0 (the newly touching finger) and AGM contains SGM's
1083 * previous slot.
1084 *
1085 * Otherwise, SGM still contains slot 0 and AGM now contains
1086 * slot 1.
1087 */
1088 if (old->sgm >= 1)
1089 synaptics_mt_state_set(mt_state, 2, 0, old->sgm);
1090 else
1091 synaptics_mt_state_set(mt_state, 2, 0, 1);
1092 break;
1093 case 2:
1094 /*
1095 * If mt_state_lost, SGM now contains either finger 1 or 2, but
1096 * we don't know which.
1097 * So, we just assume that the SGM contains slot 0 and AGM 1.
1098 */
1099 if (priv->mt_state_lost)
1100 synaptics_mt_state_set(mt_state, 2, 0, 1);
1101 /*
1102 * Otherwise, use the same mt_state, since it either hasn't
1103 * changed, or was updated by a recently received AGM-CONTACT
1104 * packet.
1105 */
1106 break;
1107 case 3:
1108 /*
1109 * 3->2 transitions have two unsolvable problems:
1110 * 1) no indication is given which finger was removed
1111 * 2) no way to tell if agm packet was for finger 3
1112 * before 3->2, or finger 2 after 3->2.
1113 *
1114 * So, report 2 fingers, but empty all slots.
1115 * We will guess slots [0,1] on subsequent 2->2.
1116 */
1117 synaptics_mt_state_set(mt_state, 2, -1, -1);
1118 priv->mt_state_lost = true;
1119 break;
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -07001120 case 4:
1121 case 5:
1122 /* mt_state was updated by AGM-CONTACT packet */
1123 break;
Daniel Kurtz4dc772d2011-08-23 23:02:40 -07001124 }
1125}
1126
1127/* Handle case where mt_state->count = 3 */
1128static void synaptics_image_sensor_3f(struct synaptics_data *priv,
1129 struct synaptics_mt_state *mt_state)
1130{
1131 struct synaptics_mt_state *old = &priv->mt_state;
1132
1133 switch (old->count) {
1134 case 0:
1135 synaptics_mt_state_set(mt_state, 3, 0, 2);
1136 break;
1137 case 1:
1138 /*
1139 * If previous SGM contained slot 2 or higher, SGM now contains
1140 * slot 0 (one of the newly touching fingers) and AGM contains
1141 * SGM's previous slot.
1142 *
1143 * Otherwise, SGM now contains slot 0 and AGM contains slot 2.
1144 */
1145 if (old->sgm >= 2)
1146 synaptics_mt_state_set(mt_state, 3, 0, old->sgm);
1147 else
1148 synaptics_mt_state_set(mt_state, 3, 0, 2);
1149 break;
1150 case 2:
1151 /*
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -07001152 * If the AGM previously contained slot 3 or higher, then the
1153 * newly touching finger is in the lowest available slot.
1154 *
1155 * If SGM was previously 1 or higher, then the new SGM is
1156 * now slot 0 (with a new finger), otherwise, the new finger
1157 * is now in a hidden slot between 0 and AGM's slot.
1158 *
1159 * In all such cases, the SGM now contains slot 0, and the AGM
1160 * continues to contain the same slot as before.
1161 */
1162 if (old->agm >= 3) {
1163 synaptics_mt_state_set(mt_state, 3, 0, old->agm);
1164 break;
1165 }
1166
1167 /*
Daniel Kurtz4dc772d2011-08-23 23:02:40 -07001168 * After some 3->1 and all 3->2 transitions, we lose track
1169 * of which slot is reported by SGM and AGM.
1170 *
1171 * For 2->3 in this state, report 3 fingers, but empty all
1172 * slots, and we will guess (0,2) on a subsequent 0->3.
1173 *
1174 * To userspace, the resulting transition will look like:
1175 * 2:[0,1] -> 3:[-1,-1] -> 3:[0,2]
1176 */
1177 if (priv->mt_state_lost) {
1178 synaptics_mt_state_set(mt_state, 3, -1, -1);
1179 break;
1180 }
1181
1182 /*
1183 * If the (SGM,AGM) really previously contained slots (0, 1),
1184 * then we cannot know what slot was just reported by the AGM,
1185 * because the 2->3 transition can occur either before or after
1186 * the AGM packet. Thus, this most recent AGM could contain
1187 * either the same old slot 1 or the new slot 2.
1188 * Subsequent AGMs will be reporting slot 2.
1189 *
1190 * To userspace, the resulting transition will look like:
1191 * 2:[0,1] -> 3:[0,-1] -> 3:[0,2]
1192 */
1193 synaptics_mt_state_set(mt_state, 3, 0, -1);
1194 break;
1195 case 3:
1196 /*
1197 * If, for whatever reason, the previous agm was invalid,
1198 * Assume SGM now contains slot 0, AGM now contains slot 2.
1199 */
1200 if (old->agm <= 2)
1201 synaptics_mt_state_set(mt_state, 3, 0, 2);
1202 /*
1203 * mt_state either hasn't changed, or was updated by a recently
1204 * received AGM-CONTACT packet.
1205 */
1206 break;
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -07001207
1208 case 4:
1209 case 5:
1210 /* mt_state was updated by AGM-CONTACT packet */
1211 break;
Daniel Kurtz4dc772d2011-08-23 23:02:40 -07001212 }
1213}
1214
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -07001215/* Handle case where mt_state->count = 4, or = 5 */
1216static void synaptics_image_sensor_45f(struct synaptics_data *priv,
1217 struct synaptics_mt_state *mt_state)
1218{
1219 /* mt_state was updated correctly by AGM-CONTACT packet */
1220 priv->mt_state_lost = false;
1221}
1222
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001223static void synaptics_image_sensor_process(struct psmouse *psmouse,
1224 struct synaptics_hw_state *sgm)
1225{
Daniel Kurtz4dc772d2011-08-23 23:02:40 -07001226 struct synaptics_data *priv = psmouse->private;
1227 struct synaptics_hw_state *agm = &priv->agm;
1228 struct synaptics_mt_state mt_state;
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001229
Daniel Kurtz4dc772d2011-08-23 23:02:40 -07001230 /* Initialize using current mt_state (as updated by last agm) */
1231 mt_state = agm->mt_state;
1232
1233 /*
1234 * Update mt_state using the new finger count and current mt_state.
1235 */
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001236 if (sgm->z == 0)
Daniel Kurtz4dc772d2011-08-23 23:02:40 -07001237 synaptics_image_sensor_0f(priv, &mt_state);
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001238 else if (sgm->w >= 4)
Daniel Kurtz4dc772d2011-08-23 23:02:40 -07001239 synaptics_image_sensor_1f(priv, &mt_state);
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001240 else if (sgm->w == 0)
Daniel Kurtz4dc772d2011-08-23 23:02:40 -07001241 synaptics_image_sensor_2f(priv, &mt_state);
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -07001242 else if (sgm->w == 1 && mt_state.count <= 3)
Daniel Kurtz4dc772d2011-08-23 23:02:40 -07001243 synaptics_image_sensor_3f(priv, &mt_state);
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -07001244 else
1245 synaptics_image_sensor_45f(priv, &mt_state);
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001246
1247 /* Send resulting input events to user space */
Daniel Kurtz4dc772d2011-08-23 23:02:40 -07001248 synaptics_report_mt_data(psmouse, &mt_state, sgm);
1249
1250 /* Store updated mt_state */
1251 priv->mt_state = agm->mt_state = mt_state;
1252 priv->agm_pending = false;
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001253}
1254
Henrik Rydberge08d9af2014-07-14 10:26:56 -07001255static void synaptics_profile_sensor_process(struct psmouse *psmouse,
1256 struct synaptics_hw_state *sgm,
1257 int num_fingers)
1258{
1259 struct input_dev *dev = psmouse->dev;
1260 struct synaptics_data *priv = psmouse->private;
1261 struct synaptics_hw_state *hw[2] = { sgm, &priv->agm };
1262 struct input_mt_pos pos[2];
1263 int slot[2], nsemi, i;
1264
1265 nsemi = clamp_val(num_fingers, 0, 2);
1266
1267 for (i = 0; i < nsemi; i++) {
1268 pos[i].x = hw[i]->x;
1269 pos[i].y = synaptics_invert_y(hw[i]->y);
1270 }
1271
1272 input_mt_assign_slots(dev, slot, pos, nsemi);
1273
1274 for (i = 0; i < nsemi; i++) {
1275 input_mt_slot(dev, slot[i]);
1276 input_mt_report_slot_state(dev, MT_TOOL_FINGER, true);
1277 input_report_abs(dev, ABS_MT_POSITION_X, pos[i].x);
1278 input_report_abs(dev, ABS_MT_POSITION_Y, pos[i].y);
1279 input_report_abs(dev, ABS_MT_PRESSURE, hw[i]->z);
1280 }
1281
1282 input_mt_drop_unused(dev);
1283 input_mt_report_pointer_emulation(dev, false);
1284 input_mt_report_finger_count(dev, num_fingers);
1285
1286 synaptics_report_buttons(psmouse, sgm);
1287
1288 input_sync(dev);
1289}
1290
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291/*
1292 * called for each full received packet from the touchpad
1293 */
1294static void synaptics_process_packet(struct psmouse *psmouse)
1295{
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001296 struct input_dev *dev = psmouse->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 struct synaptics_data *priv = psmouse->private;
1298 struct synaptics_hw_state hw;
1299 int num_fingers;
1300 int finger_width;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
Henrik Rydbergfec6e522010-12-21 18:11:25 +01001302 if (synaptics_parse_hw_state(psmouse->packet, priv, &hw))
1303 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001305 if (SYN_CAP_IMAGE_SENSOR(priv->ext_cap_0c)) {
1306 synaptics_image_sensor_process(psmouse, &hw);
1307 return;
1308 }
1309
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 if (hw.scroll) {
1311 priv->scroll += hw.scroll;
1312
1313 while (priv->scroll >= 4) {
1314 input_report_key(dev, BTN_BACK, !hw.down);
1315 input_sync(dev);
1316 input_report_key(dev, BTN_BACK, hw.down);
1317 input_sync(dev);
1318 priv->scroll -= 4;
1319 }
1320 while (priv->scroll <= -4) {
1321 input_report_key(dev, BTN_FORWARD, !hw.up);
1322 input_sync(dev);
1323 input_report_key(dev, BTN_FORWARD, hw.up);
1324 input_sync(dev);
1325 priv->scroll += 4;
1326 }
1327 return;
1328 }
1329
Henrik Rydberg4f56ce92010-12-18 15:42:30 +01001330 if (hw.z > 0 && hw.x > 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 num_fingers = 1;
1332 finger_width = 5;
1333 if (SYN_CAP_EXTENDED(priv->capabilities)) {
1334 switch (hw.w) {
1335 case 0 ... 1:
1336 if (SYN_CAP_MULTIFINGER(priv->capabilities))
1337 num_fingers = hw.w + 2;
1338 break;
1339 case 2:
1340 if (SYN_MODEL_PEN(priv->model_id))
1341 ; /* Nothing, treat a pen as a single finger */
1342 break;
1343 case 4 ... 15:
1344 if (SYN_CAP_PALMDETECT(priv->capabilities))
1345 finger_width = hw.w;
1346 break;
1347 }
1348 }
1349 } else {
1350 num_fingers = 0;
1351 finger_width = 0;
1352 }
1353
Henrik Rydberge08d9af2014-07-14 10:26:56 -07001354 if (cr48_profile_sensor) {
1355 synaptics_profile_sensor_process(psmouse, &hw, num_fingers);
1356 return;
1357 }
1358
Henrik Rydbergfec6e522010-12-21 18:11:25 +01001359 if (SYN_CAP_ADV_GESTURE(priv->ext_cap_0c))
Daniel Kurtz7afdb842011-08-23 23:00:33 -07001360 synaptics_report_semi_mt_data(dev, &hw, &priv->agm,
1361 num_fingers);
Henrik Rydbergfec6e522010-12-21 18:11:25 +01001362
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 /* Post events
1364 * BTN_TOUCH has to be first as mousedev relies on it when doing
1365 * absolute -> relative conversion
1366 */
1367 if (hw.z > 30) input_report_key(dev, BTN_TOUCH, 1);
1368 if (hw.z < 25) input_report_key(dev, BTN_TOUCH, 0);
1369
Henrik Rydberg4f56ce92010-12-18 15:42:30 +01001370 if (num_fingers > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 input_report_abs(dev, ABS_X, hw.x);
Daniel Kurtz6de58dd2011-08-23 23:00:24 -07001372 input_report_abs(dev, ABS_Y, synaptics_invert_y(hw.y));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 }
1374 input_report_abs(dev, ABS_PRESSURE, hw.z);
1375
Chris Bagwell2a8e7712010-07-19 09:06:15 -07001376 if (SYN_CAP_PALMDETECT(priv->capabilities))
1377 input_report_abs(dev, ABS_TOOL_WIDTH, finger_width);
1378
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 input_report_key(dev, BTN_TOOL_FINGER, num_fingers == 1);
Peter Hutterere42b6642008-11-20 15:24:42 -05001380 if (SYN_CAP_MULTIFINGER(priv->capabilities)) {
1381 input_report_key(dev, BTN_TOOL_DOUBLETAP, num_fingers == 2);
1382 input_report_key(dev, BTN_TOOL_TRIPLETAP, num_fingers == 3);
1383 }
1384
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001385 synaptics_report_buttons(psmouse, &hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
1387 input_sync(dev);
1388}
1389
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001390static int synaptics_validate_byte(struct psmouse *psmouse,
1391 int idx, unsigned char pkt_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392{
Helge Dellere38de672006-09-10 21:54:39 -04001393 static const unsigned char newabs_mask[] = { 0xC8, 0x00, 0x00, 0xC8, 0x00 };
1394 static const unsigned char newabs_rel_mask[] = { 0xC0, 0x00, 0x00, 0xC0, 0x00 };
1395 static const unsigned char newabs_rslt[] = { 0x80, 0x00, 0x00, 0xC0, 0x00 };
1396 static const unsigned char oldabs_mask[] = { 0xC0, 0x60, 0x00, 0xC0, 0x60 };
1397 static const unsigned char oldabs_rslt[] = { 0xC0, 0x00, 0x00, 0x80, 0x00 };
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001398 const char *packet = psmouse->packet;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
1400 if (idx < 0 || idx > 4)
1401 return 0;
1402
1403 switch (pkt_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
Dmitry Torokhova62f0d22010-05-19 10:39:17 -07001405 case SYN_NEWABS:
1406 case SYN_NEWABS_RELAXED:
1407 return (packet[idx] & newabs_rel_mask[idx]) == newabs_rslt[idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408
Dmitry Torokhova62f0d22010-05-19 10:39:17 -07001409 case SYN_NEWABS_STRICT:
1410 return (packet[idx] & newabs_mask[idx]) == newabs_rslt[idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
Dmitry Torokhova62f0d22010-05-19 10:39:17 -07001412 case SYN_OLDABS:
1413 return (packet[idx] & oldabs_mask[idx]) == oldabs_rslt[idx];
1414
1415 default:
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001416 psmouse_err(psmouse, "unknown packet type %d\n", pkt_type);
Dmitry Torokhova62f0d22010-05-19 10:39:17 -07001417 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 }
1419}
1420
1421static unsigned char synaptics_detect_pkt_type(struct psmouse *psmouse)
1422{
1423 int i;
1424
1425 for (i = 0; i < 5; i++)
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001426 if (!synaptics_validate_byte(psmouse, i, SYN_NEWABS_STRICT)) {
1427 psmouse_info(psmouse, "using relaxed packet validation\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 return SYN_NEWABS_RELAXED;
1429 }
1430
1431 return SYN_NEWABS_STRICT;
1432}
1433
David Howells7d12e782006-10-05 14:55:46 +01001434static psmouse_ret_t synaptics_process_byte(struct psmouse *psmouse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 struct synaptics_data *priv = psmouse->private;
1437
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 if (psmouse->pktcnt >= 6) { /* Full packet received */
1439 if (unlikely(priv->pkt_type == SYN_NEWABS))
1440 priv->pkt_type = synaptics_detect_pkt_type(psmouse);
1441
Dmitry Torokhova8b3c0f2010-10-04 21:46:10 -07001442 if (SYN_CAP_PASS_THROUGH(priv->capabilities) &&
1443 synaptics_is_pt_packet(psmouse->packet)) {
1444 if (priv->pt_port)
1445 synaptics_pass_pt_packet(priv->pt_port, psmouse->packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 } else
1447 synaptics_process_packet(psmouse);
1448
1449 return PSMOUSE_FULL_PACKET;
1450 }
1451
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001452 return synaptics_validate_byte(psmouse, psmouse->pktcnt - 1, priv->pkt_type) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 PSMOUSE_GOOD_DATA : PSMOUSE_BAD_DATA;
1454}
1455
1456/*****************************************************************************
1457 * Driver initialization/cleanup functions
1458 ****************************************************************************/
Daniel Kurtz85615472011-08-23 23:00:41 -07001459static void set_abs_position_params(struct input_dev *dev,
1460 struct synaptics_data *priv, int x_code,
1461 int y_code)
1462{
1463 int x_min = priv->x_min ?: XMIN_NOMINAL;
1464 int x_max = priv->x_max ?: XMAX_NOMINAL;
1465 int y_min = priv->y_min ?: YMIN_NOMINAL;
1466 int y_max = priv->y_max ?: YMAX_NOMINAL;
1467 int fuzz = SYN_CAP_REDUCED_FILTERING(priv->ext_cap_0c) ?
1468 SYN_REDUCED_FILTER_FUZZ : 0;
1469
1470 input_set_abs_params(dev, x_code, x_min, x_max, fuzz, 0);
1471 input_set_abs_params(dev, y_code, y_min, y_max, fuzz, 0);
1472 input_abs_set_res(dev, x_code, priv->x_res);
1473 input_abs_set_res(dev, y_code, priv->y_res);
1474}
1475
Hans de Goede43e19882014-04-19 22:26:41 -07001476static void set_input_params(struct psmouse *psmouse,
1477 struct synaptics_data *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478{
Hans de Goede43e19882014-04-19 22:26:41 -07001479 struct input_dev *dev = psmouse->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 int i;
1481
Daniel Drake7968a5d2011-11-08 00:00:35 -08001482 /* Things that apply to both modes */
Henrik Rydbergc14890a2010-12-16 09:52:23 +01001483 __set_bit(INPUT_PROP_POINTER, dev->propbit);
Daniel Drake7968a5d2011-11-08 00:00:35 -08001484 __set_bit(EV_KEY, dev->evbit);
1485 __set_bit(BTN_LEFT, dev->keybit);
1486 __set_bit(BTN_RIGHT, dev->keybit);
Henrik Rydbergc14890a2010-12-16 09:52:23 +01001487
Daniel Drake7968a5d2011-11-08 00:00:35 -08001488 if (SYN_CAP_MIDDLE_BUTTON(priv->capabilities))
1489 __set_bit(BTN_MIDDLE, dev->keybit);
1490
1491 if (!priv->absolute_mode) {
1492 /* Relative mode */
1493 __set_bit(EV_REL, dev->evbit);
1494 __set_bit(REL_X, dev->relbit);
1495 __set_bit(REL_Y, dev->relbit);
1496 return;
1497 }
1498
1499 /* Absolute mode */
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001500 __set_bit(EV_ABS, dev->evbit);
Daniel Kurtz85615472011-08-23 23:00:41 -07001501 set_abs_position_params(dev, priv, ABS_X, ABS_Y);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 input_set_abs_params(dev, ABS_PRESSURE, 0, 255, 0, 0);
Chris Bagwell2a8e7712010-07-19 09:06:15 -07001503
Henrik Rydberge08d9af2014-07-14 10:26:56 -07001504 if (cr48_profile_sensor)
1505 input_set_abs_params(dev, ABS_MT_PRESSURE, 0, 255, 0, 0);
1506
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001507 if (SYN_CAP_IMAGE_SENSOR(priv->ext_cap_0c)) {
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001508 set_abs_position_params(dev, priv, ABS_MT_POSITION_X,
1509 ABS_MT_POSITION_Y);
1510 /* Image sensors can report per-contact pressure */
1511 input_set_abs_params(dev, ABS_MT_PRESSURE, 0, 255, 0, 0);
Henrik Rydberg0b85bf72013-02-15 17:04:03 -08001512 input_mt_init_slots(dev, 2, INPUT_MT_POINTER);
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -07001513
1514 /* Image sensors can signal 4 and 5 finger clicks */
1515 __set_bit(BTN_TOOL_QUADTAP, dev->keybit);
1516 __set_bit(BTN_TOOL_QUINTTAP, dev->keybit);
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001517 } else if (SYN_CAP_ADV_GESTURE(priv->ext_cap_0c)) {
Daniel Kurtz85615472011-08-23 23:00:41 -07001518 set_abs_position_params(dev, priv, ABS_MT_POSITION_X,
1519 ABS_MT_POSITION_Y);
Henrik Rydberge08d9af2014-07-14 10:26:56 -07001520 /*
1521 * Profile sensor in CR-48 tracks contacts reasonably well,
1522 * other non-image sensors with AGM use semi-mt.
1523 */
Dmitry Torokhovae841972014-07-25 17:12:12 -07001524 input_mt_init_slots(dev, 2,
Henrik Rydberge08d9af2014-07-14 10:26:56 -07001525 INPUT_MT_POINTER |
1526 (cr48_profile_sensor ?
1527 INPUT_MT_TRACK : INPUT_MT_SEMI_MT));
Henrik Rydbergfec6e522010-12-21 18:11:25 +01001528 }
1529
Chris Bagwell2a8e7712010-07-19 09:06:15 -07001530 if (SYN_CAP_PALMDETECT(priv->capabilities))
Chris Bagwell58fb0212010-07-19 09:06:15 -07001531 input_set_abs_params(dev, ABS_TOOL_WIDTH, 0, 15, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001533 __set_bit(BTN_TOUCH, dev->keybit);
1534 __set_bit(BTN_TOOL_FINGER, dev->keybit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
Peter Hutterere42b6642008-11-20 15:24:42 -05001536 if (SYN_CAP_MULTIFINGER(priv->capabilities)) {
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001537 __set_bit(BTN_TOOL_DOUBLETAP, dev->keybit);
1538 __set_bit(BTN_TOOL_TRIPLETAP, dev->keybit);
Peter Hutterere42b6642008-11-20 15:24:42 -05001539 }
1540
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 if (SYN_CAP_FOUR_BUTTON(priv->capabilities) ||
1542 SYN_CAP_MIDDLE_BUTTON(priv->capabilities)) {
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001543 __set_bit(BTN_FORWARD, dev->keybit);
1544 __set_bit(BTN_BACK, dev->keybit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 }
1546
1547 for (i = 0; i < SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap); i++)
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001548 __set_bit(BTN_0 + i, dev->keybit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001550 __clear_bit(EV_REL, dev->evbit);
1551 __clear_bit(REL_X, dev->relbit);
1552 __clear_bit(REL_Y, dev->relbit);
Tero Saarniec20a022009-06-10 23:27:24 -07001553
Takashi Iwai5f57d672010-04-19 10:37:21 -07001554 if (SYN_CAP_CLICKPAD(priv->ext_cap_0c)) {
Henrik Rydbergc14890a2010-12-16 09:52:23 +01001555 __set_bit(INPUT_PROP_BUTTONPAD, dev->propbit);
Hans de Goede2c75ada2014-09-11 10:14:09 -07001556 if (psmouse_matches_pnp_id(psmouse, topbuttonpad_pnp_ids))
Hans de Goedee2f61102014-05-19 22:53:23 -07001557 __set_bit(INPUT_PROP_TOPBUTTONPAD, dev->propbit);
Takashi Iwai5f57d672010-04-19 10:37:21 -07001558 /* Clickpads report only left button */
1559 __clear_bit(BTN_RIGHT, dev->keybit);
1560 __clear_bit(BTN_MIDDLE, dev->keybit);
1561 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562}
1563
Daniel Drake7968a5d2011-11-08 00:00:35 -08001564static ssize_t synaptics_show_disable_gesture(struct psmouse *psmouse,
1565 void *data, char *buf)
1566{
1567 struct synaptics_data *priv = psmouse->private;
1568
1569 return sprintf(buf, "%c\n", priv->disable_gesture ? '1' : '0');
1570}
1571
1572static ssize_t synaptics_set_disable_gesture(struct psmouse *psmouse,
1573 void *data, const char *buf,
1574 size_t len)
1575{
1576 struct synaptics_data *priv = psmouse->private;
1577 unsigned int value;
1578 int err;
1579
1580 err = kstrtouint(buf, 10, &value);
1581 if (err)
1582 return err;
1583
1584 if (value > 1)
1585 return -EINVAL;
1586
1587 if (value == priv->disable_gesture)
1588 return len;
1589
1590 priv->disable_gesture = value;
1591 if (value)
1592 priv->mode |= SYN_BIT_DISABLE_GESTURE;
1593 else
1594 priv->mode &= ~SYN_BIT_DISABLE_GESTURE;
1595
1596 if (synaptics_mode_cmd(psmouse, priv->mode))
1597 return -EIO;
1598
1599 return len;
1600}
1601
1602PSMOUSE_DEFINE_ATTR(disable_gesture, S_IWUSR | S_IRUGO, NULL,
1603 synaptics_show_disable_gesture,
1604 synaptics_set_disable_gesture);
1605
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606static void synaptics_disconnect(struct psmouse *psmouse)
1607{
Daniel Drake7968a5d2011-11-08 00:00:35 -08001608 struct synaptics_data *priv = psmouse->private;
1609
1610 if (!priv->absolute_mode && SYN_ID_DISGEST_SUPPORTED(priv->identity))
1611 device_remove_file(&psmouse->ps2dev.serio->dev,
1612 &psmouse_attr_disable_gesture.dattr);
1613
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 synaptics_reset(psmouse);
Daniel Drake7968a5d2011-11-08 00:00:35 -08001615 kfree(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 psmouse->private = NULL;
1617}
1618
1619static int synaptics_reconnect(struct psmouse *psmouse)
1620{
1621 struct synaptics_data *priv = psmouse->private;
1622 struct synaptics_data old_priv = *priv;
Eric Miaoeeb06552013-06-04 09:30:55 -07001623 unsigned char param[2];
Alexandre Peixoto Ferreirac63fe0a2011-01-28 22:05:14 -08001624 int retry = 0;
1625 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
Alexandre Peixoto Ferreirac63fe0a2011-01-28 22:05:14 -08001627 do {
1628 psmouse_reset(psmouse);
Dmitry Torokhov85214782011-12-12 00:05:53 -08001629 if (retry) {
1630 /*
1631 * On some boxes, right after resuming, the touchpad
1632 * needs some time to finish initializing (I assume
1633 * it needs time to calibrate) and start responding
1634 * to Synaptics-specific queries, so let's wait a
1635 * bit.
1636 */
1637 ssleep(1);
1638 }
Eric Miaoeeb06552013-06-04 09:30:55 -07001639 ps2_command(&psmouse->ps2dev, param, PSMOUSE_CMD_GETID);
Alexandre Peixoto Ferreirac63fe0a2011-01-28 22:05:14 -08001640 error = synaptics_detect(psmouse, 0);
1641 } while (error && ++retry < 3);
Andy Whitcroft4d368452009-02-28 12:51:01 -08001642
Alexandre Peixoto Ferreirac63fe0a2011-01-28 22:05:14 -08001643 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 return -1;
1645
Alexandre Peixoto Ferreirac63fe0a2011-01-28 22:05:14 -08001646 if (retry > 1)
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001647 psmouse_dbg(psmouse, "reconnected after %d tries\n", retry);
Alexandre Peixoto Ferreirac63fe0a2011-01-28 22:05:14 -08001648
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 if (synaptics_query_hardware(psmouse)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001650 psmouse_err(psmouse, "Unable to query device.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 return -1;
1652 }
1653
Daniel Drake7968a5d2011-11-08 00:00:35 -08001654 if (synaptics_set_mode(psmouse)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001655 psmouse_err(psmouse, "Unable to initialize device.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 return -1;
1657 }
1658
Alexandre Peixoto Ferreirabaddf582011-01-28 22:05:14 -08001659 if (old_priv.identity != priv->identity ||
1660 old_priv.model_id != priv->model_id ||
1661 old_priv.capabilities != priv->capabilities ||
1662 old_priv.ext_cap != priv->ext_cap) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001663 psmouse_err(psmouse,
1664 "hardware appears to be different: id(%ld-%ld), model(%ld-%ld), caps(%lx-%lx), ext(%lx-%lx).\n",
1665 old_priv.identity, priv->identity,
1666 old_priv.model_id, priv->model_id,
1667 old_priv.capabilities, priv->capabilities,
1668 old_priv.ext_cap, priv->ext_cap);
Alexandre Peixoto Ferreirabaddf582011-01-28 22:05:14 -08001669 return -1;
1670 }
1671
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 return 0;
1673}
1674
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001675static bool impaired_toshiba_kbc;
1676
Sachin Kamatc9631562013-08-12 11:05:58 -07001677static const struct dmi_system_id toshiba_dmi_table[] __initconst = {
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001678#if defined(CONFIG_DMI) && defined(CONFIG_X86)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 {
Dmitry Torokhov9961e252009-12-04 10:24:20 -08001680 /* Toshiba Satellite */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 .matches = {
1682 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
Richard Thrippleton53a26702006-04-02 00:10:18 -05001683 DMI_MATCH(DMI_PRODUCT_NAME, "Satellite"),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 },
1685 },
Simon Horman9ba5eaa2005-07-11 01:07:20 -05001686 {
Dmitry Torokhov9961e252009-12-04 10:24:20 -08001687 /* Toshiba Dynabook */
Simon Horman9ba5eaa2005-07-11 01:07:20 -05001688 .matches = {
1689 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
Richard Thrippleton53a26702006-04-02 00:10:18 -05001690 DMI_MATCH(DMI_PRODUCT_NAME, "dynabook"),
1691 },
1692 },
1693 {
Dmitry Torokhov9961e252009-12-04 10:24:20 -08001694 /* Toshiba Portege M300 */
Richard Thrippleton53a26702006-04-02 00:10:18 -05001695 .matches = {
1696 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1697 DMI_MATCH(DMI_PRODUCT_NAME, "PORTEGE M300"),
Simon Horman9ba5eaa2005-07-11 01:07:20 -05001698 },
Dmitry Torokhov5f5eeff2009-10-12 21:35:00 -07001699
1700 },
1701 {
Dmitry Torokhov9961e252009-12-04 10:24:20 -08001702 /* Toshiba Portege M300 */
Dmitry Torokhov5f5eeff2009-10-12 21:35:00 -07001703 .matches = {
1704 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1705 DMI_MATCH(DMI_PRODUCT_NAME, "Portable PC"),
1706 DMI_MATCH(DMI_PRODUCT_VERSION, "Version 1.0"),
1707 },
1708
Simon Horman9ba5eaa2005-07-11 01:07:20 -05001709 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710#endif
Jan Beulich70874862011-03-31 00:01:58 -07001711 { }
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001712};
1713
Andres Salomonef8313b2010-12-23 01:19:38 -08001714static bool broken_olpc_ec;
1715
Sachin Kamatc9631562013-08-12 11:05:58 -07001716static const struct dmi_system_id olpc_dmi_table[] __initconst = {
Andres Salomonef8313b2010-12-23 01:19:38 -08001717#if defined(CONFIG_DMI) && defined(CONFIG_OLPC)
1718 {
1719 /* OLPC XO-1 or XO-1.5 */
1720 .matches = {
1721 DMI_MATCH(DMI_SYS_VENDOR, "OLPC"),
1722 DMI_MATCH(DMI_PRODUCT_NAME, "XO"),
1723 },
1724 },
Andres Salomonef8313b2010-12-23 01:19:38 -08001725#endif
Jan Beulich70874862011-03-31 00:01:58 -07001726 { }
Andres Salomonef8313b2010-12-23 01:19:38 -08001727};
1728
Henrik Rydberge08d9af2014-07-14 10:26:56 -07001729static const struct dmi_system_id __initconst cr48_dmi_table[] = {
1730#if defined(CONFIG_DMI) && defined(CONFIG_X86)
1731 {
1732 /* Cr-48 Chromebook (Codename Mario) */
1733 .matches = {
1734 DMI_MATCH(DMI_SYS_VENDOR, "IEC"),
1735 DMI_MATCH(DMI_PRODUCT_NAME, "Mario"),
1736 },
1737 },
1738#endif
1739 { }
1740};
1741
Dmitry Torokhovaa97240992014-09-02 09:49:18 -07001742static const struct dmi_system_id forcepad_dmi_table[] __initconst = {
1743#if defined(CONFIG_DMI) && defined(CONFIG_X86)
1744 {
1745 .matches = {
1746 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1747 DMI_MATCH(DMI_PRODUCT_NAME, "HP EliteBook Folio 1040 G1"),
1748 },
1749 },
1750#endif
1751 { }
1752};
1753
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001754void __init synaptics_module_init(void)
1755{
1756 impaired_toshiba_kbc = dmi_check_system(toshiba_dmi_table);
Andres Salomonef8313b2010-12-23 01:19:38 -08001757 broken_olpc_ec = dmi_check_system(olpc_dmi_table);
Henrik Rydberge08d9af2014-07-14 10:26:56 -07001758 cr48_profile_sensor = dmi_check_system(cr48_dmi_table);
Dmitry Torokhovaa97240992014-09-02 09:49:18 -07001759
1760 /*
1761 * Unfortunately ForcePad capability is not exported over PS/2,
1762 * so we have to resort to checking DMI.
1763 */
1764 is_forcepad = dmi_check_system(forcepad_dmi_table);
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001765}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766
Daniel Drake7968a5d2011-11-08 00:00:35 -08001767static int __synaptics_init(struct psmouse *psmouse, bool absolute_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768{
1769 struct synaptics_data *priv;
Daniel Drake7968a5d2011-11-08 00:00:35 -08001770 int err = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
Andres Salomonef8313b2010-12-23 01:19:38 -08001772 /*
Daniel Drake83551c02011-11-11 16:05:04 -08001773 * The OLPC XO has issues with Synaptics' absolute mode; the constant
1774 * packet spew overloads the EC such that key presses on the keyboard
1775 * are missed. Given that, don't even attempt to use Absolute mode.
1776 * Relative mode seems to work just fine.
Andres Salomonef8313b2010-12-23 01:19:38 -08001777 */
Daniel Drake83551c02011-11-11 16:05:04 -08001778 if (absolute_mode && broken_olpc_ec) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001779 psmouse_info(psmouse,
1780 "OLPC XO detected, not enabling Synaptics protocol.\n");
Andres Salomonef8313b2010-12-23 01:19:38 -08001781 return -ENODEV;
1782 }
1783
Eric Sesterhennb39787a2006-03-14 00:09:16 -05001784 psmouse->private = priv = kzalloc(sizeof(struct synaptics_data), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 if (!priv)
Davidlohr Bueso6792cbb2010-09-29 18:53:35 -07001786 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
Andy Whitcroft4d368452009-02-28 12:51:01 -08001788 psmouse_reset(psmouse);
1789
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 if (synaptics_query_hardware(psmouse)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001791 psmouse_err(psmouse, "Unable to query device.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 goto init_fail;
1793 }
1794
Daniel Drake7968a5d2011-11-08 00:00:35 -08001795 priv->absolute_mode = absolute_mode;
1796 if (SYN_ID_DISGEST_SUPPORTED(priv->identity))
1797 priv->disable_gesture = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798
Daniel Drake7968a5d2011-11-08 00:00:35 -08001799 if (synaptics_set_mode(psmouse)) {
1800 psmouse_err(psmouse, "Unable to initialize device.\n");
Henrik Rydbergfec6e522010-12-21 18:11:25 +01001801 goto init_fail;
1802 }
1803
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 priv->pkt_type = SYN_MODEL_NEWABS(priv->model_id) ? SYN_NEWABS : SYN_OLDABS;
1805
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001806 psmouse_info(psmouse,
Daniel Kurtzc6bd9d42012-07-07 18:08:51 -07001807 "Touchpad model: %ld, fw: %ld.%ld, id: %#lx, caps: %#lx/%#lx/%#lx, board id: %lu, fw id: %lu\n",
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001808 SYN_ID_MODEL(priv->identity),
1809 SYN_ID_MAJOR(priv->identity), SYN_ID_MINOR(priv->identity),
1810 priv->model_id,
Daniel Kurtzc6bd9d42012-07-07 18:08:51 -07001811 priv->capabilities, priv->ext_cap, priv->ext_cap_0c,
1812 priv->board_id, priv->firmware_id);
Dmitry Torokhov409b7502005-05-28 02:12:18 -05001813
Hans de Goede43e19882014-04-19 22:26:41 -07001814 set_input_params(psmouse, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815
Dmitry Torokhov887cc122007-04-12 01:30:41 -04001816 /*
1817 * Encode touchpad model so that it can be used to set
1818 * input device->id.version and be visible to userspace.
1819 * Because version is __u16 we have to drop something.
1820 * Hardware info bits seem to be good candidates as they
1821 * are documented to be for Synaptics corp. internal use.
1822 */
1823 psmouse->model = ((priv->model_id & 0x00ff0000) >> 8) |
1824 (priv->model_id & 0x000000ff);
1825
Daniel Drake7968a5d2011-11-08 00:00:35 -08001826 if (absolute_mode) {
1827 psmouse->protocol_handler = synaptics_process_byte;
1828 psmouse->pktsize = 6;
1829 } else {
1830 /* Relative mode follows standard PS/2 mouse protocol */
1831 psmouse->protocol_handler = psmouse_process_byte;
1832 psmouse->pktsize = 3;
1833 }
1834
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 psmouse->set_rate = synaptics_set_rate;
1836 psmouse->disconnect = synaptics_disconnect;
1837 psmouse->reconnect = synaptics_reconnect;
Dmitry Torokhova1cec062007-02-18 01:40:24 -05001838 psmouse->cleanup = synaptics_reset;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001839 /* Synaptics can usually stay in sync without extra help */
1840 psmouse->resync_time = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
1842 if (SYN_CAP_PASS_THROUGH(priv->capabilities))
1843 synaptics_pt_create(psmouse);
1844
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 /*
1846 * Toshiba's KBC seems to have trouble handling data from
Andres Salomon7ee99162010-12-23 01:18:28 -08001847 * Synaptics at full rate. Switch to a lower rate (roughly
1848 * the same rate as a standard PS/2 mouse).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 */
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001850 if (psmouse->rate >= 80 && impaired_toshiba_kbc) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001851 psmouse_info(psmouse,
1852 "Toshiba %s detected, limiting rate to 40pps.\n",
1853 dmi_get_system_info(DMI_PRODUCT_NAME));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 psmouse->rate = 40;
1855 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856
Daniel Drake7968a5d2011-11-08 00:00:35 -08001857 if (!priv->absolute_mode && SYN_ID_DISGEST_SUPPORTED(priv->identity)) {
1858 err = device_create_file(&psmouse->ps2dev.serio->dev,
1859 &psmouse_attr_disable_gesture.dattr);
1860 if (err) {
1861 psmouse_err(psmouse,
1862 "Failed to create disable_gesture attribute (%d)",
1863 err);
1864 goto init_fail;
1865 }
1866 }
1867
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 return 0;
1869
1870 init_fail:
1871 kfree(priv);
Daniel Drake7968a5d2011-11-08 00:00:35 -08001872 return err;
1873}
1874
1875int synaptics_init(struct psmouse *psmouse)
1876{
1877 return __synaptics_init(psmouse, true);
1878}
1879
1880int synaptics_init_relative(struct psmouse *psmouse)
1881{
1882 return __synaptics_init(psmouse, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883}
1884
Daniel Drakee4e6efd2010-01-07 01:52:39 -08001885bool synaptics_supported(void)
1886{
1887 return true;
1888}
1889
Andres Salomon55e3d922007-03-10 01:39:54 -05001890#else /* CONFIG_MOUSE_PS2_SYNAPTICS */
1891
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001892void __init synaptics_module_init(void)
1893{
1894}
1895
Andres Salomon55e3d922007-03-10 01:39:54 -05001896int synaptics_init(struct psmouse *psmouse)
1897{
1898 return -ENOSYS;
1899}
1900
Daniel Drakee4e6efd2010-01-07 01:52:39 -08001901bool synaptics_supported(void)
1902{
1903 return false;
1904}
1905
Andres Salomon55e3d922007-03-10 01:39:54 -05001906#endif /* CONFIG_MOUSE_PS2_SYNAPTICS */