blob: 46e9ce195064704fbb55a5d7c796d5974289aa28 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * The input core
3 *
4 * Copyright (c) 1999-2002 Vojtech Pavlik
5 */
6
7/*
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License version 2 as published by
10 * the Free Software Foundation.
11 */
12
13#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/input.h>
15#include <linux/module.h>
16#include <linux/random.h>
17#include <linux/major.h>
18#include <linux/proc_fs.h>
Dmitry Torokhov969b21c2006-04-02 00:09:34 -050019#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/poll.h>
21#include <linux/device.h>
Jes Sorensene676c232006-02-19 00:21:46 -050022#include <linux/mutex.h>
Dmitry Torokhov80064792007-08-30 00:22:11 -040023#include <linux/rcupdate.h>
Jonathan Corbet2edbf852008-05-15 10:37:16 -060024#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26MODULE_AUTHOR("Vojtech Pavlik <vojtech@suse.cz>");
27MODULE_DESCRIPTION("Input core");
28MODULE_LICENSE("GPL");
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#define INPUT_DEVICES 256
31
32static LIST_HEAD(input_dev_list);
33static LIST_HEAD(input_handler_list);
34
Dmitry Torokhov80064792007-08-30 00:22:11 -040035/*
36 * input_mutex protects access to both input_dev_list and input_handler_list.
37 * This also causes input_[un]register_device and input_[un]register_handler
38 * be mutually exclusive which simplifies locking in drivers implementing
39 * input handlers.
40 */
41static DEFINE_MUTEX(input_mutex);
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043static struct input_handler *input_table[8];
44
Dmitry Torokhov80064792007-08-30 00:22:11 -040045static inline int is_event_supported(unsigned int code,
46 unsigned long *bm, unsigned int max)
47{
48 return code <= max && test_bit(code, bm);
49}
50
51static int input_defuzz_abs_event(int value, int old_val, int fuzz)
52{
53 if (fuzz) {
54 if (value > old_val - fuzz / 2 && value < old_val + fuzz / 2)
55 return old_val;
56
57 if (value > old_val - fuzz && value < old_val + fuzz)
58 return (old_val * 3 + value) / 4;
59
60 if (value > old_val - fuzz * 2 && value < old_val + fuzz * 2)
61 return (old_val + value) / 2;
62 }
63
64 return value;
65}
66
67/*
68 * Pass event through all open handles. This function is called with
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -040069 * dev->event_lock held and interrupts disabled.
Dmitry Torokhov80064792007-08-30 00:22:11 -040070 */
71static void input_pass_event(struct input_dev *dev,
72 unsigned int type, unsigned int code, int value)
73{
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -040074 struct input_handle *handle;
Dmitry Torokhov80064792007-08-30 00:22:11 -040075
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -040076 rcu_read_lock();
77
78 handle = rcu_dereference(dev->grab);
Dmitry Torokhov80064792007-08-30 00:22:11 -040079 if (handle)
80 handle->handler->event(handle, type, code, value);
81 else
82 list_for_each_entry_rcu(handle, &dev->h_list, d_node)
83 if (handle->open)
84 handle->handler->event(handle,
85 type, code, value);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -040086 rcu_read_unlock();
Dmitry Torokhov80064792007-08-30 00:22:11 -040087}
88
89/*
90 * Generate software autorepeat event. Note that we take
91 * dev->event_lock here to avoid racing with input_event
92 * which may cause keys get "stuck".
93 */
94static void input_repeat_key(unsigned long data)
95{
96 struct input_dev *dev = (void *) data;
97 unsigned long flags;
98
99 spin_lock_irqsave(&dev->event_lock, flags);
100
101 if (test_bit(dev->repeat_key, dev->key) &&
102 is_event_supported(dev->repeat_key, dev->keybit, KEY_MAX)) {
103
104 input_pass_event(dev, EV_KEY, dev->repeat_key, 2);
105
106 if (dev->sync) {
107 /*
108 * Only send SYN_REPORT if we are not in a middle
109 * of driver parsing a new hardware packet.
110 * Otherwise assume that the driver will send
111 * SYN_REPORT once it's done.
112 */
113 input_pass_event(dev, EV_SYN, SYN_REPORT, 1);
114 }
115
116 if (dev->rep[REP_PERIOD])
117 mod_timer(&dev->timer, jiffies +
118 msecs_to_jiffies(dev->rep[REP_PERIOD]));
119 }
120
121 spin_unlock_irqrestore(&dev->event_lock, flags);
122}
123
124static void input_start_autorepeat(struct input_dev *dev, int code)
125{
126 if (test_bit(EV_REP, dev->evbit) &&
127 dev->rep[REP_PERIOD] && dev->rep[REP_DELAY] &&
128 dev->timer.data) {
129 dev->repeat_key = code;
130 mod_timer(&dev->timer,
131 jiffies + msecs_to_jiffies(dev->rep[REP_DELAY]));
132 }
133}
134
Johannes Berge7b5c1e2009-01-29 23:17:52 -0800135static void input_stop_autorepeat(struct input_dev *dev)
136{
137 del_timer(&dev->timer);
138}
139
Dmitry Torokhov80064792007-08-30 00:22:11 -0400140#define INPUT_IGNORE_EVENT 0
141#define INPUT_PASS_TO_HANDLERS 1
142#define INPUT_PASS_TO_DEVICE 2
143#define INPUT_PASS_TO_ALL (INPUT_PASS_TO_HANDLERS | INPUT_PASS_TO_DEVICE)
144
145static void input_handle_event(struct input_dev *dev,
146 unsigned int type, unsigned int code, int value)
147{
148 int disposition = INPUT_IGNORE_EVENT;
149
150 switch (type) {
151
152 case EV_SYN:
153 switch (code) {
154 case SYN_CONFIG:
155 disposition = INPUT_PASS_TO_ALL;
156 break;
157
158 case SYN_REPORT:
159 if (!dev->sync) {
160 dev->sync = 1;
161 disposition = INPUT_PASS_TO_HANDLERS;
162 }
163 break;
164 }
165 break;
166
167 case EV_KEY:
168 if (is_event_supported(code, dev->keybit, KEY_MAX) &&
169 !!test_bit(code, dev->key) != value) {
170
171 if (value != 2) {
172 __change_bit(code, dev->key);
173 if (value)
174 input_start_autorepeat(dev, code);
Johannes Berge7b5c1e2009-01-29 23:17:52 -0800175 else
176 input_stop_autorepeat(dev);
Dmitry Torokhov80064792007-08-30 00:22:11 -0400177 }
178
179 disposition = INPUT_PASS_TO_HANDLERS;
180 }
181 break;
182
183 case EV_SW:
184 if (is_event_supported(code, dev->swbit, SW_MAX) &&
185 !!test_bit(code, dev->sw) != value) {
186
187 __change_bit(code, dev->sw);
188 disposition = INPUT_PASS_TO_HANDLERS;
189 }
190 break;
191
192 case EV_ABS:
193 if (is_event_supported(code, dev->absbit, ABS_MAX)) {
194
195 value = input_defuzz_abs_event(value,
196 dev->abs[code], dev->absfuzz[code]);
197
198 if (dev->abs[code] != value) {
199 dev->abs[code] = value;
200 disposition = INPUT_PASS_TO_HANDLERS;
201 }
202 }
203 break;
204
205 case EV_REL:
206 if (is_event_supported(code, dev->relbit, REL_MAX) && value)
207 disposition = INPUT_PASS_TO_HANDLERS;
208
209 break;
210
211 case EV_MSC:
212 if (is_event_supported(code, dev->mscbit, MSC_MAX))
213 disposition = INPUT_PASS_TO_ALL;
214
215 break;
216
217 case EV_LED:
218 if (is_event_supported(code, dev->ledbit, LED_MAX) &&
219 !!test_bit(code, dev->led) != value) {
220
221 __change_bit(code, dev->led);
222 disposition = INPUT_PASS_TO_ALL;
223 }
224 break;
225
226 case EV_SND:
227 if (is_event_supported(code, dev->sndbit, SND_MAX)) {
228
229 if (!!test_bit(code, dev->snd) != !!value)
230 __change_bit(code, dev->snd);
231 disposition = INPUT_PASS_TO_ALL;
232 }
233 break;
234
235 case EV_REP:
236 if (code <= REP_MAX && value >= 0 && dev->rep[code] != value) {
237 dev->rep[code] = value;
238 disposition = INPUT_PASS_TO_ALL;
239 }
240 break;
241
242 case EV_FF:
243 if (value >= 0)
244 disposition = INPUT_PASS_TO_ALL;
245 break;
Richard Purdieed2fa4d2008-01-03 10:46:21 -0500246
247 case EV_PWR:
248 disposition = INPUT_PASS_TO_ALL;
249 break;
Dmitry Torokhov80064792007-08-30 00:22:11 -0400250 }
251
Dmitry Torokhovc9812282008-06-02 01:02:40 -0400252 if (disposition != INPUT_IGNORE_EVENT && type != EV_SYN)
Dmitry Torokhov80064792007-08-30 00:22:11 -0400253 dev->sync = 0;
254
255 if ((disposition & INPUT_PASS_TO_DEVICE) && dev->event)
256 dev->event(dev, type, code, value);
257
258 if (disposition & INPUT_PASS_TO_HANDLERS)
259 input_pass_event(dev, type, code, value);
260}
261
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400262/**
263 * input_event() - report new input event
Dmitry Torokhov14471902006-11-02 23:26:55 -0500264 * @dev: device that generated the event
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400265 * @type: type of the event
266 * @code: event code
267 * @value: value of the event
268 *
Dmitry Torokhov80064792007-08-30 00:22:11 -0400269 * This function should be used by drivers implementing various input
270 * devices. See also input_inject_event().
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400271 */
Dmitry Torokhov80064792007-08-30 00:22:11 -0400272
273void input_event(struct input_dev *dev,
274 unsigned int type, unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400276 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Dmitry Torokhov80064792007-08-30 00:22:11 -0400278 if (is_event_supported(type, dev->evbit, EV_MAX)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Dmitry Torokhov80064792007-08-30 00:22:11 -0400280 spin_lock_irqsave(&dev->event_lock, flags);
281 add_input_randomness(type, code, value);
282 input_handle_event(dev, type, code, value);
283 spin_unlock_irqrestore(&dev->event_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400286EXPORT_SYMBOL(input_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400288/**
289 * input_inject_event() - send input event from input handler
290 * @handle: input handle to send event through
291 * @type: type of the event
292 * @code: event code
293 * @value: value of the event
294 *
Dmitry Torokhov80064792007-08-30 00:22:11 -0400295 * Similar to input_event() but will ignore event if device is
296 * "grabbed" and handle injecting event is not the one that owns
297 * the device.
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400298 */
Dmitry Torokhov80064792007-08-30 00:22:11 -0400299void input_inject_event(struct input_handle *handle,
300 unsigned int type, unsigned int code, int value)
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400301{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400302 struct input_dev *dev = handle->dev;
303 struct input_handle *grab;
304 unsigned long flags;
305
306 if (is_event_supported(type, dev->evbit, EV_MAX)) {
307 spin_lock_irqsave(&dev->event_lock, flags);
308
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400309 rcu_read_lock();
Dmitry Torokhov80064792007-08-30 00:22:11 -0400310 grab = rcu_dereference(dev->grab);
311 if (!grab || grab == handle)
312 input_handle_event(dev, type, code, value);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400313 rcu_read_unlock();
Dmitry Torokhov80064792007-08-30 00:22:11 -0400314
315 spin_unlock_irqrestore(&dev->event_lock, flags);
316 }
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400317}
318EXPORT_SYMBOL(input_inject_event);
319
Dmitry Torokhov80064792007-08-30 00:22:11 -0400320/**
321 * input_grab_device - grabs device for exclusive use
322 * @handle: input handle that wants to own the device
323 *
324 * When a device is grabbed by an input handle all events generated by
325 * the device are delivered only to this handle. Also events injected
326 * by other input handles are ignored while device is grabbed.
327 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328int input_grab_device(struct input_handle *handle)
329{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400330 struct input_dev *dev = handle->dev;
331 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Dmitry Torokhov80064792007-08-30 00:22:11 -0400333 retval = mutex_lock_interruptible(&dev->mutex);
334 if (retval)
335 return retval;
336
337 if (dev->grab) {
338 retval = -EBUSY;
339 goto out;
340 }
341
342 rcu_assign_pointer(dev->grab, handle);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400343 synchronize_rcu();
Dmitry Torokhov80064792007-08-30 00:22:11 -0400344
345 out:
346 mutex_unlock(&dev->mutex);
347 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400349EXPORT_SYMBOL(input_grab_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Dmitry Torokhov80064792007-08-30 00:22:11 -0400351static void __input_release_device(struct input_handle *handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
Andrew Mortona2b2ed22006-07-15 01:17:38 -0400353 struct input_dev *dev = handle->dev;
Dmitry Torokhovc7e8dc62006-07-06 00:21:03 -0400354
Andrew Mortona2b2ed22006-07-15 01:17:38 -0400355 if (dev->grab == handle) {
Dmitry Torokhov80064792007-08-30 00:22:11 -0400356 rcu_assign_pointer(dev->grab, NULL);
357 /* Make sure input_pass_event() notices that grab is gone */
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400358 synchronize_rcu();
Andrew Mortona2b2ed22006-07-15 01:17:38 -0400359
360 list_for_each_entry(handle, &dev->h_list, d_node)
Dmitry Torokhov80064792007-08-30 00:22:11 -0400361 if (handle->open && handle->handler->start)
Dmitry Torokhovc7e8dc62006-07-06 00:21:03 -0400362 handle->handler->start(handle);
363 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364}
Dmitry Torokhov80064792007-08-30 00:22:11 -0400365
366/**
367 * input_release_device - release previously grabbed device
368 * @handle: input handle that owns the device
369 *
370 * Releases previously grabbed device so that other input handles can
371 * start receiving input events. Upon release all handlers attached
372 * to the device have their start() method called so they have a change
373 * to synchronize device state with the rest of the system.
374 */
375void input_release_device(struct input_handle *handle)
376{
377 struct input_dev *dev = handle->dev;
378
379 mutex_lock(&dev->mutex);
380 __input_release_device(handle);
381 mutex_unlock(&dev->mutex);
382}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400383EXPORT_SYMBOL(input_release_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Dmitry Torokhov80064792007-08-30 00:22:11 -0400385/**
386 * input_open_device - open input device
387 * @handle: handle through which device is being accessed
388 *
389 * This function should be called by input handlers when they
390 * want to start receive events from given input device.
391 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392int input_open_device(struct input_handle *handle)
393{
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500394 struct input_dev *dev = handle->dev;
Dmitry Torokhov80064792007-08-30 00:22:11 -0400395 int retval;
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500396
Dmitry Torokhov80064792007-08-30 00:22:11 -0400397 retval = mutex_lock_interruptible(&dev->mutex);
398 if (retval)
399 return retval;
400
401 if (dev->going_away) {
402 retval = -ENODEV;
403 goto out;
404 }
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500405
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 handle->open++;
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500407
408 if (!dev->users++ && dev->open)
Dmitry Torokhov80064792007-08-30 00:22:11 -0400409 retval = dev->open(dev);
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500410
Dmitry Torokhov80064792007-08-30 00:22:11 -0400411 if (retval) {
412 dev->users--;
413 if (!--handle->open) {
414 /*
415 * Make sure we are not delivering any more events
416 * through this handle
417 */
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400418 synchronize_rcu();
Dmitry Torokhov80064792007-08-30 00:22:11 -0400419 }
420 }
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500421
Dmitry Torokhov80064792007-08-30 00:22:11 -0400422 out:
Jes Sorensene676c232006-02-19 00:21:46 -0500423 mutex_unlock(&dev->mutex);
Dmitry Torokhov80064792007-08-30 00:22:11 -0400424 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400426EXPORT_SYMBOL(input_open_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Dmitry Torokhov80064792007-08-30 00:22:11 -0400428int input_flush_device(struct input_handle *handle, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400430 struct input_dev *dev = handle->dev;
431 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Dmitry Torokhov80064792007-08-30 00:22:11 -0400433 retval = mutex_lock_interruptible(&dev->mutex);
434 if (retval)
435 return retval;
436
437 if (dev->flush)
438 retval = dev->flush(dev, file);
439
440 mutex_unlock(&dev->mutex);
441 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400443EXPORT_SYMBOL(input_flush_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Dmitry Torokhov80064792007-08-30 00:22:11 -0400445/**
446 * input_close_device - close input device
447 * @handle: handle through which device is being accessed
448 *
449 * This function should be called by input handlers when they
450 * want to stop receive events from given input device.
451 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452void input_close_device(struct input_handle *handle)
453{
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500454 struct input_dev *dev = handle->dev;
455
Jes Sorensene676c232006-02-19 00:21:46 -0500456 mutex_lock(&dev->mutex);
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500457
Dmitry Torokhov80064792007-08-30 00:22:11 -0400458 __input_release_device(handle);
459
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500460 if (!--dev->users && dev->close)
461 dev->close(dev);
Dmitry Torokhov80064792007-08-30 00:22:11 -0400462
463 if (!--handle->open) {
464 /*
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400465 * synchronize_rcu() makes sure that input_pass_event()
Dmitry Torokhov80064792007-08-30 00:22:11 -0400466 * completed and that no more input events are delivered
467 * through this handle
468 */
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400469 synchronize_rcu();
Dmitry Torokhov80064792007-08-30 00:22:11 -0400470 }
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500471
Jes Sorensene676c232006-02-19 00:21:46 -0500472 mutex_unlock(&dev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400474EXPORT_SYMBOL(input_close_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Dmitry Torokhov80064792007-08-30 00:22:11 -0400476/*
477 * Prepare device for unregistering
478 */
479static void input_disconnect_device(struct input_dev *dev)
480{
481 struct input_handle *handle;
482 int code;
483
484 /*
485 * Mark device as going away. Note that we take dev->mutex here
486 * not to protect access to dev->going_away but rather to ensure
487 * that there are no threads in the middle of input_open_device()
488 */
489 mutex_lock(&dev->mutex);
490 dev->going_away = 1;
491 mutex_unlock(&dev->mutex);
492
493 spin_lock_irq(&dev->event_lock);
494
495 /*
496 * Simulate keyup events for all pressed keys so that handlers
497 * are not left with "stuck" keys. The driver may continue
498 * generate events even after we done here but they will not
499 * reach any handlers.
500 */
501 if (is_event_supported(EV_KEY, dev->evbit, EV_MAX)) {
502 for (code = 0; code <= KEY_MAX; code++) {
503 if (is_event_supported(code, dev->keybit, KEY_MAX) &&
Dmitry Torokhovf4f37c82007-11-04 00:41:12 -0400504 __test_and_clear_bit(code, dev->key)) {
Dmitry Torokhov80064792007-08-30 00:22:11 -0400505 input_pass_event(dev, EV_KEY, code, 0);
506 }
507 }
508 input_pass_event(dev, EV_SYN, SYN_REPORT, 1);
509 }
510
511 list_for_each_entry(handle, &dev->h_list, d_node)
512 handle->open = 0;
513
514 spin_unlock_irq(&dev->event_lock);
515}
516
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400517static int input_fetch_keycode(struct input_dev *dev, int scancode)
518{
519 switch (dev->keycodesize) {
520 case 1:
521 return ((u8 *)dev->keycode)[scancode];
522
523 case 2:
524 return ((u16 *)dev->keycode)[scancode];
525
526 default:
527 return ((u32 *)dev->keycode)[scancode];
528 }
529}
530
531static int input_default_getkeycode(struct input_dev *dev,
532 int scancode, int *keycode)
533{
534 if (!dev->keycodesize)
535 return -EINVAL;
536
Dmitry Torokhovf4f37c82007-11-04 00:41:12 -0400537 if (scancode >= dev->keycodemax)
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400538 return -EINVAL;
539
540 *keycode = input_fetch_keycode(dev, scancode);
541
542 return 0;
543}
544
545static int input_default_setkeycode(struct input_dev *dev,
546 int scancode, int keycode)
547{
548 int old_keycode;
549 int i;
550
Dmitry Torokhovf4f37c82007-11-04 00:41:12 -0400551 if (scancode >= dev->keycodemax)
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400552 return -EINVAL;
553
554 if (!dev->keycodesize)
555 return -EINVAL;
556
557 if (dev->keycodesize < sizeof(keycode) && (keycode >> (dev->keycodesize * 8)))
558 return -EINVAL;
559
560 switch (dev->keycodesize) {
561 case 1: {
562 u8 *k = (u8 *)dev->keycode;
563 old_keycode = k[scancode];
564 k[scancode] = keycode;
565 break;
566 }
567 case 2: {
568 u16 *k = (u16 *)dev->keycode;
569 old_keycode = k[scancode];
570 k[scancode] = keycode;
571 break;
572 }
573 default: {
574 u32 *k = (u32 *)dev->keycode;
575 old_keycode = k[scancode];
576 k[scancode] = keycode;
577 break;
578 }
579 }
580
581 clear_bit(old_keycode, dev->keybit);
582 set_bit(keycode, dev->keybit);
583
584 for (i = 0; i < dev->keycodemax; i++) {
585 if (input_fetch_keycode(dev, i) == old_keycode) {
586 set_bit(old_keycode, dev->keybit);
587 break; /* Setting the bit twice is useless, so break */
588 }
589 }
590
591 return 0;
592}
593
Dmitry Torokhovf4f37c82007-11-04 00:41:12 -0400594/**
595 * input_get_keycode - retrieve keycode currently mapped to a given scancode
596 * @dev: input device which keymap is being queried
597 * @scancode: scancode (or its equivalent for device in question) for which
598 * keycode is needed
599 * @keycode: result
600 *
601 * This function should be called by anyone interested in retrieving current
602 * keymap. Presently keyboard and evdev handlers use it.
603 */
604int input_get_keycode(struct input_dev *dev, int scancode, int *keycode)
605{
606 if (scancode < 0)
607 return -EINVAL;
608
609 return dev->getkeycode(dev, scancode, keycode);
610}
611EXPORT_SYMBOL(input_get_keycode);
612
613/**
614 * input_get_keycode - assign new keycode to a given scancode
615 * @dev: input device which keymap is being updated
616 * @scancode: scancode (or its equivalent for device in question)
617 * @keycode: new keycode to be assigned to the scancode
618 *
619 * This function should be called by anyone needing to update current
620 * keymap. Presently keyboard and evdev handlers use it.
621 */
622int input_set_keycode(struct input_dev *dev, int scancode, int keycode)
623{
624 unsigned long flags;
625 int old_keycode;
626 int retval;
627
628 if (scancode < 0)
629 return -EINVAL;
630
631 if (keycode < 0 || keycode > KEY_MAX)
632 return -EINVAL;
633
634 spin_lock_irqsave(&dev->event_lock, flags);
635
636 retval = dev->getkeycode(dev, scancode, &old_keycode);
637 if (retval)
638 goto out;
639
640 retval = dev->setkeycode(dev, scancode, keycode);
641 if (retval)
642 goto out;
643
644 /*
645 * Simulate keyup event if keycode is not present
646 * in the keymap anymore
647 */
648 if (test_bit(EV_KEY, dev->evbit) &&
649 !is_event_supported(old_keycode, dev->keybit, KEY_MAX) &&
650 __test_and_clear_bit(old_keycode, dev->key)) {
651
652 input_pass_event(dev, EV_KEY, old_keycode, 0);
653 if (dev->sync)
654 input_pass_event(dev, EV_SYN, SYN_REPORT, 1);
655 }
656
657 out:
658 spin_unlock_irqrestore(&dev->event_lock, flags);
659
660 return retval;
661}
662EXPORT_SYMBOL(input_set_keycode);
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664#define MATCH_BIT(bit, max) \
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700665 for (i = 0; i < BITS_TO_LONGS(max); i++) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 if ((id->bit[i] & dev->bit[i]) != id->bit[i]) \
667 break; \
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700668 if (i != BITS_TO_LONGS(max)) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 continue;
670
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400671static const struct input_device_id *input_match_device(const struct input_device_id *id,
672 struct input_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673{
674 int i;
675
676 for (; id->flags || id->driver_info; id++) {
677
678 if (id->flags & INPUT_DEVICE_ID_MATCH_BUS)
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400679 if (id->bustype != dev->id.bustype)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 continue;
681
682 if (id->flags & INPUT_DEVICE_ID_MATCH_VENDOR)
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400683 if (id->vendor != dev->id.vendor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 continue;
685
686 if (id->flags & INPUT_DEVICE_ID_MATCH_PRODUCT)
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400687 if (id->product != dev->id.product)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 continue;
689
690 if (id->flags & INPUT_DEVICE_ID_MATCH_VERSION)
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400691 if (id->version != dev->id.version)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 continue;
693
694 MATCH_BIT(evbit, EV_MAX);
695 MATCH_BIT(keybit, KEY_MAX);
696 MATCH_BIT(relbit, REL_MAX);
697 MATCH_BIT(absbit, ABS_MAX);
698 MATCH_BIT(mscbit, MSC_MAX);
699 MATCH_BIT(ledbit, LED_MAX);
700 MATCH_BIT(sndbit, SND_MAX);
701 MATCH_BIT(ffbit, FF_MAX);
Dmitry Torokhovff13f982005-09-24 02:02:29 -0500702 MATCH_BIT(swbit, SW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
704 return id;
705 }
706
707 return NULL;
708}
709
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -0400710static int input_attach_handler(struct input_dev *dev, struct input_handler *handler)
711{
712 const struct input_device_id *id;
713 int error;
714
715 if (handler->blacklist && input_match_device(handler->blacklist, dev))
716 return -ENODEV;
717
718 id = input_match_device(handler->id_table, dev);
719 if (!id)
720 return -ENODEV;
721
722 error = handler->connect(handler, dev, id);
723 if (error && error != -ENODEV)
724 printk(KERN_ERR
725 "input: failed to attach handler %s to device %s, "
726 "error: %d\n",
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400727 handler->name, kobject_name(&dev->dev.kobj), error);
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -0400728
729 return error;
730}
731
732
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733#ifdef CONFIG_PROC_FS
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500734
735static struct proc_dir_entry *proc_bus_input_dir;
736static DECLARE_WAIT_QUEUE_HEAD(input_devices_poll_wait);
737static int input_devices_state;
738
739static inline void input_wakeup_procfs_readers(void)
740{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 input_devices_state++;
742 wake_up(&input_devices_poll_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743}
744
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500745static unsigned int input_proc_devices_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746{
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500747 int state = input_devices_state;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400748
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500749 poll_wait(file, &input_devices_poll_wait, wait);
750 if (state != input_devices_state)
751 return POLLIN | POLLRDNORM;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400752
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500753 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754}
755
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500756static void *input_devices_seq_start(struct seq_file *seq, loff_t *pos)
757{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400758 if (mutex_lock_interruptible(&input_mutex))
759 return NULL;
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500760
Pavel Emelianovad5d9722007-07-18 00:38:32 -0400761 return seq_list_start(&input_dev_list, *pos);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500762}
763
764static void *input_devices_seq_next(struct seq_file *seq, void *v, loff_t *pos)
765{
Pavel Emelianovad5d9722007-07-18 00:38:32 -0400766 return seq_list_next(v, &input_dev_list, pos);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500767}
768
769static void input_devices_seq_stop(struct seq_file *seq, void *v)
770{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400771 mutex_unlock(&input_mutex);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500772}
773
774static void input_seq_print_bitmap(struct seq_file *seq, const char *name,
775 unsigned long *bitmap, int max)
776{
777 int i;
778
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700779 for (i = BITS_TO_LONGS(max) - 1; i > 0; i--)
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500780 if (bitmap[i])
781 break;
782
783 seq_printf(seq, "B: %s=", name);
784 for (; i >= 0; i--)
785 seq_printf(seq, "%lx%s", bitmap[i], i > 0 ? " " : "");
786 seq_putc(seq, '\n');
787}
788
789static int input_devices_seq_show(struct seq_file *seq, void *v)
790{
791 struct input_dev *dev = container_of(v, struct input_dev, node);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400792 const char *path = kobject_get_path(&dev->dev.kobj, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 struct input_handle *handle;
794
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500795 seq_printf(seq, "I: Bus=%04x Vendor=%04x Product=%04x Version=%04x\n",
796 dev->id.bustype, dev->id.vendor, dev->id.product, dev->id.version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500798 seq_printf(seq, "N: Name=\"%s\"\n", dev->name ? dev->name : "");
799 seq_printf(seq, "P: Phys=%s\n", dev->phys ? dev->phys : "");
800 seq_printf(seq, "S: Sysfs=%s\n", path ? path : "");
Dmitry Torokhov15e03ae2007-03-07 23:20:17 -0500801 seq_printf(seq, "U: Uniq=%s\n", dev->uniq ? dev->uniq : "");
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500802 seq_printf(seq, "H: Handlers=");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500804 list_for_each_entry(handle, &dev->h_list, d_node)
805 seq_printf(seq, "%s ", handle->name);
806 seq_putc(seq, '\n');
Dmitry Torokhov051b2fe2005-09-15 02:01:54 -0500807
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500808 input_seq_print_bitmap(seq, "EV", dev->evbit, EV_MAX);
809 if (test_bit(EV_KEY, dev->evbit))
810 input_seq_print_bitmap(seq, "KEY", dev->keybit, KEY_MAX);
811 if (test_bit(EV_REL, dev->evbit))
812 input_seq_print_bitmap(seq, "REL", dev->relbit, REL_MAX);
813 if (test_bit(EV_ABS, dev->evbit))
814 input_seq_print_bitmap(seq, "ABS", dev->absbit, ABS_MAX);
815 if (test_bit(EV_MSC, dev->evbit))
816 input_seq_print_bitmap(seq, "MSC", dev->mscbit, MSC_MAX);
817 if (test_bit(EV_LED, dev->evbit))
818 input_seq_print_bitmap(seq, "LED", dev->ledbit, LED_MAX);
819 if (test_bit(EV_SND, dev->evbit))
820 input_seq_print_bitmap(seq, "SND", dev->sndbit, SND_MAX);
821 if (test_bit(EV_FF, dev->evbit))
822 input_seq_print_bitmap(seq, "FF", dev->ffbit, FF_MAX);
823 if (test_bit(EV_SW, dev->evbit))
824 input_seq_print_bitmap(seq, "SW", dev->swbit, SW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500826 seq_putc(seq, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500828 kfree(path);
829 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830}
831
Jan Engelhardtcec69c32008-01-31 00:43:32 -0500832static const struct seq_operations input_devices_seq_ops = {
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500833 .start = input_devices_seq_start,
834 .next = input_devices_seq_next,
835 .stop = input_devices_seq_stop,
836 .show = input_devices_seq_show,
837};
838
839static int input_proc_devices_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840{
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500841 return seq_open(file, &input_devices_seq_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842}
843
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800844static const struct file_operations input_devices_fileops = {
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500845 .owner = THIS_MODULE,
846 .open = input_proc_devices_open,
847 .poll = input_proc_devices_poll,
848 .read = seq_read,
849 .llseek = seq_lseek,
850 .release = seq_release,
851};
852
853static void *input_handlers_seq_start(struct seq_file *seq, loff_t *pos)
854{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400855 if (mutex_lock_interruptible(&input_mutex))
856 return NULL;
857
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500858 seq->private = (void *)(unsigned long)*pos;
Pavel Emelianovad5d9722007-07-18 00:38:32 -0400859 return seq_list_start(&input_handler_list, *pos);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500860}
861
862static void *input_handlers_seq_next(struct seq_file *seq, void *v, loff_t *pos)
863{
864 seq->private = (void *)(unsigned long)(*pos + 1);
Pavel Emelianovad5d9722007-07-18 00:38:32 -0400865 return seq_list_next(v, &input_handler_list, pos);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500866}
867
868static void input_handlers_seq_stop(struct seq_file *seq, void *v)
869{
Dmitry Torokhov80064792007-08-30 00:22:11 -0400870 mutex_unlock(&input_mutex);
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500871}
872
873static int input_handlers_seq_show(struct seq_file *seq, void *v)
874{
875 struct input_handler *handler = container_of(v, struct input_handler, node);
876
877 seq_printf(seq, "N: Number=%ld Name=%s",
878 (unsigned long)seq->private, handler->name);
879 if (handler->fops)
880 seq_printf(seq, " Minor=%d", handler->minor);
881 seq_putc(seq, '\n');
882
883 return 0;
884}
Jan Engelhardtcec69c32008-01-31 00:43:32 -0500885static const struct seq_operations input_handlers_seq_ops = {
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500886 .start = input_handlers_seq_start,
887 .next = input_handlers_seq_next,
888 .stop = input_handlers_seq_stop,
889 .show = input_handlers_seq_show,
890};
891
892static int input_proc_handlers_open(struct inode *inode, struct file *file)
893{
894 return seq_open(file, &input_handlers_seq_ops);
895}
896
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800897static const struct file_operations input_handlers_fileops = {
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500898 .owner = THIS_MODULE,
899 .open = input_proc_handlers_open,
900 .read = seq_read,
901 .llseek = seq_lseek,
902 .release = seq_release,
903};
Luke Kosewskie334016fc2005-06-01 02:39:28 -0500904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905static int __init input_proc_init(void)
906{
907 struct proc_dir_entry *entry;
908
Alexey Dobriyan9c370662008-04-29 01:01:41 -0700909 proc_bus_input_dir = proc_mkdir("bus/input", NULL);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500910 if (!proc_bus_input_dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 return -ENOMEM;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 proc_bus_input_dir->owner = THIS_MODULE;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500914
Denis V. Lunevc7705f3442008-04-29 01:02:35 -0700915 entry = proc_create("devices", 0, proc_bus_input_dir,
916 &input_devices_fileops);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500917 if (!entry)
918 goto fail1;
919
Denis V. Lunevc7705f3442008-04-29 01:02:35 -0700920 entry = proc_create("handlers", 0, proc_bus_input_dir,
921 &input_handlers_fileops);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500922 if (!entry)
923 goto fail2;
924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 return 0;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500926
927 fail2: remove_proc_entry("devices", proc_bus_input_dir);
Alexey Dobriyan9c370662008-04-29 01:01:41 -0700928 fail1: remove_proc_entry("bus/input", NULL);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500929 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930}
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500931
Andrew Mortonbeffbdc2005-07-01 23:54:30 -0500932static void input_proc_exit(void)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500933{
934 remove_proc_entry("devices", proc_bus_input_dir);
935 remove_proc_entry("handlers", proc_bus_input_dir);
Alexey Dobriyan9c370662008-04-29 01:01:41 -0700936 remove_proc_entry("bus/input", NULL);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500937}
938
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939#else /* !CONFIG_PROC_FS */
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500940static inline void input_wakeup_procfs_readers(void) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941static inline int input_proc_init(void) { return 0; }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500942static inline void input_proc_exit(void) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943#endif
944
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400945#define INPUT_DEV_STRING_ATTR_SHOW(name) \
946static ssize_t input_dev_show_##name(struct device *dev, \
947 struct device_attribute *attr, \
948 char *buf) \
949{ \
950 struct input_dev *input_dev = to_input_dev(dev); \
951 \
952 return scnprintf(buf, PAGE_SIZE, "%s\n", \
953 input_dev->name ? input_dev->name : ""); \
954} \
955static DEVICE_ATTR(name, S_IRUGO, input_dev_show_##name, NULL)
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -0500956
957INPUT_DEV_STRING_ATTR_SHOW(name);
958INPUT_DEV_STRING_ATTR_SHOW(phys);
959INPUT_DEV_STRING_ATTR_SHOW(uniq);
960
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500961static int input_print_modalias_bits(char *buf, int size,
962 char name, unsigned long *bm,
963 unsigned int min_bit, unsigned int max_bit)
Rusty Russell1d8f4302005-12-07 21:40:34 +0100964{
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500965 int len = 0, i;
Rusty Russell1d8f4302005-12-07 21:40:34 +0100966
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500967 len += snprintf(buf, max(size, 0), "%c", name);
968 for (i = min_bit; i < max_bit; i++)
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700969 if (bm[BIT_WORD(i)] & BIT_MASK(i))
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500970 len += snprintf(buf + len, max(size - len, 0), "%X,", i);
Kay Sieversbd37e5a2006-01-05 13:19:55 +0100971 return len;
972}
973
Dmitry Torokhov2db66872006-04-02 00:09:26 -0500974static int input_print_modalias(char *buf, int size, struct input_dev *id,
975 int add_cr)
Kay Sieversbd37e5a2006-01-05 13:19:55 +0100976{
977 int len;
978
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500979 len = snprintf(buf, max(size, 0),
980 "input:b%04Xv%04Xp%04Xe%04X-",
981 id->id.bustype, id->id.vendor,
982 id->id.product, id->id.version);
Kay Sieversbd37e5a2006-01-05 13:19:55 +0100983
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500984 len += input_print_modalias_bits(buf + len, size - len,
985 'e', id->evbit, 0, EV_MAX);
986 len += input_print_modalias_bits(buf + len, size - len,
987 'k', id->keybit, KEY_MIN_INTERESTING, KEY_MAX);
988 len += input_print_modalias_bits(buf + len, size - len,
989 'r', id->relbit, 0, REL_MAX);
990 len += input_print_modalias_bits(buf + len, size - len,
991 'a', id->absbit, 0, ABS_MAX);
992 len += input_print_modalias_bits(buf + len, size - len,
993 'm', id->mscbit, 0, MSC_MAX);
994 len += input_print_modalias_bits(buf + len, size - len,
995 'l', id->ledbit, 0, LED_MAX);
996 len += input_print_modalias_bits(buf + len, size - len,
997 's', id->sndbit, 0, SND_MAX);
998 len += input_print_modalias_bits(buf + len, size - len,
999 'f', id->ffbit, 0, FF_MAX);
1000 len += input_print_modalias_bits(buf + len, size - len,
1001 'w', id->swbit, 0, SW_MAX);
Dmitry Torokhov2db66872006-04-02 00:09:26 -05001002
1003 if (add_cr)
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001004 len += snprintf(buf + len, max(size - len, 0), "\n");
Dmitry Torokhov2db66872006-04-02 00:09:26 -05001005
Rusty Russell1d8f4302005-12-07 21:40:34 +01001006 return len;
1007}
1008
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001009static ssize_t input_dev_show_modalias(struct device *dev,
1010 struct device_attribute *attr,
1011 char *buf)
Rusty Russell1d8f4302005-12-07 21:40:34 +01001012{
1013 struct input_dev *id = to_input_dev(dev);
Kay Sieversbd37e5a2006-01-05 13:19:55 +01001014 ssize_t len;
Rusty Russell1d8f4302005-12-07 21:40:34 +01001015
Dmitry Torokhov2db66872006-04-02 00:09:26 -05001016 len = input_print_modalias(buf, PAGE_SIZE, id, 1);
1017
Richard Purdie8a3cf452006-06-26 01:48:21 -04001018 return min_t(int, len, PAGE_SIZE);
Rusty Russell1d8f4302005-12-07 21:40:34 +01001019}
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001020static DEVICE_ATTR(modalias, S_IRUGO, input_dev_show_modalias, NULL);
Rusty Russell1d8f4302005-12-07 21:40:34 +01001021
Greg Kroah-Hartman629b77a2005-10-27 22:25:43 -07001022static struct attribute *input_dev_attrs[] = {
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001023 &dev_attr_name.attr,
1024 &dev_attr_phys.attr,
1025 &dev_attr_uniq.attr,
1026 &dev_attr_modalias.attr,
Greg Kroah-Hartman629b77a2005-10-27 22:25:43 -07001027 NULL
1028};
1029
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001030static struct attribute_group input_dev_attr_group = {
Greg Kroah-Hartman629b77a2005-10-27 22:25:43 -07001031 .attrs = input_dev_attrs,
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -05001032};
1033
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001034#define INPUT_DEV_ID_ATTR(name) \
1035static ssize_t input_dev_show_id_##name(struct device *dev, \
1036 struct device_attribute *attr, \
1037 char *buf) \
1038{ \
1039 struct input_dev *input_dev = to_input_dev(dev); \
1040 return scnprintf(buf, PAGE_SIZE, "%04x\n", input_dev->id.name); \
1041} \
1042static DEVICE_ATTR(name, S_IRUGO, input_dev_show_id_##name, NULL)
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -05001043
1044INPUT_DEV_ID_ATTR(bustype);
1045INPUT_DEV_ID_ATTR(vendor);
1046INPUT_DEV_ID_ATTR(product);
1047INPUT_DEV_ID_ATTR(version);
1048
1049static struct attribute *input_dev_id_attrs[] = {
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001050 &dev_attr_bustype.attr,
1051 &dev_attr_vendor.attr,
1052 &dev_attr_product.attr,
1053 &dev_attr_version.attr,
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -05001054 NULL
1055};
1056
1057static struct attribute_group input_dev_id_attr_group = {
1058 .name = "id",
1059 .attrs = input_dev_id_attrs,
1060};
1061
Dmitry Torokhov969b21c2006-04-02 00:09:34 -05001062static int input_print_bitmap(char *buf, int buf_size, unsigned long *bitmap,
1063 int max, int add_cr)
1064{
1065 int i;
1066 int len = 0;
1067
Jiri Slaby7b19ada2007-10-18 23:40:32 -07001068 for (i = BITS_TO_LONGS(max) - 1; i > 0; i--)
Dmitry Torokhov969b21c2006-04-02 00:09:34 -05001069 if (bitmap[i])
1070 break;
1071
1072 for (; i >= 0; i--)
1073 len += snprintf(buf + len, max(buf_size - len, 0),
1074 "%lx%s", bitmap[i], i > 0 ? " " : "");
1075
1076 if (add_cr)
1077 len += snprintf(buf + len, max(buf_size - len, 0), "\n");
1078
1079 return len;
1080}
1081
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001082#define INPUT_DEV_CAP_ATTR(ev, bm) \
1083static ssize_t input_dev_show_cap_##bm(struct device *dev, \
1084 struct device_attribute *attr, \
1085 char *buf) \
1086{ \
1087 struct input_dev *input_dev = to_input_dev(dev); \
1088 int len = input_print_bitmap(buf, PAGE_SIZE, \
1089 input_dev->bm##bit, ev##_MAX, 1); \
1090 return min_t(int, len, PAGE_SIZE); \
1091} \
1092static DEVICE_ATTR(bm, S_IRUGO, input_dev_show_cap_##bm, NULL)
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -05001093
1094INPUT_DEV_CAP_ATTR(EV, ev);
1095INPUT_DEV_CAP_ATTR(KEY, key);
1096INPUT_DEV_CAP_ATTR(REL, rel);
1097INPUT_DEV_CAP_ATTR(ABS, abs);
1098INPUT_DEV_CAP_ATTR(MSC, msc);
1099INPUT_DEV_CAP_ATTR(LED, led);
1100INPUT_DEV_CAP_ATTR(SND, snd);
1101INPUT_DEV_CAP_ATTR(FF, ff);
1102INPUT_DEV_CAP_ATTR(SW, sw);
1103
1104static struct attribute *input_dev_caps_attrs[] = {
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001105 &dev_attr_ev.attr,
1106 &dev_attr_key.attr,
1107 &dev_attr_rel.attr,
1108 &dev_attr_abs.attr,
1109 &dev_attr_msc.attr,
1110 &dev_attr_led.attr,
1111 &dev_attr_snd.attr,
1112 &dev_attr_ff.attr,
1113 &dev_attr_sw.attr,
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -05001114 NULL
1115};
1116
1117static struct attribute_group input_dev_caps_attr_group = {
1118 .name = "capabilities",
1119 .attrs = input_dev_caps_attrs,
1120};
1121
Dmitry Torokhovcb9def42007-03-07 23:20:26 -05001122static struct attribute_group *input_dev_attr_groups[] = {
1123 &input_dev_attr_group,
1124 &input_dev_id_attr_group,
1125 &input_dev_caps_attr_group,
1126 NULL
1127};
1128
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001129static void input_dev_release(struct device *device)
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001130{
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001131 struct input_dev *dev = to_input_dev(device);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001132
Anssi Hannula509ca1a2006-07-19 01:40:22 -04001133 input_ff_destroy(dev);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001134 kfree(dev);
Anssi Hannula509ca1a2006-07-19 01:40:22 -04001135
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001136 module_put(THIS_MODULE);
1137}
1138
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001139/*
Kay Sievers312c0042005-11-16 09:00:00 +01001140 * Input uevent interface - loading event handlers based on
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001141 * device bitfields.
1142 */
Kay Sievers7eff2e72007-08-14 15:15:12 +02001143static int input_add_uevent_bm_var(struct kobj_uevent_env *env,
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001144 const char *name, unsigned long *bitmap, int max)
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001145{
Kay Sievers7eff2e72007-08-14 15:15:12 +02001146 int len;
1147
1148 if (add_uevent_var(env, "%s=", name))
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001149 return -ENOMEM;
1150
Kay Sievers7eff2e72007-08-14 15:15:12 +02001151 len = input_print_bitmap(&env->buf[env->buflen - 1],
1152 sizeof(env->buf) - env->buflen,
1153 bitmap, max, 0);
1154 if (len >= (sizeof(env->buf) - env->buflen))
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001155 return -ENOMEM;
1156
Kay Sievers7eff2e72007-08-14 15:15:12 +02001157 env->buflen += len;
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001158 return 0;
1159}
1160
Kay Sievers7eff2e72007-08-14 15:15:12 +02001161static int input_add_uevent_modalias_var(struct kobj_uevent_env *env,
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001162 struct input_dev *dev)
1163{
Kay Sievers7eff2e72007-08-14 15:15:12 +02001164 int len;
1165
1166 if (add_uevent_var(env, "MODALIAS="))
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001167 return -ENOMEM;
1168
Kay Sievers7eff2e72007-08-14 15:15:12 +02001169 len = input_print_modalias(&env->buf[env->buflen - 1],
1170 sizeof(env->buf) - env->buflen,
1171 dev, 0);
1172 if (len >= (sizeof(env->buf) - env->buflen))
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001173 return -ENOMEM;
1174
Kay Sievers7eff2e72007-08-14 15:15:12 +02001175 env->buflen += len;
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001176 return 0;
1177}
1178
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001179#define INPUT_ADD_HOTPLUG_VAR(fmt, val...) \
1180 do { \
Kay Sievers7eff2e72007-08-14 15:15:12 +02001181 int err = add_uevent_var(env, fmt, val); \
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001182 if (err) \
1183 return err; \
1184 } while (0)
1185
1186#define INPUT_ADD_HOTPLUG_BM_VAR(name, bm, max) \
1187 do { \
Kay Sievers7eff2e72007-08-14 15:15:12 +02001188 int err = input_add_uevent_bm_var(env, name, bm, max); \
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001189 if (err) \
1190 return err; \
1191 } while (0)
1192
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001193#define INPUT_ADD_HOTPLUG_MODALIAS_VAR(dev) \
1194 do { \
Kay Sievers7eff2e72007-08-14 15:15:12 +02001195 int err = input_add_uevent_modalias_var(env, dev); \
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001196 if (err) \
1197 return err; \
1198 } while (0)
1199
Kay Sievers7eff2e72007-08-14 15:15:12 +02001200static int input_dev_uevent(struct device *device, struct kobj_uevent_env *env)
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001201{
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001202 struct input_dev *dev = to_input_dev(device);
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001203
1204 INPUT_ADD_HOTPLUG_VAR("PRODUCT=%x/%x/%x/%x",
1205 dev->id.bustype, dev->id.vendor,
1206 dev->id.product, dev->id.version);
1207 if (dev->name)
1208 INPUT_ADD_HOTPLUG_VAR("NAME=\"%s\"", dev->name);
1209 if (dev->phys)
1210 INPUT_ADD_HOTPLUG_VAR("PHYS=\"%s\"", dev->phys);
Dmitry Torokhov08de1f02005-11-08 21:34:29 -08001211 if (dev->uniq)
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001212 INPUT_ADD_HOTPLUG_VAR("UNIQ=\"%s\"", dev->uniq);
1213
1214 INPUT_ADD_HOTPLUG_BM_VAR("EV=", dev->evbit, EV_MAX);
1215 if (test_bit(EV_KEY, dev->evbit))
1216 INPUT_ADD_HOTPLUG_BM_VAR("KEY=", dev->keybit, KEY_MAX);
1217 if (test_bit(EV_REL, dev->evbit))
1218 INPUT_ADD_HOTPLUG_BM_VAR("REL=", dev->relbit, REL_MAX);
1219 if (test_bit(EV_ABS, dev->evbit))
1220 INPUT_ADD_HOTPLUG_BM_VAR("ABS=", dev->absbit, ABS_MAX);
1221 if (test_bit(EV_MSC, dev->evbit))
1222 INPUT_ADD_HOTPLUG_BM_VAR("MSC=", dev->mscbit, MSC_MAX);
1223 if (test_bit(EV_LED, dev->evbit))
1224 INPUT_ADD_HOTPLUG_BM_VAR("LED=", dev->ledbit, LED_MAX);
1225 if (test_bit(EV_SND, dev->evbit))
1226 INPUT_ADD_HOTPLUG_BM_VAR("SND=", dev->sndbit, SND_MAX);
1227 if (test_bit(EV_FF, dev->evbit))
1228 INPUT_ADD_HOTPLUG_BM_VAR("FF=", dev->ffbit, FF_MAX);
1229 if (test_bit(EV_SW, dev->evbit))
1230 INPUT_ADD_HOTPLUG_BM_VAR("SW=", dev->swbit, SW_MAX);
1231
Dmitry Torokhovac648a62006-04-02 00:09:51 -05001232 INPUT_ADD_HOTPLUG_MODALIAS_VAR(dev);
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -05001233
1234 return 0;
1235}
1236
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001237static struct device_type input_dev_type = {
1238 .groups = input_dev_attr_groups,
1239 .release = input_dev_release,
1240 .uevent = input_dev_uevent,
1241};
1242
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -07001243struct class input_class = {
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001244 .name = "input",
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001245};
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001246EXPORT_SYMBOL_GPL(input_class);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001247
Dmitry Torokhov14471902006-11-02 23:26:55 -05001248/**
1249 * input_allocate_device - allocate memory for new input device
1250 *
1251 * Returns prepared struct input_dev or NULL.
1252 *
1253 * NOTE: Use input_free_device() to free devices that have not been
1254 * registered; input_unregister_device() should be used for already
1255 * registered devices.
1256 */
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001257struct input_dev *input_allocate_device(void)
1258{
1259 struct input_dev *dev;
1260
1261 dev = kzalloc(sizeof(struct input_dev), GFP_KERNEL);
1262 if (dev) {
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001263 dev->dev.type = &input_dev_type;
1264 dev->dev.class = &input_class;
1265 device_initialize(&dev->dev);
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -04001266 mutex_init(&dev->mutex);
Dmitry Torokhov80064792007-08-30 00:22:11 -04001267 spin_lock_init(&dev->event_lock);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001268 INIT_LIST_HEAD(&dev->h_list);
1269 INIT_LIST_HEAD(&dev->node);
Dmitry Torokhov655816e2006-09-14 01:32:14 -04001270
1271 __module_get(THIS_MODULE);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001272 }
1273
1274 return dev;
1275}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001276EXPORT_SYMBOL(input_allocate_device);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001277
Dmitry Torokhov14471902006-11-02 23:26:55 -05001278/**
1279 * input_free_device - free memory occupied by input_dev structure
1280 * @dev: input device to free
1281 *
1282 * This function should only be used if input_register_device()
1283 * was not called yet or if it failed. Once device was registered
1284 * use input_unregister_device() and memory will be freed once last
Dmitry Torokhov80064792007-08-30 00:22:11 -04001285 * reference to the device is dropped.
Dmitry Torokhov14471902006-11-02 23:26:55 -05001286 *
1287 * Device should be allocated by input_allocate_device().
1288 *
1289 * NOTE: If there are references to the input device then memory
1290 * will not be freed until last reference is dropped.
1291 */
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -04001292void input_free_device(struct input_dev *dev)
1293{
Dmitry Torokhov54f9e362007-03-16 00:57:25 -04001294 if (dev)
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -04001295 input_put_device(dev);
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -04001296}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001297EXPORT_SYMBOL(input_free_device);
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -04001298
Dmitry Torokhov534565f2007-04-25 00:53:18 -04001299/**
1300 * input_set_capability - mark device as capable of a certain event
1301 * @dev: device that is capable of emitting or accepting event
1302 * @type: type of the event (EV_KEY, EV_REL, etc...)
1303 * @code: event code
1304 *
1305 * In addition to setting up corresponding bit in appropriate capability
1306 * bitmap the function also adjusts dev->evbit.
1307 */
1308void input_set_capability(struct input_dev *dev, unsigned int type, unsigned int code)
1309{
1310 switch (type) {
1311 case EV_KEY:
1312 __set_bit(code, dev->keybit);
1313 break;
1314
1315 case EV_REL:
1316 __set_bit(code, dev->relbit);
1317 break;
1318
1319 case EV_ABS:
1320 __set_bit(code, dev->absbit);
1321 break;
1322
1323 case EV_MSC:
1324 __set_bit(code, dev->mscbit);
1325 break;
1326
1327 case EV_SW:
1328 __set_bit(code, dev->swbit);
1329 break;
1330
1331 case EV_LED:
1332 __set_bit(code, dev->ledbit);
1333 break;
1334
1335 case EV_SND:
1336 __set_bit(code, dev->sndbit);
1337 break;
1338
1339 case EV_FF:
1340 __set_bit(code, dev->ffbit);
1341 break;
1342
Dmitry Baryshkov22d1c392007-12-14 01:21:03 -05001343 case EV_PWR:
1344 /* do nothing */
1345 break;
1346
Dmitry Torokhov534565f2007-04-25 00:53:18 -04001347 default:
1348 printk(KERN_ERR
1349 "input_set_capability: unknown type %u (code %u)\n",
1350 type, code);
1351 dump_stack();
1352 return;
1353 }
1354
1355 __set_bit(type, dev->evbit);
1356}
1357EXPORT_SYMBOL(input_set_capability);
1358
Dmitry Torokhov80064792007-08-30 00:22:11 -04001359/**
1360 * input_register_device - register device with input core
1361 * @dev: device to be registered
1362 *
1363 * This function registers device with input core. The device must be
1364 * allocated with input_allocate_device() and all it's capabilities
1365 * set up before registering.
1366 * If function fails the device must be freed with input_free_device().
1367 * Once device has been successfully registered it can be unregistered
1368 * with input_unregister_device(); input_free_device() should not be
1369 * called in this case.
1370 */
Dmitry Torokhov5f945482005-11-02 22:51:46 -05001371int input_register_device(struct input_dev *dev)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001372{
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001373 static atomic_t input_no = ATOMIC_INIT(0);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001374 struct input_handler *handler;
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001375 const char *path;
1376 int error;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001377
Dmitry Torokhov80064792007-08-30 00:22:11 -04001378 __set_bit(EV_SYN, dev->evbit);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001379
1380 /*
1381 * If delay and period are pre-set by the driver, then autorepeating
1382 * is handled by the driver itself and we don't do it in input.c.
1383 */
1384
1385 init_timer(&dev->timer);
1386 if (!dev->rep[REP_DELAY] && !dev->rep[REP_PERIOD]) {
1387 dev->timer.data = (long) dev;
1388 dev->timer.function = input_repeat_key;
1389 dev->rep[REP_DELAY] = 250;
1390 dev->rep[REP_PERIOD] = 33;
1391 }
1392
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -04001393 if (!dev->getkeycode)
1394 dev->getkeycode = input_default_getkeycode;
1395
1396 if (!dev->setkeycode)
1397 dev->setkeycode = input_default_setkeycode;
1398
Kay Sieversa6c24902008-10-30 00:07:50 -04001399 dev_set_name(&dev->dev, "input%ld",
1400 (unsigned long) atomic_inc_return(&input_no) - 1);
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001401
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001402 error = device_add(&dev->dev);
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001403 if (error)
1404 return error;
1405
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001406 path = kobject_get_path(&dev->dev.kobj, GFP_KERNEL);
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001407 printk(KERN_INFO "input: %s as %s\n",
1408 dev->name ? dev->name : "Unspecified device", path ? path : "N/A");
1409 kfree(path);
Greg Kroah-Hartman10204022005-10-27 22:25:43 -07001410
Dmitry Torokhov80064792007-08-30 00:22:11 -04001411 error = mutex_lock_interruptible(&input_mutex);
1412 if (error) {
1413 device_del(&dev->dev);
1414 return error;
1415 }
1416
1417 list_add_tail(&dev->node, &input_dev_list);
1418
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001419 list_for_each_entry(handler, &input_handler_list, node)
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001420 input_attach_handler(dev, handler);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001421
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001422 input_wakeup_procfs_readers();
Dmitry Torokhov5f945482005-11-02 22:51:46 -05001423
Dmitry Torokhov80064792007-08-30 00:22:11 -04001424 mutex_unlock(&input_mutex);
1425
Dmitry Torokhov5f945482005-11-02 22:51:46 -05001426 return 0;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001427}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001428EXPORT_SYMBOL(input_register_device);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001429
Dmitry Torokhov80064792007-08-30 00:22:11 -04001430/**
1431 * input_unregister_device - unregister previously registered device
1432 * @dev: device to be unregistered
1433 *
1434 * This function unregisters an input device. Once device is unregistered
1435 * the caller should not try to access it as it may get freed at any moment.
1436 */
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001437void input_unregister_device(struct input_dev *dev)
1438{
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001439 struct input_handle *handle, *next;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001440
Dmitry Torokhov80064792007-08-30 00:22:11 -04001441 input_disconnect_device(dev);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001442
Dmitry Torokhov80064792007-08-30 00:22:11 -04001443 mutex_lock(&input_mutex);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001444
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001445 list_for_each_entry_safe(handle, next, &dev->h_list, d_node)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001446 handle->handler->disconnect(handle);
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001447 WARN_ON(!list_empty(&dev->h_list));
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001448
Dmitry Torokhov80064792007-08-30 00:22:11 -04001449 del_timer_sync(&dev->timer);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001450 list_del_init(&dev->node);
1451
1452 input_wakeup_procfs_readers();
Dmitry Torokhov80064792007-08-30 00:22:11 -04001453
1454 mutex_unlock(&input_mutex);
1455
1456 device_unregister(&dev->dev);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001457}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001458EXPORT_SYMBOL(input_unregister_device);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001459
Dmitry Torokhov80064792007-08-30 00:22:11 -04001460/**
1461 * input_register_handler - register a new input handler
1462 * @handler: handler to be registered
1463 *
1464 * This function registers a new input handler (interface) for input
1465 * devices in the system and attaches it to all input devices that
1466 * are compatible with the handler.
1467 */
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001468int input_register_handler(struct input_handler *handler)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001469{
1470 struct input_dev *dev;
Dmitry Torokhov80064792007-08-30 00:22:11 -04001471 int retval;
1472
1473 retval = mutex_lock_interruptible(&input_mutex);
1474 if (retval)
1475 return retval;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001476
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001477 INIT_LIST_HEAD(&handler->h_list);
1478
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001479 if (handler->fops != NULL) {
Dmitry Torokhov80064792007-08-30 00:22:11 -04001480 if (input_table[handler->minor >> 5]) {
1481 retval = -EBUSY;
1482 goto out;
1483 }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001484 input_table[handler->minor >> 5] = handler;
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001485 }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001486
1487 list_add_tail(&handler->node, &input_handler_list);
1488
1489 list_for_each_entry(dev, &input_dev_list, node)
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001490 input_attach_handler(dev, handler);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001491
1492 input_wakeup_procfs_readers();
Dmitry Torokhov80064792007-08-30 00:22:11 -04001493
1494 out:
1495 mutex_unlock(&input_mutex);
1496 return retval;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001497}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001498EXPORT_SYMBOL(input_register_handler);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001499
Dmitry Torokhov80064792007-08-30 00:22:11 -04001500/**
1501 * input_unregister_handler - unregisters an input handler
1502 * @handler: handler to be unregistered
1503 *
1504 * This function disconnects a handler from its input devices and
1505 * removes it from lists of known handlers.
1506 */
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001507void input_unregister_handler(struct input_handler *handler)
1508{
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001509 struct input_handle *handle, *next;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001510
Dmitry Torokhov80064792007-08-30 00:22:11 -04001511 mutex_lock(&input_mutex);
1512
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001513 list_for_each_entry_safe(handle, next, &handler->h_list, h_node)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001514 handler->disconnect(handle);
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001515 WARN_ON(!list_empty(&handler->h_list));
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001516
1517 list_del_init(&handler->node);
1518
1519 if (handler->fops != NULL)
1520 input_table[handler->minor >> 5] = NULL;
1521
1522 input_wakeup_procfs_readers();
Dmitry Torokhov80064792007-08-30 00:22:11 -04001523
1524 mutex_unlock(&input_mutex);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001525}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001526EXPORT_SYMBOL(input_unregister_handler);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001527
Dmitry Torokhov80064792007-08-30 00:22:11 -04001528/**
1529 * input_register_handle - register a new input handle
1530 * @handle: handle to register
1531 *
1532 * This function puts a new input handle onto device's
1533 * and handler's lists so that events can flow through
1534 * it once it is opened using input_open_device().
1535 *
1536 * This function is supposed to be called from handler's
1537 * connect() method.
1538 */
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001539int input_register_handle(struct input_handle *handle)
1540{
1541 struct input_handler *handler = handle->handler;
Dmitry Torokhov80064792007-08-30 00:22:11 -04001542 struct input_dev *dev = handle->dev;
1543 int error;
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001544
Dmitry Torokhov80064792007-08-30 00:22:11 -04001545 /*
1546 * We take dev->mutex here to prevent race with
1547 * input_release_device().
1548 */
1549 error = mutex_lock_interruptible(&dev->mutex);
1550 if (error)
1551 return error;
1552 list_add_tail_rcu(&handle->d_node, &dev->h_list);
1553 mutex_unlock(&dev->mutex);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -04001554 synchronize_rcu();
Dmitry Torokhov80064792007-08-30 00:22:11 -04001555
1556 /*
1557 * Since we are supposed to be called from ->connect()
1558 * which is mutually exclusive with ->disconnect()
1559 * we can't be racing with input_unregister_handle()
1560 * and so separate lock is not needed here.
1561 */
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001562 list_add_tail(&handle->h_node, &handler->h_list);
1563
1564 if (handler->start)
1565 handler->start(handle);
1566
1567 return 0;
1568}
1569EXPORT_SYMBOL(input_register_handle);
1570
Dmitry Torokhov80064792007-08-30 00:22:11 -04001571/**
1572 * input_unregister_handle - unregister an input handle
1573 * @handle: handle to unregister
1574 *
1575 * This function removes input handle from device's
1576 * and handler's lists.
1577 *
1578 * This function is supposed to be called from handler's
1579 * disconnect() method.
1580 */
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001581void input_unregister_handle(struct input_handle *handle)
1582{
Dmitry Torokhov80064792007-08-30 00:22:11 -04001583 struct input_dev *dev = handle->dev;
1584
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001585 list_del_init(&handle->h_node);
Dmitry Torokhov80064792007-08-30 00:22:11 -04001586
1587 /*
1588 * Take dev->mutex to prevent race with input_release_device().
1589 */
1590 mutex_lock(&dev->mutex);
1591 list_del_rcu(&handle->d_node);
1592 mutex_unlock(&dev->mutex);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -04001593 synchronize_rcu();
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001594}
1595EXPORT_SYMBOL(input_unregister_handle);
1596
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001597static int input_open_file(struct inode *inode, struct file *file)
1598{
Jonathan Corbet2edbf852008-05-15 10:37:16 -06001599 struct input_handler *handler;
Arjan van de Ven99ac48f2006-03-28 01:56:41 -08001600 const struct file_operations *old_fops, *new_fops = NULL;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001601 int err;
1602
Jonathan Corbet2edbf852008-05-15 10:37:16 -06001603 lock_kernel();
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001604 /* No load-on-demand here? */
Jonathan Corbet2edbf852008-05-15 10:37:16 -06001605 handler = input_table[iminor(inode) >> 5];
1606 if (!handler || !(new_fops = fops_get(handler->fops))) {
1607 err = -ENODEV;
1608 goto out;
1609 }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001610
1611 /*
1612 * That's _really_ odd. Usually NULL ->open means "nothing special",
1613 * not "no device". Oh, well...
1614 */
1615 if (!new_fops->open) {
1616 fops_put(new_fops);
Jonathan Corbet2edbf852008-05-15 10:37:16 -06001617 err = -ENODEV;
1618 goto out;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001619 }
1620 old_fops = file->f_op;
1621 file->f_op = new_fops;
1622
1623 err = new_fops->open(inode, file);
1624
1625 if (err) {
1626 fops_put(file->f_op);
1627 file->f_op = fops_get(old_fops);
1628 }
1629 fops_put(old_fops);
Jonathan Corbet2edbf852008-05-15 10:37:16 -06001630out:
1631 unlock_kernel();
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001632 return err;
1633}
1634
Arjan van de Ven2b8693c2007-02-12 00:55:32 -08001635static const struct file_operations input_fops = {
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001636 .owner = THIS_MODULE,
1637 .open = input_open_file,
1638};
1639
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640static int __init input_init(void)
1641{
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001642 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -07001644 err = class_register(&input_class);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001645 if (err) {
1646 printk(KERN_ERR "input: unable to register input_dev class\n");
1647 return err;
1648 }
1649
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001650 err = input_proc_init();
1651 if (err)
Greg Kroah-Hartmanb0fdfeb2005-10-27 22:25:43 -07001652 goto fail1;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001653
1654 err = register_chrdev(INPUT_MAJOR, "input", &input_fops);
1655 if (err) {
1656 printk(KERN_ERR "input: unable to register char major %d", INPUT_MAJOR);
Greg Kroah-Hartmanb0fdfeb2005-10-27 22:25:43 -07001657 goto fail2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001659
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001660 return 0;
1661
Greg Kroah-Hartmanb0fdfeb2005-10-27 22:25:43 -07001662 fail2: input_proc_exit();
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -07001663 fail1: class_unregister(&input_class);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001664 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665}
1666
1667static void __exit input_exit(void)
1668{
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001669 input_proc_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 unregister_chrdev(INPUT_MAJOR, "input");
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -07001671 class_unregister(&input_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672}
1673
1674subsys_initcall(input_init);
1675module_exit(input_exit);