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