blob: 86cb2d2196ff9792f18c39646e44983af46fcf61 [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>
Alexey Dobriyana99bbaf2009-10-04 16:11:37 +040020#include <linux/sched.h>
Dmitry Torokhov969b21c2006-04-02 00:09:34 -050021#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/poll.h>
23#include <linux/device.h>
Jes Sorensene676c232006-02-19 00:21:46 -050024#include <linux/mutex.h>
Dmitry Torokhov80064792007-08-30 00:22:11 -040025#include <linux/rcupdate.h>
Jonathan Corbet2edbf852008-05-15 10:37:16 -060026#include <linux/smp_lock.h>
Dmitry Torokhov15e184a2010-01-11 00:05:43 -080027#include "input-compat.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29MODULE_AUTHOR("Vojtech Pavlik <vojtech@suse.cz>");
30MODULE_DESCRIPTION("Input core");
31MODULE_LICENSE("GPL");
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#define INPUT_DEVICES 256
34
Henrik Rydberg61994a62009-04-28 07:45:31 -070035/*
36 * EV_ABS events which should not be cached are listed here.
37 */
38static unsigned int input_abs_bypass_init_data[] __initdata = {
Henrik Rydberg5e5ee682009-04-28 07:47:33 -070039 ABS_MT_TOUCH_MAJOR,
40 ABS_MT_TOUCH_MINOR,
41 ABS_MT_WIDTH_MAJOR,
42 ABS_MT_WIDTH_MINOR,
43 ABS_MT_ORIENTATION,
44 ABS_MT_POSITION_X,
45 ABS_MT_POSITION_Y,
46 ABS_MT_TOOL_TYPE,
47 ABS_MT_BLOB_ID,
Henrik Rydbergdf391e02009-05-23 09:51:20 -070048 ABS_MT_TRACKING_ID,
Henrik Rydbergcb6ecf62010-01-28 22:28:27 -080049 ABS_MT_PRESSURE,
Henrik Rydberg61994a62009-04-28 07:45:31 -070050 0
51};
52static unsigned long input_abs_bypass[BITS_TO_LONGS(ABS_CNT)];
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054static LIST_HEAD(input_dev_list);
55static LIST_HEAD(input_handler_list);
56
Dmitry Torokhov80064792007-08-30 00:22:11 -040057/*
58 * input_mutex protects access to both input_dev_list and input_handler_list.
59 * This also causes input_[un]register_device and input_[un]register_handler
60 * be mutually exclusive which simplifies locking in drivers implementing
61 * input handlers.
62 */
63static DEFINE_MUTEX(input_mutex);
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065static struct input_handler *input_table[8];
66
Dmitry Torokhov80064792007-08-30 00:22:11 -040067static inline int is_event_supported(unsigned int code,
68 unsigned long *bm, unsigned int max)
69{
70 return code <= max && test_bit(code, bm);
71}
72
73static int input_defuzz_abs_event(int value, int old_val, int fuzz)
74{
75 if (fuzz) {
76 if (value > old_val - fuzz / 2 && value < old_val + fuzz / 2)
77 return old_val;
78
79 if (value > old_val - fuzz && value < old_val + fuzz)
80 return (old_val * 3 + value) / 4;
81
82 if (value > old_val - fuzz * 2 && value < old_val + fuzz * 2)
83 return (old_val + value) / 2;
84 }
85
86 return value;
87}
88
89/*
90 * Pass event through all open handles. This function is called with
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -040091 * dev->event_lock held and interrupts disabled.
Dmitry Torokhov80064792007-08-30 00:22:11 -040092 */
93static void input_pass_event(struct input_dev *dev,
94 unsigned int type, unsigned int code, int value)
95{
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -040096 struct input_handle *handle;
Dmitry Torokhov80064792007-08-30 00:22:11 -040097
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -040098 rcu_read_lock();
99
100 handle = rcu_dereference(dev->grab);
Dmitry Torokhov80064792007-08-30 00:22:11 -0400101 if (handle)
102 handle->handler->event(handle, type, code, value);
103 else
104 list_for_each_entry_rcu(handle, &dev->h_list, d_node)
105 if (handle->open)
106 handle->handler->event(handle,
107 type, code, value);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400108 rcu_read_unlock();
Dmitry Torokhov80064792007-08-30 00:22:11 -0400109}
110
111/*
112 * Generate software autorepeat event. Note that we take
113 * dev->event_lock here to avoid racing with input_event
114 * which may cause keys get "stuck".
115 */
116static void input_repeat_key(unsigned long data)
117{
118 struct input_dev *dev = (void *) data;
119 unsigned long flags;
120
121 spin_lock_irqsave(&dev->event_lock, flags);
122
123 if (test_bit(dev->repeat_key, dev->key) &&
124 is_event_supported(dev->repeat_key, dev->keybit, KEY_MAX)) {
125
126 input_pass_event(dev, EV_KEY, dev->repeat_key, 2);
127
128 if (dev->sync) {
129 /*
130 * Only send SYN_REPORT if we are not in a middle
131 * of driver parsing a new hardware packet.
132 * Otherwise assume that the driver will send
133 * SYN_REPORT once it's done.
134 */
135 input_pass_event(dev, EV_SYN, SYN_REPORT, 1);
136 }
137
138 if (dev->rep[REP_PERIOD])
139 mod_timer(&dev->timer, jiffies +
140 msecs_to_jiffies(dev->rep[REP_PERIOD]));
141 }
142
143 spin_unlock_irqrestore(&dev->event_lock, flags);
144}
145
146static void input_start_autorepeat(struct input_dev *dev, int code)
147{
148 if (test_bit(EV_REP, dev->evbit) &&
149 dev->rep[REP_PERIOD] && dev->rep[REP_DELAY] &&
150 dev->timer.data) {
151 dev->repeat_key = code;
152 mod_timer(&dev->timer,
153 jiffies + msecs_to_jiffies(dev->rep[REP_DELAY]));
154 }
155}
156
Johannes Berge7b5c1e2009-01-29 23:17:52 -0800157static void input_stop_autorepeat(struct input_dev *dev)
158{
159 del_timer(&dev->timer);
160}
161
Dmitry Torokhov80064792007-08-30 00:22:11 -0400162#define INPUT_IGNORE_EVENT 0
163#define INPUT_PASS_TO_HANDLERS 1
164#define INPUT_PASS_TO_DEVICE 2
165#define INPUT_PASS_TO_ALL (INPUT_PASS_TO_HANDLERS | INPUT_PASS_TO_DEVICE)
166
167static void input_handle_event(struct input_dev *dev,
168 unsigned int type, unsigned int code, int value)
169{
170 int disposition = INPUT_IGNORE_EVENT;
171
172 switch (type) {
173
174 case EV_SYN:
175 switch (code) {
176 case SYN_CONFIG:
177 disposition = INPUT_PASS_TO_ALL;
178 break;
179
180 case SYN_REPORT:
181 if (!dev->sync) {
182 dev->sync = 1;
183 disposition = INPUT_PASS_TO_HANDLERS;
184 }
185 break;
Henrik Rydberg5e5ee682009-04-28 07:47:33 -0700186 case SYN_MT_REPORT:
187 dev->sync = 0;
188 disposition = INPUT_PASS_TO_HANDLERS;
189 break;
Dmitry Torokhov80064792007-08-30 00:22:11 -0400190 }
191 break;
192
193 case EV_KEY:
194 if (is_event_supported(code, dev->keybit, KEY_MAX) &&
195 !!test_bit(code, dev->key) != value) {
196
197 if (value != 2) {
198 __change_bit(code, dev->key);
199 if (value)
200 input_start_autorepeat(dev, code);
Johannes Berge7b5c1e2009-01-29 23:17:52 -0800201 else
202 input_stop_autorepeat(dev);
Dmitry Torokhov80064792007-08-30 00:22:11 -0400203 }
204
205 disposition = INPUT_PASS_TO_HANDLERS;
206 }
207 break;
208
209 case EV_SW:
210 if (is_event_supported(code, dev->swbit, SW_MAX) &&
211 !!test_bit(code, dev->sw) != value) {
212
213 __change_bit(code, dev->sw);
214 disposition = INPUT_PASS_TO_HANDLERS;
215 }
216 break;
217
218 case EV_ABS:
219 if (is_event_supported(code, dev->absbit, ABS_MAX)) {
220
Henrik Rydberg61994a62009-04-28 07:45:31 -0700221 if (test_bit(code, input_abs_bypass)) {
222 disposition = INPUT_PASS_TO_HANDLERS;
223 break;
224 }
225
Dmitry Torokhov80064792007-08-30 00:22:11 -0400226 value = input_defuzz_abs_event(value,
227 dev->abs[code], dev->absfuzz[code]);
228
229 if (dev->abs[code] != value) {
230 dev->abs[code] = value;
231 disposition = INPUT_PASS_TO_HANDLERS;
232 }
233 }
234 break;
235
236 case EV_REL:
237 if (is_event_supported(code, dev->relbit, REL_MAX) && value)
238 disposition = INPUT_PASS_TO_HANDLERS;
239
240 break;
241
242 case EV_MSC:
243 if (is_event_supported(code, dev->mscbit, MSC_MAX))
244 disposition = INPUT_PASS_TO_ALL;
245
246 break;
247
248 case EV_LED:
249 if (is_event_supported(code, dev->ledbit, LED_MAX) &&
250 !!test_bit(code, dev->led) != value) {
251
252 __change_bit(code, dev->led);
253 disposition = INPUT_PASS_TO_ALL;
254 }
255 break;
256
257 case EV_SND:
258 if (is_event_supported(code, dev->sndbit, SND_MAX)) {
259
260 if (!!test_bit(code, dev->snd) != !!value)
261 __change_bit(code, dev->snd);
262 disposition = INPUT_PASS_TO_ALL;
263 }
264 break;
265
266 case EV_REP:
267 if (code <= REP_MAX && value >= 0 && dev->rep[code] != value) {
268 dev->rep[code] = value;
269 disposition = INPUT_PASS_TO_ALL;
270 }
271 break;
272
273 case EV_FF:
274 if (value >= 0)
275 disposition = INPUT_PASS_TO_ALL;
276 break;
Richard Purdieed2fa4d2008-01-03 10:46:21 -0500277
278 case EV_PWR:
279 disposition = INPUT_PASS_TO_ALL;
280 break;
Dmitry Torokhov80064792007-08-30 00:22:11 -0400281 }
282
Dmitry Torokhovc9812282008-06-02 01:02:40 -0400283 if (disposition != INPUT_IGNORE_EVENT && type != EV_SYN)
Dmitry Torokhov80064792007-08-30 00:22:11 -0400284 dev->sync = 0;
285
286 if ((disposition & INPUT_PASS_TO_DEVICE) && dev->event)
287 dev->event(dev, type, code, value);
288
289 if (disposition & INPUT_PASS_TO_HANDLERS)
290 input_pass_event(dev, type, code, value);
291}
292
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400293/**
294 * input_event() - report new input event
Dmitry Torokhov14471902006-11-02 23:26:55 -0500295 * @dev: device that generated the event
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400296 * @type: type of the event
297 * @code: event code
298 * @value: value of the event
299 *
Dmitry Torokhov80064792007-08-30 00:22:11 -0400300 * This function should be used by drivers implementing various input
Dmitry Torokhovdf2d4632009-12-11 21:57:31 -0800301 * devices to report input events. See also input_inject_event().
302 *
303 * NOTE: input_event() may be safely used right after input device was
304 * allocated with input_allocate_device(), even before it is registered
305 * with input_register_device(), but the event will not reach any of the
306 * input handlers. Such early invocation of input_event() may be used
307 * to 'seed' initial state of a switch or initial position of absolute
308 * axis, etc.
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400309 */
Dmitry Torokhov80064792007-08-30 00:22:11 -0400310void input_event(struct input_dev *dev,
311 unsigned int type, unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400313 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Dmitry Torokhov80064792007-08-30 00:22:11 -0400315 if (is_event_supported(type, dev->evbit, EV_MAX)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Dmitry Torokhov80064792007-08-30 00:22:11 -0400317 spin_lock_irqsave(&dev->event_lock, flags);
318 add_input_randomness(type, code, value);
319 input_handle_event(dev, type, code, value);
320 spin_unlock_irqrestore(&dev->event_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400323EXPORT_SYMBOL(input_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400325/**
326 * input_inject_event() - send input event from input handler
327 * @handle: input handle to send event through
328 * @type: type of the event
329 * @code: event code
330 * @value: value of the event
331 *
Dmitry Torokhov80064792007-08-30 00:22:11 -0400332 * Similar to input_event() but will ignore event if device is
333 * "grabbed" and handle injecting event is not the one that owns
334 * the device.
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400335 */
Dmitry Torokhov80064792007-08-30 00:22:11 -0400336void input_inject_event(struct input_handle *handle,
337 unsigned int type, unsigned int code, int value)
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400338{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400339 struct input_dev *dev = handle->dev;
340 struct input_handle *grab;
341 unsigned long flags;
342
343 if (is_event_supported(type, dev->evbit, EV_MAX)) {
344 spin_lock_irqsave(&dev->event_lock, flags);
345
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400346 rcu_read_lock();
Dmitry Torokhov80064792007-08-30 00:22:11 -0400347 grab = rcu_dereference(dev->grab);
348 if (!grab || grab == handle)
349 input_handle_event(dev, type, code, value);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400350 rcu_read_unlock();
Dmitry Torokhov80064792007-08-30 00:22:11 -0400351
352 spin_unlock_irqrestore(&dev->event_lock, flags);
353 }
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400354}
355EXPORT_SYMBOL(input_inject_event);
356
Dmitry Torokhov80064792007-08-30 00:22:11 -0400357/**
358 * input_grab_device - grabs device for exclusive use
359 * @handle: input handle that wants to own the device
360 *
361 * When a device is grabbed by an input handle all events generated by
362 * the device are delivered only to this handle. Also events injected
363 * by other input handles are ignored while device is grabbed.
364 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365int input_grab_device(struct input_handle *handle)
366{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400367 struct input_dev *dev = handle->dev;
368 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Dmitry Torokhov80064792007-08-30 00:22:11 -0400370 retval = mutex_lock_interruptible(&dev->mutex);
371 if (retval)
372 return retval;
373
374 if (dev->grab) {
375 retval = -EBUSY;
376 goto out;
377 }
378
379 rcu_assign_pointer(dev->grab, handle);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400380 synchronize_rcu();
Dmitry Torokhov80064792007-08-30 00:22:11 -0400381
382 out:
383 mutex_unlock(&dev->mutex);
384 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400386EXPORT_SYMBOL(input_grab_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Dmitry Torokhov80064792007-08-30 00:22:11 -0400388static void __input_release_device(struct input_handle *handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
Andrew Mortona2b2ed22006-07-15 01:17:38 -0400390 struct input_dev *dev = handle->dev;
Dmitry Torokhovc7e8dc62006-07-06 00:21:03 -0400391
Andrew Mortona2b2ed22006-07-15 01:17:38 -0400392 if (dev->grab == handle) {
Dmitry Torokhov80064792007-08-30 00:22:11 -0400393 rcu_assign_pointer(dev->grab, NULL);
394 /* Make sure input_pass_event() notices that grab is gone */
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400395 synchronize_rcu();
Andrew Mortona2b2ed22006-07-15 01:17:38 -0400396
397 list_for_each_entry(handle, &dev->h_list, d_node)
Dmitry Torokhov80064792007-08-30 00:22:11 -0400398 if (handle->open && handle->handler->start)
Dmitry Torokhovc7e8dc62006-07-06 00:21:03 -0400399 handle->handler->start(handle);
400 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401}
Dmitry Torokhov80064792007-08-30 00:22:11 -0400402
403/**
404 * input_release_device - release previously grabbed device
405 * @handle: input handle that owns the device
406 *
407 * Releases previously grabbed device so that other input handles can
408 * start receiving input events. Upon release all handlers attached
409 * to the device have their start() method called so they have a change
410 * to synchronize device state with the rest of the system.
411 */
412void input_release_device(struct input_handle *handle)
413{
414 struct input_dev *dev = handle->dev;
415
416 mutex_lock(&dev->mutex);
417 __input_release_device(handle);
418 mutex_unlock(&dev->mutex);
419}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400420EXPORT_SYMBOL(input_release_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Dmitry Torokhov80064792007-08-30 00:22:11 -0400422/**
423 * input_open_device - open input device
424 * @handle: handle through which device is being accessed
425 *
426 * This function should be called by input handlers when they
427 * want to start receive events from given input device.
428 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429int input_open_device(struct input_handle *handle)
430{
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500431 struct input_dev *dev = handle->dev;
Dmitry Torokhov80064792007-08-30 00:22:11 -0400432 int retval;
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500433
Dmitry Torokhov80064792007-08-30 00:22:11 -0400434 retval = mutex_lock_interruptible(&dev->mutex);
435 if (retval)
436 return retval;
437
438 if (dev->going_away) {
439 retval = -ENODEV;
440 goto out;
441 }
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 handle->open++;
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500444
445 if (!dev->users++ && dev->open)
Dmitry Torokhov80064792007-08-30 00:22:11 -0400446 retval = dev->open(dev);
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500447
Dmitry Torokhov80064792007-08-30 00:22:11 -0400448 if (retval) {
449 dev->users--;
450 if (!--handle->open) {
451 /*
452 * Make sure we are not delivering any more events
453 * through this handle
454 */
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400455 synchronize_rcu();
Dmitry Torokhov80064792007-08-30 00:22:11 -0400456 }
457 }
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500458
Dmitry Torokhov80064792007-08-30 00:22:11 -0400459 out:
Jes Sorensene676c232006-02-19 00:21:46 -0500460 mutex_unlock(&dev->mutex);
Dmitry Torokhov80064792007-08-30 00:22:11 -0400461 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400463EXPORT_SYMBOL(input_open_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Dmitry Torokhov80064792007-08-30 00:22:11 -0400465int input_flush_device(struct input_handle *handle, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400467 struct input_dev *dev = handle->dev;
468 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Dmitry Torokhov80064792007-08-30 00:22:11 -0400470 retval = mutex_lock_interruptible(&dev->mutex);
471 if (retval)
472 return retval;
473
474 if (dev->flush)
475 retval = dev->flush(dev, file);
476
477 mutex_unlock(&dev->mutex);
478 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400480EXPORT_SYMBOL(input_flush_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Dmitry Torokhov80064792007-08-30 00:22:11 -0400482/**
483 * input_close_device - close input device
484 * @handle: handle through which device is being accessed
485 *
486 * This function should be called by input handlers when they
487 * want to stop receive events from given input device.
488 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489void input_close_device(struct input_handle *handle)
490{
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500491 struct input_dev *dev = handle->dev;
492
Jes Sorensene676c232006-02-19 00:21:46 -0500493 mutex_lock(&dev->mutex);
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500494
Dmitry Torokhov80064792007-08-30 00:22:11 -0400495 __input_release_device(handle);
496
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500497 if (!--dev->users && dev->close)
498 dev->close(dev);
Dmitry Torokhov80064792007-08-30 00:22:11 -0400499
500 if (!--handle->open) {
501 /*
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400502 * synchronize_rcu() makes sure that input_pass_event()
Dmitry Torokhov80064792007-08-30 00:22:11 -0400503 * completed and that no more input events are delivered
504 * through this handle
505 */
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400506 synchronize_rcu();
Dmitry Torokhov80064792007-08-30 00:22:11 -0400507 }
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500508
Jes Sorensene676c232006-02-19 00:21:46 -0500509 mutex_unlock(&dev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400511EXPORT_SYMBOL(input_close_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Dmitry Torokhov80064792007-08-30 00:22:11 -0400513/*
514 * Prepare device for unregistering
515 */
516static void input_disconnect_device(struct input_dev *dev)
517{
518 struct input_handle *handle;
519 int code;
520
521 /*
522 * Mark device as going away. Note that we take dev->mutex here
523 * not to protect access to dev->going_away but rather to ensure
524 * that there are no threads in the middle of input_open_device()
525 */
526 mutex_lock(&dev->mutex);
Dmitry Torokhovffd0db92009-09-16 01:06:43 -0700527 dev->going_away = true;
Dmitry Torokhov80064792007-08-30 00:22:11 -0400528 mutex_unlock(&dev->mutex);
529
530 spin_lock_irq(&dev->event_lock);
531
532 /*
533 * Simulate keyup events for all pressed keys so that handlers
534 * are not left with "stuck" keys. The driver may continue
535 * generate events even after we done here but they will not
536 * reach any handlers.
537 */
538 if (is_event_supported(EV_KEY, dev->evbit, EV_MAX)) {
539 for (code = 0; code <= KEY_MAX; code++) {
540 if (is_event_supported(code, dev->keybit, KEY_MAX) &&
Dmitry Torokhovf4f37c82007-11-04 00:41:12 -0400541 __test_and_clear_bit(code, dev->key)) {
Dmitry Torokhov80064792007-08-30 00:22:11 -0400542 input_pass_event(dev, EV_KEY, code, 0);
543 }
544 }
545 input_pass_event(dev, EV_SYN, SYN_REPORT, 1);
546 }
547
548 list_for_each_entry(handle, &dev->h_list, d_node)
549 handle->open = 0;
550
551 spin_unlock_irq(&dev->event_lock);
552}
553
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400554static int input_fetch_keycode(struct input_dev *dev, int scancode)
555{
556 switch (dev->keycodesize) {
557 case 1:
558 return ((u8 *)dev->keycode)[scancode];
559
560 case 2:
561 return ((u16 *)dev->keycode)[scancode];
562
563 default:
564 return ((u32 *)dev->keycode)[scancode];
565 }
566}
567
568static int input_default_getkeycode(struct input_dev *dev,
569 int scancode, int *keycode)
570{
571 if (!dev->keycodesize)
572 return -EINVAL;
573
Dmitry Torokhovf4f37c82007-11-04 00:41:12 -0400574 if (scancode >= dev->keycodemax)
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400575 return -EINVAL;
576
577 *keycode = input_fetch_keycode(dev, scancode);
578
579 return 0;
580}
581
582static int input_default_setkeycode(struct input_dev *dev,
583 int scancode, int keycode)
584{
585 int old_keycode;
586 int i;
587
Dmitry Torokhovf4f37c82007-11-04 00:41:12 -0400588 if (scancode >= dev->keycodemax)
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400589 return -EINVAL;
590
591 if (!dev->keycodesize)
592 return -EINVAL;
593
594 if (dev->keycodesize < sizeof(keycode) && (keycode >> (dev->keycodesize * 8)))
595 return -EINVAL;
596
597 switch (dev->keycodesize) {
598 case 1: {
599 u8 *k = (u8 *)dev->keycode;
600 old_keycode = k[scancode];
601 k[scancode] = keycode;
602 break;
603 }
604 case 2: {
605 u16 *k = (u16 *)dev->keycode;
606 old_keycode = k[scancode];
607 k[scancode] = keycode;
608 break;
609 }
610 default: {
611 u32 *k = (u32 *)dev->keycode;
612 old_keycode = k[scancode];
613 k[scancode] = keycode;
614 break;
615 }
616 }
617
618 clear_bit(old_keycode, dev->keybit);
619 set_bit(keycode, dev->keybit);
620
621 for (i = 0; i < dev->keycodemax; i++) {
622 if (input_fetch_keycode(dev, i) == old_keycode) {
623 set_bit(old_keycode, dev->keybit);
624 break; /* Setting the bit twice is useless, so break */
625 }
626 }
627
628 return 0;
629}
630
Dmitry Torokhovf4f37c82007-11-04 00:41:12 -0400631/**
632 * input_get_keycode - retrieve keycode currently mapped to a given scancode
633 * @dev: input device which keymap is being queried
634 * @scancode: scancode (or its equivalent for device in question) for which
635 * keycode is needed
636 * @keycode: result
637 *
638 * This function should be called by anyone interested in retrieving current
639 * keymap. Presently keyboard and evdev handlers use it.
640 */
641int input_get_keycode(struct input_dev *dev, int scancode, int *keycode)
642{
643 if (scancode < 0)
644 return -EINVAL;
645
646 return dev->getkeycode(dev, scancode, keycode);
647}
648EXPORT_SYMBOL(input_get_keycode);
649
650/**
651 * input_get_keycode - assign new keycode to a given scancode
652 * @dev: input device which keymap is being updated
653 * @scancode: scancode (or its equivalent for device in question)
654 * @keycode: new keycode to be assigned to the scancode
655 *
656 * This function should be called by anyone needing to update current
657 * keymap. Presently keyboard and evdev handlers use it.
658 */
659int input_set_keycode(struct input_dev *dev, int scancode, int keycode)
660{
661 unsigned long flags;
662 int old_keycode;
663 int retval;
664
665 if (scancode < 0)
666 return -EINVAL;
667
668 if (keycode < 0 || keycode > KEY_MAX)
669 return -EINVAL;
670
671 spin_lock_irqsave(&dev->event_lock, flags);
672
673 retval = dev->getkeycode(dev, scancode, &old_keycode);
674 if (retval)
675 goto out;
676
677 retval = dev->setkeycode(dev, scancode, keycode);
678 if (retval)
679 goto out;
680
681 /*
682 * Simulate keyup event if keycode is not present
683 * in the keymap anymore
684 */
685 if (test_bit(EV_KEY, dev->evbit) &&
686 !is_event_supported(old_keycode, dev->keybit, KEY_MAX) &&
687 __test_and_clear_bit(old_keycode, dev->key)) {
688
689 input_pass_event(dev, EV_KEY, old_keycode, 0);
690 if (dev->sync)
691 input_pass_event(dev, EV_SYN, SYN_REPORT, 1);
692 }
693
694 out:
695 spin_unlock_irqrestore(&dev->event_lock, flags);
696
697 return retval;
698}
699EXPORT_SYMBOL(input_set_keycode);
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400700
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701#define MATCH_BIT(bit, max) \
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700702 for (i = 0; i < BITS_TO_LONGS(max); i++) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 if ((id->bit[i] & dev->bit[i]) != id->bit[i]) \
704 break; \
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700705 if (i != BITS_TO_LONGS(max)) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 continue;
707
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400708static const struct input_device_id *input_match_device(const struct input_device_id *id,
709 struct input_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
711 int i;
712
713 for (; id->flags || id->driver_info; id++) {
714
715 if (id->flags & INPUT_DEVICE_ID_MATCH_BUS)
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400716 if (id->bustype != dev->id.bustype)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 continue;
718
719 if (id->flags & INPUT_DEVICE_ID_MATCH_VENDOR)
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400720 if (id->vendor != dev->id.vendor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 continue;
722
723 if (id->flags & INPUT_DEVICE_ID_MATCH_PRODUCT)
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400724 if (id->product != dev->id.product)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 continue;
726
727 if (id->flags & INPUT_DEVICE_ID_MATCH_VERSION)
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400728 if (id->version != dev->id.version)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 continue;
730
731 MATCH_BIT(evbit, EV_MAX);
732 MATCH_BIT(keybit, KEY_MAX);
733 MATCH_BIT(relbit, REL_MAX);
734 MATCH_BIT(absbit, ABS_MAX);
735 MATCH_BIT(mscbit, MSC_MAX);
736 MATCH_BIT(ledbit, LED_MAX);
737 MATCH_BIT(sndbit, SND_MAX);
738 MATCH_BIT(ffbit, FF_MAX);
Dmitry Torokhovff13f982005-09-24 02:02:29 -0500739 MATCH_BIT(swbit, SW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
741 return id;
742 }
743
744 return NULL;
745}
746
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400747static int input_attach_handler(struct input_dev *dev, struct input_handler *handler)
748{
749 const struct input_device_id *id;
750 int error;
751
752 if (handler->blacklist && input_match_device(handler->blacklist, dev))
753 return -ENODEV;
754
755 id = input_match_device(handler->id_table, dev);
756 if (!id)
757 return -ENODEV;
758
759 error = handler->connect(handler, dev, id);
760 if (error && error != -ENODEV)
761 printk(KERN_ERR
762 "input: failed to attach handler %s to device %s, "
763 "error: %d\n",
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400764 handler->name, kobject_name(&dev->dev.kobj), error);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400765
766 return error;
767}
768
Dmitry Torokhov15e184a2010-01-11 00:05:43 -0800769#ifdef CONFIG_COMPAT
770
771static int input_bits_to_string(char *buf, int buf_size,
772 unsigned long bits, bool skip_empty)
773{
774 int len = 0;
775
776 if (INPUT_COMPAT_TEST) {
777 u32 dword = bits >> 32;
778 if (dword || !skip_empty)
779 len += snprintf(buf, buf_size, "%x ", dword);
780
781 dword = bits & 0xffffffffUL;
782 if (dword || !skip_empty || len)
783 len += snprintf(buf + len, max(buf_size - len, 0),
784 "%x", dword);
785 } else {
786 if (bits || !skip_empty)
787 len += snprintf(buf, buf_size, "%lx", bits);
788 }
789
790 return len;
791}
792
793#else /* !CONFIG_COMPAT */
794
795static int input_bits_to_string(char *buf, int buf_size,
796 unsigned long bits, bool skip_empty)
797{
798 return bits || !skip_empty ?
799 snprintf(buf, buf_size, "%lx", bits) : 0;
800}
801
802#endif
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400803
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804#ifdef CONFIG_PROC_FS
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500805
806static struct proc_dir_entry *proc_bus_input_dir;
807static DECLARE_WAIT_QUEUE_HEAD(input_devices_poll_wait);
808static int input_devices_state;
809
810static inline void input_wakeup_procfs_readers(void)
811{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 input_devices_state++;
813 wake_up(&input_devices_poll_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814}
815
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500816static unsigned int input_proc_devices_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500818 poll_wait(file, &input_devices_poll_wait, wait);
Dmitry Torokhovfa886612009-03-04 00:52:20 -0800819 if (file->f_version != input_devices_state) {
820 file->f_version = input_devices_state;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500821 return POLLIN | POLLRDNORM;
Dmitry Torokhovfa886612009-03-04 00:52:20 -0800822 }
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400823
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500824 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825}
826
Dmitry Torokhov1572ca22009-10-13 23:37:30 -0700827union input_seq_state {
828 struct {
829 unsigned short pos;
830 bool mutex_acquired;
831 };
832 void *p;
833};
834
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500835static void *input_devices_seq_start(struct seq_file *seq, loff_t *pos)
836{
Dmitry Torokhov1572ca22009-10-13 23:37:30 -0700837 union input_seq_state *state = (union input_seq_state *)&seq->private;
838 int error;
839
840 /* We need to fit into seq->private pointer */
841 BUILD_BUG_ON(sizeof(union input_seq_state) != sizeof(seq->private));
842
843 error = mutex_lock_interruptible(&input_mutex);
844 if (error) {
845 state->mutex_acquired = false;
846 return ERR_PTR(error);
847 }
848
849 state->mutex_acquired = true;
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500850
Pavel Emelianovad5d9722007-07-18 00:38:32 -0400851 return seq_list_start(&input_dev_list, *pos);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500852}
853
854static void *input_devices_seq_next(struct seq_file *seq, void *v, loff_t *pos)
855{
Pavel Emelianovad5d9722007-07-18 00:38:32 -0400856 return seq_list_next(v, &input_dev_list, pos);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500857}
858
Dmitry Torokhov1572ca22009-10-13 23:37:30 -0700859static void input_seq_stop(struct seq_file *seq, void *v)
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500860{
Dmitry Torokhov1572ca22009-10-13 23:37:30 -0700861 union input_seq_state *state = (union input_seq_state *)&seq->private;
862
863 if (state->mutex_acquired)
864 mutex_unlock(&input_mutex);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500865}
866
867static void input_seq_print_bitmap(struct seq_file *seq, const char *name,
868 unsigned long *bitmap, int max)
869{
870 int i;
Dmitry Torokhov15e184a2010-01-11 00:05:43 -0800871 bool skip_empty = true;
872 char buf[18];
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500873
874 seq_printf(seq, "B: %s=", name);
Dmitry Torokhov15e184a2010-01-11 00:05:43 -0800875
876 for (i = BITS_TO_LONGS(max) - 1; i >= 0; i--) {
877 if (input_bits_to_string(buf, sizeof(buf),
878 bitmap[i], skip_empty)) {
879 skip_empty = false;
880 seq_printf(seq, "%s%s", buf, i > 0 ? " " : "");
881 }
882 }
883
884 /*
885 * If no output was produced print a single 0.
886 */
887 if (skip_empty)
888 seq_puts(seq, "0");
889
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500890 seq_putc(seq, '\n');
891}
892
893static int input_devices_seq_show(struct seq_file *seq, void *v)
894{
895 struct input_dev *dev = container_of(v, struct input_dev, node);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400896 const char *path = kobject_get_path(&dev->dev.kobj, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 struct input_handle *handle;
898
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500899 seq_printf(seq, "I: Bus=%04x Vendor=%04x Product=%04x Version=%04x\n",
900 dev->id.bustype, dev->id.vendor, dev->id.product, dev->id.version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500902 seq_printf(seq, "N: Name=\"%s\"\n", dev->name ? dev->name : "");
903 seq_printf(seq, "P: Phys=%s\n", dev->phys ? dev->phys : "");
904 seq_printf(seq, "S: Sysfs=%s\n", path ? path : "");
Dmitry Torokhov15e03ae2007-03-07 23:20:17 -0500905 seq_printf(seq, "U: Uniq=%s\n", dev->uniq ? dev->uniq : "");
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500906 seq_printf(seq, "H: Handlers=");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500908 list_for_each_entry(handle, &dev->h_list, d_node)
909 seq_printf(seq, "%s ", handle->name);
910 seq_putc(seq, '\n');
Dmitry Torokhov051b2fe2005-09-15 02:01:54 -0500911
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500912 input_seq_print_bitmap(seq, "EV", dev->evbit, EV_MAX);
913 if (test_bit(EV_KEY, dev->evbit))
914 input_seq_print_bitmap(seq, "KEY", dev->keybit, KEY_MAX);
915 if (test_bit(EV_REL, dev->evbit))
916 input_seq_print_bitmap(seq, "REL", dev->relbit, REL_MAX);
917 if (test_bit(EV_ABS, dev->evbit))
918 input_seq_print_bitmap(seq, "ABS", dev->absbit, ABS_MAX);
919 if (test_bit(EV_MSC, dev->evbit))
920 input_seq_print_bitmap(seq, "MSC", dev->mscbit, MSC_MAX);
921 if (test_bit(EV_LED, dev->evbit))
922 input_seq_print_bitmap(seq, "LED", dev->ledbit, LED_MAX);
923 if (test_bit(EV_SND, dev->evbit))
924 input_seq_print_bitmap(seq, "SND", dev->sndbit, SND_MAX);
925 if (test_bit(EV_FF, dev->evbit))
926 input_seq_print_bitmap(seq, "FF", dev->ffbit, FF_MAX);
927 if (test_bit(EV_SW, dev->evbit))
928 input_seq_print_bitmap(seq, "SW", dev->swbit, SW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500930 seq_putc(seq, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500932 kfree(path);
933 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934}
935
Jan Engelhardtcec69c32008-01-31 00:43:32 -0500936static const struct seq_operations input_devices_seq_ops = {
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500937 .start = input_devices_seq_start,
938 .next = input_devices_seq_next,
Dmitry Torokhov1572ca22009-10-13 23:37:30 -0700939 .stop = input_seq_stop,
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500940 .show = input_devices_seq_show,
941};
942
943static int input_proc_devices_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944{
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500945 return seq_open(file, &input_devices_seq_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946}
947
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800948static const struct file_operations input_devices_fileops = {
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500949 .owner = THIS_MODULE,
950 .open = input_proc_devices_open,
951 .poll = input_proc_devices_poll,
952 .read = seq_read,
953 .llseek = seq_lseek,
954 .release = seq_release,
955};
956
957static void *input_handlers_seq_start(struct seq_file *seq, loff_t *pos)
958{
Dmitry Torokhov1572ca22009-10-13 23:37:30 -0700959 union input_seq_state *state = (union input_seq_state *)&seq->private;
960 int error;
Dmitry Torokhov80064792007-08-30 00:22:11 -0400961
Dmitry Torokhov1572ca22009-10-13 23:37:30 -0700962 /* We need to fit into seq->private pointer */
963 BUILD_BUG_ON(sizeof(union input_seq_state) != sizeof(seq->private));
964
965 error = mutex_lock_interruptible(&input_mutex);
966 if (error) {
967 state->mutex_acquired = false;
968 return ERR_PTR(error);
969 }
970
971 state->mutex_acquired = true;
972 state->pos = *pos;
973
Pavel Emelianovad5d9722007-07-18 00:38:32 -0400974 return seq_list_start(&input_handler_list, *pos);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500975}
976
977static void *input_handlers_seq_next(struct seq_file *seq, void *v, loff_t *pos)
978{
Dmitry Torokhov1572ca22009-10-13 23:37:30 -0700979 union input_seq_state *state = (union input_seq_state *)&seq->private;
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500980
Dmitry Torokhov1572ca22009-10-13 23:37:30 -0700981 state->pos = *pos + 1;
982 return seq_list_next(v, &input_handler_list, pos);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500983}
984
985static int input_handlers_seq_show(struct seq_file *seq, void *v)
986{
987 struct input_handler *handler = container_of(v, struct input_handler, node);
Dmitry Torokhov1572ca22009-10-13 23:37:30 -0700988 union input_seq_state *state = (union input_seq_state *)&seq->private;
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500989
Dmitry Torokhov1572ca22009-10-13 23:37:30 -0700990 seq_printf(seq, "N: Number=%u Name=%s", state->pos, handler->name);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500991 if (handler->fops)
992 seq_printf(seq, " Minor=%d", handler->minor);
993 seq_putc(seq, '\n');
994
995 return 0;
996}
Dmitry Torokhov1572ca22009-10-13 23:37:30 -0700997
Jan Engelhardtcec69c32008-01-31 00:43:32 -0500998static const struct seq_operations input_handlers_seq_ops = {
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500999 .start = input_handlers_seq_start,
1000 .next = input_handlers_seq_next,
Dmitry Torokhov1572ca22009-10-13 23:37:30 -07001001 .stop = input_seq_stop,
Dmitry Torokhov969b21c2006-04-02 00:09:34 -05001002 .show = input_handlers_seq_show,
1003};
1004
1005static int input_proc_handlers_open(struct inode *inode, struct file *file)
1006{
1007 return seq_open(file, &input_handlers_seq_ops);
1008}
1009
Arjan van de Ven2b8693c2007-02-12 00:55:32 -08001010static const struct file_operations input_handlers_fileops = {
Dmitry Torokhov969b21c2006-04-02 00:09:34 -05001011 .owner = THIS_MODULE,
1012 .open = input_proc_handlers_open,
1013 .read = seq_read,
1014 .llseek = seq_lseek,
1015 .release = seq_release,
1016};
Luke Kosewskie334016fc2005-06-01 02:39:28 -05001017
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018static int __init input_proc_init(void)
1019{
1020 struct proc_dir_entry *entry;
1021
Alexey Dobriyan9c370662008-04-29 01:01:41 -07001022 proc_bus_input_dir = proc_mkdir("bus/input", NULL);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001023 if (!proc_bus_input_dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 return -ENOMEM;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001025
Denis V. Lunevc7705f32008-04-29 01:02:35 -07001026 entry = proc_create("devices", 0, proc_bus_input_dir,
1027 &input_devices_fileops);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001028 if (!entry)
1029 goto fail1;
1030
Denis V. Lunevc7705f32008-04-29 01:02:35 -07001031 entry = proc_create("handlers", 0, proc_bus_input_dir,
1032 &input_handlers_fileops);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001033 if (!entry)
1034 goto fail2;
1035
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 return 0;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001037
1038 fail2: remove_proc_entry("devices", proc_bus_input_dir);
Alexey Dobriyan9c370662008-04-29 01:01:41 -07001039 fail1: remove_proc_entry("bus/input", NULL);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001040 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041}
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001042
Andrew Mortonbeffbdc2005-07-01 23:54:30 -05001043static void input_proc_exit(void)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001044{
1045 remove_proc_entry("devices", proc_bus_input_dir);
1046 remove_proc_entry("handlers", proc_bus_input_dir);
Alexey Dobriyan9c370662008-04-29 01:01:41 -07001047 remove_proc_entry("bus/input", NULL);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001048}
1049
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050#else /* !CONFIG_PROC_FS */
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001051static inline void input_wakeup_procfs_readers(void) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052static inline int input_proc_init(void) { return 0; }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001053static inline void input_proc_exit(void) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054#endif
1055
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001056#define INPUT_DEV_STRING_ATTR_SHOW(name) \
1057static ssize_t input_dev_show_##name(struct device *dev, \
1058 struct device_attribute *attr, \
1059 char *buf) \
1060{ \
1061 struct input_dev *input_dev = to_input_dev(dev); \
1062 \
1063 return scnprintf(buf, PAGE_SIZE, "%s\n", \
1064 input_dev->name ? input_dev->name : ""); \
1065} \
1066static DEVICE_ATTR(name, S_IRUGO, input_dev_show_##name, NULL)
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -05001067
1068INPUT_DEV_STRING_ATTR_SHOW(name);
1069INPUT_DEV_STRING_ATTR_SHOW(phys);
1070INPUT_DEV_STRING_ATTR_SHOW(uniq);
1071
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001072static int input_print_modalias_bits(char *buf, int size,
1073 char name, unsigned long *bm,
1074 unsigned int min_bit, unsigned int max_bit)
Rusty Russell1d8f4302005-12-07 21:40:34 +01001075{
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001076 int len = 0, i;
Rusty Russell1d8f4302005-12-07 21:40:34 +01001077
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001078 len += snprintf(buf, max(size, 0), "%c", name);
1079 for (i = min_bit; i < max_bit; i++)
Jiri Slaby7b19ada2007-10-18 23:40:32 -07001080 if (bm[BIT_WORD(i)] & BIT_MASK(i))
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001081 len += snprintf(buf + len, max(size - len, 0), "%X,", i);
Kay Sieversbd37e5a2006-01-05 13:19:55 +01001082 return len;
1083}
1084
Dmitry Torokhov2db66872006-04-02 00:09:26 -05001085static int input_print_modalias(char *buf, int size, struct input_dev *id,
1086 int add_cr)
Kay Sieversbd37e5a2006-01-05 13:19:55 +01001087{
1088 int len;
1089
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001090 len = snprintf(buf, max(size, 0),
1091 "input:b%04Xv%04Xp%04Xe%04X-",
1092 id->id.bustype, id->id.vendor,
1093 id->id.product, id->id.version);
Kay Sieversbd37e5a2006-01-05 13:19:55 +01001094
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001095 len += input_print_modalias_bits(buf + len, size - len,
1096 'e', id->evbit, 0, EV_MAX);
1097 len += input_print_modalias_bits(buf + len, size - len,
1098 'k', id->keybit, KEY_MIN_INTERESTING, KEY_MAX);
1099 len += input_print_modalias_bits(buf + len, size - len,
1100 'r', id->relbit, 0, REL_MAX);
1101 len += input_print_modalias_bits(buf + len, size - len,
1102 'a', id->absbit, 0, ABS_MAX);
1103 len += input_print_modalias_bits(buf + len, size - len,
1104 'm', id->mscbit, 0, MSC_MAX);
1105 len += input_print_modalias_bits(buf + len, size - len,
1106 'l', id->ledbit, 0, LED_MAX);
1107 len += input_print_modalias_bits(buf + len, size - len,
1108 's', id->sndbit, 0, SND_MAX);
1109 len += input_print_modalias_bits(buf + len, size - len,
1110 'f', id->ffbit, 0, FF_MAX);
1111 len += input_print_modalias_bits(buf + len, size - len,
1112 'w', id->swbit, 0, SW_MAX);
Dmitry Torokhov2db66872006-04-02 00:09:26 -05001113
1114 if (add_cr)
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001115 len += snprintf(buf + len, max(size - len, 0), "\n");
Dmitry Torokhov2db66872006-04-02 00:09:26 -05001116
Rusty Russell1d8f4302005-12-07 21:40:34 +01001117 return len;
1118}
1119
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001120static ssize_t input_dev_show_modalias(struct device *dev,
1121 struct device_attribute *attr,
1122 char *buf)
Rusty Russell1d8f4302005-12-07 21:40:34 +01001123{
1124 struct input_dev *id = to_input_dev(dev);
Kay Sieversbd37e5a2006-01-05 13:19:55 +01001125 ssize_t len;
Rusty Russell1d8f4302005-12-07 21:40:34 +01001126
Dmitry Torokhov2db66872006-04-02 00:09:26 -05001127 len = input_print_modalias(buf, PAGE_SIZE, id, 1);
1128
Richard Purdie8a3cf452006-06-26 01:48:21 -04001129 return min_t(int, len, PAGE_SIZE);
Rusty Russell1d8f4302005-12-07 21:40:34 +01001130}
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001131static DEVICE_ATTR(modalias, S_IRUGO, input_dev_show_modalias, NULL);
Rusty Russell1d8f4302005-12-07 21:40:34 +01001132
Greg Kroah-Hartman629b77a2005-10-27 22:25:43 -07001133static struct attribute *input_dev_attrs[] = {
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001134 &dev_attr_name.attr,
1135 &dev_attr_phys.attr,
1136 &dev_attr_uniq.attr,
1137 &dev_attr_modalias.attr,
Greg Kroah-Hartman629b77a2005-10-27 22:25:43 -07001138 NULL
1139};
1140
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001141static struct attribute_group input_dev_attr_group = {
Greg Kroah-Hartman629b77a2005-10-27 22:25:43 -07001142 .attrs = input_dev_attrs,
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -05001143};
1144
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001145#define INPUT_DEV_ID_ATTR(name) \
1146static ssize_t input_dev_show_id_##name(struct device *dev, \
1147 struct device_attribute *attr, \
1148 char *buf) \
1149{ \
1150 struct input_dev *input_dev = to_input_dev(dev); \
1151 return scnprintf(buf, PAGE_SIZE, "%04x\n", input_dev->id.name); \
1152} \
1153static DEVICE_ATTR(name, S_IRUGO, input_dev_show_id_##name, NULL)
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -05001154
1155INPUT_DEV_ID_ATTR(bustype);
1156INPUT_DEV_ID_ATTR(vendor);
1157INPUT_DEV_ID_ATTR(product);
1158INPUT_DEV_ID_ATTR(version);
1159
1160static struct attribute *input_dev_id_attrs[] = {
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001161 &dev_attr_bustype.attr,
1162 &dev_attr_vendor.attr,
1163 &dev_attr_product.attr,
1164 &dev_attr_version.attr,
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -05001165 NULL
1166};
1167
1168static struct attribute_group input_dev_id_attr_group = {
1169 .name = "id",
1170 .attrs = input_dev_id_attrs,
1171};
1172
Dmitry Torokhov969b21c2006-04-02 00:09:34 -05001173static int input_print_bitmap(char *buf, int buf_size, unsigned long *bitmap,
1174 int max, int add_cr)
1175{
1176 int i;
1177 int len = 0;
Dmitry Torokhov15e184a2010-01-11 00:05:43 -08001178 bool skip_empty = true;
Dmitry Torokhov969b21c2006-04-02 00:09:34 -05001179
Dmitry Torokhov15e184a2010-01-11 00:05:43 -08001180 for (i = BITS_TO_LONGS(max) - 1; i >= 0; i--) {
1181 len += input_bits_to_string(buf + len, max(buf_size - len, 0),
1182 bitmap[i], skip_empty);
1183 if (len) {
1184 skip_empty = false;
1185 if (i > 0)
1186 len += snprintf(buf + len, max(buf_size - len, 0), " ");
1187 }
1188 }
Dmitry Torokhov969b21c2006-04-02 00:09:34 -05001189
Dmitry Torokhov15e184a2010-01-11 00:05:43 -08001190 /*
1191 * If no output was produced print a single 0.
1192 */
1193 if (len == 0)
1194 len = snprintf(buf, buf_size, "%d", 0);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -05001195
1196 if (add_cr)
1197 len += snprintf(buf + len, max(buf_size - len, 0), "\n");
1198
1199 return len;
1200}
1201
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001202#define INPUT_DEV_CAP_ATTR(ev, bm) \
1203static ssize_t input_dev_show_cap_##bm(struct device *dev, \
1204 struct device_attribute *attr, \
1205 char *buf) \
1206{ \
1207 struct input_dev *input_dev = to_input_dev(dev); \
1208 int len = input_print_bitmap(buf, PAGE_SIZE, \
Dmitry Torokhov15e184a2010-01-11 00:05:43 -08001209 input_dev->bm##bit, ev##_MAX, \
1210 true); \
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001211 return min_t(int, len, PAGE_SIZE); \
1212} \
1213static DEVICE_ATTR(bm, S_IRUGO, input_dev_show_cap_##bm, NULL)
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -05001214
1215INPUT_DEV_CAP_ATTR(EV, ev);
1216INPUT_DEV_CAP_ATTR(KEY, key);
1217INPUT_DEV_CAP_ATTR(REL, rel);
1218INPUT_DEV_CAP_ATTR(ABS, abs);
1219INPUT_DEV_CAP_ATTR(MSC, msc);
1220INPUT_DEV_CAP_ATTR(LED, led);
1221INPUT_DEV_CAP_ATTR(SND, snd);
1222INPUT_DEV_CAP_ATTR(FF, ff);
1223INPUT_DEV_CAP_ATTR(SW, sw);
1224
1225static struct attribute *input_dev_caps_attrs[] = {
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001226 &dev_attr_ev.attr,
1227 &dev_attr_key.attr,
1228 &dev_attr_rel.attr,
1229 &dev_attr_abs.attr,
1230 &dev_attr_msc.attr,
1231 &dev_attr_led.attr,
1232 &dev_attr_snd.attr,
1233 &dev_attr_ff.attr,
1234 &dev_attr_sw.attr,
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -05001235 NULL
1236};
1237
1238static struct attribute_group input_dev_caps_attr_group = {
1239 .name = "capabilities",
1240 .attrs = input_dev_caps_attrs,
1241};
1242
David Brownella4dbd672009-06-24 10:06:31 -07001243static const struct attribute_group *input_dev_attr_groups[] = {
Dmitry Torokhovcb9def42007-03-07 23:20:26 -05001244 &input_dev_attr_group,
1245 &input_dev_id_attr_group,
1246 &input_dev_caps_attr_group,
1247 NULL
1248};
1249
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001250static void input_dev_release(struct device *device)
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001251{
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001252 struct input_dev *dev = to_input_dev(device);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001253
Anssi Hannula509ca1a2006-07-19 01:40:22 -04001254 input_ff_destroy(dev);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001255 kfree(dev);
Anssi Hannula509ca1a2006-07-19 01:40:22 -04001256
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001257 module_put(THIS_MODULE);
1258}
1259
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001260/*
Kay Sievers312c0042005-11-16 09:00:00 +01001261 * Input uevent interface - loading event handlers based on
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001262 * device bitfields.
1263 */
Kay Sievers7eff2e72007-08-14 15:15:12 +02001264static int input_add_uevent_bm_var(struct kobj_uevent_env *env,
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001265 const char *name, unsigned long *bitmap, int max)
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001266{
Kay Sievers7eff2e72007-08-14 15:15:12 +02001267 int len;
1268
1269 if (add_uevent_var(env, "%s=", name))
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001270 return -ENOMEM;
1271
Kay Sievers7eff2e72007-08-14 15:15:12 +02001272 len = input_print_bitmap(&env->buf[env->buflen - 1],
1273 sizeof(env->buf) - env->buflen,
Dmitry Torokhov15e184a2010-01-11 00:05:43 -08001274 bitmap, max, false);
Kay Sievers7eff2e72007-08-14 15:15:12 +02001275 if (len >= (sizeof(env->buf) - env->buflen))
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001276 return -ENOMEM;
1277
Kay Sievers7eff2e72007-08-14 15:15:12 +02001278 env->buflen += len;
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001279 return 0;
1280}
1281
Kay Sievers7eff2e72007-08-14 15:15:12 +02001282static int input_add_uevent_modalias_var(struct kobj_uevent_env *env,
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001283 struct input_dev *dev)
1284{
Kay Sievers7eff2e72007-08-14 15:15:12 +02001285 int len;
1286
1287 if (add_uevent_var(env, "MODALIAS="))
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001288 return -ENOMEM;
1289
Kay Sievers7eff2e72007-08-14 15:15:12 +02001290 len = input_print_modalias(&env->buf[env->buflen - 1],
1291 sizeof(env->buf) - env->buflen,
1292 dev, 0);
1293 if (len >= (sizeof(env->buf) - env->buflen))
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001294 return -ENOMEM;
1295
Kay Sievers7eff2e72007-08-14 15:15:12 +02001296 env->buflen += len;
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001297 return 0;
1298}
1299
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001300#define INPUT_ADD_HOTPLUG_VAR(fmt, val...) \
1301 do { \
Kay Sievers7eff2e72007-08-14 15:15:12 +02001302 int err = add_uevent_var(env, fmt, val); \
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001303 if (err) \
1304 return err; \
1305 } while (0)
1306
1307#define INPUT_ADD_HOTPLUG_BM_VAR(name, bm, max) \
1308 do { \
Kay Sievers7eff2e72007-08-14 15:15:12 +02001309 int err = input_add_uevent_bm_var(env, name, bm, max); \
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001310 if (err) \
1311 return err; \
1312 } while (0)
1313
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001314#define INPUT_ADD_HOTPLUG_MODALIAS_VAR(dev) \
1315 do { \
Kay Sievers7eff2e72007-08-14 15:15:12 +02001316 int err = input_add_uevent_modalias_var(env, dev); \
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001317 if (err) \
1318 return err; \
1319 } while (0)
1320
Kay Sievers7eff2e72007-08-14 15:15:12 +02001321static int input_dev_uevent(struct device *device, struct kobj_uevent_env *env)
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001322{
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001323 struct input_dev *dev = to_input_dev(device);
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001324
1325 INPUT_ADD_HOTPLUG_VAR("PRODUCT=%x/%x/%x/%x",
1326 dev->id.bustype, dev->id.vendor,
1327 dev->id.product, dev->id.version);
1328 if (dev->name)
1329 INPUT_ADD_HOTPLUG_VAR("NAME=\"%s\"", dev->name);
1330 if (dev->phys)
1331 INPUT_ADD_HOTPLUG_VAR("PHYS=\"%s\"", dev->phys);
Dmitry Torokhov08de1f02005-11-08 21:34:29 -08001332 if (dev->uniq)
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001333 INPUT_ADD_HOTPLUG_VAR("UNIQ=\"%s\"", dev->uniq);
1334
1335 INPUT_ADD_HOTPLUG_BM_VAR("EV=", dev->evbit, EV_MAX);
1336 if (test_bit(EV_KEY, dev->evbit))
1337 INPUT_ADD_HOTPLUG_BM_VAR("KEY=", dev->keybit, KEY_MAX);
1338 if (test_bit(EV_REL, dev->evbit))
1339 INPUT_ADD_HOTPLUG_BM_VAR("REL=", dev->relbit, REL_MAX);
1340 if (test_bit(EV_ABS, dev->evbit))
1341 INPUT_ADD_HOTPLUG_BM_VAR("ABS=", dev->absbit, ABS_MAX);
1342 if (test_bit(EV_MSC, dev->evbit))
1343 INPUT_ADD_HOTPLUG_BM_VAR("MSC=", dev->mscbit, MSC_MAX);
1344 if (test_bit(EV_LED, dev->evbit))
1345 INPUT_ADD_HOTPLUG_BM_VAR("LED=", dev->ledbit, LED_MAX);
1346 if (test_bit(EV_SND, dev->evbit))
1347 INPUT_ADD_HOTPLUG_BM_VAR("SND=", dev->sndbit, SND_MAX);
1348 if (test_bit(EV_FF, dev->evbit))
1349 INPUT_ADD_HOTPLUG_BM_VAR("FF=", dev->ffbit, FF_MAX);
1350 if (test_bit(EV_SW, dev->evbit))
1351 INPUT_ADD_HOTPLUG_BM_VAR("SW=", dev->swbit, SW_MAX);
1352
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001353 INPUT_ADD_HOTPLUG_MODALIAS_VAR(dev);
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001354
1355 return 0;
1356}
1357
Dmitry Torokhov3cc96352009-11-12 23:19:05 -08001358#define INPUT_DO_TOGGLE(dev, type, bits, on) \
1359 do { \
1360 int i; \
1361 bool active; \
1362 \
1363 if (!test_bit(EV_##type, dev->evbit)) \
1364 break; \
1365 \
1366 for (i = 0; i < type##_MAX; i++) { \
1367 if (!test_bit(i, dev->bits##bit)) \
1368 continue; \
1369 \
1370 active = test_bit(i, dev->bits); \
1371 if (!active && !on) \
1372 continue; \
1373 \
1374 dev->event(dev, EV_##type, i, on ? active : 0); \
1375 } \
Dmitry Torokhovffd0db92009-09-16 01:06:43 -07001376 } while (0)
1377
Andrew Morton1c4115e2009-10-01 15:43:55 -07001378#ifdef CONFIG_PM
Dmitry Torokhovffd0db92009-09-16 01:06:43 -07001379static void input_dev_reset(struct input_dev *dev, bool activate)
1380{
1381 if (!dev->event)
1382 return;
1383
1384 INPUT_DO_TOGGLE(dev, LED, led, activate);
1385 INPUT_DO_TOGGLE(dev, SND, snd, activate);
1386
1387 if (activate && test_bit(EV_REP, dev->evbit)) {
1388 dev->event(dev, EV_REP, REP_PERIOD, dev->rep[REP_PERIOD]);
1389 dev->event(dev, EV_REP, REP_DELAY, dev->rep[REP_DELAY]);
1390 }
1391}
1392
Dmitry Torokhovffd0db92009-09-16 01:06:43 -07001393static int input_dev_suspend(struct device *dev)
1394{
1395 struct input_dev *input_dev = to_input_dev(dev);
1396
1397 mutex_lock(&input_dev->mutex);
1398 input_dev_reset(input_dev, false);
1399 mutex_unlock(&input_dev->mutex);
1400
1401 return 0;
1402}
1403
1404static int input_dev_resume(struct device *dev)
1405{
1406 struct input_dev *input_dev = to_input_dev(dev);
1407
1408 mutex_lock(&input_dev->mutex);
1409 input_dev_reset(input_dev, true);
1410 mutex_unlock(&input_dev->mutex);
1411
1412 return 0;
1413}
1414
1415static const struct dev_pm_ops input_dev_pm_ops = {
1416 .suspend = input_dev_suspend,
1417 .resume = input_dev_resume,
1418 .poweroff = input_dev_suspend,
1419 .restore = input_dev_resume,
1420};
1421#endif /* CONFIG_PM */
1422
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001423static struct device_type input_dev_type = {
1424 .groups = input_dev_attr_groups,
1425 .release = input_dev_release,
1426 .uevent = input_dev_uevent,
Dmitry Torokhovffd0db92009-09-16 01:06:43 -07001427#ifdef CONFIG_PM
1428 .pm = &input_dev_pm_ops,
1429#endif
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001430};
1431
Kay Sieverse454cea2009-09-18 23:01:12 +02001432static char *input_devnode(struct device *dev, mode_t *mode)
Kay Sieversaa5ed632009-04-30 15:23:42 +02001433{
1434 return kasprintf(GFP_KERNEL, "input/%s", dev_name(dev));
1435}
1436
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -07001437struct class input_class = {
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001438 .name = "input",
Kay Sieverse454cea2009-09-18 23:01:12 +02001439 .devnode = input_devnode,
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001440};
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001441EXPORT_SYMBOL_GPL(input_class);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001442
Dmitry Torokhov14471902006-11-02 23:26:55 -05001443/**
1444 * input_allocate_device - allocate memory for new input device
1445 *
1446 * Returns prepared struct input_dev or NULL.
1447 *
1448 * NOTE: Use input_free_device() to free devices that have not been
1449 * registered; input_unregister_device() should be used for already
1450 * registered devices.
1451 */
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001452struct input_dev *input_allocate_device(void)
1453{
1454 struct input_dev *dev;
1455
1456 dev = kzalloc(sizeof(struct input_dev), GFP_KERNEL);
1457 if (dev) {
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001458 dev->dev.type = &input_dev_type;
1459 dev->dev.class = &input_class;
1460 device_initialize(&dev->dev);
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -04001461 mutex_init(&dev->mutex);
Dmitry Torokhov80064792007-08-30 00:22:11 -04001462 spin_lock_init(&dev->event_lock);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001463 INIT_LIST_HEAD(&dev->h_list);
1464 INIT_LIST_HEAD(&dev->node);
Dmitry Torokhov655816e2006-09-14 01:32:14 -04001465
1466 __module_get(THIS_MODULE);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001467 }
1468
1469 return dev;
1470}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001471EXPORT_SYMBOL(input_allocate_device);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001472
Dmitry Torokhov14471902006-11-02 23:26:55 -05001473/**
1474 * input_free_device - free memory occupied by input_dev structure
1475 * @dev: input device to free
1476 *
1477 * This function should only be used if input_register_device()
1478 * was not called yet or if it failed. Once device was registered
1479 * use input_unregister_device() and memory will be freed once last
Dmitry Torokhov80064792007-08-30 00:22:11 -04001480 * reference to the device is dropped.
Dmitry Torokhov14471902006-11-02 23:26:55 -05001481 *
1482 * Device should be allocated by input_allocate_device().
1483 *
1484 * NOTE: If there are references to the input device then memory
1485 * will not be freed until last reference is dropped.
1486 */
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -04001487void input_free_device(struct input_dev *dev)
1488{
Dmitry Torokhov54f9e362007-03-16 00:57:25 -04001489 if (dev)
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -04001490 input_put_device(dev);
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -04001491}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001492EXPORT_SYMBOL(input_free_device);
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -04001493
Dmitry Torokhov534565f2007-04-25 00:53:18 -04001494/**
1495 * input_set_capability - mark device as capable of a certain event
1496 * @dev: device that is capable of emitting or accepting event
1497 * @type: type of the event (EV_KEY, EV_REL, etc...)
1498 * @code: event code
1499 *
1500 * In addition to setting up corresponding bit in appropriate capability
1501 * bitmap the function also adjusts dev->evbit.
1502 */
1503void input_set_capability(struct input_dev *dev, unsigned int type, unsigned int code)
1504{
1505 switch (type) {
1506 case EV_KEY:
1507 __set_bit(code, dev->keybit);
1508 break;
1509
1510 case EV_REL:
1511 __set_bit(code, dev->relbit);
1512 break;
1513
1514 case EV_ABS:
1515 __set_bit(code, dev->absbit);
1516 break;
1517
1518 case EV_MSC:
1519 __set_bit(code, dev->mscbit);
1520 break;
1521
1522 case EV_SW:
1523 __set_bit(code, dev->swbit);
1524 break;
1525
1526 case EV_LED:
1527 __set_bit(code, dev->ledbit);
1528 break;
1529
1530 case EV_SND:
1531 __set_bit(code, dev->sndbit);
1532 break;
1533
1534 case EV_FF:
1535 __set_bit(code, dev->ffbit);
1536 break;
1537
Dmitry Baryshkov22d1c392007-12-14 01:21:03 -05001538 case EV_PWR:
1539 /* do nothing */
1540 break;
1541
Dmitry Torokhov534565f2007-04-25 00:53:18 -04001542 default:
1543 printk(KERN_ERR
1544 "input_set_capability: unknown type %u (code %u)\n",
1545 type, code);
1546 dump_stack();
1547 return;
1548 }
1549
1550 __set_bit(type, dev->evbit);
1551}
1552EXPORT_SYMBOL(input_set_capability);
1553
Dmitry Torokhov80064792007-08-30 00:22:11 -04001554/**
1555 * input_register_device - register device with input core
1556 * @dev: device to be registered
1557 *
1558 * This function registers device with input core. The device must be
1559 * allocated with input_allocate_device() and all it's capabilities
1560 * set up before registering.
1561 * If function fails the device must be freed with input_free_device().
1562 * Once device has been successfully registered it can be unregistered
1563 * with input_unregister_device(); input_free_device() should not be
1564 * called in this case.
1565 */
Dmitry Torokhov5f945482005-11-02 22:51:46 -05001566int input_register_device(struct input_dev *dev)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001567{
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001568 static atomic_t input_no = ATOMIC_INIT(0);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001569 struct input_handler *handler;
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001570 const char *path;
1571 int error;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001572
Dmitry Torokhov80064792007-08-30 00:22:11 -04001573 __set_bit(EV_SYN, dev->evbit);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001574
1575 /*
1576 * If delay and period are pre-set by the driver, then autorepeating
1577 * is handled by the driver itself and we don't do it in input.c.
1578 */
1579
1580 init_timer(&dev->timer);
1581 if (!dev->rep[REP_DELAY] && !dev->rep[REP_PERIOD]) {
1582 dev->timer.data = (long) dev;
1583 dev->timer.function = input_repeat_key;
1584 dev->rep[REP_DELAY] = 250;
1585 dev->rep[REP_PERIOD] = 33;
1586 }
1587
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -04001588 if (!dev->getkeycode)
1589 dev->getkeycode = input_default_getkeycode;
1590
1591 if (!dev->setkeycode)
1592 dev->setkeycode = input_default_setkeycode;
1593
Kay Sieversa6c24902008-10-30 00:07:50 -04001594 dev_set_name(&dev->dev, "input%ld",
1595 (unsigned long) atomic_inc_return(&input_no) - 1);
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001596
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001597 error = device_add(&dev->dev);
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001598 if (error)
1599 return error;
1600
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001601 path = kobject_get_path(&dev->dev.kobj, GFP_KERNEL);
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001602 printk(KERN_INFO "input: %s as %s\n",
1603 dev->name ? dev->name : "Unspecified device", path ? path : "N/A");
1604 kfree(path);
Greg Kroah-Hartman10204022005-10-27 22:25:43 -07001605
Dmitry Torokhov80064792007-08-30 00:22:11 -04001606 error = mutex_lock_interruptible(&input_mutex);
1607 if (error) {
1608 device_del(&dev->dev);
1609 return error;
1610 }
1611
1612 list_add_tail(&dev->node, &input_dev_list);
1613
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001614 list_for_each_entry(handler, &input_handler_list, node)
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001615 input_attach_handler(dev, handler);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001616
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001617 input_wakeup_procfs_readers();
Dmitry Torokhov5f945482005-11-02 22:51:46 -05001618
Dmitry Torokhov80064792007-08-30 00:22:11 -04001619 mutex_unlock(&input_mutex);
1620
Dmitry Torokhov5f945482005-11-02 22:51:46 -05001621 return 0;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001622}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001623EXPORT_SYMBOL(input_register_device);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001624
Dmitry Torokhov80064792007-08-30 00:22:11 -04001625/**
1626 * input_unregister_device - unregister previously registered device
1627 * @dev: device to be unregistered
1628 *
1629 * This function unregisters an input device. Once device is unregistered
1630 * the caller should not try to access it as it may get freed at any moment.
1631 */
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001632void input_unregister_device(struct input_dev *dev)
1633{
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001634 struct input_handle *handle, *next;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001635
Dmitry Torokhov80064792007-08-30 00:22:11 -04001636 input_disconnect_device(dev);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001637
Dmitry Torokhov80064792007-08-30 00:22:11 -04001638 mutex_lock(&input_mutex);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001639
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001640 list_for_each_entry_safe(handle, next, &dev->h_list, d_node)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001641 handle->handler->disconnect(handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001642 WARN_ON(!list_empty(&dev->h_list));
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001643
Dmitry Torokhov80064792007-08-30 00:22:11 -04001644 del_timer_sync(&dev->timer);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001645 list_del_init(&dev->node);
1646
1647 input_wakeup_procfs_readers();
Dmitry Torokhov80064792007-08-30 00:22:11 -04001648
1649 mutex_unlock(&input_mutex);
1650
1651 device_unregister(&dev->dev);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001652}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001653EXPORT_SYMBOL(input_unregister_device);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001654
Dmitry Torokhov80064792007-08-30 00:22:11 -04001655/**
1656 * input_register_handler - register a new input handler
1657 * @handler: handler to be registered
1658 *
1659 * This function registers a new input handler (interface) for input
1660 * devices in the system and attaches it to all input devices that
1661 * are compatible with the handler.
1662 */
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001663int input_register_handler(struct input_handler *handler)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001664{
1665 struct input_dev *dev;
Dmitry Torokhov80064792007-08-30 00:22:11 -04001666 int retval;
1667
1668 retval = mutex_lock_interruptible(&input_mutex);
1669 if (retval)
1670 return retval;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001671
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001672 INIT_LIST_HEAD(&handler->h_list);
1673
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001674 if (handler->fops != NULL) {
Dmitry Torokhov80064792007-08-30 00:22:11 -04001675 if (input_table[handler->minor >> 5]) {
1676 retval = -EBUSY;
1677 goto out;
1678 }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001679 input_table[handler->minor >> 5] = handler;
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001680 }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001681
1682 list_add_tail(&handler->node, &input_handler_list);
1683
1684 list_for_each_entry(dev, &input_dev_list, node)
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001685 input_attach_handler(dev, handler);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001686
1687 input_wakeup_procfs_readers();
Dmitry Torokhov80064792007-08-30 00:22:11 -04001688
1689 out:
1690 mutex_unlock(&input_mutex);
1691 return retval;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001692}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001693EXPORT_SYMBOL(input_register_handler);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001694
Dmitry Torokhov80064792007-08-30 00:22:11 -04001695/**
1696 * input_unregister_handler - unregisters an input handler
1697 * @handler: handler to be unregistered
1698 *
1699 * This function disconnects a handler from its input devices and
1700 * removes it from lists of known handlers.
1701 */
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001702void input_unregister_handler(struct input_handler *handler)
1703{
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001704 struct input_handle *handle, *next;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001705
Dmitry Torokhov80064792007-08-30 00:22:11 -04001706 mutex_lock(&input_mutex);
1707
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001708 list_for_each_entry_safe(handle, next, &handler->h_list, h_node)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001709 handler->disconnect(handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001710 WARN_ON(!list_empty(&handler->h_list));
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001711
1712 list_del_init(&handler->node);
1713
1714 if (handler->fops != NULL)
1715 input_table[handler->minor >> 5] = NULL;
1716
1717 input_wakeup_procfs_readers();
Dmitry Torokhov80064792007-08-30 00:22:11 -04001718
1719 mutex_unlock(&input_mutex);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001720}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001721EXPORT_SYMBOL(input_unregister_handler);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001722
Dmitry Torokhov80064792007-08-30 00:22:11 -04001723/**
Dmitry Torokhov66d2a592009-12-01 21:54:35 -08001724 * input_handler_for_each_handle - handle iterator
1725 * @handler: input handler to iterate
1726 * @data: data for the callback
1727 * @fn: function to be called for each handle
1728 *
1729 * Iterate over @bus's list of devices, and call @fn for each, passing
1730 * it @data and stop when @fn returns a non-zero value. The function is
1731 * using RCU to traverse the list and therefore may be usind in atonic
1732 * contexts. The @fn callback is invoked from RCU critical section and
1733 * thus must not sleep.
1734 */
1735int input_handler_for_each_handle(struct input_handler *handler, void *data,
1736 int (*fn)(struct input_handle *, void *))
1737{
1738 struct input_handle *handle;
1739 int retval = 0;
1740
1741 rcu_read_lock();
1742
1743 list_for_each_entry_rcu(handle, &handler->h_list, h_node) {
1744 retval = fn(handle, data);
1745 if (retval)
1746 break;
1747 }
1748
1749 rcu_read_unlock();
1750
1751 return retval;
1752}
1753EXPORT_SYMBOL(input_handler_for_each_handle);
1754
1755/**
Dmitry Torokhov80064792007-08-30 00:22:11 -04001756 * input_register_handle - register a new input handle
1757 * @handle: handle to register
1758 *
1759 * This function puts a new input handle onto device's
1760 * and handler's lists so that events can flow through
1761 * it once it is opened using input_open_device().
1762 *
1763 * This function is supposed to be called from handler's
1764 * connect() method.
1765 */
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001766int input_register_handle(struct input_handle *handle)
1767{
1768 struct input_handler *handler = handle->handler;
Dmitry Torokhov80064792007-08-30 00:22:11 -04001769 struct input_dev *dev = handle->dev;
1770 int error;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001771
Dmitry Torokhov80064792007-08-30 00:22:11 -04001772 /*
1773 * We take dev->mutex here to prevent race with
1774 * input_release_device().
1775 */
1776 error = mutex_lock_interruptible(&dev->mutex);
1777 if (error)
1778 return error;
1779 list_add_tail_rcu(&handle->d_node, &dev->h_list);
1780 mutex_unlock(&dev->mutex);
Dmitry Torokhov80064792007-08-30 00:22:11 -04001781
1782 /*
1783 * Since we are supposed to be called from ->connect()
1784 * which is mutually exclusive with ->disconnect()
1785 * we can't be racing with input_unregister_handle()
1786 * and so separate lock is not needed here.
1787 */
Dmitry Torokhov66d2a592009-12-01 21:54:35 -08001788 list_add_tail_rcu(&handle->h_node, &handler->h_list);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001789
1790 if (handler->start)
1791 handler->start(handle);
1792
1793 return 0;
1794}
1795EXPORT_SYMBOL(input_register_handle);
1796
Dmitry Torokhov80064792007-08-30 00:22:11 -04001797/**
1798 * input_unregister_handle - unregister an input handle
1799 * @handle: handle to unregister
1800 *
1801 * This function removes input handle from device's
1802 * and handler's lists.
1803 *
1804 * This function is supposed to be called from handler's
1805 * disconnect() method.
1806 */
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001807void input_unregister_handle(struct input_handle *handle)
1808{
Dmitry Torokhov80064792007-08-30 00:22:11 -04001809 struct input_dev *dev = handle->dev;
1810
Dmitry Torokhov66d2a592009-12-01 21:54:35 -08001811 list_del_rcu(&handle->h_node);
Dmitry Torokhov80064792007-08-30 00:22:11 -04001812
1813 /*
1814 * Take dev->mutex to prevent race with input_release_device().
1815 */
1816 mutex_lock(&dev->mutex);
1817 list_del_rcu(&handle->d_node);
1818 mutex_unlock(&dev->mutex);
Dmitry Torokhov66d2a592009-12-01 21:54:35 -08001819
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -04001820 synchronize_rcu();
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001821}
1822EXPORT_SYMBOL(input_unregister_handle);
1823
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001824static int input_open_file(struct inode *inode, struct file *file)
1825{
Jonathan Corbet2edbf852008-05-15 10:37:16 -06001826 struct input_handler *handler;
Arjan van de Ven99ac48f2006-03-28 01:56:41 -08001827 const struct file_operations *old_fops, *new_fops = NULL;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001828 int err;
1829
Jonathan Corbet2edbf852008-05-15 10:37:16 -06001830 lock_kernel();
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001831 /* No load-on-demand here? */
Jonathan Corbet2edbf852008-05-15 10:37:16 -06001832 handler = input_table[iminor(inode) >> 5];
1833 if (!handler || !(new_fops = fops_get(handler->fops))) {
1834 err = -ENODEV;
1835 goto out;
1836 }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001837
1838 /*
1839 * That's _really_ odd. Usually NULL ->open means "nothing special",
1840 * not "no device". Oh, well...
1841 */
1842 if (!new_fops->open) {
1843 fops_put(new_fops);
Jonathan Corbet2edbf852008-05-15 10:37:16 -06001844 err = -ENODEV;
1845 goto out;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001846 }
1847 old_fops = file->f_op;
1848 file->f_op = new_fops;
1849
1850 err = new_fops->open(inode, file);
1851
1852 if (err) {
1853 fops_put(file->f_op);
1854 file->f_op = fops_get(old_fops);
1855 }
1856 fops_put(old_fops);
Jonathan Corbet2edbf852008-05-15 10:37:16 -06001857out:
1858 unlock_kernel();
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001859 return err;
1860}
1861
Arjan van de Ven2b8693c2007-02-12 00:55:32 -08001862static const struct file_operations input_fops = {
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001863 .owner = THIS_MODULE,
1864 .open = input_open_file,
1865};
1866
Henrik Rydberg61994a62009-04-28 07:45:31 -07001867static void __init input_init_abs_bypass(void)
1868{
1869 const unsigned int *p;
1870
1871 for (p = input_abs_bypass_init_data; *p; p++)
1872 input_abs_bypass[BIT_WORD(*p)] |= BIT_MASK(*p);
1873}
1874
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875static int __init input_init(void)
1876{
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001877 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
Henrik Rydberg61994a62009-04-28 07:45:31 -07001879 input_init_abs_bypass();
1880
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -07001881 err = class_register(&input_class);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001882 if (err) {
1883 printk(KERN_ERR "input: unable to register input_dev class\n");
1884 return err;
1885 }
1886
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001887 err = input_proc_init();
1888 if (err)
Greg Kroah-Hartmanb0fdfeb2005-10-27 22:25:43 -07001889 goto fail1;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001890
1891 err = register_chrdev(INPUT_MAJOR, "input", &input_fops);
1892 if (err) {
1893 printk(KERN_ERR "input: unable to register char major %d", INPUT_MAJOR);
Greg Kroah-Hartmanb0fdfeb2005-10-27 22:25:43 -07001894 goto fail2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001896
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001897 return 0;
1898
Greg Kroah-Hartmanb0fdfeb2005-10-27 22:25:43 -07001899 fail2: input_proc_exit();
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -07001900 fail1: class_unregister(&input_class);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001901 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902}
1903
1904static void __exit input_exit(void)
1905{
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001906 input_proc_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 unregister_chrdev(INPUT_MAJOR, "input");
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -07001908 class_unregister(&input_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909}
1910
1911subsys_initcall(input_init);
1912module_exit(input_exit);