blob: 22fe2547e16991cc45987d33f7c5bfb4436c5265 [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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38#define DRIVER_DESC "PS/2 mouse driver"
39
40MODULE_AUTHOR("Vojtech Pavlik <vojtech@suse.cz>");
41MODULE_DESCRIPTION(DRIVER_DESC);
42MODULE_LICENSE("GPL");
43
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -050044static unsigned int psmouse_max_proto = PSMOUSE_AUTO;
Rusty Russell9bbb9e52010-08-11 23:04:12 -060045static int psmouse_set_maxproto(const char *val, const struct kernel_param *);
46static int psmouse_get_maxproto(char *buffer, const struct kernel_param *kp);
47static struct kernel_param_ops param_ops_proto_abbrev = {
48 .set = psmouse_set_maxproto,
49 .get = psmouse_get_maxproto,
50};
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define param_check_proto_abbrev(name, p) __param_check(name, p, unsigned int)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052module_param_named(proto, psmouse_max_proto, proto_abbrev, 0644);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -050053MODULE_PARM_DESC(proto, "Highest protocol extension to probe (bare, imps, exps, any). Useful for KVM switches.");
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55static unsigned int psmouse_resolution = 200;
56module_param_named(resolution, psmouse_resolution, uint, 0644);
57MODULE_PARM_DESC(resolution, "Resolution, in dpi.");
58
59static unsigned int psmouse_rate = 100;
60module_param_named(rate, psmouse_rate, uint, 0644);
61MODULE_PARM_DESC(rate, "Report rate, in reports per second.");
62
Rusty Russell90ab5ee2012-01-13 09:32:20 +103063static bool psmouse_smartscroll = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064module_param_named(smartscroll, psmouse_smartscroll, bool, 0644);
65MODULE_PARM_DESC(smartscroll, "Logitech Smartscroll autorepeat, 1 = enabled (default), 0 = disabled.");
66
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -050067static unsigned int psmouse_resetafter = 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068module_param_named(resetafter, psmouse_resetafter, uint, 0644);
69MODULE_PARM_DESC(resetafter, "Reset device after so many bad packets (0 = never).");
70
Dmitry Torokhov8bd0ee92006-03-11 00:23:38 -050071static unsigned int psmouse_resync_time;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -050072module_param_named(resync_time, psmouse_resync_time, uint, 0644);
73MODULE_PARM_DESC(resync_time, "How long can mouse stay idle before forcing resync (in seconds, 0 = never).");
74
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -050075PSMOUSE_DEFINE_ATTR(protocol, S_IWUSR | S_IRUGO,
76 NULL,
77 psmouse_attr_show_protocol, psmouse_attr_set_protocol);
78PSMOUSE_DEFINE_ATTR(rate, S_IWUSR | S_IRUGO,
79 (void *) offsetof(struct psmouse, rate),
80 psmouse_show_int_attr, psmouse_attr_set_rate);
81PSMOUSE_DEFINE_ATTR(resolution, S_IWUSR | S_IRUGO,
82 (void *) offsetof(struct psmouse, resolution),
83 psmouse_show_int_attr, psmouse_attr_set_resolution);
84PSMOUSE_DEFINE_ATTR(resetafter, S_IWUSR | S_IRUGO,
85 (void *) offsetof(struct psmouse, resetafter),
86 psmouse_show_int_attr, psmouse_set_int_attr);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -050087PSMOUSE_DEFINE_ATTR(resync_time, S_IWUSR | S_IRUGO,
88 (void *) offsetof(struct psmouse, resync_time),
89 psmouse_show_int_attr, psmouse_set_int_attr);
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -050090
91static struct attribute *psmouse_attributes[] = {
92 &psmouse_attr_protocol.dattr.attr,
93 &psmouse_attr_rate.dattr.attr,
94 &psmouse_attr_resolution.dattr.attr,
95 &psmouse_attr_resetafter.dattr.attr,
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -050096 &psmouse_attr_resync_time.dattr.attr,
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -050097 NULL
98};
99
100static struct attribute_group psmouse_attribute_group = {
101 .attrs = psmouse_attributes,
102};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Dmitry Torokhov04df1922005-06-01 02:39:44 -0500104/*
Ingo Molnarc14471d2006-02-19 00:22:11 -0500105 * psmouse_mutex protects all operations changing state of mouse
Dmitry Torokhov04df1922005-06-01 02:39:44 -0500106 * (connecting, disconnecting, changing rate or resolution via
107 * sysfs). We could use a per-device semaphore but since there
108 * rarely more than one PS/2 mouse connected and since semaphore
109 * is taken in "slow" paths it is not worth it.
110 */
Ingo Molnarc14471d2006-02-19 00:22:11 -0500111static DEFINE_MUTEX(psmouse_mutex);
Dmitry Torokhov04df1922005-06-01 02:39:44 -0500112
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500113static struct workqueue_struct *kpsmoused_wq;
114
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500115struct psmouse_protocol {
116 enum psmouse_type type;
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700117 bool maxproto;
Dmitry Torokhov6b9d3632010-04-19 00:42:16 -0700118 bool ignore_parity; /* Protocol should ignore parity errors from KBC */
Helge Dellere38de672006-09-10 21:54:39 -0400119 const char *name;
120 const char *alias;
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700121 int (*detect)(struct psmouse *, bool);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500122 int (*init)(struct psmouse *);
123};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125/*
126 * psmouse_process_byte() analyzes the PS/2 data stream and reports
127 * relevant events to the input module once full packet has arrived.
128 */
129
Daniel Drake7968a5d2011-11-08 00:00:35 -0800130psmouse_ret_t psmouse_process_byte(struct psmouse *psmouse)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -0500132 struct input_dev *dev = psmouse->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 unsigned char *packet = psmouse->packet;
134
135 if (psmouse->pktcnt < psmouse->pktsize)
136 return PSMOUSE_GOOD_DATA;
137
138/*
139 * Full packet accumulated, process it
140 */
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142/*
143 * Scroll wheel on IntelliMice, scroll buttons on NetMice
144 */
145
146 if (psmouse->type == PSMOUSE_IMPS || psmouse->type == PSMOUSE_GENPS)
147 input_report_rel(dev, REL_WHEEL, -(signed char) packet[3]);
148
149/*
150 * Scroll wheel and buttons on IntelliMouse Explorer
151 */
152
153 if (psmouse->type == PSMOUSE_IMEX) {
Pozsar Balazsb0c9ad82006-06-26 01:56:08 -0400154 switch (packet[3] & 0xC0) {
Dmitry Torokhova62f0d22010-05-19 10:39:17 -0700155 case 0x80: /* vertical scroll on IntelliMouse Explorer 4.0 */
156 input_report_rel(dev, REL_WHEEL, (int) (packet[3] & 32) - (int) (packet[3] & 31));
157 break;
158 case 0x40: /* horizontal scroll on IntelliMouse Explorer 4.0 */
159 input_report_rel(dev, REL_HWHEEL, (int) (packet[3] & 32) - (int) (packet[3] & 31));
160 break;
161 case 0x00:
162 case 0xC0:
163 input_report_rel(dev, REL_WHEEL, (int) (packet[3] & 8) - (int) (packet[3] & 7));
164 input_report_key(dev, BTN_SIDE, (packet[3] >> 4) & 1);
165 input_report_key(dev, BTN_EXTRA, (packet[3] >> 5) & 1);
166 break;
Pozsar Balazsb0c9ad82006-06-26 01:56:08 -0400167 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 }
169
170/*
171 * Extra buttons on Genius NewNet 3D
172 */
173
174 if (psmouse->type == PSMOUSE_GENPS) {
175 input_report_key(dev, BTN_SIDE, (packet[0] >> 6) & 1);
176 input_report_key(dev, BTN_EXTRA, (packet[0] >> 7) & 1);
177 }
178
179/*
180 * Extra button on ThinkingMouse
181 */
182 if (psmouse->type == PSMOUSE_THINKPS) {
183 input_report_key(dev, BTN_EXTRA, (packet[0] >> 3) & 1);
184 /* Without this bit of weirdness moving up gives wildly high Y changes. */
185 packet[1] |= (packet[0] & 0x40) << 1;
186 }
187
188/*
Aristeu Rozanskiaea6a462007-05-10 01:47:18 -0400189 * Cortron PS2 Trackball reports SIDE button on the 4th bit of the first
190 * byte.
191 */
192 if (psmouse->type == PSMOUSE_CORTRON) {
193 input_report_key(dev, BTN_SIDE, (packet[0] >> 3) & 1);
194 packet[0] |= 0x08;
195 }
196
197/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 * Generic PS/2 Mouse
199 */
200
201 input_report_key(dev, BTN_LEFT, packet[0] & 1);
202 input_report_key(dev, BTN_MIDDLE, (packet[0] >> 2) & 1);
203 input_report_key(dev, BTN_RIGHT, (packet[0] >> 1) & 1);
204
205 input_report_rel(dev, REL_X, packet[1] ? (int) packet[1] - (int) ((packet[0] << 4) & 0x100) : 0);
206 input_report_rel(dev, REL_Y, packet[2] ? (int) ((packet[0] << 3) & 0x100) - (int) packet[2] : 0);
207
208 input_sync(dev);
209
210 return PSMOUSE_FULL_PACKET;
211}
212
Andres Salomon8bf020e2008-09-16 12:30:33 -0400213void psmouse_queue_work(struct psmouse *psmouse, struct delayed_work *work,
214 unsigned long delay)
215{
216 queue_delayed_work(kpsmoused_wq, work, delay);
217}
218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219/*
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500220 * __psmouse_set_state() sets new psmouse state and resets all flags.
221 */
222
223static inline void __psmouse_set_state(struct psmouse *psmouse, enum psmouse_state new_state)
224{
225 psmouse->state = new_state;
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700226 psmouse->pktcnt = psmouse->out_of_sync_cnt = 0;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500227 psmouse->ps2dev.flags = 0;
228 psmouse->last = jiffies;
229}
230
231
232/*
233 * psmouse_set_state() sets new psmouse state and resets all flags and
234 * counters while holding serio lock so fighting with interrupt handler
235 * is not a concern.
236 */
237
Andres Salomona48cf5f2008-09-16 12:30:33 -0400238void psmouse_set_state(struct psmouse *psmouse, enum psmouse_state new_state)
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500239{
240 serio_pause_rx(psmouse->ps2dev.serio);
241 __psmouse_set_state(psmouse, new_state);
242 serio_continue_rx(psmouse->ps2dev.serio);
243}
244
245/*
246 * psmouse_handle_byte() processes one byte of the input data stream
247 * by calling corresponding protocol handler.
248 */
249
David Howells7d12e782006-10-05 14:55:46 +0100250static int psmouse_handle_byte(struct psmouse *psmouse)
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500251{
David Howells7d12e782006-10-05 14:55:46 +0100252 psmouse_ret_t rc = psmouse->protocol_handler(psmouse);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500253
254 switch (rc) {
Dmitry Torokhova62f0d22010-05-19 10:39:17 -0700255 case PSMOUSE_BAD_DATA:
256 if (psmouse->state == PSMOUSE_ACTIVATED) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700257 psmouse_warn(psmouse,
258 "%s at %s lost sync at byte %d\n",
259 psmouse->name, psmouse->phys,
260 psmouse->pktcnt);
Dmitry Torokhova62f0d22010-05-19 10:39:17 -0700261 if (++psmouse->out_of_sync_cnt == psmouse->resetafter) {
262 __psmouse_set_state(psmouse, PSMOUSE_IGNORE);
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700263 psmouse_notice(psmouse,
264 "issuing reconnect request\n");
Dmitry Torokhova62f0d22010-05-19 10:39:17 -0700265 serio_reconnect(psmouse->ps2dev.serio);
266 return -1;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500267 }
Dmitry Torokhova62f0d22010-05-19 10:39:17 -0700268 }
269 psmouse->pktcnt = 0;
270 break;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500271
Dmitry Torokhova62f0d22010-05-19 10:39:17 -0700272 case PSMOUSE_FULL_PACKET:
273 psmouse->pktcnt = 0;
274 if (psmouse->out_of_sync_cnt) {
275 psmouse->out_of_sync_cnt = 0;
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700276 psmouse_notice(psmouse,
277 "%s at %s - driver resynced.\n",
278 psmouse->name, psmouse->phys);
Dmitry Torokhova62f0d22010-05-19 10:39:17 -0700279 }
280 break;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500281
Dmitry Torokhova62f0d22010-05-19 10:39:17 -0700282 case PSMOUSE_GOOD_DATA:
283 break;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500284 }
285 return 0;
286}
287
288/*
289 * psmouse_interrupt() handles incoming characters, either passing them
290 * for normal processing or gathering them as command response.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 */
292
293static irqreturn_t psmouse_interrupt(struct serio *serio,
David Howells7d12e782006-10-05 14:55:46 +0100294 unsigned char data, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
296 struct psmouse *psmouse = serio_get_drvdata(serio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298 if (psmouse->state == PSMOUSE_IGNORE)
299 goto out;
300
Dmitry Torokhov6b9d3632010-04-19 00:42:16 -0700301 if (unlikely((flags & SERIO_TIMEOUT) ||
302 ((flags & SERIO_PARITY) && !psmouse->ignore_parity))) {
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 if (psmouse->state == PSMOUSE_ACTIVATED)
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700305 psmouse_warn(psmouse,
306 "bad data from KBC -%s%s\n",
307 flags & SERIO_TIMEOUT ? " timeout" : "",
308 flags & SERIO_PARITY ? " bad parity" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 ps2_cmd_aborted(&psmouse->ps2dev);
310 goto out;
311 }
312
313 if (unlikely(psmouse->ps2dev.flags & PS2_FLAG_ACK))
314 if (ps2_handle_ack(&psmouse->ps2dev, data))
315 goto out;
316
317 if (unlikely(psmouse->ps2dev.flags & PS2_FLAG_CMD))
318 if (ps2_handle_response(&psmouse->ps2dev, data))
319 goto out;
320
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500321 if (psmouse->state <= PSMOUSE_RESYNCING)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 goto out;
323
324 if (psmouse->state == PSMOUSE_ACTIVATED &&
325 psmouse->pktcnt && time_after(jiffies, psmouse->last + HZ/2)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -0700326 psmouse_info(psmouse, "%s at %s lost synchronization, throwing %d bytes away.\n",
327 psmouse->name, psmouse->phys, psmouse->pktcnt);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500328 psmouse->badbyte = psmouse->packet[0];
329 __psmouse_set_state(psmouse, PSMOUSE_RESYNCING);
Andres Salomon8bf020e2008-09-16 12:30:33 -0400330 psmouse_queue_work(psmouse, &psmouse->resync_work, 0);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500331 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 }
333
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 psmouse->packet[psmouse->pktcnt++] = data;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500335/*
336 * Check if this is a new device announcement (0xAA 0x00)
337 */
338 if (unlikely(psmouse->packet[0] == PSMOUSE_RET_BAT && psmouse->pktcnt <= 2)) {
Dmitry Torokhov89c9b482006-04-29 01:12:44 -0400339 if (psmouse->pktcnt == 1) {
340 psmouse->last = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 goto out;
Dmitry Torokhov89c9b482006-04-29 01:12:44 -0400342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Zephaniah E. Hull535650f2009-05-14 22:02:33 -0700344 if (psmouse->packet[1] == PSMOUSE_RET_ID ||
345 (psmouse->type == PSMOUSE_HGPK &&
346 psmouse->packet[1] == PSMOUSE_RET_BAT)) {
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500347 __psmouse_set_state(psmouse, PSMOUSE_IGNORE);
348 serio_reconnect(serio);
349 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 }
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500351/*
352 * Not a new device, try processing first byte normally
353 */
354 psmouse->pktcnt = 1;
David Howells7d12e782006-10-05 14:55:46 +0100355 if (psmouse_handle_byte(psmouse))
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500356 goto out;
357
358 psmouse->packet[psmouse->pktcnt++] = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 }
360
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500361/*
362 * See if we need to force resync because mouse was idle for too long
363 */
364 if (psmouse->state == PSMOUSE_ACTIVATED &&
365 psmouse->pktcnt == 1 && psmouse->resync_time &&
366 time_after(jiffies, psmouse->last + psmouse->resync_time * HZ)) {
367 psmouse->badbyte = psmouse->packet[0];
368 __psmouse_set_state(psmouse, PSMOUSE_RESYNCING);
Andres Salomon8bf020e2008-09-16 12:30:33 -0400369 psmouse_queue_work(psmouse, &psmouse->resync_work, 0);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500370 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 }
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500372
373 psmouse->last = jiffies;
David Howells7d12e782006-10-05 14:55:46 +0100374 psmouse_handle_byte(psmouse);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -0500375
376 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 return IRQ_HANDLED;
378}
379
380
381/*
382 * psmouse_sliced_command() sends an extended PS/2 command to the mouse
383 * using sliced syntax, understood by advanced devices, such as Logitech
384 * or Synaptics touchpads. The command is encoded as:
385 * 0xE6 0xE8 rr 0xE8 ss 0xE8 tt 0xE8 uu where (rr*64)+(ss*16)+(tt*4)+uu
386 * is the command.
387 */
388int psmouse_sliced_command(struct psmouse *psmouse, unsigned char command)
389{
390 int i;
391
392 if (ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_SETSCALE11))
393 return -1;
394
395 for (i = 6; i >= 0; i -= 2) {
396 unsigned char d = (command >> i) & 3;
397 if (ps2_command(&psmouse->ps2dev, &d, PSMOUSE_CMD_SETRES))
398 return -1;
399 }
400
401 return 0;
402}
403
404
405/*
406 * psmouse_reset() resets the mouse into power-on state.
407 */
408int psmouse_reset(struct psmouse *psmouse)
409{
410 unsigned char param[2];
411
412 if (ps2_command(&psmouse->ps2dev, param, PSMOUSE_CMD_RESET_BAT))
413 return -1;
414
415 if (param[0] != PSMOUSE_RET_BAT && param[1] != PSMOUSE_RET_ID)
416 return -1;
417
418 return 0;
419}
420
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800421/*
422 * Here we set the mouse resolution.
423 */
424
425void psmouse_set_resolution(struct psmouse *psmouse, unsigned int resolution)
426{
427 static const unsigned char params[] = { 0, 1, 2, 2, 3 };
428 unsigned char p;
429
430 if (resolution == 0 || resolution > 200)
431 resolution = 200;
432
433 p = params[resolution / 50];
434 ps2_command(&psmouse->ps2dev, &p, PSMOUSE_CMD_SETRES);
435 psmouse->resolution = 25 << p;
436}
437
438/*
439 * Here we set the mouse report rate.
440 */
441
442static void psmouse_set_rate(struct psmouse *psmouse, unsigned int rate)
443{
444 static const unsigned char rates[] = { 200, 100, 80, 60, 40, 20, 10, 0 };
445 unsigned char r;
446 int i = 0;
447
448 while (rates[i] > rate) i++;
449 r = rates[i];
450 ps2_command(&psmouse->ps2dev, &r, PSMOUSE_CMD_SETRATE);
451 psmouse->rate = r;
452}
453
454/*
455 * psmouse_poll() - default poll handler. Everyone except for ALPS uses it.
456 */
457
458static int psmouse_poll(struct psmouse *psmouse)
459{
460 return ps2_command(&psmouse->ps2dev, psmouse->packet,
461 PSMOUSE_CMD_POLL | (psmouse->pktsize << 8));
462}
463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465/*
466 * Genius NetMouse magic init.
467 */
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700468static int genius_detect(struct psmouse *psmouse, bool set_properties)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
470 struct ps2dev *ps2dev = &psmouse->ps2dev;
471 unsigned char param[4];
472
473 param[0] = 3;
474 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES);
475 ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11);
476 ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11);
477 ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11);
478 ps2_command(ps2dev, param, PSMOUSE_CMD_GETINFO);
479
480 if (param[0] != 0x00 || param[1] != 0x33 || param[2] != 0x55)
481 return -1;
482
483 if (set_properties) {
Dmitry Torokhov315eb992009-11-16 22:12:21 -0800484 __set_bit(BTN_MIDDLE, psmouse->dev->keybit);
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700485 __set_bit(BTN_EXTRA, psmouse->dev->keybit);
486 __set_bit(BTN_SIDE, psmouse->dev->keybit);
487 __set_bit(REL_WHEEL, psmouse->dev->relbit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
489 psmouse->vendor = "Genius";
Dmitry Torokhova3f3f312006-01-29 21:50:46 -0500490 psmouse->name = "Mouse";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 psmouse->pktsize = 4;
492 }
493
494 return 0;
495}
496
497/*
498 * IntelliMouse magic init.
499 */
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700500static int intellimouse_detect(struct psmouse *psmouse, bool set_properties)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501{
502 struct ps2dev *ps2dev = &psmouse->ps2dev;
503 unsigned char param[2];
504
505 param[0] = 200;
506 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
507 param[0] = 100;
508 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
509 param[0] = 80;
510 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
511 ps2_command(ps2dev, param, PSMOUSE_CMD_GETID);
512
513 if (param[0] != 3)
514 return -1;
515
516 if (set_properties) {
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700517 __set_bit(BTN_MIDDLE, psmouse->dev->keybit);
518 __set_bit(REL_WHEEL, psmouse->dev->relbit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Dmitry Torokhov315eb992009-11-16 22:12:21 -0800520 if (!psmouse->vendor)
521 psmouse->vendor = "Generic";
522 if (!psmouse->name)
523 psmouse->name = "Wheel Mouse";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 psmouse->pktsize = 4;
525 }
526
527 return 0;
528}
529
530/*
531 * Try IntelliMouse/Explorer magic init.
532 */
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700533static int im_explorer_detect(struct psmouse *psmouse, bool set_properties)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
535 struct ps2dev *ps2dev = &psmouse->ps2dev;
536 unsigned char param[2];
537
538 intellimouse_detect(psmouse, 0);
539
540 param[0] = 200;
541 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
542 param[0] = 200;
543 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
544 param[0] = 80;
545 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
546 ps2_command(ps2dev, param, PSMOUSE_CMD_GETID);
547
548 if (param[0] != 4)
549 return -1;
550
Pozsar Balazsb0c9ad82006-06-26 01:56:08 -0400551/* Magic to enable horizontal scrolling on IntelliMouse 4.0 */
552 param[0] = 200;
553 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
554 param[0] = 80;
555 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
556 param[0] = 40;
557 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 if (set_properties) {
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700560 __set_bit(BTN_MIDDLE, psmouse->dev->keybit);
561 __set_bit(REL_WHEEL, psmouse->dev->relbit);
562 __set_bit(REL_HWHEEL, psmouse->dev->relbit);
563 __set_bit(BTN_SIDE, psmouse->dev->keybit);
564 __set_bit(BTN_EXTRA, psmouse->dev->keybit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Dmitry Torokhov315eb992009-11-16 22:12:21 -0800566 if (!psmouse->vendor)
567 psmouse->vendor = "Generic";
568 if (!psmouse->name)
569 psmouse->name = "Explorer Mouse";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 psmouse->pktsize = 4;
571 }
572
573 return 0;
574}
575
576/*
577 * Kensington ThinkingMouse / ExpertMouse magic init.
578 */
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700579static int thinking_detect(struct psmouse *psmouse, bool set_properties)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580{
581 struct ps2dev *ps2dev = &psmouse->ps2dev;
582 unsigned char param[2];
Helge Dellere38de672006-09-10 21:54:39 -0400583 static const unsigned char seq[] = { 20, 60, 40, 20, 20, 60, 40, 20, 20 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 int i;
585
586 param[0] = 10;
587 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
588 param[0] = 0;
589 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES);
Helge Dellere38de672006-09-10 21:54:39 -0400590 for (i = 0; i < ARRAY_SIZE(seq); i++) {
591 param[0] = seq[i];
592 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
593 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 ps2_command(ps2dev, param, PSMOUSE_CMD_GETID);
595
596 if (param[0] != 2)
597 return -1;
598
599 if (set_properties) {
Dmitry Torokhov315eb992009-11-16 22:12:21 -0800600 __set_bit(BTN_MIDDLE, psmouse->dev->keybit);
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700601 __set_bit(BTN_EXTRA, psmouse->dev->keybit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
603 psmouse->vendor = "Kensington";
604 psmouse->name = "ThinkingMouse";
605 }
606
607 return 0;
608}
609
610/*
611 * Bare PS/2 protocol "detection". Always succeeds.
612 */
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700613static int ps2bare_detect(struct psmouse *psmouse, bool set_properties)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614{
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500615 if (set_properties) {
Dmitry Torokhov315eb992009-11-16 22:12:21 -0800616 if (!psmouse->vendor)
617 psmouse->vendor = "Generic";
618 if (!psmouse->name)
619 psmouse->name = "Mouse";
620
621/*
622 * We have no way of figuring true number of buttons so let's
623 * assume that the device has 3.
624 */
625 __set_bit(BTN_MIDDLE, psmouse->dev->keybit);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500626 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
628 return 0;
629}
630
Aristeu Rozanskiaea6a462007-05-10 01:47:18 -0400631/*
632 * Cortron PS/2 protocol detection. There's no special way to detect it, so it
633 * must be forced by sysfs protocol writing.
634 */
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700635static int cortron_detect(struct psmouse *psmouse, bool set_properties)
Aristeu Rozanskiaea6a462007-05-10 01:47:18 -0400636{
637 if (set_properties) {
638 psmouse->vendor = "Cortron";
639 psmouse->name = "PS/2 Trackball";
Dmitry Torokhov315eb992009-11-16 22:12:21 -0800640
641 __set_bit(BTN_MIDDLE, psmouse->dev->keybit);
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700642 __set_bit(BTN_SIDE, psmouse->dev->keybit);
Aristeu Rozanskiaea6a462007-05-10 01:47:18 -0400643 }
644
645 return 0;
646}
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500647
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648/*
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800649 * Apply default settings to the psmouse structure. Most of them will
650 * be overridden by individual protocol initialization routines.
651 */
652
653static void psmouse_apply_defaults(struct psmouse *psmouse)
654{
655 struct input_dev *input_dev = psmouse->dev;
656
657 memset(input_dev->evbit, 0, sizeof(input_dev->evbit));
658 memset(input_dev->keybit, 0, sizeof(input_dev->keybit));
659 memset(input_dev->relbit, 0, sizeof(input_dev->relbit));
660 memset(input_dev->absbit, 0, sizeof(input_dev->absbit));
661 memset(input_dev->mscbit, 0, sizeof(input_dev->mscbit));
662
663 __set_bit(EV_KEY, input_dev->evbit);
664 __set_bit(EV_REL, input_dev->evbit);
665
666 __set_bit(BTN_LEFT, input_dev->keybit);
667 __set_bit(BTN_RIGHT, input_dev->keybit);
668
669 __set_bit(REL_X, input_dev->relbit);
670 __set_bit(REL_Y, input_dev->relbit);
671
672 psmouse->set_rate = psmouse_set_rate;
673 psmouse->set_resolution = psmouse_set_resolution;
674 psmouse->poll = psmouse_poll;
675 psmouse->protocol_handler = psmouse_process_byte;
676 psmouse->pktsize = 3;
677 psmouse->reconnect = NULL;
678 psmouse->disconnect = NULL;
679 psmouse->cleanup = NULL;
680 psmouse->pt_activate = NULL;
681 psmouse->pt_deactivate = NULL;
682}
683
684/*
685 * Apply default settings to the psmouse structure and call specified
686 * protocol detection or initialization routine.
687 */
688static int psmouse_do_detect(int (*detect)(struct psmouse *psmouse,
689 bool set_properties),
690 struct psmouse *psmouse, bool set_properties)
691{
692 if (set_properties)
693 psmouse_apply_defaults(psmouse);
694
695 return detect(psmouse, set_properties);
696}
697
698/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 * psmouse_extensions() probes for any extensions to the basic PS/2 protocol
700 * the mouse may have.
701 */
702
703static int psmouse_extensions(struct psmouse *psmouse,
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700704 unsigned int max_proto, bool set_properties)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705{
Jiri Kosina06989892009-11-16 22:12:13 -0800706 bool synaptics_hardware = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
Dmitry Torokhova15d60f2005-05-29 02:30:32 -0500708/*
709 * We always check for lifebook because it does not disturb mouse
710 * (it only checks DMI information).
711 */
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800712 if (psmouse_do_detect(lifebook_detect, psmouse, set_properties) == 0) {
Dmitry Torokhova15d60f2005-05-29 02:30:32 -0500713 if (max_proto > PSMOUSE_IMEX) {
714 if (!set_properties || lifebook_init(psmouse) == 0)
715 return PSMOUSE_LIFEBOOK;
716 }
717 }
Kenan Esau02d7f582005-05-29 02:30:22 -0500718
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719/*
720 * Try Kensington ThinkingMouse (we try first, because synaptics probe
721 * upsets the thinkingmouse).
722 */
723
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800724 if (max_proto > PSMOUSE_IMEX &&
725 psmouse_do_detect(thinking_detect, psmouse, set_properties) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 return PSMOUSE_THINKPS;
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800727 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
729/*
Andres Salomon55e3d922007-03-10 01:39:54 -0500730 * Try Synaptics TouchPad. Note that probing is done even if Synaptics protocol
731 * support is disabled in config - we need to know if it is synaptics so we
732 * can reset it properly after probing for intellimouse.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 */
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800734 if (max_proto > PSMOUSE_PS2 &&
735 psmouse_do_detect(synaptics_detect, psmouse, set_properties) == 0) {
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700736 synaptics_hardware = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
738 if (max_proto > PSMOUSE_IMEX) {
Daniel Drakee4e6efd2010-01-07 01:52:39 -0800739/*
740 * Try activating protocol, but check if support is enabled first, since
741 * we try detecting Synaptics even when protocol is disabled.
742 */
743 if (synaptics_supported() &&
744 (!set_properties || synaptics_init(psmouse) == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 return PSMOUSE_SYNAPTICS;
Daniel Drakee4e6efd2010-01-07 01:52:39 -0800746 }
747
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748/*
749 * Some Synaptics touchpads can emulate extended protocols (like IMPS/2).
750 * Unfortunately Logitech/Genius probes confuse some firmware versions so
751 * we'll have to skip them.
752 */
753 max_proto = PSMOUSE_IMEX;
754 }
755/*
756 * Make sure that touchpad is in relative mode, gestures (taps) are enabled
757 */
758 synaptics_reset(psmouse);
759 }
760
761/*
762 * Try ALPS TouchPad
763 */
764 if (max_proto > PSMOUSE_IMEX) {
765 ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_RESET_DIS);
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800766 if (psmouse_do_detect(alps_detect,
767 psmouse, set_properties) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 if (!set_properties || alps_init(psmouse) == 0)
769 return PSMOUSE_ALPS;
770/*
771 * Init failed, try basic relative protocols
772 */
773 max_proto = PSMOUSE_IMEX;
774 }
775 }
776
Andres Salomondf08ef22008-09-16 12:30:34 -0400777/*
778 * Try OLPC HGPK touchpad.
779 */
780 if (max_proto > PSMOUSE_IMEX &&
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800781 psmouse_do_detect(hgpk_detect, psmouse, set_properties) == 0) {
Andres Salomondf08ef22008-09-16 12:30:34 -0400782 if (!set_properties || hgpk_init(psmouse) == 0)
783 return PSMOUSE_HGPK;
784/*
785 * Init failed, try basic relative protocols
786 */
787 max_proto = PSMOUSE_IMEX;
788 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400790/*
791 * Try Elantech touchpad.
792 */
793 if (max_proto > PSMOUSE_IMEX &&
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800794 psmouse_do_detect(elantech_detect, psmouse, set_properties) == 0) {
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400795 if (!set_properties || elantech_init(psmouse) == 0)
796 return PSMOUSE_ELANTECH;
797/*
798 * Init failed, try basic relative protocols
799 */
800 max_proto = PSMOUSE_IMEX;
801 }
802
Andres Salomondf08ef22008-09-16 12:30:34 -0400803 if (max_proto > PSMOUSE_IMEX) {
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800804 if (psmouse_do_detect(genius_detect,
805 psmouse, set_properties) == 0)
Stefan Lucke24bf10a2007-02-18 01:49:10 -0500806 return PSMOUSE_GENPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800808 if (psmouse_do_detect(ps2pp_init,
809 psmouse, set_properties) == 0)
Stefan Lucke24bf10a2007-02-18 01:49:10 -0500810 return PSMOUSE_PS2PP;
811
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800812 if (psmouse_do_detect(trackpoint_detect,
813 psmouse, set_properties) == 0)
Stefan Lucke24bf10a2007-02-18 01:49:10 -0500814 return PSMOUSE_TRACKPOINT;
815
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800816 if (psmouse_do_detect(touchkit_ps2_detect,
817 psmouse, set_properties) == 0)
Stefan Lucke24bf10a2007-02-18 01:49:10 -0500818 return PSMOUSE_TOUCHKIT_PS2;
819 }
Dmitry Torokhovba449952005-12-21 00:51:31 -0500820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821/*
Tai-hwa Liang4a18b3a2010-01-13 00:16:27 -0800822 * Try Finger Sensing Pad. We do it here because its probe upsets
823 * Trackpoint devices (causing TP_READ_ID command to time out).
824 */
825 if (max_proto > PSMOUSE_IMEX) {
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800826 if (psmouse_do_detect(fsp_detect,
827 psmouse, set_properties) == 0) {
Tai-hwa Liang4a18b3a2010-01-13 00:16:27 -0800828 if (!set_properties || fsp_init(psmouse) == 0)
829 return PSMOUSE_FSP;
830/*
831 * Init failed, try basic relative protocols
832 */
833 max_proto = PSMOUSE_IMEX;
834 }
835 }
836
837/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 * Reset to defaults in case the device got confused by extended
Alon Ziv554fc192007-08-30 00:22:48 -0400839 * protocol probes. Note that we follow up with full reset because
840 * some mice put themselves to sleep when they see PSMOUSE_RESET_DIS.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 */
Alon Ziv554fc192007-08-30 00:22:48 -0400842 ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_RESET_DIS);
Dmitry Torokhovba449952005-12-21 00:51:31 -0500843 psmouse_reset(psmouse);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800845 if (max_proto >= PSMOUSE_IMEX &&
846 psmouse_do_detect(im_explorer_detect,
847 psmouse, set_properties) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 return PSMOUSE_IMEX;
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800849 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800851 if (max_proto >= PSMOUSE_IMPS &&
852 psmouse_do_detect(intellimouse_detect,
853 psmouse, set_properties) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 return PSMOUSE_IMPS;
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800855 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
857/*
858 * Okay, all failed, we have a standard mouse here. The number of the buttons
859 * is still a question, though. We assume 3.
860 */
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -0800861 psmouse_do_detect(ps2bare_detect, psmouse, set_properties);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
863 if (synaptics_hardware) {
864/*
865 * We detected Synaptics hardware but it did not respond to IMPS/2 probes.
866 * We need to reset the touchpad because if there is a track point on the
867 * pass through port it could get disabled while probing for protocol
868 * extensions.
869 */
870 psmouse_reset(psmouse);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 }
872
873 return PSMOUSE_PS2;
874}
875
Helge Dellere38de672006-09-10 21:54:39 -0400876static const struct psmouse_protocol psmouse_protocols[] = {
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500877 {
878 .type = PSMOUSE_PS2,
879 .name = "PS/2",
880 .alias = "bare",
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700881 .maxproto = true,
Dmitry Torokhov6b9d3632010-04-19 00:42:16 -0700882 .ignore_parity = true,
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500883 .detect = ps2bare_detect,
884 },
Andres Salomon55e3d922007-03-10 01:39:54 -0500885#ifdef CONFIG_MOUSE_PS2_LOGIPS2PP
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500886 {
887 .type = PSMOUSE_PS2PP,
888 .name = "PS2++",
889 .alias = "logitech",
890 .detect = ps2pp_init,
891 },
Andres Salomon55e3d922007-03-10 01:39:54 -0500892#endif
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500893 {
894 .type = PSMOUSE_THINKPS,
895 .name = "ThinkPS/2",
896 .alias = "thinkps",
897 .detect = thinking_detect,
898 },
899 {
900 .type = PSMOUSE_GENPS,
901 .name = "GenPS/2",
902 .alias = "genius",
903 .detect = genius_detect,
904 },
905 {
906 .type = PSMOUSE_IMPS,
907 .name = "ImPS/2",
908 .alias = "imps",
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700909 .maxproto = true,
Dmitry Torokhov6b9d3632010-04-19 00:42:16 -0700910 .ignore_parity = true,
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500911 .detect = intellimouse_detect,
912 },
913 {
914 .type = PSMOUSE_IMEX,
915 .name = "ImExPS/2",
916 .alias = "exps",
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700917 .maxproto = true,
Dmitry Torokhov6b9d3632010-04-19 00:42:16 -0700918 .ignore_parity = true,
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500919 .detect = im_explorer_detect,
920 },
Andres Salomon55e3d922007-03-10 01:39:54 -0500921#ifdef CONFIG_MOUSE_PS2_SYNAPTICS
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500922 {
923 .type = PSMOUSE_SYNAPTICS,
924 .name = "SynPS/2",
925 .alias = "synaptics",
926 .detect = synaptics_detect,
927 .init = synaptics_init,
928 },
Daniel Drake7968a5d2011-11-08 00:00:35 -0800929 {
930 .type = PSMOUSE_SYNAPTICS_RELATIVE,
931 .name = "SynRelPS/2",
932 .alias = "synaptics-relative",
933 .detect = synaptics_detect,
934 .init = synaptics_init_relative,
935 },
Andres Salomon55e3d922007-03-10 01:39:54 -0500936#endif
937#ifdef CONFIG_MOUSE_PS2_ALPS
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500938 {
939 .type = PSMOUSE_ALPS,
940 .name = "AlpsPS/2",
941 .alias = "alps",
942 .detect = alps_detect,
943 .init = alps_init,
944 },
Andres Salomon55e3d922007-03-10 01:39:54 -0500945#endif
946#ifdef CONFIG_MOUSE_PS2_LIFEBOOK
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500947 {
948 .type = PSMOUSE_LIFEBOOK,
949 .name = "LBPS/2",
950 .alias = "lifebook",
951 .init = lifebook_init,
952 },
Andres Salomon55e3d922007-03-10 01:39:54 -0500953#endif
954#ifdef CONFIG_MOUSE_PS2_TRACKPOINT
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -0500955 {
Stephen Evanchik541e3162005-08-08 01:26:18 -0500956 .type = PSMOUSE_TRACKPOINT,
957 .name = "TPPS/2",
958 .alias = "trackpoint",
959 .detect = trackpoint_detect,
960 },
Andres Salomon55e3d922007-03-10 01:39:54 -0500961#endif
962#ifdef CONFIG_MOUSE_PS2_TOUCHKIT
Stephen Evanchik541e3162005-08-08 01:26:18 -0500963 {
Stefan Lucke24bf10a2007-02-18 01:49:10 -0500964 .type = PSMOUSE_TOUCHKIT_PS2,
965 .name = "touchkitPS/2",
966 .alias = "touchkit",
967 .detect = touchkit_ps2_detect,
968 },
Andres Salomon55e3d922007-03-10 01:39:54 -0500969#endif
Andres Salomondf08ef22008-09-16 12:30:34 -0400970#ifdef CONFIG_MOUSE_PS2_OLPC
971 {
972 .type = PSMOUSE_HGPK,
973 .name = "OLPC HGPK",
974 .alias = "hgpk",
975 .detect = hgpk_detect,
976 },
977#endif
Arjan Opmeer2a0bd752008-10-16 22:10:19 -0400978#ifdef CONFIG_MOUSE_PS2_ELANTECH
979 {
980 .type = PSMOUSE_ELANTECH,
981 .name = "ETPS/2",
982 .alias = "elantech",
983 .detect = elantech_detect,
984 .init = elantech_init,
985 },
Tai-hwa Liangfc69f4a2009-05-10 18:15:39 -0700986#endif
987#ifdef CONFIG_MOUSE_PS2_SENTELIC
988 {
989 .type = PSMOUSE_FSP,
990 .name = "FSPPS/2",
991 .alias = "fsp",
992 .detect = fsp_detect,
993 .init = fsp_init,
994 },
995#endif
Stefan Lucke24bf10a2007-02-18 01:49:10 -0500996 {
Aristeu Rozanskiaea6a462007-05-10 01:47:18 -0400997 .type = PSMOUSE_CORTRON,
998 .name = "CortronPS/2",
999 .alias = "cortps",
1000 .detect = cortron_detect,
1001 },
1002 {
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001003 .type = PSMOUSE_AUTO,
1004 .name = "auto",
1005 .alias = "any",
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001006 .maxproto = true,
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001007 },
1008};
1009
Helge Dellere38de672006-09-10 21:54:39 -04001010static const struct psmouse_protocol *psmouse_protocol_by_type(enum psmouse_type type)
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001011{
1012 int i;
1013
1014 for (i = 0; i < ARRAY_SIZE(psmouse_protocols); i++)
1015 if (psmouse_protocols[i].type == type)
1016 return &psmouse_protocols[i];
1017
1018 WARN_ON(1);
1019 return &psmouse_protocols[0];
1020}
1021
Helge Dellere38de672006-09-10 21:54:39 -04001022static const struct psmouse_protocol *psmouse_protocol_by_name(const char *name, size_t len)
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001023{
Helge Dellere38de672006-09-10 21:54:39 -04001024 const struct psmouse_protocol *p;
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001025 int i;
1026
1027 for (i = 0; i < ARRAY_SIZE(psmouse_protocols); i++) {
1028 p = &psmouse_protocols[i];
1029
1030 if ((strlen(p->name) == len && !strncmp(p->name, name, len)) ||
1031 (strlen(p->alias) == len && !strncmp(p->alias, name, len)))
1032 return &psmouse_protocols[i];
1033 }
1034
1035 return NULL;
1036}
1037
1038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039/*
1040 * psmouse_probe() probes for a PS/2 mouse.
1041 */
1042
1043static int psmouse_probe(struct psmouse *psmouse)
1044{
1045 struct ps2dev *ps2dev = &psmouse->ps2dev;
1046 unsigned char param[2];
1047
1048/*
1049 * First, we check if it's a mouse. It should send 0x00 or 0x03
1050 * in case of an IntelliMouse in 4-byte mode or 0x04 for IM Explorer.
Vojtech Pavlik7741e932005-05-28 02:11:42 -05001051 * Sunrex K8561 IR Keyboard/Mouse reports 0xff on second and subsequent
1052 * ID queries, probably due to a firmware bug.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 */
1054
1055 param[0] = 0xa5;
1056 if (ps2_command(ps2dev, param, PSMOUSE_CMD_GETID))
1057 return -1;
1058
Vojtech Pavlik7741e932005-05-28 02:11:42 -05001059 if (param[0] != 0x00 && param[0] != 0x03 &&
1060 param[0] != 0x04 && param[0] != 0xff)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 return -1;
1062
1063/*
1064 * Then we reset and disable the mouse so that it doesn't generate events.
1065 */
1066
1067 if (ps2_command(ps2dev, NULL, PSMOUSE_CMD_RESET_DIS))
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001068 psmouse_warn(psmouse, "Failed to reset mouse on %s\n",
1069 ps2dev->serio->phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
1071 return 0;
1072}
1073
1074/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 * psmouse_initialize() initializes the mouse to a sane state.
1076 */
1077
1078static void psmouse_initialize(struct psmouse *psmouse)
1079{
1080/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 * We set the mouse report rate, resolution and scaling.
1082 */
1083
1084 if (psmouse_max_proto != PSMOUSE_PS2) {
1085 psmouse->set_rate(psmouse, psmouse->rate);
1086 psmouse->set_resolution(psmouse, psmouse->resolution);
1087 ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_SETSCALE11);
1088 }
1089}
1090
1091/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 * psmouse_activate() enables the mouse so that we get motion reports from it.
1093 */
1094
Andres Salomonbd26f3d2012-02-24 00:51:37 -08001095int psmouse_activate(struct psmouse *psmouse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096{
Andres Salomonbd26f3d2012-02-24 00:51:37 -08001097 if (ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_ENABLE)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001098 psmouse_warn(psmouse, "Failed to enable mouse on %s\n",
1099 psmouse->ps2dev.serio->phys);
Andres Salomonbd26f3d2012-02-24 00:51:37 -08001100 return -1;
1101 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
1103 psmouse_set_state(psmouse, PSMOUSE_ACTIVATED);
Andres Salomonbd26f3d2012-02-24 00:51:37 -08001104 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105}
1106
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107/*
1108 * psmouse_deactivate() puts the mouse into poll mode so that we don't get motion
Jean Delvarec03983a2007-10-19 23:22:55 +02001109 * reports from it unless we explicitly request it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 */
1111
Andres Salomonbd26f3d2012-02-24 00:51:37 -08001112int psmouse_deactivate(struct psmouse *psmouse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113{
Andres Salomonbd26f3d2012-02-24 00:51:37 -08001114 if (ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_DISABLE)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001115 psmouse_warn(psmouse, "Failed to deactivate mouse on %s\n",
1116 psmouse->ps2dev.serio->phys);
Andres Salomonbd26f3d2012-02-24 00:51:37 -08001117 return -1;
1118 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
1120 psmouse_set_state(psmouse, PSMOUSE_CMD_MODE);
Andres Salomonbd26f3d2012-02-24 00:51:37 -08001121 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122}
1123
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001124
1125/*
1126 * psmouse_resync() attempts to re-validate current protocol.
1127 */
1128
David Howellsc4028952006-11-22 14:57:56 +00001129static void psmouse_resync(struct work_struct *work)
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001130{
David Howellsc4028952006-11-22 14:57:56 +00001131 struct psmouse *parent = NULL, *psmouse =
Andres Salomon8bf020e2008-09-16 12:30:33 -04001132 container_of(work, struct psmouse, resync_work.work);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001133 struct serio *serio = psmouse->ps2dev.serio;
1134 psmouse_ret_t rc = PSMOUSE_GOOD_DATA;
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001135 bool failed = false, enabled = false;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001136 int i;
1137
Ingo Molnarc14471d2006-02-19 00:22:11 -05001138 mutex_lock(&psmouse_mutex);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001139
1140 if (psmouse->state != PSMOUSE_RESYNCING)
1141 goto out;
1142
1143 if (serio->parent && serio->id.type == SERIO_PS_PSTHRU) {
1144 parent = serio_get_drvdata(serio->parent);
1145 psmouse_deactivate(parent);
1146 }
1147
1148/*
1149 * Some mice don't ACK commands sent while they are in the middle of
1150 * transmitting motion packet. To avoid delay we use ps2_sendbyte()
1151 * instead of ps2_command() which would wait for 200ms for an ACK
1152 * that may never come.
1153 * As an additional quirk ALPS touchpads may not only forget to ACK
1154 * disable command but will stop reporting taps, so if we see that
1155 * mouse at least once ACKs disable we will do full reconnect if ACK
1156 * is missing.
1157 */
1158 psmouse->num_resyncs++;
1159
1160 if (ps2_sendbyte(&psmouse->ps2dev, PSMOUSE_CMD_DISABLE, 20)) {
1161 if (psmouse->num_resyncs < 3 || psmouse->acks_disable_command)
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001162 failed = true;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001163 } else
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001164 psmouse->acks_disable_command = true;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001165
1166/*
1167 * Poll the mouse. If it was reset the packet will be shorter than
1168 * psmouse->pktsize and ps2_command will fail. We do not expect and
1169 * do not handle scenario when mouse "upgrades" its protocol while
1170 * disconnected since it would require additional delay. If we ever
1171 * see a mouse that does it we'll adjust the code.
1172 */
1173 if (!failed) {
1174 if (psmouse->poll(psmouse))
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001175 failed = true;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001176 else {
1177 psmouse_set_state(psmouse, PSMOUSE_CMD_MODE);
1178 for (i = 0; i < psmouse->pktsize; i++) {
1179 psmouse->pktcnt++;
David Howells7d12e782006-10-05 14:55:46 +01001180 rc = psmouse->protocol_handler(psmouse);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001181 if (rc != PSMOUSE_GOOD_DATA)
1182 break;
1183 }
1184 if (rc != PSMOUSE_FULL_PACKET)
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001185 failed = true;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001186 psmouse_set_state(psmouse, PSMOUSE_RESYNCING);
1187 }
1188 }
1189/*
1190 * Now try to enable mouse. We try to do that even if poll failed and also
1191 * repeat our attempts 5 times, otherwise we may be left out with disabled
1192 * mouse.
1193 */
1194 for (i = 0; i < 5; i++) {
1195 if (!ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_ENABLE)) {
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001196 enabled = true;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001197 break;
1198 }
1199 msleep(200);
1200 }
1201
1202 if (!enabled) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001203 psmouse_warn(psmouse, "failed to re-enable mouse on %s\n",
1204 psmouse->ps2dev.serio->phys);
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001205 failed = true;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001206 }
1207
1208 if (failed) {
1209 psmouse_set_state(psmouse, PSMOUSE_IGNORE);
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001210 psmouse_info(psmouse,
1211 "resync failed, issuing reconnect request\n");
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001212 serio_reconnect(serio);
1213 } else
1214 psmouse_set_state(psmouse, PSMOUSE_ACTIVATED);
1215
1216 if (parent)
1217 psmouse_activate(parent);
1218 out:
Ingo Molnarc14471d2006-02-19 00:22:11 -05001219 mutex_unlock(&psmouse_mutex);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001220}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
1222/*
1223 * psmouse_cleanup() resets the mouse into power-on state.
1224 */
1225
1226static void psmouse_cleanup(struct serio *serio)
1227{
1228 struct psmouse *psmouse = serio_get_drvdata(serio);
Dmitry Torokhova1cec062007-02-18 01:40:24 -05001229 struct psmouse *parent = NULL;
1230
1231 mutex_lock(&psmouse_mutex);
1232
1233 if (serio->parent && serio->id.type == SERIO_PS_PSTHRU) {
1234 parent = serio_get_drvdata(serio->parent);
1235 psmouse_deactivate(parent);
1236 }
1237
Dmitry Torokhova9f0c382010-02-07 23:10:04 -08001238 psmouse_set_state(psmouse, PSMOUSE_INITIALIZING);
1239
1240 /*
1241 * Disable stream mode so cleanup routine can proceed undisturbed.
1242 */
1243 if (ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_DISABLE))
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001244 psmouse_warn(psmouse, "Failed to disable mouse on %s\n",
1245 psmouse->ps2dev.serio->phys);
Dmitry Torokhova1cec062007-02-18 01:40:24 -05001246
1247 if (psmouse->cleanup)
1248 psmouse->cleanup(psmouse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
Dmitry Torokhov4a299bf2009-12-24 21:40:24 -08001250/*
1251 * Reset the mouse to defaults (bare PS/2 protocol).
1252 */
1253 ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_RESET_DIS);
Dmitry Torokhova1cec062007-02-18 01:40:24 -05001254
1255/*
1256 * Some boxes, such as HP nx7400, get terribly confused if mouse
1257 * is not fully enabled before suspending/shutting down.
1258 */
1259 ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_ENABLE);
1260
1261 if (parent) {
1262 if (parent->pt_deactivate)
1263 parent->pt_deactivate(parent);
1264
1265 psmouse_activate(parent);
1266 }
1267
1268 mutex_unlock(&psmouse_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269}
1270
1271/*
1272 * psmouse_disconnect() closes and frees.
1273 */
1274
1275static void psmouse_disconnect(struct serio *serio)
1276{
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001277 struct psmouse *psmouse, *parent = NULL;
1278
1279 psmouse = serio_get_drvdata(serio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001281 sysfs_remove_group(&serio->dev.kobj, &psmouse_attribute_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
Ingo Molnarc14471d2006-02-19 00:22:11 -05001283 mutex_lock(&psmouse_mutex);
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001284
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 psmouse_set_state(psmouse, PSMOUSE_CMD_MODE);
1286
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001287 /* make sure we don't have a resync in progress */
Ingo Molnarc14471d2006-02-19 00:22:11 -05001288 mutex_unlock(&psmouse_mutex);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001289 flush_workqueue(kpsmoused_wq);
Ingo Molnarc14471d2006-02-19 00:22:11 -05001290 mutex_lock(&psmouse_mutex);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001291
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 if (serio->parent && serio->id.type == SERIO_PS_PSTHRU) {
1293 parent = serio_get_drvdata(serio->parent);
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001294 psmouse_deactivate(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 }
1296
1297 if (psmouse->disconnect)
1298 psmouse->disconnect(psmouse);
1299
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001300 if (parent && parent->pt_deactivate)
1301 parent->pt_deactivate(parent);
1302
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 psmouse_set_state(psmouse, PSMOUSE_IGNORE);
1304
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 serio_close(serio);
1306 serio_set_drvdata(serio, NULL);
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001307 input_unregister_device(psmouse->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 kfree(psmouse);
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001309
1310 if (parent)
1311 psmouse_activate(parent);
1312
Ingo Molnarc14471d2006-02-19 00:22:11 -05001313 mutex_unlock(&psmouse_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314}
1315
Dmitry Torokhov315eb992009-11-16 22:12:21 -08001316static int psmouse_switch_protocol(struct psmouse *psmouse,
1317 const struct psmouse_protocol *proto)
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001318{
Dmitry Torokhov6b9d3632010-04-19 00:42:16 -07001319 const struct psmouse_protocol *selected_proto;
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001320 struct input_dev *input_dev = psmouse->dev;
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001321
Dmitry Torokhov28aa7f12007-04-12 01:35:09 -04001322 input_dev->dev.parent = &psmouse->ps2dev.serio->dev;
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001323
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001324 if (proto && (proto->detect || proto->init)) {
Dmitry Torokhovee9dfd72011-12-30 15:16:45 -08001325 psmouse_apply_defaults(psmouse);
1326
Dmitry Torokhova62f0d22010-05-19 10:39:17 -07001327 if (proto->detect && proto->detect(psmouse, true) < 0)
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001328 return -1;
1329
1330 if (proto->init && proto->init(psmouse) < 0)
1331 return -1;
1332
1333 psmouse->type = proto->type;
Dmitry Torokhov6b9d3632010-04-19 00:42:16 -07001334 selected_proto = proto;
1335 } else {
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001336 psmouse->type = psmouse_extensions(psmouse,
1337 psmouse_max_proto, true);
Dmitry Torokhov6b9d3632010-04-19 00:42:16 -07001338 selected_proto = psmouse_protocol_by_type(psmouse->type);
1339 }
1340
1341 psmouse->ignore_parity = selected_proto->ignore_parity;
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001342
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001343 /*
1344 * If mouse's packet size is 3 there is no point in polling the
1345 * device in hopes to detect protocol reset - we won't get less
1346 * than 3 bytes response anyhow.
1347 */
1348 if (psmouse->pktsize == 3)
1349 psmouse->resync_time = 0;
1350
1351 /*
1352 * Some smart KVMs fake response to POLL command returning just
1353 * 3 bytes and messing up our resync logic, so if initial poll
1354 * fails we won't try polling the device anymore. Hopefully
1355 * such KVM will maintain initially selected protocol.
1356 */
1357 if (psmouse->resync_time && psmouse->poll(psmouse))
1358 psmouse->resync_time = 0;
1359
Dmitry Torokhov08ffce42006-06-26 01:45:10 -04001360 snprintf(psmouse->devname, sizeof(psmouse->devname), "%s %s %s",
Dmitry Torokhov6b9d3632010-04-19 00:42:16 -07001361 selected_proto->name, psmouse->vendor, psmouse->name);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001362
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001363 input_dev->name = psmouse->devname;
1364 input_dev->phys = psmouse->phys;
1365 input_dev->id.bustype = BUS_I8042;
1366 input_dev->id.vendor = 0x0002;
1367 input_dev->id.product = psmouse->type;
1368 input_dev->id.version = psmouse->model;
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001369
1370 return 0;
1371}
1372
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373/*
1374 * psmouse_connect() is a callback from the serio module when
1375 * an unhandled serio port is found.
1376 */
1377static int psmouse_connect(struct serio *serio, struct serio_driver *drv)
1378{
1379 struct psmouse *psmouse, *parent = NULL;
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001380 struct input_dev *input_dev;
Dmitry Torokhov72155612006-11-05 22:40:19 -05001381 int retval = 0, error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
Ingo Molnarc14471d2006-02-19 00:22:11 -05001383 mutex_lock(&psmouse_mutex);
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 /*
1386 * If this is a pass-through port deactivate parent so the device
1387 * connected to this port can be successfully identified
1388 */
1389 if (serio->parent && serio->id.type == SERIO_PS_PSTHRU) {
1390 parent = serio_get_drvdata(serio->parent);
1391 psmouse_deactivate(parent);
1392 }
1393
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001394 psmouse = kzalloc(sizeof(struct psmouse), GFP_KERNEL);
1395 input_dev = input_allocate_device();
1396 if (!psmouse || !input_dev)
Dmitry Torokhov72155612006-11-05 22:40:19 -05001397 goto err_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 ps2_init(&psmouse->ps2dev, serio);
Andres Salomon8bf020e2008-09-16 12:30:33 -04001400 INIT_DELAYED_WORK(&psmouse->resync_work, psmouse_resync);
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001401 psmouse->dev = input_dev;
Dmitry Torokhov08ffce42006-06-26 01:45:10 -04001402 snprintf(psmouse->phys, sizeof(psmouse->phys), "%s/input0", serio->phys);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001403
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 psmouse_set_state(psmouse, PSMOUSE_INITIALIZING);
1405
1406 serio_set_drvdata(serio, psmouse);
1407
Dmitry Torokhov72155612006-11-05 22:40:19 -05001408 error = serio_open(serio, drv);
1409 if (error)
1410 goto err_clear_drvdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
1412 if (psmouse_probe(psmouse) < 0) {
Dmitry Torokhov72155612006-11-05 22:40:19 -05001413 error = -ENODEV;
1414 goto err_close_serio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 }
1416
1417 psmouse->rate = psmouse_rate;
1418 psmouse->resolution = psmouse_resolution;
1419 psmouse->resetafter = psmouse_resetafter;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001420 psmouse->resync_time = parent ? 0 : psmouse_resync_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 psmouse->smartscroll = psmouse_smartscroll;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001423 psmouse_switch_protocol(psmouse, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 psmouse_set_state(psmouse, PSMOUSE_CMD_MODE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 psmouse_initialize(psmouse);
1427
Dmitry Torokhov72155612006-11-05 22:40:19 -05001428 error = input_register_device(psmouse->dev);
1429 if (error)
1430 goto err_protocol_disconnect;
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001431
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 if (parent && parent->pt_activate)
1433 parent->pt_activate(parent);
1434
Dmitry Torokhov72155612006-11-05 22:40:19 -05001435 error = sysfs_create_group(&serio->dev.kobj, &psmouse_attribute_group);
1436 if (error)
1437 goto err_pt_deactivate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
1439 psmouse_activate(psmouse);
1440
Dmitry Torokhov72155612006-11-05 22:40:19 -05001441 out:
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001442 /* If this is a pass-through port the parent needs to be re-activated */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 if (parent)
1444 psmouse_activate(parent);
1445
Ingo Molnarc14471d2006-02-19 00:22:11 -05001446 mutex_unlock(&psmouse_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 return retval;
Dmitry Torokhov72155612006-11-05 22:40:19 -05001448
1449 err_pt_deactivate:
1450 if (parent && parent->pt_deactivate)
1451 parent->pt_deactivate(parent);
Andres Salomon746b31a2008-01-17 12:01:30 -05001452 input_unregister_device(psmouse->dev);
1453 input_dev = NULL; /* so we don't try to free it below */
Dmitry Torokhov72155612006-11-05 22:40:19 -05001454 err_protocol_disconnect:
1455 if (psmouse->disconnect)
1456 psmouse->disconnect(psmouse);
1457 psmouse_set_state(psmouse, PSMOUSE_IGNORE);
1458 err_close_serio:
1459 serio_close(serio);
1460 err_clear_drvdata:
1461 serio_set_drvdata(serio, NULL);
1462 err_free:
1463 input_free_device(input_dev);
1464 kfree(psmouse);
1465
1466 retval = error;
1467 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468}
1469
1470
1471static int psmouse_reconnect(struct serio *serio)
1472{
1473 struct psmouse *psmouse = serio_get_drvdata(serio);
1474 struct psmouse *parent = NULL;
1475 struct serio_driver *drv = serio->drv;
Dmitry Torokhovef110b22010-05-13 00:42:23 -07001476 unsigned char type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 int rc = -1;
1478
1479 if (!drv || !psmouse) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001480 psmouse_dbg(psmouse,
1481 "reconnect request, but serio is disconnected, ignoring...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 return -1;
1483 }
1484
Ingo Molnarc14471d2006-02-19 00:22:11 -05001485 mutex_lock(&psmouse_mutex);
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001486
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 if (serio->parent && serio->id.type == SERIO_PS_PSTHRU) {
1488 parent = serio_get_drvdata(serio->parent);
1489 psmouse_deactivate(parent);
1490 }
1491
1492 psmouse_set_state(psmouse, PSMOUSE_INITIALIZING);
1493
1494 if (psmouse->reconnect) {
1495 if (psmouse->reconnect(psmouse))
1496 goto out;
Dmitry Torokhovef110b22010-05-13 00:42:23 -07001497 } else {
1498 psmouse_reset(psmouse);
1499
1500 if (psmouse_probe(psmouse) < 0)
1501 goto out;
1502
1503 type = psmouse_extensions(psmouse, psmouse_max_proto, false);
1504 if (psmouse->type != type)
1505 goto out;
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001506 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001508 /*
1509 * OK, the device type (and capabilities) match the old one,
1510 * we can continue using it, complete initialization
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 */
1512 psmouse_set_state(psmouse, PSMOUSE_CMD_MODE);
1513
1514 psmouse_initialize(psmouse);
1515
1516 if (parent && parent->pt_activate)
1517 parent->pt_activate(parent);
1518
1519 psmouse_activate(psmouse);
1520 rc = 0;
1521
1522out:
1523 /* If this is a pass-through port the parent waits to be activated */
1524 if (parent)
1525 psmouse_activate(parent);
1526
Ingo Molnarc14471d2006-02-19 00:22:11 -05001527 mutex_unlock(&psmouse_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 return rc;
1529}
1530
1531static struct serio_device_id psmouse_serio_ids[] = {
1532 {
1533 .type = SERIO_8042,
1534 .proto = SERIO_ANY,
1535 .id = SERIO_ANY,
1536 .extra = SERIO_ANY,
1537 },
1538 {
1539 .type = SERIO_PS_PSTHRU,
1540 .proto = SERIO_ANY,
1541 .id = SERIO_ANY,
1542 .extra = SERIO_ANY,
1543 },
1544 { 0 }
1545};
1546
1547MODULE_DEVICE_TABLE(serio, psmouse_serio_ids);
1548
1549static struct serio_driver psmouse_drv = {
1550 .driver = {
1551 .name = "psmouse",
1552 },
1553 .description = DRIVER_DESC,
1554 .id_table = psmouse_serio_ids,
1555 .interrupt = psmouse_interrupt,
1556 .connect = psmouse_connect,
1557 .reconnect = psmouse_reconnect,
1558 .disconnect = psmouse_disconnect,
1559 .cleanup = psmouse_cleanup,
1560};
1561
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001562ssize_t psmouse_attr_show_helper(struct device *dev, struct device_attribute *devattr,
1563 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564{
1565 struct serio *serio = to_serio_port(dev);
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001566 struct psmouse_attribute *attr = to_psmouse_attr(devattr);
1567 struct psmouse *psmouse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001569 psmouse = serio_get_drvdata(serio);
1570
Eric W. Biederman59b01512010-01-05 17:56:02 -08001571 return attr->show(psmouse, attr->data, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572}
1573
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001574ssize_t psmouse_attr_set_helper(struct device *dev, struct device_attribute *devattr,
1575 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576{
1577 struct serio *serio = to_serio_port(dev);
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001578 struct psmouse_attribute *attr = to_psmouse_attr(devattr);
1579 struct psmouse *psmouse, *parent = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 int retval;
1581
Ingo Molnarc14471d2006-02-19 00:22:11 -05001582 retval = mutex_lock_interruptible(&psmouse_mutex);
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001583 if (retval)
Eric W. Biederman59b01512010-01-05 17:56:02 -08001584 goto out;
Dmitry Torokhov04df1922005-06-01 02:39:44 -05001585
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001586 psmouse = serio_get_drvdata(serio);
1587
Andres Salomon68d48222008-09-16 12:30:34 -04001588 if (attr->protect) {
1589 if (psmouse->state == PSMOUSE_IGNORE) {
1590 retval = -ENODEV;
1591 goto out_unlock;
1592 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
Andres Salomon68d48222008-09-16 12:30:34 -04001594 if (serio->parent && serio->id.type == SERIO_PS_PSTHRU) {
1595 parent = serio_get_drvdata(serio->parent);
1596 psmouse_deactivate(parent);
1597 }
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001598
Andres Salomon68d48222008-09-16 12:30:34 -04001599 psmouse_deactivate(psmouse);
1600 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001602 retval = attr->set(psmouse, attr->data, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603
Andres Salomon68d48222008-09-16 12:30:34 -04001604 if (attr->protect) {
1605 if (retval != -ENODEV)
1606 psmouse_activate(psmouse);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001607
Andres Salomon68d48222008-09-16 12:30:34 -04001608 if (parent)
1609 psmouse_activate(parent);
1610 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
Ingo Molnarc14471d2006-02-19 00:22:11 -05001612 out_unlock:
1613 mutex_unlock(&psmouse_mutex);
Eric W. Biederman59b01512010-01-05 17:56:02 -08001614 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 return retval;
1616}
1617
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001618static ssize_t psmouse_show_int_attr(struct psmouse *psmouse, void *offset, char *buf)
1619{
Sergey Vlasoveb5d5822006-11-09 00:34:27 -05001620 unsigned int *field = (unsigned int *)((char *)psmouse + (size_t)offset);
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001621
Sergey Vlasoveb5d5822006-11-09 00:34:27 -05001622 return sprintf(buf, "%u\n", *field);
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001623}
1624
1625static ssize_t psmouse_set_int_attr(struct psmouse *psmouse, void *offset, const char *buf, size_t count)
1626{
Sergey Vlasoveb5d5822006-11-09 00:34:27 -05001627 unsigned int *field = (unsigned int *)((char *)psmouse + (size_t)offset);
JJ Ding76496e72011-11-09 10:20:14 -08001628 unsigned int value;
1629 int err;
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001630
JJ Ding76496e72011-11-09 10:20:14 -08001631 err = kstrtouint(buf, 10, &value);
1632 if (err)
1633 return err;
Sergey Vlasoveb5d5822006-11-09 00:34:27 -05001634
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001635 *field = value;
1636
1637 return count;
1638}
1639
1640static ssize_t psmouse_attr_show_protocol(struct psmouse *psmouse, void *data, char *buf)
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001641{
1642 return sprintf(buf, "%s\n", psmouse_protocol_by_type(psmouse->type)->name);
1643}
1644
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001645static ssize_t psmouse_attr_set_protocol(struct psmouse *psmouse, void *data, const char *buf, size_t count)
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001646{
1647 struct serio *serio = psmouse->ps2dev.serio;
1648 struct psmouse *parent = NULL;
Dmitry Torokhov72155612006-11-05 22:40:19 -05001649 struct input_dev *old_dev, *new_dev;
1650 const struct psmouse_protocol *proto, *old_proto;
1651 int error;
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001652 int retry = 0;
1653
Dmitry Torokhov72155612006-11-05 22:40:19 -05001654 proto = psmouse_protocol_by_name(buf, count);
1655 if (!proto)
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001656 return -EINVAL;
1657
1658 if (psmouse->type == proto->type)
1659 return count;
1660
Dmitry Torokhov72155612006-11-05 22:40:19 -05001661 new_dev = input_allocate_device();
1662 if (!new_dev)
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001663 return -ENOMEM;
1664
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -07001665 while (!list_empty(&serio->children)) {
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001666 if (++retry > 3) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001667 psmouse_warn(psmouse,
1668 "failed to destroy children ports, protocol change aborted.\n");
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001669 input_free_device(new_dev);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001670 return -EIO;
1671 }
1672
Ingo Molnarc14471d2006-02-19 00:22:11 -05001673 mutex_unlock(&psmouse_mutex);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001674 serio_unregister_child_port(serio);
Ingo Molnarc14471d2006-02-19 00:22:11 -05001675 mutex_lock(&psmouse_mutex);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001676
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001677 if (serio->drv != &psmouse_drv) {
1678 input_free_device(new_dev);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001679 return -ENODEV;
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001680 }
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001681
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001682 if (psmouse->type == proto->type) {
1683 input_free_device(new_dev);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001684 return count; /* switched by other thread */
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001685 }
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001686 }
1687
1688 if (serio->parent && serio->id.type == SERIO_PS_PSTHRU) {
1689 parent = serio_get_drvdata(serio->parent);
1690 if (parent->pt_deactivate)
1691 parent->pt_deactivate(parent);
1692 }
1693
Dmitry Torokhov72155612006-11-05 22:40:19 -05001694 old_dev = psmouse->dev;
1695 old_proto = psmouse_protocol_by_type(psmouse->type);
1696
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001697 if (psmouse->disconnect)
1698 psmouse->disconnect(psmouse);
1699
1700 psmouse_set_state(psmouse, PSMOUSE_IGNORE);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001701
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05001702 psmouse->dev = new_dev;
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001703 psmouse_set_state(psmouse, PSMOUSE_INITIALIZING);
1704
1705 if (psmouse_switch_protocol(psmouse, proto) < 0) {
1706 psmouse_reset(psmouse);
1707 /* default to PSMOUSE_PS2 */
1708 psmouse_switch_protocol(psmouse, &psmouse_protocols[0]);
1709 }
1710
1711 psmouse_initialize(psmouse);
1712 psmouse_set_state(psmouse, PSMOUSE_CMD_MODE);
1713
Dmitry Torokhov72155612006-11-05 22:40:19 -05001714 error = input_register_device(psmouse->dev);
1715 if (error) {
1716 if (psmouse->disconnect)
1717 psmouse->disconnect(psmouse);
1718
1719 psmouse_set_state(psmouse, PSMOUSE_IGNORE);
1720 input_free_device(new_dev);
1721 psmouse->dev = old_dev;
1722 psmouse_set_state(psmouse, PSMOUSE_INITIALIZING);
1723 psmouse_switch_protocol(psmouse, old_proto);
1724 psmouse_initialize(psmouse);
1725 psmouse_set_state(psmouse, PSMOUSE_CMD_MODE);
1726
1727 return error;
1728 }
1729
1730 input_unregister_device(old_dev);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001731
1732 if (parent && parent->pt_activate)
1733 parent->pt_activate(parent);
1734
1735 return count;
1736}
1737
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001738static ssize_t psmouse_attr_set_rate(struct psmouse *psmouse, void *data, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739{
JJ Ding76496e72011-11-09 10:20:14 -08001740 unsigned int value;
1741 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
JJ Ding76496e72011-11-09 10:20:14 -08001743 err = kstrtouint(buf, 10, &value);
1744 if (err)
1745 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746
1747 psmouse->set_rate(psmouse, value);
1748 return count;
1749}
1750
Dmitry Torokhovcfe9e882005-09-04 01:40:20 -05001751static ssize_t psmouse_attr_set_resolution(struct psmouse *psmouse, void *data, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752{
JJ Ding76496e72011-11-09 10:20:14 -08001753 unsigned int value;
1754 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755
JJ Ding76496e72011-11-09 10:20:14 -08001756 err = kstrtouint(buf, 10, &value);
1757 if (err)
1758 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
1760 psmouse->set_resolution(psmouse, value);
1761 return count;
1762}
1763
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
Rusty Russell9bbb9e52010-08-11 23:04:12 -06001765static int psmouse_set_maxproto(const char *val, const struct kernel_param *kp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766{
Helge Dellere38de672006-09-10 21:54:39 -04001767 const struct psmouse_protocol *proto;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768
1769 if (!val)
1770 return -EINVAL;
1771
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001772 proto = psmouse_protocol_by_name(val, strlen(val));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001774 if (!proto || !proto->maxproto)
1775 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001777 *((unsigned int *)kp->arg) = proto->type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
Stephen Evanchik541e3162005-08-08 01:26:18 -05001779 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780}
1781
Rusty Russell9bbb9e52010-08-11 23:04:12 -06001782static int psmouse_get_maxproto(char *buffer, const struct kernel_param *kp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783{
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -05001784 int type = *((unsigned int *)kp->arg);
1785
Takashi Iwai3d4c3aa2009-11-12 23:30:52 -08001786 return sprintf(buffer, "%s", psmouse_protocol_by_type(type)->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787}
1788
1789static int __init psmouse_init(void)
1790{
Akinobu Mita153a9df02006-11-23 23:35:10 -05001791 int err;
1792
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001793 lifebook_module_init();
1794 synaptics_module_init();
Daniel Drakeca94ec42010-11-11 22:19:57 -08001795 hgpk_module_init();
Dmitry Torokhov7705d542009-12-03 23:21:14 -08001796
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001797 kpsmoused_wq = create_singlethread_workqueue("kpsmoused");
1798 if (!kpsmoused_wq) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001799 pr_err("failed to create kpsmoused workqueue\n");
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001800 return -ENOMEM;
1801 }
1802
Akinobu Mita153a9df02006-11-23 23:35:10 -05001803 err = serio_register_driver(&psmouse_drv);
1804 if (err)
1805 destroy_workqueue(kpsmoused_wq);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001806
Akinobu Mita153a9df02006-11-23 23:35:10 -05001807 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808}
1809
1810static void __exit psmouse_exit(void)
1811{
1812 serio_unregister_driver(&psmouse_drv);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001813 destroy_workqueue(kpsmoused_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814}
1815
1816module_init(psmouse_init);
1817module_exit(psmouse_exit);