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 /*****************************************************************************
49 * Stuff we need even when we do not want native Synaptics support
50 ****************************************************************************/
53 * Set the synaptics touchpad mode byte by special commands
55 static int synaptics_mode_cmd(struct psmouse
*psmouse
, unsigned char mode
)
57 unsigned char param
[1];
59 if (psmouse_sliced_command(psmouse
, mode
))
61 param
[0] = SYN_PS_SET_MODE2
;
62 if (ps2_command(&psmouse
->ps2dev
, param
, PSMOUSE_CMD_SETRATE
))
67 int synaptics_detect(struct psmouse
*psmouse
, bool set_properties
)
69 struct ps2dev
*ps2dev
= &psmouse
->ps2dev
;
70 unsigned char param
[4];
74 ps2_command(ps2dev
, param
, PSMOUSE_CMD_SETRES
);
75 ps2_command(ps2dev
, param
, PSMOUSE_CMD_SETRES
);
76 ps2_command(ps2dev
, param
, PSMOUSE_CMD_SETRES
);
77 ps2_command(ps2dev
, param
, PSMOUSE_CMD_SETRES
);
78 ps2_command(ps2dev
, param
, PSMOUSE_CMD_GETINFO
);
84 psmouse
->vendor
= "Synaptics";
85 psmouse
->name
= "TouchPad";
91 void synaptics_reset(struct psmouse
*psmouse
)
93 /* reset touchpad back to relative mode, gestures enabled */
94 synaptics_mode_cmd(psmouse
, 0);
97 #ifdef CONFIG_MOUSE_PS2_SYNAPTICS
99 /*****************************************************************************
100 * Synaptics communications functions
101 ****************************************************************************/
104 * Send a command to the synpatics touchpad by special commands
106 static int synaptics_send_cmd(struct psmouse
*psmouse
, unsigned char c
, unsigned char *param
)
108 if (psmouse_sliced_command(psmouse
, c
))
110 if (ps2_command(&psmouse
->ps2dev
, param
, PSMOUSE_CMD_GETINFO
))
116 * Read the model-id bytes from the touchpad
117 * see also SYN_MODEL_* macros
119 static int synaptics_model_id(struct psmouse
*psmouse
)
121 struct synaptics_data
*priv
= psmouse
->private;
124 if (synaptics_send_cmd(psmouse
, SYN_QUE_MODEL
, mi
))
126 priv
->model_id
= (mi
[0]<<16) | (mi
[1]<<8) | mi
[2];
131 * Read the capability-bits from the touchpad
132 * see also the SYN_CAP_* macros
134 static int synaptics_capability(struct psmouse
*psmouse
)
136 struct synaptics_data
*priv
= psmouse
->private;
137 unsigned char cap
[3];
139 if (synaptics_send_cmd(psmouse
, SYN_QUE_CAPABILITIES
, cap
))
141 priv
->capabilities
= (cap
[0] << 16) | (cap
[1] << 8) | cap
[2];
142 priv
->ext_cap
= priv
->ext_cap_0c
= 0;
145 * Older firmwares had submodel ID fixed to 0x47
147 if (SYN_ID_FULL(priv
->identity
) < 0x705 &&
148 SYN_CAP_SUBMODEL_ID(priv
->capabilities
) != 0x47) {
153 * Unless capExtended is set the rest of the flags should be ignored
155 if (!SYN_CAP_EXTENDED(priv
->capabilities
))
156 priv
->capabilities
= 0;
158 if (SYN_EXT_CAP_REQUESTS(priv
->capabilities
) >= 1) {
159 if (synaptics_send_cmd(psmouse
, SYN_QUE_EXT_CAPAB
, cap
)) {
160 printk(KERN_ERR
"Synaptics claims to have extended capabilities,"
161 " but I'm not able to read them.\n");
163 priv
->ext_cap
= (cap
[0] << 16) | (cap
[1] << 8) | cap
[2];
166 * if nExtBtn is greater than 8 it should be considered
167 * invalid and treated as 0
169 if (SYN_CAP_MULTI_BUTTON_NO(priv
->ext_cap
) > 8)
170 priv
->ext_cap
&= 0xff0fff;
174 if (SYN_EXT_CAP_REQUESTS(priv
->capabilities
) >= 4) {
175 if (synaptics_send_cmd(psmouse
, SYN_QUE_EXT_CAPAB_0C
, cap
)) {
176 printk(KERN_ERR
"Synaptics claims to have extended capability 0x0c,"
177 " but I'm not able to read it.\n");
179 priv
->ext_cap_0c
= (cap
[0] << 16) | (cap
[1] << 8) | cap
[2];
188 * See also the SYN_ID_* macros
190 static int synaptics_identify(struct psmouse
*psmouse
)
192 struct synaptics_data
*priv
= psmouse
->private;
195 if (synaptics_send_cmd(psmouse
, SYN_QUE_IDENTIFY
, id
))
197 priv
->identity
= (id
[0]<<16) | (id
[1]<<8) | id
[2];
198 if (SYN_ID_IS_SYNAPTICS(priv
->identity
))
204 * Read touchpad resolution and maximum reported coordinates
205 * Resolution is left zero if touchpad does not support the query
207 static int synaptics_resolution(struct psmouse
*psmouse
)
209 struct synaptics_data
*priv
= psmouse
->private;
210 unsigned char res
[3];
211 unsigned char max
[3];
213 if (SYN_ID_MAJOR(priv
->identity
) < 4)
216 if (synaptics_send_cmd(psmouse
, SYN_QUE_RESOLUTION
, res
) == 0) {
217 if (res
[0] != 0 && (res
[1] & 0x80) && res
[2] != 0) {
218 priv
->x_res
= res
[0]; /* x resolution in units/mm */
219 priv
->y_res
= res
[2]; /* y resolution in units/mm */
223 if (SYN_EXT_CAP_REQUESTS(priv
->capabilities
) >= 5 &&
224 SYN_CAP_MAX_DIMENSIONS(priv
->ext_cap_0c
)) {
225 if (synaptics_send_cmd(psmouse
, SYN_QUE_EXT_DIMENSIONS
, max
)) {
226 printk(KERN_ERR
"Synaptics claims to have dimensions query,"
227 " but I'm not able to read it.\n");
229 priv
->x_max
= (max
[0] << 5) | ((max
[1] & 0x0f) << 1);
230 priv
->y_max
= (max
[2] << 5) | ((max
[1] & 0xf0) >> 3);
237 static int synaptics_query_hardware(struct psmouse
*psmouse
)
239 if (synaptics_identify(psmouse
))
241 if (synaptics_model_id(psmouse
))
243 if (synaptics_capability(psmouse
))
245 if (synaptics_resolution(psmouse
))
251 static int synaptics_set_absolute_mode(struct psmouse
*psmouse
)
253 struct synaptics_data
*priv
= psmouse
->private;
255 priv
->mode
= SYN_BIT_ABSOLUTE_MODE
;
256 if (SYN_ID_MAJOR(priv
->identity
) >= 4)
257 priv
->mode
|= SYN_BIT_DISABLE_GESTURE
;
258 if (SYN_CAP_EXTENDED(priv
->capabilities
))
259 priv
->mode
|= SYN_BIT_W_MODE
;
261 if (synaptics_mode_cmd(psmouse
, priv
->mode
))
267 static void synaptics_set_rate(struct psmouse
*psmouse
, unsigned int rate
)
269 struct synaptics_data
*priv
= psmouse
->private;
272 priv
->mode
|= SYN_BIT_HIGH_RATE
;
275 priv
->mode
&= ~SYN_BIT_HIGH_RATE
;
279 synaptics_mode_cmd(psmouse
, priv
->mode
);
282 static int synaptics_set_advanced_gesture_mode(struct psmouse
*psmouse
)
284 static unsigned char param
= 0xc8;
285 struct synaptics_data
*priv
= psmouse
->private;
287 if (!SYN_CAP_ADV_GESTURE(priv
->ext_cap_0c
))
290 if (psmouse_sliced_command(psmouse
, SYN_QUE_MODEL
))
292 if (ps2_command(&psmouse
->ps2dev
, ¶m
, PSMOUSE_CMD_SETRATE
))
295 /* Advanced gesture mode also sends multi finger data */
296 priv
->capabilities
|= BIT(1);
301 /*****************************************************************************
302 * Synaptics pass-through PS/2 port support
303 ****************************************************************************/
304 static int synaptics_pt_write(struct serio
*serio
, unsigned char c
)
306 struct psmouse
*parent
= serio_get_drvdata(serio
->parent
);
307 char rate_param
= SYN_PS_CLIENT_CMD
; /* indicates that we want pass-through port */
309 if (psmouse_sliced_command(parent
, c
))
311 if (ps2_command(&parent
->ps2dev
, &rate_param
, PSMOUSE_CMD_SETRATE
))
316 static int synaptics_pt_start(struct serio
*serio
)
318 struct psmouse
*parent
= serio_get_drvdata(serio
->parent
);
319 struct synaptics_data
*priv
= parent
->private;
321 serio_pause_rx(parent
->ps2dev
.serio
);
322 priv
->pt_port
= serio
;
323 serio_continue_rx(parent
->ps2dev
.serio
);
328 static void synaptics_pt_stop(struct serio
*serio
)
330 struct psmouse
*parent
= serio_get_drvdata(serio
->parent
);
331 struct synaptics_data
*priv
= parent
->private;
333 serio_pause_rx(parent
->ps2dev
.serio
);
334 priv
->pt_port
= NULL
;
335 serio_continue_rx(parent
->ps2dev
.serio
);
338 static int synaptics_is_pt_packet(unsigned char *buf
)
340 return (buf
[0] & 0xFC) == 0x84 && (buf
[3] & 0xCC) == 0xC4;
343 static void synaptics_pass_pt_packet(struct serio
*ptport
, unsigned char *packet
)
345 struct psmouse
*child
= serio_get_drvdata(ptport
);
347 if (child
&& child
->state
== PSMOUSE_ACTIVATED
) {
348 serio_interrupt(ptport
, packet
[1], 0);
349 serio_interrupt(ptport
, packet
[4], 0);
350 serio_interrupt(ptport
, packet
[5], 0);
351 if (child
->pktsize
== 4)
352 serio_interrupt(ptport
, packet
[2], 0);
354 serio_interrupt(ptport
, packet
[1], 0);
357 static void synaptics_pt_activate(struct psmouse
*psmouse
)
359 struct synaptics_data
*priv
= psmouse
->private;
360 struct psmouse
*child
= serio_get_drvdata(priv
->pt_port
);
362 /* adjust the touchpad to child's choice of protocol */
364 if (child
->pktsize
== 4)
365 priv
->mode
|= SYN_BIT_FOUR_BYTE_CLIENT
;
367 priv
->mode
&= ~SYN_BIT_FOUR_BYTE_CLIENT
;
369 if (synaptics_mode_cmd(psmouse
, priv
->mode
))
370 printk(KERN_INFO
"synaptics: failed to switch guest protocol\n");
374 static void synaptics_pt_create(struct psmouse
*psmouse
)
378 serio
= kzalloc(sizeof(struct serio
), GFP_KERNEL
);
380 printk(KERN_ERR
"synaptics: not enough memory to allocate pass-through port\n");
384 serio
->id
.type
= SERIO_PS_PSTHRU
;
385 strlcpy(serio
->name
, "Synaptics pass-through", sizeof(serio
->name
));
386 strlcpy(serio
->phys
, "synaptics-pt/serio0", sizeof(serio
->name
));
387 serio
->write
= synaptics_pt_write
;
388 serio
->start
= synaptics_pt_start
;
389 serio
->stop
= synaptics_pt_stop
;
390 serio
->parent
= psmouse
->ps2dev
.serio
;
392 psmouse
->pt_activate
= synaptics_pt_activate
;
394 printk(KERN_INFO
"serio: %s port at %s\n", serio
->name
, psmouse
->phys
);
395 serio_register_port(serio
);
398 /*****************************************************************************
399 * Functions to interpret the absolute mode packets
400 ****************************************************************************/
402 static int synaptics_parse_hw_state(const unsigned char buf
[],
403 struct synaptics_data
*priv
,
404 struct synaptics_hw_state
*hw
)
406 memset(hw
, 0, sizeof(struct synaptics_hw_state
));
408 if (SYN_MODEL_NEWABS(priv
->model_id
)) {
409 hw
->x
= (((buf
[3] & 0x10) << 8) |
410 ((buf
[1] & 0x0f) << 8) |
412 hw
->y
= (((buf
[3] & 0x20) << 7) |
413 ((buf
[1] & 0xf0) << 4) |
417 hw
->w
= (((buf
[0] & 0x30) >> 2) |
418 ((buf
[0] & 0x04) >> 1) |
419 ((buf
[3] & 0x04) >> 2));
421 if (SYN_CAP_ADV_GESTURE(priv
->ext_cap_0c
) && hw
->w
== 2) {
422 /* Gesture packet: (x, y, z) at half resolution */
423 priv
->mt
.x
= (((buf
[4] & 0x0f) << 8) | buf
[1]) << 1;
424 priv
->mt
.y
= (((buf
[4] & 0xf0) << 4) | buf
[2]) << 1;
425 priv
->mt
.z
= ((buf
[3] & 0x30) | (buf
[5] & 0x0f)) << 1;
429 hw
->left
= (buf
[0] & 0x01) ? 1 : 0;
430 hw
->right
= (buf
[0] & 0x02) ? 1 : 0;
432 if (SYN_CAP_CLICKPAD(priv
->ext_cap_0c
)) {
434 * Clickpad's button is transmitted as middle button,
435 * however, since it is primary button, we will report
438 hw
->left
= ((buf
[0] ^ buf
[3]) & 0x01) ? 1 : 0;
440 } else if (SYN_CAP_MIDDLE_BUTTON(priv
->capabilities
)) {
441 hw
->middle
= ((buf
[0] ^ buf
[3]) & 0x01) ? 1 : 0;
443 hw
->scroll
= (signed char)(buf
[1]);
446 if (SYN_CAP_FOUR_BUTTON(priv
->capabilities
)) {
447 hw
->up
= ((buf
[0] ^ buf
[3]) & 0x01) ? 1 : 0;
448 hw
->down
= ((buf
[0] ^ buf
[3]) & 0x02) ? 1 : 0;
451 if (SYN_CAP_MULTI_BUTTON_NO(priv
->ext_cap
) &&
452 ((buf
[0] ^ buf
[3]) & 0x02)) {
453 switch (SYN_CAP_MULTI_BUTTON_NO(priv
->ext_cap
) & ~0x01) {
456 * if nExtBtn is greater than 8 it should be
457 * considered invalid and treated as 0
461 hw
->ext_buttons
|= ((buf
[5] & 0x08)) ? 0x80 : 0;
462 hw
->ext_buttons
|= ((buf
[4] & 0x08)) ? 0x40 : 0;
464 hw
->ext_buttons
|= ((buf
[5] & 0x04)) ? 0x20 : 0;
465 hw
->ext_buttons
|= ((buf
[4] & 0x04)) ? 0x10 : 0;
467 hw
->ext_buttons
|= ((buf
[5] & 0x02)) ? 0x08 : 0;
468 hw
->ext_buttons
|= ((buf
[4] & 0x02)) ? 0x04 : 0;
470 hw
->ext_buttons
|= ((buf
[5] & 0x01)) ? 0x02 : 0;
471 hw
->ext_buttons
|= ((buf
[4] & 0x01)) ? 0x01 : 0;
475 hw
->x
= (((buf
[1] & 0x1f) << 8) | buf
[2]);
476 hw
->y
= (((buf
[4] & 0x1f) << 8) | buf
[5]);
478 hw
->z
= (((buf
[0] & 0x30) << 2) | (buf
[3] & 0x3F));
479 hw
->w
= (((buf
[1] & 0x80) >> 4) | ((buf
[0] & 0x04) >> 1));
481 hw
->left
= (buf
[0] & 0x01) ? 1 : 0;
482 hw
->right
= (buf
[0] & 0x02) ? 1 : 0;
488 static void set_slot(struct input_dev
*dev
, int slot
, bool active
, int x
, int y
)
490 input_mt_slot(dev
, slot
);
491 input_mt_report_slot_state(dev
, MT_TOOL_FINGER
, active
);
493 input_report_abs(dev
, ABS_MT_POSITION_X
, x
);
494 input_report_abs(dev
, ABS_MT_POSITION_Y
,
495 YMAX_NOMINAL
+ YMIN_NOMINAL
- y
);
499 static void synaptics_report_semi_mt_data(struct input_dev
*dev
,
500 const struct synaptics_hw_state
*a
,
501 const struct synaptics_hw_state
*b
,
504 if (num_fingers
>= 2) {
505 set_slot(dev
, 0, true, min(a
->x
, b
->x
), min(a
->y
, b
->y
));
506 set_slot(dev
, 1, true, max(a
->x
, b
->x
), max(a
->y
, b
->y
));
507 } else if (num_fingers
== 1) {
508 set_slot(dev
, 0, true, a
->x
, a
->y
);
509 set_slot(dev
, 1, false, 0, 0);
511 set_slot(dev
, 0, false, 0, 0);
512 set_slot(dev
, 1, false, 0, 0);
517 * called for each full received packet from the touchpad
519 static void synaptics_process_packet(struct psmouse
*psmouse
)
521 struct input_dev
*dev
= psmouse
->dev
;
522 struct synaptics_data
*priv
= psmouse
->private;
523 struct synaptics_hw_state hw
;
528 if (synaptics_parse_hw_state(psmouse
->packet
, priv
, &hw
))
532 priv
->scroll
+= hw
.scroll
;
534 while (priv
->scroll
>= 4) {
535 input_report_key(dev
, BTN_BACK
, !hw
.down
);
537 input_report_key(dev
, BTN_BACK
, hw
.down
);
541 while (priv
->scroll
<= -4) {
542 input_report_key(dev
, BTN_FORWARD
, !hw
.up
);
544 input_report_key(dev
, BTN_FORWARD
, hw
.up
);
551 if (hw
.z
> 0 && hw
.x
> 1) {
554 if (SYN_CAP_EXTENDED(priv
->capabilities
)) {
557 if (SYN_CAP_MULTIFINGER(priv
->capabilities
))
558 num_fingers
= hw
.w
+ 2;
561 if (SYN_MODEL_PEN(priv
->model_id
))
562 ; /* Nothing, treat a pen as a single finger */
565 if (SYN_CAP_PALMDETECT(priv
->capabilities
))
575 if (SYN_CAP_ADV_GESTURE(priv
->ext_cap_0c
))
576 synaptics_report_semi_mt_data(dev
, &hw
, &priv
->mt
, num_fingers
);
579 * BTN_TOUCH has to be first as mousedev relies on it when doing
580 * absolute -> relative conversion
582 if (hw
.z
> 30) input_report_key(dev
, BTN_TOUCH
, 1);
583 if (hw
.z
< 25) input_report_key(dev
, BTN_TOUCH
, 0);
585 if (num_fingers
> 0) {
586 input_report_abs(dev
, ABS_X
, hw
.x
);
587 input_report_abs(dev
, ABS_Y
, YMAX_NOMINAL
+ YMIN_NOMINAL
- hw
.y
);
589 input_report_abs(dev
, ABS_PRESSURE
, hw
.z
);
591 if (SYN_CAP_PALMDETECT(priv
->capabilities
))
592 input_report_abs(dev
, ABS_TOOL_WIDTH
, finger_width
);
594 input_report_key(dev
, BTN_TOOL_FINGER
, num_fingers
== 1);
595 input_report_key(dev
, BTN_LEFT
, hw
.left
);
596 input_report_key(dev
, BTN_RIGHT
, hw
.right
);
598 if (SYN_CAP_MULTIFINGER(priv
->capabilities
)) {
599 input_report_key(dev
, BTN_TOOL_DOUBLETAP
, num_fingers
== 2);
600 input_report_key(dev
, BTN_TOOL_TRIPLETAP
, num_fingers
== 3);
603 if (SYN_CAP_MIDDLE_BUTTON(priv
->capabilities
))
604 input_report_key(dev
, BTN_MIDDLE
, hw
.middle
);
606 if (SYN_CAP_FOUR_BUTTON(priv
->capabilities
)) {
607 input_report_key(dev
, BTN_FORWARD
, hw
.up
);
608 input_report_key(dev
, BTN_BACK
, hw
.down
);
611 for (i
= 0; i
< SYN_CAP_MULTI_BUTTON_NO(priv
->ext_cap
); i
++)
612 input_report_key(dev
, BTN_0
+ i
, hw
.ext_buttons
& (1 << i
));
617 static int synaptics_validate_byte(unsigned char packet
[], int idx
, unsigned char pkt_type
)
619 static const unsigned char newabs_mask
[] = { 0xC8, 0x00, 0x00, 0xC8, 0x00 };
620 static const unsigned char newabs_rel_mask
[] = { 0xC0, 0x00, 0x00, 0xC0, 0x00 };
621 static const unsigned char newabs_rslt
[] = { 0x80, 0x00, 0x00, 0xC0, 0x00 };
622 static const unsigned char oldabs_mask
[] = { 0xC0, 0x60, 0x00, 0xC0, 0x60 };
623 static const unsigned char oldabs_rslt
[] = { 0xC0, 0x00, 0x00, 0x80, 0x00 };
625 if (idx
< 0 || idx
> 4)
631 case SYN_NEWABS_RELAXED
:
632 return (packet
[idx
] & newabs_rel_mask
[idx
]) == newabs_rslt
[idx
];
634 case SYN_NEWABS_STRICT
:
635 return (packet
[idx
] & newabs_mask
[idx
]) == newabs_rslt
[idx
];
638 return (packet
[idx
] & oldabs_mask
[idx
]) == oldabs_rslt
[idx
];
641 printk(KERN_ERR
"synaptics: unknown packet type %d\n", pkt_type
);
646 static unsigned char synaptics_detect_pkt_type(struct psmouse
*psmouse
)
650 for (i
= 0; i
< 5; i
++)
651 if (!synaptics_validate_byte(psmouse
->packet
, i
, SYN_NEWABS_STRICT
)) {
652 printk(KERN_INFO
"synaptics: using relaxed packet validation\n");
653 return SYN_NEWABS_RELAXED
;
656 return SYN_NEWABS_STRICT
;
659 static psmouse_ret_t
synaptics_process_byte(struct psmouse
*psmouse
)
661 struct synaptics_data
*priv
= psmouse
->private;
663 if (psmouse
->pktcnt
>= 6) { /* Full packet received */
664 if (unlikely(priv
->pkt_type
== SYN_NEWABS
))
665 priv
->pkt_type
= synaptics_detect_pkt_type(psmouse
);
667 if (SYN_CAP_PASS_THROUGH(priv
->capabilities
) &&
668 synaptics_is_pt_packet(psmouse
->packet
)) {
670 synaptics_pass_pt_packet(priv
->pt_port
, psmouse
->packet
);
672 synaptics_process_packet(psmouse
);
674 return PSMOUSE_FULL_PACKET
;
677 return synaptics_validate_byte(psmouse
->packet
, psmouse
->pktcnt
- 1, priv
->pkt_type
) ?
678 PSMOUSE_GOOD_DATA
: PSMOUSE_BAD_DATA
;
681 /*****************************************************************************
682 * Driver initialization/cleanup functions
683 ****************************************************************************/
684 static void set_input_params(struct input_dev
*dev
, struct synaptics_data
*priv
)
688 __set_bit(INPUT_PROP_POINTER
, dev
->propbit
);
690 __set_bit(EV_ABS
, dev
->evbit
);
691 input_set_abs_params(dev
, ABS_X
,
692 XMIN_NOMINAL
, priv
->x_max
?: XMAX_NOMINAL
, 0, 0);
693 input_set_abs_params(dev
, ABS_Y
,
694 YMIN_NOMINAL
, priv
->y_max
?: YMAX_NOMINAL
, 0, 0);
695 input_set_abs_params(dev
, ABS_PRESSURE
, 0, 255, 0, 0);
697 if (SYN_CAP_ADV_GESTURE(priv
->ext_cap_0c
)) {
698 __set_bit(INPUT_PROP_SEMI_MT
, dev
->propbit
);
699 input_mt_init_slots(dev
, 2);
700 input_set_abs_params(dev
, ABS_MT_POSITION_X
, XMIN_NOMINAL
,
701 priv
->x_max
?: XMAX_NOMINAL
, 0, 0);
702 input_set_abs_params(dev
, ABS_MT_POSITION_Y
, YMIN_NOMINAL
,
703 priv
->y_max
?: YMAX_NOMINAL
, 0, 0);
706 if (SYN_CAP_PALMDETECT(priv
->capabilities
))
707 input_set_abs_params(dev
, ABS_TOOL_WIDTH
, 0, 15, 0, 0);
709 __set_bit(EV_KEY
, dev
->evbit
);
710 __set_bit(BTN_TOUCH
, dev
->keybit
);
711 __set_bit(BTN_TOOL_FINGER
, dev
->keybit
);
712 __set_bit(BTN_LEFT
, dev
->keybit
);
713 __set_bit(BTN_RIGHT
, dev
->keybit
);
715 if (SYN_CAP_MULTIFINGER(priv
->capabilities
)) {
716 __set_bit(BTN_TOOL_DOUBLETAP
, dev
->keybit
);
717 __set_bit(BTN_TOOL_TRIPLETAP
, dev
->keybit
);
720 if (SYN_CAP_MIDDLE_BUTTON(priv
->capabilities
))
721 __set_bit(BTN_MIDDLE
, dev
->keybit
);
723 if (SYN_CAP_FOUR_BUTTON(priv
->capabilities
) ||
724 SYN_CAP_MIDDLE_BUTTON(priv
->capabilities
)) {
725 __set_bit(BTN_FORWARD
, dev
->keybit
);
726 __set_bit(BTN_BACK
, dev
->keybit
);
729 for (i
= 0; i
< SYN_CAP_MULTI_BUTTON_NO(priv
->ext_cap
); i
++)
730 __set_bit(BTN_0
+ i
, dev
->keybit
);
732 __clear_bit(EV_REL
, dev
->evbit
);
733 __clear_bit(REL_X
, dev
->relbit
);
734 __clear_bit(REL_Y
, dev
->relbit
);
736 input_abs_set_res(dev
, ABS_X
, priv
->x_res
);
737 input_abs_set_res(dev
, ABS_Y
, priv
->y_res
);
739 if (SYN_CAP_CLICKPAD(priv
->ext_cap_0c
)) {
740 __set_bit(INPUT_PROP_BUTTONPAD
, dev
->propbit
);
741 /* Clickpads report only left button */
742 __clear_bit(BTN_RIGHT
, dev
->keybit
);
743 __clear_bit(BTN_MIDDLE
, dev
->keybit
);
747 static void synaptics_disconnect(struct psmouse
*psmouse
)
749 synaptics_reset(psmouse
);
750 kfree(psmouse
->private);
751 psmouse
->private = NULL
;
754 static int synaptics_reconnect(struct psmouse
*psmouse
)
756 struct synaptics_data
*priv
= psmouse
->private;
757 struct synaptics_data old_priv
= *priv
;
759 psmouse_reset(psmouse
);
761 if (synaptics_detect(psmouse
, 0))
764 if (synaptics_query_hardware(psmouse
)) {
765 printk(KERN_ERR
"Unable to query Synaptics hardware.\n");
769 if (old_priv
.identity
!= priv
->identity
||
770 old_priv
.model_id
!= priv
->model_id
||
771 old_priv
.capabilities
!= priv
->capabilities
||
772 old_priv
.ext_cap
!= priv
->ext_cap
)
775 if (synaptics_set_absolute_mode(psmouse
)) {
776 printk(KERN_ERR
"Unable to initialize Synaptics hardware.\n");
780 if (synaptics_set_advanced_gesture_mode(psmouse
)) {
781 printk(KERN_ERR
"Advanced gesture mode reconnect failed.\n");
788 static bool impaired_toshiba_kbc
;
790 static const struct dmi_system_id __initconst toshiba_dmi_table
[] = {
791 #if defined(CONFIG_DMI) && defined(CONFIG_X86)
793 /* Toshiba Satellite */
795 DMI_MATCH(DMI_SYS_VENDOR
, "TOSHIBA"),
796 DMI_MATCH(DMI_PRODUCT_NAME
, "Satellite"),
800 /* Toshiba Dynabook */
802 DMI_MATCH(DMI_SYS_VENDOR
, "TOSHIBA"),
803 DMI_MATCH(DMI_PRODUCT_NAME
, "dynabook"),
807 /* Toshiba Portege M300 */
809 DMI_MATCH(DMI_SYS_VENDOR
, "TOSHIBA"),
810 DMI_MATCH(DMI_PRODUCT_NAME
, "PORTEGE M300"),
815 /* Toshiba Portege M300 */
817 DMI_MATCH(DMI_SYS_VENDOR
, "TOSHIBA"),
818 DMI_MATCH(DMI_PRODUCT_NAME
, "Portable PC"),
819 DMI_MATCH(DMI_PRODUCT_VERSION
, "Version 1.0"),
827 static bool broken_olpc_ec
;
829 static const struct dmi_system_id __initconst olpc_dmi_table
[] = {
830 #if defined(CONFIG_DMI) && defined(CONFIG_OLPC)
832 /* OLPC XO-1 or XO-1.5 */
834 DMI_MATCH(DMI_SYS_VENDOR
, "OLPC"),
835 DMI_MATCH(DMI_PRODUCT_NAME
, "XO"),
842 void __init
synaptics_module_init(void)
844 impaired_toshiba_kbc
= dmi_check_system(toshiba_dmi_table
);
845 broken_olpc_ec
= dmi_check_system(olpc_dmi_table
);
848 int synaptics_init(struct psmouse
*psmouse
)
850 struct synaptics_data
*priv
;
853 * The OLPC XO has issues with Synaptics' absolute mode; similarly to
854 * the HGPK, it quickly degrades and the hardware becomes jumpy and
855 * overly sensitive. Not only that, but the constant packet spew
856 * (even at a lowered 40pps rate) overloads the EC such that key
857 * presses on the keyboard are missed. Given all of that, don't
858 * even attempt to use Synaptics mode. Relative mode seems to work
861 if (broken_olpc_ec
) {
862 printk(KERN_INFO
"synaptics: OLPC XO detected, not enabling Synaptics protocol.\n");
866 psmouse
->private = priv
= kzalloc(sizeof(struct synaptics_data
), GFP_KERNEL
);
870 psmouse_reset(psmouse
);
872 if (synaptics_query_hardware(psmouse
)) {
873 printk(KERN_ERR
"Unable to query Synaptics hardware.\n");
877 if (synaptics_set_absolute_mode(psmouse
)) {
878 printk(KERN_ERR
"Unable to initialize Synaptics hardware.\n");
882 if (synaptics_set_advanced_gesture_mode(psmouse
)) {
883 printk(KERN_ERR
"Advanced gesture mode init failed.\n");
887 priv
->pkt_type
= SYN_MODEL_NEWABS(priv
->model_id
) ? SYN_NEWABS
: SYN_OLDABS
;
889 printk(KERN_INFO
"Synaptics Touchpad, model: %ld, fw: %ld.%ld, id: %#lx, caps: %#lx/%#lx/%#lx\n",
890 SYN_ID_MODEL(priv
->identity
),
891 SYN_ID_MAJOR(priv
->identity
), SYN_ID_MINOR(priv
->identity
),
892 priv
->model_id
, priv
->capabilities
, priv
->ext_cap
, priv
->ext_cap_0c
);
894 set_input_params(psmouse
->dev
, priv
);
897 * Encode touchpad model so that it can be used to set
898 * input device->id.version and be visible to userspace.
899 * Because version is __u16 we have to drop something.
900 * Hardware info bits seem to be good candidates as they
901 * are documented to be for Synaptics corp. internal use.
903 psmouse
->model
= ((priv
->model_id
& 0x00ff0000) >> 8) |
904 (priv
->model_id
& 0x000000ff);
906 psmouse
->protocol_handler
= synaptics_process_byte
;
907 psmouse
->set_rate
= synaptics_set_rate
;
908 psmouse
->disconnect
= synaptics_disconnect
;
909 psmouse
->reconnect
= synaptics_reconnect
;
910 psmouse
->cleanup
= synaptics_reset
;
911 psmouse
->pktsize
= 6;
912 /* Synaptics can usually stay in sync without extra help */
913 psmouse
->resync_time
= 0;
915 if (SYN_CAP_PASS_THROUGH(priv
->capabilities
))
916 synaptics_pt_create(psmouse
);
919 * Toshiba's KBC seems to have trouble handling data from
920 * Synaptics at full rate. Switch to a lower rate (roughly
921 * the same rate as a standard PS/2 mouse).
923 if (psmouse
->rate
>= 80 && impaired_toshiba_kbc
) {
924 printk(KERN_INFO
"synaptics: Toshiba %s detected, limiting rate to 40pps.\n",
925 dmi_get_system_info(DMI_PRODUCT_NAME
));
936 bool synaptics_supported(void)
941 #else /* CONFIG_MOUSE_PS2_SYNAPTICS */
943 void __init
synaptics_module_init(void)
947 int synaptics_init(struct psmouse
*psmouse
)
952 bool synaptics_supported(void)
957 #endif /* CONFIG_MOUSE_PS2_SYNAPTICS */