blob: 401ac6b6edd43cca18b73b1663f731856f4f909b [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
14#include <linux/delay.h>
15#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/slab.h>
17#include <linux/interrupt.h>
18#include <linux/input.h>
19#include <linux/serio.h>
20#include <linux/init.h>
21#include <linux/libps2.h>
Ingo Molnarc14471d2006-02-19 00:22:11 -050022#include <linux/mutex.h>
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "psmouse.h"
25#include "synaptics.h"
26#include "logips2pp.h"
27#include "alps.h"
Andres Salomondf08ef22008-09-16 12:30:34 -040028#include "hgpk.h"
Kenan Esau02d7f582005-05-29 02:30:22 -050029#include "lifebook.h"
Stephen Evanchik541e3162005-08-08 01:26:18 -050030#include "trackpoint.h"
Stefan Lucke24bf10a2007-02-18 01:49:10 -050031#include "touchkit_ps2.h"
Arjan Opmeer2a0bd752008-10-16 22:10:19 -040032#include "elantech.h"
Tai-hwa Liangfc69f4a2009-05-10 18:15:39 -070033#include "sentelic.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35#define DRIVER_DESC "PS/2 mouse driver"
36
37MODULE_AUTHOR("Vojtech Pavlik <vojtech@suse.cz>");
38MODULE_DESCRIPTION(DRIVER_DESC);
39MODULE_LICENSE("GPL");
40
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -050041static unsigned int psmouse_max_proto = PSMOUSE_AUTO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042static int psmouse_set_maxproto(const char *val, struct kernel_param *kp);
43static int psmouse_get_maxproto(char *buffer, struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#define param_check_proto_abbrev(name, p) __param_check(name, p, unsigned int)
45#define param_set_proto_abbrev psmouse_set_maxproto
46#define param_get_proto_abbrev psmouse_get_maxproto
47module_param_named(proto, psmouse_max_proto, proto_abbrev, 0644);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -050048MODULE_PARM_DESC(proto, "Highest protocol extension to probe (bare, imps, exps, any). Useful for KVM switches.");
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50static unsigned int psmouse_resolution = 200;
51module_param_named(resolution, psmouse_resolution, uint, 0644);
52MODULE_PARM_DESC(resolution, "Resolution, in dpi.");
53
54static unsigned int psmouse_rate = 100;
55module_param_named(rate, psmouse_rate, uint, 0644);
56MODULE_PARM_DESC(rate, "Report rate, in reports per second.");
57
58static unsigned int psmouse_smartscroll = 1;
59module_param_named(smartscroll, psmouse_smartscroll, bool, 0644);
60MODULE_PARM_DESC(smartscroll, "Logitech Smartscroll autorepeat, 1 = enabled (default), 0 = disabled.");
61
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -050062static unsigned int psmouse_resetafter = 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063module_param_named(resetafter, psmouse_resetafter, uint, 0644);
64MODULE_PARM_DESC(resetafter, "Reset device after so many bad packets (0 = never).");
65
Dmitry Torokhov8bd0ee92006-03-11 00:23:38 -050066static unsigned int psmouse_resync_time;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -050067module_param_named(resync_time, psmouse_resync_time, uint, 0644);
68MODULE_PARM_DESC(resync_time, "How long can mouse stay idle before forcing resync (in seconds, 0 = never).");
69
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -050070PSMOUSE_DEFINE_ATTR(protocol, S_IWUSR | S_IRUGO,
71 NULL,
72 psmouse_attr_show_protocol, psmouse_attr_set_protocol);
73PSMOUSE_DEFINE_ATTR(rate, S_IWUSR | S_IRUGO,
74 (void *) offsetof(struct psmouse, rate),
75 psmouse_show_int_attr, psmouse_attr_set_rate);
76PSMOUSE_DEFINE_ATTR(resolution, S_IWUSR | S_IRUGO,
77 (void *) offsetof(struct psmouse, resolution),
78 psmouse_show_int_attr, psmouse_attr_set_resolution);
79PSMOUSE_DEFINE_ATTR(resetafter, S_IWUSR | S_IRUGO,
80 (void *) offsetof(struct psmouse, resetafter),
81 psmouse_show_int_attr, psmouse_set_int_attr);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -050082PSMOUSE_DEFINE_ATTR(resync_time, S_IWUSR | S_IRUGO,
83 (void *) offsetof(struct psmouse, resync_time),
84 psmouse_show_int_attr, psmouse_set_int_attr);
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -050085
86static struct attribute *psmouse_attributes[] = {
87 &psmouse_attr_protocol.dattr.attr,
88 &psmouse_attr_rate.dattr.attr,
89 &psmouse_attr_resolution.dattr.attr,
90 &psmouse_attr_resetafter.dattr.attr,
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -050091 &psmouse_attr_resync_time.dattr.attr,
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -050092 NULL
93};
94
95static struct attribute_group psmouse_attribute_group = {
96 .attrs = psmouse_attributes,
97};
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Dmitry Torokhov04df1922005-06-01 02:39:44 -050099/*
Ingo Molnarc14471d2006-02-19 00:22:11 -0500100 * psmouse_mutex protects all operations changing state of mouse
Dmitry Torokhov04df1922005-06-01 02:39:44 -0500101 * (connecting, disconnecting, changing rate or resolution via
102 * sysfs). We could use a per-device semaphore but since there
103 * rarely more than one PS/2 mouse connected and since semaphore
104 * is taken in "slow" paths it is not worth it.
105 */
Ingo Molnarc14471d2006-02-19 00:22:11 -0500106static DEFINE_MUTEX(psmouse_mutex);
Dmitry Torokhov04df1922005-06-01 02:39:44 -0500107
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500108static struct workqueue_struct *kpsmoused_wq;
109
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500110struct psmouse_protocol {
111 enum psmouse_type type;
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700112 bool maxproto;
Helge Dellere38de672006-09-10 21:54:39 -0400113 const char *name;
114 const char *alias;
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700115 int (*detect)(struct psmouse *, bool);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500116 int (*init)(struct psmouse *);
117};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119/*
120 * psmouse_process_byte() analyzes the PS/2 data stream and reports
121 * relevant events to the input module once full packet has arrived.
122 */
123
David Howells7d12e782006-10-05 14:55:46 +0100124static psmouse_ret_t psmouse_process_byte(struct psmouse *psmouse)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -0500126 struct input_dev *dev = psmouse->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 unsigned char *packet = psmouse->packet;
128
129 if (psmouse->pktcnt < psmouse->pktsize)
130 return PSMOUSE_GOOD_DATA;
131
132/*
133 * Full packet accumulated, process it
134 */
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136/*
137 * Scroll wheel on IntelliMice, scroll buttons on NetMice
138 */
139
140 if (psmouse->type == PSMOUSE_IMPS || psmouse->type == PSMOUSE_GENPS)
141 input_report_rel(dev, REL_WHEEL, -(signed char) packet[3]);
142
143/*
144 * Scroll wheel and buttons on IntelliMouse Explorer
145 */
146
147 if (psmouse->type == PSMOUSE_IMEX) {
Pozsar Balazsb0c9ad82006-06-26 01:56:08 -0400148 switch (packet[3] & 0xC0) {
149 case 0x80: /* vertical scroll on IntelliMouse Explorer 4.0 */
150 input_report_rel(dev, REL_WHEEL, (int) (packet[3] & 32) - (int) (packet[3] & 31));
151 break;
152 case 0x40: /* horizontal scroll on IntelliMouse Explorer 4.0 */
153 input_report_rel(dev, REL_HWHEEL, (int) (packet[3] & 32) - (int) (packet[3] & 31));
154 break;
155 case 0x00:
156 case 0xC0:
157 input_report_rel(dev, REL_WHEEL, (int) (packet[3] & 8) - (int) (packet[3] & 7));
158 input_report_key(dev, BTN_SIDE, (packet[3] >> 4) & 1);
159 input_report_key(dev, BTN_EXTRA, (packet[3] >> 5) & 1);
160 break;
161 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 }
163
164/*
165 * Extra buttons on Genius NewNet 3D
166 */
167
168 if (psmouse->type == PSMOUSE_GENPS) {
169 input_report_key(dev, BTN_SIDE, (packet[0] >> 6) & 1);
170 input_report_key(dev, BTN_EXTRA, (packet[0] >> 7) & 1);
171 }
172
173/*
174 * Extra button on ThinkingMouse
175 */
176 if (psmouse->type == PSMOUSE_THINKPS) {
177 input_report_key(dev, BTN_EXTRA, (packet[0] >> 3) & 1);
178 /* Without this bit of weirdness moving up gives wildly high Y changes. */
179 packet[1] |= (packet[0] & 0x40) << 1;
180 }
181
182/*
Aristeu Rozanskiaea6a462007-05-10 01:47:18 -0400183 * Cortron PS2 Trackball reports SIDE button on the 4th bit of the first
184 * byte.
185 */
186 if (psmouse->type == PSMOUSE_CORTRON) {
187 input_report_key(dev, BTN_SIDE, (packet[0] >> 3) & 1);
188 packet[0] |= 0x08;
189 }
190
191/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 * Generic PS/2 Mouse
193 */
194
195 input_report_key(dev, BTN_LEFT, packet[0] & 1);
196 input_report_key(dev, BTN_MIDDLE, (packet[0] >> 2) & 1);
197 input_report_key(dev, BTN_RIGHT, (packet[0] >> 1) & 1);
198
199 input_report_rel(dev, REL_X, packet[1] ? (int) packet[1] - (int) ((packet[0] << 4) & 0x100) : 0);
200 input_report_rel(dev, REL_Y, packet[2] ? (int) ((packet[0] << 3) & 0x100) - (int) packet[2] : 0);
201
202 input_sync(dev);
203
204 return PSMOUSE_FULL_PACKET;
205}
206
Andres Salomon8bf020e2008-09-16 12:30:33 -0400207void psmouse_queue_work(struct psmouse *psmouse, struct delayed_work *work,
208 unsigned long delay)
209{
210 queue_delayed_work(kpsmoused_wq, work, delay);
211}
212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213/*
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500214 * __psmouse_set_state() sets new psmouse state and resets all flags.
215 */
216
217static inline void __psmouse_set_state(struct psmouse *psmouse, enum psmouse_state new_state)
218{
219 psmouse->state = new_state;
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700220 psmouse->pktcnt = psmouse->out_of_sync_cnt = 0;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500221 psmouse->ps2dev.flags = 0;
222 psmouse->last = jiffies;
223}
224
225
226/*
227 * psmouse_set_state() sets new psmouse state and resets all flags and
228 * counters while holding serio lock so fighting with interrupt handler
229 * is not a concern.
230 */
231
Andres Salomona48cf5f2008-09-16 12:30:33 -0400232void psmouse_set_state(struct psmouse *psmouse, enum psmouse_state new_state)
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500233{
234 serio_pause_rx(psmouse->ps2dev.serio);
235 __psmouse_set_state(psmouse, new_state);
236 serio_continue_rx(psmouse->ps2dev.serio);
237}
238
239/*
240 * psmouse_handle_byte() processes one byte of the input data stream
241 * by calling corresponding protocol handler.
242 */
243
David Howells7d12e782006-10-05 14:55:46 +0100244static int psmouse_handle_byte(struct psmouse *psmouse)
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500245{
David Howells7d12e782006-10-05 14:55:46 +0100246 psmouse_ret_t rc = psmouse->protocol_handler(psmouse);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500247
248 switch (rc) {
249 case PSMOUSE_BAD_DATA:
250 if (psmouse->state == PSMOUSE_ACTIVATED) {
251 printk(KERN_WARNING "psmouse.c: %s at %s lost sync at byte %d\n",
252 psmouse->name, psmouse->phys, psmouse->pktcnt);
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700253 if (++psmouse->out_of_sync_cnt == psmouse->resetafter) {
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500254 __psmouse_set_state(psmouse, PSMOUSE_IGNORE);
255 printk(KERN_NOTICE "psmouse.c: issuing reconnect request\n");
256 serio_reconnect(psmouse->ps2dev.serio);
257 return -1;
258 }
259 }
260 psmouse->pktcnt = 0;
261 break;
262
263 case PSMOUSE_FULL_PACKET:
264 psmouse->pktcnt = 0;
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700265 if (psmouse->out_of_sync_cnt) {
266 psmouse->out_of_sync_cnt = 0;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500267 printk(KERN_NOTICE "psmouse.c: %s at %s - driver resynched.\n",
268 psmouse->name, psmouse->phys);
269 }
270 break;
271
272 case PSMOUSE_GOOD_DATA:
273 break;
274 }
275 return 0;
276}
277
278/*
279 * psmouse_interrupt() handles incoming characters, either passing them
280 * for normal processing or gathering them as command response.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 */
282
283static irqreturn_t psmouse_interrupt(struct serio *serio,
David Howells7d12e782006-10-05 14:55:46 +0100284 unsigned char data, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
286 struct psmouse *psmouse = serio_get_drvdata(serio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 if (psmouse->state == PSMOUSE_IGNORE)
289 goto out;
290
291 if (flags & (SERIO_PARITY|SERIO_TIMEOUT)) {
292 if (psmouse->state == PSMOUSE_ACTIVATED)
293 printk(KERN_WARNING "psmouse.c: bad data from KBC -%s%s\n",
294 flags & SERIO_TIMEOUT ? " timeout" : "",
295 flags & SERIO_PARITY ? " bad parity" : "");
296 ps2_cmd_aborted(&psmouse->ps2dev);
297 goto out;
298 }
299
300 if (unlikely(psmouse->ps2dev.flags & PS2_FLAG_ACK))
301 if (ps2_handle_ack(&psmouse->ps2dev, data))
302 goto out;
303
304 if (unlikely(psmouse->ps2dev.flags & PS2_FLAG_CMD))
305 if (ps2_handle_response(&psmouse->ps2dev, data))
306 goto out;
307
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500308 if (psmouse->state <= PSMOUSE_RESYNCING)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 goto out;
310
311 if (psmouse->state == PSMOUSE_ACTIVATED &&
312 psmouse->pktcnt && time_after(jiffies, psmouse->last + HZ/2)) {
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500313 printk(KERN_INFO "psmouse.c: %s at %s lost synchronization, throwing %d bytes away.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 psmouse->name, psmouse->phys, psmouse->pktcnt);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500315 psmouse->badbyte = psmouse->packet[0];
316 __psmouse_set_state(psmouse, PSMOUSE_RESYNCING);
Andres Salomon8bf020e2008-09-16 12:30:33 -0400317 psmouse_queue_work(psmouse, &psmouse->resync_work, 0);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500318 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 }
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 psmouse->packet[psmouse->pktcnt++] = data;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500322/*
323 * Check if this is a new device announcement (0xAA 0x00)
324 */
325 if (unlikely(psmouse->packet[0] == PSMOUSE_RET_BAT && psmouse->pktcnt <= 2)) {
Dmitry Torokhov89c9b482006-04-29 01:12:44 -0400326 if (psmouse->pktcnt == 1) {
327 psmouse->last = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 goto out;
Dmitry Torokhov89c9b482006-04-29 01:12:44 -0400329 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Zephaniah E. Hull535650f2009-05-14 22:02:33 -0700331 if (psmouse->packet[1] == PSMOUSE_RET_ID ||
332 (psmouse->type == PSMOUSE_HGPK &&
333 psmouse->packet[1] == PSMOUSE_RET_BAT)) {
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500334 __psmouse_set_state(psmouse, PSMOUSE_IGNORE);
335 serio_reconnect(serio);
336 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 }
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500338/*
339 * Not a new device, try processing first byte normally
340 */
341 psmouse->pktcnt = 1;
David Howells7d12e782006-10-05 14:55:46 +0100342 if (psmouse_handle_byte(psmouse))
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500343 goto out;
344
345 psmouse->packet[psmouse->pktcnt++] = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 }
347
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500348/*
349 * See if we need to force resync because mouse was idle for too long
350 */
351 if (psmouse->state == PSMOUSE_ACTIVATED &&
352 psmouse->pktcnt == 1 && psmouse->resync_time &&
353 time_after(jiffies, psmouse->last + psmouse->resync_time * HZ)) {
354 psmouse->badbyte = psmouse->packet[0];
355 __psmouse_set_state(psmouse, PSMOUSE_RESYNCING);
Andres Salomon8bf020e2008-09-16 12:30:33 -0400356 psmouse_queue_work(psmouse, &psmouse->resync_work, 0);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500357 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 }
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500359
360 psmouse->last = jiffies;
David Howells7d12e782006-10-05 14:55:46 +0100361 psmouse_handle_byte(psmouse);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500362
363 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 return IRQ_HANDLED;
365}
366
367
368/*
369 * psmouse_sliced_command() sends an extended PS/2 command to the mouse
370 * using sliced syntax, understood by advanced devices, such as Logitech
371 * or Synaptics touchpads. The command is encoded as:
372 * 0xE6 0xE8 rr 0xE8 ss 0xE8 tt 0xE8 uu where (rr*64)+(ss*16)+(tt*4)+uu
373 * is the command.
374 */
375int psmouse_sliced_command(struct psmouse *psmouse, unsigned char command)
376{
377 int i;
378
379 if (ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_SETSCALE11))
380 return -1;
381
382 for (i = 6; i >= 0; i -= 2) {
383 unsigned char d = (command >> i) & 3;
384 if (ps2_command(&psmouse->ps2dev, &d, PSMOUSE_CMD_SETRES))
385 return -1;
386 }
387
388 return 0;
389}
390
391
392/*
393 * psmouse_reset() resets the mouse into power-on state.
394 */
395int psmouse_reset(struct psmouse *psmouse)
396{
397 unsigned char param[2];
398
399 if (ps2_command(&psmouse->ps2dev, param, PSMOUSE_CMD_RESET_BAT))
400 return -1;
401
402 if (param[0] != PSMOUSE_RET_BAT && param[1] != PSMOUSE_RET_ID)
403 return -1;
404
405 return 0;
406}
407
408
409/*
410 * Genius NetMouse magic init.
411 */
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700412static int genius_detect(struct psmouse *psmouse, bool set_properties)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413{
414 struct ps2dev *ps2dev = &psmouse->ps2dev;
415 unsigned char param[4];
416
417 param[0] = 3;
418 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES);
419 ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11);
420 ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11);
421 ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11);
422 ps2_command(ps2dev, param, PSMOUSE_CMD_GETINFO);
423
424 if (param[0] != 0x00 || param[1] != 0x33 || param[2] != 0x55)
425 return -1;
426
427 if (set_properties) {
Dmitry Torokhov315eb992009-11-16 22:12:21 -0800428 __set_bit(BTN_MIDDLE, psmouse->dev->keybit);
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700429 __set_bit(BTN_EXTRA, psmouse->dev->keybit);
430 __set_bit(BTN_SIDE, psmouse->dev->keybit);
431 __set_bit(REL_WHEEL, psmouse->dev->relbit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
433 psmouse->vendor = "Genius";
Dmitry Torokhova3f3f312006-01-29 21:50:46 -0500434 psmouse->name = "Mouse";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 psmouse->pktsize = 4;
436 }
437
438 return 0;
439}
440
441/*
442 * IntelliMouse magic init.
443 */
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700444static int intellimouse_detect(struct psmouse *psmouse, bool set_properties)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
446 struct ps2dev *ps2dev = &psmouse->ps2dev;
447 unsigned char param[2];
448
449 param[0] = 200;
450 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
451 param[0] = 100;
452 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
453 param[0] = 80;
454 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
455 ps2_command(ps2dev, param, PSMOUSE_CMD_GETID);
456
457 if (param[0] != 3)
458 return -1;
459
460 if (set_properties) {
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700461 __set_bit(BTN_MIDDLE, psmouse->dev->keybit);
462 __set_bit(REL_WHEEL, psmouse->dev->relbit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Dmitry Torokhov315eb992009-11-16 22:12:21 -0800464 if (!psmouse->vendor)
465 psmouse->vendor = "Generic";
466 if (!psmouse->name)
467 psmouse->name = "Wheel Mouse";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 psmouse->pktsize = 4;
469 }
470
471 return 0;
472}
473
474/*
475 * Try IntelliMouse/Explorer magic init.
476 */
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700477static int im_explorer_detect(struct psmouse *psmouse, bool set_properties)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
479 struct ps2dev *ps2dev = &psmouse->ps2dev;
480 unsigned char param[2];
481
482 intellimouse_detect(psmouse, 0);
483
484 param[0] = 200;
485 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
486 param[0] = 200;
487 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
488 param[0] = 80;
489 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
490 ps2_command(ps2dev, param, PSMOUSE_CMD_GETID);
491
492 if (param[0] != 4)
493 return -1;
494
Pozsar Balazsb0c9ad82006-06-26 01:56:08 -0400495/* Magic to enable horizontal scrolling on IntelliMouse 4.0 */
496 param[0] = 200;
497 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
498 param[0] = 80;
499 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
500 param[0] = 40;
501 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 if (set_properties) {
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700504 __set_bit(BTN_MIDDLE, psmouse->dev->keybit);
505 __set_bit(REL_WHEEL, psmouse->dev->relbit);
506 __set_bit(REL_HWHEEL, psmouse->dev->relbit);
507 __set_bit(BTN_SIDE, psmouse->dev->keybit);
508 __set_bit(BTN_EXTRA, psmouse->dev->keybit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Dmitry Torokhov315eb992009-11-16 22:12:21 -0800510 if (!psmouse->vendor)
511 psmouse->vendor = "Generic";
512 if (!psmouse->name)
513 psmouse->name = "Explorer Mouse";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 psmouse->pktsize = 4;
515 }
516
517 return 0;
518}
519
520/*
521 * Kensington ThinkingMouse / ExpertMouse magic init.
522 */
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700523static int thinking_detect(struct psmouse *psmouse, bool set_properties)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
525 struct ps2dev *ps2dev = &psmouse->ps2dev;
526 unsigned char param[2];
Helge Dellere38de672006-09-10 21:54:39 -0400527 static const unsigned char seq[] = { 20, 60, 40, 20, 20, 60, 40, 20, 20 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 int i;
529
530 param[0] = 10;
531 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
532 param[0] = 0;
533 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES);
Helge Dellere38de672006-09-10 21:54:39 -0400534 for (i = 0; i < ARRAY_SIZE(seq); i++) {
535 param[0] = seq[i];
536 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
537 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 ps2_command(ps2dev, param, PSMOUSE_CMD_GETID);
539
540 if (param[0] != 2)
541 return -1;
542
543 if (set_properties) {
Dmitry Torokhov315eb992009-11-16 22:12:21 -0800544 __set_bit(BTN_MIDDLE, psmouse->dev->keybit);
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700545 __set_bit(BTN_EXTRA, psmouse->dev->keybit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
547 psmouse->vendor = "Kensington";
548 psmouse->name = "ThinkingMouse";
549 }
550
551 return 0;
552}
553
554/*
555 * Bare PS/2 protocol "detection". Always succeeds.
556 */
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700557static int ps2bare_detect(struct psmouse *psmouse, bool set_properties)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558{
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500559 if (set_properties) {
Dmitry Torokhov315eb992009-11-16 22:12:21 -0800560 if (!psmouse->vendor)
561 psmouse->vendor = "Generic";
562 if (!psmouse->name)
563 psmouse->name = "Mouse";
564
565/*
566 * We have no way of figuring true number of buttons so let's
567 * assume that the device has 3.
568 */
569 __set_bit(BTN_MIDDLE, psmouse->dev->keybit);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
572 return 0;
573}
574
Aristeu Rozanskiaea6a462007-05-10 01:47:18 -0400575/*
576 * Cortron PS/2 protocol detection. There's no special way to detect it, so it
577 * must be forced by sysfs protocol writing.
578 */
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700579static int cortron_detect(struct psmouse *psmouse, bool set_properties)
Aristeu Rozanskiaea6a462007-05-10 01:47:18 -0400580{
581 if (set_properties) {
582 psmouse->vendor = "Cortron";
583 psmouse->name = "PS/2 Trackball";
Dmitry Torokhov315eb992009-11-16 22:12:21 -0800584
585 __set_bit(BTN_MIDDLE, psmouse->dev->keybit);
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700586 __set_bit(BTN_SIDE, psmouse->dev->keybit);
Aristeu Rozanskiaea6a462007-05-10 01:47:18 -0400587 }
588
589 return 0;
590}
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592/*
593 * psmouse_extensions() probes for any extensions to the basic PS/2 protocol
594 * the mouse may have.
595 */
596
597static int psmouse_extensions(struct psmouse *psmouse,
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700598 unsigned int max_proto, bool set_properties)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599{
Jiri Kosina06989892009-11-16 22:12:13 -0800600 bool synaptics_hardware = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Dmitry Torokhova15d60f2005-05-29 02:30:32 -0500602/*
603 * We always check for lifebook because it does not disturb mouse
604 * (it only checks DMI information).
605 */
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500606 if (lifebook_detect(psmouse, set_properties) == 0) {
Dmitry Torokhova15d60f2005-05-29 02:30:32 -0500607 if (max_proto > PSMOUSE_IMEX) {
608 if (!set_properties || lifebook_init(psmouse) == 0)
609 return PSMOUSE_LIFEBOOK;
610 }
611 }
Kenan Esau02d7f582005-05-29 02:30:22 -0500612
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613/*
614 * Try Kensington ThinkingMouse (we try first, because synaptics probe
615 * upsets the thinkingmouse).
616 */
617
618 if (max_proto > PSMOUSE_IMEX && thinking_detect(psmouse, set_properties) == 0)
619 return PSMOUSE_THINKPS;
620
621/*
Andres Salomon55e3d922007-03-10 01:39:54 -0500622 * Try Synaptics TouchPad. Note that probing is done even if Synaptics protocol
623 * support is disabled in config - we need to know if it is synaptics so we
624 * can reset it properly after probing for intellimouse.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 */
626 if (max_proto > PSMOUSE_PS2 && synaptics_detect(psmouse, set_properties) == 0) {
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700627 synaptics_hardware = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
629 if (max_proto > PSMOUSE_IMEX) {
630 if (!set_properties || synaptics_init(psmouse) == 0)
631 return PSMOUSE_SYNAPTICS;
632/*
633 * Some Synaptics touchpads can emulate extended protocols (like IMPS/2).
634 * Unfortunately Logitech/Genius probes confuse some firmware versions so
635 * we'll have to skip them.
636 */
637 max_proto = PSMOUSE_IMEX;
638 }
639/*
640 * Make sure that touchpad is in relative mode, gestures (taps) are enabled
641 */
642 synaptics_reset(psmouse);
643 }
644
645/*
646 * Try ALPS TouchPad
647 */
648 if (max_proto > PSMOUSE_IMEX) {
649 ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_RESET_DIS);
650 if (alps_detect(psmouse, set_properties) == 0) {
651 if (!set_properties || alps_init(psmouse) == 0)
652 return PSMOUSE_ALPS;
653/*
654 * Init failed, try basic relative protocols
655 */
656 max_proto = PSMOUSE_IMEX;
657 }
658 }
659
Andres Salomondf08ef22008-09-16 12:30:34 -0400660/*
661 * Try OLPC HGPK touchpad.
662 */
663 if (max_proto > PSMOUSE_IMEX &&
664 hgpk_detect(psmouse, set_properties) == 0) {
665 if (!set_properties || hgpk_init(psmouse) == 0)
666 return PSMOUSE_HGPK;
667/*
668 * Init failed, try basic relative protocols
669 */
670 max_proto = PSMOUSE_IMEX;
671 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400673/*
674 * Try Elantech touchpad.
675 */
676 if (max_proto > PSMOUSE_IMEX &&
677 elantech_detect(psmouse, set_properties) == 0) {
678 if (!set_properties || elantech_init(psmouse) == 0)
679 return PSMOUSE_ELANTECH;
680/*
681 * Init failed, try basic relative protocols
682 */
683 max_proto = PSMOUSE_IMEX;
684 }
685
Tai-hwa Liangfc69f4a2009-05-10 18:15:39 -0700686/*
687 * Try Finger Sensing Pad
688 */
689 if (max_proto > PSMOUSE_IMEX) {
690 if (fsp_detect(psmouse, set_properties) == 0) {
691 if (!set_properties || fsp_init(psmouse) == 0)
692 return PSMOUSE_FSP;
693/*
694 * Init failed, try basic relative protocols
695 */
696 max_proto = PSMOUSE_IMEX;
697 }
698 }
699
Andres Salomondf08ef22008-09-16 12:30:34 -0400700 if (max_proto > PSMOUSE_IMEX) {
Stefan Lucke24bf10a2007-02-18 01:49:10 -0500701 if (genius_detect(psmouse, set_properties) == 0)
702 return PSMOUSE_GENPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Stefan Lucke24bf10a2007-02-18 01:49:10 -0500704 if (ps2pp_init(psmouse, set_properties) == 0)
705 return PSMOUSE_PS2PP;
706
707 if (trackpoint_detect(psmouse, set_properties) == 0)
708 return PSMOUSE_TRACKPOINT;
709
710 if (touchkit_ps2_detect(psmouse, set_properties) == 0)
711 return PSMOUSE_TOUCHKIT_PS2;
712 }
Dmitry Torokhovba449952005-12-21 00:51:31 -0500713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714/*
715 * Reset to defaults in case the device got confused by extended
Alon Ziv554fc192007-08-30 00:22:48 -0400716 * protocol probes. Note that we follow up with full reset because
717 * some mice put themselves to sleep when they see PSMOUSE_RESET_DIS.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 */
Alon Ziv554fc192007-08-30 00:22:48 -0400719 ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_RESET_DIS);
Dmitry Torokhovba449952005-12-21 00:51:31 -0500720 psmouse_reset(psmouse);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
722 if (max_proto >= PSMOUSE_IMEX && im_explorer_detect(psmouse, set_properties) == 0)
723 return PSMOUSE_IMEX;
724
725 if (max_proto >= PSMOUSE_IMPS && intellimouse_detect(psmouse, set_properties) == 0)
726 return PSMOUSE_IMPS;
727
728/*
729 * Okay, all failed, we have a standard mouse here. The number of the buttons
730 * is still a question, though. We assume 3.
731 */
732 ps2bare_detect(psmouse, set_properties);
733
734 if (synaptics_hardware) {
735/*
736 * We detected Synaptics hardware but it did not respond to IMPS/2 probes.
737 * We need to reset the touchpad because if there is a track point on the
738 * pass through port it could get disabled while probing for protocol
739 * extensions.
740 */
741 psmouse_reset(psmouse);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 }
743
744 return PSMOUSE_PS2;
745}
746
Helge Dellere38de672006-09-10 21:54:39 -0400747static const struct psmouse_protocol psmouse_protocols[] = {
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500748 {
749 .type = PSMOUSE_PS2,
750 .name = "PS/2",
751 .alias = "bare",
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700752 .maxproto = true,
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500753 .detect = ps2bare_detect,
754 },
Andres Salomon55e3d922007-03-10 01:39:54 -0500755#ifdef CONFIG_MOUSE_PS2_LOGIPS2PP
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500756 {
757 .type = PSMOUSE_PS2PP,
758 .name = "PS2++",
759 .alias = "logitech",
760 .detect = ps2pp_init,
761 },
Andres Salomon55e3d922007-03-10 01:39:54 -0500762#endif
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500763 {
764 .type = PSMOUSE_THINKPS,
765 .name = "ThinkPS/2",
766 .alias = "thinkps",
767 .detect = thinking_detect,
768 },
769 {
770 .type = PSMOUSE_GENPS,
771 .name = "GenPS/2",
772 .alias = "genius",
773 .detect = genius_detect,
774 },
775 {
776 .type = PSMOUSE_IMPS,
777 .name = "ImPS/2",
778 .alias = "imps",
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700779 .maxproto = true,
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500780 .detect = intellimouse_detect,
781 },
782 {
783 .type = PSMOUSE_IMEX,
784 .name = "ImExPS/2",
785 .alias = "exps",
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700786 .maxproto = true,
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500787 .detect = im_explorer_detect,
788 },
Andres Salomon55e3d922007-03-10 01:39:54 -0500789#ifdef CONFIG_MOUSE_PS2_SYNAPTICS
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500790 {
791 .type = PSMOUSE_SYNAPTICS,
792 .name = "SynPS/2",
793 .alias = "synaptics",
794 .detect = synaptics_detect,
795 .init = synaptics_init,
796 },
Andres Salomon55e3d922007-03-10 01:39:54 -0500797#endif
798#ifdef CONFIG_MOUSE_PS2_ALPS
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500799 {
800 .type = PSMOUSE_ALPS,
801 .name = "AlpsPS/2",
802 .alias = "alps",
803 .detect = alps_detect,
804 .init = alps_init,
805 },
Andres Salomon55e3d922007-03-10 01:39:54 -0500806#endif
807#ifdef CONFIG_MOUSE_PS2_LIFEBOOK
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500808 {
809 .type = PSMOUSE_LIFEBOOK,
810 .name = "LBPS/2",
811 .alias = "lifebook",
812 .init = lifebook_init,
813 },
Andres Salomon55e3d922007-03-10 01:39:54 -0500814#endif
815#ifdef CONFIG_MOUSE_PS2_TRACKPOINT
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500816 {
Stephen Evanchik541e3162005-08-08 01:26:18 -0500817 .type = PSMOUSE_TRACKPOINT,
818 .name = "TPPS/2",
819 .alias = "trackpoint",
820 .detect = trackpoint_detect,
821 },
Andres Salomon55e3d922007-03-10 01:39:54 -0500822#endif
823#ifdef CONFIG_MOUSE_PS2_TOUCHKIT
Stephen Evanchik541e3162005-08-08 01:26:18 -0500824 {
Stefan Lucke24bf10a2007-02-18 01:49:10 -0500825 .type = PSMOUSE_TOUCHKIT_PS2,
826 .name = "touchkitPS/2",
827 .alias = "touchkit",
828 .detect = touchkit_ps2_detect,
829 },
Andres Salomon55e3d922007-03-10 01:39:54 -0500830#endif
Andres Salomondf08ef22008-09-16 12:30:34 -0400831#ifdef CONFIG_MOUSE_PS2_OLPC
832 {
833 .type = PSMOUSE_HGPK,
834 .name = "OLPC HGPK",
835 .alias = "hgpk",
836 .detect = hgpk_detect,
837 },
838#endif
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400839#ifdef CONFIG_MOUSE_PS2_ELANTECH
840 {
841 .type = PSMOUSE_ELANTECH,
842 .name = "ETPS/2",
843 .alias = "elantech",
844 .detect = elantech_detect,
845 .init = elantech_init,
846 },
Tai-hwa Liangfc69f4a2009-05-10 18:15:39 -0700847#endif
848#ifdef CONFIG_MOUSE_PS2_SENTELIC
849 {
850 .type = PSMOUSE_FSP,
851 .name = "FSPPS/2",
852 .alias = "fsp",
853 .detect = fsp_detect,
854 .init = fsp_init,
855 },
856#endif
Stefan Lucke24bf10a2007-02-18 01:49:10 -0500857 {
Aristeu Rozanskiaea6a462007-05-10 01:47:18 -0400858 .type = PSMOUSE_CORTRON,
859 .name = "CortronPS/2",
860 .alias = "cortps",
861 .detect = cortron_detect,
862 },
863 {
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500864 .type = PSMOUSE_AUTO,
865 .name = "auto",
866 .alias = "any",
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700867 .maxproto = true,
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500868 },
869};
870
Helge Dellere38de672006-09-10 21:54:39 -0400871static const struct psmouse_protocol *psmouse_protocol_by_type(enum psmouse_type type)
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500872{
873 int i;
874
875 for (i = 0; i < ARRAY_SIZE(psmouse_protocols); i++)
876 if (psmouse_protocols[i].type == type)
877 return &psmouse_protocols[i];
878
879 WARN_ON(1);
880 return &psmouse_protocols[0];
881}
882
Helge Dellere38de672006-09-10 21:54:39 -0400883static const struct psmouse_protocol *psmouse_protocol_by_name(const char *name, size_t len)
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500884{
Helge Dellere38de672006-09-10 21:54:39 -0400885 const struct psmouse_protocol *p;
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500886 int i;
887
888 for (i = 0; i < ARRAY_SIZE(psmouse_protocols); i++) {
889 p = &psmouse_protocols[i];
890
891 if ((strlen(p->name) == len && !strncmp(p->name, name, len)) ||
892 (strlen(p->alias) == len && !strncmp(p->alias, name, len)))
893 return &psmouse_protocols[i];
894 }
895
896 return NULL;
897}
898
899
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900/*
901 * psmouse_probe() probes for a PS/2 mouse.
902 */
903
904static int psmouse_probe(struct psmouse *psmouse)
905{
906 struct ps2dev *ps2dev = &psmouse->ps2dev;
907 unsigned char param[2];
908
909/*
910 * First, we check if it's a mouse. It should send 0x00 or 0x03
911 * in case of an IntelliMouse in 4-byte mode or 0x04 for IM Explorer.
Vojtech Pavlik7741e932005-05-28 02:11:42 -0500912 * Sunrex K8561 IR Keyboard/Mouse reports 0xff on second and subsequent
913 * ID queries, probably due to a firmware bug.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 */
915
916 param[0] = 0xa5;
917 if (ps2_command(ps2dev, param, PSMOUSE_CMD_GETID))
918 return -1;
919
Vojtech Pavlik7741e932005-05-28 02:11:42 -0500920 if (param[0] != 0x00 && param[0] != 0x03 &&
921 param[0] != 0x04 && param[0] != 0xff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 return -1;
923
924/*
925 * Then we reset and disable the mouse so that it doesn't generate events.
926 */
927
928 if (ps2_command(ps2dev, NULL, PSMOUSE_CMD_RESET_DIS))
929 printk(KERN_WARNING "psmouse.c: Failed to reset mouse on %s\n", ps2dev->serio->phys);
930
931 return 0;
932}
933
934/*
935 * Here we set the mouse resolution.
936 */
937
938void psmouse_set_resolution(struct psmouse *psmouse, unsigned int resolution)
939{
Helge Dellere38de672006-09-10 21:54:39 -0400940 static const unsigned char params[] = { 0, 1, 2, 2, 3 };
941 unsigned char p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
943 if (resolution == 0 || resolution > 200)
944 resolution = 200;
945
Helge Dellere38de672006-09-10 21:54:39 -0400946 p = params[resolution / 50];
947 ps2_command(&psmouse->ps2dev, &p, PSMOUSE_CMD_SETRES);
948 psmouse->resolution = 25 << p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949}
950
951/*
952 * Here we set the mouse report rate.
953 */
954
955static void psmouse_set_rate(struct psmouse *psmouse, unsigned int rate)
956{
Helge Dellere38de672006-09-10 21:54:39 -0400957 static const unsigned char rates[] = { 200, 100, 80, 60, 40, 20, 10, 0 };
958 unsigned char r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 int i = 0;
960
961 while (rates[i] > rate) i++;
Helge Dellere38de672006-09-10 21:54:39 -0400962 r = rates[i];
963 ps2_command(&psmouse->ps2dev, &r, PSMOUSE_CMD_SETRATE);
964 psmouse->rate = r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965}
966
967/*
968 * psmouse_initialize() initializes the mouse to a sane state.
969 */
970
971static void psmouse_initialize(struct psmouse *psmouse)
972{
973/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 * We set the mouse report rate, resolution and scaling.
975 */
976
977 if (psmouse_max_proto != PSMOUSE_PS2) {
978 psmouse->set_rate(psmouse, psmouse->rate);
979 psmouse->set_resolution(psmouse, psmouse->resolution);
980 ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_SETSCALE11);
981 }
982}
983
984/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 * psmouse_activate() enables the mouse so that we get motion reports from it.
986 */
987
988static void psmouse_activate(struct psmouse *psmouse)
989{
990 if (ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_ENABLE))
991 printk(KERN_WARNING "psmouse.c: Failed to enable mouse on %s\n",
992 psmouse->ps2dev.serio->phys);
993
994 psmouse_set_state(psmouse, PSMOUSE_ACTIVATED);
995}
996
997
998/*
999 * psmouse_deactivate() puts the mouse into poll mode so that we don't get motion
Jean Delvarec03983a2007-10-19 23:22:55 +02001000 * reports from it unless we explicitly request it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 */
1002
1003static void psmouse_deactivate(struct psmouse *psmouse)
1004{
1005 if (ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_DISABLE))
1006 printk(KERN_WARNING "psmouse.c: Failed to deactivate mouse on %s\n",
1007 psmouse->ps2dev.serio->phys);
1008
1009 psmouse_set_state(psmouse, PSMOUSE_CMD_MODE);
1010}
1011
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001012/*
1013 * psmouse_poll() - default poll hanlder. Everyone except for ALPS uses it.
1014 */
1015
1016static int psmouse_poll(struct psmouse *psmouse)
1017{
1018 return ps2_command(&psmouse->ps2dev, psmouse->packet,
1019 PSMOUSE_CMD_POLL | (psmouse->pktsize << 8));
1020}
1021
1022
1023/*
1024 * psmouse_resync() attempts to re-validate current protocol.
1025 */
1026
David Howellsc4028952006-11-22 14:57:56 +00001027static void psmouse_resync(struct work_struct *work)
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001028{
David Howellsc4028952006-11-22 14:57:56 +00001029 struct psmouse *parent = NULL, *psmouse =
Andres Salomon8bf020e2008-09-16 12:30:33 -04001030 container_of(work, struct psmouse, resync_work.work);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001031 struct serio *serio = psmouse->ps2dev.serio;
1032 psmouse_ret_t rc = PSMOUSE_GOOD_DATA;
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001033 bool failed = false, enabled = false;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001034 int i;
1035
Ingo Molnarc14471d2006-02-19 00:22:11 -05001036 mutex_lock(&psmouse_mutex);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001037
1038 if (psmouse->state != PSMOUSE_RESYNCING)
1039 goto out;
1040
1041 if (serio->parent && serio->id.type == SERIO_PS_PSTHRU) {
1042 parent = serio_get_drvdata(serio->parent);
1043 psmouse_deactivate(parent);
1044 }
1045
1046/*
1047 * Some mice don't ACK commands sent while they are in the middle of
1048 * transmitting motion packet. To avoid delay we use ps2_sendbyte()
1049 * instead of ps2_command() which would wait for 200ms for an ACK
1050 * that may never come.
1051 * As an additional quirk ALPS touchpads may not only forget to ACK
1052 * disable command but will stop reporting taps, so if we see that
1053 * mouse at least once ACKs disable we will do full reconnect if ACK
1054 * is missing.
1055 */
1056 psmouse->num_resyncs++;
1057
1058 if (ps2_sendbyte(&psmouse->ps2dev, PSMOUSE_CMD_DISABLE, 20)) {
1059 if (psmouse->num_resyncs < 3 || psmouse->acks_disable_command)
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001060 failed = true;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001061 } else
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001062 psmouse->acks_disable_command = true;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001063
1064/*
1065 * Poll the mouse. If it was reset the packet will be shorter than
1066 * psmouse->pktsize and ps2_command will fail. We do not expect and
1067 * do not handle scenario when mouse "upgrades" its protocol while
1068 * disconnected since it would require additional delay. If we ever
1069 * see a mouse that does it we'll adjust the code.
1070 */
1071 if (!failed) {
1072 if (psmouse->poll(psmouse))
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001073 failed = true;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001074 else {
1075 psmouse_set_state(psmouse, PSMOUSE_CMD_MODE);
1076 for (i = 0; i < psmouse->pktsize; i++) {
1077 psmouse->pktcnt++;
David Howells7d12e782006-10-05 14:55:46 +01001078 rc = psmouse->protocol_handler(psmouse);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001079 if (rc != PSMOUSE_GOOD_DATA)
1080 break;
1081 }
1082 if (rc != PSMOUSE_FULL_PACKET)
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001083 failed = true;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001084 psmouse_set_state(psmouse, PSMOUSE_RESYNCING);
1085 }
1086 }
1087/*
1088 * Now try to enable mouse. We try to do that even if poll failed and also
1089 * repeat our attempts 5 times, otherwise we may be left out with disabled
1090 * mouse.
1091 */
1092 for (i = 0; i < 5; i++) {
1093 if (!ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_ENABLE)) {
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001094 enabled = true;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001095 break;
1096 }
1097 msleep(200);
1098 }
1099
1100 if (!enabled) {
1101 printk(KERN_WARNING "psmouse.c: failed to re-enable mouse on %s\n",
1102 psmouse->ps2dev.serio->phys);
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001103 failed = true;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001104 }
1105
1106 if (failed) {
1107 psmouse_set_state(psmouse, PSMOUSE_IGNORE);
1108 printk(KERN_INFO "psmouse.c: resync failed, issuing reconnect request\n");
1109 serio_reconnect(serio);
1110 } else
1111 psmouse_set_state(psmouse, PSMOUSE_ACTIVATED);
1112
1113 if (parent)
1114 psmouse_activate(parent);
1115 out:
Ingo Molnarc14471d2006-02-19 00:22:11 -05001116 mutex_unlock(&psmouse_mutex);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001117}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
1119/*
1120 * psmouse_cleanup() resets the mouse into power-on state.
1121 */
1122
1123static void psmouse_cleanup(struct serio *serio)
1124{
1125 struct psmouse *psmouse = serio_get_drvdata(serio);
Dmitry Torokhova1cec062007-02-18 01:40:24 -05001126 struct psmouse *parent = NULL;
1127
1128 mutex_lock(&psmouse_mutex);
1129
1130 if (serio->parent && serio->id.type == SERIO_PS_PSTHRU) {
1131 parent = serio_get_drvdata(serio->parent);
1132 psmouse_deactivate(parent);
1133 }
1134
1135 psmouse_deactivate(psmouse);
1136
1137 if (psmouse->cleanup)
1138 psmouse->cleanup(psmouse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
Dmitry Torokhov4a299bf2009-12-24 21:40:24 -08001140/*
1141 * Reset the mouse to defaults (bare PS/2 protocol).
1142 */
1143 ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_RESET_DIS);
Dmitry Torokhova1cec062007-02-18 01:40:24 -05001144
1145/*
1146 * Some boxes, such as HP nx7400, get terribly confused if mouse
1147 * is not fully enabled before suspending/shutting down.
1148 */
1149 ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_ENABLE);
1150
1151 if (parent) {
1152 if (parent->pt_deactivate)
1153 parent->pt_deactivate(parent);
1154
1155 psmouse_activate(parent);
1156 }
1157
1158 mutex_unlock(&psmouse_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159}
1160
1161/*
1162 * psmouse_disconnect() closes and frees.
1163 */
1164
1165static void psmouse_disconnect(struct serio *serio)
1166{
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001167 struct psmouse *psmouse, *parent = NULL;
1168
1169 psmouse = serio_get_drvdata(serio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001171 sysfs_remove_group(&serio->dev.kobj, &psmouse_attribute_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
Ingo Molnarc14471d2006-02-19 00:22:11 -05001173 mutex_lock(&psmouse_mutex);
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001174
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 psmouse_set_state(psmouse, PSMOUSE_CMD_MODE);
1176
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001177 /* make sure we don't have a resync in progress */
Ingo Molnarc14471d2006-02-19 00:22:11 -05001178 mutex_unlock(&psmouse_mutex);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001179 flush_workqueue(kpsmoused_wq);
Ingo Molnarc14471d2006-02-19 00:22:11 -05001180 mutex_lock(&psmouse_mutex);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001181
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 if (serio->parent && serio->id.type == SERIO_PS_PSTHRU) {
1183 parent = serio_get_drvdata(serio->parent);
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001184 psmouse_deactivate(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 }
1186
1187 if (psmouse->disconnect)
1188 psmouse->disconnect(psmouse);
1189
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001190 if (parent && parent->pt_deactivate)
1191 parent->pt_deactivate(parent);
1192
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 psmouse_set_state(psmouse, PSMOUSE_IGNORE);
1194
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 serio_close(serio);
1196 serio_set_drvdata(serio, NULL);
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001197 input_unregister_device(psmouse->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 kfree(psmouse);
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001199
1200 if (parent)
1201 psmouse_activate(parent);
1202
Ingo Molnarc14471d2006-02-19 00:22:11 -05001203 mutex_unlock(&psmouse_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204}
1205
Dmitry Torokhov315eb992009-11-16 22:12:21 -08001206static int psmouse_switch_protocol(struct psmouse *psmouse,
1207 const struct psmouse_protocol *proto)
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001208{
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001209 struct input_dev *input_dev = psmouse->dev;
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001210
Dmitry Torokhov28aa7f12007-04-12 01:35:09 -04001211 input_dev->dev.parent = &psmouse->ps2dev.serio->dev;
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001212
Jiri Slaby7b19ada2007-10-18 23:40:32 -07001213 input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_REL);
Dmitry Torokhov315eb992009-11-16 22:12:21 -08001214 input_dev->keybit[BIT_WORD(BTN_MOUSE)] =
1215 BIT_MASK(BTN_LEFT) | BIT_MASK(BTN_RIGHT);
Jiri Slaby7b19ada2007-10-18 23:40:32 -07001216 input_dev->relbit[0] = BIT_MASK(REL_X) | BIT_MASK(REL_Y);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001217
1218 psmouse->set_rate = psmouse_set_rate;
1219 psmouse->set_resolution = psmouse_set_resolution;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001220 psmouse->poll = psmouse_poll;
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001221 psmouse->protocol_handler = psmouse_process_byte;
1222 psmouse->pktsize = 3;
1223
1224 if (proto && (proto->detect || proto->init)) {
1225 if (proto->detect && proto->detect(psmouse, 1) < 0)
1226 return -1;
1227
1228 if (proto->init && proto->init(psmouse) < 0)
1229 return -1;
1230
1231 psmouse->type = proto->type;
Dmitry Torokhov315eb992009-11-16 22:12:21 -08001232 } else
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001233 psmouse->type = psmouse_extensions(psmouse,
1234 psmouse_max_proto, true);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001235
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001236 /*
1237 * If mouse's packet size is 3 there is no point in polling the
1238 * device in hopes to detect protocol reset - we won't get less
1239 * than 3 bytes response anyhow.
1240 */
1241 if (psmouse->pktsize == 3)
1242 psmouse->resync_time = 0;
1243
1244 /*
1245 * Some smart KVMs fake response to POLL command returning just
1246 * 3 bytes and messing up our resync logic, so if initial poll
1247 * fails we won't try polling the device anymore. Hopefully
1248 * such KVM will maintain initially selected protocol.
1249 */
1250 if (psmouse->resync_time && psmouse->poll(psmouse))
1251 psmouse->resync_time = 0;
1252
Dmitry Torokhov08ffce42006-06-26 01:45:10 -04001253 snprintf(psmouse->devname, sizeof(psmouse->devname), "%s %s %s",
1254 psmouse_protocol_by_type(psmouse->type)->name, psmouse->vendor, psmouse->name);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001255
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001256 input_dev->name = psmouse->devname;
1257 input_dev->phys = psmouse->phys;
1258 input_dev->id.bustype = BUS_I8042;
1259 input_dev->id.vendor = 0x0002;
1260 input_dev->id.product = psmouse->type;
1261 input_dev->id.version = psmouse->model;
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001262
1263 return 0;
1264}
1265
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266/*
1267 * psmouse_connect() is a callback from the serio module when
1268 * an unhandled serio port is found.
1269 */
1270static int psmouse_connect(struct serio *serio, struct serio_driver *drv)
1271{
1272 struct psmouse *psmouse, *parent = NULL;
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001273 struct input_dev *input_dev;
Dmitry Torokhov72155612006-11-05 22:40:19 -05001274 int retval = 0, error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
Ingo Molnarc14471d2006-02-19 00:22:11 -05001276 mutex_lock(&psmouse_mutex);
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001277
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 /*
1279 * If this is a pass-through port deactivate parent so the device
1280 * connected to this port can be successfully identified
1281 */
1282 if (serio->parent && serio->id.type == SERIO_PS_PSTHRU) {
1283 parent = serio_get_drvdata(serio->parent);
1284 psmouse_deactivate(parent);
1285 }
1286
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001287 psmouse = kzalloc(sizeof(struct psmouse), GFP_KERNEL);
1288 input_dev = input_allocate_device();
1289 if (!psmouse || !input_dev)
Dmitry Torokhov72155612006-11-05 22:40:19 -05001290 goto err_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 ps2_init(&psmouse->ps2dev, serio);
Andres Salomon8bf020e2008-09-16 12:30:33 -04001293 INIT_DELAYED_WORK(&psmouse->resync_work, psmouse_resync);
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001294 psmouse->dev = input_dev;
Dmitry Torokhov08ffce42006-06-26 01:45:10 -04001295 snprintf(psmouse->phys, sizeof(psmouse->phys), "%s/input0", serio->phys);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001296
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 psmouse_set_state(psmouse, PSMOUSE_INITIALIZING);
1298
1299 serio_set_drvdata(serio, psmouse);
1300
Dmitry Torokhov72155612006-11-05 22:40:19 -05001301 error = serio_open(serio, drv);
1302 if (error)
1303 goto err_clear_drvdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
1305 if (psmouse_probe(psmouse) < 0) {
Dmitry Torokhov72155612006-11-05 22:40:19 -05001306 error = -ENODEV;
1307 goto err_close_serio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 }
1309
1310 psmouse->rate = psmouse_rate;
1311 psmouse->resolution = psmouse_resolution;
1312 psmouse->resetafter = psmouse_resetafter;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001313 psmouse->resync_time = parent ? 0 : psmouse_resync_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 psmouse->smartscroll = psmouse_smartscroll;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001316 psmouse_switch_protocol(psmouse, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 psmouse_set_state(psmouse, PSMOUSE_CMD_MODE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 psmouse_initialize(psmouse);
1320
Dmitry Torokhov72155612006-11-05 22:40:19 -05001321 error = input_register_device(psmouse->dev);
1322 if (error)
1323 goto err_protocol_disconnect;
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001324
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 if (parent && parent->pt_activate)
1326 parent->pt_activate(parent);
1327
Dmitry Torokhov72155612006-11-05 22:40:19 -05001328 error = sysfs_create_group(&serio->dev.kobj, &psmouse_attribute_group);
1329 if (error)
1330 goto err_pt_deactivate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
1332 psmouse_activate(psmouse);
1333
Dmitry Torokhov72155612006-11-05 22:40:19 -05001334 out:
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001335 /* If this is a pass-through port the parent needs to be re-activated */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 if (parent)
1337 psmouse_activate(parent);
1338
Ingo Molnarc14471d2006-02-19 00:22:11 -05001339 mutex_unlock(&psmouse_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 return retval;
Dmitry Torokhov72155612006-11-05 22:40:19 -05001341
1342 err_pt_deactivate:
1343 if (parent && parent->pt_deactivate)
1344 parent->pt_deactivate(parent);
Andres Salomon746b31a2008-01-17 12:01:30 -05001345 input_unregister_device(psmouse->dev);
1346 input_dev = NULL; /* so we don't try to free it below */
Dmitry Torokhov72155612006-11-05 22:40:19 -05001347 err_protocol_disconnect:
1348 if (psmouse->disconnect)
1349 psmouse->disconnect(psmouse);
1350 psmouse_set_state(psmouse, PSMOUSE_IGNORE);
1351 err_close_serio:
1352 serio_close(serio);
1353 err_clear_drvdata:
1354 serio_set_drvdata(serio, NULL);
1355 err_free:
1356 input_free_device(input_dev);
1357 kfree(psmouse);
1358
1359 retval = error;
1360 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361}
1362
1363
1364static int psmouse_reconnect(struct serio *serio)
1365{
1366 struct psmouse *psmouse = serio_get_drvdata(serio);
1367 struct psmouse *parent = NULL;
1368 struct serio_driver *drv = serio->drv;
1369 int rc = -1;
1370
1371 if (!drv || !psmouse) {
1372 printk(KERN_DEBUG "psmouse: reconnect request, but serio is disconnected, ignoring...\n");
1373 return -1;
1374 }
1375
Ingo Molnarc14471d2006-02-19 00:22:11 -05001376 mutex_lock(&psmouse_mutex);
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001377
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 if (serio->parent && serio->id.type == SERIO_PS_PSTHRU) {
1379 parent = serio_get_drvdata(serio->parent);
1380 psmouse_deactivate(parent);
1381 }
1382
1383 psmouse_set_state(psmouse, PSMOUSE_INITIALIZING);
1384
1385 if (psmouse->reconnect) {
1386 if (psmouse->reconnect(psmouse))
1387 goto out;
1388 } else if (psmouse_probe(psmouse) < 0 ||
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001389 psmouse->type != psmouse_extensions(psmouse,
1390 psmouse_max_proto, false)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 goto out;
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001392 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
1394 /* ok, the device type (and capabilities) match the old one,
1395 * we can continue using it, complete intialization
1396 */
1397 psmouse_set_state(psmouse, PSMOUSE_CMD_MODE);
1398
1399 psmouse_initialize(psmouse);
1400
1401 if (parent && parent->pt_activate)
1402 parent->pt_activate(parent);
1403
1404 psmouse_activate(psmouse);
1405 rc = 0;
1406
1407out:
1408 /* If this is a pass-through port the parent waits to be activated */
1409 if (parent)
1410 psmouse_activate(parent);
1411
Ingo Molnarc14471d2006-02-19 00:22:11 -05001412 mutex_unlock(&psmouse_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 return rc;
1414}
1415
1416static struct serio_device_id psmouse_serio_ids[] = {
1417 {
1418 .type = SERIO_8042,
1419 .proto = SERIO_ANY,
1420 .id = SERIO_ANY,
1421 .extra = SERIO_ANY,
1422 },
1423 {
1424 .type = SERIO_PS_PSTHRU,
1425 .proto = SERIO_ANY,
1426 .id = SERIO_ANY,
1427 .extra = SERIO_ANY,
1428 },
1429 { 0 }
1430};
1431
1432MODULE_DEVICE_TABLE(serio, psmouse_serio_ids);
1433
1434static struct serio_driver psmouse_drv = {
1435 .driver = {
1436 .name = "psmouse",
1437 },
1438 .description = DRIVER_DESC,
1439 .id_table = psmouse_serio_ids,
1440 .interrupt = psmouse_interrupt,
1441 .connect = psmouse_connect,
1442 .reconnect = psmouse_reconnect,
1443 .disconnect = psmouse_disconnect,
1444 .cleanup = psmouse_cleanup,
1445};
1446
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001447ssize_t psmouse_attr_show_helper(struct device *dev, struct device_attribute *devattr,
1448 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449{
1450 struct serio *serio = to_serio_port(dev);
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001451 struct psmouse_attribute *attr = to_psmouse_attr(devattr);
1452 struct psmouse *psmouse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 int retval;
1454
1455 retval = serio_pin_driver(serio);
1456 if (retval)
1457 return retval;
1458
1459 if (serio->drv != &psmouse_drv) {
1460 retval = -ENODEV;
1461 goto out;
1462 }
1463
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001464 psmouse = serio_get_drvdata(serio);
1465
1466 retval = attr->show(psmouse, attr->data, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
1468out:
1469 serio_unpin_driver(serio);
1470 return retval;
1471}
1472
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001473ssize_t psmouse_attr_set_helper(struct device *dev, struct device_attribute *devattr,
1474 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475{
1476 struct serio *serio = to_serio_port(dev);
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001477 struct psmouse_attribute *attr = to_psmouse_attr(devattr);
1478 struct psmouse *psmouse, *parent = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 int retval;
1480
1481 retval = serio_pin_driver(serio);
1482 if (retval)
1483 return retval;
1484
1485 if (serio->drv != &psmouse_drv) {
1486 retval = -ENODEV;
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001487 goto out_unpin;
1488 }
1489
Ingo Molnarc14471d2006-02-19 00:22:11 -05001490 retval = mutex_lock_interruptible(&psmouse_mutex);
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001491 if (retval)
1492 goto out_unpin;
1493
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001494 psmouse = serio_get_drvdata(serio);
1495
Andres Salomon68d48222008-09-16 12:30:34 -04001496 if (attr->protect) {
1497 if (psmouse->state == PSMOUSE_IGNORE) {
1498 retval = -ENODEV;
1499 goto out_unlock;
1500 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501
Andres Salomon68d48222008-09-16 12:30:34 -04001502 if (serio->parent && serio->id.type == SERIO_PS_PSTHRU) {
1503 parent = serio_get_drvdata(serio->parent);
1504 psmouse_deactivate(parent);
1505 }
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001506
Andres Salomon68d48222008-09-16 12:30:34 -04001507 psmouse_deactivate(psmouse);
1508 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001510 retval = attr->set(psmouse, attr->data, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
Andres Salomon68d48222008-09-16 12:30:34 -04001512 if (attr->protect) {
1513 if (retval != -ENODEV)
1514 psmouse_activate(psmouse);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001515
Andres Salomon68d48222008-09-16 12:30:34 -04001516 if (parent)
1517 psmouse_activate(parent);
1518 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519
Ingo Molnarc14471d2006-02-19 00:22:11 -05001520 out_unlock:
1521 mutex_unlock(&psmouse_mutex);
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001522 out_unpin:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 serio_unpin_driver(serio);
1524 return retval;
1525}
1526
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001527static ssize_t psmouse_show_int_attr(struct psmouse *psmouse, void *offset, char *buf)
1528{
Sergey Vlasoveb5d5822006-11-09 00:34:27 -05001529 unsigned int *field = (unsigned int *)((char *)psmouse + (size_t)offset);
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001530
Sergey Vlasoveb5d5822006-11-09 00:34:27 -05001531 return sprintf(buf, "%u\n", *field);
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001532}
1533
1534static ssize_t psmouse_set_int_attr(struct psmouse *psmouse, void *offset, const char *buf, size_t count)
1535{
Sergey Vlasoveb5d5822006-11-09 00:34:27 -05001536 unsigned int *field = (unsigned int *)((char *)psmouse + (size_t)offset);
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001537 unsigned long value;
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001538
Joe Rouvier160f1fe2008-08-10 00:29:25 -04001539 if (strict_strtoul(buf, 10, &value))
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001540 return -EINVAL;
1541
Sergey Vlasoveb5d5822006-11-09 00:34:27 -05001542 if ((unsigned int)value != value)
1543 return -EINVAL;
1544
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001545 *field = value;
1546
1547 return count;
1548}
1549
1550static ssize_t psmouse_attr_show_protocol(struct psmouse *psmouse, void *data, char *buf)
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001551{
1552 return sprintf(buf, "%s\n", psmouse_protocol_by_type(psmouse->type)->name);
1553}
1554
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001555static ssize_t psmouse_attr_set_protocol(struct psmouse *psmouse, void *data, const char *buf, size_t count)
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001556{
1557 struct serio *serio = psmouse->ps2dev.serio;
1558 struct psmouse *parent = NULL;
Dmitry Torokhov72155612006-11-05 22:40:19 -05001559 struct input_dev *old_dev, *new_dev;
1560 const struct psmouse_protocol *proto, *old_proto;
1561 int error;
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001562 int retry = 0;
1563
Dmitry Torokhov72155612006-11-05 22:40:19 -05001564 proto = psmouse_protocol_by_name(buf, count);
1565 if (!proto)
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001566 return -EINVAL;
1567
1568 if (psmouse->type == proto->type)
1569 return count;
1570
Dmitry Torokhov72155612006-11-05 22:40:19 -05001571 new_dev = input_allocate_device();
1572 if (!new_dev)
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001573 return -ENOMEM;
1574
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001575 while (serio->child) {
1576 if (++retry > 3) {
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001577 printk(KERN_WARNING
1578 "psmouse: failed to destroy child port, "
1579 "protocol change aborted.\n");
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001580 input_free_device(new_dev);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001581 return -EIO;
1582 }
1583
Ingo Molnarc14471d2006-02-19 00:22:11 -05001584 mutex_unlock(&psmouse_mutex);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001585 serio_unpin_driver(serio);
1586 serio_unregister_child_port(serio);
1587 serio_pin_driver_uninterruptible(serio);
Ingo Molnarc14471d2006-02-19 00:22:11 -05001588 mutex_lock(&psmouse_mutex);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001589
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001590 if (serio->drv != &psmouse_drv) {
1591 input_free_device(new_dev);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001592 return -ENODEV;
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001593 }
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001594
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001595 if (psmouse->type == proto->type) {
1596 input_free_device(new_dev);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001597 return count; /* switched by other thread */
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001598 }
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001599 }
1600
1601 if (serio->parent && serio->id.type == SERIO_PS_PSTHRU) {
1602 parent = serio_get_drvdata(serio->parent);
1603 if (parent->pt_deactivate)
1604 parent->pt_deactivate(parent);
1605 }
1606
Dmitry Torokhov72155612006-11-05 22:40:19 -05001607 old_dev = psmouse->dev;
1608 old_proto = psmouse_protocol_by_type(psmouse->type);
1609
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001610 if (psmouse->disconnect)
1611 psmouse->disconnect(psmouse);
1612
1613 psmouse_set_state(psmouse, PSMOUSE_IGNORE);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001614
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001615 psmouse->dev = new_dev;
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001616 psmouse_set_state(psmouse, PSMOUSE_INITIALIZING);
1617
1618 if (psmouse_switch_protocol(psmouse, proto) < 0) {
1619 psmouse_reset(psmouse);
1620 /* default to PSMOUSE_PS2 */
1621 psmouse_switch_protocol(psmouse, &psmouse_protocols[0]);
1622 }
1623
1624 psmouse_initialize(psmouse);
1625 psmouse_set_state(psmouse, PSMOUSE_CMD_MODE);
1626
Dmitry Torokhov72155612006-11-05 22:40:19 -05001627 error = input_register_device(psmouse->dev);
1628 if (error) {
1629 if (psmouse->disconnect)
1630 psmouse->disconnect(psmouse);
1631
1632 psmouse_set_state(psmouse, PSMOUSE_IGNORE);
1633 input_free_device(new_dev);
1634 psmouse->dev = old_dev;
1635 psmouse_set_state(psmouse, PSMOUSE_INITIALIZING);
1636 psmouse_switch_protocol(psmouse, old_proto);
1637 psmouse_initialize(psmouse);
1638 psmouse_set_state(psmouse, PSMOUSE_CMD_MODE);
1639
1640 return error;
1641 }
1642
1643 input_unregister_device(old_dev);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001644
1645 if (parent && parent->pt_activate)
1646 parent->pt_activate(parent);
1647
1648 return count;
1649}
1650
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001651static ssize_t psmouse_attr_set_rate(struct psmouse *psmouse, void *data, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652{
1653 unsigned long value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
Joe Rouvier160f1fe2008-08-10 00:29:25 -04001655 if (strict_strtoul(buf, 10, &value))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 return -EINVAL;
1657
1658 psmouse->set_rate(psmouse, value);
1659 return count;
1660}
1661
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001662static ssize_t psmouse_attr_set_resolution(struct psmouse *psmouse, void *data, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663{
1664 unsigned long value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665
Joe Rouvier160f1fe2008-08-10 00:29:25 -04001666 if (strict_strtoul(buf, 10, &value))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 return -EINVAL;
1668
1669 psmouse->set_resolution(psmouse, value);
1670 return count;
1671}
1672
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673
1674static int psmouse_set_maxproto(const char *val, struct kernel_param *kp)
1675{
Helge Dellere38de672006-09-10 21:54:39 -04001676 const struct psmouse_protocol *proto;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
1678 if (!val)
1679 return -EINVAL;
1680
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001681 proto = psmouse_protocol_by_name(val, strlen(val));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001683 if (!proto || !proto->maxproto)
1684 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001686 *((unsigned int *)kp->arg) = proto->type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
Stephen Evanchik541e3162005-08-08 01:26:18 -05001688 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689}
1690
1691static int psmouse_get_maxproto(char *buffer, struct kernel_param *kp)
1692{
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001693 int type = *((unsigned int *)kp->arg);
1694
Takashi Iwai3d4c3aa2009-11-12 23:30:52 -08001695 return sprintf(buffer, "%s", psmouse_protocol_by_type(type)->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696}
1697
1698static int __init psmouse_init(void)
1699{
Akinobu Mita153a9df02006-11-23 23:35:10 -05001700 int err;
1701
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001702 lifebook_module_init();
1703 synaptics_module_init();
1704
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001705 kpsmoused_wq = create_singlethread_workqueue("kpsmoused");
1706 if (!kpsmoused_wq) {
1707 printk(KERN_ERR "psmouse: failed to create kpsmoused workqueue\n");
1708 return -ENOMEM;
1709 }
1710
Akinobu Mita153a9df02006-11-23 23:35:10 -05001711 err = serio_register_driver(&psmouse_drv);
1712 if (err)
1713 destroy_workqueue(kpsmoused_wq);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001714
Akinobu Mita153a9df02006-11-23 23:35:10 -05001715 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716}
1717
1718static void __exit psmouse_exit(void)
1719{
1720 serio_unregister_driver(&psmouse_drv);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001721 destroy_workqueue(kpsmoused_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722}
1723
1724module_init(psmouse_init);
1725module_exit(psmouse_exit);