1/*
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#define pr_fmt(fmt)		KBUILD_MODNAME ": " fmt
15#define psmouse_fmt(fmt)	fmt
16
17#include <linux/delay.h>
18#include <linux/module.h>
19#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>
25#include <linux/mutex.h>
26
27#include "psmouse.h"
28#include "synaptics.h"
29#include "logips2pp.h"
30#include "alps.h"
31#include "hgpk.h"
32#include "lifebook.h"
33#include "trackpoint.h"
34#include "touchkit_ps2.h"
35#include "elantech.h"
36#include "sentelic.h"
37#include "cypress_ps2.h"
38#include "focaltech.h"
39#include "vmmouse.h"
40
41#define DRIVER_DESC	"PS/2 mouse driver"
42
43MODULE_AUTHOR("Vojtech Pavlik <vojtech@suse.cz>");
44MODULE_DESCRIPTION(DRIVER_DESC);
45MODULE_LICENSE("GPL");
46
47static unsigned int psmouse_max_proto = PSMOUSE_AUTO;
48static int psmouse_set_maxproto(const char *val, const struct kernel_param *);
49static int psmouse_get_maxproto(char *buffer, const struct kernel_param *kp);
50static const struct kernel_param_ops param_ops_proto_abbrev = {
51	.set = psmouse_set_maxproto,
52	.get = psmouse_get_maxproto,
53};
54#define param_check_proto_abbrev(name, p)	__param_check(name, p, unsigned int)
55module_param_named(proto, psmouse_max_proto, proto_abbrev, 0644);
56MODULE_PARM_DESC(proto, "Highest protocol extension to probe (bare, imps, exps, any). Useful for KVM switches.");
57
58static unsigned int psmouse_resolution = 200;
59module_param_named(resolution, psmouse_resolution, uint, 0644);
60MODULE_PARM_DESC(resolution, "Resolution, in dpi.");
61
62static unsigned int psmouse_rate = 100;
63module_param_named(rate, psmouse_rate, uint, 0644);
64MODULE_PARM_DESC(rate, "Report rate, in reports per second.");
65
66static bool psmouse_smartscroll = true;
67module_param_named(smartscroll, psmouse_smartscroll, bool, 0644);
68MODULE_PARM_DESC(smartscroll, "Logitech Smartscroll autorepeat, 1 = enabled (default), 0 = disabled.");
69
70static unsigned int psmouse_resetafter = 5;
71module_param_named(resetafter, psmouse_resetafter, uint, 0644);
72MODULE_PARM_DESC(resetafter, "Reset device after so many bad packets (0 = never).");
73
74static unsigned int psmouse_resync_time;
75module_param_named(resync_time, psmouse_resync_time, uint, 0644);
76MODULE_PARM_DESC(resync_time, "How long can mouse stay idle before forcing resync (in seconds, 0 = never).");
77
78PSMOUSE_DEFINE_ATTR(protocol, S_IWUSR | S_IRUGO,
79			NULL,
80			psmouse_attr_show_protocol, psmouse_attr_set_protocol);
81PSMOUSE_DEFINE_ATTR(rate, S_IWUSR | S_IRUGO,
82			(void *) offsetof(struct psmouse, rate),
83			psmouse_show_int_attr, psmouse_attr_set_rate);
84PSMOUSE_DEFINE_ATTR(resolution, S_IWUSR | S_IRUGO,
85			(void *) offsetof(struct psmouse, resolution),
86			psmouse_show_int_attr, psmouse_attr_set_resolution);
87PSMOUSE_DEFINE_ATTR(resetafter, S_IWUSR | S_IRUGO,
88			(void *) offsetof(struct psmouse, resetafter),
89			psmouse_show_int_attr, psmouse_set_int_attr);
90PSMOUSE_DEFINE_ATTR(resync_time, S_IWUSR | S_IRUGO,
91			(void *) offsetof(struct psmouse, resync_time),
92			psmouse_show_int_attr, psmouse_set_int_attr);
93
94static struct attribute *psmouse_attributes[] = {
95	&psmouse_attr_protocol.dattr.attr,
96	&psmouse_attr_rate.dattr.attr,
97	&psmouse_attr_resolution.dattr.attr,
98	&psmouse_attr_resetafter.dattr.attr,
99	&psmouse_attr_resync_time.dattr.attr,
100	NULL
101};
102
103static struct attribute_group psmouse_attribute_group = {
104	.attrs	= psmouse_attributes,
105};
106
107/*
108 * psmouse_mutex protects all operations changing state of mouse
109 * (connecting, disconnecting, changing rate or resolution via
110 * sysfs). We could use a per-device semaphore but since there
111 * rarely more than one PS/2 mouse connected and since semaphore
112 * is taken in "slow" paths it is not worth it.
113 */
114static DEFINE_MUTEX(psmouse_mutex);
115
116static struct workqueue_struct *kpsmoused_wq;
117
118struct psmouse_protocol {
119	enum psmouse_type type;
120	bool maxproto;
121	bool ignore_parity; /* Protocol should ignore parity errors from KBC */
122	const char *name;
123	const char *alias;
124	int (*detect)(struct psmouse *, bool);
125	int (*init)(struct psmouse *);
126};
127
128/*
129 * psmouse_process_byte() analyzes the PS/2 data stream and reports
130 * relevant events to the input module once full packet has arrived.
131 */
132
133psmouse_ret_t psmouse_process_byte(struct psmouse *psmouse)
134{
135	struct input_dev *dev = psmouse->dev;
136	unsigned char *packet = psmouse->packet;
137
138	if (psmouse->pktcnt < psmouse->pktsize)
139		return PSMOUSE_GOOD_DATA;
140
141/*
142 * Full packet accumulated, process it
143 */
144
145/*
146 * Scroll wheel on IntelliMice, scroll buttons on NetMice
147 */
148
149	if (psmouse->type == PSMOUSE_IMPS || psmouse->type == PSMOUSE_GENPS)
150		input_report_rel(dev, REL_WHEEL, -(signed char) packet[3]);
151
152/*
153 * Scroll wheel and buttons on IntelliMouse Explorer
154 */
155
156	if (psmouse->type == PSMOUSE_IMEX) {
157		switch (packet[3] & 0xC0) {
158		case 0x80: /* vertical scroll on IntelliMouse Explorer 4.0 */
159			input_report_rel(dev, REL_WHEEL, (int) (packet[3] & 32) - (int) (packet[3] & 31));
160			break;
161		case 0x40: /* horizontal scroll on IntelliMouse Explorer 4.0 */
162			input_report_rel(dev, REL_HWHEEL, (int) (packet[3] & 32) - (int) (packet[3] & 31));
163			break;
164		case 0x00:
165		case 0xC0:
166			input_report_rel(dev, REL_WHEEL, (int) (packet[3] & 8) - (int) (packet[3] & 7));
167			input_report_key(dev, BTN_SIDE, (packet[3] >> 4) & 1);
168			input_report_key(dev, BTN_EXTRA, (packet[3] >> 5) & 1);
169			break;
170		}
171	}
172
173/*
174 * Extra buttons on Genius NewNet 3D
175 */
176
177	if (psmouse->type == PSMOUSE_GENPS) {
178		input_report_key(dev, BTN_SIDE, (packet[0] >> 6) & 1);
179		input_report_key(dev, BTN_EXTRA, (packet[0] >> 7) & 1);
180	}
181
182/*
183 * Extra button on ThinkingMouse
184 */
185	if (psmouse->type == PSMOUSE_THINKPS) {
186		input_report_key(dev, BTN_EXTRA, (packet[0] >> 3) & 1);
187		/* Without this bit of weirdness moving up gives wildly high Y changes. */
188		packet[1] |= (packet[0] & 0x40) << 1;
189	}
190
191/*
192 * Cortron PS2 Trackball reports SIDE button on the 4th bit of the first
193 * byte.
194 */
195	if (psmouse->type == PSMOUSE_CORTRON) {
196		input_report_key(dev, BTN_SIDE, (packet[0] >> 3) & 1);
197		packet[0] |= 0x08;
198	}
199
200/*
201 * Generic PS/2 Mouse
202 */
203
204	input_report_key(dev, BTN_LEFT,    packet[0]       & 1);
205	input_report_key(dev, BTN_MIDDLE, (packet[0] >> 2) & 1);
206	input_report_key(dev, BTN_RIGHT,  (packet[0] >> 1) & 1);
207
208	input_report_rel(dev, REL_X, packet[1] ? (int) packet[1] - (int) ((packet[0] << 4) & 0x100) : 0);
209	input_report_rel(dev, REL_Y, packet[2] ? (int) ((packet[0] << 3) & 0x100) - (int) packet[2] : 0);
210
211	input_sync(dev);
212
213	return PSMOUSE_FULL_PACKET;
214}
215
216void psmouse_queue_work(struct psmouse *psmouse, struct delayed_work *work,
217		unsigned long delay)
218{
219	queue_delayed_work(kpsmoused_wq, work, delay);
220}
221
222/*
223 * __psmouse_set_state() sets new psmouse state and resets all flags.
224 */
225
226static inline void __psmouse_set_state(struct psmouse *psmouse, enum psmouse_state new_state)
227{
228	psmouse->state = new_state;
229	psmouse->pktcnt = psmouse->out_of_sync_cnt = 0;
230	psmouse->ps2dev.flags = 0;
231	psmouse->last = jiffies;
232}
233
234
235/*
236 * psmouse_set_state() sets new psmouse state and resets all flags and
237 * counters while holding serio lock so fighting with interrupt handler
238 * is not a concern.
239 */
240
241void psmouse_set_state(struct psmouse *psmouse, enum psmouse_state new_state)
242{
243	serio_pause_rx(psmouse->ps2dev.serio);
244	__psmouse_set_state(psmouse, new_state);
245	serio_continue_rx(psmouse->ps2dev.serio);
246}
247
248/*
249 * psmouse_handle_byte() processes one byte of the input data stream
250 * by calling corresponding protocol handler.
251 */
252
253static int psmouse_handle_byte(struct psmouse *psmouse)
254{
255	psmouse_ret_t rc = psmouse->protocol_handler(psmouse);
256
257	switch (rc) {
258	case PSMOUSE_BAD_DATA:
259		if (psmouse->state == PSMOUSE_ACTIVATED) {
260			psmouse_warn(psmouse,
261				     "%s at %s lost sync at byte %d\n",
262				     psmouse->name, psmouse->phys,
263				     psmouse->pktcnt);
264			if (++psmouse->out_of_sync_cnt == psmouse->resetafter) {
265				__psmouse_set_state(psmouse, PSMOUSE_IGNORE);
266				psmouse_notice(psmouse,
267						"issuing reconnect request\n");
268				serio_reconnect(psmouse->ps2dev.serio);
269				return -1;
270			}
271		}
272		psmouse->pktcnt = 0;
273		break;
274
275	case PSMOUSE_FULL_PACKET:
276		psmouse->pktcnt = 0;
277		if (psmouse->out_of_sync_cnt) {
278			psmouse->out_of_sync_cnt = 0;
279			psmouse_notice(psmouse,
280					"%s at %s - driver resynced.\n",
281					psmouse->name, psmouse->phys);
282		}
283		break;
284
285	case PSMOUSE_GOOD_DATA:
286		break;
287	}
288	return 0;
289}
290
291/*
292 * psmouse_interrupt() handles incoming characters, either passing them
293 * for normal processing or gathering them as command response.
294 */
295
296static irqreturn_t psmouse_interrupt(struct serio *serio,
297		unsigned char data, unsigned int flags)
298{
299	struct psmouse *psmouse = serio_get_drvdata(serio);
300
301	if (psmouse->state == PSMOUSE_IGNORE)
302		goto out;
303
304	if (unlikely((flags & SERIO_TIMEOUT) ||
305		     ((flags & SERIO_PARITY) && !psmouse->ignore_parity))) {
306
307		if (psmouse->state == PSMOUSE_ACTIVATED)
308			psmouse_warn(psmouse,
309				     "bad data from KBC -%s%s\n",
310				     flags & SERIO_TIMEOUT ? " timeout" : "",
311				     flags & SERIO_PARITY ? " bad parity" : "");
312		ps2_cmd_aborted(&psmouse->ps2dev);
313		goto out;
314	}
315
316	if (unlikely(psmouse->ps2dev.flags & PS2_FLAG_ACK))
317		if  (ps2_handle_ack(&psmouse->ps2dev, data))
318			goto out;
319
320	if (unlikely(psmouse->ps2dev.flags & PS2_FLAG_CMD))
321		if  (ps2_handle_response(&psmouse->ps2dev, data))
322			goto out;
323
324	if (psmouse->state <= PSMOUSE_RESYNCING)
325		goto out;
326
327	if (psmouse->state == PSMOUSE_ACTIVATED &&
328	    psmouse->pktcnt && time_after(jiffies, psmouse->last + HZ/2)) {
329		psmouse_info(psmouse, "%s at %s lost synchronization, throwing %d bytes away.\n",
330			     psmouse->name, psmouse->phys, psmouse->pktcnt);
331		psmouse->badbyte = psmouse->packet[0];
332		__psmouse_set_state(psmouse, PSMOUSE_RESYNCING);
333		psmouse_queue_work(psmouse, &psmouse->resync_work, 0);
334		goto out;
335	}
336
337	psmouse->packet[psmouse->pktcnt++] = data;
338/*
339 * Check if this is a new device announcement (0xAA 0x00)
340 */
341	if (unlikely(psmouse->packet[0] == PSMOUSE_RET_BAT && psmouse->pktcnt <= 2)) {
342		if (psmouse->pktcnt == 1) {
343			psmouse->last = jiffies;
344			goto out;
345		}
346
347		if (psmouse->packet[1] == PSMOUSE_RET_ID ||
348		    (psmouse->type == PSMOUSE_HGPK &&
349		     psmouse->packet[1] == PSMOUSE_RET_BAT)) {
350			__psmouse_set_state(psmouse, PSMOUSE_IGNORE);
351			serio_reconnect(serio);
352			goto out;
353		}
354/*
355 * Not a new device, try processing first byte normally
356 */
357		psmouse->pktcnt = 1;
358		if (psmouse_handle_byte(psmouse))
359			goto out;
360
361		psmouse->packet[psmouse->pktcnt++] = data;
362	}
363
364/*
365 * See if we need to force resync because mouse was idle for too long
366 */
367	if (psmouse->state == PSMOUSE_ACTIVATED &&
368	    psmouse->pktcnt == 1 && psmouse->resync_time &&
369	    time_after(jiffies, psmouse->last + psmouse->resync_time * HZ)) {
370		psmouse->badbyte = psmouse->packet[0];
371		__psmouse_set_state(psmouse, PSMOUSE_RESYNCING);
372		psmouse_queue_work(psmouse, &psmouse->resync_work, 0);
373		goto out;
374	}
375
376	psmouse->last = jiffies;
377	psmouse_handle_byte(psmouse);
378
379 out:
380	return IRQ_HANDLED;
381}
382
383
384/*
385 * psmouse_sliced_command() sends an extended PS/2 command to the mouse
386 * using sliced syntax, understood by advanced devices, such as Logitech
387 * or Synaptics touchpads. The command is encoded as:
388 * 0xE6 0xE8 rr 0xE8 ss 0xE8 tt 0xE8 uu where (rr*64)+(ss*16)+(tt*4)+uu
389 * is the command.
390 */
391int psmouse_sliced_command(struct psmouse *psmouse, unsigned char command)
392{
393	int i;
394
395	if (ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_SETSCALE11))
396		return -1;
397
398	for (i = 6; i >= 0; i -= 2) {
399		unsigned char d = (command >> i) & 3;
400		if (ps2_command(&psmouse->ps2dev, &d, PSMOUSE_CMD_SETRES))
401			return -1;
402	}
403
404	return 0;
405}
406
407
408/*
409 * psmouse_reset() resets the mouse into power-on state.
410 */
411int psmouse_reset(struct psmouse *psmouse)
412{
413	unsigned char param[2];
414
415	if (ps2_command(&psmouse->ps2dev, param, PSMOUSE_CMD_RESET_BAT))
416		return -1;
417
418	if (param[0] != PSMOUSE_RET_BAT && param[1] != PSMOUSE_RET_ID)
419		return -1;
420
421	return 0;
422}
423
424/*
425 * Here we set the mouse resolution.
426 */
427
428void psmouse_set_resolution(struct psmouse *psmouse, unsigned int resolution)
429{
430	static const unsigned char params[] = { 0, 1, 2, 2, 3 };
431	unsigned char p;
432
433	if (resolution == 0 || resolution > 200)
434		resolution = 200;
435
436	p = params[resolution / 50];
437	ps2_command(&psmouse->ps2dev, &p, PSMOUSE_CMD_SETRES);
438	psmouse->resolution = 25 << p;
439}
440
441/*
442 * Here we set the mouse report rate.
443 */
444
445static void psmouse_set_rate(struct psmouse *psmouse, unsigned int rate)
446{
447	static const unsigned char rates[] = { 200, 100, 80, 60, 40, 20, 10, 0 };
448	unsigned char r;
449	int i = 0;
450
451	while (rates[i] > rate) i++;
452	r = rates[i];
453	ps2_command(&psmouse->ps2dev, &r, PSMOUSE_CMD_SETRATE);
454	psmouse->rate = r;
455}
456
457/*
458 * Here we set the mouse scaling.
459 */
460
461static void psmouse_set_scale(struct psmouse *psmouse, enum psmouse_scale scale)
462{
463	ps2_command(&psmouse->ps2dev, NULL,
464		    scale == PSMOUSE_SCALE21 ? PSMOUSE_CMD_SETSCALE21 :
465					       PSMOUSE_CMD_SETSCALE11);
466}
467
468/*
469 * psmouse_poll() - default poll handler. Everyone except for ALPS uses it.
470 */
471
472static int psmouse_poll(struct psmouse *psmouse)
473{
474	return ps2_command(&psmouse->ps2dev, psmouse->packet,
475			   PSMOUSE_CMD_POLL | (psmouse->pktsize << 8));
476}
477
478static bool psmouse_check_pnp_id(const char *id, const char * const ids[])
479{
480	int i;
481
482	for (i = 0; ids[i]; i++)
483		if (!strcasecmp(id, ids[i]))
484			return true;
485
486	return false;
487}
488
489/*
490 * psmouse_matches_pnp_id - check if psmouse matches one of the passed in ids.
491 */
492bool psmouse_matches_pnp_id(struct psmouse *psmouse, const char * const ids[])
493{
494	struct serio *serio = psmouse->ps2dev.serio;
495	char *p, *fw_id_copy, *save_ptr;
496	bool found = false;
497
498	if (strncmp(serio->firmware_id, "PNP: ", 5))
499		return false;
500
501	fw_id_copy = kstrndup(&serio->firmware_id[5],
502			      sizeof(serio->firmware_id) - 5,
503			      GFP_KERNEL);
504	if (!fw_id_copy)
505		return false;
506
507	save_ptr = fw_id_copy;
508	while ((p = strsep(&fw_id_copy, " ")) != NULL) {
509		if (psmouse_check_pnp_id(p, ids)) {
510			found = true;
511			break;
512		}
513	}
514
515	kfree(save_ptr);
516	return found;
517}
518
519/*
520 * Genius NetMouse magic init.
521 */
522static int genius_detect(struct psmouse *psmouse, bool set_properties)
523{
524	struct ps2dev *ps2dev = &psmouse->ps2dev;
525	unsigned char param[4];
526
527	param[0] = 3;
528	ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES);
529	ps2_command(ps2dev,  NULL, PSMOUSE_CMD_SETSCALE11);
530	ps2_command(ps2dev,  NULL, PSMOUSE_CMD_SETSCALE11);
531	ps2_command(ps2dev,  NULL, PSMOUSE_CMD_SETSCALE11);
532	ps2_command(ps2dev, param, PSMOUSE_CMD_GETINFO);
533
534	if (param[0] != 0x00 || param[1] != 0x33 || param[2] != 0x55)
535		return -1;
536
537	if (set_properties) {
538		__set_bit(BTN_MIDDLE, psmouse->dev->keybit);
539		__set_bit(BTN_EXTRA, psmouse->dev->keybit);
540		__set_bit(BTN_SIDE, psmouse->dev->keybit);
541		__set_bit(REL_WHEEL, psmouse->dev->relbit);
542
543		psmouse->vendor = "Genius";
544		psmouse->name = "Mouse";
545		psmouse->pktsize = 4;
546	}
547
548	return 0;
549}
550
551/*
552 * IntelliMouse magic init.
553 */
554static int intellimouse_detect(struct psmouse *psmouse, bool set_properties)
555{
556	struct ps2dev *ps2dev = &psmouse->ps2dev;
557	unsigned char param[2];
558
559	param[0] = 200;
560	ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
561	param[0] = 100;
562	ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
563	param[0] =  80;
564	ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
565	ps2_command(ps2dev, param, PSMOUSE_CMD_GETID);
566
567	if (param[0] != 3)
568		return -1;
569
570	if (set_properties) {
571		__set_bit(BTN_MIDDLE, psmouse->dev->keybit);
572		__set_bit(REL_WHEEL, psmouse->dev->relbit);
573
574		if (!psmouse->vendor)
575			psmouse->vendor = "Generic";
576		if (!psmouse->name)
577			psmouse->name = "Wheel Mouse";
578		psmouse->pktsize = 4;
579	}
580
581	return 0;
582}
583
584/*
585 * Try IntelliMouse/Explorer magic init.
586 */
587static int im_explorer_detect(struct psmouse *psmouse, bool set_properties)
588{
589	struct ps2dev *ps2dev = &psmouse->ps2dev;
590	unsigned char param[2];
591
592	intellimouse_detect(psmouse, 0);
593
594	param[0] = 200;
595	ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
596	param[0] = 200;
597	ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
598	param[0] =  80;
599	ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
600	ps2_command(ps2dev, param, PSMOUSE_CMD_GETID);
601
602	if (param[0] != 4)
603		return -1;
604
605/* Magic to enable horizontal scrolling on IntelliMouse 4.0 */
606	param[0] = 200;
607	ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
608	param[0] =  80;
609	ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
610	param[0] =  40;
611	ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
612
613	if (set_properties) {
614		__set_bit(BTN_MIDDLE, psmouse->dev->keybit);
615		__set_bit(REL_WHEEL, psmouse->dev->relbit);
616		__set_bit(REL_HWHEEL, psmouse->dev->relbit);
617		__set_bit(BTN_SIDE, psmouse->dev->keybit);
618		__set_bit(BTN_EXTRA, psmouse->dev->keybit);
619
620		if (!psmouse->vendor)
621			psmouse->vendor = "Generic";
622		if (!psmouse->name)
623			psmouse->name = "Explorer Mouse";
624		psmouse->pktsize = 4;
625	}
626
627	return 0;
628}
629
630/*
631 * Kensington ThinkingMouse / ExpertMouse magic init.
632 */
633static int thinking_detect(struct psmouse *psmouse, bool set_properties)
634{
635	struct ps2dev *ps2dev = &psmouse->ps2dev;
636	unsigned char param[2];
637	static const unsigned char seq[] = { 20, 60, 40, 20, 20, 60, 40, 20, 20 };
638	int i;
639
640	param[0] = 10;
641	ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
642	param[0] = 0;
643	ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES);
644	for (i = 0; i < ARRAY_SIZE(seq); i++) {
645		param[0] = seq[i];
646		ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE);
647	}
648	ps2_command(ps2dev, param, PSMOUSE_CMD_GETID);
649
650	if (param[0] != 2)
651		return -1;
652
653	if (set_properties) {
654		__set_bit(BTN_MIDDLE, psmouse->dev->keybit);
655		__set_bit(BTN_EXTRA, psmouse->dev->keybit);
656
657		psmouse->vendor = "Kensington";
658		psmouse->name = "ThinkingMouse";
659	}
660
661	return 0;
662}
663
664/*
665 * Bare PS/2 protocol "detection". Always succeeds.
666 */
667static int ps2bare_detect(struct psmouse *psmouse, bool set_properties)
668{
669	if (set_properties) {
670		if (!psmouse->vendor)
671			psmouse->vendor = "Generic";
672		if (!psmouse->name)
673			psmouse->name = "Mouse";
674
675/*
676 * We have no way of figuring true number of buttons so let's
677 * assume that the device has 3.
678 */
679		__set_bit(BTN_MIDDLE, psmouse->dev->keybit);
680	}
681
682	return 0;
683}
684
685/*
686 * Cortron PS/2 protocol detection. There's no special way to detect it, so it
687 * must be forced by sysfs protocol writing.
688 */
689static int cortron_detect(struct psmouse *psmouse, bool set_properties)
690{
691	if (set_properties) {
692		psmouse->vendor = "Cortron";
693		psmouse->name = "PS/2 Trackball";
694
695		__set_bit(BTN_MIDDLE, psmouse->dev->keybit);
696		__set_bit(BTN_SIDE, psmouse->dev->keybit);
697	}
698
699	return 0;
700}
701
702/*
703 * Apply default settings to the psmouse structure. Most of them will
704 * be overridden by individual protocol initialization routines.
705 */
706
707static void psmouse_apply_defaults(struct psmouse *psmouse)
708{
709	struct input_dev *input_dev = psmouse->dev;
710
711	memset(input_dev->evbit, 0, sizeof(input_dev->evbit));
712	memset(input_dev->keybit, 0, sizeof(input_dev->keybit));
713	memset(input_dev->relbit, 0, sizeof(input_dev->relbit));
714	memset(input_dev->absbit, 0, sizeof(input_dev->absbit));
715	memset(input_dev->mscbit, 0, sizeof(input_dev->mscbit));
716
717	__set_bit(EV_KEY, input_dev->evbit);
718	__set_bit(EV_REL, input_dev->evbit);
719
720	__set_bit(BTN_LEFT, input_dev->keybit);
721	__set_bit(BTN_RIGHT, input_dev->keybit);
722
723	__set_bit(REL_X, input_dev->relbit);
724	__set_bit(REL_Y, input_dev->relbit);
725
726	__set_bit(INPUT_PROP_POINTER, input_dev->propbit);
727
728	psmouse->set_rate = psmouse_set_rate;
729	psmouse->set_resolution = psmouse_set_resolution;
730	psmouse->set_scale = psmouse_set_scale;
731	psmouse->poll = psmouse_poll;
732	psmouse->protocol_handler = psmouse_process_byte;
733	psmouse->pktsize = 3;
734	psmouse->reconnect = NULL;
735	psmouse->disconnect = NULL;
736	psmouse->cleanup = NULL;
737	psmouse->pt_activate = NULL;
738	psmouse->pt_deactivate = NULL;
739}
740
741/*
742 * Apply default settings to the psmouse structure and call specified
743 * protocol detection or initialization routine.
744 */
745static int psmouse_do_detect(int (*detect)(struct psmouse *psmouse,
746					   bool set_properties),
747			     struct psmouse *psmouse, bool set_properties)
748{
749	if (set_properties)
750		psmouse_apply_defaults(psmouse);
751
752	return detect(psmouse, set_properties);
753}
754
755/*
756 * psmouse_extensions() probes for any extensions to the basic PS/2 protocol
757 * the mouse may have.
758 */
759
760static int psmouse_extensions(struct psmouse *psmouse,
761			      unsigned int max_proto, bool set_properties)
762{
763	bool synaptics_hardware = false;
764
765/* Always check for focaltech, this is safe as it uses pnp-id matching */
766	if (psmouse_do_detect(focaltech_detect, psmouse, set_properties) == 0) {
767		if (max_proto > PSMOUSE_IMEX) {
768			if (!set_properties || focaltech_init(psmouse) == 0) {
769				if (IS_ENABLED(CONFIG_MOUSE_PS2_FOCALTECH))
770					return PSMOUSE_FOCALTECH;
771				/*
772				 * Note that we need to also restrict
773				 * psmouse_max_proto so that psmouse_initialize()
774				 * does not try to reset rate and resolution,
775				 * because even that upsets the device.
776				 */
777				psmouse_max_proto = PSMOUSE_PS2;
778				return PSMOUSE_PS2;
779			}
780		}
781	}
782
783/*
784 * We always check for lifebook because it does not disturb mouse
785 * (it only checks DMI information).
786 */
787	if (psmouse_do_detect(lifebook_detect, psmouse, set_properties) == 0) {
788		if (max_proto > PSMOUSE_IMEX) {
789			if (!set_properties || lifebook_init(psmouse) == 0)
790				return PSMOUSE_LIFEBOOK;
791		}
792	}
793
794	if (psmouse_do_detect(vmmouse_detect, psmouse, set_properties) == 0) {
795		if (max_proto > PSMOUSE_IMEX) {
796			if (!set_properties || vmmouse_init(psmouse) == 0)
797				return PSMOUSE_VMMOUSE;
798		}
799	}
800
801/*
802 * Try Kensington ThinkingMouse (we try first, because synaptics probe
803 * upsets the thinkingmouse).
804 */
805
806	if (max_proto > PSMOUSE_IMEX &&
807	    psmouse_do_detect(thinking_detect, psmouse, set_properties) == 0) {
808		return PSMOUSE_THINKPS;
809	}
810
811/*
812 * Try Synaptics TouchPad. Note that probing is done even if Synaptics protocol
813 * support is disabled in config - we need to know if it is synaptics so we
814 * can reset it properly after probing for intellimouse.
815 */
816	if (max_proto > PSMOUSE_PS2 &&
817	    psmouse_do_detect(synaptics_detect, psmouse, set_properties) == 0) {
818		synaptics_hardware = true;
819
820		if (max_proto > PSMOUSE_IMEX) {
821/*
822 * Try activating protocol, but check if support is enabled first, since
823 * we try detecting Synaptics even when protocol is disabled.
824 */
825			if (IS_ENABLED(CONFIG_MOUSE_PS2_SYNAPTICS) &&
826			    (!set_properties || synaptics_init(psmouse) == 0)) {
827				return PSMOUSE_SYNAPTICS;
828			}
829
830/*
831 * Some Synaptics touchpads can emulate extended protocols (like IMPS/2).
832 * Unfortunately Logitech/Genius probes confuse some firmware versions so
833 * we'll have to skip them.
834 */
835			max_proto = PSMOUSE_IMEX;
836		}
837/*
838 * Make sure that touchpad is in relative mode, gestures (taps) are enabled
839 */
840		synaptics_reset(psmouse);
841	}
842
843/*
844 * Try Cypress Trackpad.
845 * Must try it before Finger Sensing Pad because Finger Sensing Pad probe
846 * upsets some modules of Cypress Trackpads.
847 */
848	if (max_proto > PSMOUSE_IMEX &&
849			cypress_detect(psmouse, set_properties) == 0) {
850		if (IS_ENABLED(CONFIG_MOUSE_PS2_CYPRESS)) {
851			if (cypress_init(psmouse) == 0)
852				return PSMOUSE_CYPRESS;
853
854			/*
855			 * Finger Sensing Pad probe upsets some modules of
856			 * Cypress Trackpad, must avoid Finger Sensing Pad
857			 * probe if Cypress Trackpad device detected.
858			 */
859			return PSMOUSE_PS2;
860		}
861
862		max_proto = PSMOUSE_IMEX;
863	}
864
865/*
866 * Try ALPS TouchPad
867 */
868	if (max_proto > PSMOUSE_IMEX) {
869		ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_RESET_DIS);
870		if (psmouse_do_detect(alps_detect,
871				      psmouse, set_properties) == 0) {
872			if (!set_properties || alps_init(psmouse) == 0)
873				return PSMOUSE_ALPS;
874/*
875 * Init failed, try basic relative protocols
876 */
877			max_proto = PSMOUSE_IMEX;
878		}
879	}
880
881/*
882 * Try OLPC HGPK touchpad.
883 */
884	if (max_proto > PSMOUSE_IMEX &&
885	    psmouse_do_detect(hgpk_detect, psmouse, set_properties) == 0) {
886		if (!set_properties || hgpk_init(psmouse) == 0)
887			return PSMOUSE_HGPK;
888/*
889 * Init failed, try basic relative protocols
890 */
891		max_proto = PSMOUSE_IMEX;
892	}
893
894/*
895 * Try Elantech touchpad.
896 */
897	if (max_proto > PSMOUSE_IMEX &&
898	    psmouse_do_detect(elantech_detect, psmouse, set_properties) == 0) {
899		if (!set_properties || elantech_init(psmouse) == 0)
900			return PSMOUSE_ELANTECH;
901/*
902 * Init failed, try basic relative protocols
903 */
904		max_proto = PSMOUSE_IMEX;
905	}
906
907	if (max_proto > PSMOUSE_IMEX) {
908		if (psmouse_do_detect(genius_detect,
909				      psmouse, set_properties) == 0)
910			return PSMOUSE_GENPS;
911
912		if (psmouse_do_detect(ps2pp_init,
913				      psmouse, set_properties) == 0)
914			return PSMOUSE_PS2PP;
915
916		if (psmouse_do_detect(trackpoint_detect,
917				      psmouse, set_properties) == 0)
918			return PSMOUSE_TRACKPOINT;
919
920		if (psmouse_do_detect(touchkit_ps2_detect,
921				      psmouse, set_properties) == 0)
922			return PSMOUSE_TOUCHKIT_PS2;
923	}
924
925/*
926 * Try Finger Sensing Pad. We do it here because its probe upsets
927 * Trackpoint devices (causing TP_READ_ID command to time out).
928 */
929	if (max_proto > PSMOUSE_IMEX) {
930		if (psmouse_do_detect(fsp_detect,
931				      psmouse, set_properties) == 0) {
932			if (!set_properties || fsp_init(psmouse) == 0)
933				return PSMOUSE_FSP;
934/*
935 * Init failed, try basic relative protocols
936 */
937			max_proto = PSMOUSE_IMEX;
938		}
939	}
940
941/*
942 * Reset to defaults in case the device got confused by extended
943 * protocol probes. Note that we follow up with full reset because
944 * some mice put themselves to sleep when they see PSMOUSE_RESET_DIS.
945 */
946	ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_RESET_DIS);
947	psmouse_reset(psmouse);
948
949	if (max_proto >= PSMOUSE_IMEX &&
950	    psmouse_do_detect(im_explorer_detect,
951			      psmouse, set_properties) == 0) {
952		return PSMOUSE_IMEX;
953	}
954
955	if (max_proto >= PSMOUSE_IMPS &&
956	    psmouse_do_detect(intellimouse_detect,
957			      psmouse, set_properties) == 0) {
958		return PSMOUSE_IMPS;
959	}
960
961/*
962 * Okay, all failed, we have a standard mouse here. The number of the buttons
963 * is still a question, though. We assume 3.
964 */
965	psmouse_do_detect(ps2bare_detect, psmouse, set_properties);
966
967	if (synaptics_hardware) {
968/*
969 * We detected Synaptics hardware but it did not respond to IMPS/2 probes.
970 * We need to reset the touchpad because if there is a track point on the
971 * pass through port it could get disabled while probing for protocol
972 * extensions.
973 */
974		psmouse_reset(psmouse);
975	}
976
977	return PSMOUSE_PS2;
978}
979
980static const struct psmouse_protocol psmouse_protocols[] = {
981	{
982		.type		= PSMOUSE_PS2,
983		.name		= "PS/2",
984		.alias		= "bare",
985		.maxproto	= true,
986		.ignore_parity	= true,
987		.detect		= ps2bare_detect,
988	},
989#ifdef CONFIG_MOUSE_PS2_LOGIPS2PP
990	{
991		.type		= PSMOUSE_PS2PP,
992		.name		= "PS2++",
993		.alias		= "logitech",
994		.detect		= ps2pp_init,
995	},
996#endif
997	{
998		.type		= PSMOUSE_THINKPS,
999		.name		= "ThinkPS/2",
1000		.alias		= "thinkps",
1001		.detect		= thinking_detect,
1002	},
1003#ifdef CONFIG_MOUSE_PS2_CYPRESS
1004	{
1005		.type		= PSMOUSE_CYPRESS,
1006		.name		= "CyPS/2",
1007		.alias		= "cypress",
1008		.detect		= cypress_detect,
1009		.init		= cypress_init,
1010	},
1011#endif
1012	{
1013		.type		= PSMOUSE_GENPS,
1014		.name		= "GenPS/2",
1015		.alias		= "genius",
1016		.detect		= genius_detect,
1017	},
1018	{
1019		.type		= PSMOUSE_IMPS,
1020		.name		= "ImPS/2",
1021		.alias		= "imps",
1022		.maxproto	= true,
1023		.ignore_parity	= true,
1024		.detect		= intellimouse_detect,
1025	},
1026	{
1027		.type		= PSMOUSE_IMEX,
1028		.name		= "ImExPS/2",
1029		.alias		= "exps",
1030		.maxproto	= true,
1031		.ignore_parity	= true,
1032		.detect		= im_explorer_detect,
1033	},
1034#ifdef CONFIG_MOUSE_PS2_SYNAPTICS
1035	{
1036		.type		= PSMOUSE_SYNAPTICS,
1037		.name		= "SynPS/2",
1038		.alias		= "synaptics",
1039		.detect		= synaptics_detect,
1040		.init		= synaptics_init,
1041	},
1042	{
1043		.type		= PSMOUSE_SYNAPTICS_RELATIVE,
1044		.name		= "SynRelPS/2",
1045		.alias		= "synaptics-relative",
1046		.detect		= synaptics_detect,
1047		.init		= synaptics_init_relative,
1048	},
1049#endif
1050#ifdef CONFIG_MOUSE_PS2_ALPS
1051	{
1052		.type		= PSMOUSE_ALPS,
1053		.name		= "AlpsPS/2",
1054		.alias		= "alps",
1055		.detect		= alps_detect,
1056		.init		= alps_init,
1057	},
1058#endif
1059#ifdef CONFIG_MOUSE_PS2_LIFEBOOK
1060	{
1061		.type		= PSMOUSE_LIFEBOOK,
1062		.name		= "LBPS/2",
1063		.alias		= "lifebook",
1064		.init		= lifebook_init,
1065	},
1066#endif
1067#ifdef CONFIG_MOUSE_PS2_TRACKPOINT
1068	{
1069		.type		= PSMOUSE_TRACKPOINT,
1070		.name		= "TPPS/2",
1071		.alias		= "trackpoint",
1072		.detect		= trackpoint_detect,
1073	},
1074#endif
1075#ifdef CONFIG_MOUSE_PS2_TOUCHKIT
1076	{
1077		.type		= PSMOUSE_TOUCHKIT_PS2,
1078		.name		= "touchkitPS/2",
1079		.alias		= "touchkit",
1080		.detect		= touchkit_ps2_detect,
1081	},
1082#endif
1083#ifdef CONFIG_MOUSE_PS2_OLPC
1084	{
1085		.type		= PSMOUSE_HGPK,
1086		.name		= "OLPC HGPK",
1087		.alias		= "hgpk",
1088		.detect		= hgpk_detect,
1089	},
1090#endif
1091#ifdef CONFIG_MOUSE_PS2_ELANTECH
1092	{
1093		.type		= PSMOUSE_ELANTECH,
1094		.name		= "ETPS/2",
1095		.alias		= "elantech",
1096		.detect		= elantech_detect,
1097		.init		= elantech_init,
1098	},
1099#endif
1100#ifdef CONFIG_MOUSE_PS2_SENTELIC
1101	{
1102		.type		= PSMOUSE_FSP,
1103		.name		= "FSPPS/2",
1104		.alias		= "fsp",
1105		.detect		= fsp_detect,
1106		.init		= fsp_init,
1107	},
1108#endif
1109	{
1110		.type		= PSMOUSE_CORTRON,
1111		.name		= "CortronPS/2",
1112		.alias		= "cortps",
1113		.detect		= cortron_detect,
1114	},
1115#ifdef CONFIG_MOUSE_PS2_FOCALTECH
1116	{
1117		.type		= PSMOUSE_FOCALTECH,
1118		.name		= "FocalTechPS/2",
1119		.alias		= "focaltech",
1120		.detect		= focaltech_detect,
1121		.init		= focaltech_init,
1122	},
1123#endif
1124#ifdef CONFIG_MOUSE_PS2_VMMOUSE
1125	{
1126		.type		= PSMOUSE_VMMOUSE,
1127		.name		= VMMOUSE_PSNAME,
1128		.alias		= "vmmouse",
1129		.detect		= vmmouse_detect,
1130		.init		= vmmouse_init,
1131	},
1132#endif
1133	{
1134		.type		= PSMOUSE_AUTO,
1135		.name		= "auto",
1136		.alias		= "any",
1137		.maxproto	= true,
1138	},
1139};
1140
1141static const struct psmouse_protocol *psmouse_protocol_by_type(enum psmouse_type type)
1142{
1143	int i;
1144
1145	for (i = 0; i < ARRAY_SIZE(psmouse_protocols); i++)
1146		if (psmouse_protocols[i].type == type)
1147			return &psmouse_protocols[i];
1148
1149	WARN_ON(1);
1150	return &psmouse_protocols[0];
1151}
1152
1153static const struct psmouse_protocol *psmouse_protocol_by_name(const char *name, size_t len)
1154{
1155	const struct psmouse_protocol *p;
1156	int i;
1157
1158	for (i = 0; i < ARRAY_SIZE(psmouse_protocols); i++) {
1159		p = &psmouse_protocols[i];
1160
1161		if ((strlen(p->name) == len && !strncmp(p->name, name, len)) ||
1162		    (strlen(p->alias) == len && !strncmp(p->alias, name, len)))
1163			return &psmouse_protocols[i];
1164	}
1165
1166	return NULL;
1167}
1168
1169
1170/*
1171 * psmouse_probe() probes for a PS/2 mouse.
1172 */
1173
1174static int psmouse_probe(struct psmouse *psmouse)
1175{
1176	struct ps2dev *ps2dev = &psmouse->ps2dev;
1177	unsigned char param[2];
1178
1179/*
1180 * First, we check if it's a mouse. It should send 0x00 or 0x03
1181 * in case of an IntelliMouse in 4-byte mode or 0x04 for IM Explorer.
1182 * Sunrex K8561 IR Keyboard/Mouse reports 0xff on second and subsequent
1183 * ID queries, probably due to a firmware bug.
1184 */
1185
1186	param[0] = 0xa5;
1187	if (ps2_command(ps2dev, param, PSMOUSE_CMD_GETID))
1188		return -1;
1189
1190	if (param[0] != 0x00 && param[0] != 0x03 &&
1191	    param[0] != 0x04 && param[0] != 0xff)
1192		return -1;
1193
1194/*
1195 * Then we reset and disable the mouse so that it doesn't generate events.
1196 */
1197
1198	if (ps2_command(ps2dev, NULL, PSMOUSE_CMD_RESET_DIS))
1199		psmouse_warn(psmouse, "Failed to reset mouse on %s\n",
1200			     ps2dev->serio->phys);
1201
1202	return 0;
1203}
1204
1205/*
1206 * psmouse_initialize() initializes the mouse to a sane state.
1207 */
1208
1209static void psmouse_initialize(struct psmouse *psmouse)
1210{
1211/*
1212 * We set the mouse report rate, resolution and scaling.
1213 */
1214
1215	if (psmouse_max_proto != PSMOUSE_PS2) {
1216		psmouse->set_rate(psmouse, psmouse->rate);
1217		psmouse->set_resolution(psmouse, psmouse->resolution);
1218		psmouse->set_scale(psmouse, PSMOUSE_SCALE11);
1219	}
1220}
1221
1222/*
1223 * psmouse_activate() enables the mouse so that we get motion reports from it.
1224 */
1225
1226int psmouse_activate(struct psmouse *psmouse)
1227{
1228	if (ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_ENABLE)) {
1229		psmouse_warn(psmouse, "Failed to enable mouse on %s\n",
1230			     psmouse->ps2dev.serio->phys);
1231		return -1;
1232	}
1233
1234	psmouse_set_state(psmouse, PSMOUSE_ACTIVATED);
1235	return 0;
1236}
1237
1238/*
1239 * psmouse_deactivate() puts the mouse into poll mode so that we don't get motion
1240 * reports from it unless we explicitly request it.
1241 */
1242
1243int psmouse_deactivate(struct psmouse *psmouse)
1244{
1245	if (ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_DISABLE)) {
1246		psmouse_warn(psmouse, "Failed to deactivate mouse on %s\n",
1247			     psmouse->ps2dev.serio->phys);
1248		return -1;
1249	}
1250
1251	psmouse_set_state(psmouse, PSMOUSE_CMD_MODE);
1252	return 0;
1253}
1254
1255
1256/*
1257 * psmouse_resync() attempts to re-validate current protocol.
1258 */
1259
1260static void psmouse_resync(struct work_struct *work)
1261{
1262	struct psmouse *parent = NULL, *psmouse =
1263		container_of(work, struct psmouse, resync_work.work);
1264	struct serio *serio = psmouse->ps2dev.serio;
1265	psmouse_ret_t rc = PSMOUSE_GOOD_DATA;
1266	bool failed = false, enabled = false;
1267	int i;
1268
1269	mutex_lock(&psmouse_mutex);
1270
1271	if (psmouse->state != PSMOUSE_RESYNCING)
1272		goto out;
1273
1274	if (serio->parent && serio->id.type == SERIO_PS_PSTHRU) {
1275		parent = serio_get_drvdata(serio->parent);
1276		psmouse_deactivate(parent);
1277	}
1278
1279/*
1280 * Some mice don't ACK commands sent while they are in the middle of
1281 * transmitting motion packet. To avoid delay we use ps2_sendbyte()
1282 * instead of ps2_command() which would wait for 200ms for an ACK
1283 * that may never come.
1284 * As an additional quirk ALPS touchpads may not only forget to ACK
1285 * disable command but will stop reporting taps, so if we see that
1286 * mouse at least once ACKs disable we will do full reconnect if ACK
1287 * is missing.
1288 */
1289	psmouse->num_resyncs++;
1290
1291	if (ps2_sendbyte(&psmouse->ps2dev, PSMOUSE_CMD_DISABLE, 20)) {
1292		if (psmouse->num_resyncs < 3 || psmouse->acks_disable_command)
1293			failed = true;
1294	} else
1295		psmouse->acks_disable_command = true;
1296
1297/*
1298 * Poll the mouse. If it was reset the packet will be shorter than
1299 * psmouse->pktsize and ps2_command will fail. We do not expect and
1300 * do not handle scenario when mouse "upgrades" its protocol while
1301 * disconnected since it would require additional delay. If we ever
1302 * see a mouse that does it we'll adjust the code.
1303 */
1304	if (!failed) {
1305		if (psmouse->poll(psmouse))
1306			failed = true;
1307		else {
1308			psmouse_set_state(psmouse, PSMOUSE_CMD_MODE);
1309			for (i = 0; i < psmouse->pktsize; i++) {
1310				psmouse->pktcnt++;
1311				rc = psmouse->protocol_handler(psmouse);
1312				if (rc != PSMOUSE_GOOD_DATA)
1313					break;
1314			}
1315			if (rc != PSMOUSE_FULL_PACKET)
1316				failed = true;
1317			psmouse_set_state(psmouse, PSMOUSE_RESYNCING);
1318		}
1319	}
1320/*
1321 * Now try to enable mouse. We try to do that even if poll failed and also
1322 * repeat our attempts 5 times, otherwise we may be left out with disabled
1323 * mouse.
1324 */
1325	for (i = 0; i < 5; i++) {
1326		if (!ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_ENABLE)) {
1327			enabled = true;
1328			break;
1329		}
1330		msleep(200);
1331	}
1332
1333	if (!enabled) {
1334		psmouse_warn(psmouse, "failed to re-enable mouse on %s\n",
1335			     psmouse->ps2dev.serio->phys);
1336		failed = true;
1337	}
1338
1339	if (failed) {
1340		psmouse_set_state(psmouse, PSMOUSE_IGNORE);
1341		psmouse_info(psmouse,
1342			     "resync failed, issuing reconnect request\n");
1343		serio_reconnect(serio);
1344	} else
1345		psmouse_set_state(psmouse, PSMOUSE_ACTIVATED);
1346
1347	if (parent)
1348		psmouse_activate(parent);
1349 out:
1350	mutex_unlock(&psmouse_mutex);
1351}
1352
1353/*
1354 * psmouse_cleanup() resets the mouse into power-on state.
1355 */
1356
1357static void psmouse_cleanup(struct serio *serio)
1358{
1359	struct psmouse *psmouse = serio_get_drvdata(serio);
1360	struct psmouse *parent = NULL;
1361
1362	mutex_lock(&psmouse_mutex);
1363
1364	if (serio->parent && serio->id.type == SERIO_PS_PSTHRU) {
1365		parent = serio_get_drvdata(serio->parent);
1366		psmouse_deactivate(parent);
1367	}
1368
1369	psmouse_set_state(psmouse, PSMOUSE_INITIALIZING);
1370
1371	/*
1372	 * Disable stream mode so cleanup routine can proceed undisturbed.
1373	 */
1374	if (ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_DISABLE))
1375		psmouse_warn(psmouse, "Failed to disable mouse on %s\n",
1376			     psmouse->ps2dev.serio->phys);
1377
1378	if (psmouse->cleanup)
1379		psmouse->cleanup(psmouse);
1380
1381/*
1382 * Reset the mouse to defaults (bare PS/2 protocol).
1383 */
1384	ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_RESET_DIS);
1385
1386/*
1387 * Some boxes, such as HP nx7400, get terribly confused if mouse
1388 * is not fully enabled before suspending/shutting down.
1389 */
1390	ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_ENABLE);
1391
1392	if (parent) {
1393		if (parent->pt_deactivate)
1394			parent->pt_deactivate(parent);
1395
1396		psmouse_activate(parent);
1397	}
1398
1399	mutex_unlock(&psmouse_mutex);
1400}
1401
1402/*
1403 * psmouse_disconnect() closes and frees.
1404 */
1405
1406static void psmouse_disconnect(struct serio *serio)
1407{
1408	struct psmouse *psmouse, *parent = NULL;
1409
1410	psmouse = serio_get_drvdata(serio);
1411
1412	sysfs_remove_group(&serio->dev.kobj, &psmouse_attribute_group);
1413
1414	mutex_lock(&psmouse_mutex);
1415
1416	psmouse_set_state(psmouse, PSMOUSE_CMD_MODE);
1417
1418	/* make sure we don't have a resync in progress */
1419	mutex_unlock(&psmouse_mutex);
1420	flush_workqueue(kpsmoused_wq);
1421	mutex_lock(&psmouse_mutex);
1422
1423	if (serio->parent && serio->id.type == SERIO_PS_PSTHRU) {
1424		parent = serio_get_drvdata(serio->parent);
1425		psmouse_deactivate(parent);
1426	}
1427
1428	if (psmouse->disconnect)
1429		psmouse->disconnect(psmouse);
1430
1431	if (parent && parent->pt_deactivate)
1432		parent->pt_deactivate(parent);
1433
1434	psmouse_set_state(psmouse, PSMOUSE_IGNORE);
1435
1436	serio_close(serio);
1437	serio_set_drvdata(serio, NULL);
1438	input_unregister_device(psmouse->dev);
1439	kfree(psmouse);
1440
1441	if (parent)
1442		psmouse_activate(parent);
1443
1444	mutex_unlock(&psmouse_mutex);
1445}
1446
1447static int psmouse_switch_protocol(struct psmouse *psmouse,
1448				   const struct psmouse_protocol *proto)
1449{
1450	const struct psmouse_protocol *selected_proto;
1451	struct input_dev *input_dev = psmouse->dev;
1452
1453	input_dev->dev.parent = &psmouse->ps2dev.serio->dev;
1454
1455	if (proto && (proto->detect || proto->init)) {
1456		psmouse_apply_defaults(psmouse);
1457
1458		if (proto->detect && proto->detect(psmouse, true) < 0)
1459			return -1;
1460
1461		if (proto->init && proto->init(psmouse) < 0)
1462			return -1;
1463
1464		psmouse->type = proto->type;
1465		selected_proto = proto;
1466	} else {
1467		psmouse->type = psmouse_extensions(psmouse,
1468						   psmouse_max_proto, true);
1469		selected_proto = psmouse_protocol_by_type(psmouse->type);
1470	}
1471
1472	psmouse->ignore_parity = selected_proto->ignore_parity;
1473
1474	/*
1475	 * If mouse's packet size is 3 there is no point in polling the
1476	 * device in hopes to detect protocol reset - we won't get less
1477	 * than 3 bytes response anyhow.
1478	 */
1479	if (psmouse->pktsize == 3)
1480		psmouse->resync_time = 0;
1481
1482	/*
1483	 * Some smart KVMs fake response to POLL command returning just
1484	 * 3 bytes and messing up our resync logic, so if initial poll
1485	 * fails we won't try polling the device anymore. Hopefully
1486	 * such KVM will maintain initially selected protocol.
1487	 */
1488	if (psmouse->resync_time && psmouse->poll(psmouse))
1489		psmouse->resync_time = 0;
1490
1491	snprintf(psmouse->devname, sizeof(psmouse->devname), "%s %s %s",
1492		 selected_proto->name, psmouse->vendor, psmouse->name);
1493
1494	input_dev->name = psmouse->devname;
1495	input_dev->phys = psmouse->phys;
1496	input_dev->id.bustype = BUS_I8042;
1497	input_dev->id.vendor = 0x0002;
1498	input_dev->id.product = psmouse->type;
1499	input_dev->id.version = psmouse->model;
1500
1501	return 0;
1502}
1503
1504/*
1505 * psmouse_connect() is a callback from the serio module when
1506 * an unhandled serio port is found.
1507 */
1508static int psmouse_connect(struct serio *serio, struct serio_driver *drv)
1509{
1510	struct psmouse *psmouse, *parent = NULL;
1511	struct input_dev *input_dev;
1512	int retval = 0, error = -ENOMEM;
1513
1514	mutex_lock(&psmouse_mutex);
1515
1516	/*
1517	 * If this is a pass-through port deactivate parent so the device
1518	 * connected to this port can be successfully identified
1519	 */
1520	if (serio->parent && serio->id.type == SERIO_PS_PSTHRU) {
1521		parent = serio_get_drvdata(serio->parent);
1522		psmouse_deactivate(parent);
1523	}
1524
1525	psmouse = kzalloc(sizeof(struct psmouse), GFP_KERNEL);
1526	input_dev = input_allocate_device();
1527	if (!psmouse || !input_dev)
1528		goto err_free;
1529
1530	ps2_init(&psmouse->ps2dev, serio);
1531	INIT_DELAYED_WORK(&psmouse->resync_work, psmouse_resync);
1532	psmouse->dev = input_dev;
1533	snprintf(psmouse->phys, sizeof(psmouse->phys), "%s/input0", serio->phys);
1534
1535	psmouse_set_state(psmouse, PSMOUSE_INITIALIZING);
1536
1537	serio_set_drvdata(serio, psmouse);
1538
1539	error = serio_open(serio, drv);
1540	if (error)
1541		goto err_clear_drvdata;
1542
1543	/* give PT device some time to settle down before probing */
1544	if (serio->id.type == SERIO_PS_PSTHRU)
1545		usleep_range(10000, 15000);
1546
1547	if (psmouse_probe(psmouse) < 0) {
1548		error = -ENODEV;
1549		goto err_close_serio;
1550	}
1551
1552	psmouse->rate = psmouse_rate;
1553	psmouse->resolution = psmouse_resolution;
1554	psmouse->resetafter = psmouse_resetafter;
1555	psmouse->resync_time = parent ? 0 : psmouse_resync_time;
1556	psmouse->smartscroll = psmouse_smartscroll;
1557
1558	psmouse_switch_protocol(psmouse, NULL);
1559
1560	psmouse_set_state(psmouse, PSMOUSE_CMD_MODE);
1561	psmouse_initialize(psmouse);
1562
1563	error = input_register_device(psmouse->dev);
1564	if (error)
1565		goto err_protocol_disconnect;
1566
1567	if (parent && parent->pt_activate)
1568		parent->pt_activate(parent);
1569
1570	error = sysfs_create_group(&serio->dev.kobj, &psmouse_attribute_group);
1571	if (error)
1572		goto err_pt_deactivate;
1573
1574	psmouse_activate(psmouse);
1575
1576 out:
1577	/* If this is a pass-through port the parent needs to be re-activated */
1578	if (parent)
1579		psmouse_activate(parent);
1580
1581	mutex_unlock(&psmouse_mutex);
1582	return retval;
1583
1584 err_pt_deactivate:
1585	if (parent && parent->pt_deactivate)
1586		parent->pt_deactivate(parent);
1587	input_unregister_device(psmouse->dev);
1588	input_dev = NULL; /* so we don't try to free it below */
1589 err_protocol_disconnect:
1590	if (psmouse->disconnect)
1591		psmouse->disconnect(psmouse);
1592	psmouse_set_state(psmouse, PSMOUSE_IGNORE);
1593 err_close_serio:
1594	serio_close(serio);
1595 err_clear_drvdata:
1596	serio_set_drvdata(serio, NULL);
1597 err_free:
1598	input_free_device(input_dev);
1599	kfree(psmouse);
1600
1601	retval = error;
1602	goto out;
1603}
1604
1605
1606static int psmouse_reconnect(struct serio *serio)
1607{
1608	struct psmouse *psmouse = serio_get_drvdata(serio);
1609	struct psmouse *parent = NULL;
1610	unsigned char type;
1611	int rc = -1;
1612
1613	mutex_lock(&psmouse_mutex);
1614
1615	if (serio->parent && serio->id.type == SERIO_PS_PSTHRU) {
1616		parent = serio_get_drvdata(serio->parent);
1617		psmouse_deactivate(parent);
1618	}
1619
1620	psmouse_set_state(psmouse, PSMOUSE_INITIALIZING);
1621
1622	if (psmouse->reconnect) {
1623		if (psmouse->reconnect(psmouse))
1624			goto out;
1625	} else {
1626		psmouse_reset(psmouse);
1627
1628		if (psmouse_probe(psmouse) < 0)
1629			goto out;
1630
1631		type = psmouse_extensions(psmouse, psmouse_max_proto, false);
1632		if (psmouse->type != type)
1633			goto out;
1634	}
1635
1636	/*
1637	 * OK, the device type (and capabilities) match the old one,
1638	 * we can continue using it, complete initialization
1639	 */
1640	psmouse_set_state(psmouse, PSMOUSE_CMD_MODE);
1641
1642	psmouse_initialize(psmouse);
1643
1644	if (parent && parent->pt_activate)
1645		parent->pt_activate(parent);
1646
1647	psmouse_activate(psmouse);
1648	rc = 0;
1649
1650out:
1651	/* If this is a pass-through port the parent waits to be activated */
1652	if (parent)
1653		psmouse_activate(parent);
1654
1655	mutex_unlock(&psmouse_mutex);
1656	return rc;
1657}
1658
1659static struct serio_device_id psmouse_serio_ids[] = {
1660	{
1661		.type	= SERIO_8042,
1662		.proto	= SERIO_ANY,
1663		.id	= SERIO_ANY,
1664		.extra	= SERIO_ANY,
1665	},
1666	{
1667		.type	= SERIO_PS_PSTHRU,
1668		.proto	= SERIO_ANY,
1669		.id	= SERIO_ANY,
1670		.extra	= SERIO_ANY,
1671	},
1672	{ 0 }
1673};
1674
1675MODULE_DEVICE_TABLE(serio, psmouse_serio_ids);
1676
1677static struct serio_driver psmouse_drv = {
1678	.driver		= {
1679		.name	= "psmouse",
1680	},
1681	.description	= DRIVER_DESC,
1682	.id_table	= psmouse_serio_ids,
1683	.interrupt	= psmouse_interrupt,
1684	.connect	= psmouse_connect,
1685	.reconnect	= psmouse_reconnect,
1686	.disconnect	= psmouse_disconnect,
1687	.cleanup	= psmouse_cleanup,
1688};
1689
1690ssize_t psmouse_attr_show_helper(struct device *dev, struct device_attribute *devattr,
1691				 char *buf)
1692{
1693	struct serio *serio = to_serio_port(dev);
1694	struct psmouse_attribute *attr = to_psmouse_attr(devattr);
1695	struct psmouse *psmouse;
1696
1697	psmouse = serio_get_drvdata(serio);
1698
1699	return attr->show(psmouse, attr->data, buf);
1700}
1701
1702ssize_t psmouse_attr_set_helper(struct device *dev, struct device_attribute *devattr,
1703				const char *buf, size_t count)
1704{
1705	struct serio *serio = to_serio_port(dev);
1706	struct psmouse_attribute *attr = to_psmouse_attr(devattr);
1707	struct psmouse *psmouse, *parent = NULL;
1708	int retval;
1709
1710	retval = mutex_lock_interruptible(&psmouse_mutex);
1711	if (retval)
1712		goto out;
1713
1714	psmouse = serio_get_drvdata(serio);
1715
1716	if (attr->protect) {
1717		if (psmouse->state == PSMOUSE_IGNORE) {
1718			retval = -ENODEV;
1719			goto out_unlock;
1720		}
1721
1722		if (serio->parent && serio->id.type == SERIO_PS_PSTHRU) {
1723			parent = serio_get_drvdata(serio->parent);
1724			psmouse_deactivate(parent);
1725		}
1726
1727		psmouse_deactivate(psmouse);
1728	}
1729
1730	retval = attr->set(psmouse, attr->data, buf, count);
1731
1732	if (attr->protect) {
1733		if (retval != -ENODEV)
1734			psmouse_activate(psmouse);
1735
1736		if (parent)
1737			psmouse_activate(parent);
1738	}
1739
1740 out_unlock:
1741	mutex_unlock(&psmouse_mutex);
1742 out:
1743	return retval;
1744}
1745
1746static ssize_t psmouse_show_int_attr(struct psmouse *psmouse, void *offset, char *buf)
1747{
1748	unsigned int *field = (unsigned int *)((char *)psmouse + (size_t)offset);
1749
1750	return sprintf(buf, "%u\n", *field);
1751}
1752
1753static ssize_t psmouse_set_int_attr(struct psmouse *psmouse, void *offset, const char *buf, size_t count)
1754{
1755	unsigned int *field = (unsigned int *)((char *)psmouse + (size_t)offset);
1756	unsigned int value;
1757	int err;
1758
1759	err = kstrtouint(buf, 10, &value);
1760	if (err)
1761		return err;
1762
1763	*field = value;
1764
1765	return count;
1766}
1767
1768static ssize_t psmouse_attr_show_protocol(struct psmouse *psmouse, void *data, char *buf)
1769{
1770	return sprintf(buf, "%s\n", psmouse_protocol_by_type(psmouse->type)->name);
1771}
1772
1773static ssize_t psmouse_attr_set_protocol(struct psmouse *psmouse, void *data, const char *buf, size_t count)
1774{
1775	struct serio *serio = psmouse->ps2dev.serio;
1776	struct psmouse *parent = NULL;
1777	struct input_dev *old_dev, *new_dev;
1778	const struct psmouse_protocol *proto, *old_proto;
1779	int error;
1780	int retry = 0;
1781
1782	proto = psmouse_protocol_by_name(buf, count);
1783	if (!proto)
1784		return -EINVAL;
1785
1786	if (psmouse->type == proto->type)
1787		return count;
1788
1789	new_dev = input_allocate_device();
1790	if (!new_dev)
1791		return -ENOMEM;
1792
1793	while (!list_empty(&serio->children)) {
1794		if (++retry > 3) {
1795			psmouse_warn(psmouse,
1796				     "failed to destroy children ports, protocol change aborted.\n");
1797			input_free_device(new_dev);
1798			return -EIO;
1799		}
1800
1801		mutex_unlock(&psmouse_mutex);
1802		serio_unregister_child_port(serio);
1803		mutex_lock(&psmouse_mutex);
1804
1805		if (serio->drv != &psmouse_drv) {
1806			input_free_device(new_dev);
1807			return -ENODEV;
1808		}
1809
1810		if (psmouse->type == proto->type) {
1811			input_free_device(new_dev);
1812			return count; /* switched by other thread */
1813		}
1814	}
1815
1816	if (serio->parent && serio->id.type == SERIO_PS_PSTHRU) {
1817		parent = serio_get_drvdata(serio->parent);
1818		if (parent->pt_deactivate)
1819			parent->pt_deactivate(parent);
1820	}
1821
1822	old_dev = psmouse->dev;
1823	old_proto = psmouse_protocol_by_type(psmouse->type);
1824
1825	if (psmouse->disconnect)
1826		psmouse->disconnect(psmouse);
1827
1828	psmouse_set_state(psmouse, PSMOUSE_IGNORE);
1829
1830	psmouse->dev = new_dev;
1831	psmouse_set_state(psmouse, PSMOUSE_INITIALIZING);
1832
1833	if (psmouse_switch_protocol(psmouse, proto) < 0) {
1834		psmouse_reset(psmouse);
1835		/* default to PSMOUSE_PS2 */
1836		psmouse_switch_protocol(psmouse, &psmouse_protocols[0]);
1837	}
1838
1839	psmouse_initialize(psmouse);
1840	psmouse_set_state(psmouse, PSMOUSE_CMD_MODE);
1841
1842	error = input_register_device(psmouse->dev);
1843	if (error) {
1844		if (psmouse->disconnect)
1845			psmouse->disconnect(psmouse);
1846
1847		psmouse_set_state(psmouse, PSMOUSE_IGNORE);
1848		input_free_device(new_dev);
1849		psmouse->dev = old_dev;
1850		psmouse_set_state(psmouse, PSMOUSE_INITIALIZING);
1851		psmouse_switch_protocol(psmouse, old_proto);
1852		psmouse_initialize(psmouse);
1853		psmouse_set_state(psmouse, PSMOUSE_CMD_MODE);
1854
1855		return error;
1856	}
1857
1858	input_unregister_device(old_dev);
1859
1860	if (parent && parent->pt_activate)
1861		parent->pt_activate(parent);
1862
1863	return count;
1864}
1865
1866static ssize_t psmouse_attr_set_rate(struct psmouse *psmouse, void *data, const char *buf, size_t count)
1867{
1868	unsigned int value;
1869	int err;
1870
1871	err = kstrtouint(buf, 10, &value);
1872	if (err)
1873		return err;
1874
1875	psmouse->set_rate(psmouse, value);
1876	return count;
1877}
1878
1879static ssize_t psmouse_attr_set_resolution(struct psmouse *psmouse, void *data, const char *buf, size_t count)
1880{
1881	unsigned int value;
1882	int err;
1883
1884	err = kstrtouint(buf, 10, &value);
1885	if (err)
1886		return err;
1887
1888	psmouse->set_resolution(psmouse, value);
1889	return count;
1890}
1891
1892
1893static int psmouse_set_maxproto(const char *val, const struct kernel_param *kp)
1894{
1895	const struct psmouse_protocol *proto;
1896
1897	if (!val)
1898		return -EINVAL;
1899
1900	proto = psmouse_protocol_by_name(val, strlen(val));
1901
1902	if (!proto || !proto->maxproto)
1903		return -EINVAL;
1904
1905	*((unsigned int *)kp->arg) = proto->type;
1906
1907	return 0;
1908}
1909
1910static int psmouse_get_maxproto(char *buffer, const struct kernel_param *kp)
1911{
1912	int type = *((unsigned int *)kp->arg);
1913
1914	return sprintf(buffer, "%s", psmouse_protocol_by_type(type)->name);
1915}
1916
1917static int __init psmouse_init(void)
1918{
1919	int err;
1920
1921	lifebook_module_init();
1922	synaptics_module_init();
1923	hgpk_module_init();
1924
1925	kpsmoused_wq = create_singlethread_workqueue("kpsmoused");
1926	if (!kpsmoused_wq) {
1927		pr_err("failed to create kpsmoused workqueue\n");
1928		return -ENOMEM;
1929	}
1930
1931	err = serio_register_driver(&psmouse_drv);
1932	if (err)
1933		destroy_workqueue(kpsmoused_wq);
1934
1935	return err;
1936}
1937
1938static void __exit psmouse_exit(void)
1939{
1940	serio_unregister_driver(&psmouse_drv);
1941	destroy_workqueue(kpsmoused_wq);
1942}
1943
1944module_init(psmouse_init);
1945module_exit(psmouse_exit);
1946