blob: 8f02e3d0e712789dc2cccbb0cb52fe40fc0620db [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
Joe Perchesda0c4902010-11-29 23:33:07 -080012#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
Dmitry Torokhov4f004692005-09-15 02:01:38 -050014#define MOUSEDEV_MINOR_BASE 32
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#define MOUSEDEV_MINORS 32
16#define MOUSEDEV_MIX 31
17
Alexey Dobriyana99bbaf2009-10-04 16:11:37 +040018#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/slab.h>
20#include <linux/poll.h>
21#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/init.h>
23#include <linux/input.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/random.h>
25#include <linux/major.h>
26#include <linux/device.h>
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -070027#include <linux/cdev.h>
Daniel Mack987a6c02010-08-02 20:15:17 -070028#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
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 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 int open;
Dmitry Torokhov464b2412007-08-30 00:22:24 -040062 struct input_handle handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 wait_queue_head_t wait;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040064 struct list_head client_list;
Dmitry Torokhov464b2412007-08-30 00:22:24 -040065 spinlock_t client_lock; /* protects client_list */
66 struct mutex mutex;
Dmitry Torokhov9657d752007-06-14 23:32:24 -040067 struct device dev;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -070068 struct cdev cdev;
Dmitry Torokhov20da92d2010-07-15 23:27:36 -070069 bool exist;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -070070 bool is_mixdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Dmitry Torokhovd542ed82007-04-12 01:30:15 -040072 struct list_head mixdev_node;
Dmitry Torokhov3376b8b2012-10-08 09:07:24 -070073 bool opened_by_mixdev;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -040074
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 struct mousedev_hw_data packet;
76 unsigned int pkt_count;
77 int old_x[4], old_y[4];
78 int frac_dx, frac_dy;
79 unsigned long touch;
80};
81
82enum mousedev_emul {
83 MOUSEDEV_EMUL_PS2,
84 MOUSEDEV_EMUL_IMPS,
85 MOUSEDEV_EMUL_EXPS
86};
87
88struct mousedev_motion {
89 int dx, dy, dz;
90 unsigned long buttons;
91};
92
93#define PACKET_QUEUE_LEN 16
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040094struct mousedev_client {
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 struct fasync_struct *fasync;
96 struct mousedev *mousedev;
97 struct list_head node;
98
99 struct mousedev_motion packets[PACKET_QUEUE_LEN];
100 unsigned int head, tail;
101 spinlock_t packet_lock;
102 int pos_x, pos_y;
103
104 signed char ps2[6];
105 unsigned char ready, buffer, bufsiz;
106 unsigned char imexseq, impsseq;
107 enum mousedev_emul mode;
Pavel Machekc1e4c8d2005-05-27 12:53:03 -0700108 unsigned long last_buttons;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109};
110
111#define MOUSEDEV_SEQ_LEN 6
112
113static unsigned char mousedev_imps_seq[] = { 0xf3, 200, 0xf3, 100, 0xf3, 80 };
114static unsigned char mousedev_imex_seq[] = { 0xf3, 200, 0xf3, 200, 0xf3, 80 };
115
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400116static 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
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400119static void mixdev_open_devices(void);
120static void mixdev_close_devices(void);
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122#define fx(i) (mousedev->old_x[(mousedev->pkt_count - (i)) & 03])
123#define fy(i) (mousedev->old_y[(mousedev->pkt_count - (i)) & 03])
124
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400125static void mousedev_touchpad_event(struct input_dev *dev,
126 struct mousedev *mousedev,
127 unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
129 int size, tmp;
130 enum { FRACTION_DENOM = 128 };
131
Dmitry Torokhov0d9d93c2007-04-12 01:31:55 -0400132 switch (code) {
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400133
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400134 case ABS_X:
Daniel Mack987a6c02010-08-02 20:15:17 -0700135
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400136 fx(0) = value;
137 if (mousedev->touch && mousedev->pkt_count >= 2) {
Christoph Fritz268ba5c2010-08-24 00:33:37 -0700138 size = input_abs_get_max(dev, ABS_X) -
139 input_abs_get_min(dev, ABS_X);
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400140 if (size == 0)
141 size = 256 * 2;
Daniel Mack987a6c02010-08-02 20:15:17 -0700142
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400143 tmp = ((value - fx(2)) * 256 * FRACTION_DENOM) / size;
144 tmp += mousedev->frac_dx;
145 mousedev->packet.dx = tmp / FRACTION_DENOM;
146 mousedev->frac_dx =
147 tmp - mousedev->packet.dx * FRACTION_DENOM;
148 }
149 break;
150
151 case ABS_Y:
152 fy(0) = value;
153 if (mousedev->touch && mousedev->pkt_count >= 2) {
Daniel Mack987a6c02010-08-02 20:15:17 -0700154 /* use X size for ABS_Y to keep the same scale */
Christoph Fritz268ba5c2010-08-24 00:33:37 -0700155 size = input_abs_get_max(dev, ABS_X) -
156 input_abs_get_min(dev, ABS_X);
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400157 if (size == 0)
158 size = 256 * 2;
Daniel Mack987a6c02010-08-02 20:15:17 -0700159
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400160 tmp = -((value - fy(2)) * 256 * FRACTION_DENOM) / size;
161 tmp += mousedev->frac_dy;
162 mousedev->packet.dy = tmp / FRACTION_DENOM;
163 mousedev->frac_dy = tmp -
164 mousedev->packet.dy * FRACTION_DENOM;
165 }
166 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 }
168}
169
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400170static void mousedev_abs_event(struct input_dev *dev, struct mousedev *mousedev,
171 unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
Daniel Mack987a6c02010-08-02 20:15:17 -0700173 int min, max, size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175 switch (code) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400177 case ABS_X:
Daniel Mack987a6c02010-08-02 20:15:17 -0700178 min = input_abs_get_min(dev, ABS_X);
179 max = input_abs_get_max(dev, ABS_X);
180
181 size = max - min;
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400182 if (size == 0)
183 size = xres ? : 1;
Daniel Mack987a6c02010-08-02 20:15:17 -0700184
Hans Petter Selasky8c127f02011-05-25 09:24:32 -0700185 value = clamp(value, min, max);
Daniel Mack987a6c02010-08-02 20:15:17 -0700186
187 mousedev->packet.x = ((value - min) * xres) / size;
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400188 mousedev->packet.abs_event = 1;
189 break;
190
191 case ABS_Y:
Daniel Mack987a6c02010-08-02 20:15:17 -0700192 min = input_abs_get_min(dev, ABS_Y);
193 max = input_abs_get_max(dev, ABS_Y);
194
195 size = max - min;
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400196 if (size == 0)
197 size = yres ? : 1;
Daniel Mack987a6c02010-08-02 20:15:17 -0700198
Hans Petter Selasky8c127f02011-05-25 09:24:32 -0700199 value = clamp(value, min, max);
Daniel Mack987a6c02010-08-02 20:15:17 -0700200
201 mousedev->packet.y = yres - ((value - min) * yres) / size;
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400202 mousedev->packet.abs_event = 1;
203 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 }
205}
206
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400207static void mousedev_rel_event(struct mousedev *mousedev,
208 unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
210 switch (code) {
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400211 case REL_X:
212 mousedev->packet.dx += value;
213 break;
214
215 case REL_Y:
216 mousedev->packet.dy -= value;
217 break;
218
219 case REL_WHEEL:
220 mousedev->packet.dz -= value;
221 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 }
223}
224
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400225static void mousedev_key_event(struct mousedev *mousedev,
226 unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
228 int index;
229
230 switch (code) {
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400231
232 case BTN_TOUCH:
233 case BTN_0:
234 case BTN_LEFT: index = 0; break;
235
236 case BTN_STYLUS:
237 case BTN_1:
238 case BTN_RIGHT: index = 1; break;
239
240 case BTN_2:
241 case BTN_FORWARD:
242 case BTN_STYLUS2:
243 case BTN_MIDDLE: index = 2; break;
244
245 case BTN_3:
246 case BTN_BACK:
247 case BTN_SIDE: index = 3; break;
248
249 case BTN_4:
250 case BTN_EXTRA: index = 4; break;
251
252 default: return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 }
254
255 if (value) {
256 set_bit(index, &mousedev->packet.buttons);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400257 set_bit(index, &mousedev_mix->packet.buttons);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 } else {
259 clear_bit(index, &mousedev->packet.buttons);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400260 clear_bit(index, &mousedev_mix->packet.buttons);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 }
262}
263
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400264static void mousedev_notify_readers(struct mousedev *mousedev,
265 struct mousedev_hw_data *packet)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400267 struct mousedev_client *client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 struct mousedev_motion *p;
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400269 unsigned int new_head;
Dmitry Torokhov81211522005-06-01 02:39:36 -0500270 int wake_readers = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400272 rcu_read_lock();
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400273 list_for_each_entry_rcu(client, &mousedev->client_list, node) {
274
275 /* Just acquire the lock, interrupts already disabled */
276 spin_lock(&client->packet_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400278 p = &client->packets[client->head];
279 if (client->ready && p->buttons != mousedev->packet.buttons) {
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400280 new_head = (client->head + 1) % PACKET_QUEUE_LEN;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400281 if (new_head != client->tail) {
282 p = &client->packets[client->head = new_head];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 memset(p, 0, sizeof(struct mousedev_motion));
284 }
285 }
286
287 if (packet->abs_event) {
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400288 p->dx += packet->x - client->pos_x;
289 p->dy += packet->y - client->pos_y;
290 client->pos_x = packet->x;
291 client->pos_y = packet->y;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
293
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400294 client->pos_x += packet->dx;
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400295 client->pos_x = client->pos_x < 0 ?
296 0 : (client->pos_x >= xres ? xres : client->pos_x);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400297 client->pos_y += packet->dy;
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400298 client->pos_y = client->pos_y < 0 ?
299 0 : (client->pos_y >= yres ? yres : client->pos_y);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301 p->dx += packet->dx;
302 p->dy += packet->dy;
303 p->dz += packet->dz;
304 p->buttons = mousedev->packet.buttons;
305
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400306 if (p->dx || p->dy || p->dz ||
307 p->buttons != client->last_buttons)
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400308 client->ready = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400310 spin_unlock(&client->packet_lock);
Pavel Machekc1e4c8d2005-05-27 12:53:03 -0700311
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400312 if (client->ready) {
313 kill_fasync(&client->fasync, SIGIO, POLL_IN);
Dmitry Torokhov81211522005-06-01 02:39:36 -0500314 wake_readers = 1;
315 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 }
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400317 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Dmitry Torokhov81211522005-06-01 02:39:36 -0500319 if (wake_readers)
320 wake_up_interruptible(&mousedev->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321}
322
323static void mousedev_touchpad_touch(struct mousedev *mousedev, int value)
324{
325 if (!value) {
326 if (mousedev->touch &&
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400327 time_before(jiffies,
328 mousedev->touch + msecs_to_jiffies(tap_time))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 /*
330 * Toggle left button to emulate tap.
331 * We rely on the fact that mousedev_mix always has 0
332 * motion packet so we won't mess current position.
333 */
334 set_bit(0, &mousedev->packet.buttons);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400335 set_bit(0, &mousedev_mix->packet.buttons);
336 mousedev_notify_readers(mousedev, &mousedev_mix->packet);
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400337 mousedev_notify_readers(mousedev_mix,
338 &mousedev_mix->packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 clear_bit(0, &mousedev->packet.buttons);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400340 clear_bit(0, &mousedev_mix->packet.buttons);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 }
342 mousedev->touch = mousedev->pkt_count = 0;
343 mousedev->frac_dx = 0;
344 mousedev->frac_dy = 0;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400345
346 } else if (!mousedev->touch)
347 mousedev->touch = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348}
349
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400350static void mousedev_event(struct input_handle *handle,
351 unsigned int type, unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
353 struct mousedev *mousedev = handle->private;
354
355 switch (type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400357 case EV_ABS:
358 /* Ignore joysticks */
359 if (test_bit(BTN_TRIGGER, handle->dev->keybit))
360 return;
361
362 if (test_bit(BTN_TOOL_FINGER, handle->dev->keybit))
363 mousedev_touchpad_event(handle->dev,
364 mousedev, code, value);
365 else
366 mousedev_abs_event(handle->dev, mousedev, code, value);
367
368 break;
369
370 case EV_REL:
371 mousedev_rel_event(mousedev, code, value);
372 break;
373
374 case EV_KEY:
375 if (value != 2) {
376 if (code == BTN_TOUCH &&
377 test_bit(BTN_TOOL_FINGER, handle->dev->keybit))
378 mousedev_touchpad_touch(mousedev, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 else
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400380 mousedev_key_event(mousedev, code, value);
381 }
382 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400384 case EV_SYN:
385 if (code == SYN_REPORT) {
386 if (mousedev->touch) {
387 mousedev->pkt_count++;
388 /*
389 * Input system eats duplicate events,
390 * but we need all of them to do correct
391 * averaging so apply present one forward
392 */
393 fx(0) = fx(1);
394 fy(0) = fy(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400397 mousedev_notify_readers(mousedev, &mousedev->packet);
398 mousedev_notify_readers(mousedev_mix, &mousedev->packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400400 mousedev->packet.dx = mousedev->packet.dy =
401 mousedev->packet.dz = 0;
402 mousedev->packet.abs_event = 0;
403 }
404 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 }
406}
407
408static int mousedev_fasync(int fd, struct file *file, int on)
409{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400410 struct mousedev_client *client = file->private_data;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400411
Jonathan Corbet60aa4922009-02-01 14:52:56 -0700412 return fasync_helper(fd, file, on, &client->fasync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413}
414
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400415static void mousedev_free(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400417 struct mousedev *mousedev = container_of(dev, struct mousedev, dev);
418
Dmitry Torokhova7097ff2008-04-01 00:22:53 -0400419 input_put_device(mousedev->handle.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 kfree(mousedev);
421}
422
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400423static int mousedev_open_device(struct mousedev *mousedev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400425 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400427 retval = mutex_lock_interruptible(&mousedev->mutex);
428 if (retval)
429 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700431 if (mousedev->is_mixdev)
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400432 mixdev_open_devices();
433 else if (!mousedev->exist)
434 retval = -ENODEV;
Oliver Neukum06445012007-10-12 14:18:40 -0400435 else if (!mousedev->open++) {
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400436 retval = input_open_device(&mousedev->handle);
Oliver Neukum06445012007-10-12 14:18:40 -0400437 if (retval)
438 mousedev->open--;
439 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400441 mutex_unlock(&mousedev->mutex);
442 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443}
444
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400445static void mousedev_close_device(struct mousedev *mousedev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446{
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400447 mutex_lock(&mousedev->mutex);
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400448
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700449 if (mousedev->is_mixdev)
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400450 mixdev_close_devices();
451 else if (mousedev->exist && !--mousedev->open)
452 input_close_device(&mousedev->handle);
453
454 mutex_unlock(&mousedev->mutex);
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400455}
456
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400457/*
458 * Open all available devices so they can all be multiplexed in one.
459 * stream. Note that this function is called with mousedev_mix->mutex
460 * held.
461 */
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400462static void mixdev_open_devices(void)
463{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 struct mousedev *mousedev;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400465
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400466 if (mousedev_mix->open++)
467 return;
468
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400469 list_for_each_entry(mousedev, &mousedev_mix_list, mixdev_node) {
Dmitry Torokhov3376b8b2012-10-08 09:07:24 -0700470 if (!mousedev->opened_by_mixdev) {
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400471 if (mousedev_open_device(mousedev))
472 continue;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400473
Dmitry Torokhov3376b8b2012-10-08 09:07:24 -0700474 mousedev->opened_by_mixdev = true;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400475 }
476 }
477}
478
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400479/*
480 * Close all devices that were opened as part of multiplexed
481 * device. Note that this function is called with mousedev_mix->mutex
482 * held.
483 */
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400484static void mixdev_close_devices(void)
485{
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400486 struct mousedev *mousedev;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400487
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400488 if (--mousedev_mix->open)
489 return;
490
491 list_for_each_entry(mousedev, &mousedev_mix_list, mixdev_node) {
Dmitry Torokhov3376b8b2012-10-08 09:07:24 -0700492 if (mousedev->opened_by_mixdev) {
493 mousedev->opened_by_mixdev = false;
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400494 mousedev_close_device(mousedev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 }
496 }
497}
498
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400499
500static void mousedev_attach_client(struct mousedev *mousedev,
501 struct mousedev_client *client)
502{
503 spin_lock(&mousedev->client_lock);
504 list_add_tail_rcu(&client->node, &mousedev->client_list);
505 spin_unlock(&mousedev->client_lock);
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400506}
507
508static void mousedev_detach_client(struct mousedev *mousedev,
509 struct mousedev_client *client)
510{
511 spin_lock(&mousedev->client_lock);
512 list_del_rcu(&client->node);
513 spin_unlock(&mousedev->client_lock);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400514 synchronize_rcu();
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400515}
516
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400517static int mousedev_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400519 struct mousedev_client *client = file->private_data;
520 struct mousedev *mousedev = client->mousedev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400522 mousedev_detach_client(mousedev, client);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400523 kfree(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400525 mousedev_close_device(mousedev);
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
536#ifdef CONFIG_INPUT_MOUSEDEV_PSAUX
537 if (imajor(inode) == MISC_MAJOR)
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700538 mousedev = mousedev_mix;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 else
540#endif
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700541 mousedev = container_of(inode->i_cdev, struct mousedev, cdev);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400542
543 client = kzalloc(sizeof(struct mousedev_client), GFP_KERNEL);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700544 if (!client)
545 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400547 spin_lock_init(&client->packet_lock);
548 client->pos_x = xres / 2;
549 client->pos_y = yres / 2;
550 client->mousedev = mousedev;
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400551 mousedev_attach_client(mousedev, client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400553 error = mousedev_open_device(mousedev);
554 if (error)
555 goto err_free_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400557 file->private_data = client;
Dmitry Torokhov0124be42012-10-08 09:07:24 -0700558 nonseekable_open(inode, file);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700559
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 return 0;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400561
562 err_free_client:
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400563 mousedev_detach_client(mousedev, client);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400564 kfree(client);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400565 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566}
567
568static inline int mousedev_limit_delta(int delta, int limit)
569{
570 return delta > limit ? limit : (delta < -limit ? -limit : delta);
571}
572
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400573static void mousedev_packet(struct mousedev_client *client,
574 signed char *ps2_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575{
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400576 struct mousedev_motion *p = &client->packets[client->tail];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400578 ps2_data[0] = 0x08 |
579 ((p->dx < 0) << 4) | ((p->dy < 0) << 5) | (p->buttons & 0x07);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 ps2_data[1] = mousedev_limit_delta(p->dx, 127);
581 ps2_data[2] = mousedev_limit_delta(p->dy, 127);
582 p->dx -= ps2_data[1];
583 p->dy -= ps2_data[2];
584
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400585 switch (client->mode) {
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400586 case MOUSEDEV_EMUL_EXPS:
587 ps2_data[3] = mousedev_limit_delta(p->dz, 7);
588 p->dz -= ps2_data[3];
589 ps2_data[3] = (ps2_data[3] & 0x0f) | ((p->buttons & 0x18) << 1);
590 client->bufsiz = 4;
591 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400593 case MOUSEDEV_EMUL_IMPS:
594 ps2_data[0] |=
595 ((p->buttons & 0x10) >> 3) | ((p->buttons & 0x08) >> 1);
596 ps2_data[3] = mousedev_limit_delta(p->dz, 127);
597 p->dz -= ps2_data[3];
598 client->bufsiz = 4;
599 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400601 case MOUSEDEV_EMUL_PS2:
602 default:
603 ps2_data[0] |=
604 ((p->buttons & 0x10) >> 3) | ((p->buttons & 0x08) >> 1);
605 p->dz = 0;
606 client->bufsiz = 3;
607 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 }
609
610 if (!p->dx && !p->dy && !p->dz) {
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400611 if (client->tail == client->head) {
612 client->ready = 0;
613 client->last_buttons = p->buttons;
Pavel Machekc1e4c8d2005-05-27 12:53:03 -0700614 } else
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400615 client->tail = (client->tail + 1) % PACKET_QUEUE_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617}
618
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400619static void mousedev_generate_response(struct mousedev_client *client,
620 int command)
621{
622 client->ps2[0] = 0xfa; /* ACK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400624 switch (command) {
625
626 case 0xeb: /* Poll */
627 mousedev_packet(client, &client->ps2[1]);
628 client->bufsiz++; /* account for leading ACK */
629 break;
630
631 case 0xf2: /* Get ID */
632 switch (client->mode) {
633 case MOUSEDEV_EMUL_PS2:
634 client->ps2[1] = 0;
635 break;
636 case MOUSEDEV_EMUL_IMPS:
637 client->ps2[1] = 3;
638 break;
639 case MOUSEDEV_EMUL_EXPS:
640 client->ps2[1] = 4;
641 break;
642 }
643 client->bufsiz = 2;
644 break;
645
646 case 0xe9: /* Get info */
647 client->ps2[1] = 0x60; client->ps2[2] = 3; client->ps2[3] = 200;
648 client->bufsiz = 4;
649 break;
650
651 case 0xff: /* Reset */
652 client->impsseq = client->imexseq = 0;
653 client->mode = MOUSEDEV_EMUL_PS2;
654 client->ps2[1] = 0xaa; client->ps2[2] = 0x00;
655 client->bufsiz = 3;
656 break;
657
658 default:
659 client->bufsiz = 1;
660 break;
661 }
662 client->buffer = client->bufsiz;
663}
664
665static ssize_t mousedev_write(struct file *file, const char __user *buffer,
666 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400668 struct mousedev_client *client = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 unsigned char c;
670 unsigned int i;
671
672 for (i = 0; i < count; i++) {
673
674 if (get_user(c, buffer + i))
675 return -EFAULT;
676
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400677 spin_lock_irq(&client->packet_lock);
678
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400679 if (c == mousedev_imex_seq[client->imexseq]) {
680 if (++client->imexseq == MOUSEDEV_SEQ_LEN) {
681 client->imexseq = 0;
682 client->mode = MOUSEDEV_EMUL_EXPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 }
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400684 } else
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400685 client->imexseq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400687 if (c == mousedev_imps_seq[client->impsseq]) {
688 if (++client->impsseq == MOUSEDEV_SEQ_LEN) {
689 client->impsseq = 0;
690 client->mode = MOUSEDEV_EMUL_IMPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 }
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400692 } else
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400693 client->impsseq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400695 mousedev_generate_response(client, c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400697 spin_unlock_irq(&client->packet_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 }
699
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400700 kill_fasync(&client->fasync, SIGIO, POLL_IN);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400701 wake_up_interruptible(&client->mousedev->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
703 return count;
704}
705
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400706static ssize_t mousedev_read(struct file *file, char __user *buffer,
707 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400709 struct mousedev_client *client = file->private_data;
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400710 struct mousedev *mousedev = client->mousedev;
711 signed char data[sizeof(client->ps2)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 int retval = 0;
713
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400714 if (!client->ready && !client->buffer && mousedev->exist &&
715 (file->f_flags & O_NONBLOCK))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 return -EAGAIN;
717
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400718 retval = wait_event_interruptible(mousedev->wait,
719 !mousedev->exist || client->ready || client->buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 if (retval)
721 return retval;
722
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400723 if (!mousedev->exist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 return -ENODEV;
725
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400726 spin_lock_irq(&client->packet_lock);
727
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400728 if (!client->buffer && client->ready) {
729 mousedev_packet(client, client->ps2);
730 client->buffer = client->bufsiz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 }
732
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400733 if (count > client->buffer)
734 count = client->buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400736 memcpy(data, client->ps2 + client->bufsiz - client->buffer, count);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400737 client->buffer -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400739 spin_unlock_irq(&client->packet_lock);
740
741 if (copy_to_user(buffer, data, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 return -EFAULT;
743
744 return count;
745}
746
747/* No kernel lock - fine */
748static unsigned int mousedev_poll(struct file *file, poll_table *wait)
749{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400750 struct mousedev_client *client = file->private_data;
751 struct mousedev *mousedev = client->mousedev;
Julien Moutinho4d4bf992010-07-15 23:27:56 -0700752 unsigned int mask;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400753
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400754 poll_wait(file, &mousedev->wait, wait);
Julien Moutinho4d4bf992010-07-15 23:27:56 -0700755
756 mask = mousedev->exist ? POLLOUT | POLLWRNORM : POLLHUP | POLLERR;
757 if (client->ready || client->buffer)
758 mask |= POLLIN | POLLRDNORM;
759
760 return mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761}
762
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400763static const struct file_operations mousedev_fops = {
Dmitry Torokhov1c74585e2012-10-08 09:07:24 -0700764 .owner = THIS_MODULE,
765 .read = mousedev_read,
766 .write = mousedev_write,
767 .poll = mousedev_poll,
768 .open = mousedev_open,
769 .release = mousedev_release,
770 .fasync = mousedev_fasync,
771 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772};
773
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400774/*
775 * Mark device non-existent. This disables writes, ioctls and
776 * prevents new users from opening the device. Already posted
777 * blocking reads will stay, however new ones will fail.
778 */
779static void mousedev_mark_dead(struct mousedev *mousedev)
780{
781 mutex_lock(&mousedev->mutex);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -0700782 mousedev->exist = false;
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400783 mutex_unlock(&mousedev->mutex);
784}
785
786/*
787 * Wake up users waiting for IO so they can disconnect from
788 * dead device.
789 */
790static void mousedev_hangup(struct mousedev *mousedev)
791{
792 struct mousedev_client *client;
793
794 spin_lock(&mousedev->client_lock);
795 list_for_each_entry(client, &mousedev->client_list, node)
796 kill_fasync(&client->fasync, SIGIO, POLL_HUP);
797 spin_unlock(&mousedev->client_lock);
798
799 wake_up_interruptible(&mousedev->wait);
800}
801
802static void mousedev_cleanup(struct mousedev *mousedev)
803{
804 struct input_handle *handle = &mousedev->handle;
805
806 mousedev_mark_dead(mousedev);
807 mousedev_hangup(mousedev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700808
809 cdev_del(&mousedev->cdev);
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400810
811 /* mousedev is marked dead so no one else accesses mousedev->open */
812 if (mousedev->open)
813 input_close_device(handle);
814}
815
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700816static int mousedev_reserve_minor(bool mixdev)
817{
818 int minor;
819
820 if (mixdev) {
821 minor = input_get_new_minor(MOUSEDEV_MIX, 1, false);
822 if (minor < 0)
823 pr_err("failed to reserve mixdev minor: %d\n", minor);
824 } else {
825 minor = input_get_new_minor(MOUSEDEV_MINOR_BASE,
826 MOUSEDEV_MINORS, true);
827 if (minor < 0)
828 pr_err("failed to reserve new minor: %d\n", minor);
829 }
830
831 return minor;
832}
833
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400834static struct mousedev *mousedev_create(struct input_dev *dev,
835 struct input_handler *handler,
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700836 bool mixdev)
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400837{
838 struct mousedev *mousedev;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700839 int minor;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400840 int error;
841
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700842 minor = mousedev_reserve_minor(mixdev);
843 if (minor < 0) {
844 error = minor;
845 goto err_out;
846 }
847
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400848 mousedev = kzalloc(sizeof(struct mousedev), GFP_KERNEL);
849 if (!mousedev) {
850 error = -ENOMEM;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700851 goto err_free_minor;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400852 }
853
854 INIT_LIST_HEAD(&mousedev->client_list);
855 INIT_LIST_HEAD(&mousedev->mixdev_node);
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400856 spin_lock_init(&mousedev->client_lock);
857 mutex_init(&mousedev->mutex);
858 lockdep_set_subclass(&mousedev->mutex,
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700859 mixdev ? SINGLE_DEPTH_NESTING : 0);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400860 init_waitqueue_head(&mousedev->wait);
861
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700862 if (mixdev) {
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -0700863 dev_set_name(&mousedev->dev, "mice");
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700864 } else {
865 int dev_no = minor;
866 /* Normalize device number if it falls into legacy range */
867 if (dev_no < MOUSEDEV_MINOR_BASE + MOUSEDEV_MINORS)
868 dev_no -= MOUSEDEV_MINOR_BASE;
869 dev_set_name(&mousedev->dev, "mouse%d", dev_no);
870 }
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400871
Dmitry Torokhov20da92d2010-07-15 23:27:36 -0700872 mousedev->exist = true;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700873 mousedev->is_mixdev = mixdev;
Dmitry Torokhova7097ff2008-04-01 00:22:53 -0400874 mousedev->handle.dev = input_get_device(dev);
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -0700875 mousedev->handle.name = dev_name(&mousedev->dev);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400876 mousedev->handle.handler = handler;
877 mousedev->handle.private = mousedev;
878
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400879 mousedev->dev.class = &input_class;
880 if (dev)
881 mousedev->dev.parent = &dev->dev;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700882 mousedev->dev.devt = MKDEV(INPUT_MAJOR, minor);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400883 mousedev->dev.release = mousedev_free;
884 device_initialize(&mousedev->dev);
885
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700886 if (!mixdev) {
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400887 error = input_register_handle(&mousedev->handle);
888 if (error)
889 goto err_free_mousedev;
890 }
891
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700892 cdev_init(&mousedev->cdev, &mousedev_fops);
Dmitry Torokhov4a215aa2012-10-21 17:57:20 -0700893 mousedev->cdev.kobj.parent = &mousedev->dev.kobj;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700894 error = cdev_add(&mousedev->cdev, mousedev->dev.devt, 1);
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400895 if (error)
896 goto err_unregister_handle;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400897
898 error = device_add(&mousedev->dev);
899 if (error)
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400900 goto err_cleanup_mousedev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400901
902 return mousedev;
903
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400904 err_cleanup_mousedev:
905 mousedev_cleanup(mousedev);
906 err_unregister_handle:
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700907 if (!mixdev)
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400908 input_unregister_handle(&mousedev->handle);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400909 err_free_mousedev:
910 put_device(&mousedev->dev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700911 err_free_minor:
912 input_free_minor(minor);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400913 err_out:
914 return ERR_PTR(error);
915}
916
917static void mousedev_destroy(struct mousedev *mousedev)
918{
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400919 device_del(&mousedev->dev);
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400920 mousedev_cleanup(mousedev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700921 input_free_minor(MINOR(mousedev->dev.devt));
922 if (!mousedev->is_mixdev)
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400923 input_unregister_handle(&mousedev->handle);
924 put_device(&mousedev->dev);
925}
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400926
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400927static int mixdev_add_device(struct mousedev *mousedev)
928{
929 int retval;
930
931 retval = mutex_lock_interruptible(&mousedev_mix->mutex);
932 if (retval)
933 return retval;
934
935 if (mousedev_mix->open) {
936 retval = mousedev_open_device(mousedev);
937 if (retval)
938 goto out;
939
Dmitry Torokhov3376b8b2012-10-08 09:07:24 -0700940 mousedev->opened_by_mixdev = true;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400941 }
942
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400943 get_device(&mousedev->dev);
944 list_add_tail(&mousedev->mixdev_node, &mousedev_mix_list);
945
946 out:
947 mutex_unlock(&mousedev_mix->mutex);
948 return retval;
949}
950
951static void mixdev_remove_device(struct mousedev *mousedev)
952{
953 mutex_lock(&mousedev_mix->mutex);
954
Dmitry Torokhov3376b8b2012-10-08 09:07:24 -0700955 if (mousedev->opened_by_mixdev) {
956 mousedev->opened_by_mixdev = false;
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400957 mousedev_close_device(mousedev);
958 }
959
960 list_del_init(&mousedev->mixdev_node);
961 mutex_unlock(&mousedev_mix->mutex);
962
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400963 put_device(&mousedev->dev);
964}
965
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400966static int mousedev_connect(struct input_handler *handler,
967 struct input_dev *dev,
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400968 const struct input_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969{
970 struct mousedev *mousedev;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400971 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700973 mousedev = mousedev_create(dev, handler, false);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400974 if (IS_ERR(mousedev))
975 return PTR_ERR(mousedev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400977 error = mixdev_add_device(mousedev);
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400978 if (error) {
979 mousedev_destroy(mousedev);
980 return error;
981 }
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400982
983 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984}
985
986static void mousedev_disconnect(struct input_handle *handle)
987{
988 struct mousedev *mousedev = handle->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400990 mixdev_remove_device(mousedev);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400991 mousedev_destroy(mousedev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992}
993
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400994static const struct input_device_id mousedev_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 {
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400996 .flags = INPUT_DEVICE_ID_MATCH_EVBIT |
997 INPUT_DEVICE_ID_MATCH_KEYBIT |
998 INPUT_DEVICE_ID_MATCH_RELBIT,
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700999 .evbit = { BIT_MASK(EV_KEY) | BIT_MASK(EV_REL) },
1000 .keybit = { [BIT_WORD(BTN_LEFT)] = BIT_MASK(BTN_LEFT) },
1001 .relbit = { BIT_MASK(REL_X) | BIT_MASK(REL_Y) },
Dmitry Torokhov464b2412007-08-30 00:22:24 -04001002 }, /* A mouse like device, at least one button,
1003 two relative axes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 {
Dmitry Torokhov464b2412007-08-30 00:22:24 -04001005 .flags = INPUT_DEVICE_ID_MATCH_EVBIT |
1006 INPUT_DEVICE_ID_MATCH_RELBIT,
Jiri Slaby7b19ada2007-10-18 23:40:32 -07001007 .evbit = { BIT_MASK(EV_KEY) | BIT_MASK(EV_REL) },
1008 .relbit = { BIT_MASK(REL_WHEEL) },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 }, /* A separate scrollwheel */
1010 {
Dmitry Torokhov464b2412007-08-30 00:22:24 -04001011 .flags = INPUT_DEVICE_ID_MATCH_EVBIT |
1012 INPUT_DEVICE_ID_MATCH_KEYBIT |
1013 INPUT_DEVICE_ID_MATCH_ABSBIT,
Jiri Slaby7b19ada2007-10-18 23:40:32 -07001014 .evbit = { BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS) },
1015 .keybit = { [BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH) },
1016 .absbit = { BIT_MASK(ABS_X) | BIT_MASK(ABS_Y) },
Dmitry Torokhov464b2412007-08-30 00:22:24 -04001017 }, /* A tablet like device, at least touch detection,
1018 two absolute axes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 {
Dmitry Torokhov464b2412007-08-30 00:22:24 -04001020 .flags = INPUT_DEVICE_ID_MATCH_EVBIT |
1021 INPUT_DEVICE_ID_MATCH_KEYBIT |
1022 INPUT_DEVICE_ID_MATCH_ABSBIT,
Jiri Slaby7b19ada2007-10-18 23:40:32 -07001023 .evbit = { BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS) },
1024 .keybit = { [BIT_WORD(BTN_TOOL_FINGER)] =
1025 BIT_MASK(BTN_TOOL_FINGER) },
1026 .absbit = { BIT_MASK(ABS_X) | BIT_MASK(ABS_Y) |
1027 BIT_MASK(ABS_PRESSURE) |
1028 BIT_MASK(ABS_TOOL_WIDTH) },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 }, /* A touchpad */
Micah Parrish6724f932008-01-17 12:01:04 -05001030 {
1031 .flags = INPUT_DEVICE_ID_MATCH_EVBIT |
1032 INPUT_DEVICE_ID_MATCH_KEYBIT |
1033 INPUT_DEVICE_ID_MATCH_ABSBIT,
Dmitry Torokhovd182c102008-01-30 16:33:40 -05001034 .evbit = { BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS) },
Micah Parrish6724f932008-01-17 12:01:04 -05001035 .keybit = { [BIT_WORD(BTN_LEFT)] = BIT_MASK(BTN_LEFT) },
1036 .absbit = { BIT_MASK(ABS_X) | BIT_MASK(ABS_Y) },
1037 }, /* Mouse-like device with absolute X and Y but ordinary
1038 clicks, like hp ILO2 High Performance mouse */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -04001040 { }, /* Terminating entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041};
1042
1043MODULE_DEVICE_TABLE(input, mousedev_ids);
1044
1045static struct input_handler mousedev_handler = {
Dmitry Torokhov1c74585e2012-10-08 09:07:24 -07001046 .event = mousedev_event,
1047 .connect = mousedev_connect,
1048 .disconnect = mousedev_disconnect,
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001049 .legacy_minors = true,
Dmitry Torokhov1c74585e2012-10-08 09:07:24 -07001050 .minor = MOUSEDEV_MINOR_BASE,
1051 .name = "mousedev",
1052 .id_table = mousedev_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053};
1054
1055#ifdef CONFIG_INPUT_MOUSEDEV_PSAUX
Dmitry Torokhova2cb1192012-10-08 09:07:23 -07001056#include <linux/miscdevice.h>
1057
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058static struct miscdevice psaux_mouse = {
Dmitry Torokhova2cb1192012-10-08 09:07:23 -07001059 .minor = PSMOUSE_MINOR,
1060 .name = "psaux",
1061 .fops = &mousedev_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062};
Dmitry Torokhova2cb1192012-10-08 09:07:23 -07001063
1064static bool psaux_registered;
1065
1066static void __init mousedev_psaux_register(void)
1067{
1068 int error;
1069
1070 error = misc_register(&psaux_mouse);
1071 if (error)
1072 pr_warn("could not register psaux device, error: %d\n",
1073 error);
1074 else
1075 psaux_registered = true;
1076}
1077
1078static void __exit mousedev_psaux_unregister(void)
1079{
1080 if (psaux_registered)
1081 misc_deregister(&psaux_mouse);
1082}
1083#else
1084static inline void mousedev_psaux_register(void) { }
1085static inline void mousedev_psaux_unregister(void) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086#endif
1087
1088static int __init mousedev_init(void)
1089{
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001090 int error;
1091
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001092 mousedev_mix = mousedev_create(NULL, &mousedev_handler, true);
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001093 if (IS_ERR(mousedev_mix))
1094 return PTR_ERR(mousedev_mix);
1095
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001096 error = input_register_handler(&mousedev_handler);
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001097 if (error) {
1098 mousedev_destroy(mousedev_mix);
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001099 return error;
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001100 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
Dmitry Torokhova2cb1192012-10-08 09:07:23 -07001102 mousedev_psaux_register();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
Joe Perchesda0c4902010-11-29 23:33:07 -08001104 pr_info("PS/2 mouse device common for all mice\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
1106 return 0;
1107}
1108
1109static void __exit mousedev_exit(void)
1110{
Dmitry Torokhova2cb1192012-10-08 09:07:23 -07001111 mousedev_psaux_unregister();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 input_unregister_handler(&mousedev_handler);
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001113 mousedev_destroy(mousedev_mix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114}
1115
1116module_init(mousedev_init);
1117module_exit(mousedev_exit);