blob: 60a4eaabb7d74d8684d7f38a152a707598097454 [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>
Dmitry Torokhovffd0db92009-09-16 01:06:43 -070014#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/input.h>
16#include <linux/module.h>
17#include <linux/random.h>
18#include <linux/major.h>
19#include <linux/proc_fs.h>
Dmitry Torokhov969b21c2006-04-02 00:09:34 -050020#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/poll.h>
22#include <linux/device.h>
Jes Sorensene676c232006-02-19 00:21:46 -050023#include <linux/mutex.h>
Dmitry Torokhov80064792007-08-30 00:22:11 -040024#include <linux/rcupdate.h>
Jonathan Corbet2edbf852008-05-15 10:37:16 -060025#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27MODULE_AUTHOR("Vojtech Pavlik <vojtech@suse.cz>");
28MODULE_DESCRIPTION("Input core");
29MODULE_LICENSE("GPL");
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#define INPUT_DEVICES 256
32
Henrik Rydberg61994a62009-04-28 07:45:31 -070033/*
34 * EV_ABS events which should not be cached are listed here.
35 */
36static unsigned int input_abs_bypass_init_data[] __initdata = {
Henrik Rydberg5e5ee682009-04-28 07:47:33 -070037 ABS_MT_TOUCH_MAJOR,
38 ABS_MT_TOUCH_MINOR,
39 ABS_MT_WIDTH_MAJOR,
40 ABS_MT_WIDTH_MINOR,
41 ABS_MT_ORIENTATION,
42 ABS_MT_POSITION_X,
43 ABS_MT_POSITION_Y,
44 ABS_MT_TOOL_TYPE,
45 ABS_MT_BLOB_ID,
Henrik Rydbergdf391e02009-05-23 09:51:20 -070046 ABS_MT_TRACKING_ID,
Henrik Rydberg61994a62009-04-28 07:45:31 -070047 0
48};
49static unsigned long input_abs_bypass[BITS_TO_LONGS(ABS_CNT)];
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051static LIST_HEAD(input_dev_list);
52static LIST_HEAD(input_handler_list);
53
Dmitry Torokhov80064792007-08-30 00:22:11 -040054/*
55 * input_mutex protects access to both input_dev_list and input_handler_list.
56 * This also causes input_[un]register_device and input_[un]register_handler
57 * be mutually exclusive which simplifies locking in drivers implementing
58 * input handlers.
59 */
60static DEFINE_MUTEX(input_mutex);
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062static struct input_handler *input_table[8];
63
Dmitry Torokhov80064792007-08-30 00:22:11 -040064static inline int is_event_supported(unsigned int code,
65 unsigned long *bm, unsigned int max)
66{
67 return code <= max && test_bit(code, bm);
68}
69
70static int input_defuzz_abs_event(int value, int old_val, int fuzz)
71{
72 if (fuzz) {
73 if (value > old_val - fuzz / 2 && value < old_val + fuzz / 2)
74 return old_val;
75
76 if (value > old_val - fuzz && value < old_val + fuzz)
77 return (old_val * 3 + value) / 4;
78
79 if (value > old_val - fuzz * 2 && value < old_val + fuzz * 2)
80 return (old_val + value) / 2;
81 }
82
83 return value;
84}
85
86/*
87 * Pass event through all open handles. This function is called with
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -040088 * dev->event_lock held and interrupts disabled.
Dmitry Torokhov80064792007-08-30 00:22:11 -040089 */
90static void input_pass_event(struct input_dev *dev,
91 unsigned int type, unsigned int code, int value)
92{
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -040093 struct input_handle *handle;
Dmitry Torokhov80064792007-08-30 00:22:11 -040094
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -040095 rcu_read_lock();
96
97 handle = rcu_dereference(dev->grab);
Dmitry Torokhov80064792007-08-30 00:22:11 -040098 if (handle)
99 handle->handler->event(handle, type, code, value);
100 else
101 list_for_each_entry_rcu(handle, &dev->h_list, d_node)
102 if (handle->open)
103 handle->handler->event(handle,
104 type, code, value);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400105 rcu_read_unlock();
Dmitry Torokhov80064792007-08-30 00:22:11 -0400106}
107
108/*
109 * Generate software autorepeat event. Note that we take
110 * dev->event_lock here to avoid racing with input_event
111 * which may cause keys get "stuck".
112 */
113static void input_repeat_key(unsigned long data)
114{
115 struct input_dev *dev = (void *) data;
116 unsigned long flags;
117
118 spin_lock_irqsave(&dev->event_lock, flags);
119
120 if (test_bit(dev->repeat_key, dev->key) &&
121 is_event_supported(dev->repeat_key, dev->keybit, KEY_MAX)) {
122
123 input_pass_event(dev, EV_KEY, dev->repeat_key, 2);
124
125 if (dev->sync) {
126 /*
127 * Only send SYN_REPORT if we are not in a middle
128 * of driver parsing a new hardware packet.
129 * Otherwise assume that the driver will send
130 * SYN_REPORT once it's done.
131 */
132 input_pass_event(dev, EV_SYN, SYN_REPORT, 1);
133 }
134
135 if (dev->rep[REP_PERIOD])
136 mod_timer(&dev->timer, jiffies +
137 msecs_to_jiffies(dev->rep[REP_PERIOD]));
138 }
139
140 spin_unlock_irqrestore(&dev->event_lock, flags);
141}
142
143static void input_start_autorepeat(struct input_dev *dev, int code)
144{
145 if (test_bit(EV_REP, dev->evbit) &&
146 dev->rep[REP_PERIOD] && dev->rep[REP_DELAY] &&
147 dev->timer.data) {
148 dev->repeat_key = code;
149 mod_timer(&dev->timer,
150 jiffies + msecs_to_jiffies(dev->rep[REP_DELAY]));
151 }
152}
153
Johannes Berge7b5c1e2009-01-29 23:17:52 -0800154static void input_stop_autorepeat(struct input_dev *dev)
155{
156 del_timer(&dev->timer);
157}
158
Dmitry Torokhov80064792007-08-30 00:22:11 -0400159#define INPUT_IGNORE_EVENT 0
160#define INPUT_PASS_TO_HANDLERS 1
161#define INPUT_PASS_TO_DEVICE 2
162#define INPUT_PASS_TO_ALL (INPUT_PASS_TO_HANDLERS | INPUT_PASS_TO_DEVICE)
163
164static void input_handle_event(struct input_dev *dev,
165 unsigned int type, unsigned int code, int value)
166{
167 int disposition = INPUT_IGNORE_EVENT;
168
169 switch (type) {
170
171 case EV_SYN:
172 switch (code) {
173 case SYN_CONFIG:
174 disposition = INPUT_PASS_TO_ALL;
175 break;
176
177 case SYN_REPORT:
178 if (!dev->sync) {
179 dev->sync = 1;
180 disposition = INPUT_PASS_TO_HANDLERS;
181 }
182 break;
Henrik Rydberg5e5ee682009-04-28 07:47:33 -0700183 case SYN_MT_REPORT:
184 dev->sync = 0;
185 disposition = INPUT_PASS_TO_HANDLERS;
186 break;
Dmitry Torokhov80064792007-08-30 00:22:11 -0400187 }
188 break;
189
190 case EV_KEY:
191 if (is_event_supported(code, dev->keybit, KEY_MAX) &&
192 !!test_bit(code, dev->key) != value) {
193
194 if (value != 2) {
195 __change_bit(code, dev->key);
196 if (value)
197 input_start_autorepeat(dev, code);
Johannes Berge7b5c1e2009-01-29 23:17:52 -0800198 else
199 input_stop_autorepeat(dev);
Dmitry Torokhov80064792007-08-30 00:22:11 -0400200 }
201
202 disposition = INPUT_PASS_TO_HANDLERS;
203 }
204 break;
205
206 case EV_SW:
207 if (is_event_supported(code, dev->swbit, SW_MAX) &&
208 !!test_bit(code, dev->sw) != value) {
209
210 __change_bit(code, dev->sw);
211 disposition = INPUT_PASS_TO_HANDLERS;
212 }
213 break;
214
215 case EV_ABS:
216 if (is_event_supported(code, dev->absbit, ABS_MAX)) {
217
Henrik Rydberg61994a62009-04-28 07:45:31 -0700218 if (test_bit(code, input_abs_bypass)) {
219 disposition = INPUT_PASS_TO_HANDLERS;
220 break;
221 }
222
Dmitry Torokhov80064792007-08-30 00:22:11 -0400223 value = input_defuzz_abs_event(value,
224 dev->abs[code], dev->absfuzz[code]);
225
226 if (dev->abs[code] != value) {
227 dev->abs[code] = value;
228 disposition = INPUT_PASS_TO_HANDLERS;
229 }
230 }
231 break;
232
233 case EV_REL:
234 if (is_event_supported(code, dev->relbit, REL_MAX) && value)
235 disposition = INPUT_PASS_TO_HANDLERS;
236
237 break;
238
239 case EV_MSC:
240 if (is_event_supported(code, dev->mscbit, MSC_MAX))
241 disposition = INPUT_PASS_TO_ALL;
242
243 break;
244
245 case EV_LED:
246 if (is_event_supported(code, dev->ledbit, LED_MAX) &&
247 !!test_bit(code, dev->led) != value) {
248
249 __change_bit(code, dev->led);
250 disposition = INPUT_PASS_TO_ALL;
251 }
252 break;
253
254 case EV_SND:
255 if (is_event_supported(code, dev->sndbit, SND_MAX)) {
256
257 if (!!test_bit(code, dev->snd) != !!value)
258 __change_bit(code, dev->snd);
259 disposition = INPUT_PASS_TO_ALL;
260 }
261 break;
262
263 case EV_REP:
264 if (code <= REP_MAX && value >= 0 && dev->rep[code] != value) {
265 dev->rep[code] = value;
266 disposition = INPUT_PASS_TO_ALL;
267 }
268 break;
269
270 case EV_FF:
271 if (value >= 0)
272 disposition = INPUT_PASS_TO_ALL;
273 break;
Richard Purdieed2fa4d2008-01-03 10:46:21 -0500274
275 case EV_PWR:
276 disposition = INPUT_PASS_TO_ALL;
277 break;
Dmitry Torokhov80064792007-08-30 00:22:11 -0400278 }
279
Dmitry Torokhovc9812282008-06-02 01:02:40 -0400280 if (disposition != INPUT_IGNORE_EVENT && type != EV_SYN)
Dmitry Torokhov80064792007-08-30 00:22:11 -0400281 dev->sync = 0;
282
283 if ((disposition & INPUT_PASS_TO_DEVICE) && dev->event)
284 dev->event(dev, type, code, value);
285
286 if (disposition & INPUT_PASS_TO_HANDLERS)
287 input_pass_event(dev, type, code, value);
288}
289
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400290/**
291 * input_event() - report new input event
Dmitry Torokhov14471902006-11-02 23:26:55 -0500292 * @dev: device that generated the event
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400293 * @type: type of the event
294 * @code: event code
295 * @value: value of the event
296 *
Dmitry Torokhov80064792007-08-30 00:22:11 -0400297 * This function should be used by drivers implementing various input
298 * devices. See also input_inject_event().
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400299 */
Dmitry Torokhov80064792007-08-30 00:22:11 -0400300
301void input_event(struct input_dev *dev,
302 unsigned int type, unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400304 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Dmitry Torokhov80064792007-08-30 00:22:11 -0400306 if (is_event_supported(type, dev->evbit, EV_MAX)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Dmitry Torokhov80064792007-08-30 00:22:11 -0400308 spin_lock_irqsave(&dev->event_lock, flags);
309 add_input_randomness(type, code, value);
310 input_handle_event(dev, type, code, value);
311 spin_unlock_irqrestore(&dev->event_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400314EXPORT_SYMBOL(input_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400316/**
317 * input_inject_event() - send input event from input handler
318 * @handle: input handle to send event through
319 * @type: type of the event
320 * @code: event code
321 * @value: value of the event
322 *
Dmitry Torokhov80064792007-08-30 00:22:11 -0400323 * Similar to input_event() but will ignore event if device is
324 * "grabbed" and handle injecting event is not the one that owns
325 * the device.
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400326 */
Dmitry Torokhov80064792007-08-30 00:22:11 -0400327void input_inject_event(struct input_handle *handle,
328 unsigned int type, unsigned int code, int value)
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400329{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400330 struct input_dev *dev = handle->dev;
331 struct input_handle *grab;
332 unsigned long flags;
333
334 if (is_event_supported(type, dev->evbit, EV_MAX)) {
335 spin_lock_irqsave(&dev->event_lock, flags);
336
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400337 rcu_read_lock();
Dmitry Torokhov80064792007-08-30 00:22:11 -0400338 grab = rcu_dereference(dev->grab);
339 if (!grab || grab == handle)
340 input_handle_event(dev, type, code, value);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400341 rcu_read_unlock();
Dmitry Torokhov80064792007-08-30 00:22:11 -0400342
343 spin_unlock_irqrestore(&dev->event_lock, flags);
344 }
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400345}
346EXPORT_SYMBOL(input_inject_event);
347
Dmitry Torokhov80064792007-08-30 00:22:11 -0400348/**
349 * input_grab_device - grabs device for exclusive use
350 * @handle: input handle that wants to own the device
351 *
352 * When a device is grabbed by an input handle all events generated by
353 * the device are delivered only to this handle. Also events injected
354 * by other input handles are ignored while device is grabbed.
355 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356int input_grab_device(struct input_handle *handle)
357{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400358 struct input_dev *dev = handle->dev;
359 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Dmitry Torokhov80064792007-08-30 00:22:11 -0400361 retval = mutex_lock_interruptible(&dev->mutex);
362 if (retval)
363 return retval;
364
365 if (dev->grab) {
366 retval = -EBUSY;
367 goto out;
368 }
369
370 rcu_assign_pointer(dev->grab, handle);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400371 synchronize_rcu();
Dmitry Torokhov80064792007-08-30 00:22:11 -0400372
373 out:
374 mutex_unlock(&dev->mutex);
375 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400377EXPORT_SYMBOL(input_grab_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Dmitry Torokhov80064792007-08-30 00:22:11 -0400379static void __input_release_device(struct input_handle *handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
Andrew Mortona2b2ed22006-07-15 01:17:38 -0400381 struct input_dev *dev = handle->dev;
Dmitry Torokhovc7e8dc62006-07-06 00:21:03 -0400382
Andrew Mortona2b2ed22006-07-15 01:17:38 -0400383 if (dev->grab == handle) {
Dmitry Torokhov80064792007-08-30 00:22:11 -0400384 rcu_assign_pointer(dev->grab, NULL);
385 /* Make sure input_pass_event() notices that grab is gone */
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400386 synchronize_rcu();
Andrew Mortona2b2ed22006-07-15 01:17:38 -0400387
388 list_for_each_entry(handle, &dev->h_list, d_node)
Dmitry Torokhov80064792007-08-30 00:22:11 -0400389 if (handle->open && handle->handler->start)
Dmitry Torokhovc7e8dc62006-07-06 00:21:03 -0400390 handle->handler->start(handle);
391 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392}
Dmitry Torokhov80064792007-08-30 00:22:11 -0400393
394/**
395 * input_release_device - release previously grabbed device
396 * @handle: input handle that owns the device
397 *
398 * Releases previously grabbed device so that other input handles can
399 * start receiving input events. Upon release all handlers attached
400 * to the device have their start() method called so they have a change
401 * to synchronize device state with the rest of the system.
402 */
403void input_release_device(struct input_handle *handle)
404{
405 struct input_dev *dev = handle->dev;
406
407 mutex_lock(&dev->mutex);
408 __input_release_device(handle);
409 mutex_unlock(&dev->mutex);
410}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400411EXPORT_SYMBOL(input_release_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Dmitry Torokhov80064792007-08-30 00:22:11 -0400413/**
414 * input_open_device - open input device
415 * @handle: handle through which device is being accessed
416 *
417 * This function should be called by input handlers when they
418 * want to start receive events from given input device.
419 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420int input_open_device(struct input_handle *handle)
421{
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500422 struct input_dev *dev = handle->dev;
Dmitry Torokhov80064792007-08-30 00:22:11 -0400423 int retval;
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500424
Dmitry Torokhov80064792007-08-30 00:22:11 -0400425 retval = mutex_lock_interruptible(&dev->mutex);
426 if (retval)
427 return retval;
428
429 if (dev->going_away) {
430 retval = -ENODEV;
431 goto out;
432 }
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 handle->open++;
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500435
436 if (!dev->users++ && dev->open)
Dmitry Torokhov80064792007-08-30 00:22:11 -0400437 retval = dev->open(dev);
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500438
Dmitry Torokhov80064792007-08-30 00:22:11 -0400439 if (retval) {
440 dev->users--;
441 if (!--handle->open) {
442 /*
443 * Make sure we are not delivering any more events
444 * through this handle
445 */
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400446 synchronize_rcu();
Dmitry Torokhov80064792007-08-30 00:22:11 -0400447 }
448 }
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500449
Dmitry Torokhov80064792007-08-30 00:22:11 -0400450 out:
Jes Sorensene676c232006-02-19 00:21:46 -0500451 mutex_unlock(&dev->mutex);
Dmitry Torokhov80064792007-08-30 00:22:11 -0400452 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400454EXPORT_SYMBOL(input_open_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Dmitry Torokhov80064792007-08-30 00:22:11 -0400456int input_flush_device(struct input_handle *handle, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400458 struct input_dev *dev = handle->dev;
459 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Dmitry Torokhov80064792007-08-30 00:22:11 -0400461 retval = mutex_lock_interruptible(&dev->mutex);
462 if (retval)
463 return retval;
464
465 if (dev->flush)
466 retval = dev->flush(dev, file);
467
468 mutex_unlock(&dev->mutex);
469 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400471EXPORT_SYMBOL(input_flush_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Dmitry Torokhov80064792007-08-30 00:22:11 -0400473/**
474 * input_close_device - close input device
475 * @handle: handle through which device is being accessed
476 *
477 * This function should be called by input handlers when they
478 * want to stop receive events from given input device.
479 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480void input_close_device(struct input_handle *handle)
481{
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500482 struct input_dev *dev = handle->dev;
483
Jes Sorensene676c232006-02-19 00:21:46 -0500484 mutex_lock(&dev->mutex);
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500485
Dmitry Torokhov80064792007-08-30 00:22:11 -0400486 __input_release_device(handle);
487
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500488 if (!--dev->users && dev->close)
489 dev->close(dev);
Dmitry Torokhov80064792007-08-30 00:22:11 -0400490
491 if (!--handle->open) {
492 /*
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400493 * synchronize_rcu() makes sure that input_pass_event()
Dmitry Torokhov80064792007-08-30 00:22:11 -0400494 * completed and that no more input events are delivered
495 * through this handle
496 */
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400497 synchronize_rcu();
Dmitry Torokhov80064792007-08-30 00:22:11 -0400498 }
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500499
Jes Sorensene676c232006-02-19 00:21:46 -0500500 mutex_unlock(&dev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400502EXPORT_SYMBOL(input_close_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Dmitry Torokhov80064792007-08-30 00:22:11 -0400504/*
505 * Prepare device for unregistering
506 */
507static void input_disconnect_device(struct input_dev *dev)
508{
509 struct input_handle *handle;
510 int code;
511
512 /*
513 * Mark device as going away. Note that we take dev->mutex here
514 * not to protect access to dev->going_away but rather to ensure
515 * that there are no threads in the middle of input_open_device()
516 */
517 mutex_lock(&dev->mutex);
Dmitry Torokhovffd0db92009-09-16 01:06:43 -0700518 dev->going_away = true;
Dmitry Torokhov80064792007-08-30 00:22:11 -0400519 mutex_unlock(&dev->mutex);
520
521 spin_lock_irq(&dev->event_lock);
522
523 /*
524 * Simulate keyup events for all pressed keys so that handlers
525 * are not left with "stuck" keys. The driver may continue
526 * generate events even after we done here but they will not
527 * reach any handlers.
528 */
529 if (is_event_supported(EV_KEY, dev->evbit, EV_MAX)) {
530 for (code = 0; code <= KEY_MAX; code++) {
531 if (is_event_supported(code, dev->keybit, KEY_MAX) &&
Dmitry Torokhovf4f37c82007-11-04 00:41:12 -0400532 __test_and_clear_bit(code, dev->key)) {
Dmitry Torokhov80064792007-08-30 00:22:11 -0400533 input_pass_event(dev, EV_KEY, code, 0);
534 }
535 }
536 input_pass_event(dev, EV_SYN, SYN_REPORT, 1);
537 }
538
539 list_for_each_entry(handle, &dev->h_list, d_node)
540 handle->open = 0;
541
542 spin_unlock_irq(&dev->event_lock);
543}
544
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400545static int input_fetch_keycode(struct input_dev *dev, int scancode)
546{
547 switch (dev->keycodesize) {
548 case 1:
549 return ((u8 *)dev->keycode)[scancode];
550
551 case 2:
552 return ((u16 *)dev->keycode)[scancode];
553
554 default:
555 return ((u32 *)dev->keycode)[scancode];
556 }
557}
558
559static int input_default_getkeycode(struct input_dev *dev,
560 int scancode, int *keycode)
561{
562 if (!dev->keycodesize)
563 return -EINVAL;
564
Dmitry Torokhovf4f37c82007-11-04 00:41:12 -0400565 if (scancode >= dev->keycodemax)
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400566 return -EINVAL;
567
568 *keycode = input_fetch_keycode(dev, scancode);
569
570 return 0;
571}
572
573static int input_default_setkeycode(struct input_dev *dev,
574 int scancode, int keycode)
575{
576 int old_keycode;
577 int i;
578
Dmitry Torokhovf4f37c82007-11-04 00:41:12 -0400579 if (scancode >= dev->keycodemax)
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400580 return -EINVAL;
581
582 if (!dev->keycodesize)
583 return -EINVAL;
584
585 if (dev->keycodesize < sizeof(keycode) && (keycode >> (dev->keycodesize * 8)))
586 return -EINVAL;
587
588 switch (dev->keycodesize) {
589 case 1: {
590 u8 *k = (u8 *)dev->keycode;
591 old_keycode = k[scancode];
592 k[scancode] = keycode;
593 break;
594 }
595 case 2: {
596 u16 *k = (u16 *)dev->keycode;
597 old_keycode = k[scancode];
598 k[scancode] = keycode;
599 break;
600 }
601 default: {
602 u32 *k = (u32 *)dev->keycode;
603 old_keycode = k[scancode];
604 k[scancode] = keycode;
605 break;
606 }
607 }
608
609 clear_bit(old_keycode, dev->keybit);
610 set_bit(keycode, dev->keybit);
611
612 for (i = 0; i < dev->keycodemax; i++) {
613 if (input_fetch_keycode(dev, i) == old_keycode) {
614 set_bit(old_keycode, dev->keybit);
615 break; /* Setting the bit twice is useless, so break */
616 }
617 }
618
619 return 0;
620}
621
Dmitry Torokhovf4f37c82007-11-04 00:41:12 -0400622/**
623 * input_get_keycode - retrieve keycode currently mapped to a given scancode
624 * @dev: input device which keymap is being queried
625 * @scancode: scancode (or its equivalent for device in question) for which
626 * keycode is needed
627 * @keycode: result
628 *
629 * This function should be called by anyone interested in retrieving current
630 * keymap. Presently keyboard and evdev handlers use it.
631 */
632int input_get_keycode(struct input_dev *dev, int scancode, int *keycode)
633{
634 if (scancode < 0)
635 return -EINVAL;
636
637 return dev->getkeycode(dev, scancode, keycode);
638}
639EXPORT_SYMBOL(input_get_keycode);
640
641/**
642 * input_get_keycode - assign new keycode to a given scancode
643 * @dev: input device which keymap is being updated
644 * @scancode: scancode (or its equivalent for device in question)
645 * @keycode: new keycode to be assigned to the scancode
646 *
647 * This function should be called by anyone needing to update current
648 * keymap. Presently keyboard and evdev handlers use it.
649 */
650int input_set_keycode(struct input_dev *dev, int scancode, int keycode)
651{
652 unsigned long flags;
653 int old_keycode;
654 int retval;
655
656 if (scancode < 0)
657 return -EINVAL;
658
659 if (keycode < 0 || keycode > KEY_MAX)
660 return -EINVAL;
661
662 spin_lock_irqsave(&dev->event_lock, flags);
663
664 retval = dev->getkeycode(dev, scancode, &old_keycode);
665 if (retval)
666 goto out;
667
668 retval = dev->setkeycode(dev, scancode, keycode);
669 if (retval)
670 goto out;
671
672 /*
673 * Simulate keyup event if keycode is not present
674 * in the keymap anymore
675 */
676 if (test_bit(EV_KEY, dev->evbit) &&
677 !is_event_supported(old_keycode, dev->keybit, KEY_MAX) &&
678 __test_and_clear_bit(old_keycode, dev->key)) {
679
680 input_pass_event(dev, EV_KEY, old_keycode, 0);
681 if (dev->sync)
682 input_pass_event(dev, EV_SYN, SYN_REPORT, 1);
683 }
684
685 out:
686 spin_unlock_irqrestore(&dev->event_lock, flags);
687
688 return retval;
689}
690EXPORT_SYMBOL(input_set_keycode);
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400691
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692#define MATCH_BIT(bit, max) \
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700693 for (i = 0; i < BITS_TO_LONGS(max); i++) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 if ((id->bit[i] & dev->bit[i]) != id->bit[i]) \
695 break; \
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700696 if (i != BITS_TO_LONGS(max)) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 continue;
698
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400699static const struct input_device_id *input_match_device(const struct input_device_id *id,
700 struct input_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701{
702 int i;
703
704 for (; id->flags || id->driver_info; id++) {
705
706 if (id->flags & INPUT_DEVICE_ID_MATCH_BUS)
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400707 if (id->bustype != dev->id.bustype)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 continue;
709
710 if (id->flags & INPUT_DEVICE_ID_MATCH_VENDOR)
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400711 if (id->vendor != dev->id.vendor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 continue;
713
714 if (id->flags & INPUT_DEVICE_ID_MATCH_PRODUCT)
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400715 if (id->product != dev->id.product)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 continue;
717
718 if (id->flags & INPUT_DEVICE_ID_MATCH_VERSION)
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400719 if (id->version != dev->id.version)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 continue;
721
722 MATCH_BIT(evbit, EV_MAX);
723 MATCH_BIT(keybit, KEY_MAX);
724 MATCH_BIT(relbit, REL_MAX);
725 MATCH_BIT(absbit, ABS_MAX);
726 MATCH_BIT(mscbit, MSC_MAX);
727 MATCH_BIT(ledbit, LED_MAX);
728 MATCH_BIT(sndbit, SND_MAX);
729 MATCH_BIT(ffbit, FF_MAX);
Dmitry Torokhovff13f982005-09-24 02:02:29 -0500730 MATCH_BIT(swbit, SW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
732 return id;
733 }
734
735 return NULL;
736}
737
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400738static int input_attach_handler(struct input_dev *dev, struct input_handler *handler)
739{
740 const struct input_device_id *id;
741 int error;
742
743 if (handler->blacklist && input_match_device(handler->blacklist, dev))
744 return -ENODEV;
745
746 id = input_match_device(handler->id_table, dev);
747 if (!id)
748 return -ENODEV;
749
750 error = handler->connect(handler, dev, id);
751 if (error && error != -ENODEV)
752 printk(KERN_ERR
753 "input: failed to attach handler %s to device %s, "
754 "error: %d\n",
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400755 handler->name, kobject_name(&dev->dev.kobj), error);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400756
757 return error;
758}
759
760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761#ifdef CONFIG_PROC_FS
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500762
763static struct proc_dir_entry *proc_bus_input_dir;
764static DECLARE_WAIT_QUEUE_HEAD(input_devices_poll_wait);
765static int input_devices_state;
766
767static inline void input_wakeup_procfs_readers(void)
768{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 input_devices_state++;
770 wake_up(&input_devices_poll_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771}
772
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500773static unsigned int input_proc_devices_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774{
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500775 poll_wait(file, &input_devices_poll_wait, wait);
Dmitry Torokhovfa886612009-03-04 00:52:20 -0800776 if (file->f_version != input_devices_state) {
777 file->f_version = input_devices_state;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500778 return POLLIN | POLLRDNORM;
Dmitry Torokhovfa886612009-03-04 00:52:20 -0800779 }
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400780
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500781 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782}
783
Dmitry Torokhov1572ca22009-10-13 23:37:30 -0700784union input_seq_state {
785 struct {
786 unsigned short pos;
787 bool mutex_acquired;
788 };
789 void *p;
790};
791
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500792static void *input_devices_seq_start(struct seq_file *seq, loff_t *pos)
793{
Dmitry Torokhov1572ca22009-10-13 23:37:30 -0700794 union input_seq_state *state = (union input_seq_state *)&seq->private;
795 int error;
796
797 /* We need to fit into seq->private pointer */
798 BUILD_BUG_ON(sizeof(union input_seq_state) != sizeof(seq->private));
799
800 error = mutex_lock_interruptible(&input_mutex);
801 if (error) {
802 state->mutex_acquired = false;
803 return ERR_PTR(error);
804 }
805
806 state->mutex_acquired = true;
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500807
Pavel Emelianovad5d9722007-07-18 00:38:32 -0400808 return seq_list_start(&input_dev_list, *pos);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500809}
810
811static void *input_devices_seq_next(struct seq_file *seq, void *v, loff_t *pos)
812{
Pavel Emelianovad5d9722007-07-18 00:38:32 -0400813 return seq_list_next(v, &input_dev_list, pos);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500814}
815
Dmitry Torokhov1572ca22009-10-13 23:37:30 -0700816static void input_seq_stop(struct seq_file *seq, void *v)
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500817{
Dmitry Torokhov1572ca22009-10-13 23:37:30 -0700818 union input_seq_state *state = (union input_seq_state *)&seq->private;
819
820 if (state->mutex_acquired)
821 mutex_unlock(&input_mutex);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500822}
823
824static void input_seq_print_bitmap(struct seq_file *seq, const char *name,
825 unsigned long *bitmap, int max)
826{
827 int i;
828
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700829 for (i = BITS_TO_LONGS(max) - 1; i > 0; i--)
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500830 if (bitmap[i])
831 break;
832
833 seq_printf(seq, "B: %s=", name);
834 for (; i >= 0; i--)
835 seq_printf(seq, "%lx%s", bitmap[i], i > 0 ? " " : "");
836 seq_putc(seq, '\n');
837}
838
839static int input_devices_seq_show(struct seq_file *seq, void *v)
840{
841 struct input_dev *dev = container_of(v, struct input_dev, node);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400842 const char *path = kobject_get_path(&dev->dev.kobj, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 struct input_handle *handle;
844
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500845 seq_printf(seq, "I: Bus=%04x Vendor=%04x Product=%04x Version=%04x\n",
846 dev->id.bustype, dev->id.vendor, dev->id.product, dev->id.version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500848 seq_printf(seq, "N: Name=\"%s\"\n", dev->name ? dev->name : "");
849 seq_printf(seq, "P: Phys=%s\n", dev->phys ? dev->phys : "");
850 seq_printf(seq, "S: Sysfs=%s\n", path ? path : "");
Dmitry Torokhov15e03ae2007-03-07 23:20:17 -0500851 seq_printf(seq, "U: Uniq=%s\n", dev->uniq ? dev->uniq : "");
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500852 seq_printf(seq, "H: Handlers=");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500854 list_for_each_entry(handle, &dev->h_list, d_node)
855 seq_printf(seq, "%s ", handle->name);
856 seq_putc(seq, '\n');
Dmitry Torokhov051b2fe2005-09-15 02:01:54 -0500857
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500858 input_seq_print_bitmap(seq, "EV", dev->evbit, EV_MAX);
859 if (test_bit(EV_KEY, dev->evbit))
860 input_seq_print_bitmap(seq, "KEY", dev->keybit, KEY_MAX);
861 if (test_bit(EV_REL, dev->evbit))
862 input_seq_print_bitmap(seq, "REL", dev->relbit, REL_MAX);
863 if (test_bit(EV_ABS, dev->evbit))
864 input_seq_print_bitmap(seq, "ABS", dev->absbit, ABS_MAX);
865 if (test_bit(EV_MSC, dev->evbit))
866 input_seq_print_bitmap(seq, "MSC", dev->mscbit, MSC_MAX);
867 if (test_bit(EV_LED, dev->evbit))
868 input_seq_print_bitmap(seq, "LED", dev->ledbit, LED_MAX);
869 if (test_bit(EV_SND, dev->evbit))
870 input_seq_print_bitmap(seq, "SND", dev->sndbit, SND_MAX);
871 if (test_bit(EV_FF, dev->evbit))
872 input_seq_print_bitmap(seq, "FF", dev->ffbit, FF_MAX);
873 if (test_bit(EV_SW, dev->evbit))
874 input_seq_print_bitmap(seq, "SW", dev->swbit, SW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500876 seq_putc(seq, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500878 kfree(path);
879 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880}
881
Jan Engelhardtcec69c32008-01-31 00:43:32 -0500882static const struct seq_operations input_devices_seq_ops = {
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500883 .start = input_devices_seq_start,
884 .next = input_devices_seq_next,
Dmitry Torokhov1572ca22009-10-13 23:37:30 -0700885 .stop = input_seq_stop,
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500886 .show = input_devices_seq_show,
887};
888
889static int input_proc_devices_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890{
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500891 return seq_open(file, &input_devices_seq_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892}
893
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800894static const struct file_operations input_devices_fileops = {
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500895 .owner = THIS_MODULE,
896 .open = input_proc_devices_open,
897 .poll = input_proc_devices_poll,
898 .read = seq_read,
899 .llseek = seq_lseek,
900 .release = seq_release,
901};
902
903static void *input_handlers_seq_start(struct seq_file *seq, loff_t *pos)
904{
Dmitry Torokhov1572ca22009-10-13 23:37:30 -0700905 union input_seq_state *state = (union input_seq_state *)&seq->private;
906 int error;
Dmitry Torokhov80064792007-08-30 00:22:11 -0400907
Dmitry Torokhov1572ca22009-10-13 23:37:30 -0700908 /* We need to fit into seq->private pointer */
909 BUILD_BUG_ON(sizeof(union input_seq_state) != sizeof(seq->private));
910
911 error = mutex_lock_interruptible(&input_mutex);
912 if (error) {
913 state->mutex_acquired = false;
914 return ERR_PTR(error);
915 }
916
917 state->mutex_acquired = true;
918 state->pos = *pos;
919
Pavel Emelianovad5d9722007-07-18 00:38:32 -0400920 return seq_list_start(&input_handler_list, *pos);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500921}
922
923static void *input_handlers_seq_next(struct seq_file *seq, void *v, loff_t *pos)
924{
Dmitry Torokhov1572ca22009-10-13 23:37:30 -0700925 union input_seq_state *state = (union input_seq_state *)&seq->private;
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500926
Dmitry Torokhov1572ca22009-10-13 23:37:30 -0700927 state->pos = *pos + 1;
928 return seq_list_next(v, &input_handler_list, pos);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500929}
930
931static int input_handlers_seq_show(struct seq_file *seq, void *v)
932{
933 struct input_handler *handler = container_of(v, struct input_handler, node);
Dmitry Torokhov1572ca22009-10-13 23:37:30 -0700934 union input_seq_state *state = (union input_seq_state *)&seq->private;
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500935
Dmitry Torokhov1572ca22009-10-13 23:37:30 -0700936 seq_printf(seq, "N: Number=%u Name=%s", state->pos, handler->name);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500937 if (handler->fops)
938 seq_printf(seq, " Minor=%d", handler->minor);
939 seq_putc(seq, '\n');
940
941 return 0;
942}
Dmitry Torokhov1572ca22009-10-13 23:37:30 -0700943
Jan Engelhardtcec69c32008-01-31 00:43:32 -0500944static const struct seq_operations input_handlers_seq_ops = {
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500945 .start = input_handlers_seq_start,
946 .next = input_handlers_seq_next,
Dmitry Torokhov1572ca22009-10-13 23:37:30 -0700947 .stop = input_seq_stop,
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500948 .show = input_handlers_seq_show,
949};
950
951static int input_proc_handlers_open(struct inode *inode, struct file *file)
952{
953 return seq_open(file, &input_handlers_seq_ops);
954}
955
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800956static const struct file_operations input_handlers_fileops = {
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500957 .owner = THIS_MODULE,
958 .open = input_proc_handlers_open,
959 .read = seq_read,
960 .llseek = seq_lseek,
961 .release = seq_release,
962};
Luke Kosewskie334016fc2005-06-01 02:39:28 -0500963
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964static int __init input_proc_init(void)
965{
966 struct proc_dir_entry *entry;
967
Alexey Dobriyan9c370662008-04-29 01:01:41 -0700968 proc_bus_input_dir = proc_mkdir("bus/input", NULL);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500969 if (!proc_bus_input_dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 return -ENOMEM;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500971
Denis V. Lunevc7705f32008-04-29 01:02:35 -0700972 entry = proc_create("devices", 0, proc_bus_input_dir,
973 &input_devices_fileops);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500974 if (!entry)
975 goto fail1;
976
Denis V. Lunevc7705f32008-04-29 01:02:35 -0700977 entry = proc_create("handlers", 0, proc_bus_input_dir,
978 &input_handlers_fileops);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500979 if (!entry)
980 goto fail2;
981
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 return 0;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500983
984 fail2: remove_proc_entry("devices", proc_bus_input_dir);
Alexey Dobriyan9c370662008-04-29 01:01:41 -0700985 fail1: remove_proc_entry("bus/input", NULL);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500986 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987}
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500988
Andrew Mortonbeffbdc2005-07-01 23:54:30 -0500989static void input_proc_exit(void)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500990{
991 remove_proc_entry("devices", proc_bus_input_dir);
992 remove_proc_entry("handlers", proc_bus_input_dir);
Alexey Dobriyan9c370662008-04-29 01:01:41 -0700993 remove_proc_entry("bus/input", NULL);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500994}
995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996#else /* !CONFIG_PROC_FS */
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500997static inline void input_wakeup_procfs_readers(void) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998static inline int input_proc_init(void) { return 0; }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500999static inline void input_proc_exit(void) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000#endif
1001
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001002#define INPUT_DEV_STRING_ATTR_SHOW(name) \
1003static ssize_t input_dev_show_##name(struct device *dev, \
1004 struct device_attribute *attr, \
1005 char *buf) \
1006{ \
1007 struct input_dev *input_dev = to_input_dev(dev); \
1008 \
1009 return scnprintf(buf, PAGE_SIZE, "%s\n", \
1010 input_dev->name ? input_dev->name : ""); \
1011} \
1012static DEVICE_ATTR(name, S_IRUGO, input_dev_show_##name, NULL)
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -05001013
1014INPUT_DEV_STRING_ATTR_SHOW(name);
1015INPUT_DEV_STRING_ATTR_SHOW(phys);
1016INPUT_DEV_STRING_ATTR_SHOW(uniq);
1017
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001018static int input_print_modalias_bits(char *buf, int size,
1019 char name, unsigned long *bm,
1020 unsigned int min_bit, unsigned int max_bit)
Rusty Russell1d8f4302005-12-07 21:40:34 +01001021{
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001022 int len = 0, i;
Rusty Russell1d8f4302005-12-07 21:40:34 +01001023
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001024 len += snprintf(buf, max(size, 0), "%c", name);
1025 for (i = min_bit; i < max_bit; i++)
Jiri Slaby7b19ada2007-10-18 23:40:32 -07001026 if (bm[BIT_WORD(i)] & BIT_MASK(i))
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001027 len += snprintf(buf + len, max(size - len, 0), "%X,", i);
Kay Sieversbd37e5a2006-01-05 13:19:55 +01001028 return len;
1029}
1030
Dmitry Torokhov2db66872006-04-02 00:09:26 -05001031static int input_print_modalias(char *buf, int size, struct input_dev *id,
1032 int add_cr)
Kay Sieversbd37e5a2006-01-05 13:19:55 +01001033{
1034 int len;
1035
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001036 len = snprintf(buf, max(size, 0),
1037 "input:b%04Xv%04Xp%04Xe%04X-",
1038 id->id.bustype, id->id.vendor,
1039 id->id.product, id->id.version);
Kay Sieversbd37e5a2006-01-05 13:19:55 +01001040
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001041 len += input_print_modalias_bits(buf + len, size - len,
1042 'e', id->evbit, 0, EV_MAX);
1043 len += input_print_modalias_bits(buf + len, size - len,
1044 'k', id->keybit, KEY_MIN_INTERESTING, KEY_MAX);
1045 len += input_print_modalias_bits(buf + len, size - len,
1046 'r', id->relbit, 0, REL_MAX);
1047 len += input_print_modalias_bits(buf + len, size - len,
1048 'a', id->absbit, 0, ABS_MAX);
1049 len += input_print_modalias_bits(buf + len, size - len,
1050 'm', id->mscbit, 0, MSC_MAX);
1051 len += input_print_modalias_bits(buf + len, size - len,
1052 'l', id->ledbit, 0, LED_MAX);
1053 len += input_print_modalias_bits(buf + len, size - len,
1054 's', id->sndbit, 0, SND_MAX);
1055 len += input_print_modalias_bits(buf + len, size - len,
1056 'f', id->ffbit, 0, FF_MAX);
1057 len += input_print_modalias_bits(buf + len, size - len,
1058 'w', id->swbit, 0, SW_MAX);
Dmitry Torokhov2db66872006-04-02 00:09:26 -05001059
1060 if (add_cr)
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001061 len += snprintf(buf + len, max(size - len, 0), "\n");
Dmitry Torokhov2db66872006-04-02 00:09:26 -05001062
Rusty Russell1d8f4302005-12-07 21:40:34 +01001063 return len;
1064}
1065
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001066static ssize_t input_dev_show_modalias(struct device *dev,
1067 struct device_attribute *attr,
1068 char *buf)
Rusty Russell1d8f4302005-12-07 21:40:34 +01001069{
1070 struct input_dev *id = to_input_dev(dev);
Kay Sieversbd37e5a2006-01-05 13:19:55 +01001071 ssize_t len;
Rusty Russell1d8f4302005-12-07 21:40:34 +01001072
Dmitry Torokhov2db66872006-04-02 00:09:26 -05001073 len = input_print_modalias(buf, PAGE_SIZE, id, 1);
1074
Richard Purdie8a3cf452006-06-26 01:48:21 -04001075 return min_t(int, len, PAGE_SIZE);
Rusty Russell1d8f4302005-12-07 21:40:34 +01001076}
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001077static DEVICE_ATTR(modalias, S_IRUGO, input_dev_show_modalias, NULL);
Rusty Russell1d8f4302005-12-07 21:40:34 +01001078
Greg Kroah-Hartman629b77a2005-10-27 22:25:43 -07001079static struct attribute *input_dev_attrs[] = {
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001080 &dev_attr_name.attr,
1081 &dev_attr_phys.attr,
1082 &dev_attr_uniq.attr,
1083 &dev_attr_modalias.attr,
Greg Kroah-Hartman629b77a2005-10-27 22:25:43 -07001084 NULL
1085};
1086
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001087static struct attribute_group input_dev_attr_group = {
Greg Kroah-Hartman629b77a2005-10-27 22:25:43 -07001088 .attrs = input_dev_attrs,
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -05001089};
1090
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001091#define INPUT_DEV_ID_ATTR(name) \
1092static ssize_t input_dev_show_id_##name(struct device *dev, \
1093 struct device_attribute *attr, \
1094 char *buf) \
1095{ \
1096 struct input_dev *input_dev = to_input_dev(dev); \
1097 return scnprintf(buf, PAGE_SIZE, "%04x\n", input_dev->id.name); \
1098} \
1099static DEVICE_ATTR(name, S_IRUGO, input_dev_show_id_##name, NULL)
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -05001100
1101INPUT_DEV_ID_ATTR(bustype);
1102INPUT_DEV_ID_ATTR(vendor);
1103INPUT_DEV_ID_ATTR(product);
1104INPUT_DEV_ID_ATTR(version);
1105
1106static struct attribute *input_dev_id_attrs[] = {
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001107 &dev_attr_bustype.attr,
1108 &dev_attr_vendor.attr,
1109 &dev_attr_product.attr,
1110 &dev_attr_version.attr,
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -05001111 NULL
1112};
1113
1114static struct attribute_group input_dev_id_attr_group = {
1115 .name = "id",
1116 .attrs = input_dev_id_attrs,
1117};
1118
Dmitry Torokhov969b21c2006-04-02 00:09:34 -05001119static int input_print_bitmap(char *buf, int buf_size, unsigned long *bitmap,
1120 int max, int add_cr)
1121{
1122 int i;
1123 int len = 0;
1124
Jiri Slaby7b19ada2007-10-18 23:40:32 -07001125 for (i = BITS_TO_LONGS(max) - 1; i > 0; i--)
Dmitry Torokhov969b21c2006-04-02 00:09:34 -05001126 if (bitmap[i])
1127 break;
1128
1129 for (; i >= 0; i--)
1130 len += snprintf(buf + len, max(buf_size - len, 0),
1131 "%lx%s", bitmap[i], i > 0 ? " " : "");
1132
1133 if (add_cr)
1134 len += snprintf(buf + len, max(buf_size - len, 0), "\n");
1135
1136 return len;
1137}
1138
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001139#define INPUT_DEV_CAP_ATTR(ev, bm) \
1140static ssize_t input_dev_show_cap_##bm(struct device *dev, \
1141 struct device_attribute *attr, \
1142 char *buf) \
1143{ \
1144 struct input_dev *input_dev = to_input_dev(dev); \
1145 int len = input_print_bitmap(buf, PAGE_SIZE, \
1146 input_dev->bm##bit, ev##_MAX, 1); \
1147 return min_t(int, len, PAGE_SIZE); \
1148} \
1149static DEVICE_ATTR(bm, S_IRUGO, input_dev_show_cap_##bm, NULL)
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -05001150
1151INPUT_DEV_CAP_ATTR(EV, ev);
1152INPUT_DEV_CAP_ATTR(KEY, key);
1153INPUT_DEV_CAP_ATTR(REL, rel);
1154INPUT_DEV_CAP_ATTR(ABS, abs);
1155INPUT_DEV_CAP_ATTR(MSC, msc);
1156INPUT_DEV_CAP_ATTR(LED, led);
1157INPUT_DEV_CAP_ATTR(SND, snd);
1158INPUT_DEV_CAP_ATTR(FF, ff);
1159INPUT_DEV_CAP_ATTR(SW, sw);
1160
1161static struct attribute *input_dev_caps_attrs[] = {
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001162 &dev_attr_ev.attr,
1163 &dev_attr_key.attr,
1164 &dev_attr_rel.attr,
1165 &dev_attr_abs.attr,
1166 &dev_attr_msc.attr,
1167 &dev_attr_led.attr,
1168 &dev_attr_snd.attr,
1169 &dev_attr_ff.attr,
1170 &dev_attr_sw.attr,
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -05001171 NULL
1172};
1173
1174static struct attribute_group input_dev_caps_attr_group = {
1175 .name = "capabilities",
1176 .attrs = input_dev_caps_attrs,
1177};
1178
Dmitry Torokhovcb9def42007-03-07 23:20:26 -05001179static struct attribute_group *input_dev_attr_groups[] = {
1180 &input_dev_attr_group,
1181 &input_dev_id_attr_group,
1182 &input_dev_caps_attr_group,
1183 NULL
1184};
1185
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001186static void input_dev_release(struct device *device)
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001187{
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001188 struct input_dev *dev = to_input_dev(device);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001189
Anssi Hannula509ca1a2006-07-19 01:40:22 -04001190 input_ff_destroy(dev);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001191 kfree(dev);
Anssi Hannula509ca1a2006-07-19 01:40:22 -04001192
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001193 module_put(THIS_MODULE);
1194}
1195
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001196/*
Kay Sievers312c0042005-11-16 09:00:00 +01001197 * Input uevent interface - loading event handlers based on
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001198 * device bitfields.
1199 */
Kay Sievers7eff2e72007-08-14 15:15:12 +02001200static int input_add_uevent_bm_var(struct kobj_uevent_env *env,
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001201 const char *name, unsigned long *bitmap, int max)
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001202{
Kay Sievers7eff2e72007-08-14 15:15:12 +02001203 int len;
1204
1205 if (add_uevent_var(env, "%s=", name))
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001206 return -ENOMEM;
1207
Kay Sievers7eff2e72007-08-14 15:15:12 +02001208 len = input_print_bitmap(&env->buf[env->buflen - 1],
1209 sizeof(env->buf) - env->buflen,
1210 bitmap, max, 0);
1211 if (len >= (sizeof(env->buf) - env->buflen))
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001212 return -ENOMEM;
1213
Kay Sievers7eff2e72007-08-14 15:15:12 +02001214 env->buflen += len;
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001215 return 0;
1216}
1217
Kay Sievers7eff2e72007-08-14 15:15:12 +02001218static int input_add_uevent_modalias_var(struct kobj_uevent_env *env,
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001219 struct input_dev *dev)
1220{
Kay Sievers7eff2e72007-08-14 15:15:12 +02001221 int len;
1222
1223 if (add_uevent_var(env, "MODALIAS="))
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001224 return -ENOMEM;
1225
Kay Sievers7eff2e72007-08-14 15:15:12 +02001226 len = input_print_modalias(&env->buf[env->buflen - 1],
1227 sizeof(env->buf) - env->buflen,
1228 dev, 0);
1229 if (len >= (sizeof(env->buf) - env->buflen))
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001230 return -ENOMEM;
1231
Kay Sievers7eff2e72007-08-14 15:15:12 +02001232 env->buflen += len;
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001233 return 0;
1234}
1235
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001236#define INPUT_ADD_HOTPLUG_VAR(fmt, val...) \
1237 do { \
Kay Sievers7eff2e72007-08-14 15:15:12 +02001238 int err = add_uevent_var(env, fmt, val); \
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001239 if (err) \
1240 return err; \
1241 } while (0)
1242
1243#define INPUT_ADD_HOTPLUG_BM_VAR(name, bm, max) \
1244 do { \
Kay Sievers7eff2e72007-08-14 15:15:12 +02001245 int err = input_add_uevent_bm_var(env, name, bm, max); \
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001246 if (err) \
1247 return err; \
1248 } while (0)
1249
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001250#define INPUT_ADD_HOTPLUG_MODALIAS_VAR(dev) \
1251 do { \
Kay Sievers7eff2e72007-08-14 15:15:12 +02001252 int err = input_add_uevent_modalias_var(env, dev); \
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001253 if (err) \
1254 return err; \
1255 } while (0)
1256
Kay Sievers7eff2e72007-08-14 15:15:12 +02001257static int input_dev_uevent(struct device *device, struct kobj_uevent_env *env)
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001258{
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001259 struct input_dev *dev = to_input_dev(device);
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001260
1261 INPUT_ADD_HOTPLUG_VAR("PRODUCT=%x/%x/%x/%x",
1262 dev->id.bustype, dev->id.vendor,
1263 dev->id.product, dev->id.version);
1264 if (dev->name)
1265 INPUT_ADD_HOTPLUG_VAR("NAME=\"%s\"", dev->name);
1266 if (dev->phys)
1267 INPUT_ADD_HOTPLUG_VAR("PHYS=\"%s\"", dev->phys);
Dmitry Torokhov08de1f02005-11-08 21:34:29 -08001268 if (dev->uniq)
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001269 INPUT_ADD_HOTPLUG_VAR("UNIQ=\"%s\"", dev->uniq);
1270
1271 INPUT_ADD_HOTPLUG_BM_VAR("EV=", dev->evbit, EV_MAX);
1272 if (test_bit(EV_KEY, dev->evbit))
1273 INPUT_ADD_HOTPLUG_BM_VAR("KEY=", dev->keybit, KEY_MAX);
1274 if (test_bit(EV_REL, dev->evbit))
1275 INPUT_ADD_HOTPLUG_BM_VAR("REL=", dev->relbit, REL_MAX);
1276 if (test_bit(EV_ABS, dev->evbit))
1277 INPUT_ADD_HOTPLUG_BM_VAR("ABS=", dev->absbit, ABS_MAX);
1278 if (test_bit(EV_MSC, dev->evbit))
1279 INPUT_ADD_HOTPLUG_BM_VAR("MSC=", dev->mscbit, MSC_MAX);
1280 if (test_bit(EV_LED, dev->evbit))
1281 INPUT_ADD_HOTPLUG_BM_VAR("LED=", dev->ledbit, LED_MAX);
1282 if (test_bit(EV_SND, dev->evbit))
1283 INPUT_ADD_HOTPLUG_BM_VAR("SND=", dev->sndbit, SND_MAX);
1284 if (test_bit(EV_FF, dev->evbit))
1285 INPUT_ADD_HOTPLUG_BM_VAR("FF=", dev->ffbit, FF_MAX);
1286 if (test_bit(EV_SW, dev->evbit))
1287 INPUT_ADD_HOTPLUG_BM_VAR("SW=", dev->swbit, SW_MAX);
1288
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001289 INPUT_ADD_HOTPLUG_MODALIAS_VAR(dev);
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001290
1291 return 0;
1292}
1293
Dmitry Torokhovffd0db92009-09-16 01:06:43 -07001294#define INPUT_DO_TOGGLE(dev, type, bits, on) \
1295 do { \
1296 int i; \
1297 if (!test_bit(EV_##type, dev->evbit)) \
1298 break; \
1299 for (i = 0; i < type##_MAX; i++) { \
1300 if (!test_bit(i, dev->bits##bit) || \
1301 !test_bit(i, dev->bits)) \
1302 continue; \
1303 dev->event(dev, EV_##type, i, on); \
1304 } \
1305 } while (0)
1306
1307static void input_dev_reset(struct input_dev *dev, bool activate)
1308{
1309 if (!dev->event)
1310 return;
1311
1312 INPUT_DO_TOGGLE(dev, LED, led, activate);
1313 INPUT_DO_TOGGLE(dev, SND, snd, activate);
1314
1315 if (activate && test_bit(EV_REP, dev->evbit)) {
1316 dev->event(dev, EV_REP, REP_PERIOD, dev->rep[REP_PERIOD]);
1317 dev->event(dev, EV_REP, REP_DELAY, dev->rep[REP_DELAY]);
1318 }
1319}
1320
1321#ifdef CONFIG_PM
1322static int input_dev_suspend(struct device *dev)
1323{
1324 struct input_dev *input_dev = to_input_dev(dev);
1325
1326 mutex_lock(&input_dev->mutex);
1327 input_dev_reset(input_dev, false);
1328 mutex_unlock(&input_dev->mutex);
1329
1330 return 0;
1331}
1332
1333static int input_dev_resume(struct device *dev)
1334{
1335 struct input_dev *input_dev = to_input_dev(dev);
1336
1337 mutex_lock(&input_dev->mutex);
1338 input_dev_reset(input_dev, true);
1339 mutex_unlock(&input_dev->mutex);
1340
1341 return 0;
1342}
1343
1344static const struct dev_pm_ops input_dev_pm_ops = {
1345 .suspend = input_dev_suspend,
1346 .resume = input_dev_resume,
1347 .poweroff = input_dev_suspend,
1348 .restore = input_dev_resume,
1349};
1350#endif /* CONFIG_PM */
1351
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001352static struct device_type input_dev_type = {
1353 .groups = input_dev_attr_groups,
1354 .release = input_dev_release,
1355 .uevent = input_dev_uevent,
Dmitry Torokhovffd0db92009-09-16 01:06:43 -07001356#ifdef CONFIG_PM
1357 .pm = &input_dev_pm_ops,
1358#endif
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001359};
1360
Kay Sieversaa5ed632009-04-30 15:23:42 +02001361static char *input_nodename(struct device *dev)
1362{
1363 return kasprintf(GFP_KERNEL, "input/%s", dev_name(dev));
1364}
1365
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -07001366struct class input_class = {
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001367 .name = "input",
Kay Sieversaa5ed632009-04-30 15:23:42 +02001368 .nodename = input_nodename,
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001369};
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001370EXPORT_SYMBOL_GPL(input_class);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001371
Dmitry Torokhov14471902006-11-02 23:26:55 -05001372/**
1373 * input_allocate_device - allocate memory for new input device
1374 *
1375 * Returns prepared struct input_dev or NULL.
1376 *
1377 * NOTE: Use input_free_device() to free devices that have not been
1378 * registered; input_unregister_device() should be used for already
1379 * registered devices.
1380 */
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001381struct input_dev *input_allocate_device(void)
1382{
1383 struct input_dev *dev;
1384
1385 dev = kzalloc(sizeof(struct input_dev), GFP_KERNEL);
1386 if (dev) {
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001387 dev->dev.type = &input_dev_type;
1388 dev->dev.class = &input_class;
1389 device_initialize(&dev->dev);
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -04001390 mutex_init(&dev->mutex);
Dmitry Torokhov80064792007-08-30 00:22:11 -04001391 spin_lock_init(&dev->event_lock);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001392 INIT_LIST_HEAD(&dev->h_list);
1393 INIT_LIST_HEAD(&dev->node);
Dmitry Torokhov655816e2006-09-14 01:32:14 -04001394
1395 __module_get(THIS_MODULE);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001396 }
1397
1398 return dev;
1399}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001400EXPORT_SYMBOL(input_allocate_device);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001401
Dmitry Torokhov14471902006-11-02 23:26:55 -05001402/**
1403 * input_free_device - free memory occupied by input_dev structure
1404 * @dev: input device to free
1405 *
1406 * This function should only be used if input_register_device()
1407 * was not called yet or if it failed. Once device was registered
1408 * use input_unregister_device() and memory will be freed once last
Dmitry Torokhov80064792007-08-30 00:22:11 -04001409 * reference to the device is dropped.
Dmitry Torokhov14471902006-11-02 23:26:55 -05001410 *
1411 * Device should be allocated by input_allocate_device().
1412 *
1413 * NOTE: If there are references to the input device then memory
1414 * will not be freed until last reference is dropped.
1415 */
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -04001416void input_free_device(struct input_dev *dev)
1417{
Dmitry Torokhov54f9e362007-03-16 00:57:25 -04001418 if (dev)
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -04001419 input_put_device(dev);
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -04001420}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001421EXPORT_SYMBOL(input_free_device);
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -04001422
Dmitry Torokhov534565f2007-04-25 00:53:18 -04001423/**
1424 * input_set_capability - mark device as capable of a certain event
1425 * @dev: device that is capable of emitting or accepting event
1426 * @type: type of the event (EV_KEY, EV_REL, etc...)
1427 * @code: event code
1428 *
1429 * In addition to setting up corresponding bit in appropriate capability
1430 * bitmap the function also adjusts dev->evbit.
1431 */
1432void input_set_capability(struct input_dev *dev, unsigned int type, unsigned int code)
1433{
1434 switch (type) {
1435 case EV_KEY:
1436 __set_bit(code, dev->keybit);
1437 break;
1438
1439 case EV_REL:
1440 __set_bit(code, dev->relbit);
1441 break;
1442
1443 case EV_ABS:
1444 __set_bit(code, dev->absbit);
1445 break;
1446
1447 case EV_MSC:
1448 __set_bit(code, dev->mscbit);
1449 break;
1450
1451 case EV_SW:
1452 __set_bit(code, dev->swbit);
1453 break;
1454
1455 case EV_LED:
1456 __set_bit(code, dev->ledbit);
1457 break;
1458
1459 case EV_SND:
1460 __set_bit(code, dev->sndbit);
1461 break;
1462
1463 case EV_FF:
1464 __set_bit(code, dev->ffbit);
1465 break;
1466
Dmitry Baryshkov22d1c392007-12-14 01:21:03 -05001467 case EV_PWR:
1468 /* do nothing */
1469 break;
1470
Dmitry Torokhov534565f2007-04-25 00:53:18 -04001471 default:
1472 printk(KERN_ERR
1473 "input_set_capability: unknown type %u (code %u)\n",
1474 type, code);
1475 dump_stack();
1476 return;
1477 }
1478
1479 __set_bit(type, dev->evbit);
1480}
1481EXPORT_SYMBOL(input_set_capability);
1482
Dmitry Torokhov80064792007-08-30 00:22:11 -04001483/**
1484 * input_register_device - register device with input core
1485 * @dev: device to be registered
1486 *
1487 * This function registers device with input core. The device must be
1488 * allocated with input_allocate_device() and all it's capabilities
1489 * set up before registering.
1490 * If function fails the device must be freed with input_free_device().
1491 * Once device has been successfully registered it can be unregistered
1492 * with input_unregister_device(); input_free_device() should not be
1493 * called in this case.
1494 */
Dmitry Torokhov5f945482005-11-02 22:51:46 -05001495int input_register_device(struct input_dev *dev)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001496{
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001497 static atomic_t input_no = ATOMIC_INIT(0);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001498 struct input_handler *handler;
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001499 const char *path;
1500 int error;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001501
Dmitry Torokhov80064792007-08-30 00:22:11 -04001502 __set_bit(EV_SYN, dev->evbit);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001503
1504 /*
1505 * If delay and period are pre-set by the driver, then autorepeating
1506 * is handled by the driver itself and we don't do it in input.c.
1507 */
1508
1509 init_timer(&dev->timer);
1510 if (!dev->rep[REP_DELAY] && !dev->rep[REP_PERIOD]) {
1511 dev->timer.data = (long) dev;
1512 dev->timer.function = input_repeat_key;
1513 dev->rep[REP_DELAY] = 250;
1514 dev->rep[REP_PERIOD] = 33;
1515 }
1516
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -04001517 if (!dev->getkeycode)
1518 dev->getkeycode = input_default_getkeycode;
1519
1520 if (!dev->setkeycode)
1521 dev->setkeycode = input_default_setkeycode;
1522
Kay Sieversa6c24902008-10-30 00:07:50 -04001523 dev_set_name(&dev->dev, "input%ld",
1524 (unsigned long) atomic_inc_return(&input_no) - 1);
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001525
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001526 error = device_add(&dev->dev);
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001527 if (error)
1528 return error;
1529
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001530 path = kobject_get_path(&dev->dev.kobj, GFP_KERNEL);
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001531 printk(KERN_INFO "input: %s as %s\n",
1532 dev->name ? dev->name : "Unspecified device", path ? path : "N/A");
1533 kfree(path);
Greg Kroah-Hartman10204022005-10-27 22:25:43 -07001534
Dmitry Torokhov80064792007-08-30 00:22:11 -04001535 error = mutex_lock_interruptible(&input_mutex);
1536 if (error) {
1537 device_del(&dev->dev);
1538 return error;
1539 }
1540
1541 list_add_tail(&dev->node, &input_dev_list);
1542
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001543 list_for_each_entry(handler, &input_handler_list, node)
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001544 input_attach_handler(dev, handler);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001545
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001546 input_wakeup_procfs_readers();
Dmitry Torokhov5f945482005-11-02 22:51:46 -05001547
Dmitry Torokhov80064792007-08-30 00:22:11 -04001548 mutex_unlock(&input_mutex);
1549
Dmitry Torokhov5f945482005-11-02 22:51:46 -05001550 return 0;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001551}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001552EXPORT_SYMBOL(input_register_device);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001553
Dmitry Torokhov80064792007-08-30 00:22:11 -04001554/**
1555 * input_unregister_device - unregister previously registered device
1556 * @dev: device to be unregistered
1557 *
1558 * This function unregisters an input device. Once device is unregistered
1559 * the caller should not try to access it as it may get freed at any moment.
1560 */
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001561void input_unregister_device(struct input_dev *dev)
1562{
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001563 struct input_handle *handle, *next;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001564
Dmitry Torokhov80064792007-08-30 00:22:11 -04001565 input_disconnect_device(dev);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001566
Dmitry Torokhov80064792007-08-30 00:22:11 -04001567 mutex_lock(&input_mutex);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001568
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001569 list_for_each_entry_safe(handle, next, &dev->h_list, d_node)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001570 handle->handler->disconnect(handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001571 WARN_ON(!list_empty(&dev->h_list));
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001572
Dmitry Torokhov80064792007-08-30 00:22:11 -04001573 del_timer_sync(&dev->timer);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001574 list_del_init(&dev->node);
1575
1576 input_wakeup_procfs_readers();
Dmitry Torokhov80064792007-08-30 00:22:11 -04001577
1578 mutex_unlock(&input_mutex);
1579
1580 device_unregister(&dev->dev);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001581}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001582EXPORT_SYMBOL(input_unregister_device);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001583
Dmitry Torokhov80064792007-08-30 00:22:11 -04001584/**
1585 * input_register_handler - register a new input handler
1586 * @handler: handler to be registered
1587 *
1588 * This function registers a new input handler (interface) for input
1589 * devices in the system and attaches it to all input devices that
1590 * are compatible with the handler.
1591 */
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001592int input_register_handler(struct input_handler *handler)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001593{
1594 struct input_dev *dev;
Dmitry Torokhov80064792007-08-30 00:22:11 -04001595 int retval;
1596
1597 retval = mutex_lock_interruptible(&input_mutex);
1598 if (retval)
1599 return retval;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001600
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001601 INIT_LIST_HEAD(&handler->h_list);
1602
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001603 if (handler->fops != NULL) {
Dmitry Torokhov80064792007-08-30 00:22:11 -04001604 if (input_table[handler->minor >> 5]) {
1605 retval = -EBUSY;
1606 goto out;
1607 }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001608 input_table[handler->minor >> 5] = handler;
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001609 }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001610
1611 list_add_tail(&handler->node, &input_handler_list);
1612
1613 list_for_each_entry(dev, &input_dev_list, node)
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001614 input_attach_handler(dev, handler);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001615
1616 input_wakeup_procfs_readers();
Dmitry Torokhov80064792007-08-30 00:22:11 -04001617
1618 out:
1619 mutex_unlock(&input_mutex);
1620 return retval;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001621}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001622EXPORT_SYMBOL(input_register_handler);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001623
Dmitry Torokhov80064792007-08-30 00:22:11 -04001624/**
1625 * input_unregister_handler - unregisters an input handler
1626 * @handler: handler to be unregistered
1627 *
1628 * This function disconnects a handler from its input devices and
1629 * removes it from lists of known handlers.
1630 */
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001631void input_unregister_handler(struct input_handler *handler)
1632{
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001633 struct input_handle *handle, *next;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001634
Dmitry Torokhov80064792007-08-30 00:22:11 -04001635 mutex_lock(&input_mutex);
1636
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001637 list_for_each_entry_safe(handle, next, &handler->h_list, h_node)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001638 handler->disconnect(handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001639 WARN_ON(!list_empty(&handler->h_list));
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001640
1641 list_del_init(&handler->node);
1642
1643 if (handler->fops != NULL)
1644 input_table[handler->minor >> 5] = NULL;
1645
1646 input_wakeup_procfs_readers();
Dmitry Torokhov80064792007-08-30 00:22:11 -04001647
1648 mutex_unlock(&input_mutex);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001649}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001650EXPORT_SYMBOL(input_unregister_handler);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001651
Dmitry Torokhov80064792007-08-30 00:22:11 -04001652/**
1653 * input_register_handle - register a new input handle
1654 * @handle: handle to register
1655 *
1656 * This function puts a new input handle onto device's
1657 * and handler's lists so that events can flow through
1658 * it once it is opened using input_open_device().
1659 *
1660 * This function is supposed to be called from handler's
1661 * connect() method.
1662 */
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001663int input_register_handle(struct input_handle *handle)
1664{
1665 struct input_handler *handler = handle->handler;
Dmitry Torokhov80064792007-08-30 00:22:11 -04001666 struct input_dev *dev = handle->dev;
1667 int error;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001668
Dmitry Torokhov80064792007-08-30 00:22:11 -04001669 /*
1670 * We take dev->mutex here to prevent race with
1671 * input_release_device().
1672 */
1673 error = mutex_lock_interruptible(&dev->mutex);
1674 if (error)
1675 return error;
1676 list_add_tail_rcu(&handle->d_node, &dev->h_list);
1677 mutex_unlock(&dev->mutex);
Dmitry Torokhov80064792007-08-30 00:22:11 -04001678
1679 /*
1680 * Since we are supposed to be called from ->connect()
1681 * which is mutually exclusive with ->disconnect()
1682 * we can't be racing with input_unregister_handle()
1683 * and so separate lock is not needed here.
1684 */
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001685 list_add_tail(&handle->h_node, &handler->h_list);
1686
1687 if (handler->start)
1688 handler->start(handle);
1689
1690 return 0;
1691}
1692EXPORT_SYMBOL(input_register_handle);
1693
Dmitry Torokhov80064792007-08-30 00:22:11 -04001694/**
1695 * input_unregister_handle - unregister an input handle
1696 * @handle: handle to unregister
1697 *
1698 * This function removes input handle from device's
1699 * and handler's lists.
1700 *
1701 * This function is supposed to be called from handler's
1702 * disconnect() method.
1703 */
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001704void input_unregister_handle(struct input_handle *handle)
1705{
Dmitry Torokhov80064792007-08-30 00:22:11 -04001706 struct input_dev *dev = handle->dev;
1707
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001708 list_del_init(&handle->h_node);
Dmitry Torokhov80064792007-08-30 00:22:11 -04001709
1710 /*
1711 * Take dev->mutex to prevent race with input_release_device().
1712 */
1713 mutex_lock(&dev->mutex);
1714 list_del_rcu(&handle->d_node);
1715 mutex_unlock(&dev->mutex);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -04001716 synchronize_rcu();
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001717}
1718EXPORT_SYMBOL(input_unregister_handle);
1719
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001720static int input_open_file(struct inode *inode, struct file *file)
1721{
Jonathan Corbet2edbf852008-05-15 10:37:16 -06001722 struct input_handler *handler;
Arjan van de Ven99ac48f2006-03-28 01:56:41 -08001723 const struct file_operations *old_fops, *new_fops = NULL;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001724 int err;
1725
Jonathan Corbet2edbf852008-05-15 10:37:16 -06001726 lock_kernel();
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001727 /* No load-on-demand here? */
Jonathan Corbet2edbf852008-05-15 10:37:16 -06001728 handler = input_table[iminor(inode) >> 5];
1729 if (!handler || !(new_fops = fops_get(handler->fops))) {
1730 err = -ENODEV;
1731 goto out;
1732 }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001733
1734 /*
1735 * That's _really_ odd. Usually NULL ->open means "nothing special",
1736 * not "no device". Oh, well...
1737 */
1738 if (!new_fops->open) {
1739 fops_put(new_fops);
Jonathan Corbet2edbf852008-05-15 10:37:16 -06001740 err = -ENODEV;
1741 goto out;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001742 }
1743 old_fops = file->f_op;
1744 file->f_op = new_fops;
1745
1746 err = new_fops->open(inode, file);
1747
1748 if (err) {
1749 fops_put(file->f_op);
1750 file->f_op = fops_get(old_fops);
1751 }
1752 fops_put(old_fops);
Jonathan Corbet2edbf852008-05-15 10:37:16 -06001753out:
1754 unlock_kernel();
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001755 return err;
1756}
1757
Arjan van de Ven2b8693c2007-02-12 00:55:32 -08001758static const struct file_operations input_fops = {
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001759 .owner = THIS_MODULE,
1760 .open = input_open_file,
1761};
1762
Henrik Rydberg61994a62009-04-28 07:45:31 -07001763static void __init input_init_abs_bypass(void)
1764{
1765 const unsigned int *p;
1766
1767 for (p = input_abs_bypass_init_data; *p; p++)
1768 input_abs_bypass[BIT_WORD(*p)] |= BIT_MASK(*p);
1769}
1770
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771static int __init input_init(void)
1772{
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001773 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774
Henrik Rydberg61994a62009-04-28 07:45:31 -07001775 input_init_abs_bypass();
1776
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -07001777 err = class_register(&input_class);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001778 if (err) {
1779 printk(KERN_ERR "input: unable to register input_dev class\n");
1780 return err;
1781 }
1782
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001783 err = input_proc_init();
1784 if (err)
Greg Kroah-Hartmanb0fdfeb2005-10-27 22:25:43 -07001785 goto fail1;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001786
1787 err = register_chrdev(INPUT_MAJOR, "input", &input_fops);
1788 if (err) {
1789 printk(KERN_ERR "input: unable to register char major %d", INPUT_MAJOR);
Greg Kroah-Hartmanb0fdfeb2005-10-27 22:25:43 -07001790 goto fail2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001792
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001793 return 0;
1794
Greg Kroah-Hartmanb0fdfeb2005-10-27 22:25:43 -07001795 fail2: input_proc_exit();
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -07001796 fail1: class_unregister(&input_class);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001797 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798}
1799
1800static void __exit input_exit(void)
1801{
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001802 input_proc_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 unregister_chrdev(INPUT_MAJOR, "input");
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -07001804 class_unregister(&input_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805}
1806
1807subsys_initcall(input_init);
1808module_exit(input_exit);