blob: c0837d3920570141d6111576cfea2703bbd535d2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/input.h>
15#include <linux/module.h>
16#include <linux/random.h>
17#include <linux/major.h>
18#include <linux/proc_fs.h>
Dmitry Torokhov969b21c2006-04-02 00:09:34 -050019#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/poll.h>
21#include <linux/device.h>
Jes Sorensene676c232006-02-19 00:21:46 -050022#include <linux/mutex.h>
Dmitry Torokhov80064792007-08-30 00:22:11 -040023#include <linux/rcupdate.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25MODULE_AUTHOR("Vojtech Pavlik <vojtech@suse.cz>");
26MODULE_DESCRIPTION("Input core");
27MODULE_LICENSE("GPL");
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#define INPUT_DEVICES 256
30
31static LIST_HEAD(input_dev_list);
32static LIST_HEAD(input_handler_list);
33
Dmitry Torokhov80064792007-08-30 00:22:11 -040034/*
35 * input_mutex protects access to both input_dev_list and input_handler_list.
36 * This also causes input_[un]register_device and input_[un]register_handler
37 * be mutually exclusive which simplifies locking in drivers implementing
38 * input handlers.
39 */
40static DEFINE_MUTEX(input_mutex);
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042static struct input_handler *input_table[8];
43
Dmitry Torokhov80064792007-08-30 00:22:11 -040044static inline int is_event_supported(unsigned int code,
45 unsigned long *bm, unsigned int max)
46{
47 return code <= max && test_bit(code, bm);
48}
49
50static int input_defuzz_abs_event(int value, int old_val, int fuzz)
51{
52 if (fuzz) {
53 if (value > old_val - fuzz / 2 && value < old_val + fuzz / 2)
54 return old_val;
55
56 if (value > old_val - fuzz && value < old_val + fuzz)
57 return (old_val * 3 + value) / 4;
58
59 if (value > old_val - fuzz * 2 && value < old_val + fuzz * 2)
60 return (old_val + value) / 2;
61 }
62
63 return value;
64}
65
66/*
67 * Pass event through all open handles. This function is called with
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -040068 * dev->event_lock held and interrupts disabled.
Dmitry Torokhov80064792007-08-30 00:22:11 -040069 */
70static void input_pass_event(struct input_dev *dev,
71 unsigned int type, unsigned int code, int value)
72{
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -040073 struct input_handle *handle;
Dmitry Torokhov80064792007-08-30 00:22:11 -040074
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -040075 rcu_read_lock();
76
77 handle = rcu_dereference(dev->grab);
Dmitry Torokhov80064792007-08-30 00:22:11 -040078 if (handle)
79 handle->handler->event(handle, type, code, value);
80 else
81 list_for_each_entry_rcu(handle, &dev->h_list, d_node)
82 if (handle->open)
83 handle->handler->event(handle,
84 type, code, value);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -040085 rcu_read_unlock();
Dmitry Torokhov80064792007-08-30 00:22:11 -040086}
87
88/*
89 * Generate software autorepeat event. Note that we take
90 * dev->event_lock here to avoid racing with input_event
91 * which may cause keys get "stuck".
92 */
93static void input_repeat_key(unsigned long data)
94{
95 struct input_dev *dev = (void *) data;
96 unsigned long flags;
97
98 spin_lock_irqsave(&dev->event_lock, flags);
99
100 if (test_bit(dev->repeat_key, dev->key) &&
101 is_event_supported(dev->repeat_key, dev->keybit, KEY_MAX)) {
102
103 input_pass_event(dev, EV_KEY, dev->repeat_key, 2);
104
105 if (dev->sync) {
106 /*
107 * Only send SYN_REPORT if we are not in a middle
108 * of driver parsing a new hardware packet.
109 * Otherwise assume that the driver will send
110 * SYN_REPORT once it's done.
111 */
112 input_pass_event(dev, EV_SYN, SYN_REPORT, 1);
113 }
114
115 if (dev->rep[REP_PERIOD])
116 mod_timer(&dev->timer, jiffies +
117 msecs_to_jiffies(dev->rep[REP_PERIOD]));
118 }
119
120 spin_unlock_irqrestore(&dev->event_lock, flags);
121}
122
123static void input_start_autorepeat(struct input_dev *dev, int code)
124{
125 if (test_bit(EV_REP, dev->evbit) &&
126 dev->rep[REP_PERIOD] && dev->rep[REP_DELAY] &&
127 dev->timer.data) {
128 dev->repeat_key = code;
129 mod_timer(&dev->timer,
130 jiffies + msecs_to_jiffies(dev->rep[REP_DELAY]));
131 }
132}
133
134#define INPUT_IGNORE_EVENT 0
135#define INPUT_PASS_TO_HANDLERS 1
136#define INPUT_PASS_TO_DEVICE 2
137#define INPUT_PASS_TO_ALL (INPUT_PASS_TO_HANDLERS | INPUT_PASS_TO_DEVICE)
138
139static void input_handle_event(struct input_dev *dev,
140 unsigned int type, unsigned int code, int value)
141{
142 int disposition = INPUT_IGNORE_EVENT;
143
144 switch (type) {
145
146 case EV_SYN:
147 switch (code) {
148 case SYN_CONFIG:
149 disposition = INPUT_PASS_TO_ALL;
150 break;
151
152 case SYN_REPORT:
153 if (!dev->sync) {
154 dev->sync = 1;
155 disposition = INPUT_PASS_TO_HANDLERS;
156 }
157 break;
158 }
159 break;
160
161 case EV_KEY:
162 if (is_event_supported(code, dev->keybit, KEY_MAX) &&
163 !!test_bit(code, dev->key) != value) {
164
165 if (value != 2) {
166 __change_bit(code, dev->key);
167 if (value)
168 input_start_autorepeat(dev, code);
169 }
170
171 disposition = INPUT_PASS_TO_HANDLERS;
172 }
173 break;
174
175 case EV_SW:
176 if (is_event_supported(code, dev->swbit, SW_MAX) &&
177 !!test_bit(code, dev->sw) != value) {
178
179 __change_bit(code, dev->sw);
180 disposition = INPUT_PASS_TO_HANDLERS;
181 }
182 break;
183
184 case EV_ABS:
185 if (is_event_supported(code, dev->absbit, ABS_MAX)) {
186
187 value = input_defuzz_abs_event(value,
188 dev->abs[code], dev->absfuzz[code]);
189
190 if (dev->abs[code] != value) {
191 dev->abs[code] = value;
192 disposition = INPUT_PASS_TO_HANDLERS;
193 }
194 }
195 break;
196
197 case EV_REL:
198 if (is_event_supported(code, dev->relbit, REL_MAX) && value)
199 disposition = INPUT_PASS_TO_HANDLERS;
200
201 break;
202
203 case EV_MSC:
204 if (is_event_supported(code, dev->mscbit, MSC_MAX))
205 disposition = INPUT_PASS_TO_ALL;
206
207 break;
208
209 case EV_LED:
210 if (is_event_supported(code, dev->ledbit, LED_MAX) &&
211 !!test_bit(code, dev->led) != value) {
212
213 __change_bit(code, dev->led);
214 disposition = INPUT_PASS_TO_ALL;
215 }
216 break;
217
218 case EV_SND:
219 if (is_event_supported(code, dev->sndbit, SND_MAX)) {
220
221 if (!!test_bit(code, dev->snd) != !!value)
222 __change_bit(code, dev->snd);
223 disposition = INPUT_PASS_TO_ALL;
224 }
225 break;
226
227 case EV_REP:
228 if (code <= REP_MAX && value >= 0 && dev->rep[code] != value) {
229 dev->rep[code] = value;
230 disposition = INPUT_PASS_TO_ALL;
231 }
232 break;
233
234 case EV_FF:
235 if (value >= 0)
236 disposition = INPUT_PASS_TO_ALL;
237 break;
238 }
239
240 if (type != EV_SYN)
241 dev->sync = 0;
242
243 if ((disposition & INPUT_PASS_TO_DEVICE) && dev->event)
244 dev->event(dev, type, code, value);
245
246 if (disposition & INPUT_PASS_TO_HANDLERS)
247 input_pass_event(dev, type, code, value);
248}
249
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400250/**
251 * input_event() - report new input event
Dmitry Torokhov14471902006-11-02 23:26:55 -0500252 * @dev: device that generated the event
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400253 * @type: type of the event
254 * @code: event code
255 * @value: value of the event
256 *
Dmitry Torokhov80064792007-08-30 00:22:11 -0400257 * This function should be used by drivers implementing various input
258 * devices. See also input_inject_event().
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400259 */
Dmitry Torokhov80064792007-08-30 00:22:11 -0400260
261void input_event(struct input_dev *dev,
262 unsigned int type, unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400264 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Dmitry Torokhov80064792007-08-30 00:22:11 -0400266 if (is_event_supported(type, dev->evbit, EV_MAX)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Dmitry Torokhov80064792007-08-30 00:22:11 -0400268 spin_lock_irqsave(&dev->event_lock, flags);
269 add_input_randomness(type, code, value);
270 input_handle_event(dev, type, code, value);
271 spin_unlock_irqrestore(&dev->event_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400274EXPORT_SYMBOL(input_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400276/**
277 * input_inject_event() - send input event from input handler
278 * @handle: input handle to send event through
279 * @type: type of the event
280 * @code: event code
281 * @value: value of the event
282 *
Dmitry Torokhov80064792007-08-30 00:22:11 -0400283 * Similar to input_event() but will ignore event if device is
284 * "grabbed" and handle injecting event is not the one that owns
285 * the device.
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400286 */
Dmitry Torokhov80064792007-08-30 00:22:11 -0400287void input_inject_event(struct input_handle *handle,
288 unsigned int type, unsigned int code, int value)
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400289{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400290 struct input_dev *dev = handle->dev;
291 struct input_handle *grab;
292 unsigned long flags;
293
294 if (is_event_supported(type, dev->evbit, EV_MAX)) {
295 spin_lock_irqsave(&dev->event_lock, flags);
296
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400297 rcu_read_lock();
Dmitry Torokhov80064792007-08-30 00:22:11 -0400298 grab = rcu_dereference(dev->grab);
299 if (!grab || grab == handle)
300 input_handle_event(dev, type, code, value);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400301 rcu_read_unlock();
Dmitry Torokhov80064792007-08-30 00:22:11 -0400302
303 spin_unlock_irqrestore(&dev->event_lock, flags);
304 }
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400305}
306EXPORT_SYMBOL(input_inject_event);
307
Dmitry Torokhov80064792007-08-30 00:22:11 -0400308/**
309 * input_grab_device - grabs device for exclusive use
310 * @handle: input handle that wants to own the device
311 *
312 * When a device is grabbed by an input handle all events generated by
313 * the device are delivered only to this handle. Also events injected
314 * by other input handles are ignored while device is grabbed.
315 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316int input_grab_device(struct input_handle *handle)
317{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400318 struct input_dev *dev = handle->dev;
319 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Dmitry Torokhov80064792007-08-30 00:22:11 -0400321 retval = mutex_lock_interruptible(&dev->mutex);
322 if (retval)
323 return retval;
324
325 if (dev->grab) {
326 retval = -EBUSY;
327 goto out;
328 }
329
330 rcu_assign_pointer(dev->grab, handle);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400331 synchronize_rcu();
Dmitry Torokhov80064792007-08-30 00:22:11 -0400332
333 out:
334 mutex_unlock(&dev->mutex);
335 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400337EXPORT_SYMBOL(input_grab_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Dmitry Torokhov80064792007-08-30 00:22:11 -0400339static void __input_release_device(struct input_handle *handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
Andrew Mortona2b2ed22006-07-15 01:17:38 -0400341 struct input_dev *dev = handle->dev;
Dmitry Torokhovc7e8dc62006-07-06 00:21:03 -0400342
Andrew Mortona2b2ed22006-07-15 01:17:38 -0400343 if (dev->grab == handle) {
Dmitry Torokhov80064792007-08-30 00:22:11 -0400344 rcu_assign_pointer(dev->grab, NULL);
345 /* Make sure input_pass_event() notices that grab is gone */
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400346 synchronize_rcu();
Andrew Mortona2b2ed22006-07-15 01:17:38 -0400347
348 list_for_each_entry(handle, &dev->h_list, d_node)
Dmitry Torokhov80064792007-08-30 00:22:11 -0400349 if (handle->open && handle->handler->start)
Dmitry Torokhovc7e8dc62006-07-06 00:21:03 -0400350 handle->handler->start(handle);
351 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352}
Dmitry Torokhov80064792007-08-30 00:22:11 -0400353
354/**
355 * input_release_device - release previously grabbed device
356 * @handle: input handle that owns the device
357 *
358 * Releases previously grabbed device so that other input handles can
359 * start receiving input events. Upon release all handlers attached
360 * to the device have their start() method called so they have a change
361 * to synchronize device state with the rest of the system.
362 */
363void input_release_device(struct input_handle *handle)
364{
365 struct input_dev *dev = handle->dev;
366
367 mutex_lock(&dev->mutex);
368 __input_release_device(handle);
369 mutex_unlock(&dev->mutex);
370}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400371EXPORT_SYMBOL(input_release_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Dmitry Torokhov80064792007-08-30 00:22:11 -0400373/**
374 * input_open_device - open input device
375 * @handle: handle through which device is being accessed
376 *
377 * This function should be called by input handlers when they
378 * want to start receive events from given input device.
379 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380int input_open_device(struct input_handle *handle)
381{
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500382 struct input_dev *dev = handle->dev;
Dmitry Torokhov80064792007-08-30 00:22:11 -0400383 int retval;
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500384
Dmitry Torokhov80064792007-08-30 00:22:11 -0400385 retval = mutex_lock_interruptible(&dev->mutex);
386 if (retval)
387 return retval;
388
389 if (dev->going_away) {
390 retval = -ENODEV;
391 goto out;
392 }
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 handle->open++;
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500395
396 if (!dev->users++ && dev->open)
Dmitry Torokhov80064792007-08-30 00:22:11 -0400397 retval = dev->open(dev);
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500398
Dmitry Torokhov80064792007-08-30 00:22:11 -0400399 if (retval) {
400 dev->users--;
401 if (!--handle->open) {
402 /*
403 * Make sure we are not delivering any more events
404 * through this handle
405 */
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400406 synchronize_rcu();
Dmitry Torokhov80064792007-08-30 00:22:11 -0400407 }
408 }
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500409
Dmitry Torokhov80064792007-08-30 00:22:11 -0400410 out:
Jes Sorensene676c232006-02-19 00:21:46 -0500411 mutex_unlock(&dev->mutex);
Dmitry Torokhov80064792007-08-30 00:22:11 -0400412 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400414EXPORT_SYMBOL(input_open_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Dmitry Torokhov80064792007-08-30 00:22:11 -0400416int input_flush_device(struct input_handle *handle, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400418 struct input_dev *dev = handle->dev;
419 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Dmitry Torokhov80064792007-08-30 00:22:11 -0400421 retval = mutex_lock_interruptible(&dev->mutex);
422 if (retval)
423 return retval;
424
425 if (dev->flush)
426 retval = dev->flush(dev, file);
427
428 mutex_unlock(&dev->mutex);
429 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400431EXPORT_SYMBOL(input_flush_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Dmitry Torokhov80064792007-08-30 00:22:11 -0400433/**
434 * input_close_device - close input device
435 * @handle: handle through which device is being accessed
436 *
437 * This function should be called by input handlers when they
438 * want to stop receive events from given input device.
439 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440void input_close_device(struct input_handle *handle)
441{
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500442 struct input_dev *dev = handle->dev;
443
Jes Sorensene676c232006-02-19 00:21:46 -0500444 mutex_lock(&dev->mutex);
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500445
Dmitry Torokhov80064792007-08-30 00:22:11 -0400446 __input_release_device(handle);
447
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500448 if (!--dev->users && dev->close)
449 dev->close(dev);
Dmitry Torokhov80064792007-08-30 00:22:11 -0400450
451 if (!--handle->open) {
452 /*
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400453 * synchronize_rcu() makes sure that input_pass_event()
Dmitry Torokhov80064792007-08-30 00:22:11 -0400454 * completed and that no more input events are delivered
455 * through this handle
456 */
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400457 synchronize_rcu();
Dmitry Torokhov80064792007-08-30 00:22:11 -0400458 }
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500459
Jes Sorensene676c232006-02-19 00:21:46 -0500460 mutex_unlock(&dev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400462EXPORT_SYMBOL(input_close_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Dmitry Torokhov80064792007-08-30 00:22:11 -0400464/*
465 * Prepare device for unregistering
466 */
467static void input_disconnect_device(struct input_dev *dev)
468{
469 struct input_handle *handle;
470 int code;
471
472 /*
473 * Mark device as going away. Note that we take dev->mutex here
474 * not to protect access to dev->going_away but rather to ensure
475 * that there are no threads in the middle of input_open_device()
476 */
477 mutex_lock(&dev->mutex);
478 dev->going_away = 1;
479 mutex_unlock(&dev->mutex);
480
481 spin_lock_irq(&dev->event_lock);
482
483 /*
484 * Simulate keyup events for all pressed keys so that handlers
485 * are not left with "stuck" keys. The driver may continue
486 * generate events even after we done here but they will not
487 * reach any handlers.
488 */
489 if (is_event_supported(EV_KEY, dev->evbit, EV_MAX)) {
490 for (code = 0; code <= KEY_MAX; code++) {
491 if (is_event_supported(code, dev->keybit, KEY_MAX) &&
492 test_bit(code, dev->key)) {
493 input_pass_event(dev, EV_KEY, code, 0);
494 }
495 }
496 input_pass_event(dev, EV_SYN, SYN_REPORT, 1);
497 }
498
499 list_for_each_entry(handle, &dev->h_list, d_node)
500 handle->open = 0;
501
502 spin_unlock_irq(&dev->event_lock);
503}
504
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400505static int input_fetch_keycode(struct input_dev *dev, int scancode)
506{
507 switch (dev->keycodesize) {
508 case 1:
509 return ((u8 *)dev->keycode)[scancode];
510
511 case 2:
512 return ((u16 *)dev->keycode)[scancode];
513
514 default:
515 return ((u32 *)dev->keycode)[scancode];
516 }
517}
518
519static int input_default_getkeycode(struct input_dev *dev,
520 int scancode, int *keycode)
521{
522 if (!dev->keycodesize)
523 return -EINVAL;
524
525 if (scancode < 0 || scancode >= dev->keycodemax)
526 return -EINVAL;
527
528 *keycode = input_fetch_keycode(dev, scancode);
529
530 return 0;
531}
532
533static int input_default_setkeycode(struct input_dev *dev,
534 int scancode, int keycode)
535{
536 int old_keycode;
537 int i;
538
539 if (scancode < 0 || scancode >= dev->keycodemax)
540 return -EINVAL;
541
542 if (keycode < 0 || keycode > KEY_MAX)
543 return -EINVAL;
544
545 if (!dev->keycodesize)
546 return -EINVAL;
547
548 if (dev->keycodesize < sizeof(keycode) && (keycode >> (dev->keycodesize * 8)))
549 return -EINVAL;
550
551 switch (dev->keycodesize) {
552 case 1: {
553 u8 *k = (u8 *)dev->keycode;
554 old_keycode = k[scancode];
555 k[scancode] = keycode;
556 break;
557 }
558 case 2: {
559 u16 *k = (u16 *)dev->keycode;
560 old_keycode = k[scancode];
561 k[scancode] = keycode;
562 break;
563 }
564 default: {
565 u32 *k = (u32 *)dev->keycode;
566 old_keycode = k[scancode];
567 k[scancode] = keycode;
568 break;
569 }
570 }
571
572 clear_bit(old_keycode, dev->keybit);
573 set_bit(keycode, dev->keybit);
574
575 for (i = 0; i < dev->keycodemax; i++) {
576 if (input_fetch_keycode(dev, i) == old_keycode) {
577 set_bit(old_keycode, dev->keybit);
578 break; /* Setting the bit twice is useless, so break */
579 }
580 }
581
582 return 0;
583}
584
585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586#define MATCH_BIT(bit, max) \
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700587 for (i = 0; i < BITS_TO_LONGS(max); i++) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 if ((id->bit[i] & dev->bit[i]) != id->bit[i]) \
589 break; \
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700590 if (i != BITS_TO_LONGS(max)) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 continue;
592
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400593static const struct input_device_id *input_match_device(const struct input_device_id *id,
594 struct input_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
596 int i;
597
598 for (; id->flags || id->driver_info; id++) {
599
600 if (id->flags & INPUT_DEVICE_ID_MATCH_BUS)
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400601 if (id->bustype != dev->id.bustype)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 continue;
603
604 if (id->flags & INPUT_DEVICE_ID_MATCH_VENDOR)
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400605 if (id->vendor != dev->id.vendor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 continue;
607
608 if (id->flags & INPUT_DEVICE_ID_MATCH_PRODUCT)
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400609 if (id->product != dev->id.product)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 continue;
611
612 if (id->flags & INPUT_DEVICE_ID_MATCH_VERSION)
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400613 if (id->version != dev->id.version)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 continue;
615
616 MATCH_BIT(evbit, EV_MAX);
617 MATCH_BIT(keybit, KEY_MAX);
618 MATCH_BIT(relbit, REL_MAX);
619 MATCH_BIT(absbit, ABS_MAX);
620 MATCH_BIT(mscbit, MSC_MAX);
621 MATCH_BIT(ledbit, LED_MAX);
622 MATCH_BIT(sndbit, SND_MAX);
623 MATCH_BIT(ffbit, FF_MAX);
Dmitry Torokhovff13f982005-09-24 02:02:29 -0500624 MATCH_BIT(swbit, SW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626 return id;
627 }
628
629 return NULL;
630}
631
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400632static int input_attach_handler(struct input_dev *dev, struct input_handler *handler)
633{
634 const struct input_device_id *id;
635 int error;
636
637 if (handler->blacklist && input_match_device(handler->blacklist, dev))
638 return -ENODEV;
639
640 id = input_match_device(handler->id_table, dev);
641 if (!id)
642 return -ENODEV;
643
644 error = handler->connect(handler, dev, id);
645 if (error && error != -ENODEV)
646 printk(KERN_ERR
647 "input: failed to attach handler %s to device %s, "
648 "error: %d\n",
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400649 handler->name, kobject_name(&dev->dev.kobj), error);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400650
651 return error;
652}
653
654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655#ifdef CONFIG_PROC_FS
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500656
657static struct proc_dir_entry *proc_bus_input_dir;
658static DECLARE_WAIT_QUEUE_HEAD(input_devices_poll_wait);
659static int input_devices_state;
660
661static inline void input_wakeup_procfs_readers(void)
662{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 input_devices_state++;
664 wake_up(&input_devices_poll_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665}
666
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500667static unsigned int input_proc_devices_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500669 int state = input_devices_state;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400670
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500671 poll_wait(file, &input_devices_poll_wait, wait);
672 if (state != input_devices_state)
673 return POLLIN | POLLRDNORM;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400674
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500675 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676}
677
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500678static void *input_devices_seq_start(struct seq_file *seq, loff_t *pos)
679{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400680 if (mutex_lock_interruptible(&input_mutex))
681 return NULL;
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500682
Pavel Emelianovad5d9722007-07-18 00:38:32 -0400683 return seq_list_start(&input_dev_list, *pos);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500684}
685
686static void *input_devices_seq_next(struct seq_file *seq, void *v, loff_t *pos)
687{
Pavel Emelianovad5d9722007-07-18 00:38:32 -0400688 return seq_list_next(v, &input_dev_list, pos);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500689}
690
691static void input_devices_seq_stop(struct seq_file *seq, void *v)
692{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400693 mutex_unlock(&input_mutex);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500694}
695
696static void input_seq_print_bitmap(struct seq_file *seq, const char *name,
697 unsigned long *bitmap, int max)
698{
699 int i;
700
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700701 for (i = BITS_TO_LONGS(max) - 1; i > 0; i--)
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500702 if (bitmap[i])
703 break;
704
705 seq_printf(seq, "B: %s=", name);
706 for (; i >= 0; i--)
707 seq_printf(seq, "%lx%s", bitmap[i], i > 0 ? " " : "");
708 seq_putc(seq, '\n');
709}
710
711static int input_devices_seq_show(struct seq_file *seq, void *v)
712{
713 struct input_dev *dev = container_of(v, struct input_dev, node);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400714 const char *path = kobject_get_path(&dev->dev.kobj, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 struct input_handle *handle;
716
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500717 seq_printf(seq, "I: Bus=%04x Vendor=%04x Product=%04x Version=%04x\n",
718 dev->id.bustype, dev->id.vendor, dev->id.product, dev->id.version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500720 seq_printf(seq, "N: Name=\"%s\"\n", dev->name ? dev->name : "");
721 seq_printf(seq, "P: Phys=%s\n", dev->phys ? dev->phys : "");
722 seq_printf(seq, "S: Sysfs=%s\n", path ? path : "");
Dmitry Torokhov15e03ae2007-03-07 23:20:17 -0500723 seq_printf(seq, "U: Uniq=%s\n", dev->uniq ? dev->uniq : "");
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500724 seq_printf(seq, "H: Handlers=");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500726 list_for_each_entry(handle, &dev->h_list, d_node)
727 seq_printf(seq, "%s ", handle->name);
728 seq_putc(seq, '\n');
Dmitry Torokhov051b2fe2005-09-15 02:01:54 -0500729
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500730 input_seq_print_bitmap(seq, "EV", dev->evbit, EV_MAX);
731 if (test_bit(EV_KEY, dev->evbit))
732 input_seq_print_bitmap(seq, "KEY", dev->keybit, KEY_MAX);
733 if (test_bit(EV_REL, dev->evbit))
734 input_seq_print_bitmap(seq, "REL", dev->relbit, REL_MAX);
735 if (test_bit(EV_ABS, dev->evbit))
736 input_seq_print_bitmap(seq, "ABS", dev->absbit, ABS_MAX);
737 if (test_bit(EV_MSC, dev->evbit))
738 input_seq_print_bitmap(seq, "MSC", dev->mscbit, MSC_MAX);
739 if (test_bit(EV_LED, dev->evbit))
740 input_seq_print_bitmap(seq, "LED", dev->ledbit, LED_MAX);
741 if (test_bit(EV_SND, dev->evbit))
742 input_seq_print_bitmap(seq, "SND", dev->sndbit, SND_MAX);
743 if (test_bit(EV_FF, dev->evbit))
744 input_seq_print_bitmap(seq, "FF", dev->ffbit, FF_MAX);
745 if (test_bit(EV_SW, dev->evbit))
746 input_seq_print_bitmap(seq, "SW", dev->swbit, SW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500748 seq_putc(seq, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500750 kfree(path);
751 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752}
753
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500754static struct seq_operations input_devices_seq_ops = {
755 .start = input_devices_seq_start,
756 .next = input_devices_seq_next,
757 .stop = input_devices_seq_stop,
758 .show = input_devices_seq_show,
759};
760
761static int input_proc_devices_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762{
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500763 return seq_open(file, &input_devices_seq_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764}
765
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800766static const struct file_operations input_devices_fileops = {
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500767 .owner = THIS_MODULE,
768 .open = input_proc_devices_open,
769 .poll = input_proc_devices_poll,
770 .read = seq_read,
771 .llseek = seq_lseek,
772 .release = seq_release,
773};
774
775static void *input_handlers_seq_start(struct seq_file *seq, loff_t *pos)
776{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400777 if (mutex_lock_interruptible(&input_mutex))
778 return NULL;
779
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500780 seq->private = (void *)(unsigned long)*pos;
Pavel Emelianovad5d9722007-07-18 00:38:32 -0400781 return seq_list_start(&input_handler_list, *pos);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500782}
783
784static void *input_handlers_seq_next(struct seq_file *seq, void *v, loff_t *pos)
785{
786 seq->private = (void *)(unsigned long)(*pos + 1);
Pavel Emelianovad5d9722007-07-18 00:38:32 -0400787 return seq_list_next(v, &input_handler_list, pos);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500788}
789
790static void input_handlers_seq_stop(struct seq_file *seq, void *v)
791{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400792 mutex_unlock(&input_mutex);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500793}
794
795static int input_handlers_seq_show(struct seq_file *seq, void *v)
796{
797 struct input_handler *handler = container_of(v, struct input_handler, node);
798
799 seq_printf(seq, "N: Number=%ld Name=%s",
800 (unsigned long)seq->private, handler->name);
801 if (handler->fops)
802 seq_printf(seq, " Minor=%d", handler->minor);
803 seq_putc(seq, '\n');
804
805 return 0;
806}
807static struct seq_operations input_handlers_seq_ops = {
808 .start = input_handlers_seq_start,
809 .next = input_handlers_seq_next,
810 .stop = input_handlers_seq_stop,
811 .show = input_handlers_seq_show,
812};
813
814static int input_proc_handlers_open(struct inode *inode, struct file *file)
815{
816 return seq_open(file, &input_handlers_seq_ops);
817}
818
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800819static const struct file_operations input_handlers_fileops = {
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500820 .owner = THIS_MODULE,
821 .open = input_proc_handlers_open,
822 .read = seq_read,
823 .llseek = seq_lseek,
824 .release = seq_release,
825};
Luke Kosewskie334016fc2005-06-01 02:39:28 -0500826
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827static int __init input_proc_init(void)
828{
829 struct proc_dir_entry *entry;
830
831 proc_bus_input_dir = proc_mkdir("input", proc_bus);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500832 if (!proc_bus_input_dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 return -ENOMEM;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 proc_bus_input_dir->owner = THIS_MODULE;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500836
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500837 entry = create_proc_entry("devices", 0, proc_bus_input_dir);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500838 if (!entry)
839 goto fail1;
840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 entry->owner = THIS_MODULE;
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500842 entry->proc_fops = &input_devices_fileops;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500843
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500844 entry = create_proc_entry("handlers", 0, proc_bus_input_dir);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500845 if (!entry)
846 goto fail2;
847
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 entry->owner = THIS_MODULE;
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500849 entry->proc_fops = &input_handlers_fileops;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500850
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 return 0;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500852
853 fail2: remove_proc_entry("devices", proc_bus_input_dir);
854 fail1: remove_proc_entry("input", proc_bus);
855 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856}
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500857
Andrew Mortonbeffbdc2005-07-01 23:54:30 -0500858static void input_proc_exit(void)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500859{
860 remove_proc_entry("devices", proc_bus_input_dir);
861 remove_proc_entry("handlers", proc_bus_input_dir);
862 remove_proc_entry("input", proc_bus);
863}
864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865#else /* !CONFIG_PROC_FS */
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500866static inline void input_wakeup_procfs_readers(void) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867static inline int input_proc_init(void) { return 0; }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500868static inline void input_proc_exit(void) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869#endif
870
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400871#define INPUT_DEV_STRING_ATTR_SHOW(name) \
872static ssize_t input_dev_show_##name(struct device *dev, \
873 struct device_attribute *attr, \
874 char *buf) \
875{ \
876 struct input_dev *input_dev = to_input_dev(dev); \
877 \
878 return scnprintf(buf, PAGE_SIZE, "%s\n", \
879 input_dev->name ? input_dev->name : ""); \
880} \
881static DEVICE_ATTR(name, S_IRUGO, input_dev_show_##name, NULL)
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -0500882
883INPUT_DEV_STRING_ATTR_SHOW(name);
884INPUT_DEV_STRING_ATTR_SHOW(phys);
885INPUT_DEV_STRING_ATTR_SHOW(uniq);
886
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500887static int input_print_modalias_bits(char *buf, int size,
888 char name, unsigned long *bm,
889 unsigned int min_bit, unsigned int max_bit)
Rusty Russell1d8f4302005-12-07 21:40:34 +0100890{
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500891 int len = 0, i;
Rusty Russell1d8f4302005-12-07 21:40:34 +0100892
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500893 len += snprintf(buf, max(size, 0), "%c", name);
894 for (i = min_bit; i < max_bit; i++)
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700895 if (bm[BIT_WORD(i)] & BIT_MASK(i))
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500896 len += snprintf(buf + len, max(size - len, 0), "%X,", i);
Kay Sieversbd37e5a2006-01-05 13:19:55 +0100897 return len;
898}
899
Dmitry Torokhov2db66872006-04-02 00:09:26 -0500900static int input_print_modalias(char *buf, int size, struct input_dev *id,
901 int add_cr)
Kay Sieversbd37e5a2006-01-05 13:19:55 +0100902{
903 int len;
904
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500905 len = snprintf(buf, max(size, 0),
906 "input:b%04Xv%04Xp%04Xe%04X-",
907 id->id.bustype, id->id.vendor,
908 id->id.product, id->id.version);
Kay Sieversbd37e5a2006-01-05 13:19:55 +0100909
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500910 len += input_print_modalias_bits(buf + len, size - len,
911 'e', id->evbit, 0, EV_MAX);
912 len += input_print_modalias_bits(buf + len, size - len,
913 'k', id->keybit, KEY_MIN_INTERESTING, KEY_MAX);
914 len += input_print_modalias_bits(buf + len, size - len,
915 'r', id->relbit, 0, REL_MAX);
916 len += input_print_modalias_bits(buf + len, size - len,
917 'a', id->absbit, 0, ABS_MAX);
918 len += input_print_modalias_bits(buf + len, size - len,
919 'm', id->mscbit, 0, MSC_MAX);
920 len += input_print_modalias_bits(buf + len, size - len,
921 'l', id->ledbit, 0, LED_MAX);
922 len += input_print_modalias_bits(buf + len, size - len,
923 's', id->sndbit, 0, SND_MAX);
924 len += input_print_modalias_bits(buf + len, size - len,
925 'f', id->ffbit, 0, FF_MAX);
926 len += input_print_modalias_bits(buf + len, size - len,
927 'w', id->swbit, 0, SW_MAX);
Dmitry Torokhov2db66872006-04-02 00:09:26 -0500928
929 if (add_cr)
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500930 len += snprintf(buf + len, max(size - len, 0), "\n");
Dmitry Torokhov2db66872006-04-02 00:09:26 -0500931
Rusty Russell1d8f4302005-12-07 21:40:34 +0100932 return len;
933}
934
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400935static ssize_t input_dev_show_modalias(struct device *dev,
936 struct device_attribute *attr,
937 char *buf)
Rusty Russell1d8f4302005-12-07 21:40:34 +0100938{
939 struct input_dev *id = to_input_dev(dev);
Kay Sieversbd37e5a2006-01-05 13:19:55 +0100940 ssize_t len;
Rusty Russell1d8f4302005-12-07 21:40:34 +0100941
Dmitry Torokhov2db66872006-04-02 00:09:26 -0500942 len = input_print_modalias(buf, PAGE_SIZE, id, 1);
943
Richard Purdie8a3cf452006-06-26 01:48:21 -0400944 return min_t(int, len, PAGE_SIZE);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100945}
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400946static DEVICE_ATTR(modalias, S_IRUGO, input_dev_show_modalias, NULL);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100947
Greg Kroah-Hartman629b77a2005-10-27 22:25:43 -0700948static struct attribute *input_dev_attrs[] = {
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400949 &dev_attr_name.attr,
950 &dev_attr_phys.attr,
951 &dev_attr_uniq.attr,
952 &dev_attr_modalias.attr,
Greg Kroah-Hartman629b77a2005-10-27 22:25:43 -0700953 NULL
954};
955
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -0500956static struct attribute_group input_dev_attr_group = {
Greg Kroah-Hartman629b77a2005-10-27 22:25:43 -0700957 .attrs = input_dev_attrs,
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -0500958};
959
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400960#define INPUT_DEV_ID_ATTR(name) \
961static ssize_t input_dev_show_id_##name(struct device *dev, \
962 struct device_attribute *attr, \
963 char *buf) \
964{ \
965 struct input_dev *input_dev = to_input_dev(dev); \
966 return scnprintf(buf, PAGE_SIZE, "%04x\n", input_dev->id.name); \
967} \
968static DEVICE_ATTR(name, S_IRUGO, input_dev_show_id_##name, NULL)
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -0500969
970INPUT_DEV_ID_ATTR(bustype);
971INPUT_DEV_ID_ATTR(vendor);
972INPUT_DEV_ID_ATTR(product);
973INPUT_DEV_ID_ATTR(version);
974
975static struct attribute *input_dev_id_attrs[] = {
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400976 &dev_attr_bustype.attr,
977 &dev_attr_vendor.attr,
978 &dev_attr_product.attr,
979 &dev_attr_version.attr,
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -0500980 NULL
981};
982
983static struct attribute_group input_dev_id_attr_group = {
984 .name = "id",
985 .attrs = input_dev_id_attrs,
986};
987
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500988static int input_print_bitmap(char *buf, int buf_size, unsigned long *bitmap,
989 int max, int add_cr)
990{
991 int i;
992 int len = 0;
993
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700994 for (i = BITS_TO_LONGS(max) - 1; i > 0; i--)
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500995 if (bitmap[i])
996 break;
997
998 for (; i >= 0; i--)
999 len += snprintf(buf + len, max(buf_size - len, 0),
1000 "%lx%s", bitmap[i], i > 0 ? " " : "");
1001
1002 if (add_cr)
1003 len += snprintf(buf + len, max(buf_size - len, 0), "\n");
1004
1005 return len;
1006}
1007
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001008#define INPUT_DEV_CAP_ATTR(ev, bm) \
1009static ssize_t input_dev_show_cap_##bm(struct device *dev, \
1010 struct device_attribute *attr, \
1011 char *buf) \
1012{ \
1013 struct input_dev *input_dev = to_input_dev(dev); \
1014 int len = input_print_bitmap(buf, PAGE_SIZE, \
1015 input_dev->bm##bit, ev##_MAX, 1); \
1016 return min_t(int, len, PAGE_SIZE); \
1017} \
1018static DEVICE_ATTR(bm, S_IRUGO, input_dev_show_cap_##bm, NULL)
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -05001019
1020INPUT_DEV_CAP_ATTR(EV, ev);
1021INPUT_DEV_CAP_ATTR(KEY, key);
1022INPUT_DEV_CAP_ATTR(REL, rel);
1023INPUT_DEV_CAP_ATTR(ABS, abs);
1024INPUT_DEV_CAP_ATTR(MSC, msc);
1025INPUT_DEV_CAP_ATTR(LED, led);
1026INPUT_DEV_CAP_ATTR(SND, snd);
1027INPUT_DEV_CAP_ATTR(FF, ff);
1028INPUT_DEV_CAP_ATTR(SW, sw);
1029
1030static struct attribute *input_dev_caps_attrs[] = {
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001031 &dev_attr_ev.attr,
1032 &dev_attr_key.attr,
1033 &dev_attr_rel.attr,
1034 &dev_attr_abs.attr,
1035 &dev_attr_msc.attr,
1036 &dev_attr_led.attr,
1037 &dev_attr_snd.attr,
1038 &dev_attr_ff.attr,
1039 &dev_attr_sw.attr,
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -05001040 NULL
1041};
1042
1043static struct attribute_group input_dev_caps_attr_group = {
1044 .name = "capabilities",
1045 .attrs = input_dev_caps_attrs,
1046};
1047
Dmitry Torokhovcb9def42007-03-07 23:20:26 -05001048static struct attribute_group *input_dev_attr_groups[] = {
1049 &input_dev_attr_group,
1050 &input_dev_id_attr_group,
1051 &input_dev_caps_attr_group,
1052 NULL
1053};
1054
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001055static void input_dev_release(struct device *device)
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001056{
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001057 struct input_dev *dev = to_input_dev(device);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001058
Anssi Hannula509ca1a2006-07-19 01:40:22 -04001059 input_ff_destroy(dev);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001060 kfree(dev);
Anssi Hannula509ca1a2006-07-19 01:40:22 -04001061
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001062 module_put(THIS_MODULE);
1063}
1064
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001065/*
Kay Sievers312c0042005-11-16 09:00:00 +01001066 * Input uevent interface - loading event handlers based on
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001067 * device bitfields.
1068 */
Kay Sievers7eff2e72007-08-14 15:15:12 +02001069static int input_add_uevent_bm_var(struct kobj_uevent_env *env,
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001070 const char *name, unsigned long *bitmap, int max)
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001071{
Kay Sievers7eff2e72007-08-14 15:15:12 +02001072 int len;
1073
1074 if (add_uevent_var(env, "%s=", name))
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001075 return -ENOMEM;
1076
Kay Sievers7eff2e72007-08-14 15:15:12 +02001077 len = input_print_bitmap(&env->buf[env->buflen - 1],
1078 sizeof(env->buf) - env->buflen,
1079 bitmap, max, 0);
1080 if (len >= (sizeof(env->buf) - env->buflen))
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001081 return -ENOMEM;
1082
Kay Sievers7eff2e72007-08-14 15:15:12 +02001083 env->buflen += len;
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001084 return 0;
1085}
1086
Kay Sievers7eff2e72007-08-14 15:15:12 +02001087static int input_add_uevent_modalias_var(struct kobj_uevent_env *env,
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001088 struct input_dev *dev)
1089{
Kay Sievers7eff2e72007-08-14 15:15:12 +02001090 int len;
1091
1092 if (add_uevent_var(env, "MODALIAS="))
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001093 return -ENOMEM;
1094
Kay Sievers7eff2e72007-08-14 15:15:12 +02001095 len = input_print_modalias(&env->buf[env->buflen - 1],
1096 sizeof(env->buf) - env->buflen,
1097 dev, 0);
1098 if (len >= (sizeof(env->buf) - env->buflen))
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001099 return -ENOMEM;
1100
Kay Sievers7eff2e72007-08-14 15:15:12 +02001101 env->buflen += len;
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001102 return 0;
1103}
1104
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001105#define INPUT_ADD_HOTPLUG_VAR(fmt, val...) \
1106 do { \
Kay Sievers7eff2e72007-08-14 15:15:12 +02001107 int err = add_uevent_var(env, fmt, val); \
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001108 if (err) \
1109 return err; \
1110 } while (0)
1111
1112#define INPUT_ADD_HOTPLUG_BM_VAR(name, bm, max) \
1113 do { \
Kay Sievers7eff2e72007-08-14 15:15:12 +02001114 int err = input_add_uevent_bm_var(env, name, bm, max); \
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001115 if (err) \
1116 return err; \
1117 } while (0)
1118
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001119#define INPUT_ADD_HOTPLUG_MODALIAS_VAR(dev) \
1120 do { \
Kay Sievers7eff2e72007-08-14 15:15:12 +02001121 int err = input_add_uevent_modalias_var(env, dev); \
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001122 if (err) \
1123 return err; \
1124 } while (0)
1125
Kay Sievers7eff2e72007-08-14 15:15:12 +02001126static int input_dev_uevent(struct device *device, struct kobj_uevent_env *env)
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001127{
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001128 struct input_dev *dev = to_input_dev(device);
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001129
1130 INPUT_ADD_HOTPLUG_VAR("PRODUCT=%x/%x/%x/%x",
1131 dev->id.bustype, dev->id.vendor,
1132 dev->id.product, dev->id.version);
1133 if (dev->name)
1134 INPUT_ADD_HOTPLUG_VAR("NAME=\"%s\"", dev->name);
1135 if (dev->phys)
1136 INPUT_ADD_HOTPLUG_VAR("PHYS=\"%s\"", dev->phys);
Dmitry Torokhov08de1f02005-11-08 21:34:29 -08001137 if (dev->uniq)
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001138 INPUT_ADD_HOTPLUG_VAR("UNIQ=\"%s\"", dev->uniq);
1139
1140 INPUT_ADD_HOTPLUG_BM_VAR("EV=", dev->evbit, EV_MAX);
1141 if (test_bit(EV_KEY, dev->evbit))
1142 INPUT_ADD_HOTPLUG_BM_VAR("KEY=", dev->keybit, KEY_MAX);
1143 if (test_bit(EV_REL, dev->evbit))
1144 INPUT_ADD_HOTPLUG_BM_VAR("REL=", dev->relbit, REL_MAX);
1145 if (test_bit(EV_ABS, dev->evbit))
1146 INPUT_ADD_HOTPLUG_BM_VAR("ABS=", dev->absbit, ABS_MAX);
1147 if (test_bit(EV_MSC, dev->evbit))
1148 INPUT_ADD_HOTPLUG_BM_VAR("MSC=", dev->mscbit, MSC_MAX);
1149 if (test_bit(EV_LED, dev->evbit))
1150 INPUT_ADD_HOTPLUG_BM_VAR("LED=", dev->ledbit, LED_MAX);
1151 if (test_bit(EV_SND, dev->evbit))
1152 INPUT_ADD_HOTPLUG_BM_VAR("SND=", dev->sndbit, SND_MAX);
1153 if (test_bit(EV_FF, dev->evbit))
1154 INPUT_ADD_HOTPLUG_BM_VAR("FF=", dev->ffbit, FF_MAX);
1155 if (test_bit(EV_SW, dev->evbit))
1156 INPUT_ADD_HOTPLUG_BM_VAR("SW=", dev->swbit, SW_MAX);
1157
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001158 INPUT_ADD_HOTPLUG_MODALIAS_VAR(dev);
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001159
1160 return 0;
1161}
1162
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001163static struct device_type input_dev_type = {
1164 .groups = input_dev_attr_groups,
1165 .release = input_dev_release,
1166 .uevent = input_dev_uevent,
1167};
1168
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -07001169struct class input_class = {
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001170 .name = "input",
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001171};
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001172EXPORT_SYMBOL_GPL(input_class);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001173
Dmitry Torokhov14471902006-11-02 23:26:55 -05001174/**
1175 * input_allocate_device - allocate memory for new input device
1176 *
1177 * Returns prepared struct input_dev or NULL.
1178 *
1179 * NOTE: Use input_free_device() to free devices that have not been
1180 * registered; input_unregister_device() should be used for already
1181 * registered devices.
1182 */
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001183struct input_dev *input_allocate_device(void)
1184{
1185 struct input_dev *dev;
1186
1187 dev = kzalloc(sizeof(struct input_dev), GFP_KERNEL);
1188 if (dev) {
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001189 dev->dev.type = &input_dev_type;
1190 dev->dev.class = &input_class;
1191 device_initialize(&dev->dev);
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -04001192 mutex_init(&dev->mutex);
Dmitry Torokhov80064792007-08-30 00:22:11 -04001193 spin_lock_init(&dev->event_lock);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001194 INIT_LIST_HEAD(&dev->h_list);
1195 INIT_LIST_HEAD(&dev->node);
Dmitry Torokhov655816e2006-09-14 01:32:14 -04001196
1197 __module_get(THIS_MODULE);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001198 }
1199
1200 return dev;
1201}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001202EXPORT_SYMBOL(input_allocate_device);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001203
Dmitry Torokhov14471902006-11-02 23:26:55 -05001204/**
1205 * input_free_device - free memory occupied by input_dev structure
1206 * @dev: input device to free
1207 *
1208 * This function should only be used if input_register_device()
1209 * was not called yet or if it failed. Once device was registered
1210 * use input_unregister_device() and memory will be freed once last
Dmitry Torokhov80064792007-08-30 00:22:11 -04001211 * reference to the device is dropped.
Dmitry Torokhov14471902006-11-02 23:26:55 -05001212 *
1213 * Device should be allocated by input_allocate_device().
1214 *
1215 * NOTE: If there are references to the input device then memory
1216 * will not be freed until last reference is dropped.
1217 */
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -04001218void input_free_device(struct input_dev *dev)
1219{
Dmitry Torokhov54f9e362007-03-16 00:57:25 -04001220 if (dev)
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -04001221 input_put_device(dev);
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -04001222}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001223EXPORT_SYMBOL(input_free_device);
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -04001224
Dmitry Torokhov534565f2007-04-25 00:53:18 -04001225/**
1226 * input_set_capability - mark device as capable of a certain event
1227 * @dev: device that is capable of emitting or accepting event
1228 * @type: type of the event (EV_KEY, EV_REL, etc...)
1229 * @code: event code
1230 *
1231 * In addition to setting up corresponding bit in appropriate capability
1232 * bitmap the function also adjusts dev->evbit.
1233 */
1234void input_set_capability(struct input_dev *dev, unsigned int type, unsigned int code)
1235{
1236 switch (type) {
1237 case EV_KEY:
1238 __set_bit(code, dev->keybit);
1239 break;
1240
1241 case EV_REL:
1242 __set_bit(code, dev->relbit);
1243 break;
1244
1245 case EV_ABS:
1246 __set_bit(code, dev->absbit);
1247 break;
1248
1249 case EV_MSC:
1250 __set_bit(code, dev->mscbit);
1251 break;
1252
1253 case EV_SW:
1254 __set_bit(code, dev->swbit);
1255 break;
1256
1257 case EV_LED:
1258 __set_bit(code, dev->ledbit);
1259 break;
1260
1261 case EV_SND:
1262 __set_bit(code, dev->sndbit);
1263 break;
1264
1265 case EV_FF:
1266 __set_bit(code, dev->ffbit);
1267 break;
1268
Dmitry Baryshkov22d1c392007-12-14 01:21:03 -05001269 case EV_PWR:
1270 /* do nothing */
1271 break;
1272
Dmitry Torokhov534565f2007-04-25 00:53:18 -04001273 default:
1274 printk(KERN_ERR
1275 "input_set_capability: unknown type %u (code %u)\n",
1276 type, code);
1277 dump_stack();
1278 return;
1279 }
1280
1281 __set_bit(type, dev->evbit);
1282}
1283EXPORT_SYMBOL(input_set_capability);
1284
Dmitry Torokhov80064792007-08-30 00:22:11 -04001285/**
1286 * input_register_device - register device with input core
1287 * @dev: device to be registered
1288 *
1289 * This function registers device with input core. The device must be
1290 * allocated with input_allocate_device() and all it's capabilities
1291 * set up before registering.
1292 * If function fails the device must be freed with input_free_device().
1293 * Once device has been successfully registered it can be unregistered
1294 * with input_unregister_device(); input_free_device() should not be
1295 * called in this case.
1296 */
Dmitry Torokhov5f945482005-11-02 22:51:46 -05001297int input_register_device(struct input_dev *dev)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001298{
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001299 static atomic_t input_no = ATOMIC_INIT(0);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001300 struct input_handler *handler;
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001301 const char *path;
1302 int error;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001303
Dmitry Torokhov80064792007-08-30 00:22:11 -04001304 __set_bit(EV_SYN, dev->evbit);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001305
1306 /*
1307 * If delay and period are pre-set by the driver, then autorepeating
1308 * is handled by the driver itself and we don't do it in input.c.
1309 */
1310
1311 init_timer(&dev->timer);
1312 if (!dev->rep[REP_DELAY] && !dev->rep[REP_PERIOD]) {
1313 dev->timer.data = (long) dev;
1314 dev->timer.function = input_repeat_key;
1315 dev->rep[REP_DELAY] = 250;
1316 dev->rep[REP_PERIOD] = 33;
1317 }
1318
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -04001319 if (!dev->getkeycode)
1320 dev->getkeycode = input_default_getkeycode;
1321
1322 if (!dev->setkeycode)
1323 dev->setkeycode = input_default_setkeycode;
1324
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001325 snprintf(dev->dev.bus_id, sizeof(dev->dev.bus_id),
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001326 "input%ld", (unsigned long) atomic_inc_return(&input_no) - 1);
1327
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001328 if (dev->cdev.dev)
1329 dev->dev.parent = dev->cdev.dev;
Dmitry Torokhov88a447a2007-04-12 01:34:47 -04001330
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001331 error = device_add(&dev->dev);
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001332 if (error)
1333 return error;
1334
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001335 path = kobject_get_path(&dev->dev.kobj, GFP_KERNEL);
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001336 printk(KERN_INFO "input: %s as %s\n",
1337 dev->name ? dev->name : "Unspecified device", path ? path : "N/A");
1338 kfree(path);
Greg Kroah-Hartman10204022005-10-27 22:25:43 -07001339
Dmitry Torokhov80064792007-08-30 00:22:11 -04001340 error = mutex_lock_interruptible(&input_mutex);
1341 if (error) {
1342 device_del(&dev->dev);
1343 return error;
1344 }
1345
1346 list_add_tail(&dev->node, &input_dev_list);
1347
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001348 list_for_each_entry(handler, &input_handler_list, node)
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001349 input_attach_handler(dev, handler);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001350
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001351 input_wakeup_procfs_readers();
Dmitry Torokhov5f945482005-11-02 22:51:46 -05001352
Dmitry Torokhov80064792007-08-30 00:22:11 -04001353 mutex_unlock(&input_mutex);
1354
Dmitry Torokhov5f945482005-11-02 22:51:46 -05001355 return 0;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001356}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001357EXPORT_SYMBOL(input_register_device);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001358
Dmitry Torokhov80064792007-08-30 00:22:11 -04001359/**
1360 * input_unregister_device - unregister previously registered device
1361 * @dev: device to be unregistered
1362 *
1363 * This function unregisters an input device. Once device is unregistered
1364 * the caller should not try to access it as it may get freed at any moment.
1365 */
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001366void input_unregister_device(struct input_dev *dev)
1367{
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001368 struct input_handle *handle, *next;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001369
Dmitry Torokhov80064792007-08-30 00:22:11 -04001370 input_disconnect_device(dev);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001371
Dmitry Torokhov80064792007-08-30 00:22:11 -04001372 mutex_lock(&input_mutex);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001373
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001374 list_for_each_entry_safe(handle, next, &dev->h_list, d_node)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001375 handle->handler->disconnect(handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001376 WARN_ON(!list_empty(&dev->h_list));
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001377
Dmitry Torokhov80064792007-08-30 00:22:11 -04001378 del_timer_sync(&dev->timer);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001379 list_del_init(&dev->node);
1380
1381 input_wakeup_procfs_readers();
Dmitry Torokhov80064792007-08-30 00:22:11 -04001382
1383 mutex_unlock(&input_mutex);
1384
1385 device_unregister(&dev->dev);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001386}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001387EXPORT_SYMBOL(input_unregister_device);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001388
Dmitry Torokhov80064792007-08-30 00:22:11 -04001389/**
1390 * input_register_handler - register a new input handler
1391 * @handler: handler to be registered
1392 *
1393 * This function registers a new input handler (interface) for input
1394 * devices in the system and attaches it to all input devices that
1395 * are compatible with the handler.
1396 */
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001397int input_register_handler(struct input_handler *handler)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001398{
1399 struct input_dev *dev;
Dmitry Torokhov80064792007-08-30 00:22:11 -04001400 int retval;
1401
1402 retval = mutex_lock_interruptible(&input_mutex);
1403 if (retval)
1404 return retval;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001405
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001406 INIT_LIST_HEAD(&handler->h_list);
1407
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001408 if (handler->fops != NULL) {
Dmitry Torokhov80064792007-08-30 00:22:11 -04001409 if (input_table[handler->minor >> 5]) {
1410 retval = -EBUSY;
1411 goto out;
1412 }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001413 input_table[handler->minor >> 5] = handler;
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001414 }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001415
1416 list_add_tail(&handler->node, &input_handler_list);
1417
1418 list_for_each_entry(dev, &input_dev_list, node)
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001419 input_attach_handler(dev, handler);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001420
1421 input_wakeup_procfs_readers();
Dmitry Torokhov80064792007-08-30 00:22:11 -04001422
1423 out:
1424 mutex_unlock(&input_mutex);
1425 return retval;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001426}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001427EXPORT_SYMBOL(input_register_handler);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001428
Dmitry Torokhov80064792007-08-30 00:22:11 -04001429/**
1430 * input_unregister_handler - unregisters an input handler
1431 * @handler: handler to be unregistered
1432 *
1433 * This function disconnects a handler from its input devices and
1434 * removes it from lists of known handlers.
1435 */
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001436void input_unregister_handler(struct input_handler *handler)
1437{
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001438 struct input_handle *handle, *next;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001439
Dmitry Torokhov80064792007-08-30 00:22:11 -04001440 mutex_lock(&input_mutex);
1441
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001442 list_for_each_entry_safe(handle, next, &handler->h_list, h_node)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001443 handler->disconnect(handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001444 WARN_ON(!list_empty(&handler->h_list));
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001445
1446 list_del_init(&handler->node);
1447
1448 if (handler->fops != NULL)
1449 input_table[handler->minor >> 5] = NULL;
1450
1451 input_wakeup_procfs_readers();
Dmitry Torokhov80064792007-08-30 00:22:11 -04001452
1453 mutex_unlock(&input_mutex);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001454}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001455EXPORT_SYMBOL(input_unregister_handler);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001456
Dmitry Torokhov80064792007-08-30 00:22:11 -04001457/**
1458 * input_register_handle - register a new input handle
1459 * @handle: handle to register
1460 *
1461 * This function puts a new input handle onto device's
1462 * and handler's lists so that events can flow through
1463 * it once it is opened using input_open_device().
1464 *
1465 * This function is supposed to be called from handler's
1466 * connect() method.
1467 */
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001468int input_register_handle(struct input_handle *handle)
1469{
1470 struct input_handler *handler = handle->handler;
Dmitry Torokhov80064792007-08-30 00:22:11 -04001471 struct input_dev *dev = handle->dev;
1472 int error;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001473
Dmitry Torokhov80064792007-08-30 00:22:11 -04001474 /*
1475 * We take dev->mutex here to prevent race with
1476 * input_release_device().
1477 */
1478 error = mutex_lock_interruptible(&dev->mutex);
1479 if (error)
1480 return error;
1481 list_add_tail_rcu(&handle->d_node, &dev->h_list);
1482 mutex_unlock(&dev->mutex);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -04001483 synchronize_rcu();
Dmitry Torokhov80064792007-08-30 00:22:11 -04001484
1485 /*
1486 * Since we are supposed to be called from ->connect()
1487 * which is mutually exclusive with ->disconnect()
1488 * we can't be racing with input_unregister_handle()
1489 * and so separate lock is not needed here.
1490 */
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001491 list_add_tail(&handle->h_node, &handler->h_list);
1492
1493 if (handler->start)
1494 handler->start(handle);
1495
1496 return 0;
1497}
1498EXPORT_SYMBOL(input_register_handle);
1499
Dmitry Torokhov80064792007-08-30 00:22:11 -04001500/**
1501 * input_unregister_handle - unregister an input handle
1502 * @handle: handle to unregister
1503 *
1504 * This function removes input handle from device's
1505 * and handler's lists.
1506 *
1507 * This function is supposed to be called from handler's
1508 * disconnect() method.
1509 */
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001510void input_unregister_handle(struct input_handle *handle)
1511{
Dmitry Torokhov80064792007-08-30 00:22:11 -04001512 struct input_dev *dev = handle->dev;
1513
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001514 list_del_init(&handle->h_node);
Dmitry Torokhov80064792007-08-30 00:22:11 -04001515
1516 /*
1517 * Take dev->mutex to prevent race with input_release_device().
1518 */
1519 mutex_lock(&dev->mutex);
1520 list_del_rcu(&handle->d_node);
1521 mutex_unlock(&dev->mutex);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -04001522 synchronize_rcu();
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001523}
1524EXPORT_SYMBOL(input_unregister_handle);
1525
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001526static int input_open_file(struct inode *inode, struct file *file)
1527{
1528 struct input_handler *handler = input_table[iminor(inode) >> 5];
Arjan van de Ven99ac48f2006-03-28 01:56:41 -08001529 const struct file_operations *old_fops, *new_fops = NULL;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001530 int err;
1531
1532 /* No load-on-demand here? */
1533 if (!handler || !(new_fops = fops_get(handler->fops)))
1534 return -ENODEV;
1535
1536 /*
1537 * That's _really_ odd. Usually NULL ->open means "nothing special",
1538 * not "no device". Oh, well...
1539 */
1540 if (!new_fops->open) {
1541 fops_put(new_fops);
1542 return -ENODEV;
1543 }
1544 old_fops = file->f_op;
1545 file->f_op = new_fops;
1546
1547 err = new_fops->open(inode, file);
1548
1549 if (err) {
1550 fops_put(file->f_op);
1551 file->f_op = fops_get(old_fops);
1552 }
1553 fops_put(old_fops);
1554 return err;
1555}
1556
Arjan van de Ven2b8693c2007-02-12 00:55:32 -08001557static const struct file_operations input_fops = {
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001558 .owner = THIS_MODULE,
1559 .open = input_open_file,
1560};
1561
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562static int __init input_init(void)
1563{
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001564 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -07001566 err = class_register(&input_class);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001567 if (err) {
1568 printk(KERN_ERR "input: unable to register input_dev class\n");
1569 return err;
1570 }
1571
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001572 err = input_proc_init();
1573 if (err)
Greg Kroah-Hartmanb0fdfeb2005-10-27 22:25:43 -07001574 goto fail1;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001575
1576 err = register_chrdev(INPUT_MAJOR, "input", &input_fops);
1577 if (err) {
1578 printk(KERN_ERR "input: unable to register char major %d", INPUT_MAJOR);
Greg Kroah-Hartmanb0fdfeb2005-10-27 22:25:43 -07001579 goto fail2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001581
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001582 return 0;
1583
Greg Kroah-Hartmanb0fdfeb2005-10-27 22:25:43 -07001584 fail2: input_proc_exit();
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -07001585 fail1: class_unregister(&input_class);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001586 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587}
1588
1589static void __exit input_exit(void)
1590{
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001591 input_proc_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 unregister_chrdev(INPUT_MAJOR, "input");
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -07001593 class_unregister(&input_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594}
1595
1596subsys_initcall(input_init);
1597module_exit(input_exit);