blob: 88b962aeef13a2931f397e3d67d7c319eb94b13c [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>
Daniel Mack987a6c02010-08-02 20:15:17 -070027#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
30MODULE_DESCRIPTION("Mouse (ExplorerPS/2) device interfaces");
31MODULE_LICENSE("GPL");
32
33#ifndef CONFIG_INPUT_MOUSEDEV_SCREEN_X
34#define CONFIG_INPUT_MOUSEDEV_SCREEN_X 1024
35#endif
36#ifndef CONFIG_INPUT_MOUSEDEV_SCREEN_Y
37#define CONFIG_INPUT_MOUSEDEV_SCREEN_Y 768
38#endif
39
40static int xres = CONFIG_INPUT_MOUSEDEV_SCREEN_X;
Dmitry Torokhov84c12b22005-12-11 12:41:03 -050041module_param(xres, uint, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042MODULE_PARM_DESC(xres, "Horizontal screen resolution");
43
44static int yres = CONFIG_INPUT_MOUSEDEV_SCREEN_Y;
Dmitry Torokhov84c12b22005-12-11 12:41:03 -050045module_param(yres, uint, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046MODULE_PARM_DESC(yres, "Vertical screen resolution");
47
48static unsigned tap_time = 200;
Dmitry Torokhov84c12b22005-12-11 12:41:03 -050049module_param(tap_time, uint, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050MODULE_PARM_DESC(tap_time, "Tap time for touchpads in absolute mode (msecs)");
51
52struct mousedev_hw_data {
53 int dx, dy, dz;
54 int x, y;
55 int abs_event;
56 unsigned long buttons;
57};
58
59struct mousedev {
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 int open;
61 int minor;
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 Torokhov20da92d2010-07-15 23:27:36 -070068 bool exist;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Dmitry Torokhovd542ed82007-04-12 01:30:15 -040070 struct list_head mixdev_node;
Dmitry Torokhov3376b8b2012-10-08 09:07:24 -070071 bool opened_by_mixdev;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -040072
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:
Daniel Mack987a6c02010-08-02 20:15:17 -0700137
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400138 fx(0) = value;
139 if (mousedev->touch && mousedev->pkt_count >= 2) {
Christoph Fritz268ba5c2010-08-24 00:33:37 -0700140 size = input_abs_get_max(dev, ABS_X) -
141 input_abs_get_min(dev, ABS_X);
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400142 if (size == 0)
143 size = 256 * 2;
Daniel Mack987a6c02010-08-02 20:15:17 -0700144
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400145 tmp = ((value - fx(2)) * 256 * FRACTION_DENOM) / size;
146 tmp += mousedev->frac_dx;
147 mousedev->packet.dx = tmp / FRACTION_DENOM;
148 mousedev->frac_dx =
149 tmp - mousedev->packet.dx * FRACTION_DENOM;
150 }
151 break;
152
153 case ABS_Y:
154 fy(0) = value;
155 if (mousedev->touch && mousedev->pkt_count >= 2) {
Daniel Mack987a6c02010-08-02 20:15:17 -0700156 /* use X size for ABS_Y to keep the same scale */
Christoph Fritz268ba5c2010-08-24 00:33:37 -0700157 size = input_abs_get_max(dev, ABS_X) -
158 input_abs_get_min(dev, ABS_X);
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400159 if (size == 0)
160 size = 256 * 2;
Daniel Mack987a6c02010-08-02 20:15:17 -0700161
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400162 tmp = -((value - fy(2)) * 256 * FRACTION_DENOM) / size;
163 tmp += mousedev->frac_dy;
164 mousedev->packet.dy = tmp / FRACTION_DENOM;
165 mousedev->frac_dy = tmp -
166 mousedev->packet.dy * FRACTION_DENOM;
167 }
168 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 }
170}
171
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400172static void mousedev_abs_event(struct input_dev *dev, struct mousedev *mousedev,
173 unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
Daniel Mack987a6c02010-08-02 20:15:17 -0700175 int min, max, size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177 switch (code) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400179 case ABS_X:
Daniel Mack987a6c02010-08-02 20:15:17 -0700180 min = input_abs_get_min(dev, ABS_X);
181 max = input_abs_get_max(dev, ABS_X);
182
183 size = max - min;
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400184 if (size == 0)
185 size = xres ? : 1;
Daniel Mack987a6c02010-08-02 20:15:17 -0700186
Hans Petter Selasky8c127f02011-05-25 09:24:32 -0700187 value = clamp(value, min, max);
Daniel Mack987a6c02010-08-02 20:15:17 -0700188
189 mousedev->packet.x = ((value - min) * xres) / size;
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400190 mousedev->packet.abs_event = 1;
191 break;
192
193 case ABS_Y:
Daniel Mack987a6c02010-08-02 20:15:17 -0700194 min = input_abs_get_min(dev, ABS_Y);
195 max = input_abs_get_max(dev, ABS_Y);
196
197 size = max - min;
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400198 if (size == 0)
199 size = yres ? : 1;
Daniel Mack987a6c02010-08-02 20:15:17 -0700200
Hans Petter Selasky8c127f02011-05-25 09:24:32 -0700201 value = clamp(value, min, max);
Daniel Mack987a6c02010-08-02 20:15:17 -0700202
203 mousedev->packet.y = yres - ((value - min) * yres) / size;
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400204 mousedev->packet.abs_event = 1;
205 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 }
207}
208
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400209static void mousedev_rel_event(struct mousedev *mousedev,
210 unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
212 switch (code) {
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400213 case REL_X:
214 mousedev->packet.dx += value;
215 break;
216
217 case REL_Y:
218 mousedev->packet.dy -= value;
219 break;
220
221 case REL_WHEEL:
222 mousedev->packet.dz -= value;
223 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 }
225}
226
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400227static void mousedev_key_event(struct mousedev *mousedev,
228 unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
230 int index;
231
232 switch (code) {
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400233
234 case BTN_TOUCH:
235 case BTN_0:
236 case BTN_LEFT: index = 0; break;
237
238 case BTN_STYLUS:
239 case BTN_1:
240 case BTN_RIGHT: index = 1; break;
241
242 case BTN_2:
243 case BTN_FORWARD:
244 case BTN_STYLUS2:
245 case BTN_MIDDLE: index = 2; break;
246
247 case BTN_3:
248 case BTN_BACK:
249 case BTN_SIDE: index = 3; break;
250
251 case BTN_4:
252 case BTN_EXTRA: index = 4; break;
253
254 default: return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 }
256
257 if (value) {
258 set_bit(index, &mousedev->packet.buttons);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400259 set_bit(index, &mousedev_mix->packet.buttons);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 } else {
261 clear_bit(index, &mousedev->packet.buttons);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400262 clear_bit(index, &mousedev_mix->packet.buttons);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 }
264}
265
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400266static void mousedev_notify_readers(struct mousedev *mousedev,
267 struct mousedev_hw_data *packet)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400269 struct mousedev_client *client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 struct mousedev_motion *p;
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400271 unsigned int new_head;
Dmitry Torokhov81211522005-06-01 02:39:36 -0500272 int wake_readers = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400274 rcu_read_lock();
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400275 list_for_each_entry_rcu(client, &mousedev->client_list, node) {
276
277 /* Just acquire the lock, interrupts already disabled */
278 spin_lock(&client->packet_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400280 p = &client->packets[client->head];
281 if (client->ready && p->buttons != mousedev->packet.buttons) {
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400282 new_head = (client->head + 1) % PACKET_QUEUE_LEN;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400283 if (new_head != client->tail) {
284 p = &client->packets[client->head = new_head];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 memset(p, 0, sizeof(struct mousedev_motion));
286 }
287 }
288
289 if (packet->abs_event) {
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400290 p->dx += packet->x - client->pos_x;
291 p->dy += packet->y - client->pos_y;
292 client->pos_x = packet->x;
293 client->pos_y = packet->y;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 }
295
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400296 client->pos_x += packet->dx;
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400297 client->pos_x = client->pos_x < 0 ?
298 0 : (client->pos_x >= xres ? xres : client->pos_x);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400299 client->pos_y += packet->dy;
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400300 client->pos_y = client->pos_y < 0 ?
301 0 : (client->pos_y >= yres ? yres : client->pos_y);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303 p->dx += packet->dx;
304 p->dy += packet->dy;
305 p->dz += packet->dz;
306 p->buttons = mousedev->packet.buttons;
307
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400308 if (p->dx || p->dy || p->dz ||
309 p->buttons != client->last_buttons)
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400310 client->ready = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400312 spin_unlock(&client->packet_lock);
Pavel Machekc1e4c8d2005-05-27 12:53:03 -0700313
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400314 if (client->ready) {
315 kill_fasync(&client->fasync, SIGIO, POLL_IN);
Dmitry Torokhov81211522005-06-01 02:39:36 -0500316 wake_readers = 1;
317 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400319 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Dmitry Torokhov81211522005-06-01 02:39:36 -0500321 if (wake_readers)
322 wake_up_interruptible(&mousedev->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323}
324
325static void mousedev_touchpad_touch(struct mousedev *mousedev, int value)
326{
327 if (!value) {
328 if (mousedev->touch &&
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400329 time_before(jiffies,
330 mousedev->touch + msecs_to_jiffies(tap_time))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 /*
332 * Toggle left button to emulate tap.
333 * We rely on the fact that mousedev_mix always has 0
334 * motion packet so we won't mess current position.
335 */
336 set_bit(0, &mousedev->packet.buttons);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400337 set_bit(0, &mousedev_mix->packet.buttons);
338 mousedev_notify_readers(mousedev, &mousedev_mix->packet);
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400339 mousedev_notify_readers(mousedev_mix,
340 &mousedev_mix->packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 clear_bit(0, &mousedev->packet.buttons);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400342 clear_bit(0, &mousedev_mix->packet.buttons);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 }
344 mousedev->touch = mousedev->pkt_count = 0;
345 mousedev->frac_dx = 0;
346 mousedev->frac_dy = 0;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400347
348 } else if (!mousedev->touch)
349 mousedev->touch = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350}
351
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400352static void mousedev_event(struct input_handle *handle,
353 unsigned int type, unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
355 struct mousedev *mousedev = handle->private;
356
357 switch (type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400359 case EV_ABS:
360 /* Ignore joysticks */
361 if (test_bit(BTN_TRIGGER, handle->dev->keybit))
362 return;
363
364 if (test_bit(BTN_TOOL_FINGER, handle->dev->keybit))
365 mousedev_touchpad_event(handle->dev,
366 mousedev, code, value);
367 else
368 mousedev_abs_event(handle->dev, mousedev, code, value);
369
370 break;
371
372 case EV_REL:
373 mousedev_rel_event(mousedev, code, value);
374 break;
375
376 case EV_KEY:
377 if (value != 2) {
378 if (code == BTN_TOUCH &&
379 test_bit(BTN_TOOL_FINGER, handle->dev->keybit))
380 mousedev_touchpad_touch(mousedev, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 else
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400382 mousedev_key_event(mousedev, code, value);
383 }
384 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400386 case EV_SYN:
387 if (code == SYN_REPORT) {
388 if (mousedev->touch) {
389 mousedev->pkt_count++;
390 /*
391 * Input system eats duplicate events,
392 * but we need all of them to do correct
393 * averaging so apply present one forward
394 */
395 fx(0) = fx(1);
396 fy(0) = fy(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400399 mousedev_notify_readers(mousedev, &mousedev->packet);
400 mousedev_notify_readers(mousedev_mix, &mousedev->packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400402 mousedev->packet.dx = mousedev->packet.dy =
403 mousedev->packet.dz = 0;
404 mousedev->packet.abs_event = 0;
405 }
406 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 }
408}
409
410static int mousedev_fasync(int fd, struct file *file, int on)
411{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400412 struct mousedev_client *client = file->private_data;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400413
Jonathan Corbet60aa4922009-02-01 14:52:56 -0700414 return fasync_helper(fd, file, on, &client->fasync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415}
416
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400417static void mousedev_free(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418{
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400419 struct mousedev *mousedev = container_of(dev, struct mousedev, dev);
420
Dmitry Torokhova7097ff2008-04-01 00:22:53 -0400421 input_put_device(mousedev->handle.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 kfree(mousedev);
423}
424
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400425static int mousedev_open_device(struct mousedev *mousedev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400427 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400429 retval = mutex_lock_interruptible(&mousedev->mutex);
430 if (retval)
431 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400433 if (mousedev->minor == MOUSEDEV_MIX)
434 mixdev_open_devices();
435 else if (!mousedev->exist)
436 retval = -ENODEV;
Oliver Neukum06445012007-10-12 14:18:40 -0400437 else if (!mousedev->open++) {
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400438 retval = input_open_device(&mousedev->handle);
Oliver Neukum06445012007-10-12 14:18:40 -0400439 if (retval)
440 mousedev->open--;
441 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400443 mutex_unlock(&mousedev->mutex);
444 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445}
446
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400447static void mousedev_close_device(struct mousedev *mousedev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400449 mutex_lock(&mousedev->mutex);
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400450
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400451 if (mousedev->minor == MOUSEDEV_MIX)
452 mixdev_close_devices();
453 else if (mousedev->exist && !--mousedev->open)
454 input_close_device(&mousedev->handle);
455
456 mutex_unlock(&mousedev->mutex);
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400457}
458
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400459/*
460 * Open all available devices so they can all be multiplexed in one.
461 * stream. Note that this function is called with mousedev_mix->mutex
462 * held.
463 */
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400464static void mixdev_open_devices(void)
465{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 struct mousedev *mousedev;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400467
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400468 if (mousedev_mix->open++)
469 return;
470
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400471 list_for_each_entry(mousedev, &mousedev_mix_list, mixdev_node) {
Dmitry Torokhov3376b8b2012-10-08 09:07:24 -0700472 if (!mousedev->opened_by_mixdev) {
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400473 if (mousedev_open_device(mousedev))
474 continue;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400475
Dmitry Torokhov3376b8b2012-10-08 09:07:24 -0700476 mousedev->opened_by_mixdev = true;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400477 }
478 }
479}
480
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400481/*
482 * Close all devices that were opened as part of multiplexed
483 * device. Note that this function is called with mousedev_mix->mutex
484 * held.
485 */
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400486static void mixdev_close_devices(void)
487{
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400488 struct mousedev *mousedev;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400489
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400490 if (--mousedev_mix->open)
491 return;
492
493 list_for_each_entry(mousedev, &mousedev_mix_list, mixdev_node) {
Dmitry Torokhov3376b8b2012-10-08 09:07:24 -0700494 if (mousedev->opened_by_mixdev) {
495 mousedev->opened_by_mixdev = false;
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400496 mousedev_close_device(mousedev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 }
498 }
499}
500
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400501
502static void mousedev_attach_client(struct mousedev *mousedev,
503 struct mousedev_client *client)
504{
505 spin_lock(&mousedev->client_lock);
506 list_add_tail_rcu(&client->node, &mousedev->client_list);
507 spin_unlock(&mousedev->client_lock);
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400508}
509
510static void mousedev_detach_client(struct mousedev *mousedev,
511 struct mousedev_client *client)
512{
513 spin_lock(&mousedev->client_lock);
514 list_del_rcu(&client->node);
515 spin_unlock(&mousedev->client_lock);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400516 synchronize_rcu();
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400517}
518
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400519static int mousedev_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400521 struct mousedev_client *client = file->private_data;
522 struct mousedev *mousedev = client->mousedev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400524 mousedev_detach_client(mousedev, client);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400525 kfree(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400527 mousedev_close_device(mousedev);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400528 put_device(&mousedev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 return 0;
531}
532
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400533static int mousedev_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400535 struct mousedev_client *client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 struct mousedev *mousedev;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400537 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 int i;
539
540#ifdef CONFIG_INPUT_MOUSEDEV_PSAUX
541 if (imajor(inode) == MISC_MAJOR)
542 i = MOUSEDEV_MIX;
543 else
544#endif
545 i = iminor(inode) - MOUSEDEV_MINOR_BASE;
546
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400547 if (i >= MOUSEDEV_MINORS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 return -ENODEV;
549
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400550 error = mutex_lock_interruptible(&mousedev_table_mutex);
Baodong Chen41091ad2012-07-29 22:33:03 -0700551 if (error)
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400552 return error;
Baodong Chen41091ad2012-07-29 22:33:03 -0700553
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400554 mousedev = mousedev_table[i];
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400555 if (mousedev)
556 get_device(&mousedev->dev);
557 mutex_unlock(&mousedev_table_mutex);
558
Baodong Chen41091ad2012-07-29 22:33:03 -0700559 if (!mousedev)
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400560 return -ENODEV;
561
562 client = kzalloc(sizeof(struct mousedev_client), GFP_KERNEL);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400563 if (!client) {
564 error = -ENOMEM;
565 goto err_put_mousedev;
566 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400568 spin_lock_init(&client->packet_lock);
569 client->pos_x = xres / 2;
570 client->pos_y = yres / 2;
571 client->mousedev = mousedev;
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400572 mousedev_attach_client(mousedev, client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400574 error = mousedev_open_device(mousedev);
575 if (error)
576 goto err_free_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400578 file->private_data = client;
Dmitry Torokhov0124be42012-10-08 09:07:24 -0700579 nonseekable_open(inode, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 return 0;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400581
582 err_free_client:
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400583 mousedev_detach_client(mousedev, client);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400584 kfree(client);
585 err_put_mousedev:
586 put_device(&mousedev->dev);
587 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588}
589
590static inline int mousedev_limit_delta(int delta, int limit)
591{
592 return delta > limit ? limit : (delta < -limit ? -limit : delta);
593}
594
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400595static void mousedev_packet(struct mousedev_client *client,
596 signed char *ps2_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400598 struct mousedev_motion *p = &client->packets[client->tail];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400600 ps2_data[0] = 0x08 |
601 ((p->dx < 0) << 4) | ((p->dy < 0) << 5) | (p->buttons & 0x07);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 ps2_data[1] = mousedev_limit_delta(p->dx, 127);
603 ps2_data[2] = mousedev_limit_delta(p->dy, 127);
604 p->dx -= ps2_data[1];
605 p->dy -= ps2_data[2];
606
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400607 switch (client->mode) {
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400608 case MOUSEDEV_EMUL_EXPS:
609 ps2_data[3] = mousedev_limit_delta(p->dz, 7);
610 p->dz -= ps2_data[3];
611 ps2_data[3] = (ps2_data[3] & 0x0f) | ((p->buttons & 0x18) << 1);
612 client->bufsiz = 4;
613 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400615 case MOUSEDEV_EMUL_IMPS:
616 ps2_data[0] |=
617 ((p->buttons & 0x10) >> 3) | ((p->buttons & 0x08) >> 1);
618 ps2_data[3] = mousedev_limit_delta(p->dz, 127);
619 p->dz -= ps2_data[3];
620 client->bufsiz = 4;
621 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400623 case MOUSEDEV_EMUL_PS2:
624 default:
625 ps2_data[0] |=
626 ((p->buttons & 0x10) >> 3) | ((p->buttons & 0x08) >> 1);
627 p->dz = 0;
628 client->bufsiz = 3;
629 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 }
631
632 if (!p->dx && !p->dy && !p->dz) {
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400633 if (client->tail == client->head) {
634 client->ready = 0;
635 client->last_buttons = p->buttons;
Pavel Machekc1e4c8d2005-05-27 12:53:03 -0700636 } else
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400637 client->tail = (client->tail + 1) % PACKET_QUEUE_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639}
640
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400641static void mousedev_generate_response(struct mousedev_client *client,
642 int command)
643{
644 client->ps2[0] = 0xfa; /* ACK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400646 switch (command) {
647
648 case 0xeb: /* Poll */
649 mousedev_packet(client, &client->ps2[1]);
650 client->bufsiz++; /* account for leading ACK */
651 break;
652
653 case 0xf2: /* Get ID */
654 switch (client->mode) {
655 case MOUSEDEV_EMUL_PS2:
656 client->ps2[1] = 0;
657 break;
658 case MOUSEDEV_EMUL_IMPS:
659 client->ps2[1] = 3;
660 break;
661 case MOUSEDEV_EMUL_EXPS:
662 client->ps2[1] = 4;
663 break;
664 }
665 client->bufsiz = 2;
666 break;
667
668 case 0xe9: /* Get info */
669 client->ps2[1] = 0x60; client->ps2[2] = 3; client->ps2[3] = 200;
670 client->bufsiz = 4;
671 break;
672
673 case 0xff: /* Reset */
674 client->impsseq = client->imexseq = 0;
675 client->mode = MOUSEDEV_EMUL_PS2;
676 client->ps2[1] = 0xaa; client->ps2[2] = 0x00;
677 client->bufsiz = 3;
678 break;
679
680 default:
681 client->bufsiz = 1;
682 break;
683 }
684 client->buffer = client->bufsiz;
685}
686
687static ssize_t mousedev_write(struct file *file, const char __user *buffer,
688 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400690 struct mousedev_client *client = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 unsigned char c;
692 unsigned int i;
693
694 for (i = 0; i < count; i++) {
695
696 if (get_user(c, buffer + i))
697 return -EFAULT;
698
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400699 spin_lock_irq(&client->packet_lock);
700
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400701 if (c == mousedev_imex_seq[client->imexseq]) {
702 if (++client->imexseq == MOUSEDEV_SEQ_LEN) {
703 client->imexseq = 0;
704 client->mode = MOUSEDEV_EMUL_EXPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 }
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400706 } else
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400707 client->imexseq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400709 if (c == mousedev_imps_seq[client->impsseq]) {
710 if (++client->impsseq == MOUSEDEV_SEQ_LEN) {
711 client->impsseq = 0;
712 client->mode = MOUSEDEV_EMUL_IMPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 }
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400714 } else
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400715 client->impsseq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400717 mousedev_generate_response(client, c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400719 spin_unlock_irq(&client->packet_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 }
721
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400722 kill_fasync(&client->fasync, SIGIO, POLL_IN);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400723 wake_up_interruptible(&client->mousedev->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
725 return count;
726}
727
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400728static ssize_t mousedev_read(struct file *file, char __user *buffer,
729 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400731 struct mousedev_client *client = file->private_data;
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400732 struct mousedev *mousedev = client->mousedev;
733 signed char data[sizeof(client->ps2)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 int retval = 0;
735
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400736 if (!client->ready && !client->buffer && mousedev->exist &&
737 (file->f_flags & O_NONBLOCK))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 return -EAGAIN;
739
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400740 retval = wait_event_interruptible(mousedev->wait,
741 !mousedev->exist || client->ready || client->buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 if (retval)
743 return retval;
744
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400745 if (!mousedev->exist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 return -ENODEV;
747
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400748 spin_lock_irq(&client->packet_lock);
749
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400750 if (!client->buffer && client->ready) {
751 mousedev_packet(client, client->ps2);
752 client->buffer = client->bufsiz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 }
754
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400755 if (count > client->buffer)
756 count = client->buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400758 memcpy(data, client->ps2 + client->bufsiz - client->buffer, count);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400759 client->buffer -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400761 spin_unlock_irq(&client->packet_lock);
762
763 if (copy_to_user(buffer, data, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 return -EFAULT;
765
766 return count;
767}
768
769/* No kernel lock - fine */
770static unsigned int mousedev_poll(struct file *file, poll_table *wait)
771{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400772 struct mousedev_client *client = file->private_data;
773 struct mousedev *mousedev = client->mousedev;
Julien Moutinho4d4bf992010-07-15 23:27:56 -0700774 unsigned int mask;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400775
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400776 poll_wait(file, &mousedev->wait, wait);
Julien Moutinho4d4bf992010-07-15 23:27:56 -0700777
778 mask = mousedev->exist ? POLLOUT | POLLWRNORM : POLLHUP | POLLERR;
779 if (client->ready || client->buffer)
780 mask |= POLLIN | POLLRDNORM;
781
782 return mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783}
784
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400785static const struct file_operations mousedev_fops = {
Dmitry Torokhov1c74585e2012-10-08 09:07:24 -0700786 .owner = THIS_MODULE,
787 .read = mousedev_read,
788 .write = mousedev_write,
789 .poll = mousedev_poll,
790 .open = mousedev_open,
791 .release = mousedev_release,
792 .fasync = mousedev_fasync,
793 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794};
795
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400796static int mousedev_install_chrdev(struct mousedev *mousedev)
797{
798 mousedev_table[mousedev->minor] = mousedev;
799 return 0;
800}
801
802static void mousedev_remove_chrdev(struct mousedev *mousedev)
803{
804 mutex_lock(&mousedev_table_mutex);
805 mousedev_table[mousedev->minor] = NULL;
806 mutex_unlock(&mousedev_table_mutex);
807}
808
809/*
810 * Mark device non-existent. This disables writes, ioctls and
811 * prevents new users from opening the device. Already posted
812 * blocking reads will stay, however new ones will fail.
813 */
814static void mousedev_mark_dead(struct mousedev *mousedev)
815{
816 mutex_lock(&mousedev->mutex);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -0700817 mousedev->exist = false;
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400818 mutex_unlock(&mousedev->mutex);
819}
820
821/*
822 * Wake up users waiting for IO so they can disconnect from
823 * dead device.
824 */
825static void mousedev_hangup(struct mousedev *mousedev)
826{
827 struct mousedev_client *client;
828
829 spin_lock(&mousedev->client_lock);
830 list_for_each_entry(client, &mousedev->client_list, node)
831 kill_fasync(&client->fasync, SIGIO, POLL_HUP);
832 spin_unlock(&mousedev->client_lock);
833
834 wake_up_interruptible(&mousedev->wait);
835}
836
837static void mousedev_cleanup(struct mousedev *mousedev)
838{
839 struct input_handle *handle = &mousedev->handle;
840
841 mousedev_mark_dead(mousedev);
842 mousedev_hangup(mousedev);
843 mousedev_remove_chrdev(mousedev);
844
845 /* mousedev is marked dead so no one else accesses mousedev->open */
846 if (mousedev->open)
847 input_close_device(handle);
848}
849
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400850static struct mousedev *mousedev_create(struct input_dev *dev,
851 struct input_handler *handler,
852 int minor)
853{
854 struct mousedev *mousedev;
855 int error;
856
857 mousedev = kzalloc(sizeof(struct mousedev), GFP_KERNEL);
858 if (!mousedev) {
859 error = -ENOMEM;
860 goto err_out;
861 }
862
863 INIT_LIST_HEAD(&mousedev->client_list);
864 INIT_LIST_HEAD(&mousedev->mixdev_node);
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400865 spin_lock_init(&mousedev->client_lock);
866 mutex_init(&mousedev->mutex);
867 lockdep_set_subclass(&mousedev->mutex,
Hitoshi Mitakef74eef92010-10-13 11:35:40 -0700868 minor == MOUSEDEV_MIX ? SINGLE_DEPTH_NESTING : 0);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400869 init_waitqueue_head(&mousedev->wait);
870
871 if (minor == MOUSEDEV_MIX)
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -0700872 dev_set_name(&mousedev->dev, "mice");
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400873 else
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -0700874 dev_set_name(&mousedev->dev, "mouse%d", minor);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400875
876 mousedev->minor = minor;
Dmitry Torokhov20da92d2010-07-15 23:27:36 -0700877 mousedev->exist = true;
Dmitry Torokhova7097ff2008-04-01 00:22:53 -0400878 mousedev->handle.dev = input_get_device(dev);
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -0700879 mousedev->handle.name = dev_name(&mousedev->dev);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400880 mousedev->handle.handler = handler;
881 mousedev->handle.private = mousedev;
882
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400883 mousedev->dev.class = &input_class;
884 if (dev)
885 mousedev->dev.parent = &dev->dev;
886 mousedev->dev.devt = MKDEV(INPUT_MAJOR, MOUSEDEV_MINOR_BASE + minor);
887 mousedev->dev.release = mousedev_free;
888 device_initialize(&mousedev->dev);
889
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400890 if (minor != MOUSEDEV_MIX) {
891 error = input_register_handle(&mousedev->handle);
892 if (error)
893 goto err_free_mousedev;
894 }
895
896 error = mousedev_install_chrdev(mousedev);
897 if (error)
898 goto err_unregister_handle;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400899
900 error = device_add(&mousedev->dev);
901 if (error)
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400902 goto err_cleanup_mousedev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400903
904 return mousedev;
905
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400906 err_cleanup_mousedev:
907 mousedev_cleanup(mousedev);
908 err_unregister_handle:
909 if (minor != MOUSEDEV_MIX)
910 input_unregister_handle(&mousedev->handle);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400911 err_free_mousedev:
912 put_device(&mousedev->dev);
913 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);
921 if (mousedev->minor != MOUSEDEV_MIX)
922 input_unregister_handle(&mousedev->handle);
923 put_device(&mousedev->dev);
924}
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400925
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400926static int mixdev_add_device(struct mousedev *mousedev)
927{
928 int retval;
929
930 retval = mutex_lock_interruptible(&mousedev_mix->mutex);
931 if (retval)
932 return retval;
933
934 if (mousedev_mix->open) {
935 retval = mousedev_open_device(mousedev);
936 if (retval)
937 goto out;
938
Dmitry Torokhov3376b8b2012-10-08 09:07:24 -0700939 mousedev->opened_by_mixdev = true;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400940 }
941
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400942 get_device(&mousedev->dev);
943 list_add_tail(&mousedev->mixdev_node, &mousedev_mix_list);
944
945 out:
946 mutex_unlock(&mousedev_mix->mutex);
947 return retval;
948}
949
950static void mixdev_remove_device(struct mousedev *mousedev)
951{
952 mutex_lock(&mousedev_mix->mutex);
953
Dmitry Torokhov3376b8b2012-10-08 09:07:24 -0700954 if (mousedev->opened_by_mixdev) {
955 mousedev->opened_by_mixdev = false;
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400956 mousedev_close_device(mousedev);
957 }
958
959 list_del_init(&mousedev->mixdev_node);
960 mutex_unlock(&mousedev_mix->mutex);
961
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400962 put_device(&mousedev->dev);
963}
964
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400965static int mousedev_connect(struct input_handler *handler,
966 struct input_dev *dev,
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -0400967 const struct input_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968{
969 struct mousedev *mousedev;
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -0400970 int minor;
971 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400973 for (minor = 0; minor < MOUSEDEV_MINORS; minor++)
974 if (!mousedev_table[minor])
975 break;
976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 if (minor == MOUSEDEV_MINORS) {
Joe Perchesda0c4902010-11-29 23:33:07 -0800978 pr_err("no more free mousedev devices\n");
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -0400979 return -ENFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 }
981
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400982 mousedev = mousedev_create(dev, handler, minor);
983 if (IS_ERR(mousedev))
984 return PTR_ERR(mousedev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400986 error = mixdev_add_device(mousedev);
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400987 if (error) {
988 mousedev_destroy(mousedev);
989 return error;
990 }
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -0400991
992 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993}
994
995static void mousedev_disconnect(struct input_handle *handle)
996{
997 struct mousedev *mousedev = handle->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400999 mixdev_remove_device(mousedev);
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001000 mousedev_destroy(mousedev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001}
1002
Dmitry Torokhov66e66112006-09-14 01:31:59 -04001003static const struct input_device_id mousedev_ids[] = {
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_KEYBIT |
1007 INPUT_DEVICE_ID_MATCH_RELBIT,
Jiri Slaby7b19ada2007-10-18 23:40:32 -07001008 .evbit = { BIT_MASK(EV_KEY) | BIT_MASK(EV_REL) },
1009 .keybit = { [BIT_WORD(BTN_LEFT)] = BIT_MASK(BTN_LEFT) },
1010 .relbit = { BIT_MASK(REL_X) | BIT_MASK(REL_Y) },
Dmitry Torokhov464b2412007-08-30 00:22:24 -04001011 }, /* A mouse like device, at least one button,
1012 two relative axes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 {
Dmitry Torokhov464b2412007-08-30 00:22:24 -04001014 .flags = INPUT_DEVICE_ID_MATCH_EVBIT |
1015 INPUT_DEVICE_ID_MATCH_RELBIT,
Jiri Slaby7b19ada2007-10-18 23:40:32 -07001016 .evbit = { BIT_MASK(EV_KEY) | BIT_MASK(EV_REL) },
1017 .relbit = { BIT_MASK(REL_WHEEL) },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 }, /* A separate scrollwheel */
1019 {
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_TOUCH)] = BIT_MASK(BTN_TOUCH) },
1025 .absbit = { BIT_MASK(ABS_X) | BIT_MASK(ABS_Y) },
Dmitry Torokhov464b2412007-08-30 00:22:24 -04001026 }, /* A tablet like device, at least touch detection,
1027 two absolute axes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 {
Dmitry Torokhov464b2412007-08-30 00:22:24 -04001029 .flags = INPUT_DEVICE_ID_MATCH_EVBIT |
1030 INPUT_DEVICE_ID_MATCH_KEYBIT |
1031 INPUT_DEVICE_ID_MATCH_ABSBIT,
Jiri Slaby7b19ada2007-10-18 23:40:32 -07001032 .evbit = { BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS) },
1033 .keybit = { [BIT_WORD(BTN_TOOL_FINGER)] =
1034 BIT_MASK(BTN_TOOL_FINGER) },
1035 .absbit = { BIT_MASK(ABS_X) | BIT_MASK(ABS_Y) |
1036 BIT_MASK(ABS_PRESSURE) |
1037 BIT_MASK(ABS_TOOL_WIDTH) },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 }, /* A touchpad */
Micah Parrish6724f932008-01-17 12:01:04 -05001039 {
1040 .flags = INPUT_DEVICE_ID_MATCH_EVBIT |
1041 INPUT_DEVICE_ID_MATCH_KEYBIT |
1042 INPUT_DEVICE_ID_MATCH_ABSBIT,
Dmitry Torokhovd182c102008-01-30 16:33:40 -05001043 .evbit = { BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS) },
Micah Parrish6724f932008-01-17 12:01:04 -05001044 .keybit = { [BIT_WORD(BTN_LEFT)] = BIT_MASK(BTN_LEFT) },
1045 .absbit = { BIT_MASK(ABS_X) | BIT_MASK(ABS_Y) },
1046 }, /* Mouse-like device with absolute X and Y but ordinary
1047 clicks, like hp ILO2 High Performance mouse */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -04001049 { }, /* Terminating entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050};
1051
1052MODULE_DEVICE_TABLE(input, mousedev_ids);
1053
1054static struct input_handler mousedev_handler = {
Dmitry Torokhov1c74585e2012-10-08 09:07:24 -07001055 .event = mousedev_event,
1056 .connect = mousedev_connect,
1057 .disconnect = mousedev_disconnect,
1058 .fops = &mousedev_fops,
1059 .minor = MOUSEDEV_MINOR_BASE,
1060 .name = "mousedev",
1061 .id_table = mousedev_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062};
1063
1064#ifdef CONFIG_INPUT_MOUSEDEV_PSAUX
Dmitry Torokhova2cb1192012-10-08 09:07:23 -07001065#include <linux/miscdevice.h>
1066
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067static struct miscdevice psaux_mouse = {
Dmitry Torokhova2cb1192012-10-08 09:07:23 -07001068 .minor = PSMOUSE_MINOR,
1069 .name = "psaux",
1070 .fops = &mousedev_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071};
Dmitry Torokhova2cb1192012-10-08 09:07:23 -07001072
1073static bool psaux_registered;
1074
1075static void __init mousedev_psaux_register(void)
1076{
1077 int error;
1078
1079 error = misc_register(&psaux_mouse);
1080 if (error)
1081 pr_warn("could not register psaux device, error: %d\n",
1082 error);
1083 else
1084 psaux_registered = true;
1085}
1086
1087static void __exit mousedev_psaux_unregister(void)
1088{
1089 if (psaux_registered)
1090 misc_deregister(&psaux_mouse);
1091}
1092#else
1093static inline void mousedev_psaux_register(void) { }
1094static inline void mousedev_psaux_unregister(void) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095#endif
1096
1097static int __init mousedev_init(void)
1098{
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001099 int error;
1100
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001101 mousedev_mix = mousedev_create(NULL, &mousedev_handler, MOUSEDEV_MIX);
1102 if (IS_ERR(mousedev_mix))
1103 return PTR_ERR(mousedev_mix);
1104
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001105 error = input_register_handler(&mousedev_handler);
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001106 if (error) {
1107 mousedev_destroy(mousedev_mix);
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001108 return error;
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001109 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
Dmitry Torokhova2cb1192012-10-08 09:07:23 -07001111 mousedev_psaux_register();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
Joe Perchesda0c4902010-11-29 23:33:07 -08001113 pr_info("PS/2 mouse device common for all mice\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
1115 return 0;
1116}
1117
1118static void __exit mousedev_exit(void)
1119{
Dmitry Torokhova2cb1192012-10-08 09:07:23 -07001120 mousedev_psaux_unregister();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 input_unregister_handler(&mousedev_handler);
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001122 mousedev_destroy(mousedev_mix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123}
1124
1125module_init(mousedev_init);
1126module_exit(mousedev_exit);