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