blob: bee2674249722fd4117a7d7de95d222749c6b86a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * PS/2 mouse driver
3 *
4 * Copyright (c) 1999-2002 Vojtech Pavlik
5 * Copyright (c) 2003-2004 Dmitry Torokhov
6 */
7
8/*
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License version 2 as published by
11 * the Free Software Foundation.
12 */
13
Dmitry Torokhovb5d21702011-10-10 18:27:03 -070014#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
15#define psmouse_fmt(fmt) fmt
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/delay.h>
18#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/slab.h>
20#include <linux/interrupt.h>
21#include <linux/input.h>
22#include <linux/serio.h>
23#include <linux/init.h>
24#include <linux/libps2.h>
Ingo Molnarc14471d2006-02-19 00:22:11 -050025#include <linux/mutex.h>
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "psmouse.h"
28#include "synaptics.h"
29#include "logips2pp.h"
30#include "alps.h"
Andres Salomondf08ef22008-09-16 12:30:34 -040031#include "hgpk.h"
Kenan Esau02d7f582005-05-29 02:30:22 -050032#include "lifebook.h"
Stephen Evanchik541e3162005-08-08 01:26:18 -050033#include "trackpoint.h"
Stefan Lucke24bf10a2007-02-18 01:49:10 -050034#include "touchkit_ps2.h"
Arjan Opmeer2a0bd752008-10-16 22:10:19 -040035#include "elantech.h"
Tai-hwa Liangfc69f4a2009-05-10 18:15:39 -070036#include "sentelic.h"
Dudley Du0799a922013-01-05 00:14:22 -080037#include "cypress_ps2.h"
Hans de Goede3ace3682014-09-12 17:24:47 -070038#include "focaltech.h"
Thomas Hellstrom8b8be512015-04-14 10:06:38 -070039#include "vmmouse.h"
Chris Diamand98ee3772016-01-27 17:04:35 -080040#include "byd.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#define DRIVER_DESC "PS/2 mouse driver"
43
44MODULE_AUTHOR("Vojtech Pavlik <vojtech@suse.cz>");
45MODULE_DESCRIPTION(DRIVER_DESC);
46MODULE_LICENSE("GPL");
47
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -050048static unsigned int psmouse_max_proto = PSMOUSE_AUTO;
Rusty Russell9bbb9e52010-08-11 23:04:12 -060049static int psmouse_set_maxproto(const char *val, const struct kernel_param *);
50static int psmouse_get_maxproto(char *buffer, const struct kernel_param *kp);
Luis R. Rodriguez9c278472015-05-27 11:09:38 +093051static const struct kernel_param_ops param_ops_proto_abbrev = {
Rusty Russell9bbb9e52010-08-11 23:04:12 -060052 .set = psmouse_set_maxproto,
53 .get = psmouse_get_maxproto,
54};
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#define param_check_proto_abbrev(name, p) __param_check(name, p, unsigned int)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056module_param_named(proto, psmouse_max_proto, proto_abbrev, 0644);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -050057MODULE_PARM_DESC(proto, "Highest protocol extension to probe (bare, imps, exps, any). Useful for KVM switches.");
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59static unsigned int psmouse_resolution = 200;
60module_param_named(resolution, psmouse_resolution, uint, 0644);
61MODULE_PARM_DESC(resolution, "Resolution, in dpi.");
62
63static unsigned int psmouse_rate = 100;
64module_param_named(rate, psmouse_rate, uint, 0644);
65MODULE_PARM_DESC(rate, "Report rate, in reports per second.");
66
Shailendra Vermafeb9eba2015-05-26 14:07:12 -070067static bool psmouse_smartscroll = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068module_param_named(smartscroll, psmouse_smartscroll, bool, 0644);
69MODULE_PARM_DESC(smartscroll, "Logitech Smartscroll autorepeat, 1 = enabled (default), 0 = disabled.");
70
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -050071static unsigned int psmouse_resetafter = 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072module_param_named(resetafter, psmouse_resetafter, uint, 0644);
73MODULE_PARM_DESC(resetafter, "Reset device after so many bad packets (0 = never).");
74
Dmitry Torokhov8bd0ee92006-03-11 00:23:38 -050075static unsigned int psmouse_resync_time;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -050076module_param_named(resync_time, psmouse_resync_time, uint, 0644);
77MODULE_PARM_DESC(resync_time, "How long can mouse stay idle before forcing resync (in seconds, 0 = never).");
78
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -050079PSMOUSE_DEFINE_ATTR(protocol, S_IWUSR | S_IRUGO,
80 NULL,
81 psmouse_attr_show_protocol, psmouse_attr_set_protocol);
82PSMOUSE_DEFINE_ATTR(rate, S_IWUSR | S_IRUGO,
83 (void *) offsetof(struct psmouse, rate),
84 psmouse_show_int_attr, psmouse_attr_set_rate);
85PSMOUSE_DEFINE_ATTR(resolution, S_IWUSR | S_IRUGO,
86 (void *) offsetof(struct psmouse, resolution),
87 psmouse_show_int_attr, psmouse_attr_set_resolution);
88PSMOUSE_DEFINE_ATTR(resetafter, S_IWUSR | S_IRUGO,
89 (void *) offsetof(struct psmouse, resetafter),
90 psmouse_show_int_attr, psmouse_set_int_attr);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -050091PSMOUSE_DEFINE_ATTR(resync_time, S_IWUSR | S_IRUGO,
92 (void *) offsetof(struct psmouse, resync_time),
93 psmouse_show_int_attr, psmouse_set_int_attr);
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -050094
95static struct attribute *psmouse_attributes[] = {
96 &psmouse_attr_protocol.dattr.attr,
97 &psmouse_attr_rate.dattr.attr,
98 &psmouse_attr_resolution.dattr.attr,
99 &psmouse_attr_resetafter.dattr.attr,
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500100 &psmouse_attr_resync_time.dattr.attr,
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -0500101 NULL
102};
103
104static struct attribute_group psmouse_attribute_group = {
105 .attrs = psmouse_attributes,
106};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Dmitry Torokhov04df1922005-06-01 02:39:44 -0500108/*
Ingo Molnarc14471d2006-02-19 00:22:11 -0500109 * psmouse_mutex protects all operations changing state of mouse
Dmitry Torokhov04df1922005-06-01 02:39:44 -0500110 * (connecting, disconnecting, changing rate or resolution via
111 * sysfs). We could use a per-device semaphore but since there
112 * rarely more than one PS/2 mouse connected and since semaphore
113 * is taken in "slow" paths it is not worth it.
114 */
Ingo Molnarc14471d2006-02-19 00:22:11 -0500115static DEFINE_MUTEX(psmouse_mutex);
Dmitry Torokhov04df1922005-06-01 02:39:44 -0500116
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500117static struct workqueue_struct *kpsmoused_wq;
118
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500119struct psmouse_protocol {
120 enum psmouse_type type;
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700121 bool maxproto;
Dmitry Torokhov6b9d3632010-04-19 00:42:16 -0700122 bool ignore_parity; /* Protocol should ignore parity errors from KBC */
Dmitry Torokhovec6184b2015-11-24 12:58:46 -0800123 bool try_passthru; /* Try protocol also on passthrough ports */
Helge Dellere38de672006-09-10 21:54:39 -0400124 const char *name;
125 const char *alias;
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700126 int (*detect)(struct psmouse *, bool);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500127 int (*init)(struct psmouse *);
128};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130/*
131 * psmouse_process_byte() analyzes the PS/2 data stream and reports
132 * relevant events to the input module once full packet has arrived.
133 */
Daniel Drake7968a5d2011-11-08 00:00:35 -0800134psmouse_ret_t psmouse_process_byte(struct psmouse *psmouse)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -0500136 struct input_dev *dev = psmouse->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 unsigned char *packet = psmouse->packet;
138
139 if (psmouse->pktcnt < psmouse->pktsize)
140 return PSMOUSE_GOOD_DATA;
141
Dmitry Torokhov0a88d602015-11-27 20:29:22 -0800142 /* Full packet accumulated, process it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Dmitry Torokhov0a88d602015-11-27 20:29:22 -0800144 switch (psmouse->type) {
145 case PSMOUSE_IMPS:
146 /* IntelliMouse has scroll wheel */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 input_report_rel(dev, REL_WHEEL, -(signed char) packet[3]);
Dmitry Torokhov0a88d602015-11-27 20:29:22 -0800148 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Dmitry Torokhov0a88d602015-11-27 20:29:22 -0800150 case PSMOUSE_IMEX:
151 /* Scroll wheel and buttons on IntelliMouse Explorer */
Pozsar Balazsb0c9ad82006-06-26 01:56:08 -0400152 switch (packet[3] & 0xC0) {
Dmitry Torokhova62f0d22010-05-19 10:39:17 -0700153 case 0x80: /* vertical scroll on IntelliMouse Explorer 4.0 */
154 input_report_rel(dev, REL_WHEEL, (int) (packet[3] & 32) - (int) (packet[3] & 31));
155 break;
156 case 0x40: /* horizontal scroll on IntelliMouse Explorer 4.0 */
157 input_report_rel(dev, REL_HWHEEL, (int) (packet[3] & 32) - (int) (packet[3] & 31));
158 break;
159 case 0x00:
160 case 0xC0:
161 input_report_rel(dev, REL_WHEEL, (int) (packet[3] & 8) - (int) (packet[3] & 7));
162 input_report_key(dev, BTN_SIDE, (packet[3] >> 4) & 1);
163 input_report_key(dev, BTN_EXTRA, (packet[3] >> 5) & 1);
164 break;
Pozsar Balazsb0c9ad82006-06-26 01:56:08 -0400165 }
Dmitry Torokhov0a88d602015-11-27 20:29:22 -0800166 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Dmitry Torokhov0a88d602015-11-27 20:29:22 -0800168 case PSMOUSE_GENPS:
169 /* Report scroll buttons on NetMice */
170 input_report_rel(dev, REL_WHEEL, -(signed char) packet[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Dmitry Torokhov0a88d602015-11-27 20:29:22 -0800172 /* Extra buttons on Genius NewNet 3D */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 input_report_key(dev, BTN_SIDE, (packet[0] >> 6) & 1);
174 input_report_key(dev, BTN_EXTRA, (packet[0] >> 7) & 1);
Dmitry Torokhov0a88d602015-11-27 20:29:22 -0800175 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Dmitry Torokhov0a88d602015-11-27 20:29:22 -0800177 case PSMOUSE_THINKPS:
178 /* Extra button on ThinkingMouse */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 input_report_key(dev, BTN_EXTRA, (packet[0] >> 3) & 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Dmitry Torokhov0a88d602015-11-27 20:29:22 -0800181 /*
182 * Without this bit of weirdness moving up gives wildly
183 * high Y changes.
184 */
185 packet[1] |= (packet[0] & 0x40) << 1;
186 break;
187
188 case PSMOUSE_CORTRON:
189 /*
190 * Cortron PS2 Trackball reports SIDE button in the
191 * 4th bit of the first byte.
192 */
Aristeu Rozanskiaea6a462007-05-10 01:47:18 -0400193 input_report_key(dev, BTN_SIDE, (packet[0] >> 3) & 1);
194 packet[0] |= 0x08;
Dmitry Torokhov0a88d602015-11-27 20:29:22 -0800195 break;
196
197 default:
198 break;
Aristeu Rozanskiaea6a462007-05-10 01:47:18 -0400199 }
200
Dmitry Torokhov0a88d602015-11-27 20:29:22 -0800201 /* Generic PS/2 Mouse */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 input_report_key(dev, BTN_LEFT, packet[0] & 1);
203 input_report_key(dev, BTN_MIDDLE, (packet[0] >> 2) & 1);
204 input_report_key(dev, BTN_RIGHT, (packet[0] >> 1) & 1);
205
206 input_report_rel(dev, REL_X, packet[1] ? (int) packet[1] - (int) ((packet[0] << 4) & 0x100) : 0);
207 input_report_rel(dev, REL_Y, packet[2] ? (int) ((packet[0] << 3) & 0x100) - (int) packet[2] : 0);
208
209 input_sync(dev);
210
211 return PSMOUSE_FULL_PACKET;
212}
213
Andres Salomon8bf020e2008-09-16 12:30:33 -0400214void psmouse_queue_work(struct psmouse *psmouse, struct delayed_work *work,
215 unsigned long delay)
216{
217 queue_delayed_work(kpsmoused_wq, work, delay);
218}
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220/*
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500221 * __psmouse_set_state() sets new psmouse state and resets all flags.
222 */
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500223static inline void __psmouse_set_state(struct psmouse *psmouse, enum psmouse_state new_state)
224{
225 psmouse->state = new_state;
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700226 psmouse->pktcnt = psmouse->out_of_sync_cnt = 0;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500227 psmouse->ps2dev.flags = 0;
228 psmouse->last = jiffies;
229}
230
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500231/*
232 * psmouse_set_state() sets new psmouse state and resets all flags and
233 * counters while holding serio lock so fighting with interrupt handler
234 * is not a concern.
235 */
Andres Salomona48cf5f2008-09-16 12:30:33 -0400236void psmouse_set_state(struct psmouse *psmouse, enum psmouse_state new_state)
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500237{
238 serio_pause_rx(psmouse->ps2dev.serio);
239 __psmouse_set_state(psmouse, new_state);
240 serio_continue_rx(psmouse->ps2dev.serio);
241}
242
243/*
244 * psmouse_handle_byte() processes one byte of the input data stream
245 * by calling corresponding protocol handler.
246 */
David Howells7d12e782006-10-05 14:55:46 +0100247static int psmouse_handle_byte(struct psmouse *psmouse)
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500248{
David Howells7d12e782006-10-05 14:55:46 +0100249 psmouse_ret_t rc = psmouse->protocol_handler(psmouse);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500250
251 switch (rc) {
Dmitry Torokhova62f0d22010-05-19 10:39:17 -0700252 case PSMOUSE_BAD_DATA:
253 if (psmouse->state == PSMOUSE_ACTIVATED) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700254 psmouse_warn(psmouse,
255 "%s at %s lost sync at byte %d\n",
256 psmouse->name, psmouse->phys,
257 psmouse->pktcnt);
Dmitry Torokhova62f0d22010-05-19 10:39:17 -0700258 if (++psmouse->out_of_sync_cnt == psmouse->resetafter) {
259 __psmouse_set_state(psmouse, PSMOUSE_IGNORE);
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700260 psmouse_notice(psmouse,
261 "issuing reconnect request\n");
Dmitry Torokhova62f0d22010-05-19 10:39:17 -0700262 serio_reconnect(psmouse->ps2dev.serio);
263 return -1;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500264 }
Dmitry Torokhova62f0d22010-05-19 10:39:17 -0700265 }
266 psmouse->pktcnt = 0;
267 break;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500268
Dmitry Torokhova62f0d22010-05-19 10:39:17 -0700269 case PSMOUSE_FULL_PACKET:
270 psmouse->pktcnt = 0;
271 if (psmouse->out_of_sync_cnt) {
272 psmouse->out_of_sync_cnt = 0;
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700273 psmouse_notice(psmouse,
274 "%s at %s - driver resynced.\n",
275 psmouse->name, psmouse->phys);
Dmitry Torokhova62f0d22010-05-19 10:39:17 -0700276 }
277 break;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500278
Dmitry Torokhova62f0d22010-05-19 10:39:17 -0700279 case PSMOUSE_GOOD_DATA:
280 break;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500281 }
282 return 0;
283}
284
285/*
286 * psmouse_interrupt() handles incoming characters, either passing them
287 * for normal processing or gathering them as command response.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289static irqreturn_t psmouse_interrupt(struct serio *serio,
David Howells7d12e782006-10-05 14:55:46 +0100290 unsigned char data, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
292 struct psmouse *psmouse = serio_get_drvdata(serio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
294 if (psmouse->state == PSMOUSE_IGNORE)
295 goto out;
296
Dmitry Torokhov6b9d3632010-04-19 00:42:16 -0700297 if (unlikely((flags & SERIO_TIMEOUT) ||
298 ((flags & SERIO_PARITY) && !psmouse->ignore_parity))) {
299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 if (psmouse->state == PSMOUSE_ACTIVATED)
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700301 psmouse_warn(psmouse,
302 "bad data from KBC -%s%s\n",
303 flags & SERIO_TIMEOUT ? " timeout" : "",
304 flags & SERIO_PARITY ? " bad parity" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 ps2_cmd_aborted(&psmouse->ps2dev);
306 goto out;
307 }
308
309 if (unlikely(psmouse->ps2dev.flags & PS2_FLAG_ACK))
310 if (ps2_handle_ack(&psmouse->ps2dev, data))
311 goto out;
312
313 if (unlikely(psmouse->ps2dev.flags & PS2_FLAG_CMD))
314 if (ps2_handle_response(&psmouse->ps2dev, data))
315 goto out;
316
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500317 if (psmouse->state <= PSMOUSE_RESYNCING)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 goto out;
319
320 if (psmouse->state == PSMOUSE_ACTIVATED &&
321 psmouse->pktcnt && time_after(jiffies, psmouse->last + HZ/2)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700322 psmouse_info(psmouse, "%s at %s lost synchronization, throwing %d bytes away.\n",
323 psmouse->name, psmouse->phys, psmouse->pktcnt);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500324 psmouse->badbyte = psmouse->packet[0];
325 __psmouse_set_state(psmouse, PSMOUSE_RESYNCING);
Andres Salomon8bf020e2008-09-16 12:30:33 -0400326 psmouse_queue_work(psmouse, &psmouse->resync_work, 0);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500327 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 }
329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 psmouse->packet[psmouse->pktcnt++] = data;
Dmitry Torokhovad530772015-11-27 20:47:08 -0800331
332 /* Check if this is a new device announcement (0xAA 0x00) */
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500333 if (unlikely(psmouse->packet[0] == PSMOUSE_RET_BAT && psmouse->pktcnt <= 2)) {
Dmitry Torokhov89c9b482006-04-29 01:12:44 -0400334 if (psmouse->pktcnt == 1) {
335 psmouse->last = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 goto out;
Dmitry Torokhov89c9b482006-04-29 01:12:44 -0400337 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Zephaniah E. Hull535650f2009-05-14 22:02:33 -0700339 if (psmouse->packet[1] == PSMOUSE_RET_ID ||
340 (psmouse->type == PSMOUSE_HGPK &&
341 psmouse->packet[1] == PSMOUSE_RET_BAT)) {
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500342 __psmouse_set_state(psmouse, PSMOUSE_IGNORE);
343 serio_reconnect(serio);
344 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 }
Dmitry Torokhovad530772015-11-27 20:47:08 -0800346
347 /* Not a new device, try processing first byte normally */
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500348 psmouse->pktcnt = 1;
David Howells7d12e782006-10-05 14:55:46 +0100349 if (psmouse_handle_byte(psmouse))
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500350 goto out;
351
352 psmouse->packet[psmouse->pktcnt++] = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 }
354
Dmitry Torokhovad530772015-11-27 20:47:08 -0800355 /*
356 * See if we need to force resync because mouse was idle for
357 * too long.
358 */
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500359 if (psmouse->state == PSMOUSE_ACTIVATED &&
360 psmouse->pktcnt == 1 && psmouse->resync_time &&
361 time_after(jiffies, psmouse->last + psmouse->resync_time * HZ)) {
362 psmouse->badbyte = psmouse->packet[0];
363 __psmouse_set_state(psmouse, PSMOUSE_RESYNCING);
Andres Salomon8bf020e2008-09-16 12:30:33 -0400364 psmouse_queue_work(psmouse, &psmouse->resync_work, 0);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500365 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 }
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500367
368 psmouse->last = jiffies;
David Howells7d12e782006-10-05 14:55:46 +0100369 psmouse_handle_byte(psmouse);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500370
371 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 return IRQ_HANDLED;
373}
374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375/*
376 * psmouse_sliced_command() sends an extended PS/2 command to the mouse
377 * using sliced syntax, understood by advanced devices, such as Logitech
378 * or Synaptics touchpads. The command is encoded as:
379 * 0xE6 0xE8 rr 0xE8 ss 0xE8 tt 0xE8 uu where (rr*64)+(ss*16)+(tt*4)+uu
380 * is the command.
381 */
382int psmouse_sliced_command(struct psmouse *psmouse, unsigned char command)
383{
384 int i;
385
386 if (ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_SETSCALE11))
387 return -1;
388
389 for (i = 6; i >= 0; i -= 2) {
390 unsigned char d = (command >> i) & 3;
391 if (ps2_command(&psmouse->ps2dev, &d, PSMOUSE_CMD_SETRES))
392 return -1;
393 }
394
395 return 0;
396}
397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398/*
399 * psmouse_reset() resets the mouse into power-on state.
400 */
401int psmouse_reset(struct psmouse *psmouse)
402{
403 unsigned char param[2];
404
405 if (ps2_command(&psmouse->ps2dev, param, PSMOUSE_CMD_RESET_BAT))
406 return -1;
407
408 if (param[0] != PSMOUSE_RET_BAT && param[1] != PSMOUSE_RET_ID)
409 return -1;
410
411 return 0;
412}
413
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800414/*
415 * Here we set the mouse resolution.
416 */
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800417void psmouse_set_resolution(struct psmouse *psmouse, unsigned int resolution)
418{
419 static const unsigned char params[] = { 0, 1, 2, 2, 3 };
420 unsigned char p;
421
422 if (resolution == 0 || resolution > 200)
423 resolution = 200;
424
425 p = params[resolution / 50];
426 ps2_command(&psmouse->ps2dev, &p, PSMOUSE_CMD_SETRES);
427 psmouse->resolution = 25 << p;
428}
429
430/*
431 * Here we set the mouse report rate.
432 */
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800433static void psmouse_set_rate(struct psmouse *psmouse, unsigned int rate)
434{
435 static const unsigned char rates[] = { 200, 100, 80, 60, 40, 20, 10, 0 };
436 unsigned char r;
437 int i = 0;
438
439 while (rates[i] > rate) i++;
440 r = rates[i];
441 ps2_command(&psmouse->ps2dev, &r, PSMOUSE_CMD_SETRATE);
442 psmouse->rate = r;
443}
444
445/*
Mathias Gottschlag4ec212f2015-03-07 13:32:10 -0800446 * Here we set the mouse scaling.
447 */
Mathias Gottschlag4ec212f2015-03-07 13:32:10 -0800448static void psmouse_set_scale(struct psmouse *psmouse, enum psmouse_scale scale)
449{
450 ps2_command(&psmouse->ps2dev, NULL,
451 scale == PSMOUSE_SCALE21 ? PSMOUSE_CMD_SETSCALE21 :
452 PSMOUSE_CMD_SETSCALE11);
453}
454
455/*
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800456 * psmouse_poll() - default poll handler. Everyone except for ALPS uses it.
457 */
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800458static int psmouse_poll(struct psmouse *psmouse)
459{
460 return ps2_command(&psmouse->ps2dev, psmouse->packet,
461 PSMOUSE_CMD_POLL | (psmouse->pktsize << 8));
462}
463
Dmitry Torokhov99e14c12015-02-27 16:17:59 -0800464static bool psmouse_check_pnp_id(const char *id, const char * const ids[])
465{
466 int i;
467
468 for (i = 0; ids[i]; i++)
469 if (!strcasecmp(id, ids[i]))
470 return true;
471
472 return false;
473}
474
Hans de Goede2c75ada2014-09-11 10:14:09 -0700475/*
476 * psmouse_matches_pnp_id - check if psmouse matches one of the passed in ids.
477 */
478bool psmouse_matches_pnp_id(struct psmouse *psmouse, const char * const ids[])
479{
Dmitry Torokhov99e14c12015-02-27 16:17:59 -0800480 struct serio *serio = psmouse->ps2dev.serio;
481 char *p, *fw_id_copy, *save_ptr;
482 bool found = false;
Hans de Goede2c75ada2014-09-11 10:14:09 -0700483
Dmitry Torokhov99e14c12015-02-27 16:17:59 -0800484 if (strncmp(serio->firmware_id, "PNP: ", 5))
485 return false;
Hans de Goede2c75ada2014-09-11 10:14:09 -0700486
Dmitry Torokhov99e14c12015-02-27 16:17:59 -0800487 fw_id_copy = kstrndup(&serio->firmware_id[5],
488 sizeof(serio->firmware_id) - 5,
489 GFP_KERNEL);
490 if (!fw_id_copy)
491 return false;
492
493 save_ptr = fw_id_copy;
494 while ((p = strsep(&fw_id_copy, " ")) != NULL) {
495 if (psmouse_check_pnp_id(p, ids)) {
496 found = true;
497 break;
498 }
499 }
500
501 kfree(save_ptr);
502 return found;
Hans de Goede2c75ada2014-09-11 10:14:09 -0700503}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505/*
506 * Genius NetMouse magic init.
507 */
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700508static int genius_detect(struct psmouse *psmouse, bool set_properties)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
510 struct ps2dev *ps2dev = &psmouse->ps2dev;
511 unsigned char param[4];
512
513 param[0] = 3;
514 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES);
515 ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11);
516 ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11);
517 ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11);
518 ps2_command(ps2dev, param, PSMOUSE_CMD_GETINFO);
519
520 if (param[0] != 0x00 || param[1] != 0x33 || param[2] != 0x55)
521 return -1;
522
523 if (set_properties) {
Dmitry Torokhov315eb992009-11-16 22:12:21 -0800524 __set_bit(BTN_MIDDLE, psmouse->dev->keybit);
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700525 __set_bit(BTN_EXTRA, psmouse->dev->keybit);
526 __set_bit(BTN_SIDE, psmouse->dev->keybit);
527 __set_bit(REL_WHEEL, psmouse->dev->relbit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
529 psmouse->vendor = "Genius";
Dmitry Torokhova3f3f312006-01-29 21:50:46 -0500530 psmouse->name = "Mouse";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 psmouse->pktsize = 4;
532 }
533
534 return 0;
535}
536
537/*
538 * IntelliMouse magic init.
539 */
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700540static int intellimouse_detect(struct psmouse *psmouse, bool set_properties)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541{
542 struct ps2dev *ps2dev = &psmouse->ps2dev;
543 unsigned char param[2];
544
545 param[0] = 200;
546 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
547 param[0] = 100;
548 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
549 param[0] = 80;
550 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
551 ps2_command(ps2dev, param, PSMOUSE_CMD_GETID);
552
553 if (param[0] != 3)
554 return -1;
555
556 if (set_properties) {
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700557 __set_bit(BTN_MIDDLE, psmouse->dev->keybit);
558 __set_bit(REL_WHEEL, psmouse->dev->relbit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Dmitry Torokhov315eb992009-11-16 22:12:21 -0800560 if (!psmouse->vendor)
561 psmouse->vendor = "Generic";
562 if (!psmouse->name)
563 psmouse->name = "Wheel Mouse";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 psmouse->pktsize = 4;
565 }
566
567 return 0;
568}
569
570/*
571 * Try IntelliMouse/Explorer magic init.
572 */
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700573static int im_explorer_detect(struct psmouse *psmouse, bool set_properties)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574{
575 struct ps2dev *ps2dev = &psmouse->ps2dev;
576 unsigned char param[2];
577
578 intellimouse_detect(psmouse, 0);
579
580 param[0] = 200;
581 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
582 param[0] = 200;
583 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
584 param[0] = 80;
585 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
586 ps2_command(ps2dev, param, PSMOUSE_CMD_GETID);
587
588 if (param[0] != 4)
589 return -1;
590
Dmitry Torokhovad530772015-11-27 20:47:08 -0800591 /* Magic to enable horizontal scrolling on IntelliMouse 4.0 */
Pozsar Balazsb0c9ad82006-06-26 01:56:08 -0400592 param[0] = 200;
593 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
594 param[0] = 80;
595 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
596 param[0] = 40;
597 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 if (set_properties) {
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700600 __set_bit(BTN_MIDDLE, psmouse->dev->keybit);
601 __set_bit(REL_WHEEL, psmouse->dev->relbit);
602 __set_bit(REL_HWHEEL, psmouse->dev->relbit);
603 __set_bit(BTN_SIDE, psmouse->dev->keybit);
604 __set_bit(BTN_EXTRA, psmouse->dev->keybit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Dmitry Torokhov315eb992009-11-16 22:12:21 -0800606 if (!psmouse->vendor)
607 psmouse->vendor = "Generic";
608 if (!psmouse->name)
609 psmouse->name = "Explorer Mouse";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 psmouse->pktsize = 4;
611 }
612
613 return 0;
614}
615
616/*
617 * Kensington ThinkingMouse / ExpertMouse magic init.
618 */
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700619static int thinking_detect(struct psmouse *psmouse, bool set_properties)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
621 struct ps2dev *ps2dev = &psmouse->ps2dev;
622 unsigned char param[2];
Helge Dellere38de672006-09-10 21:54:39 -0400623 static const unsigned char seq[] = { 20, 60, 40, 20, 20, 60, 40, 20, 20 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 int i;
625
626 param[0] = 10;
627 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
628 param[0] = 0;
629 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES);
Helge Dellere38de672006-09-10 21:54:39 -0400630 for (i = 0; i < ARRAY_SIZE(seq); i++) {
631 param[0] = seq[i];
632 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
633 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 ps2_command(ps2dev, param, PSMOUSE_CMD_GETID);
635
636 if (param[0] != 2)
637 return -1;
638
639 if (set_properties) {
Dmitry Torokhov315eb992009-11-16 22:12:21 -0800640 __set_bit(BTN_MIDDLE, psmouse->dev->keybit);
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700641 __set_bit(BTN_EXTRA, psmouse->dev->keybit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
643 psmouse->vendor = "Kensington";
644 psmouse->name = "ThinkingMouse";
645 }
646
647 return 0;
648}
649
650/*
651 * Bare PS/2 protocol "detection". Always succeeds.
652 */
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700653static int ps2bare_detect(struct psmouse *psmouse, bool set_properties)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654{
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500655 if (set_properties) {
Dmitry Torokhov315eb992009-11-16 22:12:21 -0800656 if (!psmouse->vendor)
657 psmouse->vendor = "Generic";
658 if (!psmouse->name)
659 psmouse->name = "Mouse";
660
Dmitry Torokhovad530772015-11-27 20:47:08 -0800661 /*
662 * We have no way of figuring true number of buttons so let's
663 * assume that the device has 3.
664 */
Dmitry Torokhov315eb992009-11-16 22:12:21 -0800665 __set_bit(BTN_MIDDLE, psmouse->dev->keybit);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500666 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
668 return 0;
669}
670
Aristeu Rozanskiaea6a462007-05-10 01:47:18 -0400671/*
672 * Cortron PS/2 protocol detection. There's no special way to detect it, so it
673 * must be forced by sysfs protocol writing.
674 */
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700675static int cortron_detect(struct psmouse *psmouse, bool set_properties)
Aristeu Rozanskiaea6a462007-05-10 01:47:18 -0400676{
677 if (set_properties) {
678 psmouse->vendor = "Cortron";
679 psmouse->name = "PS/2 Trackball";
Dmitry Torokhov315eb992009-11-16 22:12:21 -0800680
681 __set_bit(BTN_MIDDLE, psmouse->dev->keybit);
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700682 __set_bit(BTN_SIDE, psmouse->dev->keybit);
Aristeu Rozanskiaea6a462007-05-10 01:47:18 -0400683 }
684
685 return 0;
686}
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500687
Dmitry Torokhov5fa75cf2015-11-27 21:08:28 -0800688static const struct psmouse_protocol psmouse_protocols[] = {
689 {
690 .type = PSMOUSE_PS2,
691 .name = "PS/2",
692 .alias = "bare",
693 .maxproto = true,
694 .ignore_parity = true,
695 .detect = ps2bare_detect,
Dmitry Torokhovec6184b2015-11-24 12:58:46 -0800696 .try_passthru = true,
Dmitry Torokhov5fa75cf2015-11-27 21:08:28 -0800697 },
698#ifdef CONFIG_MOUSE_PS2_LOGIPS2PP
699 {
700 .type = PSMOUSE_PS2PP,
701 .name = "PS2++",
702 .alias = "logitech",
Dmitry Torokhov190e2032015-12-02 11:02:39 -0800703 .detect = ps2pp_detect,
Dmitry Torokhov5fa75cf2015-11-27 21:08:28 -0800704 },
705#endif
706 {
707 .type = PSMOUSE_THINKPS,
708 .name = "ThinkPS/2",
709 .alias = "thinkps",
710 .detect = thinking_detect,
711 },
712#ifdef CONFIG_MOUSE_PS2_CYPRESS
713 {
714 .type = PSMOUSE_CYPRESS,
715 .name = "CyPS/2",
716 .alias = "cypress",
717 .detect = cypress_detect,
718 .init = cypress_init,
719 },
720#endif
721 {
722 .type = PSMOUSE_GENPS,
723 .name = "GenPS/2",
724 .alias = "genius",
725 .detect = genius_detect,
726 },
727 {
728 .type = PSMOUSE_IMPS,
729 .name = "ImPS/2",
730 .alias = "imps",
731 .maxproto = true,
732 .ignore_parity = true,
733 .detect = intellimouse_detect,
Dmitry Torokhovec6184b2015-11-24 12:58:46 -0800734 .try_passthru = true,
Dmitry Torokhov5fa75cf2015-11-27 21:08:28 -0800735 },
736 {
737 .type = PSMOUSE_IMEX,
738 .name = "ImExPS/2",
739 .alias = "exps",
740 .maxproto = true,
741 .ignore_parity = true,
742 .detect = im_explorer_detect,
Dmitry Torokhovec6184b2015-11-24 12:58:46 -0800743 .try_passthru = true,
Dmitry Torokhov5fa75cf2015-11-27 21:08:28 -0800744 },
745#ifdef CONFIG_MOUSE_PS2_SYNAPTICS
746 {
747 .type = PSMOUSE_SYNAPTICS,
748 .name = "SynPS/2",
749 .alias = "synaptics",
750 .detect = synaptics_detect,
751 .init = synaptics_init,
752 },
753 {
754 .type = PSMOUSE_SYNAPTICS_RELATIVE,
755 .name = "SynRelPS/2",
756 .alias = "synaptics-relative",
757 .detect = synaptics_detect,
758 .init = synaptics_init_relative,
759 },
760#endif
761#ifdef CONFIG_MOUSE_PS2_ALPS
762 {
763 .type = PSMOUSE_ALPS,
764 .name = "AlpsPS/2",
765 .alias = "alps",
766 .detect = alps_detect,
767 .init = alps_init,
768 },
769#endif
770#ifdef CONFIG_MOUSE_PS2_LIFEBOOK
771 {
772 .type = PSMOUSE_LIFEBOOK,
773 .name = "LBPS/2",
774 .alias = "lifebook",
Dmitry Torokhovc378b512015-11-27 21:17:40 -0800775 .detect = lifebook_detect,
Dmitry Torokhov5fa75cf2015-11-27 21:08:28 -0800776 .init = lifebook_init,
777 },
778#endif
779#ifdef CONFIG_MOUSE_PS2_TRACKPOINT
780 {
781 .type = PSMOUSE_TRACKPOINT,
782 .name = "TPPS/2",
783 .alias = "trackpoint",
784 .detect = trackpoint_detect,
Dmitry Torokhovec6184b2015-11-24 12:58:46 -0800785 .try_passthru = true,
Dmitry Torokhov5fa75cf2015-11-27 21:08:28 -0800786 },
787#endif
788#ifdef CONFIG_MOUSE_PS2_TOUCHKIT
789 {
790 .type = PSMOUSE_TOUCHKIT_PS2,
791 .name = "touchkitPS/2",
792 .alias = "touchkit",
793 .detect = touchkit_ps2_detect,
794 },
795#endif
796#ifdef CONFIG_MOUSE_PS2_OLPC
797 {
798 .type = PSMOUSE_HGPK,
799 .name = "OLPC HGPK",
800 .alias = "hgpk",
801 .detect = hgpk_detect,
802 },
803#endif
804#ifdef CONFIG_MOUSE_PS2_ELANTECH
805 {
806 .type = PSMOUSE_ELANTECH,
807 .name = "ETPS/2",
808 .alias = "elantech",
809 .detect = elantech_detect,
810 .init = elantech_init,
811 },
812#endif
813#ifdef CONFIG_MOUSE_PS2_SENTELIC
814 {
815 .type = PSMOUSE_FSP,
816 .name = "FSPPS/2",
817 .alias = "fsp",
818 .detect = fsp_detect,
819 .init = fsp_init,
820 },
821#endif
822 {
823 .type = PSMOUSE_CORTRON,
824 .name = "CortronPS/2",
825 .alias = "cortps",
826 .detect = cortron_detect,
827 },
828#ifdef CONFIG_MOUSE_PS2_FOCALTECH
829 {
830 .type = PSMOUSE_FOCALTECH,
831 .name = "FocalTechPS/2",
832 .alias = "focaltech",
833 .detect = focaltech_detect,
834 .init = focaltech_init,
835 },
836#endif
837#ifdef CONFIG_MOUSE_PS2_VMMOUSE
838 {
839 .type = PSMOUSE_VMMOUSE,
840 .name = VMMOUSE_PSNAME,
841 .alias = "vmmouse",
842 .detect = vmmouse_detect,
843 .init = vmmouse_init,
844 },
845#endif
Chris Diamand98ee3772016-01-27 17:04:35 -0800846#ifdef CONFIG_MOUSE_PS2_BYD
847 {
848 .type = PSMOUSE_BYD,
Richard Pospesel2d5f5612016-03-14 09:41:16 -0700849 .name = "BYDPS/2",
Chris Diamand98ee3772016-01-27 17:04:35 -0800850 .alias = "byd",
851 .detect = byd_detect,
852 .init = byd_init,
853 },
854#endif
Dmitry Torokhov5fa75cf2015-11-27 21:08:28 -0800855 {
856 .type = PSMOUSE_AUTO,
857 .name = "auto",
858 .alias = "any",
859 .maxproto = true,
860 },
861};
862
Dmitry Torokhovc378b512015-11-27 21:17:40 -0800863static const struct psmouse_protocol *__psmouse_protocol_by_type(enum psmouse_type type)
Dmitry Torokhov5fa75cf2015-11-27 21:08:28 -0800864{
865 int i;
866
867 for (i = 0; i < ARRAY_SIZE(psmouse_protocols); i++)
868 if (psmouse_protocols[i].type == type)
869 return &psmouse_protocols[i];
870
Dmitry Torokhovc378b512015-11-27 21:17:40 -0800871 return NULL;
872}
873
874static const struct psmouse_protocol *psmouse_protocol_by_type(enum psmouse_type type)
875{
876 const struct psmouse_protocol *proto;
877
878 proto = __psmouse_protocol_by_type(type);
879 if (proto)
880 return proto;
881
Dmitry Torokhov5fa75cf2015-11-27 21:08:28 -0800882 WARN_ON(1);
883 return &psmouse_protocols[0];
884}
885
886static const struct psmouse_protocol *psmouse_protocol_by_name(const char *name, size_t len)
887{
888 const struct psmouse_protocol *p;
889 int i;
890
891 for (i = 0; i < ARRAY_SIZE(psmouse_protocols); i++) {
892 p = &psmouse_protocols[i];
893
894 if ((strlen(p->name) == len && !strncmp(p->name, name, len)) ||
895 (strlen(p->alias) == len && !strncmp(p->alias, name, len)))
896 return &psmouse_protocols[i];
897 }
898
899 return NULL;
900}
901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902/*
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800903 * Apply default settings to the psmouse structure. Most of them will
904 * be overridden by individual protocol initialization routines.
905 */
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800906static void psmouse_apply_defaults(struct psmouse *psmouse)
907{
908 struct input_dev *input_dev = psmouse->dev;
909
910 memset(input_dev->evbit, 0, sizeof(input_dev->evbit));
911 memset(input_dev->keybit, 0, sizeof(input_dev->keybit));
912 memset(input_dev->relbit, 0, sizeof(input_dev->relbit));
913 memset(input_dev->absbit, 0, sizeof(input_dev->absbit));
914 memset(input_dev->mscbit, 0, sizeof(input_dev->mscbit));
915
916 __set_bit(EV_KEY, input_dev->evbit);
917 __set_bit(EV_REL, input_dev->evbit);
918
919 __set_bit(BTN_LEFT, input_dev->keybit);
920 __set_bit(BTN_RIGHT, input_dev->keybit);
921
922 __set_bit(REL_X, input_dev->relbit);
923 __set_bit(REL_Y, input_dev->relbit);
924
Hans de Goede01d4cd52014-09-08 14:44:05 -0700925 __set_bit(INPUT_PROP_POINTER, input_dev->propbit);
926
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800927 psmouse->set_rate = psmouse_set_rate;
928 psmouse->set_resolution = psmouse_set_resolution;
Mathias Gottschlag4ec212f2015-03-07 13:32:10 -0800929 psmouse->set_scale = psmouse_set_scale;
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800930 psmouse->poll = psmouse_poll;
931 psmouse->protocol_handler = psmouse_process_byte;
932 psmouse->pktsize = 3;
933 psmouse->reconnect = NULL;
934 psmouse->disconnect = NULL;
935 psmouse->cleanup = NULL;
936 psmouse->pt_activate = NULL;
937 psmouse->pt_deactivate = NULL;
938}
939
Dmitry Torokhovc378b512015-11-27 21:17:40 -0800940static bool psmouse_try_protocol(struct psmouse *psmouse,
941 enum psmouse_type type,
942 unsigned int *max_proto,
943 bool set_properties, bool init_allowed)
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800944{
Dmitry Torokhovc378b512015-11-27 21:17:40 -0800945 const struct psmouse_protocol *proto;
946
947 proto = __psmouse_protocol_by_type(type);
948 if (!proto)
949 return false;
950
Dmitry Torokhovec6184b2015-11-24 12:58:46 -0800951 if (psmouse->ps2dev.serio->id.type == SERIO_PS_PSTHRU &&
952 !proto->try_passthru) {
953 return false;
954 }
955
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800956 if (set_properties)
957 psmouse_apply_defaults(psmouse);
958
Dmitry Torokhovc378b512015-11-27 21:17:40 -0800959 if (proto->detect(psmouse, set_properties) != 0)
960 return false;
961
962 if (set_properties && proto->init && init_allowed) {
963 if (proto->init(psmouse) != 0) {
964 /*
965 * We detected device, but init failed. Adjust
966 * max_proto so we only try standard protocols.
967 */
968 if (*max_proto > PSMOUSE_IMEX)
969 *max_proto = PSMOUSE_IMEX;
970
971 return false;
972 }
973 }
974
975 return true;
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800976}
977
978/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 * psmouse_extensions() probes for any extensions to the basic PS/2 protocol
980 * the mouse may have.
981 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982static int psmouse_extensions(struct psmouse *psmouse,
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700983 unsigned int max_proto, bool set_properties)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984{
Jiri Kosina06989892009-11-16 22:12:13 -0800985 bool synaptics_hardware = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
Dmitry Torokhovad530772015-11-27 20:47:08 -0800987 /*
988 * Always check for focaltech, this is safe as it uses pnp-id
989 * matching.
990 */
Dmitry Torokhovc378b512015-11-27 21:17:40 -0800991 if (psmouse_try_protocol(psmouse, PSMOUSE_FOCALTECH,
992 &max_proto, set_properties, false)) {
993 if (max_proto > PSMOUSE_IMEX &&
994 IS_ENABLED(CONFIG_MOUSE_PS2_FOCALTECH) &&
995 (!set_properties || focaltech_init(psmouse) == 0)) {
996 return PSMOUSE_FOCALTECH;
Hans de Goede3ace3682014-09-12 17:24:47 -0700997 }
Dmitry Torokhov2b6f39e2015-11-27 20:52:36 -0800998 /*
999 * Restrict psmouse_max_proto so that psmouse_initialize()
1000 * does not try to reset rate and resolution, because even
1001 * that upsets the device.
1002 * This also causes us to basically fall through to basic
1003 * protocol detection, where we fully reset the mouse,
1004 * and set it up as bare PS/2 protocol device.
1005 */
1006 psmouse_max_proto = max_proto = PSMOUSE_PS2;
Hans de Goede3ace3682014-09-12 17:24:47 -07001007 }
1008
Dmitry Torokhovad530772015-11-27 20:47:08 -08001009 /*
1010 * We always check for LifeBook because it does not disturb mouse
1011 * (it only checks DMI information).
1012 */
Dmitry Torokhovc378b512015-11-27 21:17:40 -08001013 if (psmouse_try_protocol(psmouse, PSMOUSE_LIFEBOOK, &max_proto,
1014 set_properties, max_proto > PSMOUSE_IMEX))
1015 return PSMOUSE_LIFEBOOK;
Kenan Esau02d7f582005-05-29 02:30:22 -05001016
Dmitry Torokhovc378b512015-11-27 21:17:40 -08001017 if (psmouse_try_protocol(psmouse, PSMOUSE_VMMOUSE, &max_proto,
1018 set_properties, max_proto > PSMOUSE_IMEX))
1019 return PSMOUSE_VMMOUSE;
Thomas Hellstrom8b8be512015-04-14 10:06:38 -07001020
Dmitry Torokhovad530772015-11-27 20:47:08 -08001021 /*
1022 * Try Kensington ThinkingMouse (we try first, because Synaptics
1023 * probe upsets the ThinkingMouse).
1024 */
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -08001025 if (max_proto > PSMOUSE_IMEX &&
Dmitry Torokhovc378b512015-11-27 21:17:40 -08001026 psmouse_try_protocol(psmouse, PSMOUSE_THINKPS, &max_proto,
1027 set_properties, true)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 return PSMOUSE_THINKPS;
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -08001029 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
Dmitry Torokhovad530772015-11-27 20:47:08 -08001031 /*
1032 * Try Synaptics TouchPad. Note that probing is done even if
1033 * Synaptics protocol support is disabled in config - we need to
1034 * know if it is Synaptics so we can reset it properly after
1035 * probing for IntelliMouse.
1036 */
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -08001037 if (max_proto > PSMOUSE_PS2 &&
Dmitry Torokhovc378b512015-11-27 21:17:40 -08001038 psmouse_try_protocol(psmouse, PSMOUSE_SYNAPTICS, &max_proto,
1039 set_properties, false)) {
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001040 synaptics_hardware = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
1042 if (max_proto > PSMOUSE_IMEX) {
Dmitry Torokhovad530772015-11-27 20:47:08 -08001043 /*
1044 * Try activating protocol, but check if support is
1045 * enabled first, since we try detecting Synaptics
1046 * even when protocol is disabled.
1047 */
Dmitry Torokhov290b7992014-12-29 12:06:38 -08001048 if (IS_ENABLED(CONFIG_MOUSE_PS2_SYNAPTICS) &&
Daniel Drakee4e6efd2010-01-07 01:52:39 -08001049 (!set_properties || synaptics_init(psmouse) == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 return PSMOUSE_SYNAPTICS;
Daniel Drakee4e6efd2010-01-07 01:52:39 -08001051 }
1052
Dmitry Torokhovad530772015-11-27 20:47:08 -08001053 /*
1054 * Some Synaptics touchpads can emulate extended
1055 * protocols (like IMPS/2). Unfortunately
1056 * Logitech/Genius probes confuse some firmware
1057 * versions so we'll have to skip them.
1058 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 max_proto = PSMOUSE_IMEX;
1060 }
Dmitry Torokhovad530772015-11-27 20:47:08 -08001061
1062 /*
1063 * Make sure that touchpad is in relative mode, gestures
1064 * (taps) are enabled.
1065 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 synaptics_reset(psmouse);
1067 }
1068
Dmitry Torokhovad530772015-11-27 20:47:08 -08001069 /*
1070 * Try Cypress Trackpad. We must try it before Finger Sensing Pad
1071 * because Finger Sensing Pad probe upsets some modules of Cypress
1072 * Trackpads.
1073 */
Dudley Du0799a922013-01-05 00:14:22 -08001074 if (max_proto > PSMOUSE_IMEX &&
Dmitry Torokhovc378b512015-11-27 21:17:40 -08001075 psmouse_try_protocol(psmouse, PSMOUSE_CYPRESS, &max_proto,
1076 set_properties, true)) {
1077 return PSMOUSE_CYPRESS;
Dudley Du0799a922013-01-05 00:14:22 -08001078 }
1079
Dmitry Torokhovad530772015-11-27 20:47:08 -08001080 /* Try ALPS TouchPad */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 if (max_proto > PSMOUSE_IMEX) {
1082 ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_RESET_DIS);
Dmitry Torokhovc378b512015-11-27 21:17:40 -08001083 if (psmouse_try_protocol(psmouse, PSMOUSE_ALPS,
1084 &max_proto, set_properties, true))
1085 return PSMOUSE_ALPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 }
1087
Dmitry Torokhovad530772015-11-27 20:47:08 -08001088 /* Try OLPC HGPK touchpad */
Andres Salomondf08ef22008-09-16 12:30:34 -04001089 if (max_proto > PSMOUSE_IMEX &&
Dmitry Torokhovc378b512015-11-27 21:17:40 -08001090 psmouse_try_protocol(psmouse, PSMOUSE_HGPK, &max_proto,
1091 set_properties, true)) {
1092 return PSMOUSE_HGPK;
Andres Salomondf08ef22008-09-16 12:30:34 -04001093 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
Dmitry Torokhovad530772015-11-27 20:47:08 -08001095 /* Try Elantech touchpad */
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001096 if (max_proto > PSMOUSE_IMEX &&
Dmitry Torokhovc378b512015-11-27 21:17:40 -08001097 psmouse_try_protocol(psmouse, PSMOUSE_ELANTECH,
1098 &max_proto, set_properties, true)) {
1099 return PSMOUSE_ELANTECH;
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001100 }
1101
Andres Salomondf08ef22008-09-16 12:30:34 -04001102 if (max_proto > PSMOUSE_IMEX) {
Dmitry Torokhovc378b512015-11-27 21:17:40 -08001103 if (psmouse_try_protocol(psmouse, PSMOUSE_GENPS,
1104 &max_proto, set_properties, true))
Stefan Lucke24bf10a2007-02-18 01:49:10 -05001105 return PSMOUSE_GENPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
Dmitry Torokhovc378b512015-11-27 21:17:40 -08001107 if (psmouse_try_protocol(psmouse, PSMOUSE_PS2PP,
1108 &max_proto, set_properties, true))
Stefan Lucke24bf10a2007-02-18 01:49:10 -05001109 return PSMOUSE_PS2PP;
1110
Dmitry Torokhovc378b512015-11-27 21:17:40 -08001111 if (psmouse_try_protocol(psmouse, PSMOUSE_TRACKPOINT,
1112 &max_proto, set_properties, true))
Stefan Lucke24bf10a2007-02-18 01:49:10 -05001113 return PSMOUSE_TRACKPOINT;
1114
Dmitry Torokhovc378b512015-11-27 21:17:40 -08001115 if (psmouse_try_protocol(psmouse, PSMOUSE_TOUCHKIT_PS2,
1116 &max_proto, set_properties, true))
Stefan Lucke24bf10a2007-02-18 01:49:10 -05001117 return PSMOUSE_TOUCHKIT_PS2;
1118 }
Dmitry Torokhovba449952005-12-21 00:51:31 -05001119
Dmitry Torokhovad530772015-11-27 20:47:08 -08001120 /*
1121 * Try Finger Sensing Pad. We do it here because its probe upsets
1122 * Trackpoint devices (causing TP_READ_ID command to time out).
1123 */
Dmitry Torokhovc378b512015-11-27 21:17:40 -08001124 if (max_proto > PSMOUSE_IMEX &&
1125 psmouse_try_protocol(psmouse, PSMOUSE_FSP,
1126 &max_proto, set_properties, true)) {
1127 return PSMOUSE_FSP;
Tai-hwa Liang4a18b3a2010-01-13 00:16:27 -08001128 }
1129
Dmitry Torokhovad530772015-11-27 20:47:08 -08001130 /*
1131 * Reset to defaults in case the device got confused by extended
1132 * protocol probes. Note that we follow up with full reset because
1133 * some mice put themselves to sleep when they see PSMOUSE_RESET_DIS.
1134 */
Alon Ziv554fc192007-08-30 00:22:48 -04001135 ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_RESET_DIS);
Dmitry Torokhovba449952005-12-21 00:51:31 -05001136 psmouse_reset(psmouse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -08001138 if (max_proto >= PSMOUSE_IMEX &&
Dmitry Torokhovc378b512015-11-27 21:17:40 -08001139 psmouse_try_protocol(psmouse, PSMOUSE_IMEX,
1140 &max_proto, set_properties, true)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 return PSMOUSE_IMEX;
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -08001142 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -08001144 if (max_proto >= PSMOUSE_IMPS &&
Dmitry Torokhovc378b512015-11-27 21:17:40 -08001145 psmouse_try_protocol(psmouse, PSMOUSE_IMPS,
1146 &max_proto, set_properties, true)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 return PSMOUSE_IMPS;
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -08001148 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
Dmitry Torokhovad530772015-11-27 20:47:08 -08001150 /*
1151 * Okay, all failed, we have a standard mouse here. The number of
1152 * the buttons is still a question, though. We assume 3.
1153 */
Dmitry Torokhovc378b512015-11-27 21:17:40 -08001154 psmouse_try_protocol(psmouse, PSMOUSE_PS2,
1155 &max_proto, set_properties, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
1157 if (synaptics_hardware) {
Dmitry Torokhovad530772015-11-27 20:47:08 -08001158 /*
1159 * We detected Synaptics hardware but it did not respond to
1160 * IMPS/2 probes. We need to reset the touchpad because if
1161 * there is a track point on the pass through port it could
1162 * get disabled while probing for protocol extensions.
1163 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 psmouse_reset(psmouse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 }
1166
1167 return PSMOUSE_PS2;
1168}
1169
1170/*
1171 * psmouse_probe() probes for a PS/2 mouse.
1172 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173static int psmouse_probe(struct psmouse *psmouse)
1174{
1175 struct ps2dev *ps2dev = &psmouse->ps2dev;
1176 unsigned char param[2];
1177
Dmitry Torokhovad530772015-11-27 20:47:08 -08001178 /*
1179 * First, we check if it's a mouse. It should send 0x00 or 0x03 in
1180 * case of an IntelliMouse in 4-byte mode or 0x04 for IM Explorer.
1181 * Sunrex K8561 IR Keyboard/Mouse reports 0xff on second and
1182 * subsequent ID queries, probably due to a firmware bug.
1183 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 param[0] = 0xa5;
1185 if (ps2_command(ps2dev, param, PSMOUSE_CMD_GETID))
1186 return -1;
1187
Vojtech Pavlik7741e932005-05-28 02:11:42 -05001188 if (param[0] != 0x00 && param[0] != 0x03 &&
1189 param[0] != 0x04 && param[0] != 0xff)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 return -1;
1191
Dmitry Torokhovad530772015-11-27 20:47:08 -08001192 /*
1193 * Then we reset and disable the mouse so that it doesn't generate
1194 * events.
1195 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 if (ps2_command(ps2dev, NULL, PSMOUSE_CMD_RESET_DIS))
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001197 psmouse_warn(psmouse, "Failed to reset mouse on %s\n",
1198 ps2dev->serio->phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
1200 return 0;
1201}
1202
1203/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 * psmouse_initialize() initializes the mouse to a sane state.
1205 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206static void psmouse_initialize(struct psmouse *psmouse)
1207{
Dmitry Torokhovad530772015-11-27 20:47:08 -08001208 /*
1209 * We set the mouse report rate, resolution and scaling.
1210 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 if (psmouse_max_proto != PSMOUSE_PS2) {
1212 psmouse->set_rate(psmouse, psmouse->rate);
1213 psmouse->set_resolution(psmouse, psmouse->resolution);
Mathias Gottschlag4ec212f2015-03-07 13:32:10 -08001214 psmouse->set_scale(psmouse, PSMOUSE_SCALE11);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 }
1216}
1217
1218/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 * psmouse_activate() enables the mouse so that we get motion reports from it.
1220 */
Andres Salomonbd26f3d2012-02-24 00:51:37 -08001221int psmouse_activate(struct psmouse *psmouse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222{
Andres Salomonbd26f3d2012-02-24 00:51:37 -08001223 if (ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_ENABLE)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001224 psmouse_warn(psmouse, "Failed to enable mouse on %s\n",
1225 psmouse->ps2dev.serio->phys);
Andres Salomonbd26f3d2012-02-24 00:51:37 -08001226 return -1;
1227 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
1229 psmouse_set_state(psmouse, PSMOUSE_ACTIVATED);
Andres Salomonbd26f3d2012-02-24 00:51:37 -08001230 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231}
1232
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233/*
Dmitry Torokhovad530772015-11-27 20:47:08 -08001234 * psmouse_deactivate() puts the mouse into poll mode so that we don't get
1235 * motion reports from it unless we explicitly request it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 */
Andres Salomonbd26f3d2012-02-24 00:51:37 -08001237int psmouse_deactivate(struct psmouse *psmouse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238{
Andres Salomonbd26f3d2012-02-24 00:51:37 -08001239 if (ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_DISABLE)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001240 psmouse_warn(psmouse, "Failed to deactivate mouse on %s\n",
1241 psmouse->ps2dev.serio->phys);
Andres Salomonbd26f3d2012-02-24 00:51:37 -08001242 return -1;
1243 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
1245 psmouse_set_state(psmouse, PSMOUSE_CMD_MODE);
Andres Salomonbd26f3d2012-02-24 00:51:37 -08001246 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247}
1248
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001249/*
1250 * psmouse_resync() attempts to re-validate current protocol.
1251 */
David Howellsc4028952006-11-22 14:57:56 +00001252static void psmouse_resync(struct work_struct *work)
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001253{
David Howellsc4028952006-11-22 14:57:56 +00001254 struct psmouse *parent = NULL, *psmouse =
Andres Salomon8bf020e2008-09-16 12:30:33 -04001255 container_of(work, struct psmouse, resync_work.work);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001256 struct serio *serio = psmouse->ps2dev.serio;
1257 psmouse_ret_t rc = PSMOUSE_GOOD_DATA;
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001258 bool failed = false, enabled = false;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001259 int i;
1260
Ingo Molnarc14471d2006-02-19 00:22:11 -05001261 mutex_lock(&psmouse_mutex);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001262
1263 if (psmouse->state != PSMOUSE_RESYNCING)
1264 goto out;
1265
1266 if (serio->parent && serio->id.type == SERIO_PS_PSTHRU) {
1267 parent = serio_get_drvdata(serio->parent);
1268 psmouse_deactivate(parent);
1269 }
1270
Dmitry Torokhovad530772015-11-27 20:47:08 -08001271 /*
1272 * Some mice don't ACK commands sent while they are in the middle of
1273 * transmitting motion packet. To avoid delay we use ps2_sendbyte()
1274 * instead of ps2_command() which would wait for 200ms for an ACK
1275 * that may never come.
1276 * As an additional quirk ALPS touchpads may not only forget to ACK
1277 * disable command but will stop reporting taps, so if we see that
1278 * mouse at least once ACKs disable we will do full reconnect if ACK
1279 * is missing.
1280 */
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001281 psmouse->num_resyncs++;
1282
1283 if (ps2_sendbyte(&psmouse->ps2dev, PSMOUSE_CMD_DISABLE, 20)) {
1284 if (psmouse->num_resyncs < 3 || psmouse->acks_disable_command)
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001285 failed = true;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001286 } else
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001287 psmouse->acks_disable_command = true;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001288
Dmitry Torokhovad530772015-11-27 20:47:08 -08001289 /*
1290 * Poll the mouse. If it was reset the packet will be shorter than
1291 * psmouse->pktsize and ps2_command will fail. We do not expect and
1292 * do not handle scenario when mouse "upgrades" its protocol while
1293 * disconnected since it would require additional delay. If we ever
1294 * see a mouse that does it we'll adjust the code.
1295 */
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001296 if (!failed) {
1297 if (psmouse->poll(psmouse))
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001298 failed = true;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001299 else {
1300 psmouse_set_state(psmouse, PSMOUSE_CMD_MODE);
1301 for (i = 0; i < psmouse->pktsize; i++) {
1302 psmouse->pktcnt++;
David Howells7d12e782006-10-05 14:55:46 +01001303 rc = psmouse->protocol_handler(psmouse);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001304 if (rc != PSMOUSE_GOOD_DATA)
1305 break;
1306 }
1307 if (rc != PSMOUSE_FULL_PACKET)
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001308 failed = true;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001309 psmouse_set_state(psmouse, PSMOUSE_RESYNCING);
1310 }
1311 }
Dmitry Torokhovad530772015-11-27 20:47:08 -08001312
1313 /*
1314 * Now try to enable mouse. We try to do that even if poll failed
1315 * and also repeat our attempts 5 times, otherwise we may be left
1316 * out with disabled mouse.
1317 */
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001318 for (i = 0; i < 5; i++) {
1319 if (!ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_ENABLE)) {
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001320 enabled = true;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001321 break;
1322 }
1323 msleep(200);
1324 }
1325
1326 if (!enabled) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001327 psmouse_warn(psmouse, "failed to re-enable mouse on %s\n",
1328 psmouse->ps2dev.serio->phys);
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001329 failed = true;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001330 }
1331
1332 if (failed) {
1333 psmouse_set_state(psmouse, PSMOUSE_IGNORE);
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001334 psmouse_info(psmouse,
1335 "resync failed, issuing reconnect request\n");
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001336 serio_reconnect(serio);
1337 } else
1338 psmouse_set_state(psmouse, PSMOUSE_ACTIVATED);
1339
1340 if (parent)
1341 psmouse_activate(parent);
1342 out:
Ingo Molnarc14471d2006-02-19 00:22:11 -05001343 mutex_unlock(&psmouse_mutex);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001344}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
1346/*
1347 * psmouse_cleanup() resets the mouse into power-on state.
1348 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349static void psmouse_cleanup(struct serio *serio)
1350{
1351 struct psmouse *psmouse = serio_get_drvdata(serio);
Dmitry Torokhova1cec062007-02-18 01:40:24 -05001352 struct psmouse *parent = NULL;
1353
1354 mutex_lock(&psmouse_mutex);
1355
1356 if (serio->parent && serio->id.type == SERIO_PS_PSTHRU) {
1357 parent = serio_get_drvdata(serio->parent);
1358 psmouse_deactivate(parent);
1359 }
1360
Dmitry Torokhova9f0c382010-02-07 23:10:04 -08001361 psmouse_set_state(psmouse, PSMOUSE_INITIALIZING);
1362
1363 /*
1364 * Disable stream mode so cleanup routine can proceed undisturbed.
1365 */
1366 if (ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_DISABLE))
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001367 psmouse_warn(psmouse, "Failed to disable mouse on %s\n",
1368 psmouse->ps2dev.serio->phys);
Dmitry Torokhova1cec062007-02-18 01:40:24 -05001369
1370 if (psmouse->cleanup)
1371 psmouse->cleanup(psmouse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
Dmitry Torokhovad530772015-11-27 20:47:08 -08001373 /*
1374 * Reset the mouse to defaults (bare PS/2 protocol).
1375 */
Dmitry Torokhov4a299bf2009-12-24 21:40:24 -08001376 ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_RESET_DIS);
Dmitry Torokhova1cec062007-02-18 01:40:24 -05001377
Dmitry Torokhovad530772015-11-27 20:47:08 -08001378 /*
1379 * Some boxes, such as HP nx7400, get terribly confused if mouse
1380 * is not fully enabled before suspending/shutting down.
1381 */
Dmitry Torokhova1cec062007-02-18 01:40:24 -05001382 ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_ENABLE);
1383
1384 if (parent) {
1385 if (parent->pt_deactivate)
1386 parent->pt_deactivate(parent);
1387
1388 psmouse_activate(parent);
1389 }
1390
1391 mutex_unlock(&psmouse_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392}
1393
1394/*
1395 * psmouse_disconnect() closes and frees.
1396 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397static void psmouse_disconnect(struct serio *serio)
1398{
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001399 struct psmouse *psmouse, *parent = NULL;
1400
1401 psmouse = serio_get_drvdata(serio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001403 sysfs_remove_group(&serio->dev.kobj, &psmouse_attribute_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
Ingo Molnarc14471d2006-02-19 00:22:11 -05001405 mutex_lock(&psmouse_mutex);
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001406
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 psmouse_set_state(psmouse, PSMOUSE_CMD_MODE);
1408
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001409 /* make sure we don't have a resync in progress */
Ingo Molnarc14471d2006-02-19 00:22:11 -05001410 mutex_unlock(&psmouse_mutex);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001411 flush_workqueue(kpsmoused_wq);
Ingo Molnarc14471d2006-02-19 00:22:11 -05001412 mutex_lock(&psmouse_mutex);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001413
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 if (serio->parent && serio->id.type == SERIO_PS_PSTHRU) {
1415 parent = serio_get_drvdata(serio->parent);
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001416 psmouse_deactivate(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 }
1418
1419 if (psmouse->disconnect)
1420 psmouse->disconnect(psmouse);
1421
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001422 if (parent && parent->pt_deactivate)
1423 parent->pt_deactivate(parent);
1424
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 psmouse_set_state(psmouse, PSMOUSE_IGNORE);
1426
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 serio_close(serio);
1428 serio_set_drvdata(serio, NULL);
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001429 input_unregister_device(psmouse->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 kfree(psmouse);
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001431
1432 if (parent)
1433 psmouse_activate(parent);
1434
Ingo Molnarc14471d2006-02-19 00:22:11 -05001435 mutex_unlock(&psmouse_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436}
1437
Dmitry Torokhov315eb992009-11-16 22:12:21 -08001438static int psmouse_switch_protocol(struct psmouse *psmouse,
1439 const struct psmouse_protocol *proto)
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001440{
Dmitry Torokhov6b9d3632010-04-19 00:42:16 -07001441 const struct psmouse_protocol *selected_proto;
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001442 struct input_dev *input_dev = psmouse->dev;
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001443
Dmitry Torokhov28aa7f12007-04-12 01:35:09 -04001444 input_dev->dev.parent = &psmouse->ps2dev.serio->dev;
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001445
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001446 if (proto && (proto->detect || proto->init)) {
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -08001447 psmouse_apply_defaults(psmouse);
1448
Dmitry Torokhova62f0d22010-05-19 10:39:17 -07001449 if (proto->detect && proto->detect(psmouse, true) < 0)
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001450 return -1;
1451
1452 if (proto->init && proto->init(psmouse) < 0)
1453 return -1;
1454
1455 psmouse->type = proto->type;
Dmitry Torokhov6b9d3632010-04-19 00:42:16 -07001456 selected_proto = proto;
1457 } else {
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001458 psmouse->type = psmouse_extensions(psmouse,
1459 psmouse_max_proto, true);
Dmitry Torokhov6b9d3632010-04-19 00:42:16 -07001460 selected_proto = psmouse_protocol_by_type(psmouse->type);
1461 }
1462
1463 psmouse->ignore_parity = selected_proto->ignore_parity;
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001464
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001465 /*
1466 * If mouse's packet size is 3 there is no point in polling the
1467 * device in hopes to detect protocol reset - we won't get less
1468 * than 3 bytes response anyhow.
1469 */
1470 if (psmouse->pktsize == 3)
1471 psmouse->resync_time = 0;
1472
1473 /*
1474 * Some smart KVMs fake response to POLL command returning just
1475 * 3 bytes and messing up our resync logic, so if initial poll
1476 * fails we won't try polling the device anymore. Hopefully
1477 * such KVM will maintain initially selected protocol.
1478 */
1479 if (psmouse->resync_time && psmouse->poll(psmouse))
1480 psmouse->resync_time = 0;
1481
Dmitry Torokhov08ffce42006-06-26 01:45:10 -04001482 snprintf(psmouse->devname, sizeof(psmouse->devname), "%s %s %s",
Dmitry Torokhov6b9d3632010-04-19 00:42:16 -07001483 selected_proto->name, psmouse->vendor, psmouse->name);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001484
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001485 input_dev->name = psmouse->devname;
1486 input_dev->phys = psmouse->phys;
1487 input_dev->id.bustype = BUS_I8042;
1488 input_dev->id.vendor = 0x0002;
1489 input_dev->id.product = psmouse->type;
1490 input_dev->id.version = psmouse->model;
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001491
1492 return 0;
1493}
1494
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495/*
1496 * psmouse_connect() is a callback from the serio module when
1497 * an unhandled serio port is found.
1498 */
1499static int psmouse_connect(struct serio *serio, struct serio_driver *drv)
1500{
1501 struct psmouse *psmouse, *parent = NULL;
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001502 struct input_dev *input_dev;
Dmitry Torokhov72155612006-11-05 22:40:19 -05001503 int retval = 0, error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
Ingo Molnarc14471d2006-02-19 00:22:11 -05001505 mutex_lock(&psmouse_mutex);
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001506
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 /*
1508 * If this is a pass-through port deactivate parent so the device
1509 * connected to this port can be successfully identified
1510 */
1511 if (serio->parent && serio->id.type == SERIO_PS_PSTHRU) {
1512 parent = serio_get_drvdata(serio->parent);
1513 psmouse_deactivate(parent);
1514 }
1515
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001516 psmouse = kzalloc(sizeof(struct psmouse), GFP_KERNEL);
1517 input_dev = input_allocate_device();
1518 if (!psmouse || !input_dev)
Dmitry Torokhov72155612006-11-05 22:40:19 -05001519 goto err_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 ps2_init(&psmouse->ps2dev, serio);
Andres Salomon8bf020e2008-09-16 12:30:33 -04001522 INIT_DELAYED_WORK(&psmouse->resync_work, psmouse_resync);
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001523 psmouse->dev = input_dev;
Dmitry Torokhov08ffce42006-06-26 01:45:10 -04001524 snprintf(psmouse->phys, sizeof(psmouse->phys), "%s/input0", serio->phys);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001525
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 psmouse_set_state(psmouse, PSMOUSE_INITIALIZING);
1527
1528 serio_set_drvdata(serio, psmouse);
1529
Dmitry Torokhov72155612006-11-05 22:40:19 -05001530 error = serio_open(serio, drv);
1531 if (error)
1532 goto err_clear_drvdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
Stefan Assmann66bc2f52015-08-26 13:11:49 -07001534 /* give PT device some time to settle down before probing */
1535 if (serio->id.type == SERIO_PS_PSTHRU)
1536 usleep_range(10000, 15000);
1537
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 if (psmouse_probe(psmouse) < 0) {
Dmitry Torokhov72155612006-11-05 22:40:19 -05001539 error = -ENODEV;
1540 goto err_close_serio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 }
1542
1543 psmouse->rate = psmouse_rate;
1544 psmouse->resolution = psmouse_resolution;
1545 psmouse->resetafter = psmouse_resetafter;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001546 psmouse->resync_time = parent ? 0 : psmouse_resync_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 psmouse->smartscroll = psmouse_smartscroll;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001549 psmouse_switch_protocol(psmouse, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 psmouse_set_state(psmouse, PSMOUSE_CMD_MODE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 psmouse_initialize(psmouse);
1553
Dmitry Torokhov72155612006-11-05 22:40:19 -05001554 error = input_register_device(psmouse->dev);
1555 if (error)
1556 goto err_protocol_disconnect;
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001557
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 if (parent && parent->pt_activate)
1559 parent->pt_activate(parent);
1560
Dmitry Torokhov72155612006-11-05 22:40:19 -05001561 error = sysfs_create_group(&serio->dev.kobj, &psmouse_attribute_group);
1562 if (error)
1563 goto err_pt_deactivate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
1565 psmouse_activate(psmouse);
1566
Dmitry Torokhov72155612006-11-05 22:40:19 -05001567 out:
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001568 /* If this is a pass-through port the parent needs to be re-activated */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 if (parent)
1570 psmouse_activate(parent);
1571
Ingo Molnarc14471d2006-02-19 00:22:11 -05001572 mutex_unlock(&psmouse_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 return retval;
Dmitry Torokhov72155612006-11-05 22:40:19 -05001574
1575 err_pt_deactivate:
1576 if (parent && parent->pt_deactivate)
1577 parent->pt_deactivate(parent);
Andres Salomon746b31a2008-01-17 12:01:30 -05001578 input_unregister_device(psmouse->dev);
1579 input_dev = NULL; /* so we don't try to free it below */
Dmitry Torokhov72155612006-11-05 22:40:19 -05001580 err_protocol_disconnect:
1581 if (psmouse->disconnect)
1582 psmouse->disconnect(psmouse);
1583 psmouse_set_state(psmouse, PSMOUSE_IGNORE);
1584 err_close_serio:
1585 serio_close(serio);
1586 err_clear_drvdata:
1587 serio_set_drvdata(serio, NULL);
1588 err_free:
1589 input_free_device(input_dev);
1590 kfree(psmouse);
1591
1592 retval = error;
1593 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594}
1595
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596static int psmouse_reconnect(struct serio *serio)
1597{
1598 struct psmouse *psmouse = serio_get_drvdata(serio);
1599 struct psmouse *parent = NULL;
Dmitry Torokhovef110b22010-05-13 00:42:23 -07001600 unsigned char type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 int rc = -1;
1602
Ingo Molnarc14471d2006-02-19 00:22:11 -05001603 mutex_lock(&psmouse_mutex);
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001604
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 if (serio->parent && serio->id.type == SERIO_PS_PSTHRU) {
1606 parent = serio_get_drvdata(serio->parent);
1607 psmouse_deactivate(parent);
1608 }
1609
1610 psmouse_set_state(psmouse, PSMOUSE_INITIALIZING);
1611
1612 if (psmouse->reconnect) {
1613 if (psmouse->reconnect(psmouse))
1614 goto out;
Dmitry Torokhovef110b22010-05-13 00:42:23 -07001615 } else {
1616 psmouse_reset(psmouse);
1617
1618 if (psmouse_probe(psmouse) < 0)
1619 goto out;
1620
1621 type = psmouse_extensions(psmouse, psmouse_max_proto, false);
1622 if (psmouse->type != type)
1623 goto out;
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001624 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001626 /*
1627 * OK, the device type (and capabilities) match the old one,
1628 * we can continue using it, complete initialization
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 */
1630 psmouse_set_state(psmouse, PSMOUSE_CMD_MODE);
1631
1632 psmouse_initialize(psmouse);
1633
1634 if (parent && parent->pt_activate)
1635 parent->pt_activate(parent);
1636
1637 psmouse_activate(psmouse);
1638 rc = 0;
1639
1640out:
1641 /* If this is a pass-through port the parent waits to be activated */
1642 if (parent)
1643 psmouse_activate(parent);
1644
Ingo Molnarc14471d2006-02-19 00:22:11 -05001645 mutex_unlock(&psmouse_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 return rc;
1647}
1648
1649static struct serio_device_id psmouse_serio_ids[] = {
1650 {
1651 .type = SERIO_8042,
1652 .proto = SERIO_ANY,
1653 .id = SERIO_ANY,
1654 .extra = SERIO_ANY,
1655 },
1656 {
1657 .type = SERIO_PS_PSTHRU,
1658 .proto = SERIO_ANY,
1659 .id = SERIO_ANY,
1660 .extra = SERIO_ANY,
1661 },
1662 { 0 }
1663};
1664
1665MODULE_DEVICE_TABLE(serio, psmouse_serio_ids);
1666
1667static struct serio_driver psmouse_drv = {
1668 .driver = {
1669 .name = "psmouse",
1670 },
1671 .description = DRIVER_DESC,
1672 .id_table = psmouse_serio_ids,
1673 .interrupt = psmouse_interrupt,
1674 .connect = psmouse_connect,
1675 .reconnect = psmouse_reconnect,
1676 .disconnect = psmouse_disconnect,
1677 .cleanup = psmouse_cleanup,
1678};
1679
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001680ssize_t psmouse_attr_show_helper(struct device *dev, struct device_attribute *devattr,
1681 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682{
1683 struct serio *serio = to_serio_port(dev);
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001684 struct psmouse_attribute *attr = to_psmouse_attr(devattr);
1685 struct psmouse *psmouse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001687 psmouse = serio_get_drvdata(serio);
1688
Eric W. Biederman59b01512010-01-05 17:56:02 -08001689 return attr->show(psmouse, attr->data, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690}
1691
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001692ssize_t psmouse_attr_set_helper(struct device *dev, struct device_attribute *devattr,
1693 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694{
1695 struct serio *serio = to_serio_port(dev);
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001696 struct psmouse_attribute *attr = to_psmouse_attr(devattr);
1697 struct psmouse *psmouse, *parent = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 int retval;
1699
Ingo Molnarc14471d2006-02-19 00:22:11 -05001700 retval = mutex_lock_interruptible(&psmouse_mutex);
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001701 if (retval)
Eric W. Biederman59b01512010-01-05 17:56:02 -08001702 goto out;
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001703
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001704 psmouse = serio_get_drvdata(serio);
1705
Andres Salomon68d48222008-09-16 12:30:34 -04001706 if (attr->protect) {
1707 if (psmouse->state == PSMOUSE_IGNORE) {
1708 retval = -ENODEV;
1709 goto out_unlock;
1710 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
Andres Salomon68d48222008-09-16 12:30:34 -04001712 if (serio->parent && serio->id.type == SERIO_PS_PSTHRU) {
1713 parent = serio_get_drvdata(serio->parent);
1714 psmouse_deactivate(parent);
1715 }
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001716
Andres Salomon68d48222008-09-16 12:30:34 -04001717 psmouse_deactivate(psmouse);
1718 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001720 retval = attr->set(psmouse, attr->data, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
Andres Salomon68d48222008-09-16 12:30:34 -04001722 if (attr->protect) {
1723 if (retval != -ENODEV)
1724 psmouse_activate(psmouse);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001725
Andres Salomon68d48222008-09-16 12:30:34 -04001726 if (parent)
1727 psmouse_activate(parent);
1728 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729
Ingo Molnarc14471d2006-02-19 00:22:11 -05001730 out_unlock:
1731 mutex_unlock(&psmouse_mutex);
Eric W. Biederman59b01512010-01-05 17:56:02 -08001732 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 return retval;
1734}
1735
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001736static ssize_t psmouse_show_int_attr(struct psmouse *psmouse, void *offset, char *buf)
1737{
Sergey Vlasoveb5d5822006-11-09 00:34:27 -05001738 unsigned int *field = (unsigned int *)((char *)psmouse + (size_t)offset);
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001739
Sergey Vlasoveb5d5822006-11-09 00:34:27 -05001740 return sprintf(buf, "%u\n", *field);
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001741}
1742
1743static ssize_t psmouse_set_int_attr(struct psmouse *psmouse, void *offset, const char *buf, size_t count)
1744{
Sergey Vlasoveb5d5822006-11-09 00:34:27 -05001745 unsigned int *field = (unsigned int *)((char *)psmouse + (size_t)offset);
JJ Ding76496e72011-11-09 10:20:14 -08001746 unsigned int value;
1747 int err;
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001748
JJ Ding76496e72011-11-09 10:20:14 -08001749 err = kstrtouint(buf, 10, &value);
1750 if (err)
1751 return err;
Sergey Vlasoveb5d5822006-11-09 00:34:27 -05001752
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001753 *field = value;
1754
1755 return count;
1756}
1757
1758static ssize_t psmouse_attr_show_protocol(struct psmouse *psmouse, void *data, char *buf)
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001759{
1760 return sprintf(buf, "%s\n", psmouse_protocol_by_type(psmouse->type)->name);
1761}
1762
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001763static ssize_t psmouse_attr_set_protocol(struct psmouse *psmouse, void *data, const char *buf, size_t count)
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001764{
1765 struct serio *serio = psmouse->ps2dev.serio;
1766 struct psmouse *parent = NULL;
Dmitry Torokhov72155612006-11-05 22:40:19 -05001767 struct input_dev *old_dev, *new_dev;
1768 const struct psmouse_protocol *proto, *old_proto;
1769 int error;
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001770 int retry = 0;
1771
Dmitry Torokhov72155612006-11-05 22:40:19 -05001772 proto = psmouse_protocol_by_name(buf, count);
1773 if (!proto)
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001774 return -EINVAL;
1775
1776 if (psmouse->type == proto->type)
1777 return count;
1778
Dmitry Torokhov72155612006-11-05 22:40:19 -05001779 new_dev = input_allocate_device();
1780 if (!new_dev)
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001781 return -ENOMEM;
1782
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -07001783 while (!list_empty(&serio->children)) {
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001784 if (++retry > 3) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001785 psmouse_warn(psmouse,
1786 "failed to destroy children ports, protocol change aborted.\n");
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001787 input_free_device(new_dev);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001788 return -EIO;
1789 }
1790
Ingo Molnarc14471d2006-02-19 00:22:11 -05001791 mutex_unlock(&psmouse_mutex);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001792 serio_unregister_child_port(serio);
Ingo Molnarc14471d2006-02-19 00:22:11 -05001793 mutex_lock(&psmouse_mutex);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001794
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001795 if (serio->drv != &psmouse_drv) {
1796 input_free_device(new_dev);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001797 return -ENODEV;
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001798 }
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001799
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001800 if (psmouse->type == proto->type) {
1801 input_free_device(new_dev);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001802 return count; /* switched by other thread */
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001803 }
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001804 }
1805
1806 if (serio->parent && serio->id.type == SERIO_PS_PSTHRU) {
1807 parent = serio_get_drvdata(serio->parent);
1808 if (parent->pt_deactivate)
1809 parent->pt_deactivate(parent);
1810 }
1811
Dmitry Torokhov72155612006-11-05 22:40:19 -05001812 old_dev = psmouse->dev;
1813 old_proto = psmouse_protocol_by_type(psmouse->type);
1814
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001815 if (psmouse->disconnect)
1816 psmouse->disconnect(psmouse);
1817
1818 psmouse_set_state(psmouse, PSMOUSE_IGNORE);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001819
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001820 psmouse->dev = new_dev;
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001821 psmouse_set_state(psmouse, PSMOUSE_INITIALIZING);
1822
1823 if (psmouse_switch_protocol(psmouse, proto) < 0) {
1824 psmouse_reset(psmouse);
1825 /* default to PSMOUSE_PS2 */
1826 psmouse_switch_protocol(psmouse, &psmouse_protocols[0]);
1827 }
1828
1829 psmouse_initialize(psmouse);
1830 psmouse_set_state(psmouse, PSMOUSE_CMD_MODE);
1831
Dmitry Torokhov72155612006-11-05 22:40:19 -05001832 error = input_register_device(psmouse->dev);
1833 if (error) {
1834 if (psmouse->disconnect)
1835 psmouse->disconnect(psmouse);
1836
1837 psmouse_set_state(psmouse, PSMOUSE_IGNORE);
1838 input_free_device(new_dev);
1839 psmouse->dev = old_dev;
1840 psmouse_set_state(psmouse, PSMOUSE_INITIALIZING);
1841 psmouse_switch_protocol(psmouse, old_proto);
1842 psmouse_initialize(psmouse);
1843 psmouse_set_state(psmouse, PSMOUSE_CMD_MODE);
1844
1845 return error;
1846 }
1847
1848 input_unregister_device(old_dev);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001849
1850 if (parent && parent->pt_activate)
1851 parent->pt_activate(parent);
1852
1853 return count;
1854}
1855
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001856static ssize_t psmouse_attr_set_rate(struct psmouse *psmouse, void *data, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857{
JJ Ding76496e72011-11-09 10:20:14 -08001858 unsigned int value;
1859 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
JJ Ding76496e72011-11-09 10:20:14 -08001861 err = kstrtouint(buf, 10, &value);
1862 if (err)
1863 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864
1865 psmouse->set_rate(psmouse, value);
1866 return count;
1867}
1868
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001869static ssize_t psmouse_attr_set_resolution(struct psmouse *psmouse, void *data, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870{
JJ Ding76496e72011-11-09 10:20:14 -08001871 unsigned int value;
1872 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
JJ Ding76496e72011-11-09 10:20:14 -08001874 err = kstrtouint(buf, 10, &value);
1875 if (err)
1876 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
1878 psmouse->set_resolution(psmouse, value);
1879 return count;
1880}
1881
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882
Rusty Russell9bbb9e52010-08-11 23:04:12 -06001883static int psmouse_set_maxproto(const char *val, const struct kernel_param *kp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884{
Helge Dellere38de672006-09-10 21:54:39 -04001885 const struct psmouse_protocol *proto;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886
1887 if (!val)
1888 return -EINVAL;
1889
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001890 proto = psmouse_protocol_by_name(val, strlen(val));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001892 if (!proto || !proto->maxproto)
1893 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001895 *((unsigned int *)kp->arg) = proto->type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896
Stephen Evanchik541e3162005-08-08 01:26:18 -05001897 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898}
1899
Rusty Russell9bbb9e52010-08-11 23:04:12 -06001900static int psmouse_get_maxproto(char *buffer, const struct kernel_param *kp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901{
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001902 int type = *((unsigned int *)kp->arg);
1903
Takashi Iwai3d4c3aa2009-11-12 23:30:52 -08001904 return sprintf(buffer, "%s", psmouse_protocol_by_type(type)->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905}
1906
1907static int __init psmouse_init(void)
1908{
Akinobu Mita153a9df02006-11-23 23:35:10 -05001909 int err;
1910
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001911 lifebook_module_init();
1912 synaptics_module_init();
Daniel Drakeca94ec42010-11-11 22:19:57 -08001913 hgpk_module_init();
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001914
Bhaktipriya Shridhar24dde602016-08-23 13:46:22 -07001915 kpsmoused_wq = alloc_ordered_workqueue("kpsmoused", 0);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001916 if (!kpsmoused_wq) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001917 pr_err("failed to create kpsmoused workqueue\n");
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001918 return -ENOMEM;
1919 }
1920
Akinobu Mita153a9df02006-11-23 23:35:10 -05001921 err = serio_register_driver(&psmouse_drv);
1922 if (err)
1923 destroy_workqueue(kpsmoused_wq);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001924
Akinobu Mita153a9df02006-11-23 23:35:10 -05001925 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926}
1927
1928static void __exit psmouse_exit(void)
1929{
1930 serio_unregister_driver(&psmouse_drv);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001931 destroy_workqueue(kpsmoused_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932}
1933
1934module_init(psmouse_init);
1935module_exit(psmouse_exit);