Input: i8042 - add Dritek quirk for Acer Aspire 5610.
[linux-block.git] / drivers / input / input.c
CommitLineData
1da177e4
LT
1/*
2 * The input core
3 *
4 * Copyright (c) 1999-2002 Vojtech Pavlik
5 */
6
7/*
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License version 2 as published by
10 * the Free Software Foundation.
11 */
12
13#include <linux/init.h>
ffd0db97 14#include <linux/types.h>
1da177e4
LT
15#include <linux/input.h>
16#include <linux/module.h>
17#include <linux/random.h>
18#include <linux/major.h>
19#include <linux/proc_fs.h>
a99bbaf5 20#include <linux/sched.h>
969b21cd 21#include <linux/seq_file.h>
1da177e4
LT
22#include <linux/poll.h>
23#include <linux/device.h>
e676c232 24#include <linux/mutex.h>
8006479c 25#include <linux/rcupdate.h>
2edbf853 26#include <linux/smp_lock.h>
1da177e4
LT
27
28MODULE_AUTHOR("Vojtech Pavlik <vojtech@suse.cz>");
29MODULE_DESCRIPTION("Input core");
30MODULE_LICENSE("GPL");
31
1da177e4
LT
32#define INPUT_DEVICES 256
33
61994a61
HR
34/*
35 * EV_ABS events which should not be cached are listed here.
36 */
37static unsigned int input_abs_bypass_init_data[] __initdata = {
5e5ee686
HR
38 ABS_MT_TOUCH_MAJOR,
39 ABS_MT_TOUCH_MINOR,
40 ABS_MT_WIDTH_MAJOR,
41 ABS_MT_WIDTH_MINOR,
42 ABS_MT_ORIENTATION,
43 ABS_MT_POSITION_X,
44 ABS_MT_POSITION_Y,
45 ABS_MT_TOOL_TYPE,
46 ABS_MT_BLOB_ID,
df391e0e 47 ABS_MT_TRACKING_ID,
61994a61
HR
48 0
49};
50static unsigned long input_abs_bypass[BITS_TO_LONGS(ABS_CNT)];
51
1da177e4
LT
52static LIST_HEAD(input_dev_list);
53static LIST_HEAD(input_handler_list);
54
8006479c
DT
55/*
56 * input_mutex protects access to both input_dev_list and input_handler_list.
57 * This also causes input_[un]register_device and input_[un]register_handler
58 * be mutually exclusive which simplifies locking in drivers implementing
59 * input handlers.
60 */
61static DEFINE_MUTEX(input_mutex);
62
1da177e4
LT
63static struct input_handler *input_table[8];
64
8006479c
DT
65static inline int is_event_supported(unsigned int code,
66 unsigned long *bm, unsigned int max)
1da177e4 67{
8006479c
DT
68 return code <= max && test_bit(code, bm);
69}
1da177e4 70
8006479c
DT
71static int input_defuzz_abs_event(int value, int old_val, int fuzz)
72{
73 if (fuzz) {
74 if (value > old_val - fuzz / 2 && value < old_val + fuzz / 2)
75 return old_val;
1da177e4 76
8006479c
DT
77 if (value > old_val - fuzz && value < old_val + fuzz)
78 return (old_val * 3 + value) / 4;
1da177e4 79
8006479c
DT
80 if (value > old_val - fuzz * 2 && value < old_val + fuzz * 2)
81 return (old_val + value) / 2;
82 }
1da177e4 83
8006479c
DT
84 return value;
85}
1da177e4 86
8006479c
DT
87/*
88 * Pass event through all open handles. This function is called with
82ba56c2 89 * dev->event_lock held and interrupts disabled.
8006479c
DT
90 */
91static void input_pass_event(struct input_dev *dev,
92 unsigned int type, unsigned int code, int value)
93{
82ba56c2
DT
94 struct input_handle *handle;
95
96 rcu_read_lock();
1da177e4 97
82ba56c2 98 handle = rcu_dereference(dev->grab);
8006479c
DT
99 if (handle)
100 handle->handler->event(handle, type, code, value);
101 else
102 list_for_each_entry_rcu(handle, &dev->h_list, d_node)
103 if (handle->open)
104 handle->handler->event(handle,
105 type, code, value);
82ba56c2 106 rcu_read_unlock();
8006479c 107}
1da177e4 108
8006479c
DT
109/*
110 * Generate software autorepeat event. Note that we take
111 * dev->event_lock here to avoid racing with input_event
112 * which may cause keys get "stuck".
113 */
114static void input_repeat_key(unsigned long data)
115{
116 struct input_dev *dev = (void *) data;
117 unsigned long flags;
1da177e4 118
8006479c 119 spin_lock_irqsave(&dev->event_lock, flags);
1da177e4 120
8006479c
DT
121 if (test_bit(dev->repeat_key, dev->key) &&
122 is_event_supported(dev->repeat_key, dev->keybit, KEY_MAX)) {
1da177e4 123
8006479c 124 input_pass_event(dev, EV_KEY, dev->repeat_key, 2);
1da177e4 125
8006479c
DT
126 if (dev->sync) {
127 /*
128 * Only send SYN_REPORT if we are not in a middle
129 * of driver parsing a new hardware packet.
130 * Otherwise assume that the driver will send
131 * SYN_REPORT once it's done.
132 */
133 input_pass_event(dev, EV_SYN, SYN_REPORT, 1);
134 }
31581066 135
8006479c
DT
136 if (dev->rep[REP_PERIOD])
137 mod_timer(&dev->timer, jiffies +
138 msecs_to_jiffies(dev->rep[REP_PERIOD]));
139 }
31581066 140
8006479c
DT
141 spin_unlock_irqrestore(&dev->event_lock, flags);
142}
31581066 143
8006479c
DT
144static void input_start_autorepeat(struct input_dev *dev, int code)
145{
146 if (test_bit(EV_REP, dev->evbit) &&
147 dev->rep[REP_PERIOD] && dev->rep[REP_DELAY] &&
148 dev->timer.data) {
149 dev->repeat_key = code;
150 mod_timer(&dev->timer,
151 jiffies + msecs_to_jiffies(dev->rep[REP_DELAY]));
152 }
153}
31581066 154
e7b5c1ef
JB
155static void input_stop_autorepeat(struct input_dev *dev)
156{
157 del_timer(&dev->timer);
158}
159
8006479c
DT
160#define INPUT_IGNORE_EVENT 0
161#define INPUT_PASS_TO_HANDLERS 1
162#define INPUT_PASS_TO_DEVICE 2
163#define INPUT_PASS_TO_ALL (INPUT_PASS_TO_HANDLERS | INPUT_PASS_TO_DEVICE)
1da177e4 164
8006479c
DT
165static void input_handle_event(struct input_dev *dev,
166 unsigned int type, unsigned int code, int value)
167{
168 int disposition = INPUT_IGNORE_EVENT;
1da177e4 169
8006479c 170 switch (type) {
1da177e4 171
8006479c
DT
172 case EV_SYN:
173 switch (code) {
174 case SYN_CONFIG:
175 disposition = INPUT_PASS_TO_ALL;
176 break;
1da177e4 177
8006479c
DT
178 case SYN_REPORT:
179 if (!dev->sync) {
180 dev->sync = 1;
181 disposition = INPUT_PASS_TO_HANDLERS;
1da177e4 182 }
1da177e4 183 break;
5e5ee686
HR
184 case SYN_MT_REPORT:
185 dev->sync = 0;
186 disposition = INPUT_PASS_TO_HANDLERS;
187 break;
8006479c
DT
188 }
189 break;
1da177e4 190
8006479c
DT
191 case EV_KEY:
192 if (is_event_supported(code, dev->keybit, KEY_MAX) &&
193 !!test_bit(code, dev->key) != value) {
1da177e4 194
8006479c
DT
195 if (value != 2) {
196 __change_bit(code, dev->key);
197 if (value)
198 input_start_autorepeat(dev, code);
e7b5c1ef
JB
199 else
200 input_stop_autorepeat(dev);
8006479c 201 }
1da177e4 202
8006479c
DT
203 disposition = INPUT_PASS_TO_HANDLERS;
204 }
205 break;
1da177e4 206
8006479c
DT
207 case EV_SW:
208 if (is_event_supported(code, dev->swbit, SW_MAX) &&
209 !!test_bit(code, dev->sw) != value) {
1da177e4 210
8006479c
DT
211 __change_bit(code, dev->sw);
212 disposition = INPUT_PASS_TO_HANDLERS;
213 }
214 break;
1da177e4 215
8006479c
DT
216 case EV_ABS:
217 if (is_event_supported(code, dev->absbit, ABS_MAX)) {
1da177e4 218
61994a61
HR
219 if (test_bit(code, input_abs_bypass)) {
220 disposition = INPUT_PASS_TO_HANDLERS;
221 break;
222 }
223
8006479c
DT
224 value = input_defuzz_abs_event(value,
225 dev->abs[code], dev->absfuzz[code]);
1da177e4 226
8006479c
DT
227 if (dev->abs[code] != value) {
228 dev->abs[code] = value;
229 disposition = INPUT_PASS_TO_HANDLERS;
230 }
231 }
232 break;
1da177e4 233
8006479c
DT
234 case EV_REL:
235 if (is_event_supported(code, dev->relbit, REL_MAX) && value)
236 disposition = INPUT_PASS_TO_HANDLERS;
1da177e4 237
8006479c 238 break;
1e0afb28 239
8006479c
DT
240 case EV_MSC:
241 if (is_event_supported(code, dev->mscbit, MSC_MAX))
242 disposition = INPUT_PASS_TO_ALL;
1da177e4 243
8006479c 244 break;
1da177e4 245
8006479c
DT
246 case EV_LED:
247 if (is_event_supported(code, dev->ledbit, LED_MAX) &&
248 !!test_bit(code, dev->led) != value) {
1da177e4 249
8006479c
DT
250 __change_bit(code, dev->led);
251 disposition = INPUT_PASS_TO_ALL;
252 }
253 break;
254
255 case EV_SND:
256 if (is_event_supported(code, dev->sndbit, SND_MAX)) {
1da177e4 257
8fdc1948 258 if (!!test_bit(code, dev->snd) != !!value)
8006479c
DT
259 __change_bit(code, dev->snd);
260 disposition = INPUT_PASS_TO_ALL;
261 }
262 break;
8fdc1948 263
8006479c
DT
264 case EV_REP:
265 if (code <= REP_MAX && value >= 0 && dev->rep[code] != value) {
266 dev->rep[code] = value;
267 disposition = INPUT_PASS_TO_ALL;
268 }
269 break;
1da177e4 270
8006479c
DT
271 case EV_FF:
272 if (value >= 0)
273 disposition = INPUT_PASS_TO_ALL;
274 break;
ed2fa4dd
RP
275
276 case EV_PWR:
277 disposition = INPUT_PASS_TO_ALL;
278 break;
8006479c 279 }
1da177e4 280
c9812282 281 if (disposition != INPUT_IGNORE_EVENT && type != EV_SYN)
8006479c 282 dev->sync = 0;
1da177e4 283
8006479c
DT
284 if ((disposition & INPUT_PASS_TO_DEVICE) && dev->event)
285 dev->event(dev, type, code, value);
1da177e4 286
8006479c
DT
287 if (disposition & INPUT_PASS_TO_HANDLERS)
288 input_pass_event(dev, type, code, value);
289}
1da177e4 290
8006479c
DT
291/**
292 * input_event() - report new input event
293 * @dev: device that generated the event
294 * @type: type of the event
295 * @code: event code
296 * @value: value of the event
297 *
298 * This function should be used by drivers implementing various input
df2d4637
DT
299 * devices to report input events. See also input_inject_event().
300 *
301 * NOTE: input_event() may be safely used right after input device was
302 * allocated with input_allocate_device(), even before it is registered
303 * with input_register_device(), but the event will not reach any of the
304 * input handlers. Such early invocation of input_event() may be used
305 * to 'seed' initial state of a switch or initial position of absolute
306 * axis, etc.
8006479c 307 */
8006479c
DT
308void input_event(struct input_dev *dev,
309 unsigned int type, unsigned int code, int value)
310{
311 unsigned long flags;
509ca1a9 312
8006479c 313 if (is_event_supported(type, dev->evbit, EV_MAX)) {
509ca1a9 314
8006479c
DT
315 spin_lock_irqsave(&dev->event_lock, flags);
316 add_input_randomness(type, code, value);
317 input_handle_event(dev, type, code, value);
318 spin_unlock_irqrestore(&dev->event_lock, flags);
1da177e4 319 }
1da177e4 320}
ca56fe07 321EXPORT_SYMBOL(input_event);
1da177e4 322
0e739d28
DT
323/**
324 * input_inject_event() - send input event from input handler
325 * @handle: input handle to send event through
326 * @type: type of the event
327 * @code: event code
328 * @value: value of the event
329 *
8006479c
DT
330 * Similar to input_event() but will ignore event if device is
331 * "grabbed" and handle injecting event is not the one that owns
332 * the device.
0e739d28 333 */
8006479c
DT
334void input_inject_event(struct input_handle *handle,
335 unsigned int type, unsigned int code, int value)
1da177e4 336{
8006479c
DT
337 struct input_dev *dev = handle->dev;
338 struct input_handle *grab;
339 unsigned long flags;
1da177e4 340
8006479c
DT
341 if (is_event_supported(type, dev->evbit, EV_MAX)) {
342 spin_lock_irqsave(&dev->event_lock, flags);
1da177e4 343
82ba56c2 344 rcu_read_lock();
8006479c
DT
345 grab = rcu_dereference(dev->grab);
346 if (!grab || grab == handle)
347 input_handle_event(dev, type, code, value);
82ba56c2 348 rcu_read_unlock();
1da177e4 349
8006479c
DT
350 spin_unlock_irqrestore(&dev->event_lock, flags);
351 }
1da177e4 352}
8006479c 353EXPORT_SYMBOL(input_inject_event);
1da177e4 354
8006479c
DT
355/**
356 * input_grab_device - grabs device for exclusive use
357 * @handle: input handle that wants to own the device
358 *
359 * When a device is grabbed by an input handle all events generated by
360 * the device are delivered only to this handle. Also events injected
361 * by other input handles are ignored while device is grabbed.
362 */
1da177e4
LT
363int input_grab_device(struct input_handle *handle)
364{
8006479c
DT
365 struct input_dev *dev = handle->dev;
366 int retval;
1da177e4 367
8006479c
DT
368 retval = mutex_lock_interruptible(&dev->mutex);
369 if (retval)
370 return retval;
371
372 if (dev->grab) {
373 retval = -EBUSY;
374 goto out;
375 }
376
377 rcu_assign_pointer(dev->grab, handle);
82ba56c2 378 synchronize_rcu();
8006479c
DT
379
380 out:
381 mutex_unlock(&dev->mutex);
382 return retval;
1da177e4 383}
ca56fe07 384EXPORT_SYMBOL(input_grab_device);
1da177e4 385
8006479c 386static void __input_release_device(struct input_handle *handle)
1da177e4 387{
a2b2ed2c 388 struct input_dev *dev = handle->dev;
c7e8dc6e 389
a2b2ed2c 390 if (dev->grab == handle) {
8006479c
DT
391 rcu_assign_pointer(dev->grab, NULL);
392 /* Make sure input_pass_event() notices that grab is gone */
82ba56c2 393 synchronize_rcu();
a2b2ed2c
AM
394
395 list_for_each_entry(handle, &dev->h_list, d_node)
8006479c 396 if (handle->open && handle->handler->start)
c7e8dc6e
DT
397 handle->handler->start(handle);
398 }
1da177e4 399}
8006479c
DT
400
401/**
402 * input_release_device - release previously grabbed device
403 * @handle: input handle that owns the device
404 *
405 * Releases previously grabbed device so that other input handles can
406 * start receiving input events. Upon release all handlers attached
407 * to the device have their start() method called so they have a change
408 * to synchronize device state with the rest of the system.
409 */
410void input_release_device(struct input_handle *handle)
411{
412 struct input_dev *dev = handle->dev;
413
414 mutex_lock(&dev->mutex);
415 __input_release_device(handle);
416 mutex_unlock(&dev->mutex);
417}
ca56fe07 418EXPORT_SYMBOL(input_release_device);
1da177e4 419
8006479c
DT
420/**
421 * input_open_device - open input device
422 * @handle: handle through which device is being accessed
423 *
424 * This function should be called by input handlers when they
425 * want to start receive events from given input device.
426 */
1da177e4
LT
427int input_open_device(struct input_handle *handle)
428{
0fbf87ca 429 struct input_dev *dev = handle->dev;
8006479c 430 int retval;
0fbf87ca 431
8006479c
DT
432 retval = mutex_lock_interruptible(&dev->mutex);
433 if (retval)
434 return retval;
435
436 if (dev->going_away) {
437 retval = -ENODEV;
438 goto out;
439 }
0fbf87ca 440
1da177e4 441 handle->open++;
0fbf87ca
DT
442
443 if (!dev->users++ && dev->open)
8006479c
DT
444 retval = dev->open(dev);
445
446 if (retval) {
447 dev->users--;
448 if (!--handle->open) {
449 /*
450 * Make sure we are not delivering any more events
451 * through this handle
452 */
82ba56c2 453 synchronize_rcu();
8006479c
DT
454 }
455 }
0fbf87ca 456
8006479c 457 out:
e676c232 458 mutex_unlock(&dev->mutex);
8006479c 459 return retval;
1da177e4 460}
ca56fe07 461EXPORT_SYMBOL(input_open_device);
1da177e4 462
8006479c 463int input_flush_device(struct input_handle *handle, struct file *file)
1da177e4 464{
8006479c
DT
465 struct input_dev *dev = handle->dev;
466 int retval;
1da177e4 467
8006479c
DT
468 retval = mutex_lock_interruptible(&dev->mutex);
469 if (retval)
470 return retval;
471
472 if (dev->flush)
473 retval = dev->flush(dev, file);
474
475 mutex_unlock(&dev->mutex);
476 return retval;
1da177e4 477}
ca56fe07 478EXPORT_SYMBOL(input_flush_device);
1da177e4 479
8006479c
DT
480/**
481 * input_close_device - close input device
482 * @handle: handle through which device is being accessed
483 *
484 * This function should be called by input handlers when they
485 * want to stop receive events from given input device.
486 */
1da177e4
LT
487void input_close_device(struct input_handle *handle)
488{
0fbf87ca
DT
489 struct input_dev *dev = handle->dev;
490
e676c232 491 mutex_lock(&dev->mutex);
0fbf87ca 492
8006479c
DT
493 __input_release_device(handle);
494
0fbf87ca
DT
495 if (!--dev->users && dev->close)
496 dev->close(dev);
8006479c
DT
497
498 if (!--handle->open) {
499 /*
82ba56c2 500 * synchronize_rcu() makes sure that input_pass_event()
8006479c
DT
501 * completed and that no more input events are delivered
502 * through this handle
503 */
82ba56c2 504 synchronize_rcu();
8006479c 505 }
0fbf87ca 506
e676c232 507 mutex_unlock(&dev->mutex);
1da177e4 508}
ca56fe07 509EXPORT_SYMBOL(input_close_device);
1da177e4 510
8006479c
DT
511/*
512 * Prepare device for unregistering
513 */
514static void input_disconnect_device(struct input_dev *dev)
515{
516 struct input_handle *handle;
517 int code;
518
519 /*
520 * Mark device as going away. Note that we take dev->mutex here
521 * not to protect access to dev->going_away but rather to ensure
522 * that there are no threads in the middle of input_open_device()
523 */
524 mutex_lock(&dev->mutex);
ffd0db97 525 dev->going_away = true;
8006479c
DT
526 mutex_unlock(&dev->mutex);
527
528 spin_lock_irq(&dev->event_lock);
529
530 /*
531 * Simulate keyup events for all pressed keys so that handlers
532 * are not left with "stuck" keys. The driver may continue
533 * generate events even after we done here but they will not
534 * reach any handlers.
535 */
536 if (is_event_supported(EV_KEY, dev->evbit, EV_MAX)) {
537 for (code = 0; code <= KEY_MAX; code++) {
538 if (is_event_supported(code, dev->keybit, KEY_MAX) &&
f4f37c8e 539 __test_and_clear_bit(code, dev->key)) {
8006479c
DT
540 input_pass_event(dev, EV_KEY, code, 0);
541 }
542 }
543 input_pass_event(dev, EV_SYN, SYN_REPORT, 1);
544 }
545
546 list_for_each_entry(handle, &dev->h_list, d_node)
547 handle->open = 0;
548
549 spin_unlock_irq(&dev->event_lock);
550}
551
c8e4c772
MR
552static int input_fetch_keycode(struct input_dev *dev, int scancode)
553{
554 switch (dev->keycodesize) {
555 case 1:
556 return ((u8 *)dev->keycode)[scancode];
557
558 case 2:
559 return ((u16 *)dev->keycode)[scancode];
560
561 default:
562 return ((u32 *)dev->keycode)[scancode];
563 }
564}
565
566static int input_default_getkeycode(struct input_dev *dev,
567 int scancode, int *keycode)
568{
569 if (!dev->keycodesize)
570 return -EINVAL;
571
f4f37c8e 572 if (scancode >= dev->keycodemax)
c8e4c772
MR
573 return -EINVAL;
574
575 *keycode = input_fetch_keycode(dev, scancode);
576
577 return 0;
578}
579
580static int input_default_setkeycode(struct input_dev *dev,
581 int scancode, int keycode)
582{
583 int old_keycode;
584 int i;
585
f4f37c8e 586 if (scancode >= dev->keycodemax)
c8e4c772
MR
587 return -EINVAL;
588
589 if (!dev->keycodesize)
590 return -EINVAL;
591
592 if (dev->keycodesize < sizeof(keycode) && (keycode >> (dev->keycodesize * 8)))
593 return -EINVAL;
594
595 switch (dev->keycodesize) {
596 case 1: {
597 u8 *k = (u8 *)dev->keycode;
598 old_keycode = k[scancode];
599 k[scancode] = keycode;
600 break;
601 }
602 case 2: {
603 u16 *k = (u16 *)dev->keycode;
604 old_keycode = k[scancode];
605 k[scancode] = keycode;
606 break;
607 }
608 default: {
609 u32 *k = (u32 *)dev->keycode;
610 old_keycode = k[scancode];
611 k[scancode] = keycode;
612 break;
613 }
614 }
615
616 clear_bit(old_keycode, dev->keybit);
617 set_bit(keycode, dev->keybit);
618
619 for (i = 0; i < dev->keycodemax; i++) {
620 if (input_fetch_keycode(dev, i) == old_keycode) {
621 set_bit(old_keycode, dev->keybit);
622 break; /* Setting the bit twice is useless, so break */
623 }
624 }
625
626 return 0;
627}
628
f4f37c8e
DT
629/**
630 * input_get_keycode - retrieve keycode currently mapped to a given scancode
631 * @dev: input device which keymap is being queried
632 * @scancode: scancode (or its equivalent for device in question) for which
633 * keycode is needed
634 * @keycode: result
635 *
636 * This function should be called by anyone interested in retrieving current
637 * keymap. Presently keyboard and evdev handlers use it.
638 */
639int input_get_keycode(struct input_dev *dev, int scancode, int *keycode)
640{
641 if (scancode < 0)
642 return -EINVAL;
643
644 return dev->getkeycode(dev, scancode, keycode);
645}
646EXPORT_SYMBOL(input_get_keycode);
647
648/**
649 * input_get_keycode - assign new keycode to a given scancode
650 * @dev: input device which keymap is being updated
651 * @scancode: scancode (or its equivalent for device in question)
652 * @keycode: new keycode to be assigned to the scancode
653 *
654 * This function should be called by anyone needing to update current
655 * keymap. Presently keyboard and evdev handlers use it.
656 */
657int input_set_keycode(struct input_dev *dev, int scancode, int keycode)
658{
659 unsigned long flags;
660 int old_keycode;
661 int retval;
662
663 if (scancode < 0)
664 return -EINVAL;
665
666 if (keycode < 0 || keycode > KEY_MAX)
667 return -EINVAL;
668
669 spin_lock_irqsave(&dev->event_lock, flags);
670
671 retval = dev->getkeycode(dev, scancode, &old_keycode);
672 if (retval)
673 goto out;
674
675 retval = dev->setkeycode(dev, scancode, keycode);
676 if (retval)
677 goto out;
678
679 /*
680 * Simulate keyup event if keycode is not present
681 * in the keymap anymore
682 */
683 if (test_bit(EV_KEY, dev->evbit) &&
684 !is_event_supported(old_keycode, dev->keybit, KEY_MAX) &&
685 __test_and_clear_bit(old_keycode, dev->key)) {
686
687 input_pass_event(dev, EV_KEY, old_keycode, 0);
688 if (dev->sync)
689 input_pass_event(dev, EV_SYN, SYN_REPORT, 1);
690 }
691
692 out:
693 spin_unlock_irqrestore(&dev->event_lock, flags);
694
695 return retval;
696}
697EXPORT_SYMBOL(input_set_keycode);
c8e4c772 698
1da177e4 699#define MATCH_BIT(bit, max) \
7b19ada2 700 for (i = 0; i < BITS_TO_LONGS(max); i++) \
1da177e4
LT
701 if ((id->bit[i] & dev->bit[i]) != id->bit[i]) \
702 break; \
7b19ada2 703 if (i != BITS_TO_LONGS(max)) \
1da177e4
LT
704 continue;
705
66e66118
DT
706static const struct input_device_id *input_match_device(const struct input_device_id *id,
707 struct input_dev *dev)
1da177e4
LT
708{
709 int i;
710
711 for (; id->flags || id->driver_info; id++) {
712
713 if (id->flags & INPUT_DEVICE_ID_MATCH_BUS)
ddc5d341 714 if (id->bustype != dev->id.bustype)
1da177e4
LT
715 continue;
716
717 if (id->flags & INPUT_DEVICE_ID_MATCH_VENDOR)
ddc5d341 718 if (id->vendor != dev->id.vendor)
1da177e4
LT
719 continue;
720
721 if (id->flags & INPUT_DEVICE_ID_MATCH_PRODUCT)
ddc5d341 722 if (id->product != dev->id.product)
1da177e4
LT
723 continue;
724
725 if (id->flags & INPUT_DEVICE_ID_MATCH_VERSION)
ddc5d341 726 if (id->version != dev->id.version)
1da177e4
LT
727 continue;
728
729 MATCH_BIT(evbit, EV_MAX);
730 MATCH_BIT(keybit, KEY_MAX);
731 MATCH_BIT(relbit, REL_MAX);
732 MATCH_BIT(absbit, ABS_MAX);
733 MATCH_BIT(mscbit, MSC_MAX);
734 MATCH_BIT(ledbit, LED_MAX);
735 MATCH_BIT(sndbit, SND_MAX);
736 MATCH_BIT(ffbit, FF_MAX);
ff13f98b 737 MATCH_BIT(swbit, SW_MAX);
1da177e4
LT
738
739 return id;
740 }
741
742 return NULL;
743}
744
5b2a0826
DT
745static int input_attach_handler(struct input_dev *dev, struct input_handler *handler)
746{
747 const struct input_device_id *id;
748 int error;
749
750 if (handler->blacklist && input_match_device(handler->blacklist, dev))
751 return -ENODEV;
752
753 id = input_match_device(handler->id_table, dev);
754 if (!id)
755 return -ENODEV;
756
757 error = handler->connect(handler, dev, id);
758 if (error && error != -ENODEV)
759 printk(KERN_ERR
760 "input: failed to attach handler %s to device %s, "
761 "error: %d\n",
9657d75c 762 handler->name, kobject_name(&dev->dev.kobj), error);
5b2a0826
DT
763
764 return error;
765}
766
767
f96b434d
DT
768#ifdef CONFIG_PROC_FS
769
770static struct proc_dir_entry *proc_bus_input_dir;
771static DECLARE_WAIT_QUEUE_HEAD(input_devices_poll_wait);
772static int input_devices_state;
773
774static inline void input_wakeup_procfs_readers(void)
775{
776 input_devices_state++;
777 wake_up(&input_devices_poll_wait);
778}
779
969b21cd 780static unsigned int input_proc_devices_poll(struct file *file, poll_table *wait)
f96b434d 781{
f96b434d 782 poll_wait(file, &input_devices_poll_wait, wait);
fa886612
DT
783 if (file->f_version != input_devices_state) {
784 file->f_version = input_devices_state;
f96b434d 785 return POLLIN | POLLRDNORM;
fa886612 786 }
1e0afb28 787
f96b434d
DT
788 return 0;
789}
790
1572ca2a
DT
791union input_seq_state {
792 struct {
793 unsigned short pos;
794 bool mutex_acquired;
795 };
796 void *p;
797};
798
969b21cd
DT
799static void *input_devices_seq_start(struct seq_file *seq, loff_t *pos)
800{
1572ca2a
DT
801 union input_seq_state *state = (union input_seq_state *)&seq->private;
802 int error;
803
804 /* We need to fit into seq->private pointer */
805 BUILD_BUG_ON(sizeof(union input_seq_state) != sizeof(seq->private));
806
807 error = mutex_lock_interruptible(&input_mutex);
808 if (error) {
809 state->mutex_acquired = false;
810 return ERR_PTR(error);
811 }
812
813 state->mutex_acquired = true;
f96b434d 814
ad5d972c 815 return seq_list_start(&input_dev_list, *pos);
969b21cd 816}
051b2fea 817
969b21cd
DT
818static void *input_devices_seq_next(struct seq_file *seq, void *v, loff_t *pos)
819{
ad5d972c 820 return seq_list_next(v, &input_dev_list, pos);
969b21cd 821}
f96b434d 822
1572ca2a 823static void input_seq_stop(struct seq_file *seq, void *v)
969b21cd 824{
1572ca2a
DT
825 union input_seq_state *state = (union input_seq_state *)&seq->private;
826
827 if (state->mutex_acquired)
828 mutex_unlock(&input_mutex);
969b21cd 829}
f96b434d 830
969b21cd
DT
831static void input_seq_print_bitmap(struct seq_file *seq, const char *name,
832 unsigned long *bitmap, int max)
833{
834 int i;
051b2fea 835
7b19ada2 836 for (i = BITS_TO_LONGS(max) - 1; i > 0; i--)
969b21cd
DT
837 if (bitmap[i])
838 break;
f96b434d 839
969b21cd
DT
840 seq_printf(seq, "B: %s=", name);
841 for (; i >= 0; i--)
842 seq_printf(seq, "%lx%s", bitmap[i], i > 0 ? " " : "");
843 seq_putc(seq, '\n');
844}
f96b434d 845
969b21cd
DT
846static int input_devices_seq_show(struct seq_file *seq, void *v)
847{
848 struct input_dev *dev = container_of(v, struct input_dev, node);
9657d75c 849 const char *path = kobject_get_path(&dev->dev.kobj, GFP_KERNEL);
969b21cd
DT
850 struct input_handle *handle;
851
852 seq_printf(seq, "I: Bus=%04x Vendor=%04x Product=%04x Version=%04x\n",
853 dev->id.bustype, dev->id.vendor, dev->id.product, dev->id.version);
854
855 seq_printf(seq, "N: Name=\"%s\"\n", dev->name ? dev->name : "");
856 seq_printf(seq, "P: Phys=%s\n", dev->phys ? dev->phys : "");
857 seq_printf(seq, "S: Sysfs=%s\n", path ? path : "");
15e03ae8 858 seq_printf(seq, "U: Uniq=%s\n", dev->uniq ? dev->uniq : "");
969b21cd
DT
859 seq_printf(seq, "H: Handlers=");
860
861 list_for_each_entry(handle, &dev->h_list, d_node)
862 seq_printf(seq, "%s ", handle->name);
863 seq_putc(seq, '\n');
864
865 input_seq_print_bitmap(seq, "EV", dev->evbit, EV_MAX);
866 if (test_bit(EV_KEY, dev->evbit))
867 input_seq_print_bitmap(seq, "KEY", dev->keybit, KEY_MAX);
868 if (test_bit(EV_REL, dev->evbit))
869 input_seq_print_bitmap(seq, "REL", dev->relbit, REL_MAX);
870 if (test_bit(EV_ABS, dev->evbit))
871 input_seq_print_bitmap(seq, "ABS", dev->absbit, ABS_MAX);
872 if (test_bit(EV_MSC, dev->evbit))
873 input_seq_print_bitmap(seq, "MSC", dev->mscbit, MSC_MAX);
874 if (test_bit(EV_LED, dev->evbit))
875 input_seq_print_bitmap(seq, "LED", dev->ledbit, LED_MAX);
876 if (test_bit(EV_SND, dev->evbit))
877 input_seq_print_bitmap(seq, "SND", dev->sndbit, SND_MAX);
878 if (test_bit(EV_FF, dev->evbit))
879 input_seq_print_bitmap(seq, "FF", dev->ffbit, FF_MAX);
880 if (test_bit(EV_SW, dev->evbit))
881 input_seq_print_bitmap(seq, "SW", dev->swbit, SW_MAX);
882
883 seq_putc(seq, '\n');
884
885 kfree(path);
886 return 0;
f96b434d
DT
887}
888
cec69c37 889static const struct seq_operations input_devices_seq_ops = {
969b21cd
DT
890 .start = input_devices_seq_start,
891 .next = input_devices_seq_next,
1572ca2a 892 .stop = input_seq_stop,
969b21cd
DT
893 .show = input_devices_seq_show,
894};
895
896static int input_proc_devices_open(struct inode *inode, struct file *file)
f96b434d 897{
969b21cd
DT
898 return seq_open(file, &input_devices_seq_ops);
899}
900
2b8693c0 901static const struct file_operations input_devices_fileops = {
969b21cd
DT
902 .owner = THIS_MODULE,
903 .open = input_proc_devices_open,
904 .poll = input_proc_devices_poll,
905 .read = seq_read,
906 .llseek = seq_lseek,
907 .release = seq_release,
908};
909
910static void *input_handlers_seq_start(struct seq_file *seq, loff_t *pos)
911{
1572ca2a
DT
912 union input_seq_state *state = (union input_seq_state *)&seq->private;
913 int error;
914
915 /* We need to fit into seq->private pointer */
916 BUILD_BUG_ON(sizeof(union input_seq_state) != sizeof(seq->private));
917
918 error = mutex_lock_interruptible(&input_mutex);
919 if (error) {
920 state->mutex_acquired = false;
921 return ERR_PTR(error);
922 }
923
924 state->mutex_acquired = true;
925 state->pos = *pos;
8006479c 926
ad5d972c 927 return seq_list_start(&input_handler_list, *pos);
969b21cd 928}
f96b434d 929
969b21cd
DT
930static void *input_handlers_seq_next(struct seq_file *seq, void *v, loff_t *pos)
931{
1572ca2a 932 union input_seq_state *state = (union input_seq_state *)&seq->private;
f96b434d 933
1572ca2a
DT
934 state->pos = *pos + 1;
935 return seq_list_next(v, &input_handler_list, pos);
969b21cd
DT
936}
937
938static int input_handlers_seq_show(struct seq_file *seq, void *v)
939{
940 struct input_handler *handler = container_of(v, struct input_handler, node);
1572ca2a 941 union input_seq_state *state = (union input_seq_state *)&seq->private;
969b21cd 942
1572ca2a 943 seq_printf(seq, "N: Number=%u Name=%s", state->pos, handler->name);
969b21cd
DT
944 if (handler->fops)
945 seq_printf(seq, " Minor=%d", handler->minor);
946 seq_putc(seq, '\n');
947
948 return 0;
949}
1572ca2a 950
cec69c37 951static const struct seq_operations input_handlers_seq_ops = {
969b21cd
DT
952 .start = input_handlers_seq_start,
953 .next = input_handlers_seq_next,
1572ca2a 954 .stop = input_seq_stop,
969b21cd
DT
955 .show = input_handlers_seq_show,
956};
957
958static int input_proc_handlers_open(struct inode *inode, struct file *file)
959{
960 return seq_open(file, &input_handlers_seq_ops);
961}
962
2b8693c0 963static const struct file_operations input_handlers_fileops = {
969b21cd
DT
964 .owner = THIS_MODULE,
965 .open = input_proc_handlers_open,
966 .read = seq_read,
967 .llseek = seq_lseek,
968 .release = seq_release,
969};
f96b434d
DT
970
971static int __init input_proc_init(void)
972{
973 struct proc_dir_entry *entry;
974
9c37066d 975 proc_bus_input_dir = proc_mkdir("bus/input", NULL);
f96b434d
DT
976 if (!proc_bus_input_dir)
977 return -ENOMEM;
978
c7705f34
DL
979 entry = proc_create("devices", 0, proc_bus_input_dir,
980 &input_devices_fileops);
f96b434d
DT
981 if (!entry)
982 goto fail1;
983
c7705f34
DL
984 entry = proc_create("handlers", 0, proc_bus_input_dir,
985 &input_handlers_fileops);
f96b434d
DT
986 if (!entry)
987 goto fail2;
988
f96b434d
DT
989 return 0;
990
991 fail2: remove_proc_entry("devices", proc_bus_input_dir);
9c37066d 992 fail1: remove_proc_entry("bus/input", NULL);
f96b434d
DT
993 return -ENOMEM;
994}
995
beffbdc2 996static void input_proc_exit(void)
f96b434d
DT
997{
998 remove_proc_entry("devices", proc_bus_input_dir);
999 remove_proc_entry("handlers", proc_bus_input_dir);
9c37066d 1000 remove_proc_entry("bus/input", NULL);
f96b434d
DT
1001}
1002
1003#else /* !CONFIG_PROC_FS */
1004static inline void input_wakeup_procfs_readers(void) { }
1005static inline int input_proc_init(void) { return 0; }
1006static inline void input_proc_exit(void) { }
1007#endif
1008
9657d75c
DT
1009#define INPUT_DEV_STRING_ATTR_SHOW(name) \
1010static ssize_t input_dev_show_##name(struct device *dev, \
1011 struct device_attribute *attr, \
1012 char *buf) \
1013{ \
1014 struct input_dev *input_dev = to_input_dev(dev); \
1015 \
1016 return scnprintf(buf, PAGE_SIZE, "%s\n", \
1017 input_dev->name ? input_dev->name : ""); \
1018} \
1019static DEVICE_ATTR(name, S_IRUGO, input_dev_show_##name, NULL)
5c1e9a6a
DT
1020
1021INPUT_DEV_STRING_ATTR_SHOW(name);
1022INPUT_DEV_STRING_ATTR_SHOW(phys);
1023INPUT_DEV_STRING_ATTR_SHOW(uniq);
1024
ac648a6a
DT
1025static int input_print_modalias_bits(char *buf, int size,
1026 char name, unsigned long *bm,
1027 unsigned int min_bit, unsigned int max_bit)
1d8f430c 1028{
ac648a6a 1029 int len = 0, i;
1d8f430c 1030
ac648a6a
DT
1031 len += snprintf(buf, max(size, 0), "%c", name);
1032 for (i = min_bit; i < max_bit; i++)
7b19ada2 1033 if (bm[BIT_WORD(i)] & BIT_MASK(i))
ac648a6a 1034 len += snprintf(buf + len, max(size - len, 0), "%X,", i);
1d8f430c
RR
1035 return len;
1036}
1037
2db66876
DT
1038static int input_print_modalias(char *buf, int size, struct input_dev *id,
1039 int add_cr)
1d8f430c 1040{
bd37e5a9 1041 int len;
1d8f430c 1042
ac648a6a
DT
1043 len = snprintf(buf, max(size, 0),
1044 "input:b%04Xv%04Xp%04Xe%04X-",
1045 id->id.bustype, id->id.vendor,
1046 id->id.product, id->id.version);
1047
1048 len += input_print_modalias_bits(buf + len, size - len,
1049 'e', id->evbit, 0, EV_MAX);
1050 len += input_print_modalias_bits(buf + len, size - len,
1051 'k', id->keybit, KEY_MIN_INTERESTING, KEY_MAX);
1052 len += input_print_modalias_bits(buf + len, size - len,
1053 'r', id->relbit, 0, REL_MAX);
1054 len += input_print_modalias_bits(buf + len, size - len,
1055 'a', id->absbit, 0, ABS_MAX);
1056 len += input_print_modalias_bits(buf + len, size - len,
1057 'm', id->mscbit, 0, MSC_MAX);
1058 len += input_print_modalias_bits(buf + len, size - len,
1059 'l', id->ledbit, 0, LED_MAX);
1060 len += input_print_modalias_bits(buf + len, size - len,
1061 's', id->sndbit, 0, SND_MAX);
1062 len += input_print_modalias_bits(buf + len, size - len,
1063 'f', id->ffbit, 0, FF_MAX);
1064 len += input_print_modalias_bits(buf + len, size - len,
1065 'w', id->swbit, 0, SW_MAX);
2db66876
DT
1066
1067 if (add_cr)
ac648a6a 1068 len += snprintf(buf + len, max(size - len, 0), "\n");
2db66876 1069
bd37e5a9
KS
1070 return len;
1071}
1072
9657d75c
DT
1073static ssize_t input_dev_show_modalias(struct device *dev,
1074 struct device_attribute *attr,
1075 char *buf)
bd37e5a9
KS
1076{
1077 struct input_dev *id = to_input_dev(dev);
1078 ssize_t len;
1079
2db66876
DT
1080 len = input_print_modalias(buf, PAGE_SIZE, id, 1);
1081
8a3cf456 1082 return min_t(int, len, PAGE_SIZE);
1d8f430c 1083}
9657d75c 1084static DEVICE_ATTR(modalias, S_IRUGO, input_dev_show_modalias, NULL);
1d8f430c 1085
629b77a4 1086static struct attribute *input_dev_attrs[] = {
9657d75c
DT
1087 &dev_attr_name.attr,
1088 &dev_attr_phys.attr,
1089 &dev_attr_uniq.attr,
1090 &dev_attr_modalias.attr,
629b77a4
GKH
1091 NULL
1092};
1093
bd0ef235 1094static struct attribute_group input_dev_attr_group = {
629b77a4 1095 .attrs = input_dev_attrs,
5c1e9a6a
DT
1096};
1097
9657d75c
DT
1098#define INPUT_DEV_ID_ATTR(name) \
1099static ssize_t input_dev_show_id_##name(struct device *dev, \
1100 struct device_attribute *attr, \
1101 char *buf) \
1102{ \
1103 struct input_dev *input_dev = to_input_dev(dev); \
1104 return scnprintf(buf, PAGE_SIZE, "%04x\n", input_dev->id.name); \
1105} \
1106static DEVICE_ATTR(name, S_IRUGO, input_dev_show_id_##name, NULL)
5c1e9a6a
DT
1107
1108INPUT_DEV_ID_ATTR(bustype);
1109INPUT_DEV_ID_ATTR(vendor);
1110INPUT_DEV_ID_ATTR(product);
1111INPUT_DEV_ID_ATTR(version);
1112
1113static struct attribute *input_dev_id_attrs[] = {
9657d75c
DT
1114 &dev_attr_bustype.attr,
1115 &dev_attr_vendor.attr,
1116 &dev_attr_product.attr,
1117 &dev_attr_version.attr,
5c1e9a6a
DT
1118 NULL
1119};
1120
1121static struct attribute_group input_dev_id_attr_group = {
1122 .name = "id",
1123 .attrs = input_dev_id_attrs,
1124};
1125
969b21cd
DT
1126static int input_print_bitmap(char *buf, int buf_size, unsigned long *bitmap,
1127 int max, int add_cr)
1128{
1129 int i;
1130 int len = 0;
1131
7b19ada2 1132 for (i = BITS_TO_LONGS(max) - 1; i > 0; i--)
969b21cd
DT
1133 if (bitmap[i])
1134 break;
1135
1136 for (; i >= 0; i--)
1137 len += snprintf(buf + len, max(buf_size - len, 0),
1138 "%lx%s", bitmap[i], i > 0 ? " " : "");
1139
1140 if (add_cr)
1141 len += snprintf(buf + len, max(buf_size - len, 0), "\n");
1142
1143 return len;
1144}
1145
9657d75c
DT
1146#define INPUT_DEV_CAP_ATTR(ev, bm) \
1147static ssize_t input_dev_show_cap_##bm(struct device *dev, \
1148 struct device_attribute *attr, \
1149 char *buf) \
1150{ \
1151 struct input_dev *input_dev = to_input_dev(dev); \
1152 int len = input_print_bitmap(buf, PAGE_SIZE, \
1153 input_dev->bm##bit, ev##_MAX, 1); \
1154 return min_t(int, len, PAGE_SIZE); \
1155} \
1156static DEVICE_ATTR(bm, S_IRUGO, input_dev_show_cap_##bm, NULL)
5c1e9a6a
DT
1157
1158INPUT_DEV_CAP_ATTR(EV, ev);
1159INPUT_DEV_CAP_ATTR(KEY, key);
1160INPUT_DEV_CAP_ATTR(REL, rel);
1161INPUT_DEV_CAP_ATTR(ABS, abs);
1162INPUT_DEV_CAP_ATTR(MSC, msc);
1163INPUT_DEV_CAP_ATTR(LED, led);
1164INPUT_DEV_CAP_ATTR(SND, snd);
1165INPUT_DEV_CAP_ATTR(FF, ff);
1166INPUT_DEV_CAP_ATTR(SW, sw);
1167
1168static struct attribute *input_dev_caps_attrs[] = {
9657d75c
DT
1169 &dev_attr_ev.attr,
1170 &dev_attr_key.attr,
1171 &dev_attr_rel.attr,
1172 &dev_attr_abs.attr,
1173 &dev_attr_msc.attr,
1174 &dev_attr_led.attr,
1175 &dev_attr_snd.attr,
1176 &dev_attr_ff.attr,
1177 &dev_attr_sw.attr,
5c1e9a6a
DT
1178 NULL
1179};
1180
1181static struct attribute_group input_dev_caps_attr_group = {
1182 .name = "capabilities",
1183 .attrs = input_dev_caps_attrs,
1184};
1185
a4dbd674 1186static const struct attribute_group *input_dev_attr_groups[] = {
cb9def4d
DT
1187 &input_dev_attr_group,
1188 &input_dev_id_attr_group,
1189 &input_dev_caps_attr_group,
1190 NULL
1191};
1192
9657d75c 1193static void input_dev_release(struct device *device)
d19fbe8a 1194{
9657d75c 1195 struct input_dev *dev = to_input_dev(device);
d19fbe8a 1196
509ca1a9 1197 input_ff_destroy(dev);
d19fbe8a 1198 kfree(dev);
509ca1a9 1199
d19fbe8a
DT
1200 module_put(THIS_MODULE);
1201}
1202
a7fadbe1 1203/*
312c004d 1204 * Input uevent interface - loading event handlers based on
a7fadbe1
DT
1205 * device bitfields.
1206 */
7eff2e7a 1207static int input_add_uevent_bm_var(struct kobj_uevent_env *env,
ac648a6a 1208 const char *name, unsigned long *bitmap, int max)
a7fadbe1 1209{
7eff2e7a 1210 int len;
a7fadbe1 1211
7eff2e7a 1212 if (add_uevent_var(env, "%s=", name))
a7fadbe1
DT
1213 return -ENOMEM;
1214
7eff2e7a
KS
1215 len = input_print_bitmap(&env->buf[env->buflen - 1],
1216 sizeof(env->buf) - env->buflen,
1217 bitmap, max, 0);
1218 if (len >= (sizeof(env->buf) - env->buflen))
a7fadbe1
DT
1219 return -ENOMEM;
1220
7eff2e7a 1221 env->buflen += len;
a7fadbe1
DT
1222 return 0;
1223}
1224
7eff2e7a 1225static int input_add_uevent_modalias_var(struct kobj_uevent_env *env,
ac648a6a
DT
1226 struct input_dev *dev)
1227{
7eff2e7a 1228 int len;
ac648a6a 1229
7eff2e7a 1230 if (add_uevent_var(env, "MODALIAS="))
ac648a6a
DT
1231 return -ENOMEM;
1232
7eff2e7a
KS
1233 len = input_print_modalias(&env->buf[env->buflen - 1],
1234 sizeof(env->buf) - env->buflen,
1235 dev, 0);
1236 if (len >= (sizeof(env->buf) - env->buflen))
ac648a6a
DT
1237 return -ENOMEM;
1238
7eff2e7a 1239 env->buflen += len;
ac648a6a
DT
1240 return 0;
1241}
1242
a7fadbe1
DT
1243#define INPUT_ADD_HOTPLUG_VAR(fmt, val...) \
1244 do { \
7eff2e7a 1245 int err = add_uevent_var(env, fmt, val); \
a7fadbe1
DT
1246 if (err) \
1247 return err; \
1248 } while (0)
1249
1250#define INPUT_ADD_HOTPLUG_BM_VAR(name, bm, max) \
1251 do { \
7eff2e7a 1252 int err = input_add_uevent_bm_var(env, name, bm, max); \
a7fadbe1
DT
1253 if (err) \
1254 return err; \
1255 } while (0)
1256
ac648a6a
DT
1257#define INPUT_ADD_HOTPLUG_MODALIAS_VAR(dev) \
1258 do { \
7eff2e7a 1259 int err = input_add_uevent_modalias_var(env, dev); \
ac648a6a
DT
1260 if (err) \
1261 return err; \
1262 } while (0)
1263
7eff2e7a 1264static int input_dev_uevent(struct device *device, struct kobj_uevent_env *env)
a7fadbe1 1265{
9657d75c 1266 struct input_dev *dev = to_input_dev(device);
a7fadbe1
DT
1267
1268 INPUT_ADD_HOTPLUG_VAR("PRODUCT=%x/%x/%x/%x",
1269 dev->id.bustype, dev->id.vendor,
1270 dev->id.product, dev->id.version);
1271 if (dev->name)
1272 INPUT_ADD_HOTPLUG_VAR("NAME=\"%s\"", dev->name);
1273 if (dev->phys)
1274 INPUT_ADD_HOTPLUG_VAR("PHYS=\"%s\"", dev->phys);
08de1f04 1275 if (dev->uniq)
a7fadbe1
DT
1276 INPUT_ADD_HOTPLUG_VAR("UNIQ=\"%s\"", dev->uniq);
1277
1278 INPUT_ADD_HOTPLUG_BM_VAR("EV=", dev->evbit, EV_MAX);
1279 if (test_bit(EV_KEY, dev->evbit))
1280 INPUT_ADD_HOTPLUG_BM_VAR("KEY=", dev->keybit, KEY_MAX);
1281 if (test_bit(EV_REL, dev->evbit))
1282 INPUT_ADD_HOTPLUG_BM_VAR("REL=", dev->relbit, REL_MAX);
1283 if (test_bit(EV_ABS, dev->evbit))
1284 INPUT_ADD_HOTPLUG_BM_VAR("ABS=", dev->absbit, ABS_MAX);
1285 if (test_bit(EV_MSC, dev->evbit))
1286 INPUT_ADD_HOTPLUG_BM_VAR("MSC=", dev->mscbit, MSC_MAX);
1287 if (test_bit(EV_LED, dev->evbit))
1288 INPUT_ADD_HOTPLUG_BM_VAR("LED=", dev->ledbit, LED_MAX);
1289 if (test_bit(EV_SND, dev->evbit))
1290 INPUT_ADD_HOTPLUG_BM_VAR("SND=", dev->sndbit, SND_MAX);
1291 if (test_bit(EV_FF, dev->evbit))
1292 INPUT_ADD_HOTPLUG_BM_VAR("FF=", dev->ffbit, FF_MAX);
1293 if (test_bit(EV_SW, dev->evbit))
1294 INPUT_ADD_HOTPLUG_BM_VAR("SW=", dev->swbit, SW_MAX);
1295
ac648a6a 1296 INPUT_ADD_HOTPLUG_MODALIAS_VAR(dev);
a7fadbe1
DT
1297
1298 return 0;
1299}
1300
3cc96351
DT
1301#define INPUT_DO_TOGGLE(dev, type, bits, on) \
1302 do { \
1303 int i; \
1304 bool active; \
1305 \
1306 if (!test_bit(EV_##type, dev->evbit)) \
1307 break; \
1308 \
1309 for (i = 0; i < type##_MAX; i++) { \
1310 if (!test_bit(i, dev->bits##bit)) \
1311 continue; \
1312 \
1313 active = test_bit(i, dev->bits); \
1314 if (!active && !on) \
1315 continue; \
1316 \
1317 dev->event(dev, EV_##type, i, on ? active : 0); \
1318 } \
ffd0db97
DT
1319 } while (0)
1320
1c4115e5 1321#ifdef CONFIG_PM
ffd0db97
DT
1322static void input_dev_reset(struct input_dev *dev, bool activate)
1323{
1324 if (!dev->event)
1325 return;
1326
1327 INPUT_DO_TOGGLE(dev, LED, led, activate);
1328 INPUT_DO_TOGGLE(dev, SND, snd, activate);
1329
1330 if (activate && test_bit(EV_REP, dev->evbit)) {
1331 dev->event(dev, EV_REP, REP_PERIOD, dev->rep[REP_PERIOD]);
1332 dev->event(dev, EV_REP, REP_DELAY, dev->rep[REP_DELAY]);
1333 }
1334}
1335
ffd0db97
DT
1336static int input_dev_suspend(struct device *dev)
1337{
1338 struct input_dev *input_dev = to_input_dev(dev);
1339
1340 mutex_lock(&input_dev->mutex);
1341 input_dev_reset(input_dev, false);
1342 mutex_unlock(&input_dev->mutex);
1343
1344 return 0;
1345}
1346
1347static int input_dev_resume(struct device *dev)
1348{
1349 struct input_dev *input_dev = to_input_dev(dev);
1350
1351 mutex_lock(&input_dev->mutex);
1352 input_dev_reset(input_dev, true);
1353 mutex_unlock(&input_dev->mutex);
1354
1355 return 0;
1356}
1357
1358static const struct dev_pm_ops input_dev_pm_ops = {
1359 .suspend = input_dev_suspend,
1360 .resume = input_dev_resume,
1361 .poweroff = input_dev_suspend,
1362 .restore = input_dev_resume,
1363};
1364#endif /* CONFIG_PM */
1365
9657d75c
DT
1366static struct device_type input_dev_type = {
1367 .groups = input_dev_attr_groups,
1368 .release = input_dev_release,
1369 .uevent = input_dev_uevent,
ffd0db97
DT
1370#ifdef CONFIG_PM
1371 .pm = &input_dev_pm_ops,
1372#endif
9657d75c
DT
1373};
1374
e454cea2 1375static char *input_devnode(struct device *dev, mode_t *mode)
aa5ed63e
KS
1376{
1377 return kasprintf(GFP_KERNEL, "input/%s", dev_name(dev));
1378}
1379
ea9f240b 1380struct class input_class = {
9657d75c 1381 .name = "input",
e454cea2 1382 .devnode = input_devnode,
d19fbe8a 1383};
ca56fe07 1384EXPORT_SYMBOL_GPL(input_class);
d19fbe8a 1385
1447190e
DT
1386/**
1387 * input_allocate_device - allocate memory for new input device
1388 *
1389 * Returns prepared struct input_dev or NULL.
1390 *
1391 * NOTE: Use input_free_device() to free devices that have not been
1392 * registered; input_unregister_device() should be used for already
1393 * registered devices.
1394 */
d19fbe8a
DT
1395struct input_dev *input_allocate_device(void)
1396{
1397 struct input_dev *dev;
1398
1399 dev = kzalloc(sizeof(struct input_dev), GFP_KERNEL);
1400 if (dev) {
9657d75c
DT
1401 dev->dev.type = &input_dev_type;
1402 dev->dev.class = &input_class;
1403 device_initialize(&dev->dev);
f60d2b11 1404 mutex_init(&dev->mutex);
8006479c 1405 spin_lock_init(&dev->event_lock);
d19fbe8a
DT
1406 INIT_LIST_HEAD(&dev->h_list);
1407 INIT_LIST_HEAD(&dev->node);
655816e4
DT
1408
1409 __module_get(THIS_MODULE);
d19fbe8a
DT
1410 }
1411
1412 return dev;
1413}
ca56fe07 1414EXPORT_SYMBOL(input_allocate_device);
d19fbe8a 1415
1447190e
DT
1416/**
1417 * input_free_device - free memory occupied by input_dev structure
1418 * @dev: input device to free
1419 *
1420 * This function should only be used if input_register_device()
1421 * was not called yet or if it failed. Once device was registered
1422 * use input_unregister_device() and memory will be freed once last
8006479c 1423 * reference to the device is dropped.
1447190e
DT
1424 *
1425 * Device should be allocated by input_allocate_device().
1426 *
1427 * NOTE: If there are references to the input device then memory
1428 * will not be freed until last reference is dropped.
1429 */
f60d2b11
DT
1430void input_free_device(struct input_dev *dev)
1431{
54f9e36c 1432 if (dev)
f60d2b11 1433 input_put_device(dev);
f60d2b11 1434}
ca56fe07 1435EXPORT_SYMBOL(input_free_device);
f60d2b11 1436
534565f2
DT
1437/**
1438 * input_set_capability - mark device as capable of a certain event
1439 * @dev: device that is capable of emitting or accepting event
1440 * @type: type of the event (EV_KEY, EV_REL, etc...)
1441 * @code: event code
1442 *
1443 * In addition to setting up corresponding bit in appropriate capability
1444 * bitmap the function also adjusts dev->evbit.
1445 */
1446void input_set_capability(struct input_dev *dev, unsigned int type, unsigned int code)
1447{
1448 switch (type) {
1449 case EV_KEY:
1450 __set_bit(code, dev->keybit);
1451 break;
1452
1453 case EV_REL:
1454 __set_bit(code, dev->relbit);
1455 break;
1456
1457 case EV_ABS:
1458 __set_bit(code, dev->absbit);
1459 break;
1460
1461 case EV_MSC:
1462 __set_bit(code, dev->mscbit);
1463 break;
1464
1465 case EV_SW:
1466 __set_bit(code, dev->swbit);
1467 break;
1468
1469 case EV_LED:
1470 __set_bit(code, dev->ledbit);
1471 break;
1472
1473 case EV_SND:
1474 __set_bit(code, dev->sndbit);
1475 break;
1476
1477 case EV_FF:
1478 __set_bit(code, dev->ffbit);
1479 break;
1480
22d1c398
DB
1481 case EV_PWR:
1482 /* do nothing */
1483 break;
1484
534565f2
DT
1485 default:
1486 printk(KERN_ERR
1487 "input_set_capability: unknown type %u (code %u)\n",
1488 type, code);
1489 dump_stack();
1490 return;
1491 }
1492
1493 __set_bit(type, dev->evbit);
1494}
1495EXPORT_SYMBOL(input_set_capability);
1496
8006479c
DT
1497/**
1498 * input_register_device - register device with input core
1499 * @dev: device to be registered
1500 *
1501 * This function registers device with input core. The device must be
1502 * allocated with input_allocate_device() and all it's capabilities
1503 * set up before registering.
1504 * If function fails the device must be freed with input_free_device().
1505 * Once device has been successfully registered it can be unregistered
1506 * with input_unregister_device(); input_free_device() should not be
1507 * called in this case.
1508 */
5f945489 1509int input_register_device(struct input_dev *dev)
1da177e4 1510{
bd0ef235 1511 static atomic_t input_no = ATOMIC_INIT(0);
1da177e4 1512 struct input_handler *handler;
bd0ef235
DT
1513 const char *path;
1514 int error;
1da177e4 1515
8006479c 1516 __set_bit(EV_SYN, dev->evbit);
0fbf87ca 1517
1da177e4
LT
1518 /*
1519 * If delay and period are pre-set by the driver, then autorepeating
1520 * is handled by the driver itself and we don't do it in input.c.
1521 */
1522
1523 init_timer(&dev->timer);
1524 if (!dev->rep[REP_DELAY] && !dev->rep[REP_PERIOD]) {
1525 dev->timer.data = (long) dev;
1526 dev->timer.function = input_repeat_key;
1527 dev->rep[REP_DELAY] = 250;
1528 dev->rep[REP_PERIOD] = 33;
1529 }
1530
c8e4c772
MR
1531 if (!dev->getkeycode)
1532 dev->getkeycode = input_default_getkeycode;
1533
1534 if (!dev->setkeycode)
1535 dev->setkeycode = input_default_setkeycode;
1536
a6c2490f
KS
1537 dev_set_name(&dev->dev, "input%ld",
1538 (unsigned long) atomic_inc_return(&input_no) - 1);
bd0ef235 1539
9657d75c 1540 error = device_add(&dev->dev);
bd0ef235
DT
1541 if (error)
1542 return error;
1543
9657d75c 1544 path = kobject_get_path(&dev->dev.kobj, GFP_KERNEL);
bd0ef235
DT
1545 printk(KERN_INFO "input: %s as %s\n",
1546 dev->name ? dev->name : "Unspecified device", path ? path : "N/A");
1547 kfree(path);
10204020 1548
8006479c
DT
1549 error = mutex_lock_interruptible(&input_mutex);
1550 if (error) {
1551 device_del(&dev->dev);
1552 return error;
1553 }
1554
1555 list_add_tail(&dev->node, &input_dev_list);
1556
1da177e4 1557 list_for_each_entry(handler, &input_handler_list, node)
5b2a0826 1558 input_attach_handler(dev, handler);
1da177e4 1559
f96b434d 1560 input_wakeup_procfs_readers();
5f945489 1561
8006479c
DT
1562 mutex_unlock(&input_mutex);
1563
5f945489 1564 return 0;
1da177e4 1565}
ca56fe07 1566EXPORT_SYMBOL(input_register_device);
1da177e4 1567
8006479c
DT
1568/**
1569 * input_unregister_device - unregister previously registered device
1570 * @dev: device to be unregistered
1571 *
1572 * This function unregisters an input device. Once device is unregistered
1573 * the caller should not try to access it as it may get freed at any moment.
1574 */
1da177e4
LT
1575void input_unregister_device(struct input_dev *dev)
1576{
5b2a0826 1577 struct input_handle *handle, *next;
1da177e4 1578
8006479c 1579 input_disconnect_device(dev);
1da177e4 1580
8006479c 1581 mutex_lock(&input_mutex);
1da177e4 1582
5b2a0826 1583 list_for_each_entry_safe(handle, next, &dev->h_list, d_node)
1da177e4 1584 handle->handler->disconnect(handle);
5b2a0826 1585 WARN_ON(!list_empty(&dev->h_list));
1da177e4 1586
8006479c 1587 del_timer_sync(&dev->timer);
1da177e4
LT
1588 list_del_init(&dev->node);
1589
f96b434d 1590 input_wakeup_procfs_readers();
8006479c
DT
1591
1592 mutex_unlock(&input_mutex);
1593
1594 device_unregister(&dev->dev);
1da177e4 1595}
ca56fe07 1596EXPORT_SYMBOL(input_unregister_device);
1da177e4 1597
8006479c
DT
1598/**
1599 * input_register_handler - register a new input handler
1600 * @handler: handler to be registered
1601 *
1602 * This function registers a new input handler (interface) for input
1603 * devices in the system and attaches it to all input devices that
1604 * are compatible with the handler.
1605 */
4263cf0f 1606int input_register_handler(struct input_handler *handler)
1da177e4
LT
1607{
1608 struct input_dev *dev;
8006479c
DT
1609 int retval;
1610
1611 retval = mutex_lock_interruptible(&input_mutex);
1612 if (retval)
1613 return retval;
1da177e4 1614
1da177e4
LT
1615 INIT_LIST_HEAD(&handler->h_list);
1616
4263cf0f 1617 if (handler->fops != NULL) {
8006479c
DT
1618 if (input_table[handler->minor >> 5]) {
1619 retval = -EBUSY;
1620 goto out;
1621 }
1da177e4 1622 input_table[handler->minor >> 5] = handler;
4263cf0f 1623 }
1da177e4
LT
1624
1625 list_add_tail(&handler->node, &input_handler_list);
1626
1627 list_for_each_entry(dev, &input_dev_list, node)
5b2a0826 1628 input_attach_handler(dev, handler);
1da177e4 1629
f96b434d 1630 input_wakeup_procfs_readers();
8006479c
DT
1631
1632 out:
1633 mutex_unlock(&input_mutex);
1634 return retval;
1da177e4 1635}
ca56fe07 1636EXPORT_SYMBOL(input_register_handler);
1da177e4 1637
8006479c
DT
1638/**
1639 * input_unregister_handler - unregisters an input handler
1640 * @handler: handler to be unregistered
1641 *
1642 * This function disconnects a handler from its input devices and
1643 * removes it from lists of known handlers.
1644 */
1da177e4
LT
1645void input_unregister_handler(struct input_handler *handler)
1646{
5b2a0826 1647 struct input_handle *handle, *next;
1da177e4 1648
8006479c
DT
1649 mutex_lock(&input_mutex);
1650
5b2a0826 1651 list_for_each_entry_safe(handle, next, &handler->h_list, h_node)
1da177e4 1652 handler->disconnect(handle);
5b2a0826 1653 WARN_ON(!list_empty(&handler->h_list));
1da177e4
LT
1654
1655 list_del_init(&handler->node);
1656
1657 if (handler->fops != NULL)
1658 input_table[handler->minor >> 5] = NULL;
1659
f96b434d 1660 input_wakeup_procfs_readers();
8006479c
DT
1661
1662 mutex_unlock(&input_mutex);
1da177e4 1663}
ca56fe07 1664EXPORT_SYMBOL(input_unregister_handler);
1da177e4 1665
66d2a595
DT
1666/**
1667 * input_handler_for_each_handle - handle iterator
1668 * @handler: input handler to iterate
1669 * @data: data for the callback
1670 * @fn: function to be called for each handle
1671 *
1672 * Iterate over @bus's list of devices, and call @fn for each, passing
1673 * it @data and stop when @fn returns a non-zero value. The function is
1674 * using RCU to traverse the list and therefore may be usind in atonic
1675 * contexts. The @fn callback is invoked from RCU critical section and
1676 * thus must not sleep.
1677 */
1678int input_handler_for_each_handle(struct input_handler *handler, void *data,
1679 int (*fn)(struct input_handle *, void *))
1680{
1681 struct input_handle *handle;
1682 int retval = 0;
1683
1684 rcu_read_lock();
1685
1686 list_for_each_entry_rcu(handle, &handler->h_list, h_node) {
1687 retval = fn(handle, data);
1688 if (retval)
1689 break;
1690 }
1691
1692 rcu_read_unlock();
1693
1694 return retval;
1695}
1696EXPORT_SYMBOL(input_handler_for_each_handle);
1697
8006479c
DT
1698/**
1699 * input_register_handle - register a new input handle
1700 * @handle: handle to register
1701 *
1702 * This function puts a new input handle onto device's
1703 * and handler's lists so that events can flow through
1704 * it once it is opened using input_open_device().
1705 *
1706 * This function is supposed to be called from handler's
1707 * connect() method.
1708 */
5b2a0826
DT
1709int input_register_handle(struct input_handle *handle)
1710{
1711 struct input_handler *handler = handle->handler;
8006479c
DT
1712 struct input_dev *dev = handle->dev;
1713 int error;
1714
1715 /*
1716 * We take dev->mutex here to prevent race with
1717 * input_release_device().
1718 */
1719 error = mutex_lock_interruptible(&dev->mutex);
1720 if (error)
1721 return error;
1722 list_add_tail_rcu(&handle->d_node, &dev->h_list);
1723 mutex_unlock(&dev->mutex);
5b2a0826 1724
8006479c
DT
1725 /*
1726 * Since we are supposed to be called from ->connect()
1727 * which is mutually exclusive with ->disconnect()
1728 * we can't be racing with input_unregister_handle()
1729 * and so separate lock is not needed here.
1730 */
66d2a595 1731 list_add_tail_rcu(&handle->h_node, &handler->h_list);
5b2a0826
DT
1732
1733 if (handler->start)
1734 handler->start(handle);
1735
1736 return 0;
1737}
1738EXPORT_SYMBOL(input_register_handle);
1739
8006479c
DT
1740/**
1741 * input_unregister_handle - unregister an input handle
1742 * @handle: handle to unregister
1743 *
1744 * This function removes input handle from device's
1745 * and handler's lists.
1746 *
1747 * This function is supposed to be called from handler's
1748 * disconnect() method.
1749 */
5b2a0826
DT
1750void input_unregister_handle(struct input_handle *handle)
1751{
8006479c
DT
1752 struct input_dev *dev = handle->dev;
1753
66d2a595 1754 list_del_rcu(&handle->h_node);
8006479c
DT
1755
1756 /*
1757 * Take dev->mutex to prevent race with input_release_device().
1758 */
1759 mutex_lock(&dev->mutex);
1760 list_del_rcu(&handle->d_node);
1761 mutex_unlock(&dev->mutex);
66d2a595 1762
82ba56c2 1763 synchronize_rcu();
5b2a0826
DT
1764}
1765EXPORT_SYMBOL(input_unregister_handle);
1766
1da177e4
LT
1767static int input_open_file(struct inode *inode, struct file *file)
1768{
2edbf853 1769 struct input_handler *handler;
99ac48f5 1770 const struct file_operations *old_fops, *new_fops = NULL;
1da177e4
LT
1771 int err;
1772
2edbf853 1773 lock_kernel();
1da177e4 1774 /* No load-on-demand here? */
2edbf853
JC
1775 handler = input_table[iminor(inode) >> 5];
1776 if (!handler || !(new_fops = fops_get(handler->fops))) {
1777 err = -ENODEV;
1778 goto out;
1779 }
1da177e4
LT
1780
1781 /*
1782 * That's _really_ odd. Usually NULL ->open means "nothing special",
1783 * not "no device". Oh, well...
1784 */
1785 if (!new_fops->open) {
1786 fops_put(new_fops);
2edbf853
JC
1787 err = -ENODEV;
1788 goto out;
1da177e4
LT
1789 }
1790 old_fops = file->f_op;
1791 file->f_op = new_fops;
1792
1793 err = new_fops->open(inode, file);
1794
1795 if (err) {
1796 fops_put(file->f_op);
1797 file->f_op = fops_get(old_fops);
1798 }
1799 fops_put(old_fops);
2edbf853
JC
1800out:
1801 unlock_kernel();
1da177e4
LT
1802 return err;
1803}
1804
2b8693c0 1805static const struct file_operations input_fops = {
1da177e4
LT
1806 .owner = THIS_MODULE,
1807 .open = input_open_file,
1808};
1809
61994a61
HR
1810static void __init input_init_abs_bypass(void)
1811{
1812 const unsigned int *p;
1813
1814 for (p = input_abs_bypass_init_data; *p; p++)
1815 input_abs_bypass[BIT_WORD(*p)] |= BIT_MASK(*p);
1816}
1817
f96b434d 1818static int __init input_init(void)
1da177e4 1819{
f96b434d 1820 int err;
1da177e4 1821
61994a61
HR
1822 input_init_abs_bypass();
1823
ea9f240b 1824 err = class_register(&input_class);
d19fbe8a
DT
1825 if (err) {
1826 printk(KERN_ERR "input: unable to register input_dev class\n");
1827 return err;
1828 }
1829
f96b434d
DT
1830 err = input_proc_init();
1831 if (err)
b0fdfebb 1832 goto fail1;
1da177e4 1833
f96b434d
DT
1834 err = register_chrdev(INPUT_MAJOR, "input", &input_fops);
1835 if (err) {
1836 printk(KERN_ERR "input: unable to register char major %d", INPUT_MAJOR);
b0fdfebb 1837 goto fail2;
1da177e4 1838 }
e334016f 1839
1da177e4 1840 return 0;
1da177e4 1841
b0fdfebb 1842 fail2: input_proc_exit();
ea9f240b 1843 fail1: class_unregister(&input_class);
f96b434d 1844 return err;
1da177e4
LT
1845}
1846
1847static void __exit input_exit(void)
1848{
f96b434d 1849 input_proc_exit();
1da177e4 1850 unregister_chrdev(INPUT_MAJOR, "input");
ea9f240b 1851 class_unregister(&input_class);
1da177e4
LT
1852}
1853
1854subsys_initcall(input_init);
1855module_exit(input_exit);