blob: 87c37f745b929639e1d2b4841ebcb4efb023fcbc [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);
Daniel Martin9aff6592015-03-08 22:28:29 -0700365 psmouse_info(psmouse,
366 "queried max coordinates: x [..%d], y [..%d]\n",
367 priv->x_max, priv->y_max);
Dmitry Torokhova66413f2011-07-09 12:32:56 -0700368 }
369 }
370
Daniel Martinac097932015-03-08 22:28:40 -0700371 if (SYN_CAP_MIN_DIMENSIONS(priv->ext_cap_0c) &&
372 (SYN_EXT_CAP_REQUESTS(priv->capabilities) >= 7 ||
373 /*
374 * Firmware v8.1 does not report proper number of extended
375 * capabilities, but has been proven to report correct min
376 * coordinates.
377 */
378 SYN_ID_FULL(priv->identity) == 0x801)) {
Dmitry Torokhova66413f2011-07-09 12:32:56 -0700379 if (synaptics_send_cmd(psmouse, SYN_QUE_EXT_MIN_COORDS, resp)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700380 psmouse_warn(psmouse,
381 "device claims to have min coordinates query, but I'm not able to read it.\n");
Dmitry Torokhova66413f2011-07-09 12:32:56 -0700382 } else {
383 priv->x_min = (resp[0] << 5) | ((resp[1] & 0x0f) << 1);
384 priv->y_min = (resp[2] << 5) | ((resp[1] & 0xf0) >> 3);
Daniel Martin9aff6592015-03-08 22:28:29 -0700385 psmouse_info(psmouse,
386 "queried min coordinates: x [%d..], y [%d..]\n",
387 priv->x_min, priv->y_min);
Dmitry Torokhov83ba9ea82010-05-10 23:06:52 -0700388 }
Tero Saarniec20a022009-06-10 23:27:24 -0700389 }
390
391 return 0;
392}
393
Daniel Martin8b04bab2015-03-08 22:27:37 -0700394/*
395 * Apply quirk(s) if the hardware matches
396 */
397
398static void synaptics_apply_quirks(struct psmouse *psmouse)
399{
400 struct synaptics_data *priv = psmouse->private;
401 int i;
402
403 for (i = 0; min_max_pnpid_table[i].pnp_ids; i++) {
404 if (psmouse_matches_pnp_id(psmouse,
405 min_max_pnpid_table[i].pnp_ids)) {
406 priv->x_min = min_max_pnpid_table[i].x_min;
407 priv->x_max = min_max_pnpid_table[i].x_max;
408 priv->y_min = min_max_pnpid_table[i].y_min;
409 priv->y_max = min_max_pnpid_table[i].y_max;
Daniel Martin9aff6592015-03-08 22:28:29 -0700410 psmouse_info(psmouse,
411 "quirked min/max coordinates: x [%d..%d], y [%d..%d]\n",
412 priv->x_min, priv->x_max,
413 priv->y_min, priv->y_max);
Daniel Martin8b04bab2015-03-08 22:27:37 -0700414 break;
415 }
416 }
417}
418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419static int synaptics_query_hardware(struct psmouse *psmouse)
420{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 if (synaptics_identify(psmouse))
422 return -1;
423 if (synaptics_model_id(psmouse))
424 return -1;
Daniel Kurtzc6bd9d42012-07-07 18:08:51 -0700425 if (synaptics_firmware_id(psmouse))
426 return -1;
427 if (synaptics_board_id(psmouse))
428 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 if (synaptics_capability(psmouse))
430 return -1;
Tero Saarniec20a022009-06-10 23:27:24 -0700431 if (synaptics_resolution(psmouse))
432 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Daniel Martin8b04bab2015-03-08 22:27:37 -0700434 synaptics_apply_quirks(psmouse);
435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 return 0;
437}
438
Daniel Drake7968a5d2011-11-08 00:00:35 -0800439static int synaptics_set_advanced_gesture_mode(struct psmouse *psmouse)
440{
441 static unsigned char param = 0xc8;
442 struct synaptics_data *priv = psmouse->private;
443
Benjamin Herrenschmidt899c6122012-04-20 22:34:49 -0700444 if (!(SYN_CAP_ADV_GESTURE(priv->ext_cap_0c) ||
445 SYN_CAP_IMAGE_SENSOR(priv->ext_cap_0c)))
Daniel Drake7968a5d2011-11-08 00:00:35 -0800446 return 0;
447
448 if (psmouse_sliced_command(psmouse, SYN_QUE_MODEL))
449 return -1;
450
451 if (ps2_command(&psmouse->ps2dev, &param, PSMOUSE_CMD_SETRATE))
452 return -1;
453
454 /* Advanced gesture mode also sends multi finger data */
455 priv->capabilities |= BIT(1);
456
457 return 0;
458}
459
460static int synaptics_set_mode(struct psmouse *psmouse)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
462 struct synaptics_data *priv = psmouse->private;
463
Daniel Drake7968a5d2011-11-08 00:00:35 -0800464 priv->mode = 0;
465 if (priv->absolute_mode)
466 priv->mode |= SYN_BIT_ABSOLUTE_MODE;
467 if (priv->disable_gesture)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 priv->mode |= SYN_BIT_DISABLE_GESTURE;
Daniel Drake7968a5d2011-11-08 00:00:35 -0800469 if (psmouse->rate >= 80)
470 priv->mode |= SYN_BIT_HIGH_RATE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 if (SYN_CAP_EXTENDED(priv->capabilities))
472 priv->mode |= SYN_BIT_W_MODE;
473
474 if (synaptics_mode_cmd(psmouse, priv->mode))
475 return -1;
476
Daniel Drake7968a5d2011-11-08 00:00:35 -0800477 if (priv->absolute_mode &&
478 synaptics_set_advanced_gesture_mode(psmouse)) {
479 psmouse_err(psmouse, "Advanced gesture mode init failed.\n");
480 return -1;
481 }
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 return 0;
484}
485
486static void synaptics_set_rate(struct psmouse *psmouse, unsigned int rate)
487{
488 struct synaptics_data *priv = psmouse->private;
489
490 if (rate >= 80) {
491 priv->mode |= SYN_BIT_HIGH_RATE;
492 psmouse->rate = 80;
493 } else {
494 priv->mode &= ~SYN_BIT_HIGH_RATE;
495 psmouse->rate = 40;
496 }
497
498 synaptics_mode_cmd(psmouse, priv->mode);
499}
500
501/*****************************************************************************
502 * Synaptics pass-through PS/2 port support
503 ****************************************************************************/
504static int synaptics_pt_write(struct serio *serio, unsigned char c)
505{
506 struct psmouse *parent = serio_get_drvdata(serio->parent);
507 char rate_param = SYN_PS_CLIENT_CMD; /* indicates that we want pass-through port */
508
509 if (psmouse_sliced_command(parent, c))
510 return -1;
511 if (ps2_command(&parent->ps2dev, &rate_param, PSMOUSE_CMD_SETRATE))
512 return -1;
513 return 0;
514}
515
Dmitry Torokhova8b3c0f2010-10-04 21:46:10 -0700516static int synaptics_pt_start(struct serio *serio)
517{
518 struct psmouse *parent = serio_get_drvdata(serio->parent);
519 struct synaptics_data *priv = parent->private;
520
521 serio_pause_rx(parent->ps2dev.serio);
522 priv->pt_port = serio;
523 serio_continue_rx(parent->ps2dev.serio);
524
525 return 0;
526}
527
528static void synaptics_pt_stop(struct serio *serio)
529{
530 struct psmouse *parent = serio_get_drvdata(serio->parent);
531 struct synaptics_data *priv = parent->private;
532
533 serio_pause_rx(parent->ps2dev.serio);
534 priv->pt_port = NULL;
535 serio_continue_rx(parent->ps2dev.serio);
536}
537
538static int synaptics_is_pt_packet(unsigned char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
540 return (buf[0] & 0xFC) == 0x84 && (buf[3] & 0xCC) == 0xC4;
541}
542
543static void synaptics_pass_pt_packet(struct serio *ptport, unsigned char *packet)
544{
545 struct psmouse *child = serio_get_drvdata(ptport);
546
547 if (child && child->state == PSMOUSE_ACTIVATED) {
David Howells7d12e782006-10-05 14:55:46 +0100548 serio_interrupt(ptport, packet[1], 0);
549 serio_interrupt(ptport, packet[4], 0);
550 serio_interrupt(ptport, packet[5], 0);
Sergey Vlasov33fdfa92005-07-24 00:53:32 -0500551 if (child->pktsize == 4)
David Howells7d12e782006-10-05 14:55:46 +0100552 serio_interrupt(ptport, packet[2], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 } else
David Howells7d12e782006-10-05 14:55:46 +0100554 serio_interrupt(ptport, packet[1], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555}
556
557static void synaptics_pt_activate(struct psmouse *psmouse)
558{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 struct synaptics_data *priv = psmouse->private;
Dmitry Torokhova8b3c0f2010-10-04 21:46:10 -0700560 struct psmouse *child = serio_get_drvdata(priv->pt_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
562 /* adjust the touchpad to child's choice of protocol */
563 if (child) {
Sergey Vlasov33fdfa92005-07-24 00:53:32 -0500564 if (child->pktsize == 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 priv->mode |= SYN_BIT_FOUR_BYTE_CLIENT;
566 else
567 priv->mode &= ~SYN_BIT_FOUR_BYTE_CLIENT;
568
569 if (synaptics_mode_cmd(psmouse, priv->mode))
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700570 psmouse_warn(psmouse,
571 "failed to switch guest protocol\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 }
573}
574
575static void synaptics_pt_create(struct psmouse *psmouse)
576{
577 struct serio *serio;
578
Eric Sesterhennb39787a2006-03-14 00:09:16 -0500579 serio = kzalloc(sizeof(struct serio), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 if (!serio) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700581 psmouse_err(psmouse,
582 "not enough memory for pass-through port\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 return;
584 }
585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 serio->id.type = SERIO_PS_PSTHRU;
587 strlcpy(serio->name, "Synaptics pass-through", sizeof(serio->name));
588 strlcpy(serio->phys, "synaptics-pt/serio0", sizeof(serio->name));
589 serio->write = synaptics_pt_write;
Dmitry Torokhova8b3c0f2010-10-04 21:46:10 -0700590 serio->start = synaptics_pt_start;
591 serio->stop = synaptics_pt_stop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 serio->parent = psmouse->ps2dev.serio;
593
594 psmouse->pt_activate = synaptics_pt_activate;
595
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700596 psmouse_info(psmouse, "serio: %s port at %s\n",
597 serio->name, psmouse->phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 serio_register_port(serio);
599}
600
601/*****************************************************************************
602 * Functions to interpret the absolute mode packets
603 ****************************************************************************/
604
Daniel Kurtza6ca40c2011-08-23 23:02:31 -0700605static void synaptics_mt_state_set(struct synaptics_mt_state *state, int count,
606 int sgm, int agm)
607{
608 state->count = count;
609 state->sgm = sgm;
610 state->agm = agm;
611}
612
Daniel Kurtz7afdb842011-08-23 23:00:33 -0700613static void synaptics_parse_agm(const unsigned char buf[],
Daniel Kurtza6ca40c2011-08-23 23:02:31 -0700614 struct synaptics_data *priv,
615 struct synaptics_hw_state *hw)
Daniel Kurtz7afdb842011-08-23 23:00:33 -0700616{
617 struct synaptics_hw_state *agm = &priv->agm;
Daniel Kurtza6ca40c2011-08-23 23:02:31 -0700618 int agm_packet_type;
Daniel Kurtz7afdb842011-08-23 23:00:33 -0700619
Daniel Kurtza6ca40c2011-08-23 23:02:31 -0700620 agm_packet_type = (buf[5] & 0x30) >> 4;
621 switch (agm_packet_type) {
622 case 1:
623 /* Gesture packet: (x, y, z) half resolution */
624 agm->w = hw->w;
625 agm->x = (((buf[4] & 0x0f) << 8) | buf[1]) << 1;
626 agm->y = (((buf[4] & 0xf0) << 4) | buf[2]) << 1;
627 agm->z = ((buf[3] & 0x30) | (buf[5] & 0x0f)) << 1;
628 break;
629
630 case 2:
631 /* AGM-CONTACT packet: (count, sgm, agm) */
632 synaptics_mt_state_set(&agm->mt_state, buf[1], buf[2], buf[4]);
633 break;
634
635 default:
636 break;
637 }
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700638
639 /* Record that at least one AGM has been received since last SGM */
640 priv->agm_pending = true;
Daniel Kurtz7afdb842011-08-23 23:00:33 -0700641}
642
Dmitry Torokhovaa97240992014-09-02 09:49:18 -0700643static bool is_forcepad;
644
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100645static int synaptics_parse_hw_state(const unsigned char buf[],
646 struct synaptics_data *priv,
647 struct synaptics_hw_state *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
649 memset(hw, 0, sizeof(struct synaptics_hw_state));
650
651 if (SYN_MODEL_NEWABS(priv->model_id)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 hw->w = (((buf[0] & 0x30) >> 2) |
653 ((buf[0] & 0x04) >> 1) |
654 ((buf[3] & 0x04) >> 2));
655
Dmitry Torokhov5715fc72014-08-30 13:51:06 -0700656 if ((SYN_CAP_ADV_GESTURE(priv->ext_cap_0c) ||
657 SYN_CAP_IMAGE_SENSOR(priv->ext_cap_0c)) &&
658 hw->w == 2) {
659 synaptics_parse_agm(buf, priv, hw);
660 return 1;
661 }
662
663 hw->x = (((buf[3] & 0x10) << 8) |
664 ((buf[1] & 0x0f) << 8) |
665 buf[4]);
666 hw->y = (((buf[3] & 0x20) << 7) |
667 ((buf[1] & 0xf0) << 4) |
668 buf[5]);
669 hw->z = buf[2];
670
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 hw->left = (buf[0] & 0x01) ? 1 : 0;
672 hw->right = (buf[0] & 0x02) ? 1 : 0;
673
Dmitry Torokhovaa97240992014-09-02 09:49:18 -0700674 if (is_forcepad) {
Dmitry Torokhov5715fc72014-08-30 13:51:06 -0700675 /*
676 * ForcePads, like Clickpads, use middle button
677 * bits to report primary button clicks.
678 * Unfortunately they report primary button not
679 * only when user presses on the pad above certain
680 * threshold, but also when there are more than one
681 * finger on the touchpad, which interferes with
682 * out multi-finger gestures.
683 */
684 if (hw->z == 0) {
685 /* No contacts */
686 priv->press = priv->report_press = false;
687 } else if (hw->w >= 4 && ((buf[0] ^ buf[3]) & 0x01)) {
688 /*
689 * Single-finger touch with pressure above
690 * the threshold. If pressure stays long
691 * enough, we'll start reporting primary
692 * button. We rely on the device continuing
693 * sending data even if finger does not
694 * move.
695 */
696 if (!priv->press) {
697 priv->press_start = jiffies;
698 priv->press = true;
699 } else if (time_after(jiffies,
700 priv->press_start +
701 msecs_to_jiffies(50))) {
702 priv->report_press = true;
703 }
704 } else {
705 priv->press = false;
706 }
707
708 hw->left = priv->report_press;
709
710 } else if (SYN_CAP_CLICKPAD(priv->ext_cap_0c)) {
Takashi Iwai5f57d672010-04-19 10:37:21 -0700711 /*
712 * Clickpad's button is transmitted as middle button,
713 * however, since it is primary button, we will report
714 * it as BTN_LEFT.
715 */
716 hw->left = ((buf[0] ^ buf[3]) & 0x01) ? 1 : 0;
717
718 } else if (SYN_CAP_MIDDLE_BUTTON(priv->capabilities)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 hw->middle = ((buf[0] ^ buf[3]) & 0x01) ? 1 : 0;
720 if (hw->w == 2)
721 hw->scroll = (signed char)(buf[1]);
722 }
723
724 if (SYN_CAP_FOUR_BUTTON(priv->capabilities)) {
725 hw->up = ((buf[0] ^ buf[3]) & 0x01) ? 1 : 0;
726 hw->down = ((buf[0] ^ buf[3]) & 0x02) ? 1 : 0;
727 }
728
729 if (SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap) &&
730 ((buf[0] ^ buf[3]) & 0x02)) {
731 switch (SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap) & ~0x01) {
732 default:
733 /*
734 * if nExtBtn is greater than 8 it should be
735 * considered invalid and treated as 0
736 */
737 break;
738 case 8:
739 hw->ext_buttons |= ((buf[5] & 0x08)) ? 0x80 : 0;
740 hw->ext_buttons |= ((buf[4] & 0x08)) ? 0x40 : 0;
741 case 6:
742 hw->ext_buttons |= ((buf[5] & 0x04)) ? 0x20 : 0;
743 hw->ext_buttons |= ((buf[4] & 0x04)) ? 0x10 : 0;
744 case 4:
745 hw->ext_buttons |= ((buf[5] & 0x02)) ? 0x08 : 0;
746 hw->ext_buttons |= ((buf[4] & 0x02)) ? 0x04 : 0;
747 case 2:
748 hw->ext_buttons |= ((buf[5] & 0x01)) ? 0x02 : 0;
749 hw->ext_buttons |= ((buf[4] & 0x01)) ? 0x01 : 0;
750 }
751 }
752 } else {
753 hw->x = (((buf[1] & 0x1f) << 8) | buf[2]);
754 hw->y = (((buf[4] & 0x1f) << 8) | buf[5]);
755
756 hw->z = (((buf[0] & 0x30) << 2) | (buf[3] & 0x3F));
757 hw->w = (((buf[1] & 0x80) >> 4) | ((buf[0] & 0x04) >> 1));
758
759 hw->left = (buf[0] & 0x01) ? 1 : 0;
760 hw->right = (buf[0] & 0x02) ? 1 : 0;
761 }
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100762
Seth Forshee824efd32012-09-28 10:29:21 -0700763 /*
764 * Convert wrap-around values to negative. (X|Y)_MAX_POSITIVE
765 * is used by some firmware to indicate a finger at the edge of
766 * the touchpad whose precise position cannot be determined, so
767 * convert these values to the maximum axis value.
768 */
Seth Forsheec03945062012-07-24 23:54:11 -0700769 if (hw->x > X_MAX_POSITIVE)
770 hw->x -= 1 << ABS_POS_BITS;
Seth Forshee824efd32012-09-28 10:29:21 -0700771 else if (hw->x == X_MAX_POSITIVE)
772 hw->x = XMAX;
773
Seth Forsheec03945062012-07-24 23:54:11 -0700774 if (hw->y > Y_MAX_POSITIVE)
775 hw->y -= 1 << ABS_POS_BITS;
Seth Forshee824efd32012-09-28 10:29:21 -0700776 else if (hw->y == Y_MAX_POSITIVE)
777 hw->y = YMAX;
Seth Forsheec03945062012-07-24 23:54:11 -0700778
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100779 return 0;
780}
781
Daniel Kurtzbea9f0f2011-07-06 22:42:52 -0700782static void synaptics_report_semi_mt_slot(struct input_dev *dev, int slot,
783 bool active, int x, int y)
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100784{
785 input_mt_slot(dev, slot);
786 input_mt_report_slot_state(dev, MT_TOOL_FINGER, active);
787 if (active) {
788 input_report_abs(dev, ABS_MT_POSITION_X, x);
Daniel Kurtz6de58dd2011-08-23 23:00:24 -0700789 input_report_abs(dev, ABS_MT_POSITION_Y, synaptics_invert_y(y));
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100790 }
791}
792
793static void synaptics_report_semi_mt_data(struct input_dev *dev,
794 const struct synaptics_hw_state *a,
795 const struct synaptics_hw_state *b,
796 int num_fingers)
797{
798 if (num_fingers >= 2) {
Daniel Kurtzbea9f0f2011-07-06 22:42:52 -0700799 synaptics_report_semi_mt_slot(dev, 0, true, min(a->x, b->x),
800 min(a->y, b->y));
801 synaptics_report_semi_mt_slot(dev, 1, true, max(a->x, b->x),
802 max(a->y, b->y));
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100803 } else if (num_fingers == 1) {
Daniel Kurtzbea9f0f2011-07-06 22:42:52 -0700804 synaptics_report_semi_mt_slot(dev, 0, true, a->x, a->y);
805 synaptics_report_semi_mt_slot(dev, 1, false, 0, 0);
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100806 } else {
Daniel Kurtzbea9f0f2011-07-06 22:42:52 -0700807 synaptics_report_semi_mt_slot(dev, 0, false, 0, 0);
808 synaptics_report_semi_mt_slot(dev, 1, false, 0, 0);
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100809 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810}
811
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700812static void synaptics_report_buttons(struct psmouse *psmouse,
813 const struct synaptics_hw_state *hw)
814{
815 struct input_dev *dev = psmouse->dev;
816 struct synaptics_data *priv = psmouse->private;
817 int i;
818
819 input_report_key(dev, BTN_LEFT, hw->left);
820 input_report_key(dev, BTN_RIGHT, hw->right);
821
822 if (SYN_CAP_MIDDLE_BUTTON(priv->capabilities))
823 input_report_key(dev, BTN_MIDDLE, hw->middle);
824
825 if (SYN_CAP_FOUR_BUTTON(priv->capabilities)) {
826 input_report_key(dev, BTN_FORWARD, hw->up);
827 input_report_key(dev, BTN_BACK, hw->down);
828 }
829
830 for (i = 0; i < SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap); i++)
831 input_report_key(dev, BTN_0 + i, hw->ext_buttons & (1 << i));
832}
833
834static void synaptics_report_slot(struct input_dev *dev, int slot,
835 const struct synaptics_hw_state *hw)
836{
837 input_mt_slot(dev, slot);
838 input_mt_report_slot_state(dev, MT_TOOL_FINGER, (hw != NULL));
839 if (!hw)
840 return;
841
842 input_report_abs(dev, ABS_MT_POSITION_X, hw->x);
843 input_report_abs(dev, ABS_MT_POSITION_Y, synaptics_invert_y(hw->y));
844 input_report_abs(dev, ABS_MT_PRESSURE, hw->z);
845}
846
847static void synaptics_report_mt_data(struct psmouse *psmouse,
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700848 struct synaptics_mt_state *mt_state,
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700849 const struct synaptics_hw_state *sgm)
850{
851 struct input_dev *dev = psmouse->dev;
852 struct synaptics_data *priv = psmouse->private;
853 struct synaptics_hw_state *agm = &priv->agm;
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700854 struct synaptics_mt_state *old = &priv->mt_state;
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700855
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700856 switch (mt_state->count) {
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700857 case 0:
858 synaptics_report_slot(dev, 0, NULL);
859 synaptics_report_slot(dev, 1, NULL);
860 break;
861 case 1:
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700862 if (mt_state->sgm == -1) {
863 synaptics_report_slot(dev, 0, NULL);
864 synaptics_report_slot(dev, 1, NULL);
865 } else if (mt_state->sgm == 0) {
866 synaptics_report_slot(dev, 0, sgm);
867 synaptics_report_slot(dev, 1, NULL);
868 } else {
869 synaptics_report_slot(dev, 0, NULL);
870 synaptics_report_slot(dev, 1, sgm);
871 }
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700872 break;
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700873 default:
874 /*
875 * If the finger slot contained in SGM is valid, and either
Daniel Kurtz48064bd2013-02-13 13:53:07 -0800876 * hasn't changed, or is new, or the old SGM has now moved to
877 * AGM, then report SGM in MTB slot 0.
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700878 * Otherwise, empty MTB slot 0.
879 */
880 if (mt_state->sgm != -1 &&
Daniel Kurtz48064bd2013-02-13 13:53:07 -0800881 (mt_state->sgm == old->sgm ||
882 old->sgm == -1 || mt_state->agm == old->sgm))
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700883 synaptics_report_slot(dev, 0, sgm);
884 else
885 synaptics_report_slot(dev, 0, NULL);
886
887 /*
888 * If the finger slot contained in AGM is valid, and either
889 * hasn't changed, or is new, then report AGM in MTB slot 1.
890 * Otherwise, empty MTB slot 1.
Daniel Kurtz48064bd2013-02-13 13:53:07 -0800891 *
892 * However, in the case where the AGM is new, make sure that
893 * that it is either the same as the old SGM, or there was no
894 * SGM.
895 *
896 * Otherwise, if the SGM was just 1, and the new AGM is 2, then
897 * the new AGM will keep the old SGM's tracking ID, which can
898 * cause apparent drumroll. This happens if in the following
899 * valid finger sequence:
900 *
901 * Action SGM AGM (MTB slot:Contact)
902 * 1. Touch contact 0 (0:0)
903 * 2. Touch contact 1 (0:0, 1:1)
904 * 3. Lift contact 0 (1:1)
905 * 4. Touch contacts 2,3 (0:2, 1:3)
906 *
907 * In step 4, contact 3, in AGM must not be given the same
908 * tracking ID as contact 1 had in step 3. To avoid this,
909 * the first agm with contact 3 is dropped and slot 1 is
910 * invalidated (tracking ID = -1).
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700911 */
912 if (mt_state->agm != -1 &&
Daniel Kurtz48064bd2013-02-13 13:53:07 -0800913 (mt_state->agm == old->agm ||
914 (old->agm == -1 &&
915 (old->sgm == -1 || mt_state->agm == old->sgm))))
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700916 synaptics_report_slot(dev, 1, agm);
917 else
918 synaptics_report_slot(dev, 1, NULL);
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700919 break;
920 }
921
922 /* Don't use active slot count to generate BTN_TOOL events. */
923 input_mt_report_pointer_emulation(dev, false);
924
925 /* Send the number of fingers reported by touchpad itself. */
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700926 input_mt_report_finger_count(dev, mt_state->count);
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700927
928 synaptics_report_buttons(psmouse, sgm);
929
930 input_sync(dev);
931}
932
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700933/* Handle case where mt_state->count = 0 */
934static void synaptics_image_sensor_0f(struct synaptics_data *priv,
935 struct synaptics_mt_state *mt_state)
936{
937 synaptics_mt_state_set(mt_state, 0, -1, -1);
938 priv->mt_state_lost = false;
939}
940
941/* Handle case where mt_state->count = 1 */
942static void synaptics_image_sensor_1f(struct synaptics_data *priv,
943 struct synaptics_mt_state *mt_state)
944{
945 struct synaptics_hw_state *agm = &priv->agm;
946 struct synaptics_mt_state *old = &priv->mt_state;
947
948 /*
949 * If the last AGM was (0,0,0), and there is only one finger left,
950 * then we absolutely know that SGM contains slot 0, and all other
951 * fingers have been removed.
952 */
953 if (priv->agm_pending && agm->z == 0) {
954 synaptics_mt_state_set(mt_state, 1, 0, -1);
955 priv->mt_state_lost = false;
956 return;
957 }
958
959 switch (old->count) {
960 case 0:
961 synaptics_mt_state_set(mt_state, 1, 0, -1);
962 break;
963 case 1:
964 /*
965 * If mt_state_lost, then the previous transition was 3->1,
966 * and SGM now contains either slot 0 or 1, but we don't know
967 * which. So, we just assume that the SGM now contains slot 1.
968 *
969 * If pending AGM and either:
970 * (a) the previous SGM slot contains slot 0, or
971 * (b) there was no SGM slot
972 * then, the SGM now contains slot 1
973 *
974 * Case (a) happens with very rapid "drum roll" gestures, where
975 * slot 0 finger is lifted and a new slot 1 finger touches
976 * within one reporting interval.
977 *
978 * Case (b) happens if initially two or more fingers tap
979 * briefly, and all but one lift before the end of the first
980 * reporting interval.
981 *
982 * (In both these cases, slot 0 will becomes empty, so SGM
983 * contains slot 1 with the new finger)
984 *
985 * Else, if there was no previous SGM, it now contains slot 0.
986 *
987 * Otherwise, SGM still contains the same slot.
988 */
989 if (priv->mt_state_lost ||
990 (priv->agm_pending && old->sgm <= 0))
991 synaptics_mt_state_set(mt_state, 1, 1, -1);
992 else if (old->sgm == -1)
993 synaptics_mt_state_set(mt_state, 1, 0, -1);
994 break;
995 case 2:
996 /*
997 * If mt_state_lost, we don't know which finger SGM contains.
998 *
999 * So, report 1 finger, but with both slots empty.
1000 * We will use slot 1 on subsequent 1->1
1001 */
1002 if (priv->mt_state_lost) {
1003 synaptics_mt_state_set(mt_state, 1, -1, -1);
1004 break;
1005 }
1006 /*
1007 * Since the last AGM was NOT (0,0,0), it was the finger in
1008 * slot 0 that has been removed.
1009 * So, SGM now contains previous AGM's slot, and AGM is now
1010 * empty.
1011 */
1012 synaptics_mt_state_set(mt_state, 1, old->agm, -1);
1013 break;
1014 case 3:
1015 /*
1016 * Since last AGM was not (0,0,0), we don't know which finger
1017 * is left.
1018 *
1019 * So, report 1 finger, but with both slots empty.
1020 * We will use slot 1 on subsequent 1->1
1021 */
1022 synaptics_mt_state_set(mt_state, 1, -1, -1);
1023 priv->mt_state_lost = true;
1024 break;
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -07001025 case 4:
1026 case 5:
1027 /* mt_state was updated by AGM-CONTACT packet */
1028 break;
Daniel Kurtz4dc772d2011-08-23 23:02:40 -07001029 }
1030}
1031
1032/* Handle case where mt_state->count = 2 */
1033static void synaptics_image_sensor_2f(struct synaptics_data *priv,
1034 struct synaptics_mt_state *mt_state)
1035{
1036 struct synaptics_mt_state *old = &priv->mt_state;
1037
1038 switch (old->count) {
1039 case 0:
1040 synaptics_mt_state_set(mt_state, 2, 0, 1);
1041 break;
1042 case 1:
1043 /*
1044 * If previous SGM contained slot 1 or higher, SGM now contains
1045 * slot 0 (the newly touching finger) and AGM contains SGM's
1046 * previous slot.
1047 *
1048 * Otherwise, SGM still contains slot 0 and AGM now contains
1049 * slot 1.
1050 */
1051 if (old->sgm >= 1)
1052 synaptics_mt_state_set(mt_state, 2, 0, old->sgm);
1053 else
1054 synaptics_mt_state_set(mt_state, 2, 0, 1);
1055 break;
1056 case 2:
1057 /*
1058 * If mt_state_lost, SGM now contains either finger 1 or 2, but
1059 * we don't know which.
1060 * So, we just assume that the SGM contains slot 0 and AGM 1.
1061 */
1062 if (priv->mt_state_lost)
1063 synaptics_mt_state_set(mt_state, 2, 0, 1);
1064 /*
1065 * Otherwise, use the same mt_state, since it either hasn't
1066 * changed, or was updated by a recently received AGM-CONTACT
1067 * packet.
1068 */
1069 break;
1070 case 3:
1071 /*
1072 * 3->2 transitions have two unsolvable problems:
1073 * 1) no indication is given which finger was removed
1074 * 2) no way to tell if agm packet was for finger 3
1075 * before 3->2, or finger 2 after 3->2.
1076 *
1077 * So, report 2 fingers, but empty all slots.
1078 * We will guess slots [0,1] on subsequent 2->2.
1079 */
1080 synaptics_mt_state_set(mt_state, 2, -1, -1);
1081 priv->mt_state_lost = true;
1082 break;
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -07001083 case 4:
1084 case 5:
1085 /* mt_state was updated by AGM-CONTACT packet */
1086 break;
Daniel Kurtz4dc772d2011-08-23 23:02:40 -07001087 }
1088}
1089
1090/* Handle case where mt_state->count = 3 */
1091static void synaptics_image_sensor_3f(struct synaptics_data *priv,
1092 struct synaptics_mt_state *mt_state)
1093{
1094 struct synaptics_mt_state *old = &priv->mt_state;
1095
1096 switch (old->count) {
1097 case 0:
1098 synaptics_mt_state_set(mt_state, 3, 0, 2);
1099 break;
1100 case 1:
1101 /*
1102 * If previous SGM contained slot 2 or higher, SGM now contains
1103 * slot 0 (one of the newly touching fingers) and AGM contains
1104 * SGM's previous slot.
1105 *
1106 * Otherwise, SGM now contains slot 0 and AGM contains slot 2.
1107 */
1108 if (old->sgm >= 2)
1109 synaptics_mt_state_set(mt_state, 3, 0, old->sgm);
1110 else
1111 synaptics_mt_state_set(mt_state, 3, 0, 2);
1112 break;
1113 case 2:
1114 /*
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -07001115 * If the AGM previously contained slot 3 or higher, then the
1116 * newly touching finger is in the lowest available slot.
1117 *
1118 * If SGM was previously 1 or higher, then the new SGM is
1119 * now slot 0 (with a new finger), otherwise, the new finger
1120 * is now in a hidden slot between 0 and AGM's slot.
1121 *
1122 * In all such cases, the SGM now contains slot 0, and the AGM
1123 * continues to contain the same slot as before.
1124 */
1125 if (old->agm >= 3) {
1126 synaptics_mt_state_set(mt_state, 3, 0, old->agm);
1127 break;
1128 }
1129
1130 /*
Daniel Kurtz4dc772d2011-08-23 23:02:40 -07001131 * After some 3->1 and all 3->2 transitions, we lose track
1132 * of which slot is reported by SGM and AGM.
1133 *
1134 * For 2->3 in this state, report 3 fingers, but empty all
1135 * slots, and we will guess (0,2) on a subsequent 0->3.
1136 *
1137 * To userspace, the resulting transition will look like:
1138 * 2:[0,1] -> 3:[-1,-1] -> 3:[0,2]
1139 */
1140 if (priv->mt_state_lost) {
1141 synaptics_mt_state_set(mt_state, 3, -1, -1);
1142 break;
1143 }
1144
1145 /*
1146 * If the (SGM,AGM) really previously contained slots (0, 1),
1147 * then we cannot know what slot was just reported by the AGM,
1148 * because the 2->3 transition can occur either before or after
1149 * the AGM packet. Thus, this most recent AGM could contain
1150 * either the same old slot 1 or the new slot 2.
1151 * Subsequent AGMs will be reporting slot 2.
1152 *
1153 * To userspace, the resulting transition will look like:
1154 * 2:[0,1] -> 3:[0,-1] -> 3:[0,2]
1155 */
1156 synaptics_mt_state_set(mt_state, 3, 0, -1);
1157 break;
1158 case 3:
1159 /*
1160 * If, for whatever reason, the previous agm was invalid,
1161 * Assume SGM now contains slot 0, AGM now contains slot 2.
1162 */
1163 if (old->agm <= 2)
1164 synaptics_mt_state_set(mt_state, 3, 0, 2);
1165 /*
1166 * mt_state either hasn't changed, or was updated by a recently
1167 * received AGM-CONTACT packet.
1168 */
1169 break;
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -07001170
1171 case 4:
1172 case 5:
1173 /* mt_state was updated by AGM-CONTACT packet */
1174 break;
Daniel Kurtz4dc772d2011-08-23 23:02:40 -07001175 }
1176}
1177
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -07001178/* Handle case where mt_state->count = 4, or = 5 */
1179static void synaptics_image_sensor_45f(struct synaptics_data *priv,
1180 struct synaptics_mt_state *mt_state)
1181{
1182 /* mt_state was updated correctly by AGM-CONTACT packet */
1183 priv->mt_state_lost = false;
1184}
1185
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001186static void synaptics_image_sensor_process(struct psmouse *psmouse,
1187 struct synaptics_hw_state *sgm)
1188{
Daniel Kurtz4dc772d2011-08-23 23:02:40 -07001189 struct synaptics_data *priv = psmouse->private;
1190 struct synaptics_hw_state *agm = &priv->agm;
1191 struct synaptics_mt_state mt_state;
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001192
Daniel Kurtz4dc772d2011-08-23 23:02:40 -07001193 /* Initialize using current mt_state (as updated by last agm) */
1194 mt_state = agm->mt_state;
1195
1196 /*
1197 * Update mt_state using the new finger count and current mt_state.
1198 */
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001199 if (sgm->z == 0)
Daniel Kurtz4dc772d2011-08-23 23:02:40 -07001200 synaptics_image_sensor_0f(priv, &mt_state);
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001201 else if (sgm->w >= 4)
Daniel Kurtz4dc772d2011-08-23 23:02:40 -07001202 synaptics_image_sensor_1f(priv, &mt_state);
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001203 else if (sgm->w == 0)
Daniel Kurtz4dc772d2011-08-23 23:02:40 -07001204 synaptics_image_sensor_2f(priv, &mt_state);
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -07001205 else if (sgm->w == 1 && mt_state.count <= 3)
Daniel Kurtz4dc772d2011-08-23 23:02:40 -07001206 synaptics_image_sensor_3f(priv, &mt_state);
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -07001207 else
1208 synaptics_image_sensor_45f(priv, &mt_state);
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001209
1210 /* Send resulting input events to user space */
Daniel Kurtz4dc772d2011-08-23 23:02:40 -07001211 synaptics_report_mt_data(psmouse, &mt_state, sgm);
1212
1213 /* Store updated mt_state */
1214 priv->mt_state = agm->mt_state = mt_state;
1215 priv->agm_pending = false;
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001216}
1217
Henrik Rydberge08d9af2014-07-14 10:26:56 -07001218static void synaptics_profile_sensor_process(struct psmouse *psmouse,
1219 struct synaptics_hw_state *sgm,
1220 int num_fingers)
1221{
1222 struct input_dev *dev = psmouse->dev;
1223 struct synaptics_data *priv = psmouse->private;
1224 struct synaptics_hw_state *hw[2] = { sgm, &priv->agm };
1225 struct input_mt_pos pos[2];
1226 int slot[2], nsemi, i;
1227
1228 nsemi = clamp_val(num_fingers, 0, 2);
1229
1230 for (i = 0; i < nsemi; i++) {
1231 pos[i].x = hw[i]->x;
1232 pos[i].y = synaptics_invert_y(hw[i]->y);
1233 }
1234
1235 input_mt_assign_slots(dev, slot, pos, nsemi);
1236
1237 for (i = 0; i < nsemi; i++) {
1238 input_mt_slot(dev, slot[i]);
1239 input_mt_report_slot_state(dev, MT_TOOL_FINGER, true);
1240 input_report_abs(dev, ABS_MT_POSITION_X, pos[i].x);
1241 input_report_abs(dev, ABS_MT_POSITION_Y, pos[i].y);
1242 input_report_abs(dev, ABS_MT_PRESSURE, hw[i]->z);
1243 }
1244
1245 input_mt_drop_unused(dev);
1246 input_mt_report_pointer_emulation(dev, false);
1247 input_mt_report_finger_count(dev, num_fingers);
1248
1249 synaptics_report_buttons(psmouse, sgm);
1250
1251 input_sync(dev);
1252}
1253
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254/*
1255 * called for each full received packet from the touchpad
1256 */
1257static void synaptics_process_packet(struct psmouse *psmouse)
1258{
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001259 struct input_dev *dev = psmouse->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 struct synaptics_data *priv = psmouse->private;
1261 struct synaptics_hw_state hw;
1262 int num_fingers;
1263 int finger_width;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
Henrik Rydbergfec6e522010-12-21 18:11:25 +01001265 if (synaptics_parse_hw_state(psmouse->packet, priv, &hw))
1266 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001268 if (SYN_CAP_IMAGE_SENSOR(priv->ext_cap_0c)) {
1269 synaptics_image_sensor_process(psmouse, &hw);
1270 return;
1271 }
1272
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 if (hw.scroll) {
1274 priv->scroll += hw.scroll;
1275
1276 while (priv->scroll >= 4) {
1277 input_report_key(dev, BTN_BACK, !hw.down);
1278 input_sync(dev);
1279 input_report_key(dev, BTN_BACK, hw.down);
1280 input_sync(dev);
1281 priv->scroll -= 4;
1282 }
1283 while (priv->scroll <= -4) {
1284 input_report_key(dev, BTN_FORWARD, !hw.up);
1285 input_sync(dev);
1286 input_report_key(dev, BTN_FORWARD, hw.up);
1287 input_sync(dev);
1288 priv->scroll += 4;
1289 }
1290 return;
1291 }
1292
Henrik Rydberg4f56ce92010-12-18 15:42:30 +01001293 if (hw.z > 0 && hw.x > 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 num_fingers = 1;
1295 finger_width = 5;
1296 if (SYN_CAP_EXTENDED(priv->capabilities)) {
1297 switch (hw.w) {
1298 case 0 ... 1:
1299 if (SYN_CAP_MULTIFINGER(priv->capabilities))
1300 num_fingers = hw.w + 2;
1301 break;
1302 case 2:
1303 if (SYN_MODEL_PEN(priv->model_id))
1304 ; /* Nothing, treat a pen as a single finger */
1305 break;
1306 case 4 ... 15:
1307 if (SYN_CAP_PALMDETECT(priv->capabilities))
1308 finger_width = hw.w;
1309 break;
1310 }
1311 }
1312 } else {
1313 num_fingers = 0;
1314 finger_width = 0;
1315 }
1316
Henrik Rydberge08d9af2014-07-14 10:26:56 -07001317 if (cr48_profile_sensor) {
1318 synaptics_profile_sensor_process(psmouse, &hw, num_fingers);
1319 return;
1320 }
1321
Henrik Rydbergfec6e522010-12-21 18:11:25 +01001322 if (SYN_CAP_ADV_GESTURE(priv->ext_cap_0c))
Daniel Kurtz7afdb842011-08-23 23:00:33 -07001323 synaptics_report_semi_mt_data(dev, &hw, &priv->agm,
1324 num_fingers);
Henrik Rydbergfec6e522010-12-21 18:11:25 +01001325
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 /* Post events
1327 * BTN_TOUCH has to be first as mousedev relies on it when doing
1328 * absolute -> relative conversion
1329 */
1330 if (hw.z > 30) input_report_key(dev, BTN_TOUCH, 1);
1331 if (hw.z < 25) input_report_key(dev, BTN_TOUCH, 0);
1332
Henrik Rydberg4f56ce92010-12-18 15:42:30 +01001333 if (num_fingers > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 input_report_abs(dev, ABS_X, hw.x);
Daniel Kurtz6de58dd2011-08-23 23:00:24 -07001335 input_report_abs(dev, ABS_Y, synaptics_invert_y(hw.y));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 }
1337 input_report_abs(dev, ABS_PRESSURE, hw.z);
1338
Chris Bagwell2a8e7712010-07-19 09:06:15 -07001339 if (SYN_CAP_PALMDETECT(priv->capabilities))
1340 input_report_abs(dev, ABS_TOOL_WIDTH, finger_width);
1341
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 input_report_key(dev, BTN_TOOL_FINGER, num_fingers == 1);
Peter Hutterere42b6642008-11-20 15:24:42 -05001343 if (SYN_CAP_MULTIFINGER(priv->capabilities)) {
1344 input_report_key(dev, BTN_TOOL_DOUBLETAP, num_fingers == 2);
1345 input_report_key(dev, BTN_TOOL_TRIPLETAP, num_fingers == 3);
1346 }
1347
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001348 synaptics_report_buttons(psmouse, &hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
1350 input_sync(dev);
1351}
1352
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001353static int synaptics_validate_byte(struct psmouse *psmouse,
1354 int idx, unsigned char pkt_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355{
Helge Dellere38de672006-09-10 21:54:39 -04001356 static const unsigned char newabs_mask[] = { 0xC8, 0x00, 0x00, 0xC8, 0x00 };
1357 static const unsigned char newabs_rel_mask[] = { 0xC0, 0x00, 0x00, 0xC0, 0x00 };
1358 static const unsigned char newabs_rslt[] = { 0x80, 0x00, 0x00, 0xC0, 0x00 };
1359 static const unsigned char oldabs_mask[] = { 0xC0, 0x60, 0x00, 0xC0, 0x60 };
1360 static const unsigned char oldabs_rslt[] = { 0xC0, 0x00, 0x00, 0x80, 0x00 };
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001361 const char *packet = psmouse->packet;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
1363 if (idx < 0 || idx > 4)
1364 return 0;
1365
1366 switch (pkt_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
Dmitry Torokhova62f0d22010-05-19 10:39:17 -07001368 case SYN_NEWABS:
1369 case SYN_NEWABS_RELAXED:
1370 return (packet[idx] & newabs_rel_mask[idx]) == newabs_rslt[idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
Dmitry Torokhova62f0d22010-05-19 10:39:17 -07001372 case SYN_NEWABS_STRICT:
1373 return (packet[idx] & newabs_mask[idx]) == newabs_rslt[idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
Dmitry Torokhova62f0d22010-05-19 10:39:17 -07001375 case SYN_OLDABS:
1376 return (packet[idx] & oldabs_mask[idx]) == oldabs_rslt[idx];
1377
1378 default:
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001379 psmouse_err(psmouse, "unknown packet type %d\n", pkt_type);
Dmitry Torokhova62f0d22010-05-19 10:39:17 -07001380 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 }
1382}
1383
1384static unsigned char synaptics_detect_pkt_type(struct psmouse *psmouse)
1385{
1386 int i;
1387
1388 for (i = 0; i < 5; i++)
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001389 if (!synaptics_validate_byte(psmouse, i, SYN_NEWABS_STRICT)) {
1390 psmouse_info(psmouse, "using relaxed packet validation\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 return SYN_NEWABS_RELAXED;
1392 }
1393
1394 return SYN_NEWABS_STRICT;
1395}
1396
David Howells7d12e782006-10-05 14:55:46 +01001397static psmouse_ret_t synaptics_process_byte(struct psmouse *psmouse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 struct synaptics_data *priv = psmouse->private;
1400
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 if (psmouse->pktcnt >= 6) { /* Full packet received */
1402 if (unlikely(priv->pkt_type == SYN_NEWABS))
1403 priv->pkt_type = synaptics_detect_pkt_type(psmouse);
1404
Dmitry Torokhova8b3c0f2010-10-04 21:46:10 -07001405 if (SYN_CAP_PASS_THROUGH(priv->capabilities) &&
1406 synaptics_is_pt_packet(psmouse->packet)) {
1407 if (priv->pt_port)
1408 synaptics_pass_pt_packet(priv->pt_port, psmouse->packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 } else
1410 synaptics_process_packet(psmouse);
1411
1412 return PSMOUSE_FULL_PACKET;
1413 }
1414
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001415 return synaptics_validate_byte(psmouse, psmouse->pktcnt - 1, priv->pkt_type) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 PSMOUSE_GOOD_DATA : PSMOUSE_BAD_DATA;
1417}
1418
1419/*****************************************************************************
1420 * Driver initialization/cleanup functions
1421 ****************************************************************************/
Daniel Kurtz85615472011-08-23 23:00:41 -07001422static void set_abs_position_params(struct input_dev *dev,
1423 struct synaptics_data *priv, int x_code,
1424 int y_code)
1425{
1426 int x_min = priv->x_min ?: XMIN_NOMINAL;
1427 int x_max = priv->x_max ?: XMAX_NOMINAL;
1428 int y_min = priv->y_min ?: YMIN_NOMINAL;
1429 int y_max = priv->y_max ?: YMAX_NOMINAL;
1430 int fuzz = SYN_CAP_REDUCED_FILTERING(priv->ext_cap_0c) ?
1431 SYN_REDUCED_FILTER_FUZZ : 0;
1432
1433 input_set_abs_params(dev, x_code, x_min, x_max, fuzz, 0);
1434 input_set_abs_params(dev, y_code, y_min, y_max, fuzz, 0);
1435 input_abs_set_res(dev, x_code, priv->x_res);
1436 input_abs_set_res(dev, y_code, priv->y_res);
1437}
1438
Hans de Goede43e19882014-04-19 22:26:41 -07001439static void set_input_params(struct psmouse *psmouse,
1440 struct synaptics_data *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441{
Hans de Goede43e19882014-04-19 22:26:41 -07001442 struct input_dev *dev = psmouse->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 int i;
1444
Daniel Drake7968a5d2011-11-08 00:00:35 -08001445 /* Things that apply to both modes */
Henrik Rydbergc14890a2010-12-16 09:52:23 +01001446 __set_bit(INPUT_PROP_POINTER, dev->propbit);
Daniel Drake7968a5d2011-11-08 00:00:35 -08001447 __set_bit(EV_KEY, dev->evbit);
1448 __set_bit(BTN_LEFT, dev->keybit);
1449 __set_bit(BTN_RIGHT, dev->keybit);
Henrik Rydbergc14890a2010-12-16 09:52:23 +01001450
Daniel Drake7968a5d2011-11-08 00:00:35 -08001451 if (SYN_CAP_MIDDLE_BUTTON(priv->capabilities))
1452 __set_bit(BTN_MIDDLE, dev->keybit);
1453
1454 if (!priv->absolute_mode) {
1455 /* Relative mode */
1456 __set_bit(EV_REL, dev->evbit);
1457 __set_bit(REL_X, dev->relbit);
1458 __set_bit(REL_Y, dev->relbit);
1459 return;
1460 }
1461
1462 /* Absolute mode */
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001463 __set_bit(EV_ABS, dev->evbit);
Daniel Kurtz85615472011-08-23 23:00:41 -07001464 set_abs_position_params(dev, priv, ABS_X, ABS_Y);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 input_set_abs_params(dev, ABS_PRESSURE, 0, 255, 0, 0);
Chris Bagwell2a8e7712010-07-19 09:06:15 -07001466
Henrik Rydberge08d9af2014-07-14 10:26:56 -07001467 if (cr48_profile_sensor)
1468 input_set_abs_params(dev, ABS_MT_PRESSURE, 0, 255, 0, 0);
1469
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001470 if (SYN_CAP_IMAGE_SENSOR(priv->ext_cap_0c)) {
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001471 set_abs_position_params(dev, priv, ABS_MT_POSITION_X,
1472 ABS_MT_POSITION_Y);
1473 /* Image sensors can report per-contact pressure */
1474 input_set_abs_params(dev, ABS_MT_PRESSURE, 0, 255, 0, 0);
Henrik Rydberg0b85bf72013-02-15 17:04:03 -08001475 input_mt_init_slots(dev, 2, INPUT_MT_POINTER);
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -07001476
1477 /* Image sensors can signal 4 and 5 finger clicks */
1478 __set_bit(BTN_TOOL_QUADTAP, dev->keybit);
1479 __set_bit(BTN_TOOL_QUINTTAP, dev->keybit);
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001480 } else if (SYN_CAP_ADV_GESTURE(priv->ext_cap_0c)) {
Daniel Kurtz85615472011-08-23 23:00:41 -07001481 set_abs_position_params(dev, priv, ABS_MT_POSITION_X,
1482 ABS_MT_POSITION_Y);
Henrik Rydberge08d9af2014-07-14 10:26:56 -07001483 /*
1484 * Profile sensor in CR-48 tracks contacts reasonably well,
1485 * other non-image sensors with AGM use semi-mt.
1486 */
Dmitry Torokhovae841972014-07-25 17:12:12 -07001487 input_mt_init_slots(dev, 2,
Henrik Rydberge08d9af2014-07-14 10:26:56 -07001488 INPUT_MT_POINTER |
1489 (cr48_profile_sensor ?
1490 INPUT_MT_TRACK : INPUT_MT_SEMI_MT));
Henrik Rydbergfec6e522010-12-21 18:11:25 +01001491 }
1492
Chris Bagwell2a8e7712010-07-19 09:06:15 -07001493 if (SYN_CAP_PALMDETECT(priv->capabilities))
Chris Bagwell58fb0212010-07-19 09:06:15 -07001494 input_set_abs_params(dev, ABS_TOOL_WIDTH, 0, 15, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001496 __set_bit(BTN_TOUCH, dev->keybit);
1497 __set_bit(BTN_TOOL_FINGER, dev->keybit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
Peter Hutterere42b6642008-11-20 15:24:42 -05001499 if (SYN_CAP_MULTIFINGER(priv->capabilities)) {
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001500 __set_bit(BTN_TOOL_DOUBLETAP, dev->keybit);
1501 __set_bit(BTN_TOOL_TRIPLETAP, dev->keybit);
Peter Hutterere42b6642008-11-20 15:24:42 -05001502 }
1503
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 if (SYN_CAP_FOUR_BUTTON(priv->capabilities) ||
1505 SYN_CAP_MIDDLE_BUTTON(priv->capabilities)) {
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001506 __set_bit(BTN_FORWARD, dev->keybit);
1507 __set_bit(BTN_BACK, dev->keybit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 }
1509
1510 for (i = 0; i < SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap); i++)
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001511 __set_bit(BTN_0 + i, dev->keybit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001513 __clear_bit(EV_REL, dev->evbit);
1514 __clear_bit(REL_X, dev->relbit);
1515 __clear_bit(REL_Y, dev->relbit);
Tero Saarniec20a022009-06-10 23:27:24 -07001516
Takashi Iwai5f57d672010-04-19 10:37:21 -07001517 if (SYN_CAP_CLICKPAD(priv->ext_cap_0c)) {
Henrik Rydbergc14890a2010-12-16 09:52:23 +01001518 __set_bit(INPUT_PROP_BUTTONPAD, dev->propbit);
Hans de Goede2c75ada2014-09-11 10:14:09 -07001519 if (psmouse_matches_pnp_id(psmouse, topbuttonpad_pnp_ids))
Hans de Goedee2f61102014-05-19 22:53:23 -07001520 __set_bit(INPUT_PROP_TOPBUTTONPAD, dev->propbit);
Takashi Iwai5f57d672010-04-19 10:37:21 -07001521 /* Clickpads report only left button */
1522 __clear_bit(BTN_RIGHT, dev->keybit);
1523 __clear_bit(BTN_MIDDLE, dev->keybit);
1524 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525}
1526
Daniel Drake7968a5d2011-11-08 00:00:35 -08001527static ssize_t synaptics_show_disable_gesture(struct psmouse *psmouse,
1528 void *data, char *buf)
1529{
1530 struct synaptics_data *priv = psmouse->private;
1531
1532 return sprintf(buf, "%c\n", priv->disable_gesture ? '1' : '0');
1533}
1534
1535static ssize_t synaptics_set_disable_gesture(struct psmouse *psmouse,
1536 void *data, const char *buf,
1537 size_t len)
1538{
1539 struct synaptics_data *priv = psmouse->private;
1540 unsigned int value;
1541 int err;
1542
1543 err = kstrtouint(buf, 10, &value);
1544 if (err)
1545 return err;
1546
1547 if (value > 1)
1548 return -EINVAL;
1549
1550 if (value == priv->disable_gesture)
1551 return len;
1552
1553 priv->disable_gesture = value;
1554 if (value)
1555 priv->mode |= SYN_BIT_DISABLE_GESTURE;
1556 else
1557 priv->mode &= ~SYN_BIT_DISABLE_GESTURE;
1558
1559 if (synaptics_mode_cmd(psmouse, priv->mode))
1560 return -EIO;
1561
1562 return len;
1563}
1564
1565PSMOUSE_DEFINE_ATTR(disable_gesture, S_IWUSR | S_IRUGO, NULL,
1566 synaptics_show_disable_gesture,
1567 synaptics_set_disable_gesture);
1568
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569static void synaptics_disconnect(struct psmouse *psmouse)
1570{
Daniel Drake7968a5d2011-11-08 00:00:35 -08001571 struct synaptics_data *priv = psmouse->private;
1572
1573 if (!priv->absolute_mode && SYN_ID_DISGEST_SUPPORTED(priv->identity))
1574 device_remove_file(&psmouse->ps2dev.serio->dev,
1575 &psmouse_attr_disable_gesture.dattr);
1576
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 synaptics_reset(psmouse);
Daniel Drake7968a5d2011-11-08 00:00:35 -08001578 kfree(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 psmouse->private = NULL;
1580}
1581
1582static int synaptics_reconnect(struct psmouse *psmouse)
1583{
1584 struct synaptics_data *priv = psmouse->private;
1585 struct synaptics_data old_priv = *priv;
Eric Miaoeeb06552013-06-04 09:30:55 -07001586 unsigned char param[2];
Alexandre Peixoto Ferreirac63fe0a2011-01-28 22:05:14 -08001587 int retry = 0;
1588 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589
Alexandre Peixoto Ferreirac63fe0a2011-01-28 22:05:14 -08001590 do {
1591 psmouse_reset(psmouse);
Dmitry Torokhov85214782011-12-12 00:05:53 -08001592 if (retry) {
1593 /*
1594 * On some boxes, right after resuming, the touchpad
1595 * needs some time to finish initializing (I assume
1596 * it needs time to calibrate) and start responding
1597 * to Synaptics-specific queries, so let's wait a
1598 * bit.
1599 */
1600 ssleep(1);
1601 }
Eric Miaoeeb06552013-06-04 09:30:55 -07001602 ps2_command(&psmouse->ps2dev, param, PSMOUSE_CMD_GETID);
Alexandre Peixoto Ferreirac63fe0a2011-01-28 22:05:14 -08001603 error = synaptics_detect(psmouse, 0);
1604 } while (error && ++retry < 3);
Andy Whitcroft4d368452009-02-28 12:51:01 -08001605
Alexandre Peixoto Ferreirac63fe0a2011-01-28 22:05:14 -08001606 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 return -1;
1608
Alexandre Peixoto Ferreirac63fe0a2011-01-28 22:05:14 -08001609 if (retry > 1)
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001610 psmouse_dbg(psmouse, "reconnected after %d tries\n", retry);
Alexandre Peixoto Ferreirac63fe0a2011-01-28 22:05:14 -08001611
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 if (synaptics_query_hardware(psmouse)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001613 psmouse_err(psmouse, "Unable to query device.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 return -1;
1615 }
1616
Daniel Drake7968a5d2011-11-08 00:00:35 -08001617 if (synaptics_set_mode(psmouse)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001618 psmouse_err(psmouse, "Unable to initialize device.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 return -1;
1620 }
1621
Alexandre Peixoto Ferreirabaddf582011-01-28 22:05:14 -08001622 if (old_priv.identity != priv->identity ||
1623 old_priv.model_id != priv->model_id ||
1624 old_priv.capabilities != priv->capabilities ||
1625 old_priv.ext_cap != priv->ext_cap) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001626 psmouse_err(psmouse,
1627 "hardware appears to be different: id(%ld-%ld), model(%ld-%ld), caps(%lx-%lx), ext(%lx-%lx).\n",
1628 old_priv.identity, priv->identity,
1629 old_priv.model_id, priv->model_id,
1630 old_priv.capabilities, priv->capabilities,
1631 old_priv.ext_cap, priv->ext_cap);
Alexandre Peixoto Ferreirabaddf582011-01-28 22:05:14 -08001632 return -1;
1633 }
1634
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 return 0;
1636}
1637
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001638static bool impaired_toshiba_kbc;
1639
Sachin Kamatc9631562013-08-12 11:05:58 -07001640static const struct dmi_system_id toshiba_dmi_table[] __initconst = {
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001641#if defined(CONFIG_DMI) && defined(CONFIG_X86)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 {
Dmitry Torokhov9961e252009-12-04 10:24:20 -08001643 /* Toshiba Satellite */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 .matches = {
1645 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
Richard Thrippleton53a26702006-04-02 00:10:18 -05001646 DMI_MATCH(DMI_PRODUCT_NAME, "Satellite"),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 },
1648 },
Simon Horman9ba5eaa2005-07-11 01:07:20 -05001649 {
Dmitry Torokhov9961e252009-12-04 10:24:20 -08001650 /* Toshiba Dynabook */
Simon Horman9ba5eaa2005-07-11 01:07:20 -05001651 .matches = {
1652 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
Richard Thrippleton53a26702006-04-02 00:10:18 -05001653 DMI_MATCH(DMI_PRODUCT_NAME, "dynabook"),
1654 },
1655 },
1656 {
Dmitry Torokhov9961e252009-12-04 10:24:20 -08001657 /* Toshiba Portege M300 */
Richard Thrippleton53a26702006-04-02 00:10:18 -05001658 .matches = {
1659 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1660 DMI_MATCH(DMI_PRODUCT_NAME, "PORTEGE M300"),
Simon Horman9ba5eaa2005-07-11 01:07:20 -05001661 },
Dmitry Torokhov5f5eeff2009-10-12 21:35:00 -07001662
1663 },
1664 {
Dmitry Torokhov9961e252009-12-04 10:24:20 -08001665 /* Toshiba Portege M300 */
Dmitry Torokhov5f5eeff2009-10-12 21:35:00 -07001666 .matches = {
1667 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1668 DMI_MATCH(DMI_PRODUCT_NAME, "Portable PC"),
1669 DMI_MATCH(DMI_PRODUCT_VERSION, "Version 1.0"),
1670 },
1671
Simon Horman9ba5eaa2005-07-11 01:07:20 -05001672 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673#endif
Jan Beulich70874862011-03-31 00:01:58 -07001674 { }
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001675};
1676
Andres Salomonef8313b2010-12-23 01:19:38 -08001677static bool broken_olpc_ec;
1678
Sachin Kamatc9631562013-08-12 11:05:58 -07001679static const struct dmi_system_id olpc_dmi_table[] __initconst = {
Andres Salomonef8313b2010-12-23 01:19:38 -08001680#if defined(CONFIG_DMI) && defined(CONFIG_OLPC)
1681 {
1682 /* OLPC XO-1 or XO-1.5 */
1683 .matches = {
1684 DMI_MATCH(DMI_SYS_VENDOR, "OLPC"),
1685 DMI_MATCH(DMI_PRODUCT_NAME, "XO"),
1686 },
1687 },
Andres Salomonef8313b2010-12-23 01:19:38 -08001688#endif
Jan Beulich70874862011-03-31 00:01:58 -07001689 { }
Andres Salomonef8313b2010-12-23 01:19:38 -08001690};
1691
Henrik Rydberge08d9af2014-07-14 10:26:56 -07001692static const struct dmi_system_id __initconst cr48_dmi_table[] = {
1693#if defined(CONFIG_DMI) && defined(CONFIG_X86)
1694 {
1695 /* Cr-48 Chromebook (Codename Mario) */
1696 .matches = {
1697 DMI_MATCH(DMI_SYS_VENDOR, "IEC"),
1698 DMI_MATCH(DMI_PRODUCT_NAME, "Mario"),
1699 },
1700 },
1701#endif
1702 { }
1703};
1704
Dmitry Torokhovaa97240992014-09-02 09:49:18 -07001705static const struct dmi_system_id forcepad_dmi_table[] __initconst = {
1706#if defined(CONFIG_DMI) && defined(CONFIG_X86)
1707 {
1708 .matches = {
1709 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1710 DMI_MATCH(DMI_PRODUCT_NAME, "HP EliteBook Folio 1040 G1"),
1711 },
1712 },
1713#endif
1714 { }
1715};
1716
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001717void __init synaptics_module_init(void)
1718{
1719 impaired_toshiba_kbc = dmi_check_system(toshiba_dmi_table);
Andres Salomonef8313b2010-12-23 01:19:38 -08001720 broken_olpc_ec = dmi_check_system(olpc_dmi_table);
Henrik Rydberge08d9af2014-07-14 10:26:56 -07001721 cr48_profile_sensor = dmi_check_system(cr48_dmi_table);
Dmitry Torokhovaa97240992014-09-02 09:49:18 -07001722
1723 /*
1724 * Unfortunately ForcePad capability is not exported over PS/2,
1725 * so we have to resort to checking DMI.
1726 */
1727 is_forcepad = dmi_check_system(forcepad_dmi_table);
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001728}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729
Daniel Drake7968a5d2011-11-08 00:00:35 -08001730static int __synaptics_init(struct psmouse *psmouse, bool absolute_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731{
1732 struct synaptics_data *priv;
Daniel Drake7968a5d2011-11-08 00:00:35 -08001733 int err = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
Andres Salomonef8313b2010-12-23 01:19:38 -08001735 /*
Daniel Drake83551c02011-11-11 16:05:04 -08001736 * The OLPC XO has issues with Synaptics' absolute mode; the constant
1737 * packet spew overloads the EC such that key presses on the keyboard
1738 * are missed. Given that, don't even attempt to use Absolute mode.
1739 * Relative mode seems to work just fine.
Andres Salomonef8313b2010-12-23 01:19:38 -08001740 */
Daniel Drake83551c02011-11-11 16:05:04 -08001741 if (absolute_mode && broken_olpc_ec) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001742 psmouse_info(psmouse,
1743 "OLPC XO detected, not enabling Synaptics protocol.\n");
Andres Salomonef8313b2010-12-23 01:19:38 -08001744 return -ENODEV;
1745 }
1746
Eric Sesterhennb39787a2006-03-14 00:09:16 -05001747 psmouse->private = priv = kzalloc(sizeof(struct synaptics_data), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 if (!priv)
Davidlohr Bueso6792cbb2010-09-29 18:53:35 -07001749 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
Andy Whitcroft4d368452009-02-28 12:51:01 -08001751 psmouse_reset(psmouse);
1752
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 if (synaptics_query_hardware(psmouse)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001754 psmouse_err(psmouse, "Unable to query device.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 goto init_fail;
1756 }
1757
Daniel Drake7968a5d2011-11-08 00:00:35 -08001758 priv->absolute_mode = absolute_mode;
1759 if (SYN_ID_DISGEST_SUPPORTED(priv->identity))
1760 priv->disable_gesture = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
Daniel Drake7968a5d2011-11-08 00:00:35 -08001762 if (synaptics_set_mode(psmouse)) {
1763 psmouse_err(psmouse, "Unable to initialize device.\n");
Henrik Rydbergfec6e522010-12-21 18:11:25 +01001764 goto init_fail;
1765 }
1766
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 priv->pkt_type = SYN_MODEL_NEWABS(priv->model_id) ? SYN_NEWABS : SYN_OLDABS;
1768
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001769 psmouse_info(psmouse,
Daniel Kurtzc6bd9d42012-07-07 18:08:51 -07001770 "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 -07001771 SYN_ID_MODEL(priv->identity),
1772 SYN_ID_MAJOR(priv->identity), SYN_ID_MINOR(priv->identity),
1773 priv->model_id,
Daniel Kurtzc6bd9d42012-07-07 18:08:51 -07001774 priv->capabilities, priv->ext_cap, priv->ext_cap_0c,
1775 priv->board_id, priv->firmware_id);
Dmitry Torokhov409b7502005-05-28 02:12:18 -05001776
Hans de Goede43e19882014-04-19 22:26:41 -07001777 set_input_params(psmouse, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
Dmitry Torokhov887cc122007-04-12 01:30:41 -04001779 /*
1780 * Encode touchpad model so that it can be used to set
1781 * input device->id.version and be visible to userspace.
1782 * Because version is __u16 we have to drop something.
1783 * Hardware info bits seem to be good candidates as they
1784 * are documented to be for Synaptics corp. internal use.
1785 */
1786 psmouse->model = ((priv->model_id & 0x00ff0000) >> 8) |
1787 (priv->model_id & 0x000000ff);
1788
Daniel Drake7968a5d2011-11-08 00:00:35 -08001789 if (absolute_mode) {
1790 psmouse->protocol_handler = synaptics_process_byte;
1791 psmouse->pktsize = 6;
1792 } else {
1793 /* Relative mode follows standard PS/2 mouse protocol */
1794 psmouse->protocol_handler = psmouse_process_byte;
1795 psmouse->pktsize = 3;
1796 }
1797
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 psmouse->set_rate = synaptics_set_rate;
1799 psmouse->disconnect = synaptics_disconnect;
1800 psmouse->reconnect = synaptics_reconnect;
Dmitry Torokhova1cec062007-02-18 01:40:24 -05001801 psmouse->cleanup = synaptics_reset;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001802 /* Synaptics can usually stay in sync without extra help */
1803 psmouse->resync_time = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804
1805 if (SYN_CAP_PASS_THROUGH(priv->capabilities))
1806 synaptics_pt_create(psmouse);
1807
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 /*
1809 * Toshiba's KBC seems to have trouble handling data from
Andres Salomon7ee99162010-12-23 01:18:28 -08001810 * Synaptics at full rate. Switch to a lower rate (roughly
1811 * the same rate as a standard PS/2 mouse).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 */
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001813 if (psmouse->rate >= 80 && impaired_toshiba_kbc) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001814 psmouse_info(psmouse,
1815 "Toshiba %s detected, limiting rate to 40pps.\n",
1816 dmi_get_system_info(DMI_PRODUCT_NAME));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 psmouse->rate = 40;
1818 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819
Daniel Drake7968a5d2011-11-08 00:00:35 -08001820 if (!priv->absolute_mode && SYN_ID_DISGEST_SUPPORTED(priv->identity)) {
1821 err = device_create_file(&psmouse->ps2dev.serio->dev,
1822 &psmouse_attr_disable_gesture.dattr);
1823 if (err) {
1824 psmouse_err(psmouse,
1825 "Failed to create disable_gesture attribute (%d)",
1826 err);
1827 goto init_fail;
1828 }
1829 }
1830
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 return 0;
1832
1833 init_fail:
1834 kfree(priv);
Daniel Drake7968a5d2011-11-08 00:00:35 -08001835 return err;
1836}
1837
1838int synaptics_init(struct psmouse *psmouse)
1839{
1840 return __synaptics_init(psmouse, true);
1841}
1842
1843int synaptics_init_relative(struct psmouse *psmouse)
1844{
1845 return __synaptics_init(psmouse, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846}
1847
Daniel Drakee4e6efd2010-01-07 01:52:39 -08001848bool synaptics_supported(void)
1849{
1850 return true;
1851}
1852
Andres Salomon55e3d922007-03-10 01:39:54 -05001853#else /* CONFIG_MOUSE_PS2_SYNAPTICS */
1854
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001855void __init synaptics_module_init(void)
1856{
1857}
1858
Andres Salomon55e3d922007-03-10 01:39:54 -05001859int synaptics_init(struct psmouse *psmouse)
1860{
1861 return -ENOSYS;
1862}
1863
Daniel Drakee4e6efd2010-01-07 01:52:39 -08001864bool synaptics_supported(void)
1865{
1866 return false;
1867}
1868
Andres Salomon55e3d922007-03-10 01:39:54 -05001869#endif /* CONFIG_MOUSE_PS2_SYNAPTICS */