blob: 3b8011c56c869849c33b993306277eac27ade2ef [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Input driver to ExplorerPS/2 device driver module.
3 *
4 * Copyright (c) 1999-2002 Vojtech Pavlik
5 * Copyright (c) 2004 Dmitry Torokhov
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as published by
9 * the Free Software Foundation.
10 */
11
Dmitry Torokhov4f004692005-09-15 02:01:38 -050012#define MOUSEDEV_MINOR_BASE 32
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#define MOUSEDEV_MINORS 32
14#define MOUSEDEV_MIX 31
15
16#include <linux/slab.h>
17#include <linux/poll.h>
18#include <linux/module.h>
19#include <linux/moduleparam.h>
20#include <linux/init.h>
21#include <linux/input.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/smp_lock.h>
23#include <linux/random.h>
24#include <linux/major.h>
25#include <linux/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#ifdef CONFIG_INPUT_MOUSEDEV_PSAUX
27#include <linux/miscdevice.h>
28#endif
29
30MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
31MODULE_DESCRIPTION("Mouse (ExplorerPS/2) device interfaces");
32MODULE_LICENSE("GPL");
33
34#ifndef CONFIG_INPUT_MOUSEDEV_SCREEN_X
35#define CONFIG_INPUT_MOUSEDEV_SCREEN_X 1024
36#endif
37#ifndef CONFIG_INPUT_MOUSEDEV_SCREEN_Y
38#define CONFIG_INPUT_MOUSEDEV_SCREEN_Y 768
39#endif
40
41static int xres = CONFIG_INPUT_MOUSEDEV_SCREEN_X;
Dmitry Torokhov84c12b22005-12-11 12:41:03 -050042module_param(xres, uint, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043MODULE_PARM_DESC(xres, "Horizontal screen resolution");
44
45static int yres = CONFIG_INPUT_MOUSEDEV_SCREEN_Y;
Dmitry Torokhov84c12b22005-12-11 12:41:03 -050046module_param(yres, uint, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047MODULE_PARM_DESC(yres, "Vertical screen resolution");
48
49static unsigned tap_time = 200;
Dmitry Torokhov84c12b22005-12-11 12:41:03 -050050module_param(tap_time, uint, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051MODULE_PARM_DESC(tap_time, "Tap time for touchpads in absolute mode (msecs)");
52
53struct mousedev_hw_data {
54 int dx, dy, dz;
55 int x, y;
56 int abs_event;
57 unsigned long buttons;
58};
59
60struct mousedev {
61 int exist;
62 int open;
63 int minor;
64 char name[16];
65 wait_queue_head_t wait;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040066 struct list_head client_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 struct input_handle handle;
68
Dmitry Torokhovd542ed82007-04-12 01:30:15 -040069 struct list_head mixdev_node;
70 int mixdev_open;
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 struct mousedev_hw_data packet;
73 unsigned int pkt_count;
74 int old_x[4], old_y[4];
75 int frac_dx, frac_dy;
76 unsigned long touch;
77};
78
79enum mousedev_emul {
80 MOUSEDEV_EMUL_PS2,
81 MOUSEDEV_EMUL_IMPS,
82 MOUSEDEV_EMUL_EXPS
83};
84
85struct mousedev_motion {
86 int dx, dy, dz;
87 unsigned long buttons;
88};
89
90#define PACKET_QUEUE_LEN 16
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040091struct mousedev_client {
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 struct fasync_struct *fasync;
93 struct mousedev *mousedev;
94 struct list_head node;
95
96 struct mousedev_motion packets[PACKET_QUEUE_LEN];
97 unsigned int head, tail;
98 spinlock_t packet_lock;
99 int pos_x, pos_y;
100
101 signed char ps2[6];
102 unsigned char ready, buffer, bufsiz;
103 unsigned char imexseq, impsseq;
104 enum mousedev_emul mode;
Pavel Machekc1e4c8d2005-05-27 12:53:03 -0700105 unsigned long last_buttons;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106};
107
108#define MOUSEDEV_SEQ_LEN 6
109
110static unsigned char mousedev_imps_seq[] = { 0xf3, 200, 0xf3, 100, 0xf3, 80 };
111static unsigned char mousedev_imex_seq[] = { 0xf3, 200, 0xf3, 200, 0xf3, 80 };
112
113static struct input_handler mousedev_handler;
114
115static struct mousedev *mousedev_table[MOUSEDEV_MINORS];
116static struct mousedev mousedev_mix;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400117static LIST_HEAD(mousedev_mix_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119#define fx(i) (mousedev->old_x[(mousedev->pkt_count - (i)) & 03])
120#define fy(i) (mousedev->old_y[(mousedev->pkt_count - (i)) & 03])
121
122static void mousedev_touchpad_event(struct input_dev *dev, struct mousedev *mousedev, unsigned int code, int value)
123{
124 int size, tmp;
125 enum { FRACTION_DENOM = 128 };
126
Dmitry Torokhov0d9d93c2007-04-12 01:31:55 -0400127 switch (code) {
128 case ABS_X:
129 fx(0) = value;
130 if (mousedev->touch && mousedev->pkt_count >= 2) {
131 size = dev->absmax[ABS_X] - dev->absmin[ABS_X];
132 if (size == 0)
133 size = 256 * 2;
134 tmp = ((value - fx(2)) * (256 * FRACTION_DENOM)) / size;
135 tmp += mousedev->frac_dx;
136 mousedev->packet.dx = tmp / FRACTION_DENOM;
137 mousedev->frac_dx = tmp - mousedev->packet.dx * FRACTION_DENOM;
138 }
139 break;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400140
Dmitry Torokhov0d9d93c2007-04-12 01:31:55 -0400141 case ABS_Y:
142 fy(0) = value;
143 if (mousedev->touch && mousedev->pkt_count >= 2) {
144 /* use X size to keep the same scale */
145 size = dev->absmax[ABS_X] - dev->absmin[ABS_X];
146 if (size == 0)
147 size = 256 * 2;
148 tmp = -((value - fy(2)) * (256 * FRACTION_DENOM)) / size;
149 tmp += mousedev->frac_dy;
150 mousedev->packet.dy = tmp / FRACTION_DENOM;
151 mousedev->frac_dy = tmp - mousedev->packet.dy * FRACTION_DENOM;
152 }
153 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 }
155}
156
157static void mousedev_abs_event(struct input_dev *dev, struct mousedev *mousedev, unsigned int code, int value)
158{
159 int size;
160
161 switch (code) {
162 case ABS_X:
163 size = dev->absmax[ABS_X] - dev->absmin[ABS_X];
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400164 if (size == 0)
165 size = xres ? : 1;
166 if (value > dev->absmax[ABS_X])
167 value = dev->absmax[ABS_X];
168 if (value < dev->absmin[ABS_X])
169 value = dev->absmin[ABS_X];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 mousedev->packet.x = ((value - dev->absmin[ABS_X]) * xres) / size;
171 mousedev->packet.abs_event = 1;
172 break;
173
174 case ABS_Y:
175 size = dev->absmax[ABS_Y] - dev->absmin[ABS_Y];
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400176 if (size == 0)
177 size = yres ? : 1;
178 if (value > dev->absmax[ABS_Y])
179 value = dev->absmax[ABS_Y];
180 if (value < dev->absmin[ABS_Y])
181 value = dev->absmin[ABS_Y];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 mousedev->packet.y = yres - ((value - dev->absmin[ABS_Y]) * yres) / size;
183 mousedev->packet.abs_event = 1;
184 break;
185 }
186}
187
188static void mousedev_rel_event(struct mousedev *mousedev, unsigned int code, int value)
189{
190 switch (code) {
191 case REL_X: mousedev->packet.dx += value; break;
192 case REL_Y: mousedev->packet.dy -= value; break;
193 case REL_WHEEL: mousedev->packet.dz -= value; break;
194 }
195}
196
197static void mousedev_key_event(struct mousedev *mousedev, unsigned int code, int value)
198{
199 int index;
200
201 switch (code) {
202 case BTN_TOUCH:
203 case BTN_0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 case BTN_LEFT: index = 0; break;
205 case BTN_STYLUS:
206 case BTN_1:
207 case BTN_RIGHT: index = 1; break;
208 case BTN_2:
Marton Nemeth6c595fb2006-11-17 01:06:54 -0500209 case BTN_FORWARD:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 case BTN_STYLUS2:
211 case BTN_MIDDLE: index = 2; break;
212 case BTN_3:
213 case BTN_BACK:
214 case BTN_SIDE: index = 3; break;
215 case BTN_4:
216 case BTN_EXTRA: index = 4; break;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400217 default: return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 }
219
220 if (value) {
221 set_bit(index, &mousedev->packet.buttons);
222 set_bit(index, &mousedev_mix.packet.buttons);
223 } else {
224 clear_bit(index, &mousedev->packet.buttons);
225 clear_bit(index, &mousedev_mix.packet.buttons);
226 }
227}
228
229static void mousedev_notify_readers(struct mousedev *mousedev, struct mousedev_hw_data *packet)
230{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400231 struct mousedev_client *client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 struct mousedev_motion *p;
233 unsigned long flags;
Dmitry Torokhov81211522005-06-01 02:39:36 -0500234 int wake_readers = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400236 list_for_each_entry(client, &mousedev->client_list, node) {
237 spin_lock_irqsave(&client->packet_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400239 p = &client->packets[client->head];
240 if (client->ready && p->buttons != mousedev->packet.buttons) {
241 unsigned int new_head = (client->head + 1) % PACKET_QUEUE_LEN;
242 if (new_head != client->tail) {
243 p = &client->packets[client->head = new_head];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 memset(p, 0, sizeof(struct mousedev_motion));
245 }
246 }
247
248 if (packet->abs_event) {
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400249 p->dx += packet->x - client->pos_x;
250 p->dy += packet->y - client->pos_y;
251 client->pos_x = packet->x;
252 client->pos_y = packet->y;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 }
254
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400255 client->pos_x += packet->dx;
256 client->pos_x = client->pos_x < 0 ? 0 : (client->pos_x >= xres ? xres : client->pos_x);
257 client->pos_y += packet->dy;
258 client->pos_y = client->pos_y < 0 ? 0 : (client->pos_y >= yres ? yres : client->pos_y);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
260 p->dx += packet->dx;
261 p->dy += packet->dy;
262 p->dz += packet->dz;
263 p->buttons = mousedev->packet.buttons;
264
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400265 if (p->dx || p->dy || p->dz || p->buttons != client->last_buttons)
266 client->ready = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400268 spin_unlock_irqrestore(&client->packet_lock, flags);
Pavel Machekc1e4c8d2005-05-27 12:53:03 -0700269
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400270 if (client->ready) {
271 kill_fasync(&client->fasync, SIGIO, POLL_IN);
Dmitry Torokhov81211522005-06-01 02:39:36 -0500272 wake_readers = 1;
273 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 }
275
Dmitry Torokhov81211522005-06-01 02:39:36 -0500276 if (wake_readers)
277 wake_up_interruptible(&mousedev->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278}
279
280static void mousedev_touchpad_touch(struct mousedev *mousedev, int value)
281{
282 if (!value) {
283 if (mousedev->touch &&
284 time_before(jiffies, mousedev->touch + msecs_to_jiffies(tap_time))) {
285 /*
286 * Toggle left button to emulate tap.
287 * We rely on the fact that mousedev_mix always has 0
288 * motion packet so we won't mess current position.
289 */
290 set_bit(0, &mousedev->packet.buttons);
291 set_bit(0, &mousedev_mix.packet.buttons);
292 mousedev_notify_readers(mousedev, &mousedev_mix.packet);
293 mousedev_notify_readers(&mousedev_mix, &mousedev_mix.packet);
294 clear_bit(0, &mousedev->packet.buttons);
295 clear_bit(0, &mousedev_mix.packet.buttons);
296 }
297 mousedev->touch = mousedev->pkt_count = 0;
298 mousedev->frac_dx = 0;
299 mousedev->frac_dy = 0;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400300
301 } else if (!mousedev->touch)
302 mousedev->touch = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303}
304
305static void mousedev_event(struct input_handle *handle, unsigned int type, unsigned int code, int value)
306{
307 struct mousedev *mousedev = handle->private;
308
309 switch (type) {
310 case EV_ABS:
311 /* Ignore joysticks */
312 if (test_bit(BTN_TRIGGER, handle->dev->keybit))
313 return;
314
315 if (test_bit(BTN_TOOL_FINGER, handle->dev->keybit))
316 mousedev_touchpad_event(handle->dev, mousedev, code, value);
317 else
318 mousedev_abs_event(handle->dev, mousedev, code, value);
319
320 break;
321
322 case EV_REL:
323 mousedev_rel_event(mousedev, code, value);
324 break;
325
326 case EV_KEY:
327 if (value != 2) {
328 if (code == BTN_TOUCH && test_bit(BTN_TOOL_FINGER, handle->dev->keybit))
329 mousedev_touchpad_touch(mousedev, value);
330 else
331 mousedev_key_event(mousedev, code, value);
332 }
333 break;
334
335 case EV_SYN:
336 if (code == SYN_REPORT) {
337 if (mousedev->touch) {
338 mousedev->pkt_count++;
339 /* Input system eats duplicate events, but we need all of them
340 * to do correct averaging so apply present one forward
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400341 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 fx(0) = fx(1);
343 fy(0) = fy(1);
344 }
345
346 mousedev_notify_readers(mousedev, &mousedev->packet);
347 mousedev_notify_readers(&mousedev_mix, &mousedev->packet);
348
349 mousedev->packet.dx = mousedev->packet.dy = mousedev->packet.dz = 0;
350 mousedev->packet.abs_event = 0;
351 }
352 break;
353 }
354}
355
356static int mousedev_fasync(int fd, struct file *file, int on)
357{
358 int retval;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400359 struct mousedev_client *client = file->private_data;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400360
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400361 retval = fasync_helper(fd, file, on, &client->fasync);
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400362
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 return retval < 0 ? retval : 0;
364}
365
366static void mousedev_free(struct mousedev *mousedev)
367{
368 mousedev_table[mousedev->minor] = NULL;
369 kfree(mousedev);
370}
371
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400372static int mixdev_add_device(struct mousedev *mousedev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400374 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400376 if (mousedev_mix.open) {
377 error = input_open_device(&mousedev->handle);
378 if (error)
379 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400381 mousedev->open++;
382 mousedev->mixdev_open++;
383 }
384
385 list_add_tail(&mousedev->mixdev_node, &mousedev_mix_list);
386
387 return 0;
388}
389
390static void mixdev_remove_device(struct mousedev *mousedev)
391{
392 if (mousedev->mixdev_open) {
393 mousedev->mixdev_open = 0;
394 if (!--mousedev->open && mousedev->exist)
395 input_close_device(&mousedev->handle);
396 }
397
398 list_del_init(&mousedev->mixdev_node);
399}
400
401static void mixdev_open_devices(void)
402{
403 struct mousedev *mousedev;
404
405 list_for_each_entry(mousedev, &mousedev_mix_list, mixdev_node) {
406 if (mousedev->exist && !mousedev->open) {
407 if (input_open_device(&mousedev->handle))
408 continue;
409
410 mousedev->open++;
411 mousedev->mixdev_open++;
412 }
413 }
414}
415
416static void mixdev_close_devices(void)
417{
418 struct mousedev *mousedev, *next;
419
420 list_for_each_entry_safe(mousedev, next, &mousedev_mix_list, mixdev_node) {
421 if (mousedev->mixdev_open) {
422 mousedev->mixdev_open = 0;
423 if (!--mousedev->open) {
424 if (mousedev->exist)
425 input_close_device(&mousedev->handle);
426 else
427 mousedev_free(mousedev);
428 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 }
430 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431}
432
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400433static int mousedev_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400435 struct mousedev_client *client = file->private_data;
436 struct mousedev *mousedev = client->mousedev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438 mousedev_fasync(-1, file, 0);
439
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400440 list_del(&client->node);
441 kfree(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400443 if (!--mousedev->open) {
444 if (mousedev->minor == MOUSEDEV_MIX)
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400445 mixdev_close_devices();
446 else if (mousedev->exist)
447 input_close_device(&mousedev->handle);
448 else
449 mousedev_free(mousedev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 }
451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 return 0;
453}
454
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400455
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400456static int mousedev_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400458 struct mousedev_client *client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 struct mousedev *mousedev;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400460 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 int i;
462
463#ifdef CONFIG_INPUT_MOUSEDEV_PSAUX
464 if (imajor(inode) == MISC_MAJOR)
465 i = MOUSEDEV_MIX;
466 else
467#endif
468 i = iminor(inode) - MOUSEDEV_MINOR_BASE;
469
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400470 if (i >= MOUSEDEV_MINORS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 return -ENODEV;
472
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400473 mousedev = mousedev_table[i];
474 if (!mousedev)
475 return -ENODEV;
476
477 client = kzalloc(sizeof(struct mousedev_client), GFP_KERNEL);
478 if (!client)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400481 spin_lock_init(&client->packet_lock);
482 client->pos_x = xres / 2;
483 client->pos_y = yres / 2;
484 client->mousedev = mousedev;
485 list_add_tail(&client->node, &mousedev->client_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400487 if (!mousedev->open++) {
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400488 if (mousedev->minor == MOUSEDEV_MIX)
489 mixdev_open_devices();
490 else if (mousedev->exist) {
491 error = input_open_device(&mousedev->handle);
492 if (error) {
493 list_del(&client->node);
494 kfree(client);
495 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 }
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400497 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 }
499
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400500 file->private_data = client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 return 0;
502}
503
504static inline int mousedev_limit_delta(int delta, int limit)
505{
506 return delta > limit ? limit : (delta < -limit ? -limit : delta);
507}
508
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400509static void mousedev_packet(struct mousedev_client *client, signed char *ps2_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510{
511 struct mousedev_motion *p;
512 unsigned long flags;
513
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400514 spin_lock_irqsave(&client->packet_lock, flags);
515 p = &client->packets[client->tail];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
517 ps2_data[0] = 0x08 | ((p->dx < 0) << 4) | ((p->dy < 0) << 5) | (p->buttons & 0x07);
518 ps2_data[1] = mousedev_limit_delta(p->dx, 127);
519 ps2_data[2] = mousedev_limit_delta(p->dy, 127);
520 p->dx -= ps2_data[1];
521 p->dy -= ps2_data[2];
522
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400523 switch (client->mode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 case MOUSEDEV_EMUL_EXPS:
525 ps2_data[3] = mousedev_limit_delta(p->dz, 7);
526 p->dz -= ps2_data[3];
527 ps2_data[3] = (ps2_data[3] & 0x0f) | ((p->buttons & 0x18) << 1);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400528 client->bufsiz = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 break;
530
531 case MOUSEDEV_EMUL_IMPS:
532 ps2_data[0] |= ((p->buttons & 0x10) >> 3) | ((p->buttons & 0x08) >> 1);
533 ps2_data[3] = mousedev_limit_delta(p->dz, 127);
534 p->dz -= ps2_data[3];
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400535 client->bufsiz = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 break;
537
538 case MOUSEDEV_EMUL_PS2:
539 default:
540 ps2_data[0] |= ((p->buttons & 0x10) >> 3) | ((p->buttons & 0x08) >> 1);
541 p->dz = 0;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400542 client->bufsiz = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 break;
544 }
545
546 if (!p->dx && !p->dy && !p->dz) {
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400547 if (client->tail == client->head) {
548 client->ready = 0;
549 client->last_buttons = p->buttons;
Pavel Machekc1e4c8d2005-05-27 12:53:03 -0700550 } else
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400551 client->tail = (client->tail + 1) % PACKET_QUEUE_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 }
553
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400554 spin_unlock_irqrestore(&client->packet_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555}
556
557
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400558static ssize_t mousedev_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400560 struct mousedev_client *client = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 unsigned char c;
562 unsigned int i;
563
564 for (i = 0; i < count; i++) {
565
566 if (get_user(c, buffer + i))
567 return -EFAULT;
568
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400569 if (c == mousedev_imex_seq[client->imexseq]) {
570 if (++client->imexseq == MOUSEDEV_SEQ_LEN) {
571 client->imexseq = 0;
572 client->mode = MOUSEDEV_EMUL_EXPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 }
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400574 } else
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400575 client->imexseq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400577 if (c == mousedev_imps_seq[client->impsseq]) {
578 if (++client->impsseq == MOUSEDEV_SEQ_LEN) {
579 client->impsseq = 0;
580 client->mode = MOUSEDEV_EMUL_IMPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 }
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400582 } else
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400583 client->impsseq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400585 client->ps2[0] = 0xfa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
587 switch (c) {
588
589 case 0xeb: /* Poll */
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400590 mousedev_packet(client, &client->ps2[1]);
591 client->bufsiz++; /* account for leading ACK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 break;
593
594 case 0xf2: /* Get ID */
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400595 switch (client->mode) {
596 case MOUSEDEV_EMUL_PS2: client->ps2[1] = 0; break;
597 case MOUSEDEV_EMUL_IMPS: client->ps2[1] = 3; break;
598 case MOUSEDEV_EMUL_EXPS: client->ps2[1] = 4; break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 }
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400600 client->bufsiz = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 break;
602
603 case 0xe9: /* Get info */
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400604 client->ps2[1] = 0x60; client->ps2[2] = 3; client->ps2[3] = 200;
605 client->bufsiz = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 break;
607
608 case 0xff: /* Reset */
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400609 client->impsseq = client->imexseq = 0;
610 client->mode = MOUSEDEV_EMUL_PS2;
611 client->ps2[1] = 0xaa; client->ps2[2] = 0x00;
612 client->bufsiz = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 break;
614
615 default:
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400616 client->bufsiz = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 break;
618 }
619
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400620 client->buffer = client->bufsiz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 }
622
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400623 kill_fasync(&client->fasync, SIGIO, POLL_IN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400625 wake_up_interruptible(&client->mousedev->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
627 return count;
628}
629
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400630static ssize_t mousedev_read(struct file *file, char __user *buffer, size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400632 struct mousedev_client *client = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 int retval = 0;
634
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400635 if (!client->ready && !client->buffer && (file->f_flags & O_NONBLOCK))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 return -EAGAIN;
637
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400638 retval = wait_event_interruptible(client->mousedev->wait,
639 !client->mousedev->exist || client->ready || client->buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
641 if (retval)
642 return retval;
643
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400644 if (!client->mousedev->exist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 return -ENODEV;
646
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400647 if (!client->buffer && client->ready) {
648 mousedev_packet(client, client->ps2);
649 client->buffer = client->bufsiz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 }
651
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400652 if (count > client->buffer)
653 count = client->buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400655 client->buffer -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400657 if (copy_to_user(buffer, client->ps2 + client->bufsiz - client->buffer - count, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 return -EFAULT;
659
660 return count;
661}
662
663/* No kernel lock - fine */
664static unsigned int mousedev_poll(struct file *file, poll_table *wait)
665{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400666 struct mousedev_client *client = file->private_data;
667 struct mousedev *mousedev = client->mousedev;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400668
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400669 poll_wait(file, &mousedev->wait, wait);
670 return ((client->ready || client->buffer) ? (POLLIN | POLLRDNORM) : 0) |
671 (mousedev->exist ? 0 : (POLLHUP | POLLERR));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672}
673
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400674static const struct file_operations mousedev_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 .owner = THIS_MODULE,
676 .read = mousedev_read,
677 .write = mousedev_write,
678 .poll = mousedev_poll,
679 .open = mousedev_open,
680 .release = mousedev_release,
681 .fasync = mousedev_fasync,
682};
683
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400684static int mousedev_connect(struct input_handler *handler, struct input_dev *dev,
685 const struct input_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686{
687 struct mousedev *mousedev;
Greg Kroah-Hartmanc9bcd582005-10-27 22:25:43 -0700688 struct class_device *cdev;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400689 dev_t devt;
690 int minor;
691 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
693 for (minor = 0; minor < MOUSEDEV_MINORS && mousedev_table[minor]; minor++);
694 if (minor == MOUSEDEV_MINORS) {
695 printk(KERN_ERR "mousedev: no more free mousedev devices\n");
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400696 return -ENFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 }
698
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400699 mousedev = kzalloc(sizeof(struct mousedev), GFP_KERNEL);
700 if (!mousedev)
701 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400703 INIT_LIST_HEAD(&mousedev->client_list);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400704 INIT_LIST_HEAD(&mousedev->mixdev_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 init_waitqueue_head(&mousedev->wait);
706
707 mousedev->minor = minor;
708 mousedev->exist = 1;
709 mousedev->handle.dev = dev;
710 mousedev->handle.name = mousedev->name;
711 mousedev->handle.handler = handler;
712 mousedev->handle.private = mousedev;
713 sprintf(mousedev->name, "mouse%d", minor);
714
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 mousedev_table[minor] = mousedev;
716
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400717 devt = MKDEV(INPUT_MAJOR, MOUSEDEV_MINOR_BASE + minor),
718
719 cdev = class_device_create(&input_class, &dev->cdev, devt,
720 dev->cdev.dev, mousedev->name);
721 if (IS_ERR(cdev)) {
722 error = PTR_ERR(cdev);
723 goto err_free_mousedev;
724 }
Greg Kroah-Hartmanc9bcd582005-10-27 22:25:43 -0700725
726 /* temporary symlink to keep userspace happy */
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400727 error = sysfs_create_link(&input_class.subsys.kset.kobj,
728 &cdev->kobj, mousedev->name);
729 if (error)
730 goto err_cdev_destroy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400732 error = input_register_handle(&mousedev->handle);
733 if (error)
734 goto err_remove_link;
735
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400736 error = mixdev_add_device(mousedev);
737 if (error)
738 goto err_unregister_handle;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400739
740 return 0;
741
742 err_unregister_handle:
743 input_unregister_handle(&mousedev->handle);
744 err_remove_link:
745 sysfs_remove_link(&input_class.subsys.kset.kobj, mousedev->name);
746 err_cdev_destroy:
747 class_device_destroy(&input_class, devt);
748 err_free_mousedev:
749 mousedev_table[minor] = NULL;
750 kfree(mousedev);
751 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752}
753
754static void mousedev_disconnect(struct input_handle *handle)
755{
756 struct mousedev *mousedev = handle->private;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400757 struct mousedev_client *client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400759 input_unregister_handle(handle);
760
Greg Kroah-Hartmanc9bcd582005-10-27 22:25:43 -0700761 sysfs_remove_link(&input_class.subsys.kset.kobj, mousedev->name);
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -0700762 class_device_destroy(&input_class,
gregkh@suse.de12356862005-03-15 14:26:30 -0800763 MKDEV(INPUT_MAJOR, MOUSEDEV_MINOR_BASE + mousedev->minor));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 mousedev->exist = 0;
765
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400766 mixdev_remove_device(mousedev);
767
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 if (mousedev->open) {
769 input_close_device(handle);
770 wake_up_interruptible(&mousedev->wait);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400771 list_for_each_entry(client, &mousedev->client_list, node)
772 kill_fasync(&client->fasync, SIGIO, POLL_HUP);
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400773 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 mousedev_free(mousedev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775}
776
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400777static const struct input_device_id mousedev_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 {
779 .flags = INPUT_DEVICE_ID_MATCH_EVBIT | INPUT_DEVICE_ID_MATCH_KEYBIT | INPUT_DEVICE_ID_MATCH_RELBIT,
780 .evbit = { BIT(EV_KEY) | BIT(EV_REL) },
781 .keybit = { [LONG(BTN_LEFT)] = BIT(BTN_LEFT) },
782 .relbit = { BIT(REL_X) | BIT(REL_Y) },
783 }, /* A mouse like device, at least one button, two relative axes */
784 {
785 .flags = INPUT_DEVICE_ID_MATCH_EVBIT | INPUT_DEVICE_ID_MATCH_RELBIT,
786 .evbit = { BIT(EV_KEY) | BIT(EV_REL) },
787 .relbit = { BIT(REL_WHEEL) },
788 }, /* A separate scrollwheel */
789 {
790 .flags = INPUT_DEVICE_ID_MATCH_EVBIT | INPUT_DEVICE_ID_MATCH_KEYBIT | INPUT_DEVICE_ID_MATCH_ABSBIT,
791 .evbit = { BIT(EV_KEY) | BIT(EV_ABS) },
792 .keybit = { [LONG(BTN_TOUCH)] = BIT(BTN_TOUCH) },
793 .absbit = { BIT(ABS_X) | BIT(ABS_Y) },
794 }, /* A tablet like device, at least touch detection, two absolute axes */
795 {
796 .flags = INPUT_DEVICE_ID_MATCH_EVBIT | INPUT_DEVICE_ID_MATCH_KEYBIT | INPUT_DEVICE_ID_MATCH_ABSBIT,
797 .evbit = { BIT(EV_KEY) | BIT(EV_ABS) },
798 .keybit = { [LONG(BTN_TOOL_FINGER)] = BIT(BTN_TOOL_FINGER) },
799 .absbit = { BIT(ABS_X) | BIT(ABS_Y) | BIT(ABS_PRESSURE) | BIT(ABS_TOOL_WIDTH) },
800 }, /* A touchpad */
801
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400802 { }, /* Terminating entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803};
804
805MODULE_DEVICE_TABLE(input, mousedev_ids);
806
807static struct input_handler mousedev_handler = {
808 .event = mousedev_event,
809 .connect = mousedev_connect,
810 .disconnect = mousedev_disconnect,
811 .fops = &mousedev_fops,
812 .minor = MOUSEDEV_MINOR_BASE,
813 .name = "mousedev",
814 .id_table = mousedev_ids,
815};
816
817#ifdef CONFIG_INPUT_MOUSEDEV_PSAUX
818static struct miscdevice psaux_mouse = {
819 PSMOUSE_MINOR, "psaux", &mousedev_fops
820};
821static int psaux_registered;
822#endif
823
824static int __init mousedev_init(void)
825{
Dmitry Torokhov4263cf02006-09-14 01:32:39 -0400826 struct class_device *cdev;
827 int error;
828
829 error = input_register_handler(&mousedev_handler);
830 if (error)
831 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
833 memset(&mousedev_mix, 0, sizeof(struct mousedev));
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400834 INIT_LIST_HEAD(&mousedev_mix.client_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 init_waitqueue_head(&mousedev_mix.wait);
836 mousedev_table[MOUSEDEV_MIX] = &mousedev_mix;
837 mousedev_mix.exist = 1;
838 mousedev_mix.minor = MOUSEDEV_MIX;
839
Dmitry Torokhov4263cf02006-09-14 01:32:39 -0400840 cdev = class_device_create(&input_class, NULL,
gregkh@suse.de12356862005-03-15 14:26:30 -0800841 MKDEV(INPUT_MAJOR, MOUSEDEV_MINOR_BASE + MOUSEDEV_MIX), NULL, "mice");
Dmitry Torokhov4263cf02006-09-14 01:32:39 -0400842 if (IS_ERR(cdev)) {
843 input_unregister_handler(&mousedev_handler);
844 return PTR_ERR(cdev);
845 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
847#ifdef CONFIG_INPUT_MOUSEDEV_PSAUX
Dmitry Torokhov4263cf02006-09-14 01:32:39 -0400848 error = misc_register(&psaux_mouse);
849 if (error)
850 printk(KERN_WARNING "mice: could not register psaux device, "
851 "error: %d\n", error);
852 else
853 psaux_registered = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854#endif
855
856 printk(KERN_INFO "mice: PS/2 mouse device common for all mice\n");
857
858 return 0;
859}
860
861static void __exit mousedev_exit(void)
862{
863#ifdef CONFIG_INPUT_MOUSEDEV_PSAUX
864 if (psaux_registered)
865 misc_deregister(&psaux_mouse);
866#endif
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -0700867 class_device_destroy(&input_class,
gregkh@suse.de12356862005-03-15 14:26:30 -0800868 MKDEV(INPUT_MAJOR, MOUSEDEV_MINOR_BASE + MOUSEDEV_MIX));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 input_unregister_handler(&mousedev_handler);
870}
871
872module_init(mousedev_init);
873module_exit(mousedev_exit);