blob: 408df0bd6be50a0b17798b189506c266d0ba34bf [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>
Jonathan Corbet2edbf852008-05-15 10:37:16 -060024#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26MODULE_AUTHOR("Vojtech Pavlik <vojtech@suse.cz>");
27MODULE_DESCRIPTION("Input core");
28MODULE_LICENSE("GPL");
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#define INPUT_DEVICES 256
31
32static LIST_HEAD(input_dev_list);
33static LIST_HEAD(input_handler_list);
34
Dmitry Torokhov80064792007-08-30 00:22:11 -040035/*
36 * input_mutex protects access to both input_dev_list and input_handler_list.
37 * This also causes input_[un]register_device and input_[un]register_handler
38 * be mutually exclusive which simplifies locking in drivers implementing
39 * input handlers.
40 */
41static DEFINE_MUTEX(input_mutex);
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043static struct input_handler *input_table[8];
44
Dmitry Torokhov80064792007-08-30 00:22:11 -040045static inline int is_event_supported(unsigned int code,
46 unsigned long *bm, unsigned int max)
47{
48 return code <= max && test_bit(code, bm);
49}
50
51static int input_defuzz_abs_event(int value, int old_val, int fuzz)
52{
53 if (fuzz) {
54 if (value > old_val - fuzz / 2 && value < old_val + fuzz / 2)
55 return old_val;
56
57 if (value > old_val - fuzz && value < old_val + fuzz)
58 return (old_val * 3 + value) / 4;
59
60 if (value > old_val - fuzz * 2 && value < old_val + fuzz * 2)
61 return (old_val + value) / 2;
62 }
63
64 return value;
65}
66
67/*
68 * Pass event through all open handles. This function is called with
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -040069 * dev->event_lock held and interrupts disabled.
Dmitry Torokhov80064792007-08-30 00:22:11 -040070 */
71static void input_pass_event(struct input_dev *dev,
72 unsigned int type, unsigned int code, int value)
73{
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -040074 struct input_handle *handle;
Dmitry Torokhov80064792007-08-30 00:22:11 -040075
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -040076 rcu_read_lock();
77
78 handle = rcu_dereference(dev->grab);
Dmitry Torokhov80064792007-08-30 00:22:11 -040079 if (handle)
80 handle->handler->event(handle, type, code, value);
81 else
82 list_for_each_entry_rcu(handle, &dev->h_list, d_node)
83 if (handle->open)
84 handle->handler->event(handle,
85 type, code, value);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -040086 rcu_read_unlock();
Dmitry Torokhov80064792007-08-30 00:22:11 -040087}
88
89/*
90 * Generate software autorepeat event. Note that we take
91 * dev->event_lock here to avoid racing with input_event
92 * which may cause keys get "stuck".
93 */
94static void input_repeat_key(unsigned long data)
95{
96 struct input_dev *dev = (void *) data;
97 unsigned long flags;
98
99 spin_lock_irqsave(&dev->event_lock, flags);
100
101 if (test_bit(dev->repeat_key, dev->key) &&
102 is_event_supported(dev->repeat_key, dev->keybit, KEY_MAX)) {
103
104 input_pass_event(dev, EV_KEY, dev->repeat_key, 2);
105
106 if (dev->sync) {
107 /*
108 * Only send SYN_REPORT if we are not in a middle
109 * of driver parsing a new hardware packet.
110 * Otherwise assume that the driver will send
111 * SYN_REPORT once it's done.
112 */
113 input_pass_event(dev, EV_SYN, SYN_REPORT, 1);
114 }
115
116 if (dev->rep[REP_PERIOD])
117 mod_timer(&dev->timer, jiffies +
118 msecs_to_jiffies(dev->rep[REP_PERIOD]));
119 }
120
121 spin_unlock_irqrestore(&dev->event_lock, flags);
122}
123
124static void input_start_autorepeat(struct input_dev *dev, int code)
125{
126 if (test_bit(EV_REP, dev->evbit) &&
127 dev->rep[REP_PERIOD] && dev->rep[REP_DELAY] &&
128 dev->timer.data) {
129 dev->repeat_key = code;
130 mod_timer(&dev->timer,
131 jiffies + msecs_to_jiffies(dev->rep[REP_DELAY]));
132 }
133}
134
135#define INPUT_IGNORE_EVENT 0
136#define INPUT_PASS_TO_HANDLERS 1
137#define INPUT_PASS_TO_DEVICE 2
138#define INPUT_PASS_TO_ALL (INPUT_PASS_TO_HANDLERS | INPUT_PASS_TO_DEVICE)
139
140static void input_handle_event(struct input_dev *dev,
141 unsigned int type, unsigned int code, int value)
142{
143 int disposition = INPUT_IGNORE_EVENT;
144
145 switch (type) {
146
147 case EV_SYN:
148 switch (code) {
149 case SYN_CONFIG:
150 disposition = INPUT_PASS_TO_ALL;
151 break;
152
153 case SYN_REPORT:
154 if (!dev->sync) {
155 dev->sync = 1;
156 disposition = INPUT_PASS_TO_HANDLERS;
157 }
158 break;
159 }
160 break;
161
162 case EV_KEY:
163 if (is_event_supported(code, dev->keybit, KEY_MAX) &&
164 !!test_bit(code, dev->key) != value) {
165
166 if (value != 2) {
167 __change_bit(code, dev->key);
168 if (value)
169 input_start_autorepeat(dev, code);
170 }
171
172 disposition = INPUT_PASS_TO_HANDLERS;
173 }
174 break;
175
176 case EV_SW:
177 if (is_event_supported(code, dev->swbit, SW_MAX) &&
178 !!test_bit(code, dev->sw) != value) {
179
180 __change_bit(code, dev->sw);
181 disposition = INPUT_PASS_TO_HANDLERS;
182 }
183 break;
184
185 case EV_ABS:
186 if (is_event_supported(code, dev->absbit, ABS_MAX)) {
187
188 value = input_defuzz_abs_event(value,
189 dev->abs[code], dev->absfuzz[code]);
190
191 if (dev->abs[code] != value) {
192 dev->abs[code] = value;
193 disposition = INPUT_PASS_TO_HANDLERS;
194 }
195 }
196 break;
197
198 case EV_REL:
199 if (is_event_supported(code, dev->relbit, REL_MAX) && value)
200 disposition = INPUT_PASS_TO_HANDLERS;
201
202 break;
203
204 case EV_MSC:
205 if (is_event_supported(code, dev->mscbit, MSC_MAX))
206 disposition = INPUT_PASS_TO_ALL;
207
208 break;
209
210 case EV_LED:
211 if (is_event_supported(code, dev->ledbit, LED_MAX) &&
212 !!test_bit(code, dev->led) != value) {
213
214 __change_bit(code, dev->led);
215 disposition = INPUT_PASS_TO_ALL;
216 }
217 break;
218
219 case EV_SND:
220 if (is_event_supported(code, dev->sndbit, SND_MAX)) {
221
222 if (!!test_bit(code, dev->snd) != !!value)
223 __change_bit(code, dev->snd);
224 disposition = INPUT_PASS_TO_ALL;
225 }
226 break;
227
228 case EV_REP:
229 if (code <= REP_MAX && value >= 0 && dev->rep[code] != value) {
230 dev->rep[code] = value;
231 disposition = INPUT_PASS_TO_ALL;
232 }
233 break;
234
235 case EV_FF:
236 if (value >= 0)
237 disposition = INPUT_PASS_TO_ALL;
238 break;
Richard Purdieed2fa4d2008-01-03 10:46:21 -0500239
240 case EV_PWR:
241 disposition = INPUT_PASS_TO_ALL;
242 break;
Dmitry Torokhov80064792007-08-30 00:22:11 -0400243 }
244
245 if (type != EV_SYN)
246 dev->sync = 0;
247
248 if ((disposition & INPUT_PASS_TO_DEVICE) && dev->event)
249 dev->event(dev, type, code, value);
250
251 if (disposition & INPUT_PASS_TO_HANDLERS)
252 input_pass_event(dev, type, code, value);
253}
254
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400255/**
256 * input_event() - report new input event
Dmitry Torokhov14471902006-11-02 23:26:55 -0500257 * @dev: device that generated the event
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400258 * @type: type of the event
259 * @code: event code
260 * @value: value of the event
261 *
Dmitry Torokhov80064792007-08-30 00:22:11 -0400262 * This function should be used by drivers implementing various input
263 * devices. See also input_inject_event().
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400264 */
Dmitry Torokhov80064792007-08-30 00:22:11 -0400265
266void input_event(struct input_dev *dev,
267 unsigned int type, unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400269 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Dmitry Torokhov80064792007-08-30 00:22:11 -0400271 if (is_event_supported(type, dev->evbit, EV_MAX)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Dmitry Torokhov80064792007-08-30 00:22:11 -0400273 spin_lock_irqsave(&dev->event_lock, flags);
274 add_input_randomness(type, code, value);
275 input_handle_event(dev, type, code, value);
276 spin_unlock_irqrestore(&dev->event_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400279EXPORT_SYMBOL(input_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400281/**
282 * input_inject_event() - send input event from input handler
283 * @handle: input handle to send event through
284 * @type: type of the event
285 * @code: event code
286 * @value: value of the event
287 *
Dmitry Torokhov80064792007-08-30 00:22:11 -0400288 * Similar to input_event() but will ignore event if device is
289 * "grabbed" and handle injecting event is not the one that owns
290 * the device.
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400291 */
Dmitry Torokhov80064792007-08-30 00:22:11 -0400292void input_inject_event(struct input_handle *handle,
293 unsigned int type, unsigned int code, int value)
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400294{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400295 struct input_dev *dev = handle->dev;
296 struct input_handle *grab;
297 unsigned long flags;
298
299 if (is_event_supported(type, dev->evbit, EV_MAX)) {
300 spin_lock_irqsave(&dev->event_lock, flags);
301
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400302 rcu_read_lock();
Dmitry Torokhov80064792007-08-30 00:22:11 -0400303 grab = rcu_dereference(dev->grab);
304 if (!grab || grab == handle)
305 input_handle_event(dev, type, code, value);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400306 rcu_read_unlock();
Dmitry Torokhov80064792007-08-30 00:22:11 -0400307
308 spin_unlock_irqrestore(&dev->event_lock, flags);
309 }
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400310}
311EXPORT_SYMBOL(input_inject_event);
312
Dmitry Torokhov80064792007-08-30 00:22:11 -0400313/**
314 * input_grab_device - grabs device for exclusive use
315 * @handle: input handle that wants to own the device
316 *
317 * When a device is grabbed by an input handle all events generated by
318 * the device are delivered only to this handle. Also events injected
319 * by other input handles are ignored while device is grabbed.
320 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321int input_grab_device(struct input_handle *handle)
322{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400323 struct input_dev *dev = handle->dev;
324 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Dmitry Torokhov80064792007-08-30 00:22:11 -0400326 retval = mutex_lock_interruptible(&dev->mutex);
327 if (retval)
328 return retval;
329
330 if (dev->grab) {
331 retval = -EBUSY;
332 goto out;
333 }
334
335 rcu_assign_pointer(dev->grab, handle);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400336 synchronize_rcu();
Dmitry Torokhov80064792007-08-30 00:22:11 -0400337
338 out:
339 mutex_unlock(&dev->mutex);
340 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400342EXPORT_SYMBOL(input_grab_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Dmitry Torokhov80064792007-08-30 00:22:11 -0400344static void __input_release_device(struct input_handle *handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
Andrew Mortona2b2ed22006-07-15 01:17:38 -0400346 struct input_dev *dev = handle->dev;
Dmitry Torokhovc7e8dc62006-07-06 00:21:03 -0400347
Andrew Mortona2b2ed22006-07-15 01:17:38 -0400348 if (dev->grab == handle) {
Dmitry Torokhov80064792007-08-30 00:22:11 -0400349 rcu_assign_pointer(dev->grab, NULL);
350 /* Make sure input_pass_event() notices that grab is gone */
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400351 synchronize_rcu();
Andrew Mortona2b2ed22006-07-15 01:17:38 -0400352
353 list_for_each_entry(handle, &dev->h_list, d_node)
Dmitry Torokhov80064792007-08-30 00:22:11 -0400354 if (handle->open && handle->handler->start)
Dmitry Torokhovc7e8dc62006-07-06 00:21:03 -0400355 handle->handler->start(handle);
356 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357}
Dmitry Torokhov80064792007-08-30 00:22:11 -0400358
359/**
360 * input_release_device - release previously grabbed device
361 * @handle: input handle that owns the device
362 *
363 * Releases previously grabbed device so that other input handles can
364 * start receiving input events. Upon release all handlers attached
365 * to the device have their start() method called so they have a change
366 * to synchronize device state with the rest of the system.
367 */
368void input_release_device(struct input_handle *handle)
369{
370 struct input_dev *dev = handle->dev;
371
372 mutex_lock(&dev->mutex);
373 __input_release_device(handle);
374 mutex_unlock(&dev->mutex);
375}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400376EXPORT_SYMBOL(input_release_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Dmitry Torokhov80064792007-08-30 00:22:11 -0400378/**
379 * input_open_device - open input device
380 * @handle: handle through which device is being accessed
381 *
382 * This function should be called by input handlers when they
383 * want to start receive events from given input device.
384 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385int input_open_device(struct input_handle *handle)
386{
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500387 struct input_dev *dev = handle->dev;
Dmitry Torokhov80064792007-08-30 00:22:11 -0400388 int retval;
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500389
Dmitry Torokhov80064792007-08-30 00:22:11 -0400390 retval = mutex_lock_interruptible(&dev->mutex);
391 if (retval)
392 return retval;
393
394 if (dev->going_away) {
395 retval = -ENODEV;
396 goto out;
397 }
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 handle->open++;
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500400
401 if (!dev->users++ && dev->open)
Dmitry Torokhov80064792007-08-30 00:22:11 -0400402 retval = dev->open(dev);
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500403
Dmitry Torokhov80064792007-08-30 00:22:11 -0400404 if (retval) {
405 dev->users--;
406 if (!--handle->open) {
407 /*
408 * Make sure we are not delivering any more events
409 * through this handle
410 */
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400411 synchronize_rcu();
Dmitry Torokhov80064792007-08-30 00:22:11 -0400412 }
413 }
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500414
Dmitry Torokhov80064792007-08-30 00:22:11 -0400415 out:
Jes Sorensene676c232006-02-19 00:21:46 -0500416 mutex_unlock(&dev->mutex);
Dmitry Torokhov80064792007-08-30 00:22:11 -0400417 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400419EXPORT_SYMBOL(input_open_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Dmitry Torokhov80064792007-08-30 00:22:11 -0400421int input_flush_device(struct input_handle *handle, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400423 struct input_dev *dev = handle->dev;
424 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Dmitry Torokhov80064792007-08-30 00:22:11 -0400426 retval = mutex_lock_interruptible(&dev->mutex);
427 if (retval)
428 return retval;
429
430 if (dev->flush)
431 retval = dev->flush(dev, file);
432
433 mutex_unlock(&dev->mutex);
434 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400436EXPORT_SYMBOL(input_flush_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Dmitry Torokhov80064792007-08-30 00:22:11 -0400438/**
439 * input_close_device - close input device
440 * @handle: handle through which device is being accessed
441 *
442 * This function should be called by input handlers when they
443 * want to stop receive events from given input device.
444 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445void input_close_device(struct input_handle *handle)
446{
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500447 struct input_dev *dev = handle->dev;
448
Jes Sorensene676c232006-02-19 00:21:46 -0500449 mutex_lock(&dev->mutex);
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500450
Dmitry Torokhov80064792007-08-30 00:22:11 -0400451 __input_release_device(handle);
452
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500453 if (!--dev->users && dev->close)
454 dev->close(dev);
Dmitry Torokhov80064792007-08-30 00:22:11 -0400455
456 if (!--handle->open) {
457 /*
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400458 * synchronize_rcu() makes sure that input_pass_event()
Dmitry Torokhov80064792007-08-30 00:22:11 -0400459 * completed and that no more input events are delivered
460 * through this handle
461 */
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400462 synchronize_rcu();
Dmitry Torokhov80064792007-08-30 00:22:11 -0400463 }
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500464
Jes Sorensene676c232006-02-19 00:21:46 -0500465 mutex_unlock(&dev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400467EXPORT_SYMBOL(input_close_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Dmitry Torokhov80064792007-08-30 00:22:11 -0400469/*
470 * Prepare device for unregistering
471 */
472static void input_disconnect_device(struct input_dev *dev)
473{
474 struct input_handle *handle;
475 int code;
476
477 /*
478 * Mark device as going away. Note that we take dev->mutex here
479 * not to protect access to dev->going_away but rather to ensure
480 * that there are no threads in the middle of input_open_device()
481 */
482 mutex_lock(&dev->mutex);
483 dev->going_away = 1;
484 mutex_unlock(&dev->mutex);
485
486 spin_lock_irq(&dev->event_lock);
487
488 /*
489 * Simulate keyup events for all pressed keys so that handlers
490 * are not left with "stuck" keys. The driver may continue
491 * generate events even after we done here but they will not
492 * reach any handlers.
493 */
494 if (is_event_supported(EV_KEY, dev->evbit, EV_MAX)) {
495 for (code = 0; code <= KEY_MAX; code++) {
496 if (is_event_supported(code, dev->keybit, KEY_MAX) &&
Dmitry Torokhovf4f37c82007-11-04 00:41:12 -0400497 __test_and_clear_bit(code, dev->key)) {
Dmitry Torokhov80064792007-08-30 00:22:11 -0400498 input_pass_event(dev, EV_KEY, code, 0);
499 }
500 }
501 input_pass_event(dev, EV_SYN, SYN_REPORT, 1);
502 }
503
504 list_for_each_entry(handle, &dev->h_list, d_node)
505 handle->open = 0;
506
507 spin_unlock_irq(&dev->event_lock);
508}
509
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400510static int input_fetch_keycode(struct input_dev *dev, int scancode)
511{
512 switch (dev->keycodesize) {
513 case 1:
514 return ((u8 *)dev->keycode)[scancode];
515
516 case 2:
517 return ((u16 *)dev->keycode)[scancode];
518
519 default:
520 return ((u32 *)dev->keycode)[scancode];
521 }
522}
523
524static int input_default_getkeycode(struct input_dev *dev,
525 int scancode, int *keycode)
526{
527 if (!dev->keycodesize)
528 return -EINVAL;
529
Dmitry Torokhovf4f37c82007-11-04 00:41:12 -0400530 if (scancode >= dev->keycodemax)
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400531 return -EINVAL;
532
533 *keycode = input_fetch_keycode(dev, scancode);
534
535 return 0;
536}
537
538static int input_default_setkeycode(struct input_dev *dev,
539 int scancode, int keycode)
540{
541 int old_keycode;
542 int i;
543
Dmitry Torokhovf4f37c82007-11-04 00:41:12 -0400544 if (scancode >= dev->keycodemax)
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400545 return -EINVAL;
546
547 if (!dev->keycodesize)
548 return -EINVAL;
549
550 if (dev->keycodesize < sizeof(keycode) && (keycode >> (dev->keycodesize * 8)))
551 return -EINVAL;
552
553 switch (dev->keycodesize) {
554 case 1: {
555 u8 *k = (u8 *)dev->keycode;
556 old_keycode = k[scancode];
557 k[scancode] = keycode;
558 break;
559 }
560 case 2: {
561 u16 *k = (u16 *)dev->keycode;
562 old_keycode = k[scancode];
563 k[scancode] = keycode;
564 break;
565 }
566 default: {
567 u32 *k = (u32 *)dev->keycode;
568 old_keycode = k[scancode];
569 k[scancode] = keycode;
570 break;
571 }
572 }
573
574 clear_bit(old_keycode, dev->keybit);
575 set_bit(keycode, dev->keybit);
576
577 for (i = 0; i < dev->keycodemax; i++) {
578 if (input_fetch_keycode(dev, i) == old_keycode) {
579 set_bit(old_keycode, dev->keybit);
580 break; /* Setting the bit twice is useless, so break */
581 }
582 }
583
584 return 0;
585}
586
Dmitry Torokhovf4f37c82007-11-04 00:41:12 -0400587/**
588 * input_get_keycode - retrieve keycode currently mapped to a given scancode
589 * @dev: input device which keymap is being queried
590 * @scancode: scancode (or its equivalent for device in question) for which
591 * keycode is needed
592 * @keycode: result
593 *
594 * This function should be called by anyone interested in retrieving current
595 * keymap. Presently keyboard and evdev handlers use it.
596 */
597int input_get_keycode(struct input_dev *dev, int scancode, int *keycode)
598{
599 if (scancode < 0)
600 return -EINVAL;
601
602 return dev->getkeycode(dev, scancode, keycode);
603}
604EXPORT_SYMBOL(input_get_keycode);
605
606/**
607 * input_get_keycode - assign new keycode to a given scancode
608 * @dev: input device which keymap is being updated
609 * @scancode: scancode (or its equivalent for device in question)
610 * @keycode: new keycode to be assigned to the scancode
611 *
612 * This function should be called by anyone needing to update current
613 * keymap. Presently keyboard and evdev handlers use it.
614 */
615int input_set_keycode(struct input_dev *dev, int scancode, int keycode)
616{
617 unsigned long flags;
618 int old_keycode;
619 int retval;
620
621 if (scancode < 0)
622 return -EINVAL;
623
624 if (keycode < 0 || keycode > KEY_MAX)
625 return -EINVAL;
626
627 spin_lock_irqsave(&dev->event_lock, flags);
628
629 retval = dev->getkeycode(dev, scancode, &old_keycode);
630 if (retval)
631 goto out;
632
633 retval = dev->setkeycode(dev, scancode, keycode);
634 if (retval)
635 goto out;
636
637 /*
638 * Simulate keyup event if keycode is not present
639 * in the keymap anymore
640 */
641 if (test_bit(EV_KEY, dev->evbit) &&
642 !is_event_supported(old_keycode, dev->keybit, KEY_MAX) &&
643 __test_and_clear_bit(old_keycode, dev->key)) {
644
645 input_pass_event(dev, EV_KEY, old_keycode, 0);
646 if (dev->sync)
647 input_pass_event(dev, EV_SYN, SYN_REPORT, 1);
648 }
649
650 out:
651 spin_unlock_irqrestore(&dev->event_lock, flags);
652
653 return retval;
654}
655EXPORT_SYMBOL(input_set_keycode);
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657#define MATCH_BIT(bit, max) \
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700658 for (i = 0; i < BITS_TO_LONGS(max); i++) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 if ((id->bit[i] & dev->bit[i]) != id->bit[i]) \
660 break; \
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700661 if (i != BITS_TO_LONGS(max)) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 continue;
663
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400664static const struct input_device_id *input_match_device(const struct input_device_id *id,
665 struct input_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
667 int i;
668
669 for (; id->flags || id->driver_info; id++) {
670
671 if (id->flags & INPUT_DEVICE_ID_MATCH_BUS)
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400672 if (id->bustype != dev->id.bustype)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 continue;
674
675 if (id->flags & INPUT_DEVICE_ID_MATCH_VENDOR)
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400676 if (id->vendor != dev->id.vendor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 continue;
678
679 if (id->flags & INPUT_DEVICE_ID_MATCH_PRODUCT)
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400680 if (id->product != dev->id.product)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 continue;
682
683 if (id->flags & INPUT_DEVICE_ID_MATCH_VERSION)
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400684 if (id->version != dev->id.version)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 continue;
686
687 MATCH_BIT(evbit, EV_MAX);
688 MATCH_BIT(keybit, KEY_MAX);
689 MATCH_BIT(relbit, REL_MAX);
690 MATCH_BIT(absbit, ABS_MAX);
691 MATCH_BIT(mscbit, MSC_MAX);
692 MATCH_BIT(ledbit, LED_MAX);
693 MATCH_BIT(sndbit, SND_MAX);
694 MATCH_BIT(ffbit, FF_MAX);
Dmitry Torokhovff13f982005-09-24 02:02:29 -0500695 MATCH_BIT(swbit, SW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
697 return id;
698 }
699
700 return NULL;
701}
702
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400703static int input_attach_handler(struct input_dev *dev, struct input_handler *handler)
704{
705 const struct input_device_id *id;
706 int error;
707
708 if (handler->blacklist && input_match_device(handler->blacklist, dev))
709 return -ENODEV;
710
711 id = input_match_device(handler->id_table, dev);
712 if (!id)
713 return -ENODEV;
714
715 error = handler->connect(handler, dev, id);
716 if (error && error != -ENODEV)
717 printk(KERN_ERR
718 "input: failed to attach handler %s to device %s, "
719 "error: %d\n",
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400720 handler->name, kobject_name(&dev->dev.kobj), error);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400721
722 return error;
723}
724
725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726#ifdef CONFIG_PROC_FS
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500727
728static struct proc_dir_entry *proc_bus_input_dir;
729static DECLARE_WAIT_QUEUE_HEAD(input_devices_poll_wait);
730static int input_devices_state;
731
732static inline void input_wakeup_procfs_readers(void)
733{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 input_devices_state++;
735 wake_up(&input_devices_poll_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736}
737
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500738static unsigned int input_proc_devices_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739{
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500740 int state = input_devices_state;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400741
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500742 poll_wait(file, &input_devices_poll_wait, wait);
743 if (state != input_devices_state)
744 return POLLIN | POLLRDNORM;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400745
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500746 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747}
748
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500749static void *input_devices_seq_start(struct seq_file *seq, loff_t *pos)
750{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400751 if (mutex_lock_interruptible(&input_mutex))
752 return NULL;
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500753
Pavel Emelianovad5d9722007-07-18 00:38:32 -0400754 return seq_list_start(&input_dev_list, *pos);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500755}
756
757static void *input_devices_seq_next(struct seq_file *seq, void *v, loff_t *pos)
758{
Pavel Emelianovad5d9722007-07-18 00:38:32 -0400759 return seq_list_next(v, &input_dev_list, pos);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500760}
761
762static void input_devices_seq_stop(struct seq_file *seq, void *v)
763{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400764 mutex_unlock(&input_mutex);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500765}
766
767static void input_seq_print_bitmap(struct seq_file *seq, const char *name,
768 unsigned long *bitmap, int max)
769{
770 int i;
771
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700772 for (i = BITS_TO_LONGS(max) - 1; i > 0; i--)
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500773 if (bitmap[i])
774 break;
775
776 seq_printf(seq, "B: %s=", name);
777 for (; i >= 0; i--)
778 seq_printf(seq, "%lx%s", bitmap[i], i > 0 ? " " : "");
779 seq_putc(seq, '\n');
780}
781
782static int input_devices_seq_show(struct seq_file *seq, void *v)
783{
784 struct input_dev *dev = container_of(v, struct input_dev, node);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400785 const char *path = kobject_get_path(&dev->dev.kobj, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 struct input_handle *handle;
787
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500788 seq_printf(seq, "I: Bus=%04x Vendor=%04x Product=%04x Version=%04x\n",
789 dev->id.bustype, dev->id.vendor, dev->id.product, dev->id.version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500791 seq_printf(seq, "N: Name=\"%s\"\n", dev->name ? dev->name : "");
792 seq_printf(seq, "P: Phys=%s\n", dev->phys ? dev->phys : "");
793 seq_printf(seq, "S: Sysfs=%s\n", path ? path : "");
Dmitry Torokhov15e03ae2007-03-07 23:20:17 -0500794 seq_printf(seq, "U: Uniq=%s\n", dev->uniq ? dev->uniq : "");
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500795 seq_printf(seq, "H: Handlers=");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500797 list_for_each_entry(handle, &dev->h_list, d_node)
798 seq_printf(seq, "%s ", handle->name);
799 seq_putc(seq, '\n');
Dmitry Torokhov051b2fe2005-09-15 02:01:54 -0500800
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500801 input_seq_print_bitmap(seq, "EV", dev->evbit, EV_MAX);
802 if (test_bit(EV_KEY, dev->evbit))
803 input_seq_print_bitmap(seq, "KEY", dev->keybit, KEY_MAX);
804 if (test_bit(EV_REL, dev->evbit))
805 input_seq_print_bitmap(seq, "REL", dev->relbit, REL_MAX);
806 if (test_bit(EV_ABS, dev->evbit))
807 input_seq_print_bitmap(seq, "ABS", dev->absbit, ABS_MAX);
808 if (test_bit(EV_MSC, dev->evbit))
809 input_seq_print_bitmap(seq, "MSC", dev->mscbit, MSC_MAX);
810 if (test_bit(EV_LED, dev->evbit))
811 input_seq_print_bitmap(seq, "LED", dev->ledbit, LED_MAX);
812 if (test_bit(EV_SND, dev->evbit))
813 input_seq_print_bitmap(seq, "SND", dev->sndbit, SND_MAX);
814 if (test_bit(EV_FF, dev->evbit))
815 input_seq_print_bitmap(seq, "FF", dev->ffbit, FF_MAX);
816 if (test_bit(EV_SW, dev->evbit))
817 input_seq_print_bitmap(seq, "SW", dev->swbit, SW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500819 seq_putc(seq, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500821 kfree(path);
822 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823}
824
Jan Engelhardtcec69c32008-01-31 00:43:32 -0500825static const struct seq_operations input_devices_seq_ops = {
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500826 .start = input_devices_seq_start,
827 .next = input_devices_seq_next,
828 .stop = input_devices_seq_stop,
829 .show = input_devices_seq_show,
830};
831
832static int input_proc_devices_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833{
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500834 return seq_open(file, &input_devices_seq_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835}
836
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800837static const struct file_operations input_devices_fileops = {
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500838 .owner = THIS_MODULE,
839 .open = input_proc_devices_open,
840 .poll = input_proc_devices_poll,
841 .read = seq_read,
842 .llseek = seq_lseek,
843 .release = seq_release,
844};
845
846static void *input_handlers_seq_start(struct seq_file *seq, loff_t *pos)
847{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400848 if (mutex_lock_interruptible(&input_mutex))
849 return NULL;
850
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500851 seq->private = (void *)(unsigned long)*pos;
Pavel Emelianovad5d9722007-07-18 00:38:32 -0400852 return seq_list_start(&input_handler_list, *pos);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500853}
854
855static void *input_handlers_seq_next(struct seq_file *seq, void *v, loff_t *pos)
856{
857 seq->private = (void *)(unsigned long)(*pos + 1);
Pavel Emelianovad5d9722007-07-18 00:38:32 -0400858 return seq_list_next(v, &input_handler_list, pos);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500859}
860
861static void input_handlers_seq_stop(struct seq_file *seq, void *v)
862{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400863 mutex_unlock(&input_mutex);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500864}
865
866static int input_handlers_seq_show(struct seq_file *seq, void *v)
867{
868 struct input_handler *handler = container_of(v, struct input_handler, node);
869
870 seq_printf(seq, "N: Number=%ld Name=%s",
871 (unsigned long)seq->private, handler->name);
872 if (handler->fops)
873 seq_printf(seq, " Minor=%d", handler->minor);
874 seq_putc(seq, '\n');
875
876 return 0;
877}
Jan Engelhardtcec69c32008-01-31 00:43:32 -0500878static const struct seq_operations input_handlers_seq_ops = {
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500879 .start = input_handlers_seq_start,
880 .next = input_handlers_seq_next,
881 .stop = input_handlers_seq_stop,
882 .show = input_handlers_seq_show,
883};
884
885static int input_proc_handlers_open(struct inode *inode, struct file *file)
886{
887 return seq_open(file, &input_handlers_seq_ops);
888}
889
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800890static const struct file_operations input_handlers_fileops = {
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500891 .owner = THIS_MODULE,
892 .open = input_proc_handlers_open,
893 .read = seq_read,
894 .llseek = seq_lseek,
895 .release = seq_release,
896};
Luke Kosewskie334016fc2005-06-01 02:39:28 -0500897
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898static int __init input_proc_init(void)
899{
900 struct proc_dir_entry *entry;
901
Alexey Dobriyan9c370662008-04-29 01:01:41 -0700902 proc_bus_input_dir = proc_mkdir("bus/input", NULL);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500903 if (!proc_bus_input_dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 return -ENOMEM;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 proc_bus_input_dir->owner = THIS_MODULE;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500907
Denis V. Lunevc7705f32008-04-29 01:02:35 -0700908 entry = proc_create("devices", 0, proc_bus_input_dir,
909 &input_devices_fileops);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500910 if (!entry)
911 goto fail1;
912
Denis V. Lunevc7705f32008-04-29 01:02:35 -0700913 entry = proc_create("handlers", 0, proc_bus_input_dir,
914 &input_handlers_fileops);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500915 if (!entry)
916 goto fail2;
917
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 return 0;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500919
920 fail2: remove_proc_entry("devices", proc_bus_input_dir);
Alexey Dobriyan9c370662008-04-29 01:01:41 -0700921 fail1: remove_proc_entry("bus/input", NULL);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500922 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923}
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500924
Andrew Mortonbeffbdc2005-07-01 23:54:30 -0500925static void input_proc_exit(void)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500926{
927 remove_proc_entry("devices", proc_bus_input_dir);
928 remove_proc_entry("handlers", proc_bus_input_dir);
Alexey Dobriyan9c370662008-04-29 01:01:41 -0700929 remove_proc_entry("bus/input", NULL);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500930}
931
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932#else /* !CONFIG_PROC_FS */
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500933static inline void input_wakeup_procfs_readers(void) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934static inline int input_proc_init(void) { return 0; }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500935static inline void input_proc_exit(void) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936#endif
937
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400938#define INPUT_DEV_STRING_ATTR_SHOW(name) \
939static ssize_t input_dev_show_##name(struct device *dev, \
940 struct device_attribute *attr, \
941 char *buf) \
942{ \
943 struct input_dev *input_dev = to_input_dev(dev); \
944 \
945 return scnprintf(buf, PAGE_SIZE, "%s\n", \
946 input_dev->name ? input_dev->name : ""); \
947} \
948static DEVICE_ATTR(name, S_IRUGO, input_dev_show_##name, NULL)
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -0500949
950INPUT_DEV_STRING_ATTR_SHOW(name);
951INPUT_DEV_STRING_ATTR_SHOW(phys);
952INPUT_DEV_STRING_ATTR_SHOW(uniq);
953
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500954static int input_print_modalias_bits(char *buf, int size,
955 char name, unsigned long *bm,
956 unsigned int min_bit, unsigned int max_bit)
Rusty Russell1d8f4302005-12-07 21:40:34 +0100957{
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500958 int len = 0, i;
Rusty Russell1d8f4302005-12-07 21:40:34 +0100959
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500960 len += snprintf(buf, max(size, 0), "%c", name);
961 for (i = min_bit; i < max_bit; i++)
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700962 if (bm[BIT_WORD(i)] & BIT_MASK(i))
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500963 len += snprintf(buf + len, max(size - len, 0), "%X,", i);
Kay Sieversbd37e5a2006-01-05 13:19:55 +0100964 return len;
965}
966
Dmitry Torokhov2db66872006-04-02 00:09:26 -0500967static int input_print_modalias(char *buf, int size, struct input_dev *id,
968 int add_cr)
Kay Sieversbd37e5a2006-01-05 13:19:55 +0100969{
970 int len;
971
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500972 len = snprintf(buf, max(size, 0),
973 "input:b%04Xv%04Xp%04Xe%04X-",
974 id->id.bustype, id->id.vendor,
975 id->id.product, id->id.version);
Kay Sieversbd37e5a2006-01-05 13:19:55 +0100976
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500977 len += input_print_modalias_bits(buf + len, size - len,
978 'e', id->evbit, 0, EV_MAX);
979 len += input_print_modalias_bits(buf + len, size - len,
980 'k', id->keybit, KEY_MIN_INTERESTING, KEY_MAX);
981 len += input_print_modalias_bits(buf + len, size - len,
982 'r', id->relbit, 0, REL_MAX);
983 len += input_print_modalias_bits(buf + len, size - len,
984 'a', id->absbit, 0, ABS_MAX);
985 len += input_print_modalias_bits(buf + len, size - len,
986 'm', id->mscbit, 0, MSC_MAX);
987 len += input_print_modalias_bits(buf + len, size - len,
988 'l', id->ledbit, 0, LED_MAX);
989 len += input_print_modalias_bits(buf + len, size - len,
990 's', id->sndbit, 0, SND_MAX);
991 len += input_print_modalias_bits(buf + len, size - len,
992 'f', id->ffbit, 0, FF_MAX);
993 len += input_print_modalias_bits(buf + len, size - len,
994 'w', id->swbit, 0, SW_MAX);
Dmitry Torokhov2db66872006-04-02 00:09:26 -0500995
996 if (add_cr)
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500997 len += snprintf(buf + len, max(size - len, 0), "\n");
Dmitry Torokhov2db66872006-04-02 00:09:26 -0500998
Rusty Russell1d8f4302005-12-07 21:40:34 +0100999 return len;
1000}
1001
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001002static ssize_t input_dev_show_modalias(struct device *dev,
1003 struct device_attribute *attr,
1004 char *buf)
Rusty Russell1d8f4302005-12-07 21:40:34 +01001005{
1006 struct input_dev *id = to_input_dev(dev);
Kay Sieversbd37e5a2006-01-05 13:19:55 +01001007 ssize_t len;
Rusty Russell1d8f4302005-12-07 21:40:34 +01001008
Dmitry Torokhov2db66872006-04-02 00:09:26 -05001009 len = input_print_modalias(buf, PAGE_SIZE, id, 1);
1010
Richard Purdie8a3cf452006-06-26 01:48:21 -04001011 return min_t(int, len, PAGE_SIZE);
Rusty Russell1d8f4302005-12-07 21:40:34 +01001012}
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001013static DEVICE_ATTR(modalias, S_IRUGO, input_dev_show_modalias, NULL);
Rusty Russell1d8f4302005-12-07 21:40:34 +01001014
Greg Kroah-Hartman629b77a2005-10-27 22:25:43 -07001015static struct attribute *input_dev_attrs[] = {
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001016 &dev_attr_name.attr,
1017 &dev_attr_phys.attr,
1018 &dev_attr_uniq.attr,
1019 &dev_attr_modalias.attr,
Greg Kroah-Hartman629b77a2005-10-27 22:25:43 -07001020 NULL
1021};
1022
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001023static struct attribute_group input_dev_attr_group = {
Greg Kroah-Hartman629b77a2005-10-27 22:25:43 -07001024 .attrs = input_dev_attrs,
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -05001025};
1026
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001027#define INPUT_DEV_ID_ATTR(name) \
1028static ssize_t input_dev_show_id_##name(struct device *dev, \
1029 struct device_attribute *attr, \
1030 char *buf) \
1031{ \
1032 struct input_dev *input_dev = to_input_dev(dev); \
1033 return scnprintf(buf, PAGE_SIZE, "%04x\n", input_dev->id.name); \
1034} \
1035static DEVICE_ATTR(name, S_IRUGO, input_dev_show_id_##name, NULL)
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -05001036
1037INPUT_DEV_ID_ATTR(bustype);
1038INPUT_DEV_ID_ATTR(vendor);
1039INPUT_DEV_ID_ATTR(product);
1040INPUT_DEV_ID_ATTR(version);
1041
1042static struct attribute *input_dev_id_attrs[] = {
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001043 &dev_attr_bustype.attr,
1044 &dev_attr_vendor.attr,
1045 &dev_attr_product.attr,
1046 &dev_attr_version.attr,
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -05001047 NULL
1048};
1049
1050static struct attribute_group input_dev_id_attr_group = {
1051 .name = "id",
1052 .attrs = input_dev_id_attrs,
1053};
1054
Dmitry Torokhov969b21c2006-04-02 00:09:34 -05001055static int input_print_bitmap(char *buf, int buf_size, unsigned long *bitmap,
1056 int max, int add_cr)
1057{
1058 int i;
1059 int len = 0;
1060
Jiri Slaby7b19ada2007-10-18 23:40:32 -07001061 for (i = BITS_TO_LONGS(max) - 1; i > 0; i--)
Dmitry Torokhov969b21c2006-04-02 00:09:34 -05001062 if (bitmap[i])
1063 break;
1064
1065 for (; i >= 0; i--)
1066 len += snprintf(buf + len, max(buf_size - len, 0),
1067 "%lx%s", bitmap[i], i > 0 ? " " : "");
1068
1069 if (add_cr)
1070 len += snprintf(buf + len, max(buf_size - len, 0), "\n");
1071
1072 return len;
1073}
1074
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001075#define INPUT_DEV_CAP_ATTR(ev, bm) \
1076static ssize_t input_dev_show_cap_##bm(struct device *dev, \
1077 struct device_attribute *attr, \
1078 char *buf) \
1079{ \
1080 struct input_dev *input_dev = to_input_dev(dev); \
1081 int len = input_print_bitmap(buf, PAGE_SIZE, \
1082 input_dev->bm##bit, ev##_MAX, 1); \
1083 return min_t(int, len, PAGE_SIZE); \
1084} \
1085static DEVICE_ATTR(bm, S_IRUGO, input_dev_show_cap_##bm, NULL)
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -05001086
1087INPUT_DEV_CAP_ATTR(EV, ev);
1088INPUT_DEV_CAP_ATTR(KEY, key);
1089INPUT_DEV_CAP_ATTR(REL, rel);
1090INPUT_DEV_CAP_ATTR(ABS, abs);
1091INPUT_DEV_CAP_ATTR(MSC, msc);
1092INPUT_DEV_CAP_ATTR(LED, led);
1093INPUT_DEV_CAP_ATTR(SND, snd);
1094INPUT_DEV_CAP_ATTR(FF, ff);
1095INPUT_DEV_CAP_ATTR(SW, sw);
1096
1097static struct attribute *input_dev_caps_attrs[] = {
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001098 &dev_attr_ev.attr,
1099 &dev_attr_key.attr,
1100 &dev_attr_rel.attr,
1101 &dev_attr_abs.attr,
1102 &dev_attr_msc.attr,
1103 &dev_attr_led.attr,
1104 &dev_attr_snd.attr,
1105 &dev_attr_ff.attr,
1106 &dev_attr_sw.attr,
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -05001107 NULL
1108};
1109
1110static struct attribute_group input_dev_caps_attr_group = {
1111 .name = "capabilities",
1112 .attrs = input_dev_caps_attrs,
1113};
1114
Dmitry Torokhovcb9def42007-03-07 23:20:26 -05001115static struct attribute_group *input_dev_attr_groups[] = {
1116 &input_dev_attr_group,
1117 &input_dev_id_attr_group,
1118 &input_dev_caps_attr_group,
1119 NULL
1120};
1121
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001122static void input_dev_release(struct device *device)
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001123{
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001124 struct input_dev *dev = to_input_dev(device);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001125
Anssi Hannula509ca1a2006-07-19 01:40:22 -04001126 input_ff_destroy(dev);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001127 kfree(dev);
Anssi Hannula509ca1a2006-07-19 01:40:22 -04001128
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001129 module_put(THIS_MODULE);
1130}
1131
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001132/*
Kay Sievers312c0042005-11-16 09:00:00 +01001133 * Input uevent interface - loading event handlers based on
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001134 * device bitfields.
1135 */
Kay Sievers7eff2e72007-08-14 15:15:12 +02001136static int input_add_uevent_bm_var(struct kobj_uevent_env *env,
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001137 const char *name, unsigned long *bitmap, int max)
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001138{
Kay Sievers7eff2e72007-08-14 15:15:12 +02001139 int len;
1140
1141 if (add_uevent_var(env, "%s=", name))
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001142 return -ENOMEM;
1143
Kay Sievers7eff2e72007-08-14 15:15:12 +02001144 len = input_print_bitmap(&env->buf[env->buflen - 1],
1145 sizeof(env->buf) - env->buflen,
1146 bitmap, max, 0);
1147 if (len >= (sizeof(env->buf) - env->buflen))
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001148 return -ENOMEM;
1149
Kay Sievers7eff2e72007-08-14 15:15:12 +02001150 env->buflen += len;
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001151 return 0;
1152}
1153
Kay Sievers7eff2e72007-08-14 15:15:12 +02001154static int input_add_uevent_modalias_var(struct kobj_uevent_env *env,
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001155 struct input_dev *dev)
1156{
Kay Sievers7eff2e72007-08-14 15:15:12 +02001157 int len;
1158
1159 if (add_uevent_var(env, "MODALIAS="))
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001160 return -ENOMEM;
1161
Kay Sievers7eff2e72007-08-14 15:15:12 +02001162 len = input_print_modalias(&env->buf[env->buflen - 1],
1163 sizeof(env->buf) - env->buflen,
1164 dev, 0);
1165 if (len >= (sizeof(env->buf) - env->buflen))
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001166 return -ENOMEM;
1167
Kay Sievers7eff2e72007-08-14 15:15:12 +02001168 env->buflen += len;
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001169 return 0;
1170}
1171
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001172#define INPUT_ADD_HOTPLUG_VAR(fmt, val...) \
1173 do { \
Kay Sievers7eff2e72007-08-14 15:15:12 +02001174 int err = add_uevent_var(env, fmt, val); \
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001175 if (err) \
1176 return err; \
1177 } while (0)
1178
1179#define INPUT_ADD_HOTPLUG_BM_VAR(name, bm, max) \
1180 do { \
Kay Sievers7eff2e72007-08-14 15:15:12 +02001181 int err = input_add_uevent_bm_var(env, name, bm, max); \
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001182 if (err) \
1183 return err; \
1184 } while (0)
1185
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001186#define INPUT_ADD_HOTPLUG_MODALIAS_VAR(dev) \
1187 do { \
Kay Sievers7eff2e72007-08-14 15:15:12 +02001188 int err = input_add_uevent_modalias_var(env, dev); \
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001189 if (err) \
1190 return err; \
1191 } while (0)
1192
Kay Sievers7eff2e72007-08-14 15:15:12 +02001193static int input_dev_uevent(struct device *device, struct kobj_uevent_env *env)
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001194{
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001195 struct input_dev *dev = to_input_dev(device);
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001196
1197 INPUT_ADD_HOTPLUG_VAR("PRODUCT=%x/%x/%x/%x",
1198 dev->id.bustype, dev->id.vendor,
1199 dev->id.product, dev->id.version);
1200 if (dev->name)
1201 INPUT_ADD_HOTPLUG_VAR("NAME=\"%s\"", dev->name);
1202 if (dev->phys)
1203 INPUT_ADD_HOTPLUG_VAR("PHYS=\"%s\"", dev->phys);
Dmitry Torokhov08de1f02005-11-08 21:34:29 -08001204 if (dev->uniq)
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001205 INPUT_ADD_HOTPLUG_VAR("UNIQ=\"%s\"", dev->uniq);
1206
1207 INPUT_ADD_HOTPLUG_BM_VAR("EV=", dev->evbit, EV_MAX);
1208 if (test_bit(EV_KEY, dev->evbit))
1209 INPUT_ADD_HOTPLUG_BM_VAR("KEY=", dev->keybit, KEY_MAX);
1210 if (test_bit(EV_REL, dev->evbit))
1211 INPUT_ADD_HOTPLUG_BM_VAR("REL=", dev->relbit, REL_MAX);
1212 if (test_bit(EV_ABS, dev->evbit))
1213 INPUT_ADD_HOTPLUG_BM_VAR("ABS=", dev->absbit, ABS_MAX);
1214 if (test_bit(EV_MSC, dev->evbit))
1215 INPUT_ADD_HOTPLUG_BM_VAR("MSC=", dev->mscbit, MSC_MAX);
1216 if (test_bit(EV_LED, dev->evbit))
1217 INPUT_ADD_HOTPLUG_BM_VAR("LED=", dev->ledbit, LED_MAX);
1218 if (test_bit(EV_SND, dev->evbit))
1219 INPUT_ADD_HOTPLUG_BM_VAR("SND=", dev->sndbit, SND_MAX);
1220 if (test_bit(EV_FF, dev->evbit))
1221 INPUT_ADD_HOTPLUG_BM_VAR("FF=", dev->ffbit, FF_MAX);
1222 if (test_bit(EV_SW, dev->evbit))
1223 INPUT_ADD_HOTPLUG_BM_VAR("SW=", dev->swbit, SW_MAX);
1224
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001225 INPUT_ADD_HOTPLUG_MODALIAS_VAR(dev);
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001226
1227 return 0;
1228}
1229
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001230static struct device_type input_dev_type = {
1231 .groups = input_dev_attr_groups,
1232 .release = input_dev_release,
1233 .uevent = input_dev_uevent,
1234};
1235
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -07001236struct class input_class = {
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001237 .name = "input",
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001238};
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001239EXPORT_SYMBOL_GPL(input_class);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001240
Dmitry Torokhov14471902006-11-02 23:26:55 -05001241/**
1242 * input_allocate_device - allocate memory for new input device
1243 *
1244 * Returns prepared struct input_dev or NULL.
1245 *
1246 * NOTE: Use input_free_device() to free devices that have not been
1247 * registered; input_unregister_device() should be used for already
1248 * registered devices.
1249 */
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001250struct input_dev *input_allocate_device(void)
1251{
1252 struct input_dev *dev;
1253
1254 dev = kzalloc(sizeof(struct input_dev), GFP_KERNEL);
1255 if (dev) {
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001256 dev->dev.type = &input_dev_type;
1257 dev->dev.class = &input_class;
1258 device_initialize(&dev->dev);
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -04001259 mutex_init(&dev->mutex);
Dmitry Torokhov80064792007-08-30 00:22:11 -04001260 spin_lock_init(&dev->event_lock);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001261 INIT_LIST_HEAD(&dev->h_list);
1262 INIT_LIST_HEAD(&dev->node);
Dmitry Torokhov655816e2006-09-14 01:32:14 -04001263
1264 __module_get(THIS_MODULE);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001265 }
1266
1267 return dev;
1268}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001269EXPORT_SYMBOL(input_allocate_device);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001270
Dmitry Torokhov14471902006-11-02 23:26:55 -05001271/**
1272 * input_free_device - free memory occupied by input_dev structure
1273 * @dev: input device to free
1274 *
1275 * This function should only be used if input_register_device()
1276 * was not called yet or if it failed. Once device was registered
1277 * use input_unregister_device() and memory will be freed once last
Dmitry Torokhov80064792007-08-30 00:22:11 -04001278 * reference to the device is dropped.
Dmitry Torokhov14471902006-11-02 23:26:55 -05001279 *
1280 * Device should be allocated by input_allocate_device().
1281 *
1282 * NOTE: If there are references to the input device then memory
1283 * will not be freed until last reference is dropped.
1284 */
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -04001285void input_free_device(struct input_dev *dev)
1286{
Dmitry Torokhov54f9e362007-03-16 00:57:25 -04001287 if (dev)
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -04001288 input_put_device(dev);
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -04001289}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001290EXPORT_SYMBOL(input_free_device);
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -04001291
Dmitry Torokhov534565f2007-04-25 00:53:18 -04001292/**
1293 * input_set_capability - mark device as capable of a certain event
1294 * @dev: device that is capable of emitting or accepting event
1295 * @type: type of the event (EV_KEY, EV_REL, etc...)
1296 * @code: event code
1297 *
1298 * In addition to setting up corresponding bit in appropriate capability
1299 * bitmap the function also adjusts dev->evbit.
1300 */
1301void input_set_capability(struct input_dev *dev, unsigned int type, unsigned int code)
1302{
1303 switch (type) {
1304 case EV_KEY:
1305 __set_bit(code, dev->keybit);
1306 break;
1307
1308 case EV_REL:
1309 __set_bit(code, dev->relbit);
1310 break;
1311
1312 case EV_ABS:
1313 __set_bit(code, dev->absbit);
1314 break;
1315
1316 case EV_MSC:
1317 __set_bit(code, dev->mscbit);
1318 break;
1319
1320 case EV_SW:
1321 __set_bit(code, dev->swbit);
1322 break;
1323
1324 case EV_LED:
1325 __set_bit(code, dev->ledbit);
1326 break;
1327
1328 case EV_SND:
1329 __set_bit(code, dev->sndbit);
1330 break;
1331
1332 case EV_FF:
1333 __set_bit(code, dev->ffbit);
1334 break;
1335
Dmitry Baryshkov22d1c392007-12-14 01:21:03 -05001336 case EV_PWR:
1337 /* do nothing */
1338 break;
1339
Dmitry Torokhov534565f2007-04-25 00:53:18 -04001340 default:
1341 printk(KERN_ERR
1342 "input_set_capability: unknown type %u (code %u)\n",
1343 type, code);
1344 dump_stack();
1345 return;
1346 }
1347
1348 __set_bit(type, dev->evbit);
1349}
1350EXPORT_SYMBOL(input_set_capability);
1351
Dmitry Torokhov80064792007-08-30 00:22:11 -04001352/**
1353 * input_register_device - register device with input core
1354 * @dev: device to be registered
1355 *
1356 * This function registers device with input core. The device must be
1357 * allocated with input_allocate_device() and all it's capabilities
1358 * set up before registering.
1359 * If function fails the device must be freed with input_free_device().
1360 * Once device has been successfully registered it can be unregistered
1361 * with input_unregister_device(); input_free_device() should not be
1362 * called in this case.
1363 */
Dmitry Torokhov5f945482005-11-02 22:51:46 -05001364int input_register_device(struct input_dev *dev)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001365{
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001366 static atomic_t input_no = ATOMIC_INIT(0);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001367 struct input_handler *handler;
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001368 const char *path;
1369 int error;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001370
Dmitry Torokhov80064792007-08-30 00:22:11 -04001371 __set_bit(EV_SYN, dev->evbit);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001372
1373 /*
1374 * If delay and period are pre-set by the driver, then autorepeating
1375 * is handled by the driver itself and we don't do it in input.c.
1376 */
1377
1378 init_timer(&dev->timer);
1379 if (!dev->rep[REP_DELAY] && !dev->rep[REP_PERIOD]) {
1380 dev->timer.data = (long) dev;
1381 dev->timer.function = input_repeat_key;
1382 dev->rep[REP_DELAY] = 250;
1383 dev->rep[REP_PERIOD] = 33;
1384 }
1385
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -04001386 if (!dev->getkeycode)
1387 dev->getkeycode = input_default_getkeycode;
1388
1389 if (!dev->setkeycode)
1390 dev->setkeycode = input_default_setkeycode;
1391
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001392 snprintf(dev->dev.bus_id, sizeof(dev->dev.bus_id),
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001393 "input%ld", (unsigned long) atomic_inc_return(&input_no) - 1);
1394
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001395 error = device_add(&dev->dev);
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001396 if (error)
1397 return error;
1398
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001399 path = kobject_get_path(&dev->dev.kobj, GFP_KERNEL);
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001400 printk(KERN_INFO "input: %s as %s\n",
1401 dev->name ? dev->name : "Unspecified device", path ? path : "N/A");
1402 kfree(path);
Greg Kroah-Hartman10204022005-10-27 22:25:43 -07001403
Dmitry Torokhov80064792007-08-30 00:22:11 -04001404 error = mutex_lock_interruptible(&input_mutex);
1405 if (error) {
1406 device_del(&dev->dev);
1407 return error;
1408 }
1409
1410 list_add_tail(&dev->node, &input_dev_list);
1411
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001412 list_for_each_entry(handler, &input_handler_list, node)
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001413 input_attach_handler(dev, handler);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001414
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001415 input_wakeup_procfs_readers();
Dmitry Torokhov5f945482005-11-02 22:51:46 -05001416
Dmitry Torokhov80064792007-08-30 00:22:11 -04001417 mutex_unlock(&input_mutex);
1418
Dmitry Torokhov5f945482005-11-02 22:51:46 -05001419 return 0;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001420}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001421EXPORT_SYMBOL(input_register_device);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001422
Dmitry Torokhov80064792007-08-30 00:22:11 -04001423/**
1424 * input_unregister_device - unregister previously registered device
1425 * @dev: device to be unregistered
1426 *
1427 * This function unregisters an input device. Once device is unregistered
1428 * the caller should not try to access it as it may get freed at any moment.
1429 */
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001430void input_unregister_device(struct input_dev *dev)
1431{
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001432 struct input_handle *handle, *next;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001433
Dmitry Torokhov80064792007-08-30 00:22:11 -04001434 input_disconnect_device(dev);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001435
Dmitry Torokhov80064792007-08-30 00:22:11 -04001436 mutex_lock(&input_mutex);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001437
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001438 list_for_each_entry_safe(handle, next, &dev->h_list, d_node)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001439 handle->handler->disconnect(handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001440 WARN_ON(!list_empty(&dev->h_list));
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001441
Dmitry Torokhov80064792007-08-30 00:22:11 -04001442 del_timer_sync(&dev->timer);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001443 list_del_init(&dev->node);
1444
1445 input_wakeup_procfs_readers();
Dmitry Torokhov80064792007-08-30 00:22:11 -04001446
1447 mutex_unlock(&input_mutex);
1448
1449 device_unregister(&dev->dev);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001450}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001451EXPORT_SYMBOL(input_unregister_device);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001452
Dmitry Torokhov80064792007-08-30 00:22:11 -04001453/**
1454 * input_register_handler - register a new input handler
1455 * @handler: handler to be registered
1456 *
1457 * This function registers a new input handler (interface) for input
1458 * devices in the system and attaches it to all input devices that
1459 * are compatible with the handler.
1460 */
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001461int input_register_handler(struct input_handler *handler)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001462{
1463 struct input_dev *dev;
Dmitry Torokhov80064792007-08-30 00:22:11 -04001464 int retval;
1465
1466 retval = mutex_lock_interruptible(&input_mutex);
1467 if (retval)
1468 return retval;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001469
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001470 INIT_LIST_HEAD(&handler->h_list);
1471
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001472 if (handler->fops != NULL) {
Dmitry Torokhov80064792007-08-30 00:22:11 -04001473 if (input_table[handler->minor >> 5]) {
1474 retval = -EBUSY;
1475 goto out;
1476 }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001477 input_table[handler->minor >> 5] = handler;
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001478 }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001479
1480 list_add_tail(&handler->node, &input_handler_list);
1481
1482 list_for_each_entry(dev, &input_dev_list, node)
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001483 input_attach_handler(dev, handler);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001484
1485 input_wakeup_procfs_readers();
Dmitry Torokhov80064792007-08-30 00:22:11 -04001486
1487 out:
1488 mutex_unlock(&input_mutex);
1489 return retval;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001490}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001491EXPORT_SYMBOL(input_register_handler);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001492
Dmitry Torokhov80064792007-08-30 00:22:11 -04001493/**
1494 * input_unregister_handler - unregisters an input handler
1495 * @handler: handler to be unregistered
1496 *
1497 * This function disconnects a handler from its input devices and
1498 * removes it from lists of known handlers.
1499 */
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001500void input_unregister_handler(struct input_handler *handler)
1501{
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001502 struct input_handle *handle, *next;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001503
Dmitry Torokhov80064792007-08-30 00:22:11 -04001504 mutex_lock(&input_mutex);
1505
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001506 list_for_each_entry_safe(handle, next, &handler->h_list, h_node)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001507 handler->disconnect(handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001508 WARN_ON(!list_empty(&handler->h_list));
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001509
1510 list_del_init(&handler->node);
1511
1512 if (handler->fops != NULL)
1513 input_table[handler->minor >> 5] = NULL;
1514
1515 input_wakeup_procfs_readers();
Dmitry Torokhov80064792007-08-30 00:22:11 -04001516
1517 mutex_unlock(&input_mutex);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001518}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001519EXPORT_SYMBOL(input_unregister_handler);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001520
Dmitry Torokhov80064792007-08-30 00:22:11 -04001521/**
1522 * input_register_handle - register a new input handle
1523 * @handle: handle to register
1524 *
1525 * This function puts a new input handle onto device's
1526 * and handler's lists so that events can flow through
1527 * it once it is opened using input_open_device().
1528 *
1529 * This function is supposed to be called from handler's
1530 * connect() method.
1531 */
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001532int input_register_handle(struct input_handle *handle)
1533{
1534 struct input_handler *handler = handle->handler;
Dmitry Torokhov80064792007-08-30 00:22:11 -04001535 struct input_dev *dev = handle->dev;
1536 int error;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001537
Dmitry Torokhov80064792007-08-30 00:22:11 -04001538 /*
1539 * We take dev->mutex here to prevent race with
1540 * input_release_device().
1541 */
1542 error = mutex_lock_interruptible(&dev->mutex);
1543 if (error)
1544 return error;
1545 list_add_tail_rcu(&handle->d_node, &dev->h_list);
1546 mutex_unlock(&dev->mutex);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -04001547 synchronize_rcu();
Dmitry Torokhov80064792007-08-30 00:22:11 -04001548
1549 /*
1550 * Since we are supposed to be called from ->connect()
1551 * which is mutually exclusive with ->disconnect()
1552 * we can't be racing with input_unregister_handle()
1553 * and so separate lock is not needed here.
1554 */
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001555 list_add_tail(&handle->h_node, &handler->h_list);
1556
1557 if (handler->start)
1558 handler->start(handle);
1559
1560 return 0;
1561}
1562EXPORT_SYMBOL(input_register_handle);
1563
Dmitry Torokhov80064792007-08-30 00:22:11 -04001564/**
1565 * input_unregister_handle - unregister an input handle
1566 * @handle: handle to unregister
1567 *
1568 * This function removes input handle from device's
1569 * and handler's lists.
1570 *
1571 * This function is supposed to be called from handler's
1572 * disconnect() method.
1573 */
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001574void input_unregister_handle(struct input_handle *handle)
1575{
Dmitry Torokhov80064792007-08-30 00:22:11 -04001576 struct input_dev *dev = handle->dev;
1577
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001578 list_del_init(&handle->h_node);
Dmitry Torokhov80064792007-08-30 00:22:11 -04001579
1580 /*
1581 * Take dev->mutex to prevent race with input_release_device().
1582 */
1583 mutex_lock(&dev->mutex);
1584 list_del_rcu(&handle->d_node);
1585 mutex_unlock(&dev->mutex);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -04001586 synchronize_rcu();
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001587}
1588EXPORT_SYMBOL(input_unregister_handle);
1589
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001590static int input_open_file(struct inode *inode, struct file *file)
1591{
Jonathan Corbet2edbf852008-05-15 10:37:16 -06001592 struct input_handler *handler;
Arjan van de Ven99ac48f2006-03-28 01:56:41 -08001593 const struct file_operations *old_fops, *new_fops = NULL;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001594 int err;
1595
Jonathan Corbet2edbf852008-05-15 10:37:16 -06001596 lock_kernel();
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001597 /* No load-on-demand here? */
Jonathan Corbet2edbf852008-05-15 10:37:16 -06001598 handler = input_table[iminor(inode) >> 5];
1599 if (!handler || !(new_fops = fops_get(handler->fops))) {
1600 err = -ENODEV;
1601 goto out;
1602 }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001603
1604 /*
1605 * That's _really_ odd. Usually NULL ->open means "nothing special",
1606 * not "no device". Oh, well...
1607 */
1608 if (!new_fops->open) {
1609 fops_put(new_fops);
Jonathan Corbet2edbf852008-05-15 10:37:16 -06001610 err = -ENODEV;
1611 goto out;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001612 }
1613 old_fops = file->f_op;
1614 file->f_op = new_fops;
1615
1616 err = new_fops->open(inode, file);
1617
1618 if (err) {
1619 fops_put(file->f_op);
1620 file->f_op = fops_get(old_fops);
1621 }
1622 fops_put(old_fops);
Jonathan Corbet2edbf852008-05-15 10:37:16 -06001623out:
1624 unlock_kernel();
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001625 return err;
1626}
1627
Arjan van de Ven2b8693c2007-02-12 00:55:32 -08001628static const struct file_operations input_fops = {
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001629 .owner = THIS_MODULE,
1630 .open = input_open_file,
1631};
1632
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633static int __init input_init(void)
1634{
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001635 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -07001637 err = class_register(&input_class);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001638 if (err) {
1639 printk(KERN_ERR "input: unable to register input_dev class\n");
1640 return err;
1641 }
1642
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001643 err = input_proc_init();
1644 if (err)
Greg Kroah-Hartmanb0fdfeb2005-10-27 22:25:43 -07001645 goto fail1;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001646
1647 err = register_chrdev(INPUT_MAJOR, "input", &input_fops);
1648 if (err) {
1649 printk(KERN_ERR "input: unable to register char major %d", INPUT_MAJOR);
Greg Kroah-Hartmanb0fdfeb2005-10-27 22:25:43 -07001650 goto fail2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001652
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001653 return 0;
1654
Greg Kroah-Hartmanb0fdfeb2005-10-27 22:25:43 -07001655 fail2: input_proc_exit();
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -07001656 fail1: class_unregister(&input_class);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001657 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658}
1659
1660static void __exit input_exit(void)
1661{
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001662 input_proc_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 unregister_chrdev(INPUT_MAJOR, "input");
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -07001664 class_unregister(&input_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665}
1666
1667subsys_initcall(input_init);
1668module_exit(input_exit);