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