blob: 27006fc1830567f30c87bc16a323cd826bd0ab46 [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;
Richard Purdieed2fa4d2008-01-03 10:46:21 -0500238
239 case EV_PWR:
240 disposition = INPUT_PASS_TO_ALL;
241 break;
Dmitry Torokhov80064792007-08-30 00:22:11 -0400242 }
243
244 if (type != EV_SYN)
245 dev->sync = 0;
246
247 if ((disposition & INPUT_PASS_TO_DEVICE) && dev->event)
248 dev->event(dev, type, code, value);
249
250 if (disposition & INPUT_PASS_TO_HANDLERS)
251 input_pass_event(dev, type, code, value);
252}
253
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400254/**
255 * input_event() - report new input event
Dmitry Torokhov14471902006-11-02 23:26:55 -0500256 * @dev: device that generated the event
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400257 * @type: type of the event
258 * @code: event code
259 * @value: value of the event
260 *
Dmitry Torokhov80064792007-08-30 00:22:11 -0400261 * This function should be used by drivers implementing various input
262 * devices. See also input_inject_event().
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400263 */
Dmitry Torokhov80064792007-08-30 00:22:11 -0400264
265void input_event(struct input_dev *dev,
266 unsigned int type, unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400268 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Dmitry Torokhov80064792007-08-30 00:22:11 -0400270 if (is_event_supported(type, dev->evbit, EV_MAX)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Dmitry Torokhov80064792007-08-30 00:22:11 -0400272 spin_lock_irqsave(&dev->event_lock, flags);
273 add_input_randomness(type, code, value);
274 input_handle_event(dev, type, code, value);
275 spin_unlock_irqrestore(&dev->event_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400278EXPORT_SYMBOL(input_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400280/**
281 * input_inject_event() - send input event from input handler
282 * @handle: input handle to send event through
283 * @type: type of the event
284 * @code: event code
285 * @value: value of the event
286 *
Dmitry Torokhov80064792007-08-30 00:22:11 -0400287 * Similar to input_event() but will ignore event if device is
288 * "grabbed" and handle injecting event is not the one that owns
289 * the device.
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400290 */
Dmitry Torokhov80064792007-08-30 00:22:11 -0400291void input_inject_event(struct input_handle *handle,
292 unsigned int type, unsigned int code, int value)
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400293{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400294 struct input_dev *dev = handle->dev;
295 struct input_handle *grab;
296 unsigned long flags;
297
298 if (is_event_supported(type, dev->evbit, EV_MAX)) {
299 spin_lock_irqsave(&dev->event_lock, flags);
300
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400301 rcu_read_lock();
Dmitry Torokhov80064792007-08-30 00:22:11 -0400302 grab = rcu_dereference(dev->grab);
303 if (!grab || grab == handle)
304 input_handle_event(dev, type, code, value);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400305 rcu_read_unlock();
Dmitry Torokhov80064792007-08-30 00:22:11 -0400306
307 spin_unlock_irqrestore(&dev->event_lock, flags);
308 }
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400309}
310EXPORT_SYMBOL(input_inject_event);
311
Dmitry Torokhov80064792007-08-30 00:22:11 -0400312/**
313 * input_grab_device - grabs device for exclusive use
314 * @handle: input handle that wants to own the device
315 *
316 * When a device is grabbed by an input handle all events generated by
317 * the device are delivered only to this handle. Also events injected
318 * by other input handles are ignored while device is grabbed.
319 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320int input_grab_device(struct input_handle *handle)
321{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400322 struct input_dev *dev = handle->dev;
323 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Dmitry Torokhov80064792007-08-30 00:22:11 -0400325 retval = mutex_lock_interruptible(&dev->mutex);
326 if (retval)
327 return retval;
328
329 if (dev->grab) {
330 retval = -EBUSY;
331 goto out;
332 }
333
334 rcu_assign_pointer(dev->grab, handle);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400335 synchronize_rcu();
Dmitry Torokhov80064792007-08-30 00:22:11 -0400336
337 out:
338 mutex_unlock(&dev->mutex);
339 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400341EXPORT_SYMBOL(input_grab_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Dmitry Torokhov80064792007-08-30 00:22:11 -0400343static void __input_release_device(struct input_handle *handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
Andrew Mortona2b2ed22006-07-15 01:17:38 -0400345 struct input_dev *dev = handle->dev;
Dmitry Torokhovc7e8dc62006-07-06 00:21:03 -0400346
Andrew Mortona2b2ed22006-07-15 01:17:38 -0400347 if (dev->grab == handle) {
Dmitry Torokhov80064792007-08-30 00:22:11 -0400348 rcu_assign_pointer(dev->grab, NULL);
349 /* Make sure input_pass_event() notices that grab is gone */
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400350 synchronize_rcu();
Andrew Mortona2b2ed22006-07-15 01:17:38 -0400351
352 list_for_each_entry(handle, &dev->h_list, d_node)
Dmitry Torokhov80064792007-08-30 00:22:11 -0400353 if (handle->open && handle->handler->start)
Dmitry Torokhovc7e8dc62006-07-06 00:21:03 -0400354 handle->handler->start(handle);
355 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356}
Dmitry Torokhov80064792007-08-30 00:22:11 -0400357
358/**
359 * input_release_device - release previously grabbed device
360 * @handle: input handle that owns the device
361 *
362 * Releases previously grabbed device so that other input handles can
363 * start receiving input events. Upon release all handlers attached
364 * to the device have their start() method called so they have a change
365 * to synchronize device state with the rest of the system.
366 */
367void input_release_device(struct input_handle *handle)
368{
369 struct input_dev *dev = handle->dev;
370
371 mutex_lock(&dev->mutex);
372 __input_release_device(handle);
373 mutex_unlock(&dev->mutex);
374}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400375EXPORT_SYMBOL(input_release_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Dmitry Torokhov80064792007-08-30 00:22:11 -0400377/**
378 * input_open_device - open input device
379 * @handle: handle through which device is being accessed
380 *
381 * This function should be called by input handlers when they
382 * want to start receive events from given input device.
383 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384int input_open_device(struct input_handle *handle)
385{
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500386 struct input_dev *dev = handle->dev;
Dmitry Torokhov80064792007-08-30 00:22:11 -0400387 int retval;
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500388
Dmitry Torokhov80064792007-08-30 00:22:11 -0400389 retval = mutex_lock_interruptible(&dev->mutex);
390 if (retval)
391 return retval;
392
393 if (dev->going_away) {
394 retval = -ENODEV;
395 goto out;
396 }
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 handle->open++;
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500399
400 if (!dev->users++ && dev->open)
Dmitry Torokhov80064792007-08-30 00:22:11 -0400401 retval = dev->open(dev);
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500402
Dmitry Torokhov80064792007-08-30 00:22:11 -0400403 if (retval) {
404 dev->users--;
405 if (!--handle->open) {
406 /*
407 * Make sure we are not delivering any more events
408 * through this handle
409 */
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400410 synchronize_rcu();
Dmitry Torokhov80064792007-08-30 00:22:11 -0400411 }
412 }
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500413
Dmitry Torokhov80064792007-08-30 00:22:11 -0400414 out:
Jes Sorensene676c232006-02-19 00:21:46 -0500415 mutex_unlock(&dev->mutex);
Dmitry Torokhov80064792007-08-30 00:22:11 -0400416 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400418EXPORT_SYMBOL(input_open_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Dmitry Torokhov80064792007-08-30 00:22:11 -0400420int input_flush_device(struct input_handle *handle, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400422 struct input_dev *dev = handle->dev;
423 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Dmitry Torokhov80064792007-08-30 00:22:11 -0400425 retval = mutex_lock_interruptible(&dev->mutex);
426 if (retval)
427 return retval;
428
429 if (dev->flush)
430 retval = dev->flush(dev, file);
431
432 mutex_unlock(&dev->mutex);
433 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400435EXPORT_SYMBOL(input_flush_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
Dmitry Torokhov80064792007-08-30 00:22:11 -0400437/**
438 * input_close_device - close input device
439 * @handle: handle through which device is being accessed
440 *
441 * This function should be called by input handlers when they
442 * want to stop receive events from given input device.
443 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444void input_close_device(struct input_handle *handle)
445{
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500446 struct input_dev *dev = handle->dev;
447
Jes Sorensene676c232006-02-19 00:21:46 -0500448 mutex_lock(&dev->mutex);
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500449
Dmitry Torokhov80064792007-08-30 00:22:11 -0400450 __input_release_device(handle);
451
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500452 if (!--dev->users && dev->close)
453 dev->close(dev);
Dmitry Torokhov80064792007-08-30 00:22:11 -0400454
455 if (!--handle->open) {
456 /*
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400457 * synchronize_rcu() makes sure that input_pass_event()
Dmitry Torokhov80064792007-08-30 00:22:11 -0400458 * completed and that no more input events are delivered
459 * through this handle
460 */
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400461 synchronize_rcu();
Dmitry Torokhov80064792007-08-30 00:22:11 -0400462 }
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500463
Jes Sorensene676c232006-02-19 00:21:46 -0500464 mutex_unlock(&dev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400466EXPORT_SYMBOL(input_close_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Dmitry Torokhov80064792007-08-30 00:22:11 -0400468/*
469 * Prepare device for unregistering
470 */
471static void input_disconnect_device(struct input_dev *dev)
472{
473 struct input_handle *handle;
474 int code;
475
476 /*
477 * Mark device as going away. Note that we take dev->mutex here
478 * not to protect access to dev->going_away but rather to ensure
479 * that there are no threads in the middle of input_open_device()
480 */
481 mutex_lock(&dev->mutex);
482 dev->going_away = 1;
483 mutex_unlock(&dev->mutex);
484
485 spin_lock_irq(&dev->event_lock);
486
487 /*
488 * Simulate keyup events for all pressed keys so that handlers
489 * are not left with "stuck" keys. The driver may continue
490 * generate events even after we done here but they will not
491 * reach any handlers.
492 */
493 if (is_event_supported(EV_KEY, dev->evbit, EV_MAX)) {
494 for (code = 0; code <= KEY_MAX; code++) {
495 if (is_event_supported(code, dev->keybit, KEY_MAX) &&
Dmitry Torokhovf4f37c82007-11-04 00:41:12 -0400496 __test_and_clear_bit(code, dev->key)) {
Dmitry Torokhov80064792007-08-30 00:22:11 -0400497 input_pass_event(dev, EV_KEY, code, 0);
498 }
499 }
500 input_pass_event(dev, EV_SYN, SYN_REPORT, 1);
501 }
502
503 list_for_each_entry(handle, &dev->h_list, d_node)
504 handle->open = 0;
505
506 spin_unlock_irq(&dev->event_lock);
507}
508
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400509static int input_fetch_keycode(struct input_dev *dev, int scancode)
510{
511 switch (dev->keycodesize) {
512 case 1:
513 return ((u8 *)dev->keycode)[scancode];
514
515 case 2:
516 return ((u16 *)dev->keycode)[scancode];
517
518 default:
519 return ((u32 *)dev->keycode)[scancode];
520 }
521}
522
523static int input_default_getkeycode(struct input_dev *dev,
524 int scancode, int *keycode)
525{
526 if (!dev->keycodesize)
527 return -EINVAL;
528
Dmitry Torokhovf4f37c82007-11-04 00:41:12 -0400529 if (scancode >= dev->keycodemax)
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400530 return -EINVAL;
531
532 *keycode = input_fetch_keycode(dev, scancode);
533
534 return 0;
535}
536
537static int input_default_setkeycode(struct input_dev *dev,
538 int scancode, int keycode)
539{
540 int old_keycode;
541 int i;
542
Dmitry Torokhovf4f37c82007-11-04 00:41:12 -0400543 if (scancode >= dev->keycodemax)
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400544 return -EINVAL;
545
546 if (!dev->keycodesize)
547 return -EINVAL;
548
549 if (dev->keycodesize < sizeof(keycode) && (keycode >> (dev->keycodesize * 8)))
550 return -EINVAL;
551
552 switch (dev->keycodesize) {
553 case 1: {
554 u8 *k = (u8 *)dev->keycode;
555 old_keycode = k[scancode];
556 k[scancode] = keycode;
557 break;
558 }
559 case 2: {
560 u16 *k = (u16 *)dev->keycode;
561 old_keycode = k[scancode];
562 k[scancode] = keycode;
563 break;
564 }
565 default: {
566 u32 *k = (u32 *)dev->keycode;
567 old_keycode = k[scancode];
568 k[scancode] = keycode;
569 break;
570 }
571 }
572
573 clear_bit(old_keycode, dev->keybit);
574 set_bit(keycode, dev->keybit);
575
576 for (i = 0; i < dev->keycodemax; i++) {
577 if (input_fetch_keycode(dev, i) == old_keycode) {
578 set_bit(old_keycode, dev->keybit);
579 break; /* Setting the bit twice is useless, so break */
580 }
581 }
582
583 return 0;
584}
585
Dmitry Torokhovf4f37c82007-11-04 00:41:12 -0400586/**
587 * input_get_keycode - retrieve keycode currently mapped to a given scancode
588 * @dev: input device which keymap is being queried
589 * @scancode: scancode (or its equivalent for device in question) for which
590 * keycode is needed
591 * @keycode: result
592 *
593 * This function should be called by anyone interested in retrieving current
594 * keymap. Presently keyboard and evdev handlers use it.
595 */
596int input_get_keycode(struct input_dev *dev, int scancode, int *keycode)
597{
598 if (scancode < 0)
599 return -EINVAL;
600
601 return dev->getkeycode(dev, scancode, keycode);
602}
603EXPORT_SYMBOL(input_get_keycode);
604
605/**
606 * input_get_keycode - assign new keycode to a given scancode
607 * @dev: input device which keymap is being updated
608 * @scancode: scancode (or its equivalent for device in question)
609 * @keycode: new keycode to be assigned to the scancode
610 *
611 * This function should be called by anyone needing to update current
612 * keymap. Presently keyboard and evdev handlers use it.
613 */
614int input_set_keycode(struct input_dev *dev, int scancode, int keycode)
615{
616 unsigned long flags;
617 int old_keycode;
618 int retval;
619
620 if (scancode < 0)
621 return -EINVAL;
622
623 if (keycode < 0 || keycode > KEY_MAX)
624 return -EINVAL;
625
626 spin_lock_irqsave(&dev->event_lock, flags);
627
628 retval = dev->getkeycode(dev, scancode, &old_keycode);
629 if (retval)
630 goto out;
631
632 retval = dev->setkeycode(dev, scancode, keycode);
633 if (retval)
634 goto out;
635
636 /*
637 * Simulate keyup event if keycode is not present
638 * in the keymap anymore
639 */
640 if (test_bit(EV_KEY, dev->evbit) &&
641 !is_event_supported(old_keycode, dev->keybit, KEY_MAX) &&
642 __test_and_clear_bit(old_keycode, dev->key)) {
643
644 input_pass_event(dev, EV_KEY, old_keycode, 0);
645 if (dev->sync)
646 input_pass_event(dev, EV_SYN, SYN_REPORT, 1);
647 }
648
649 out:
650 spin_unlock_irqrestore(&dev->event_lock, flags);
651
652 return retval;
653}
654EXPORT_SYMBOL(input_set_keycode);
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400655
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656#define MATCH_BIT(bit, max) \
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700657 for (i = 0; i < BITS_TO_LONGS(max); i++) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 if ((id->bit[i] & dev->bit[i]) != id->bit[i]) \
659 break; \
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700660 if (i != BITS_TO_LONGS(max)) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 continue;
662
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400663static const struct input_device_id *input_match_device(const struct input_device_id *id,
664 struct input_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
666 int i;
667
668 for (; id->flags || id->driver_info; id++) {
669
670 if (id->flags & INPUT_DEVICE_ID_MATCH_BUS)
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400671 if (id->bustype != dev->id.bustype)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 continue;
673
674 if (id->flags & INPUT_DEVICE_ID_MATCH_VENDOR)
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400675 if (id->vendor != dev->id.vendor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 continue;
677
678 if (id->flags & INPUT_DEVICE_ID_MATCH_PRODUCT)
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400679 if (id->product != dev->id.product)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 continue;
681
682 if (id->flags & INPUT_DEVICE_ID_MATCH_VERSION)
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400683 if (id->version != dev->id.version)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 continue;
685
686 MATCH_BIT(evbit, EV_MAX);
687 MATCH_BIT(keybit, KEY_MAX);
688 MATCH_BIT(relbit, REL_MAX);
689 MATCH_BIT(absbit, ABS_MAX);
690 MATCH_BIT(mscbit, MSC_MAX);
691 MATCH_BIT(ledbit, LED_MAX);
692 MATCH_BIT(sndbit, SND_MAX);
693 MATCH_BIT(ffbit, FF_MAX);
Dmitry Torokhovff13f982005-09-24 02:02:29 -0500694 MATCH_BIT(swbit, SW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
696 return id;
697 }
698
699 return NULL;
700}
701
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400702static int input_attach_handler(struct input_dev *dev, struct input_handler *handler)
703{
704 const struct input_device_id *id;
705 int error;
706
707 if (handler->blacklist && input_match_device(handler->blacklist, dev))
708 return -ENODEV;
709
710 id = input_match_device(handler->id_table, dev);
711 if (!id)
712 return -ENODEV;
713
714 error = handler->connect(handler, dev, id);
715 if (error && error != -ENODEV)
716 printk(KERN_ERR
717 "input: failed to attach handler %s to device %s, "
718 "error: %d\n",
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400719 handler->name, kobject_name(&dev->dev.kobj), error);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400720
721 return error;
722}
723
724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725#ifdef CONFIG_PROC_FS
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500726
727static struct proc_dir_entry *proc_bus_input_dir;
728static DECLARE_WAIT_QUEUE_HEAD(input_devices_poll_wait);
729static int input_devices_state;
730
731static inline void input_wakeup_procfs_readers(void)
732{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 input_devices_state++;
734 wake_up(&input_devices_poll_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735}
736
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500737static unsigned int input_proc_devices_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500739 int state = input_devices_state;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400740
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500741 poll_wait(file, &input_devices_poll_wait, wait);
742 if (state != input_devices_state)
743 return POLLIN | POLLRDNORM;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400744
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500745 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746}
747
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500748static void *input_devices_seq_start(struct seq_file *seq, loff_t *pos)
749{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400750 if (mutex_lock_interruptible(&input_mutex))
751 return NULL;
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500752
Pavel Emelianovad5d9722007-07-18 00:38:32 -0400753 return seq_list_start(&input_dev_list, *pos);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500754}
755
756static void *input_devices_seq_next(struct seq_file *seq, void *v, loff_t *pos)
757{
Pavel Emelianovad5d9722007-07-18 00:38:32 -0400758 return seq_list_next(v, &input_dev_list, pos);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500759}
760
761static void input_devices_seq_stop(struct seq_file *seq, void *v)
762{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400763 mutex_unlock(&input_mutex);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500764}
765
766static void input_seq_print_bitmap(struct seq_file *seq, const char *name,
767 unsigned long *bitmap, int max)
768{
769 int i;
770
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700771 for (i = BITS_TO_LONGS(max) - 1; i > 0; i--)
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500772 if (bitmap[i])
773 break;
774
775 seq_printf(seq, "B: %s=", name);
776 for (; i >= 0; i--)
777 seq_printf(seq, "%lx%s", bitmap[i], i > 0 ? " " : "");
778 seq_putc(seq, '\n');
779}
780
781static int input_devices_seq_show(struct seq_file *seq, void *v)
782{
783 struct input_dev *dev = container_of(v, struct input_dev, node);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400784 const char *path = kobject_get_path(&dev->dev.kobj, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 struct input_handle *handle;
786
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500787 seq_printf(seq, "I: Bus=%04x Vendor=%04x Product=%04x Version=%04x\n",
788 dev->id.bustype, dev->id.vendor, dev->id.product, dev->id.version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500790 seq_printf(seq, "N: Name=\"%s\"\n", dev->name ? dev->name : "");
791 seq_printf(seq, "P: Phys=%s\n", dev->phys ? dev->phys : "");
792 seq_printf(seq, "S: Sysfs=%s\n", path ? path : "");
Dmitry Torokhov15e03ae2007-03-07 23:20:17 -0500793 seq_printf(seq, "U: Uniq=%s\n", dev->uniq ? dev->uniq : "");
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500794 seq_printf(seq, "H: Handlers=");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500796 list_for_each_entry(handle, &dev->h_list, d_node)
797 seq_printf(seq, "%s ", handle->name);
798 seq_putc(seq, '\n');
Dmitry Torokhov051b2fe2005-09-15 02:01:54 -0500799
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500800 input_seq_print_bitmap(seq, "EV", dev->evbit, EV_MAX);
801 if (test_bit(EV_KEY, dev->evbit))
802 input_seq_print_bitmap(seq, "KEY", dev->keybit, KEY_MAX);
803 if (test_bit(EV_REL, dev->evbit))
804 input_seq_print_bitmap(seq, "REL", dev->relbit, REL_MAX);
805 if (test_bit(EV_ABS, dev->evbit))
806 input_seq_print_bitmap(seq, "ABS", dev->absbit, ABS_MAX);
807 if (test_bit(EV_MSC, dev->evbit))
808 input_seq_print_bitmap(seq, "MSC", dev->mscbit, MSC_MAX);
809 if (test_bit(EV_LED, dev->evbit))
810 input_seq_print_bitmap(seq, "LED", dev->ledbit, LED_MAX);
811 if (test_bit(EV_SND, dev->evbit))
812 input_seq_print_bitmap(seq, "SND", dev->sndbit, SND_MAX);
813 if (test_bit(EV_FF, dev->evbit))
814 input_seq_print_bitmap(seq, "FF", dev->ffbit, FF_MAX);
815 if (test_bit(EV_SW, dev->evbit))
816 input_seq_print_bitmap(seq, "SW", dev->swbit, SW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500818 seq_putc(seq, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500820 kfree(path);
821 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822}
823
Jan Engelhardtcec69c32008-01-31 00:43:32 -0500824static const struct seq_operations input_devices_seq_ops = {
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500825 .start = input_devices_seq_start,
826 .next = input_devices_seq_next,
827 .stop = input_devices_seq_stop,
828 .show = input_devices_seq_show,
829};
830
831static int input_proc_devices_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832{
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500833 return seq_open(file, &input_devices_seq_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834}
835
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800836static const struct file_operations input_devices_fileops = {
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500837 .owner = THIS_MODULE,
838 .open = input_proc_devices_open,
839 .poll = input_proc_devices_poll,
840 .read = seq_read,
841 .llseek = seq_lseek,
842 .release = seq_release,
843};
844
845static void *input_handlers_seq_start(struct seq_file *seq, loff_t *pos)
846{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400847 if (mutex_lock_interruptible(&input_mutex))
848 return NULL;
849
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500850 seq->private = (void *)(unsigned long)*pos;
Pavel Emelianovad5d9722007-07-18 00:38:32 -0400851 return seq_list_start(&input_handler_list, *pos);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500852}
853
854static void *input_handlers_seq_next(struct seq_file *seq, void *v, loff_t *pos)
855{
856 seq->private = (void *)(unsigned long)(*pos + 1);
Pavel Emelianovad5d9722007-07-18 00:38:32 -0400857 return seq_list_next(v, &input_handler_list, pos);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500858}
859
860static void input_handlers_seq_stop(struct seq_file *seq, void *v)
861{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400862 mutex_unlock(&input_mutex);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500863}
864
865static int input_handlers_seq_show(struct seq_file *seq, void *v)
866{
867 struct input_handler *handler = container_of(v, struct input_handler, node);
868
869 seq_printf(seq, "N: Number=%ld Name=%s",
870 (unsigned long)seq->private, handler->name);
871 if (handler->fops)
872 seq_printf(seq, " Minor=%d", handler->minor);
873 seq_putc(seq, '\n');
874
875 return 0;
876}
Jan Engelhardtcec69c32008-01-31 00:43:32 -0500877static const struct seq_operations input_handlers_seq_ops = {
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500878 .start = input_handlers_seq_start,
879 .next = input_handlers_seq_next,
880 .stop = input_handlers_seq_stop,
881 .show = input_handlers_seq_show,
882};
883
884static int input_proc_handlers_open(struct inode *inode, struct file *file)
885{
886 return seq_open(file, &input_handlers_seq_ops);
887}
888
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800889static const struct file_operations input_handlers_fileops = {
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500890 .owner = THIS_MODULE,
891 .open = input_proc_handlers_open,
892 .read = seq_read,
893 .llseek = seq_lseek,
894 .release = seq_release,
895};
Luke Kosewskie334016fc2005-06-01 02:39:28 -0500896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897static int __init input_proc_init(void)
898{
899 struct proc_dir_entry *entry;
900
Alexey Dobriyan9c370662008-04-29 01:01:41 -0700901 proc_bus_input_dir = proc_mkdir("bus/input", NULL);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500902 if (!proc_bus_input_dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 return -ENOMEM;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 proc_bus_input_dir->owner = THIS_MODULE;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500906
Denis V. Lunevc7705f32008-04-29 01:02:35 -0700907 entry = proc_create("devices", 0, proc_bus_input_dir,
908 &input_devices_fileops);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500909 if (!entry)
910 goto fail1;
911
Denis V. Lunevc7705f32008-04-29 01:02:35 -0700912 entry = proc_create("handlers", 0, proc_bus_input_dir,
913 &input_handlers_fileops);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500914 if (!entry)
915 goto fail2;
916
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 return 0;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500918
919 fail2: remove_proc_entry("devices", proc_bus_input_dir);
Alexey Dobriyan9c370662008-04-29 01:01:41 -0700920 fail1: remove_proc_entry("bus/input", NULL);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500921 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922}
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500923
Andrew Mortonbeffbdc2005-07-01 23:54:30 -0500924static void input_proc_exit(void)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500925{
926 remove_proc_entry("devices", proc_bus_input_dir);
927 remove_proc_entry("handlers", proc_bus_input_dir);
Alexey Dobriyan9c370662008-04-29 01:01:41 -0700928 remove_proc_entry("bus/input", NULL);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500929}
930
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931#else /* !CONFIG_PROC_FS */
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500932static inline void input_wakeup_procfs_readers(void) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933static inline int input_proc_init(void) { return 0; }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500934static inline void input_proc_exit(void) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935#endif
936
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400937#define INPUT_DEV_STRING_ATTR_SHOW(name) \
938static ssize_t input_dev_show_##name(struct device *dev, \
939 struct device_attribute *attr, \
940 char *buf) \
941{ \
942 struct input_dev *input_dev = to_input_dev(dev); \
943 \
944 return scnprintf(buf, PAGE_SIZE, "%s\n", \
945 input_dev->name ? input_dev->name : ""); \
946} \
947static DEVICE_ATTR(name, S_IRUGO, input_dev_show_##name, NULL)
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -0500948
949INPUT_DEV_STRING_ATTR_SHOW(name);
950INPUT_DEV_STRING_ATTR_SHOW(phys);
951INPUT_DEV_STRING_ATTR_SHOW(uniq);
952
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500953static int input_print_modalias_bits(char *buf, int size,
954 char name, unsigned long *bm,
955 unsigned int min_bit, unsigned int max_bit)
Rusty Russell1d8f4302005-12-07 21:40:34 +0100956{
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500957 int len = 0, i;
Rusty Russell1d8f4302005-12-07 21:40:34 +0100958
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500959 len += snprintf(buf, max(size, 0), "%c", name);
960 for (i = min_bit; i < max_bit; i++)
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700961 if (bm[BIT_WORD(i)] & BIT_MASK(i))
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500962 len += snprintf(buf + len, max(size - len, 0), "%X,", i);
Kay Sieversbd37e5a2006-01-05 13:19:55 +0100963 return len;
964}
965
Dmitry Torokhov2db66872006-04-02 00:09:26 -0500966static int input_print_modalias(char *buf, int size, struct input_dev *id,
967 int add_cr)
Kay Sieversbd37e5a2006-01-05 13:19:55 +0100968{
969 int len;
970
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500971 len = snprintf(buf, max(size, 0),
972 "input:b%04Xv%04Xp%04Xe%04X-",
973 id->id.bustype, id->id.vendor,
974 id->id.product, id->id.version);
Kay Sieversbd37e5a2006-01-05 13:19:55 +0100975
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500976 len += input_print_modalias_bits(buf + len, size - len,
977 'e', id->evbit, 0, EV_MAX);
978 len += input_print_modalias_bits(buf + len, size - len,
979 'k', id->keybit, KEY_MIN_INTERESTING, KEY_MAX);
980 len += input_print_modalias_bits(buf + len, size - len,
981 'r', id->relbit, 0, REL_MAX);
982 len += input_print_modalias_bits(buf + len, size - len,
983 'a', id->absbit, 0, ABS_MAX);
984 len += input_print_modalias_bits(buf + len, size - len,
985 'm', id->mscbit, 0, MSC_MAX);
986 len += input_print_modalias_bits(buf + len, size - len,
987 'l', id->ledbit, 0, LED_MAX);
988 len += input_print_modalias_bits(buf + len, size - len,
989 's', id->sndbit, 0, SND_MAX);
990 len += input_print_modalias_bits(buf + len, size - len,
991 'f', id->ffbit, 0, FF_MAX);
992 len += input_print_modalias_bits(buf + len, size - len,
993 'w', id->swbit, 0, SW_MAX);
Dmitry Torokhov2db66872006-04-02 00:09:26 -0500994
995 if (add_cr)
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500996 len += snprintf(buf + len, max(size - len, 0), "\n");
Dmitry Torokhov2db66872006-04-02 00:09:26 -0500997
Rusty Russell1d8f4302005-12-07 21:40:34 +0100998 return len;
999}
1000
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001001static ssize_t input_dev_show_modalias(struct device *dev,
1002 struct device_attribute *attr,
1003 char *buf)
Rusty Russell1d8f4302005-12-07 21:40:34 +01001004{
1005 struct input_dev *id = to_input_dev(dev);
Kay Sieversbd37e5a2006-01-05 13:19:55 +01001006 ssize_t len;
Rusty Russell1d8f4302005-12-07 21:40:34 +01001007
Dmitry Torokhov2db66872006-04-02 00:09:26 -05001008 len = input_print_modalias(buf, PAGE_SIZE, id, 1);
1009
Richard Purdie8a3cf452006-06-26 01:48:21 -04001010 return min_t(int, len, PAGE_SIZE);
Rusty Russell1d8f4302005-12-07 21:40:34 +01001011}
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001012static DEVICE_ATTR(modalias, S_IRUGO, input_dev_show_modalias, NULL);
Rusty Russell1d8f4302005-12-07 21:40:34 +01001013
Greg Kroah-Hartman629b77a2005-10-27 22:25:43 -07001014static struct attribute *input_dev_attrs[] = {
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001015 &dev_attr_name.attr,
1016 &dev_attr_phys.attr,
1017 &dev_attr_uniq.attr,
1018 &dev_attr_modalias.attr,
Greg Kroah-Hartman629b77a2005-10-27 22:25:43 -07001019 NULL
1020};
1021
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001022static struct attribute_group input_dev_attr_group = {
Greg Kroah-Hartman629b77a2005-10-27 22:25:43 -07001023 .attrs = input_dev_attrs,
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -05001024};
1025
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001026#define INPUT_DEV_ID_ATTR(name) \
1027static ssize_t input_dev_show_id_##name(struct device *dev, \
1028 struct device_attribute *attr, \
1029 char *buf) \
1030{ \
1031 struct input_dev *input_dev = to_input_dev(dev); \
1032 return scnprintf(buf, PAGE_SIZE, "%04x\n", input_dev->id.name); \
1033} \
1034static DEVICE_ATTR(name, S_IRUGO, input_dev_show_id_##name, NULL)
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -05001035
1036INPUT_DEV_ID_ATTR(bustype);
1037INPUT_DEV_ID_ATTR(vendor);
1038INPUT_DEV_ID_ATTR(product);
1039INPUT_DEV_ID_ATTR(version);
1040
1041static struct attribute *input_dev_id_attrs[] = {
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001042 &dev_attr_bustype.attr,
1043 &dev_attr_vendor.attr,
1044 &dev_attr_product.attr,
1045 &dev_attr_version.attr,
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -05001046 NULL
1047};
1048
1049static struct attribute_group input_dev_id_attr_group = {
1050 .name = "id",
1051 .attrs = input_dev_id_attrs,
1052};
1053
Dmitry Torokhov969b21c2006-04-02 00:09:34 -05001054static int input_print_bitmap(char *buf, int buf_size, unsigned long *bitmap,
1055 int max, int add_cr)
1056{
1057 int i;
1058 int len = 0;
1059
Jiri Slaby7b19ada2007-10-18 23:40:32 -07001060 for (i = BITS_TO_LONGS(max) - 1; i > 0; i--)
Dmitry Torokhov969b21c2006-04-02 00:09:34 -05001061 if (bitmap[i])
1062 break;
1063
1064 for (; i >= 0; i--)
1065 len += snprintf(buf + len, max(buf_size - len, 0),
1066 "%lx%s", bitmap[i], i > 0 ? " " : "");
1067
1068 if (add_cr)
1069 len += snprintf(buf + len, max(buf_size - len, 0), "\n");
1070
1071 return len;
1072}
1073
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001074#define INPUT_DEV_CAP_ATTR(ev, bm) \
1075static ssize_t input_dev_show_cap_##bm(struct device *dev, \
1076 struct device_attribute *attr, \
1077 char *buf) \
1078{ \
1079 struct input_dev *input_dev = to_input_dev(dev); \
1080 int len = input_print_bitmap(buf, PAGE_SIZE, \
1081 input_dev->bm##bit, ev##_MAX, 1); \
1082 return min_t(int, len, PAGE_SIZE); \
1083} \
1084static DEVICE_ATTR(bm, S_IRUGO, input_dev_show_cap_##bm, NULL)
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -05001085
1086INPUT_DEV_CAP_ATTR(EV, ev);
1087INPUT_DEV_CAP_ATTR(KEY, key);
1088INPUT_DEV_CAP_ATTR(REL, rel);
1089INPUT_DEV_CAP_ATTR(ABS, abs);
1090INPUT_DEV_CAP_ATTR(MSC, msc);
1091INPUT_DEV_CAP_ATTR(LED, led);
1092INPUT_DEV_CAP_ATTR(SND, snd);
1093INPUT_DEV_CAP_ATTR(FF, ff);
1094INPUT_DEV_CAP_ATTR(SW, sw);
1095
1096static struct attribute *input_dev_caps_attrs[] = {
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001097 &dev_attr_ev.attr,
1098 &dev_attr_key.attr,
1099 &dev_attr_rel.attr,
1100 &dev_attr_abs.attr,
1101 &dev_attr_msc.attr,
1102 &dev_attr_led.attr,
1103 &dev_attr_snd.attr,
1104 &dev_attr_ff.attr,
1105 &dev_attr_sw.attr,
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -05001106 NULL
1107};
1108
1109static struct attribute_group input_dev_caps_attr_group = {
1110 .name = "capabilities",
1111 .attrs = input_dev_caps_attrs,
1112};
1113
Dmitry Torokhovcb9def42007-03-07 23:20:26 -05001114static struct attribute_group *input_dev_attr_groups[] = {
1115 &input_dev_attr_group,
1116 &input_dev_id_attr_group,
1117 &input_dev_caps_attr_group,
1118 NULL
1119};
1120
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001121static void input_dev_release(struct device *device)
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001122{
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001123 struct input_dev *dev = to_input_dev(device);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001124
Anssi Hannula509ca1a2006-07-19 01:40:22 -04001125 input_ff_destroy(dev);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001126 kfree(dev);
Anssi Hannula509ca1a2006-07-19 01:40:22 -04001127
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001128 module_put(THIS_MODULE);
1129}
1130
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001131/*
Kay Sievers312c0042005-11-16 09:00:00 +01001132 * Input uevent interface - loading event handlers based on
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001133 * device bitfields.
1134 */
Kay Sievers7eff2e72007-08-14 15:15:12 +02001135static int input_add_uevent_bm_var(struct kobj_uevent_env *env,
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001136 const char *name, unsigned long *bitmap, int max)
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001137{
Kay Sievers7eff2e72007-08-14 15:15:12 +02001138 int len;
1139
1140 if (add_uevent_var(env, "%s=", name))
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001141 return -ENOMEM;
1142
Kay Sievers7eff2e72007-08-14 15:15:12 +02001143 len = input_print_bitmap(&env->buf[env->buflen - 1],
1144 sizeof(env->buf) - env->buflen,
1145 bitmap, max, 0);
1146 if (len >= (sizeof(env->buf) - env->buflen))
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001147 return -ENOMEM;
1148
Kay Sievers7eff2e72007-08-14 15:15:12 +02001149 env->buflen += len;
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001150 return 0;
1151}
1152
Kay Sievers7eff2e72007-08-14 15:15:12 +02001153static int input_add_uevent_modalias_var(struct kobj_uevent_env *env,
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001154 struct input_dev *dev)
1155{
Kay Sievers7eff2e72007-08-14 15:15:12 +02001156 int len;
1157
1158 if (add_uevent_var(env, "MODALIAS="))
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001159 return -ENOMEM;
1160
Kay Sievers7eff2e72007-08-14 15:15:12 +02001161 len = input_print_modalias(&env->buf[env->buflen - 1],
1162 sizeof(env->buf) - env->buflen,
1163 dev, 0);
1164 if (len >= (sizeof(env->buf) - env->buflen))
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001165 return -ENOMEM;
1166
Kay Sievers7eff2e72007-08-14 15:15:12 +02001167 env->buflen += len;
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001168 return 0;
1169}
1170
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001171#define INPUT_ADD_HOTPLUG_VAR(fmt, val...) \
1172 do { \
Kay Sievers7eff2e72007-08-14 15:15:12 +02001173 int err = add_uevent_var(env, fmt, val); \
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001174 if (err) \
1175 return err; \
1176 } while (0)
1177
1178#define INPUT_ADD_HOTPLUG_BM_VAR(name, bm, max) \
1179 do { \
Kay Sievers7eff2e72007-08-14 15:15:12 +02001180 int err = input_add_uevent_bm_var(env, name, bm, max); \
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001181 if (err) \
1182 return err; \
1183 } while (0)
1184
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001185#define INPUT_ADD_HOTPLUG_MODALIAS_VAR(dev) \
1186 do { \
Kay Sievers7eff2e72007-08-14 15:15:12 +02001187 int err = input_add_uevent_modalias_var(env, dev); \
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001188 if (err) \
1189 return err; \
1190 } while (0)
1191
Kay Sievers7eff2e72007-08-14 15:15:12 +02001192static int input_dev_uevent(struct device *device, struct kobj_uevent_env *env)
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001193{
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001194 struct input_dev *dev = to_input_dev(device);
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001195
1196 INPUT_ADD_HOTPLUG_VAR("PRODUCT=%x/%x/%x/%x",
1197 dev->id.bustype, dev->id.vendor,
1198 dev->id.product, dev->id.version);
1199 if (dev->name)
1200 INPUT_ADD_HOTPLUG_VAR("NAME=\"%s\"", dev->name);
1201 if (dev->phys)
1202 INPUT_ADD_HOTPLUG_VAR("PHYS=\"%s\"", dev->phys);
Dmitry Torokhov08de1f02005-11-08 21:34:29 -08001203 if (dev->uniq)
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001204 INPUT_ADD_HOTPLUG_VAR("UNIQ=\"%s\"", dev->uniq);
1205
1206 INPUT_ADD_HOTPLUG_BM_VAR("EV=", dev->evbit, EV_MAX);
1207 if (test_bit(EV_KEY, dev->evbit))
1208 INPUT_ADD_HOTPLUG_BM_VAR("KEY=", dev->keybit, KEY_MAX);
1209 if (test_bit(EV_REL, dev->evbit))
1210 INPUT_ADD_HOTPLUG_BM_VAR("REL=", dev->relbit, REL_MAX);
1211 if (test_bit(EV_ABS, dev->evbit))
1212 INPUT_ADD_HOTPLUG_BM_VAR("ABS=", dev->absbit, ABS_MAX);
1213 if (test_bit(EV_MSC, dev->evbit))
1214 INPUT_ADD_HOTPLUG_BM_VAR("MSC=", dev->mscbit, MSC_MAX);
1215 if (test_bit(EV_LED, dev->evbit))
1216 INPUT_ADD_HOTPLUG_BM_VAR("LED=", dev->ledbit, LED_MAX);
1217 if (test_bit(EV_SND, dev->evbit))
1218 INPUT_ADD_HOTPLUG_BM_VAR("SND=", dev->sndbit, SND_MAX);
1219 if (test_bit(EV_FF, dev->evbit))
1220 INPUT_ADD_HOTPLUG_BM_VAR("FF=", dev->ffbit, FF_MAX);
1221 if (test_bit(EV_SW, dev->evbit))
1222 INPUT_ADD_HOTPLUG_BM_VAR("SW=", dev->swbit, SW_MAX);
1223
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001224 INPUT_ADD_HOTPLUG_MODALIAS_VAR(dev);
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001225
1226 return 0;
1227}
1228
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001229static struct device_type input_dev_type = {
1230 .groups = input_dev_attr_groups,
1231 .release = input_dev_release,
1232 .uevent = input_dev_uevent,
1233};
1234
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -07001235struct class input_class = {
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001236 .name = "input",
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001237};
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001238EXPORT_SYMBOL_GPL(input_class);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001239
Dmitry Torokhov14471902006-11-02 23:26:55 -05001240/**
1241 * input_allocate_device - allocate memory for new input device
1242 *
1243 * Returns prepared struct input_dev or NULL.
1244 *
1245 * NOTE: Use input_free_device() to free devices that have not been
1246 * registered; input_unregister_device() should be used for already
1247 * registered devices.
1248 */
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001249struct input_dev *input_allocate_device(void)
1250{
1251 struct input_dev *dev;
1252
1253 dev = kzalloc(sizeof(struct input_dev), GFP_KERNEL);
1254 if (dev) {
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001255 dev->dev.type = &input_dev_type;
1256 dev->dev.class = &input_class;
1257 device_initialize(&dev->dev);
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -04001258 mutex_init(&dev->mutex);
Dmitry Torokhov80064792007-08-30 00:22:11 -04001259 spin_lock_init(&dev->event_lock);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001260 INIT_LIST_HEAD(&dev->h_list);
1261 INIT_LIST_HEAD(&dev->node);
Dmitry Torokhov655816e2006-09-14 01:32:14 -04001262
1263 __module_get(THIS_MODULE);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001264 }
1265
1266 return dev;
1267}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001268EXPORT_SYMBOL(input_allocate_device);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001269
Dmitry Torokhov14471902006-11-02 23:26:55 -05001270/**
1271 * input_free_device - free memory occupied by input_dev structure
1272 * @dev: input device to free
1273 *
1274 * This function should only be used if input_register_device()
1275 * was not called yet or if it failed. Once device was registered
1276 * use input_unregister_device() and memory will be freed once last
Dmitry Torokhov80064792007-08-30 00:22:11 -04001277 * reference to the device is dropped.
Dmitry Torokhov14471902006-11-02 23:26:55 -05001278 *
1279 * Device should be allocated by input_allocate_device().
1280 *
1281 * NOTE: If there are references to the input device then memory
1282 * will not be freed until last reference is dropped.
1283 */
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -04001284void input_free_device(struct input_dev *dev)
1285{
Dmitry Torokhov54f9e362007-03-16 00:57:25 -04001286 if (dev)
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -04001287 input_put_device(dev);
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -04001288}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001289EXPORT_SYMBOL(input_free_device);
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -04001290
Dmitry Torokhov534565f2007-04-25 00:53:18 -04001291/**
1292 * input_set_capability - mark device as capable of a certain event
1293 * @dev: device that is capable of emitting or accepting event
1294 * @type: type of the event (EV_KEY, EV_REL, etc...)
1295 * @code: event code
1296 *
1297 * In addition to setting up corresponding bit in appropriate capability
1298 * bitmap the function also adjusts dev->evbit.
1299 */
1300void input_set_capability(struct input_dev *dev, unsigned int type, unsigned int code)
1301{
1302 switch (type) {
1303 case EV_KEY:
1304 __set_bit(code, dev->keybit);
1305 break;
1306
1307 case EV_REL:
1308 __set_bit(code, dev->relbit);
1309 break;
1310
1311 case EV_ABS:
1312 __set_bit(code, dev->absbit);
1313 break;
1314
1315 case EV_MSC:
1316 __set_bit(code, dev->mscbit);
1317 break;
1318
1319 case EV_SW:
1320 __set_bit(code, dev->swbit);
1321 break;
1322
1323 case EV_LED:
1324 __set_bit(code, dev->ledbit);
1325 break;
1326
1327 case EV_SND:
1328 __set_bit(code, dev->sndbit);
1329 break;
1330
1331 case EV_FF:
1332 __set_bit(code, dev->ffbit);
1333 break;
1334
Dmitry Baryshkov22d1c392007-12-14 01:21:03 -05001335 case EV_PWR:
1336 /* do nothing */
1337 break;
1338
Dmitry Torokhov534565f2007-04-25 00:53:18 -04001339 default:
1340 printk(KERN_ERR
1341 "input_set_capability: unknown type %u (code %u)\n",
1342 type, code);
1343 dump_stack();
1344 return;
1345 }
1346
1347 __set_bit(type, dev->evbit);
1348}
1349EXPORT_SYMBOL(input_set_capability);
1350
Dmitry Torokhov80064792007-08-30 00:22:11 -04001351/**
1352 * input_register_device - register device with input core
1353 * @dev: device to be registered
1354 *
1355 * This function registers device with input core. The device must be
1356 * allocated with input_allocate_device() and all it's capabilities
1357 * set up before registering.
1358 * If function fails the device must be freed with input_free_device().
1359 * Once device has been successfully registered it can be unregistered
1360 * with input_unregister_device(); input_free_device() should not be
1361 * called in this case.
1362 */
Dmitry Torokhov5f945482005-11-02 22:51:46 -05001363int input_register_device(struct input_dev *dev)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001364{
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001365 static atomic_t input_no = ATOMIC_INIT(0);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001366 struct input_handler *handler;
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001367 const char *path;
1368 int error;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001369
Dmitry Torokhov80064792007-08-30 00:22:11 -04001370 __set_bit(EV_SYN, dev->evbit);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001371
1372 /*
1373 * If delay and period are pre-set by the driver, then autorepeating
1374 * is handled by the driver itself and we don't do it in input.c.
1375 */
1376
1377 init_timer(&dev->timer);
1378 if (!dev->rep[REP_DELAY] && !dev->rep[REP_PERIOD]) {
1379 dev->timer.data = (long) dev;
1380 dev->timer.function = input_repeat_key;
1381 dev->rep[REP_DELAY] = 250;
1382 dev->rep[REP_PERIOD] = 33;
1383 }
1384
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -04001385 if (!dev->getkeycode)
1386 dev->getkeycode = input_default_getkeycode;
1387
1388 if (!dev->setkeycode)
1389 dev->setkeycode = input_default_setkeycode;
1390
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001391 snprintf(dev->dev.bus_id, sizeof(dev->dev.bus_id),
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001392 "input%ld", (unsigned long) atomic_inc_return(&input_no) - 1);
1393
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001394 error = device_add(&dev->dev);
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001395 if (error)
1396 return error;
1397
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001398 path = kobject_get_path(&dev->dev.kobj, GFP_KERNEL);
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001399 printk(KERN_INFO "input: %s as %s\n",
1400 dev->name ? dev->name : "Unspecified device", path ? path : "N/A");
1401 kfree(path);
Greg Kroah-Hartman10204022005-10-27 22:25:43 -07001402
Dmitry Torokhov80064792007-08-30 00:22:11 -04001403 error = mutex_lock_interruptible(&input_mutex);
1404 if (error) {
1405 device_del(&dev->dev);
1406 return error;
1407 }
1408
1409 list_add_tail(&dev->node, &input_dev_list);
1410
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001411 list_for_each_entry(handler, &input_handler_list, node)
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001412 input_attach_handler(dev, handler);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001413
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001414 input_wakeup_procfs_readers();
Dmitry Torokhov5f945482005-11-02 22:51:46 -05001415
Dmitry Torokhov80064792007-08-30 00:22:11 -04001416 mutex_unlock(&input_mutex);
1417
Dmitry Torokhov5f945482005-11-02 22:51:46 -05001418 return 0;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001419}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001420EXPORT_SYMBOL(input_register_device);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001421
Dmitry Torokhov80064792007-08-30 00:22:11 -04001422/**
1423 * input_unregister_device - unregister previously registered device
1424 * @dev: device to be unregistered
1425 *
1426 * This function unregisters an input device. Once device is unregistered
1427 * the caller should not try to access it as it may get freed at any moment.
1428 */
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001429void input_unregister_device(struct input_dev *dev)
1430{
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001431 struct input_handle *handle, *next;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001432
Dmitry Torokhov80064792007-08-30 00:22:11 -04001433 input_disconnect_device(dev);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001434
Dmitry Torokhov80064792007-08-30 00:22:11 -04001435 mutex_lock(&input_mutex);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001436
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001437 list_for_each_entry_safe(handle, next, &dev->h_list, d_node)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001438 handle->handler->disconnect(handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001439 WARN_ON(!list_empty(&dev->h_list));
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001440
Dmitry Torokhov80064792007-08-30 00:22:11 -04001441 del_timer_sync(&dev->timer);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001442 list_del_init(&dev->node);
1443
1444 input_wakeup_procfs_readers();
Dmitry Torokhov80064792007-08-30 00:22:11 -04001445
1446 mutex_unlock(&input_mutex);
1447
1448 device_unregister(&dev->dev);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001449}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001450EXPORT_SYMBOL(input_unregister_device);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001451
Dmitry Torokhov80064792007-08-30 00:22:11 -04001452/**
1453 * input_register_handler - register a new input handler
1454 * @handler: handler to be registered
1455 *
1456 * This function registers a new input handler (interface) for input
1457 * devices in the system and attaches it to all input devices that
1458 * are compatible with the handler.
1459 */
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001460int input_register_handler(struct input_handler *handler)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001461{
1462 struct input_dev *dev;
Dmitry Torokhov80064792007-08-30 00:22:11 -04001463 int retval;
1464
1465 retval = mutex_lock_interruptible(&input_mutex);
1466 if (retval)
1467 return retval;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001468
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001469 INIT_LIST_HEAD(&handler->h_list);
1470
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001471 if (handler->fops != NULL) {
Dmitry Torokhov80064792007-08-30 00:22:11 -04001472 if (input_table[handler->minor >> 5]) {
1473 retval = -EBUSY;
1474 goto out;
1475 }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001476 input_table[handler->minor >> 5] = handler;
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001477 }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001478
1479 list_add_tail(&handler->node, &input_handler_list);
1480
1481 list_for_each_entry(dev, &input_dev_list, node)
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001482 input_attach_handler(dev, handler);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001483
1484 input_wakeup_procfs_readers();
Dmitry Torokhov80064792007-08-30 00:22:11 -04001485
1486 out:
1487 mutex_unlock(&input_mutex);
1488 return retval;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001489}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001490EXPORT_SYMBOL(input_register_handler);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001491
Dmitry Torokhov80064792007-08-30 00:22:11 -04001492/**
1493 * input_unregister_handler - unregisters an input handler
1494 * @handler: handler to be unregistered
1495 *
1496 * This function disconnects a handler from its input devices and
1497 * removes it from lists of known handlers.
1498 */
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001499void input_unregister_handler(struct input_handler *handler)
1500{
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001501 struct input_handle *handle, *next;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001502
Dmitry Torokhov80064792007-08-30 00:22:11 -04001503 mutex_lock(&input_mutex);
1504
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001505 list_for_each_entry_safe(handle, next, &handler->h_list, h_node)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001506 handler->disconnect(handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001507 WARN_ON(!list_empty(&handler->h_list));
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001508
1509 list_del_init(&handler->node);
1510
1511 if (handler->fops != NULL)
1512 input_table[handler->minor >> 5] = NULL;
1513
1514 input_wakeup_procfs_readers();
Dmitry Torokhov80064792007-08-30 00:22:11 -04001515
1516 mutex_unlock(&input_mutex);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001517}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001518EXPORT_SYMBOL(input_unregister_handler);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001519
Dmitry Torokhov80064792007-08-30 00:22:11 -04001520/**
1521 * input_register_handle - register a new input handle
1522 * @handle: handle to register
1523 *
1524 * This function puts a new input handle onto device's
1525 * and handler's lists so that events can flow through
1526 * it once it is opened using input_open_device().
1527 *
1528 * This function is supposed to be called from handler's
1529 * connect() method.
1530 */
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001531int input_register_handle(struct input_handle *handle)
1532{
1533 struct input_handler *handler = handle->handler;
Dmitry Torokhov80064792007-08-30 00:22:11 -04001534 struct input_dev *dev = handle->dev;
1535 int error;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001536
Dmitry Torokhov80064792007-08-30 00:22:11 -04001537 /*
1538 * We take dev->mutex here to prevent race with
1539 * input_release_device().
1540 */
1541 error = mutex_lock_interruptible(&dev->mutex);
1542 if (error)
1543 return error;
1544 list_add_tail_rcu(&handle->d_node, &dev->h_list);
1545 mutex_unlock(&dev->mutex);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -04001546 synchronize_rcu();
Dmitry Torokhov80064792007-08-30 00:22:11 -04001547
1548 /*
1549 * Since we are supposed to be called from ->connect()
1550 * which is mutually exclusive with ->disconnect()
1551 * we can't be racing with input_unregister_handle()
1552 * and so separate lock is not needed here.
1553 */
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001554 list_add_tail(&handle->h_node, &handler->h_list);
1555
1556 if (handler->start)
1557 handler->start(handle);
1558
1559 return 0;
1560}
1561EXPORT_SYMBOL(input_register_handle);
1562
Dmitry Torokhov80064792007-08-30 00:22:11 -04001563/**
1564 * input_unregister_handle - unregister an input handle
1565 * @handle: handle to unregister
1566 *
1567 * This function removes input handle from device's
1568 * and handler's lists.
1569 *
1570 * This function is supposed to be called from handler's
1571 * disconnect() method.
1572 */
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001573void input_unregister_handle(struct input_handle *handle)
1574{
Dmitry Torokhov80064792007-08-30 00:22:11 -04001575 struct input_dev *dev = handle->dev;
1576
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001577 list_del_init(&handle->h_node);
Dmitry Torokhov80064792007-08-30 00:22:11 -04001578
1579 /*
1580 * Take dev->mutex to prevent race with input_release_device().
1581 */
1582 mutex_lock(&dev->mutex);
1583 list_del_rcu(&handle->d_node);
1584 mutex_unlock(&dev->mutex);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -04001585 synchronize_rcu();
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001586}
1587EXPORT_SYMBOL(input_unregister_handle);
1588
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001589static int input_open_file(struct inode *inode, struct file *file)
1590{
1591 struct input_handler *handler = input_table[iminor(inode) >> 5];
Arjan van de Ven99ac48f2006-03-28 01:56:41 -08001592 const struct file_operations *old_fops, *new_fops = NULL;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001593 int err;
1594
1595 /* No load-on-demand here? */
1596 if (!handler || !(new_fops = fops_get(handler->fops)))
1597 return -ENODEV;
1598
1599 /*
1600 * That's _really_ odd. Usually NULL ->open means "nothing special",
1601 * not "no device". Oh, well...
1602 */
1603 if (!new_fops->open) {
1604 fops_put(new_fops);
1605 return -ENODEV;
1606 }
1607 old_fops = file->f_op;
1608 file->f_op = new_fops;
1609
1610 err = new_fops->open(inode, file);
1611
1612 if (err) {
1613 fops_put(file->f_op);
1614 file->f_op = fops_get(old_fops);
1615 }
1616 fops_put(old_fops);
1617 return err;
1618}
1619
Arjan van de Ven2b8693c2007-02-12 00:55:32 -08001620static const struct file_operations input_fops = {
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001621 .owner = THIS_MODULE,
1622 .open = input_open_file,
1623};
1624
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625static int __init input_init(void)
1626{
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001627 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -07001629 err = class_register(&input_class);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001630 if (err) {
1631 printk(KERN_ERR "input: unable to register input_dev class\n");
1632 return err;
1633 }
1634
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001635 err = input_proc_init();
1636 if (err)
Greg Kroah-Hartmanb0fdfeb2005-10-27 22:25:43 -07001637 goto fail1;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001638
1639 err = register_chrdev(INPUT_MAJOR, "input", &input_fops);
1640 if (err) {
1641 printk(KERN_ERR "input: unable to register char major %d", INPUT_MAJOR);
Greg Kroah-Hartmanb0fdfeb2005-10-27 22:25:43 -07001642 goto fail2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001644
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001645 return 0;
1646
Greg Kroah-Hartmanb0fdfeb2005-10-27 22:25:43 -07001647 fail2: input_proc_exit();
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -07001648 fail1: class_unregister(&input_class);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001649 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650}
1651
1652static void __exit input_exit(void)
1653{
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001654 input_proc_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 unregister_chrdev(INPUT_MAJOR, "input");
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -07001656 class_unregister(&input_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657}
1658
1659subsys_initcall(input_init);
1660module_exit(input_exit);