blob: bc1bc2653f15635bca18d10abb8412594eb492b8 [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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39#define DRIVER_DESC "PS/2 mouse driver"
40
41MODULE_AUTHOR("Vojtech Pavlik <vojtech@suse.cz>");
42MODULE_DESCRIPTION(DRIVER_DESC);
43MODULE_LICENSE("GPL");
44
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -050045static unsigned int psmouse_max_proto = PSMOUSE_AUTO;
Rusty Russell9bbb9e52010-08-11 23:04:12 -060046static int psmouse_set_maxproto(const char *val, const struct kernel_param *);
47static int psmouse_get_maxproto(char *buffer, const struct kernel_param *kp);
48static struct kernel_param_ops param_ops_proto_abbrev = {
49 .set = psmouse_set_maxproto,
50 .get = psmouse_get_maxproto,
51};
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#define param_check_proto_abbrev(name, p) __param_check(name, p, unsigned int)
Linus Torvalds1da177e2005-04-16 15:20:36 -070053module_param_named(proto, psmouse_max_proto, proto_abbrev, 0644);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -050054MODULE_PARM_DESC(proto, "Highest protocol extension to probe (bare, imps, exps, any). Useful for KVM switches.");
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56static unsigned int psmouse_resolution = 200;
57module_param_named(resolution, psmouse_resolution, uint, 0644);
58MODULE_PARM_DESC(resolution, "Resolution, in dpi.");
59
60static unsigned int psmouse_rate = 100;
61module_param_named(rate, psmouse_rate, uint, 0644);
62MODULE_PARM_DESC(rate, "Report rate, in reports per second.");
63
Rusty Russell90ab5ee2012-01-13 09:32:20 +103064static bool psmouse_smartscroll = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065module_param_named(smartscroll, psmouse_smartscroll, bool, 0644);
66MODULE_PARM_DESC(smartscroll, "Logitech Smartscroll autorepeat, 1 = enabled (default), 0 = disabled.");
67
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -050068static unsigned int psmouse_resetafter = 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069module_param_named(resetafter, psmouse_resetafter, uint, 0644);
70MODULE_PARM_DESC(resetafter, "Reset device after so many bad packets (0 = never).");
71
Dmitry Torokhov8bd0ee92006-03-11 00:23:38 -050072static unsigned int psmouse_resync_time;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -050073module_param_named(resync_time, psmouse_resync_time, uint, 0644);
74MODULE_PARM_DESC(resync_time, "How long can mouse stay idle before forcing resync (in seconds, 0 = never).");
75
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -050076PSMOUSE_DEFINE_ATTR(protocol, S_IWUSR | S_IRUGO,
77 NULL,
78 psmouse_attr_show_protocol, psmouse_attr_set_protocol);
79PSMOUSE_DEFINE_ATTR(rate, S_IWUSR | S_IRUGO,
80 (void *) offsetof(struct psmouse, rate),
81 psmouse_show_int_attr, psmouse_attr_set_rate);
82PSMOUSE_DEFINE_ATTR(resolution, S_IWUSR | S_IRUGO,
83 (void *) offsetof(struct psmouse, resolution),
84 psmouse_show_int_attr, psmouse_attr_set_resolution);
85PSMOUSE_DEFINE_ATTR(resetafter, S_IWUSR | S_IRUGO,
86 (void *) offsetof(struct psmouse, resetafter),
87 psmouse_show_int_attr, psmouse_set_int_attr);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -050088PSMOUSE_DEFINE_ATTR(resync_time, S_IWUSR | S_IRUGO,
89 (void *) offsetof(struct psmouse, resync_time),
90 psmouse_show_int_attr, psmouse_set_int_attr);
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -050091
92static struct attribute *psmouse_attributes[] = {
93 &psmouse_attr_protocol.dattr.attr,
94 &psmouse_attr_rate.dattr.attr,
95 &psmouse_attr_resolution.dattr.attr,
96 &psmouse_attr_resetafter.dattr.attr,
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -050097 &psmouse_attr_resync_time.dattr.attr,
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -050098 NULL
99};
100
101static struct attribute_group psmouse_attribute_group = {
102 .attrs = psmouse_attributes,
103};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Dmitry Torokhov04df1922005-06-01 02:39:44 -0500105/*
Ingo Molnarc14471d2006-02-19 00:22:11 -0500106 * psmouse_mutex protects all operations changing state of mouse
Dmitry Torokhov04df1922005-06-01 02:39:44 -0500107 * (connecting, disconnecting, changing rate or resolution via
108 * sysfs). We could use a per-device semaphore but since there
109 * rarely more than one PS/2 mouse connected and since semaphore
110 * is taken in "slow" paths it is not worth it.
111 */
Ingo Molnarc14471d2006-02-19 00:22:11 -0500112static DEFINE_MUTEX(psmouse_mutex);
Dmitry Torokhov04df1922005-06-01 02:39:44 -0500113
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500114static struct workqueue_struct *kpsmoused_wq;
115
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500116struct psmouse_protocol {
117 enum psmouse_type type;
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700118 bool maxproto;
Dmitry Torokhov6b9d363c2010-04-19 00:42:16 -0700119 bool ignore_parity; /* Protocol should ignore parity errors from KBC */
Helge Dellere38de672006-09-10 21:54:39 -0400120 const char *name;
121 const char *alias;
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700122 int (*detect)(struct psmouse *, bool);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500123 int (*init)(struct psmouse *);
124};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126/*
127 * psmouse_process_byte() analyzes the PS/2 data stream and reports
128 * relevant events to the input module once full packet has arrived.
129 */
130
Daniel Drake7968a5d2011-11-08 00:00:35 -0800131psmouse_ret_t psmouse_process_byte(struct psmouse *psmouse)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -0500133 struct input_dev *dev = psmouse->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 unsigned char *packet = psmouse->packet;
135
136 if (psmouse->pktcnt < psmouse->pktsize)
137 return PSMOUSE_GOOD_DATA;
138
139/*
140 * Full packet accumulated, process it
141 */
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143/*
144 * Scroll wheel on IntelliMice, scroll buttons on NetMice
145 */
146
147 if (psmouse->type == PSMOUSE_IMPS || psmouse->type == PSMOUSE_GENPS)
148 input_report_rel(dev, REL_WHEEL, -(signed char) packet[3]);
149
150/*
151 * Scroll wheel and buttons on IntelliMouse Explorer
152 */
153
154 if (psmouse->type == PSMOUSE_IMEX) {
Pozsar Balazsb0c9ad82006-06-26 01:56:08 -0400155 switch (packet[3] & 0xC0) {
Dmitry Torokhova62f0d22010-05-19 10:39:17 -0700156 case 0x80: /* vertical scroll on IntelliMouse Explorer 4.0 */
157 input_report_rel(dev, REL_WHEEL, (int) (packet[3] & 32) - (int) (packet[3] & 31));
158 break;
159 case 0x40: /* horizontal scroll on IntelliMouse Explorer 4.0 */
160 input_report_rel(dev, REL_HWHEEL, (int) (packet[3] & 32) - (int) (packet[3] & 31));
161 break;
162 case 0x00:
163 case 0xC0:
164 input_report_rel(dev, REL_WHEEL, (int) (packet[3] & 8) - (int) (packet[3] & 7));
165 input_report_key(dev, BTN_SIDE, (packet[3] >> 4) & 1);
166 input_report_key(dev, BTN_EXTRA, (packet[3] >> 5) & 1);
167 break;
Pozsar Balazsb0c9ad82006-06-26 01:56:08 -0400168 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 }
170
171/*
172 * Extra buttons on Genius NewNet 3D
173 */
174
175 if (psmouse->type == PSMOUSE_GENPS) {
176 input_report_key(dev, BTN_SIDE, (packet[0] >> 6) & 1);
177 input_report_key(dev, BTN_EXTRA, (packet[0] >> 7) & 1);
178 }
179
180/*
181 * Extra button on ThinkingMouse
182 */
183 if (psmouse->type == PSMOUSE_THINKPS) {
184 input_report_key(dev, BTN_EXTRA, (packet[0] >> 3) & 1);
185 /* Without this bit of weirdness moving up gives wildly high Y changes. */
186 packet[1] |= (packet[0] & 0x40) << 1;
187 }
188
189/*
Aristeu Rozanskiaea6a462007-05-10 01:47:18 -0400190 * Cortron PS2 Trackball reports SIDE button on the 4th bit of the first
191 * byte.
192 */
193 if (psmouse->type == PSMOUSE_CORTRON) {
194 input_report_key(dev, BTN_SIDE, (packet[0] >> 3) & 1);
195 packet[0] |= 0x08;
196 }
197
198/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 * Generic PS/2 Mouse
200 */
201
202 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 */
223
224static inline void __psmouse_set_state(struct psmouse *psmouse, enum psmouse_state new_state)
225{
226 psmouse->state = new_state;
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700227 psmouse->pktcnt = psmouse->out_of_sync_cnt = 0;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500228 psmouse->ps2dev.flags = 0;
229 psmouse->last = jiffies;
230}
231
232
233/*
234 * psmouse_set_state() sets new psmouse state and resets all flags and
235 * counters while holding serio lock so fighting with interrupt handler
236 * is not a concern.
237 */
238
Andres Salomona48cf5f2008-09-16 12:30:33 -0400239void psmouse_set_state(struct psmouse *psmouse, enum psmouse_state new_state)
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500240{
241 serio_pause_rx(psmouse->ps2dev.serio);
242 __psmouse_set_state(psmouse, new_state);
243 serio_continue_rx(psmouse->ps2dev.serio);
244}
245
246/*
247 * psmouse_handle_byte() processes one byte of the input data stream
248 * by calling corresponding protocol handler.
249 */
250
David Howells7d12e782006-10-05 14:55:46 +0100251static int psmouse_handle_byte(struct psmouse *psmouse)
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500252{
David Howells7d12e782006-10-05 14:55:46 +0100253 psmouse_ret_t rc = psmouse->protocol_handler(psmouse);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500254
255 switch (rc) {
Dmitry Torokhova62f0d22010-05-19 10:39:17 -0700256 case PSMOUSE_BAD_DATA:
257 if (psmouse->state == PSMOUSE_ACTIVATED) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700258 psmouse_warn(psmouse,
259 "%s at %s lost sync at byte %d\n",
260 psmouse->name, psmouse->phys,
261 psmouse->pktcnt);
Dmitry Torokhova62f0d22010-05-19 10:39:17 -0700262 if (++psmouse->out_of_sync_cnt == psmouse->resetafter) {
263 __psmouse_set_state(psmouse, PSMOUSE_IGNORE);
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700264 psmouse_notice(psmouse,
265 "issuing reconnect request\n");
Dmitry Torokhova62f0d22010-05-19 10:39:17 -0700266 serio_reconnect(psmouse->ps2dev.serio);
267 return -1;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500268 }
Dmitry Torokhova62f0d22010-05-19 10:39:17 -0700269 }
270 psmouse->pktcnt = 0;
271 break;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500272
Dmitry Torokhova62f0d22010-05-19 10:39:17 -0700273 case PSMOUSE_FULL_PACKET:
274 psmouse->pktcnt = 0;
275 if (psmouse->out_of_sync_cnt) {
276 psmouse->out_of_sync_cnt = 0;
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700277 psmouse_notice(psmouse,
278 "%s at %s - driver resynced.\n",
279 psmouse->name, psmouse->phys);
Dmitry Torokhova62f0d22010-05-19 10:39:17 -0700280 }
281 break;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500282
Dmitry Torokhova62f0d22010-05-19 10:39:17 -0700283 case PSMOUSE_GOOD_DATA:
284 break;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500285 }
286 return 0;
287}
288
289/*
290 * psmouse_interrupt() handles incoming characters, either passing them
291 * for normal processing or gathering them as command response.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 */
293
294static irqreturn_t psmouse_interrupt(struct serio *serio,
David Howells7d12e782006-10-05 14:55:46 +0100295 unsigned char data, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
297 struct psmouse *psmouse = serio_get_drvdata(serio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
299 if (psmouse->state == PSMOUSE_IGNORE)
300 goto out;
301
Dmitry Torokhov6b9d363c2010-04-19 00:42:16 -0700302 if (unlikely((flags & SERIO_TIMEOUT) ||
303 ((flags & SERIO_PARITY) && !psmouse->ignore_parity))) {
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 if (psmouse->state == PSMOUSE_ACTIVATED)
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700306 psmouse_warn(psmouse,
307 "bad data from KBC -%s%s\n",
308 flags & SERIO_TIMEOUT ? " timeout" : "",
309 flags & SERIO_PARITY ? " bad parity" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 ps2_cmd_aborted(&psmouse->ps2dev);
311 goto out;
312 }
313
314 if (unlikely(psmouse->ps2dev.flags & PS2_FLAG_ACK))
315 if (ps2_handle_ack(&psmouse->ps2dev, data))
316 goto out;
317
318 if (unlikely(psmouse->ps2dev.flags & PS2_FLAG_CMD))
319 if (ps2_handle_response(&psmouse->ps2dev, data))
320 goto out;
321
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500322 if (psmouse->state <= PSMOUSE_RESYNCING)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 goto out;
324
325 if (psmouse->state == PSMOUSE_ACTIVATED &&
326 psmouse->pktcnt && time_after(jiffies, psmouse->last + HZ/2)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700327 psmouse_info(psmouse, "%s at %s lost synchronization, throwing %d bytes away.\n",
328 psmouse->name, psmouse->phys, psmouse->pktcnt);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500329 psmouse->badbyte = psmouse->packet[0];
330 __psmouse_set_state(psmouse, PSMOUSE_RESYNCING);
Andres Salomon8bf020e2008-09-16 12:30:33 -0400331 psmouse_queue_work(psmouse, &psmouse->resync_work, 0);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500332 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 }
334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 psmouse->packet[psmouse->pktcnt++] = data;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500336/*
337 * Check if this is a new device announcement (0xAA 0x00)
338 */
339 if (unlikely(psmouse->packet[0] == PSMOUSE_RET_BAT && psmouse->pktcnt <= 2)) {
Dmitry Torokhov89c9b482006-04-29 01:12:44 -0400340 if (psmouse->pktcnt == 1) {
341 psmouse->last = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 goto out;
Dmitry Torokhov89c9b482006-04-29 01:12:44 -0400343 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Zephaniah E. Hull535650f2009-05-14 22:02:33 -0700345 if (psmouse->packet[1] == PSMOUSE_RET_ID ||
346 (psmouse->type == PSMOUSE_HGPK &&
347 psmouse->packet[1] == PSMOUSE_RET_BAT)) {
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500348 __psmouse_set_state(psmouse, PSMOUSE_IGNORE);
349 serio_reconnect(serio);
350 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 }
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500352/*
353 * Not a new device, try processing first byte normally
354 */
355 psmouse->pktcnt = 1;
David Howells7d12e782006-10-05 14:55:46 +0100356 if (psmouse_handle_byte(psmouse))
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500357 goto out;
358
359 psmouse->packet[psmouse->pktcnt++] = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 }
361
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500362/*
363 * See if we need to force resync because mouse was idle for too long
364 */
365 if (psmouse->state == PSMOUSE_ACTIVATED &&
366 psmouse->pktcnt == 1 && psmouse->resync_time &&
367 time_after(jiffies, psmouse->last + psmouse->resync_time * HZ)) {
368 psmouse->badbyte = psmouse->packet[0];
369 __psmouse_set_state(psmouse, PSMOUSE_RESYNCING);
Andres Salomon8bf020e2008-09-16 12:30:33 -0400370 psmouse_queue_work(psmouse, &psmouse->resync_work, 0);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500371 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 }
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500373
374 psmouse->last = jiffies;
David Howells7d12e782006-10-05 14:55:46 +0100375 psmouse_handle_byte(psmouse);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500376
377 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 return IRQ_HANDLED;
379}
380
381
382/*
383 * psmouse_sliced_command() sends an extended PS/2 command to the mouse
384 * using sliced syntax, understood by advanced devices, such as Logitech
385 * or Synaptics touchpads. The command is encoded as:
386 * 0xE6 0xE8 rr 0xE8 ss 0xE8 tt 0xE8 uu where (rr*64)+(ss*16)+(tt*4)+uu
387 * is the command.
388 */
389int psmouse_sliced_command(struct psmouse *psmouse, unsigned char command)
390{
391 int i;
392
393 if (ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_SETSCALE11))
394 return -1;
395
396 for (i = 6; i >= 0; i -= 2) {
397 unsigned char d = (command >> i) & 3;
398 if (ps2_command(&psmouse->ps2dev, &d, PSMOUSE_CMD_SETRES))
399 return -1;
400 }
401
402 return 0;
403}
404
405
406/*
407 * psmouse_reset() resets the mouse into power-on state.
408 */
409int psmouse_reset(struct psmouse *psmouse)
410{
411 unsigned char param[2];
412
413 if (ps2_command(&psmouse->ps2dev, param, PSMOUSE_CMD_RESET_BAT))
414 return -1;
415
416 if (param[0] != PSMOUSE_RET_BAT && param[1] != PSMOUSE_RET_ID)
417 return -1;
418
419 return 0;
420}
421
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800422/*
423 * Here we set the mouse resolution.
424 */
425
426void psmouse_set_resolution(struct psmouse *psmouse, unsigned int resolution)
427{
428 static const unsigned char params[] = { 0, 1, 2, 2, 3 };
429 unsigned char p;
430
431 if (resolution == 0 || resolution > 200)
432 resolution = 200;
433
434 p = params[resolution / 50];
435 ps2_command(&psmouse->ps2dev, &p, PSMOUSE_CMD_SETRES);
436 psmouse->resolution = 25 << p;
437}
438
439/*
440 * Here we set the mouse report rate.
441 */
442
443static void psmouse_set_rate(struct psmouse *psmouse, unsigned int rate)
444{
445 static const unsigned char rates[] = { 200, 100, 80, 60, 40, 20, 10, 0 };
446 unsigned char r;
447 int i = 0;
448
449 while (rates[i] > rate) i++;
450 r = rates[i];
451 ps2_command(&psmouse->ps2dev, &r, PSMOUSE_CMD_SETRATE);
452 psmouse->rate = r;
453}
454
455/*
456 * psmouse_poll() - default poll handler. Everyone except for ALPS uses it.
457 */
458
459static int psmouse_poll(struct psmouse *psmouse)
460{
461 return ps2_command(&psmouse->ps2dev, psmouse->packet,
462 PSMOUSE_CMD_POLL | (psmouse->pktsize << 8));
463}
464
Hans de Goede2c75ada2014-09-11 10:14:09 -0700465/*
466 * psmouse_matches_pnp_id - check if psmouse matches one of the passed in ids.
467 */
468bool psmouse_matches_pnp_id(struct psmouse *psmouse, const char * const ids[])
469{
470 int i;
471
472 if (!strncmp(psmouse->ps2dev.serio->firmware_id, "PNP:", 4))
473 for (i = 0; ids[i]; i++)
474 if (strstr(psmouse->ps2dev.serio->firmware_id, ids[i]))
475 return true;
476
477 return false;
478}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
480/*
481 * Genius NetMouse magic init.
482 */
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700483static int genius_detect(struct psmouse *psmouse, bool set_properties)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484{
485 struct ps2dev *ps2dev = &psmouse->ps2dev;
486 unsigned char param[4];
487
488 param[0] = 3;
489 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES);
490 ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11);
491 ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11);
492 ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11);
493 ps2_command(ps2dev, param, PSMOUSE_CMD_GETINFO);
494
495 if (param[0] != 0x00 || param[1] != 0x33 || param[2] != 0x55)
496 return -1;
497
498 if (set_properties) {
Dmitry Torokhov315eb992009-11-16 22:12:21 -0800499 __set_bit(BTN_MIDDLE, psmouse->dev->keybit);
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700500 __set_bit(BTN_EXTRA, psmouse->dev->keybit);
501 __set_bit(BTN_SIDE, psmouse->dev->keybit);
502 __set_bit(REL_WHEEL, psmouse->dev->relbit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504 psmouse->vendor = "Genius";
Dmitry Torokhova3f3f312006-01-29 21:50:46 -0500505 psmouse->name = "Mouse";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 psmouse->pktsize = 4;
507 }
508
509 return 0;
510}
511
512/*
513 * IntelliMouse magic init.
514 */
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700515static int intellimouse_detect(struct psmouse *psmouse, bool set_properties)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
517 struct ps2dev *ps2dev = &psmouse->ps2dev;
518 unsigned char param[2];
519
520 param[0] = 200;
521 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
522 param[0] = 100;
523 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
524 param[0] = 80;
525 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
526 ps2_command(ps2dev, param, PSMOUSE_CMD_GETID);
527
528 if (param[0] != 3)
529 return -1;
530
531 if (set_properties) {
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700532 __set_bit(BTN_MIDDLE, psmouse->dev->keybit);
533 __set_bit(REL_WHEEL, psmouse->dev->relbit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Dmitry Torokhov315eb992009-11-16 22:12:21 -0800535 if (!psmouse->vendor)
536 psmouse->vendor = "Generic";
537 if (!psmouse->name)
538 psmouse->name = "Wheel Mouse";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 psmouse->pktsize = 4;
540 }
541
542 return 0;
543}
544
545/*
546 * Try IntelliMouse/Explorer magic init.
547 */
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700548static int im_explorer_detect(struct psmouse *psmouse, bool set_properties)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549{
550 struct ps2dev *ps2dev = &psmouse->ps2dev;
551 unsigned char param[2];
552
553 intellimouse_detect(psmouse, 0);
554
555 param[0] = 200;
556 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
557 param[0] = 200;
558 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
559 param[0] = 80;
560 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
561 ps2_command(ps2dev, param, PSMOUSE_CMD_GETID);
562
563 if (param[0] != 4)
564 return -1;
565
Pozsar Balazsb0c9ad82006-06-26 01:56:08 -0400566/* Magic to enable horizontal scrolling on IntelliMouse 4.0 */
567 param[0] = 200;
568 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
569 param[0] = 80;
570 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
571 param[0] = 40;
572 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
573
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 if (set_properties) {
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700575 __set_bit(BTN_MIDDLE, psmouse->dev->keybit);
576 __set_bit(REL_WHEEL, psmouse->dev->relbit);
577 __set_bit(REL_HWHEEL, psmouse->dev->relbit);
578 __set_bit(BTN_SIDE, psmouse->dev->keybit);
579 __set_bit(BTN_EXTRA, psmouse->dev->keybit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Dmitry Torokhov315eb992009-11-16 22:12:21 -0800581 if (!psmouse->vendor)
582 psmouse->vendor = "Generic";
583 if (!psmouse->name)
584 psmouse->name = "Explorer Mouse";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 psmouse->pktsize = 4;
586 }
587
588 return 0;
589}
590
591/*
592 * Kensington ThinkingMouse / ExpertMouse magic init.
593 */
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700594static int thinking_detect(struct psmouse *psmouse, bool set_properties)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
596 struct ps2dev *ps2dev = &psmouse->ps2dev;
597 unsigned char param[2];
Helge Dellere38de672006-09-10 21:54:39 -0400598 static const unsigned char seq[] = { 20, 60, 40, 20, 20, 60, 40, 20, 20 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 int i;
600
601 param[0] = 10;
602 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
603 param[0] = 0;
604 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES);
Helge Dellere38de672006-09-10 21:54:39 -0400605 for (i = 0; i < ARRAY_SIZE(seq); i++) {
606 param[0] = seq[i];
607 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
608 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 ps2_command(ps2dev, param, PSMOUSE_CMD_GETID);
610
611 if (param[0] != 2)
612 return -1;
613
614 if (set_properties) {
Dmitry Torokhov315eb992009-11-16 22:12:21 -0800615 __set_bit(BTN_MIDDLE, psmouse->dev->keybit);
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700616 __set_bit(BTN_EXTRA, psmouse->dev->keybit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
618 psmouse->vendor = "Kensington";
619 psmouse->name = "ThinkingMouse";
620 }
621
622 return 0;
623}
624
625/*
626 * Bare PS/2 protocol "detection". Always succeeds.
627 */
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700628static int ps2bare_detect(struct psmouse *psmouse, bool set_properties)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629{
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500630 if (set_properties) {
Dmitry Torokhov315eb992009-11-16 22:12:21 -0800631 if (!psmouse->vendor)
632 psmouse->vendor = "Generic";
633 if (!psmouse->name)
634 psmouse->name = "Mouse";
635
636/*
637 * We have no way of figuring true number of buttons so let's
638 * assume that the device has 3.
639 */
640 __set_bit(BTN_MIDDLE, psmouse->dev->keybit);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500641 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
643 return 0;
644}
645
Aristeu Rozanskiaea6a462007-05-10 01:47:18 -0400646/*
647 * Cortron PS/2 protocol detection. There's no special way to detect it, so it
648 * must be forced by sysfs protocol writing.
649 */
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700650static int cortron_detect(struct psmouse *psmouse, bool set_properties)
Aristeu Rozanskiaea6a462007-05-10 01:47:18 -0400651{
652 if (set_properties) {
653 psmouse->vendor = "Cortron";
654 psmouse->name = "PS/2 Trackball";
Dmitry Torokhov315eb992009-11-16 22:12:21 -0800655
656 __set_bit(BTN_MIDDLE, psmouse->dev->keybit);
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700657 __set_bit(BTN_SIDE, psmouse->dev->keybit);
Aristeu Rozanskiaea6a462007-05-10 01:47:18 -0400658 }
659
660 return 0;
661}
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500662
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663/*
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800664 * Apply default settings to the psmouse structure. Most of them will
665 * be overridden by individual protocol initialization routines.
666 */
667
668static void psmouse_apply_defaults(struct psmouse *psmouse)
669{
670 struct input_dev *input_dev = psmouse->dev;
671
672 memset(input_dev->evbit, 0, sizeof(input_dev->evbit));
673 memset(input_dev->keybit, 0, sizeof(input_dev->keybit));
674 memset(input_dev->relbit, 0, sizeof(input_dev->relbit));
675 memset(input_dev->absbit, 0, sizeof(input_dev->absbit));
676 memset(input_dev->mscbit, 0, sizeof(input_dev->mscbit));
677
678 __set_bit(EV_KEY, input_dev->evbit);
679 __set_bit(EV_REL, input_dev->evbit);
680
681 __set_bit(BTN_LEFT, input_dev->keybit);
682 __set_bit(BTN_RIGHT, input_dev->keybit);
683
684 __set_bit(REL_X, input_dev->relbit);
685 __set_bit(REL_Y, input_dev->relbit);
686
687 psmouse->set_rate = psmouse_set_rate;
688 psmouse->set_resolution = psmouse_set_resolution;
689 psmouse->poll = psmouse_poll;
690 psmouse->protocol_handler = psmouse_process_byte;
691 psmouse->pktsize = 3;
692 psmouse->reconnect = NULL;
693 psmouse->disconnect = NULL;
694 psmouse->cleanup = NULL;
695 psmouse->pt_activate = NULL;
696 psmouse->pt_deactivate = NULL;
697}
698
699/*
700 * Apply default settings to the psmouse structure and call specified
701 * protocol detection or initialization routine.
702 */
703static int psmouse_do_detect(int (*detect)(struct psmouse *psmouse,
704 bool set_properties),
705 struct psmouse *psmouse, bool set_properties)
706{
707 if (set_properties)
708 psmouse_apply_defaults(psmouse);
709
710 return detect(psmouse, set_properties);
711}
712
713/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 * psmouse_extensions() probes for any extensions to the basic PS/2 protocol
715 * the mouse may have.
716 */
717
718static int psmouse_extensions(struct psmouse *psmouse,
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700719 unsigned int max_proto, bool set_properties)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720{
Jiri Kosina06989892009-11-16 22:12:13 -0800721 bool synaptics_hardware = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Dmitry Torokhova15d60f2005-05-29 02:30:32 -0500723/*
724 * We always check for lifebook because it does not disturb mouse
725 * (it only checks DMI information).
726 */
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800727 if (psmouse_do_detect(lifebook_detect, psmouse, set_properties) == 0) {
Dmitry Torokhova15d60f2005-05-29 02:30:32 -0500728 if (max_proto > PSMOUSE_IMEX) {
729 if (!set_properties || lifebook_init(psmouse) == 0)
730 return PSMOUSE_LIFEBOOK;
731 }
732 }
Kenan Esau02d7f582005-05-29 02:30:22 -0500733
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734/*
735 * Try Kensington ThinkingMouse (we try first, because synaptics probe
736 * upsets the thinkingmouse).
737 */
738
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800739 if (max_proto > PSMOUSE_IMEX &&
740 psmouse_do_detect(thinking_detect, psmouse, set_properties) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 return PSMOUSE_THINKPS;
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800742 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
744/*
Andres Salomon55e3d922007-03-10 01:39:54 -0500745 * Try Synaptics TouchPad. Note that probing is done even if Synaptics protocol
746 * support is disabled in config - we need to know if it is synaptics so we
747 * can reset it properly after probing for intellimouse.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 */
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800749 if (max_proto > PSMOUSE_PS2 &&
750 psmouse_do_detect(synaptics_detect, psmouse, set_properties) == 0) {
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700751 synaptics_hardware = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
753 if (max_proto > PSMOUSE_IMEX) {
Daniel Drakee4e6efd2010-01-07 01:52:39 -0800754/*
755 * Try activating protocol, but check if support is enabled first, since
756 * we try detecting Synaptics even when protocol is disabled.
757 */
758 if (synaptics_supported() &&
759 (!set_properties || synaptics_init(psmouse) == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 return PSMOUSE_SYNAPTICS;
Daniel Drakee4e6efd2010-01-07 01:52:39 -0800761 }
762
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763/*
764 * Some Synaptics touchpads can emulate extended protocols (like IMPS/2).
765 * Unfortunately Logitech/Genius probes confuse some firmware versions so
766 * we'll have to skip them.
767 */
768 max_proto = PSMOUSE_IMEX;
769 }
770/*
771 * Make sure that touchpad is in relative mode, gestures (taps) are enabled
772 */
773 synaptics_reset(psmouse);
774 }
775
776/*
Dudley Du0799a922013-01-05 00:14:22 -0800777 * Try Cypress Trackpad.
778 * Must try it before Finger Sensing Pad because Finger Sensing Pad probe
779 * upsets some modules of Cypress Trackpads.
780 */
781 if (max_proto > PSMOUSE_IMEX &&
782 cypress_detect(psmouse, set_properties) == 0) {
783 if (cypress_supported()) {
784 if (cypress_init(psmouse) == 0)
785 return PSMOUSE_CYPRESS;
786
787 /*
788 * Finger Sensing Pad probe upsets some modules of
789 * Cypress Trackpad, must avoid Finger Sensing Pad
790 * probe if Cypress Trackpad device detected.
791 */
792 return PSMOUSE_PS2;
793 }
794
795 max_proto = PSMOUSE_IMEX;
796 }
797
798/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 * Try ALPS TouchPad
800 */
801 if (max_proto > PSMOUSE_IMEX) {
802 ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_RESET_DIS);
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800803 if (psmouse_do_detect(alps_detect,
804 psmouse, set_properties) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 if (!set_properties || alps_init(psmouse) == 0)
806 return PSMOUSE_ALPS;
807/*
808 * Init failed, try basic relative protocols
809 */
810 max_proto = PSMOUSE_IMEX;
811 }
812 }
813
Andres Salomondf08ef22008-09-16 12:30:34 -0400814/*
815 * Try OLPC HGPK touchpad.
816 */
817 if (max_proto > PSMOUSE_IMEX &&
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800818 psmouse_do_detect(hgpk_detect, psmouse, set_properties) == 0) {
Andres Salomondf08ef22008-09-16 12:30:34 -0400819 if (!set_properties || hgpk_init(psmouse) == 0)
820 return PSMOUSE_HGPK;
821/*
822 * Init failed, try basic relative protocols
823 */
824 max_proto = PSMOUSE_IMEX;
825 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400827/*
828 * Try Elantech touchpad.
829 */
830 if (max_proto > PSMOUSE_IMEX &&
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800831 psmouse_do_detect(elantech_detect, psmouse, set_properties) == 0) {
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400832 if (!set_properties || elantech_init(psmouse) == 0)
833 return PSMOUSE_ELANTECH;
834/*
835 * Init failed, try basic relative protocols
836 */
837 max_proto = PSMOUSE_IMEX;
838 }
839
Andres Salomondf08ef22008-09-16 12:30:34 -0400840 if (max_proto > PSMOUSE_IMEX) {
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800841 if (psmouse_do_detect(genius_detect,
842 psmouse, set_properties) == 0)
Stefan Lucke24bf10a2007-02-18 01:49:10 -0500843 return PSMOUSE_GENPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800845 if (psmouse_do_detect(ps2pp_init,
846 psmouse, set_properties) == 0)
Stefan Lucke24bf10a2007-02-18 01:49:10 -0500847 return PSMOUSE_PS2PP;
848
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800849 if (psmouse_do_detect(trackpoint_detect,
850 psmouse, set_properties) == 0)
Stefan Lucke24bf10a2007-02-18 01:49:10 -0500851 return PSMOUSE_TRACKPOINT;
852
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800853 if (psmouse_do_detect(touchkit_ps2_detect,
854 psmouse, set_properties) == 0)
Stefan Lucke24bf10a2007-02-18 01:49:10 -0500855 return PSMOUSE_TOUCHKIT_PS2;
856 }
Dmitry Torokhovba449952005-12-21 00:51:31 -0500857
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858/*
Tai-hwa Liang4a18b3a2010-01-13 00:16:27 -0800859 * Try Finger Sensing Pad. We do it here because its probe upsets
860 * Trackpoint devices (causing TP_READ_ID command to time out).
861 */
862 if (max_proto > PSMOUSE_IMEX) {
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800863 if (psmouse_do_detect(fsp_detect,
864 psmouse, set_properties) == 0) {
Tai-hwa Liang4a18b3a2010-01-13 00:16:27 -0800865 if (!set_properties || fsp_init(psmouse) == 0)
866 return PSMOUSE_FSP;
867/*
868 * Init failed, try basic relative protocols
869 */
870 max_proto = PSMOUSE_IMEX;
871 }
872 }
873
874/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 * Reset to defaults in case the device got confused by extended
Alon Ziv554fc192007-08-30 00:22:48 -0400876 * protocol probes. Note that we follow up with full reset because
877 * some mice put themselves to sleep when they see PSMOUSE_RESET_DIS.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 */
Alon Ziv554fc192007-08-30 00:22:48 -0400879 ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_RESET_DIS);
Dmitry Torokhovba449952005-12-21 00:51:31 -0500880 psmouse_reset(psmouse);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800882 if (max_proto >= PSMOUSE_IMEX &&
883 psmouse_do_detect(im_explorer_detect,
884 psmouse, set_properties) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 return PSMOUSE_IMEX;
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800886 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800888 if (max_proto >= PSMOUSE_IMPS &&
889 psmouse_do_detect(intellimouse_detect,
890 psmouse, set_properties) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 return PSMOUSE_IMPS;
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800892 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
894/*
895 * Okay, all failed, we have a standard mouse here. The number of the buttons
896 * is still a question, though. We assume 3.
897 */
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800898 psmouse_do_detect(ps2bare_detect, psmouse, set_properties);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
900 if (synaptics_hardware) {
901/*
902 * We detected Synaptics hardware but it did not respond to IMPS/2 probes.
903 * We need to reset the touchpad because if there is a track point on the
904 * pass through port it could get disabled while probing for protocol
905 * extensions.
906 */
907 psmouse_reset(psmouse);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 }
909
910 return PSMOUSE_PS2;
911}
912
Helge Dellere38de672006-09-10 21:54:39 -0400913static const struct psmouse_protocol psmouse_protocols[] = {
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500914 {
915 .type = PSMOUSE_PS2,
916 .name = "PS/2",
917 .alias = "bare",
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700918 .maxproto = true,
Dmitry Torokhov6b9d363c2010-04-19 00:42:16 -0700919 .ignore_parity = true,
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500920 .detect = ps2bare_detect,
921 },
Andres Salomon55e3d922007-03-10 01:39:54 -0500922#ifdef CONFIG_MOUSE_PS2_LOGIPS2PP
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500923 {
924 .type = PSMOUSE_PS2PP,
925 .name = "PS2++",
926 .alias = "logitech",
927 .detect = ps2pp_init,
928 },
Andres Salomon55e3d922007-03-10 01:39:54 -0500929#endif
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500930 {
931 .type = PSMOUSE_THINKPS,
932 .name = "ThinkPS/2",
933 .alias = "thinkps",
934 .detect = thinking_detect,
935 },
Dudley Du0799a922013-01-05 00:14:22 -0800936#ifdef CONFIG_MOUSE_PS2_CYPRESS
937 {
938 .type = PSMOUSE_CYPRESS,
939 .name = "CyPS/2",
940 .alias = "cypress",
941 .detect = cypress_detect,
942 .init = cypress_init,
943 },
944#endif
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500945 {
946 .type = PSMOUSE_GENPS,
947 .name = "GenPS/2",
948 .alias = "genius",
949 .detect = genius_detect,
950 },
951 {
952 .type = PSMOUSE_IMPS,
953 .name = "ImPS/2",
954 .alias = "imps",
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700955 .maxproto = true,
Dmitry Torokhov6b9d363c2010-04-19 00:42:16 -0700956 .ignore_parity = true,
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500957 .detect = intellimouse_detect,
958 },
959 {
960 .type = PSMOUSE_IMEX,
961 .name = "ImExPS/2",
962 .alias = "exps",
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700963 .maxproto = true,
Dmitry Torokhov6b9d363c2010-04-19 00:42:16 -0700964 .ignore_parity = true,
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500965 .detect = im_explorer_detect,
966 },
Andres Salomon55e3d922007-03-10 01:39:54 -0500967#ifdef CONFIG_MOUSE_PS2_SYNAPTICS
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500968 {
969 .type = PSMOUSE_SYNAPTICS,
970 .name = "SynPS/2",
971 .alias = "synaptics",
972 .detect = synaptics_detect,
973 .init = synaptics_init,
974 },
Daniel Drake7968a5d2011-11-08 00:00:35 -0800975 {
976 .type = PSMOUSE_SYNAPTICS_RELATIVE,
977 .name = "SynRelPS/2",
978 .alias = "synaptics-relative",
979 .detect = synaptics_detect,
980 .init = synaptics_init_relative,
981 },
Andres Salomon55e3d922007-03-10 01:39:54 -0500982#endif
983#ifdef CONFIG_MOUSE_PS2_ALPS
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500984 {
985 .type = PSMOUSE_ALPS,
986 .name = "AlpsPS/2",
987 .alias = "alps",
988 .detect = alps_detect,
989 .init = alps_init,
990 },
Andres Salomon55e3d922007-03-10 01:39:54 -0500991#endif
992#ifdef CONFIG_MOUSE_PS2_LIFEBOOK
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500993 {
994 .type = PSMOUSE_LIFEBOOK,
995 .name = "LBPS/2",
996 .alias = "lifebook",
997 .init = lifebook_init,
998 },
Andres Salomon55e3d922007-03-10 01:39:54 -0500999#endif
1000#ifdef CONFIG_MOUSE_PS2_TRACKPOINT
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001001 {
Stephen Evanchik541e3162005-08-08 01:26:18 -05001002 .type = PSMOUSE_TRACKPOINT,
1003 .name = "TPPS/2",
1004 .alias = "trackpoint",
1005 .detect = trackpoint_detect,
1006 },
Andres Salomon55e3d922007-03-10 01:39:54 -05001007#endif
1008#ifdef CONFIG_MOUSE_PS2_TOUCHKIT
Stephen Evanchik541e3162005-08-08 01:26:18 -05001009 {
Stefan Lucke24bf10a2007-02-18 01:49:10 -05001010 .type = PSMOUSE_TOUCHKIT_PS2,
1011 .name = "touchkitPS/2",
1012 .alias = "touchkit",
1013 .detect = touchkit_ps2_detect,
1014 },
Andres Salomon55e3d922007-03-10 01:39:54 -05001015#endif
Andres Salomondf08ef22008-09-16 12:30:34 -04001016#ifdef CONFIG_MOUSE_PS2_OLPC
1017 {
1018 .type = PSMOUSE_HGPK,
1019 .name = "OLPC HGPK",
1020 .alias = "hgpk",
1021 .detect = hgpk_detect,
1022 },
1023#endif
Arjan Opmeer2a0bd752008-10-16 22:10:19 -04001024#ifdef CONFIG_MOUSE_PS2_ELANTECH
1025 {
1026 .type = PSMOUSE_ELANTECH,
1027 .name = "ETPS/2",
1028 .alias = "elantech",
1029 .detect = elantech_detect,
1030 .init = elantech_init,
1031 },
Tai-hwa Liangfc69f4a2009-05-10 18:15:39 -07001032#endif
1033#ifdef CONFIG_MOUSE_PS2_SENTELIC
1034 {
1035 .type = PSMOUSE_FSP,
1036 .name = "FSPPS/2",
1037 .alias = "fsp",
1038 .detect = fsp_detect,
1039 .init = fsp_init,
1040 },
1041#endif
Stefan Lucke24bf10a2007-02-18 01:49:10 -05001042 {
Aristeu Rozanskiaea6a462007-05-10 01:47:18 -04001043 .type = PSMOUSE_CORTRON,
1044 .name = "CortronPS/2",
1045 .alias = "cortps",
1046 .detect = cortron_detect,
1047 },
1048 {
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001049 .type = PSMOUSE_AUTO,
1050 .name = "auto",
1051 .alias = "any",
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001052 .maxproto = true,
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001053 },
1054};
1055
Helge Dellere38de672006-09-10 21:54:39 -04001056static const struct psmouse_protocol *psmouse_protocol_by_type(enum psmouse_type type)
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001057{
1058 int i;
1059
1060 for (i = 0; i < ARRAY_SIZE(psmouse_protocols); i++)
1061 if (psmouse_protocols[i].type == type)
1062 return &psmouse_protocols[i];
1063
1064 WARN_ON(1);
1065 return &psmouse_protocols[0];
1066}
1067
Helge Dellere38de672006-09-10 21:54:39 -04001068static const struct psmouse_protocol *psmouse_protocol_by_name(const char *name, size_t len)
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001069{
Helge Dellere38de672006-09-10 21:54:39 -04001070 const struct psmouse_protocol *p;
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001071 int i;
1072
1073 for (i = 0; i < ARRAY_SIZE(psmouse_protocols); i++) {
1074 p = &psmouse_protocols[i];
1075
1076 if ((strlen(p->name) == len && !strncmp(p->name, name, len)) ||
1077 (strlen(p->alias) == len && !strncmp(p->alias, name, len)))
1078 return &psmouse_protocols[i];
1079 }
1080
1081 return NULL;
1082}
1083
1084
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085/*
1086 * psmouse_probe() probes for a PS/2 mouse.
1087 */
1088
1089static int psmouse_probe(struct psmouse *psmouse)
1090{
1091 struct ps2dev *ps2dev = &psmouse->ps2dev;
1092 unsigned char param[2];
1093
1094/*
1095 * First, we check if it's a mouse. It should send 0x00 or 0x03
1096 * in case of an IntelliMouse in 4-byte mode or 0x04 for IM Explorer.
Vojtech Pavlik7741e932005-05-28 02:11:42 -05001097 * Sunrex K8561 IR Keyboard/Mouse reports 0xff on second and subsequent
1098 * ID queries, probably due to a firmware bug.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 */
1100
1101 param[0] = 0xa5;
1102 if (ps2_command(ps2dev, param, PSMOUSE_CMD_GETID))
1103 return -1;
1104
Vojtech Pavlik7741e932005-05-28 02:11:42 -05001105 if (param[0] != 0x00 && param[0] != 0x03 &&
1106 param[0] != 0x04 && param[0] != 0xff)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 return -1;
1108
1109/*
1110 * Then we reset and disable the mouse so that it doesn't generate events.
1111 */
1112
1113 if (ps2_command(ps2dev, NULL, PSMOUSE_CMD_RESET_DIS))
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001114 psmouse_warn(psmouse, "Failed to reset mouse on %s\n",
1115 ps2dev->serio->phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
1117 return 0;
1118}
1119
1120/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 * psmouse_initialize() initializes the mouse to a sane state.
1122 */
1123
1124static void psmouse_initialize(struct psmouse *psmouse)
1125{
1126/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 * We set the mouse report rate, resolution and scaling.
1128 */
1129
1130 if (psmouse_max_proto != PSMOUSE_PS2) {
1131 psmouse->set_rate(psmouse, psmouse->rate);
1132 psmouse->set_resolution(psmouse, psmouse->resolution);
1133 ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_SETSCALE11);
1134 }
1135}
1136
1137/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 * psmouse_activate() enables the mouse so that we get motion reports from it.
1139 */
1140
Andres Salomonbd26f3d2012-02-24 00:51:37 -08001141int psmouse_activate(struct psmouse *psmouse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142{
Andres Salomonbd26f3d2012-02-24 00:51:37 -08001143 if (ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_ENABLE)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001144 psmouse_warn(psmouse, "Failed to enable mouse on %s\n",
1145 psmouse->ps2dev.serio->phys);
Andres Salomonbd26f3d2012-02-24 00:51:37 -08001146 return -1;
1147 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
1149 psmouse_set_state(psmouse, PSMOUSE_ACTIVATED);
Andres Salomonbd26f3d2012-02-24 00:51:37 -08001150 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151}
1152
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153/*
1154 * psmouse_deactivate() puts the mouse into poll mode so that we don't get motion
Jean Delvarec03983a2007-10-19 23:22:55 +02001155 * reports from it unless we explicitly request it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 */
1157
Andres Salomonbd26f3d2012-02-24 00:51:37 -08001158int psmouse_deactivate(struct psmouse *psmouse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159{
Andres Salomonbd26f3d2012-02-24 00:51:37 -08001160 if (ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_DISABLE)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001161 psmouse_warn(psmouse, "Failed to deactivate mouse on %s\n",
1162 psmouse->ps2dev.serio->phys);
Andres Salomonbd26f3d2012-02-24 00:51:37 -08001163 return -1;
1164 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
1166 psmouse_set_state(psmouse, PSMOUSE_CMD_MODE);
Andres Salomonbd26f3d2012-02-24 00:51:37 -08001167 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168}
1169
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001170
1171/*
1172 * psmouse_resync() attempts to re-validate current protocol.
1173 */
1174
David Howellsc4028952006-11-22 14:57:56 +00001175static void psmouse_resync(struct work_struct *work)
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001176{
David Howellsc4028952006-11-22 14:57:56 +00001177 struct psmouse *parent = NULL, *psmouse =
Andres Salomon8bf020e2008-09-16 12:30:33 -04001178 container_of(work, struct psmouse, resync_work.work);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001179 struct serio *serio = psmouse->ps2dev.serio;
1180 psmouse_ret_t rc = PSMOUSE_GOOD_DATA;
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001181 bool failed = false, enabled = false;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001182 int i;
1183
Ingo Molnarc14471d2006-02-19 00:22:11 -05001184 mutex_lock(&psmouse_mutex);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001185
1186 if (psmouse->state != PSMOUSE_RESYNCING)
1187 goto out;
1188
1189 if (serio->parent && serio->id.type == SERIO_PS_PSTHRU) {
1190 parent = serio_get_drvdata(serio->parent);
1191 psmouse_deactivate(parent);
1192 }
1193
1194/*
1195 * Some mice don't ACK commands sent while they are in the middle of
1196 * transmitting motion packet. To avoid delay we use ps2_sendbyte()
1197 * instead of ps2_command() which would wait for 200ms for an ACK
1198 * that may never come.
1199 * As an additional quirk ALPS touchpads may not only forget to ACK
1200 * disable command but will stop reporting taps, so if we see that
1201 * mouse at least once ACKs disable we will do full reconnect if ACK
1202 * is missing.
1203 */
1204 psmouse->num_resyncs++;
1205
1206 if (ps2_sendbyte(&psmouse->ps2dev, PSMOUSE_CMD_DISABLE, 20)) {
1207 if (psmouse->num_resyncs < 3 || psmouse->acks_disable_command)
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001208 failed = true;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001209 } else
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001210 psmouse->acks_disable_command = true;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001211
1212/*
1213 * Poll the mouse. If it was reset the packet will be shorter than
1214 * psmouse->pktsize and ps2_command will fail. We do not expect and
1215 * do not handle scenario when mouse "upgrades" its protocol while
1216 * disconnected since it would require additional delay. If we ever
1217 * see a mouse that does it we'll adjust the code.
1218 */
1219 if (!failed) {
1220 if (psmouse->poll(psmouse))
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001221 failed = true;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001222 else {
1223 psmouse_set_state(psmouse, PSMOUSE_CMD_MODE);
1224 for (i = 0; i < psmouse->pktsize; i++) {
1225 psmouse->pktcnt++;
David Howells7d12e782006-10-05 14:55:46 +01001226 rc = psmouse->protocol_handler(psmouse);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001227 if (rc != PSMOUSE_GOOD_DATA)
1228 break;
1229 }
1230 if (rc != PSMOUSE_FULL_PACKET)
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001231 failed = true;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001232 psmouse_set_state(psmouse, PSMOUSE_RESYNCING);
1233 }
1234 }
1235/*
1236 * Now try to enable mouse. We try to do that even if poll failed and also
1237 * repeat our attempts 5 times, otherwise we may be left out with disabled
1238 * mouse.
1239 */
1240 for (i = 0; i < 5; i++) {
1241 if (!ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_ENABLE)) {
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001242 enabled = true;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001243 break;
1244 }
1245 msleep(200);
1246 }
1247
1248 if (!enabled) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001249 psmouse_warn(psmouse, "failed to re-enable mouse on %s\n",
1250 psmouse->ps2dev.serio->phys);
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001251 failed = true;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001252 }
1253
1254 if (failed) {
1255 psmouse_set_state(psmouse, PSMOUSE_IGNORE);
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001256 psmouse_info(psmouse,
1257 "resync failed, issuing reconnect request\n");
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001258 serio_reconnect(serio);
1259 } else
1260 psmouse_set_state(psmouse, PSMOUSE_ACTIVATED);
1261
1262 if (parent)
1263 psmouse_activate(parent);
1264 out:
Ingo Molnarc14471d2006-02-19 00:22:11 -05001265 mutex_unlock(&psmouse_mutex);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001266}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
1268/*
1269 * psmouse_cleanup() resets the mouse into power-on state.
1270 */
1271
1272static void psmouse_cleanup(struct serio *serio)
1273{
1274 struct psmouse *psmouse = serio_get_drvdata(serio);
Dmitry Torokhova1cec062007-02-18 01:40:24 -05001275 struct psmouse *parent = NULL;
1276
1277 mutex_lock(&psmouse_mutex);
1278
1279 if (serio->parent && serio->id.type == SERIO_PS_PSTHRU) {
1280 parent = serio_get_drvdata(serio->parent);
1281 psmouse_deactivate(parent);
1282 }
1283
Dmitry Torokhova9f0c382010-02-07 23:10:04 -08001284 psmouse_set_state(psmouse, PSMOUSE_INITIALIZING);
1285
1286 /*
1287 * Disable stream mode so cleanup routine can proceed undisturbed.
1288 */
1289 if (ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_DISABLE))
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001290 psmouse_warn(psmouse, "Failed to disable mouse on %s\n",
1291 psmouse->ps2dev.serio->phys);
Dmitry Torokhova1cec062007-02-18 01:40:24 -05001292
1293 if (psmouse->cleanup)
1294 psmouse->cleanup(psmouse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
Dmitry Torokhov4a299bf2009-12-24 21:40:24 -08001296/*
1297 * Reset the mouse to defaults (bare PS/2 protocol).
1298 */
1299 ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_RESET_DIS);
Dmitry Torokhova1cec062007-02-18 01:40:24 -05001300
1301/*
1302 * Some boxes, such as HP nx7400, get terribly confused if mouse
1303 * is not fully enabled before suspending/shutting down.
1304 */
1305 ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_ENABLE);
1306
1307 if (parent) {
1308 if (parent->pt_deactivate)
1309 parent->pt_deactivate(parent);
1310
1311 psmouse_activate(parent);
1312 }
1313
1314 mutex_unlock(&psmouse_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315}
1316
1317/*
1318 * psmouse_disconnect() closes and frees.
1319 */
1320
1321static void psmouse_disconnect(struct serio *serio)
1322{
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001323 struct psmouse *psmouse, *parent = NULL;
1324
1325 psmouse = serio_get_drvdata(serio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001327 sysfs_remove_group(&serio->dev.kobj, &psmouse_attribute_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
Ingo Molnarc14471d2006-02-19 00:22:11 -05001329 mutex_lock(&psmouse_mutex);
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001330
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 psmouse_set_state(psmouse, PSMOUSE_CMD_MODE);
1332
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001333 /* make sure we don't have a resync in progress */
Ingo Molnarc14471d2006-02-19 00:22:11 -05001334 mutex_unlock(&psmouse_mutex);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001335 flush_workqueue(kpsmoused_wq);
Ingo Molnarc14471d2006-02-19 00:22:11 -05001336 mutex_lock(&psmouse_mutex);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001337
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 if (serio->parent && serio->id.type == SERIO_PS_PSTHRU) {
1339 parent = serio_get_drvdata(serio->parent);
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001340 psmouse_deactivate(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 }
1342
1343 if (psmouse->disconnect)
1344 psmouse->disconnect(psmouse);
1345
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001346 if (parent && parent->pt_deactivate)
1347 parent->pt_deactivate(parent);
1348
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 psmouse_set_state(psmouse, PSMOUSE_IGNORE);
1350
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 serio_close(serio);
1352 serio_set_drvdata(serio, NULL);
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001353 input_unregister_device(psmouse->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 kfree(psmouse);
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001355
1356 if (parent)
1357 psmouse_activate(parent);
1358
Ingo Molnarc14471d2006-02-19 00:22:11 -05001359 mutex_unlock(&psmouse_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360}
1361
Dmitry Torokhov315eb992009-11-16 22:12:21 -08001362static int psmouse_switch_protocol(struct psmouse *psmouse,
1363 const struct psmouse_protocol *proto)
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001364{
Dmitry Torokhov6b9d363c2010-04-19 00:42:16 -07001365 const struct psmouse_protocol *selected_proto;
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001366 struct input_dev *input_dev = psmouse->dev;
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001367
Dmitry Torokhov28aa7f12007-04-12 01:35:09 -04001368 input_dev->dev.parent = &psmouse->ps2dev.serio->dev;
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001369
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001370 if (proto && (proto->detect || proto->init)) {
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -08001371 psmouse_apply_defaults(psmouse);
1372
Dmitry Torokhova62f0d22010-05-19 10:39:17 -07001373 if (proto->detect && proto->detect(psmouse, true) < 0)
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001374 return -1;
1375
1376 if (proto->init && proto->init(psmouse) < 0)
1377 return -1;
1378
1379 psmouse->type = proto->type;
Dmitry Torokhov6b9d363c2010-04-19 00:42:16 -07001380 selected_proto = proto;
1381 } else {
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001382 psmouse->type = psmouse_extensions(psmouse,
1383 psmouse_max_proto, true);
Dmitry Torokhov6b9d363c2010-04-19 00:42:16 -07001384 selected_proto = psmouse_protocol_by_type(psmouse->type);
1385 }
1386
1387 psmouse->ignore_parity = selected_proto->ignore_parity;
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001388
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001389 /*
1390 * If mouse's packet size is 3 there is no point in polling the
1391 * device in hopes to detect protocol reset - we won't get less
1392 * than 3 bytes response anyhow.
1393 */
1394 if (psmouse->pktsize == 3)
1395 psmouse->resync_time = 0;
1396
1397 /*
1398 * Some smart KVMs fake response to POLL command returning just
1399 * 3 bytes and messing up our resync logic, so if initial poll
1400 * fails we won't try polling the device anymore. Hopefully
1401 * such KVM will maintain initially selected protocol.
1402 */
1403 if (psmouse->resync_time && psmouse->poll(psmouse))
1404 psmouse->resync_time = 0;
1405
Dmitry Torokhov08ffce42006-06-26 01:45:10 -04001406 snprintf(psmouse->devname, sizeof(psmouse->devname), "%s %s %s",
Dmitry Torokhov6b9d363c2010-04-19 00:42:16 -07001407 selected_proto->name, psmouse->vendor, psmouse->name);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001408
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001409 input_dev->name = psmouse->devname;
1410 input_dev->phys = psmouse->phys;
1411 input_dev->id.bustype = BUS_I8042;
1412 input_dev->id.vendor = 0x0002;
1413 input_dev->id.product = psmouse->type;
1414 input_dev->id.version = psmouse->model;
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001415
1416 return 0;
1417}
1418
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419/*
1420 * psmouse_connect() is a callback from the serio module when
1421 * an unhandled serio port is found.
1422 */
1423static int psmouse_connect(struct serio *serio, struct serio_driver *drv)
1424{
1425 struct psmouse *psmouse, *parent = NULL;
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001426 struct input_dev *input_dev;
Dmitry Torokhov72155612006-11-05 22:40:19 -05001427 int retval = 0, error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
Ingo Molnarc14471d2006-02-19 00:22:11 -05001429 mutex_lock(&psmouse_mutex);
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001430
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 /*
1432 * If this is a pass-through port deactivate parent so the device
1433 * connected to this port can be successfully identified
1434 */
1435 if (serio->parent && serio->id.type == SERIO_PS_PSTHRU) {
1436 parent = serio_get_drvdata(serio->parent);
1437 psmouse_deactivate(parent);
1438 }
1439
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001440 psmouse = kzalloc(sizeof(struct psmouse), GFP_KERNEL);
1441 input_dev = input_allocate_device();
1442 if (!psmouse || !input_dev)
Dmitry Torokhov72155612006-11-05 22:40:19 -05001443 goto err_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 ps2_init(&psmouse->ps2dev, serio);
Andres Salomon8bf020e2008-09-16 12:30:33 -04001446 INIT_DELAYED_WORK(&psmouse->resync_work, psmouse_resync);
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001447 psmouse->dev = input_dev;
Dmitry Torokhov08ffce42006-06-26 01:45:10 -04001448 snprintf(psmouse->phys, sizeof(psmouse->phys), "%s/input0", serio->phys);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001449
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 psmouse_set_state(psmouse, PSMOUSE_INITIALIZING);
1451
1452 serio_set_drvdata(serio, psmouse);
1453
Dmitry Torokhov72155612006-11-05 22:40:19 -05001454 error = serio_open(serio, drv);
1455 if (error)
1456 goto err_clear_drvdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
1458 if (psmouse_probe(psmouse) < 0) {
Dmitry Torokhov72155612006-11-05 22:40:19 -05001459 error = -ENODEV;
1460 goto err_close_serio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 }
1462
1463 psmouse->rate = psmouse_rate;
1464 psmouse->resolution = psmouse_resolution;
1465 psmouse->resetafter = psmouse_resetafter;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001466 psmouse->resync_time = parent ? 0 : psmouse_resync_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 psmouse->smartscroll = psmouse_smartscroll;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001469 psmouse_switch_protocol(psmouse, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 psmouse_set_state(psmouse, PSMOUSE_CMD_MODE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 psmouse_initialize(psmouse);
1473
Dmitry Torokhov72155612006-11-05 22:40:19 -05001474 error = input_register_device(psmouse->dev);
1475 if (error)
1476 goto err_protocol_disconnect;
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001477
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 if (parent && parent->pt_activate)
1479 parent->pt_activate(parent);
1480
Dmitry Torokhov72155612006-11-05 22:40:19 -05001481 error = sysfs_create_group(&serio->dev.kobj, &psmouse_attribute_group);
1482 if (error)
1483 goto err_pt_deactivate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
1485 psmouse_activate(psmouse);
1486
Dmitry Torokhov72155612006-11-05 22:40:19 -05001487 out:
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001488 /* If this is a pass-through port the parent needs to be re-activated */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 if (parent)
1490 psmouse_activate(parent);
1491
Ingo Molnarc14471d2006-02-19 00:22:11 -05001492 mutex_unlock(&psmouse_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 return retval;
Dmitry Torokhov72155612006-11-05 22:40:19 -05001494
1495 err_pt_deactivate:
1496 if (parent && parent->pt_deactivate)
1497 parent->pt_deactivate(parent);
Andres Salomon746b31a2008-01-17 12:01:30 -05001498 input_unregister_device(psmouse->dev);
1499 input_dev = NULL; /* so we don't try to free it below */
Dmitry Torokhov72155612006-11-05 22:40:19 -05001500 err_protocol_disconnect:
1501 if (psmouse->disconnect)
1502 psmouse->disconnect(psmouse);
1503 psmouse_set_state(psmouse, PSMOUSE_IGNORE);
1504 err_close_serio:
1505 serio_close(serio);
1506 err_clear_drvdata:
1507 serio_set_drvdata(serio, NULL);
1508 err_free:
1509 input_free_device(input_dev);
1510 kfree(psmouse);
1511
1512 retval = error;
1513 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514}
1515
1516
1517static int psmouse_reconnect(struct serio *serio)
1518{
1519 struct psmouse *psmouse = serio_get_drvdata(serio);
1520 struct psmouse *parent = NULL;
1521 struct serio_driver *drv = serio->drv;
Dmitry Torokhovef110b22010-05-13 00:42:23 -07001522 unsigned char type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 int rc = -1;
1524
1525 if (!drv || !psmouse) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001526 psmouse_dbg(psmouse,
1527 "reconnect request, but serio is disconnected, ignoring...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 return -1;
1529 }
1530
Ingo Molnarc14471d2006-02-19 00:22:11 -05001531 mutex_lock(&psmouse_mutex);
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001532
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 if (serio->parent && serio->id.type == SERIO_PS_PSTHRU) {
1534 parent = serio_get_drvdata(serio->parent);
1535 psmouse_deactivate(parent);
1536 }
1537
1538 psmouse_set_state(psmouse, PSMOUSE_INITIALIZING);
1539
1540 if (psmouse->reconnect) {
1541 if (psmouse->reconnect(psmouse))
1542 goto out;
Dmitry Torokhovef110b22010-05-13 00:42:23 -07001543 } else {
1544 psmouse_reset(psmouse);
1545
1546 if (psmouse_probe(psmouse) < 0)
1547 goto out;
1548
1549 type = psmouse_extensions(psmouse, psmouse_max_proto, false);
1550 if (psmouse->type != type)
1551 goto out;
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001552 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001554 /*
1555 * OK, the device type (and capabilities) match the old one,
1556 * we can continue using it, complete initialization
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 */
1558 psmouse_set_state(psmouse, PSMOUSE_CMD_MODE);
1559
1560 psmouse_initialize(psmouse);
1561
1562 if (parent && parent->pt_activate)
1563 parent->pt_activate(parent);
1564
1565 psmouse_activate(psmouse);
1566 rc = 0;
1567
1568out:
1569 /* If this is a pass-through port the parent waits to be activated */
1570 if (parent)
1571 psmouse_activate(parent);
1572
Ingo Molnarc14471d2006-02-19 00:22:11 -05001573 mutex_unlock(&psmouse_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 return rc;
1575}
1576
1577static struct serio_device_id psmouse_serio_ids[] = {
1578 {
1579 .type = SERIO_8042,
1580 .proto = SERIO_ANY,
1581 .id = SERIO_ANY,
1582 .extra = SERIO_ANY,
1583 },
1584 {
1585 .type = SERIO_PS_PSTHRU,
1586 .proto = SERIO_ANY,
1587 .id = SERIO_ANY,
1588 .extra = SERIO_ANY,
1589 },
1590 { 0 }
1591};
1592
1593MODULE_DEVICE_TABLE(serio, psmouse_serio_ids);
1594
1595static struct serio_driver psmouse_drv = {
1596 .driver = {
1597 .name = "psmouse",
1598 },
1599 .description = DRIVER_DESC,
1600 .id_table = psmouse_serio_ids,
1601 .interrupt = psmouse_interrupt,
1602 .connect = psmouse_connect,
1603 .reconnect = psmouse_reconnect,
1604 .disconnect = psmouse_disconnect,
1605 .cleanup = psmouse_cleanup,
1606};
1607
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001608ssize_t psmouse_attr_show_helper(struct device *dev, struct device_attribute *devattr,
1609 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610{
1611 struct serio *serio = to_serio_port(dev);
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001612 struct psmouse_attribute *attr = to_psmouse_attr(devattr);
1613 struct psmouse *psmouse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001615 psmouse = serio_get_drvdata(serio);
1616
Eric W. Biederman59b01512010-01-05 17:56:02 -08001617 return attr->show(psmouse, attr->data, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618}
1619
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001620ssize_t psmouse_attr_set_helper(struct device *dev, struct device_attribute *devattr,
1621 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622{
1623 struct serio *serio = to_serio_port(dev);
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001624 struct psmouse_attribute *attr = to_psmouse_attr(devattr);
1625 struct psmouse *psmouse, *parent = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 int retval;
1627
Ingo Molnarc14471d2006-02-19 00:22:11 -05001628 retval = mutex_lock_interruptible(&psmouse_mutex);
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001629 if (retval)
Eric W. Biederman59b01512010-01-05 17:56:02 -08001630 goto out;
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001631
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001632 psmouse = serio_get_drvdata(serio);
1633
Andres Salomon68d48222008-09-16 12:30:34 -04001634 if (attr->protect) {
1635 if (psmouse->state == PSMOUSE_IGNORE) {
1636 retval = -ENODEV;
1637 goto out_unlock;
1638 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
Andres Salomon68d48222008-09-16 12:30:34 -04001640 if (serio->parent && serio->id.type == SERIO_PS_PSTHRU) {
1641 parent = serio_get_drvdata(serio->parent);
1642 psmouse_deactivate(parent);
1643 }
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001644
Andres Salomon68d48222008-09-16 12:30:34 -04001645 psmouse_deactivate(psmouse);
1646 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001648 retval = attr->set(psmouse, attr->data, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649
Andres Salomon68d48222008-09-16 12:30:34 -04001650 if (attr->protect) {
1651 if (retval != -ENODEV)
1652 psmouse_activate(psmouse);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001653
Andres Salomon68d48222008-09-16 12:30:34 -04001654 if (parent)
1655 psmouse_activate(parent);
1656 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
Ingo Molnarc14471d2006-02-19 00:22:11 -05001658 out_unlock:
1659 mutex_unlock(&psmouse_mutex);
Eric W. Biederman59b01512010-01-05 17:56:02 -08001660 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 return retval;
1662}
1663
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001664static ssize_t psmouse_show_int_attr(struct psmouse *psmouse, void *offset, char *buf)
1665{
Sergey Vlasoveb5d5822006-11-09 00:34:27 -05001666 unsigned int *field = (unsigned int *)((char *)psmouse + (size_t)offset);
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001667
Sergey Vlasoveb5d5822006-11-09 00:34:27 -05001668 return sprintf(buf, "%u\n", *field);
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001669}
1670
1671static ssize_t psmouse_set_int_attr(struct psmouse *psmouse, void *offset, const char *buf, size_t count)
1672{
Sergey Vlasoveb5d5822006-11-09 00:34:27 -05001673 unsigned int *field = (unsigned int *)((char *)psmouse + (size_t)offset);
JJ Ding76496e72011-11-09 10:20:14 -08001674 unsigned int value;
1675 int err;
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001676
JJ Ding76496e72011-11-09 10:20:14 -08001677 err = kstrtouint(buf, 10, &value);
1678 if (err)
1679 return err;
Sergey Vlasoveb5d5822006-11-09 00:34:27 -05001680
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001681 *field = value;
1682
1683 return count;
1684}
1685
1686static ssize_t psmouse_attr_show_protocol(struct psmouse *psmouse, void *data, char *buf)
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001687{
1688 return sprintf(buf, "%s\n", psmouse_protocol_by_type(psmouse->type)->name);
1689}
1690
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001691static ssize_t psmouse_attr_set_protocol(struct psmouse *psmouse, void *data, const char *buf, size_t count)
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001692{
1693 struct serio *serio = psmouse->ps2dev.serio;
1694 struct psmouse *parent = NULL;
Dmitry Torokhov72155612006-11-05 22:40:19 -05001695 struct input_dev *old_dev, *new_dev;
1696 const struct psmouse_protocol *proto, *old_proto;
1697 int error;
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001698 int retry = 0;
1699
Dmitry Torokhov72155612006-11-05 22:40:19 -05001700 proto = psmouse_protocol_by_name(buf, count);
1701 if (!proto)
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001702 return -EINVAL;
1703
1704 if (psmouse->type == proto->type)
1705 return count;
1706
Dmitry Torokhov72155612006-11-05 22:40:19 -05001707 new_dev = input_allocate_device();
1708 if (!new_dev)
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001709 return -ENOMEM;
1710
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -07001711 while (!list_empty(&serio->children)) {
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001712 if (++retry > 3) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001713 psmouse_warn(psmouse,
1714 "failed to destroy children ports, protocol change aborted.\n");
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001715 input_free_device(new_dev);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001716 return -EIO;
1717 }
1718
Ingo Molnarc14471d2006-02-19 00:22:11 -05001719 mutex_unlock(&psmouse_mutex);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001720 serio_unregister_child_port(serio);
Ingo Molnarc14471d2006-02-19 00:22:11 -05001721 mutex_lock(&psmouse_mutex);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001722
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001723 if (serio->drv != &psmouse_drv) {
1724 input_free_device(new_dev);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001725 return -ENODEV;
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001726 }
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001727
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001728 if (psmouse->type == proto->type) {
1729 input_free_device(new_dev);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001730 return count; /* switched by other thread */
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001731 }
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001732 }
1733
1734 if (serio->parent && serio->id.type == SERIO_PS_PSTHRU) {
1735 parent = serio_get_drvdata(serio->parent);
1736 if (parent->pt_deactivate)
1737 parent->pt_deactivate(parent);
1738 }
1739
Dmitry Torokhov72155612006-11-05 22:40:19 -05001740 old_dev = psmouse->dev;
1741 old_proto = psmouse_protocol_by_type(psmouse->type);
1742
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001743 if (psmouse->disconnect)
1744 psmouse->disconnect(psmouse);
1745
1746 psmouse_set_state(psmouse, PSMOUSE_IGNORE);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001747
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001748 psmouse->dev = new_dev;
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001749 psmouse_set_state(psmouse, PSMOUSE_INITIALIZING);
1750
1751 if (psmouse_switch_protocol(psmouse, proto) < 0) {
1752 psmouse_reset(psmouse);
1753 /* default to PSMOUSE_PS2 */
1754 psmouse_switch_protocol(psmouse, &psmouse_protocols[0]);
1755 }
1756
1757 psmouse_initialize(psmouse);
1758 psmouse_set_state(psmouse, PSMOUSE_CMD_MODE);
1759
Dmitry Torokhov72155612006-11-05 22:40:19 -05001760 error = input_register_device(psmouse->dev);
1761 if (error) {
1762 if (psmouse->disconnect)
1763 psmouse->disconnect(psmouse);
1764
1765 psmouse_set_state(psmouse, PSMOUSE_IGNORE);
1766 input_free_device(new_dev);
1767 psmouse->dev = old_dev;
1768 psmouse_set_state(psmouse, PSMOUSE_INITIALIZING);
1769 psmouse_switch_protocol(psmouse, old_proto);
1770 psmouse_initialize(psmouse);
1771 psmouse_set_state(psmouse, PSMOUSE_CMD_MODE);
1772
1773 return error;
1774 }
1775
1776 input_unregister_device(old_dev);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001777
1778 if (parent && parent->pt_activate)
1779 parent->pt_activate(parent);
1780
1781 return count;
1782}
1783
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001784static ssize_t psmouse_attr_set_rate(struct psmouse *psmouse, void *data, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785{
JJ Ding76496e72011-11-09 10:20:14 -08001786 unsigned int value;
1787 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
JJ Ding76496e72011-11-09 10:20:14 -08001789 err = kstrtouint(buf, 10, &value);
1790 if (err)
1791 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
1793 psmouse->set_rate(psmouse, value);
1794 return count;
1795}
1796
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001797static ssize_t psmouse_attr_set_resolution(struct psmouse *psmouse, void *data, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798{
JJ Ding76496e72011-11-09 10:20:14 -08001799 unsigned int value;
1800 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
JJ Ding76496e72011-11-09 10:20:14 -08001802 err = kstrtouint(buf, 10, &value);
1803 if (err)
1804 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
1806 psmouse->set_resolution(psmouse, value);
1807 return count;
1808}
1809
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810
Rusty Russell9bbb9e52010-08-11 23:04:12 -06001811static int psmouse_set_maxproto(const char *val, const struct kernel_param *kp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812{
Helge Dellere38de672006-09-10 21:54:39 -04001813 const struct psmouse_protocol *proto;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814
1815 if (!val)
1816 return -EINVAL;
1817
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001818 proto = psmouse_protocol_by_name(val, strlen(val));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001820 if (!proto || !proto->maxproto)
1821 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001823 *((unsigned int *)kp->arg) = proto->type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824
Stephen Evanchik541e3162005-08-08 01:26:18 -05001825 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826}
1827
Rusty Russell9bbb9e52010-08-11 23:04:12 -06001828static int psmouse_get_maxproto(char *buffer, const struct kernel_param *kp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829{
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001830 int type = *((unsigned int *)kp->arg);
1831
Takashi Iwai3d4c3aa2009-11-12 23:30:52 -08001832 return sprintf(buffer, "%s", psmouse_protocol_by_type(type)->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833}
1834
1835static int __init psmouse_init(void)
1836{
Akinobu Mita153a9df02006-11-23 23:35:10 -05001837 int err;
1838
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001839 lifebook_module_init();
1840 synaptics_module_init();
Daniel Drakeca94ec42010-11-11 22:19:57 -08001841 hgpk_module_init();
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001842
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001843 kpsmoused_wq = create_singlethread_workqueue("kpsmoused");
1844 if (!kpsmoused_wq) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001845 pr_err("failed to create kpsmoused workqueue\n");
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001846 return -ENOMEM;
1847 }
1848
Akinobu Mita153a9df02006-11-23 23:35:10 -05001849 err = serio_register_driver(&psmouse_drv);
1850 if (err)
1851 destroy_workqueue(kpsmoused_wq);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001852
Akinobu Mita153a9df02006-11-23 23:35:10 -05001853 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854}
1855
1856static void __exit psmouse_exit(void)
1857{
1858 serio_unregister_driver(&psmouse_drv);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001859 destroy_workqueue(kpsmoused_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860}
1861
1862module_init(psmouse_init);
1863module_exit(psmouse_exit);