blob: b501dda75dcb225a35d10d368551ba5ddf9cf3ab [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
Hans de Goede0f68f392014-05-19 22:54:09 -0700123struct min_max_quirk {
124 const char * const *pnp_ids;
125 int x_min, x_max, y_min, y_max;
126};
127
128static const struct min_max_quirk min_max_pnpid_table[] = {
129 {
130 (const char * const []){"LEN0033", NULL},
131 1024, 5052, 2258, 4832
132 },
133 {
134 (const char * const []){"LEN0035", "LEN0042", NULL},
135 1232, 5710, 1156, 4696
136 },
137 {
Peter Hutterer8543cf12015-01-19 16:29:25 -0800138 (const char * const []){"LEN0034", "LEN0036", "LEN0037",
139 "LEN0039", "LEN2002", "LEN2004",
140 NULL},
Hans de Goede0f68f392014-05-19 22:54:09 -0700141 1024, 5112, 2024, 4832
142 },
143 {
144 (const char * const []){"LEN2001", NULL},
145 1024, 5022, 2508, 4832
146 },
Ben Sagalbce4f9e2014-11-16 17:23:40 -0800147 {
148 (const char * const []){"LEN2006", NULL},
149 1264, 5675, 1171, 4688
150 },
Hans de Goede0f68f392014-05-19 22:54:09 -0700151 { }
152};
153
Hans de Goede43e19882014-04-19 22:26:41 -0700154/* This list has been kindly provided by Synaptics. */
155static const char * const topbuttonpad_pnp_ids[] = {
156 "LEN0017",
157 "LEN0018",
158 "LEN0019",
159 "LEN0023",
160 "LEN002A",
161 "LEN002B",
162 "LEN002C",
163 "LEN002D",
164 "LEN002E",
165 "LEN0033", /* Helix */
Hans de Goede0f68f392014-05-19 22:54:09 -0700166 "LEN0034", /* T431s, L440, L540, T540, W540, X1 Carbon 2nd */
Hans de Goede43e19882014-04-19 22:26:41 -0700167 "LEN0035", /* X240 */
168 "LEN0036", /* T440 */
Peter Hutterer8543cf12015-01-19 16:29:25 -0800169 "LEN0037", /* X1 Carbon 2nd */
Hans de Goede43e19882014-04-19 22:26:41 -0700170 "LEN0038",
Takashi Iwaie4742b12014-11-06 09:27:11 -0800171 "LEN0039", /* T440s */
Hans de Goede43e19882014-04-19 22:26:41 -0700172 "LEN0041",
173 "LEN0042", /* Yoga */
174 "LEN0045",
175 "LEN0046",
176 "LEN0047",
177 "LEN0048",
178 "LEN0049",
179 "LEN2000",
Hans de Goede0f68f392014-05-19 22:54:09 -0700180 "LEN2001", /* Edge E431 */
Hans de Goedee76aed92014-07-14 17:12:21 -0700181 "LEN2002", /* Edge E531 */
Hans de Goede43e19882014-04-19 22:26:41 -0700182 "LEN2003",
183 "LEN2004", /* L440 */
184 "LEN2005",
185 "LEN2006",
186 "LEN2007",
187 "LEN2008",
188 "LEN2009",
189 "LEN200A",
190 "LEN200B",
191 NULL
192};
Andres Salomon55e3d922007-03-10 01:39:54 -0500193
194/*****************************************************************************
195 * Synaptics communications functions
196 ****************************************************************************/
197
198/*
JJ Ding1a49a0a2012-05-10 22:32:00 -0700199 * Synaptics touchpads report the y coordinate from bottom to top, which is
200 * opposite from what userspace expects.
201 * This function is used to invert y before reporting.
202 */
203static int synaptics_invert_y(int y)
204{
205 return YMAX_NOMINAL + YMIN_NOMINAL - y;
206}
207
208/*
Andres Salomon55e3d922007-03-10 01:39:54 -0500209 * Send a command to the synpatics touchpad by special commands
210 */
211static int synaptics_send_cmd(struct psmouse *psmouse, unsigned char c, unsigned char *param)
212{
213 if (psmouse_sliced_command(psmouse, c))
214 return -1;
215 if (ps2_command(&psmouse->ps2dev, param, PSMOUSE_CMD_GETINFO))
216 return -1;
217 return 0;
218}
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220/*
221 * Read the model-id bytes from the touchpad
222 * see also SYN_MODEL_* macros
223 */
224static int synaptics_model_id(struct psmouse *psmouse)
225{
226 struct synaptics_data *priv = psmouse->private;
227 unsigned char mi[3];
228
229 if (synaptics_send_cmd(psmouse, SYN_QUE_MODEL, mi))
230 return -1;
231 priv->model_id = (mi[0]<<16) | (mi[1]<<8) | mi[2];
232 return 0;
233}
234
235/*
Daniel Kurtzc6bd9d42012-07-07 18:08:51 -0700236 * Read the board id from the touchpad
237 * The board id is encoded in the "QUERY MODES" response
238 */
239static int synaptics_board_id(struct psmouse *psmouse)
240{
241 struct synaptics_data *priv = psmouse->private;
242 unsigned char bid[3];
243
244 if (synaptics_send_cmd(psmouse, SYN_QUE_MODES, bid))
245 return -1;
246 priv->board_id = ((bid[0] & 0xfc) << 6) | bid[1];
247 return 0;
248}
249
250/*
251 * Read the firmware id from the touchpad
252 */
253static int synaptics_firmware_id(struct psmouse *psmouse)
254{
255 struct synaptics_data *priv = psmouse->private;
256 unsigned char fwid[3];
257
258 if (synaptics_send_cmd(psmouse, SYN_QUE_FIRMWARE_ID, fwid))
259 return -1;
260 priv->firmware_id = (fwid[0] << 16) | (fwid[1] << 8) | fwid[2];
261 return 0;
262}
263
264/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 * Read the capability-bits from the touchpad
266 * see also the SYN_CAP_* macros
267 */
268static int synaptics_capability(struct psmouse *psmouse)
269{
270 struct synaptics_data *priv = psmouse->private;
271 unsigned char cap[3];
272
273 if (synaptics_send_cmd(psmouse, SYN_QUE_CAPABILITIES, cap))
274 return -1;
275 priv->capabilities = (cap[0] << 16) | (cap[1] << 8) | cap[2];
Takashi Iwai5f57d672010-04-19 10:37:21 -0700276 priv->ext_cap = priv->ext_cap_0c = 0;
277
Dmitry Torokhov3619b8f2010-07-21 00:01:19 -0700278 /*
279 * Older firmwares had submodel ID fixed to 0x47
280 */
281 if (SYN_ID_FULL(priv->identity) < 0x705 &&
282 SYN_CAP_SUBMODEL_ID(priv->capabilities) != 0x47) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 return -1;
Dmitry Torokhov3619b8f2010-07-21 00:01:19 -0700284 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286 /*
287 * Unless capExtended is set the rest of the flags should be ignored
288 */
289 if (!SYN_CAP_EXTENDED(priv->capabilities))
290 priv->capabilities = 0;
291
292 if (SYN_EXT_CAP_REQUESTS(priv->capabilities) >= 1) {
293 if (synaptics_send_cmd(psmouse, SYN_QUE_EXT_CAPAB, cap)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700294 psmouse_warn(psmouse,
295 "device claims to have extended capabilities, but I'm not able to read them.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 } else {
297 priv->ext_cap = (cap[0] << 16) | (cap[1] << 8) | cap[2];
298
299 /*
300 * if nExtBtn is greater than 8 it should be considered
301 * invalid and treated as 0
302 */
303 if (SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap) > 8)
304 priv->ext_cap &= 0xff0fff;
305 }
306 }
Takashi Iwai5f57d672010-04-19 10:37:21 -0700307
308 if (SYN_EXT_CAP_REQUESTS(priv->capabilities) >= 4) {
309 if (synaptics_send_cmd(psmouse, SYN_QUE_EXT_CAPAB_0C, cap)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700310 psmouse_warn(psmouse,
311 "device claims to have extended capability 0x0c, but I'm not able to read it.\n");
Takashi Iwai5f57d672010-04-19 10:37:21 -0700312 } else {
313 priv->ext_cap_0c = (cap[0] << 16) | (cap[1] << 8) | cap[2];
314 }
315 }
316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 return 0;
318}
319
320/*
321 * Identify Touchpad
322 * See also the SYN_ID_* macros
323 */
324static int synaptics_identify(struct psmouse *psmouse)
325{
326 struct synaptics_data *priv = psmouse->private;
327 unsigned char id[3];
328
329 if (synaptics_send_cmd(psmouse, SYN_QUE_IDENTIFY, id))
330 return -1;
331 priv->identity = (id[0]<<16) | (id[1]<<8) | id[2];
332 if (SYN_ID_IS_SYNAPTICS(priv->identity))
333 return 0;
334 return -1;
335}
336
Tero Saarniec20a022009-06-10 23:27:24 -0700337/*
Dmitry Torokhov83ba9ea82010-05-10 23:06:52 -0700338 * Read touchpad resolution and maximum reported coordinates
Tero Saarniec20a022009-06-10 23:27:24 -0700339 * Resolution is left zero if touchpad does not support the query
340 */
Benjamin Tissoires421e08c2014-03-28 00:43:00 -0700341
Tero Saarniec20a022009-06-10 23:27:24 -0700342static int synaptics_resolution(struct psmouse *psmouse)
343{
344 struct synaptics_data *priv = psmouse->private;
Dmitry Torokhova66413f2011-07-09 12:32:56 -0700345 unsigned char resp[3];
Tero Saarniec20a022009-06-10 23:27:24 -0700346
347 if (SYN_ID_MAJOR(priv->identity) < 4)
Takashi Iwaibbddd192010-07-14 09:32:46 -0700348 return 0;
Tero Saarniec20a022009-06-10 23:27:24 -0700349
Dmitry Torokhova66413f2011-07-09 12:32:56 -0700350 if (synaptics_send_cmd(psmouse, SYN_QUE_RESOLUTION, resp) == 0) {
351 if (resp[0] != 0 && (resp[1] & 0x80) && resp[2] != 0) {
352 priv->x_res = resp[0]; /* x resolution in units/mm */
353 priv->y_res = resp[2]; /* y resolution in units/mm */
Dmitry Torokhov83ba9ea82010-05-10 23:06:52 -0700354 }
355 }
Tero Saarniec20a022009-06-10 23:27:24 -0700356
Dmitry Torokhov83ba9ea82010-05-10 23:06:52 -0700357 if (SYN_EXT_CAP_REQUESTS(priv->capabilities) >= 5 &&
358 SYN_CAP_MAX_DIMENSIONS(priv->ext_cap_0c)) {
Dmitry Torokhova66413f2011-07-09 12:32:56 -0700359 if (synaptics_send_cmd(psmouse, SYN_QUE_EXT_MAX_COORDS, resp)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700360 psmouse_warn(psmouse,
361 "device claims to have max coordinates query, but I'm not able to read it.\n");
Dmitry Torokhov83ba9ea82010-05-10 23:06:52 -0700362 } else {
Dmitry Torokhova66413f2011-07-09 12:32:56 -0700363 priv->x_max = (resp[0] << 5) | ((resp[1] & 0x0f) << 1);
364 priv->y_max = (resp[2] << 5) | ((resp[1] & 0xf0) >> 3);
365 }
366 }
367
368 if (SYN_EXT_CAP_REQUESTS(priv->capabilities) >= 7 &&
369 SYN_CAP_MIN_DIMENSIONS(priv->ext_cap_0c)) {
370 if (synaptics_send_cmd(psmouse, SYN_QUE_EXT_MIN_COORDS, resp)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700371 psmouse_warn(psmouse,
372 "device claims to have min coordinates query, but I'm not able to read it.\n");
Dmitry Torokhova66413f2011-07-09 12:32:56 -0700373 } else {
374 priv->x_min = (resp[0] << 5) | ((resp[1] & 0x0f) << 1);
375 priv->y_min = (resp[2] << 5) | ((resp[1] & 0xf0) >> 3);
Dmitry Torokhov83ba9ea82010-05-10 23:06:52 -0700376 }
Tero Saarniec20a022009-06-10 23:27:24 -0700377 }
378
379 return 0;
380}
381
Daniel Martin8b04bab2015-03-08 22:27:37 -0700382/*
383 * Apply quirk(s) if the hardware matches
384 */
385
386static void synaptics_apply_quirks(struct psmouse *psmouse)
387{
388 struct synaptics_data *priv = psmouse->private;
389 int i;
390
391 for (i = 0; min_max_pnpid_table[i].pnp_ids; i++) {
392 if (psmouse_matches_pnp_id(psmouse,
393 min_max_pnpid_table[i].pnp_ids)) {
394 priv->x_min = min_max_pnpid_table[i].x_min;
395 priv->x_max = min_max_pnpid_table[i].x_max;
396 priv->y_min = min_max_pnpid_table[i].y_min;
397 priv->y_max = min_max_pnpid_table[i].y_max;
398 break;
399 }
400 }
401}
402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403static int synaptics_query_hardware(struct psmouse *psmouse)
404{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 if (synaptics_identify(psmouse))
406 return -1;
407 if (synaptics_model_id(psmouse))
408 return -1;
Daniel Kurtzc6bd9d42012-07-07 18:08:51 -0700409 if (synaptics_firmware_id(psmouse))
410 return -1;
411 if (synaptics_board_id(psmouse))
412 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 if (synaptics_capability(psmouse))
414 return -1;
Tero Saarniec20a022009-06-10 23:27:24 -0700415 if (synaptics_resolution(psmouse))
416 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Daniel Martin8b04bab2015-03-08 22:27:37 -0700418 synaptics_apply_quirks(psmouse);
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 return 0;
421}
422
Daniel Drake7968a5d2011-11-08 00:00:35 -0800423static int synaptics_set_advanced_gesture_mode(struct psmouse *psmouse)
424{
425 static unsigned char param = 0xc8;
426 struct synaptics_data *priv = psmouse->private;
427
Benjamin Herrenschmidt899c6122012-04-20 22:34:49 -0700428 if (!(SYN_CAP_ADV_GESTURE(priv->ext_cap_0c) ||
429 SYN_CAP_IMAGE_SENSOR(priv->ext_cap_0c)))
Daniel Drake7968a5d2011-11-08 00:00:35 -0800430 return 0;
431
432 if (psmouse_sliced_command(psmouse, SYN_QUE_MODEL))
433 return -1;
434
435 if (ps2_command(&psmouse->ps2dev, &param, PSMOUSE_CMD_SETRATE))
436 return -1;
437
438 /* Advanced gesture mode also sends multi finger data */
439 priv->capabilities |= BIT(1);
440
441 return 0;
442}
443
444static int synaptics_set_mode(struct psmouse *psmouse)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
446 struct synaptics_data *priv = psmouse->private;
447
Daniel Drake7968a5d2011-11-08 00:00:35 -0800448 priv->mode = 0;
449 if (priv->absolute_mode)
450 priv->mode |= SYN_BIT_ABSOLUTE_MODE;
451 if (priv->disable_gesture)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 priv->mode |= SYN_BIT_DISABLE_GESTURE;
Daniel Drake7968a5d2011-11-08 00:00:35 -0800453 if (psmouse->rate >= 80)
454 priv->mode |= SYN_BIT_HIGH_RATE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 if (SYN_CAP_EXTENDED(priv->capabilities))
456 priv->mode |= SYN_BIT_W_MODE;
457
458 if (synaptics_mode_cmd(psmouse, priv->mode))
459 return -1;
460
Daniel Drake7968a5d2011-11-08 00:00:35 -0800461 if (priv->absolute_mode &&
462 synaptics_set_advanced_gesture_mode(psmouse)) {
463 psmouse_err(psmouse, "Advanced gesture mode init failed.\n");
464 return -1;
465 }
466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 return 0;
468}
469
470static void synaptics_set_rate(struct psmouse *psmouse, unsigned int rate)
471{
472 struct synaptics_data *priv = psmouse->private;
473
474 if (rate >= 80) {
475 priv->mode |= SYN_BIT_HIGH_RATE;
476 psmouse->rate = 80;
477 } else {
478 priv->mode &= ~SYN_BIT_HIGH_RATE;
479 psmouse->rate = 40;
480 }
481
482 synaptics_mode_cmd(psmouse, priv->mode);
483}
484
485/*****************************************************************************
486 * Synaptics pass-through PS/2 port support
487 ****************************************************************************/
488static int synaptics_pt_write(struct serio *serio, unsigned char c)
489{
490 struct psmouse *parent = serio_get_drvdata(serio->parent);
491 char rate_param = SYN_PS_CLIENT_CMD; /* indicates that we want pass-through port */
492
493 if (psmouse_sliced_command(parent, c))
494 return -1;
495 if (ps2_command(&parent->ps2dev, &rate_param, PSMOUSE_CMD_SETRATE))
496 return -1;
497 return 0;
498}
499
Dmitry Torokhova8b3c0f2010-10-04 21:46:10 -0700500static int synaptics_pt_start(struct serio *serio)
501{
502 struct psmouse *parent = serio_get_drvdata(serio->parent);
503 struct synaptics_data *priv = parent->private;
504
505 serio_pause_rx(parent->ps2dev.serio);
506 priv->pt_port = serio;
507 serio_continue_rx(parent->ps2dev.serio);
508
509 return 0;
510}
511
512static void synaptics_pt_stop(struct serio *serio)
513{
514 struct psmouse *parent = serio_get_drvdata(serio->parent);
515 struct synaptics_data *priv = parent->private;
516
517 serio_pause_rx(parent->ps2dev.serio);
518 priv->pt_port = NULL;
519 serio_continue_rx(parent->ps2dev.serio);
520}
521
522static int synaptics_is_pt_packet(unsigned char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
524 return (buf[0] & 0xFC) == 0x84 && (buf[3] & 0xCC) == 0xC4;
525}
526
527static void synaptics_pass_pt_packet(struct serio *ptport, unsigned char *packet)
528{
529 struct psmouse *child = serio_get_drvdata(ptport);
530
531 if (child && child->state == PSMOUSE_ACTIVATED) {
David Howells7d12e782006-10-05 14:55:46 +0100532 serio_interrupt(ptport, packet[1], 0);
533 serio_interrupt(ptport, packet[4], 0);
534 serio_interrupt(ptport, packet[5], 0);
Sergey Vlasov33fdfa92005-07-24 00:53:32 -0500535 if (child->pktsize == 4)
David Howells7d12e782006-10-05 14:55:46 +0100536 serio_interrupt(ptport, packet[2], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 } else
David Howells7d12e782006-10-05 14:55:46 +0100538 serio_interrupt(ptport, packet[1], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539}
540
541static void synaptics_pt_activate(struct psmouse *psmouse)
542{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 struct synaptics_data *priv = psmouse->private;
Dmitry Torokhova8b3c0f2010-10-04 21:46:10 -0700544 struct psmouse *child = serio_get_drvdata(priv->pt_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546 /* adjust the touchpad to child's choice of protocol */
547 if (child) {
Sergey Vlasov33fdfa92005-07-24 00:53:32 -0500548 if (child->pktsize == 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 priv->mode |= SYN_BIT_FOUR_BYTE_CLIENT;
550 else
551 priv->mode &= ~SYN_BIT_FOUR_BYTE_CLIENT;
552
553 if (synaptics_mode_cmd(psmouse, priv->mode))
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700554 psmouse_warn(psmouse,
555 "failed to switch guest protocol\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 }
557}
558
559static void synaptics_pt_create(struct psmouse *psmouse)
560{
561 struct serio *serio;
562
Eric Sesterhennb39787a2006-03-14 00:09:16 -0500563 serio = kzalloc(sizeof(struct serio), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 if (!serio) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700565 psmouse_err(psmouse,
566 "not enough memory for pass-through port\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 return;
568 }
569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 serio->id.type = SERIO_PS_PSTHRU;
571 strlcpy(serio->name, "Synaptics pass-through", sizeof(serio->name));
572 strlcpy(serio->phys, "synaptics-pt/serio0", sizeof(serio->name));
573 serio->write = synaptics_pt_write;
Dmitry Torokhova8b3c0f2010-10-04 21:46:10 -0700574 serio->start = synaptics_pt_start;
575 serio->stop = synaptics_pt_stop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 serio->parent = psmouse->ps2dev.serio;
577
578 psmouse->pt_activate = synaptics_pt_activate;
579
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700580 psmouse_info(psmouse, "serio: %s port at %s\n",
581 serio->name, psmouse->phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 serio_register_port(serio);
583}
584
585/*****************************************************************************
586 * Functions to interpret the absolute mode packets
587 ****************************************************************************/
588
Daniel Kurtza6ca40c2011-08-23 23:02:31 -0700589static void synaptics_mt_state_set(struct synaptics_mt_state *state, int count,
590 int sgm, int agm)
591{
592 state->count = count;
593 state->sgm = sgm;
594 state->agm = agm;
595}
596
Daniel Kurtz7afdb842011-08-23 23:00:33 -0700597static void synaptics_parse_agm(const unsigned char buf[],
Daniel Kurtza6ca40c2011-08-23 23:02:31 -0700598 struct synaptics_data *priv,
599 struct synaptics_hw_state *hw)
Daniel Kurtz7afdb842011-08-23 23:00:33 -0700600{
601 struct synaptics_hw_state *agm = &priv->agm;
Daniel Kurtza6ca40c2011-08-23 23:02:31 -0700602 int agm_packet_type;
Daniel Kurtz7afdb842011-08-23 23:00:33 -0700603
Daniel Kurtza6ca40c2011-08-23 23:02:31 -0700604 agm_packet_type = (buf[5] & 0x30) >> 4;
605 switch (agm_packet_type) {
606 case 1:
607 /* Gesture packet: (x, y, z) half resolution */
608 agm->w = hw->w;
609 agm->x = (((buf[4] & 0x0f) << 8) | buf[1]) << 1;
610 agm->y = (((buf[4] & 0xf0) << 4) | buf[2]) << 1;
611 agm->z = ((buf[3] & 0x30) | (buf[5] & 0x0f)) << 1;
612 break;
613
614 case 2:
615 /* AGM-CONTACT packet: (count, sgm, agm) */
616 synaptics_mt_state_set(&agm->mt_state, buf[1], buf[2], buf[4]);
617 break;
618
619 default:
620 break;
621 }
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700622
623 /* Record that at least one AGM has been received since last SGM */
624 priv->agm_pending = true;
Daniel Kurtz7afdb842011-08-23 23:00:33 -0700625}
626
Dmitry Torokhovaa97240992014-09-02 09:49:18 -0700627static bool is_forcepad;
628
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100629static int synaptics_parse_hw_state(const unsigned char buf[],
630 struct synaptics_data *priv,
631 struct synaptics_hw_state *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632{
633 memset(hw, 0, sizeof(struct synaptics_hw_state));
634
635 if (SYN_MODEL_NEWABS(priv->model_id)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 hw->w = (((buf[0] & 0x30) >> 2) |
637 ((buf[0] & 0x04) >> 1) |
638 ((buf[3] & 0x04) >> 2));
639
Dmitry Torokhov5715fc72014-08-30 13:51:06 -0700640 if ((SYN_CAP_ADV_GESTURE(priv->ext_cap_0c) ||
641 SYN_CAP_IMAGE_SENSOR(priv->ext_cap_0c)) &&
642 hw->w == 2) {
643 synaptics_parse_agm(buf, priv, hw);
644 return 1;
645 }
646
647 hw->x = (((buf[3] & 0x10) << 8) |
648 ((buf[1] & 0x0f) << 8) |
649 buf[4]);
650 hw->y = (((buf[3] & 0x20) << 7) |
651 ((buf[1] & 0xf0) << 4) |
652 buf[5]);
653 hw->z = buf[2];
654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 hw->left = (buf[0] & 0x01) ? 1 : 0;
656 hw->right = (buf[0] & 0x02) ? 1 : 0;
657
Dmitry Torokhovaa97240992014-09-02 09:49:18 -0700658 if (is_forcepad) {
Dmitry Torokhov5715fc72014-08-30 13:51:06 -0700659 /*
660 * ForcePads, like Clickpads, use middle button
661 * bits to report primary button clicks.
662 * Unfortunately they report primary button not
663 * only when user presses on the pad above certain
664 * threshold, but also when there are more than one
665 * finger on the touchpad, which interferes with
666 * out multi-finger gestures.
667 */
668 if (hw->z == 0) {
669 /* No contacts */
670 priv->press = priv->report_press = false;
671 } else if (hw->w >= 4 && ((buf[0] ^ buf[3]) & 0x01)) {
672 /*
673 * Single-finger touch with pressure above
674 * the threshold. If pressure stays long
675 * enough, we'll start reporting primary
676 * button. We rely on the device continuing
677 * sending data even if finger does not
678 * move.
679 */
680 if (!priv->press) {
681 priv->press_start = jiffies;
682 priv->press = true;
683 } else if (time_after(jiffies,
684 priv->press_start +
685 msecs_to_jiffies(50))) {
686 priv->report_press = true;
687 }
688 } else {
689 priv->press = false;
690 }
691
692 hw->left = priv->report_press;
693
694 } else if (SYN_CAP_CLICKPAD(priv->ext_cap_0c)) {
Takashi Iwai5f57d672010-04-19 10:37:21 -0700695 /*
696 * Clickpad's button is transmitted as middle button,
697 * however, since it is primary button, we will report
698 * it as BTN_LEFT.
699 */
700 hw->left = ((buf[0] ^ buf[3]) & 0x01) ? 1 : 0;
701
702 } else if (SYN_CAP_MIDDLE_BUTTON(priv->capabilities)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 hw->middle = ((buf[0] ^ buf[3]) & 0x01) ? 1 : 0;
704 if (hw->w == 2)
705 hw->scroll = (signed char)(buf[1]);
706 }
707
708 if (SYN_CAP_FOUR_BUTTON(priv->capabilities)) {
709 hw->up = ((buf[0] ^ buf[3]) & 0x01) ? 1 : 0;
710 hw->down = ((buf[0] ^ buf[3]) & 0x02) ? 1 : 0;
711 }
712
713 if (SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap) &&
714 ((buf[0] ^ buf[3]) & 0x02)) {
715 switch (SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap) & ~0x01) {
716 default:
717 /*
718 * if nExtBtn is greater than 8 it should be
719 * considered invalid and treated as 0
720 */
721 break;
722 case 8:
723 hw->ext_buttons |= ((buf[5] & 0x08)) ? 0x80 : 0;
724 hw->ext_buttons |= ((buf[4] & 0x08)) ? 0x40 : 0;
725 case 6:
726 hw->ext_buttons |= ((buf[5] & 0x04)) ? 0x20 : 0;
727 hw->ext_buttons |= ((buf[4] & 0x04)) ? 0x10 : 0;
728 case 4:
729 hw->ext_buttons |= ((buf[5] & 0x02)) ? 0x08 : 0;
730 hw->ext_buttons |= ((buf[4] & 0x02)) ? 0x04 : 0;
731 case 2:
732 hw->ext_buttons |= ((buf[5] & 0x01)) ? 0x02 : 0;
733 hw->ext_buttons |= ((buf[4] & 0x01)) ? 0x01 : 0;
734 }
735 }
736 } else {
737 hw->x = (((buf[1] & 0x1f) << 8) | buf[2]);
738 hw->y = (((buf[4] & 0x1f) << 8) | buf[5]);
739
740 hw->z = (((buf[0] & 0x30) << 2) | (buf[3] & 0x3F));
741 hw->w = (((buf[1] & 0x80) >> 4) | ((buf[0] & 0x04) >> 1));
742
743 hw->left = (buf[0] & 0x01) ? 1 : 0;
744 hw->right = (buf[0] & 0x02) ? 1 : 0;
745 }
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100746
Seth Forshee824efd32012-09-28 10:29:21 -0700747 /*
748 * Convert wrap-around values to negative. (X|Y)_MAX_POSITIVE
749 * is used by some firmware to indicate a finger at the edge of
750 * the touchpad whose precise position cannot be determined, so
751 * convert these values to the maximum axis value.
752 */
Seth Forsheec03945062012-07-24 23:54:11 -0700753 if (hw->x > X_MAX_POSITIVE)
754 hw->x -= 1 << ABS_POS_BITS;
Seth Forshee824efd32012-09-28 10:29:21 -0700755 else if (hw->x == X_MAX_POSITIVE)
756 hw->x = XMAX;
757
Seth Forsheec03945062012-07-24 23:54:11 -0700758 if (hw->y > Y_MAX_POSITIVE)
759 hw->y -= 1 << ABS_POS_BITS;
Seth Forshee824efd32012-09-28 10:29:21 -0700760 else if (hw->y == Y_MAX_POSITIVE)
761 hw->y = YMAX;
Seth Forsheec03945062012-07-24 23:54:11 -0700762
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100763 return 0;
764}
765
Daniel Kurtzbea9f0f2011-07-06 22:42:52 -0700766static void synaptics_report_semi_mt_slot(struct input_dev *dev, int slot,
767 bool active, int x, int y)
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100768{
769 input_mt_slot(dev, slot);
770 input_mt_report_slot_state(dev, MT_TOOL_FINGER, active);
771 if (active) {
772 input_report_abs(dev, ABS_MT_POSITION_X, x);
Daniel Kurtz6de58dd2011-08-23 23:00:24 -0700773 input_report_abs(dev, ABS_MT_POSITION_Y, synaptics_invert_y(y));
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100774 }
775}
776
777static void synaptics_report_semi_mt_data(struct input_dev *dev,
778 const struct synaptics_hw_state *a,
779 const struct synaptics_hw_state *b,
780 int num_fingers)
781{
782 if (num_fingers >= 2) {
Daniel Kurtzbea9f0f2011-07-06 22:42:52 -0700783 synaptics_report_semi_mt_slot(dev, 0, true, min(a->x, b->x),
784 min(a->y, b->y));
785 synaptics_report_semi_mt_slot(dev, 1, true, max(a->x, b->x),
786 max(a->y, b->y));
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100787 } else if (num_fingers == 1) {
Daniel Kurtzbea9f0f2011-07-06 22:42:52 -0700788 synaptics_report_semi_mt_slot(dev, 0, true, a->x, a->y);
789 synaptics_report_semi_mt_slot(dev, 1, false, 0, 0);
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100790 } else {
Daniel Kurtzbea9f0f2011-07-06 22:42:52 -0700791 synaptics_report_semi_mt_slot(dev, 0, false, 0, 0);
792 synaptics_report_semi_mt_slot(dev, 1, false, 0, 0);
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794}
795
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700796static void synaptics_report_buttons(struct psmouse *psmouse,
797 const struct synaptics_hw_state *hw)
798{
799 struct input_dev *dev = psmouse->dev;
800 struct synaptics_data *priv = psmouse->private;
801 int i;
802
803 input_report_key(dev, BTN_LEFT, hw->left);
804 input_report_key(dev, BTN_RIGHT, hw->right);
805
806 if (SYN_CAP_MIDDLE_BUTTON(priv->capabilities))
807 input_report_key(dev, BTN_MIDDLE, hw->middle);
808
809 if (SYN_CAP_FOUR_BUTTON(priv->capabilities)) {
810 input_report_key(dev, BTN_FORWARD, hw->up);
811 input_report_key(dev, BTN_BACK, hw->down);
812 }
813
814 for (i = 0; i < SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap); i++)
815 input_report_key(dev, BTN_0 + i, hw->ext_buttons & (1 << i));
816}
817
818static void synaptics_report_slot(struct input_dev *dev, int slot,
819 const struct synaptics_hw_state *hw)
820{
821 input_mt_slot(dev, slot);
822 input_mt_report_slot_state(dev, MT_TOOL_FINGER, (hw != NULL));
823 if (!hw)
824 return;
825
826 input_report_abs(dev, ABS_MT_POSITION_X, hw->x);
827 input_report_abs(dev, ABS_MT_POSITION_Y, synaptics_invert_y(hw->y));
828 input_report_abs(dev, ABS_MT_PRESSURE, hw->z);
829}
830
831static void synaptics_report_mt_data(struct psmouse *psmouse,
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700832 struct synaptics_mt_state *mt_state,
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700833 const struct synaptics_hw_state *sgm)
834{
835 struct input_dev *dev = psmouse->dev;
836 struct synaptics_data *priv = psmouse->private;
837 struct synaptics_hw_state *agm = &priv->agm;
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700838 struct synaptics_mt_state *old = &priv->mt_state;
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700839
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700840 switch (mt_state->count) {
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700841 case 0:
842 synaptics_report_slot(dev, 0, NULL);
843 synaptics_report_slot(dev, 1, NULL);
844 break;
845 case 1:
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700846 if (mt_state->sgm == -1) {
847 synaptics_report_slot(dev, 0, NULL);
848 synaptics_report_slot(dev, 1, NULL);
849 } else if (mt_state->sgm == 0) {
850 synaptics_report_slot(dev, 0, sgm);
851 synaptics_report_slot(dev, 1, NULL);
852 } else {
853 synaptics_report_slot(dev, 0, NULL);
854 synaptics_report_slot(dev, 1, sgm);
855 }
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700856 break;
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700857 default:
858 /*
859 * If the finger slot contained in SGM is valid, and either
Daniel Kurtz48064bd2013-02-13 13:53:07 -0800860 * hasn't changed, or is new, or the old SGM has now moved to
861 * AGM, then report SGM in MTB slot 0.
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700862 * Otherwise, empty MTB slot 0.
863 */
864 if (mt_state->sgm != -1 &&
Daniel Kurtz48064bd2013-02-13 13:53:07 -0800865 (mt_state->sgm == old->sgm ||
866 old->sgm == -1 || mt_state->agm == old->sgm))
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700867 synaptics_report_slot(dev, 0, sgm);
868 else
869 synaptics_report_slot(dev, 0, NULL);
870
871 /*
872 * If the finger slot contained in AGM is valid, and either
873 * hasn't changed, or is new, then report AGM in MTB slot 1.
874 * Otherwise, empty MTB slot 1.
Daniel Kurtz48064bd2013-02-13 13:53:07 -0800875 *
876 * However, in the case where the AGM is new, make sure that
877 * that it is either the same as the old SGM, or there was no
878 * SGM.
879 *
880 * Otherwise, if the SGM was just 1, and the new AGM is 2, then
881 * the new AGM will keep the old SGM's tracking ID, which can
882 * cause apparent drumroll. This happens if in the following
883 * valid finger sequence:
884 *
885 * Action SGM AGM (MTB slot:Contact)
886 * 1. Touch contact 0 (0:0)
887 * 2. Touch contact 1 (0:0, 1:1)
888 * 3. Lift contact 0 (1:1)
889 * 4. Touch contacts 2,3 (0:2, 1:3)
890 *
891 * In step 4, contact 3, in AGM must not be given the same
892 * tracking ID as contact 1 had in step 3. To avoid this,
893 * the first agm with contact 3 is dropped and slot 1 is
894 * invalidated (tracking ID = -1).
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700895 */
896 if (mt_state->agm != -1 &&
Daniel Kurtz48064bd2013-02-13 13:53:07 -0800897 (mt_state->agm == old->agm ||
898 (old->agm == -1 &&
899 (old->sgm == -1 || mt_state->agm == old->sgm))))
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700900 synaptics_report_slot(dev, 1, agm);
901 else
902 synaptics_report_slot(dev, 1, NULL);
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700903 break;
904 }
905
906 /* Don't use active slot count to generate BTN_TOOL events. */
907 input_mt_report_pointer_emulation(dev, false);
908
909 /* Send the number of fingers reported by touchpad itself. */
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700910 input_mt_report_finger_count(dev, mt_state->count);
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700911
912 synaptics_report_buttons(psmouse, sgm);
913
914 input_sync(dev);
915}
916
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700917/* Handle case where mt_state->count = 0 */
918static void synaptics_image_sensor_0f(struct synaptics_data *priv,
919 struct synaptics_mt_state *mt_state)
920{
921 synaptics_mt_state_set(mt_state, 0, -1, -1);
922 priv->mt_state_lost = false;
923}
924
925/* Handle case where mt_state->count = 1 */
926static void synaptics_image_sensor_1f(struct synaptics_data *priv,
927 struct synaptics_mt_state *mt_state)
928{
929 struct synaptics_hw_state *agm = &priv->agm;
930 struct synaptics_mt_state *old = &priv->mt_state;
931
932 /*
933 * If the last AGM was (0,0,0), and there is only one finger left,
934 * then we absolutely know that SGM contains slot 0, and all other
935 * fingers have been removed.
936 */
937 if (priv->agm_pending && agm->z == 0) {
938 synaptics_mt_state_set(mt_state, 1, 0, -1);
939 priv->mt_state_lost = false;
940 return;
941 }
942
943 switch (old->count) {
944 case 0:
945 synaptics_mt_state_set(mt_state, 1, 0, -1);
946 break;
947 case 1:
948 /*
949 * If mt_state_lost, then the previous transition was 3->1,
950 * and SGM now contains either slot 0 or 1, but we don't know
951 * which. So, we just assume that the SGM now contains slot 1.
952 *
953 * If pending AGM and either:
954 * (a) the previous SGM slot contains slot 0, or
955 * (b) there was no SGM slot
956 * then, the SGM now contains slot 1
957 *
958 * Case (a) happens with very rapid "drum roll" gestures, where
959 * slot 0 finger is lifted and a new slot 1 finger touches
960 * within one reporting interval.
961 *
962 * Case (b) happens if initially two or more fingers tap
963 * briefly, and all but one lift before the end of the first
964 * reporting interval.
965 *
966 * (In both these cases, slot 0 will becomes empty, so SGM
967 * contains slot 1 with the new finger)
968 *
969 * Else, if there was no previous SGM, it now contains slot 0.
970 *
971 * Otherwise, SGM still contains the same slot.
972 */
973 if (priv->mt_state_lost ||
974 (priv->agm_pending && old->sgm <= 0))
975 synaptics_mt_state_set(mt_state, 1, 1, -1);
976 else if (old->sgm == -1)
977 synaptics_mt_state_set(mt_state, 1, 0, -1);
978 break;
979 case 2:
980 /*
981 * If mt_state_lost, we don't know which finger SGM contains.
982 *
983 * So, report 1 finger, but with both slots empty.
984 * We will use slot 1 on subsequent 1->1
985 */
986 if (priv->mt_state_lost) {
987 synaptics_mt_state_set(mt_state, 1, -1, -1);
988 break;
989 }
990 /*
991 * Since the last AGM was NOT (0,0,0), it was the finger in
992 * slot 0 that has been removed.
993 * So, SGM now contains previous AGM's slot, and AGM is now
994 * empty.
995 */
996 synaptics_mt_state_set(mt_state, 1, old->agm, -1);
997 break;
998 case 3:
999 /*
1000 * Since last AGM was not (0,0,0), we don't know which finger
1001 * is left.
1002 *
1003 * So, report 1 finger, but with both slots empty.
1004 * We will use slot 1 on subsequent 1->1
1005 */
1006 synaptics_mt_state_set(mt_state, 1, -1, -1);
1007 priv->mt_state_lost = true;
1008 break;
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -07001009 case 4:
1010 case 5:
1011 /* mt_state was updated by AGM-CONTACT packet */
1012 break;
Daniel Kurtz4dc772d2011-08-23 23:02:40 -07001013 }
1014}
1015
1016/* Handle case where mt_state->count = 2 */
1017static void synaptics_image_sensor_2f(struct synaptics_data *priv,
1018 struct synaptics_mt_state *mt_state)
1019{
1020 struct synaptics_mt_state *old = &priv->mt_state;
1021
1022 switch (old->count) {
1023 case 0:
1024 synaptics_mt_state_set(mt_state, 2, 0, 1);
1025 break;
1026 case 1:
1027 /*
1028 * If previous SGM contained slot 1 or higher, SGM now contains
1029 * slot 0 (the newly touching finger) and AGM contains SGM's
1030 * previous slot.
1031 *
1032 * Otherwise, SGM still contains slot 0 and AGM now contains
1033 * slot 1.
1034 */
1035 if (old->sgm >= 1)
1036 synaptics_mt_state_set(mt_state, 2, 0, old->sgm);
1037 else
1038 synaptics_mt_state_set(mt_state, 2, 0, 1);
1039 break;
1040 case 2:
1041 /*
1042 * If mt_state_lost, SGM now contains either finger 1 or 2, but
1043 * we don't know which.
1044 * So, we just assume that the SGM contains slot 0 and AGM 1.
1045 */
1046 if (priv->mt_state_lost)
1047 synaptics_mt_state_set(mt_state, 2, 0, 1);
1048 /*
1049 * Otherwise, use the same mt_state, since it either hasn't
1050 * changed, or was updated by a recently received AGM-CONTACT
1051 * packet.
1052 */
1053 break;
1054 case 3:
1055 /*
1056 * 3->2 transitions have two unsolvable problems:
1057 * 1) no indication is given which finger was removed
1058 * 2) no way to tell if agm packet was for finger 3
1059 * before 3->2, or finger 2 after 3->2.
1060 *
1061 * So, report 2 fingers, but empty all slots.
1062 * We will guess slots [0,1] on subsequent 2->2.
1063 */
1064 synaptics_mt_state_set(mt_state, 2, -1, -1);
1065 priv->mt_state_lost = true;
1066 break;
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -07001067 case 4:
1068 case 5:
1069 /* mt_state was updated by AGM-CONTACT packet */
1070 break;
Daniel Kurtz4dc772d2011-08-23 23:02:40 -07001071 }
1072}
1073
1074/* Handle case where mt_state->count = 3 */
1075static void synaptics_image_sensor_3f(struct synaptics_data *priv,
1076 struct synaptics_mt_state *mt_state)
1077{
1078 struct synaptics_mt_state *old = &priv->mt_state;
1079
1080 switch (old->count) {
1081 case 0:
1082 synaptics_mt_state_set(mt_state, 3, 0, 2);
1083 break;
1084 case 1:
1085 /*
1086 * If previous SGM contained slot 2 or higher, SGM now contains
1087 * slot 0 (one of the newly touching fingers) and AGM contains
1088 * SGM's previous slot.
1089 *
1090 * Otherwise, SGM now contains slot 0 and AGM contains slot 2.
1091 */
1092 if (old->sgm >= 2)
1093 synaptics_mt_state_set(mt_state, 3, 0, old->sgm);
1094 else
1095 synaptics_mt_state_set(mt_state, 3, 0, 2);
1096 break;
1097 case 2:
1098 /*
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -07001099 * If the AGM previously contained slot 3 or higher, then the
1100 * newly touching finger is in the lowest available slot.
1101 *
1102 * If SGM was previously 1 or higher, then the new SGM is
1103 * now slot 0 (with a new finger), otherwise, the new finger
1104 * is now in a hidden slot between 0 and AGM's slot.
1105 *
1106 * In all such cases, the SGM now contains slot 0, and the AGM
1107 * continues to contain the same slot as before.
1108 */
1109 if (old->agm >= 3) {
1110 synaptics_mt_state_set(mt_state, 3, 0, old->agm);
1111 break;
1112 }
1113
1114 /*
Daniel Kurtz4dc772d2011-08-23 23:02:40 -07001115 * After some 3->1 and all 3->2 transitions, we lose track
1116 * of which slot is reported by SGM and AGM.
1117 *
1118 * For 2->3 in this state, report 3 fingers, but empty all
1119 * slots, and we will guess (0,2) on a subsequent 0->3.
1120 *
1121 * To userspace, the resulting transition will look like:
1122 * 2:[0,1] -> 3:[-1,-1] -> 3:[0,2]
1123 */
1124 if (priv->mt_state_lost) {
1125 synaptics_mt_state_set(mt_state, 3, -1, -1);
1126 break;
1127 }
1128
1129 /*
1130 * If the (SGM,AGM) really previously contained slots (0, 1),
1131 * then we cannot know what slot was just reported by the AGM,
1132 * because the 2->3 transition can occur either before or after
1133 * the AGM packet. Thus, this most recent AGM could contain
1134 * either the same old slot 1 or the new slot 2.
1135 * Subsequent AGMs will be reporting slot 2.
1136 *
1137 * To userspace, the resulting transition will look like:
1138 * 2:[0,1] -> 3:[0,-1] -> 3:[0,2]
1139 */
1140 synaptics_mt_state_set(mt_state, 3, 0, -1);
1141 break;
1142 case 3:
1143 /*
1144 * If, for whatever reason, the previous agm was invalid,
1145 * Assume SGM now contains slot 0, AGM now contains slot 2.
1146 */
1147 if (old->agm <= 2)
1148 synaptics_mt_state_set(mt_state, 3, 0, 2);
1149 /*
1150 * mt_state either hasn't changed, or was updated by a recently
1151 * received AGM-CONTACT packet.
1152 */
1153 break;
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -07001154
1155 case 4:
1156 case 5:
1157 /* mt_state was updated by AGM-CONTACT packet */
1158 break;
Daniel Kurtz4dc772d2011-08-23 23:02:40 -07001159 }
1160}
1161
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -07001162/* Handle case where mt_state->count = 4, or = 5 */
1163static void synaptics_image_sensor_45f(struct synaptics_data *priv,
1164 struct synaptics_mt_state *mt_state)
1165{
1166 /* mt_state was updated correctly by AGM-CONTACT packet */
1167 priv->mt_state_lost = false;
1168}
1169
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001170static void synaptics_image_sensor_process(struct psmouse *psmouse,
1171 struct synaptics_hw_state *sgm)
1172{
Daniel Kurtz4dc772d2011-08-23 23:02:40 -07001173 struct synaptics_data *priv = psmouse->private;
1174 struct synaptics_hw_state *agm = &priv->agm;
1175 struct synaptics_mt_state mt_state;
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001176
Daniel Kurtz4dc772d2011-08-23 23:02:40 -07001177 /* Initialize using current mt_state (as updated by last agm) */
1178 mt_state = agm->mt_state;
1179
1180 /*
1181 * Update mt_state using the new finger count and current mt_state.
1182 */
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001183 if (sgm->z == 0)
Daniel Kurtz4dc772d2011-08-23 23:02:40 -07001184 synaptics_image_sensor_0f(priv, &mt_state);
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001185 else if (sgm->w >= 4)
Daniel Kurtz4dc772d2011-08-23 23:02:40 -07001186 synaptics_image_sensor_1f(priv, &mt_state);
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001187 else if (sgm->w == 0)
Daniel Kurtz4dc772d2011-08-23 23:02:40 -07001188 synaptics_image_sensor_2f(priv, &mt_state);
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -07001189 else if (sgm->w == 1 && mt_state.count <= 3)
Daniel Kurtz4dc772d2011-08-23 23:02:40 -07001190 synaptics_image_sensor_3f(priv, &mt_state);
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -07001191 else
1192 synaptics_image_sensor_45f(priv, &mt_state);
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001193
1194 /* Send resulting input events to user space */
Daniel Kurtz4dc772d2011-08-23 23:02:40 -07001195 synaptics_report_mt_data(psmouse, &mt_state, sgm);
1196
1197 /* Store updated mt_state */
1198 priv->mt_state = agm->mt_state = mt_state;
1199 priv->agm_pending = false;
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001200}
1201
Henrik Rydberge08d9af2014-07-14 10:26:56 -07001202static void synaptics_profile_sensor_process(struct psmouse *psmouse,
1203 struct synaptics_hw_state *sgm,
1204 int num_fingers)
1205{
1206 struct input_dev *dev = psmouse->dev;
1207 struct synaptics_data *priv = psmouse->private;
1208 struct synaptics_hw_state *hw[2] = { sgm, &priv->agm };
1209 struct input_mt_pos pos[2];
1210 int slot[2], nsemi, i;
1211
1212 nsemi = clamp_val(num_fingers, 0, 2);
1213
1214 for (i = 0; i < nsemi; i++) {
1215 pos[i].x = hw[i]->x;
1216 pos[i].y = synaptics_invert_y(hw[i]->y);
1217 }
1218
1219 input_mt_assign_slots(dev, slot, pos, nsemi);
1220
1221 for (i = 0; i < nsemi; i++) {
1222 input_mt_slot(dev, slot[i]);
1223 input_mt_report_slot_state(dev, MT_TOOL_FINGER, true);
1224 input_report_abs(dev, ABS_MT_POSITION_X, pos[i].x);
1225 input_report_abs(dev, ABS_MT_POSITION_Y, pos[i].y);
1226 input_report_abs(dev, ABS_MT_PRESSURE, hw[i]->z);
1227 }
1228
1229 input_mt_drop_unused(dev);
1230 input_mt_report_pointer_emulation(dev, false);
1231 input_mt_report_finger_count(dev, num_fingers);
1232
1233 synaptics_report_buttons(psmouse, sgm);
1234
1235 input_sync(dev);
1236}
1237
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238/*
1239 * called for each full received packet from the touchpad
1240 */
1241static void synaptics_process_packet(struct psmouse *psmouse)
1242{
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001243 struct input_dev *dev = psmouse->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 struct synaptics_data *priv = psmouse->private;
1245 struct synaptics_hw_state hw;
1246 int num_fingers;
1247 int finger_width;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
Henrik Rydbergfec6e522010-12-21 18:11:25 +01001249 if (synaptics_parse_hw_state(psmouse->packet, priv, &hw))
1250 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001252 if (SYN_CAP_IMAGE_SENSOR(priv->ext_cap_0c)) {
1253 synaptics_image_sensor_process(psmouse, &hw);
1254 return;
1255 }
1256
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 if (hw.scroll) {
1258 priv->scroll += hw.scroll;
1259
1260 while (priv->scroll >= 4) {
1261 input_report_key(dev, BTN_BACK, !hw.down);
1262 input_sync(dev);
1263 input_report_key(dev, BTN_BACK, hw.down);
1264 input_sync(dev);
1265 priv->scroll -= 4;
1266 }
1267 while (priv->scroll <= -4) {
1268 input_report_key(dev, BTN_FORWARD, !hw.up);
1269 input_sync(dev);
1270 input_report_key(dev, BTN_FORWARD, hw.up);
1271 input_sync(dev);
1272 priv->scroll += 4;
1273 }
1274 return;
1275 }
1276
Henrik Rydberg4f56ce92010-12-18 15:42:30 +01001277 if (hw.z > 0 && hw.x > 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 num_fingers = 1;
1279 finger_width = 5;
1280 if (SYN_CAP_EXTENDED(priv->capabilities)) {
1281 switch (hw.w) {
1282 case 0 ... 1:
1283 if (SYN_CAP_MULTIFINGER(priv->capabilities))
1284 num_fingers = hw.w + 2;
1285 break;
1286 case 2:
1287 if (SYN_MODEL_PEN(priv->model_id))
1288 ; /* Nothing, treat a pen as a single finger */
1289 break;
1290 case 4 ... 15:
1291 if (SYN_CAP_PALMDETECT(priv->capabilities))
1292 finger_width = hw.w;
1293 break;
1294 }
1295 }
1296 } else {
1297 num_fingers = 0;
1298 finger_width = 0;
1299 }
1300
Henrik Rydberge08d9af2014-07-14 10:26:56 -07001301 if (cr48_profile_sensor) {
1302 synaptics_profile_sensor_process(psmouse, &hw, num_fingers);
1303 return;
1304 }
1305
Henrik Rydbergfec6e522010-12-21 18:11:25 +01001306 if (SYN_CAP_ADV_GESTURE(priv->ext_cap_0c))
Daniel Kurtz7afdb842011-08-23 23:00:33 -07001307 synaptics_report_semi_mt_data(dev, &hw, &priv->agm,
1308 num_fingers);
Henrik Rydbergfec6e522010-12-21 18:11:25 +01001309
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 /* Post events
1311 * BTN_TOUCH has to be first as mousedev relies on it when doing
1312 * absolute -> relative conversion
1313 */
1314 if (hw.z > 30) input_report_key(dev, BTN_TOUCH, 1);
1315 if (hw.z < 25) input_report_key(dev, BTN_TOUCH, 0);
1316
Henrik Rydberg4f56ce92010-12-18 15:42:30 +01001317 if (num_fingers > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 input_report_abs(dev, ABS_X, hw.x);
Daniel Kurtz6de58dd2011-08-23 23:00:24 -07001319 input_report_abs(dev, ABS_Y, synaptics_invert_y(hw.y));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 }
1321 input_report_abs(dev, ABS_PRESSURE, hw.z);
1322
Chris Bagwell2a8e7712010-07-19 09:06:15 -07001323 if (SYN_CAP_PALMDETECT(priv->capabilities))
1324 input_report_abs(dev, ABS_TOOL_WIDTH, finger_width);
1325
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 input_report_key(dev, BTN_TOOL_FINGER, num_fingers == 1);
Peter Hutterere42b6642008-11-20 15:24:42 -05001327 if (SYN_CAP_MULTIFINGER(priv->capabilities)) {
1328 input_report_key(dev, BTN_TOOL_DOUBLETAP, num_fingers == 2);
1329 input_report_key(dev, BTN_TOOL_TRIPLETAP, num_fingers == 3);
1330 }
1331
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001332 synaptics_report_buttons(psmouse, &hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
1334 input_sync(dev);
1335}
1336
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001337static int synaptics_validate_byte(struct psmouse *psmouse,
1338 int idx, unsigned char pkt_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339{
Helge Dellere38de672006-09-10 21:54:39 -04001340 static const unsigned char newabs_mask[] = { 0xC8, 0x00, 0x00, 0xC8, 0x00 };
1341 static const unsigned char newabs_rel_mask[] = { 0xC0, 0x00, 0x00, 0xC0, 0x00 };
1342 static const unsigned char newabs_rslt[] = { 0x80, 0x00, 0x00, 0xC0, 0x00 };
1343 static const unsigned char oldabs_mask[] = { 0xC0, 0x60, 0x00, 0xC0, 0x60 };
1344 static const unsigned char oldabs_rslt[] = { 0xC0, 0x00, 0x00, 0x80, 0x00 };
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001345 const char *packet = psmouse->packet;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
1347 if (idx < 0 || idx > 4)
1348 return 0;
1349
1350 switch (pkt_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
Dmitry Torokhova62f0d22010-05-19 10:39:17 -07001352 case SYN_NEWABS:
1353 case SYN_NEWABS_RELAXED:
1354 return (packet[idx] & newabs_rel_mask[idx]) == newabs_rslt[idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
Dmitry Torokhova62f0d22010-05-19 10:39:17 -07001356 case SYN_NEWABS_STRICT:
1357 return (packet[idx] & newabs_mask[idx]) == newabs_rslt[idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
Dmitry Torokhova62f0d22010-05-19 10:39:17 -07001359 case SYN_OLDABS:
1360 return (packet[idx] & oldabs_mask[idx]) == oldabs_rslt[idx];
1361
1362 default:
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001363 psmouse_err(psmouse, "unknown packet type %d\n", pkt_type);
Dmitry Torokhova62f0d22010-05-19 10:39:17 -07001364 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 }
1366}
1367
1368static unsigned char synaptics_detect_pkt_type(struct psmouse *psmouse)
1369{
1370 int i;
1371
1372 for (i = 0; i < 5; i++)
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001373 if (!synaptics_validate_byte(psmouse, i, SYN_NEWABS_STRICT)) {
1374 psmouse_info(psmouse, "using relaxed packet validation\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 return SYN_NEWABS_RELAXED;
1376 }
1377
1378 return SYN_NEWABS_STRICT;
1379}
1380
David Howells7d12e782006-10-05 14:55:46 +01001381static psmouse_ret_t synaptics_process_byte(struct psmouse *psmouse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 struct synaptics_data *priv = psmouse->private;
1384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 if (psmouse->pktcnt >= 6) { /* Full packet received */
1386 if (unlikely(priv->pkt_type == SYN_NEWABS))
1387 priv->pkt_type = synaptics_detect_pkt_type(psmouse);
1388
Dmitry Torokhova8b3c0f2010-10-04 21:46:10 -07001389 if (SYN_CAP_PASS_THROUGH(priv->capabilities) &&
1390 synaptics_is_pt_packet(psmouse->packet)) {
1391 if (priv->pt_port)
1392 synaptics_pass_pt_packet(priv->pt_port, psmouse->packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 } else
1394 synaptics_process_packet(psmouse);
1395
1396 return PSMOUSE_FULL_PACKET;
1397 }
1398
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001399 return synaptics_validate_byte(psmouse, psmouse->pktcnt - 1, priv->pkt_type) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 PSMOUSE_GOOD_DATA : PSMOUSE_BAD_DATA;
1401}
1402
1403/*****************************************************************************
1404 * Driver initialization/cleanup functions
1405 ****************************************************************************/
Daniel Kurtz85615472011-08-23 23:00:41 -07001406static void set_abs_position_params(struct input_dev *dev,
1407 struct synaptics_data *priv, int x_code,
1408 int y_code)
1409{
1410 int x_min = priv->x_min ?: XMIN_NOMINAL;
1411 int x_max = priv->x_max ?: XMAX_NOMINAL;
1412 int y_min = priv->y_min ?: YMIN_NOMINAL;
1413 int y_max = priv->y_max ?: YMAX_NOMINAL;
1414 int fuzz = SYN_CAP_REDUCED_FILTERING(priv->ext_cap_0c) ?
1415 SYN_REDUCED_FILTER_FUZZ : 0;
1416
1417 input_set_abs_params(dev, x_code, x_min, x_max, fuzz, 0);
1418 input_set_abs_params(dev, y_code, y_min, y_max, fuzz, 0);
1419 input_abs_set_res(dev, x_code, priv->x_res);
1420 input_abs_set_res(dev, y_code, priv->y_res);
1421}
1422
Hans de Goede43e19882014-04-19 22:26:41 -07001423static void set_input_params(struct psmouse *psmouse,
1424 struct synaptics_data *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425{
Hans de Goede43e19882014-04-19 22:26:41 -07001426 struct input_dev *dev = psmouse->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 int i;
1428
Daniel Drake7968a5d2011-11-08 00:00:35 -08001429 /* Things that apply to both modes */
Henrik Rydbergc14890a2010-12-16 09:52:23 +01001430 __set_bit(INPUT_PROP_POINTER, dev->propbit);
Daniel Drake7968a5d2011-11-08 00:00:35 -08001431 __set_bit(EV_KEY, dev->evbit);
1432 __set_bit(BTN_LEFT, dev->keybit);
1433 __set_bit(BTN_RIGHT, dev->keybit);
Henrik Rydbergc14890a2010-12-16 09:52:23 +01001434
Daniel Drake7968a5d2011-11-08 00:00:35 -08001435 if (SYN_CAP_MIDDLE_BUTTON(priv->capabilities))
1436 __set_bit(BTN_MIDDLE, dev->keybit);
1437
1438 if (!priv->absolute_mode) {
1439 /* Relative mode */
1440 __set_bit(EV_REL, dev->evbit);
1441 __set_bit(REL_X, dev->relbit);
1442 __set_bit(REL_Y, dev->relbit);
1443 return;
1444 }
1445
1446 /* Absolute mode */
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001447 __set_bit(EV_ABS, dev->evbit);
Daniel Kurtz85615472011-08-23 23:00:41 -07001448 set_abs_position_params(dev, priv, ABS_X, ABS_Y);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 input_set_abs_params(dev, ABS_PRESSURE, 0, 255, 0, 0);
Chris Bagwell2a8e7712010-07-19 09:06:15 -07001450
Henrik Rydberge08d9af2014-07-14 10:26:56 -07001451 if (cr48_profile_sensor)
1452 input_set_abs_params(dev, ABS_MT_PRESSURE, 0, 255, 0, 0);
1453
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001454 if (SYN_CAP_IMAGE_SENSOR(priv->ext_cap_0c)) {
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001455 set_abs_position_params(dev, priv, ABS_MT_POSITION_X,
1456 ABS_MT_POSITION_Y);
1457 /* Image sensors can report per-contact pressure */
1458 input_set_abs_params(dev, ABS_MT_PRESSURE, 0, 255, 0, 0);
Henrik Rydberg0b85bf72013-02-15 17:04:03 -08001459 input_mt_init_slots(dev, 2, INPUT_MT_POINTER);
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -07001460
1461 /* Image sensors can signal 4 and 5 finger clicks */
1462 __set_bit(BTN_TOOL_QUADTAP, dev->keybit);
1463 __set_bit(BTN_TOOL_QUINTTAP, dev->keybit);
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001464 } else if (SYN_CAP_ADV_GESTURE(priv->ext_cap_0c)) {
Daniel Kurtz85615472011-08-23 23:00:41 -07001465 set_abs_position_params(dev, priv, ABS_MT_POSITION_X,
1466 ABS_MT_POSITION_Y);
Henrik Rydberge08d9af2014-07-14 10:26:56 -07001467 /*
1468 * Profile sensor in CR-48 tracks contacts reasonably well,
1469 * other non-image sensors with AGM use semi-mt.
1470 */
Dmitry Torokhovae841972014-07-25 17:12:12 -07001471 input_mt_init_slots(dev, 2,
Henrik Rydberge08d9af2014-07-14 10:26:56 -07001472 INPUT_MT_POINTER |
1473 (cr48_profile_sensor ?
1474 INPUT_MT_TRACK : INPUT_MT_SEMI_MT));
Henrik Rydbergfec6e522010-12-21 18:11:25 +01001475 }
1476
Chris Bagwell2a8e7712010-07-19 09:06:15 -07001477 if (SYN_CAP_PALMDETECT(priv->capabilities))
Chris Bagwell58fb0212010-07-19 09:06:15 -07001478 input_set_abs_params(dev, ABS_TOOL_WIDTH, 0, 15, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001480 __set_bit(BTN_TOUCH, dev->keybit);
1481 __set_bit(BTN_TOOL_FINGER, dev->keybit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
Peter Hutterere42b6642008-11-20 15:24:42 -05001483 if (SYN_CAP_MULTIFINGER(priv->capabilities)) {
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001484 __set_bit(BTN_TOOL_DOUBLETAP, dev->keybit);
1485 __set_bit(BTN_TOOL_TRIPLETAP, dev->keybit);
Peter Hutterere42b6642008-11-20 15:24:42 -05001486 }
1487
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 if (SYN_CAP_FOUR_BUTTON(priv->capabilities) ||
1489 SYN_CAP_MIDDLE_BUTTON(priv->capabilities)) {
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001490 __set_bit(BTN_FORWARD, dev->keybit);
1491 __set_bit(BTN_BACK, dev->keybit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 }
1493
1494 for (i = 0; i < SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap); i++)
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001495 __set_bit(BTN_0 + i, dev->keybit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001497 __clear_bit(EV_REL, dev->evbit);
1498 __clear_bit(REL_X, dev->relbit);
1499 __clear_bit(REL_Y, dev->relbit);
Tero Saarniec20a022009-06-10 23:27:24 -07001500
Takashi Iwai5f57d672010-04-19 10:37:21 -07001501 if (SYN_CAP_CLICKPAD(priv->ext_cap_0c)) {
Henrik Rydbergc14890a2010-12-16 09:52:23 +01001502 __set_bit(INPUT_PROP_BUTTONPAD, dev->propbit);
Hans de Goede2c75ada2014-09-11 10:14:09 -07001503 if (psmouse_matches_pnp_id(psmouse, topbuttonpad_pnp_ids))
Hans de Goedee2f61102014-05-19 22:53:23 -07001504 __set_bit(INPUT_PROP_TOPBUTTONPAD, dev->propbit);
Takashi Iwai5f57d672010-04-19 10:37:21 -07001505 /* Clickpads report only left button */
1506 __clear_bit(BTN_RIGHT, dev->keybit);
1507 __clear_bit(BTN_MIDDLE, dev->keybit);
1508 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509}
1510
Daniel Drake7968a5d2011-11-08 00:00:35 -08001511static ssize_t synaptics_show_disable_gesture(struct psmouse *psmouse,
1512 void *data, char *buf)
1513{
1514 struct synaptics_data *priv = psmouse->private;
1515
1516 return sprintf(buf, "%c\n", priv->disable_gesture ? '1' : '0');
1517}
1518
1519static ssize_t synaptics_set_disable_gesture(struct psmouse *psmouse,
1520 void *data, const char *buf,
1521 size_t len)
1522{
1523 struct synaptics_data *priv = psmouse->private;
1524 unsigned int value;
1525 int err;
1526
1527 err = kstrtouint(buf, 10, &value);
1528 if (err)
1529 return err;
1530
1531 if (value > 1)
1532 return -EINVAL;
1533
1534 if (value == priv->disable_gesture)
1535 return len;
1536
1537 priv->disable_gesture = value;
1538 if (value)
1539 priv->mode |= SYN_BIT_DISABLE_GESTURE;
1540 else
1541 priv->mode &= ~SYN_BIT_DISABLE_GESTURE;
1542
1543 if (synaptics_mode_cmd(psmouse, priv->mode))
1544 return -EIO;
1545
1546 return len;
1547}
1548
1549PSMOUSE_DEFINE_ATTR(disable_gesture, S_IWUSR | S_IRUGO, NULL,
1550 synaptics_show_disable_gesture,
1551 synaptics_set_disable_gesture);
1552
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553static void synaptics_disconnect(struct psmouse *psmouse)
1554{
Daniel Drake7968a5d2011-11-08 00:00:35 -08001555 struct synaptics_data *priv = psmouse->private;
1556
1557 if (!priv->absolute_mode && SYN_ID_DISGEST_SUPPORTED(priv->identity))
1558 device_remove_file(&psmouse->ps2dev.serio->dev,
1559 &psmouse_attr_disable_gesture.dattr);
1560
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 synaptics_reset(psmouse);
Daniel Drake7968a5d2011-11-08 00:00:35 -08001562 kfree(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 psmouse->private = NULL;
1564}
1565
1566static int synaptics_reconnect(struct psmouse *psmouse)
1567{
1568 struct synaptics_data *priv = psmouse->private;
1569 struct synaptics_data old_priv = *priv;
Eric Miaoeeb06552013-06-04 09:30:55 -07001570 unsigned char param[2];
Alexandre Peixoto Ferreirac63fe0a2011-01-28 22:05:14 -08001571 int retry = 0;
1572 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573
Alexandre Peixoto Ferreirac63fe0a2011-01-28 22:05:14 -08001574 do {
1575 psmouse_reset(psmouse);
Dmitry Torokhov85214782011-12-12 00:05:53 -08001576 if (retry) {
1577 /*
1578 * On some boxes, right after resuming, the touchpad
1579 * needs some time to finish initializing (I assume
1580 * it needs time to calibrate) and start responding
1581 * to Synaptics-specific queries, so let's wait a
1582 * bit.
1583 */
1584 ssleep(1);
1585 }
Eric Miaoeeb06552013-06-04 09:30:55 -07001586 ps2_command(&psmouse->ps2dev, param, PSMOUSE_CMD_GETID);
Alexandre Peixoto Ferreirac63fe0a2011-01-28 22:05:14 -08001587 error = synaptics_detect(psmouse, 0);
1588 } while (error && ++retry < 3);
Andy Whitcroft4d368452009-02-28 12:51:01 -08001589
Alexandre Peixoto Ferreirac63fe0a2011-01-28 22:05:14 -08001590 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 return -1;
1592
Alexandre Peixoto Ferreirac63fe0a2011-01-28 22:05:14 -08001593 if (retry > 1)
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001594 psmouse_dbg(psmouse, "reconnected after %d tries\n", retry);
Alexandre Peixoto Ferreirac63fe0a2011-01-28 22:05:14 -08001595
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 if (synaptics_query_hardware(psmouse)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001597 psmouse_err(psmouse, "Unable to query device.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 return -1;
1599 }
1600
Daniel Drake7968a5d2011-11-08 00:00:35 -08001601 if (synaptics_set_mode(psmouse)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001602 psmouse_err(psmouse, "Unable to initialize device.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 return -1;
1604 }
1605
Alexandre Peixoto Ferreirabaddf582011-01-28 22:05:14 -08001606 if (old_priv.identity != priv->identity ||
1607 old_priv.model_id != priv->model_id ||
1608 old_priv.capabilities != priv->capabilities ||
1609 old_priv.ext_cap != priv->ext_cap) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001610 psmouse_err(psmouse,
1611 "hardware appears to be different: id(%ld-%ld), model(%ld-%ld), caps(%lx-%lx), ext(%lx-%lx).\n",
1612 old_priv.identity, priv->identity,
1613 old_priv.model_id, priv->model_id,
1614 old_priv.capabilities, priv->capabilities,
1615 old_priv.ext_cap, priv->ext_cap);
Alexandre Peixoto Ferreirabaddf582011-01-28 22:05:14 -08001616 return -1;
1617 }
1618
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 return 0;
1620}
1621
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001622static bool impaired_toshiba_kbc;
1623
Sachin Kamatc9631562013-08-12 11:05:58 -07001624static const struct dmi_system_id toshiba_dmi_table[] __initconst = {
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001625#if defined(CONFIG_DMI) && defined(CONFIG_X86)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 {
Dmitry Torokhov9961e252009-12-04 10:24:20 -08001627 /* Toshiba Satellite */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 .matches = {
1629 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
Richard Thrippleton53a26702006-04-02 00:10:18 -05001630 DMI_MATCH(DMI_PRODUCT_NAME, "Satellite"),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 },
1632 },
Simon Horman9ba5eaa2005-07-11 01:07:20 -05001633 {
Dmitry Torokhov9961e252009-12-04 10:24:20 -08001634 /* Toshiba Dynabook */
Simon Horman9ba5eaa2005-07-11 01:07:20 -05001635 .matches = {
1636 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
Richard Thrippleton53a26702006-04-02 00:10:18 -05001637 DMI_MATCH(DMI_PRODUCT_NAME, "dynabook"),
1638 },
1639 },
1640 {
Dmitry Torokhov9961e252009-12-04 10:24:20 -08001641 /* Toshiba Portege M300 */
Richard Thrippleton53a26702006-04-02 00:10:18 -05001642 .matches = {
1643 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1644 DMI_MATCH(DMI_PRODUCT_NAME, "PORTEGE M300"),
Simon Horman9ba5eaa2005-07-11 01:07:20 -05001645 },
Dmitry Torokhov5f5eeff2009-10-12 21:35:00 -07001646
1647 },
1648 {
Dmitry Torokhov9961e252009-12-04 10:24:20 -08001649 /* Toshiba Portege M300 */
Dmitry Torokhov5f5eeff2009-10-12 21:35:00 -07001650 .matches = {
1651 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1652 DMI_MATCH(DMI_PRODUCT_NAME, "Portable PC"),
1653 DMI_MATCH(DMI_PRODUCT_VERSION, "Version 1.0"),
1654 },
1655
Simon Horman9ba5eaa2005-07-11 01:07:20 -05001656 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657#endif
Jan Beulich70874862011-03-31 00:01:58 -07001658 { }
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001659};
1660
Andres Salomonef8313b2010-12-23 01:19:38 -08001661static bool broken_olpc_ec;
1662
Sachin Kamatc9631562013-08-12 11:05:58 -07001663static const struct dmi_system_id olpc_dmi_table[] __initconst = {
Andres Salomonef8313b2010-12-23 01:19:38 -08001664#if defined(CONFIG_DMI) && defined(CONFIG_OLPC)
1665 {
1666 /* OLPC XO-1 or XO-1.5 */
1667 .matches = {
1668 DMI_MATCH(DMI_SYS_VENDOR, "OLPC"),
1669 DMI_MATCH(DMI_PRODUCT_NAME, "XO"),
1670 },
1671 },
Andres Salomonef8313b2010-12-23 01:19:38 -08001672#endif
Jan Beulich70874862011-03-31 00:01:58 -07001673 { }
Andres Salomonef8313b2010-12-23 01:19:38 -08001674};
1675
Henrik Rydberge08d9af2014-07-14 10:26:56 -07001676static const struct dmi_system_id __initconst cr48_dmi_table[] = {
1677#if defined(CONFIG_DMI) && defined(CONFIG_X86)
1678 {
1679 /* Cr-48 Chromebook (Codename Mario) */
1680 .matches = {
1681 DMI_MATCH(DMI_SYS_VENDOR, "IEC"),
1682 DMI_MATCH(DMI_PRODUCT_NAME, "Mario"),
1683 },
1684 },
1685#endif
1686 { }
1687};
1688
Dmitry Torokhovaa97240992014-09-02 09:49:18 -07001689static const struct dmi_system_id forcepad_dmi_table[] __initconst = {
1690#if defined(CONFIG_DMI) && defined(CONFIG_X86)
1691 {
1692 .matches = {
1693 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1694 DMI_MATCH(DMI_PRODUCT_NAME, "HP EliteBook Folio 1040 G1"),
1695 },
1696 },
1697#endif
1698 { }
1699};
1700
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001701void __init synaptics_module_init(void)
1702{
1703 impaired_toshiba_kbc = dmi_check_system(toshiba_dmi_table);
Andres Salomonef8313b2010-12-23 01:19:38 -08001704 broken_olpc_ec = dmi_check_system(olpc_dmi_table);
Henrik Rydberge08d9af2014-07-14 10:26:56 -07001705 cr48_profile_sensor = dmi_check_system(cr48_dmi_table);
Dmitry Torokhovaa97240992014-09-02 09:49:18 -07001706
1707 /*
1708 * Unfortunately ForcePad capability is not exported over PS/2,
1709 * so we have to resort to checking DMI.
1710 */
1711 is_forcepad = dmi_check_system(forcepad_dmi_table);
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001712}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713
Daniel Drake7968a5d2011-11-08 00:00:35 -08001714static int __synaptics_init(struct psmouse *psmouse, bool absolute_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715{
1716 struct synaptics_data *priv;
Daniel Drake7968a5d2011-11-08 00:00:35 -08001717 int err = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
Andres Salomonef8313b2010-12-23 01:19:38 -08001719 /*
Daniel Drake83551c02011-11-11 16:05:04 -08001720 * The OLPC XO has issues with Synaptics' absolute mode; the constant
1721 * packet spew overloads the EC such that key presses on the keyboard
1722 * are missed. Given that, don't even attempt to use Absolute mode.
1723 * Relative mode seems to work just fine.
Andres Salomonef8313b2010-12-23 01:19:38 -08001724 */
Daniel Drake83551c02011-11-11 16:05:04 -08001725 if (absolute_mode && broken_olpc_ec) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001726 psmouse_info(psmouse,
1727 "OLPC XO detected, not enabling Synaptics protocol.\n");
Andres Salomonef8313b2010-12-23 01:19:38 -08001728 return -ENODEV;
1729 }
1730
Eric Sesterhennb39787a2006-03-14 00:09:16 -05001731 psmouse->private = priv = kzalloc(sizeof(struct synaptics_data), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 if (!priv)
Davidlohr Bueso6792cbb2010-09-29 18:53:35 -07001733 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
Andy Whitcroft4d368452009-02-28 12:51:01 -08001735 psmouse_reset(psmouse);
1736
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 if (synaptics_query_hardware(psmouse)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001738 psmouse_err(psmouse, "Unable to query device.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 goto init_fail;
1740 }
1741
Daniel Drake7968a5d2011-11-08 00:00:35 -08001742 priv->absolute_mode = absolute_mode;
1743 if (SYN_ID_DISGEST_SUPPORTED(priv->identity))
1744 priv->disable_gesture = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745
Daniel Drake7968a5d2011-11-08 00:00:35 -08001746 if (synaptics_set_mode(psmouse)) {
1747 psmouse_err(psmouse, "Unable to initialize device.\n");
Henrik Rydbergfec6e522010-12-21 18:11:25 +01001748 goto init_fail;
1749 }
1750
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 priv->pkt_type = SYN_MODEL_NEWABS(priv->model_id) ? SYN_NEWABS : SYN_OLDABS;
1752
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001753 psmouse_info(psmouse,
Daniel Kurtzc6bd9d42012-07-07 18:08:51 -07001754 "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 -07001755 SYN_ID_MODEL(priv->identity),
1756 SYN_ID_MAJOR(priv->identity), SYN_ID_MINOR(priv->identity),
1757 priv->model_id,
Daniel Kurtzc6bd9d42012-07-07 18:08:51 -07001758 priv->capabilities, priv->ext_cap, priv->ext_cap_0c,
1759 priv->board_id, priv->firmware_id);
Dmitry Torokhov409b7502005-05-28 02:12:18 -05001760
Hans de Goede43e19882014-04-19 22:26:41 -07001761 set_input_params(psmouse, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762
Dmitry Torokhov887cc122007-04-12 01:30:41 -04001763 /*
1764 * Encode touchpad model so that it can be used to set
1765 * input device->id.version and be visible to userspace.
1766 * Because version is __u16 we have to drop something.
1767 * Hardware info bits seem to be good candidates as they
1768 * are documented to be for Synaptics corp. internal use.
1769 */
1770 psmouse->model = ((priv->model_id & 0x00ff0000) >> 8) |
1771 (priv->model_id & 0x000000ff);
1772
Daniel Drake7968a5d2011-11-08 00:00:35 -08001773 if (absolute_mode) {
1774 psmouse->protocol_handler = synaptics_process_byte;
1775 psmouse->pktsize = 6;
1776 } else {
1777 /* Relative mode follows standard PS/2 mouse protocol */
1778 psmouse->protocol_handler = psmouse_process_byte;
1779 psmouse->pktsize = 3;
1780 }
1781
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 psmouse->set_rate = synaptics_set_rate;
1783 psmouse->disconnect = synaptics_disconnect;
1784 psmouse->reconnect = synaptics_reconnect;
Dmitry Torokhova1cec062007-02-18 01:40:24 -05001785 psmouse->cleanup = synaptics_reset;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001786 /* Synaptics can usually stay in sync without extra help */
1787 psmouse->resync_time = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
1789 if (SYN_CAP_PASS_THROUGH(priv->capabilities))
1790 synaptics_pt_create(psmouse);
1791
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 /*
1793 * Toshiba's KBC seems to have trouble handling data from
Andres Salomon7ee99162010-12-23 01:18:28 -08001794 * Synaptics at full rate. Switch to a lower rate (roughly
1795 * the same rate as a standard PS/2 mouse).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 */
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001797 if (psmouse->rate >= 80 && impaired_toshiba_kbc) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001798 psmouse_info(psmouse,
1799 "Toshiba %s detected, limiting rate to 40pps.\n",
1800 dmi_get_system_info(DMI_PRODUCT_NAME));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 psmouse->rate = 40;
1802 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803
Daniel Drake7968a5d2011-11-08 00:00:35 -08001804 if (!priv->absolute_mode && SYN_ID_DISGEST_SUPPORTED(priv->identity)) {
1805 err = device_create_file(&psmouse->ps2dev.serio->dev,
1806 &psmouse_attr_disable_gesture.dattr);
1807 if (err) {
1808 psmouse_err(psmouse,
1809 "Failed to create disable_gesture attribute (%d)",
1810 err);
1811 goto init_fail;
1812 }
1813 }
1814
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 return 0;
1816
1817 init_fail:
1818 kfree(priv);
Daniel Drake7968a5d2011-11-08 00:00:35 -08001819 return err;
1820}
1821
1822int synaptics_init(struct psmouse *psmouse)
1823{
1824 return __synaptics_init(psmouse, true);
1825}
1826
1827int synaptics_init_relative(struct psmouse *psmouse)
1828{
1829 return __synaptics_init(psmouse, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830}
1831
Daniel Drakee4e6efd2010-01-07 01:52:39 -08001832bool synaptics_supported(void)
1833{
1834 return true;
1835}
1836
Andres Salomon55e3d922007-03-10 01:39:54 -05001837#else /* CONFIG_MOUSE_PS2_SYNAPTICS */
1838
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001839void __init synaptics_module_init(void)
1840{
1841}
1842
Andres Salomon55e3d922007-03-10 01:39:54 -05001843int synaptics_init(struct psmouse *psmouse)
1844{
1845 return -ENOSYS;
1846}
1847
Daniel Drakee4e6efd2010-01-07 01:52:39 -08001848bool synaptics_supported(void)
1849{
1850 return false;
1851}
1852
Andres Salomon55e3d922007-03-10 01:39:54 -05001853#endif /* CONFIG_MOUSE_PS2_SYNAPTICS */