IRQ: Typedef the IRQ handler function type
[deliverable/linux.git] / drivers / input / mouse / logips2pp.c
CommitLineData
1da177e4
LT
1/*
2 * Logitech PS/2++ mouse driver
3 *
4 * Copyright (c) 1999-2003 Vojtech Pavlik <vojtech@suse.cz>
5 * Copyright (c) 2003 Eric Wong <eric@yhbt.net>
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License version 2 as published by
9 * the Free Software Foundation.
10 */
11
12#include <linux/input.h>
13#include <linux/serio.h>
14#include <linux/libps2.h>
15#include "psmouse.h"
16#include "logips2pp.h"
17
18/* Logitech mouse types */
19#define PS2PP_KIND_WHEEL 1
20#define PS2PP_KIND_MX 2
21#define PS2PP_KIND_TP3 3
4f8b05ef 22#define PS2PP_KIND_TRACKMAN 4
1da177e4
LT
23
24/* Logitech mouse features */
25#define PS2PP_WHEEL 0x01
26#define PS2PP_HWHEEL 0x02
27#define PS2PP_SIDE_BTN 0x04
28#define PS2PP_EXTRA_BTN 0x08
29#define PS2PP_TASK_BTN 0x10
30#define PS2PP_NAV_BTN 0x20
31
32struct ps2pp_info {
e3882bb5
HD
33 u8 model;
34 u8 kind;
35 u16 features;
1da177e4
LT
36};
37
38/*
39 * Process a PS2++ or PS2T++ packet.
40 */
41
42static psmouse_ret_t ps2pp_process_byte(struct psmouse *psmouse, struct pt_regs *regs)
43{
2e5b636b 44 struct input_dev *dev = psmouse->dev;
1da177e4
LT
45 unsigned char *packet = psmouse->packet;
46
47 if (psmouse->pktcnt < 3)
48 return PSMOUSE_GOOD_DATA;
49
50/*
51 * Full packet accumulated, process it
52 */
53
54 input_regs(dev, regs);
55
56 if ((packet[0] & 0x48) == 0x48 && (packet[1] & 0x02) == 0x02) {
57
58 /* Logitech extended packet */
59 switch ((packet[1] >> 4) | (packet[0] & 0x30)) {
60
61 case 0x0d: /* Mouse extra info */
62
63 input_report_rel(dev, packet[2] & 0x80 ? REL_HWHEEL : REL_WHEEL,
64 (int) (packet[2] & 8) - (int) (packet[2] & 7));
65 input_report_key(dev, BTN_SIDE, (packet[2] >> 4) & 1);
66 input_report_key(dev, BTN_EXTRA, (packet[2] >> 5) & 1);
67
68 break;
69
70 case 0x0e: /* buttons 4, 5, 6, 7, 8, 9, 10 info */
71
72 input_report_key(dev, BTN_SIDE, (packet[2]) & 1);
73 input_report_key(dev, BTN_EXTRA, (packet[2] >> 1) & 1);
74 input_report_key(dev, BTN_BACK, (packet[2] >> 3) & 1);
75 input_report_key(dev, BTN_FORWARD, (packet[2] >> 4) & 1);
76 input_report_key(dev, BTN_TASK, (packet[2] >> 2) & 1);
77
78 break;
79
80 case 0x0f: /* TouchPad extra info */
81
82 input_report_rel(dev, packet[2] & 0x08 ? REL_HWHEEL : REL_WHEEL,
83 (int) ((packet[2] >> 4) & 8) - (int) ((packet[2] >> 4) & 7));
84 packet[0] = packet[2] | 0x08;
85 break;
86
87#ifdef DEBUG
88 default:
89 printk(KERN_WARNING "psmouse.c: Received PS2++ packet #%x, but don't know how to handle.\n",
90 (packet[1] >> 4) | (packet[0] & 0x30));
91#endif
92 }
93 } else {
94 /* Standard PS/2 motion data */
95 input_report_rel(dev, REL_X, packet[1] ? (int) packet[1] - (int) ((packet[0] << 4) & 0x100) : 0);
96 input_report_rel(dev, REL_Y, packet[2] ? (int) ((packet[0] << 3) & 0x100) - (int) packet[2] : 0);
97 }
98
99 input_report_key(dev, BTN_LEFT, packet[0] & 1);
100 input_report_key(dev, BTN_MIDDLE, (packet[0] >> 2) & 1);
101 input_report_key(dev, BTN_RIGHT, (packet[0] >> 1) & 1);
102
103 input_sync(dev);
104
105 return PSMOUSE_FULL_PACKET;
106
107}
108
109/*
110 * ps2pp_cmd() sends a PS2++ command, sliced into two bit
111 * pieces through the SETRES command. This is needed to send extended
112 * commands to mice on notebooks that try to understand the PS/2 protocol
113 * Ugly.
114 */
115
116static int ps2pp_cmd(struct psmouse *psmouse, unsigned char *param, unsigned char command)
117{
118 if (psmouse_sliced_command(psmouse, command))
119 return -1;
120
f0d5c6f4 121 if (ps2_command(&psmouse->ps2dev, param, PSMOUSE_CMD_POLL | 0x0300))
1da177e4
LT
122 return -1;
123
124 return 0;
125}
126
127/*
128 * SmartScroll / CruiseControl for some newer Logitech mice Defaults to
129 * enabled if we do nothing to it. Of course I put this in because I want it
130 * disabled :P
131 * 1 - enabled (if previously disabled, also default)
132 * 0 - disabled
133 */
134
135static void ps2pp_set_smartscroll(struct psmouse *psmouse, unsigned int smartscroll)
136{
137 struct ps2dev *ps2dev = &psmouse->ps2dev;
138 unsigned char param[4];
139
140 if (smartscroll > 1)
141 smartscroll = 1;
142
143 ps2pp_cmd(psmouse, param, 0x32);
144
145 param[0] = 0;
146 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES);
147 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES);
148 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES);
149
150 param[0] = smartscroll;
151 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES);
152}
153
cfe9e888 154static ssize_t ps2pp_attr_show_smartscroll(struct psmouse *psmouse, void *data, char *buf)
1da177e4
LT
155{
156 return sprintf(buf, "%d\n", psmouse->smartscroll ? 1 : 0);
157}
158
cfe9e888 159static ssize_t ps2pp_attr_set_smartscroll(struct psmouse *psmouse, void *data, const char *buf, size_t count)
1da177e4
LT
160{
161 unsigned long value;
162 char *rest;
163
164 value = simple_strtoul(buf, &rest, 10);
165 if (*rest || value > 1)
166 return -EINVAL;
167
168 ps2pp_set_smartscroll(psmouse, value);
169 psmouse->smartscroll = value;
170 return count;
171}
172
cfe9e888
DT
173PSMOUSE_DEFINE_ATTR(smartscroll, S_IWUSR | S_IRUGO, NULL,
174 ps2pp_attr_show_smartscroll, ps2pp_attr_set_smartscroll);
1da177e4
LT
175
176/*
177 * Support 800 dpi resolution _only_ if the user wants it (there are good
178 * reasons to not use it even if the mouse supports it, and of course there are
179 * also good reasons to use it, let the user decide).
180 */
181
182static void ps2pp_set_resolution(struct psmouse *psmouse, unsigned int resolution)
183{
184 if (resolution > 400) {
185 struct ps2dev *ps2dev = &psmouse->ps2dev;
186 unsigned char param = 3;
187
188 ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11);
189 ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11);
190 ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11);
191 ps2_command(ps2dev, &param, PSMOUSE_CMD_SETRES);
192 psmouse->resolution = 800;
193 } else
194 psmouse_set_resolution(psmouse, resolution);
195}
196
197static void ps2pp_disconnect(struct psmouse *psmouse)
198{
cfe9e888 199 device_remove_file(&psmouse->ps2dev.serio->dev, &psmouse_attr_smartscroll.dattr);
1da177e4
LT
200}
201
e3882bb5 202static const struct ps2pp_info *get_model_info(unsigned char model)
1da177e4 203{
e3882bb5 204 static const struct ps2pp_info ps2pp_list[] = {
1da177e4
LT
205 { 12, 0, PS2PP_SIDE_BTN},
206 { 13, 0, 0 },
207 { 15, PS2PP_KIND_MX, /* MX1000 */
208 PS2PP_WHEEL | PS2PP_SIDE_BTN | PS2PP_TASK_BTN |
209 PS2PP_EXTRA_BTN | PS2PP_NAV_BTN | PS2PP_HWHEEL },
210 { 40, 0, PS2PP_SIDE_BTN },
211 { 41, 0, PS2PP_SIDE_BTN },
212 { 42, 0, PS2PP_SIDE_BTN },
213 { 43, 0, PS2PP_SIDE_BTN },
214 { 50, 0, 0 },
215 { 51, 0, 0 },
216 { 52, PS2PP_KIND_WHEEL, PS2PP_SIDE_BTN | PS2PP_WHEEL },
217 { 53, PS2PP_KIND_WHEEL, PS2PP_WHEEL },
e3882bb5 218 { 56, PS2PP_KIND_WHEEL, PS2PP_SIDE_BTN | PS2PP_WHEEL }, /* Cordless MouseMan Wheel */
1da177e4
LT
219 { 61, PS2PP_KIND_MX, /* MX700 */
220 PS2PP_WHEEL | PS2PP_SIDE_BTN | PS2PP_TASK_BTN |
221 PS2PP_EXTRA_BTN | PS2PP_NAV_BTN },
14a48b44
MM
222 { 66, PS2PP_KIND_MX, /* MX3100 reciver */
223 PS2PP_WHEEL | PS2PP_SIDE_BTN | PS2PP_TASK_BTN |
224 PS2PP_EXTRA_BTN | PS2PP_NAV_BTN | PS2PP_HWHEEL },
1da177e4
LT
225 { 73, 0, PS2PP_SIDE_BTN },
226 { 75, PS2PP_KIND_WHEEL, PS2PP_WHEEL },
227 { 76, PS2PP_KIND_WHEEL, PS2PP_WHEEL },
4f8b05ef 228 { 79, PS2PP_KIND_TRACKMAN, PS2PP_WHEEL }, /* TrackMan with wheel */
1da177e4
LT
229 { 80, PS2PP_KIND_WHEEL, PS2PP_SIDE_BTN | PS2PP_WHEEL },
230 { 81, PS2PP_KIND_WHEEL, PS2PP_WHEEL },
231 { 83, PS2PP_KIND_WHEEL, PS2PP_WHEEL },
58057b9e 232 { 85, PS2PP_KIND_WHEEL, PS2PP_WHEEL },
d2b5ffca 233 { 86, PS2PP_KIND_WHEEL, PS2PP_WHEEL },
8ea3694f 234 { 87, PS2PP_KIND_WHEEL, PS2PP_WHEEL },
1da177e4
LT
235 { 88, PS2PP_KIND_WHEEL, PS2PP_WHEEL },
236 { 96, 0, 0 },
237 { 97, PS2PP_KIND_TP3, PS2PP_WHEEL | PS2PP_HWHEEL },
50f6dde0 238 { 99, PS2PP_KIND_WHEEL, PS2PP_WHEEL },
1da177e4
LT
239 { 100, PS2PP_KIND_MX, /* MX510 */
240 PS2PP_WHEEL | PS2PP_SIDE_BTN | PS2PP_TASK_BTN |
241 PS2PP_EXTRA_BTN | PS2PP_NAV_BTN },
0c19fcd8 242 { 111, PS2PP_KIND_MX, PS2PP_WHEEL | PS2PP_SIDE_BTN }, /* MX300 reports task button as side */
1da177e4
LT
243 { 112, PS2PP_KIND_MX, /* MX500 */
244 PS2PP_WHEEL | PS2PP_SIDE_BTN | PS2PP_TASK_BTN |
245 PS2PP_EXTRA_BTN | PS2PP_NAV_BTN },
246 { 114, PS2PP_KIND_MX, /* MX310 */
247 PS2PP_WHEEL | PS2PP_SIDE_BTN |
e3882bb5 248 PS2PP_TASK_BTN | PS2PP_EXTRA_BTN }
1da177e4
LT
249 };
250 int i;
251
e3882bb5 252 for (i = 0; i < ARRAY_SIZE(ps2pp_list); i++)
1da177e4
LT
253 if (model == ps2pp_list[i].model)
254 return &ps2pp_list[i];
255
256 printk(KERN_WARNING "logips2pp: Detected unknown logitech mouse model %d\n", model);
257 return NULL;
258}
259
260/*
261 * Set up input device's properties based on the detected mouse model.
262 */
263
e3882bb5
HD
264static void ps2pp_set_model_properties(struct psmouse *psmouse,
265 const struct ps2pp_info *model_info,
1da177e4
LT
266 int using_ps2pp)
267{
2e5b636b
DT
268 struct input_dev *input_dev = psmouse->dev;
269
1da177e4 270 if (model_info->features & PS2PP_SIDE_BTN)
2e5b636b 271 set_bit(BTN_SIDE, input_dev->keybit);
1da177e4
LT
272
273 if (model_info->features & PS2PP_EXTRA_BTN)
2e5b636b 274 set_bit(BTN_EXTRA, input_dev->keybit);
1da177e4
LT
275
276 if (model_info->features & PS2PP_TASK_BTN)
2e5b636b 277 set_bit(BTN_TASK, input_dev->keybit);
1da177e4
LT
278
279 if (model_info->features & PS2PP_NAV_BTN) {
2e5b636b
DT
280 set_bit(BTN_FORWARD, input_dev->keybit);
281 set_bit(BTN_BACK, input_dev->keybit);
1da177e4
LT
282 }
283
284 if (model_info->features & PS2PP_WHEEL)
2e5b636b 285 set_bit(REL_WHEEL, input_dev->relbit);
1da177e4
LT
286
287 if (model_info->features & PS2PP_HWHEEL)
2e5b636b 288 set_bit(REL_HWHEEL, input_dev->relbit);
1da177e4
LT
289
290 switch (model_info->kind) {
291 case PS2PP_KIND_WHEEL:
292 psmouse->name = "Wheel Mouse";
293 break;
294
295 case PS2PP_KIND_MX:
296 psmouse->name = "MX Mouse";
297 break;
298
299 case PS2PP_KIND_TP3:
300 psmouse->name = "TouchPad 3";
301 break;
302
4f8b05ef
ZL
303 case PS2PP_KIND_TRACKMAN:
304 psmouse->name = "TrackMan";
305 break;
306
1da177e4
LT
307 default:
308 /*
309 * Set name to "Mouse" only when using PS2++,
310 * otherwise let other protocols define suitable
311 * name
312 */
313 if (using_ps2pp)
314 psmouse->name = "Mouse";
315 break;
316 }
317}
318
319
320/*
321 * Logitech magic init. Detect whether the mouse is a Logitech one
322 * and its exact model and try turning on extended protocol for ones
323 * that support it.
324 */
325
326int ps2pp_init(struct psmouse *psmouse, int set_properties)
327{
328 struct ps2dev *ps2dev = &psmouse->ps2dev;
329 unsigned char param[4];
330 unsigned char model, buttons;
e3882bb5 331 const struct ps2pp_info *model_info;
1da177e4
LT
332 int use_ps2pp = 0;
333
334 param[0] = 0;
335 ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES);
336 ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11);
337 ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11);
338 ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11);
339 param[1] = 0;
340 ps2_command(ps2dev, param, PSMOUSE_CMD_GETINFO);
341
342 if (!param[1])
343 return -1;
344
345 model = ((param[0] >> 4) & 0x07) | ((param[0] << 3) & 0x78);
346 buttons = param[1];
347
348 if ((model_info = get_model_info(model)) != NULL) {
349
350/*
351 * Do Logitech PS2++ / PS2T++ magic init.
352 */
e3882bb5 353 if (model_info->kind == PS2PP_KIND_TP3) { /* Touch Pad 3 */
1da177e4
LT
354
355 /* Unprotect RAM */
356 param[0] = 0x11; param[1] = 0x04; param[2] = 0x68;
357 ps2_command(ps2dev, param, 0x30d1);
358 /* Enable features */
359 param[0] = 0x11; param[1] = 0x05; param[2] = 0x0b;
360 ps2_command(ps2dev, param, 0x30d1);
361 /* Enable PS2++ */
362 param[0] = 0x11; param[1] = 0x09; param[2] = 0xc3;
363 ps2_command(ps2dev, param, 0x30d1);
364
365 param[0] = 0;
366 if (!ps2_command(ps2dev, param, 0x13d1) &&
367 param[0] == 0x06 && param[1] == 0x00 && param[2] == 0x14) {
368 use_ps2pp = 1;
369 }
370
371 } else {
372
373 param[0] = param[1] = param[2] = 0;
374 ps2pp_cmd(psmouse, param, 0x39); /* Magic knock */
375 ps2pp_cmd(psmouse, param, 0xDB);
376
377 if ((param[0] & 0x78) == 0x48 &&
378 (param[1] & 0xf3) == 0xc2 &&
379 (param[2] & 0x03) == ((param[1] >> 2) & 3)) {
380 ps2pp_set_smartscroll(psmouse, psmouse->smartscroll);
381 use_ps2pp = 1;
382 }
383 }
384 }
385
386 if (set_properties) {
387 psmouse->vendor = "Logitech";
388 psmouse->model = model;
389
390 if (use_ps2pp) {
391 psmouse->protocol_handler = ps2pp_process_byte;
392 psmouse->pktsize = 3;
393
394 if (model_info->kind != PS2PP_KIND_TP3) {
395 psmouse->set_resolution = ps2pp_set_resolution;
396 psmouse->disconnect = ps2pp_disconnect;
397
cfe9e888
DT
398 device_create_file(&psmouse->ps2dev.serio->dev,
399 &psmouse_attr_smartscroll.dattr);
1da177e4
LT
400 }
401 }
402
403 if (buttons < 3)
2e5b636b 404 clear_bit(BTN_MIDDLE, psmouse->dev->keybit);
1da177e4
LT
405
406 if (model_info)
407 ps2pp_set_model_properties(psmouse, model_info, use_ps2pp);
408 }
409
410 return use_ps2pp ? 0 : -1;
411}
412
This page took 0.139649 seconds and 5 git commands to generate.