blob: bbbe5e81adc1036d224925e4809ba05bd0fc22a5 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/init.h>
20#include <linux/input.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/random.h>
22#include <linux/major.h>
23#include <linux/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#ifdef CONFIG_INPUT_MOUSEDEV_PSAUX
25#include <linux/miscdevice.h>
26#endif
27
28MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
29MODULE_DESCRIPTION("Mouse (ExplorerPS/2) device interfaces");
30MODULE_LICENSE("GPL");
31
32#ifndef CONFIG_INPUT_MOUSEDEV_SCREEN_X
33#define CONFIG_INPUT_MOUSEDEV_SCREEN_X 1024
34#endif
35#ifndef CONFIG_INPUT_MOUSEDEV_SCREEN_Y
36#define CONFIG_INPUT_MOUSEDEV_SCREEN_Y 768
37#endif
38
39static int xres = CONFIG_INPUT_MOUSEDEV_SCREEN_X;
Dmitry Torokhov84c12b22005-12-11 12:41:03 -050040module_param(xres, uint, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041MODULE_PARM_DESC(xres, "Horizontal screen resolution");
42
43static int yres = CONFIG_INPUT_MOUSEDEV_SCREEN_Y;
Dmitry Torokhov84c12b22005-12-11 12:41:03 -050044module_param(yres, uint, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045MODULE_PARM_DESC(yres, "Vertical screen resolution");
46
47static unsigned tap_time = 200;
Dmitry Torokhov84c12b22005-12-11 12:41:03 -050048module_param(tap_time, uint, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049MODULE_PARM_DESC(tap_time, "Tap time for touchpads in absolute mode (msecs)");
50
51struct mousedev_hw_data {
52 int dx, dy, dz;
53 int x, y;
54 int abs_event;
55 unsigned long buttons;
56};
57
58struct mousedev {
59 int exist;
60 int open;
61 int minor;
62 char name[16];
Dmitry Torokhov464b2412007-08-30 00:22:24 -040063 struct input_handle handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 wait_queue_head_t wait;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040065 struct list_head client_list;
Dmitry Torokhov464b2412007-08-30 00:22:24 -040066 spinlock_t client_lock; /* protects client_list */
67 struct mutex mutex;
Dmitry Torokhov9657d752007-06-14 23:32:24 -040068 struct device dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Dmitry Torokhovd542ed82007-04-12 01:30:15 -040070 struct list_head mixdev_node;
71 int mixdev_open;
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 struct mousedev_hw_data packet;
74 unsigned int pkt_count;
75 int old_x[4], old_y[4];
76 int frac_dx, frac_dy;
77 unsigned long touch;
78};
79
80enum mousedev_emul {
81 MOUSEDEV_EMUL_PS2,
82 MOUSEDEV_EMUL_IMPS,
83 MOUSEDEV_EMUL_EXPS
84};
85
86struct mousedev_motion {
87 int dx, dy, dz;
88 unsigned long buttons;
89};
90
91#define PACKET_QUEUE_LEN 16
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040092struct mousedev_client {
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 struct fasync_struct *fasync;
94 struct mousedev *mousedev;
95 struct list_head node;
96
97 struct mousedev_motion packets[PACKET_QUEUE_LEN];
98 unsigned int head, tail;
99 spinlock_t packet_lock;
100 int pos_x, pos_y;
101
102 signed char ps2[6];
103 unsigned char ready, buffer, bufsiz;
104 unsigned char imexseq, impsseq;
105 enum mousedev_emul mode;
Pavel Machekc1e4c8d2005-05-27 12:53:03 -0700106 unsigned long last_buttons;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107};
108
109#define MOUSEDEV_SEQ_LEN 6
110
111static unsigned char mousedev_imps_seq[] = { 0xf3, 200, 0xf3, 100, 0xf3, 80 };
112static unsigned char mousedev_imex_seq[] = { 0xf3, 200, 0xf3, 200, 0xf3, 80 };
113
114static struct input_handler mousedev_handler;
115
116static struct mousedev *mousedev_table[MOUSEDEV_MINORS];
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400117static DEFINE_MUTEX(mousedev_table_mutex);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400118static struct mousedev *mousedev_mix;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400119static LIST_HEAD(mousedev_mix_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400121static void mixdev_open_devices(void);
122static void mixdev_close_devices(void);
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124#define fx(i) (mousedev->old_x[(mousedev->pkt_count - (i)) & 03])
125#define fy(i) (mousedev->old_y[(mousedev->pkt_count - (i)) & 03])
126
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400127static void mousedev_touchpad_event(struct input_dev *dev,
128 struct mousedev *mousedev,
129 unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
131 int size, tmp;
132 enum { FRACTION_DENOM = 128 };
133
Dmitry Torokhov0d9d93c2007-04-12 01:31:55 -0400134 switch (code) {
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400135
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400136 case ABS_X:
137 fx(0) = value;
138 if (mousedev->touch && mousedev->pkt_count >= 2) {
139 size = dev->absmax[ABS_X] - dev->absmin[ABS_X];
140 if (size == 0)
141 size = 256 * 2;
142 tmp = ((value - fx(2)) * 256 * FRACTION_DENOM) / size;
143 tmp += mousedev->frac_dx;
144 mousedev->packet.dx = tmp / FRACTION_DENOM;
145 mousedev->frac_dx =
146 tmp - mousedev->packet.dx * FRACTION_DENOM;
147 }
148 break;
149
150 case ABS_Y:
151 fy(0) = value;
152 if (mousedev->touch && mousedev->pkt_count >= 2) {
153 /* use X size to keep the same scale */
154 size = dev->absmax[ABS_X] - dev->absmin[ABS_X];
155 if (size == 0)
156 size = 256 * 2;
157 tmp = -((value - fy(2)) * 256 * FRACTION_DENOM) / size;
158 tmp += mousedev->frac_dy;
159 mousedev->packet.dy = tmp / FRACTION_DENOM;
160 mousedev->frac_dy = tmp -
161 mousedev->packet.dy * FRACTION_DENOM;
162 }
163 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 }
165}
166
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400167static void mousedev_abs_event(struct input_dev *dev, struct mousedev *mousedev,
168 unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
170 int size;
171
172 switch (code) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400174 case ABS_X:
175 size = dev->absmax[ABS_X] - dev->absmin[ABS_X];
176 if (size == 0)
177 size = xres ? : 1;
178 if (value > dev->absmax[ABS_X])
179 value = dev->absmax[ABS_X];
180 if (value < dev->absmin[ABS_X])
181 value = dev->absmin[ABS_X];
182 mousedev->packet.x =
183 ((value - dev->absmin[ABS_X]) * xres) / size;
184 mousedev->packet.abs_event = 1;
185 break;
186
187 case ABS_Y:
188 size = dev->absmax[ABS_Y] - dev->absmin[ABS_Y];
189 if (size == 0)
190 size = yres ? : 1;
191 if (value > dev->absmax[ABS_Y])
192 value = dev->absmax[ABS_Y];
193 if (value < dev->absmin[ABS_Y])
194 value = dev->absmin[ABS_Y];
195 mousedev->packet.y = yres -
196 ((value - dev->absmin[ABS_Y]) * yres) / size;
197 mousedev->packet.abs_event = 1;
198 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 }
200}
201
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400202static void mousedev_rel_event(struct mousedev *mousedev,
203 unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
205 switch (code) {
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400206 case REL_X:
207 mousedev->packet.dx += value;
208 break;
209
210 case REL_Y:
211 mousedev->packet.dy -= value;
212 break;
213
214 case REL_WHEEL:
215 mousedev->packet.dz -= value;
216 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 }
218}
219
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400220static void mousedev_key_event(struct mousedev *mousedev,
221 unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
223 int index;
224
225 switch (code) {
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400226
227 case BTN_TOUCH:
228 case BTN_0:
229 case BTN_LEFT: index = 0; break;
230
231 case BTN_STYLUS:
232 case BTN_1:
233 case BTN_RIGHT: index = 1; break;
234
235 case BTN_2:
236 case BTN_FORWARD:
237 case BTN_STYLUS2:
238 case BTN_MIDDLE: index = 2; break;
239
240 case BTN_3:
241 case BTN_BACK:
242 case BTN_SIDE: index = 3; break;
243
244 case BTN_4:
245 case BTN_EXTRA: index = 4; break;
246
247 default: return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 }
249
250 if (value) {
251 set_bit(index, &mousedev->packet.buttons);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400252 set_bit(index, &mousedev_mix->packet.buttons);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 } else {
254 clear_bit(index, &mousedev->packet.buttons);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400255 clear_bit(index, &mousedev_mix->packet.buttons);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 }
257}
258
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400259static void mousedev_notify_readers(struct mousedev *mousedev,
260 struct mousedev_hw_data *packet)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400262 struct mousedev_client *client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 struct mousedev_motion *p;
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400264 unsigned int new_head;
Dmitry Torokhov81211522005-06-01 02:39:36 -0500265 int wake_readers = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400267 rcu_read_lock();
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400268 list_for_each_entry_rcu(client, &mousedev->client_list, node) {
269
270 /* Just acquire the lock, interrupts already disabled */
271 spin_lock(&client->packet_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400273 p = &client->packets[client->head];
274 if (client->ready && p->buttons != mousedev->packet.buttons) {
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400275 new_head = (client->head + 1) % PACKET_QUEUE_LEN;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400276 if (new_head != client->tail) {
277 p = &client->packets[client->head = new_head];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 memset(p, 0, sizeof(struct mousedev_motion));
279 }
280 }
281
282 if (packet->abs_event) {
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400283 p->dx += packet->x - client->pos_x;
284 p->dy += packet->y - client->pos_y;
285 client->pos_x = packet->x;
286 client->pos_y = packet->y;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 }
288
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400289 client->pos_x += packet->dx;
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400290 client->pos_x = client->pos_x < 0 ?
291 0 : (client->pos_x >= xres ? xres : client->pos_x);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400292 client->pos_y += packet->dy;
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400293 client->pos_y = client->pos_y < 0 ?
294 0 : (client->pos_y >= yres ? yres : client->pos_y);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
296 p->dx += packet->dx;
297 p->dy += packet->dy;
298 p->dz += packet->dz;
299 p->buttons = mousedev->packet.buttons;
300
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400301 if (p->dx || p->dy || p->dz ||
302 p->buttons != client->last_buttons)
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400303 client->ready = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400305 spin_unlock(&client->packet_lock);
Pavel Machekc1e4c8d2005-05-27 12:53:03 -0700306
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400307 if (client->ready) {
308 kill_fasync(&client->fasync, SIGIO, POLL_IN);
Dmitry Torokhov81211522005-06-01 02:39:36 -0500309 wake_readers = 1;
310 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 }
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400312 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Dmitry Torokhov81211522005-06-01 02:39:36 -0500314 if (wake_readers)
315 wake_up_interruptible(&mousedev->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316}
317
318static void mousedev_touchpad_touch(struct mousedev *mousedev, int value)
319{
320 if (!value) {
321 if (mousedev->touch &&
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400322 time_before(jiffies,
323 mousedev->touch + msecs_to_jiffies(tap_time))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 /*
325 * Toggle left button to emulate tap.
326 * We rely on the fact that mousedev_mix always has 0
327 * motion packet so we won't mess current position.
328 */
329 set_bit(0, &mousedev->packet.buttons);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400330 set_bit(0, &mousedev_mix->packet.buttons);
331 mousedev_notify_readers(mousedev, &mousedev_mix->packet);
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400332 mousedev_notify_readers(mousedev_mix,
333 &mousedev_mix->packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 clear_bit(0, &mousedev->packet.buttons);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400335 clear_bit(0, &mousedev_mix->packet.buttons);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 }
337 mousedev->touch = mousedev->pkt_count = 0;
338 mousedev->frac_dx = 0;
339 mousedev->frac_dy = 0;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400340
341 } else if (!mousedev->touch)
342 mousedev->touch = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343}
344
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400345static void mousedev_event(struct input_handle *handle,
346 unsigned int type, unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
348 struct mousedev *mousedev = handle->private;
349
350 switch (type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400352 case EV_ABS:
353 /* Ignore joysticks */
354 if (test_bit(BTN_TRIGGER, handle->dev->keybit))
355 return;
356
357 if (test_bit(BTN_TOOL_FINGER, handle->dev->keybit))
358 mousedev_touchpad_event(handle->dev,
359 mousedev, code, value);
360 else
361 mousedev_abs_event(handle->dev, mousedev, code, value);
362
363 break;
364
365 case EV_REL:
366 mousedev_rel_event(mousedev, code, value);
367 break;
368
369 case EV_KEY:
370 if (value != 2) {
371 if (code == BTN_TOUCH &&
372 test_bit(BTN_TOOL_FINGER, handle->dev->keybit))
373 mousedev_touchpad_touch(mousedev, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 else
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400375 mousedev_key_event(mousedev, code, value);
376 }
377 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400379 case EV_SYN:
380 if (code == SYN_REPORT) {
381 if (mousedev->touch) {
382 mousedev->pkt_count++;
383 /*
384 * Input system eats duplicate events,
385 * but we need all of them to do correct
386 * averaging so apply present one forward
387 */
388 fx(0) = fx(1);
389 fy(0) = fy(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400392 mousedev_notify_readers(mousedev, &mousedev->packet);
393 mousedev_notify_readers(mousedev_mix, &mousedev->packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400395 mousedev->packet.dx = mousedev->packet.dy =
396 mousedev->packet.dz = 0;
397 mousedev->packet.abs_event = 0;
398 }
399 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 }
401}
402
403static int mousedev_fasync(int fd, struct file *file, int on)
404{
405 int retval;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400406 struct mousedev_client *client = file->private_data;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400407
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400408 retval = fasync_helper(fd, file, on, &client->fasync);
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 return retval < 0 ? retval : 0;
411}
412
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400413static void mousedev_free(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414{
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400415 struct mousedev *mousedev = container_of(dev, struct mousedev, dev);
416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 kfree(mousedev);
418}
419
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400420static int mousedev_open_device(struct mousedev *mousedev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400422 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400424 retval = mutex_lock_interruptible(&mousedev->mutex);
425 if (retval)
426 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400428 if (mousedev->minor == MOUSEDEV_MIX)
429 mixdev_open_devices();
430 else if (!mousedev->exist)
431 retval = -ENODEV;
Oliver Neukum06445012007-10-12 14:18:40 -0400432 else if (!mousedev->open++) {
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400433 retval = input_open_device(&mousedev->handle);
Oliver Neukum06445012007-10-12 14:18:40 -0400434 if (retval)
435 mousedev->open--;
436 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400438 mutex_unlock(&mousedev->mutex);
439 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440}
441
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400442static void mousedev_close_device(struct mousedev *mousedev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400444 mutex_lock(&mousedev->mutex);
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400445
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400446 if (mousedev->minor == MOUSEDEV_MIX)
447 mixdev_close_devices();
448 else if (mousedev->exist && !--mousedev->open)
449 input_close_device(&mousedev->handle);
450
451 mutex_unlock(&mousedev->mutex);
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400452}
453
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400454/*
455 * Open all available devices so they can all be multiplexed in one.
456 * stream. Note that this function is called with mousedev_mix->mutex
457 * held.
458 */
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400459static void mixdev_open_devices(void)
460{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 struct mousedev *mousedev;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400462
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400463 if (mousedev_mix->open++)
464 return;
465
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400466 list_for_each_entry(mousedev, &mousedev_mix_list, mixdev_node) {
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400467 if (!mousedev->mixdev_open) {
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400468 if (mousedev_open_device(mousedev))
469 continue;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400470
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400471 mousedev->mixdev_open = 1;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400472 }
473 }
474}
475
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400476/*
477 * Close all devices that were opened as part of multiplexed
478 * device. Note that this function is called with mousedev_mix->mutex
479 * held.
480 */
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400481static void mixdev_close_devices(void)
482{
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400483 struct mousedev *mousedev;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400484
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400485 if (--mousedev_mix->open)
486 return;
487
488 list_for_each_entry(mousedev, &mousedev_mix_list, mixdev_node) {
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400489 if (mousedev->mixdev_open) {
490 mousedev->mixdev_open = 0;
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400491 mousedev_close_device(mousedev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 }
493 }
494}
495
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400496
497static void mousedev_attach_client(struct mousedev *mousedev,
498 struct mousedev_client *client)
499{
500 spin_lock(&mousedev->client_lock);
501 list_add_tail_rcu(&client->node, &mousedev->client_list);
502 spin_unlock(&mousedev->client_lock);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400503 synchronize_rcu();
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400504}
505
506static void mousedev_detach_client(struct mousedev *mousedev,
507 struct mousedev_client *client)
508{
509 spin_lock(&mousedev->client_lock);
510 list_del_rcu(&client->node);
511 spin_unlock(&mousedev->client_lock);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400512 synchronize_rcu();
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400513}
514
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400515static int mousedev_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400517 struct mousedev_client *client = file->private_data;
518 struct mousedev *mousedev = client->mousedev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520 mousedev_fasync(-1, file, 0);
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400521 mousedev_detach_client(mousedev, client);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400522 kfree(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400524 mousedev_close_device(mousedev);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400525 put_device(&mousedev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 return 0;
528}
529
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400530static int mousedev_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400532 struct mousedev_client *client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 struct mousedev *mousedev;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400534 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 int i;
536
537#ifdef CONFIG_INPUT_MOUSEDEV_PSAUX
538 if (imajor(inode) == MISC_MAJOR)
539 i = MOUSEDEV_MIX;
540 else
541#endif
542 i = iminor(inode) - MOUSEDEV_MINOR_BASE;
543
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400544 if (i >= MOUSEDEV_MINORS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 return -ENODEV;
546
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400547 error = mutex_lock_interruptible(&mousedev_table_mutex);
548 if (error)
549 return error;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400550 mousedev = mousedev_table[i];
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400551 if (mousedev)
552 get_device(&mousedev->dev);
553 mutex_unlock(&mousedev_table_mutex);
554
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400555 if (!mousedev)
556 return -ENODEV;
557
558 client = kzalloc(sizeof(struct mousedev_client), GFP_KERNEL);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400559 if (!client) {
560 error = -ENOMEM;
561 goto err_put_mousedev;
562 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400564 spin_lock_init(&client->packet_lock);
565 client->pos_x = xres / 2;
566 client->pos_y = yres / 2;
567 client->mousedev = mousedev;
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400568 mousedev_attach_client(mousedev, client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400570 error = mousedev_open_device(mousedev);
571 if (error)
572 goto err_free_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400574 file->private_data = client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 return 0;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400576
577 err_free_client:
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400578 mousedev_detach_client(mousedev, client);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400579 kfree(client);
580 err_put_mousedev:
581 put_device(&mousedev->dev);
582 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583}
584
585static inline int mousedev_limit_delta(int delta, int limit)
586{
587 return delta > limit ? limit : (delta < -limit ? -limit : delta);
588}
589
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400590static void mousedev_packet(struct mousedev_client *client,
591 signed char *ps2_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592{
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400593 struct mousedev_motion *p = &client->packets[client->tail];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400595 ps2_data[0] = 0x08 |
596 ((p->dx < 0) << 4) | ((p->dy < 0) << 5) | (p->buttons & 0x07);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 ps2_data[1] = mousedev_limit_delta(p->dx, 127);
598 ps2_data[2] = mousedev_limit_delta(p->dy, 127);
599 p->dx -= ps2_data[1];
600 p->dy -= ps2_data[2];
601
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400602 switch (client->mode) {
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400603 case MOUSEDEV_EMUL_EXPS:
604 ps2_data[3] = mousedev_limit_delta(p->dz, 7);
605 p->dz -= ps2_data[3];
606 ps2_data[3] = (ps2_data[3] & 0x0f) | ((p->buttons & 0x18) << 1);
607 client->bufsiz = 4;
608 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400610 case MOUSEDEV_EMUL_IMPS:
611 ps2_data[0] |=
612 ((p->buttons & 0x10) >> 3) | ((p->buttons & 0x08) >> 1);
613 ps2_data[3] = mousedev_limit_delta(p->dz, 127);
614 p->dz -= ps2_data[3];
615 client->bufsiz = 4;
616 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400618 case MOUSEDEV_EMUL_PS2:
619 default:
620 ps2_data[0] |=
621 ((p->buttons & 0x10) >> 3) | ((p->buttons & 0x08) >> 1);
622 p->dz = 0;
623 client->bufsiz = 3;
624 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 }
626
627 if (!p->dx && !p->dy && !p->dz) {
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400628 if (client->tail == client->head) {
629 client->ready = 0;
630 client->last_buttons = p->buttons;
Pavel Machekc1e4c8d2005-05-27 12:53:03 -0700631 } else
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400632 client->tail = (client->tail + 1) % PACKET_QUEUE_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634}
635
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400636static void mousedev_generate_response(struct mousedev_client *client,
637 int command)
638{
639 client->ps2[0] = 0xfa; /* ACK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400641 switch (command) {
642
643 case 0xeb: /* Poll */
644 mousedev_packet(client, &client->ps2[1]);
645 client->bufsiz++; /* account for leading ACK */
646 break;
647
648 case 0xf2: /* Get ID */
649 switch (client->mode) {
650 case MOUSEDEV_EMUL_PS2:
651 client->ps2[1] = 0;
652 break;
653 case MOUSEDEV_EMUL_IMPS:
654 client->ps2[1] = 3;
655 break;
656 case MOUSEDEV_EMUL_EXPS:
657 client->ps2[1] = 4;
658 break;
659 }
660 client->bufsiz = 2;
661 break;
662
663 case 0xe9: /* Get info */
664 client->ps2[1] = 0x60; client->ps2[2] = 3; client->ps2[3] = 200;
665 client->bufsiz = 4;
666 break;
667
668 case 0xff: /* Reset */
669 client->impsseq = client->imexseq = 0;
670 client->mode = MOUSEDEV_EMUL_PS2;
671 client->ps2[1] = 0xaa; client->ps2[2] = 0x00;
672 client->bufsiz = 3;
673 break;
674
675 default:
676 client->bufsiz = 1;
677 break;
678 }
679 client->buffer = client->bufsiz;
680}
681
682static ssize_t mousedev_write(struct file *file, const char __user *buffer,
683 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400685 struct mousedev_client *client = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 unsigned char c;
687 unsigned int i;
688
689 for (i = 0; i < count; i++) {
690
691 if (get_user(c, buffer + i))
692 return -EFAULT;
693
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400694 spin_lock_irq(&client->packet_lock);
695
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400696 if (c == mousedev_imex_seq[client->imexseq]) {
697 if (++client->imexseq == MOUSEDEV_SEQ_LEN) {
698 client->imexseq = 0;
699 client->mode = MOUSEDEV_EMUL_EXPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 }
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400701 } else
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400702 client->imexseq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400704 if (c == mousedev_imps_seq[client->impsseq]) {
705 if (++client->impsseq == MOUSEDEV_SEQ_LEN) {
706 client->impsseq = 0;
707 client->mode = MOUSEDEV_EMUL_IMPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 }
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400709 } else
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400710 client->impsseq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400712 mousedev_generate_response(client, c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400714 spin_unlock_irq(&client->packet_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 }
716
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400717 kill_fasync(&client->fasync, SIGIO, POLL_IN);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400718 wake_up_interruptible(&client->mousedev->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
720 return count;
721}
722
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400723static ssize_t mousedev_read(struct file *file, char __user *buffer,
724 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400726 struct mousedev_client *client = file->private_data;
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400727 struct mousedev *mousedev = client->mousedev;
728 signed char data[sizeof(client->ps2)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 int retval = 0;
730
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400731 if (!client->ready && !client->buffer && mousedev->exist &&
732 (file->f_flags & O_NONBLOCK))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 return -EAGAIN;
734
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400735 retval = wait_event_interruptible(mousedev->wait,
736 !mousedev->exist || client->ready || client->buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 if (retval)
738 return retval;
739
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400740 if (!mousedev->exist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 return -ENODEV;
742
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400743 spin_lock_irq(&client->packet_lock);
744
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400745 if (!client->buffer && client->ready) {
746 mousedev_packet(client, client->ps2);
747 client->buffer = client->bufsiz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 }
749
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400750 if (count > client->buffer)
751 count = client->buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400753 memcpy(data, client->ps2 + client->bufsiz - client->buffer, count);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400754 client->buffer -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400756 spin_unlock_irq(&client->packet_lock);
757
758 if (copy_to_user(buffer, data, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 return -EFAULT;
760
761 return count;
762}
763
764/* No kernel lock - fine */
765static unsigned int mousedev_poll(struct file *file, poll_table *wait)
766{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400767 struct mousedev_client *client = file->private_data;
768 struct mousedev *mousedev = client->mousedev;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400769
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400770 poll_wait(file, &mousedev->wait, wait);
771 return ((client->ready || client->buffer) ? (POLLIN | POLLRDNORM) : 0) |
772 (mousedev->exist ? 0 : (POLLHUP | POLLERR));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773}
774
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400775static const struct file_operations mousedev_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 .owner = THIS_MODULE,
777 .read = mousedev_read,
778 .write = mousedev_write,
779 .poll = mousedev_poll,
780 .open = mousedev_open,
781 .release = mousedev_release,
782 .fasync = mousedev_fasync,
783};
784
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400785static int mousedev_install_chrdev(struct mousedev *mousedev)
786{
787 mousedev_table[mousedev->minor] = mousedev;
788 return 0;
789}
790
791static void mousedev_remove_chrdev(struct mousedev *mousedev)
792{
793 mutex_lock(&mousedev_table_mutex);
794 mousedev_table[mousedev->minor] = NULL;
795 mutex_unlock(&mousedev_table_mutex);
796}
797
798/*
799 * Mark device non-existent. This disables writes, ioctls and
800 * prevents new users from opening the device. Already posted
801 * blocking reads will stay, however new ones will fail.
802 */
803static void mousedev_mark_dead(struct mousedev *mousedev)
804{
805 mutex_lock(&mousedev->mutex);
806 mousedev->exist = 0;
807 mutex_unlock(&mousedev->mutex);
808}
809
810/*
811 * Wake up users waiting for IO so they can disconnect from
812 * dead device.
813 */
814static void mousedev_hangup(struct mousedev *mousedev)
815{
816 struct mousedev_client *client;
817
818 spin_lock(&mousedev->client_lock);
819 list_for_each_entry(client, &mousedev->client_list, node)
820 kill_fasync(&client->fasync, SIGIO, POLL_HUP);
821 spin_unlock(&mousedev->client_lock);
822
823 wake_up_interruptible(&mousedev->wait);
824}
825
826static void mousedev_cleanup(struct mousedev *mousedev)
827{
828 struct input_handle *handle = &mousedev->handle;
829
830 mousedev_mark_dead(mousedev);
831 mousedev_hangup(mousedev);
832 mousedev_remove_chrdev(mousedev);
833
834 /* mousedev is marked dead so no one else accesses mousedev->open */
835 if (mousedev->open)
836 input_close_device(handle);
837}
838
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400839static struct mousedev *mousedev_create(struct input_dev *dev,
840 struct input_handler *handler,
841 int minor)
842{
843 struct mousedev *mousedev;
844 int error;
845
846 mousedev = kzalloc(sizeof(struct mousedev), GFP_KERNEL);
847 if (!mousedev) {
848 error = -ENOMEM;
849 goto err_out;
850 }
851
852 INIT_LIST_HEAD(&mousedev->client_list);
853 INIT_LIST_HEAD(&mousedev->mixdev_node);
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400854 spin_lock_init(&mousedev->client_lock);
855 mutex_init(&mousedev->mutex);
856 lockdep_set_subclass(&mousedev->mutex,
857 minor == MOUSEDEV_MIX ? MOUSEDEV_MIX : 0);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400858 init_waitqueue_head(&mousedev->wait);
859
860 if (minor == MOUSEDEV_MIX)
861 strlcpy(mousedev->name, "mice", sizeof(mousedev->name));
862 else
863 snprintf(mousedev->name, sizeof(mousedev->name),
864 "mouse%d", minor);
865
866 mousedev->minor = minor;
867 mousedev->exist = 1;
868 mousedev->handle.dev = dev;
869 mousedev->handle.name = mousedev->name;
870 mousedev->handle.handler = handler;
871 mousedev->handle.private = mousedev;
872
873 strlcpy(mousedev->dev.bus_id, mousedev->name,
874 sizeof(mousedev->dev.bus_id));
875 mousedev->dev.class = &input_class;
876 if (dev)
877 mousedev->dev.parent = &dev->dev;
878 mousedev->dev.devt = MKDEV(INPUT_MAJOR, MOUSEDEV_MINOR_BASE + minor);
879 mousedev->dev.release = mousedev_free;
880 device_initialize(&mousedev->dev);
881
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400882 if (minor != MOUSEDEV_MIX) {
883 error = input_register_handle(&mousedev->handle);
884 if (error)
885 goto err_free_mousedev;
886 }
887
888 error = mousedev_install_chrdev(mousedev);
889 if (error)
890 goto err_unregister_handle;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400891
892 error = device_add(&mousedev->dev);
893 if (error)
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400894 goto err_cleanup_mousedev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400895
896 return mousedev;
897
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400898 err_cleanup_mousedev:
899 mousedev_cleanup(mousedev);
900 err_unregister_handle:
901 if (minor != MOUSEDEV_MIX)
902 input_unregister_handle(&mousedev->handle);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400903 err_free_mousedev:
904 put_device(&mousedev->dev);
905 err_out:
906 return ERR_PTR(error);
907}
908
909static void mousedev_destroy(struct mousedev *mousedev)
910{
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400911 device_del(&mousedev->dev);
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400912 mousedev_cleanup(mousedev);
913 if (mousedev->minor != MOUSEDEV_MIX)
914 input_unregister_handle(&mousedev->handle);
915 put_device(&mousedev->dev);
916}
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400917
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400918static int mixdev_add_device(struct mousedev *mousedev)
919{
920 int retval;
921
922 retval = mutex_lock_interruptible(&mousedev_mix->mutex);
923 if (retval)
924 return retval;
925
926 if (mousedev_mix->open) {
927 retval = mousedev_open_device(mousedev);
928 if (retval)
929 goto out;
930
931 mousedev->mixdev_open = 1;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400932 }
933
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400934 get_device(&mousedev->dev);
935 list_add_tail(&mousedev->mixdev_node, &mousedev_mix_list);
936
937 out:
938 mutex_unlock(&mousedev_mix->mutex);
939 return retval;
940}
941
942static void mixdev_remove_device(struct mousedev *mousedev)
943{
944 mutex_lock(&mousedev_mix->mutex);
945
946 if (mousedev->mixdev_open) {
947 mousedev->mixdev_open = 0;
948 mousedev_close_device(mousedev);
949 }
950
951 list_del_init(&mousedev->mixdev_node);
952 mutex_unlock(&mousedev_mix->mutex);
953
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400954 put_device(&mousedev->dev);
955}
956
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400957static int mousedev_connect(struct input_handler *handler,
958 struct input_dev *dev,
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400959 const struct input_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960{
961 struct mousedev *mousedev;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400962 int minor;
963 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400965 for (minor = 0; minor < MOUSEDEV_MINORS; minor++)
966 if (!mousedev_table[minor])
967 break;
968
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 if (minor == MOUSEDEV_MINORS) {
970 printk(KERN_ERR "mousedev: no more free mousedev devices\n");
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400971 return -ENFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 }
973
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400974 mousedev = mousedev_create(dev, handler, minor);
975 if (IS_ERR(mousedev))
976 return PTR_ERR(mousedev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400978 error = mixdev_add_device(mousedev);
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400979 if (error) {
980 mousedev_destroy(mousedev);
981 return error;
982 }
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400983
984 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985}
986
987static void mousedev_disconnect(struct input_handle *handle)
988{
989 struct mousedev *mousedev = handle->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400991 mixdev_remove_device(mousedev);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400992 mousedev_destroy(mousedev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993}
994
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400995static const struct input_device_id mousedev_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 {
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400997 .flags = INPUT_DEVICE_ID_MATCH_EVBIT |
998 INPUT_DEVICE_ID_MATCH_KEYBIT |
999 INPUT_DEVICE_ID_MATCH_RELBIT,
Jiri Slaby7b19ada2007-10-18 23:40:32 -07001000 .evbit = { BIT_MASK(EV_KEY) | BIT_MASK(EV_REL) },
1001 .keybit = { [BIT_WORD(BTN_LEFT)] = BIT_MASK(BTN_LEFT) },
1002 .relbit = { BIT_MASK(REL_X) | BIT_MASK(REL_Y) },
Dmitry Torokhov464b2412007-08-30 00:22:24 -04001003 }, /* A mouse like device, at least one button,
1004 two relative axes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 {
Dmitry Torokhov464b2412007-08-30 00:22:24 -04001006 .flags = INPUT_DEVICE_ID_MATCH_EVBIT |
1007 INPUT_DEVICE_ID_MATCH_RELBIT,
Jiri Slaby7b19ada2007-10-18 23:40:32 -07001008 .evbit = { BIT_MASK(EV_KEY) | BIT_MASK(EV_REL) },
1009 .relbit = { BIT_MASK(REL_WHEEL) },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 }, /* A separate scrollwheel */
1011 {
Dmitry Torokhov464b2412007-08-30 00:22:24 -04001012 .flags = INPUT_DEVICE_ID_MATCH_EVBIT |
1013 INPUT_DEVICE_ID_MATCH_KEYBIT |
1014 INPUT_DEVICE_ID_MATCH_ABSBIT,
Jiri Slaby7b19ada2007-10-18 23:40:32 -07001015 .evbit = { BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS) },
1016 .keybit = { [BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH) },
1017 .absbit = { BIT_MASK(ABS_X) | BIT_MASK(ABS_Y) },
Dmitry Torokhov464b2412007-08-30 00:22:24 -04001018 }, /* A tablet like device, at least touch detection,
1019 two absolute axes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 {
Dmitry Torokhov464b2412007-08-30 00:22:24 -04001021 .flags = INPUT_DEVICE_ID_MATCH_EVBIT |
1022 INPUT_DEVICE_ID_MATCH_KEYBIT |
1023 INPUT_DEVICE_ID_MATCH_ABSBIT,
Jiri Slaby7b19ada2007-10-18 23:40:32 -07001024 .evbit = { BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS) },
1025 .keybit = { [BIT_WORD(BTN_TOOL_FINGER)] =
1026 BIT_MASK(BTN_TOOL_FINGER) },
1027 .absbit = { BIT_MASK(ABS_X) | BIT_MASK(ABS_Y) |
1028 BIT_MASK(ABS_PRESSURE) |
1029 BIT_MASK(ABS_TOOL_WIDTH) },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 }, /* A touchpad */
Micah Parrish6724f932008-01-17 12:01:04 -05001031 {
1032 .flags = INPUT_DEVICE_ID_MATCH_EVBIT |
1033 INPUT_DEVICE_ID_MATCH_KEYBIT |
1034 INPUT_DEVICE_ID_MATCH_ABSBIT,
Dmitry Torokhovd182c102008-01-30 16:33:40 -05001035 .evbit = { BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS) },
Micah Parrish6724f932008-01-17 12:01:04 -05001036 .keybit = { [BIT_WORD(BTN_LEFT)] = BIT_MASK(BTN_LEFT) },
1037 .absbit = { BIT_MASK(ABS_X) | BIT_MASK(ABS_Y) },
1038 }, /* Mouse-like device with absolute X and Y but ordinary
1039 clicks, like hp ILO2 High Performance mouse */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -04001041 { }, /* Terminating entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042};
1043
1044MODULE_DEVICE_TABLE(input, mousedev_ids);
1045
1046static struct input_handler mousedev_handler = {
1047 .event = mousedev_event,
1048 .connect = mousedev_connect,
1049 .disconnect = mousedev_disconnect,
1050 .fops = &mousedev_fops,
1051 .minor = MOUSEDEV_MINOR_BASE,
1052 .name = "mousedev",
1053 .id_table = mousedev_ids,
1054};
1055
1056#ifdef CONFIG_INPUT_MOUSEDEV_PSAUX
1057static struct miscdevice psaux_mouse = {
1058 PSMOUSE_MINOR, "psaux", &mousedev_fops
1059};
1060static int psaux_registered;
1061#endif
1062
1063static int __init mousedev_init(void)
1064{
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001065 int error;
1066
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001067 mousedev_mix = mousedev_create(NULL, &mousedev_handler, MOUSEDEV_MIX);
1068 if (IS_ERR(mousedev_mix))
1069 return PTR_ERR(mousedev_mix);
1070
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001071 error = input_register_handler(&mousedev_handler);
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001072 if (error) {
1073 mousedev_destroy(mousedev_mix);
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001074 return error;
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001075 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
1077#ifdef CONFIG_INPUT_MOUSEDEV_PSAUX
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001078 error = misc_register(&psaux_mouse);
1079 if (error)
1080 printk(KERN_WARNING "mice: could not register psaux device, "
1081 "error: %d\n", error);
1082 else
1083 psaux_registered = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084#endif
1085
1086 printk(KERN_INFO "mice: PS/2 mouse device common for all mice\n");
1087
1088 return 0;
1089}
1090
1091static void __exit mousedev_exit(void)
1092{
1093#ifdef CONFIG_INPUT_MOUSEDEV_PSAUX
1094 if (psaux_registered)
1095 misc_deregister(&psaux_mouse);
1096#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 input_unregister_handler(&mousedev_handler);
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001098 mousedev_destroy(mousedev_mix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099}
1100
1101module_init(mousedev_init);
1102module_exit(mousedev_exit);