blob: 326e19459ee6df4e2704bee01a7819ea884aec17 [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 Forsheeba37c702012-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 Forsheeba37c702012-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 Forsheead4751d2012-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 Forsheeba37c702012-07-24 23:54:11 -070066 */
Seth Forsheead4751d2012-09-28 10:29:21 -070067#define X_MAX_POSITIVE 8176
68#define Y_MAX_POSITIVE 8176
Seth Forsheeba37c702012-07-24 23:54:11 -070069
Daniel Kurtz6de58dd2011-08-23 23:00:24 -070070/*
71 * Synaptics touchpads report the y coordinate from bottom to top, which is
72 * opposite from what userspace expects.
73 * This function is used to invert y before reporting.
74 */
75static int synaptics_invert_y(int y)
76{
77 return YMAX_NOMINAL + YMIN_NOMINAL - y;
78}
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Andres Salomon55e3d922007-03-10 01:39:54 -050081/*****************************************************************************
82 * Stuff we need even when we do not want native Synaptics support
83 ****************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85/*
86 * Set the synaptics touchpad mode byte by special commands
87 */
88static int synaptics_mode_cmd(struct psmouse *psmouse, unsigned char mode)
89{
90 unsigned char param[1];
91
92 if (psmouse_sliced_command(psmouse, mode))
93 return -1;
94 param[0] = SYN_PS_SET_MODE2;
95 if (ps2_command(&psmouse->ps2dev, param, PSMOUSE_CMD_SETRATE))
96 return -1;
97 return 0;
98}
99
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700100int synaptics_detect(struct psmouse *psmouse, bool set_properties)
Andres Salomon55e3d922007-03-10 01:39:54 -0500101{
102 struct ps2dev *ps2dev = &psmouse->ps2dev;
103 unsigned char param[4];
104
105 param[0] = 0;
106
107 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES);
108 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES);
109 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES);
110 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES);
111 ps2_command(ps2dev, param, PSMOUSE_CMD_GETINFO);
112
113 if (param[1] != 0x47)
114 return -ENODEV;
115
116 if (set_properties) {
117 psmouse->vendor = "Synaptics";
118 psmouse->name = "TouchPad";
119 }
120
121 return 0;
122}
123
124void synaptics_reset(struct psmouse *psmouse)
125{
126 /* reset touchpad back to relative mode, gestures enabled */
127 synaptics_mode_cmd(psmouse, 0);
128}
129
130#ifdef CONFIG_MOUSE_PS2_SYNAPTICS
131
132/*****************************************************************************
133 * Synaptics communications functions
134 ****************************************************************************/
135
136/*
137 * Send a command to the synpatics touchpad by special commands
138 */
139static int synaptics_send_cmd(struct psmouse *psmouse, unsigned char c, unsigned char *param)
140{
141 if (psmouse_sliced_command(psmouse, c))
142 return -1;
143 if (ps2_command(&psmouse->ps2dev, param, PSMOUSE_CMD_GETINFO))
144 return -1;
145 return 0;
146}
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148/*
149 * Read the model-id bytes from the touchpad
150 * see also SYN_MODEL_* macros
151 */
152static int synaptics_model_id(struct psmouse *psmouse)
153{
154 struct synaptics_data *priv = psmouse->private;
155 unsigned char mi[3];
156
157 if (synaptics_send_cmd(psmouse, SYN_QUE_MODEL, mi))
158 return -1;
159 priv->model_id = (mi[0]<<16) | (mi[1]<<8) | mi[2];
160 return 0;
161}
162
163/*
164 * Read the capability-bits from the touchpad
165 * see also the SYN_CAP_* macros
166 */
167static int synaptics_capability(struct psmouse *psmouse)
168{
169 struct synaptics_data *priv = psmouse->private;
170 unsigned char cap[3];
171
172 if (synaptics_send_cmd(psmouse, SYN_QUE_CAPABILITIES, cap))
173 return -1;
174 priv->capabilities = (cap[0] << 16) | (cap[1] << 8) | cap[2];
Takashi Iwai5f57d672010-04-19 10:37:21 -0700175 priv->ext_cap = priv->ext_cap_0c = 0;
176
Dmitry Torokhov3619b8f2010-07-21 00:01:19 -0700177 /*
178 * Older firmwares had submodel ID fixed to 0x47
179 */
180 if (SYN_ID_FULL(priv->identity) < 0x705 &&
181 SYN_CAP_SUBMODEL_ID(priv->capabilities) != 0x47) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 return -1;
Dmitry Torokhov3619b8f2010-07-21 00:01:19 -0700183 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185 /*
186 * Unless capExtended is set the rest of the flags should be ignored
187 */
188 if (!SYN_CAP_EXTENDED(priv->capabilities))
189 priv->capabilities = 0;
190
191 if (SYN_EXT_CAP_REQUESTS(priv->capabilities) >= 1) {
192 if (synaptics_send_cmd(psmouse, SYN_QUE_EXT_CAPAB, cap)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700193 psmouse_warn(psmouse,
194 "device claims to have extended capabilities, but I'm not able to read them.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 } else {
196 priv->ext_cap = (cap[0] << 16) | (cap[1] << 8) | cap[2];
197
198 /*
199 * if nExtBtn is greater than 8 it should be considered
200 * invalid and treated as 0
201 */
202 if (SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap) > 8)
203 priv->ext_cap &= 0xff0fff;
204 }
205 }
Takashi Iwai5f57d672010-04-19 10:37:21 -0700206
207 if (SYN_EXT_CAP_REQUESTS(priv->capabilities) >= 4) {
208 if (synaptics_send_cmd(psmouse, SYN_QUE_EXT_CAPAB_0C, cap)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700209 psmouse_warn(psmouse,
210 "device claims to have extended capability 0x0c, but I'm not able to read it.\n");
Takashi Iwai5f57d672010-04-19 10:37:21 -0700211 } else {
212 priv->ext_cap_0c = (cap[0] << 16) | (cap[1] << 8) | cap[2];
213 }
214 }
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 return 0;
217}
218
219/*
220 * Identify Touchpad
221 * See also the SYN_ID_* macros
222 */
223static int synaptics_identify(struct psmouse *psmouse)
224{
225 struct synaptics_data *priv = psmouse->private;
226 unsigned char id[3];
227
228 if (synaptics_send_cmd(psmouse, SYN_QUE_IDENTIFY, id))
229 return -1;
230 priv->identity = (id[0]<<16) | (id[1]<<8) | id[2];
231 if (SYN_ID_IS_SYNAPTICS(priv->identity))
232 return 0;
233 return -1;
234}
235
Tero Saarniec20a022009-06-10 23:27:24 -0700236/*
Dmitry Torokhov83ba9ea2010-05-10 23:06:52 -0700237 * Read touchpad resolution and maximum reported coordinates
Tero Saarniec20a022009-06-10 23:27:24 -0700238 * Resolution is left zero if touchpad does not support the query
239 */
Benjamin Tissoires969ba042014-03-28 00:43:00 -0700240
241static const int *quirk_min_max;
242
Tero Saarniec20a022009-06-10 23:27:24 -0700243static int synaptics_resolution(struct psmouse *psmouse)
244{
245 struct synaptics_data *priv = psmouse->private;
Dmitry Torokhova66413f2011-07-09 12:32:56 -0700246 unsigned char resp[3];
Tero Saarniec20a022009-06-10 23:27:24 -0700247
Benjamin Tissoires969ba042014-03-28 00:43:00 -0700248 if (quirk_min_max) {
249 priv->x_min = quirk_min_max[0];
250 priv->x_max = quirk_min_max[1];
251 priv->y_min = quirk_min_max[2];
252 priv->y_max = quirk_min_max[3];
253 return 0;
254 }
255
Tero Saarniec20a022009-06-10 23:27:24 -0700256 if (SYN_ID_MAJOR(priv->identity) < 4)
Takashi Iwaibbddd192010-07-14 09:32:46 -0700257 return 0;
Tero Saarniec20a022009-06-10 23:27:24 -0700258
Dmitry Torokhova66413f2011-07-09 12:32:56 -0700259 if (synaptics_send_cmd(psmouse, SYN_QUE_RESOLUTION, resp) == 0) {
260 if (resp[0] != 0 && (resp[1] & 0x80) && resp[2] != 0) {
261 priv->x_res = resp[0]; /* x resolution in units/mm */
262 priv->y_res = resp[2]; /* y resolution in units/mm */
Dmitry Torokhov83ba9ea2010-05-10 23:06:52 -0700263 }
264 }
Tero Saarniec20a022009-06-10 23:27:24 -0700265
Dmitry Torokhov83ba9ea2010-05-10 23:06:52 -0700266 if (SYN_EXT_CAP_REQUESTS(priv->capabilities) >= 5 &&
267 SYN_CAP_MAX_DIMENSIONS(priv->ext_cap_0c)) {
Dmitry Torokhova66413f2011-07-09 12:32:56 -0700268 if (synaptics_send_cmd(psmouse, SYN_QUE_EXT_MAX_COORDS, resp)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700269 psmouse_warn(psmouse,
270 "device claims to have max coordinates query, but I'm not able to read it.\n");
Dmitry Torokhov83ba9ea2010-05-10 23:06:52 -0700271 } else {
Dmitry Torokhova66413f2011-07-09 12:32:56 -0700272 priv->x_max = (resp[0] << 5) | ((resp[1] & 0x0f) << 1);
273 priv->y_max = (resp[2] << 5) | ((resp[1] & 0xf0) >> 3);
274 }
275 }
276
277 if (SYN_EXT_CAP_REQUESTS(priv->capabilities) >= 7 &&
278 SYN_CAP_MIN_DIMENSIONS(priv->ext_cap_0c)) {
279 if (synaptics_send_cmd(psmouse, SYN_QUE_EXT_MIN_COORDS, resp)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700280 psmouse_warn(psmouse,
281 "device claims to have min coordinates query, but I'm not able to read it.\n");
Dmitry Torokhova66413f2011-07-09 12:32:56 -0700282 } else {
283 priv->x_min = (resp[0] << 5) | ((resp[1] & 0x0f) << 1);
284 priv->y_min = (resp[2] << 5) | ((resp[1] & 0xf0) >> 3);
Dmitry Torokhov83ba9ea2010-05-10 23:06:52 -0700285 }
Tero Saarniec20a022009-06-10 23:27:24 -0700286 }
287
288 return 0;
289}
290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291static int synaptics_query_hardware(struct psmouse *psmouse)
292{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 if (synaptics_identify(psmouse))
294 return -1;
295 if (synaptics_model_id(psmouse))
296 return -1;
297 if (synaptics_capability(psmouse))
298 return -1;
Tero Saarniec20a022009-06-10 23:27:24 -0700299 if (synaptics_resolution(psmouse))
300 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
302 return 0;
303}
304
Daniel Drake7968a5d2011-11-08 00:00:35 -0800305static int synaptics_set_advanced_gesture_mode(struct psmouse *psmouse)
306{
307 static unsigned char param = 0xc8;
308 struct synaptics_data *priv = psmouse->private;
309
Benjamin Herrenschmidt899c6122012-04-20 22:34:49 -0700310 if (!(SYN_CAP_ADV_GESTURE(priv->ext_cap_0c) ||
311 SYN_CAP_IMAGE_SENSOR(priv->ext_cap_0c)))
Daniel Drake7968a5d2011-11-08 00:00:35 -0800312 return 0;
313
314 if (psmouse_sliced_command(psmouse, SYN_QUE_MODEL))
315 return -1;
316
317 if (ps2_command(&psmouse->ps2dev, &param, PSMOUSE_CMD_SETRATE))
318 return -1;
319
320 /* Advanced gesture mode also sends multi finger data */
321 priv->capabilities |= BIT(1);
322
323 return 0;
324}
325
326static int synaptics_set_mode(struct psmouse *psmouse)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327{
328 struct synaptics_data *priv = psmouse->private;
329
Daniel Drake7968a5d2011-11-08 00:00:35 -0800330 priv->mode = 0;
331 if (priv->absolute_mode)
332 priv->mode |= SYN_BIT_ABSOLUTE_MODE;
333 if (priv->disable_gesture)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 priv->mode |= SYN_BIT_DISABLE_GESTURE;
Daniel Drake7968a5d2011-11-08 00:00:35 -0800335 if (psmouse->rate >= 80)
336 priv->mode |= SYN_BIT_HIGH_RATE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 if (SYN_CAP_EXTENDED(priv->capabilities))
338 priv->mode |= SYN_BIT_W_MODE;
339
340 if (synaptics_mode_cmd(psmouse, priv->mode))
341 return -1;
342
Daniel Drake7968a5d2011-11-08 00:00:35 -0800343 if (priv->absolute_mode &&
344 synaptics_set_advanced_gesture_mode(psmouse)) {
345 psmouse_err(psmouse, "Advanced gesture mode init failed.\n");
346 return -1;
347 }
348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 return 0;
350}
351
352static void synaptics_set_rate(struct psmouse *psmouse, unsigned int rate)
353{
354 struct synaptics_data *priv = psmouse->private;
355
356 if (rate >= 80) {
357 priv->mode |= SYN_BIT_HIGH_RATE;
358 psmouse->rate = 80;
359 } else {
360 priv->mode &= ~SYN_BIT_HIGH_RATE;
361 psmouse->rate = 40;
362 }
363
364 synaptics_mode_cmd(psmouse, priv->mode);
365}
366
367/*****************************************************************************
368 * Synaptics pass-through PS/2 port support
369 ****************************************************************************/
370static int synaptics_pt_write(struct serio *serio, unsigned char c)
371{
372 struct psmouse *parent = serio_get_drvdata(serio->parent);
373 char rate_param = SYN_PS_CLIENT_CMD; /* indicates that we want pass-through port */
374
375 if (psmouse_sliced_command(parent, c))
376 return -1;
377 if (ps2_command(&parent->ps2dev, &rate_param, PSMOUSE_CMD_SETRATE))
378 return -1;
379 return 0;
380}
381
Dmitry Torokhova8b3c0f2010-10-04 21:46:10 -0700382static int synaptics_pt_start(struct serio *serio)
383{
384 struct psmouse *parent = serio_get_drvdata(serio->parent);
385 struct synaptics_data *priv = parent->private;
386
387 serio_pause_rx(parent->ps2dev.serio);
388 priv->pt_port = serio;
389 serio_continue_rx(parent->ps2dev.serio);
390
391 return 0;
392}
393
394static void synaptics_pt_stop(struct serio *serio)
395{
396 struct psmouse *parent = serio_get_drvdata(serio->parent);
397 struct synaptics_data *priv = parent->private;
398
399 serio_pause_rx(parent->ps2dev.serio);
400 priv->pt_port = NULL;
401 serio_continue_rx(parent->ps2dev.serio);
402}
403
404static int synaptics_is_pt_packet(unsigned char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405{
406 return (buf[0] & 0xFC) == 0x84 && (buf[3] & 0xCC) == 0xC4;
407}
408
409static void synaptics_pass_pt_packet(struct serio *ptport, unsigned char *packet)
410{
411 struct psmouse *child = serio_get_drvdata(ptport);
412
413 if (child && child->state == PSMOUSE_ACTIVATED) {
David Howells7d12e782006-10-05 14:55:46 +0100414 serio_interrupt(ptport, packet[1], 0);
415 serio_interrupt(ptport, packet[4], 0);
416 serio_interrupt(ptport, packet[5], 0);
Sergey Vlasov33fdfa92005-07-24 00:53:32 -0500417 if (child->pktsize == 4)
David Howells7d12e782006-10-05 14:55:46 +0100418 serio_interrupt(ptport, packet[2], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 } else
David Howells7d12e782006-10-05 14:55:46 +0100420 serio_interrupt(ptport, packet[1], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421}
422
423static void synaptics_pt_activate(struct psmouse *psmouse)
424{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 struct synaptics_data *priv = psmouse->private;
Dmitry Torokhova8b3c0f2010-10-04 21:46:10 -0700426 struct psmouse *child = serio_get_drvdata(priv->pt_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 /* adjust the touchpad to child's choice of protocol */
429 if (child) {
Sergey Vlasov33fdfa92005-07-24 00:53:32 -0500430 if (child->pktsize == 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 priv->mode |= SYN_BIT_FOUR_BYTE_CLIENT;
432 else
433 priv->mode &= ~SYN_BIT_FOUR_BYTE_CLIENT;
434
435 if (synaptics_mode_cmd(psmouse, priv->mode))
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700436 psmouse_warn(psmouse,
437 "failed to switch guest protocol\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 }
439}
440
441static void synaptics_pt_create(struct psmouse *psmouse)
442{
443 struct serio *serio;
444
Eric Sesterhennb39787a2006-03-14 00:09:16 -0500445 serio = kzalloc(sizeof(struct serio), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 if (!serio) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700447 psmouse_err(psmouse,
448 "not enough memory for pass-through port\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 return;
450 }
451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 serio->id.type = SERIO_PS_PSTHRU;
453 strlcpy(serio->name, "Synaptics pass-through", sizeof(serio->name));
454 strlcpy(serio->phys, "synaptics-pt/serio0", sizeof(serio->name));
455 serio->write = synaptics_pt_write;
Dmitry Torokhova8b3c0f2010-10-04 21:46:10 -0700456 serio->start = synaptics_pt_start;
457 serio->stop = synaptics_pt_stop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 serio->parent = psmouse->ps2dev.serio;
459
460 psmouse->pt_activate = synaptics_pt_activate;
461
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700462 psmouse_info(psmouse, "serio: %s port at %s\n",
463 serio->name, psmouse->phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 serio_register_port(serio);
465}
466
467/*****************************************************************************
468 * Functions to interpret the absolute mode packets
469 ****************************************************************************/
470
Daniel Kurtza6ca40c2011-08-23 23:02:31 -0700471static void synaptics_mt_state_set(struct synaptics_mt_state *state, int count,
472 int sgm, int agm)
473{
474 state->count = count;
475 state->sgm = sgm;
476 state->agm = agm;
477}
478
Daniel Kurtz7afdb842011-08-23 23:00:33 -0700479static void synaptics_parse_agm(const unsigned char buf[],
Daniel Kurtza6ca40c2011-08-23 23:02:31 -0700480 struct synaptics_data *priv,
481 struct synaptics_hw_state *hw)
Daniel Kurtz7afdb842011-08-23 23:00:33 -0700482{
483 struct synaptics_hw_state *agm = &priv->agm;
Daniel Kurtza6ca40c2011-08-23 23:02:31 -0700484 int agm_packet_type;
Daniel Kurtz7afdb842011-08-23 23:00:33 -0700485
Daniel Kurtza6ca40c2011-08-23 23:02:31 -0700486 agm_packet_type = (buf[5] & 0x30) >> 4;
487 switch (agm_packet_type) {
488 case 1:
489 /* Gesture packet: (x, y, z) half resolution */
490 agm->w = hw->w;
491 agm->x = (((buf[4] & 0x0f) << 8) | buf[1]) << 1;
492 agm->y = (((buf[4] & 0xf0) << 4) | buf[2]) << 1;
493 agm->z = ((buf[3] & 0x30) | (buf[5] & 0x0f)) << 1;
494 break;
495
496 case 2:
497 /* AGM-CONTACT packet: (count, sgm, agm) */
498 synaptics_mt_state_set(&agm->mt_state, buf[1], buf[2], buf[4]);
499 break;
500
501 default:
502 break;
503 }
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700504
505 /* Record that at least one AGM has been received since last SGM */
506 priv->agm_pending = true;
Daniel Kurtz7afdb842011-08-23 23:00:33 -0700507}
508
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100509static int synaptics_parse_hw_state(const unsigned char buf[],
510 struct synaptics_data *priv,
511 struct synaptics_hw_state *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512{
513 memset(hw, 0, sizeof(struct synaptics_hw_state));
514
515 if (SYN_MODEL_NEWABS(priv->model_id)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 hw->w = (((buf[0] & 0x30) >> 2) |
517 ((buf[0] & 0x04) >> 1) |
518 ((buf[3] & 0x04) >> 2));
519
520 hw->left = (buf[0] & 0x01) ? 1 : 0;
521 hw->right = (buf[0] & 0x02) ? 1 : 0;
522
Takashi Iwai5f57d672010-04-19 10:37:21 -0700523 if (SYN_CAP_CLICKPAD(priv->ext_cap_0c)) {
524 /*
525 * Clickpad's button is transmitted as middle button,
526 * however, since it is primary button, we will report
527 * it as BTN_LEFT.
528 */
529 hw->left = ((buf[0] ^ buf[3]) & 0x01) ? 1 : 0;
530
531 } else if (SYN_CAP_MIDDLE_BUTTON(priv->capabilities)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 hw->middle = ((buf[0] ^ buf[3]) & 0x01) ? 1 : 0;
533 if (hw->w == 2)
534 hw->scroll = (signed char)(buf[1]);
535 }
536
537 if (SYN_CAP_FOUR_BUTTON(priv->capabilities)) {
538 hw->up = ((buf[0] ^ buf[3]) & 0x01) ? 1 : 0;
539 hw->down = ((buf[0] ^ buf[3]) & 0x02) ? 1 : 0;
540 }
541
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700542 if ((SYN_CAP_ADV_GESTURE(priv->ext_cap_0c) ||
543 SYN_CAP_IMAGE_SENSOR(priv->ext_cap_0c)) &&
544 hw->w == 2) {
Daniel Kurtza6ca40c2011-08-23 23:02:31 -0700545 synaptics_parse_agm(buf, priv, hw);
Daniel Kurtz28d5fd82011-07-06 22:57:39 -0700546 return 1;
547 }
548
549 hw->x = (((buf[3] & 0x10) << 8) |
550 ((buf[1] & 0x0f) << 8) |
551 buf[4]);
552 hw->y = (((buf[3] & 0x20) << 7) |
553 ((buf[1] & 0xf0) << 4) |
554 buf[5]);
555 hw->z = buf[2];
556
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 if (SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap) &&
558 ((buf[0] ^ buf[3]) & 0x02)) {
559 switch (SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap) & ~0x01) {
560 default:
561 /*
562 * if nExtBtn is greater than 8 it should be
563 * considered invalid and treated as 0
564 */
565 break;
566 case 8:
567 hw->ext_buttons |= ((buf[5] & 0x08)) ? 0x80 : 0;
568 hw->ext_buttons |= ((buf[4] & 0x08)) ? 0x40 : 0;
569 case 6:
570 hw->ext_buttons |= ((buf[5] & 0x04)) ? 0x20 : 0;
571 hw->ext_buttons |= ((buf[4] & 0x04)) ? 0x10 : 0;
572 case 4:
573 hw->ext_buttons |= ((buf[5] & 0x02)) ? 0x08 : 0;
574 hw->ext_buttons |= ((buf[4] & 0x02)) ? 0x04 : 0;
575 case 2:
576 hw->ext_buttons |= ((buf[5] & 0x01)) ? 0x02 : 0;
577 hw->ext_buttons |= ((buf[4] & 0x01)) ? 0x01 : 0;
578 }
579 }
580 } else {
581 hw->x = (((buf[1] & 0x1f) << 8) | buf[2]);
582 hw->y = (((buf[4] & 0x1f) << 8) | buf[5]);
583
584 hw->z = (((buf[0] & 0x30) << 2) | (buf[3] & 0x3F));
585 hw->w = (((buf[1] & 0x80) >> 4) | ((buf[0] & 0x04) >> 1));
586
587 hw->left = (buf[0] & 0x01) ? 1 : 0;
588 hw->right = (buf[0] & 0x02) ? 1 : 0;
589 }
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100590
Seth Forsheead4751d2012-09-28 10:29:21 -0700591 /*
592 * Convert wrap-around values to negative. (X|Y)_MAX_POSITIVE
593 * is used by some firmware to indicate a finger at the edge of
594 * the touchpad whose precise position cannot be determined, so
595 * convert these values to the maximum axis value.
596 */
Seth Forsheeba37c702012-07-24 23:54:11 -0700597 if (hw->x > X_MAX_POSITIVE)
598 hw->x -= 1 << ABS_POS_BITS;
Seth Forsheead4751d2012-09-28 10:29:21 -0700599 else if (hw->x == X_MAX_POSITIVE)
600 hw->x = XMAX;
601
Seth Forsheeba37c702012-07-24 23:54:11 -0700602 if (hw->y > Y_MAX_POSITIVE)
603 hw->y -= 1 << ABS_POS_BITS;
Seth Forsheead4751d2012-09-28 10:29:21 -0700604 else if (hw->y == Y_MAX_POSITIVE)
605 hw->y = YMAX;
Seth Forsheeba37c702012-07-24 23:54:11 -0700606
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100607 return 0;
608}
609
Daniel Kurtzbea9f0f2011-07-06 22:42:52 -0700610static void synaptics_report_semi_mt_slot(struct input_dev *dev, int slot,
611 bool active, int x, int y)
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100612{
613 input_mt_slot(dev, slot);
614 input_mt_report_slot_state(dev, MT_TOOL_FINGER, active);
615 if (active) {
616 input_report_abs(dev, ABS_MT_POSITION_X, x);
Daniel Kurtz6de58dd2011-08-23 23:00:24 -0700617 input_report_abs(dev, ABS_MT_POSITION_Y, synaptics_invert_y(y));
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100618 }
619}
620
621static void synaptics_report_semi_mt_data(struct input_dev *dev,
622 const struct synaptics_hw_state *a,
623 const struct synaptics_hw_state *b,
624 int num_fingers)
625{
626 if (num_fingers >= 2) {
Daniel Kurtzbea9f0f2011-07-06 22:42:52 -0700627 synaptics_report_semi_mt_slot(dev, 0, true, min(a->x, b->x),
628 min(a->y, b->y));
629 synaptics_report_semi_mt_slot(dev, 1, true, max(a->x, b->x),
630 max(a->y, b->y));
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100631 } else if (num_fingers == 1) {
Daniel Kurtzbea9f0f2011-07-06 22:42:52 -0700632 synaptics_report_semi_mt_slot(dev, 0, true, a->x, a->y);
633 synaptics_report_semi_mt_slot(dev, 1, false, 0, 0);
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100634 } else {
Daniel Kurtzbea9f0f2011-07-06 22:42:52 -0700635 synaptics_report_semi_mt_slot(dev, 0, false, 0, 0);
636 synaptics_report_semi_mt_slot(dev, 1, false, 0, 0);
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100637 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638}
639
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700640static void synaptics_report_buttons(struct psmouse *psmouse,
641 const struct synaptics_hw_state *hw)
642{
643 struct input_dev *dev = psmouse->dev;
644 struct synaptics_data *priv = psmouse->private;
645 int i;
646
647 input_report_key(dev, BTN_LEFT, hw->left);
648 input_report_key(dev, BTN_RIGHT, hw->right);
649
650 if (SYN_CAP_MIDDLE_BUTTON(priv->capabilities))
651 input_report_key(dev, BTN_MIDDLE, hw->middle);
652
653 if (SYN_CAP_FOUR_BUTTON(priv->capabilities)) {
654 input_report_key(dev, BTN_FORWARD, hw->up);
655 input_report_key(dev, BTN_BACK, hw->down);
656 }
657
658 for (i = 0; i < SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap); i++)
659 input_report_key(dev, BTN_0 + i, hw->ext_buttons & (1 << i));
660}
661
662static void synaptics_report_slot(struct input_dev *dev, int slot,
663 const struct synaptics_hw_state *hw)
664{
665 input_mt_slot(dev, slot);
666 input_mt_report_slot_state(dev, MT_TOOL_FINGER, (hw != NULL));
667 if (!hw)
668 return;
669
670 input_report_abs(dev, ABS_MT_POSITION_X, hw->x);
671 input_report_abs(dev, ABS_MT_POSITION_Y, synaptics_invert_y(hw->y));
672 input_report_abs(dev, ABS_MT_PRESSURE, hw->z);
673}
674
675static void synaptics_report_mt_data(struct psmouse *psmouse,
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700676 struct synaptics_mt_state *mt_state,
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700677 const struct synaptics_hw_state *sgm)
678{
679 struct input_dev *dev = psmouse->dev;
680 struct synaptics_data *priv = psmouse->private;
681 struct synaptics_hw_state *agm = &priv->agm;
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700682 struct synaptics_mt_state *old = &priv->mt_state;
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700683
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700684 switch (mt_state->count) {
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700685 case 0:
686 synaptics_report_slot(dev, 0, NULL);
687 synaptics_report_slot(dev, 1, NULL);
688 break;
689 case 1:
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700690 if (mt_state->sgm == -1) {
691 synaptics_report_slot(dev, 0, NULL);
692 synaptics_report_slot(dev, 1, NULL);
693 } else if (mt_state->sgm == 0) {
694 synaptics_report_slot(dev, 0, sgm);
695 synaptics_report_slot(dev, 1, NULL);
696 } else {
697 synaptics_report_slot(dev, 0, NULL);
698 synaptics_report_slot(dev, 1, sgm);
699 }
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700700 break;
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700701 default:
702 /*
703 * If the finger slot contained in SGM is valid, and either
704 * hasn't changed, or is new, then report SGM in MTB slot 0.
705 * Otherwise, empty MTB slot 0.
706 */
707 if (mt_state->sgm != -1 &&
708 (mt_state->sgm == old->sgm || old->sgm == -1))
709 synaptics_report_slot(dev, 0, sgm);
710 else
711 synaptics_report_slot(dev, 0, NULL);
712
713 /*
714 * If the finger slot contained in AGM is valid, and either
715 * hasn't changed, or is new, then report AGM in MTB slot 1.
716 * Otherwise, empty MTB slot 1.
717 */
718 if (mt_state->agm != -1 &&
719 (mt_state->agm == old->agm || old->agm == -1))
720 synaptics_report_slot(dev, 1, agm);
721 else
722 synaptics_report_slot(dev, 1, NULL);
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700723 break;
724 }
725
726 /* Don't use active slot count to generate BTN_TOOL events. */
727 input_mt_report_pointer_emulation(dev, false);
728
729 /* Send the number of fingers reported by touchpad itself. */
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700730 input_mt_report_finger_count(dev, mt_state->count);
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700731
732 synaptics_report_buttons(psmouse, sgm);
733
734 input_sync(dev);
735}
736
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700737/* Handle case where mt_state->count = 0 */
738static void synaptics_image_sensor_0f(struct synaptics_data *priv,
739 struct synaptics_mt_state *mt_state)
740{
741 synaptics_mt_state_set(mt_state, 0, -1, -1);
742 priv->mt_state_lost = false;
743}
744
745/* Handle case where mt_state->count = 1 */
746static void synaptics_image_sensor_1f(struct synaptics_data *priv,
747 struct synaptics_mt_state *mt_state)
748{
749 struct synaptics_hw_state *agm = &priv->agm;
750 struct synaptics_mt_state *old = &priv->mt_state;
751
752 /*
753 * If the last AGM was (0,0,0), and there is only one finger left,
754 * then we absolutely know that SGM contains slot 0, and all other
755 * fingers have been removed.
756 */
757 if (priv->agm_pending && agm->z == 0) {
758 synaptics_mt_state_set(mt_state, 1, 0, -1);
759 priv->mt_state_lost = false;
760 return;
761 }
762
763 switch (old->count) {
764 case 0:
765 synaptics_mt_state_set(mt_state, 1, 0, -1);
766 break;
767 case 1:
768 /*
769 * If mt_state_lost, then the previous transition was 3->1,
770 * and SGM now contains either slot 0 or 1, but we don't know
771 * which. So, we just assume that the SGM now contains slot 1.
772 *
773 * If pending AGM and either:
774 * (a) the previous SGM slot contains slot 0, or
775 * (b) there was no SGM slot
776 * then, the SGM now contains slot 1
777 *
778 * Case (a) happens with very rapid "drum roll" gestures, where
779 * slot 0 finger is lifted and a new slot 1 finger touches
780 * within one reporting interval.
781 *
782 * Case (b) happens if initially two or more fingers tap
783 * briefly, and all but one lift before the end of the first
784 * reporting interval.
785 *
786 * (In both these cases, slot 0 will becomes empty, so SGM
787 * contains slot 1 with the new finger)
788 *
789 * Else, if there was no previous SGM, it now contains slot 0.
790 *
791 * Otherwise, SGM still contains the same slot.
792 */
793 if (priv->mt_state_lost ||
794 (priv->agm_pending && old->sgm <= 0))
795 synaptics_mt_state_set(mt_state, 1, 1, -1);
796 else if (old->sgm == -1)
797 synaptics_mt_state_set(mt_state, 1, 0, -1);
798 break;
799 case 2:
800 /*
801 * If mt_state_lost, we don't know which finger SGM contains.
802 *
803 * So, report 1 finger, but with both slots empty.
804 * We will use slot 1 on subsequent 1->1
805 */
806 if (priv->mt_state_lost) {
807 synaptics_mt_state_set(mt_state, 1, -1, -1);
808 break;
809 }
810 /*
811 * Since the last AGM was NOT (0,0,0), it was the finger in
812 * slot 0 that has been removed.
813 * So, SGM now contains previous AGM's slot, and AGM is now
814 * empty.
815 */
816 synaptics_mt_state_set(mt_state, 1, old->agm, -1);
817 break;
818 case 3:
819 /*
820 * Since last AGM was not (0,0,0), we don't know which finger
821 * is left.
822 *
823 * So, report 1 finger, but with both slots empty.
824 * We will use slot 1 on subsequent 1->1
825 */
826 synaptics_mt_state_set(mt_state, 1, -1, -1);
827 priv->mt_state_lost = true;
828 break;
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -0700829 case 4:
830 case 5:
831 /* mt_state was updated by AGM-CONTACT packet */
832 break;
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700833 }
834}
835
836/* Handle case where mt_state->count = 2 */
837static void synaptics_image_sensor_2f(struct synaptics_data *priv,
838 struct synaptics_mt_state *mt_state)
839{
840 struct synaptics_mt_state *old = &priv->mt_state;
841
842 switch (old->count) {
843 case 0:
844 synaptics_mt_state_set(mt_state, 2, 0, 1);
845 break;
846 case 1:
847 /*
848 * If previous SGM contained slot 1 or higher, SGM now contains
849 * slot 0 (the newly touching finger) and AGM contains SGM's
850 * previous slot.
851 *
852 * Otherwise, SGM still contains slot 0 and AGM now contains
853 * slot 1.
854 */
855 if (old->sgm >= 1)
856 synaptics_mt_state_set(mt_state, 2, 0, old->sgm);
857 else
858 synaptics_mt_state_set(mt_state, 2, 0, 1);
859 break;
860 case 2:
861 /*
862 * If mt_state_lost, SGM now contains either finger 1 or 2, but
863 * we don't know which.
864 * So, we just assume that the SGM contains slot 0 and AGM 1.
865 */
866 if (priv->mt_state_lost)
867 synaptics_mt_state_set(mt_state, 2, 0, 1);
868 /*
869 * Otherwise, use the same mt_state, since it either hasn't
870 * changed, or was updated by a recently received AGM-CONTACT
871 * packet.
872 */
873 break;
874 case 3:
875 /*
876 * 3->2 transitions have two unsolvable problems:
877 * 1) no indication is given which finger was removed
878 * 2) no way to tell if agm packet was for finger 3
879 * before 3->2, or finger 2 after 3->2.
880 *
881 * So, report 2 fingers, but empty all slots.
882 * We will guess slots [0,1] on subsequent 2->2.
883 */
884 synaptics_mt_state_set(mt_state, 2, -1, -1);
885 priv->mt_state_lost = true;
886 break;
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -0700887 case 4:
888 case 5:
889 /* mt_state was updated by AGM-CONTACT packet */
890 break;
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700891 }
892}
893
894/* Handle case where mt_state->count = 3 */
895static void synaptics_image_sensor_3f(struct synaptics_data *priv,
896 struct synaptics_mt_state *mt_state)
897{
898 struct synaptics_mt_state *old = &priv->mt_state;
899
900 switch (old->count) {
901 case 0:
902 synaptics_mt_state_set(mt_state, 3, 0, 2);
903 break;
904 case 1:
905 /*
906 * If previous SGM contained slot 2 or higher, SGM now contains
907 * slot 0 (one of the newly touching fingers) and AGM contains
908 * SGM's previous slot.
909 *
910 * Otherwise, SGM now contains slot 0 and AGM contains slot 2.
911 */
912 if (old->sgm >= 2)
913 synaptics_mt_state_set(mt_state, 3, 0, old->sgm);
914 else
915 synaptics_mt_state_set(mt_state, 3, 0, 2);
916 break;
917 case 2:
918 /*
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -0700919 * If the AGM previously contained slot 3 or higher, then the
920 * newly touching finger is in the lowest available slot.
921 *
922 * If SGM was previously 1 or higher, then the new SGM is
923 * now slot 0 (with a new finger), otherwise, the new finger
924 * is now in a hidden slot between 0 and AGM's slot.
925 *
926 * In all such cases, the SGM now contains slot 0, and the AGM
927 * continues to contain the same slot as before.
928 */
929 if (old->agm >= 3) {
930 synaptics_mt_state_set(mt_state, 3, 0, old->agm);
931 break;
932 }
933
934 /*
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700935 * After some 3->1 and all 3->2 transitions, we lose track
936 * of which slot is reported by SGM and AGM.
937 *
938 * For 2->3 in this state, report 3 fingers, but empty all
939 * slots, and we will guess (0,2) on a subsequent 0->3.
940 *
941 * To userspace, the resulting transition will look like:
942 * 2:[0,1] -> 3:[-1,-1] -> 3:[0,2]
943 */
944 if (priv->mt_state_lost) {
945 synaptics_mt_state_set(mt_state, 3, -1, -1);
946 break;
947 }
948
949 /*
950 * If the (SGM,AGM) really previously contained slots (0, 1),
951 * then we cannot know what slot was just reported by the AGM,
952 * because the 2->3 transition can occur either before or after
953 * the AGM packet. Thus, this most recent AGM could contain
954 * either the same old slot 1 or the new slot 2.
955 * Subsequent AGMs will be reporting slot 2.
956 *
957 * To userspace, the resulting transition will look like:
958 * 2:[0,1] -> 3:[0,-1] -> 3:[0,2]
959 */
960 synaptics_mt_state_set(mt_state, 3, 0, -1);
961 break;
962 case 3:
963 /*
964 * If, for whatever reason, the previous agm was invalid,
965 * Assume SGM now contains slot 0, AGM now contains slot 2.
966 */
967 if (old->agm <= 2)
968 synaptics_mt_state_set(mt_state, 3, 0, 2);
969 /*
970 * mt_state either hasn't changed, or was updated by a recently
971 * received AGM-CONTACT packet.
972 */
973 break;
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -0700974
975 case 4:
976 case 5:
977 /* mt_state was updated by AGM-CONTACT packet */
978 break;
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700979 }
980}
981
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -0700982/* Handle case where mt_state->count = 4, or = 5 */
983static void synaptics_image_sensor_45f(struct synaptics_data *priv,
984 struct synaptics_mt_state *mt_state)
985{
986 /* mt_state was updated correctly by AGM-CONTACT packet */
987 priv->mt_state_lost = false;
988}
989
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700990static void synaptics_image_sensor_process(struct psmouse *psmouse,
991 struct synaptics_hw_state *sgm)
992{
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700993 struct synaptics_data *priv = psmouse->private;
994 struct synaptics_hw_state *agm = &priv->agm;
995 struct synaptics_mt_state mt_state;
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700996
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700997 /* Initialize using current mt_state (as updated by last agm) */
998 mt_state = agm->mt_state;
999
1000 /*
1001 * Update mt_state using the new finger count and current mt_state.
1002 */
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001003 if (sgm->z == 0)
Daniel Kurtz4dc772d2011-08-23 23:02:40 -07001004 synaptics_image_sensor_0f(priv, &mt_state);
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001005 else if (sgm->w >= 4)
Daniel Kurtz4dc772d2011-08-23 23:02:40 -07001006 synaptics_image_sensor_1f(priv, &mt_state);
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001007 else if (sgm->w == 0)
Daniel Kurtz4dc772d2011-08-23 23:02:40 -07001008 synaptics_image_sensor_2f(priv, &mt_state);
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -07001009 else if (sgm->w == 1 && mt_state.count <= 3)
Daniel Kurtz4dc772d2011-08-23 23:02:40 -07001010 synaptics_image_sensor_3f(priv, &mt_state);
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -07001011 else
1012 synaptics_image_sensor_45f(priv, &mt_state);
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001013
1014 /* Send resulting input events to user space */
Daniel Kurtz4dc772d2011-08-23 23:02:40 -07001015 synaptics_report_mt_data(psmouse, &mt_state, sgm);
1016
1017 /* Store updated mt_state */
1018 priv->mt_state = agm->mt_state = mt_state;
1019 priv->agm_pending = false;
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001020}
1021
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022/*
1023 * called for each full received packet from the touchpad
1024 */
1025static void synaptics_process_packet(struct psmouse *psmouse)
1026{
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001027 struct input_dev *dev = psmouse->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 struct synaptics_data *priv = psmouse->private;
1029 struct synaptics_hw_state hw;
1030 int num_fingers;
1031 int finger_width;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
Henrik Rydbergfec6e522010-12-21 18:11:25 +01001033 if (synaptics_parse_hw_state(psmouse->packet, priv, &hw))
1034 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001036 if (SYN_CAP_IMAGE_SENSOR(priv->ext_cap_0c)) {
1037 synaptics_image_sensor_process(psmouse, &hw);
1038 return;
1039 }
1040
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 if (hw.scroll) {
1042 priv->scroll += hw.scroll;
1043
1044 while (priv->scroll >= 4) {
1045 input_report_key(dev, BTN_BACK, !hw.down);
1046 input_sync(dev);
1047 input_report_key(dev, BTN_BACK, hw.down);
1048 input_sync(dev);
1049 priv->scroll -= 4;
1050 }
1051 while (priv->scroll <= -4) {
1052 input_report_key(dev, BTN_FORWARD, !hw.up);
1053 input_sync(dev);
1054 input_report_key(dev, BTN_FORWARD, hw.up);
1055 input_sync(dev);
1056 priv->scroll += 4;
1057 }
1058 return;
1059 }
1060
Henrik Rydberg4f56ce92010-12-18 15:42:30 +01001061 if (hw.z > 0 && hw.x > 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 num_fingers = 1;
1063 finger_width = 5;
1064 if (SYN_CAP_EXTENDED(priv->capabilities)) {
1065 switch (hw.w) {
1066 case 0 ... 1:
1067 if (SYN_CAP_MULTIFINGER(priv->capabilities))
1068 num_fingers = hw.w + 2;
1069 break;
1070 case 2:
1071 if (SYN_MODEL_PEN(priv->model_id))
1072 ; /* Nothing, treat a pen as a single finger */
1073 break;
1074 case 4 ... 15:
1075 if (SYN_CAP_PALMDETECT(priv->capabilities))
1076 finger_width = hw.w;
1077 break;
1078 }
1079 }
1080 } else {
1081 num_fingers = 0;
1082 finger_width = 0;
1083 }
1084
Henrik Rydbergfec6e522010-12-21 18:11:25 +01001085 if (SYN_CAP_ADV_GESTURE(priv->ext_cap_0c))
Daniel Kurtz7afdb842011-08-23 23:00:33 -07001086 synaptics_report_semi_mt_data(dev, &hw, &priv->agm,
1087 num_fingers);
Henrik Rydbergfec6e522010-12-21 18:11:25 +01001088
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 /* Post events
1090 * BTN_TOUCH has to be first as mousedev relies on it when doing
1091 * absolute -> relative conversion
1092 */
1093 if (hw.z > 30) input_report_key(dev, BTN_TOUCH, 1);
1094 if (hw.z < 25) input_report_key(dev, BTN_TOUCH, 0);
1095
Henrik Rydberg4f56ce92010-12-18 15:42:30 +01001096 if (num_fingers > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 input_report_abs(dev, ABS_X, hw.x);
Daniel Kurtz6de58dd2011-08-23 23:00:24 -07001098 input_report_abs(dev, ABS_Y, synaptics_invert_y(hw.y));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 }
1100 input_report_abs(dev, ABS_PRESSURE, hw.z);
1101
Chris Bagwell2a8e7712010-07-19 09:06:15 -07001102 if (SYN_CAP_PALMDETECT(priv->capabilities))
1103 input_report_abs(dev, ABS_TOOL_WIDTH, finger_width);
1104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 input_report_key(dev, BTN_TOOL_FINGER, num_fingers == 1);
Peter Hutterere42b6642008-11-20 15:24:42 -05001106 if (SYN_CAP_MULTIFINGER(priv->capabilities)) {
1107 input_report_key(dev, BTN_TOOL_DOUBLETAP, num_fingers == 2);
1108 input_report_key(dev, BTN_TOOL_TRIPLETAP, num_fingers == 3);
1109 }
1110
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001111 synaptics_report_buttons(psmouse, &hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
1113 input_sync(dev);
1114}
1115
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001116static int synaptics_validate_byte(struct psmouse *psmouse,
1117 int idx, unsigned char pkt_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118{
Helge Dellere38de672006-09-10 21:54:39 -04001119 static const unsigned char newabs_mask[] = { 0xC8, 0x00, 0x00, 0xC8, 0x00 };
1120 static const unsigned char newabs_rel_mask[] = { 0xC0, 0x00, 0x00, 0xC0, 0x00 };
1121 static const unsigned char newabs_rslt[] = { 0x80, 0x00, 0x00, 0xC0, 0x00 };
1122 static const unsigned char oldabs_mask[] = { 0xC0, 0x60, 0x00, 0xC0, 0x60 };
1123 static const unsigned char oldabs_rslt[] = { 0xC0, 0x00, 0x00, 0x80, 0x00 };
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001124 const char *packet = psmouse->packet;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
1126 if (idx < 0 || idx > 4)
1127 return 0;
1128
1129 switch (pkt_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
Dmitry Torokhova62f0d22010-05-19 10:39:17 -07001131 case SYN_NEWABS:
1132 case SYN_NEWABS_RELAXED:
1133 return (packet[idx] & newabs_rel_mask[idx]) == newabs_rslt[idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
Dmitry Torokhova62f0d22010-05-19 10:39:17 -07001135 case SYN_NEWABS_STRICT:
1136 return (packet[idx] & newabs_mask[idx]) == newabs_rslt[idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
Dmitry Torokhova62f0d22010-05-19 10:39:17 -07001138 case SYN_OLDABS:
1139 return (packet[idx] & oldabs_mask[idx]) == oldabs_rslt[idx];
1140
1141 default:
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001142 psmouse_err(psmouse, "unknown packet type %d\n", pkt_type);
Dmitry Torokhova62f0d22010-05-19 10:39:17 -07001143 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 }
1145}
1146
1147static unsigned char synaptics_detect_pkt_type(struct psmouse *psmouse)
1148{
1149 int i;
1150
1151 for (i = 0; i < 5; i++)
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001152 if (!synaptics_validate_byte(psmouse, i, SYN_NEWABS_STRICT)) {
1153 psmouse_info(psmouse, "using relaxed packet validation\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 return SYN_NEWABS_RELAXED;
1155 }
1156
1157 return SYN_NEWABS_STRICT;
1158}
1159
David Howells7d12e782006-10-05 14:55:46 +01001160static psmouse_ret_t synaptics_process_byte(struct psmouse *psmouse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 struct synaptics_data *priv = psmouse->private;
1163
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 if (psmouse->pktcnt >= 6) { /* Full packet received */
1165 if (unlikely(priv->pkt_type == SYN_NEWABS))
1166 priv->pkt_type = synaptics_detect_pkt_type(psmouse);
1167
Dmitry Torokhova8b3c0f2010-10-04 21:46:10 -07001168 if (SYN_CAP_PASS_THROUGH(priv->capabilities) &&
1169 synaptics_is_pt_packet(psmouse->packet)) {
1170 if (priv->pt_port)
1171 synaptics_pass_pt_packet(priv->pt_port, psmouse->packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 } else
1173 synaptics_process_packet(psmouse);
1174
1175 return PSMOUSE_FULL_PACKET;
1176 }
1177
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001178 return synaptics_validate_byte(psmouse, psmouse->pktcnt - 1, priv->pkt_type) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 PSMOUSE_GOOD_DATA : PSMOUSE_BAD_DATA;
1180}
1181
1182/*****************************************************************************
1183 * Driver initialization/cleanup functions
1184 ****************************************************************************/
Daniel Kurtz85615472011-08-23 23:00:41 -07001185static void set_abs_position_params(struct input_dev *dev,
1186 struct synaptics_data *priv, int x_code,
1187 int y_code)
1188{
1189 int x_min = priv->x_min ?: XMIN_NOMINAL;
1190 int x_max = priv->x_max ?: XMAX_NOMINAL;
1191 int y_min = priv->y_min ?: YMIN_NOMINAL;
1192 int y_max = priv->y_max ?: YMAX_NOMINAL;
1193 int fuzz = SYN_CAP_REDUCED_FILTERING(priv->ext_cap_0c) ?
1194 SYN_REDUCED_FILTER_FUZZ : 0;
1195
1196 input_set_abs_params(dev, x_code, x_min, x_max, fuzz, 0);
1197 input_set_abs_params(dev, y_code, y_min, y_max, fuzz, 0);
1198 input_abs_set_res(dev, x_code, priv->x_res);
1199 input_abs_set_res(dev, y_code, priv->y_res);
1200}
1201
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202static void set_input_params(struct input_dev *dev, struct synaptics_data *priv)
1203{
1204 int i;
1205
Daniel Drake7968a5d2011-11-08 00:00:35 -08001206 /* Things that apply to both modes */
Henrik Rydbergc14890a82010-12-16 09:52:23 +01001207 __set_bit(INPUT_PROP_POINTER, dev->propbit);
Daniel Drake7968a5d2011-11-08 00:00:35 -08001208 __set_bit(EV_KEY, dev->evbit);
1209 __set_bit(BTN_LEFT, dev->keybit);
1210 __set_bit(BTN_RIGHT, dev->keybit);
Henrik Rydbergc14890a82010-12-16 09:52:23 +01001211
Daniel Drake7968a5d2011-11-08 00:00:35 -08001212 if (SYN_CAP_MIDDLE_BUTTON(priv->capabilities))
1213 __set_bit(BTN_MIDDLE, dev->keybit);
1214
1215 if (!priv->absolute_mode) {
1216 /* Relative mode */
1217 __set_bit(EV_REL, dev->evbit);
1218 __set_bit(REL_X, dev->relbit);
1219 __set_bit(REL_Y, dev->relbit);
1220 return;
1221 }
1222
1223 /* Absolute mode */
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001224 __set_bit(EV_ABS, dev->evbit);
Daniel Kurtz85615472011-08-23 23:00:41 -07001225 set_abs_position_params(dev, priv, ABS_X, ABS_Y);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 input_set_abs_params(dev, ABS_PRESSURE, 0, 255, 0, 0);
Chris Bagwell2a8e7712010-07-19 09:06:15 -07001227
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001228 if (SYN_CAP_IMAGE_SENSOR(priv->ext_cap_0c)) {
1229 input_mt_init_slots(dev, 2);
1230 set_abs_position_params(dev, priv, ABS_MT_POSITION_X,
1231 ABS_MT_POSITION_Y);
1232 /* Image sensors can report per-contact pressure */
1233 input_set_abs_params(dev, ABS_MT_PRESSURE, 0, 255, 0, 0);
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -07001234
1235 /* Image sensors can signal 4 and 5 finger clicks */
1236 __set_bit(BTN_TOOL_QUADTAP, dev->keybit);
1237 __set_bit(BTN_TOOL_QUINTTAP, dev->keybit);
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001238 } else if (SYN_CAP_ADV_GESTURE(priv->ext_cap_0c)) {
1239 /* Non-image sensors with AGM use semi-mt */
Henrik Rydbergfec6e522010-12-21 18:11:25 +01001240 __set_bit(INPUT_PROP_SEMI_MT, dev->propbit);
1241 input_mt_init_slots(dev, 2);
Daniel Kurtz85615472011-08-23 23:00:41 -07001242 set_abs_position_params(dev, priv, ABS_MT_POSITION_X,
1243 ABS_MT_POSITION_Y);
Henrik Rydbergfec6e522010-12-21 18:11:25 +01001244 }
1245
Chris Bagwell2a8e7712010-07-19 09:06:15 -07001246 if (SYN_CAP_PALMDETECT(priv->capabilities))
Chris Bagwell58fb0212010-07-19 09:06:15 -07001247 input_set_abs_params(dev, ABS_TOOL_WIDTH, 0, 15, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001249 __set_bit(BTN_TOUCH, dev->keybit);
1250 __set_bit(BTN_TOOL_FINGER, dev->keybit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
Peter Hutterere42b6642008-11-20 15:24:42 -05001252 if (SYN_CAP_MULTIFINGER(priv->capabilities)) {
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001253 __set_bit(BTN_TOOL_DOUBLETAP, dev->keybit);
1254 __set_bit(BTN_TOOL_TRIPLETAP, dev->keybit);
Peter Hutterere42b6642008-11-20 15:24:42 -05001255 }
1256
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 if (SYN_CAP_FOUR_BUTTON(priv->capabilities) ||
1258 SYN_CAP_MIDDLE_BUTTON(priv->capabilities)) {
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001259 __set_bit(BTN_FORWARD, dev->keybit);
1260 __set_bit(BTN_BACK, dev->keybit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 }
1262
1263 for (i = 0; i < SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap); i++)
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001264 __set_bit(BTN_0 + i, dev->keybit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001266 __clear_bit(EV_REL, dev->evbit);
1267 __clear_bit(REL_X, dev->relbit);
1268 __clear_bit(REL_Y, dev->relbit);
Tero Saarniec20a022009-06-10 23:27:24 -07001269
Takashi Iwai5f57d672010-04-19 10:37:21 -07001270 if (SYN_CAP_CLICKPAD(priv->ext_cap_0c)) {
Henrik Rydbergc14890a82010-12-16 09:52:23 +01001271 __set_bit(INPUT_PROP_BUTTONPAD, dev->propbit);
Takashi Iwai5f57d672010-04-19 10:37:21 -07001272 /* Clickpads report only left button */
1273 __clear_bit(BTN_RIGHT, dev->keybit);
1274 __clear_bit(BTN_MIDDLE, dev->keybit);
1275 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276}
1277
Daniel Drake7968a5d2011-11-08 00:00:35 -08001278static ssize_t synaptics_show_disable_gesture(struct psmouse *psmouse,
1279 void *data, char *buf)
1280{
1281 struct synaptics_data *priv = psmouse->private;
1282
1283 return sprintf(buf, "%c\n", priv->disable_gesture ? '1' : '0');
1284}
1285
1286static ssize_t synaptics_set_disable_gesture(struct psmouse *psmouse,
1287 void *data, const char *buf,
1288 size_t len)
1289{
1290 struct synaptics_data *priv = psmouse->private;
1291 unsigned int value;
1292 int err;
1293
1294 err = kstrtouint(buf, 10, &value);
1295 if (err)
1296 return err;
1297
1298 if (value > 1)
1299 return -EINVAL;
1300
1301 if (value == priv->disable_gesture)
1302 return len;
1303
1304 priv->disable_gesture = value;
1305 if (value)
1306 priv->mode |= SYN_BIT_DISABLE_GESTURE;
1307 else
1308 priv->mode &= ~SYN_BIT_DISABLE_GESTURE;
1309
1310 if (synaptics_mode_cmd(psmouse, priv->mode))
1311 return -EIO;
1312
1313 return len;
1314}
1315
1316PSMOUSE_DEFINE_ATTR(disable_gesture, S_IWUSR | S_IRUGO, NULL,
1317 synaptics_show_disable_gesture,
1318 synaptics_set_disable_gesture);
1319
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320static void synaptics_disconnect(struct psmouse *psmouse)
1321{
Daniel Drake7968a5d2011-11-08 00:00:35 -08001322 struct synaptics_data *priv = psmouse->private;
1323
1324 if (!priv->absolute_mode && SYN_ID_DISGEST_SUPPORTED(priv->identity))
1325 device_remove_file(&psmouse->ps2dev.serio->dev,
1326 &psmouse_attr_disable_gesture.dattr);
1327
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 synaptics_reset(psmouse);
Daniel Drake7968a5d2011-11-08 00:00:35 -08001329 kfree(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 psmouse->private = NULL;
1331}
1332
1333static int synaptics_reconnect(struct psmouse *psmouse)
1334{
1335 struct synaptics_data *priv = psmouse->private;
1336 struct synaptics_data old_priv = *priv;
Alexandre Peixoto Ferreirac63fe0a2011-01-28 22:05:14 -08001337 int retry = 0;
1338 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
Alexandre Peixoto Ferreirac63fe0a2011-01-28 22:05:14 -08001340 do {
1341 psmouse_reset(psmouse);
Dmitry Torokhov85214782011-12-12 00:05:53 -08001342 if (retry) {
1343 /*
1344 * On some boxes, right after resuming, the touchpad
1345 * needs some time to finish initializing (I assume
1346 * it needs time to calibrate) and start responding
1347 * to Synaptics-specific queries, so let's wait a
1348 * bit.
1349 */
1350 ssleep(1);
1351 }
Alexandre Peixoto Ferreirac63fe0a2011-01-28 22:05:14 -08001352 error = synaptics_detect(psmouse, 0);
1353 } while (error && ++retry < 3);
Andy Whitcroft4d368452009-02-28 12:51:01 -08001354
Alexandre Peixoto Ferreirac63fe0a2011-01-28 22:05:14 -08001355 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 return -1;
1357
Alexandre Peixoto Ferreirac63fe0a2011-01-28 22:05:14 -08001358 if (retry > 1)
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001359 psmouse_dbg(psmouse, "reconnected after %d tries\n", retry);
Alexandre Peixoto Ferreirac63fe0a2011-01-28 22:05:14 -08001360
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 if (synaptics_query_hardware(psmouse)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001362 psmouse_err(psmouse, "Unable to query device.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 return -1;
1364 }
1365
Daniel Drake7968a5d2011-11-08 00:00:35 -08001366 if (synaptics_set_mode(psmouse)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001367 psmouse_err(psmouse, "Unable to initialize device.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 return -1;
1369 }
1370
Alexandre Peixoto Ferreirabaddf582011-01-28 22:05:14 -08001371 if (old_priv.identity != priv->identity ||
1372 old_priv.model_id != priv->model_id ||
1373 old_priv.capabilities != priv->capabilities ||
1374 old_priv.ext_cap != priv->ext_cap) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001375 psmouse_err(psmouse,
1376 "hardware appears to be different: id(%ld-%ld), model(%ld-%ld), caps(%lx-%lx), ext(%lx-%lx).\n",
1377 old_priv.identity, priv->identity,
1378 old_priv.model_id, priv->model_id,
1379 old_priv.capabilities, priv->capabilities,
1380 old_priv.ext_cap, priv->ext_cap);
Alexandre Peixoto Ferreirabaddf582011-01-28 22:05:14 -08001381 return -1;
1382 }
1383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 return 0;
1385}
1386
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001387static bool impaired_toshiba_kbc;
1388
1389static const struct dmi_system_id __initconst toshiba_dmi_table[] = {
1390#if defined(CONFIG_DMI) && defined(CONFIG_X86)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 {
Dmitry Torokhov9961e252009-12-04 10:24:20 -08001392 /* Toshiba Satellite */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 .matches = {
1394 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
Richard Thrippleton53a26702006-04-02 00:10:18 -05001395 DMI_MATCH(DMI_PRODUCT_NAME, "Satellite"),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 },
1397 },
Simon Horman9ba5eaa2005-07-11 01:07:20 -05001398 {
Dmitry Torokhov9961e252009-12-04 10:24:20 -08001399 /* Toshiba Dynabook */
Simon Horman9ba5eaa2005-07-11 01:07:20 -05001400 .matches = {
1401 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
Richard Thrippleton53a26702006-04-02 00:10:18 -05001402 DMI_MATCH(DMI_PRODUCT_NAME, "dynabook"),
1403 },
1404 },
1405 {
Dmitry Torokhov9961e252009-12-04 10:24:20 -08001406 /* Toshiba Portege M300 */
Richard Thrippleton53a26702006-04-02 00:10:18 -05001407 .matches = {
1408 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1409 DMI_MATCH(DMI_PRODUCT_NAME, "PORTEGE M300"),
Simon Horman9ba5eaa2005-07-11 01:07:20 -05001410 },
Dmitry Torokhov5f5eeff2009-10-12 21:35:00 -07001411
1412 },
1413 {
Dmitry Torokhov9961e252009-12-04 10:24:20 -08001414 /* Toshiba Portege M300 */
Dmitry Torokhov5f5eeff2009-10-12 21:35:00 -07001415 .matches = {
1416 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1417 DMI_MATCH(DMI_PRODUCT_NAME, "Portable PC"),
1418 DMI_MATCH(DMI_PRODUCT_VERSION, "Version 1.0"),
1419 },
1420
Simon Horman9ba5eaa2005-07-11 01:07:20 -05001421 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422#endif
Jan Beulich70874862011-03-31 00:01:58 -07001423 { }
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001424};
1425
Andres Salomonef8313b2010-12-23 01:19:38 -08001426static bool broken_olpc_ec;
1427
1428static const struct dmi_system_id __initconst olpc_dmi_table[] = {
1429#if defined(CONFIG_DMI) && defined(CONFIG_OLPC)
1430 {
1431 /* OLPC XO-1 or XO-1.5 */
1432 .matches = {
1433 DMI_MATCH(DMI_SYS_VENDOR, "OLPC"),
1434 DMI_MATCH(DMI_PRODUCT_NAME, "XO"),
1435 },
1436 },
Andres Salomonef8313b2010-12-23 01:19:38 -08001437#endif
Jan Beulich70874862011-03-31 00:01:58 -07001438 { }
Andres Salomonef8313b2010-12-23 01:19:38 -08001439};
1440
Benjamin Tissoires969ba042014-03-28 00:43:00 -07001441static const struct dmi_system_id min_max_dmi_table[] __initconst = {
1442#if defined(CONFIG_DMI)
1443 {
1444 /* Lenovo ThinkPad Helix */
1445 .matches = {
1446 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
1447 DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad Helix"),
1448 },
1449 .driver_data = (int []){1024, 5052, 2258, 4832},
1450 },
1451 {
Hans de Goede3fcaab02014-03-28 01:01:38 -07001452 /* Lenovo ThinkPad X240 */
1453 .matches = {
1454 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
1455 DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad X240"),
1456 },
1457 .driver_data = (int []){1232, 5710, 1156, 4696},
1458 },
1459 {
Benjamin Tissoires969ba042014-03-28 00:43:00 -07001460 /* Lenovo ThinkPad T440s */
1461 .matches = {
1462 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
1463 DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad T440"),
1464 },
1465 .driver_data = (int []){1024, 5112, 2024, 4832},
1466 },
1467 {
1468 /* Lenovo ThinkPad T540p */
1469 .matches = {
1470 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
1471 DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad T540"),
1472 },
1473 .driver_data = (int []){1024, 5056, 2058, 4832},
1474 },
1475#endif
1476 { }
1477};
1478
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001479void __init synaptics_module_init(void)
1480{
Benjamin Tissoires969ba042014-03-28 00:43:00 -07001481 const struct dmi_system_id *min_max_dmi;
1482
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001483 impaired_toshiba_kbc = dmi_check_system(toshiba_dmi_table);
Andres Salomonef8313b2010-12-23 01:19:38 -08001484 broken_olpc_ec = dmi_check_system(olpc_dmi_table);
Benjamin Tissoires969ba042014-03-28 00:43:00 -07001485
1486 min_max_dmi = dmi_first_match(min_max_dmi_table);
1487 if (min_max_dmi)
1488 quirk_min_max = min_max_dmi->driver_data;
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001489}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
Daniel Drake7968a5d2011-11-08 00:00:35 -08001491static int __synaptics_init(struct psmouse *psmouse, bool absolute_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492{
1493 struct synaptics_data *priv;
Daniel Drake7968a5d2011-11-08 00:00:35 -08001494 int err = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
Andres Salomonef8313b2010-12-23 01:19:38 -08001496 /*
Daniel Drake83551c02011-11-11 16:05:04 -08001497 * The OLPC XO has issues with Synaptics' absolute mode; the constant
1498 * packet spew overloads the EC such that key presses on the keyboard
1499 * are missed. Given that, don't even attempt to use Absolute mode.
1500 * Relative mode seems to work just fine.
Andres Salomonef8313b2010-12-23 01:19:38 -08001501 */
Daniel Drake83551c02011-11-11 16:05:04 -08001502 if (absolute_mode && broken_olpc_ec) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001503 psmouse_info(psmouse,
1504 "OLPC XO detected, not enabling Synaptics protocol.\n");
Andres Salomonef8313b2010-12-23 01:19:38 -08001505 return -ENODEV;
1506 }
1507
Eric Sesterhennb39787a2006-03-14 00:09:16 -05001508 psmouse->private = priv = kzalloc(sizeof(struct synaptics_data), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 if (!priv)
Davidlohr Bueso6792cbb2010-09-29 18:53:35 -07001510 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
Andy Whitcroft4d368452009-02-28 12:51:01 -08001512 psmouse_reset(psmouse);
1513
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 if (synaptics_query_hardware(psmouse)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001515 psmouse_err(psmouse, "Unable to query device.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 goto init_fail;
1517 }
1518
Daniel Drake7968a5d2011-11-08 00:00:35 -08001519 priv->absolute_mode = absolute_mode;
1520 if (SYN_ID_DISGEST_SUPPORTED(priv->identity))
1521 priv->disable_gesture = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
Daniel Drake7968a5d2011-11-08 00:00:35 -08001523 if (synaptics_set_mode(psmouse)) {
1524 psmouse_err(psmouse, "Unable to initialize device.\n");
Henrik Rydbergfec6e522010-12-21 18:11:25 +01001525 goto init_fail;
1526 }
1527
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 priv->pkt_type = SYN_MODEL_NEWABS(priv->model_id) ? SYN_NEWABS : SYN_OLDABS;
1529
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001530 psmouse_info(psmouse,
1531 "Touchpad model: %ld, fw: %ld.%ld, id: %#lx, caps: %#lx/%#lx/%#lx\n",
1532 SYN_ID_MODEL(priv->identity),
1533 SYN_ID_MAJOR(priv->identity), SYN_ID_MINOR(priv->identity),
1534 priv->model_id,
1535 priv->capabilities, priv->ext_cap, priv->ext_cap_0c);
Dmitry Torokhov409b7502005-05-28 02:12:18 -05001536
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001537 set_input_params(psmouse->dev, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
Dmitry Torokhov887cc122007-04-12 01:30:41 -04001539 /*
1540 * Encode touchpad model so that it can be used to set
1541 * input device->id.version and be visible to userspace.
1542 * Because version is __u16 we have to drop something.
1543 * Hardware info bits seem to be good candidates as they
1544 * are documented to be for Synaptics corp. internal use.
1545 */
1546 psmouse->model = ((priv->model_id & 0x00ff0000) >> 8) |
1547 (priv->model_id & 0x000000ff);
1548
Daniel Drake7968a5d2011-11-08 00:00:35 -08001549 if (absolute_mode) {
1550 psmouse->protocol_handler = synaptics_process_byte;
1551 psmouse->pktsize = 6;
1552 } else {
1553 /* Relative mode follows standard PS/2 mouse protocol */
1554 psmouse->protocol_handler = psmouse_process_byte;
1555 psmouse->pktsize = 3;
1556 }
1557
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 psmouse->set_rate = synaptics_set_rate;
1559 psmouse->disconnect = synaptics_disconnect;
1560 psmouse->reconnect = synaptics_reconnect;
Dmitry Torokhova1cec062007-02-18 01:40:24 -05001561 psmouse->cleanup = synaptics_reset;
Dmitry Torokhovf0d5c6f2006-01-14 00:27:37 -05001562 /* Synaptics can usually stay in sync without extra help */
1563 psmouse->resync_time = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
1565 if (SYN_CAP_PASS_THROUGH(priv->capabilities))
1566 synaptics_pt_create(psmouse);
1567
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 /*
1569 * Toshiba's KBC seems to have trouble handling data from
Andres Salomon7ee99162010-12-23 01:18:28 -08001570 * Synaptics at full rate. Switch to a lower rate (roughly
1571 * the same rate as a standard PS/2 mouse).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 */
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001573 if (psmouse->rate >= 80 && impaired_toshiba_kbc) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001574 psmouse_info(psmouse,
1575 "Toshiba %s detected, limiting rate to 40pps.\n",
1576 dmi_get_system_info(DMI_PRODUCT_NAME));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 psmouse->rate = 40;
1578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
Daniel Drake7968a5d2011-11-08 00:00:35 -08001580 if (!priv->absolute_mode && SYN_ID_DISGEST_SUPPORTED(priv->identity)) {
1581 err = device_create_file(&psmouse->ps2dev.serio->dev,
1582 &psmouse_attr_disable_gesture.dattr);
1583 if (err) {
1584 psmouse_err(psmouse,
1585 "Failed to create disable_gesture attribute (%d)",
1586 err);
1587 goto init_fail;
1588 }
1589 }
1590
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 return 0;
1592
1593 init_fail:
1594 kfree(priv);
Daniel Drake7968a5d2011-11-08 00:00:35 -08001595 return err;
1596}
1597
1598int synaptics_init(struct psmouse *psmouse)
1599{
1600 return __synaptics_init(psmouse, true);
1601}
1602
1603int synaptics_init_relative(struct psmouse *psmouse)
1604{
1605 return __synaptics_init(psmouse, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606}
1607
Daniel Drakee4e6efd2010-01-07 01:52:39 -08001608bool synaptics_supported(void)
1609{
1610 return true;
1611}
1612
Andres Salomon55e3d922007-03-10 01:39:54 -05001613#else /* CONFIG_MOUSE_PS2_SYNAPTICS */
1614
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001615void __init synaptics_module_init(void)
1616{
1617}
1618
Andres Salomon55e3d922007-03-10 01:39:54 -05001619int synaptics_init(struct psmouse *psmouse)
1620{
1621 return -ENOSYS;
1622}
1623
Daniel Drakee4e6efd2010-01-07 01:52:39 -08001624bool synaptics_supported(void)
1625{
1626 return false;
1627}
1628
Andres Salomon55e3d922007-03-10 01:39:54 -05001629#endif /* CONFIG_MOUSE_PS2_SYNAPTICS */