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