summaryrefslogtreecommitdiff
path: root/usr/src/dkms_source_tree/synaptics.c
diff options
context:
space:
mode:
authorHenrik Rydberg <rydberg@euromail.se>2010-11-16 14:04:09 +0100
committerHenrik Rydberg <rydberg@euromail.se>2010-11-16 14:04:09 +0100
commite56d270d5dd472219864c1735d8eee16d6f1ccdb (patch)
treea486aeada19c76357bc9042364fcdb1ef04c0336 /usr/src/dkms_source_tree/synaptics.c
Add psmouse driver from maverick (Ubuntu-2.6.35-23.36).
Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
Diffstat (limited to 'usr/src/dkms_source_tree/synaptics.c')
-rw-r--r--usr/src/dkms_source_tree/synaptics.c863
1 files changed, 863 insertions, 0 deletions
diff --git a/usr/src/dkms_source_tree/synaptics.c b/usr/src/dkms_source_tree/synaptics.c
new file mode 100644
index 0000000..ae9891c
--- /dev/null
+++ b/usr/src/dkms_source_tree/synaptics.c
@@ -0,0 +1,863 @@
1/*
2 * Synaptics TouchPad PS/2 mouse driver
3 *
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.
7 *
8 * 2003 Peter Osterlund <petero2@telia.com>
9 * Ported to 2.5 input device infrastructure.
10 *
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)
14 *
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)
18 *
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.
22 *
23 * Trademarks are the property of their respective owners.
24 */
25
26#include <linux/module.h>
27#include <linux/dmi.h>
28#include <linux/input.h>
29#include <linux/serio.h>
30#include <linux/libps2.h>
31#include <linux/slab.h>
32#include "psmouse.h"
33#include "synaptics.h"
34
35/*
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
40 * coordinates.
41 */
42#define XMIN_NOMINAL 1472
43#define XMAX_NOMINAL 5472
44#define YMIN_NOMINAL 1408
45#define YMAX_NOMINAL 4448
46
47
48/*****************************************************************************
49 * Stuff we need even when we do not want native Synaptics support
50 ****************************************************************************/
51
52/*
53 * Set the synaptics touchpad mode byte by special commands
54 */
55static int synaptics_mode_cmd(struct psmouse *psmouse, unsigned char mode)
56{
57 unsigned char param[1];
58
59 if (psmouse_sliced_command(psmouse, mode))
60 return -1;
61 param[0] = SYN_PS_SET_MODE2;
62 if (ps2_command(&psmouse->ps2dev, param, PSMOUSE_CMD_SETRATE))
63 return -1;
64 return 0;
65}
66
67int synaptics_detect(struct psmouse *psmouse, bool set_properties)
68{
69 struct ps2dev *ps2dev = &psmouse->ps2dev;
70 unsigned char param[4];
71
72 param[0] = 0;
73
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);
79
80 if (param[1] != 0x47)
81 return -ENODEV;
82
83 if (set_properties) {
84 psmouse->vendor = "Synaptics";
85 psmouse->name = "TouchPad";
86 }
87
88 return 0;
89}
90
91void synaptics_reset(struct psmouse *psmouse)
92{
93 /* reset touchpad back to relative mode, gestures enabled */
94 synaptics_mode_cmd(psmouse, 0);
95}
96
97#ifdef CONFIG_MOUSE_PS2_SYNAPTICS
98
99/*****************************************************************************
100 * Synaptics communications functions
101 ****************************************************************************/
102
103/*
104 * Send a command to the synpatics touchpad by special commands
105 */
106static int synaptics_send_cmd(struct psmouse *psmouse, unsigned char c, unsigned char *param)
107{
108 if (psmouse_sliced_command(psmouse, c))
109 return -1;
110 if (ps2_command(&psmouse->ps2dev, param, PSMOUSE_CMD_GETINFO))
111 return -1;
112 return 0;
113}
114
115/*
116 * Read the model-id bytes from the touchpad
117 * see also SYN_MODEL_* macros
118 */
119static int synaptics_model_id(struct psmouse *psmouse)
120{
121 struct synaptics_data *priv = psmouse->private;
122 unsigned char mi[3];
123
124 if (synaptics_send_cmd(psmouse, SYN_QUE_MODEL, mi))
125 return -1;
126 priv->model_id = (mi[0]<<16) | (mi[1]<<8) | mi[2];
127 return 0;
128}
129
130/*
131 * Read the capability-bits from the touchpad
132 * see also the SYN_CAP_* macros
133 */
134static int synaptics_capability(struct psmouse *psmouse)
135{
136 struct synaptics_data *priv = psmouse->private;
137 unsigned char cap[3];
138
139 if (synaptics_send_cmd(psmouse, SYN_QUE_CAPABILITIES, cap))
140 return -1;
141 priv->capabilities = (cap[0] << 16) | (cap[1] << 8) | cap[2];
142 priv->ext_cap = priv->ext_cap_0c = 0;
143
144 /*
145 * Older firmwares had submodel ID fixed to 0x47
146 */
147 if (SYN_ID_FULL(priv->identity) < 0x705 &&
148 SYN_CAP_SUBMODEL_ID(priv->capabilities) != 0x47) {
149 return -1;
150 }
151
152 /*
153 * Unless capExtended is set the rest of the flags should be ignored
154 */
155 if (!SYN_CAP_EXTENDED(priv->capabilities))
156 priv->capabilities = 0;
157
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");
162 } else {
163 priv->ext_cap = (cap[0] << 16) | (cap[1] << 8) | cap[2];
164
165 /*
166 * if nExtBtn is greater than 8 it should be considered
167 * invalid and treated as 0
168 */
169 if (SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap) > 8)
170 priv->ext_cap &= 0xff0fff;
171 }
172 }
173
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");
178 } else {
179 priv->ext_cap_0c = (cap[0] << 16) | (cap[1] << 8) | cap[2];
180 }
181 }
182
183 return 0;
184}
185
186/*
187 * Identify Touchpad
188 * See also the SYN_ID_* macros
189 */
190static int synaptics_identify(struct psmouse *psmouse)
191{
192 struct synaptics_data *priv = psmouse->private;
193 unsigned char id[3];
194
195 if (synaptics_send_cmd(psmouse, SYN_QUE_IDENTIFY, id))
196 return -1;
197 priv->identity = (id[0]<<16) | (id[1]<<8) | id[2];
198 if (SYN_ID_IS_SYNAPTICS(priv->identity))
199 return 0;
200 return -1;
201}
202
203/*
204 * Read touchpad resolution and maximum reported coordinates
205 * Resolution is left zero if touchpad does not support the query
206 */
207static int synaptics_resolution(struct psmouse *psmouse)
208{
209 struct synaptics_data *priv = psmouse->private;
210 unsigned char res[3];
211 unsigned char max[3];
212
213 if (SYN_ID_MAJOR(priv->identity) < 4)
214 return 0;
215
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 */
220 }
221 }
222
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");
228 } else {
229 priv->x_max = (max[0] << 5) | ((max[1] & 0x0f) << 1);
230 priv->y_max = (max[2] << 5) | ((max[1] & 0xf0) >> 3);
231 }
232 }
233
234 return 0;
235}
236
237static int synaptics_query_hardware(struct psmouse *psmouse)
238{
239 if (synaptics_identify(psmouse))
240 return -1;
241 if (synaptics_model_id(psmouse))
242 return -1;
243 if (synaptics_capability(psmouse))
244 return -1;
245 if (synaptics_resolution(psmouse))
246 return -1;
247
248 return 0;
249}
250
251static int synaptics_set_absolute_mode(struct psmouse *psmouse)
252{
253 struct synaptics_data *priv = psmouse->private;
254
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;
260
261 if (synaptics_mode_cmd(psmouse, priv->mode))
262 return -1;
263
264 return 0;
265}
266
267static void synaptics_set_rate(struct psmouse *psmouse, unsigned int rate)
268{
269 struct synaptics_data *priv = psmouse->private;
270
271 if (rate >= 80) {
272 priv->mode |= SYN_BIT_HIGH_RATE;
273 psmouse->rate = 80;
274 } else {
275 priv->mode &= ~SYN_BIT_HIGH_RATE;
276 psmouse->rate = 40;
277 }
278
279 synaptics_mode_cmd(psmouse, priv->mode);
280}
281
282/*****************************************************************************
283 * Synaptics pass-through PS/2 port support
284 ****************************************************************************/
285static int synaptics_pt_write(struct serio *serio, unsigned char c)
286{
287 struct psmouse *parent = serio_get_drvdata(serio->parent);
288 char rate_param = SYN_PS_CLIENT_CMD; /* indicates that we want pass-through port */
289
290 if (psmouse_sliced_command(parent, c))
291 return -1;
292 if (ps2_command(&parent->ps2dev, &rate_param, PSMOUSE_CMD_SETRATE))
293 return -1;
294 return 0;
295}
296
297static inline int synaptics_is_pt_packet(unsigned char *buf)
298{
299 return (buf[0] & 0xFC) == 0x84 && (buf[3] & 0xCC) == 0xC4;
300}
301
302static void synaptics_pass_pt_packet(struct serio *ptport, unsigned char *packet)
303{
304 struct psmouse *child = serio_get_drvdata(ptport);
305
306 if (child && child->state == PSMOUSE_ACTIVATED) {
307 serio_interrupt(ptport, packet[1], 0);
308 serio_interrupt(ptport, packet[4], 0);
309 serio_interrupt(ptport, packet[5], 0);
310 if (child->pktsize == 4)
311 serio_interrupt(ptport, packet[2], 0);
312 } else
313 serio_interrupt(ptport, packet[1], 0);
314}
315
316static void synaptics_pt_activate(struct psmouse *psmouse)
317{
318 struct serio *ptport = psmouse->ps2dev.serio->child;
319 struct psmouse *child = serio_get_drvdata(ptport);
320 struct synaptics_data *priv = psmouse->private;
321
322 /* adjust the touchpad to child's choice of protocol */
323 if (child) {
324 if (child->pktsize == 4)
325 priv->mode |= SYN_BIT_FOUR_BYTE_CLIENT;
326 else
327 priv->mode &= ~SYN_BIT_FOUR_BYTE_CLIENT;
328
329 if (synaptics_mode_cmd(psmouse, priv->mode))
330 printk(KERN_INFO "synaptics: failed to switch guest protocol\n");
331 }
332}
333
334static void synaptics_pt_create(struct psmouse *psmouse)
335{
336 struct serio *serio;
337
338 serio = kzalloc(sizeof(struct serio), GFP_KERNEL);
339 if (!serio) {
340 printk(KERN_ERR "synaptics: not enough memory to allocate pass-through port\n");
341 return;
342 }
343
344 serio->id.type = SERIO_PS_PSTHRU;
345 strlcpy(serio->name, "Synaptics pass-through", sizeof(serio->name));
346 strlcpy(serio->phys, "synaptics-pt/serio0", sizeof(serio->name));
347 serio->write = synaptics_pt_write;
348 serio->parent = psmouse->ps2dev.serio;
349
350 psmouse->pt_activate = synaptics_pt_activate;
351
352 printk(KERN_INFO "serio: %s port at %s\n", serio->name, psmouse->phys);
353 serio_register_port(serio);
354}
355
356/*****************************************************************************
357 * Functions to interpret the absolute mode packets
358 ****************************************************************************/
359
360/* left and right clickpad button ranges;
361 * the gap between them is interpreted as a middle-button click
362 */
363#define CLICKPAD_LEFT_BTN_X \
364 ((XMAX_NOMINAL - XMIN_NOMINAL) * 2 / 5 + XMIN_NOMINAL)
365#define CLICKPAD_RIGHT_BTN_X \
366 ((XMAX_NOMINAL - XMIN_NOMINAL) * 3 / 5 + XMIN_NOMINAL)
367
368/* handle clickpad events */
369static void clickpad_process_packet(struct synaptics_data *priv,
370 struct synaptics_hw_state *hw)
371{
372 /* clickpad mode reports Y range from 0 to YMAX_NOMINAL,
373 * where the area Y < YMIN_NOMINAL is used as click buttons
374 */
375 if (hw->y < YMIN_NOMINAL) {
376 /* button area */
377 hw->z = 0; /* don't move pointer */
378 /* clickpad reports only the middle button, and we need
379 * to fake left/right buttons depending on the touch position
380 */
381 if (hw->middle) { /* clicked? */
382 hw->middle = 0;
383 if (hw->x < CLICKPAD_LEFT_BTN_X)
384 hw->left = 1;
385 else if (hw->x > CLICKPAD_RIGHT_BTN_X)
386 hw->right = 1;
387 else
388 hw->middle = 1;
389 }
390 } else if (hw->middle) {
391 /* dragging */
392 hw->left = priv->prev_hw.left;
393 hw->right = priv->prev_hw.right;
394 hw->middle = priv->prev_hw.middle;
395 }
396 priv->prev_hw = *hw;
397}
398
399static void synaptics_parse_hw_state(unsigned char buf[], struct synaptics_data *priv, struct synaptics_hw_state *hw)
400{
401 memset(hw, 0, sizeof(struct synaptics_hw_state));
402
403 if (SYN_MODEL_NEWABS(priv->model_id)) {
404 hw->x = (((buf[3] & 0x10) << 8) |
405 ((buf[1] & 0x0f) << 8) |
406 buf[4]);
407 hw->y = (((buf[3] & 0x20) << 7) |
408 ((buf[1] & 0xf0) << 4) |
409 buf[5]);
410
411 hw->z = buf[2];
412 hw->w = (((buf[0] & 0x30) >> 2) |
413 ((buf[0] & 0x04) >> 1) |
414 ((buf[3] & 0x04) >> 2));
415
416 hw->left = (buf[0] & 0x01) ? 1 : 0;
417 hw->right = (buf[0] & 0x02) ? 1 : 0;
418
419 if (SYN_CAP_CLICKPAD(priv->ext_cap_0c)) {
420 /*
421 * Clickpad's button is transmitted as middle button,
422 * however, since it is primary button, we will report
423 * it as BTN_LEFT.
424 */
425 hw->left = ((buf[0] ^ buf[3]) & 0x01) ? 1 : 0;
426
427 } else if (SYN_CAP_MIDDLE_BUTTON(priv->capabilities)) {
428 hw->middle = ((buf[0] ^ buf[3]) & 0x01) ? 1 : 0;
429 if (hw->w == 2)
430 hw->scroll = (signed char)(buf[1]);
431 }
432
433 if (SYN_CAP_FOUR_BUTTON(priv->capabilities)) {
434 hw->up = ((buf[0] ^ buf[3]) & 0x01) ? 1 : 0;
435 hw->down = ((buf[0] ^ buf[3]) & 0x02) ? 1 : 0;
436 }
437
438 if (SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap) &&
439 ((buf[0] ^ buf[3]) & 0x02)) {
440 switch (SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap) & ~0x01) {
441 default:
442 /*
443 * if nExtBtn is greater than 8 it should be
444 * considered invalid and treated as 0
445 */
446 break;
447 case 8:
448 hw->ext_buttons |= ((buf[5] & 0x08)) ? 0x80 : 0;
449 hw->ext_buttons |= ((buf[4] & 0x08)) ? 0x40 : 0;
450 case 6:
451 hw->ext_buttons |= ((buf[5] & 0x04)) ? 0x20 : 0;
452 hw->ext_buttons |= ((buf[4] & 0x04)) ? 0x10 : 0;
453 case 4:
454 hw->ext_buttons |= ((buf[5] & 0x02)) ? 0x08 : 0;
455 hw->ext_buttons |= ((buf[4] & 0x02)) ? 0x04 : 0;
456 case 2:
457 hw->ext_buttons |= ((buf[5] & 0x01)) ? 0x02 : 0;
458 hw->ext_buttons |= ((buf[4] & 0x01)) ? 0x01 : 0;
459 }
460 }
461 } else {
462 hw->x = (((buf[1] & 0x1f) << 8) | buf[2]);
463 hw->y = (((buf[4] & 0x1f) << 8) | buf[5]);
464
465 hw->z = (((buf[0] & 0x30) << 2) | (buf[3] & 0x3F));
466 hw->w = (((buf[1] & 0x80) >> 4) | ((buf[0] & 0x04) >> 1));
467
468 hw->left = (buf[0] & 0x01) ? 1 : 0;
469 hw->right = (buf[0] & 0x02) ? 1 : 0;
470 }
471}
472
473/*
474 * called for each full received packet from the touchpad
475 */
476static void synaptics_process_packet(struct psmouse *psmouse)
477{
478 struct input_dev *dev = psmouse->dev;
479 struct synaptics_data *priv = psmouse->private;
480 struct synaptics_hw_state hw;
481 int num_fingers;
482 int finger_width;
483 int i;
484
485 synaptics_parse_hw_state(psmouse->packet, priv, &hw);
486
487 if (SYN_CAP_CLICKPAD(priv->ext_cap))
488 clickpad_process_packet(priv, &hw);
489
490 if (hw.scroll) {
491 priv->scroll += hw.scroll;
492
493 while (priv->scroll >= 4) {
494 input_report_key(dev, BTN_BACK, !hw.down);
495 input_sync(dev);
496 input_report_key(dev, BTN_BACK, hw.down);
497 input_sync(dev);
498 priv->scroll -= 4;
499 }
500 while (priv->scroll <= -4) {
501 input_report_key(dev, BTN_FORWARD, !hw.up);
502 input_sync(dev);
503 input_report_key(dev, BTN_FORWARD, hw.up);
504 input_sync(dev);
505 priv->scroll += 4;
506 }
507 return;
508 }
509
510 if (hw.z > 0) {
511 num_fingers = 1;
512 finger_width = 5;
513 if (SYN_CAP_EXTENDED(priv->capabilities)) {
514 switch (hw.w) {
515 case 0 ... 1:
516 if (SYN_CAP_MULTIFINGER(priv->capabilities))
517 num_fingers = hw.w + 2;
518 break;
519 case 2:
520 if (SYN_MODEL_PEN(priv->model_id))
521 ; /* Nothing, treat a pen as a single finger */
522 break;
523 case 4 ... 15:
524 if (SYN_CAP_PALMDETECT(priv->capabilities))
525 finger_width = hw.w;
526 break;
527 }
528 }
529 } else {
530 num_fingers = 0;
531 finger_width = 0;
532 }
533
534 /* Post events
535 * BTN_TOUCH has to be first as mousedev relies on it when doing
536 * absolute -> relative conversion
537 */
538 if (hw.z > 30) input_report_key(dev, BTN_TOUCH, 1);
539 if (hw.z < 25) input_report_key(dev, BTN_TOUCH, 0);
540
541 if (hw.z > 0) {
542 input_report_abs(dev, ABS_X, hw.x);
543 input_report_abs(dev, ABS_Y, YMAX_NOMINAL + YMIN_NOMINAL - hw.y);
544 }
545 input_report_abs(dev, ABS_PRESSURE, hw.z);
546
547 input_report_abs(dev, ABS_TOOL_WIDTH, finger_width);
548 input_report_key(dev, BTN_TOOL_FINGER, num_fingers == 1);
549 input_report_key(dev, BTN_LEFT, hw.left);
550 input_report_key(dev, BTN_RIGHT, hw.right);
551
552 if (SYN_CAP_MULTIFINGER(priv->capabilities)) {
553 input_report_key(dev, BTN_TOOL_DOUBLETAP, num_fingers == 2);
554 input_report_key(dev, BTN_TOOL_TRIPLETAP, num_fingers == 3);
555 }
556
557 if (SYN_CAP_MIDDLE_BUTTON(priv->capabilities))
558 input_report_key(dev, BTN_MIDDLE, hw.middle);
559
560 if (SYN_CAP_FOUR_BUTTON(priv->capabilities)) {
561 input_report_key(dev, BTN_FORWARD, hw.up);
562 input_report_key(dev, BTN_BACK, hw.down);
563 }
564
565 for (i = 0; i < SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap); i++)
566 input_report_key(dev, BTN_0 + i, hw.ext_buttons & (1 << i));
567
568 input_sync(dev);
569}
570
571static int synaptics_validate_byte(unsigned char packet[], int idx, unsigned char pkt_type)
572{
573 static const unsigned char newabs_mask[] = { 0xC8, 0x00, 0x00, 0xC8, 0x00 };
574 static const unsigned char newabs_rel_mask[] = { 0xC0, 0x00, 0x00, 0xC0, 0x00 };
575 static const unsigned char newabs_rslt[] = { 0x80, 0x00, 0x00, 0xC0, 0x00 };
576 static const unsigned char oldabs_mask[] = { 0xC0, 0x60, 0x00, 0xC0, 0x60 };
577 static const unsigned char oldabs_rslt[] = { 0xC0, 0x00, 0x00, 0x80, 0x00 };
578
579 if (idx < 0 || idx > 4)
580 return 0;
581
582 switch (pkt_type) {
583
584 case SYN_NEWABS:
585 case SYN_NEWABS_RELAXED:
586 return (packet[idx] & newabs_rel_mask[idx]) == newabs_rslt[idx];
587
588 case SYN_NEWABS_STRICT:
589 return (packet[idx] & newabs_mask[idx]) == newabs_rslt[idx];
590
591 case SYN_OLDABS:
592 return (packet[idx] & oldabs_mask[idx]) == oldabs_rslt[idx];
593
594 default:
595 printk(KERN_ERR "synaptics: unknown packet type %d\n", pkt_type);
596 return 0;
597 }
598}
599
600static unsigned char synaptics_detect_pkt_type(struct psmouse *psmouse)
601{
602 int i;
603
604 for (i = 0; i < 5; i++)
605 if (!synaptics_validate_byte(psmouse->packet, i, SYN_NEWABS_STRICT)) {
606 printk(KERN_INFO "synaptics: using relaxed packet validation\n");
607 return SYN_NEWABS_RELAXED;
608 }
609
610 return SYN_NEWABS_STRICT;
611}
612
613static psmouse_ret_t synaptics_process_byte(struct psmouse *psmouse)
614{
615 struct synaptics_data *priv = psmouse->private;
616
617 if (psmouse->pktcnt >= 6) { /* Full packet received */
618 if (unlikely(priv->pkt_type == SYN_NEWABS))
619 priv->pkt_type = synaptics_detect_pkt_type(psmouse);
620
621 if (SYN_CAP_PASS_THROUGH(priv->capabilities) && synaptics_is_pt_packet(psmouse->packet)) {
622 if (psmouse->ps2dev.serio->child)
623 synaptics_pass_pt_packet(psmouse->ps2dev.serio->child, psmouse->packet);
624 } else
625 synaptics_process_packet(psmouse);
626
627 return PSMOUSE_FULL_PACKET;
628 }
629
630 return synaptics_validate_byte(psmouse->packet, psmouse->pktcnt - 1, priv->pkt_type) ?
631 PSMOUSE_GOOD_DATA : PSMOUSE_BAD_DATA;
632}
633
634/*****************************************************************************
635 * Driver initialization/cleanup functions
636 ****************************************************************************/
637static void set_input_params(struct input_dev *dev, struct synaptics_data *priv)
638{
639 int i;
640
641 __set_bit(EV_ABS, dev->evbit);
642 input_set_abs_params(dev, ABS_X,
643 XMIN_NOMINAL, priv->x_max ?: XMAX_NOMINAL, 0, 0);
644 input_set_abs_params(dev, ABS_Y,
645 YMIN_NOMINAL, priv->y_max ?: YMAX_NOMINAL, 0, 0);
646 input_set_abs_params(dev, ABS_PRESSURE, 0, 255, 0, 0);
647 __set_bit(ABS_TOOL_WIDTH, dev->absbit);
648
649 __set_bit(EV_KEY, dev->evbit);
650 __set_bit(BTN_TOUCH, dev->keybit);
651 __set_bit(BTN_TOOL_FINGER, dev->keybit);
652 __set_bit(BTN_LEFT, dev->keybit);
653 __set_bit(BTN_RIGHT, dev->keybit);
654
655 if (SYN_CAP_MULTIFINGER(priv->capabilities)) {
656 __set_bit(BTN_TOOL_DOUBLETAP, dev->keybit);
657 __set_bit(BTN_TOOL_TRIPLETAP, dev->keybit);
658 }
659
660 if (SYN_CAP_MIDDLE_BUTTON(priv->capabilities))
661 __set_bit(BTN_MIDDLE, dev->keybit);
662
663 if (SYN_CAP_FOUR_BUTTON(priv->capabilities) ||
664 SYN_CAP_MIDDLE_BUTTON(priv->capabilities)) {
665 __set_bit(BTN_FORWARD, dev->keybit);
666 __set_bit(BTN_BACK, dev->keybit);
667 }
668
669 for (i = 0; i < SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap); i++)
670 __set_bit(BTN_0 + i, dev->keybit);
671
672 __clear_bit(EV_REL, dev->evbit);
673 __clear_bit(REL_X, dev->relbit);
674 __clear_bit(REL_Y, dev->relbit);
675
676 dev->absres[ABS_X] = priv->x_res;
677 dev->absres[ABS_Y] = priv->y_res;
678
679 if (SYN_CAP_CLICKPAD(priv->ext_cap_0c)) {
680 /* Clickpads report only left button */
681 __clear_bit(BTN_RIGHT, dev->keybit);
682 __clear_bit(BTN_MIDDLE, dev->keybit);
683 }
684}
685
686static void synaptics_disconnect(struct psmouse *psmouse)
687{
688 synaptics_reset(psmouse);
689 kfree(psmouse->private);
690 psmouse->private = NULL;
691}
692
693static int synaptics_reconnect(struct psmouse *psmouse)
694{
695 struct synaptics_data *priv = psmouse->private;
696 struct synaptics_data old_priv = *priv;
697
698 psmouse_reset(psmouse);
699
700 if (synaptics_detect(psmouse, 0))
701 return -1;
702
703 if (synaptics_query_hardware(psmouse)) {
704 printk(KERN_ERR "Unable to query Synaptics hardware.\n");
705 return -1;
706 }
707
708 if (old_priv.identity != priv->identity ||
709 old_priv.model_id != priv->model_id ||
710 old_priv.capabilities != priv->capabilities ||
711 old_priv.ext_cap != priv->ext_cap)
712 return -1;
713
714 if (synaptics_set_absolute_mode(psmouse)) {
715 printk(KERN_ERR "Unable to initialize Synaptics hardware.\n");
716 return -1;
717 }
718
719 return 0;
720}
721
722static bool impaired_toshiba_kbc;
723
724static const struct dmi_system_id __initconst toshiba_dmi_table[] = {
725#if defined(CONFIG_DMI) && defined(CONFIG_X86)
726 {
727 /* Toshiba Satellite */
728 .matches = {
729 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
730 DMI_MATCH(DMI_PRODUCT_NAME, "Satellite"),
731 },
732 },
733 {
734 /* Toshiba Dynabook */
735 .matches = {
736 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
737 DMI_MATCH(DMI_PRODUCT_NAME, "dynabook"),
738 },
739 },
740 {
741 /* Toshiba Portege M300 */
742 .matches = {
743 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
744 DMI_MATCH(DMI_PRODUCT_NAME, "PORTEGE M300"),
745 },
746
747 },
748 {
749 /* Toshiba Portege M300 */
750 .matches = {
751 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
752 DMI_MATCH(DMI_PRODUCT_NAME, "Portable PC"),
753 DMI_MATCH(DMI_PRODUCT_VERSION, "Version 1.0"),
754 },
755
756 },
757 { }
758#endif
759};
760
761void __init synaptics_module_init(void)
762{
763 impaired_toshiba_kbc = dmi_check_system(toshiba_dmi_table);
764}
765
766int synaptics_init(struct psmouse *psmouse)
767{
768 struct synaptics_data *priv;
769
770 psmouse->private = priv = kzalloc(sizeof(struct synaptics_data), GFP_KERNEL);
771 if (!priv)
772 return -1;
773
774 psmouse_reset(psmouse);
775
776 if (synaptics_query_hardware(psmouse)) {
777 printk(KERN_ERR "Unable to query Synaptics hardware.\n");
778 goto init_fail;
779 }
780
781 if (synaptics_set_absolute_mode(psmouse)) {
782 printk(KERN_ERR "Unable to initialize Synaptics hardware.\n");
783 goto init_fail;
784 }
785
786 priv->pkt_type = SYN_MODEL_NEWABS(priv->model_id) ? SYN_NEWABS : SYN_OLDABS;
787
788 printk(KERN_INFO "Synaptics Touchpad, model: %ld, fw: %ld.%ld, id: %#lx, caps: %#lx/%#lx/%#lx\n",
789 SYN_ID_MODEL(priv->identity),
790 SYN_ID_MAJOR(priv->identity), SYN_ID_MINOR(priv->identity),
791 priv->model_id, priv->capabilities, priv->ext_cap, priv->ext_cap_0c);
792
793 if (SYN_CAP_CLICKPAD(priv->ext_cap)) {
794 printk(KERN_INFO "Synaptics: Clickpad mode enabled\n");
795 /* force to enable the middle button */
796 priv->capabilities |= (1 << 18);
797 }
798
799 set_input_params(psmouse->dev, priv);
800
801 /*
802 * Encode touchpad model so that it can be used to set
803 * input device->id.version and be visible to userspace.
804 * Because version is __u16 we have to drop something.
805 * Hardware info bits seem to be good candidates as they
806 * are documented to be for Synaptics corp. internal use.
807 */
808 psmouse->model = ((priv->model_id & 0x00ff0000) >> 8) |
809 (priv->model_id & 0x000000ff);
810
811 psmouse->protocol_handler = synaptics_process_byte;
812 psmouse->set_rate = synaptics_set_rate;
813 psmouse->disconnect = synaptics_disconnect;
814 psmouse->reconnect = synaptics_reconnect;
815 psmouse->cleanup = synaptics_reset;
816 psmouse->pktsize = 6;
817 /* Synaptics can usually stay in sync without extra help */
818 psmouse->resync_time = 0;
819
820 if (SYN_CAP_PASS_THROUGH(priv->capabilities))
821 synaptics_pt_create(psmouse);
822
823 /*
824 * Toshiba's KBC seems to have trouble handling data from
825 * Synaptics as full rate, switch to lower rate which is roughly
826 * thye same as rate of standard PS/2 mouse.
827 */
828 if (psmouse->rate >= 80 && impaired_toshiba_kbc) {
829 printk(KERN_INFO "synaptics: Toshiba %s detected, limiting rate to 40pps.\n",
830 dmi_get_system_info(DMI_PRODUCT_NAME));
831 psmouse->rate = 40;
832 }
833
834 return 0;
835
836 init_fail:
837 kfree(priv);
838 return -1;
839}
840
841bool synaptics_supported(void)
842{
843 return true;
844}
845
846#else /* CONFIG_MOUSE_PS2_SYNAPTICS */
847
848void __init synaptics_module_init(void)
849{
850}
851
852int synaptics_init(struct psmouse *psmouse)
853{
854 return -ENOSYS;
855}
856
857bool synaptics_supported(void)
858{
859 return false;
860}
861
862#endif /* CONFIG_MOUSE_PS2_SYNAPTICS */
863