2 * Synaptics TouchPad PS/2 mouse driver
4 * 2003 Dmitry Torokhov <dtor@mail.ru>
5 * Added support for pass-through port. Special thanks to Peter Berg Larsen
6 * for explaining various Synaptics quirks.
8 * 2003 Peter Osterlund <petero2@telia.com>
9 * Ported to 2.5 input device infrastructure.
11 * Copyright (C) 2001 Stefan Gmeiner <riddlebox@freesurf.ch>
12 * start merging tpconfig and gpm code to a xfree-input module
13 * adding some changes and extensions (ex. 3rd and 4th button)
15 * Copyright (c) 1997 C. Scott Ananian <cananian@alumni.priceton.edu>
16 * Copyright (c) 1998-2000 Bruce Kalk <kall@compass.com>
17 * code for the special synaptics commands (from the tpconfig-source)
19 * This program is free software; you can redistribute it and/or modify it
20 * under the terms of the GNU General Public License version 2 as published by
21 * the Free Software Foundation.
23 * Trademarks are the property of their respective owners.
26 #include <linux/module.h>
27 #include <linux/dmi.h>
28 #include <linux/input/mt.h>
29 #include <linux/serio.h>
30 #include <linux/libps2.h>
31 #include <linux/slab.h>
33 #include "synaptics.h"
36 * The x/y limits are taken from the Synaptics TouchPad interfacing Guide,
37 * section 2.3.2, which says that they should be valid regardless of the
38 * actual size of the sensor.
39 * Note that newer firmware allows querying device for maximum useable
42 #define XMIN_NOMINAL 1472
43 #define XMAX_NOMINAL 5472
44 #define YMIN_NOMINAL 1408
45 #define YMAX_NOMINAL 4448
48 * Synaptics touchpads report the y coordinate from bottom to top, which is
49 * opposite from what userspace expects.
50 * This function is used to invert y before reporting.
52 static int synaptics_invert_y(int y
)
54 return YMAX_NOMINAL
+ YMIN_NOMINAL
- y
;
58 /*****************************************************************************
59 * Stuff we need even when we do not want native Synaptics support
60 ****************************************************************************/
63 * Set the synaptics touchpad mode byte by special commands
65 static int synaptics_mode_cmd(struct psmouse
*psmouse
, unsigned char mode
)
67 unsigned char param
[1];
69 if (psmouse_sliced_command(psmouse
, mode
))
71 param
[0] = SYN_PS_SET_MODE2
;
72 if (ps2_command(&psmouse
->ps2dev
, param
, PSMOUSE_CMD_SETRATE
))
77 int synaptics_detect(struct psmouse
*psmouse
, bool set_properties
)
79 struct ps2dev
*ps2dev
= &psmouse
->ps2dev
;
80 unsigned char param
[4];
84 ps2_command(ps2dev
, param
, PSMOUSE_CMD_SETRES
);
85 ps2_command(ps2dev
, param
, PSMOUSE_CMD_SETRES
);
86 ps2_command(ps2dev
, param
, PSMOUSE_CMD_SETRES
);
87 ps2_command(ps2dev
, param
, PSMOUSE_CMD_SETRES
);
88 ps2_command(ps2dev
, param
, PSMOUSE_CMD_GETINFO
);
94 psmouse
->vendor
= "Synaptics";
95 psmouse
->name
= "TouchPad";
101 void synaptics_reset(struct psmouse
*psmouse
)
103 /* reset touchpad back to relative mode, gestures enabled */
104 synaptics_mode_cmd(psmouse
, 0);
107 #ifdef CONFIG_MOUSE_PS2_SYNAPTICS
109 /*****************************************************************************
110 * Synaptics communications functions
111 ****************************************************************************/
114 * Send a command to the synpatics touchpad by special commands
116 static int synaptics_send_cmd(struct psmouse
*psmouse
, unsigned char c
, unsigned char *param
)
118 if (psmouse_sliced_command(psmouse
, c
))
120 if (ps2_command(&psmouse
->ps2dev
, param
, PSMOUSE_CMD_GETINFO
))
126 * Read the model-id bytes from the touchpad
127 * see also SYN_MODEL_* macros
129 static int synaptics_model_id(struct psmouse
*psmouse
)
131 struct synaptics_data
*priv
= psmouse
->private;
134 if (synaptics_send_cmd(psmouse
, SYN_QUE_MODEL
, mi
))
136 priv
->model_id
= (mi
[0]<<16) | (mi
[1]<<8) | mi
[2];
141 * Read the capability-bits from the touchpad
142 * see also the SYN_CAP_* macros
144 static int synaptics_capability(struct psmouse
*psmouse
)
146 struct synaptics_data
*priv
= psmouse
->private;
147 unsigned char cap
[3];
149 if (synaptics_send_cmd(psmouse
, SYN_QUE_CAPABILITIES
, cap
))
151 priv
->capabilities
= (cap
[0] << 16) | (cap
[1] << 8) | cap
[2];
152 priv
->ext_cap
= priv
->ext_cap_0c
= 0;
155 * Older firmwares had submodel ID fixed to 0x47
157 if (SYN_ID_FULL(priv
->identity
) < 0x705 &&
158 SYN_CAP_SUBMODEL_ID(priv
->capabilities
) != 0x47) {
163 * Unless capExtended is set the rest of the flags should be ignored
165 if (!SYN_CAP_EXTENDED(priv
->capabilities
))
166 priv
->capabilities
= 0;
168 if (SYN_EXT_CAP_REQUESTS(priv
->capabilities
) >= 1) {
169 if (synaptics_send_cmd(psmouse
, SYN_QUE_EXT_CAPAB
, cap
)) {
170 psmouse_warn(psmouse
,
171 "device claims to have extended capabilities, but I'm not able to read them.\n");
173 priv
->ext_cap
= (cap
[0] << 16) | (cap
[1] << 8) | cap
[2];
176 * if nExtBtn is greater than 8 it should be considered
177 * invalid and treated as 0
179 if (SYN_CAP_MULTI_BUTTON_NO(priv
->ext_cap
) > 8)
180 priv
->ext_cap
&= 0xff0fff;
184 if (SYN_EXT_CAP_REQUESTS(priv
->capabilities
) >= 4) {
185 if (synaptics_send_cmd(psmouse
, SYN_QUE_EXT_CAPAB_0C
, cap
)) {
186 psmouse_warn(psmouse
,
187 "device claims to have extended capability 0x0c, but I'm not able to read it.\n");
189 priv
->ext_cap_0c
= (cap
[0] << 16) | (cap
[1] << 8) | cap
[2];
198 * See also the SYN_ID_* macros
200 static int synaptics_identify(struct psmouse
*psmouse
)
202 struct synaptics_data
*priv
= psmouse
->private;
205 if (synaptics_send_cmd(psmouse
, SYN_QUE_IDENTIFY
, id
))
207 priv
->identity
= (id
[0]<<16) | (id
[1]<<8) | id
[2];
208 if (SYN_ID_IS_SYNAPTICS(priv
->identity
))
214 * Read touchpad resolution and maximum reported coordinates
215 * Resolution is left zero if touchpad does not support the query
217 static int synaptics_resolution(struct psmouse
*psmouse
)
219 struct synaptics_data
*priv
= psmouse
->private;
220 unsigned char resp
[3];
222 if (SYN_ID_MAJOR(priv
->identity
) < 4)
225 if (synaptics_send_cmd(psmouse
, SYN_QUE_RESOLUTION
, resp
) == 0) {
226 if (resp
[0] != 0 && (resp
[1] & 0x80) && resp
[2] != 0) {
227 priv
->x_res
= resp
[0]; /* x resolution in units/mm */
228 priv
->y_res
= resp
[2]; /* y resolution in units/mm */
232 if (SYN_EXT_CAP_REQUESTS(priv
->capabilities
) >= 5 &&
233 SYN_CAP_MAX_DIMENSIONS(priv
->ext_cap_0c
)) {
234 if (synaptics_send_cmd(psmouse
, SYN_QUE_EXT_MAX_COORDS
, resp
)) {
235 psmouse_warn(psmouse
,
236 "device claims to have max coordinates query, but I'm not able to read it.\n");
238 priv
->x_max
= (resp
[0] << 5) | ((resp
[1] & 0x0f) << 1);
239 priv
->y_max
= (resp
[2] << 5) | ((resp
[1] & 0xf0) >> 3);
243 if (SYN_EXT_CAP_REQUESTS(priv
->capabilities
) >= 7 &&
244 SYN_CAP_MIN_DIMENSIONS(priv
->ext_cap_0c
)) {
245 if (synaptics_send_cmd(psmouse
, SYN_QUE_EXT_MIN_COORDS
, resp
)) {
246 psmouse_warn(psmouse
,
247 "device claims to have min coordinates query, but I'm not able to read it.\n");
249 priv
->x_min
= (resp
[0] << 5) | ((resp
[1] & 0x0f) << 1);
250 priv
->y_min
= (resp
[2] << 5) | ((resp
[1] & 0xf0) >> 3);
257 static int synaptics_query_hardware(struct psmouse
*psmouse
)
259 if (synaptics_identify(psmouse
))
261 if (synaptics_model_id(psmouse
))
263 if (synaptics_capability(psmouse
))
265 if (synaptics_resolution(psmouse
))
271 static int synaptics_set_absolute_mode(struct psmouse
*psmouse
)
273 struct synaptics_data
*priv
= psmouse
->private;
275 priv
->mode
= SYN_BIT_ABSOLUTE_MODE
;
276 if (SYN_ID_MAJOR(priv
->identity
) >= 4)
277 priv
->mode
|= SYN_BIT_DISABLE_GESTURE
;
278 if (SYN_CAP_EXTENDED(priv
->capabilities
))
279 priv
->mode
|= SYN_BIT_W_MODE
;
281 if (synaptics_mode_cmd(psmouse
, priv
->mode
))
287 static void synaptics_set_rate(struct psmouse
*psmouse
, unsigned int rate
)
289 struct synaptics_data
*priv
= psmouse
->private;
292 priv
->mode
|= SYN_BIT_HIGH_RATE
;
295 priv
->mode
&= ~SYN_BIT_HIGH_RATE
;
299 synaptics_mode_cmd(psmouse
, priv
->mode
);
302 static int synaptics_set_advanced_gesture_mode(struct psmouse
*psmouse
)
304 static unsigned char param
= 0xc8;
305 struct synaptics_data
*priv
= psmouse
->private;
307 if (!(SYN_CAP_ADV_GESTURE(priv
->ext_cap_0c
) ||
308 SYN_CAP_IMAGE_SENSOR(priv
->ext_cap_0c
)))
311 if (psmouse_sliced_command(psmouse
, SYN_QUE_MODEL
))
313 if (ps2_command(&psmouse
->ps2dev
, ¶m
, PSMOUSE_CMD_SETRATE
))
316 /* Advanced gesture mode also sends multi finger data */
317 priv
->capabilities
|= BIT(1);
322 /*****************************************************************************
323 * Synaptics pass-through PS/2 port support
324 ****************************************************************************/
325 static int synaptics_pt_write(struct serio
*serio
, unsigned char c
)
327 struct psmouse
*parent
= serio_get_drvdata(serio
->parent
);
328 char rate_param
= SYN_PS_CLIENT_CMD
; /* indicates that we want pass-through port */
330 if (psmouse_sliced_command(parent
, c
))
332 if (ps2_command(&parent
->ps2dev
, &rate_param
, PSMOUSE_CMD_SETRATE
))
337 static int synaptics_pt_start(struct serio
*serio
)
339 struct psmouse
*parent
= serio_get_drvdata(serio
->parent
);
340 struct synaptics_data
*priv
= parent
->private;
342 serio_pause_rx(parent
->ps2dev
.serio
);
343 priv
->pt_port
= serio
;
344 serio_continue_rx(parent
->ps2dev
.serio
);
349 static void synaptics_pt_stop(struct serio
*serio
)
351 struct psmouse
*parent
= serio_get_drvdata(serio
->parent
);
352 struct synaptics_data
*priv
= parent
->private;
354 serio_pause_rx(parent
->ps2dev
.serio
);
355 priv
->pt_port
= NULL
;
356 serio_continue_rx(parent
->ps2dev
.serio
);
359 static int synaptics_is_pt_packet(unsigned char *buf
)
361 return (buf
[0] & 0xFC) == 0x84 && (buf
[3] & 0xCC) == 0xC4;
364 static void synaptics_pass_pt_packet(struct serio
*ptport
, unsigned char *packet
)
366 struct psmouse
*child
= serio_get_drvdata(ptport
);
368 if (child
&& child
->state
== PSMOUSE_ACTIVATED
) {
369 serio_interrupt(ptport
, packet
[1], 0);
370 serio_interrupt(ptport
, packet
[4], 0);
371 serio_interrupt(ptport
, packet
[5], 0);
372 if (child
->pktsize
== 4)
373 serio_interrupt(ptport
, packet
[2], 0);
375 serio_interrupt(ptport
, packet
[1], 0);
378 static void synaptics_pt_activate(struct psmouse
*psmouse
)
380 struct synaptics_data
*priv
= psmouse
->private;
381 struct psmouse
*child
= serio_get_drvdata(priv
->pt_port
);
383 /* adjust the touchpad to child's choice of protocol */
385 if (child
->pktsize
== 4)
386 priv
->mode
|= SYN_BIT_FOUR_BYTE_CLIENT
;
388 priv
->mode
&= ~SYN_BIT_FOUR_BYTE_CLIENT
;
390 if (synaptics_mode_cmd(psmouse
, priv
->mode
))
391 psmouse_warn(psmouse
,
392 "failed to switch guest protocol\n");
396 static void synaptics_pt_create(struct psmouse
*psmouse
)
400 serio
= kzalloc(sizeof(struct serio
), GFP_KERNEL
);
403 "not enough memory for pass-through port\n");
407 serio
->id
.type
= SERIO_PS_PSTHRU
;
408 strlcpy(serio
->name
, "Synaptics pass-through", sizeof(serio
->name
));
409 strlcpy(serio
->phys
, "synaptics-pt/serio0", sizeof(serio
->name
));
410 serio
->write
= synaptics_pt_write
;
411 serio
->start
= synaptics_pt_start
;
412 serio
->stop
= synaptics_pt_stop
;
413 serio
->parent
= psmouse
->ps2dev
.serio
;
415 psmouse
->pt_activate
= synaptics_pt_activate
;
417 psmouse_info(psmouse
, "serio: %s port at %s\n",
418 serio
->name
, psmouse
->phys
);
419 serio_register_port(serio
);
422 /*****************************************************************************
423 * Functions to interpret the absolute mode packets
424 ****************************************************************************/
426 static void synaptics_mt_state_set(struct synaptics_mt_state
*state
, int count
,
429 state
->count
= count
;
434 static void synaptics_parse_agm(const unsigned char buf
[],
435 struct synaptics_data
*priv
,
436 struct synaptics_hw_state
*hw
)
438 struct synaptics_hw_state
*agm
= &priv
->agm
;
441 agm_packet_type
= (buf
[5] & 0x30) >> 4;
442 switch (agm_packet_type
) {
444 /* Gesture packet: (x, y, z) half resolution */
446 agm
->x
= (((buf
[4] & 0x0f) << 8) | buf
[1]) << 1;
447 agm
->y
= (((buf
[4] & 0xf0) << 4) | buf
[2]) << 1;
448 agm
->z
= ((buf
[3] & 0x30) | (buf
[5] & 0x0f)) << 1;
452 /* AGM-CONTACT packet: (count, sgm, agm) */
453 synaptics_mt_state_set(&agm
->mt_state
, buf
[1], buf
[2], buf
[4]);
460 /* Record that at least one AGM has been received since last SGM */
461 priv
->agm_pending
= true;
464 static int synaptics_parse_hw_state(const unsigned char buf
[],
465 struct synaptics_data
*priv
,
466 struct synaptics_hw_state
*hw
)
468 memset(hw
, 0, sizeof(struct synaptics_hw_state
));
470 if (SYN_MODEL_NEWABS(priv
->model_id
)) {
471 hw
->w
= (((buf
[0] & 0x30) >> 2) |
472 ((buf
[0] & 0x04) >> 1) |
473 ((buf
[3] & 0x04) >> 2));
475 hw
->left
= (buf
[0] & 0x01) ? 1 : 0;
476 hw
->right
= (buf
[0] & 0x02) ? 1 : 0;
478 if (SYN_CAP_CLICKPAD(priv
->ext_cap_0c
)) {
480 * Clickpad's button is transmitted as middle button,
481 * however, since it is primary button, we will report
484 hw
->left
= ((buf
[0] ^ buf
[3]) & 0x01) ? 1 : 0;
486 } else if (SYN_CAP_MIDDLE_BUTTON(priv
->capabilities
)) {
487 hw
->middle
= ((buf
[0] ^ buf
[3]) & 0x01) ? 1 : 0;
489 hw
->scroll
= (signed char)(buf
[1]);
492 if (SYN_CAP_FOUR_BUTTON(priv
->capabilities
)) {
493 hw
->up
= ((buf
[0] ^ buf
[3]) & 0x01) ? 1 : 0;
494 hw
->down
= ((buf
[0] ^ buf
[3]) & 0x02) ? 1 : 0;
497 if ((SYN_CAP_ADV_GESTURE(priv
->ext_cap_0c
) ||
498 SYN_CAP_IMAGE_SENSOR(priv
->ext_cap_0c
)) &&
500 synaptics_parse_agm(buf
, priv
, hw
);
504 hw
->x
= (((buf
[3] & 0x10) << 8) |
505 ((buf
[1] & 0x0f) << 8) |
507 hw
->y
= (((buf
[3] & 0x20) << 7) |
508 ((buf
[1] & 0xf0) << 4) |
512 if (SYN_CAP_MULTI_BUTTON_NO(priv
->ext_cap
) &&
513 ((buf
[0] ^ buf
[3]) & 0x02)) {
514 switch (SYN_CAP_MULTI_BUTTON_NO(priv
->ext_cap
) & ~0x01) {
517 * if nExtBtn is greater than 8 it should be
518 * considered invalid and treated as 0
522 hw
->ext_buttons
|= ((buf
[5] & 0x08)) ? 0x80 : 0;
523 hw
->ext_buttons
|= ((buf
[4] & 0x08)) ? 0x40 : 0;
525 hw
->ext_buttons
|= ((buf
[5] & 0x04)) ? 0x20 : 0;
526 hw
->ext_buttons
|= ((buf
[4] & 0x04)) ? 0x10 : 0;
528 hw
->ext_buttons
|= ((buf
[5] & 0x02)) ? 0x08 : 0;
529 hw
->ext_buttons
|= ((buf
[4] & 0x02)) ? 0x04 : 0;
531 hw
->ext_buttons
|= ((buf
[5] & 0x01)) ? 0x02 : 0;
532 hw
->ext_buttons
|= ((buf
[4] & 0x01)) ? 0x01 : 0;
536 hw
->x
= (((buf
[1] & 0x1f) << 8) | buf
[2]);
537 hw
->y
= (((buf
[4] & 0x1f) << 8) | buf
[5]);
539 hw
->z
= (((buf
[0] & 0x30) << 2) | (buf
[3] & 0x3F));
540 hw
->w
= (((buf
[1] & 0x80) >> 4) | ((buf
[0] & 0x04) >> 1));
542 hw
->left
= (buf
[0] & 0x01) ? 1 : 0;
543 hw
->right
= (buf
[0] & 0x02) ? 1 : 0;
549 static void synaptics_report_semi_mt_slot(struct input_dev
*dev
, int slot
,
550 bool active
, int x
, int y
)
552 input_mt_slot(dev
, slot
);
553 input_mt_report_slot_state(dev
, MT_TOOL_FINGER
, active
);
555 input_report_abs(dev
, ABS_MT_POSITION_X
, x
);
556 input_report_abs(dev
, ABS_MT_POSITION_Y
, synaptics_invert_y(y
));
560 static void synaptics_report_semi_mt_data(struct input_dev
*dev
,
561 const struct synaptics_hw_state
*a
,
562 const struct synaptics_hw_state
*b
,
565 if (num_fingers
>= 2) {
566 synaptics_report_semi_mt_slot(dev
, 0, true, min(a
->x
, b
->x
),
568 synaptics_report_semi_mt_slot(dev
, 1, true, max(a
->x
, b
->x
),
570 } else if (num_fingers
== 1) {
571 synaptics_report_semi_mt_slot(dev
, 0, true, a
->x
, a
->y
);
572 synaptics_report_semi_mt_slot(dev
, 1, false, 0, 0);
574 synaptics_report_semi_mt_slot(dev
, 0, false, 0, 0);
575 synaptics_report_semi_mt_slot(dev
, 1, false, 0, 0);
579 static void synaptics_report_buttons(struct psmouse
*psmouse
,
580 const struct synaptics_hw_state
*hw
)
582 struct input_dev
*dev
= psmouse
->dev
;
583 struct synaptics_data
*priv
= psmouse
->private;
586 input_report_key(dev
, BTN_LEFT
, hw
->left
);
587 input_report_key(dev
, BTN_RIGHT
, hw
->right
);
589 if (SYN_CAP_MIDDLE_BUTTON(priv
->capabilities
))
590 input_report_key(dev
, BTN_MIDDLE
, hw
->middle
);
592 if (SYN_CAP_FOUR_BUTTON(priv
->capabilities
)) {
593 input_report_key(dev
, BTN_FORWARD
, hw
->up
);
594 input_report_key(dev
, BTN_BACK
, hw
->down
);
597 for (i
= 0; i
< SYN_CAP_MULTI_BUTTON_NO(priv
->ext_cap
); i
++)
598 input_report_key(dev
, BTN_0
+ i
, hw
->ext_buttons
& (1 << i
));
601 static void synaptics_report_slot(struct input_dev
*dev
, int slot
,
602 const struct synaptics_hw_state
*hw
)
604 input_mt_slot(dev
, slot
);
605 input_mt_report_slot_state(dev
, MT_TOOL_FINGER
, (hw
!= NULL
));
609 input_report_abs(dev
, ABS_MT_POSITION_X
, hw
->x
);
610 input_report_abs(dev
, ABS_MT_POSITION_Y
, synaptics_invert_y(hw
->y
));
611 input_report_abs(dev
, ABS_MT_PRESSURE
, hw
->z
);
614 static void synaptics_report_mt_data(struct psmouse
*psmouse
,
615 struct synaptics_mt_state
*mt_state
,
616 const struct synaptics_hw_state
*sgm
)
618 struct input_dev
*dev
= psmouse
->dev
;
619 struct synaptics_data
*priv
= psmouse
->private;
620 struct synaptics_hw_state
*agm
= &priv
->agm
;
621 struct synaptics_mt_state
*old
= &priv
->mt_state
;
623 switch (mt_state
->count
) {
625 synaptics_report_slot(dev
, 0, NULL
);
626 synaptics_report_slot(dev
, 1, NULL
);
629 if (mt_state
->sgm
== -1) {
630 synaptics_report_slot(dev
, 0, NULL
);
631 synaptics_report_slot(dev
, 1, NULL
);
632 } else if (mt_state
->sgm
== 0) {
633 synaptics_report_slot(dev
, 0, sgm
);
634 synaptics_report_slot(dev
, 1, NULL
);
636 synaptics_report_slot(dev
, 0, NULL
);
637 synaptics_report_slot(dev
, 1, sgm
);
642 * If the finger slot contained in SGM is valid, and either
643 * hasn't changed, or is new, then report SGM in MTB slot 0.
644 * Otherwise, empty MTB slot 0.
646 if (mt_state
->sgm
!= -1 &&
647 (mt_state
->sgm
== old
->sgm
|| old
->sgm
== -1))
648 synaptics_report_slot(dev
, 0, sgm
);
650 synaptics_report_slot(dev
, 0, NULL
);
653 * If the finger slot contained in AGM is valid, and either
654 * hasn't changed, or is new, then report AGM in MTB slot 1.
655 * Otherwise, empty MTB slot 1.
657 if (mt_state
->agm
!= -1 &&
658 (mt_state
->agm
== old
->agm
|| old
->agm
== -1))
659 synaptics_report_slot(dev
, 1, agm
);
661 synaptics_report_slot(dev
, 1, NULL
);
665 /* Don't use active slot count to generate BTN_TOOL events. */
666 input_mt_report_pointer_emulation(dev
, false);
668 /* Send the number of fingers reported by touchpad itself. */
669 input_mt_report_finger_count(dev
, mt_state
->count
);
671 synaptics_report_buttons(psmouse
, sgm
);
676 /* Handle case where mt_state->count = 0 */
677 static void synaptics_image_sensor_0f(struct synaptics_data
*priv
,
678 struct synaptics_mt_state
*mt_state
)
680 synaptics_mt_state_set(mt_state
, 0, -1, -1);
681 priv
->mt_state_lost
= false;
684 /* Handle case where mt_state->count = 1 */
685 static void synaptics_image_sensor_1f(struct synaptics_data
*priv
,
686 struct synaptics_mt_state
*mt_state
)
688 struct synaptics_hw_state
*agm
= &priv
->agm
;
689 struct synaptics_mt_state
*old
= &priv
->mt_state
;
692 * If the last AGM was (0,0,0), and there is only one finger left,
693 * then we absolutely know that SGM contains slot 0, and all other
694 * fingers have been removed.
696 if (priv
->agm_pending
&& agm
->z
== 0) {
697 synaptics_mt_state_set(mt_state
, 1, 0, -1);
698 priv
->mt_state_lost
= false;
702 switch (old
->count
) {
704 synaptics_mt_state_set(mt_state
, 1, 0, -1);
708 * If mt_state_lost, then the previous transition was 3->1,
709 * and SGM now contains either slot 0 or 1, but we don't know
710 * which. So, we just assume that the SGM now contains slot 1.
712 * If pending AGM and either:
713 * (a) the previous SGM slot contains slot 0, or
714 * (b) there was no SGM slot
715 * then, the SGM now contains slot 1
717 * Case (a) happens with very rapid "drum roll" gestures, where
718 * slot 0 finger is lifted and a new slot 1 finger touches
719 * within one reporting interval.
721 * Case (b) happens if initially two or more fingers tap
722 * briefly, and all but one lift before the end of the first
723 * reporting interval.
725 * (In both these cases, slot 0 will becomes empty, so SGM
726 * contains slot 1 with the new finger)
728 * Else, if there was no previous SGM, it now contains slot 0.
730 * Otherwise, SGM still contains the same slot.
732 if (priv
->mt_state_lost
||
733 (priv
->agm_pending
&& old
->sgm
<= 0))
734 synaptics_mt_state_set(mt_state
, 1, 1, -1);
735 else if (old
->sgm
== -1)
736 synaptics_mt_state_set(mt_state
, 1, 0, -1);
740 * If mt_state_lost, we don't know which finger SGM contains.
742 * So, report 1 finger, but with both slots empty.
743 * We will use slot 1 on subsequent 1->1
745 if (priv
->mt_state_lost
) {
746 synaptics_mt_state_set(mt_state
, 1, -1, -1);
750 * Since the last AGM was NOT (0,0,0), it was the finger in
751 * slot 0 that has been removed.
752 * So, SGM now contains previous AGM's slot, and AGM is now
755 synaptics_mt_state_set(mt_state
, 1, old
->agm
, -1);
759 * Since last AGM was not (0,0,0), we don't know which finger
762 * So, report 1 finger, but with both slots empty.
763 * We will use slot 1 on subsequent 1->1
765 synaptics_mt_state_set(mt_state
, 1, -1, -1);
766 priv
->mt_state_lost
= true;
770 /* mt_state was updated by AGM-CONTACT packet */
775 /* Handle case where mt_state->count = 2 */
776 static void synaptics_image_sensor_2f(struct synaptics_data
*priv
,
777 struct synaptics_mt_state
*mt_state
)
779 struct synaptics_mt_state
*old
= &priv
->mt_state
;
781 switch (old
->count
) {
783 synaptics_mt_state_set(mt_state
, 2, 0, 1);
787 * If previous SGM contained slot 1 or higher, SGM now contains
788 * slot 0 (the newly touching finger) and AGM contains SGM's
791 * Otherwise, SGM still contains slot 0 and AGM now contains
795 synaptics_mt_state_set(mt_state
, 2, 0, old
->sgm
);
797 synaptics_mt_state_set(mt_state
, 2, 0, 1);
801 * If mt_state_lost, SGM now contains either finger 1 or 2, but
802 * we don't know which.
803 * So, we just assume that the SGM contains slot 0 and AGM 1.
805 if (priv
->mt_state_lost
)
806 synaptics_mt_state_set(mt_state
, 2, 0, 1);
808 * Otherwise, use the same mt_state, since it either hasn't
809 * changed, or was updated by a recently received AGM-CONTACT
815 * 3->2 transitions have two unsolvable problems:
816 * 1) no indication is given which finger was removed
817 * 2) no way to tell if agm packet was for finger 3
818 * before 3->2, or finger 2 after 3->2.
820 * So, report 2 fingers, but empty all slots.
821 * We will guess slots [0,1] on subsequent 2->2.
823 synaptics_mt_state_set(mt_state
, 2, -1, -1);
824 priv
->mt_state_lost
= true;
828 /* mt_state was updated by AGM-CONTACT packet */
833 /* Handle case where mt_state->count = 3 */
834 static void synaptics_image_sensor_3f(struct synaptics_data
*priv
,
835 struct synaptics_mt_state
*mt_state
)
837 struct synaptics_mt_state
*old
= &priv
->mt_state
;
839 switch (old
->count
) {
841 synaptics_mt_state_set(mt_state
, 3, 0, 2);
845 * If previous SGM contained slot 2 or higher, SGM now contains
846 * slot 0 (one of the newly touching fingers) and AGM contains
847 * SGM's previous slot.
849 * Otherwise, SGM now contains slot 0 and AGM contains slot 2.
852 synaptics_mt_state_set(mt_state
, 3, 0, old
->sgm
);
854 synaptics_mt_state_set(mt_state
, 3, 0, 2);
858 * If the AGM previously contained slot 3 or higher, then the
859 * newly touching finger is in the lowest available slot.
861 * If SGM was previously 1 or higher, then the new SGM is
862 * now slot 0 (with a new finger), otherwise, the new finger
863 * is now in a hidden slot between 0 and AGM's slot.
865 * In all such cases, the SGM now contains slot 0, and the AGM
866 * continues to contain the same slot as before.
869 synaptics_mt_state_set(mt_state
, 3, 0, old
->agm
);
874 * After some 3->1 and all 3->2 transitions, we lose track
875 * of which slot is reported by SGM and AGM.
877 * For 2->3 in this state, report 3 fingers, but empty all
878 * slots, and we will guess (0,2) on a subsequent 0->3.
880 * To userspace, the resulting transition will look like:
881 * 2:[0,1] -> 3:[-1,-1] -> 3:[0,2]
883 if (priv
->mt_state_lost
) {
884 synaptics_mt_state_set(mt_state
, 3, -1, -1);
889 * If the (SGM,AGM) really previously contained slots (0, 1),
890 * then we cannot know what slot was just reported by the AGM,
891 * because the 2->3 transition can occur either before or after
892 * the AGM packet. Thus, this most recent AGM could contain
893 * either the same old slot 1 or the new slot 2.
894 * Subsequent AGMs will be reporting slot 2.
896 * To userspace, the resulting transition will look like:
897 * 2:[0,1] -> 3:[0,-1] -> 3:[0,2]
899 synaptics_mt_state_set(mt_state
, 3, 0, -1);
903 * If, for whatever reason, the previous agm was invalid,
904 * Assume SGM now contains slot 0, AGM now contains slot 2.
907 synaptics_mt_state_set(mt_state
, 3, 0, 2);
909 * mt_state either hasn't changed, or was updated by a recently
910 * received AGM-CONTACT packet.
916 /* mt_state was updated by AGM-CONTACT packet */
921 /* Handle case where mt_state->count = 4, or = 5 */
922 static void synaptics_image_sensor_45f(struct synaptics_data
*priv
,
923 struct synaptics_mt_state
*mt_state
)
925 /* mt_state was updated correctly by AGM-CONTACT packet */
926 priv
->mt_state_lost
= false;
929 static void synaptics_image_sensor_process(struct psmouse
*psmouse
,
930 struct synaptics_hw_state
*sgm
)
932 struct synaptics_data
*priv
= psmouse
->private;
933 struct synaptics_hw_state
*agm
= &priv
->agm
;
934 struct synaptics_mt_state mt_state
;
936 /* Initialize using current mt_state (as updated by last agm) */
937 mt_state
= agm
->mt_state
;
940 * Update mt_state using the new finger count and current mt_state.
943 synaptics_image_sensor_0f(priv
, &mt_state
);
944 else if (sgm
->w
>= 4)
945 synaptics_image_sensor_1f(priv
, &mt_state
);
946 else if (sgm
->w
== 0)
947 synaptics_image_sensor_2f(priv
, &mt_state
);
948 else if (sgm
->w
== 1 && mt_state
.count
<= 3)
949 synaptics_image_sensor_3f(priv
, &mt_state
);
951 synaptics_image_sensor_45f(priv
, &mt_state
);
953 /* Send resulting input events to user space */
954 synaptics_report_mt_data(psmouse
, &mt_state
, sgm
);
956 /* Store updated mt_state */
957 priv
->mt_state
= agm
->mt_state
= mt_state
;
958 priv
->agm_pending
= false;
962 * called for each full received packet from the touchpad
964 static void synaptics_process_packet(struct psmouse
*psmouse
)
966 struct input_dev
*dev
= psmouse
->dev
;
967 struct synaptics_data
*priv
= psmouse
->private;
968 struct synaptics_hw_state hw
;
972 if (synaptics_parse_hw_state(psmouse
->packet
, priv
, &hw
))
975 if (SYN_CAP_IMAGE_SENSOR(priv
->ext_cap_0c
)) {
976 synaptics_image_sensor_process(psmouse
, &hw
);
981 priv
->scroll
+= hw
.scroll
;
983 while (priv
->scroll
>= 4) {
984 input_report_key(dev
, BTN_BACK
, !hw
.down
);
986 input_report_key(dev
, BTN_BACK
, hw
.down
);
990 while (priv
->scroll
<= -4) {
991 input_report_key(dev
, BTN_FORWARD
, !hw
.up
);
993 input_report_key(dev
, BTN_FORWARD
, hw
.up
);
1000 if (hw
.z
> 0 && hw
.x
> 1) {
1003 if (SYN_CAP_EXTENDED(priv
->capabilities
)) {
1006 if (SYN_CAP_MULTIFINGER(priv
->capabilities
))
1007 num_fingers
= hw
.w
+ 2;
1010 if (SYN_MODEL_PEN(priv
->model_id
))
1011 ; /* Nothing, treat a pen as a single finger */
1014 if (SYN_CAP_PALMDETECT(priv
->capabilities
))
1015 finger_width
= hw
.w
;
1024 if (SYN_CAP_ADV_GESTURE(priv
->ext_cap_0c
))
1025 synaptics_report_semi_mt_data(dev
, &hw
, &priv
->agm
,
1029 * BTN_TOUCH has to be first as mousedev relies on it when doing
1030 * absolute -> relative conversion
1032 if (hw
.z
> 30) input_report_key(dev
, BTN_TOUCH
, 1);
1033 if (hw
.z
< 25) input_report_key(dev
, BTN_TOUCH
, 0);
1035 if (num_fingers
> 0) {
1036 input_report_abs(dev
, ABS_X
, hw
.x
);
1037 input_report_abs(dev
, ABS_Y
, synaptics_invert_y(hw
.y
));
1039 input_report_abs(dev
, ABS_PRESSURE
, hw
.z
);
1041 if (SYN_CAP_PALMDETECT(priv
->capabilities
))
1042 input_report_abs(dev
, ABS_TOOL_WIDTH
, finger_width
);
1044 input_report_key(dev
, BTN_TOOL_FINGER
, num_fingers
== 1);
1045 if (SYN_CAP_MULTIFINGER(priv
->capabilities
)) {
1046 input_report_key(dev
, BTN_TOOL_DOUBLETAP
, num_fingers
== 2);
1047 input_report_key(dev
, BTN_TOOL_TRIPLETAP
, num_fingers
== 3);
1050 synaptics_report_buttons(psmouse
, &hw
);
1055 static int synaptics_validate_byte(struct psmouse
*psmouse
,
1056 int idx
, unsigned char pkt_type
)
1058 static const unsigned char newabs_mask
[] = { 0xC8, 0x00, 0x00, 0xC8, 0x00 };
1059 static const unsigned char newabs_rel_mask
[] = { 0xC0, 0x00, 0x00, 0xC0, 0x00 };
1060 static const unsigned char newabs_rslt
[] = { 0x80, 0x00, 0x00, 0xC0, 0x00 };
1061 static const unsigned char oldabs_mask
[] = { 0xC0, 0x60, 0x00, 0xC0, 0x60 };
1062 static const unsigned char oldabs_rslt
[] = { 0xC0, 0x00, 0x00, 0x80, 0x00 };
1063 const char *packet
= psmouse
->packet
;
1065 if (idx
< 0 || idx
> 4)
1071 case SYN_NEWABS_RELAXED
:
1072 return (packet
[idx
] & newabs_rel_mask
[idx
]) == newabs_rslt
[idx
];
1074 case SYN_NEWABS_STRICT
:
1075 return (packet
[idx
] & newabs_mask
[idx
]) == newabs_rslt
[idx
];
1078 return (packet
[idx
] & oldabs_mask
[idx
]) == oldabs_rslt
[idx
];
1081 psmouse_err(psmouse
, "unknown packet type %d\n", pkt_type
);
1086 static unsigned char synaptics_detect_pkt_type(struct psmouse
*psmouse
)
1090 for (i
= 0; i
< 5; i
++)
1091 if (!synaptics_validate_byte(psmouse
, i
, SYN_NEWABS_STRICT
)) {
1092 psmouse_info(psmouse
, "using relaxed packet validation\n");
1093 return SYN_NEWABS_RELAXED
;
1096 return SYN_NEWABS_STRICT
;
1099 static psmouse_ret_t
synaptics_process_byte(struct psmouse
*psmouse
)
1101 struct synaptics_data
*priv
= psmouse
->private;
1103 if (psmouse
->pktcnt
>= 6) { /* Full packet received */
1104 if (unlikely(priv
->pkt_type
== SYN_NEWABS
))
1105 priv
->pkt_type
= synaptics_detect_pkt_type(psmouse
);
1107 if (SYN_CAP_PASS_THROUGH(priv
->capabilities
) &&
1108 synaptics_is_pt_packet(psmouse
->packet
)) {
1110 synaptics_pass_pt_packet(priv
->pt_port
, psmouse
->packet
);
1112 synaptics_process_packet(psmouse
);
1114 return PSMOUSE_FULL_PACKET
;
1117 return synaptics_validate_byte(psmouse
, psmouse
->pktcnt
- 1, priv
->pkt_type
) ?
1118 PSMOUSE_GOOD_DATA
: PSMOUSE_BAD_DATA
;
1121 /*****************************************************************************
1122 * Driver initialization/cleanup functions
1123 ****************************************************************************/
1124 static void set_abs_position_params(struct input_dev
*dev
,
1125 struct synaptics_data
*priv
, int x_code
,
1128 int x_min
= priv
->x_min
?: XMIN_NOMINAL
;
1129 int x_max
= priv
->x_max
?: XMAX_NOMINAL
;
1130 int y_min
= priv
->y_min
?: YMIN_NOMINAL
;
1131 int y_max
= priv
->y_max
?: YMAX_NOMINAL
;
1132 int fuzz
= SYN_CAP_REDUCED_FILTERING(priv
->ext_cap_0c
) ?
1133 SYN_REDUCED_FILTER_FUZZ
: 0;
1135 input_set_abs_params(dev
, x_code
, x_min
, x_max
, fuzz
, 0);
1136 input_set_abs_params(dev
, y_code
, y_min
, y_max
, fuzz
, 0);
1137 input_abs_set_res(dev
, x_code
, priv
->x_res
);
1138 input_abs_set_res(dev
, y_code
, priv
->y_res
);
1141 static void set_input_params(struct input_dev
*dev
, struct synaptics_data
*priv
)
1145 __set_bit(INPUT_PROP_POINTER
, dev
->propbit
);
1147 __set_bit(EV_ABS
, dev
->evbit
);
1148 set_abs_position_params(dev
, priv
, ABS_X
, ABS_Y
);
1149 input_set_abs_params(dev
, ABS_PRESSURE
, 0, 255, 0, 0);
1151 if (SYN_CAP_IMAGE_SENSOR(priv
->ext_cap_0c
)) {
1152 input_mt_init_slots(dev
, 2);
1153 set_abs_position_params(dev
, priv
, ABS_MT_POSITION_X
,
1155 /* Image sensors can report per-contact pressure */
1156 input_set_abs_params(dev
, ABS_MT_PRESSURE
, 0, 255, 0, 0);
1158 /* Image sensors can signal 4 and 5 finger clicks */
1159 __set_bit(BTN_TOOL_QUADTAP
, dev
->keybit
);
1160 __set_bit(BTN_TOOL_QUINTTAP
, dev
->keybit
);
1161 } else if (SYN_CAP_ADV_GESTURE(priv
->ext_cap_0c
)) {
1162 /* Non-image sensors with AGM use semi-mt */
1163 __set_bit(INPUT_PROP_SEMI_MT
, dev
->propbit
);
1164 input_mt_init_slots(dev
, 2);
1165 set_abs_position_params(dev
, priv
, ABS_MT_POSITION_X
,
1169 if (SYN_CAP_PALMDETECT(priv
->capabilities
))
1170 input_set_abs_params(dev
, ABS_TOOL_WIDTH
, 0, 15, 0, 0);
1172 __set_bit(EV_KEY
, dev
->evbit
);
1173 __set_bit(BTN_TOUCH
, dev
->keybit
);
1174 __set_bit(BTN_TOOL_FINGER
, dev
->keybit
);
1175 __set_bit(BTN_LEFT
, dev
->keybit
);
1176 __set_bit(BTN_RIGHT
, dev
->keybit
);
1178 if (SYN_CAP_MULTIFINGER(priv
->capabilities
)) {
1179 __set_bit(BTN_TOOL_DOUBLETAP
, dev
->keybit
);
1180 __set_bit(BTN_TOOL_TRIPLETAP
, dev
->keybit
);
1183 if (SYN_CAP_MIDDLE_BUTTON(priv
->capabilities
))
1184 __set_bit(BTN_MIDDLE
, dev
->keybit
);
1186 if (SYN_CAP_FOUR_BUTTON(priv
->capabilities
) ||
1187 SYN_CAP_MIDDLE_BUTTON(priv
->capabilities
)) {
1188 __set_bit(BTN_FORWARD
, dev
->keybit
);
1189 __set_bit(BTN_BACK
, dev
->keybit
);
1192 for (i
= 0; i
< SYN_CAP_MULTI_BUTTON_NO(priv
->ext_cap
); i
++)
1193 __set_bit(BTN_0
+ i
, dev
->keybit
);
1195 __clear_bit(EV_REL
, dev
->evbit
);
1196 __clear_bit(REL_X
, dev
->relbit
);
1197 __clear_bit(REL_Y
, dev
->relbit
);
1199 if (SYN_CAP_CLICKPAD(priv
->ext_cap_0c
)) {
1200 __set_bit(INPUT_PROP_BUTTONPAD
, dev
->propbit
);
1201 /* Clickpads report only left button */
1202 __clear_bit(BTN_RIGHT
, dev
->keybit
);
1203 __clear_bit(BTN_MIDDLE
, dev
->keybit
);
1207 static void synaptics_disconnect(struct psmouse
*psmouse
)
1209 synaptics_reset(psmouse
);
1210 kfree(psmouse
->private);
1211 psmouse
->private = NULL
;
1214 static int synaptics_reconnect(struct psmouse
*psmouse
)
1216 struct synaptics_data
*priv
= psmouse
->private;
1217 struct synaptics_data old_priv
= *priv
;
1222 psmouse_reset(psmouse
);
1223 error
= synaptics_detect(psmouse
, 0);
1224 } while (error
&& ++retry
< 3);
1230 psmouse_dbg(psmouse
, "reconnected after %d tries\n", retry
);
1232 if (synaptics_query_hardware(psmouse
)) {
1233 psmouse_err(psmouse
, "Unable to query device.\n");
1237 if (synaptics_set_absolute_mode(psmouse
)) {
1238 psmouse_err(psmouse
, "Unable to initialize device.\n");
1242 if (synaptics_set_advanced_gesture_mode(psmouse
)) {
1243 psmouse_err(psmouse
,
1244 "Advanced gesture mode reconnect failed.\n");
1248 if (old_priv
.identity
!= priv
->identity
||
1249 old_priv
.model_id
!= priv
->model_id
||
1250 old_priv
.capabilities
!= priv
->capabilities
||
1251 old_priv
.ext_cap
!= priv
->ext_cap
) {
1252 psmouse_err(psmouse
,
1253 "hardware appears to be different: id(%ld-%ld), model(%ld-%ld), caps(%lx-%lx), ext(%lx-%lx).\n",
1254 old_priv
.identity
, priv
->identity
,
1255 old_priv
.model_id
, priv
->model_id
,
1256 old_priv
.capabilities
, priv
->capabilities
,
1257 old_priv
.ext_cap
, priv
->ext_cap
);
1264 static bool impaired_toshiba_kbc
;
1266 static const struct dmi_system_id __initconst toshiba_dmi_table
[] = {
1267 #if defined(CONFIG_DMI) && defined(CONFIG_X86)
1269 /* Toshiba Satellite */
1271 DMI_MATCH(DMI_SYS_VENDOR
, "TOSHIBA"),
1272 DMI_MATCH(DMI_PRODUCT_NAME
, "Satellite"),
1276 /* Toshiba Dynabook */
1278 DMI_MATCH(DMI_SYS_VENDOR
, "TOSHIBA"),
1279 DMI_MATCH(DMI_PRODUCT_NAME
, "dynabook"),
1283 /* Toshiba Portege M300 */
1285 DMI_MATCH(DMI_SYS_VENDOR
, "TOSHIBA"),
1286 DMI_MATCH(DMI_PRODUCT_NAME
, "PORTEGE M300"),
1291 /* Toshiba Portege M300 */
1293 DMI_MATCH(DMI_SYS_VENDOR
, "TOSHIBA"),
1294 DMI_MATCH(DMI_PRODUCT_NAME
, "Portable PC"),
1295 DMI_MATCH(DMI_PRODUCT_VERSION
, "Version 1.0"),
1303 static bool broken_olpc_ec
;
1305 static const struct dmi_system_id __initconst olpc_dmi_table
[] = {
1306 #if defined(CONFIG_DMI) && defined(CONFIG_OLPC)
1308 /* OLPC XO-1 or XO-1.5 */
1310 DMI_MATCH(DMI_SYS_VENDOR
, "OLPC"),
1311 DMI_MATCH(DMI_PRODUCT_NAME
, "XO"),
1318 void __init
synaptics_module_init(void)
1320 impaired_toshiba_kbc
= dmi_check_system(toshiba_dmi_table
);
1321 broken_olpc_ec
= dmi_check_system(olpc_dmi_table
);
1324 int synaptics_init(struct psmouse
*psmouse
)
1326 struct synaptics_data
*priv
;
1329 * The OLPC XO has issues with Synaptics' absolute mode; similarly to
1330 * the HGPK, it quickly degrades and the hardware becomes jumpy and
1331 * overly sensitive. Not only that, but the constant packet spew
1332 * (even at a lowered 40pps rate) overloads the EC such that key
1333 * presses on the keyboard are missed. Given all of that, don't
1334 * even attempt to use Synaptics mode. Relative mode seems to work
1337 if (broken_olpc_ec
) {
1338 psmouse_info(psmouse
,
1339 "OLPC XO detected, not enabling Synaptics protocol.\n");
1343 psmouse
->private = priv
= kzalloc(sizeof(struct synaptics_data
), GFP_KERNEL
);
1347 psmouse_reset(psmouse
);
1349 if (synaptics_query_hardware(psmouse
)) {
1350 psmouse_err(psmouse
, "Unable to query device.\n");
1354 if (synaptics_set_absolute_mode(psmouse
)) {
1355 psmouse_err(psmouse
, "Unable to initialize device.\n");
1359 if (synaptics_set_advanced_gesture_mode(psmouse
)) {
1360 psmouse_err(psmouse
, "Advanced gesture mode init failed.\n");
1364 priv
->pkt_type
= SYN_MODEL_NEWABS(priv
->model_id
) ? SYN_NEWABS
: SYN_OLDABS
;
1366 psmouse_info(psmouse
,
1367 "Touchpad model: %ld, fw: %ld.%ld, id: %#lx, caps: %#lx/%#lx/%#lx\n",
1368 SYN_ID_MODEL(priv
->identity
),
1369 SYN_ID_MAJOR(priv
->identity
), SYN_ID_MINOR(priv
->identity
),
1371 priv
->capabilities
, priv
->ext_cap
, priv
->ext_cap_0c
);
1373 set_input_params(psmouse
->dev
, priv
);
1376 * Encode touchpad model so that it can be used to set
1377 * input device->id.version and be visible to userspace.
1378 * Because version is __u16 we have to drop something.
1379 * Hardware info bits seem to be good candidates as they
1380 * are documented to be for Synaptics corp. internal use.
1382 psmouse
->model
= ((priv
->model_id
& 0x00ff0000) >> 8) |
1383 (priv
->model_id
& 0x000000ff);
1385 psmouse
->protocol_handler
= synaptics_process_byte
;
1386 psmouse
->set_rate
= synaptics_set_rate
;
1387 psmouse
->disconnect
= synaptics_disconnect
;
1388 psmouse
->reconnect
= synaptics_reconnect
;
1389 psmouse
->cleanup
= synaptics_reset
;
1390 psmouse
->pktsize
= 6;
1391 /* Synaptics can usually stay in sync without extra help */
1392 psmouse
->resync_time
= 0;
1394 if (SYN_CAP_PASS_THROUGH(priv
->capabilities
))
1395 synaptics_pt_create(psmouse
);
1398 * Toshiba's KBC seems to have trouble handling data from
1399 * Synaptics at full rate. Switch to a lower rate (roughly
1400 * the same rate as a standard PS/2 mouse).
1402 if (psmouse
->rate
>= 80 && impaired_toshiba_kbc
) {
1403 psmouse_info(psmouse
,
1404 "Toshiba %s detected, limiting rate to 40pps.\n",
1405 dmi_get_system_info(DMI_PRODUCT_NAME
));
1416 bool synaptics_supported(void)
1421 #else /* CONFIG_MOUSE_PS2_SYNAPTICS */
1423 void __init
synaptics_module_init(void)
1427 int synaptics_init(struct psmouse
*psmouse
)
1432 bool synaptics_supported(void)
1437 #endif /* CONFIG_MOUSE_PS2_SYNAPTICS */