blob: 30328e57fddae69aea599b7636bf00f9e862902c [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
Dmitry Torokhovc91cb7a2012-11-16 09:14:12 -080015#define MOUSEDEV_MINORS 31
16#define MOUSEDEV_MIX 63
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Nick Desaulniersb4361da2017-06-24 22:50:12 -070018#include <linux/bitops.h>
Alexey Dobriyana99bbaf2009-10-04 16:11:37 +040019#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/slab.h>
21#include <linux/poll.h>
22#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/init.h>
24#include <linux/input.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/random.h>
26#include <linux/major.h>
27#include <linux/device.h>
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -070028#include <linux/cdev.h>
Daniel Mack987a6c02010-08-02 20:15:17 -070029#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
32MODULE_DESCRIPTION("Mouse (ExplorerPS/2) device interfaces");
33MODULE_LICENSE("GPL");
34
35#ifndef CONFIG_INPUT_MOUSEDEV_SCREEN_X
36#define CONFIG_INPUT_MOUSEDEV_SCREEN_X 1024
37#endif
38#ifndef CONFIG_INPUT_MOUSEDEV_SCREEN_Y
39#define CONFIG_INPUT_MOUSEDEV_SCREEN_Y 768
40#endif
41
42static int xres = CONFIG_INPUT_MOUSEDEV_SCREEN_X;
Dmitry Torokhov84c12b22005-12-11 12:41:03 -050043module_param(xres, uint, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044MODULE_PARM_DESC(xres, "Horizontal screen resolution");
45
46static int yres = CONFIG_INPUT_MOUSEDEV_SCREEN_Y;
Dmitry Torokhov84c12b22005-12-11 12:41:03 -050047module_param(yres, uint, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048MODULE_PARM_DESC(yres, "Vertical screen resolution");
49
50static unsigned tap_time = 200;
Dmitry Torokhov84c12b22005-12-11 12:41:03 -050051module_param(tap_time, uint, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052MODULE_PARM_DESC(tap_time, "Tap time for touchpads in absolute mode (msecs)");
53
54struct mousedev_hw_data {
55 int dx, dy, dz;
56 int x, y;
57 int abs_event;
58 unsigned long buttons;
59};
60
61struct mousedev {
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 int open;
Dmitry Torokhov464b2412007-08-30 00:22:24 -040063 struct input_handle handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 wait_queue_head_t wait;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040065 struct list_head client_list;
Dmitry Torokhov464b2412007-08-30 00:22:24 -040066 spinlock_t client_lock; /* protects client_list */
67 struct mutex mutex;
Dmitry Torokhov9657d752007-06-14 23:32:24 -040068 struct device dev;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -070069 struct cdev cdev;
Dmitry Torokhov20da92d2010-07-15 23:27:36 -070070 bool exist;
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;
Dmitry Torokhove4dbedc2014-03-06 12:57:24 -080080
81 int (*open_device)(struct mousedev *mousedev);
82 void (*close_device)(struct mousedev *mousedev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083};
84
85enum mousedev_emul {
86 MOUSEDEV_EMUL_PS2,
87 MOUSEDEV_EMUL_IMPS,
88 MOUSEDEV_EMUL_EXPS
89};
90
91struct mousedev_motion {
92 int dx, dy, dz;
93 unsigned long buttons;
94};
95
96#define PACKET_QUEUE_LEN 16
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040097struct mousedev_client {
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 struct fasync_struct *fasync;
99 struct mousedev *mousedev;
100 struct list_head node;
101
102 struct mousedev_motion packets[PACKET_QUEUE_LEN];
103 unsigned int head, tail;
104 spinlock_t packet_lock;
105 int pos_x, pos_y;
106
Nick Desaulniersb4361da2017-06-24 22:50:12 -0700107 u8 ps2[6];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 unsigned char ready, buffer, bufsiz;
109 unsigned char imexseq, impsseq;
110 enum mousedev_emul mode;
Pavel Machekc1e4c8d2005-05-27 12:53:03 -0700111 unsigned long last_buttons;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112};
113
114#define MOUSEDEV_SEQ_LEN 6
115
116static unsigned char mousedev_imps_seq[] = { 0xf3, 200, 0xf3, 100, 0xf3, 80 };
117static unsigned char mousedev_imex_seq[] = { 0xf3, 200, 0xf3, 200, 0xf3, 80 };
118
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400119static struct mousedev *mousedev_mix;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400120static LIST_HEAD(mousedev_mix_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122#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;
Nick Desaulniersb4361da2017-06-24 22:50:12 -0700295 client->pos_x = clamp_val(client->pos_x, 0, xres);
296
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400297 client->pos_y += packet->dy;
Nick Desaulniersb4361da2017-06-24 22:50:12 -0700298 client->pos_y = clamp_val(client->pos_y, 0, yres);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300 p->dx += packet->dx;
301 p->dy += packet->dy;
302 p->dz += packet->dz;
303 p->buttons = mousedev->packet.buttons;
304
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400305 if (p->dx || p->dy || p->dz ||
306 p->buttons != client->last_buttons)
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400307 client->ready = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400309 spin_unlock(&client->packet_lock);
Pavel Machekc1e4c8d2005-05-27 12:53:03 -0700310
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400311 if (client->ready) {
312 kill_fasync(&client->fasync, SIGIO, POLL_IN);
Dmitry Torokhov81211522005-06-01 02:39:36 -0500313 wake_readers = 1;
314 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 }
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400316 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Dmitry Torokhov81211522005-06-01 02:39:36 -0500318 if (wake_readers)
319 wake_up_interruptible(&mousedev->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320}
321
322static void mousedev_touchpad_touch(struct mousedev *mousedev, int value)
323{
324 if (!value) {
325 if (mousedev->touch &&
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400326 time_before(jiffies,
327 mousedev->touch + msecs_to_jiffies(tap_time))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 /*
329 * Toggle left button to emulate tap.
330 * We rely on the fact that mousedev_mix always has 0
331 * motion packet so we won't mess current position.
332 */
333 set_bit(0, &mousedev->packet.buttons);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400334 set_bit(0, &mousedev_mix->packet.buttons);
335 mousedev_notify_readers(mousedev, &mousedev_mix->packet);
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400336 mousedev_notify_readers(mousedev_mix,
337 &mousedev_mix->packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 clear_bit(0, &mousedev->packet.buttons);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400339 clear_bit(0, &mousedev_mix->packet.buttons);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 }
341 mousedev->touch = mousedev->pkt_count = 0;
342 mousedev->frac_dx = 0;
343 mousedev->frac_dy = 0;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400344
345 } else if (!mousedev->touch)
346 mousedev->touch = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347}
348
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400349static void mousedev_event(struct input_handle *handle,
350 unsigned int type, unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
352 struct mousedev *mousedev = handle->private;
353
354 switch (type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400356 case EV_ABS:
357 /* Ignore joysticks */
358 if (test_bit(BTN_TRIGGER, handle->dev->keybit))
359 return;
360
361 if (test_bit(BTN_TOOL_FINGER, handle->dev->keybit))
362 mousedev_touchpad_event(handle->dev,
363 mousedev, code, value);
364 else
365 mousedev_abs_event(handle->dev, mousedev, code, value);
366
367 break;
368
369 case EV_REL:
370 mousedev_rel_event(mousedev, code, value);
371 break;
372
373 case EV_KEY:
374 if (value != 2) {
375 if (code == BTN_TOUCH &&
376 test_bit(BTN_TOOL_FINGER, handle->dev->keybit))
377 mousedev_touchpad_touch(mousedev, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 else
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400379 mousedev_key_event(mousedev, code, value);
380 }
381 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400383 case EV_SYN:
384 if (code == SYN_REPORT) {
385 if (mousedev->touch) {
386 mousedev->pkt_count++;
387 /*
388 * Input system eats duplicate events,
389 * but we need all of them to do correct
390 * averaging so apply present one forward
391 */
392 fx(0) = fx(1);
393 fy(0) = fy(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400396 mousedev_notify_readers(mousedev, &mousedev->packet);
397 mousedev_notify_readers(mousedev_mix, &mousedev->packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400399 mousedev->packet.dx = mousedev->packet.dy =
400 mousedev->packet.dz = 0;
401 mousedev->packet.abs_event = 0;
402 }
403 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 }
405}
406
407static int mousedev_fasync(int fd, struct file *file, int on)
408{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400409 struct mousedev_client *client = file->private_data;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400410
Jonathan Corbet60aa4922009-02-01 14:52:56 -0700411 return fasync_helper(fd, file, on, &client->fasync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412}
413
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400414static void mousedev_free(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400416 struct mousedev *mousedev = container_of(dev, struct mousedev, dev);
417
Dmitry Torokhova7097ff2008-04-01 00:22:53 -0400418 input_put_device(mousedev->handle.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 kfree(mousedev);
420}
421
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400422static int mousedev_open_device(struct mousedev *mousedev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400424 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400426 retval = mutex_lock_interruptible(&mousedev->mutex);
427 if (retval)
428 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Dmitry Torokhove4dbedc2014-03-06 12:57:24 -0800430 if (!mousedev->exist)
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400431 retval = -ENODEV;
Oliver Neukum06445012007-10-12 14:18:40 -0400432 else if (!mousedev->open++) {
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400433 retval = input_open_device(&mousedev->handle);
Oliver Neukum06445012007-10-12 14:18:40 -0400434 if (retval)
435 mousedev->open--;
436 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400438 mutex_unlock(&mousedev->mutex);
439 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440}
441
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400442static void mousedev_close_device(struct mousedev *mousedev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400444 mutex_lock(&mousedev->mutex);
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400445
Dmitry Torokhove4dbedc2014-03-06 12:57:24 -0800446 if (mousedev->exist && !--mousedev->open)
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400447 input_close_device(&mousedev->handle);
448
449 mutex_unlock(&mousedev->mutex);
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400450}
451
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400452/*
453 * Open all available devices so they can all be multiplexed in one.
454 * stream. Note that this function is called with mousedev_mix->mutex
455 * held.
456 */
Dmitry Torokhove4dbedc2014-03-06 12:57:24 -0800457static int mixdev_open_devices(struct mousedev *mixdev)
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400458{
Dmitry Torokhove4dbedc2014-03-06 12:57:24 -0800459 int error;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400460
Dmitry Torokhove4dbedc2014-03-06 12:57:24 -0800461 error = mutex_lock_interruptible(&mixdev->mutex);
462 if (error)
463 return error;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400464
Dmitry Torokhove4dbedc2014-03-06 12:57:24 -0800465 if (!mixdev->open++) {
466 struct mousedev *mousedev;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400467
Dmitry Torokhove4dbedc2014-03-06 12:57:24 -0800468 list_for_each_entry(mousedev, &mousedev_mix_list, mixdev_node) {
469 if (!mousedev->opened_by_mixdev) {
470 if (mousedev_open_device(mousedev))
471 continue;
472
473 mousedev->opened_by_mixdev = true;
474 }
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400475 }
476 }
Dmitry Torokhove4dbedc2014-03-06 12:57:24 -0800477
478 mutex_unlock(&mixdev->mutex);
479 return 0;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400480}
481
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400482/*
483 * Close all devices that were opened as part of multiplexed
484 * device. Note that this function is called with mousedev_mix->mutex
485 * held.
486 */
Dmitry Torokhove4dbedc2014-03-06 12:57:24 -0800487static void mixdev_close_devices(struct mousedev *mixdev)
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400488{
Dmitry Torokhove4dbedc2014-03-06 12:57:24 -0800489 mutex_lock(&mixdev->mutex);
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400490
Dmitry Torokhove4dbedc2014-03-06 12:57:24 -0800491 if (!--mixdev->open) {
492 struct mousedev *mousedev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400493
Dmitry Torokhove4dbedc2014-03-06 12:57:24 -0800494 list_for_each_entry(mousedev, &mousedev_mix_list, mixdev_node) {
495 if (mousedev->opened_by_mixdev) {
496 mousedev->opened_by_mixdev = false;
497 mousedev_close_device(mousedev);
498 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 }
500 }
Dmitry Torokhove4dbedc2014-03-06 12:57:24 -0800501
502 mutex_unlock(&mixdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503}
504
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400505
506static void mousedev_attach_client(struct mousedev *mousedev,
507 struct mousedev_client *client)
508{
509 spin_lock(&mousedev->client_lock);
510 list_add_tail_rcu(&client->node, &mousedev->client_list);
511 spin_unlock(&mousedev->client_lock);
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400512}
513
514static void mousedev_detach_client(struct mousedev *mousedev,
515 struct mousedev_client *client)
516{
517 spin_lock(&mousedev->client_lock);
518 list_del_rcu(&client->node);
519 spin_unlock(&mousedev->client_lock);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400520 synchronize_rcu();
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400521}
522
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400523static int mousedev_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400525 struct mousedev_client *client = file->private_data;
526 struct mousedev *mousedev = client->mousedev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400528 mousedev_detach_client(mousedev, client);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400529 kfree(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Dmitry Torokhove4dbedc2014-03-06 12:57:24 -0800531 mousedev->close_device(mousedev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 return 0;
534}
535
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400536static int mousedev_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400538 struct mousedev_client *client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 struct mousedev *mousedev;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400540 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
542#ifdef CONFIG_INPUT_MOUSEDEV_PSAUX
543 if (imajor(inode) == MISC_MAJOR)
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700544 mousedev = mousedev_mix;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 else
546#endif
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700547 mousedev = container_of(inode->i_cdev, struct mousedev, cdev);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400548
549 client = kzalloc(sizeof(struct mousedev_client), GFP_KERNEL);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700550 if (!client)
551 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400553 spin_lock_init(&client->packet_lock);
554 client->pos_x = xres / 2;
555 client->pos_y = yres / 2;
556 client->mousedev = mousedev;
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400557 mousedev_attach_client(mousedev, client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Dmitry Torokhove4dbedc2014-03-06 12:57:24 -0800559 error = mousedev->open_device(mousedev);
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400560 if (error)
561 goto err_free_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400563 file->private_data = client;
Dmitry Torokhov0124be42012-10-08 09:07:24 -0700564 nonseekable_open(inode, file);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700565
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 return 0;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400567
568 err_free_client:
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400569 mousedev_detach_client(mousedev, client);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400570 kfree(client);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400571 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572}
573
Nick Desaulniersb4361da2017-06-24 22:50:12 -0700574static void mousedev_packet(struct mousedev_client *client, u8 *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];
Nick Desaulniersb4361da2017-06-24 22:50:12 -0700577 s8 dx, dy, dz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Nick Desaulniersb4361da2017-06-24 22:50:12 -0700579 dx = clamp_val(p->dx, -127, 127);
580 p->dx -= dx;
581
582 dy = clamp_val(p->dy, -127, 127);
583 p->dy -= dy;
584
585 ps2_data[0] = BIT(3);
586 ps2_data[0] |= ((dx & BIT(7)) >> 3) | ((dy & BIT(7)) >> 2);
587 ps2_data[0] |= p->buttons & 0x07;
588 ps2_data[1] = dx;
589 ps2_data[2] = dy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400591 switch (client->mode) {
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400592 case MOUSEDEV_EMUL_EXPS:
Nick Desaulniersb4361da2017-06-24 22:50:12 -0700593 dz = clamp_val(p->dz, -7, 7);
594 p->dz -= dz;
595
596 ps2_data[3] = (dz & 0x0f) | ((p->buttons & 0x18) << 1);
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400597 client->bufsiz = 4;
598 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400600 case MOUSEDEV_EMUL_IMPS:
Nick Desaulniersb4361da2017-06-24 22:50:12 -0700601 dz = clamp_val(p->dz, -127, 127);
602 p->dz -= dz;
603
604 ps2_data[0] |= ((p->buttons & 0x10) >> 3) |
605 ((p->buttons & 0x08) >> 1);
606 ps2_data[3] = dz;
607
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400608 client->bufsiz = 4;
609 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400611 case MOUSEDEV_EMUL_PS2:
612 default:
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400613 p->dz = 0;
Nick Desaulniersb4361da2017-06-24 22:50:12 -0700614
615 ps2_data[0] |= ((p->buttons & 0x10) >> 3) |
616 ((p->buttons & 0x08) >> 1);
617
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400618 client->bufsiz = 3;
619 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 }
621
622 if (!p->dx && !p->dy && !p->dz) {
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400623 if (client->tail == client->head) {
624 client->ready = 0;
625 client->last_buttons = p->buttons;
Pavel Machekc1e4c8d2005-05-27 12:53:03 -0700626 } else
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400627 client->tail = (client->tail + 1) % PACKET_QUEUE_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
630
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400631static void mousedev_generate_response(struct mousedev_client *client,
632 int command)
633{
634 client->ps2[0] = 0xfa; /* ACK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400636 switch (command) {
637
638 case 0xeb: /* Poll */
639 mousedev_packet(client, &client->ps2[1]);
640 client->bufsiz++; /* account for leading ACK */
641 break;
642
643 case 0xf2: /* Get ID */
644 switch (client->mode) {
645 case MOUSEDEV_EMUL_PS2:
646 client->ps2[1] = 0;
647 break;
648 case MOUSEDEV_EMUL_IMPS:
649 client->ps2[1] = 3;
650 break;
651 case MOUSEDEV_EMUL_EXPS:
652 client->ps2[1] = 4;
653 break;
654 }
655 client->bufsiz = 2;
656 break;
657
658 case 0xe9: /* Get info */
659 client->ps2[1] = 0x60; client->ps2[2] = 3; client->ps2[3] = 200;
660 client->bufsiz = 4;
661 break;
662
663 case 0xff: /* Reset */
664 client->impsseq = client->imexseq = 0;
665 client->mode = MOUSEDEV_EMUL_PS2;
666 client->ps2[1] = 0xaa; client->ps2[2] = 0x00;
667 client->bufsiz = 3;
668 break;
669
670 default:
671 client->bufsiz = 1;
672 break;
673 }
674 client->buffer = client->bufsiz;
675}
676
677static ssize_t mousedev_write(struct file *file, const char __user *buffer,
678 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400680 struct mousedev_client *client = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 unsigned char c;
682 unsigned int i;
683
684 for (i = 0; i < count; i++) {
685
686 if (get_user(c, buffer + i))
687 return -EFAULT;
688
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400689 spin_lock_irq(&client->packet_lock);
690
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400691 if (c == mousedev_imex_seq[client->imexseq]) {
692 if (++client->imexseq == MOUSEDEV_SEQ_LEN) {
693 client->imexseq = 0;
694 client->mode = MOUSEDEV_EMUL_EXPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 }
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400696 } else
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400697 client->imexseq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400699 if (c == mousedev_imps_seq[client->impsseq]) {
700 if (++client->impsseq == MOUSEDEV_SEQ_LEN) {
701 client->impsseq = 0;
702 client->mode = MOUSEDEV_EMUL_IMPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 }
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400704 } else
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400705 client->impsseq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400707 mousedev_generate_response(client, c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400709 spin_unlock_irq(&client->packet_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 }
711
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400712 kill_fasync(&client->fasync, SIGIO, POLL_IN);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400713 wake_up_interruptible(&client->mousedev->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
715 return count;
716}
717
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400718static ssize_t mousedev_read(struct file *file, char __user *buffer,
719 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400721 struct mousedev_client *client = file->private_data;
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400722 struct mousedev *mousedev = client->mousedev;
Nick Desaulniersb4361da2017-06-24 22:50:12 -0700723 u8 data[sizeof(client->ps2)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 int retval = 0;
725
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400726 if (!client->ready && !client->buffer && mousedev->exist &&
727 (file->f_flags & O_NONBLOCK))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 return -EAGAIN;
729
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400730 retval = wait_event_interruptible(mousedev->wait,
731 !mousedev->exist || client->ready || client->buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 if (retval)
733 return retval;
734
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400735 if (!mousedev->exist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 return -ENODEV;
737
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400738 spin_lock_irq(&client->packet_lock);
739
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400740 if (!client->buffer && client->ready) {
741 mousedev_packet(client, client->ps2);
742 client->buffer = client->bufsiz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 }
744
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400745 if (count > client->buffer)
746 count = client->buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400748 memcpy(data, client->ps2 + client->bufsiz - client->buffer, count);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400749 client->buffer -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400751 spin_unlock_irq(&client->packet_lock);
752
753 if (copy_to_user(buffer, data, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 return -EFAULT;
755
756 return count;
757}
758
759/* No kernel lock - fine */
760static unsigned int mousedev_poll(struct file *file, poll_table *wait)
761{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400762 struct mousedev_client *client = file->private_data;
763 struct mousedev *mousedev = client->mousedev;
Julien Moutinho4d4bf992010-07-15 23:27:56 -0700764 unsigned int mask;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400765
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400766 poll_wait(file, &mousedev->wait, wait);
Julien Moutinho4d4bf992010-07-15 23:27:56 -0700767
768 mask = mousedev->exist ? POLLOUT | POLLWRNORM : POLLHUP | POLLERR;
769 if (client->ready || client->buffer)
770 mask |= POLLIN | POLLRDNORM;
771
772 return mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773}
774
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400775static const struct file_operations mousedev_fops = {
Dmitry Torokhov1c74585e2012-10-08 09:07:24 -0700776 .owner = THIS_MODULE,
777 .read = mousedev_read,
778 .write = mousedev_write,
779 .poll = mousedev_poll,
780 .open = mousedev_open,
781 .release = mousedev_release,
782 .fasync = mousedev_fasync,
783 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784};
785
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400786/*
787 * Mark device non-existent. This disables writes, ioctls and
788 * prevents new users from opening the device. Already posted
789 * blocking reads will stay, however new ones will fail.
790 */
791static void mousedev_mark_dead(struct mousedev *mousedev)
792{
793 mutex_lock(&mousedev->mutex);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -0700794 mousedev->exist = false;
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400795 mutex_unlock(&mousedev->mutex);
796}
797
798/*
799 * Wake up users waiting for IO so they can disconnect from
800 * dead device.
801 */
802static void mousedev_hangup(struct mousedev *mousedev)
803{
804 struct mousedev_client *client;
805
806 spin_lock(&mousedev->client_lock);
807 list_for_each_entry(client, &mousedev->client_list, node)
808 kill_fasync(&client->fasync, SIGIO, POLL_HUP);
809 spin_unlock(&mousedev->client_lock);
810
811 wake_up_interruptible(&mousedev->wait);
812}
813
814static void mousedev_cleanup(struct mousedev *mousedev)
815{
816 struct input_handle *handle = &mousedev->handle;
817
818 mousedev_mark_dead(mousedev);
819 mousedev_hangup(mousedev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700820
821 cdev_del(&mousedev->cdev);
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400822
823 /* mousedev is marked dead so no one else accesses mousedev->open */
824 if (mousedev->open)
825 input_close_device(handle);
826}
827
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700828static int mousedev_reserve_minor(bool mixdev)
829{
830 int minor;
831
832 if (mixdev) {
833 minor = input_get_new_minor(MOUSEDEV_MIX, 1, false);
834 if (minor < 0)
835 pr_err("failed to reserve mixdev minor: %d\n", minor);
836 } else {
837 minor = input_get_new_minor(MOUSEDEV_MINOR_BASE,
838 MOUSEDEV_MINORS, true);
839 if (minor < 0)
840 pr_err("failed to reserve new minor: %d\n", minor);
841 }
842
843 return minor;
844}
845
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400846static struct mousedev *mousedev_create(struct input_dev *dev,
847 struct input_handler *handler,
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700848 bool mixdev)
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400849{
850 struct mousedev *mousedev;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700851 int minor;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400852 int error;
853
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700854 minor = mousedev_reserve_minor(mixdev);
855 if (minor < 0) {
856 error = minor;
857 goto err_out;
858 }
859
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400860 mousedev = kzalloc(sizeof(struct mousedev), GFP_KERNEL);
861 if (!mousedev) {
862 error = -ENOMEM;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700863 goto err_free_minor;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400864 }
865
866 INIT_LIST_HEAD(&mousedev->client_list);
867 INIT_LIST_HEAD(&mousedev->mixdev_node);
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400868 spin_lock_init(&mousedev->client_lock);
869 mutex_init(&mousedev->mutex);
870 lockdep_set_subclass(&mousedev->mutex,
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700871 mixdev ? SINGLE_DEPTH_NESTING : 0);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400872 init_waitqueue_head(&mousedev->wait);
873
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700874 if (mixdev) {
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -0700875 dev_set_name(&mousedev->dev, "mice");
Dmitry Torokhove4dbedc2014-03-06 12:57:24 -0800876
877 mousedev->open_device = mixdev_open_devices;
878 mousedev->close_device = mixdev_close_devices;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700879 } else {
880 int dev_no = minor;
881 /* Normalize device number if it falls into legacy range */
882 if (dev_no < MOUSEDEV_MINOR_BASE + MOUSEDEV_MINORS)
883 dev_no -= MOUSEDEV_MINOR_BASE;
884 dev_set_name(&mousedev->dev, "mouse%d", dev_no);
Dmitry Torokhove4dbedc2014-03-06 12:57:24 -0800885
886 mousedev->open_device = mousedev_open_device;
887 mousedev->close_device = mousedev_close_device;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700888 }
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400889
Dmitry Torokhov20da92d2010-07-15 23:27:36 -0700890 mousedev->exist = true;
Dmitry Torokhova7097ff2008-04-01 00:22:53 -0400891 mousedev->handle.dev = input_get_device(dev);
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -0700892 mousedev->handle.name = dev_name(&mousedev->dev);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400893 mousedev->handle.handler = handler;
894 mousedev->handle.private = mousedev;
895
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400896 mousedev->dev.class = &input_class;
897 if (dev)
898 mousedev->dev.parent = &dev->dev;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700899 mousedev->dev.devt = MKDEV(INPUT_MAJOR, minor);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400900 mousedev->dev.release = mousedev_free;
901 device_initialize(&mousedev->dev);
902
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700903 if (!mixdev) {
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400904 error = input_register_handle(&mousedev->handle);
905 if (error)
906 goto err_free_mousedev;
907 }
908
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700909 cdev_init(&mousedev->cdev, &mousedev_fops);
Dmitry Torokhov4a215aa2012-10-21 17:57:20 -0700910 mousedev->cdev.kobj.parent = &mousedev->dev.kobj;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700911 error = cdev_add(&mousedev->cdev, mousedev->dev.devt, 1);
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400912 if (error)
913 goto err_unregister_handle;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400914
915 error = device_add(&mousedev->dev);
916 if (error)
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400917 goto err_cleanup_mousedev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400918
919 return mousedev;
920
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400921 err_cleanup_mousedev:
922 mousedev_cleanup(mousedev);
923 err_unregister_handle:
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700924 if (!mixdev)
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400925 input_unregister_handle(&mousedev->handle);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400926 err_free_mousedev:
927 put_device(&mousedev->dev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700928 err_free_minor:
929 input_free_minor(minor);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400930 err_out:
931 return ERR_PTR(error);
932}
933
934static void mousedev_destroy(struct mousedev *mousedev)
935{
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400936 device_del(&mousedev->dev);
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400937 mousedev_cleanup(mousedev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700938 input_free_minor(MINOR(mousedev->dev.devt));
Dmitry Torokhove4dbedc2014-03-06 12:57:24 -0800939 if (mousedev != mousedev_mix)
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400940 input_unregister_handle(&mousedev->handle);
941 put_device(&mousedev->dev);
942}
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400943
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400944static int mixdev_add_device(struct mousedev *mousedev)
945{
946 int retval;
947
948 retval = mutex_lock_interruptible(&mousedev_mix->mutex);
949 if (retval)
950 return retval;
951
952 if (mousedev_mix->open) {
953 retval = mousedev_open_device(mousedev);
954 if (retval)
955 goto out;
956
Dmitry Torokhov3376b8b2012-10-08 09:07:24 -0700957 mousedev->opened_by_mixdev = true;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400958 }
959
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400960 get_device(&mousedev->dev);
961 list_add_tail(&mousedev->mixdev_node, &mousedev_mix_list);
962
963 out:
964 mutex_unlock(&mousedev_mix->mutex);
965 return retval;
966}
967
968static void mixdev_remove_device(struct mousedev *mousedev)
969{
970 mutex_lock(&mousedev_mix->mutex);
971
Dmitry Torokhov3376b8b2012-10-08 09:07:24 -0700972 if (mousedev->opened_by_mixdev) {
973 mousedev->opened_by_mixdev = false;
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400974 mousedev_close_device(mousedev);
975 }
976
977 list_del_init(&mousedev->mixdev_node);
978 mutex_unlock(&mousedev_mix->mutex);
979
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400980 put_device(&mousedev->dev);
981}
982
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400983static int mousedev_connect(struct input_handler *handler,
984 struct input_dev *dev,
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400985 const struct input_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986{
987 struct mousedev *mousedev;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400988 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700990 mousedev = mousedev_create(dev, handler, false);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400991 if (IS_ERR(mousedev))
992 return PTR_ERR(mousedev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400994 error = mixdev_add_device(mousedev);
Dmitry Torokhov464b2412007-08-30 00:22:24 -0400995 if (error) {
996 mousedev_destroy(mousedev);
997 return error;
998 }
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400999
1000 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001}
1002
1003static void mousedev_disconnect(struct input_handle *handle)
1004{
1005 struct mousedev *mousedev = handle->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
Dmitry Torokhovd542ed82007-04-12 01:30:15 -04001007 mixdev_remove_device(mousedev);
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001008 mousedev_destroy(mousedev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009}
1010
Dmitry Torokhov66e66112006-09-14 01:31:59 -04001011static const struct input_device_id mousedev_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 {
Dmitry Torokhov464b2412007-08-30 00:22:24 -04001013 .flags = INPUT_DEVICE_ID_MATCH_EVBIT |
1014 INPUT_DEVICE_ID_MATCH_KEYBIT |
1015 INPUT_DEVICE_ID_MATCH_RELBIT,
Jiri Slaby7b19ada2007-10-18 23:40:32 -07001016 .evbit = { BIT_MASK(EV_KEY) | BIT_MASK(EV_REL) },
1017 .keybit = { [BIT_WORD(BTN_LEFT)] = BIT_MASK(BTN_LEFT) },
1018 .relbit = { BIT_MASK(REL_X) | BIT_MASK(REL_Y) },
Dmitry Torokhov464b2412007-08-30 00:22:24 -04001019 }, /* A mouse like device, at least one button,
1020 two relative axes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 {
Dmitry Torokhov464b2412007-08-30 00:22:24 -04001022 .flags = INPUT_DEVICE_ID_MATCH_EVBIT |
1023 INPUT_DEVICE_ID_MATCH_RELBIT,
Jiri Slaby7b19ada2007-10-18 23:40:32 -07001024 .evbit = { BIT_MASK(EV_KEY) | BIT_MASK(EV_REL) },
1025 .relbit = { BIT_MASK(REL_WHEEL) },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 }, /* A separate scrollwheel */
1027 {
Dmitry Torokhov464b2412007-08-30 00:22:24 -04001028 .flags = INPUT_DEVICE_ID_MATCH_EVBIT |
1029 INPUT_DEVICE_ID_MATCH_KEYBIT |
1030 INPUT_DEVICE_ID_MATCH_ABSBIT,
Jiri Slaby7b19ada2007-10-18 23:40:32 -07001031 .evbit = { BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS) },
1032 .keybit = { [BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH) },
1033 .absbit = { BIT_MASK(ABS_X) | BIT_MASK(ABS_Y) },
Dmitry Torokhov464b2412007-08-30 00:22:24 -04001034 }, /* A tablet like device, at least touch detection,
1035 two absolute axes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 {
Dmitry Torokhov464b2412007-08-30 00:22:24 -04001037 .flags = INPUT_DEVICE_ID_MATCH_EVBIT |
1038 INPUT_DEVICE_ID_MATCH_KEYBIT |
1039 INPUT_DEVICE_ID_MATCH_ABSBIT,
Jiri Slaby7b19ada2007-10-18 23:40:32 -07001040 .evbit = { BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS) },
1041 .keybit = { [BIT_WORD(BTN_TOOL_FINGER)] =
1042 BIT_MASK(BTN_TOOL_FINGER) },
1043 .absbit = { BIT_MASK(ABS_X) | BIT_MASK(ABS_Y) |
1044 BIT_MASK(ABS_PRESSURE) |
1045 BIT_MASK(ABS_TOOL_WIDTH) },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 }, /* A touchpad */
Micah Parrish6724f932008-01-17 12:01:04 -05001047 {
1048 .flags = INPUT_DEVICE_ID_MATCH_EVBIT |
1049 INPUT_DEVICE_ID_MATCH_KEYBIT |
1050 INPUT_DEVICE_ID_MATCH_ABSBIT,
Dmitry Torokhovd182c102008-01-30 16:33:40 -05001051 .evbit = { BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS) },
Micah Parrish6724f932008-01-17 12:01:04 -05001052 .keybit = { [BIT_WORD(BTN_LEFT)] = BIT_MASK(BTN_LEFT) },
1053 .absbit = { BIT_MASK(ABS_X) | BIT_MASK(ABS_Y) },
1054 }, /* Mouse-like device with absolute X and Y but ordinary
1055 clicks, like hp ILO2 High Performance mouse */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -04001057 { }, /* Terminating entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058};
1059
1060MODULE_DEVICE_TABLE(input, mousedev_ids);
1061
1062static struct input_handler mousedev_handler = {
Dmitry Torokhov1c74585e2012-10-08 09:07:24 -07001063 .event = mousedev_event,
1064 .connect = mousedev_connect,
1065 .disconnect = mousedev_disconnect,
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001066 .legacy_minors = true,
Dmitry Torokhov1c74585e2012-10-08 09:07:24 -07001067 .minor = MOUSEDEV_MINOR_BASE,
1068 .name = "mousedev",
1069 .id_table = mousedev_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070};
1071
1072#ifdef CONFIG_INPUT_MOUSEDEV_PSAUX
Dmitry Torokhova2cb1192012-10-08 09:07:23 -07001073#include <linux/miscdevice.h>
1074
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075static struct miscdevice psaux_mouse = {
Dmitry Torokhova2cb1192012-10-08 09:07:23 -07001076 .minor = PSMOUSE_MINOR,
1077 .name = "psaux",
1078 .fops = &mousedev_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079};
Dmitry Torokhova2cb1192012-10-08 09:07:23 -07001080
1081static bool psaux_registered;
1082
1083static void __init mousedev_psaux_register(void)
1084{
1085 int error;
1086
1087 error = misc_register(&psaux_mouse);
1088 if (error)
1089 pr_warn("could not register psaux device, error: %d\n",
1090 error);
1091 else
1092 psaux_registered = true;
1093}
1094
1095static void __exit mousedev_psaux_unregister(void)
1096{
1097 if (psaux_registered)
1098 misc_deregister(&psaux_mouse);
1099}
1100#else
1101static inline void mousedev_psaux_register(void) { }
1102static inline void mousedev_psaux_unregister(void) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103#endif
1104
1105static int __init mousedev_init(void)
1106{
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001107 int error;
1108
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001109 mousedev_mix = mousedev_create(NULL, &mousedev_handler, true);
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001110 if (IS_ERR(mousedev_mix))
1111 return PTR_ERR(mousedev_mix);
1112
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001113 error = input_register_handler(&mousedev_handler);
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001114 if (error) {
1115 mousedev_destroy(mousedev_mix);
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001116 return error;
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
Dmitry Torokhova2cb1192012-10-08 09:07:23 -07001119 mousedev_psaux_register();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
Joe Perchesda0c4902010-11-29 23:33:07 -08001121 pr_info("PS/2 mouse device common for all mice\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
1123 return 0;
1124}
1125
1126static void __exit mousedev_exit(void)
1127{
Dmitry Torokhova2cb1192012-10-08 09:07:23 -07001128 mousedev_psaux_unregister();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 input_unregister_handler(&mousedev_handler);
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001130 mousedev_destroy(mousedev_mix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131}
1132
1133module_init(mousedev_init);
1134module_exit(mousedev_exit);