raid10: include bio_end_io_list in nr_queued to prevent freeze_array hang
[pandora-kernel.git] / drivers / input / mouse / synaptics.c
1 /*
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>
27 #include <linux/delay.h>
28 #include <linux/dmi.h>
29 #include <linux/input/mt.h>
30 #include <linux/serio.h>
31 #include <linux/libps2.h>
32 #include <linux/slab.h>
33 #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.
40  * Note that newer firmware allows querying device for maximum useable
41  * coordinates.
42  */
43 #define XMIN 0
44 #define XMAX 6143
45 #define YMIN 0
46 #define YMAX 6143
47 #define XMIN_NOMINAL 1472
48 #define XMAX_NOMINAL 5472
49 #define YMIN_NOMINAL 1408
50 #define YMAX_NOMINAL 4448
51
52 /* Size in bits of absolute position values reported by the hardware */
53 #define ABS_POS_BITS 13
54
55 /*
56  * 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.
66  */
67 #define X_MAX_POSITIVE 8176
68 #define Y_MAX_POSITIVE 8176
69
70 /*
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  */
75 static int synaptics_invert_y(int y)
76 {
77         return YMAX_NOMINAL + YMIN_NOMINAL - y;
78 }
79
80
81 /*****************************************************************************
82  *      Stuff we need even when we do not want native Synaptics support
83  ****************************************************************************/
84
85 /*
86  * Set the synaptics touchpad mode byte by special commands
87  */
88 static 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
100 int synaptics_detect(struct psmouse *psmouse, bool set_properties)
101 {
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
124 void 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  */
139 static 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
148 /*
149  * Read the model-id bytes from the touchpad
150  * see also SYN_MODEL_* macros
151  */
152 static 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  */
167 static 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];
175         priv->ext_cap = priv->ext_cap_0c = 0;
176
177         /*
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) {
182                 return -1;
183         }
184
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)) {
193                         psmouse_warn(psmouse,
194                                      "device claims to have extended capabilities, but I'm not able to read them.\n");
195                 } 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         }
206
207         if (SYN_EXT_CAP_REQUESTS(priv->capabilities) >= 4) {
208                 if (synaptics_send_cmd(psmouse, SYN_QUE_EXT_CAPAB_0C, cap)) {
209                         psmouse_warn(psmouse,
210                                      "device claims to have extended capability 0x0c, but I'm not able to read it.\n");
211                 } else {
212                         priv->ext_cap_0c = (cap[0] << 16) | (cap[1] << 8) | cap[2];
213                 }
214         }
215
216         return 0;
217 }
218
219 /*
220  * Identify Touchpad
221  * See also the SYN_ID_* macros
222  */
223 static 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
236 /*
237  * Read touchpad resolution and maximum reported coordinates
238  * Resolution is left zero if touchpad does not support the query
239  */
240
241 static const int *quirk_min_max;
242
243 static int synaptics_resolution(struct psmouse *psmouse)
244 {
245         struct synaptics_data *priv = psmouse->private;
246         unsigned char resp[3];
247
248         if (SYN_ID_MAJOR(priv->identity) < 4)
249                 return 0;
250
251         if (synaptics_send_cmd(psmouse, SYN_QUE_RESOLUTION, resp) == 0) {
252                 if (resp[0] != 0 && (resp[1] & 0x80) && resp[2] != 0) {
253                         priv->x_res = resp[0]; /* x resolution in units/mm */
254                         priv->y_res = resp[2]; /* y resolution in units/mm */
255                 }
256         }
257
258         if (quirk_min_max) {
259                 priv->x_min = quirk_min_max[0];
260                 priv->x_max = quirk_min_max[1];
261                 priv->y_min = quirk_min_max[2];
262                 priv->y_max = quirk_min_max[3];
263                 return 0;
264         }
265
266         if (SYN_EXT_CAP_REQUESTS(priv->capabilities) >= 5 &&
267             SYN_CAP_MAX_DIMENSIONS(priv->ext_cap_0c)) {
268                 if (synaptics_send_cmd(psmouse, SYN_QUE_EXT_MAX_COORDS, resp)) {
269                         psmouse_warn(psmouse,
270                                      "device claims to have max coordinates query, but I'm not able to read it.\n");
271                 } else {
272                         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_CAP_MIN_DIMENSIONS(priv->ext_cap_0c) &&
278             (SYN_EXT_CAP_REQUESTS(priv->capabilities) >= 7 ||
279              /*
280               * Firmware v8.1 does not report proper number of extended
281               * capabilities, but has been proven to report correct min
282               * coordinates.
283               */
284              SYN_ID_FULL(priv->identity) == 0x801)) {
285                 if (synaptics_send_cmd(psmouse, SYN_QUE_EXT_MIN_COORDS, resp)) {
286                         psmouse_warn(psmouse,
287                                      "device claims to have min coordinates query, but I'm not able to read it.\n");
288                 } else {
289                         priv->x_min = (resp[0] << 5) | ((resp[1] & 0x0f) << 1);
290                         priv->y_min = (resp[2] << 5) | ((resp[1] & 0xf0) >> 3);
291                 }
292         }
293
294         return 0;
295 }
296
297 static int synaptics_query_hardware(struct psmouse *psmouse)
298 {
299         if (synaptics_identify(psmouse))
300                 return -1;
301         if (synaptics_model_id(psmouse))
302                 return -1;
303         if (synaptics_capability(psmouse))
304                 return -1;
305         if (synaptics_resolution(psmouse))
306                 return -1;
307
308         return 0;
309 }
310
311 static int synaptics_set_absolute_mode(struct psmouse *psmouse)
312 {
313         struct synaptics_data *priv = psmouse->private;
314
315         priv->mode = SYN_BIT_ABSOLUTE_MODE;
316         if (SYN_ID_MAJOR(priv->identity) >= 4)
317                 priv->mode |= SYN_BIT_DISABLE_GESTURE;
318         if (SYN_CAP_EXTENDED(priv->capabilities))
319                 priv->mode |= SYN_BIT_W_MODE;
320
321         if (synaptics_mode_cmd(psmouse, priv->mode))
322                 return -1;
323
324         return 0;
325 }
326
327 static void synaptics_set_rate(struct psmouse *psmouse, unsigned int rate)
328 {
329         struct synaptics_data *priv = psmouse->private;
330
331         if (rate >= 80) {
332                 priv->mode |= SYN_BIT_HIGH_RATE;
333                 psmouse->rate = 80;
334         } else {
335                 priv->mode &= ~SYN_BIT_HIGH_RATE;
336                 psmouse->rate = 40;
337         }
338
339         synaptics_mode_cmd(psmouse, priv->mode);
340 }
341
342 static int synaptics_set_advanced_gesture_mode(struct psmouse *psmouse)
343 {
344         static unsigned char param = 0xc8;
345         struct synaptics_data *priv = psmouse->private;
346
347         if (!(SYN_CAP_ADV_GESTURE(priv->ext_cap_0c) ||
348                         SYN_CAP_IMAGE_SENSOR(priv->ext_cap_0c)))
349                 return 0;
350
351         if (psmouse_sliced_command(psmouse, SYN_QUE_MODEL))
352                 return -1;
353         if (ps2_command(&psmouse->ps2dev, &param, PSMOUSE_CMD_SETRATE))
354                 return -1;
355
356         /* Advanced gesture mode also sends multi finger data */
357         priv->capabilities |= BIT(1);
358
359         return 0;
360 }
361
362 /*****************************************************************************
363  *      Synaptics pass-through PS/2 port support
364  ****************************************************************************/
365 static int synaptics_pt_write(struct serio *serio, unsigned char c)
366 {
367         struct psmouse *parent = serio_get_drvdata(serio->parent);
368         char rate_param = SYN_PS_CLIENT_CMD; /* indicates that we want pass-through port */
369
370         if (psmouse_sliced_command(parent, c))
371                 return -1;
372         if (ps2_command(&parent->ps2dev, &rate_param, PSMOUSE_CMD_SETRATE))
373                 return -1;
374         return 0;
375 }
376
377 static int synaptics_pt_start(struct serio *serio)
378 {
379         struct psmouse *parent = serio_get_drvdata(serio->parent);
380         struct synaptics_data *priv = parent->private;
381
382         serio_pause_rx(parent->ps2dev.serio);
383         priv->pt_port = serio;
384         serio_continue_rx(parent->ps2dev.serio);
385
386         return 0;
387 }
388
389 static void synaptics_pt_stop(struct serio *serio)
390 {
391         struct psmouse *parent = serio_get_drvdata(serio->parent);
392         struct synaptics_data *priv = parent->private;
393
394         serio_pause_rx(parent->ps2dev.serio);
395         priv->pt_port = NULL;
396         serio_continue_rx(parent->ps2dev.serio);
397 }
398
399 static int synaptics_is_pt_packet(unsigned char *buf)
400 {
401         return (buf[0] & 0xFC) == 0x84 && (buf[3] & 0xCC) == 0xC4;
402 }
403
404 static void synaptics_pass_pt_packet(struct serio *ptport, unsigned char *packet)
405 {
406         struct psmouse *child = serio_get_drvdata(ptport);
407
408         if (child && child->state == PSMOUSE_ACTIVATED) {
409                 serio_interrupt(ptport, packet[1], 0);
410                 serio_interrupt(ptport, packet[4], 0);
411                 serio_interrupt(ptport, packet[5], 0);
412                 if (child->pktsize == 4)
413                         serio_interrupt(ptport, packet[2], 0);
414         } else
415                 serio_interrupt(ptport, packet[1], 0);
416 }
417
418 static void synaptics_pt_activate(struct psmouse *psmouse)
419 {
420         struct synaptics_data *priv = psmouse->private;
421         struct psmouse *child = serio_get_drvdata(priv->pt_port);
422
423         /* adjust the touchpad to child's choice of protocol */
424         if (child) {
425                 if (child->pktsize == 4)
426                         priv->mode |= SYN_BIT_FOUR_BYTE_CLIENT;
427                 else
428                         priv->mode &= ~SYN_BIT_FOUR_BYTE_CLIENT;
429
430                 if (synaptics_mode_cmd(psmouse, priv->mode))
431                         psmouse_warn(psmouse,
432                                      "failed to switch guest protocol\n");
433         }
434 }
435
436 static void synaptics_pt_create(struct psmouse *psmouse)
437 {
438         struct serio *serio;
439
440         serio = kzalloc(sizeof(struct serio), GFP_KERNEL);
441         if (!serio) {
442                 psmouse_err(psmouse,
443                             "not enough memory for pass-through port\n");
444                 return;
445         }
446
447         serio->id.type = SERIO_PS_PSTHRU;
448         strlcpy(serio->name, "Synaptics pass-through", sizeof(serio->name));
449         strlcpy(serio->phys, "synaptics-pt/serio0", sizeof(serio->name));
450         serio->write = synaptics_pt_write;
451         serio->start = synaptics_pt_start;
452         serio->stop = synaptics_pt_stop;
453         serio->parent = psmouse->ps2dev.serio;
454
455         psmouse->pt_activate = synaptics_pt_activate;
456
457         psmouse_info(psmouse, "serio: %s port at %s\n",
458                      serio->name, psmouse->phys);
459         serio_register_port(serio);
460 }
461
462 /*****************************************************************************
463  *      Functions to interpret the absolute mode packets
464  ****************************************************************************/
465
466 static void synaptics_mt_state_set(struct synaptics_mt_state *state, int count,
467                                    int sgm, int agm)
468 {
469         state->count = count;
470         state->sgm = sgm;
471         state->agm = agm;
472 }
473
474 static void synaptics_parse_agm(const unsigned char buf[],
475                                 struct synaptics_data *priv,
476                                 struct synaptics_hw_state *hw)
477 {
478         struct synaptics_hw_state *agm = &priv->agm;
479         int agm_packet_type;
480
481         agm_packet_type = (buf[5] & 0x30) >> 4;
482         switch (agm_packet_type) {
483         case 1:
484                 /* Gesture packet: (x, y, z) half resolution */
485                 agm->w = hw->w;
486                 agm->x = (((buf[4] & 0x0f) << 8) | buf[1]) << 1;
487                 agm->y = (((buf[4] & 0xf0) << 4) | buf[2]) << 1;
488                 agm->z = ((buf[3] & 0x30) | (buf[5] & 0x0f)) << 1;
489                 break;
490
491         case 2:
492                 /* AGM-CONTACT packet: (count, sgm, agm) */
493                 synaptics_mt_state_set(&agm->mt_state, buf[1], buf[2], buf[4]);
494                 break;
495
496         default:
497                 break;
498         }
499
500         /* Record that at least one AGM has been received since last SGM */
501         priv->agm_pending = true;
502 }
503
504 static void synaptics_parse_ext_buttons(const unsigned char buf[],
505                                         struct synaptics_data *priv,
506                                         struct synaptics_hw_state *hw)
507 {
508         unsigned int ext_bits =
509                 (SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap) + 1) >> 1;
510         unsigned int ext_mask = (1U << ext_bits) - 1;
511
512         hw->ext_buttons = buf[4] & ext_mask;
513         hw->ext_buttons |= (buf[5] & ext_mask) << ext_bits;
514 }
515
516 static bool is_forcepad;
517
518 static int synaptics_parse_hw_state(const unsigned char buf[],
519                                     struct synaptics_data *priv,
520                                     struct synaptics_hw_state *hw)
521 {
522         memset(hw, 0, sizeof(struct synaptics_hw_state));
523
524         if (SYN_MODEL_NEWABS(priv->model_id)) {
525                 hw->w = (((buf[0] & 0x30) >> 2) |
526                          ((buf[0] & 0x04) >> 1) |
527                          ((buf[3] & 0x04) >> 2));
528
529                 if ((SYN_CAP_ADV_GESTURE(priv->ext_cap_0c) ||
530                         SYN_CAP_IMAGE_SENSOR(priv->ext_cap_0c)) &&
531                     hw->w == 2) {
532                         synaptics_parse_agm(buf, priv, hw);
533                         return 1;
534                 }
535
536                 hw->x = (((buf[3] & 0x10) << 8) |
537                          ((buf[1] & 0x0f) << 8) |
538                          buf[4]);
539                 hw->y = (((buf[3] & 0x20) << 7) |
540                          ((buf[1] & 0xf0) << 4) |
541                          buf[5]);
542                 hw->z = buf[2];
543
544                 hw->left  = (buf[0] & 0x01) ? 1 : 0;
545                 hw->right = (buf[0] & 0x02) ? 1 : 0;
546
547                 if (is_forcepad) {
548                         /*
549                          * ForcePads, like Clickpads, use middle button
550                          * bits to report primary button clicks.
551                          * Unfortunately they report primary button not
552                          * only when user presses on the pad above certain
553                          * threshold, but also when there are more than one
554                          * finger on the touchpad, which interferes with
555                          * out multi-finger gestures.
556                          */
557                         if (hw->z == 0) {
558                                 /* No contacts */
559                                 priv->press = priv->report_press = false;
560                         } else if (hw->w >= 4 && ((buf[0] ^ buf[3]) & 0x01)) {
561                                 /*
562                                  * Single-finger touch with pressure above
563                                  * the threshold. If pressure stays long
564                                  * enough, we'll start reporting primary
565                                  * button. We rely on the device continuing
566                                  * sending data even if finger does not
567                                  * move.
568                                  */
569                                 if  (!priv->press) {
570                                         priv->press_start = jiffies;
571                                         priv->press = true;
572                                 } else if (time_after(jiffies,
573                                                 priv->press_start +
574                                                         msecs_to_jiffies(50))) {
575                                         priv->report_press = true;
576                                 }
577                         } else {
578                                 priv->press = false;
579                         }
580
581                         hw->left = priv->report_press;
582
583                 } else if (SYN_CAP_CLICKPAD(priv->ext_cap_0c)) {
584                         /*
585                          * Clickpad's button is transmitted as middle button,
586                          * however, since it is primary button, we will report
587                          * it as BTN_LEFT.
588                          */
589                         hw->left = ((buf[0] ^ buf[3]) & 0x01) ? 1 : 0;
590
591                 } else if (SYN_CAP_MIDDLE_BUTTON(priv->capabilities)) {
592                         hw->middle = ((buf[0] ^ buf[3]) & 0x01) ? 1 : 0;
593                         if (hw->w == 2)
594                                 hw->scroll = (signed char)(buf[1]);
595                 }
596
597                 if (SYN_CAP_FOUR_BUTTON(priv->capabilities)) {
598                         hw->up   = ((buf[0] ^ buf[3]) & 0x01) ? 1 : 0;
599                         hw->down = ((buf[0] ^ buf[3]) & 0x02) ? 1 : 0;
600                 }
601
602                 if (SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap) > 0 &&
603                     ((buf[0] ^ buf[3]) & 0x02)) {
604                         synaptics_parse_ext_buttons(buf, priv, hw);
605                 }
606         } else {
607                 hw->x = (((buf[1] & 0x1f) << 8) | buf[2]);
608                 hw->y = (((buf[4] & 0x1f) << 8) | buf[5]);
609
610                 hw->z = (((buf[0] & 0x30) << 2) | (buf[3] & 0x3F));
611                 hw->w = (((buf[1] & 0x80) >> 4) | ((buf[0] & 0x04) >> 1));
612
613                 hw->left  = (buf[0] & 0x01) ? 1 : 0;
614                 hw->right = (buf[0] & 0x02) ? 1 : 0;
615         }
616
617         /*
618          * Convert wrap-around values to negative. (X|Y)_MAX_POSITIVE
619          * is used by some firmware to indicate a finger at the edge of
620          * the touchpad whose precise position cannot be determined, so
621          * convert these values to the maximum axis value.
622          */
623         if (hw->x > X_MAX_POSITIVE)
624                 hw->x -= 1 << ABS_POS_BITS;
625         else if (hw->x == X_MAX_POSITIVE)
626                 hw->x = XMAX;
627
628         if (hw->y > Y_MAX_POSITIVE)
629                 hw->y -= 1 << ABS_POS_BITS;
630         else if (hw->y == Y_MAX_POSITIVE)
631                 hw->y = YMAX;
632
633         return 0;
634 }
635
636 static void synaptics_report_semi_mt_slot(struct input_dev *dev, int slot,
637                                           bool active, int x, int y)
638 {
639         input_mt_slot(dev, slot);
640         input_mt_report_slot_state(dev, MT_TOOL_FINGER, active);
641         if (active) {
642                 input_report_abs(dev, ABS_MT_POSITION_X, x);
643                 input_report_abs(dev, ABS_MT_POSITION_Y, synaptics_invert_y(y));
644         }
645 }
646
647 static void synaptics_report_semi_mt_data(struct input_dev *dev,
648                                           const struct synaptics_hw_state *a,
649                                           const struct synaptics_hw_state *b,
650                                           int num_fingers)
651 {
652         if (num_fingers >= 2) {
653                 synaptics_report_semi_mt_slot(dev, 0, true, min(a->x, b->x),
654                                               min(a->y, b->y));
655                 synaptics_report_semi_mt_slot(dev, 1, true, max(a->x, b->x),
656                                               max(a->y, b->y));
657         } else if (num_fingers == 1) {
658                 synaptics_report_semi_mt_slot(dev, 0, true, a->x, a->y);
659                 synaptics_report_semi_mt_slot(dev, 1, false, 0, 0);
660         } else {
661                 synaptics_report_semi_mt_slot(dev, 0, false, 0, 0);
662                 synaptics_report_semi_mt_slot(dev, 1, false, 0, 0);
663         }
664 }
665
666 static void synaptics_report_ext_buttons(struct psmouse *psmouse,
667                                          const struct synaptics_hw_state *hw)
668 {
669         struct input_dev *dev = psmouse->dev;
670         struct synaptics_data *priv = psmouse->private;
671         int ext_bits = (SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap) + 1) >> 1;
672         int i;
673
674         if (!SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap))
675                 return;
676
677         /* Bug in FW 8.1, buttons are reported only when ExtBit is 1 */
678         if (SYN_ID_FULL(priv->identity) == 0x801 &&
679             !((psmouse->packet[0] ^ psmouse->packet[3]) & 0x02))
680                 return;
681
682         for (i = 0; i < ext_bits; i++) {
683                 input_report_key(dev, BTN_0 + 2 * i,
684                         hw->ext_buttons & (1 << i));
685                 input_report_key(dev, BTN_1 + 2 * i,
686                         hw->ext_buttons & (1 << (i + ext_bits)));
687         }
688 }
689
690 static void synaptics_report_buttons(struct psmouse *psmouse,
691                                      const struct synaptics_hw_state *hw)
692 {
693         struct input_dev *dev = psmouse->dev;
694         struct synaptics_data *priv = psmouse->private;
695
696         input_report_key(dev, BTN_LEFT, hw->left);
697         input_report_key(dev, BTN_RIGHT, hw->right);
698
699         if (SYN_CAP_MIDDLE_BUTTON(priv->capabilities))
700                 input_report_key(dev, BTN_MIDDLE, hw->middle);
701
702         if (SYN_CAP_FOUR_BUTTON(priv->capabilities)) {
703                 input_report_key(dev, BTN_FORWARD, hw->up);
704                 input_report_key(dev, BTN_BACK, hw->down);
705         }
706
707         synaptics_report_ext_buttons(psmouse, hw);
708 }
709
710 static void synaptics_report_slot(struct input_dev *dev, int slot,
711                                   const struct synaptics_hw_state *hw)
712 {
713         input_mt_slot(dev, slot);
714         input_mt_report_slot_state(dev, MT_TOOL_FINGER, (hw != NULL));
715         if (!hw)
716                 return;
717
718         input_report_abs(dev, ABS_MT_POSITION_X, hw->x);
719         input_report_abs(dev, ABS_MT_POSITION_Y, synaptics_invert_y(hw->y));
720         input_report_abs(dev, ABS_MT_PRESSURE, hw->z);
721 }
722
723 static void synaptics_report_mt_data(struct psmouse *psmouse,
724                                      struct synaptics_mt_state *mt_state,
725                                      const struct synaptics_hw_state *sgm)
726 {
727         struct input_dev *dev = psmouse->dev;
728         struct synaptics_data *priv = psmouse->private;
729         struct synaptics_hw_state *agm = &priv->agm;
730         struct synaptics_mt_state *old = &priv->mt_state;
731
732         switch (mt_state->count) {
733         case 0:
734                 synaptics_report_slot(dev, 0, NULL);
735                 synaptics_report_slot(dev, 1, NULL);
736                 break;
737         case 1:
738                 if (mt_state->sgm == -1) {
739                         synaptics_report_slot(dev, 0, NULL);
740                         synaptics_report_slot(dev, 1, NULL);
741                 } else if (mt_state->sgm == 0) {
742                         synaptics_report_slot(dev, 0, sgm);
743                         synaptics_report_slot(dev, 1, NULL);
744                 } else {
745                         synaptics_report_slot(dev, 0, NULL);
746                         synaptics_report_slot(dev, 1, sgm);
747                 }
748                 break;
749         default:
750                 /*
751                  * If the finger slot contained in SGM is valid, and either
752                  * hasn't changed, or is new, then report SGM in MTB slot 0.
753                  * Otherwise, empty MTB slot 0.
754                  */
755                 if (mt_state->sgm != -1 &&
756                     (mt_state->sgm == old->sgm || old->sgm == -1))
757                         synaptics_report_slot(dev, 0, sgm);
758                 else
759                         synaptics_report_slot(dev, 0, NULL);
760
761                 /*
762                  * If the finger slot contained in AGM is valid, and either
763                  * hasn't changed, or is new, then report AGM in MTB slot 1.
764                  * Otherwise, empty MTB slot 1.
765                  */
766                 if (mt_state->agm != -1 &&
767                     (mt_state->agm == old->agm || old->agm == -1))
768                         synaptics_report_slot(dev, 1, agm);
769                 else
770                         synaptics_report_slot(dev, 1, NULL);
771                 break;
772         }
773
774         /* Don't use active slot count to generate BTN_TOOL events. */
775         input_mt_report_pointer_emulation(dev, false);
776
777         /* Send the number of fingers reported by touchpad itself. */
778         input_mt_report_finger_count(dev, mt_state->count);
779
780         synaptics_report_buttons(psmouse, sgm);
781
782         input_sync(dev);
783 }
784
785 /* Handle case where mt_state->count = 0 */
786 static void synaptics_image_sensor_0f(struct synaptics_data *priv,
787                                       struct synaptics_mt_state *mt_state)
788 {
789         synaptics_mt_state_set(mt_state, 0, -1, -1);
790         priv->mt_state_lost = false;
791 }
792
793 /* Handle case where mt_state->count = 1 */
794 static void synaptics_image_sensor_1f(struct synaptics_data *priv,
795                                       struct synaptics_mt_state *mt_state)
796 {
797         struct synaptics_hw_state *agm = &priv->agm;
798         struct synaptics_mt_state *old = &priv->mt_state;
799
800         /*
801          * If the last AGM was (0,0,0), and there is only one finger left,
802          * then we absolutely know that SGM contains slot 0, and all other
803          * fingers have been removed.
804          */
805         if (priv->agm_pending && agm->z == 0) {
806                 synaptics_mt_state_set(mt_state, 1, 0, -1);
807                 priv->mt_state_lost = false;
808                 return;
809         }
810
811         switch (old->count) {
812         case 0:
813                 synaptics_mt_state_set(mt_state, 1, 0, -1);
814                 break;
815         case 1:
816                 /*
817                  * If mt_state_lost, then the previous transition was 3->1,
818                  * and SGM now contains either slot 0 or 1, but we don't know
819                  * which.  So, we just assume that the SGM now contains slot 1.
820                  *
821                  * If pending AGM and either:
822                  *   (a) the previous SGM slot contains slot 0, or
823                  *   (b) there was no SGM slot
824                  * then, the SGM now contains slot 1
825                  *
826                  * Case (a) happens with very rapid "drum roll" gestures, where
827                  * slot 0 finger is lifted and a new slot 1 finger touches
828                  * within one reporting interval.
829                  *
830                  * Case (b) happens if initially two or more fingers tap
831                  * briefly, and all but one lift before the end of the first
832                  * reporting interval.
833                  *
834                  * (In both these cases, slot 0 will becomes empty, so SGM
835                  * contains slot 1 with the new finger)
836                  *
837                  * Else, if there was no previous SGM, it now contains slot 0.
838                  *
839                  * Otherwise, SGM still contains the same slot.
840                  */
841                 if (priv->mt_state_lost ||
842                     (priv->agm_pending && old->sgm <= 0))
843                         synaptics_mt_state_set(mt_state, 1, 1, -1);
844                 else if (old->sgm == -1)
845                         synaptics_mt_state_set(mt_state, 1, 0, -1);
846                 break;
847         case 2:
848                 /*
849                  * If mt_state_lost, we don't know which finger SGM contains.
850                  *
851                  * So, report 1 finger, but with both slots empty.
852                  * We will use slot 1 on subsequent 1->1
853                  */
854                 if (priv->mt_state_lost) {
855                         synaptics_mt_state_set(mt_state, 1, -1, -1);
856                         break;
857                 }
858                 /*
859                  * Since the last AGM was NOT (0,0,0), it was the finger in
860                  * slot 0 that has been removed.
861                  * So, SGM now contains previous AGM's slot, and AGM is now
862                  * empty.
863                  */
864                 synaptics_mt_state_set(mt_state, 1, old->agm, -1);
865                 break;
866         case 3:
867                 /*
868                  * Since last AGM was not (0,0,0), we don't know which finger
869                  * is left.
870                  *
871                  * So, report 1 finger, but with both slots empty.
872                  * We will use slot 1 on subsequent 1->1
873                  */
874                 synaptics_mt_state_set(mt_state, 1, -1, -1);
875                 priv->mt_state_lost = true;
876                 break;
877         case 4:
878         case 5:
879                 /* mt_state was updated by AGM-CONTACT packet */
880                 break;
881         }
882 }
883
884 /* Handle case where mt_state->count = 2 */
885 static void synaptics_image_sensor_2f(struct synaptics_data *priv,
886                                       struct synaptics_mt_state *mt_state)
887 {
888         struct synaptics_mt_state *old = &priv->mt_state;
889
890         switch (old->count) {
891         case 0:
892                 synaptics_mt_state_set(mt_state, 2, 0, 1);
893                 break;
894         case 1:
895                 /*
896                  * If previous SGM contained slot 1 or higher, SGM now contains
897                  * slot 0 (the newly touching finger) and AGM contains SGM's
898                  * previous slot.
899                  *
900                  * Otherwise, SGM still contains slot 0 and AGM now contains
901                  * slot 1.
902                  */
903                 if (old->sgm >= 1)
904                         synaptics_mt_state_set(mt_state, 2, 0, old->sgm);
905                 else
906                         synaptics_mt_state_set(mt_state, 2, 0, 1);
907                 break;
908         case 2:
909                 /*
910                  * If mt_state_lost, SGM now contains either finger 1 or 2, but
911                  * we don't know which.
912                  * So, we just assume that the SGM contains slot 0 and AGM 1.
913                  */
914                 if (priv->mt_state_lost)
915                         synaptics_mt_state_set(mt_state, 2, 0, 1);
916                 /*
917                  * Otherwise, use the same mt_state, since it either hasn't
918                  * changed, or was updated by a recently received AGM-CONTACT
919                  * packet.
920                  */
921                 break;
922         case 3:
923                 /*
924                  * 3->2 transitions have two unsolvable problems:
925                  *  1) no indication is given which finger was removed
926                  *  2) no way to tell if agm packet was for finger 3
927                  *     before 3->2, or finger 2 after 3->2.
928                  *
929                  * So, report 2 fingers, but empty all slots.
930                  * We will guess slots [0,1] on subsequent 2->2.
931                  */
932                 synaptics_mt_state_set(mt_state, 2, -1, -1);
933                 priv->mt_state_lost = true;
934                 break;
935         case 4:
936         case 5:
937                 /* mt_state was updated by AGM-CONTACT packet */
938                 break;
939         }
940 }
941
942 /* Handle case where mt_state->count = 3 */
943 static void synaptics_image_sensor_3f(struct synaptics_data *priv,
944                                       struct synaptics_mt_state *mt_state)
945 {
946         struct synaptics_mt_state *old = &priv->mt_state;
947
948         switch (old->count) {
949         case 0:
950                 synaptics_mt_state_set(mt_state, 3, 0, 2);
951                 break;
952         case 1:
953                 /*
954                  * If previous SGM contained slot 2 or higher, SGM now contains
955                  * slot 0 (one of the newly touching fingers) and AGM contains
956                  * SGM's previous slot.
957                  *
958                  * Otherwise, SGM now contains slot 0 and AGM contains slot 2.
959                  */
960                 if (old->sgm >= 2)
961                         synaptics_mt_state_set(mt_state, 3, 0, old->sgm);
962                 else
963                         synaptics_mt_state_set(mt_state, 3, 0, 2);
964                 break;
965         case 2:
966                 /*
967                  * If the AGM previously contained slot 3 or higher, then the
968                  * newly touching finger is in the lowest available slot.
969                  *
970                  * If SGM was previously 1 or higher, then the new SGM is
971                  * now slot 0 (with a new finger), otherwise, the new finger
972                  * is now in a hidden slot between 0 and AGM's slot.
973                  *
974                  * In all such cases, the SGM now contains slot 0, and the AGM
975                  * continues to contain the same slot as before.
976                  */
977                 if (old->agm >= 3) {
978                         synaptics_mt_state_set(mt_state, 3, 0, old->agm);
979                         break;
980                 }
981
982                 /*
983                  * After some 3->1 and all 3->2 transitions, we lose track
984                  * of which slot is reported by SGM and AGM.
985                  *
986                  * For 2->3 in this state, report 3 fingers, but empty all
987                  * slots, and we will guess (0,2) on a subsequent 0->3.
988                  *
989                  * To userspace, the resulting transition will look like:
990                  *    2:[0,1] -> 3:[-1,-1] -> 3:[0,2]
991                  */
992                 if (priv->mt_state_lost) {
993                         synaptics_mt_state_set(mt_state, 3, -1, -1);
994                         break;
995                 }
996
997                 /*
998                  * If the (SGM,AGM) really previously contained slots (0, 1),
999                  * then we cannot know what slot was just reported by the AGM,
1000                  * because the 2->3 transition can occur either before or after
1001                  * the AGM packet. Thus, this most recent AGM could contain
1002                  * either the same old slot 1 or the new slot 2.
1003                  * Subsequent AGMs will be reporting slot 2.
1004                  *
1005                  * To userspace, the resulting transition will look like:
1006                  *    2:[0,1] -> 3:[0,-1] -> 3:[0,2]
1007                  */
1008                 synaptics_mt_state_set(mt_state, 3, 0, -1);
1009                 break;
1010         case 3:
1011                 /*
1012                  * If, for whatever reason, the previous agm was invalid,
1013                  * Assume SGM now contains slot 0, AGM now contains slot 2.
1014                  */
1015                 if (old->agm <= 2)
1016                         synaptics_mt_state_set(mt_state, 3, 0, 2);
1017                 /*
1018                  * mt_state either hasn't changed, or was updated by a recently
1019                  * received AGM-CONTACT packet.
1020                  */
1021                 break;
1022
1023         case 4:
1024         case 5:
1025                 /* mt_state was updated by AGM-CONTACT packet */
1026                 break;
1027         }
1028 }
1029
1030 /* Handle case where mt_state->count = 4, or = 5 */
1031 static void synaptics_image_sensor_45f(struct synaptics_data *priv,
1032                                        struct synaptics_mt_state *mt_state)
1033 {
1034         /* mt_state was updated correctly by AGM-CONTACT packet */
1035         priv->mt_state_lost = false;
1036 }
1037
1038 static void synaptics_image_sensor_process(struct psmouse *psmouse,
1039                                            struct synaptics_hw_state *sgm)
1040 {
1041         struct synaptics_data *priv = psmouse->private;
1042         struct synaptics_hw_state *agm = &priv->agm;
1043         struct synaptics_mt_state mt_state;
1044
1045         /* Initialize using current mt_state (as updated by last agm) */
1046         mt_state = agm->mt_state;
1047
1048         /*
1049          * Update mt_state using the new finger count and current mt_state.
1050          */
1051         if (sgm->z == 0)
1052                 synaptics_image_sensor_0f(priv, &mt_state);
1053         else if (sgm->w >= 4)
1054                 synaptics_image_sensor_1f(priv, &mt_state);
1055         else if (sgm->w == 0)
1056                 synaptics_image_sensor_2f(priv, &mt_state);
1057         else if (sgm->w == 1 && mt_state.count <= 3)
1058                 synaptics_image_sensor_3f(priv, &mt_state);
1059         else
1060                 synaptics_image_sensor_45f(priv, &mt_state);
1061
1062         /* Send resulting input events to user space */
1063         synaptics_report_mt_data(psmouse, &mt_state, sgm);
1064
1065         /* Store updated mt_state */
1066         priv->mt_state = agm->mt_state = mt_state;
1067         priv->agm_pending = false;
1068 }
1069
1070 /*
1071  *  called for each full received packet from the touchpad
1072  */
1073 static void synaptics_process_packet(struct psmouse *psmouse)
1074 {
1075         struct input_dev *dev = psmouse->dev;
1076         struct synaptics_data *priv = psmouse->private;
1077         struct synaptics_hw_state hw;
1078         int num_fingers;
1079         int finger_width;
1080
1081         if (synaptics_parse_hw_state(psmouse->packet, priv, &hw))
1082                 return;
1083
1084         if (SYN_CAP_IMAGE_SENSOR(priv->ext_cap_0c)) {
1085                 synaptics_image_sensor_process(psmouse, &hw);
1086                 return;
1087         }
1088
1089         if (hw.scroll) {
1090                 priv->scroll += hw.scroll;
1091
1092                 while (priv->scroll >= 4) {
1093                         input_report_key(dev, BTN_BACK, !hw.down);
1094                         input_sync(dev);
1095                         input_report_key(dev, BTN_BACK, hw.down);
1096                         input_sync(dev);
1097                         priv->scroll -= 4;
1098                 }
1099                 while (priv->scroll <= -4) {
1100                         input_report_key(dev, BTN_FORWARD, !hw.up);
1101                         input_sync(dev);
1102                         input_report_key(dev, BTN_FORWARD, hw.up);
1103                         input_sync(dev);
1104                         priv->scroll += 4;
1105                 }
1106                 return;
1107         }
1108
1109         if (hw.z > 0 && hw.x > 1) {
1110                 num_fingers = 1;
1111                 finger_width = 5;
1112                 if (SYN_CAP_EXTENDED(priv->capabilities)) {
1113                         switch (hw.w) {
1114                         case 0 ... 1:
1115                                 if (SYN_CAP_MULTIFINGER(priv->capabilities))
1116                                         num_fingers = hw.w + 2;
1117                                 break;
1118                         case 2:
1119                                 if (SYN_MODEL_PEN(priv->model_id))
1120                                         ;   /* Nothing, treat a pen as a single finger */
1121                                 break;
1122                         case 4 ... 15:
1123                                 if (SYN_CAP_PALMDETECT(priv->capabilities))
1124                                         finger_width = hw.w;
1125                                 break;
1126                         }
1127                 }
1128         } else {
1129                 num_fingers = 0;
1130                 finger_width = 0;
1131         }
1132
1133         if (SYN_CAP_ADV_GESTURE(priv->ext_cap_0c))
1134                 synaptics_report_semi_mt_data(dev, &hw, &priv->agm,
1135                                               num_fingers);
1136
1137         /* Post events
1138          * BTN_TOUCH has to be first as mousedev relies on it when doing
1139          * absolute -> relative conversion
1140          */
1141         if (hw.z > 30) input_report_key(dev, BTN_TOUCH, 1);
1142         if (hw.z < 25) input_report_key(dev, BTN_TOUCH, 0);
1143
1144         if (num_fingers > 0) {
1145                 input_report_abs(dev, ABS_X, hw.x);
1146                 input_report_abs(dev, ABS_Y, synaptics_invert_y(hw.y));
1147         }
1148         input_report_abs(dev, ABS_PRESSURE, hw.z);
1149
1150         if (SYN_CAP_PALMDETECT(priv->capabilities))
1151                 input_report_abs(dev, ABS_TOOL_WIDTH, finger_width);
1152
1153         input_report_key(dev, BTN_TOOL_FINGER, num_fingers == 1);
1154         if (SYN_CAP_MULTIFINGER(priv->capabilities)) {
1155                 input_report_key(dev, BTN_TOOL_DOUBLETAP, num_fingers == 2);
1156                 input_report_key(dev, BTN_TOOL_TRIPLETAP, num_fingers == 3);
1157         }
1158
1159         synaptics_report_buttons(psmouse, &hw);
1160
1161         input_sync(dev);
1162 }
1163
1164 static int synaptics_validate_byte(struct psmouse *psmouse,
1165                                    int idx, unsigned char pkt_type)
1166 {
1167         static const unsigned char newabs_mask[]        = { 0xC8, 0x00, 0x00, 0xC8, 0x00 };
1168         static const unsigned char newabs_rel_mask[]    = { 0xC0, 0x00, 0x00, 0xC0, 0x00 };
1169         static const unsigned char newabs_rslt[]        = { 0x80, 0x00, 0x00, 0xC0, 0x00 };
1170         static const unsigned char oldabs_mask[]        = { 0xC0, 0x60, 0x00, 0xC0, 0x60 };
1171         static const unsigned char oldabs_rslt[]        = { 0xC0, 0x00, 0x00, 0x80, 0x00 };
1172         const char *packet = psmouse->packet;
1173
1174         if (idx < 0 || idx > 4)
1175                 return 0;
1176
1177         switch (pkt_type) {
1178
1179         case SYN_NEWABS:
1180         case SYN_NEWABS_RELAXED:
1181                 return (packet[idx] & newabs_rel_mask[idx]) == newabs_rslt[idx];
1182
1183         case SYN_NEWABS_STRICT:
1184                 return (packet[idx] & newabs_mask[idx]) == newabs_rslt[idx];
1185
1186         case SYN_OLDABS:
1187                 return (packet[idx] & oldabs_mask[idx]) == oldabs_rslt[idx];
1188
1189         default:
1190                 psmouse_err(psmouse, "unknown packet type %d\n", pkt_type);
1191                 return 0;
1192         }
1193 }
1194
1195 static unsigned char synaptics_detect_pkt_type(struct psmouse *psmouse)
1196 {
1197         int i;
1198
1199         for (i = 0; i < 5; i++)
1200                 if (!synaptics_validate_byte(psmouse, i, SYN_NEWABS_STRICT)) {
1201                         psmouse_info(psmouse, "using relaxed packet validation\n");
1202                         return SYN_NEWABS_RELAXED;
1203                 }
1204
1205         return SYN_NEWABS_STRICT;
1206 }
1207
1208 static psmouse_ret_t synaptics_process_byte(struct psmouse *psmouse)
1209 {
1210         struct synaptics_data *priv = psmouse->private;
1211
1212         if (psmouse->pktcnt >= 6) { /* Full packet received */
1213                 if (unlikely(priv->pkt_type == SYN_NEWABS))
1214                         priv->pkt_type = synaptics_detect_pkt_type(psmouse);
1215
1216                 if (SYN_CAP_PASS_THROUGH(priv->capabilities) &&
1217                     synaptics_is_pt_packet(psmouse->packet)) {
1218                         if (priv->pt_port)
1219                                 synaptics_pass_pt_packet(priv->pt_port, psmouse->packet);
1220                 } else
1221                         synaptics_process_packet(psmouse);
1222
1223                 return PSMOUSE_FULL_PACKET;
1224         }
1225
1226         return synaptics_validate_byte(psmouse, psmouse->pktcnt - 1, priv->pkt_type) ?
1227                 PSMOUSE_GOOD_DATA : PSMOUSE_BAD_DATA;
1228 }
1229
1230 /*****************************************************************************
1231  *      Driver initialization/cleanup functions
1232  ****************************************************************************/
1233 static void set_abs_position_params(struct input_dev *dev,
1234                                     struct synaptics_data *priv, int x_code,
1235                                     int y_code)
1236 {
1237         int x_min = priv->x_min ?: XMIN_NOMINAL;
1238         int x_max = priv->x_max ?: XMAX_NOMINAL;
1239         int y_min = priv->y_min ?: YMIN_NOMINAL;
1240         int y_max = priv->y_max ?: YMAX_NOMINAL;
1241         int fuzz = SYN_CAP_REDUCED_FILTERING(priv->ext_cap_0c) ?
1242                         SYN_REDUCED_FILTER_FUZZ : 0;
1243
1244         input_set_abs_params(dev, x_code, x_min, x_max, fuzz, 0);
1245         input_set_abs_params(dev, y_code, y_min, y_max, fuzz, 0);
1246         input_abs_set_res(dev, x_code, priv->x_res);
1247         input_abs_set_res(dev, y_code, priv->y_res);
1248 }
1249
1250 static void set_input_params(struct input_dev *dev, struct synaptics_data *priv)
1251 {
1252         int i;
1253
1254         __set_bit(INPUT_PROP_POINTER, dev->propbit);
1255
1256         __set_bit(EV_ABS, dev->evbit);
1257         set_abs_position_params(dev, priv, ABS_X, ABS_Y);
1258         input_set_abs_params(dev, ABS_PRESSURE, 0, 255, 0, 0);
1259
1260         if (SYN_CAP_IMAGE_SENSOR(priv->ext_cap_0c)) {
1261                 input_mt_init_slots(dev, 2);
1262                 set_abs_position_params(dev, priv, ABS_MT_POSITION_X,
1263                                         ABS_MT_POSITION_Y);
1264                 /* Image sensors can report per-contact pressure */
1265                 input_set_abs_params(dev, ABS_MT_PRESSURE, 0, 255, 0, 0);
1266
1267                 /* Image sensors can signal 4 and 5 finger clicks */
1268                 __set_bit(BTN_TOOL_QUADTAP, dev->keybit);
1269                 __set_bit(BTN_TOOL_QUINTTAP, dev->keybit);
1270         } else if (SYN_CAP_ADV_GESTURE(priv->ext_cap_0c)) {
1271                 /* Non-image sensors with AGM use semi-mt */
1272                 __set_bit(INPUT_PROP_SEMI_MT, dev->propbit);
1273                 input_mt_init_slots(dev, 2);
1274                 set_abs_position_params(dev, priv, ABS_MT_POSITION_X,
1275                                         ABS_MT_POSITION_Y);
1276         }
1277
1278         if (SYN_CAP_PALMDETECT(priv->capabilities))
1279                 input_set_abs_params(dev, ABS_TOOL_WIDTH, 0, 15, 0, 0);
1280
1281         __set_bit(EV_KEY, dev->evbit);
1282         __set_bit(BTN_TOUCH, dev->keybit);
1283         __set_bit(BTN_TOOL_FINGER, dev->keybit);
1284         __set_bit(BTN_LEFT, dev->keybit);
1285         __set_bit(BTN_RIGHT, dev->keybit);
1286
1287         if (SYN_CAP_MULTIFINGER(priv->capabilities)) {
1288                 __set_bit(BTN_TOOL_DOUBLETAP, dev->keybit);
1289                 __set_bit(BTN_TOOL_TRIPLETAP, dev->keybit);
1290         }
1291
1292         if (SYN_CAP_MIDDLE_BUTTON(priv->capabilities))
1293                 __set_bit(BTN_MIDDLE, dev->keybit);
1294
1295         if (SYN_CAP_FOUR_BUTTON(priv->capabilities) ||
1296             SYN_CAP_MIDDLE_BUTTON(priv->capabilities)) {
1297                 __set_bit(BTN_FORWARD, dev->keybit);
1298                 __set_bit(BTN_BACK, dev->keybit);
1299         }
1300
1301         for (i = 0; i < SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap); i++)
1302                 __set_bit(BTN_0 + i, dev->keybit);
1303
1304         __clear_bit(EV_REL, dev->evbit);
1305         __clear_bit(REL_X, dev->relbit);
1306         __clear_bit(REL_Y, dev->relbit);
1307
1308         if (SYN_CAP_CLICKPAD(priv->ext_cap_0c)) {
1309                 __set_bit(INPUT_PROP_BUTTONPAD, dev->propbit);
1310                 /* Clickpads report only left button */
1311                 __clear_bit(BTN_RIGHT, dev->keybit);
1312                 __clear_bit(BTN_MIDDLE, dev->keybit);
1313         }
1314 }
1315
1316 static void synaptics_disconnect(struct psmouse *psmouse)
1317 {
1318         synaptics_reset(psmouse);
1319         kfree(psmouse->private);
1320         psmouse->private = NULL;
1321 }
1322
1323 static int synaptics_reconnect(struct psmouse *psmouse)
1324 {
1325         struct synaptics_data *priv = psmouse->private;
1326         struct synaptics_data old_priv = *priv;
1327         int retry = 0;
1328         int error;
1329
1330         do {
1331                 psmouse_reset(psmouse);
1332                 if (retry) {
1333                         /*
1334                          * On some boxes, right after resuming, the touchpad
1335                          * needs some time to finish initializing (I assume
1336                          * it needs time to calibrate) and start responding
1337                          * to Synaptics-specific queries, so let's wait a
1338                          * bit.
1339                          */
1340                         ssleep(1);
1341                 }
1342                 error = synaptics_detect(psmouse, 0);
1343         } while (error && ++retry < 3);
1344
1345         if (error)
1346                 return -1;
1347
1348         if (retry > 1)
1349                 psmouse_dbg(psmouse, "reconnected after %d tries\n", retry);
1350
1351         if (synaptics_query_hardware(psmouse)) {
1352                 psmouse_err(psmouse, "Unable to query device.\n");
1353                 return -1;
1354         }
1355
1356         if (synaptics_set_absolute_mode(psmouse)) {
1357                 psmouse_err(psmouse, "Unable to initialize device.\n");
1358                 return -1;
1359         }
1360
1361         if (synaptics_set_advanced_gesture_mode(psmouse)) {
1362                 psmouse_err(psmouse,
1363                             "Advanced gesture mode reconnect failed.\n");
1364                 return -1;
1365         }
1366
1367         if (old_priv.identity != priv->identity ||
1368             old_priv.model_id != priv->model_id ||
1369             old_priv.capabilities != priv->capabilities ||
1370             old_priv.ext_cap != priv->ext_cap) {
1371                 psmouse_err(psmouse,
1372                             "hardware appears to be different: id(%ld-%ld), model(%ld-%ld), caps(%lx-%lx), ext(%lx-%lx).\n",
1373                             old_priv.identity, priv->identity,
1374                             old_priv.model_id, priv->model_id,
1375                             old_priv.capabilities, priv->capabilities,
1376                             old_priv.ext_cap, priv->ext_cap);
1377                 return -1;
1378         }
1379
1380         return 0;
1381 }
1382
1383 static bool impaired_toshiba_kbc;
1384
1385 static const struct dmi_system_id __initconst toshiba_dmi_table[] = {
1386 #if defined(CONFIG_DMI) && defined(CONFIG_X86)
1387         {
1388                 /* Toshiba Satellite */
1389                 .matches = {
1390                         DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1391                         DMI_MATCH(DMI_PRODUCT_NAME, "Satellite"),
1392                 },
1393         },
1394         {
1395                 /* Toshiba Dynabook */
1396                 .matches = {
1397                         DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1398                         DMI_MATCH(DMI_PRODUCT_NAME, "dynabook"),
1399                 },
1400         },
1401         {
1402                 /* Toshiba Portege M300 */
1403                 .matches = {
1404                         DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1405                         DMI_MATCH(DMI_PRODUCT_NAME, "PORTEGE M300"),
1406                 },
1407
1408         },
1409         {
1410                 /* Toshiba Portege M300 */
1411                 .matches = {
1412                         DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1413                         DMI_MATCH(DMI_PRODUCT_NAME, "Portable PC"),
1414                         DMI_MATCH(DMI_PRODUCT_VERSION, "Version 1.0"),
1415                 },
1416
1417         },
1418 #endif
1419         { }
1420 };
1421
1422 static bool broken_olpc_ec;
1423
1424 static const struct dmi_system_id __initconst olpc_dmi_table[] = {
1425 #if defined(CONFIG_DMI) && defined(CONFIG_OLPC)
1426         {
1427                 /* OLPC XO-1 or XO-1.5 */
1428                 .matches = {
1429                         DMI_MATCH(DMI_SYS_VENDOR, "OLPC"),
1430                         DMI_MATCH(DMI_PRODUCT_NAME, "XO"),
1431                 },
1432         },
1433 #endif
1434         { }
1435 };
1436
1437 static const struct dmi_system_id min_max_dmi_table[] __initconst = {
1438 #if defined(CONFIG_DMI)
1439         {
1440                 /* Lenovo ThinkPad Helix */
1441                 .matches = {
1442                         DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
1443                         DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad Helix"),
1444                 },
1445                 .driver_data = (int []){1024, 5052, 2258, 4832},
1446         },
1447         {
1448                 /* Lenovo ThinkPad X240 */
1449                 .matches = {
1450                         DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
1451                         DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad X240"),
1452                 },
1453                 .driver_data = (int []){1232, 5710, 1156, 4696},
1454         },
1455         {
1456                 /* Lenovo ThinkPad Edge E431 */
1457                 .matches = {
1458                         DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
1459                         DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad Edge E431"),
1460                 },
1461                 .driver_data = (int []){1024, 5022, 2508, 4832},
1462         },
1463         {
1464                 /* Lenovo ThinkPad T431s */
1465                 .matches = {
1466                         DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
1467                         DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad T431"),
1468                 },
1469                 .driver_data = (int []){1024, 5112, 2024, 4832},
1470         },
1471         {
1472                 /* Lenovo ThinkPad T440s */
1473                 .matches = {
1474                         DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
1475                         DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad T440"),
1476                 },
1477                 .driver_data = (int []){1024, 5112, 2024, 4832},
1478         },
1479         {
1480                 /* Lenovo ThinkPad L440 */
1481                 .matches = {
1482                         DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
1483                         DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad L440"),
1484                 },
1485                 .driver_data = (int []){1024, 5112, 2024, 4832},
1486         },
1487         {
1488                 /* Lenovo ThinkPad T540p */
1489                 .matches = {
1490                         DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
1491                         DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad T540"),
1492                 },
1493                 .driver_data = (int []){1024, 5112, 2024, 4832},
1494         },
1495         {
1496                 /* Lenovo ThinkPad L540 */
1497                 .matches = {
1498                         DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
1499                         DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad L540"),
1500                 },
1501                 .driver_data = (int []){1024, 5112, 2024, 4832},
1502         },
1503         {
1504                 /* Lenovo ThinkPad W540 */
1505                 .matches = {
1506                         DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
1507                         DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad W540"),
1508                 },
1509                 .driver_data = (int []){1024, 5112, 2024, 4832},
1510         },
1511         {
1512                 /* Lenovo Yoga S1 */
1513                 .matches = {
1514                         DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
1515                         DMI_EXACT_MATCH(DMI_PRODUCT_VERSION,
1516                                         "ThinkPad S1 Yoga"),
1517                 },
1518                 .driver_data = (int []){1232, 5710, 1156, 4696},
1519         },
1520         {
1521                 /* Lenovo ThinkPad X1 Carbon Haswell (3rd generation) */
1522                 .matches = {
1523                         DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
1524                         DMI_MATCH(DMI_PRODUCT_VERSION,
1525                                         "ThinkPad X1 Carbon 2nd"),
1526                 },
1527                 .driver_data = (int []){1024, 5112, 2024, 4832},
1528         },
1529 #endif
1530         { }
1531 };
1532
1533 static const struct dmi_system_id forcepad_dmi_table[] __initconst = {
1534 #if defined(CONFIG_DMI) && defined(CONFIG_X86)
1535         {
1536                 .matches = {
1537                         DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1538                         DMI_MATCH(DMI_PRODUCT_NAME, "HP EliteBook Folio 1040 G1"),
1539                 },
1540         },
1541 #endif
1542         { }
1543 };
1544
1545 void __init synaptics_module_init(void)
1546 {
1547         const struct dmi_system_id *min_max_dmi;
1548
1549         impaired_toshiba_kbc = dmi_check_system(toshiba_dmi_table);
1550         broken_olpc_ec = dmi_check_system(olpc_dmi_table);
1551
1552         min_max_dmi = dmi_first_match(min_max_dmi_table);
1553         if (min_max_dmi)
1554                 quirk_min_max = min_max_dmi->driver_data;
1555
1556         /*
1557          * Unfortunately ForcePad capability is not exported over PS/2,
1558          * so we have to resort to checking DMI.
1559          */
1560         is_forcepad = dmi_check_system(forcepad_dmi_table);
1561 }
1562
1563 int synaptics_init(struct psmouse *psmouse)
1564 {
1565         struct synaptics_data *priv;
1566
1567         /*
1568          * The OLPC XO has issues with Synaptics' absolute mode; similarly to
1569          * the HGPK, it quickly degrades and the hardware becomes jumpy and
1570          * overly sensitive.  Not only that, but the constant packet spew
1571          * (even at a lowered 40pps rate) overloads the EC such that key
1572          * presses on the keyboard are missed.  Given all of that, don't
1573          * even attempt to use Synaptics mode.  Relative mode seems to work
1574          * just fine.
1575          */
1576         if (broken_olpc_ec) {
1577                 psmouse_info(psmouse,
1578                              "OLPC XO detected, not enabling Synaptics protocol.\n");
1579                 return -ENODEV;
1580         }
1581
1582         psmouse->private = priv = kzalloc(sizeof(struct synaptics_data), GFP_KERNEL);
1583         if (!priv)
1584                 return -ENOMEM;
1585
1586         psmouse_reset(psmouse);
1587
1588         if (synaptics_query_hardware(psmouse)) {
1589                 psmouse_err(psmouse, "Unable to query device.\n");
1590                 goto init_fail;
1591         }
1592
1593         if (synaptics_set_absolute_mode(psmouse)) {
1594                 psmouse_err(psmouse, "Unable to initialize device.\n");
1595                 goto init_fail;
1596         }
1597
1598         if (synaptics_set_advanced_gesture_mode(psmouse)) {
1599                 psmouse_err(psmouse, "Advanced gesture mode init failed.\n");
1600                 goto init_fail;
1601         }
1602
1603         priv->pkt_type = SYN_MODEL_NEWABS(priv->model_id) ? SYN_NEWABS : SYN_OLDABS;
1604
1605         psmouse_info(psmouse,
1606                      "Touchpad model: %ld, fw: %ld.%ld, id: %#lx, caps: %#lx/%#lx/%#lx\n",
1607                      SYN_ID_MODEL(priv->identity),
1608                      SYN_ID_MAJOR(priv->identity), SYN_ID_MINOR(priv->identity),
1609                      priv->model_id,
1610                      priv->capabilities, priv->ext_cap, priv->ext_cap_0c);
1611
1612         set_input_params(psmouse->dev, priv);
1613
1614         /*
1615          * Encode touchpad model so that it can be used to set
1616          * input device->id.version and be visible to userspace.
1617          * Because version is __u16 we have to drop something.
1618          * Hardware info bits seem to be good candidates as they
1619          * are documented to be for Synaptics corp. internal use.
1620          */
1621         psmouse->model = ((priv->model_id & 0x00ff0000) >> 8) |
1622                           (priv->model_id & 0x000000ff);
1623
1624         psmouse->protocol_handler = synaptics_process_byte;
1625         psmouse->set_rate = synaptics_set_rate;
1626         psmouse->disconnect = synaptics_disconnect;
1627         psmouse->reconnect = synaptics_reconnect;
1628         psmouse->cleanup = synaptics_reset;
1629         psmouse->pktsize = 6;
1630         /* Synaptics can usually stay in sync without extra help */
1631         psmouse->resync_time = 0;
1632
1633         if (SYN_CAP_PASS_THROUGH(priv->capabilities))
1634                 synaptics_pt_create(psmouse);
1635
1636         /*
1637          * Toshiba's KBC seems to have trouble handling data from
1638          * Synaptics at full rate.  Switch to a lower rate (roughly
1639          * the same rate as a standard PS/2 mouse).
1640          */
1641         if (psmouse->rate >= 80 && impaired_toshiba_kbc) {
1642                 psmouse_info(psmouse,
1643                              "Toshiba %s detected, limiting rate to 40pps.\n",
1644                              dmi_get_system_info(DMI_PRODUCT_NAME));
1645                 psmouse->rate = 40;
1646         }
1647
1648         return 0;
1649
1650  init_fail:
1651         kfree(priv);
1652         return -1;
1653 }
1654
1655 bool synaptics_supported(void)
1656 {
1657         return true;
1658 }
1659
1660 #else /* CONFIG_MOUSE_PS2_SYNAPTICS */
1661
1662 void __init synaptics_module_init(void)
1663 {
1664 }
1665
1666 int synaptics_init(struct psmouse *psmouse)
1667 {
1668         return -ENOSYS;
1669 }
1670
1671 bool synaptics_supported(void)
1672 {
1673         return false;
1674 }
1675
1676 #endif /* CONFIG_MOUSE_PS2_SYNAPTICS */