blob: a6dcd18e9adf93b5b97cd00e04b6419a6788e1e5 [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 */
43#define XMIN_NOMINAL 1472
44#define XMAX_NOMINAL 5472
45#define YMIN_NOMINAL 1408
46#define YMAX_NOMINAL 4448
47
Daniel Kurtz6de58dd2011-08-23 23:00:24 -070048/*
49 * Synaptics touchpads report the y coordinate from bottom to top, which is
50 * opposite from what userspace expects.
51 * This function is used to invert y before reporting.
52 */
53static int synaptics_invert_y(int y)
54{
55 return YMAX_NOMINAL + YMIN_NOMINAL - y;
56}
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Andres Salomon55e3d922007-03-10 01:39:54 -050059/*****************************************************************************
60 * Stuff we need even when we do not want native Synaptics support
61 ****************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63/*
64 * Set the synaptics touchpad mode byte by special commands
65 */
66static int synaptics_mode_cmd(struct psmouse *psmouse, unsigned char mode)
67{
68 unsigned char param[1];
69
70 if (psmouse_sliced_command(psmouse, mode))
71 return -1;
72 param[0] = SYN_PS_SET_MODE2;
73 if (ps2_command(&psmouse->ps2dev, param, PSMOUSE_CMD_SETRATE))
74 return -1;
75 return 0;
76}
77
Dmitry Torokhovb7802c52009-09-09 19:13:20 -070078int synaptics_detect(struct psmouse *psmouse, bool set_properties)
Andres Salomon55e3d922007-03-10 01:39:54 -050079{
80 struct ps2dev *ps2dev = &psmouse->ps2dev;
81 unsigned char param[4];
82
83 param[0] = 0;
84
85 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES);
86 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES);
87 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES);
88 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES);
89 ps2_command(ps2dev, param, PSMOUSE_CMD_GETINFO);
90
91 if (param[1] != 0x47)
92 return -ENODEV;
93
94 if (set_properties) {
95 psmouse->vendor = "Synaptics";
96 psmouse->name = "TouchPad";
97 }
98
99 return 0;
100}
101
102void synaptics_reset(struct psmouse *psmouse)
103{
104 /* reset touchpad back to relative mode, gestures enabled */
105 synaptics_mode_cmd(psmouse, 0);
106}
107
108#ifdef CONFIG_MOUSE_PS2_SYNAPTICS
109
110/*****************************************************************************
111 * Synaptics communications functions
112 ****************************************************************************/
113
114/*
115 * Send a command to the synpatics touchpad by special commands
116 */
117static int synaptics_send_cmd(struct psmouse *psmouse, unsigned char c, unsigned char *param)
118{
119 if (psmouse_sliced_command(psmouse, c))
120 return -1;
121 if (ps2_command(&psmouse->ps2dev, param, PSMOUSE_CMD_GETINFO))
122 return -1;
123 return 0;
124}
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126/*
127 * Read the model-id bytes from the touchpad
128 * see also SYN_MODEL_* macros
129 */
130static int synaptics_model_id(struct psmouse *psmouse)
131{
132 struct synaptics_data *priv = psmouse->private;
133 unsigned char mi[3];
134
135 if (synaptics_send_cmd(psmouse, SYN_QUE_MODEL, mi))
136 return -1;
137 priv->model_id = (mi[0]<<16) | (mi[1]<<8) | mi[2];
138 return 0;
139}
140
141/*
142 * Read the capability-bits from the touchpad
143 * see also the SYN_CAP_* macros
144 */
145static int synaptics_capability(struct psmouse *psmouse)
146{
147 struct synaptics_data *priv = psmouse->private;
148 unsigned char cap[3];
149
150 if (synaptics_send_cmd(psmouse, SYN_QUE_CAPABILITIES, cap))
151 return -1;
152 priv->capabilities = (cap[0] << 16) | (cap[1] << 8) | cap[2];
Takashi Iwai5f57d672010-04-19 10:37:21 -0700153 priv->ext_cap = priv->ext_cap_0c = 0;
154
Dmitry Torokhov3619b8f2010-07-21 00:01:19 -0700155 /*
156 * Older firmwares had submodel ID fixed to 0x47
157 */
158 if (SYN_ID_FULL(priv->identity) < 0x705 &&
159 SYN_CAP_SUBMODEL_ID(priv->capabilities) != 0x47) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 return -1;
Dmitry Torokhov3619b8f2010-07-21 00:01:19 -0700161 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163 /*
164 * Unless capExtended is set the rest of the flags should be ignored
165 */
166 if (!SYN_CAP_EXTENDED(priv->capabilities))
167 priv->capabilities = 0;
168
169 if (SYN_EXT_CAP_REQUESTS(priv->capabilities) >= 1) {
170 if (synaptics_send_cmd(psmouse, SYN_QUE_EXT_CAPAB, cap)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700171 psmouse_warn(psmouse,
172 "device claims to have extended capabilities, but I'm not able to read them.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 } else {
174 priv->ext_cap = (cap[0] << 16) | (cap[1] << 8) | cap[2];
175
176 /*
177 * if nExtBtn is greater than 8 it should be considered
178 * invalid and treated as 0
179 */
180 if (SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap) > 8)
181 priv->ext_cap &= 0xff0fff;
182 }
183 }
Takashi Iwai5f57d672010-04-19 10:37:21 -0700184
185 if (SYN_EXT_CAP_REQUESTS(priv->capabilities) >= 4) {
186 if (synaptics_send_cmd(psmouse, SYN_QUE_EXT_CAPAB_0C, cap)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700187 psmouse_warn(psmouse,
188 "device claims to have extended capability 0x0c, but I'm not able to read it.\n");
Takashi Iwai5f57d672010-04-19 10:37:21 -0700189 } else {
190 priv->ext_cap_0c = (cap[0] << 16) | (cap[1] << 8) | cap[2];
191 }
192 }
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 return 0;
195}
196
197/*
198 * Identify Touchpad
199 * See also the SYN_ID_* macros
200 */
201static int synaptics_identify(struct psmouse *psmouse)
202{
203 struct synaptics_data *priv = psmouse->private;
204 unsigned char id[3];
205
206 if (synaptics_send_cmd(psmouse, SYN_QUE_IDENTIFY, id))
207 return -1;
208 priv->identity = (id[0]<<16) | (id[1]<<8) | id[2];
209 if (SYN_ID_IS_SYNAPTICS(priv->identity))
210 return 0;
211 return -1;
212}
213
Tero Saarniec20a022009-06-10 23:27:24 -0700214/*
Dmitry Torokhov83ba9ea2010-05-10 23:06:52 -0700215 * Read touchpad resolution and maximum reported coordinates
Tero Saarniec20a022009-06-10 23:27:24 -0700216 * Resolution is left zero if touchpad does not support the query
217 */
218static int synaptics_resolution(struct psmouse *psmouse)
219{
220 struct synaptics_data *priv = psmouse->private;
Dmitry Torokhova66413f2011-07-09 12:32:56 -0700221 unsigned char resp[3];
Tero Saarniec20a022009-06-10 23:27:24 -0700222
223 if (SYN_ID_MAJOR(priv->identity) < 4)
Takashi Iwaibbddd192010-07-14 09:32:46 -0700224 return 0;
Tero Saarniec20a022009-06-10 23:27:24 -0700225
Dmitry Torokhova66413f2011-07-09 12:32:56 -0700226 if (synaptics_send_cmd(psmouse, SYN_QUE_RESOLUTION, resp) == 0) {
227 if (resp[0] != 0 && (resp[1] & 0x80) && resp[2] != 0) {
228 priv->x_res = resp[0]; /* x resolution in units/mm */
229 priv->y_res = resp[2]; /* y resolution in units/mm */
Dmitry Torokhov83ba9ea2010-05-10 23:06:52 -0700230 }
231 }
Tero Saarniec20a022009-06-10 23:27:24 -0700232
Dmitry Torokhov83ba9ea2010-05-10 23:06:52 -0700233 if (SYN_EXT_CAP_REQUESTS(priv->capabilities) >= 5 &&
234 SYN_CAP_MAX_DIMENSIONS(priv->ext_cap_0c)) {
Dmitry Torokhova66413f2011-07-09 12:32:56 -0700235 if (synaptics_send_cmd(psmouse, SYN_QUE_EXT_MAX_COORDS, resp)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700236 psmouse_warn(psmouse,
237 "device claims to have max coordinates query, but I'm not able to read it.\n");
Dmitry Torokhov83ba9ea2010-05-10 23:06:52 -0700238 } else {
Dmitry Torokhova66413f2011-07-09 12:32:56 -0700239 priv->x_max = (resp[0] << 5) | ((resp[1] & 0x0f) << 1);
240 priv->y_max = (resp[2] << 5) | ((resp[1] & 0xf0) >> 3);
241 }
242 }
243
244 if (SYN_EXT_CAP_REQUESTS(priv->capabilities) >= 7 &&
245 SYN_CAP_MIN_DIMENSIONS(priv->ext_cap_0c)) {
246 if (synaptics_send_cmd(psmouse, SYN_QUE_EXT_MIN_COORDS, resp)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700247 psmouse_warn(psmouse,
248 "device claims to have min coordinates query, but I'm not able to read it.\n");
Dmitry Torokhova66413f2011-07-09 12:32:56 -0700249 } else {
250 priv->x_min = (resp[0] << 5) | ((resp[1] & 0x0f) << 1);
251 priv->y_min = (resp[2] << 5) | ((resp[1] & 0xf0) >> 3);
Dmitry Torokhov83ba9ea2010-05-10 23:06:52 -0700252 }
Tero Saarniec20a022009-06-10 23:27:24 -0700253 }
254
255 return 0;
256}
257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258static int synaptics_query_hardware(struct psmouse *psmouse)
259{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 if (synaptics_identify(psmouse))
261 return -1;
262 if (synaptics_model_id(psmouse))
263 return -1;
264 if (synaptics_capability(psmouse))
265 return -1;
Tero Saarniec20a022009-06-10 23:27:24 -0700266 if (synaptics_resolution(psmouse))
267 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
269 return 0;
270}
271
272static int synaptics_set_absolute_mode(struct psmouse *psmouse)
273{
274 struct synaptics_data *priv = psmouse->private;
275
276 priv->mode = SYN_BIT_ABSOLUTE_MODE;
277 if (SYN_ID_MAJOR(priv->identity) >= 4)
278 priv->mode |= SYN_BIT_DISABLE_GESTURE;
279 if (SYN_CAP_EXTENDED(priv->capabilities))
280 priv->mode |= SYN_BIT_W_MODE;
281
282 if (synaptics_mode_cmd(psmouse, priv->mode))
283 return -1;
284
285 return 0;
286}
287
288static void synaptics_set_rate(struct psmouse *psmouse, unsigned int rate)
289{
290 struct synaptics_data *priv = psmouse->private;
291
292 if (rate >= 80) {
293 priv->mode |= SYN_BIT_HIGH_RATE;
294 psmouse->rate = 80;
295 } else {
296 priv->mode &= ~SYN_BIT_HIGH_RATE;
297 psmouse->rate = 40;
298 }
299
300 synaptics_mode_cmd(psmouse, priv->mode);
301}
302
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100303static int synaptics_set_advanced_gesture_mode(struct psmouse *psmouse)
304{
305 static unsigned char param = 0xc8;
306 struct synaptics_data *priv = psmouse->private;
307
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700308 if (!(SYN_CAP_ADV_GESTURE(priv->ext_cap_0c) ||
309 SYN_CAP_IMAGE_SENSOR(priv->ext_cap_0c)))
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100310 return 0;
311
312 if (psmouse_sliced_command(psmouse, SYN_QUE_MODEL))
313 return -1;
314 if (ps2_command(&psmouse->ps2dev, &param, PSMOUSE_CMD_SETRATE))
315 return -1;
316
317 /* Advanced gesture mode also sends multi finger data */
318 priv->capabilities |= BIT(1);
319
320 return 0;
321}
322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323/*****************************************************************************
324 * Synaptics pass-through PS/2 port support
325 ****************************************************************************/
326static int synaptics_pt_write(struct serio *serio, unsigned char c)
327{
328 struct psmouse *parent = serio_get_drvdata(serio->parent);
329 char rate_param = SYN_PS_CLIENT_CMD; /* indicates that we want pass-through port */
330
331 if (psmouse_sliced_command(parent, c))
332 return -1;
333 if (ps2_command(&parent->ps2dev, &rate_param, PSMOUSE_CMD_SETRATE))
334 return -1;
335 return 0;
336}
337
Dmitry Torokhova8b3c0f2010-10-04 21:46:10 -0700338static int synaptics_pt_start(struct serio *serio)
339{
340 struct psmouse *parent = serio_get_drvdata(serio->parent);
341 struct synaptics_data *priv = parent->private;
342
343 serio_pause_rx(parent->ps2dev.serio);
344 priv->pt_port = serio;
345 serio_continue_rx(parent->ps2dev.serio);
346
347 return 0;
348}
349
350static void synaptics_pt_stop(struct serio *serio)
351{
352 struct psmouse *parent = serio_get_drvdata(serio->parent);
353 struct synaptics_data *priv = parent->private;
354
355 serio_pause_rx(parent->ps2dev.serio);
356 priv->pt_port = NULL;
357 serio_continue_rx(parent->ps2dev.serio);
358}
359
360static int synaptics_is_pt_packet(unsigned char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
362 return (buf[0] & 0xFC) == 0x84 && (buf[3] & 0xCC) == 0xC4;
363}
364
365static void synaptics_pass_pt_packet(struct serio *ptport, unsigned char *packet)
366{
367 struct psmouse *child = serio_get_drvdata(ptport);
368
369 if (child && child->state == PSMOUSE_ACTIVATED) {
David Howells7d12e782006-10-05 14:55:46 +0100370 serio_interrupt(ptport, packet[1], 0);
371 serio_interrupt(ptport, packet[4], 0);
372 serio_interrupt(ptport, packet[5], 0);
Sergey Vlasov33fdfa92005-07-24 00:53:32 -0500373 if (child->pktsize == 4)
David Howells7d12e782006-10-05 14:55:46 +0100374 serio_interrupt(ptport, packet[2], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 } else
David Howells7d12e782006-10-05 14:55:46 +0100376 serio_interrupt(ptport, packet[1], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377}
378
379static void synaptics_pt_activate(struct psmouse *psmouse)
380{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 struct synaptics_data *priv = psmouse->private;
Dmitry Torokhova8b3c0f2010-10-04 21:46:10 -0700382 struct psmouse *child = serio_get_drvdata(priv->pt_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 /* adjust the touchpad to child's choice of protocol */
385 if (child) {
Sergey Vlasov33fdfa92005-07-24 00:53:32 -0500386 if (child->pktsize == 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 priv->mode |= SYN_BIT_FOUR_BYTE_CLIENT;
388 else
389 priv->mode &= ~SYN_BIT_FOUR_BYTE_CLIENT;
390
391 if (synaptics_mode_cmd(psmouse, priv->mode))
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700392 psmouse_warn(psmouse,
393 "failed to switch guest protocol\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 }
395}
396
397static void synaptics_pt_create(struct psmouse *psmouse)
398{
399 struct serio *serio;
400
Eric Sesterhennb39787a2006-03-14 00:09:16 -0500401 serio = kzalloc(sizeof(struct serio), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 if (!serio) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700403 psmouse_err(psmouse,
404 "not enough memory for pass-through port\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 return;
406 }
407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 serio->id.type = SERIO_PS_PSTHRU;
409 strlcpy(serio->name, "Synaptics pass-through", sizeof(serio->name));
410 strlcpy(serio->phys, "synaptics-pt/serio0", sizeof(serio->name));
411 serio->write = synaptics_pt_write;
Dmitry Torokhova8b3c0f2010-10-04 21:46:10 -0700412 serio->start = synaptics_pt_start;
413 serio->stop = synaptics_pt_stop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 serio->parent = psmouse->ps2dev.serio;
415
416 psmouse->pt_activate = synaptics_pt_activate;
417
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700418 psmouse_info(psmouse, "serio: %s port at %s\n",
419 serio->name, psmouse->phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 serio_register_port(serio);
421}
422
423/*****************************************************************************
424 * Functions to interpret the absolute mode packets
425 ****************************************************************************/
426
Daniel Kurtza6ca40c2011-08-23 23:02:31 -0700427static void synaptics_mt_state_set(struct synaptics_mt_state *state, int count,
428 int sgm, int agm)
429{
430 state->count = count;
431 state->sgm = sgm;
432 state->agm = agm;
433}
434
Daniel Kurtz7afdb842011-08-23 23:00:33 -0700435static void synaptics_parse_agm(const unsigned char buf[],
Daniel Kurtza6ca40c2011-08-23 23:02:31 -0700436 struct synaptics_data *priv,
437 struct synaptics_hw_state *hw)
Daniel Kurtz7afdb842011-08-23 23:00:33 -0700438{
439 struct synaptics_hw_state *agm = &priv->agm;
Daniel Kurtza6ca40c2011-08-23 23:02:31 -0700440 int agm_packet_type;
Daniel Kurtz7afdb842011-08-23 23:00:33 -0700441
Daniel Kurtza6ca40c2011-08-23 23:02:31 -0700442 agm_packet_type = (buf[5] & 0x30) >> 4;
443 switch (agm_packet_type) {
444 case 1:
445 /* Gesture packet: (x, y, z) half resolution */
446 agm->w = hw->w;
447 agm->x = (((buf[4] & 0x0f) << 8) | buf[1]) << 1;
448 agm->y = (((buf[4] & 0xf0) << 4) | buf[2]) << 1;
449 agm->z = ((buf[3] & 0x30) | (buf[5] & 0x0f)) << 1;
450 break;
451
452 case 2:
453 /* AGM-CONTACT packet: (count, sgm, agm) */
454 synaptics_mt_state_set(&agm->mt_state, buf[1], buf[2], buf[4]);
455 break;
456
457 default:
458 break;
459 }
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700460
461 /* Record that at least one AGM has been received since last SGM */
462 priv->agm_pending = true;
Daniel Kurtz7afdb842011-08-23 23:00:33 -0700463}
464
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100465static int synaptics_parse_hw_state(const unsigned char buf[],
466 struct synaptics_data *priv,
467 struct synaptics_hw_state *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468{
469 memset(hw, 0, sizeof(struct synaptics_hw_state));
470
471 if (SYN_MODEL_NEWABS(priv->model_id)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 hw->w = (((buf[0] & 0x30) >> 2) |
473 ((buf[0] & 0x04) >> 1) |
474 ((buf[3] & 0x04) >> 2));
475
476 hw->left = (buf[0] & 0x01) ? 1 : 0;
477 hw->right = (buf[0] & 0x02) ? 1 : 0;
478
Takashi Iwai5f57d672010-04-19 10:37:21 -0700479 if (SYN_CAP_CLICKPAD(priv->ext_cap_0c)) {
480 /*
481 * Clickpad's button is transmitted as middle button,
482 * however, since it is primary button, we will report
483 * it as BTN_LEFT.
484 */
485 hw->left = ((buf[0] ^ buf[3]) & 0x01) ? 1 : 0;
486
487 } else if (SYN_CAP_MIDDLE_BUTTON(priv->capabilities)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 hw->middle = ((buf[0] ^ buf[3]) & 0x01) ? 1 : 0;
489 if (hw->w == 2)
490 hw->scroll = (signed char)(buf[1]);
491 }
492
493 if (SYN_CAP_FOUR_BUTTON(priv->capabilities)) {
494 hw->up = ((buf[0] ^ buf[3]) & 0x01) ? 1 : 0;
495 hw->down = ((buf[0] ^ buf[3]) & 0x02) ? 1 : 0;
496 }
497
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700498 if ((SYN_CAP_ADV_GESTURE(priv->ext_cap_0c) ||
499 SYN_CAP_IMAGE_SENSOR(priv->ext_cap_0c)) &&
500 hw->w == 2) {
Daniel Kurtza6ca40c2011-08-23 23:02:31 -0700501 synaptics_parse_agm(buf, priv, hw);
Daniel Kurtz28d5fd82011-07-06 22:57:39 -0700502 return 1;
503 }
504
505 hw->x = (((buf[3] & 0x10) << 8) |
506 ((buf[1] & 0x0f) << 8) |
507 buf[4]);
508 hw->y = (((buf[3] & 0x20) << 7) |
509 ((buf[1] & 0xf0) << 4) |
510 buf[5]);
511 hw->z = buf[2];
512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 if (SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap) &&
514 ((buf[0] ^ buf[3]) & 0x02)) {
515 switch (SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap) & ~0x01) {
516 default:
517 /*
518 * if nExtBtn is greater than 8 it should be
519 * considered invalid and treated as 0
520 */
521 break;
522 case 8:
523 hw->ext_buttons |= ((buf[5] & 0x08)) ? 0x80 : 0;
524 hw->ext_buttons |= ((buf[4] & 0x08)) ? 0x40 : 0;
525 case 6:
526 hw->ext_buttons |= ((buf[5] & 0x04)) ? 0x20 : 0;
527 hw->ext_buttons |= ((buf[4] & 0x04)) ? 0x10 : 0;
528 case 4:
529 hw->ext_buttons |= ((buf[5] & 0x02)) ? 0x08 : 0;
530 hw->ext_buttons |= ((buf[4] & 0x02)) ? 0x04 : 0;
531 case 2:
532 hw->ext_buttons |= ((buf[5] & 0x01)) ? 0x02 : 0;
533 hw->ext_buttons |= ((buf[4] & 0x01)) ? 0x01 : 0;
534 }
535 }
536 } else {
537 hw->x = (((buf[1] & 0x1f) << 8) | buf[2]);
538 hw->y = (((buf[4] & 0x1f) << 8) | buf[5]);
539
540 hw->z = (((buf[0] & 0x30) << 2) | (buf[3] & 0x3F));
541 hw->w = (((buf[1] & 0x80) >> 4) | ((buf[0] & 0x04) >> 1));
542
543 hw->left = (buf[0] & 0x01) ? 1 : 0;
544 hw->right = (buf[0] & 0x02) ? 1 : 0;
545 }
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100546
547 return 0;
548}
549
Daniel Kurtzbea9f0f2011-07-06 22:42:52 -0700550static void synaptics_report_semi_mt_slot(struct input_dev *dev, int slot,
551 bool active, int x, int y)
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100552{
553 input_mt_slot(dev, slot);
554 input_mt_report_slot_state(dev, MT_TOOL_FINGER, active);
555 if (active) {
556 input_report_abs(dev, ABS_MT_POSITION_X, x);
Daniel Kurtz6de58dd2011-08-23 23:00:24 -0700557 input_report_abs(dev, ABS_MT_POSITION_Y, synaptics_invert_y(y));
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100558 }
559}
560
561static void synaptics_report_semi_mt_data(struct input_dev *dev,
562 const struct synaptics_hw_state *a,
563 const struct synaptics_hw_state *b,
564 int num_fingers)
565{
566 if (num_fingers >= 2) {
Daniel Kurtzbea9f0f2011-07-06 22:42:52 -0700567 synaptics_report_semi_mt_slot(dev, 0, true, min(a->x, b->x),
568 min(a->y, b->y));
569 synaptics_report_semi_mt_slot(dev, 1, true, max(a->x, b->x),
570 max(a->y, b->y));
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100571 } else if (num_fingers == 1) {
Daniel Kurtzbea9f0f2011-07-06 22:42:52 -0700572 synaptics_report_semi_mt_slot(dev, 0, true, a->x, a->y);
573 synaptics_report_semi_mt_slot(dev, 1, false, 0, 0);
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100574 } else {
Daniel Kurtzbea9f0f2011-07-06 22:42:52 -0700575 synaptics_report_semi_mt_slot(dev, 0, false, 0, 0);
576 synaptics_report_semi_mt_slot(dev, 1, false, 0, 0);
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578}
579
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700580static void synaptics_report_buttons(struct psmouse *psmouse,
581 const struct synaptics_hw_state *hw)
582{
583 struct input_dev *dev = psmouse->dev;
584 struct synaptics_data *priv = psmouse->private;
585 int i;
586
587 input_report_key(dev, BTN_LEFT, hw->left);
588 input_report_key(dev, BTN_RIGHT, hw->right);
589
590 if (SYN_CAP_MIDDLE_BUTTON(priv->capabilities))
591 input_report_key(dev, BTN_MIDDLE, hw->middle);
592
593 if (SYN_CAP_FOUR_BUTTON(priv->capabilities)) {
594 input_report_key(dev, BTN_FORWARD, hw->up);
595 input_report_key(dev, BTN_BACK, hw->down);
596 }
597
598 for (i = 0; i < SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap); i++)
599 input_report_key(dev, BTN_0 + i, hw->ext_buttons & (1 << i));
600}
601
602static void synaptics_report_slot(struct input_dev *dev, int slot,
603 const struct synaptics_hw_state *hw)
604{
605 input_mt_slot(dev, slot);
606 input_mt_report_slot_state(dev, MT_TOOL_FINGER, (hw != NULL));
607 if (!hw)
608 return;
609
610 input_report_abs(dev, ABS_MT_POSITION_X, hw->x);
611 input_report_abs(dev, ABS_MT_POSITION_Y, synaptics_invert_y(hw->y));
612 input_report_abs(dev, ABS_MT_PRESSURE, hw->z);
613}
614
615static void synaptics_report_mt_data(struct psmouse *psmouse,
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700616 struct synaptics_mt_state *mt_state,
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700617 const struct synaptics_hw_state *sgm)
618{
619 struct input_dev *dev = psmouse->dev;
620 struct synaptics_data *priv = psmouse->private;
621 struct synaptics_hw_state *agm = &priv->agm;
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700622 struct synaptics_mt_state *old = &priv->mt_state;
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700623
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700624 switch (mt_state->count) {
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700625 case 0:
626 synaptics_report_slot(dev, 0, NULL);
627 synaptics_report_slot(dev, 1, NULL);
628 break;
629 case 1:
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700630 if (mt_state->sgm == -1) {
631 synaptics_report_slot(dev, 0, NULL);
632 synaptics_report_slot(dev, 1, NULL);
633 } else if (mt_state->sgm == 0) {
634 synaptics_report_slot(dev, 0, sgm);
635 synaptics_report_slot(dev, 1, NULL);
636 } else {
637 synaptics_report_slot(dev, 0, NULL);
638 synaptics_report_slot(dev, 1, sgm);
639 }
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700640 break;
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700641 default:
642 /*
643 * If the finger slot contained in SGM is valid, and either
644 * hasn't changed, or is new, then report SGM in MTB slot 0.
645 * Otherwise, empty MTB slot 0.
646 */
647 if (mt_state->sgm != -1 &&
648 (mt_state->sgm == old->sgm || old->sgm == -1))
649 synaptics_report_slot(dev, 0, sgm);
650 else
651 synaptics_report_slot(dev, 0, NULL);
652
653 /*
654 * If the finger slot contained in AGM is valid, and either
655 * hasn't changed, or is new, then report AGM in MTB slot 1.
656 * Otherwise, empty MTB slot 1.
657 */
658 if (mt_state->agm != -1 &&
659 (mt_state->agm == old->agm || old->agm == -1))
660 synaptics_report_slot(dev, 1, agm);
661 else
662 synaptics_report_slot(dev, 1, NULL);
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700663 break;
664 }
665
666 /* Don't use active slot count to generate BTN_TOOL events. */
667 input_mt_report_pointer_emulation(dev, false);
668
669 /* Send the number of fingers reported by touchpad itself. */
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700670 input_mt_report_finger_count(dev, mt_state->count);
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700671
672 synaptics_report_buttons(psmouse, sgm);
673
674 input_sync(dev);
675}
676
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700677/* Handle case where mt_state->count = 0 */
678static void synaptics_image_sensor_0f(struct synaptics_data *priv,
679 struct synaptics_mt_state *mt_state)
680{
681 synaptics_mt_state_set(mt_state, 0, -1, -1);
682 priv->mt_state_lost = false;
683}
684
685/* Handle case where mt_state->count = 1 */
686static void synaptics_image_sensor_1f(struct synaptics_data *priv,
687 struct synaptics_mt_state *mt_state)
688{
689 struct synaptics_hw_state *agm = &priv->agm;
690 struct synaptics_mt_state *old = &priv->mt_state;
691
692 /*
693 * If the last AGM was (0,0,0), and there is only one finger left,
694 * then we absolutely know that SGM contains slot 0, and all other
695 * fingers have been removed.
696 */
697 if (priv->agm_pending && agm->z == 0) {
698 synaptics_mt_state_set(mt_state, 1, 0, -1);
699 priv->mt_state_lost = false;
700 return;
701 }
702
703 switch (old->count) {
704 case 0:
705 synaptics_mt_state_set(mt_state, 1, 0, -1);
706 break;
707 case 1:
708 /*
709 * If mt_state_lost, then the previous transition was 3->1,
710 * and SGM now contains either slot 0 or 1, but we don't know
711 * which. So, we just assume that the SGM now contains slot 1.
712 *
713 * If pending AGM and either:
714 * (a) the previous SGM slot contains slot 0, or
715 * (b) there was no SGM slot
716 * then, the SGM now contains slot 1
717 *
718 * Case (a) happens with very rapid "drum roll" gestures, where
719 * slot 0 finger is lifted and a new slot 1 finger touches
720 * within one reporting interval.
721 *
722 * Case (b) happens if initially two or more fingers tap
723 * briefly, and all but one lift before the end of the first
724 * reporting interval.
725 *
726 * (In both these cases, slot 0 will becomes empty, so SGM
727 * contains slot 1 with the new finger)
728 *
729 * Else, if there was no previous SGM, it now contains slot 0.
730 *
731 * Otherwise, SGM still contains the same slot.
732 */
733 if (priv->mt_state_lost ||
734 (priv->agm_pending && old->sgm <= 0))
735 synaptics_mt_state_set(mt_state, 1, 1, -1);
736 else if (old->sgm == -1)
737 synaptics_mt_state_set(mt_state, 1, 0, -1);
738 break;
739 case 2:
740 /*
741 * If mt_state_lost, we don't know which finger SGM contains.
742 *
743 * So, report 1 finger, but with both slots empty.
744 * We will use slot 1 on subsequent 1->1
745 */
746 if (priv->mt_state_lost) {
747 synaptics_mt_state_set(mt_state, 1, -1, -1);
748 break;
749 }
750 /*
751 * Since the last AGM was NOT (0,0,0), it was the finger in
752 * slot 0 that has been removed.
753 * So, SGM now contains previous AGM's slot, and AGM is now
754 * empty.
755 */
756 synaptics_mt_state_set(mt_state, 1, old->agm, -1);
757 break;
758 case 3:
759 /*
760 * Since last AGM was not (0,0,0), we don't know which finger
761 * is left.
762 *
763 * So, report 1 finger, but with both slots empty.
764 * We will use slot 1 on subsequent 1->1
765 */
766 synaptics_mt_state_set(mt_state, 1, -1, -1);
767 priv->mt_state_lost = true;
768 break;
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -0700769 case 4:
770 case 5:
771 /* mt_state was updated by AGM-CONTACT packet */
772 break;
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700773 }
774}
775
776/* Handle case where mt_state->count = 2 */
777static void synaptics_image_sensor_2f(struct synaptics_data *priv,
778 struct synaptics_mt_state *mt_state)
779{
780 struct synaptics_mt_state *old = &priv->mt_state;
781
782 switch (old->count) {
783 case 0:
784 synaptics_mt_state_set(mt_state, 2, 0, 1);
785 break;
786 case 1:
787 /*
788 * If previous SGM contained slot 1 or higher, SGM now contains
789 * slot 0 (the newly touching finger) and AGM contains SGM's
790 * previous slot.
791 *
792 * Otherwise, SGM still contains slot 0 and AGM now contains
793 * slot 1.
794 */
795 if (old->sgm >= 1)
796 synaptics_mt_state_set(mt_state, 2, 0, old->sgm);
797 else
798 synaptics_mt_state_set(mt_state, 2, 0, 1);
799 break;
800 case 2:
801 /*
802 * If mt_state_lost, SGM now contains either finger 1 or 2, but
803 * we don't know which.
804 * So, we just assume that the SGM contains slot 0 and AGM 1.
805 */
806 if (priv->mt_state_lost)
807 synaptics_mt_state_set(mt_state, 2, 0, 1);
808 /*
809 * Otherwise, use the same mt_state, since it either hasn't
810 * changed, or was updated by a recently received AGM-CONTACT
811 * packet.
812 */
813 break;
814 case 3:
815 /*
816 * 3->2 transitions have two unsolvable problems:
817 * 1) no indication is given which finger was removed
818 * 2) no way to tell if agm packet was for finger 3
819 * before 3->2, or finger 2 after 3->2.
820 *
821 * So, report 2 fingers, but empty all slots.
822 * We will guess slots [0,1] on subsequent 2->2.
823 */
824 synaptics_mt_state_set(mt_state, 2, -1, -1);
825 priv->mt_state_lost = true;
826 break;
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -0700827 case 4:
828 case 5:
829 /* mt_state was updated by AGM-CONTACT packet */
830 break;
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700831 }
832}
833
834/* Handle case where mt_state->count = 3 */
835static void synaptics_image_sensor_3f(struct synaptics_data *priv,
836 struct synaptics_mt_state *mt_state)
837{
838 struct synaptics_mt_state *old = &priv->mt_state;
839
840 switch (old->count) {
841 case 0:
842 synaptics_mt_state_set(mt_state, 3, 0, 2);
843 break;
844 case 1:
845 /*
846 * If previous SGM contained slot 2 or higher, SGM now contains
847 * slot 0 (one of the newly touching fingers) and AGM contains
848 * SGM's previous slot.
849 *
850 * Otherwise, SGM now contains slot 0 and AGM contains slot 2.
851 */
852 if (old->sgm >= 2)
853 synaptics_mt_state_set(mt_state, 3, 0, old->sgm);
854 else
855 synaptics_mt_state_set(mt_state, 3, 0, 2);
856 break;
857 case 2:
858 /*
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -0700859 * If the AGM previously contained slot 3 or higher, then the
860 * newly touching finger is in the lowest available slot.
861 *
862 * If SGM was previously 1 or higher, then the new SGM is
863 * now slot 0 (with a new finger), otherwise, the new finger
864 * is now in a hidden slot between 0 and AGM's slot.
865 *
866 * In all such cases, the SGM now contains slot 0, and the AGM
867 * continues to contain the same slot as before.
868 */
869 if (old->agm >= 3) {
870 synaptics_mt_state_set(mt_state, 3, 0, old->agm);
871 break;
872 }
873
874 /*
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700875 * After some 3->1 and all 3->2 transitions, we lose track
876 * of which slot is reported by SGM and AGM.
877 *
878 * For 2->3 in this state, report 3 fingers, but empty all
879 * slots, and we will guess (0,2) on a subsequent 0->3.
880 *
881 * To userspace, the resulting transition will look like:
882 * 2:[0,1] -> 3:[-1,-1] -> 3:[0,2]
883 */
884 if (priv->mt_state_lost) {
885 synaptics_mt_state_set(mt_state, 3, -1, -1);
886 break;
887 }
888
889 /*
890 * If the (SGM,AGM) really previously contained slots (0, 1),
891 * then we cannot know what slot was just reported by the AGM,
892 * because the 2->3 transition can occur either before or after
893 * the AGM packet. Thus, this most recent AGM could contain
894 * either the same old slot 1 or the new slot 2.
895 * Subsequent AGMs will be reporting slot 2.
896 *
897 * To userspace, the resulting transition will look like:
898 * 2:[0,1] -> 3:[0,-1] -> 3:[0,2]
899 */
900 synaptics_mt_state_set(mt_state, 3, 0, -1);
901 break;
902 case 3:
903 /*
904 * If, for whatever reason, the previous agm was invalid,
905 * Assume SGM now contains slot 0, AGM now contains slot 2.
906 */
907 if (old->agm <= 2)
908 synaptics_mt_state_set(mt_state, 3, 0, 2);
909 /*
910 * mt_state either hasn't changed, or was updated by a recently
911 * received AGM-CONTACT packet.
912 */
913 break;
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -0700914
915 case 4:
916 case 5:
917 /* mt_state was updated by AGM-CONTACT packet */
918 break;
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700919 }
920}
921
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -0700922/* Handle case where mt_state->count = 4, or = 5 */
923static void synaptics_image_sensor_45f(struct synaptics_data *priv,
924 struct synaptics_mt_state *mt_state)
925{
926 /* mt_state was updated correctly by AGM-CONTACT packet */
927 priv->mt_state_lost = false;
928}
929
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700930static void synaptics_image_sensor_process(struct psmouse *psmouse,
931 struct synaptics_hw_state *sgm)
932{
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700933 struct synaptics_data *priv = psmouse->private;
934 struct synaptics_hw_state *agm = &priv->agm;
935 struct synaptics_mt_state mt_state;
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700936
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700937 /* Initialize using current mt_state (as updated by last agm) */
938 mt_state = agm->mt_state;
939
940 /*
941 * Update mt_state using the new finger count and current mt_state.
942 */
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700943 if (sgm->z == 0)
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700944 synaptics_image_sensor_0f(priv, &mt_state);
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700945 else if (sgm->w >= 4)
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700946 synaptics_image_sensor_1f(priv, &mt_state);
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700947 else if (sgm->w == 0)
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700948 synaptics_image_sensor_2f(priv, &mt_state);
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -0700949 else if (sgm->w == 1 && mt_state.count <= 3)
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700950 synaptics_image_sensor_3f(priv, &mt_state);
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -0700951 else
952 synaptics_image_sensor_45f(priv, &mt_state);
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700953
954 /* Send resulting input events to user space */
Daniel Kurtz4dc772d2011-08-23 23:02:40 -0700955 synaptics_report_mt_data(psmouse, &mt_state, sgm);
956
957 /* Store updated mt_state */
958 priv->mt_state = agm->mt_state = mt_state;
959 priv->agm_pending = false;
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700960}
961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962/*
963 * called for each full received packet from the touchpad
964 */
965static void synaptics_process_packet(struct psmouse *psmouse)
966{
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -0500967 struct input_dev *dev = psmouse->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 struct synaptics_data *priv = psmouse->private;
969 struct synaptics_hw_state hw;
970 int num_fingers;
971 int finger_width;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100973 if (synaptics_parse_hw_state(psmouse->packet, priv, &hw))
974 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
Daniel Kurtz3cdfee92011-08-23 23:02:25 -0700976 if (SYN_CAP_IMAGE_SENSOR(priv->ext_cap_0c)) {
977 synaptics_image_sensor_process(psmouse, &hw);
978 return;
979 }
980
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 if (hw.scroll) {
982 priv->scroll += hw.scroll;
983
984 while (priv->scroll >= 4) {
985 input_report_key(dev, BTN_BACK, !hw.down);
986 input_sync(dev);
987 input_report_key(dev, BTN_BACK, hw.down);
988 input_sync(dev);
989 priv->scroll -= 4;
990 }
991 while (priv->scroll <= -4) {
992 input_report_key(dev, BTN_FORWARD, !hw.up);
993 input_sync(dev);
994 input_report_key(dev, BTN_FORWARD, hw.up);
995 input_sync(dev);
996 priv->scroll += 4;
997 }
998 return;
999 }
1000
Henrik Rydberg4f56ce92010-12-18 15:42:30 +01001001 if (hw.z > 0 && hw.x > 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 num_fingers = 1;
1003 finger_width = 5;
1004 if (SYN_CAP_EXTENDED(priv->capabilities)) {
1005 switch (hw.w) {
1006 case 0 ... 1:
1007 if (SYN_CAP_MULTIFINGER(priv->capabilities))
1008 num_fingers = hw.w + 2;
1009 break;
1010 case 2:
1011 if (SYN_MODEL_PEN(priv->model_id))
1012 ; /* Nothing, treat a pen as a single finger */
1013 break;
1014 case 4 ... 15:
1015 if (SYN_CAP_PALMDETECT(priv->capabilities))
1016 finger_width = hw.w;
1017 break;
1018 }
1019 }
1020 } else {
1021 num_fingers = 0;
1022 finger_width = 0;
1023 }
1024
Henrik Rydbergfec6e522010-12-21 18:11:25 +01001025 if (SYN_CAP_ADV_GESTURE(priv->ext_cap_0c))
Daniel Kurtz7afdb842011-08-23 23:00:33 -07001026 synaptics_report_semi_mt_data(dev, &hw, &priv->agm,
1027 num_fingers);
Henrik Rydbergfec6e522010-12-21 18:11:25 +01001028
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 /* Post events
1030 * BTN_TOUCH has to be first as mousedev relies on it when doing
1031 * absolute -> relative conversion
1032 */
1033 if (hw.z > 30) input_report_key(dev, BTN_TOUCH, 1);
1034 if (hw.z < 25) input_report_key(dev, BTN_TOUCH, 0);
1035
Henrik Rydberg4f56ce92010-12-18 15:42:30 +01001036 if (num_fingers > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 input_report_abs(dev, ABS_X, hw.x);
Daniel Kurtz6de58dd2011-08-23 23:00:24 -07001038 input_report_abs(dev, ABS_Y, synaptics_invert_y(hw.y));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 }
1040 input_report_abs(dev, ABS_PRESSURE, hw.z);
1041
Chris Bagwell2a8e7712010-07-19 09:06:15 -07001042 if (SYN_CAP_PALMDETECT(priv->capabilities))
1043 input_report_abs(dev, ABS_TOOL_WIDTH, finger_width);
1044
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 input_report_key(dev, BTN_TOOL_FINGER, num_fingers == 1);
Peter Hutterere42b6642008-11-20 15:24:42 -05001046 if (SYN_CAP_MULTIFINGER(priv->capabilities)) {
1047 input_report_key(dev, BTN_TOOL_DOUBLETAP, num_fingers == 2);
1048 input_report_key(dev, BTN_TOOL_TRIPLETAP, num_fingers == 3);
1049 }
1050
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001051 synaptics_report_buttons(psmouse, &hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
1053 input_sync(dev);
1054}
1055
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001056static int synaptics_validate_byte(struct psmouse *psmouse,
1057 int idx, unsigned char pkt_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058{
Helge Dellere38de672006-09-10 21:54:39 -04001059 static const unsigned char newabs_mask[] = { 0xC8, 0x00, 0x00, 0xC8, 0x00 };
1060 static const unsigned char newabs_rel_mask[] = { 0xC0, 0x00, 0x00, 0xC0, 0x00 };
1061 static const unsigned char newabs_rslt[] = { 0x80, 0x00, 0x00, 0xC0, 0x00 };
1062 static const unsigned char oldabs_mask[] = { 0xC0, 0x60, 0x00, 0xC0, 0x60 };
1063 static const unsigned char oldabs_rslt[] = { 0xC0, 0x00, 0x00, 0x80, 0x00 };
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001064 const char *packet = psmouse->packet;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
1066 if (idx < 0 || idx > 4)
1067 return 0;
1068
1069 switch (pkt_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
Dmitry Torokhova62f0d22010-05-19 10:39:17 -07001071 case SYN_NEWABS:
1072 case SYN_NEWABS_RELAXED:
1073 return (packet[idx] & newabs_rel_mask[idx]) == newabs_rslt[idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Dmitry Torokhova62f0d22010-05-19 10:39:17 -07001075 case SYN_NEWABS_STRICT:
1076 return (packet[idx] & newabs_mask[idx]) == newabs_rslt[idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
Dmitry Torokhova62f0d22010-05-19 10:39:17 -07001078 case SYN_OLDABS:
1079 return (packet[idx] & oldabs_mask[idx]) == oldabs_rslt[idx];
1080
1081 default:
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001082 psmouse_err(psmouse, "unknown packet type %d\n", pkt_type);
Dmitry Torokhova62f0d22010-05-19 10:39:17 -07001083 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 }
1085}
1086
1087static unsigned char synaptics_detect_pkt_type(struct psmouse *psmouse)
1088{
1089 int i;
1090
1091 for (i = 0; i < 5; i++)
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001092 if (!synaptics_validate_byte(psmouse, i, SYN_NEWABS_STRICT)) {
1093 psmouse_info(psmouse, "using relaxed packet validation\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 return SYN_NEWABS_RELAXED;
1095 }
1096
1097 return SYN_NEWABS_STRICT;
1098}
1099
David Howells7d12e782006-10-05 14:55:46 +01001100static psmouse_ret_t synaptics_process_byte(struct psmouse *psmouse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 struct synaptics_data *priv = psmouse->private;
1103
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 if (psmouse->pktcnt >= 6) { /* Full packet received */
1105 if (unlikely(priv->pkt_type == SYN_NEWABS))
1106 priv->pkt_type = synaptics_detect_pkt_type(psmouse);
1107
Dmitry Torokhova8b3c0f2010-10-04 21:46:10 -07001108 if (SYN_CAP_PASS_THROUGH(priv->capabilities) &&
1109 synaptics_is_pt_packet(psmouse->packet)) {
1110 if (priv->pt_port)
1111 synaptics_pass_pt_packet(priv->pt_port, psmouse->packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 } else
1113 synaptics_process_packet(psmouse);
1114
1115 return PSMOUSE_FULL_PACKET;
1116 }
1117
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001118 return synaptics_validate_byte(psmouse, psmouse->pktcnt - 1, priv->pkt_type) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 PSMOUSE_GOOD_DATA : PSMOUSE_BAD_DATA;
1120}
1121
1122/*****************************************************************************
1123 * Driver initialization/cleanup functions
1124 ****************************************************************************/
Daniel Kurtz85615472011-08-23 23:00:41 -07001125static void set_abs_position_params(struct input_dev *dev,
1126 struct synaptics_data *priv, int x_code,
1127 int y_code)
1128{
1129 int x_min = priv->x_min ?: XMIN_NOMINAL;
1130 int x_max = priv->x_max ?: XMAX_NOMINAL;
1131 int y_min = priv->y_min ?: YMIN_NOMINAL;
1132 int y_max = priv->y_max ?: YMAX_NOMINAL;
1133 int fuzz = SYN_CAP_REDUCED_FILTERING(priv->ext_cap_0c) ?
1134 SYN_REDUCED_FILTER_FUZZ : 0;
1135
1136 input_set_abs_params(dev, x_code, x_min, x_max, fuzz, 0);
1137 input_set_abs_params(dev, y_code, y_min, y_max, fuzz, 0);
1138 input_abs_set_res(dev, x_code, priv->x_res);
1139 input_abs_set_res(dev, y_code, priv->y_res);
1140}
1141
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142static void set_input_params(struct input_dev *dev, struct synaptics_data *priv)
1143{
1144 int i;
1145
Henrik Rydbergc14890a2010-12-16 09:52:23 +01001146 __set_bit(INPUT_PROP_POINTER, dev->propbit);
1147
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001148 __set_bit(EV_ABS, dev->evbit);
Daniel Kurtz85615472011-08-23 23:00:41 -07001149 set_abs_position_params(dev, priv, ABS_X, ABS_Y);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 input_set_abs_params(dev, ABS_PRESSURE, 0, 255, 0, 0);
Chris Bagwell2a8e7712010-07-19 09:06:15 -07001151
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001152 if (SYN_CAP_IMAGE_SENSOR(priv->ext_cap_0c)) {
1153 input_mt_init_slots(dev, 2);
1154 set_abs_position_params(dev, priv, ABS_MT_POSITION_X,
1155 ABS_MT_POSITION_Y);
1156 /* Image sensors can report per-contact pressure */
1157 input_set_abs_params(dev, ABS_MT_PRESSURE, 0, 255, 0, 0);
Daniel Kurtz6b4b49f2011-08-23 23:02:56 -07001158
1159 /* Image sensors can signal 4 and 5 finger clicks */
1160 __set_bit(BTN_TOOL_QUADTAP, dev->keybit);
1161 __set_bit(BTN_TOOL_QUINTTAP, dev->keybit);
Daniel Kurtz3cdfee92011-08-23 23:02:25 -07001162 } else if (SYN_CAP_ADV_GESTURE(priv->ext_cap_0c)) {
1163 /* Non-image sensors with AGM use semi-mt */
Henrik Rydbergfec6e522010-12-21 18:11:25 +01001164 __set_bit(INPUT_PROP_SEMI_MT, dev->propbit);
1165 input_mt_init_slots(dev, 2);
Daniel Kurtz85615472011-08-23 23:00:41 -07001166 set_abs_position_params(dev, priv, ABS_MT_POSITION_X,
1167 ABS_MT_POSITION_Y);
Henrik Rydbergfec6e522010-12-21 18:11:25 +01001168 }
1169
Chris Bagwell2a8e7712010-07-19 09:06:15 -07001170 if (SYN_CAP_PALMDETECT(priv->capabilities))
Chris Bagwell58fb0212010-07-19 09:06:15 -07001171 input_set_abs_params(dev, ABS_TOOL_WIDTH, 0, 15, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001173 __set_bit(EV_KEY, dev->evbit);
1174 __set_bit(BTN_TOUCH, dev->keybit);
1175 __set_bit(BTN_TOOL_FINGER, dev->keybit);
1176 __set_bit(BTN_LEFT, dev->keybit);
1177 __set_bit(BTN_RIGHT, dev->keybit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
Peter Hutterere42b6642008-11-20 15:24:42 -05001179 if (SYN_CAP_MULTIFINGER(priv->capabilities)) {
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001180 __set_bit(BTN_TOOL_DOUBLETAP, dev->keybit);
1181 __set_bit(BTN_TOOL_TRIPLETAP, dev->keybit);
Peter Hutterere42b6642008-11-20 15:24:42 -05001182 }
1183
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 if (SYN_CAP_MIDDLE_BUTTON(priv->capabilities))
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001185 __set_bit(BTN_MIDDLE, dev->keybit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
1187 if (SYN_CAP_FOUR_BUTTON(priv->capabilities) ||
1188 SYN_CAP_MIDDLE_BUTTON(priv->capabilities)) {
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001189 __set_bit(BTN_FORWARD, dev->keybit);
1190 __set_bit(BTN_BACK, dev->keybit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 }
1192
1193 for (i = 0; i < SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap); i++)
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001194 __set_bit(BTN_0 + i, dev->keybit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001196 __clear_bit(EV_REL, dev->evbit);
1197 __clear_bit(REL_X, dev->relbit);
1198 __clear_bit(REL_Y, dev->relbit);
Tero Saarniec20a022009-06-10 23:27:24 -07001199
Takashi Iwai5f57d672010-04-19 10:37:21 -07001200 if (SYN_CAP_CLICKPAD(priv->ext_cap_0c)) {
Henrik Rydbergc14890a2010-12-16 09:52:23 +01001201 __set_bit(INPUT_PROP_BUTTONPAD, dev->propbit);
Takashi Iwai5f57d672010-04-19 10:37:21 -07001202 /* Clickpads report only left button */
1203 __clear_bit(BTN_RIGHT, dev->keybit);
1204 __clear_bit(BTN_MIDDLE, dev->keybit);
1205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206}
1207
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208static void synaptics_disconnect(struct psmouse *psmouse)
1209{
1210 synaptics_reset(psmouse);
1211 kfree(psmouse->private);
1212 psmouse->private = NULL;
1213}
1214
1215static int synaptics_reconnect(struct psmouse *psmouse)
1216{
1217 struct synaptics_data *priv = psmouse->private;
1218 struct synaptics_data old_priv = *priv;
Alexandre Peixoto Ferreirac63fe0a2011-01-28 22:05:14 -08001219 int retry = 0;
1220 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
Alexandre Peixoto Ferreirac63fe0a2011-01-28 22:05:14 -08001222 do {
1223 psmouse_reset(psmouse);
Dmitry Torokhov85214782011-12-12 00:05:53 -08001224 if (retry) {
1225 /*
1226 * On some boxes, right after resuming, the touchpad
1227 * needs some time to finish initializing (I assume
1228 * it needs time to calibrate) and start responding
1229 * to Synaptics-specific queries, so let's wait a
1230 * bit.
1231 */
1232 ssleep(1);
1233 }
Alexandre Peixoto Ferreirac63fe0a2011-01-28 22:05:14 -08001234 error = synaptics_detect(psmouse, 0);
1235 } while (error && ++retry < 3);
Andy Whitcroft4d368452009-02-28 12:51:01 -08001236
Alexandre Peixoto Ferreirac63fe0a2011-01-28 22:05:14 -08001237 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 return -1;
1239
Alexandre Peixoto Ferreirac63fe0a2011-01-28 22:05:14 -08001240 if (retry > 1)
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001241 psmouse_dbg(psmouse, "reconnected after %d tries\n", retry);
Alexandre Peixoto Ferreirac63fe0a2011-01-28 22:05:14 -08001242
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 if (synaptics_query_hardware(psmouse)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001244 psmouse_err(psmouse, "Unable to query device.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 return -1;
1246 }
1247
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 if (synaptics_set_absolute_mode(psmouse)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001249 psmouse_err(psmouse, "Unable to initialize device.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 return -1;
1251 }
1252
Henrik Rydbergfec6e522010-12-21 18:11:25 +01001253 if (synaptics_set_advanced_gesture_mode(psmouse)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001254 psmouse_err(psmouse,
1255 "Advanced gesture mode reconnect failed.\n");
Henrik Rydbergfec6e522010-12-21 18:11:25 +01001256 return -1;
1257 }
1258
Alexandre Peixoto Ferreirabaddf582011-01-28 22:05:14 -08001259 if (old_priv.identity != priv->identity ||
1260 old_priv.model_id != priv->model_id ||
1261 old_priv.capabilities != priv->capabilities ||
1262 old_priv.ext_cap != priv->ext_cap) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001263 psmouse_err(psmouse,
1264 "hardware appears to be different: id(%ld-%ld), model(%ld-%ld), caps(%lx-%lx), ext(%lx-%lx).\n",
1265 old_priv.identity, priv->identity,
1266 old_priv.model_id, priv->model_id,
1267 old_priv.capabilities, priv->capabilities,
1268 old_priv.ext_cap, priv->ext_cap);
Alexandre Peixoto Ferreirabaddf582011-01-28 22:05:14 -08001269 return -1;
1270 }
1271
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 return 0;
1273}
1274
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001275static bool impaired_toshiba_kbc;
1276
1277static const struct dmi_system_id __initconst toshiba_dmi_table[] = {
1278#if defined(CONFIG_DMI) && defined(CONFIG_X86)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 {
Dmitry Torokhov9961e252009-12-04 10:24:20 -08001280 /* Toshiba Satellite */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 .matches = {
1282 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
Richard Thrippleton53a26702006-04-02 00:10:18 -05001283 DMI_MATCH(DMI_PRODUCT_NAME, "Satellite"),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 },
1285 },
Simon Horman9ba5eaa2005-07-11 01:07:20 -05001286 {
Dmitry Torokhov9961e252009-12-04 10:24:20 -08001287 /* Toshiba Dynabook */
Simon Horman9ba5eaa2005-07-11 01:07:20 -05001288 .matches = {
1289 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
Richard Thrippleton53a26702006-04-02 00:10:18 -05001290 DMI_MATCH(DMI_PRODUCT_NAME, "dynabook"),
1291 },
1292 },
1293 {
Dmitry Torokhov9961e252009-12-04 10:24:20 -08001294 /* Toshiba Portege M300 */
Richard Thrippleton53a26702006-04-02 00:10:18 -05001295 .matches = {
1296 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1297 DMI_MATCH(DMI_PRODUCT_NAME, "PORTEGE M300"),
Simon Horman9ba5eaa2005-07-11 01:07:20 -05001298 },
Dmitry Torokhov5f5eeff2009-10-12 21:35:00 -07001299
1300 },
1301 {
Dmitry Torokhov9961e252009-12-04 10:24:20 -08001302 /* Toshiba Portege M300 */
Dmitry Torokhov5f5eeff2009-10-12 21:35:00 -07001303 .matches = {
1304 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1305 DMI_MATCH(DMI_PRODUCT_NAME, "Portable PC"),
1306 DMI_MATCH(DMI_PRODUCT_VERSION, "Version 1.0"),
1307 },
1308
Simon Horman9ba5eaa2005-07-11 01:07:20 -05001309 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310#endif
Jan Beulich70874862011-03-31 00:01:58 -07001311 { }
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001312};
1313
Andres Salomonef8313b2010-12-23 01:19:38 -08001314static bool broken_olpc_ec;
1315
1316static const struct dmi_system_id __initconst olpc_dmi_table[] = {
1317#if defined(CONFIG_DMI) && defined(CONFIG_OLPC)
1318 {
1319 /* OLPC XO-1 or XO-1.5 */
1320 .matches = {
1321 DMI_MATCH(DMI_SYS_VENDOR, "OLPC"),
1322 DMI_MATCH(DMI_PRODUCT_NAME, "XO"),
1323 },
1324 },
Andres Salomonef8313b2010-12-23 01:19:38 -08001325#endif
Jan Beulich70874862011-03-31 00:01:58 -07001326 { }
Andres Salomonef8313b2010-12-23 01:19:38 -08001327};
1328
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001329void __init synaptics_module_init(void)
1330{
1331 impaired_toshiba_kbc = dmi_check_system(toshiba_dmi_table);
Andres Salomonef8313b2010-12-23 01:19:38 -08001332 broken_olpc_ec = dmi_check_system(olpc_dmi_table);
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001333}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
1335int synaptics_init(struct psmouse *psmouse)
1336{
1337 struct synaptics_data *priv;
1338
Andres Salomonef8313b2010-12-23 01:19:38 -08001339 /*
1340 * The OLPC XO has issues with Synaptics' absolute mode; similarly to
1341 * the HGPK, it quickly degrades and the hardware becomes jumpy and
1342 * overly sensitive. Not only that, but the constant packet spew
1343 * (even at a lowered 40pps rate) overloads the EC such that key
1344 * presses on the keyboard are missed. Given all of that, don't
1345 * even attempt to use Synaptics mode. Relative mode seems to work
1346 * just fine.
1347 */
1348 if (broken_olpc_ec) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001349 psmouse_info(psmouse,
1350 "OLPC XO detected, not enabling Synaptics protocol.\n");
Andres Salomonef8313b2010-12-23 01:19:38 -08001351 return -ENODEV;
1352 }
1353
Eric Sesterhennb39787a2006-03-14 00:09:16 -05001354 psmouse->private = priv = kzalloc(sizeof(struct synaptics_data), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 if (!priv)
Davidlohr Bueso6792cbb2010-09-29 18:53:35 -07001356 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Andy Whitcroft4d368452009-02-28 12:51:01 -08001358 psmouse_reset(psmouse);
1359
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 if (synaptics_query_hardware(psmouse)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001361 psmouse_err(psmouse, "Unable to query device.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 goto init_fail;
1363 }
1364
1365 if (synaptics_set_absolute_mode(psmouse)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001366 psmouse_err(psmouse, "Unable to initialize device.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 goto init_fail;
1368 }
1369
Henrik Rydbergfec6e522010-12-21 18:11:25 +01001370 if (synaptics_set_advanced_gesture_mode(psmouse)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001371 psmouse_err(psmouse, "Advanced gesture mode init failed.\n");
Henrik Rydbergfec6e522010-12-21 18:11:25 +01001372 goto init_fail;
1373 }
1374
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 priv->pkt_type = SYN_MODEL_NEWABS(priv->model_id) ? SYN_NEWABS : SYN_OLDABS;
1376
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001377 psmouse_info(psmouse,
1378 "Touchpad model: %ld, fw: %ld.%ld, id: %#lx, caps: %#lx/%#lx/%#lx\n",
1379 SYN_ID_MODEL(priv->identity),
1380 SYN_ID_MAJOR(priv->identity), SYN_ID_MINOR(priv->identity),
1381 priv->model_id,
1382 priv->capabilities, priv->ext_cap, priv->ext_cap_0c);
Dmitry Torokhov409b7502005-05-28 02:12:18 -05001383
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001384 set_input_params(psmouse->dev, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
Dmitry Torokhov887cc122007-04-12 01:30:41 -04001386 /*
1387 * Encode touchpad model so that it can be used to set
1388 * input device->id.version and be visible to userspace.
1389 * Because version is __u16 we have to drop something.
1390 * Hardware info bits seem to be good candidates as they
1391 * are documented to be for Synaptics corp. internal use.
1392 */
1393 psmouse->model = ((priv->model_id & 0x00ff0000) >> 8) |
1394 (priv->model_id & 0x000000ff);
1395
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 psmouse->protocol_handler = synaptics_process_byte;
1397 psmouse->set_rate = synaptics_set_rate;
1398 psmouse->disconnect = synaptics_disconnect;
1399 psmouse->reconnect = synaptics_reconnect;
Dmitry Torokhova1cec062007-02-18 01:40:24 -05001400 psmouse->cleanup = synaptics_reset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 psmouse->pktsize = 6;
Dmitry Torokhovf0d5c6f2006-01-14 00:27:37 -05001402 /* Synaptics can usually stay in sync without extra help */
1403 psmouse->resync_time = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
1405 if (SYN_CAP_PASS_THROUGH(priv->capabilities))
1406 synaptics_pt_create(psmouse);
1407
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 /*
1409 * Toshiba's KBC seems to have trouble handling data from
Andres Salomon7ee99162010-12-23 01:18:28 -08001410 * Synaptics at full rate. Switch to a lower rate (roughly
1411 * the same rate as a standard PS/2 mouse).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 */
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001413 if (psmouse->rate >= 80 && impaired_toshiba_kbc) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001414 psmouse_info(psmouse,
1415 "Toshiba %s detected, limiting rate to 40pps.\n",
1416 dmi_get_system_info(DMI_PRODUCT_NAME));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 psmouse->rate = 40;
1418 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
1420 return 0;
1421
1422 init_fail:
1423 kfree(priv);
1424 return -1;
1425}
1426
Daniel Drakee4e6efd2010-01-07 01:52:39 -08001427bool synaptics_supported(void)
1428{
1429 return true;
1430}
1431
Andres Salomon55e3d922007-03-10 01:39:54 -05001432#else /* CONFIG_MOUSE_PS2_SYNAPTICS */
1433
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001434void __init synaptics_module_init(void)
1435{
1436}
1437
Andres Salomon55e3d922007-03-10 01:39:54 -05001438int synaptics_init(struct psmouse *psmouse)
1439{
1440 return -ENOSYS;
1441}
1442
Daniel Drakee4e6efd2010-01-07 01:52:39 -08001443bool synaptics_supported(void)
1444{
1445 return false;
1446}
1447
Andres Salomon55e3d922007-03-10 01:39:54 -05001448#endif /* CONFIG_MOUSE_PS2_SYNAPTICS */