blob: fd89249751e33a3c2a4d03a1d43ec2427f3a8396 [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 Torokhov83ba9ea2010-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 {
Hans de Goedee76aed92014-07-14 17:12:21 -0700138 (const char * const []){"LEN0034", "LEN0036", "LEN2002",
139 "LEN2004", NULL},
Hans de Goede0f68f392014-05-19 22:54:09 -0700140 1024, 5112, 2024, 4832
141 },
142 {
143 (const char * const []){"LEN2001", NULL},
144 1024, 5022, 2508, 4832
145 },
146 { }
147};
148
Hans de Goede43e19882014-04-19 22:26:41 -0700149/* This list has been kindly provided by Synaptics. */
150static const char * const topbuttonpad_pnp_ids[] = {
151 "LEN0017",
152 "LEN0018",
153 "LEN0019",
154 "LEN0023",
155 "LEN002A",
156 "LEN002B",
157 "LEN002C",
158 "LEN002D",
159 "LEN002E",
160 "LEN0033", /* Helix */
Hans de Goede0f68f392014-05-19 22:54:09 -0700161 "LEN0034", /* T431s, L440, L540, T540, W540, X1 Carbon 2nd */
Hans de Goede43e19882014-04-19 22:26:41 -0700162 "LEN0035", /* X240 */
163 "LEN0036", /* T440 */
164 "LEN0037",
165 "LEN0038",
166 "LEN0041",
167 "LEN0042", /* Yoga */
168 "LEN0045",
169 "LEN0046",
170 "LEN0047",
171 "LEN0048",
172 "LEN0049",
173 "LEN2000",
Hans de Goede0f68f392014-05-19 22:54:09 -0700174 "LEN2001", /* Edge E431 */
Hans de Goedee76aed92014-07-14 17:12:21 -0700175 "LEN2002", /* Edge E531 */
Hans de Goede43e19882014-04-19 22:26:41 -0700176 "LEN2003",
177 "LEN2004", /* L440 */
178 "LEN2005",
179 "LEN2006",
180 "LEN2007",
181 "LEN2008",
182 "LEN2009",
183 "LEN200A",
184 "LEN200B",
185 NULL
186};
Andres Salomon55e3d922007-03-10 01:39:54 -0500187
188/*****************************************************************************
189 * Synaptics communications functions
190 ****************************************************************************/
191
192/*
JJ Ding1a49a0a2012-05-10 22:32:00 -0700193 * Synaptics touchpads report the y coordinate from bottom to top, which is
194 * opposite from what userspace expects.
195 * This function is used to invert y before reporting.
196 */
197static int synaptics_invert_y(int y)
198{
199 return YMAX_NOMINAL + YMIN_NOMINAL - y;
200}
201
202/*
Andres Salomon55e3d922007-03-10 01:39:54 -0500203 * Send a command to the synpatics touchpad by special commands
204 */
205static int synaptics_send_cmd(struct psmouse *psmouse, unsigned char c, unsigned char *param)
206{
207 if (psmouse_sliced_command(psmouse, c))
208 return -1;
209 if (ps2_command(&psmouse->ps2dev, param, PSMOUSE_CMD_GETINFO))
210 return -1;
211 return 0;
212}
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214/*
215 * Read the model-id bytes from the touchpad
216 * see also SYN_MODEL_* macros
217 */
218static int synaptics_model_id(struct psmouse *psmouse)
219{
220 struct synaptics_data *priv = psmouse->private;
221 unsigned char mi[3];
222
223 if (synaptics_send_cmd(psmouse, SYN_QUE_MODEL, mi))
224 return -1;
225 priv->model_id = (mi[0]<<16) | (mi[1]<<8) | mi[2];
226 return 0;
227}
228
229/*
Daniel Kurtzc6bd9d42012-07-07 18:08:51 -0700230 * Read the board id from the touchpad
231 * The board id is encoded in the "QUERY MODES" response
232 */
233static int synaptics_board_id(struct psmouse *psmouse)
234{
235 struct synaptics_data *priv = psmouse->private;
236 unsigned char bid[3];
237
238 if (synaptics_send_cmd(psmouse, SYN_QUE_MODES, bid))
239 return -1;
240 priv->board_id = ((bid[0] & 0xfc) << 6) | bid[1];
241 return 0;
242}
243
244/*
245 * Read the firmware id from the touchpad
246 */
247static int synaptics_firmware_id(struct psmouse *psmouse)
248{
249 struct synaptics_data *priv = psmouse->private;
250 unsigned char fwid[3];
251
252 if (synaptics_send_cmd(psmouse, SYN_QUE_FIRMWARE_ID, fwid))
253 return -1;
254 priv->firmware_id = (fwid[0] << 16) | (fwid[1] << 8) | fwid[2];
255 return 0;
256}
257
258/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 * Read the capability-bits from the touchpad
260 * see also the SYN_CAP_* macros
261 */
262static int synaptics_capability(struct psmouse *psmouse)
263{
264 struct synaptics_data *priv = psmouse->private;
265 unsigned char cap[3];
266
267 if (synaptics_send_cmd(psmouse, SYN_QUE_CAPABILITIES, cap))
268 return -1;
269 priv->capabilities = (cap[0] << 16) | (cap[1] << 8) | cap[2];
Takashi Iwai5f57d672010-04-19 10:37:21 -0700270 priv->ext_cap = priv->ext_cap_0c = 0;
271
Dmitry Torokhov3619b8f2010-07-21 00:01:19 -0700272 /*
273 * Older firmwares had submodel ID fixed to 0x47
274 */
275 if (SYN_ID_FULL(priv->identity) < 0x705 &&
276 SYN_CAP_SUBMODEL_ID(priv->capabilities) != 0x47) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 return -1;
Dmitry Torokhov3619b8f2010-07-21 00:01:19 -0700278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280 /*
281 * Unless capExtended is set the rest of the flags should be ignored
282 */
283 if (!SYN_CAP_EXTENDED(priv->capabilities))
284 priv->capabilities = 0;
285
286 if (SYN_EXT_CAP_REQUESTS(priv->capabilities) >= 1) {
287 if (synaptics_send_cmd(psmouse, SYN_QUE_EXT_CAPAB, cap)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700288 psmouse_warn(psmouse,
289 "device claims to have extended capabilities, but I'm not able to read them.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 } else {
291 priv->ext_cap = (cap[0] << 16) | (cap[1] << 8) | cap[2];
292
293 /*
294 * if nExtBtn is greater than 8 it should be considered
295 * invalid and treated as 0
296 */
297 if (SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap) > 8)
298 priv->ext_cap &= 0xff0fff;
299 }
300 }
Takashi Iwai5f57d672010-04-19 10:37:21 -0700301
302 if (SYN_EXT_CAP_REQUESTS(priv->capabilities) >= 4) {
303 if (synaptics_send_cmd(psmouse, SYN_QUE_EXT_CAPAB_0C, cap)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700304 psmouse_warn(psmouse,
305 "device claims to have extended capability 0x0c, but I'm not able to read it.\n");
Takashi Iwai5f57d672010-04-19 10:37:21 -0700306 } else {
307 priv->ext_cap_0c = (cap[0] << 16) | (cap[1] << 8) | cap[2];
308 }
309 }
310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 return 0;
312}
313
314/*
315 * Identify Touchpad
316 * See also the SYN_ID_* macros
317 */
318static int synaptics_identify(struct psmouse *psmouse)
319{
320 struct synaptics_data *priv = psmouse->private;
321 unsigned char id[3];
322
323 if (synaptics_send_cmd(psmouse, SYN_QUE_IDENTIFY, id))
324 return -1;
325 priv->identity = (id[0]<<16) | (id[1]<<8) | id[2];
326 if (SYN_ID_IS_SYNAPTICS(priv->identity))
327 return 0;
328 return -1;
329}
330
Tero Saarniec20a022009-06-10 23:27:24 -0700331/*
Dmitry Torokhov83ba9ea2010-05-10 23:06:52 -0700332 * Read touchpad resolution and maximum reported coordinates
Tero Saarniec20a022009-06-10 23:27:24 -0700333 * Resolution is left zero if touchpad does not support the query
334 */
Benjamin Tissoires421e08c2014-03-28 00:43:00 -0700335
Tero Saarniec20a022009-06-10 23:27:24 -0700336static int synaptics_resolution(struct psmouse *psmouse)
337{
338 struct synaptics_data *priv = psmouse->private;
Dmitry Torokhova66413f2011-07-09 12:32:56 -0700339 unsigned char resp[3];
Hans de Goede0f68f392014-05-19 22:54:09 -0700340 int i;
Tero Saarniec20a022009-06-10 23:27:24 -0700341
342 if (SYN_ID_MAJOR(priv->identity) < 4)
Takashi Iwaibbddd192010-07-14 09:32:46 -0700343 return 0;
Tero Saarniec20a022009-06-10 23:27:24 -0700344
Dmitry Torokhova66413f2011-07-09 12:32:56 -0700345 if (synaptics_send_cmd(psmouse, SYN_QUE_RESOLUTION, resp) == 0) {
346 if (resp[0] != 0 && (resp[1] & 0x80) && resp[2] != 0) {
347 priv->x_res = resp[0]; /* x resolution in units/mm */
348 priv->y_res = resp[2]; /* y resolution in units/mm */
Dmitry Torokhov83ba9ea2010-05-10 23:06:52 -0700349 }
350 }
Tero Saarniec20a022009-06-10 23:27:24 -0700351
Benjamin Tissoiresd49cb7a2014-06-07 22:37:47 -0700352 for (i = 0; min_max_pnpid_table[i].pnp_ids; i++) {
Hans de Goede2c75ada2014-09-11 10:14:09 -0700353 if (psmouse_matches_pnp_id(psmouse,
354 min_max_pnpid_table[i].pnp_ids)) {
Benjamin Tissoiresd49cb7a2014-06-07 22:37:47 -0700355 priv->x_min = min_max_pnpid_table[i].x_min;
356 priv->x_max = min_max_pnpid_table[i].x_max;
357 priv->y_min = min_max_pnpid_table[i].y_min;
358 priv->y_max = min_max_pnpid_table[i].y_max;
359 return 0;
360 }
361 }
362
Dmitry Torokhov83ba9ea2010-05-10 23:06:52 -0700363 if (SYN_EXT_CAP_REQUESTS(priv->capabilities) >= 5 &&
364 SYN_CAP_MAX_DIMENSIONS(priv->ext_cap_0c)) {
Dmitry Torokhova66413f2011-07-09 12:32:56 -0700365 if (synaptics_send_cmd(psmouse, SYN_QUE_EXT_MAX_COORDS, resp)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700366 psmouse_warn(psmouse,
367 "device claims to have max coordinates query, but I'm not able to read it.\n");
Dmitry Torokhov83ba9ea2010-05-10 23:06:52 -0700368 } else {
Dmitry Torokhova66413f2011-07-09 12:32:56 -0700369 priv->x_max = (resp[0] << 5) | ((resp[1] & 0x0f) << 1);
370 priv->y_max = (resp[2] << 5) | ((resp[1] & 0xf0) >> 3);
371 }
372 }
373
374 if (SYN_EXT_CAP_REQUESTS(priv->capabilities) >= 7 &&
375 SYN_CAP_MIN_DIMENSIONS(priv->ext_cap_0c)) {
376 if (synaptics_send_cmd(psmouse, SYN_QUE_EXT_MIN_COORDS, resp)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700377 psmouse_warn(psmouse,
378 "device claims to have min coordinates query, but I'm not able to read it.\n");
Dmitry Torokhova66413f2011-07-09 12:32:56 -0700379 } else {
380 priv->x_min = (resp[0] << 5) | ((resp[1] & 0x0f) << 1);
381 priv->y_min = (resp[2] << 5) | ((resp[1] & 0xf0) >> 3);
Dmitry Torokhov83ba9ea2010-05-10 23:06:52 -0700382 }
Tero Saarniec20a022009-06-10 23:27:24 -0700383 }
384
385 return 0;
386}
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388static int synaptics_query_hardware(struct psmouse *psmouse)
389{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 if (synaptics_identify(psmouse))
391 return -1;
392 if (synaptics_model_id(psmouse))
393 return -1;
Daniel Kurtzc6bd9d42012-07-07 18:08:51 -0700394 if (synaptics_firmware_id(psmouse))
395 return -1;
396 if (synaptics_board_id(psmouse))
397 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 if (synaptics_capability(psmouse))
399 return -1;
Tero Saarniec20a022009-06-10 23:27:24 -0700400 if (synaptics_resolution(psmouse))
401 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 return 0;
404}
405
Daniel Drake7968a5d2011-11-08 00:00:35 -0800406static int synaptics_set_advanced_gesture_mode(struct psmouse *psmouse)
407{
408 static unsigned char param = 0xc8;
409 struct synaptics_data *priv = psmouse->private;
410
Benjamin Herrenschmidt899c6122012-04-20 22:34:49 -0700411 if (!(SYN_CAP_ADV_GESTURE(priv->ext_cap_0c) ||
412 SYN_CAP_IMAGE_SENSOR(priv->ext_cap_0c)))
Daniel Drake7968a5d2011-11-08 00:00:35 -0800413 return 0;
414
415 if (psmouse_sliced_command(psmouse, SYN_QUE_MODEL))
416 return -1;
417
418 if (ps2_command(&psmouse->ps2dev, &param, PSMOUSE_CMD_SETRATE))
419 return -1;
420
421 /* Advanced gesture mode also sends multi finger data */
422 priv->capabilities |= BIT(1);
423
424 return 0;
425}
426
427static int synaptics_set_mode(struct psmouse *psmouse)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
429 struct synaptics_data *priv = psmouse->private;
430
Daniel Drake7968a5d2011-11-08 00:00:35 -0800431 priv->mode = 0;
432 if (priv->absolute_mode)
433 priv->mode |= SYN_BIT_ABSOLUTE_MODE;
434 if (priv->disable_gesture)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 priv->mode |= SYN_BIT_DISABLE_GESTURE;
Daniel Drake7968a5d2011-11-08 00:00:35 -0800436 if (psmouse->rate >= 80)
437 priv->mode |= SYN_BIT_HIGH_RATE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 if (SYN_CAP_EXTENDED(priv->capabilities))
439 priv->mode |= SYN_BIT_W_MODE;
440
441 if (synaptics_mode_cmd(psmouse, priv->mode))
442 return -1;
443
Daniel Drake7968a5d2011-11-08 00:00:35 -0800444 if (priv->absolute_mode &&
445 synaptics_set_advanced_gesture_mode(psmouse)) {
446 psmouse_err(psmouse, "Advanced gesture mode init failed.\n");
447 return -1;
448 }
449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 return 0;
451}
452
453static void synaptics_set_rate(struct psmouse *psmouse, unsigned int rate)
454{
455 struct synaptics_data *priv = psmouse->private;
456
457 if (rate >= 80) {
458 priv->mode |= SYN_BIT_HIGH_RATE;
459 psmouse->rate = 80;
460 } else {
461 priv->mode &= ~SYN_BIT_HIGH_RATE;
462 psmouse->rate = 40;
463 }
464
465 synaptics_mode_cmd(psmouse, priv->mode);
466}
467
468/*****************************************************************************
469 * Synaptics pass-through PS/2 port support
470 ****************************************************************************/
471static int synaptics_pt_write(struct serio *serio, unsigned char c)
472{
473 struct psmouse *parent = serio_get_drvdata(serio->parent);
474 char rate_param = SYN_PS_CLIENT_CMD; /* indicates that we want pass-through port */
475
476 if (psmouse_sliced_command(parent, c))
477 return -1;
478 if (ps2_command(&parent->ps2dev, &rate_param, PSMOUSE_CMD_SETRATE))
479 return -1;
480 return 0;
481}
482
Dmitry Torokhova8b3c0f2010-10-04 21:46:10 -0700483static int synaptics_pt_start(struct serio *serio)
484{
485 struct psmouse *parent = serio_get_drvdata(serio->parent);
486 struct synaptics_data *priv = parent->private;
487
488 serio_pause_rx(parent->ps2dev.serio);
489 priv->pt_port = serio;
490 serio_continue_rx(parent->ps2dev.serio);
491
492 return 0;
493}
494
495static void synaptics_pt_stop(struct serio *serio)
496{
497 struct psmouse *parent = serio_get_drvdata(serio->parent);
498 struct synaptics_data *priv = parent->private;
499
500 serio_pause_rx(parent->ps2dev.serio);
501 priv->pt_port = NULL;
502 serio_continue_rx(parent->ps2dev.serio);
503}
504
505static int synaptics_is_pt_packet(unsigned char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506{
507 return (buf[0] & 0xFC) == 0x84 && (buf[3] & 0xCC) == 0xC4;
508}
509
510static void synaptics_pass_pt_packet(struct serio *ptport, unsigned char *packet)
511{
512 struct psmouse *child = serio_get_drvdata(ptport);
513
514 if (child && child->state == PSMOUSE_ACTIVATED) {
David Howells7d12e782006-10-05 14:55:46 +0100515 serio_interrupt(ptport, packet[1], 0);
516 serio_interrupt(ptport, packet[4], 0);
517 serio_interrupt(ptport, packet[5], 0);
Sergey Vlasov33fdfa92005-07-24 00:53:32 -0500518 if (child->pktsize == 4)
David Howells7d12e782006-10-05 14:55:46 +0100519 serio_interrupt(ptport, packet[2], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 } else
David Howells7d12e782006-10-05 14:55:46 +0100521 serio_interrupt(ptport, packet[1], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522}
523
524static void synaptics_pt_activate(struct psmouse *psmouse)
525{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 struct synaptics_data *priv = psmouse->private;
Dmitry Torokhova8b3c0f2010-10-04 21:46:10 -0700527 struct psmouse *child = serio_get_drvdata(priv->pt_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
529 /* adjust the touchpad to child's choice of protocol */
530 if (child) {
Sergey Vlasov33fdfa92005-07-24 00:53:32 -0500531 if (child->pktsize == 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 priv->mode |= SYN_BIT_FOUR_BYTE_CLIENT;
533 else
534 priv->mode &= ~SYN_BIT_FOUR_BYTE_CLIENT;
535
536 if (synaptics_mode_cmd(psmouse, priv->mode))
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700537 psmouse_warn(psmouse,
538 "failed to switch guest protocol\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 }
540}
541
542static void synaptics_pt_create(struct psmouse *psmouse)
543{
544 struct serio *serio;
545
Eric Sesterhennb39787a2006-03-14 00:09:16 -0500546 serio = kzalloc(sizeof(struct serio), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 if (!serio) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700548 psmouse_err(psmouse,
549 "not enough memory for pass-through port\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 return;
551 }
552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 serio->id.type = SERIO_PS_PSTHRU;
554 strlcpy(serio->name, "Synaptics pass-through", sizeof(serio->name));
555 strlcpy(serio->phys, "synaptics-pt/serio0", sizeof(serio->name));
556 serio->write = synaptics_pt_write;
Dmitry Torokhova8b3c0f2010-10-04 21:46:10 -0700557 serio->start = synaptics_pt_start;
558 serio->stop = synaptics_pt_stop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 serio->parent = psmouse->ps2dev.serio;
560
561 psmouse->pt_activate = synaptics_pt_activate;
562
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700563 psmouse_info(psmouse, "serio: %s port at %s\n",
564 serio->name, psmouse->phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 serio_register_port(serio);
566}
567
568/*****************************************************************************
569 * Functions to interpret the absolute mode packets
570 ****************************************************************************/
571
Daniel Kurtz7afdb842011-08-23 23:00:33 -0700572static void synaptics_parse_agm(const unsigned char buf[],
Daniel Kurtza6ca40c2011-08-23 23:02:31 -0700573 struct synaptics_data *priv,
574 struct synaptics_hw_state *hw)
Daniel Kurtz7afdb842011-08-23 23:00:33 -0700575{
576 struct synaptics_hw_state *agm = &priv->agm;
Daniel Kurtza6ca40c2011-08-23 23:02:31 -0700577 int agm_packet_type;
Daniel Kurtz7afdb842011-08-23 23:00:33 -0700578
Daniel Kurtza6ca40c2011-08-23 23:02:31 -0700579 agm_packet_type = (buf[5] & 0x30) >> 4;
580 switch (agm_packet_type) {
581 case 1:
582 /* Gesture packet: (x, y, z) half resolution */
583 agm->w = hw->w;
584 agm->x = (((buf[4] & 0x0f) << 8) | buf[1]) << 1;
585 agm->y = (((buf[4] & 0xf0) << 4) | buf[2]) << 1;
586 agm->z = ((buf[3] & 0x30) | (buf[5] & 0x0f)) << 1;
587 break;
588
589 case 2:
Benjamin Tissoirese9e85202014-12-29 14:15:24 -0800590 /* AGM-CONTACT packet: we are only interested in the count */
591 priv->agm_count = buf[1];
Daniel Kurtza6ca40c2011-08-23 23:02:31 -0700592 break;
593
594 default:
595 break;
596 }
Daniel Kurtz7afdb842011-08-23 23:00:33 -0700597}
598
Dmitry Torokhovaa97240992014-09-02 09:49:18 -0700599static bool is_forcepad;
600
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100601static int synaptics_parse_hw_state(const unsigned char buf[],
602 struct synaptics_data *priv,
603 struct synaptics_hw_state *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604{
605 memset(hw, 0, sizeof(struct synaptics_hw_state));
606
607 if (SYN_MODEL_NEWABS(priv->model_id)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 hw->w = (((buf[0] & 0x30) >> 2) |
609 ((buf[0] & 0x04) >> 1) |
610 ((buf[3] & 0x04) >> 2));
611
Dmitry Torokhov5715fc72014-08-30 13:51:06 -0700612 if ((SYN_CAP_ADV_GESTURE(priv->ext_cap_0c) ||
613 SYN_CAP_IMAGE_SENSOR(priv->ext_cap_0c)) &&
614 hw->w == 2) {
615 synaptics_parse_agm(buf, priv, hw);
616 return 1;
617 }
618
619 hw->x = (((buf[3] & 0x10) << 8) |
620 ((buf[1] & 0x0f) << 8) |
621 buf[4]);
622 hw->y = (((buf[3] & 0x20) << 7) |
623 ((buf[1] & 0xf0) << 4) |
624 buf[5]);
625 hw->z = buf[2];
626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 hw->left = (buf[0] & 0x01) ? 1 : 0;
628 hw->right = (buf[0] & 0x02) ? 1 : 0;
629
Dmitry Torokhovaa97240992014-09-02 09:49:18 -0700630 if (is_forcepad) {
Dmitry Torokhov5715fc72014-08-30 13:51:06 -0700631 /*
632 * ForcePads, like Clickpads, use middle button
633 * bits to report primary button clicks.
634 * Unfortunately they report primary button not
635 * only when user presses on the pad above certain
636 * threshold, but also when there are more than one
637 * finger on the touchpad, which interferes with
638 * out multi-finger gestures.
639 */
640 if (hw->z == 0) {
641 /* No contacts */
642 priv->press = priv->report_press = false;
643 } else if (hw->w >= 4 && ((buf[0] ^ buf[3]) & 0x01)) {
644 /*
645 * Single-finger touch with pressure above
646 * the threshold. If pressure stays long
647 * enough, we'll start reporting primary
648 * button. We rely on the device continuing
649 * sending data even if finger does not
650 * move.
651 */
652 if (!priv->press) {
653 priv->press_start = jiffies;
654 priv->press = true;
655 } else if (time_after(jiffies,
656 priv->press_start +
657 msecs_to_jiffies(50))) {
658 priv->report_press = true;
659 }
660 } else {
661 priv->press = false;
662 }
663
664 hw->left = priv->report_press;
665
666 } else if (SYN_CAP_CLICKPAD(priv->ext_cap_0c)) {
Takashi Iwai5f57d672010-04-19 10:37:21 -0700667 /*
668 * Clickpad's button is transmitted as middle button,
669 * however, since it is primary button, we will report
670 * it as BTN_LEFT.
671 */
672 hw->left = ((buf[0] ^ buf[3]) & 0x01) ? 1 : 0;
673
674 } else if (SYN_CAP_MIDDLE_BUTTON(priv->capabilities)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 hw->middle = ((buf[0] ^ buf[3]) & 0x01) ? 1 : 0;
676 if (hw->w == 2)
677 hw->scroll = (signed char)(buf[1]);
678 }
679
680 if (SYN_CAP_FOUR_BUTTON(priv->capabilities)) {
681 hw->up = ((buf[0] ^ buf[3]) & 0x01) ? 1 : 0;
682 hw->down = ((buf[0] ^ buf[3]) & 0x02) ? 1 : 0;
683 }
684
685 if (SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap) &&
686 ((buf[0] ^ buf[3]) & 0x02)) {
687 switch (SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap) & ~0x01) {
688 default:
689 /*
690 * if nExtBtn is greater than 8 it should be
691 * considered invalid and treated as 0
692 */
693 break;
694 case 8:
695 hw->ext_buttons |= ((buf[5] & 0x08)) ? 0x80 : 0;
696 hw->ext_buttons |= ((buf[4] & 0x08)) ? 0x40 : 0;
697 case 6:
698 hw->ext_buttons |= ((buf[5] & 0x04)) ? 0x20 : 0;
699 hw->ext_buttons |= ((buf[4] & 0x04)) ? 0x10 : 0;
700 case 4:
701 hw->ext_buttons |= ((buf[5] & 0x02)) ? 0x08 : 0;
702 hw->ext_buttons |= ((buf[4] & 0x02)) ? 0x04 : 0;
703 case 2:
704 hw->ext_buttons |= ((buf[5] & 0x01)) ? 0x02 : 0;
705 hw->ext_buttons |= ((buf[4] & 0x01)) ? 0x01 : 0;
706 }
707 }
708 } else {
709 hw->x = (((buf[1] & 0x1f) << 8) | buf[2]);
710 hw->y = (((buf[4] & 0x1f) << 8) | buf[5]);
711
712 hw->z = (((buf[0] & 0x30) << 2) | (buf[3] & 0x3F));
713 hw->w = (((buf[1] & 0x80) >> 4) | ((buf[0] & 0x04) >> 1));
714
715 hw->left = (buf[0] & 0x01) ? 1 : 0;
716 hw->right = (buf[0] & 0x02) ? 1 : 0;
717 }
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100718
Seth Forshee824efd32012-09-28 10:29:21 -0700719 /*
720 * Convert wrap-around values to negative. (X|Y)_MAX_POSITIVE
721 * is used by some firmware to indicate a finger at the edge of
722 * the touchpad whose precise position cannot be determined, so
723 * convert these values to the maximum axis value.
724 */
Seth Forsheec03945062012-07-24 23:54:11 -0700725 if (hw->x > X_MAX_POSITIVE)
726 hw->x -= 1 << ABS_POS_BITS;
Seth Forshee824efd32012-09-28 10:29:21 -0700727 else if (hw->x == X_MAX_POSITIVE)
728 hw->x = XMAX;
729
Seth Forsheec03945062012-07-24 23:54:11 -0700730 if (hw->y > Y_MAX_POSITIVE)
731 hw->y -= 1 << ABS_POS_BITS;
Seth Forshee824efd32012-09-28 10:29:21 -0700732 else if (hw->y == Y_MAX_POSITIVE)
733 hw->y = YMAX;
Seth Forsheec03945062012-07-24 23:54:11 -0700734
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100735 return 0;
736}
737
Daniel Kurtzbea9f0f2011-07-06 22:42:52 -0700738static void synaptics_report_semi_mt_slot(struct input_dev *dev, int slot,
739 bool active, int x, int y)
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100740{
741 input_mt_slot(dev, slot);
742 input_mt_report_slot_state(dev, MT_TOOL_FINGER, active);
743 if (active) {
744 input_report_abs(dev, ABS_MT_POSITION_X, x);
Daniel Kurtz6de58dd2011-08-23 23:00:24 -0700745 input_report_abs(dev, ABS_MT_POSITION_Y, synaptics_invert_y(y));
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100746 }
747}
748
749static void synaptics_report_semi_mt_data(struct input_dev *dev,
750 const struct synaptics_hw_state *a,
751 const struct synaptics_hw_state *b,
752 int num_fingers)
753{
754 if (num_fingers >= 2) {
Daniel Kurtzbea9f0f2011-07-06 22:42:52 -0700755 synaptics_report_semi_mt_slot(dev, 0, true, min(a->x, b->x),
756 min(a->y, b->y));
757 synaptics_report_semi_mt_slot(dev, 1, true, max(a->x, b->x),
758 max(a->y, b->y));
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100759 } else if (num_fingers == 1) {
Daniel Kurtzbea9f0f2011-07-06 22:42:52 -0700760 synaptics_report_semi_mt_slot(dev, 0, true, a->x, a->y);
761 synaptics_report_semi_mt_slot(dev, 1, false, 0, 0);
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100762 } else {
Daniel Kurtzbea9f0f2011-07-06 22:42:52 -0700763 synaptics_report_semi_mt_slot(dev, 0, false, 0, 0);
764 synaptics_report_semi_mt_slot(dev, 1, false, 0, 0);
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100765 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766}
767
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700768static void synaptics_report_buttons(struct psmouse *psmouse,
769 const struct synaptics_hw_state *hw)
770{
771 struct input_dev *dev = psmouse->dev;
772 struct synaptics_data *priv = psmouse->private;
773 int i;
774
775 input_report_key(dev, BTN_LEFT, hw->left);
776 input_report_key(dev, BTN_RIGHT, hw->right);
777
778 if (SYN_CAP_MIDDLE_BUTTON(priv->capabilities))
779 input_report_key(dev, BTN_MIDDLE, hw->middle);
780
781 if (SYN_CAP_FOUR_BUTTON(priv->capabilities)) {
782 input_report_key(dev, BTN_FORWARD, hw->up);
783 input_report_key(dev, BTN_BACK, hw->down);
784 }
785
786 for (i = 0; i < SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap); i++)
787 input_report_key(dev, BTN_0 + i, hw->ext_buttons & (1 << i));
788}
789
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700790static void synaptics_report_mt_data(struct psmouse *psmouse,
Benjamin Tissoirese9e85202014-12-29 14:15:24 -0800791 const struct synaptics_hw_state *sgm,
792 int num_fingers)
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700793{
794 struct input_dev *dev = psmouse->dev;
795 struct synaptics_data *priv = psmouse->private;
Benjamin Tissoirese9e85202014-12-29 14:15:24 -0800796 const struct synaptics_hw_state *hw[2] = { sgm, &priv->agm };
797 struct input_mt_pos pos[2];
798 int slot[2], nsemi, i;
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700799
Benjamin Tissoirese9e85202014-12-29 14:15:24 -0800800 nsemi = clamp_val(num_fingers, 0, 2);
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700801
Benjamin Tissoirese9e85202014-12-29 14:15:24 -0800802 for (i = 0; i < nsemi; i++) {
803 pos[i].x = hw[i]->x;
804 pos[i].y = synaptics_invert_y(hw[i]->y);
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700805 }
806
Benjamin Tissoirese9e85202014-12-29 14:15:24 -0800807 input_mt_assign_slots(dev, slot, pos, nsemi);
808
809 for (i = 0; i < nsemi; i++) {
810 input_mt_slot(dev, slot[i]);
811 input_mt_report_slot_state(dev, MT_TOOL_FINGER, true);
812 input_report_abs(dev, ABS_MT_POSITION_X, pos[i].x);
813 input_report_abs(dev, ABS_MT_POSITION_Y, pos[i].y);
814 input_report_abs(dev, ABS_MT_PRESSURE, hw[i]->z);
815 }
816
817 input_mt_drop_unused(dev);
818
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700819 /* Don't use active slot count to generate BTN_TOOL events. */
820 input_mt_report_pointer_emulation(dev, false);
821
822 /* Send the number of fingers reported by touchpad itself. */
Benjamin Tissoirese9e85202014-12-29 14:15:24 -0800823 input_mt_report_finger_count(dev, num_fingers);
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700824
825 synaptics_report_buttons(psmouse, sgm);
826
827 input_sync(dev);
828}
829
830static void synaptics_image_sensor_process(struct psmouse *psmouse,
831 struct synaptics_hw_state *sgm)
832{
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700833 struct synaptics_data *priv = psmouse->private;
Benjamin Tissoirese9e85202014-12-29 14:15:24 -0800834 int num_fingers;
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700835
836 /*
837 * Update mt_state using the new finger count and current mt_state.
838 */
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700839 if (sgm->z == 0)
Benjamin Tissoirese9e85202014-12-29 14:15:24 -0800840 num_fingers = 0;
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700841 else if (sgm->w >= 4)
Benjamin Tissoirese9e85202014-12-29 14:15:24 -0800842 num_fingers = 1;
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700843 else if (sgm->w == 0)
Benjamin Tissoirese9e85202014-12-29 14:15:24 -0800844 num_fingers = 2;
845 else if (sgm->w == 1)
846 num_fingers = priv->agm_count ? priv->agm_count : 3;
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -0700847 else
Benjamin Tissoirese9e85202014-12-29 14:15:24 -0800848 num_fingers = 4;
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700849
850 /* Send resulting input events to user space */
Benjamin Tissoirese9e85202014-12-29 14:15:24 -0800851 synaptics_report_mt_data(psmouse, sgm, num_fingers);
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700852}
853
Henrik Rydberge08d9af2014-07-14 10:26:56 -0700854static void synaptics_profile_sensor_process(struct psmouse *psmouse,
855 struct synaptics_hw_state *sgm,
856 int num_fingers)
857{
858 struct input_dev *dev = psmouse->dev;
859 struct synaptics_data *priv = psmouse->private;
860 struct synaptics_hw_state *hw[2] = { sgm, &priv->agm };
861 struct input_mt_pos pos[2];
862 int slot[2], nsemi, i;
863
864 nsemi = clamp_val(num_fingers, 0, 2);
865
866 for (i = 0; i < nsemi; i++) {
867 pos[i].x = hw[i]->x;
868 pos[i].y = synaptics_invert_y(hw[i]->y);
869 }
870
871 input_mt_assign_slots(dev, slot, pos, nsemi);
872
873 for (i = 0; i < nsemi; i++) {
874 input_mt_slot(dev, slot[i]);
875 input_mt_report_slot_state(dev, MT_TOOL_FINGER, true);
876 input_report_abs(dev, ABS_MT_POSITION_X, pos[i].x);
877 input_report_abs(dev, ABS_MT_POSITION_Y, pos[i].y);
878 input_report_abs(dev, ABS_MT_PRESSURE, hw[i]->z);
879 }
880
881 input_mt_drop_unused(dev);
882 input_mt_report_pointer_emulation(dev, false);
883 input_mt_report_finger_count(dev, num_fingers);
884
885 synaptics_report_buttons(psmouse, sgm);
886
887 input_sync(dev);
888}
889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890/*
891 * called for each full received packet from the touchpad
892 */
893static void synaptics_process_packet(struct psmouse *psmouse)
894{
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -0500895 struct input_dev *dev = psmouse->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 struct synaptics_data *priv = psmouse->private;
897 struct synaptics_hw_state hw;
898 int num_fingers;
899 int finger_width;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100901 if (synaptics_parse_hw_state(psmouse->packet, priv, &hw))
902 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700904 if (SYN_CAP_IMAGE_SENSOR(priv->ext_cap_0c)) {
905 synaptics_image_sensor_process(psmouse, &hw);
906 return;
907 }
908
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 if (hw.scroll) {
910 priv->scroll += hw.scroll;
911
912 while (priv->scroll >= 4) {
913 input_report_key(dev, BTN_BACK, !hw.down);
914 input_sync(dev);
915 input_report_key(dev, BTN_BACK, hw.down);
916 input_sync(dev);
917 priv->scroll -= 4;
918 }
919 while (priv->scroll <= -4) {
920 input_report_key(dev, BTN_FORWARD, !hw.up);
921 input_sync(dev);
922 input_report_key(dev, BTN_FORWARD, hw.up);
923 input_sync(dev);
924 priv->scroll += 4;
925 }
926 return;
927 }
928
Henrik Rydberg4f56ce92010-12-18 15:42:30 +0100929 if (hw.z > 0 && hw.x > 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 num_fingers = 1;
931 finger_width = 5;
932 if (SYN_CAP_EXTENDED(priv->capabilities)) {
933 switch (hw.w) {
934 case 0 ... 1:
935 if (SYN_CAP_MULTIFINGER(priv->capabilities))
936 num_fingers = hw.w + 2;
937 break;
938 case 2:
939 if (SYN_MODEL_PEN(priv->model_id))
940 ; /* Nothing, treat a pen as a single finger */
941 break;
942 case 4 ... 15:
943 if (SYN_CAP_PALMDETECT(priv->capabilities))
944 finger_width = hw.w;
945 break;
946 }
947 }
948 } else {
949 num_fingers = 0;
950 finger_width = 0;
951 }
952
Henrik Rydberge08d9af2014-07-14 10:26:56 -0700953 if (cr48_profile_sensor) {
954 synaptics_profile_sensor_process(psmouse, &hw, num_fingers);
955 return;
956 }
957
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100958 if (SYN_CAP_ADV_GESTURE(priv->ext_cap_0c))
Daniel Kurtz7afdb842011-08-23 23:00:33 -0700959 synaptics_report_semi_mt_data(dev, &hw, &priv->agm,
960 num_fingers);
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 /* Post events
963 * BTN_TOUCH has to be first as mousedev relies on it when doing
964 * absolute -> relative conversion
965 */
966 if (hw.z > 30) input_report_key(dev, BTN_TOUCH, 1);
967 if (hw.z < 25) input_report_key(dev, BTN_TOUCH, 0);
968
Henrik Rydberg4f56ce92010-12-18 15:42:30 +0100969 if (num_fingers > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 input_report_abs(dev, ABS_X, hw.x);
Daniel Kurtz6de58dd2011-08-23 23:00:24 -0700971 input_report_abs(dev, ABS_Y, synaptics_invert_y(hw.y));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 }
973 input_report_abs(dev, ABS_PRESSURE, hw.z);
974
Chris Bagwell2a8e7712010-07-19 09:06:15 -0700975 if (SYN_CAP_PALMDETECT(priv->capabilities))
976 input_report_abs(dev, ABS_TOOL_WIDTH, finger_width);
977
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 input_report_key(dev, BTN_TOOL_FINGER, num_fingers == 1);
Peter Hutterere42b6642008-11-20 15:24:42 -0500979 if (SYN_CAP_MULTIFINGER(priv->capabilities)) {
980 input_report_key(dev, BTN_TOOL_DOUBLETAP, num_fingers == 2);
981 input_report_key(dev, BTN_TOOL_TRIPLETAP, num_fingers == 3);
982 }
983
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700984 synaptics_report_buttons(psmouse, &hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
986 input_sync(dev);
987}
988
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700989static int synaptics_validate_byte(struct psmouse *psmouse,
990 int idx, unsigned char pkt_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991{
Helge Dellere38de672006-09-10 21:54:39 -0400992 static const unsigned char newabs_mask[] = { 0xC8, 0x00, 0x00, 0xC8, 0x00 };
993 static const unsigned char newabs_rel_mask[] = { 0xC0, 0x00, 0x00, 0xC0, 0x00 };
994 static const unsigned char newabs_rslt[] = { 0x80, 0x00, 0x00, 0xC0, 0x00 };
995 static const unsigned char oldabs_mask[] = { 0xC0, 0x60, 0x00, 0xC0, 0x60 };
996 static const unsigned char oldabs_rslt[] = { 0xC0, 0x00, 0x00, 0x80, 0x00 };
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700997 const char *packet = psmouse->packet;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
999 if (idx < 0 || idx > 4)
1000 return 0;
1001
1002 switch (pkt_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
Dmitry Torokhova62f0d22010-05-19 10:39:17 -07001004 case SYN_NEWABS:
1005 case SYN_NEWABS_RELAXED:
1006 return (packet[idx] & newabs_rel_mask[idx]) == newabs_rslt[idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
Dmitry Torokhova62f0d22010-05-19 10:39:17 -07001008 case SYN_NEWABS_STRICT:
1009 return (packet[idx] & newabs_mask[idx]) == newabs_rslt[idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
Dmitry Torokhova62f0d22010-05-19 10:39:17 -07001011 case SYN_OLDABS:
1012 return (packet[idx] & oldabs_mask[idx]) == oldabs_rslt[idx];
1013
1014 default:
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001015 psmouse_err(psmouse, "unknown packet type %d\n", pkt_type);
Dmitry Torokhova62f0d22010-05-19 10:39:17 -07001016 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 }
1018}
1019
1020static unsigned char synaptics_detect_pkt_type(struct psmouse *psmouse)
1021{
1022 int i;
1023
1024 for (i = 0; i < 5; i++)
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001025 if (!synaptics_validate_byte(psmouse, i, SYN_NEWABS_STRICT)) {
1026 psmouse_info(psmouse, "using relaxed packet validation\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 return SYN_NEWABS_RELAXED;
1028 }
1029
1030 return SYN_NEWABS_STRICT;
1031}
1032
David Howells7d12e782006-10-05 14:55:46 +01001033static psmouse_ret_t synaptics_process_byte(struct psmouse *psmouse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 struct synaptics_data *priv = psmouse->private;
1036
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 if (psmouse->pktcnt >= 6) { /* Full packet received */
1038 if (unlikely(priv->pkt_type == SYN_NEWABS))
1039 priv->pkt_type = synaptics_detect_pkt_type(psmouse);
1040
Dmitry Torokhova8b3c0f2010-10-04 21:46:10 -07001041 if (SYN_CAP_PASS_THROUGH(priv->capabilities) &&
1042 synaptics_is_pt_packet(psmouse->packet)) {
1043 if (priv->pt_port)
1044 synaptics_pass_pt_packet(priv->pt_port, psmouse->packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 } else
1046 synaptics_process_packet(psmouse);
1047
1048 return PSMOUSE_FULL_PACKET;
1049 }
1050
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001051 return synaptics_validate_byte(psmouse, psmouse->pktcnt - 1, priv->pkt_type) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 PSMOUSE_GOOD_DATA : PSMOUSE_BAD_DATA;
1053}
1054
1055/*****************************************************************************
1056 * Driver initialization/cleanup functions
1057 ****************************************************************************/
Daniel Kurtz85615472011-08-23 23:00:41 -07001058static void set_abs_position_params(struct input_dev *dev,
1059 struct synaptics_data *priv, int x_code,
1060 int y_code)
1061{
1062 int x_min = priv->x_min ?: XMIN_NOMINAL;
1063 int x_max = priv->x_max ?: XMAX_NOMINAL;
1064 int y_min = priv->y_min ?: YMIN_NOMINAL;
1065 int y_max = priv->y_max ?: YMAX_NOMINAL;
1066 int fuzz = SYN_CAP_REDUCED_FILTERING(priv->ext_cap_0c) ?
1067 SYN_REDUCED_FILTER_FUZZ : 0;
1068
1069 input_set_abs_params(dev, x_code, x_min, x_max, fuzz, 0);
1070 input_set_abs_params(dev, y_code, y_min, y_max, fuzz, 0);
1071 input_abs_set_res(dev, x_code, priv->x_res);
1072 input_abs_set_res(dev, y_code, priv->y_res);
1073}
1074
Hans de Goede43e19882014-04-19 22:26:41 -07001075static void set_input_params(struct psmouse *psmouse,
1076 struct synaptics_data *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077{
Hans de Goede43e19882014-04-19 22:26:41 -07001078 struct input_dev *dev = psmouse->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 int i;
1080
Daniel Drake7968a5d2011-11-08 00:00:35 -08001081 /* Things that apply to both modes */
Henrik Rydbergc14890a2010-12-16 09:52:23 +01001082 __set_bit(INPUT_PROP_POINTER, dev->propbit);
Daniel Drake7968a5d2011-11-08 00:00:35 -08001083 __set_bit(EV_KEY, dev->evbit);
1084 __set_bit(BTN_LEFT, dev->keybit);
1085 __set_bit(BTN_RIGHT, dev->keybit);
Henrik Rydbergc14890a2010-12-16 09:52:23 +01001086
Daniel Drake7968a5d2011-11-08 00:00:35 -08001087 if (SYN_CAP_MIDDLE_BUTTON(priv->capabilities))
1088 __set_bit(BTN_MIDDLE, dev->keybit);
1089
1090 if (!priv->absolute_mode) {
1091 /* Relative mode */
1092 __set_bit(EV_REL, dev->evbit);
1093 __set_bit(REL_X, dev->relbit);
1094 __set_bit(REL_Y, dev->relbit);
1095 return;
1096 }
1097
1098 /* Absolute mode */
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001099 __set_bit(EV_ABS, dev->evbit);
Daniel Kurtz85615472011-08-23 23:00:41 -07001100 set_abs_position_params(dev, priv, ABS_X, ABS_Y);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 input_set_abs_params(dev, ABS_PRESSURE, 0, 255, 0, 0);
Chris Bagwell2a8e7712010-07-19 09:06:15 -07001102
Henrik Rydberge08d9af2014-07-14 10:26:56 -07001103 if (cr48_profile_sensor)
1104 input_set_abs_params(dev, ABS_MT_PRESSURE, 0, 255, 0, 0);
1105
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001106 if (SYN_CAP_IMAGE_SENSOR(priv->ext_cap_0c)) {
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001107 set_abs_position_params(dev, priv, ABS_MT_POSITION_X,
1108 ABS_MT_POSITION_Y);
1109 /* Image sensors can report per-contact pressure */
1110 input_set_abs_params(dev, ABS_MT_PRESSURE, 0, 255, 0, 0);
Benjamin Tissoirese9e85202014-12-29 14:15:24 -08001111 input_mt_init_slots(dev, 2, INPUT_MT_POINTER | INPUT_MT_TRACK);
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -07001112
1113 /* Image sensors can signal 4 and 5 finger clicks */
1114 __set_bit(BTN_TOOL_QUADTAP, dev->keybit);
1115 __set_bit(BTN_TOOL_QUINTTAP, dev->keybit);
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001116 } else if (SYN_CAP_ADV_GESTURE(priv->ext_cap_0c)) {
Daniel Kurtz85615472011-08-23 23:00:41 -07001117 set_abs_position_params(dev, priv, ABS_MT_POSITION_X,
1118 ABS_MT_POSITION_Y);
Henrik Rydberge08d9af2014-07-14 10:26:56 -07001119 /*
1120 * Profile sensor in CR-48 tracks contacts reasonably well,
1121 * other non-image sensors with AGM use semi-mt.
1122 */
Dmitry Torokhovae841972014-07-25 17:12:12 -07001123 input_mt_init_slots(dev, 2,
Henrik Rydberge08d9af2014-07-14 10:26:56 -07001124 INPUT_MT_POINTER |
1125 (cr48_profile_sensor ?
1126 INPUT_MT_TRACK : INPUT_MT_SEMI_MT));
Henrik Rydbergfec6e522010-12-21 18:11:25 +01001127 }
1128
Chris Bagwell2a8e7712010-07-19 09:06:15 -07001129 if (SYN_CAP_PALMDETECT(priv->capabilities))
Chris Bagwell58fb0212010-07-19 09:06:15 -07001130 input_set_abs_params(dev, ABS_TOOL_WIDTH, 0, 15, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001132 __set_bit(BTN_TOUCH, dev->keybit);
1133 __set_bit(BTN_TOOL_FINGER, dev->keybit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
Peter Hutterere42b6642008-11-20 15:24:42 -05001135 if (SYN_CAP_MULTIFINGER(priv->capabilities)) {
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001136 __set_bit(BTN_TOOL_DOUBLETAP, dev->keybit);
1137 __set_bit(BTN_TOOL_TRIPLETAP, dev->keybit);
Peter Hutterere42b6642008-11-20 15:24:42 -05001138 }
1139
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 if (SYN_CAP_FOUR_BUTTON(priv->capabilities) ||
1141 SYN_CAP_MIDDLE_BUTTON(priv->capabilities)) {
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001142 __set_bit(BTN_FORWARD, dev->keybit);
1143 __set_bit(BTN_BACK, dev->keybit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 }
1145
1146 for (i = 0; i < SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap); i++)
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001147 __set_bit(BTN_0 + i, dev->keybit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001149 __clear_bit(EV_REL, dev->evbit);
1150 __clear_bit(REL_X, dev->relbit);
1151 __clear_bit(REL_Y, dev->relbit);
Tero Saarniec20a022009-06-10 23:27:24 -07001152
Takashi Iwai5f57d672010-04-19 10:37:21 -07001153 if (SYN_CAP_CLICKPAD(priv->ext_cap_0c)) {
Henrik Rydbergc14890a2010-12-16 09:52:23 +01001154 __set_bit(INPUT_PROP_BUTTONPAD, dev->propbit);
Hans de Goede2c75ada2014-09-11 10:14:09 -07001155 if (psmouse_matches_pnp_id(psmouse, topbuttonpad_pnp_ids))
Hans de Goedee2f61102014-05-19 22:53:23 -07001156 __set_bit(INPUT_PROP_TOPBUTTONPAD, dev->propbit);
Takashi Iwai5f57d672010-04-19 10:37:21 -07001157 /* Clickpads report only left button */
1158 __clear_bit(BTN_RIGHT, dev->keybit);
1159 __clear_bit(BTN_MIDDLE, dev->keybit);
1160 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161}
1162
Daniel Drake7968a5d2011-11-08 00:00:35 -08001163static ssize_t synaptics_show_disable_gesture(struct psmouse *psmouse,
1164 void *data, char *buf)
1165{
1166 struct synaptics_data *priv = psmouse->private;
1167
1168 return sprintf(buf, "%c\n", priv->disable_gesture ? '1' : '0');
1169}
1170
1171static ssize_t synaptics_set_disable_gesture(struct psmouse *psmouse,
1172 void *data, const char *buf,
1173 size_t len)
1174{
1175 struct synaptics_data *priv = psmouse->private;
1176 unsigned int value;
1177 int err;
1178
1179 err = kstrtouint(buf, 10, &value);
1180 if (err)
1181 return err;
1182
1183 if (value > 1)
1184 return -EINVAL;
1185
1186 if (value == priv->disable_gesture)
1187 return len;
1188
1189 priv->disable_gesture = value;
1190 if (value)
1191 priv->mode |= SYN_BIT_DISABLE_GESTURE;
1192 else
1193 priv->mode &= ~SYN_BIT_DISABLE_GESTURE;
1194
1195 if (synaptics_mode_cmd(psmouse, priv->mode))
1196 return -EIO;
1197
1198 return len;
1199}
1200
1201PSMOUSE_DEFINE_ATTR(disable_gesture, S_IWUSR | S_IRUGO, NULL,
1202 synaptics_show_disable_gesture,
1203 synaptics_set_disable_gesture);
1204
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205static void synaptics_disconnect(struct psmouse *psmouse)
1206{
Daniel Drake7968a5d2011-11-08 00:00:35 -08001207 struct synaptics_data *priv = psmouse->private;
1208
1209 if (!priv->absolute_mode && SYN_ID_DISGEST_SUPPORTED(priv->identity))
1210 device_remove_file(&psmouse->ps2dev.serio->dev,
1211 &psmouse_attr_disable_gesture.dattr);
1212
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 synaptics_reset(psmouse);
Daniel Drake7968a5d2011-11-08 00:00:35 -08001214 kfree(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 psmouse->private = NULL;
1216}
1217
1218static int synaptics_reconnect(struct psmouse *psmouse)
1219{
1220 struct synaptics_data *priv = psmouse->private;
1221 struct synaptics_data old_priv = *priv;
Eric Miaoeeb06552013-06-04 09:30:55 -07001222 unsigned char param[2];
Alexandre Peixoto Ferreirac63fe0a2011-01-28 22:05:14 -08001223 int retry = 0;
1224 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
Alexandre Peixoto Ferreirac63fe0a2011-01-28 22:05:14 -08001226 do {
1227 psmouse_reset(psmouse);
Dmitry Torokhov85214782011-12-12 00:05:53 -08001228 if (retry) {
1229 /*
1230 * On some boxes, right after resuming, the touchpad
1231 * needs some time to finish initializing (I assume
1232 * it needs time to calibrate) and start responding
1233 * to Synaptics-specific queries, so let's wait a
1234 * bit.
1235 */
1236 ssleep(1);
1237 }
Eric Miaoeeb06552013-06-04 09:30:55 -07001238 ps2_command(&psmouse->ps2dev, param, PSMOUSE_CMD_GETID);
Alexandre Peixoto Ferreirac63fe0a2011-01-28 22:05:14 -08001239 error = synaptics_detect(psmouse, 0);
1240 } while (error && ++retry < 3);
Andy Whitcroft4d368452009-02-28 12:51:01 -08001241
Alexandre Peixoto Ferreirac63fe0a2011-01-28 22:05:14 -08001242 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 return -1;
1244
Alexandre Peixoto Ferreirac63fe0a2011-01-28 22:05:14 -08001245 if (retry > 1)
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001246 psmouse_dbg(psmouse, "reconnected after %d tries\n", retry);
Alexandre Peixoto Ferreirac63fe0a2011-01-28 22:05:14 -08001247
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 if (synaptics_query_hardware(psmouse)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001249 psmouse_err(psmouse, "Unable to query device.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 return -1;
1251 }
1252
Daniel Drake7968a5d2011-11-08 00:00:35 -08001253 if (synaptics_set_mode(psmouse)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001254 psmouse_err(psmouse, "Unable to initialize device.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 return -1;
1256 }
1257
Alexandre Peixoto Ferreirabaddf582011-01-28 22:05:14 -08001258 if (old_priv.identity != priv->identity ||
1259 old_priv.model_id != priv->model_id ||
1260 old_priv.capabilities != priv->capabilities ||
1261 old_priv.ext_cap != priv->ext_cap) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001262 psmouse_err(psmouse,
1263 "hardware appears to be different: id(%ld-%ld), model(%ld-%ld), caps(%lx-%lx), ext(%lx-%lx).\n",
1264 old_priv.identity, priv->identity,
1265 old_priv.model_id, priv->model_id,
1266 old_priv.capabilities, priv->capabilities,
1267 old_priv.ext_cap, priv->ext_cap);
Alexandre Peixoto Ferreirabaddf582011-01-28 22:05:14 -08001268 return -1;
1269 }
1270
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 return 0;
1272}
1273
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001274static bool impaired_toshiba_kbc;
1275
Sachin Kamatc9631562013-08-12 11:05:58 -07001276static const struct dmi_system_id toshiba_dmi_table[] __initconst = {
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001277#if defined(CONFIG_DMI) && defined(CONFIG_X86)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 {
Dmitry Torokhov9961e252009-12-04 10:24:20 -08001279 /* Toshiba Satellite */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 .matches = {
1281 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
Richard Thrippleton53a26702006-04-02 00:10:18 -05001282 DMI_MATCH(DMI_PRODUCT_NAME, "Satellite"),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 },
1284 },
Simon Horman9ba5eaa2005-07-11 01:07:20 -05001285 {
Dmitry Torokhov9961e252009-12-04 10:24:20 -08001286 /* Toshiba Dynabook */
Simon Horman9ba5eaa2005-07-11 01:07:20 -05001287 .matches = {
1288 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
Richard Thrippleton53a26702006-04-02 00:10:18 -05001289 DMI_MATCH(DMI_PRODUCT_NAME, "dynabook"),
1290 },
1291 },
1292 {
Dmitry Torokhov9961e252009-12-04 10:24:20 -08001293 /* Toshiba Portege M300 */
Richard Thrippleton53a26702006-04-02 00:10:18 -05001294 .matches = {
1295 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1296 DMI_MATCH(DMI_PRODUCT_NAME, "PORTEGE M300"),
Simon Horman9ba5eaa2005-07-11 01:07:20 -05001297 },
Dmitry Torokhov5f5eeff2009-10-12 21:35:00 -07001298
1299 },
1300 {
Dmitry Torokhov9961e252009-12-04 10:24:20 -08001301 /* Toshiba Portege M300 */
Dmitry Torokhov5f5eeff2009-10-12 21:35:00 -07001302 .matches = {
1303 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1304 DMI_MATCH(DMI_PRODUCT_NAME, "Portable PC"),
1305 DMI_MATCH(DMI_PRODUCT_VERSION, "Version 1.0"),
1306 },
1307
Simon Horman9ba5eaa2005-07-11 01:07:20 -05001308 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309#endif
Jan Beulich70874862011-03-31 00:01:58 -07001310 { }
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001311};
1312
Andres Salomonef8313b2010-12-23 01:19:38 -08001313static bool broken_olpc_ec;
1314
Sachin Kamatc9631562013-08-12 11:05:58 -07001315static const struct dmi_system_id olpc_dmi_table[] __initconst = {
Andres Salomonef8313b2010-12-23 01:19:38 -08001316#if defined(CONFIG_DMI) && defined(CONFIG_OLPC)
1317 {
1318 /* OLPC XO-1 or XO-1.5 */
1319 .matches = {
1320 DMI_MATCH(DMI_SYS_VENDOR, "OLPC"),
1321 DMI_MATCH(DMI_PRODUCT_NAME, "XO"),
1322 },
1323 },
Andres Salomonef8313b2010-12-23 01:19:38 -08001324#endif
Jan Beulich70874862011-03-31 00:01:58 -07001325 { }
Andres Salomonef8313b2010-12-23 01:19:38 -08001326};
1327
Henrik Rydberge08d9af2014-07-14 10:26:56 -07001328static const struct dmi_system_id __initconst cr48_dmi_table[] = {
1329#if defined(CONFIG_DMI) && defined(CONFIG_X86)
1330 {
1331 /* Cr-48 Chromebook (Codename Mario) */
1332 .matches = {
1333 DMI_MATCH(DMI_SYS_VENDOR, "IEC"),
1334 DMI_MATCH(DMI_PRODUCT_NAME, "Mario"),
1335 },
1336 },
1337#endif
1338 { }
1339};
1340
Dmitry Torokhovaa97240992014-09-02 09:49:18 -07001341static const struct dmi_system_id forcepad_dmi_table[] __initconst = {
1342#if defined(CONFIG_DMI) && defined(CONFIG_X86)
1343 {
1344 .matches = {
1345 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1346 DMI_MATCH(DMI_PRODUCT_NAME, "HP EliteBook Folio 1040 G1"),
1347 },
1348 },
1349#endif
1350 { }
1351};
1352
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001353void __init synaptics_module_init(void)
1354{
1355 impaired_toshiba_kbc = dmi_check_system(toshiba_dmi_table);
Andres Salomonef8313b2010-12-23 01:19:38 -08001356 broken_olpc_ec = dmi_check_system(olpc_dmi_table);
Henrik Rydberge08d9af2014-07-14 10:26:56 -07001357 cr48_profile_sensor = dmi_check_system(cr48_dmi_table);
Dmitry Torokhovaa97240992014-09-02 09:49:18 -07001358
1359 /*
1360 * Unfortunately ForcePad capability is not exported over PS/2,
1361 * so we have to resort to checking DMI.
1362 */
1363 is_forcepad = dmi_check_system(forcepad_dmi_table);
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001364}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
Daniel Drake7968a5d2011-11-08 00:00:35 -08001366static int __synaptics_init(struct psmouse *psmouse, bool absolute_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367{
1368 struct synaptics_data *priv;
Daniel Drake7968a5d2011-11-08 00:00:35 -08001369 int err = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Andres Salomonef8313b2010-12-23 01:19:38 -08001371 /*
Daniel Drake83551c02011-11-11 16:05:04 -08001372 * The OLPC XO has issues with Synaptics' absolute mode; the constant
1373 * packet spew overloads the EC such that key presses on the keyboard
1374 * are missed. Given that, don't even attempt to use Absolute mode.
1375 * Relative mode seems to work just fine.
Andres Salomonef8313b2010-12-23 01:19:38 -08001376 */
Daniel Drake83551c02011-11-11 16:05:04 -08001377 if (absolute_mode && broken_olpc_ec) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001378 psmouse_info(psmouse,
1379 "OLPC XO detected, not enabling Synaptics protocol.\n");
Andres Salomonef8313b2010-12-23 01:19:38 -08001380 return -ENODEV;
1381 }
1382
Eric Sesterhennb39787a2006-03-14 00:09:16 -05001383 psmouse->private = priv = kzalloc(sizeof(struct synaptics_data), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 if (!priv)
Davidlohr Bueso6792cbb2010-09-29 18:53:35 -07001385 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
Andy Whitcroft4d368452009-02-28 12:51:01 -08001387 psmouse_reset(psmouse);
1388
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 if (synaptics_query_hardware(psmouse)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001390 psmouse_err(psmouse, "Unable to query device.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 goto init_fail;
1392 }
1393
Daniel Drake7968a5d2011-11-08 00:00:35 -08001394 priv->absolute_mode = absolute_mode;
1395 if (SYN_ID_DISGEST_SUPPORTED(priv->identity))
1396 priv->disable_gesture = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
Daniel Drake7968a5d2011-11-08 00:00:35 -08001398 if (synaptics_set_mode(psmouse)) {
1399 psmouse_err(psmouse, "Unable to initialize device.\n");
Henrik Rydbergfec6e522010-12-21 18:11:25 +01001400 goto init_fail;
1401 }
1402
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 priv->pkt_type = SYN_MODEL_NEWABS(priv->model_id) ? SYN_NEWABS : SYN_OLDABS;
1404
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001405 psmouse_info(psmouse,
Daniel Kurtzc6bd9d42012-07-07 18:08:51 -07001406 "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 -07001407 SYN_ID_MODEL(priv->identity),
1408 SYN_ID_MAJOR(priv->identity), SYN_ID_MINOR(priv->identity),
1409 priv->model_id,
Daniel Kurtzc6bd9d42012-07-07 18:08:51 -07001410 priv->capabilities, priv->ext_cap, priv->ext_cap_0c,
1411 priv->board_id, priv->firmware_id);
Dmitry Torokhov409b7502005-05-28 02:12:18 -05001412
Hans de Goede43e19882014-04-19 22:26:41 -07001413 set_input_params(psmouse, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
Dmitry Torokhov887cc122007-04-12 01:30:41 -04001415 /*
1416 * Encode touchpad model so that it can be used to set
1417 * input device->id.version and be visible to userspace.
1418 * Because version is __u16 we have to drop something.
1419 * Hardware info bits seem to be good candidates as they
1420 * are documented to be for Synaptics corp. internal use.
1421 */
1422 psmouse->model = ((priv->model_id & 0x00ff0000) >> 8) |
1423 (priv->model_id & 0x000000ff);
1424
Daniel Drake7968a5d2011-11-08 00:00:35 -08001425 if (absolute_mode) {
1426 psmouse->protocol_handler = synaptics_process_byte;
1427 psmouse->pktsize = 6;
1428 } else {
1429 /* Relative mode follows standard PS/2 mouse protocol */
1430 psmouse->protocol_handler = psmouse_process_byte;
1431 psmouse->pktsize = 3;
1432 }
1433
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 psmouse->set_rate = synaptics_set_rate;
1435 psmouse->disconnect = synaptics_disconnect;
1436 psmouse->reconnect = synaptics_reconnect;
Dmitry Torokhova1cec062007-02-18 01:40:24 -05001437 psmouse->cleanup = synaptics_reset;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001438 /* Synaptics can usually stay in sync without extra help */
1439 psmouse->resync_time = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
1441 if (SYN_CAP_PASS_THROUGH(priv->capabilities))
1442 synaptics_pt_create(psmouse);
1443
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 /*
1445 * Toshiba's KBC seems to have trouble handling data from
Andres Salomon7ee99162010-12-23 01:18:28 -08001446 * Synaptics at full rate. Switch to a lower rate (roughly
1447 * the same rate as a standard PS/2 mouse).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 */
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001449 if (psmouse->rate >= 80 && impaired_toshiba_kbc) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001450 psmouse_info(psmouse,
1451 "Toshiba %s detected, limiting rate to 40pps.\n",
1452 dmi_get_system_info(DMI_PRODUCT_NAME));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 psmouse->rate = 40;
1454 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
Daniel Drake7968a5d2011-11-08 00:00:35 -08001456 if (!priv->absolute_mode && SYN_ID_DISGEST_SUPPORTED(priv->identity)) {
1457 err = device_create_file(&psmouse->ps2dev.serio->dev,
1458 &psmouse_attr_disable_gesture.dattr);
1459 if (err) {
1460 psmouse_err(psmouse,
1461 "Failed to create disable_gesture attribute (%d)",
1462 err);
1463 goto init_fail;
1464 }
1465 }
1466
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 return 0;
1468
1469 init_fail:
1470 kfree(priv);
Daniel Drake7968a5d2011-11-08 00:00:35 -08001471 return err;
1472}
1473
1474int synaptics_init(struct psmouse *psmouse)
1475{
1476 return __synaptics_init(psmouse, true);
1477}
1478
1479int synaptics_init_relative(struct psmouse *psmouse)
1480{
1481 return __synaptics_init(psmouse, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482}
1483
Daniel Drakee4e6efd2010-01-07 01:52:39 -08001484bool synaptics_supported(void)
1485{
1486 return true;
1487}
1488
Andres Salomon55e3d922007-03-10 01:39:54 -05001489#else /* CONFIG_MOUSE_PS2_SYNAPTICS */
1490
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001491void __init synaptics_module_init(void)
1492{
1493}
1494
Andres Salomon55e3d922007-03-10 01:39:54 -05001495int synaptics_init(struct psmouse *psmouse)
1496{
1497 return -ENOSYS;
1498}
1499
Daniel Drakee4e6efd2010-01-07 01:52:39 -08001500bool synaptics_supported(void)
1501{
1502 return false;
1503}
1504
Andres Salomon55e3d922007-03-10 01:39:54 -05001505#endif /* CONFIG_MOUSE_PS2_SYNAPTICS */