blob: e54e002665b0c7d697ae9dc5cc0750747bde9069 [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
Henrik Rydberg61994a62009-04-28 07:45:31 -070032/*
33 * EV_ABS events which should not be cached are listed here.
34 */
35static unsigned int input_abs_bypass_init_data[] __initdata = {
Henrik Rydberg5e5ee682009-04-28 07:47:33 -070036 ABS_MT_TOUCH_MAJOR,
37 ABS_MT_TOUCH_MINOR,
38 ABS_MT_WIDTH_MAJOR,
39 ABS_MT_WIDTH_MINOR,
40 ABS_MT_ORIENTATION,
41 ABS_MT_POSITION_X,
42 ABS_MT_POSITION_Y,
43 ABS_MT_TOOL_TYPE,
44 ABS_MT_BLOB_ID,
Henrik Rydberg61994a62009-04-28 07:45:31 -070045 0
46};
47static unsigned long input_abs_bypass[BITS_TO_LONGS(ABS_CNT)];
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049static LIST_HEAD(input_dev_list);
50static LIST_HEAD(input_handler_list);
51
Dmitry Torokhov80064792007-08-30 00:22:11 -040052/*
53 * input_mutex protects access to both input_dev_list and input_handler_list.
54 * This also causes input_[un]register_device and input_[un]register_handler
55 * be mutually exclusive which simplifies locking in drivers implementing
56 * input handlers.
57 */
58static DEFINE_MUTEX(input_mutex);
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060static struct input_handler *input_table[8];
61
Dmitry Torokhov80064792007-08-30 00:22:11 -040062static inline int is_event_supported(unsigned int code,
63 unsigned long *bm, unsigned int max)
64{
65 return code <= max && test_bit(code, bm);
66}
67
68static int input_defuzz_abs_event(int value, int old_val, int fuzz)
69{
70 if (fuzz) {
71 if (value > old_val - fuzz / 2 && value < old_val + fuzz / 2)
72 return old_val;
73
74 if (value > old_val - fuzz && value < old_val + fuzz)
75 return (old_val * 3 + value) / 4;
76
77 if (value > old_val - fuzz * 2 && value < old_val + fuzz * 2)
78 return (old_val + value) / 2;
79 }
80
81 return value;
82}
83
84/*
85 * Pass event through all open handles. This function is called with
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -040086 * dev->event_lock held and interrupts disabled.
Dmitry Torokhov80064792007-08-30 00:22:11 -040087 */
88static void input_pass_event(struct input_dev *dev,
89 unsigned int type, unsigned int code, int value)
90{
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -040091 struct input_handle *handle;
Dmitry Torokhov80064792007-08-30 00:22:11 -040092
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -040093 rcu_read_lock();
94
95 handle = rcu_dereference(dev->grab);
Dmitry Torokhov80064792007-08-30 00:22:11 -040096 if (handle)
97 handle->handler->event(handle, type, code, value);
98 else
99 list_for_each_entry_rcu(handle, &dev->h_list, d_node)
100 if (handle->open)
101 handle->handler->event(handle,
102 type, code, value);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400103 rcu_read_unlock();
Dmitry Torokhov80064792007-08-30 00:22:11 -0400104}
105
106/*
107 * Generate software autorepeat event. Note that we take
108 * dev->event_lock here to avoid racing with input_event
109 * which may cause keys get "stuck".
110 */
111static void input_repeat_key(unsigned long data)
112{
113 struct input_dev *dev = (void *) data;
114 unsigned long flags;
115
116 spin_lock_irqsave(&dev->event_lock, flags);
117
118 if (test_bit(dev->repeat_key, dev->key) &&
119 is_event_supported(dev->repeat_key, dev->keybit, KEY_MAX)) {
120
121 input_pass_event(dev, EV_KEY, dev->repeat_key, 2);
122
123 if (dev->sync) {
124 /*
125 * Only send SYN_REPORT if we are not in a middle
126 * of driver parsing a new hardware packet.
127 * Otherwise assume that the driver will send
128 * SYN_REPORT once it's done.
129 */
130 input_pass_event(dev, EV_SYN, SYN_REPORT, 1);
131 }
132
133 if (dev->rep[REP_PERIOD])
134 mod_timer(&dev->timer, jiffies +
135 msecs_to_jiffies(dev->rep[REP_PERIOD]));
136 }
137
138 spin_unlock_irqrestore(&dev->event_lock, flags);
139}
140
141static void input_start_autorepeat(struct input_dev *dev, int code)
142{
143 if (test_bit(EV_REP, dev->evbit) &&
144 dev->rep[REP_PERIOD] && dev->rep[REP_DELAY] &&
145 dev->timer.data) {
146 dev->repeat_key = code;
147 mod_timer(&dev->timer,
148 jiffies + msecs_to_jiffies(dev->rep[REP_DELAY]));
149 }
150}
151
Johannes Berge7b5c1e2009-01-29 23:17:52 -0800152static void input_stop_autorepeat(struct input_dev *dev)
153{
154 del_timer(&dev->timer);
155}
156
Dmitry Torokhov80064792007-08-30 00:22:11 -0400157#define INPUT_IGNORE_EVENT 0
158#define INPUT_PASS_TO_HANDLERS 1
159#define INPUT_PASS_TO_DEVICE 2
160#define INPUT_PASS_TO_ALL (INPUT_PASS_TO_HANDLERS | INPUT_PASS_TO_DEVICE)
161
162static void input_handle_event(struct input_dev *dev,
163 unsigned int type, unsigned int code, int value)
164{
165 int disposition = INPUT_IGNORE_EVENT;
166
167 switch (type) {
168
169 case EV_SYN:
170 switch (code) {
171 case SYN_CONFIG:
172 disposition = INPUT_PASS_TO_ALL;
173 break;
174
175 case SYN_REPORT:
176 if (!dev->sync) {
177 dev->sync = 1;
178 disposition = INPUT_PASS_TO_HANDLERS;
179 }
180 break;
Henrik Rydberg5e5ee682009-04-28 07:47:33 -0700181 case SYN_MT_REPORT:
182 dev->sync = 0;
183 disposition = INPUT_PASS_TO_HANDLERS;
184 break;
Dmitry Torokhov80064792007-08-30 00:22:11 -0400185 }
186 break;
187
188 case EV_KEY:
189 if (is_event_supported(code, dev->keybit, KEY_MAX) &&
190 !!test_bit(code, dev->key) != value) {
191
192 if (value != 2) {
193 __change_bit(code, dev->key);
194 if (value)
195 input_start_autorepeat(dev, code);
Johannes Berge7b5c1e2009-01-29 23:17:52 -0800196 else
197 input_stop_autorepeat(dev);
Dmitry Torokhov80064792007-08-30 00:22:11 -0400198 }
199
200 disposition = INPUT_PASS_TO_HANDLERS;
201 }
202 break;
203
204 case EV_SW:
205 if (is_event_supported(code, dev->swbit, SW_MAX) &&
206 !!test_bit(code, dev->sw) != value) {
207
208 __change_bit(code, dev->sw);
209 disposition = INPUT_PASS_TO_HANDLERS;
210 }
211 break;
212
213 case EV_ABS:
214 if (is_event_supported(code, dev->absbit, ABS_MAX)) {
215
Henrik Rydberg61994a62009-04-28 07:45:31 -0700216 if (test_bit(code, input_abs_bypass)) {
217 disposition = INPUT_PASS_TO_HANDLERS;
218 break;
219 }
220
Dmitry Torokhov80064792007-08-30 00:22:11 -0400221 value = input_defuzz_abs_event(value,
222 dev->abs[code], dev->absfuzz[code]);
223
224 if (dev->abs[code] != value) {
225 dev->abs[code] = value;
226 disposition = INPUT_PASS_TO_HANDLERS;
227 }
228 }
229 break;
230
231 case EV_REL:
232 if (is_event_supported(code, dev->relbit, REL_MAX) && value)
233 disposition = INPUT_PASS_TO_HANDLERS;
234
235 break;
236
237 case EV_MSC:
238 if (is_event_supported(code, dev->mscbit, MSC_MAX))
239 disposition = INPUT_PASS_TO_ALL;
240
241 break;
242
243 case EV_LED:
244 if (is_event_supported(code, dev->ledbit, LED_MAX) &&
245 !!test_bit(code, dev->led) != value) {
246
247 __change_bit(code, dev->led);
248 disposition = INPUT_PASS_TO_ALL;
249 }
250 break;
251
252 case EV_SND:
253 if (is_event_supported(code, dev->sndbit, SND_MAX)) {
254
255 if (!!test_bit(code, dev->snd) != !!value)
256 __change_bit(code, dev->snd);
257 disposition = INPUT_PASS_TO_ALL;
258 }
259 break;
260
261 case EV_REP:
262 if (code <= REP_MAX && value >= 0 && dev->rep[code] != value) {
263 dev->rep[code] = value;
264 disposition = INPUT_PASS_TO_ALL;
265 }
266 break;
267
268 case EV_FF:
269 if (value >= 0)
270 disposition = INPUT_PASS_TO_ALL;
271 break;
Richard Purdieed2fa4d2008-01-03 10:46:21 -0500272
273 case EV_PWR:
274 disposition = INPUT_PASS_TO_ALL;
275 break;
Dmitry Torokhov80064792007-08-30 00:22:11 -0400276 }
277
Dmitry Torokhovc9812282008-06-02 01:02:40 -0400278 if (disposition != INPUT_IGNORE_EVENT && type != EV_SYN)
Dmitry Torokhov80064792007-08-30 00:22:11 -0400279 dev->sync = 0;
280
281 if ((disposition & INPUT_PASS_TO_DEVICE) && dev->event)
282 dev->event(dev, type, code, value);
283
284 if (disposition & INPUT_PASS_TO_HANDLERS)
285 input_pass_event(dev, type, code, value);
286}
287
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400288/**
289 * input_event() - report new input event
Dmitry Torokhov14471902006-11-02 23:26:55 -0500290 * @dev: device that generated the event
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400291 * @type: type of the event
292 * @code: event code
293 * @value: value of the event
294 *
Dmitry Torokhov80064792007-08-30 00:22:11 -0400295 * This function should be used by drivers implementing various input
296 * devices. See also input_inject_event().
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400297 */
Dmitry Torokhov80064792007-08-30 00:22:11 -0400298
299void input_event(struct input_dev *dev,
300 unsigned int type, unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400302 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Dmitry Torokhov80064792007-08-30 00:22:11 -0400304 if (is_event_supported(type, dev->evbit, EV_MAX)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Dmitry Torokhov80064792007-08-30 00:22:11 -0400306 spin_lock_irqsave(&dev->event_lock, flags);
307 add_input_randomness(type, code, value);
308 input_handle_event(dev, type, code, value);
309 spin_unlock_irqrestore(&dev->event_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400312EXPORT_SYMBOL(input_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400314/**
315 * input_inject_event() - send input event from input handler
316 * @handle: input handle to send event through
317 * @type: type of the event
318 * @code: event code
319 * @value: value of the event
320 *
Dmitry Torokhov80064792007-08-30 00:22:11 -0400321 * Similar to input_event() but will ignore event if device is
322 * "grabbed" and handle injecting event is not the one that owns
323 * the device.
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400324 */
Dmitry Torokhov80064792007-08-30 00:22:11 -0400325void input_inject_event(struct input_handle *handle,
326 unsigned int type, unsigned int code, int value)
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400327{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400328 struct input_dev *dev = handle->dev;
329 struct input_handle *grab;
330 unsigned long flags;
331
332 if (is_event_supported(type, dev->evbit, EV_MAX)) {
333 spin_lock_irqsave(&dev->event_lock, flags);
334
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400335 rcu_read_lock();
Dmitry Torokhov80064792007-08-30 00:22:11 -0400336 grab = rcu_dereference(dev->grab);
337 if (!grab || grab == handle)
338 input_handle_event(dev, type, code, value);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400339 rcu_read_unlock();
Dmitry Torokhov80064792007-08-30 00:22:11 -0400340
341 spin_unlock_irqrestore(&dev->event_lock, flags);
342 }
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400343}
344EXPORT_SYMBOL(input_inject_event);
345
Dmitry Torokhov80064792007-08-30 00:22:11 -0400346/**
347 * input_grab_device - grabs device for exclusive use
348 * @handle: input handle that wants to own the device
349 *
350 * When a device is grabbed by an input handle all events generated by
351 * the device are delivered only to this handle. Also events injected
352 * by other input handles are ignored while device is grabbed.
353 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354int input_grab_device(struct input_handle *handle)
355{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400356 struct input_dev *dev = handle->dev;
357 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Dmitry Torokhov80064792007-08-30 00:22:11 -0400359 retval = mutex_lock_interruptible(&dev->mutex);
360 if (retval)
361 return retval;
362
363 if (dev->grab) {
364 retval = -EBUSY;
365 goto out;
366 }
367
368 rcu_assign_pointer(dev->grab, handle);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400369 synchronize_rcu();
Dmitry Torokhov80064792007-08-30 00:22:11 -0400370
371 out:
372 mutex_unlock(&dev->mutex);
373 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400375EXPORT_SYMBOL(input_grab_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Dmitry Torokhov80064792007-08-30 00:22:11 -0400377static void __input_release_device(struct input_handle *handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378{
Andrew Mortona2b2ed22006-07-15 01:17:38 -0400379 struct input_dev *dev = handle->dev;
Dmitry Torokhovc7e8dc62006-07-06 00:21:03 -0400380
Andrew Mortona2b2ed22006-07-15 01:17:38 -0400381 if (dev->grab == handle) {
Dmitry Torokhov80064792007-08-30 00:22:11 -0400382 rcu_assign_pointer(dev->grab, NULL);
383 /* Make sure input_pass_event() notices that grab is gone */
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400384 synchronize_rcu();
Andrew Mortona2b2ed22006-07-15 01:17:38 -0400385
386 list_for_each_entry(handle, &dev->h_list, d_node)
Dmitry Torokhov80064792007-08-30 00:22:11 -0400387 if (handle->open && handle->handler->start)
Dmitry Torokhovc7e8dc62006-07-06 00:21:03 -0400388 handle->handler->start(handle);
389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390}
Dmitry Torokhov80064792007-08-30 00:22:11 -0400391
392/**
393 * input_release_device - release previously grabbed device
394 * @handle: input handle that owns the device
395 *
396 * Releases previously grabbed device so that other input handles can
397 * start receiving input events. Upon release all handlers attached
398 * to the device have their start() method called so they have a change
399 * to synchronize device state with the rest of the system.
400 */
401void input_release_device(struct input_handle *handle)
402{
403 struct input_dev *dev = handle->dev;
404
405 mutex_lock(&dev->mutex);
406 __input_release_device(handle);
407 mutex_unlock(&dev->mutex);
408}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400409EXPORT_SYMBOL(input_release_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Dmitry Torokhov80064792007-08-30 00:22:11 -0400411/**
412 * input_open_device - open input device
413 * @handle: handle through which device is being accessed
414 *
415 * This function should be called by input handlers when they
416 * want to start receive events from given input device.
417 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418int input_open_device(struct input_handle *handle)
419{
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500420 struct input_dev *dev = handle->dev;
Dmitry Torokhov80064792007-08-30 00:22:11 -0400421 int retval;
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500422
Dmitry Torokhov80064792007-08-30 00:22:11 -0400423 retval = mutex_lock_interruptible(&dev->mutex);
424 if (retval)
425 return retval;
426
427 if (dev->going_away) {
428 retval = -ENODEV;
429 goto out;
430 }
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 handle->open++;
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500433
434 if (!dev->users++ && dev->open)
Dmitry Torokhov80064792007-08-30 00:22:11 -0400435 retval = dev->open(dev);
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500436
Dmitry Torokhov80064792007-08-30 00:22:11 -0400437 if (retval) {
438 dev->users--;
439 if (!--handle->open) {
440 /*
441 * Make sure we are not delivering any more events
442 * through this handle
443 */
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400444 synchronize_rcu();
Dmitry Torokhov80064792007-08-30 00:22:11 -0400445 }
446 }
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500447
Dmitry Torokhov80064792007-08-30 00:22:11 -0400448 out:
Jes Sorensene676c232006-02-19 00:21:46 -0500449 mutex_unlock(&dev->mutex);
Dmitry Torokhov80064792007-08-30 00:22:11 -0400450 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400452EXPORT_SYMBOL(input_open_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Dmitry Torokhov80064792007-08-30 00:22:11 -0400454int input_flush_device(struct input_handle *handle, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400456 struct input_dev *dev = handle->dev;
457 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Dmitry Torokhov80064792007-08-30 00:22:11 -0400459 retval = mutex_lock_interruptible(&dev->mutex);
460 if (retval)
461 return retval;
462
463 if (dev->flush)
464 retval = dev->flush(dev, file);
465
466 mutex_unlock(&dev->mutex);
467 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400469EXPORT_SYMBOL(input_flush_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
Dmitry Torokhov80064792007-08-30 00:22:11 -0400471/**
472 * input_close_device - close input device
473 * @handle: handle through which device is being accessed
474 *
475 * This function should be called by input handlers when they
476 * want to stop receive events from given input device.
477 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478void input_close_device(struct input_handle *handle)
479{
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500480 struct input_dev *dev = handle->dev;
481
Jes Sorensene676c232006-02-19 00:21:46 -0500482 mutex_lock(&dev->mutex);
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500483
Dmitry Torokhov80064792007-08-30 00:22:11 -0400484 __input_release_device(handle);
485
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500486 if (!--dev->users && dev->close)
487 dev->close(dev);
Dmitry Torokhov80064792007-08-30 00:22:11 -0400488
489 if (!--handle->open) {
490 /*
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400491 * synchronize_rcu() makes sure that input_pass_event()
Dmitry Torokhov80064792007-08-30 00:22:11 -0400492 * completed and that no more input events are delivered
493 * through this handle
494 */
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400495 synchronize_rcu();
Dmitry Torokhov80064792007-08-30 00:22:11 -0400496 }
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500497
Jes Sorensene676c232006-02-19 00:21:46 -0500498 mutex_unlock(&dev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400500EXPORT_SYMBOL(input_close_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Dmitry Torokhov80064792007-08-30 00:22:11 -0400502/*
503 * Prepare device for unregistering
504 */
505static void input_disconnect_device(struct input_dev *dev)
506{
507 struct input_handle *handle;
508 int code;
509
510 /*
511 * Mark device as going away. Note that we take dev->mutex here
512 * not to protect access to dev->going_away but rather to ensure
513 * that there are no threads in the middle of input_open_device()
514 */
515 mutex_lock(&dev->mutex);
516 dev->going_away = 1;
517 mutex_unlock(&dev->mutex);
518
519 spin_lock_irq(&dev->event_lock);
520
521 /*
522 * Simulate keyup events for all pressed keys so that handlers
523 * are not left with "stuck" keys. The driver may continue
524 * generate events even after we done here but they will not
525 * reach any handlers.
526 */
527 if (is_event_supported(EV_KEY, dev->evbit, EV_MAX)) {
528 for (code = 0; code <= KEY_MAX; code++) {
529 if (is_event_supported(code, dev->keybit, KEY_MAX) &&
Dmitry Torokhovf4f37c82007-11-04 00:41:12 -0400530 __test_and_clear_bit(code, dev->key)) {
Dmitry Torokhov80064792007-08-30 00:22:11 -0400531 input_pass_event(dev, EV_KEY, code, 0);
532 }
533 }
534 input_pass_event(dev, EV_SYN, SYN_REPORT, 1);
535 }
536
537 list_for_each_entry(handle, &dev->h_list, d_node)
538 handle->open = 0;
539
540 spin_unlock_irq(&dev->event_lock);
541}
542
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400543static int input_fetch_keycode(struct input_dev *dev, int scancode)
544{
545 switch (dev->keycodesize) {
546 case 1:
547 return ((u8 *)dev->keycode)[scancode];
548
549 case 2:
550 return ((u16 *)dev->keycode)[scancode];
551
552 default:
553 return ((u32 *)dev->keycode)[scancode];
554 }
555}
556
557static int input_default_getkeycode(struct input_dev *dev,
558 int scancode, int *keycode)
559{
560 if (!dev->keycodesize)
561 return -EINVAL;
562
Dmitry Torokhovf4f37c82007-11-04 00:41:12 -0400563 if (scancode >= dev->keycodemax)
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400564 return -EINVAL;
565
566 *keycode = input_fetch_keycode(dev, scancode);
567
568 return 0;
569}
570
571static int input_default_setkeycode(struct input_dev *dev,
572 int scancode, int keycode)
573{
574 int old_keycode;
575 int i;
576
Dmitry Torokhovf4f37c82007-11-04 00:41:12 -0400577 if (scancode >= dev->keycodemax)
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400578 return -EINVAL;
579
580 if (!dev->keycodesize)
581 return -EINVAL;
582
583 if (dev->keycodesize < sizeof(keycode) && (keycode >> (dev->keycodesize * 8)))
584 return -EINVAL;
585
586 switch (dev->keycodesize) {
587 case 1: {
588 u8 *k = (u8 *)dev->keycode;
589 old_keycode = k[scancode];
590 k[scancode] = keycode;
591 break;
592 }
593 case 2: {
594 u16 *k = (u16 *)dev->keycode;
595 old_keycode = k[scancode];
596 k[scancode] = keycode;
597 break;
598 }
599 default: {
600 u32 *k = (u32 *)dev->keycode;
601 old_keycode = k[scancode];
602 k[scancode] = keycode;
603 break;
604 }
605 }
606
607 clear_bit(old_keycode, dev->keybit);
608 set_bit(keycode, dev->keybit);
609
610 for (i = 0; i < dev->keycodemax; i++) {
611 if (input_fetch_keycode(dev, i) == old_keycode) {
612 set_bit(old_keycode, dev->keybit);
613 break; /* Setting the bit twice is useless, so break */
614 }
615 }
616
617 return 0;
618}
619
Dmitry Torokhovf4f37c82007-11-04 00:41:12 -0400620/**
621 * input_get_keycode - retrieve keycode currently mapped to a given scancode
622 * @dev: input device which keymap is being queried
623 * @scancode: scancode (or its equivalent for device in question) for which
624 * keycode is needed
625 * @keycode: result
626 *
627 * This function should be called by anyone interested in retrieving current
628 * keymap. Presently keyboard and evdev handlers use it.
629 */
630int input_get_keycode(struct input_dev *dev, int scancode, int *keycode)
631{
632 if (scancode < 0)
633 return -EINVAL;
634
635 return dev->getkeycode(dev, scancode, keycode);
636}
637EXPORT_SYMBOL(input_get_keycode);
638
639/**
640 * input_get_keycode - assign new keycode to a given scancode
641 * @dev: input device which keymap is being updated
642 * @scancode: scancode (or its equivalent for device in question)
643 * @keycode: new keycode to be assigned to the scancode
644 *
645 * This function should be called by anyone needing to update current
646 * keymap. Presently keyboard and evdev handlers use it.
647 */
648int input_set_keycode(struct input_dev *dev, int scancode, int keycode)
649{
650 unsigned long flags;
651 int old_keycode;
652 int retval;
653
654 if (scancode < 0)
655 return -EINVAL;
656
657 if (keycode < 0 || keycode > KEY_MAX)
658 return -EINVAL;
659
660 spin_lock_irqsave(&dev->event_lock, flags);
661
662 retval = dev->getkeycode(dev, scancode, &old_keycode);
663 if (retval)
664 goto out;
665
666 retval = dev->setkeycode(dev, scancode, keycode);
667 if (retval)
668 goto out;
669
670 /*
671 * Simulate keyup event if keycode is not present
672 * in the keymap anymore
673 */
674 if (test_bit(EV_KEY, dev->evbit) &&
675 !is_event_supported(old_keycode, dev->keybit, KEY_MAX) &&
676 __test_and_clear_bit(old_keycode, dev->key)) {
677
678 input_pass_event(dev, EV_KEY, old_keycode, 0);
679 if (dev->sync)
680 input_pass_event(dev, EV_SYN, SYN_REPORT, 1);
681 }
682
683 out:
684 spin_unlock_irqrestore(&dev->event_lock, flags);
685
686 return retval;
687}
688EXPORT_SYMBOL(input_set_keycode);
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400689
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690#define MATCH_BIT(bit, max) \
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700691 for (i = 0; i < BITS_TO_LONGS(max); i++) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 if ((id->bit[i] & dev->bit[i]) != id->bit[i]) \
693 break; \
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700694 if (i != BITS_TO_LONGS(max)) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 continue;
696
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400697static const struct input_device_id *input_match_device(const struct input_device_id *id,
698 struct input_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699{
700 int i;
701
702 for (; id->flags || id->driver_info; id++) {
703
704 if (id->flags & INPUT_DEVICE_ID_MATCH_BUS)
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400705 if (id->bustype != dev->id.bustype)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 continue;
707
708 if (id->flags & INPUT_DEVICE_ID_MATCH_VENDOR)
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400709 if (id->vendor != dev->id.vendor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 continue;
711
712 if (id->flags & INPUT_DEVICE_ID_MATCH_PRODUCT)
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400713 if (id->product != dev->id.product)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 continue;
715
716 if (id->flags & INPUT_DEVICE_ID_MATCH_VERSION)
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400717 if (id->version != dev->id.version)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 continue;
719
720 MATCH_BIT(evbit, EV_MAX);
721 MATCH_BIT(keybit, KEY_MAX);
722 MATCH_BIT(relbit, REL_MAX);
723 MATCH_BIT(absbit, ABS_MAX);
724 MATCH_BIT(mscbit, MSC_MAX);
725 MATCH_BIT(ledbit, LED_MAX);
726 MATCH_BIT(sndbit, SND_MAX);
727 MATCH_BIT(ffbit, FF_MAX);
Dmitry Torokhovff13f982005-09-24 02:02:29 -0500728 MATCH_BIT(swbit, SW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
730 return id;
731 }
732
733 return NULL;
734}
735
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400736static int input_attach_handler(struct input_dev *dev, struct input_handler *handler)
737{
738 const struct input_device_id *id;
739 int error;
740
741 if (handler->blacklist && input_match_device(handler->blacklist, dev))
742 return -ENODEV;
743
744 id = input_match_device(handler->id_table, dev);
745 if (!id)
746 return -ENODEV;
747
748 error = handler->connect(handler, dev, id);
749 if (error && error != -ENODEV)
750 printk(KERN_ERR
751 "input: failed to attach handler %s to device %s, "
752 "error: %d\n",
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400753 handler->name, kobject_name(&dev->dev.kobj), error);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400754
755 return error;
756}
757
758
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759#ifdef CONFIG_PROC_FS
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500760
761static struct proc_dir_entry *proc_bus_input_dir;
762static DECLARE_WAIT_QUEUE_HEAD(input_devices_poll_wait);
763static int input_devices_state;
764
765static inline void input_wakeup_procfs_readers(void)
766{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 input_devices_state++;
768 wake_up(&input_devices_poll_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769}
770
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500771static unsigned int input_proc_devices_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772{
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500773 poll_wait(file, &input_devices_poll_wait, wait);
Dmitry Torokhovfa886612009-03-04 00:52:20 -0800774 if (file->f_version != input_devices_state) {
775 file->f_version = input_devices_state;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500776 return POLLIN | POLLRDNORM;
Dmitry Torokhovfa886612009-03-04 00:52:20 -0800777 }
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400778
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500779 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780}
781
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500782static void *input_devices_seq_start(struct seq_file *seq, loff_t *pos)
783{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400784 if (mutex_lock_interruptible(&input_mutex))
785 return NULL;
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500786
Pavel Emelianovad5d9722007-07-18 00:38:32 -0400787 return seq_list_start(&input_dev_list, *pos);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500788}
789
790static void *input_devices_seq_next(struct seq_file *seq, void *v, loff_t *pos)
791{
Pavel Emelianovad5d9722007-07-18 00:38:32 -0400792 return seq_list_next(v, &input_dev_list, pos);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500793}
794
795static void input_devices_seq_stop(struct seq_file *seq, void *v)
796{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400797 mutex_unlock(&input_mutex);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500798}
799
800static void input_seq_print_bitmap(struct seq_file *seq, const char *name,
801 unsigned long *bitmap, int max)
802{
803 int i;
804
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700805 for (i = BITS_TO_LONGS(max) - 1; i > 0; i--)
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500806 if (bitmap[i])
807 break;
808
809 seq_printf(seq, "B: %s=", name);
810 for (; i >= 0; i--)
811 seq_printf(seq, "%lx%s", bitmap[i], i > 0 ? " " : "");
812 seq_putc(seq, '\n');
813}
814
815static int input_devices_seq_show(struct seq_file *seq, void *v)
816{
817 struct input_dev *dev = container_of(v, struct input_dev, node);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400818 const char *path = kobject_get_path(&dev->dev.kobj, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 struct input_handle *handle;
820
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500821 seq_printf(seq, "I: Bus=%04x Vendor=%04x Product=%04x Version=%04x\n",
822 dev->id.bustype, dev->id.vendor, dev->id.product, dev->id.version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500824 seq_printf(seq, "N: Name=\"%s\"\n", dev->name ? dev->name : "");
825 seq_printf(seq, "P: Phys=%s\n", dev->phys ? dev->phys : "");
826 seq_printf(seq, "S: Sysfs=%s\n", path ? path : "");
Dmitry Torokhov15e03ae2007-03-07 23:20:17 -0500827 seq_printf(seq, "U: Uniq=%s\n", dev->uniq ? dev->uniq : "");
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500828 seq_printf(seq, "H: Handlers=");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500830 list_for_each_entry(handle, &dev->h_list, d_node)
831 seq_printf(seq, "%s ", handle->name);
832 seq_putc(seq, '\n');
Dmitry Torokhov051b2fe2005-09-15 02:01:54 -0500833
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500834 input_seq_print_bitmap(seq, "EV", dev->evbit, EV_MAX);
835 if (test_bit(EV_KEY, dev->evbit))
836 input_seq_print_bitmap(seq, "KEY", dev->keybit, KEY_MAX);
837 if (test_bit(EV_REL, dev->evbit))
838 input_seq_print_bitmap(seq, "REL", dev->relbit, REL_MAX);
839 if (test_bit(EV_ABS, dev->evbit))
840 input_seq_print_bitmap(seq, "ABS", dev->absbit, ABS_MAX);
841 if (test_bit(EV_MSC, dev->evbit))
842 input_seq_print_bitmap(seq, "MSC", dev->mscbit, MSC_MAX);
843 if (test_bit(EV_LED, dev->evbit))
844 input_seq_print_bitmap(seq, "LED", dev->ledbit, LED_MAX);
845 if (test_bit(EV_SND, dev->evbit))
846 input_seq_print_bitmap(seq, "SND", dev->sndbit, SND_MAX);
847 if (test_bit(EV_FF, dev->evbit))
848 input_seq_print_bitmap(seq, "FF", dev->ffbit, FF_MAX);
849 if (test_bit(EV_SW, dev->evbit))
850 input_seq_print_bitmap(seq, "SW", dev->swbit, SW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500852 seq_putc(seq, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500854 kfree(path);
855 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856}
857
Jan Engelhardtcec69c32008-01-31 00:43:32 -0500858static const struct seq_operations input_devices_seq_ops = {
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500859 .start = input_devices_seq_start,
860 .next = input_devices_seq_next,
861 .stop = input_devices_seq_stop,
862 .show = input_devices_seq_show,
863};
864
865static int input_proc_devices_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866{
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500867 return seq_open(file, &input_devices_seq_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868}
869
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800870static const struct file_operations input_devices_fileops = {
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500871 .owner = THIS_MODULE,
872 .open = input_proc_devices_open,
873 .poll = input_proc_devices_poll,
874 .read = seq_read,
875 .llseek = seq_lseek,
876 .release = seq_release,
877};
878
879static void *input_handlers_seq_start(struct seq_file *seq, loff_t *pos)
880{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400881 if (mutex_lock_interruptible(&input_mutex))
882 return NULL;
883
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500884 seq->private = (void *)(unsigned long)*pos;
Pavel Emelianovad5d9722007-07-18 00:38:32 -0400885 return seq_list_start(&input_handler_list, *pos);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500886}
887
888static void *input_handlers_seq_next(struct seq_file *seq, void *v, loff_t *pos)
889{
890 seq->private = (void *)(unsigned long)(*pos + 1);
Pavel Emelianovad5d9722007-07-18 00:38:32 -0400891 return seq_list_next(v, &input_handler_list, pos);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500892}
893
894static void input_handlers_seq_stop(struct seq_file *seq, void *v)
895{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400896 mutex_unlock(&input_mutex);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500897}
898
899static int input_handlers_seq_show(struct seq_file *seq, void *v)
900{
901 struct input_handler *handler = container_of(v, struct input_handler, node);
902
903 seq_printf(seq, "N: Number=%ld Name=%s",
904 (unsigned long)seq->private, handler->name);
905 if (handler->fops)
906 seq_printf(seq, " Minor=%d", handler->minor);
907 seq_putc(seq, '\n');
908
909 return 0;
910}
Jan Engelhardtcec69c32008-01-31 00:43:32 -0500911static const struct seq_operations input_handlers_seq_ops = {
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500912 .start = input_handlers_seq_start,
913 .next = input_handlers_seq_next,
914 .stop = input_handlers_seq_stop,
915 .show = input_handlers_seq_show,
916};
917
918static int input_proc_handlers_open(struct inode *inode, struct file *file)
919{
920 return seq_open(file, &input_handlers_seq_ops);
921}
922
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800923static const struct file_operations input_handlers_fileops = {
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500924 .owner = THIS_MODULE,
925 .open = input_proc_handlers_open,
926 .read = seq_read,
927 .llseek = seq_lseek,
928 .release = seq_release,
929};
Luke Kosewskie334016fc2005-06-01 02:39:28 -0500930
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931static int __init input_proc_init(void)
932{
933 struct proc_dir_entry *entry;
934
Alexey Dobriyan9c370662008-04-29 01:01:41 -0700935 proc_bus_input_dir = proc_mkdir("bus/input", NULL);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500936 if (!proc_bus_input_dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 return -ENOMEM;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500938
Denis V. Lunevc7705f32008-04-29 01:02:35 -0700939 entry = proc_create("devices", 0, proc_bus_input_dir,
940 &input_devices_fileops);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500941 if (!entry)
942 goto fail1;
943
Denis V. Lunevc7705f32008-04-29 01:02:35 -0700944 entry = proc_create("handlers", 0, proc_bus_input_dir,
945 &input_handlers_fileops);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500946 if (!entry)
947 goto fail2;
948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 return 0;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500950
951 fail2: remove_proc_entry("devices", proc_bus_input_dir);
Alexey Dobriyan9c370662008-04-29 01:01:41 -0700952 fail1: remove_proc_entry("bus/input", NULL);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500953 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954}
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500955
Andrew Mortonbeffbdc2005-07-01 23:54:30 -0500956static void input_proc_exit(void)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500957{
958 remove_proc_entry("devices", proc_bus_input_dir);
959 remove_proc_entry("handlers", proc_bus_input_dir);
Alexey Dobriyan9c370662008-04-29 01:01:41 -0700960 remove_proc_entry("bus/input", NULL);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500961}
962
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963#else /* !CONFIG_PROC_FS */
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500964static inline void input_wakeup_procfs_readers(void) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965static inline int input_proc_init(void) { return 0; }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500966static inline void input_proc_exit(void) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967#endif
968
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400969#define INPUT_DEV_STRING_ATTR_SHOW(name) \
970static ssize_t input_dev_show_##name(struct device *dev, \
971 struct device_attribute *attr, \
972 char *buf) \
973{ \
974 struct input_dev *input_dev = to_input_dev(dev); \
975 \
976 return scnprintf(buf, PAGE_SIZE, "%s\n", \
977 input_dev->name ? input_dev->name : ""); \
978} \
979static DEVICE_ATTR(name, S_IRUGO, input_dev_show_##name, NULL)
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -0500980
981INPUT_DEV_STRING_ATTR_SHOW(name);
982INPUT_DEV_STRING_ATTR_SHOW(phys);
983INPUT_DEV_STRING_ATTR_SHOW(uniq);
984
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500985static int input_print_modalias_bits(char *buf, int size,
986 char name, unsigned long *bm,
987 unsigned int min_bit, unsigned int max_bit)
Rusty Russell1d8f4302005-12-07 21:40:34 +0100988{
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500989 int len = 0, i;
Rusty Russell1d8f4302005-12-07 21:40:34 +0100990
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500991 len += snprintf(buf, max(size, 0), "%c", name);
992 for (i = min_bit; i < max_bit; i++)
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700993 if (bm[BIT_WORD(i)] & BIT_MASK(i))
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500994 len += snprintf(buf + len, max(size - len, 0), "%X,", i);
Kay Sieversbd37e5a2006-01-05 13:19:55 +0100995 return len;
996}
997
Dmitry Torokhov2db66872006-04-02 00:09:26 -0500998static int input_print_modalias(char *buf, int size, struct input_dev *id,
999 int add_cr)
Kay Sieversbd37e5a2006-01-05 13:19:55 +01001000{
1001 int len;
1002
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001003 len = snprintf(buf, max(size, 0),
1004 "input:b%04Xv%04Xp%04Xe%04X-",
1005 id->id.bustype, id->id.vendor,
1006 id->id.product, id->id.version);
Kay Sieversbd37e5a2006-01-05 13:19:55 +01001007
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001008 len += input_print_modalias_bits(buf + len, size - len,
1009 'e', id->evbit, 0, EV_MAX);
1010 len += input_print_modalias_bits(buf + len, size - len,
1011 'k', id->keybit, KEY_MIN_INTERESTING, KEY_MAX);
1012 len += input_print_modalias_bits(buf + len, size - len,
1013 'r', id->relbit, 0, REL_MAX);
1014 len += input_print_modalias_bits(buf + len, size - len,
1015 'a', id->absbit, 0, ABS_MAX);
1016 len += input_print_modalias_bits(buf + len, size - len,
1017 'm', id->mscbit, 0, MSC_MAX);
1018 len += input_print_modalias_bits(buf + len, size - len,
1019 'l', id->ledbit, 0, LED_MAX);
1020 len += input_print_modalias_bits(buf + len, size - len,
1021 's', id->sndbit, 0, SND_MAX);
1022 len += input_print_modalias_bits(buf + len, size - len,
1023 'f', id->ffbit, 0, FF_MAX);
1024 len += input_print_modalias_bits(buf + len, size - len,
1025 'w', id->swbit, 0, SW_MAX);
Dmitry Torokhov2db66872006-04-02 00:09:26 -05001026
1027 if (add_cr)
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001028 len += snprintf(buf + len, max(size - len, 0), "\n");
Dmitry Torokhov2db66872006-04-02 00:09:26 -05001029
Rusty Russell1d8f4302005-12-07 21:40:34 +01001030 return len;
1031}
1032
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001033static ssize_t input_dev_show_modalias(struct device *dev,
1034 struct device_attribute *attr,
1035 char *buf)
Rusty Russell1d8f4302005-12-07 21:40:34 +01001036{
1037 struct input_dev *id = to_input_dev(dev);
Kay Sieversbd37e5a2006-01-05 13:19:55 +01001038 ssize_t len;
Rusty Russell1d8f4302005-12-07 21:40:34 +01001039
Dmitry Torokhov2db66872006-04-02 00:09:26 -05001040 len = input_print_modalias(buf, PAGE_SIZE, id, 1);
1041
Richard Purdie8a3cf452006-06-26 01:48:21 -04001042 return min_t(int, len, PAGE_SIZE);
Rusty Russell1d8f4302005-12-07 21:40:34 +01001043}
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001044static DEVICE_ATTR(modalias, S_IRUGO, input_dev_show_modalias, NULL);
Rusty Russell1d8f4302005-12-07 21:40:34 +01001045
Greg Kroah-Hartman629b77a2005-10-27 22:25:43 -07001046static struct attribute *input_dev_attrs[] = {
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001047 &dev_attr_name.attr,
1048 &dev_attr_phys.attr,
1049 &dev_attr_uniq.attr,
1050 &dev_attr_modalias.attr,
Greg Kroah-Hartman629b77a2005-10-27 22:25:43 -07001051 NULL
1052};
1053
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001054static struct attribute_group input_dev_attr_group = {
Greg Kroah-Hartman629b77a2005-10-27 22:25:43 -07001055 .attrs = input_dev_attrs,
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -05001056};
1057
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001058#define INPUT_DEV_ID_ATTR(name) \
1059static ssize_t input_dev_show_id_##name(struct device *dev, \
1060 struct device_attribute *attr, \
1061 char *buf) \
1062{ \
1063 struct input_dev *input_dev = to_input_dev(dev); \
1064 return scnprintf(buf, PAGE_SIZE, "%04x\n", input_dev->id.name); \
1065} \
1066static DEVICE_ATTR(name, S_IRUGO, input_dev_show_id_##name, NULL)
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -05001067
1068INPUT_DEV_ID_ATTR(bustype);
1069INPUT_DEV_ID_ATTR(vendor);
1070INPUT_DEV_ID_ATTR(product);
1071INPUT_DEV_ID_ATTR(version);
1072
1073static struct attribute *input_dev_id_attrs[] = {
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001074 &dev_attr_bustype.attr,
1075 &dev_attr_vendor.attr,
1076 &dev_attr_product.attr,
1077 &dev_attr_version.attr,
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -05001078 NULL
1079};
1080
1081static struct attribute_group input_dev_id_attr_group = {
1082 .name = "id",
1083 .attrs = input_dev_id_attrs,
1084};
1085
Dmitry Torokhov969b21c2006-04-02 00:09:34 -05001086static int input_print_bitmap(char *buf, int buf_size, unsigned long *bitmap,
1087 int max, int add_cr)
1088{
1089 int i;
1090 int len = 0;
1091
Jiri Slaby7b19ada2007-10-18 23:40:32 -07001092 for (i = BITS_TO_LONGS(max) - 1; i > 0; i--)
Dmitry Torokhov969b21c2006-04-02 00:09:34 -05001093 if (bitmap[i])
1094 break;
1095
1096 for (; i >= 0; i--)
1097 len += snprintf(buf + len, max(buf_size - len, 0),
1098 "%lx%s", bitmap[i], i > 0 ? " " : "");
1099
1100 if (add_cr)
1101 len += snprintf(buf + len, max(buf_size - len, 0), "\n");
1102
1103 return len;
1104}
1105
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001106#define INPUT_DEV_CAP_ATTR(ev, bm) \
1107static ssize_t input_dev_show_cap_##bm(struct device *dev, \
1108 struct device_attribute *attr, \
1109 char *buf) \
1110{ \
1111 struct input_dev *input_dev = to_input_dev(dev); \
1112 int len = input_print_bitmap(buf, PAGE_SIZE, \
1113 input_dev->bm##bit, ev##_MAX, 1); \
1114 return min_t(int, len, PAGE_SIZE); \
1115} \
1116static DEVICE_ATTR(bm, S_IRUGO, input_dev_show_cap_##bm, NULL)
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -05001117
1118INPUT_DEV_CAP_ATTR(EV, ev);
1119INPUT_DEV_CAP_ATTR(KEY, key);
1120INPUT_DEV_CAP_ATTR(REL, rel);
1121INPUT_DEV_CAP_ATTR(ABS, abs);
1122INPUT_DEV_CAP_ATTR(MSC, msc);
1123INPUT_DEV_CAP_ATTR(LED, led);
1124INPUT_DEV_CAP_ATTR(SND, snd);
1125INPUT_DEV_CAP_ATTR(FF, ff);
1126INPUT_DEV_CAP_ATTR(SW, sw);
1127
1128static struct attribute *input_dev_caps_attrs[] = {
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001129 &dev_attr_ev.attr,
1130 &dev_attr_key.attr,
1131 &dev_attr_rel.attr,
1132 &dev_attr_abs.attr,
1133 &dev_attr_msc.attr,
1134 &dev_attr_led.attr,
1135 &dev_attr_snd.attr,
1136 &dev_attr_ff.attr,
1137 &dev_attr_sw.attr,
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -05001138 NULL
1139};
1140
1141static struct attribute_group input_dev_caps_attr_group = {
1142 .name = "capabilities",
1143 .attrs = input_dev_caps_attrs,
1144};
1145
Dmitry Torokhovcb9def42007-03-07 23:20:26 -05001146static struct attribute_group *input_dev_attr_groups[] = {
1147 &input_dev_attr_group,
1148 &input_dev_id_attr_group,
1149 &input_dev_caps_attr_group,
1150 NULL
1151};
1152
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001153static void input_dev_release(struct device *device)
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001154{
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001155 struct input_dev *dev = to_input_dev(device);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001156
Anssi Hannula509ca1a2006-07-19 01:40:22 -04001157 input_ff_destroy(dev);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001158 kfree(dev);
Anssi Hannula509ca1a2006-07-19 01:40:22 -04001159
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001160 module_put(THIS_MODULE);
1161}
1162
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001163/*
Kay Sievers312c0042005-11-16 09:00:00 +01001164 * Input uevent interface - loading event handlers based on
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001165 * device bitfields.
1166 */
Kay Sievers7eff2e72007-08-14 15:15:12 +02001167static int input_add_uevent_bm_var(struct kobj_uevent_env *env,
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001168 const char *name, unsigned long *bitmap, int max)
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001169{
Kay Sievers7eff2e72007-08-14 15:15:12 +02001170 int len;
1171
1172 if (add_uevent_var(env, "%s=", name))
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001173 return -ENOMEM;
1174
Kay Sievers7eff2e72007-08-14 15:15:12 +02001175 len = input_print_bitmap(&env->buf[env->buflen - 1],
1176 sizeof(env->buf) - env->buflen,
1177 bitmap, max, 0);
1178 if (len >= (sizeof(env->buf) - env->buflen))
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001179 return -ENOMEM;
1180
Kay Sievers7eff2e72007-08-14 15:15:12 +02001181 env->buflen += len;
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001182 return 0;
1183}
1184
Kay Sievers7eff2e72007-08-14 15:15:12 +02001185static int input_add_uevent_modalias_var(struct kobj_uevent_env *env,
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001186 struct input_dev *dev)
1187{
Kay Sievers7eff2e72007-08-14 15:15:12 +02001188 int len;
1189
1190 if (add_uevent_var(env, "MODALIAS="))
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001191 return -ENOMEM;
1192
Kay Sievers7eff2e72007-08-14 15:15:12 +02001193 len = input_print_modalias(&env->buf[env->buflen - 1],
1194 sizeof(env->buf) - env->buflen,
1195 dev, 0);
1196 if (len >= (sizeof(env->buf) - env->buflen))
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001197 return -ENOMEM;
1198
Kay Sievers7eff2e72007-08-14 15:15:12 +02001199 env->buflen += len;
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001200 return 0;
1201}
1202
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001203#define INPUT_ADD_HOTPLUG_VAR(fmt, val...) \
1204 do { \
Kay Sievers7eff2e72007-08-14 15:15:12 +02001205 int err = add_uevent_var(env, fmt, val); \
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001206 if (err) \
1207 return err; \
1208 } while (0)
1209
1210#define INPUT_ADD_HOTPLUG_BM_VAR(name, bm, max) \
1211 do { \
Kay Sievers7eff2e72007-08-14 15:15:12 +02001212 int err = input_add_uevent_bm_var(env, name, bm, max); \
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001213 if (err) \
1214 return err; \
1215 } while (0)
1216
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001217#define INPUT_ADD_HOTPLUG_MODALIAS_VAR(dev) \
1218 do { \
Kay Sievers7eff2e72007-08-14 15:15:12 +02001219 int err = input_add_uevent_modalias_var(env, dev); \
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001220 if (err) \
1221 return err; \
1222 } while (0)
1223
Kay Sievers7eff2e72007-08-14 15:15:12 +02001224static int input_dev_uevent(struct device *device, struct kobj_uevent_env *env)
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001225{
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001226 struct input_dev *dev = to_input_dev(device);
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001227
1228 INPUT_ADD_HOTPLUG_VAR("PRODUCT=%x/%x/%x/%x",
1229 dev->id.bustype, dev->id.vendor,
1230 dev->id.product, dev->id.version);
1231 if (dev->name)
1232 INPUT_ADD_HOTPLUG_VAR("NAME=\"%s\"", dev->name);
1233 if (dev->phys)
1234 INPUT_ADD_HOTPLUG_VAR("PHYS=\"%s\"", dev->phys);
Dmitry Torokhov08de1f02005-11-08 21:34:29 -08001235 if (dev->uniq)
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001236 INPUT_ADD_HOTPLUG_VAR("UNIQ=\"%s\"", dev->uniq);
1237
1238 INPUT_ADD_HOTPLUG_BM_VAR("EV=", dev->evbit, EV_MAX);
1239 if (test_bit(EV_KEY, dev->evbit))
1240 INPUT_ADD_HOTPLUG_BM_VAR("KEY=", dev->keybit, KEY_MAX);
1241 if (test_bit(EV_REL, dev->evbit))
1242 INPUT_ADD_HOTPLUG_BM_VAR("REL=", dev->relbit, REL_MAX);
1243 if (test_bit(EV_ABS, dev->evbit))
1244 INPUT_ADD_HOTPLUG_BM_VAR("ABS=", dev->absbit, ABS_MAX);
1245 if (test_bit(EV_MSC, dev->evbit))
1246 INPUT_ADD_HOTPLUG_BM_VAR("MSC=", dev->mscbit, MSC_MAX);
1247 if (test_bit(EV_LED, dev->evbit))
1248 INPUT_ADD_HOTPLUG_BM_VAR("LED=", dev->ledbit, LED_MAX);
1249 if (test_bit(EV_SND, dev->evbit))
1250 INPUT_ADD_HOTPLUG_BM_VAR("SND=", dev->sndbit, SND_MAX);
1251 if (test_bit(EV_FF, dev->evbit))
1252 INPUT_ADD_HOTPLUG_BM_VAR("FF=", dev->ffbit, FF_MAX);
1253 if (test_bit(EV_SW, dev->evbit))
1254 INPUT_ADD_HOTPLUG_BM_VAR("SW=", dev->swbit, SW_MAX);
1255
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001256 INPUT_ADD_HOTPLUG_MODALIAS_VAR(dev);
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001257
1258 return 0;
1259}
1260
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001261static struct device_type input_dev_type = {
1262 .groups = input_dev_attr_groups,
1263 .release = input_dev_release,
1264 .uevent = input_dev_uevent,
1265};
1266
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -07001267struct class input_class = {
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001268 .name = "input",
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001269};
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001270EXPORT_SYMBOL_GPL(input_class);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001271
Dmitry Torokhov14471902006-11-02 23:26:55 -05001272/**
1273 * input_allocate_device - allocate memory for new input device
1274 *
1275 * Returns prepared struct input_dev or NULL.
1276 *
1277 * NOTE: Use input_free_device() to free devices that have not been
1278 * registered; input_unregister_device() should be used for already
1279 * registered devices.
1280 */
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001281struct input_dev *input_allocate_device(void)
1282{
1283 struct input_dev *dev;
1284
1285 dev = kzalloc(sizeof(struct input_dev), GFP_KERNEL);
1286 if (dev) {
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001287 dev->dev.type = &input_dev_type;
1288 dev->dev.class = &input_class;
1289 device_initialize(&dev->dev);
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -04001290 mutex_init(&dev->mutex);
Dmitry Torokhov80064792007-08-30 00:22:11 -04001291 spin_lock_init(&dev->event_lock);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001292 INIT_LIST_HEAD(&dev->h_list);
1293 INIT_LIST_HEAD(&dev->node);
Dmitry Torokhov655816e2006-09-14 01:32:14 -04001294
1295 __module_get(THIS_MODULE);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001296 }
1297
1298 return dev;
1299}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001300EXPORT_SYMBOL(input_allocate_device);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001301
Dmitry Torokhov14471902006-11-02 23:26:55 -05001302/**
1303 * input_free_device - free memory occupied by input_dev structure
1304 * @dev: input device to free
1305 *
1306 * This function should only be used if input_register_device()
1307 * was not called yet or if it failed. Once device was registered
1308 * use input_unregister_device() and memory will be freed once last
Dmitry Torokhov80064792007-08-30 00:22:11 -04001309 * reference to the device is dropped.
Dmitry Torokhov14471902006-11-02 23:26:55 -05001310 *
1311 * Device should be allocated by input_allocate_device().
1312 *
1313 * NOTE: If there are references to the input device then memory
1314 * will not be freed until last reference is dropped.
1315 */
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -04001316void input_free_device(struct input_dev *dev)
1317{
Dmitry Torokhov54f9e362007-03-16 00:57:25 -04001318 if (dev)
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -04001319 input_put_device(dev);
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -04001320}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001321EXPORT_SYMBOL(input_free_device);
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -04001322
Dmitry Torokhov534565f2007-04-25 00:53:18 -04001323/**
1324 * input_set_capability - mark device as capable of a certain event
1325 * @dev: device that is capable of emitting or accepting event
1326 * @type: type of the event (EV_KEY, EV_REL, etc...)
1327 * @code: event code
1328 *
1329 * In addition to setting up corresponding bit in appropriate capability
1330 * bitmap the function also adjusts dev->evbit.
1331 */
1332void input_set_capability(struct input_dev *dev, unsigned int type, unsigned int code)
1333{
1334 switch (type) {
1335 case EV_KEY:
1336 __set_bit(code, dev->keybit);
1337 break;
1338
1339 case EV_REL:
1340 __set_bit(code, dev->relbit);
1341 break;
1342
1343 case EV_ABS:
1344 __set_bit(code, dev->absbit);
1345 break;
1346
1347 case EV_MSC:
1348 __set_bit(code, dev->mscbit);
1349 break;
1350
1351 case EV_SW:
1352 __set_bit(code, dev->swbit);
1353 break;
1354
1355 case EV_LED:
1356 __set_bit(code, dev->ledbit);
1357 break;
1358
1359 case EV_SND:
1360 __set_bit(code, dev->sndbit);
1361 break;
1362
1363 case EV_FF:
1364 __set_bit(code, dev->ffbit);
1365 break;
1366
Dmitry Baryshkov22d1c392007-12-14 01:21:03 -05001367 case EV_PWR:
1368 /* do nothing */
1369 break;
1370
Dmitry Torokhov534565f2007-04-25 00:53:18 -04001371 default:
1372 printk(KERN_ERR
1373 "input_set_capability: unknown type %u (code %u)\n",
1374 type, code);
1375 dump_stack();
1376 return;
1377 }
1378
1379 __set_bit(type, dev->evbit);
1380}
1381EXPORT_SYMBOL(input_set_capability);
1382
Dmitry Torokhov80064792007-08-30 00:22:11 -04001383/**
1384 * input_register_device - register device with input core
1385 * @dev: device to be registered
1386 *
1387 * This function registers device with input core. The device must be
1388 * allocated with input_allocate_device() and all it's capabilities
1389 * set up before registering.
1390 * If function fails the device must be freed with input_free_device().
1391 * Once device has been successfully registered it can be unregistered
1392 * with input_unregister_device(); input_free_device() should not be
1393 * called in this case.
1394 */
Dmitry Torokhov5f945482005-11-02 22:51:46 -05001395int input_register_device(struct input_dev *dev)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001396{
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001397 static atomic_t input_no = ATOMIC_INIT(0);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001398 struct input_handler *handler;
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001399 const char *path;
1400 int error;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001401
Dmitry Torokhov80064792007-08-30 00:22:11 -04001402 __set_bit(EV_SYN, dev->evbit);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001403
1404 /*
1405 * If delay and period are pre-set by the driver, then autorepeating
1406 * is handled by the driver itself and we don't do it in input.c.
1407 */
1408
1409 init_timer(&dev->timer);
1410 if (!dev->rep[REP_DELAY] && !dev->rep[REP_PERIOD]) {
1411 dev->timer.data = (long) dev;
1412 dev->timer.function = input_repeat_key;
1413 dev->rep[REP_DELAY] = 250;
1414 dev->rep[REP_PERIOD] = 33;
1415 }
1416
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -04001417 if (!dev->getkeycode)
1418 dev->getkeycode = input_default_getkeycode;
1419
1420 if (!dev->setkeycode)
1421 dev->setkeycode = input_default_setkeycode;
1422
Kay Sieversa6c24902008-10-30 00:07:50 -04001423 dev_set_name(&dev->dev, "input%ld",
1424 (unsigned long) atomic_inc_return(&input_no) - 1);
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001425
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001426 error = device_add(&dev->dev);
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001427 if (error)
1428 return error;
1429
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001430 path = kobject_get_path(&dev->dev.kobj, GFP_KERNEL);
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001431 printk(KERN_INFO "input: %s as %s\n",
1432 dev->name ? dev->name : "Unspecified device", path ? path : "N/A");
1433 kfree(path);
Greg Kroah-Hartman10204022005-10-27 22:25:43 -07001434
Dmitry Torokhov80064792007-08-30 00:22:11 -04001435 error = mutex_lock_interruptible(&input_mutex);
1436 if (error) {
1437 device_del(&dev->dev);
1438 return error;
1439 }
1440
1441 list_add_tail(&dev->node, &input_dev_list);
1442
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001443 list_for_each_entry(handler, &input_handler_list, node)
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001444 input_attach_handler(dev, handler);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001445
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001446 input_wakeup_procfs_readers();
Dmitry Torokhov5f945482005-11-02 22:51:46 -05001447
Dmitry Torokhov80064792007-08-30 00:22:11 -04001448 mutex_unlock(&input_mutex);
1449
Dmitry Torokhov5f945482005-11-02 22:51:46 -05001450 return 0;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001451}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001452EXPORT_SYMBOL(input_register_device);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001453
Dmitry Torokhov80064792007-08-30 00:22:11 -04001454/**
1455 * input_unregister_device - unregister previously registered device
1456 * @dev: device to be unregistered
1457 *
1458 * This function unregisters an input device. Once device is unregistered
1459 * the caller should not try to access it as it may get freed at any moment.
1460 */
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001461void input_unregister_device(struct input_dev *dev)
1462{
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001463 struct input_handle *handle, *next;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001464
Dmitry Torokhov80064792007-08-30 00:22:11 -04001465 input_disconnect_device(dev);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001466
Dmitry Torokhov80064792007-08-30 00:22:11 -04001467 mutex_lock(&input_mutex);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001468
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001469 list_for_each_entry_safe(handle, next, &dev->h_list, d_node)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001470 handle->handler->disconnect(handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001471 WARN_ON(!list_empty(&dev->h_list));
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001472
Dmitry Torokhov80064792007-08-30 00:22:11 -04001473 del_timer_sync(&dev->timer);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001474 list_del_init(&dev->node);
1475
1476 input_wakeup_procfs_readers();
Dmitry Torokhov80064792007-08-30 00:22:11 -04001477
1478 mutex_unlock(&input_mutex);
1479
1480 device_unregister(&dev->dev);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001481}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001482EXPORT_SYMBOL(input_unregister_device);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001483
Dmitry Torokhov80064792007-08-30 00:22:11 -04001484/**
1485 * input_register_handler - register a new input handler
1486 * @handler: handler to be registered
1487 *
1488 * This function registers a new input handler (interface) for input
1489 * devices in the system and attaches it to all input devices that
1490 * are compatible with the handler.
1491 */
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001492int input_register_handler(struct input_handler *handler)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001493{
1494 struct input_dev *dev;
Dmitry Torokhov80064792007-08-30 00:22:11 -04001495 int retval;
1496
1497 retval = mutex_lock_interruptible(&input_mutex);
1498 if (retval)
1499 return retval;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001500
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001501 INIT_LIST_HEAD(&handler->h_list);
1502
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001503 if (handler->fops != NULL) {
Dmitry Torokhov80064792007-08-30 00:22:11 -04001504 if (input_table[handler->minor >> 5]) {
1505 retval = -EBUSY;
1506 goto out;
1507 }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001508 input_table[handler->minor >> 5] = handler;
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001509 }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001510
1511 list_add_tail(&handler->node, &input_handler_list);
1512
1513 list_for_each_entry(dev, &input_dev_list, node)
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001514 input_attach_handler(dev, handler);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001515
1516 input_wakeup_procfs_readers();
Dmitry Torokhov80064792007-08-30 00:22:11 -04001517
1518 out:
1519 mutex_unlock(&input_mutex);
1520 return retval;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001521}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001522EXPORT_SYMBOL(input_register_handler);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001523
Dmitry Torokhov80064792007-08-30 00:22:11 -04001524/**
1525 * input_unregister_handler - unregisters an input handler
1526 * @handler: handler to be unregistered
1527 *
1528 * This function disconnects a handler from its input devices and
1529 * removes it from lists of known handlers.
1530 */
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001531void input_unregister_handler(struct input_handler *handler)
1532{
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001533 struct input_handle *handle, *next;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001534
Dmitry Torokhov80064792007-08-30 00:22:11 -04001535 mutex_lock(&input_mutex);
1536
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001537 list_for_each_entry_safe(handle, next, &handler->h_list, h_node)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001538 handler->disconnect(handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001539 WARN_ON(!list_empty(&handler->h_list));
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001540
1541 list_del_init(&handler->node);
1542
1543 if (handler->fops != NULL)
1544 input_table[handler->minor >> 5] = NULL;
1545
1546 input_wakeup_procfs_readers();
Dmitry Torokhov80064792007-08-30 00:22:11 -04001547
1548 mutex_unlock(&input_mutex);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001549}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001550EXPORT_SYMBOL(input_unregister_handler);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001551
Dmitry Torokhov80064792007-08-30 00:22:11 -04001552/**
1553 * input_register_handle - register a new input handle
1554 * @handle: handle to register
1555 *
1556 * This function puts a new input handle onto device's
1557 * and handler's lists so that events can flow through
1558 * it once it is opened using input_open_device().
1559 *
1560 * This function is supposed to be called from handler's
1561 * connect() method.
1562 */
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001563int input_register_handle(struct input_handle *handle)
1564{
1565 struct input_handler *handler = handle->handler;
Dmitry Torokhov80064792007-08-30 00:22:11 -04001566 struct input_dev *dev = handle->dev;
1567 int error;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001568
Dmitry Torokhov80064792007-08-30 00:22:11 -04001569 /*
1570 * We take dev->mutex here to prevent race with
1571 * input_release_device().
1572 */
1573 error = mutex_lock_interruptible(&dev->mutex);
1574 if (error)
1575 return error;
1576 list_add_tail_rcu(&handle->d_node, &dev->h_list);
1577 mutex_unlock(&dev->mutex);
Dmitry Torokhov80064792007-08-30 00:22:11 -04001578
1579 /*
1580 * Since we are supposed to be called from ->connect()
1581 * which is mutually exclusive with ->disconnect()
1582 * we can't be racing with input_unregister_handle()
1583 * and so separate lock is not needed here.
1584 */
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001585 list_add_tail(&handle->h_node, &handler->h_list);
1586
1587 if (handler->start)
1588 handler->start(handle);
1589
1590 return 0;
1591}
1592EXPORT_SYMBOL(input_register_handle);
1593
Dmitry Torokhov80064792007-08-30 00:22:11 -04001594/**
1595 * input_unregister_handle - unregister an input handle
1596 * @handle: handle to unregister
1597 *
1598 * This function removes input handle from device's
1599 * and handler's lists.
1600 *
1601 * This function is supposed to be called from handler's
1602 * disconnect() method.
1603 */
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001604void input_unregister_handle(struct input_handle *handle)
1605{
Dmitry Torokhov80064792007-08-30 00:22:11 -04001606 struct input_dev *dev = handle->dev;
1607
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001608 list_del_init(&handle->h_node);
Dmitry Torokhov80064792007-08-30 00:22:11 -04001609
1610 /*
1611 * Take dev->mutex to prevent race with input_release_device().
1612 */
1613 mutex_lock(&dev->mutex);
1614 list_del_rcu(&handle->d_node);
1615 mutex_unlock(&dev->mutex);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -04001616 synchronize_rcu();
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001617}
1618EXPORT_SYMBOL(input_unregister_handle);
1619
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001620static int input_open_file(struct inode *inode, struct file *file)
1621{
Jonathan Corbet2edbf852008-05-15 10:37:16 -06001622 struct input_handler *handler;
Arjan van de Ven99ac48f2006-03-28 01:56:41 -08001623 const struct file_operations *old_fops, *new_fops = NULL;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001624 int err;
1625
Jonathan Corbet2edbf852008-05-15 10:37:16 -06001626 lock_kernel();
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001627 /* No load-on-demand here? */
Jonathan Corbet2edbf852008-05-15 10:37:16 -06001628 handler = input_table[iminor(inode) >> 5];
1629 if (!handler || !(new_fops = fops_get(handler->fops))) {
1630 err = -ENODEV;
1631 goto out;
1632 }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001633
1634 /*
1635 * That's _really_ odd. Usually NULL ->open means "nothing special",
1636 * not "no device". Oh, well...
1637 */
1638 if (!new_fops->open) {
1639 fops_put(new_fops);
Jonathan Corbet2edbf852008-05-15 10:37:16 -06001640 err = -ENODEV;
1641 goto out;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001642 }
1643 old_fops = file->f_op;
1644 file->f_op = new_fops;
1645
1646 err = new_fops->open(inode, file);
1647
1648 if (err) {
1649 fops_put(file->f_op);
1650 file->f_op = fops_get(old_fops);
1651 }
1652 fops_put(old_fops);
Jonathan Corbet2edbf852008-05-15 10:37:16 -06001653out:
1654 unlock_kernel();
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001655 return err;
1656}
1657
Arjan van de Ven2b8693c2007-02-12 00:55:32 -08001658static const struct file_operations input_fops = {
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001659 .owner = THIS_MODULE,
1660 .open = input_open_file,
1661};
1662
Henrik Rydberg61994a62009-04-28 07:45:31 -07001663static void __init input_init_abs_bypass(void)
1664{
1665 const unsigned int *p;
1666
1667 for (p = input_abs_bypass_init_data; *p; p++)
1668 input_abs_bypass[BIT_WORD(*p)] |= BIT_MASK(*p);
1669}
1670
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671static int __init input_init(void)
1672{
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001673 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
Henrik Rydberg61994a62009-04-28 07:45:31 -07001675 input_init_abs_bypass();
1676
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -07001677 err = class_register(&input_class);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001678 if (err) {
1679 printk(KERN_ERR "input: unable to register input_dev class\n");
1680 return err;
1681 }
1682
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001683 err = input_proc_init();
1684 if (err)
Greg Kroah-Hartmanb0fdfeb2005-10-27 22:25:43 -07001685 goto fail1;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001686
1687 err = register_chrdev(INPUT_MAJOR, "input", &input_fops);
1688 if (err) {
1689 printk(KERN_ERR "input: unable to register char major %d", INPUT_MAJOR);
Greg Kroah-Hartmanb0fdfeb2005-10-27 22:25:43 -07001690 goto fail2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001692
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001693 return 0;
1694
Greg Kroah-Hartmanb0fdfeb2005-10-27 22:25:43 -07001695 fail2: input_proc_exit();
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -07001696 fail1: class_unregister(&input_class);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001697 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698}
1699
1700static void __exit input_exit(void)
1701{
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001702 input_proc_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 unregister_chrdev(INPUT_MAJOR, "input");
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -07001704 class_unregister(&input_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705}
1706
1707subsys_initcall(input_init);
1708module_exit(input_exit);