blob: 26393a606e6f46f46ee940636a25c8f5a79dc119 [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/smp_lock.h>
15#include <linux/input.h>
16#include <linux/module.h>
17#include <linux/random.h>
18#include <linux/major.h>
19#include <linux/proc_fs.h>
Dmitry Torokhov969b21c2006-04-02 00:09:34 -050020#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/interrupt.h>
22#include <linux/poll.h>
23#include <linux/device.h>
Jes Sorensene676c232006-02-19 00:21:46 -050024#include <linux/mutex.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
35static struct input_handler *input_table[8];
36
Dmitry Torokhov0e739d22006-07-06 00:22:43 -040037/**
38 * input_event() - report new input event
Dmitry Torokhov14471902006-11-02 23:26:55 -050039 * @dev: device that generated the event
Dmitry Torokhov0e739d22006-07-06 00:22:43 -040040 * @type: type of the event
41 * @code: event code
42 * @value: value of the event
43 *
44 * This function should be used by drivers implementing various input devices
45 * See also input_inject_event()
46 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070047void input_event(struct input_dev *dev, unsigned int type, unsigned int code, int value)
48{
49 struct input_handle *handle;
50
51 if (type > EV_MAX || !test_bit(type, dev->evbit))
52 return;
53
54 add_input_randomness(type, code, value);
55
56 switch (type) {
57
58 case EV_SYN:
59 switch (code) {
60 case SYN_CONFIG:
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -040061 if (dev->event)
62 dev->event(dev, type, code, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 break;
64
65 case SYN_REPORT:
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -040066 if (dev->sync)
67 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 dev->sync = 1;
69 break;
70 }
71 break;
72
73 case EV_KEY:
74
75 if (code > KEY_MAX || !test_bit(code, dev->keybit) || !!test_bit(code, dev->key) == value)
76 return;
77
78 if (value == 2)
79 break;
80
81 change_bit(code, dev->key);
82
83 if (test_bit(EV_REP, dev->evbit) && dev->rep[REP_PERIOD] && dev->rep[REP_DELAY] && dev->timer.data && value) {
84 dev->repeat_key = code;
85 mod_timer(&dev->timer, jiffies + msecs_to_jiffies(dev->rep[REP_DELAY]));
86 }
87
88 break;
89
Richard Purdie31581062005-09-06 15:19:06 -070090 case EV_SW:
91
92 if (code > SW_MAX || !test_bit(code, dev->swbit) || !!test_bit(code, dev->sw) == value)
93 return;
94
95 change_bit(code, dev->sw);
96
97 break;
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 case EV_ABS:
100
101 if (code > ABS_MAX || !test_bit(code, dev->absbit))
102 return;
103
104 if (dev->absfuzz[code]) {
105 if ((value > dev->abs[code] - (dev->absfuzz[code] >> 1)) &&
106 (value < dev->abs[code] + (dev->absfuzz[code] >> 1)))
107 return;
108
109 if ((value > dev->abs[code] - dev->absfuzz[code]) &&
110 (value < dev->abs[code] + dev->absfuzz[code]))
111 value = (dev->abs[code] * 3 + value) >> 2;
112
113 if ((value > dev->abs[code] - (dev->absfuzz[code] << 1)) &&
114 (value < dev->abs[code] + (dev->absfuzz[code] << 1)))
115 value = (dev->abs[code] + value) >> 1;
116 }
117
118 if (dev->abs[code] == value)
119 return;
120
121 dev->abs[code] = value;
122 break;
123
124 case EV_REL:
125
126 if (code > REL_MAX || !test_bit(code, dev->relbit) || (value == 0))
127 return;
128
129 break;
130
131 case EV_MSC:
132
133 if (code > MSC_MAX || !test_bit(code, dev->mscbit))
134 return;
135
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400136 if (dev->event)
137 dev->event(dev, type, code, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139 break;
140
141 case EV_LED:
142
143 if (code > LED_MAX || !test_bit(code, dev->ledbit) || !!test_bit(code, dev->led) == value)
144 return;
145
146 change_bit(code, dev->led);
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400147
148 if (dev->event)
149 dev->event(dev, type, code, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151 break;
152
153 case EV_SND:
154
155 if (code > SND_MAX || !test_bit(code, dev->sndbit))
156 return;
157
Dmitry Torokhov8fdc1942006-04-29 01:13:48 -0400158 if (!!test_bit(code, dev->snd) != !!value)
159 change_bit(code, dev->snd);
160
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400161 if (dev->event)
162 dev->event(dev, type, code, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 break;
165
166 case EV_REP:
167
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400168 if (code > REP_MAX || value < 0 || dev->rep[code] == value)
169 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171 dev->rep[code] = value;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400172 if (dev->event)
173 dev->event(dev, type, code, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175 break;
176
177 case EV_FF:
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400178
179 if (value < 0)
180 return;
181
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400182 if (dev->event)
183 dev->event(dev, type, code, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 break;
185 }
186
187 if (type != EV_SYN)
188 dev->sync = 0;
189
190 if (dev->grab)
191 dev->grab->handler->event(dev->grab, type, code, value);
192 else
193 list_for_each_entry(handle, &dev->h_list, d_node)
194 if (handle->open)
195 handle->handler->event(handle, type, code, value);
196}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400197EXPORT_SYMBOL(input_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400199/**
200 * input_inject_event() - send input event from input handler
201 * @handle: input handle to send event through
202 * @type: type of the event
203 * @code: event code
204 * @value: value of the event
205 *
206 * Similar to input_event() but will ignore event if device is "grabbed" and handle
207 * injecting event is not the one that owns the device.
208 */
209void input_inject_event(struct input_handle *handle, unsigned int type, unsigned int code, int value)
210{
211 if (!handle->dev->grab || handle->dev->grab == handle)
212 input_event(handle->dev, type, code, value);
213}
214EXPORT_SYMBOL(input_inject_event);
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216static void input_repeat_key(unsigned long data)
217{
218 struct input_dev *dev = (void *) data;
219
220 if (!test_bit(dev->repeat_key, dev->key))
221 return;
222
223 input_event(dev, EV_KEY, dev->repeat_key, 2);
224 input_sync(dev);
225
226 if (dev->rep[REP_PERIOD])
227 mod_timer(&dev->timer, jiffies + msecs_to_jiffies(dev->rep[REP_PERIOD]));
228}
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230int input_grab_device(struct input_handle *handle)
231{
232 if (handle->dev->grab)
233 return -EBUSY;
234
235 handle->dev->grab = handle;
236 return 0;
237}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400238EXPORT_SYMBOL(input_grab_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240void input_release_device(struct input_handle *handle)
241{
Andrew Mortona2b2ed22006-07-15 01:17:38 -0400242 struct input_dev *dev = handle->dev;
Dmitry Torokhovc7e8dc62006-07-06 00:21:03 -0400243
Andrew Mortona2b2ed22006-07-15 01:17:38 -0400244 if (dev->grab == handle) {
245 dev->grab = NULL;
246
247 list_for_each_entry(handle, &dev->h_list, d_node)
Dmitry Torokhovc7e8dc62006-07-06 00:21:03 -0400248 if (handle->handler->start)
249 handle->handler->start(handle);
250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400252EXPORT_SYMBOL(input_release_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254int input_open_device(struct input_handle *handle)
255{
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500256 struct input_dev *dev = handle->dev;
257 int err;
258
Jes Sorensene676c232006-02-19 00:21:46 -0500259 err = mutex_lock_interruptible(&dev->mutex);
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500260 if (err)
261 return err;
262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 handle->open++;
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500264
265 if (!dev->users++ && dev->open)
266 err = dev->open(dev);
267
268 if (err)
269 handle->open--;
270
Jes Sorensene676c232006-02-19 00:21:46 -0500271 mutex_unlock(&dev->mutex);
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500272
273 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400275EXPORT_SYMBOL(input_open_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277int input_flush_device(struct input_handle* handle, struct file* file)
278{
279 if (handle->dev->flush)
280 return handle->dev->flush(handle->dev, file);
281
282 return 0;
283}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400284EXPORT_SYMBOL(input_flush_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286void input_close_device(struct input_handle *handle)
287{
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500288 struct input_dev *dev = handle->dev;
289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 input_release_device(handle);
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500291
Jes Sorensene676c232006-02-19 00:21:46 -0500292 mutex_lock(&dev->mutex);
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500293
294 if (!--dev->users && dev->close)
295 dev->close(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 handle->open--;
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500297
Jes Sorensene676c232006-02-19 00:21:46 -0500298 mutex_unlock(&dev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400300EXPORT_SYMBOL(input_close_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400302static int input_fetch_keycode(struct input_dev *dev, int scancode)
303{
304 switch (dev->keycodesize) {
305 case 1:
306 return ((u8 *)dev->keycode)[scancode];
307
308 case 2:
309 return ((u16 *)dev->keycode)[scancode];
310
311 default:
312 return ((u32 *)dev->keycode)[scancode];
313 }
314}
315
316static int input_default_getkeycode(struct input_dev *dev,
317 int scancode, int *keycode)
318{
319 if (!dev->keycodesize)
320 return -EINVAL;
321
322 if (scancode < 0 || scancode >= dev->keycodemax)
323 return -EINVAL;
324
325 *keycode = input_fetch_keycode(dev, scancode);
326
327 return 0;
328}
329
330static int input_default_setkeycode(struct input_dev *dev,
331 int scancode, int keycode)
332{
333 int old_keycode;
334 int i;
335
336 if (scancode < 0 || scancode >= dev->keycodemax)
337 return -EINVAL;
338
339 if (keycode < 0 || keycode > KEY_MAX)
340 return -EINVAL;
341
342 if (!dev->keycodesize)
343 return -EINVAL;
344
345 if (dev->keycodesize < sizeof(keycode) && (keycode >> (dev->keycodesize * 8)))
346 return -EINVAL;
347
348 switch (dev->keycodesize) {
349 case 1: {
350 u8 *k = (u8 *)dev->keycode;
351 old_keycode = k[scancode];
352 k[scancode] = keycode;
353 break;
354 }
355 case 2: {
356 u16 *k = (u16 *)dev->keycode;
357 old_keycode = k[scancode];
358 k[scancode] = keycode;
359 break;
360 }
361 default: {
362 u32 *k = (u32 *)dev->keycode;
363 old_keycode = k[scancode];
364 k[scancode] = keycode;
365 break;
366 }
367 }
368
369 clear_bit(old_keycode, dev->keybit);
370 set_bit(keycode, dev->keybit);
371
372 for (i = 0; i < dev->keycodemax; i++) {
373 if (input_fetch_keycode(dev, i) == old_keycode) {
374 set_bit(old_keycode, dev->keybit);
375 break; /* Setting the bit twice is useless, so break */
376 }
377 }
378
379 return 0;
380}
381
382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383static void input_link_handle(struct input_handle *handle)
384{
385 list_add_tail(&handle->d_node, &handle->dev->h_list);
386 list_add_tail(&handle->h_node, &handle->handler->h_list);
387}
388
389#define MATCH_BIT(bit, max) \
390 for (i = 0; i < NBITS(max); i++) \
391 if ((id->bit[i] & dev->bit[i]) != id->bit[i]) \
392 break; \
393 if (i != NBITS(max)) \
394 continue;
395
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400396static const struct input_device_id *input_match_device(const struct input_device_id *id,
397 struct input_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
399 int i;
400
401 for (; id->flags || id->driver_info; id++) {
402
403 if (id->flags & INPUT_DEVICE_ID_MATCH_BUS)
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400404 if (id->bustype != dev->id.bustype)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 continue;
406
407 if (id->flags & INPUT_DEVICE_ID_MATCH_VENDOR)
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400408 if (id->vendor != dev->id.vendor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 continue;
410
411 if (id->flags & INPUT_DEVICE_ID_MATCH_PRODUCT)
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400412 if (id->product != dev->id.product)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 continue;
414
415 if (id->flags & INPUT_DEVICE_ID_MATCH_VERSION)
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400416 if (id->version != dev->id.version)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 continue;
418
419 MATCH_BIT(evbit, EV_MAX);
420 MATCH_BIT(keybit, KEY_MAX);
421 MATCH_BIT(relbit, REL_MAX);
422 MATCH_BIT(absbit, ABS_MAX);
423 MATCH_BIT(mscbit, MSC_MAX);
424 MATCH_BIT(ledbit, LED_MAX);
425 MATCH_BIT(sndbit, SND_MAX);
426 MATCH_BIT(ffbit, FF_MAX);
Dmitry Torokhovff13f982005-09-24 02:02:29 -0500427 MATCH_BIT(swbit, SW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
429 return id;
430 }
431
432 return NULL;
433}
434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435#ifdef CONFIG_PROC_FS
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500436
437static struct proc_dir_entry *proc_bus_input_dir;
438static DECLARE_WAIT_QUEUE_HEAD(input_devices_poll_wait);
439static int input_devices_state;
440
441static inline void input_wakeup_procfs_readers(void)
442{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 input_devices_state++;
444 wake_up(&input_devices_poll_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445}
446
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500447static unsigned int input_proc_devices_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500449 int state = input_devices_state;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400450
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500451 poll_wait(file, &input_devices_poll_wait, wait);
452 if (state != input_devices_state)
453 return POLLIN | POLLRDNORM;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400454
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500455 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456}
457
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500458static struct list_head *list_get_nth_element(struct list_head *list, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459{
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500460 struct list_head *node;
461 loff_t i = 0;
462
463 list_for_each(node, list)
464 if (i++ == *pos)
465 return node;
466
467 return NULL;
468}
469
470static struct list_head *list_get_next_element(struct list_head *list, struct list_head *element, loff_t *pos)
471{
472 if (element->next == list)
473 return NULL;
474
475 ++(*pos);
476 return element->next;
477}
478
479static void *input_devices_seq_start(struct seq_file *seq, loff_t *pos)
480{
481 /* acquire lock here ... Yes, we do need locking, I knowi, I know... */
482
483 return list_get_nth_element(&input_dev_list, pos);
484}
485
486static void *input_devices_seq_next(struct seq_file *seq, void *v, loff_t *pos)
487{
488 return list_get_next_element(&input_dev_list, v, pos);
489}
490
491static void input_devices_seq_stop(struct seq_file *seq, void *v)
492{
493 /* release lock here */
494}
495
496static void input_seq_print_bitmap(struct seq_file *seq, const char *name,
497 unsigned long *bitmap, int max)
498{
499 int i;
500
501 for (i = NBITS(max) - 1; i > 0; i--)
502 if (bitmap[i])
503 break;
504
505 seq_printf(seq, "B: %s=", name);
506 for (; i >= 0; i--)
507 seq_printf(seq, "%lx%s", bitmap[i], i > 0 ? " " : "");
508 seq_putc(seq, '\n');
509}
510
511static int input_devices_seq_show(struct seq_file *seq, void *v)
512{
513 struct input_dev *dev = container_of(v, struct input_dev, node);
514 const char *path = kobject_get_path(&dev->cdev.kobj, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 struct input_handle *handle;
516
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500517 seq_printf(seq, "I: Bus=%04x Vendor=%04x Product=%04x Version=%04x\n",
518 dev->id.bustype, dev->id.vendor, dev->id.product, dev->id.version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500520 seq_printf(seq, "N: Name=\"%s\"\n", dev->name ? dev->name : "");
521 seq_printf(seq, "P: Phys=%s\n", dev->phys ? dev->phys : "");
522 seq_printf(seq, "S: Sysfs=%s\n", path ? path : "");
Dmitry Torokhov15e03ae2007-03-07 23:20:17 -0500523 seq_printf(seq, "U: Uniq=%s\n", dev->uniq ? dev->uniq : "");
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500524 seq_printf(seq, "H: Handlers=");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500526 list_for_each_entry(handle, &dev->h_list, d_node)
527 seq_printf(seq, "%s ", handle->name);
528 seq_putc(seq, '\n');
Dmitry Torokhov051b2fe2005-09-15 02:01:54 -0500529
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500530 input_seq_print_bitmap(seq, "EV", dev->evbit, EV_MAX);
531 if (test_bit(EV_KEY, dev->evbit))
532 input_seq_print_bitmap(seq, "KEY", dev->keybit, KEY_MAX);
533 if (test_bit(EV_REL, dev->evbit))
534 input_seq_print_bitmap(seq, "REL", dev->relbit, REL_MAX);
535 if (test_bit(EV_ABS, dev->evbit))
536 input_seq_print_bitmap(seq, "ABS", dev->absbit, ABS_MAX);
537 if (test_bit(EV_MSC, dev->evbit))
538 input_seq_print_bitmap(seq, "MSC", dev->mscbit, MSC_MAX);
539 if (test_bit(EV_LED, dev->evbit))
540 input_seq_print_bitmap(seq, "LED", dev->ledbit, LED_MAX);
541 if (test_bit(EV_SND, dev->evbit))
542 input_seq_print_bitmap(seq, "SND", dev->sndbit, SND_MAX);
543 if (test_bit(EV_FF, dev->evbit))
544 input_seq_print_bitmap(seq, "FF", dev->ffbit, FF_MAX);
545 if (test_bit(EV_SW, dev->evbit))
546 input_seq_print_bitmap(seq, "SW", dev->swbit, SW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500548 seq_putc(seq, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500550 kfree(path);
551 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552}
553
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500554static struct seq_operations input_devices_seq_ops = {
555 .start = input_devices_seq_start,
556 .next = input_devices_seq_next,
557 .stop = input_devices_seq_stop,
558 .show = input_devices_seq_show,
559};
560
561static int input_proc_devices_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500563 return seq_open(file, &input_devices_seq_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564}
565
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800566static const struct file_operations input_devices_fileops = {
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500567 .owner = THIS_MODULE,
568 .open = input_proc_devices_open,
569 .poll = input_proc_devices_poll,
570 .read = seq_read,
571 .llseek = seq_lseek,
572 .release = seq_release,
573};
574
575static void *input_handlers_seq_start(struct seq_file *seq, loff_t *pos)
576{
577 /* acquire lock here ... Yes, we do need locking, I knowi, I know... */
578 seq->private = (void *)(unsigned long)*pos;
579 return list_get_nth_element(&input_handler_list, pos);
580}
581
582static void *input_handlers_seq_next(struct seq_file *seq, void *v, loff_t *pos)
583{
584 seq->private = (void *)(unsigned long)(*pos + 1);
585 return list_get_next_element(&input_handler_list, v, pos);
586}
587
588static void input_handlers_seq_stop(struct seq_file *seq, void *v)
589{
590 /* release lock here */
591}
592
593static int input_handlers_seq_show(struct seq_file *seq, void *v)
594{
595 struct input_handler *handler = container_of(v, struct input_handler, node);
596
597 seq_printf(seq, "N: Number=%ld Name=%s",
598 (unsigned long)seq->private, handler->name);
599 if (handler->fops)
600 seq_printf(seq, " Minor=%d", handler->minor);
601 seq_putc(seq, '\n');
602
603 return 0;
604}
605static struct seq_operations input_handlers_seq_ops = {
606 .start = input_handlers_seq_start,
607 .next = input_handlers_seq_next,
608 .stop = input_handlers_seq_stop,
609 .show = input_handlers_seq_show,
610};
611
612static int input_proc_handlers_open(struct inode *inode, struct file *file)
613{
614 return seq_open(file, &input_handlers_seq_ops);
615}
616
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800617static const struct file_operations input_handlers_fileops = {
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500618 .owner = THIS_MODULE,
619 .open = input_proc_handlers_open,
620 .read = seq_read,
621 .llseek = seq_lseek,
622 .release = seq_release,
623};
Luke Kosewskie334016fc2005-06-01 02:39:28 -0500624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625static int __init input_proc_init(void)
626{
627 struct proc_dir_entry *entry;
628
629 proc_bus_input_dir = proc_mkdir("input", proc_bus);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500630 if (!proc_bus_input_dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 return -ENOMEM;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 proc_bus_input_dir->owner = THIS_MODULE;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500634
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500635 entry = create_proc_entry("devices", 0, proc_bus_input_dir);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500636 if (!entry)
637 goto fail1;
638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 entry->owner = THIS_MODULE;
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500640 entry->proc_fops = &input_devices_fileops;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500641
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500642 entry = create_proc_entry("handlers", 0, proc_bus_input_dir);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500643 if (!entry)
644 goto fail2;
645
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 entry->owner = THIS_MODULE;
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500647 entry->proc_fops = &input_handlers_fileops;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 return 0;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500650
651 fail2: remove_proc_entry("devices", proc_bus_input_dir);
652 fail1: remove_proc_entry("input", proc_bus);
653 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654}
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500655
Andrew Mortonbeffbdc2005-07-01 23:54:30 -0500656static void input_proc_exit(void)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500657{
658 remove_proc_entry("devices", proc_bus_input_dir);
659 remove_proc_entry("handlers", proc_bus_input_dir);
660 remove_proc_entry("input", proc_bus);
661}
662
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663#else /* !CONFIG_PROC_FS */
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500664static inline void input_wakeup_procfs_readers(void) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665static inline int input_proc_init(void) { return 0; }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500666static inline void input_proc_exit(void) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667#endif
668
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -0500669#define INPUT_DEV_STRING_ATTR_SHOW(name) \
670static ssize_t input_dev_show_##name(struct class_device *dev, char *buf) \
671{ \
672 struct input_dev *input_dev = to_input_dev(dev); \
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -0500673 \
Dmitry Torokhov1efa7702007-02-18 01:40:37 -0500674 return scnprintf(buf, PAGE_SIZE, "%s\n", \
675 input_dev->name ? input_dev->name : ""); \
Greg Kroah-Hartman629b77a2005-10-27 22:25:43 -0700676} \
677static CLASS_DEVICE_ATTR(name, S_IRUGO, input_dev_show_##name, NULL);
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -0500678
679INPUT_DEV_STRING_ATTR_SHOW(name);
680INPUT_DEV_STRING_ATTR_SHOW(phys);
681INPUT_DEV_STRING_ATTR_SHOW(uniq);
682
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500683static int input_print_modalias_bits(char *buf, int size,
684 char name, unsigned long *bm,
685 unsigned int min_bit, unsigned int max_bit)
Rusty Russell1d8f4302005-12-07 21:40:34 +0100686{
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500687 int len = 0, i;
Rusty Russell1d8f4302005-12-07 21:40:34 +0100688
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500689 len += snprintf(buf, max(size, 0), "%c", name);
690 for (i = min_bit; i < max_bit; i++)
691 if (bm[LONG(i)] & BIT(i))
692 len += snprintf(buf + len, max(size - len, 0), "%X,", i);
Kay Sieversbd37e5a2006-01-05 13:19:55 +0100693 return len;
694}
695
Dmitry Torokhov2db66872006-04-02 00:09:26 -0500696static int input_print_modalias(char *buf, int size, struct input_dev *id,
697 int add_cr)
Kay Sieversbd37e5a2006-01-05 13:19:55 +0100698{
699 int len;
700
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500701 len = snprintf(buf, max(size, 0),
702 "input:b%04Xv%04Xp%04Xe%04X-",
703 id->id.bustype, id->id.vendor,
704 id->id.product, id->id.version);
Kay Sieversbd37e5a2006-01-05 13:19:55 +0100705
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500706 len += input_print_modalias_bits(buf + len, size - len,
707 'e', id->evbit, 0, EV_MAX);
708 len += input_print_modalias_bits(buf + len, size - len,
709 'k', id->keybit, KEY_MIN_INTERESTING, KEY_MAX);
710 len += input_print_modalias_bits(buf + len, size - len,
711 'r', id->relbit, 0, REL_MAX);
712 len += input_print_modalias_bits(buf + len, size - len,
713 'a', id->absbit, 0, ABS_MAX);
714 len += input_print_modalias_bits(buf + len, size - len,
715 'm', id->mscbit, 0, MSC_MAX);
716 len += input_print_modalias_bits(buf + len, size - len,
717 'l', id->ledbit, 0, LED_MAX);
718 len += input_print_modalias_bits(buf + len, size - len,
719 's', id->sndbit, 0, SND_MAX);
720 len += input_print_modalias_bits(buf + len, size - len,
721 'f', id->ffbit, 0, FF_MAX);
722 len += input_print_modalias_bits(buf + len, size - len,
723 'w', id->swbit, 0, SW_MAX);
Dmitry Torokhov2db66872006-04-02 00:09:26 -0500724
725 if (add_cr)
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500726 len += snprintf(buf + len, max(size - len, 0), "\n");
Dmitry Torokhov2db66872006-04-02 00:09:26 -0500727
Rusty Russell1d8f4302005-12-07 21:40:34 +0100728 return len;
729}
730
731static ssize_t input_dev_show_modalias(struct class_device *dev, char *buf)
732{
733 struct input_dev *id = to_input_dev(dev);
Kay Sieversbd37e5a2006-01-05 13:19:55 +0100734 ssize_t len;
Rusty Russell1d8f4302005-12-07 21:40:34 +0100735
Dmitry Torokhov2db66872006-04-02 00:09:26 -0500736 len = input_print_modalias(buf, PAGE_SIZE, id, 1);
737
Richard Purdie8a3cf452006-06-26 01:48:21 -0400738 return min_t(int, len, PAGE_SIZE);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100739}
740static CLASS_DEVICE_ATTR(modalias, S_IRUGO, input_dev_show_modalias, NULL);
741
Greg Kroah-Hartman629b77a2005-10-27 22:25:43 -0700742static struct attribute *input_dev_attrs[] = {
743 &class_device_attr_name.attr,
744 &class_device_attr_phys.attr,
745 &class_device_attr_uniq.attr,
Rusty Russell1d8f4302005-12-07 21:40:34 +0100746 &class_device_attr_modalias.attr,
Greg Kroah-Hartman629b77a2005-10-27 22:25:43 -0700747 NULL
748};
749
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -0500750static struct attribute_group input_dev_attr_group = {
Greg Kroah-Hartman629b77a2005-10-27 22:25:43 -0700751 .attrs = input_dev_attrs,
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -0500752};
753
754#define INPUT_DEV_ID_ATTR(name) \
755static ssize_t input_dev_show_id_##name(struct class_device *dev, char *buf) \
756{ \
757 struct input_dev *input_dev = to_input_dev(dev); \
Dmitry Torokhov2db66872006-04-02 00:09:26 -0500758 return scnprintf(buf, PAGE_SIZE, "%04x\n", input_dev->id.name); \
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -0500759} \
760static CLASS_DEVICE_ATTR(name, S_IRUGO, input_dev_show_id_##name, NULL);
761
762INPUT_DEV_ID_ATTR(bustype);
763INPUT_DEV_ID_ATTR(vendor);
764INPUT_DEV_ID_ATTR(product);
765INPUT_DEV_ID_ATTR(version);
766
767static struct attribute *input_dev_id_attrs[] = {
768 &class_device_attr_bustype.attr,
769 &class_device_attr_vendor.attr,
770 &class_device_attr_product.attr,
771 &class_device_attr_version.attr,
772 NULL
773};
774
775static struct attribute_group input_dev_id_attr_group = {
776 .name = "id",
777 .attrs = input_dev_id_attrs,
778};
779
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500780static int input_print_bitmap(char *buf, int buf_size, unsigned long *bitmap,
781 int max, int add_cr)
782{
783 int i;
784 int len = 0;
785
786 for (i = NBITS(max) - 1; i > 0; i--)
787 if (bitmap[i])
788 break;
789
790 for (; i >= 0; i--)
791 len += snprintf(buf + len, max(buf_size - len, 0),
792 "%lx%s", bitmap[i], i > 0 ? " " : "");
793
794 if (add_cr)
795 len += snprintf(buf + len, max(buf_size - len, 0), "\n");
796
797 return len;
798}
799
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -0500800#define INPUT_DEV_CAP_ATTR(ev, bm) \
801static ssize_t input_dev_show_cap_##bm(struct class_device *dev, char *buf) \
802{ \
803 struct input_dev *input_dev = to_input_dev(dev); \
Dmitry Torokhov2db66872006-04-02 00:09:26 -0500804 int len = input_print_bitmap(buf, PAGE_SIZE, \
805 input_dev->bm##bit, ev##_MAX, 1); \
806 return min_t(int, len, PAGE_SIZE); \
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -0500807} \
808static CLASS_DEVICE_ATTR(bm, S_IRUGO, input_dev_show_cap_##bm, NULL);
809
810INPUT_DEV_CAP_ATTR(EV, ev);
811INPUT_DEV_CAP_ATTR(KEY, key);
812INPUT_DEV_CAP_ATTR(REL, rel);
813INPUT_DEV_CAP_ATTR(ABS, abs);
814INPUT_DEV_CAP_ATTR(MSC, msc);
815INPUT_DEV_CAP_ATTR(LED, led);
816INPUT_DEV_CAP_ATTR(SND, snd);
817INPUT_DEV_CAP_ATTR(FF, ff);
818INPUT_DEV_CAP_ATTR(SW, sw);
819
820static struct attribute *input_dev_caps_attrs[] = {
821 &class_device_attr_ev.attr,
822 &class_device_attr_key.attr,
823 &class_device_attr_rel.attr,
824 &class_device_attr_abs.attr,
825 &class_device_attr_msc.attr,
826 &class_device_attr_led.attr,
827 &class_device_attr_snd.attr,
828 &class_device_attr_ff.attr,
829 &class_device_attr_sw.attr,
830 NULL
831};
832
833static struct attribute_group input_dev_caps_attr_group = {
834 .name = "capabilities",
835 .attrs = input_dev_caps_attrs,
836};
837
Dmitry Torokhovcb9def42007-03-07 23:20:26 -0500838static struct attribute_group *input_dev_attr_groups[] = {
839 &input_dev_attr_group,
840 &input_dev_id_attr_group,
841 &input_dev_caps_attr_group,
842 NULL
843};
844
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -0500845static void input_dev_release(struct class_device *class_dev)
846{
847 struct input_dev *dev = to_input_dev(class_dev);
848
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400849 input_ff_destroy(dev);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -0500850 kfree(dev);
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400851
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -0500852 module_put(THIS_MODULE);
853}
854
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -0500855/*
Kay Sievers312c0042005-11-16 09:00:00 +0100856 * Input uevent interface - loading event handlers based on
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -0500857 * device bitfields.
858 */
Kay Sievers312c0042005-11-16 09:00:00 +0100859static int input_add_uevent_bm_var(char **envp, int num_envp, int *cur_index,
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500860 char *buffer, int buffer_size, int *cur_len,
861 const char *name, unsigned long *bitmap, int max)
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -0500862{
863 if (*cur_index >= num_envp - 1)
864 return -ENOMEM;
865
866 envp[*cur_index] = buffer + *cur_len;
867
868 *cur_len += snprintf(buffer + *cur_len, max(buffer_size - *cur_len, 0), name);
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500869 if (*cur_len >= buffer_size)
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -0500870 return -ENOMEM;
871
872 *cur_len += input_print_bitmap(buffer + *cur_len,
873 max(buffer_size - *cur_len, 0),
Dmitry Torokhov2db66872006-04-02 00:09:26 -0500874 bitmap, max, 0) + 1;
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -0500875 if (*cur_len > buffer_size)
876 return -ENOMEM;
877
878 (*cur_index)++;
879 return 0;
880}
881
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500882static int input_add_uevent_modalias_var(char **envp, int num_envp, int *cur_index,
883 char *buffer, int buffer_size, int *cur_len,
884 struct input_dev *dev)
885{
886 if (*cur_index >= num_envp - 1)
887 return -ENOMEM;
888
889 envp[*cur_index] = buffer + *cur_len;
890
891 *cur_len += snprintf(buffer + *cur_len, max(buffer_size - *cur_len, 0),
892 "MODALIAS=");
893 if (*cur_len >= buffer_size)
894 return -ENOMEM;
895
896 *cur_len += input_print_modalias(buffer + *cur_len,
897 max(buffer_size - *cur_len, 0),
898 dev, 0) + 1;
899 if (*cur_len > buffer_size)
900 return -ENOMEM;
901
902 (*cur_index)++;
903 return 0;
904}
905
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -0500906#define INPUT_ADD_HOTPLUG_VAR(fmt, val...) \
907 do { \
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500908 int err = add_uevent_var(envp, num_envp, &i, \
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -0500909 buffer, buffer_size, &len, \
910 fmt, val); \
911 if (err) \
912 return err; \
913 } while (0)
914
915#define INPUT_ADD_HOTPLUG_BM_VAR(name, bm, max) \
916 do { \
Kay Sievers312c0042005-11-16 09:00:00 +0100917 int err = input_add_uevent_bm_var(envp, num_envp, &i, \
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -0500918 buffer, buffer_size, &len, \
919 name, bm, max); \
920 if (err) \
921 return err; \
922 } while (0)
923
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500924#define INPUT_ADD_HOTPLUG_MODALIAS_VAR(dev) \
925 do { \
926 int err = input_add_uevent_modalias_var(envp, \
927 num_envp, &i, \
928 buffer, buffer_size, &len, \
929 dev); \
930 if (err) \
931 return err; \
932 } while (0)
933
Kay Sievers312c0042005-11-16 09:00:00 +0100934static int input_dev_uevent(struct class_device *cdev, char **envp,
935 int num_envp, char *buffer, int buffer_size)
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -0500936{
937 struct input_dev *dev = to_input_dev(cdev);
938 int i = 0;
939 int len = 0;
940
941 INPUT_ADD_HOTPLUG_VAR("PRODUCT=%x/%x/%x/%x",
942 dev->id.bustype, dev->id.vendor,
943 dev->id.product, dev->id.version);
944 if (dev->name)
945 INPUT_ADD_HOTPLUG_VAR("NAME=\"%s\"", dev->name);
946 if (dev->phys)
947 INPUT_ADD_HOTPLUG_VAR("PHYS=\"%s\"", dev->phys);
Dmitry Torokhov08de1f02005-11-08 21:34:29 -0800948 if (dev->uniq)
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -0500949 INPUT_ADD_HOTPLUG_VAR("UNIQ=\"%s\"", dev->uniq);
950
951 INPUT_ADD_HOTPLUG_BM_VAR("EV=", dev->evbit, EV_MAX);
952 if (test_bit(EV_KEY, dev->evbit))
953 INPUT_ADD_HOTPLUG_BM_VAR("KEY=", dev->keybit, KEY_MAX);
954 if (test_bit(EV_REL, dev->evbit))
955 INPUT_ADD_HOTPLUG_BM_VAR("REL=", dev->relbit, REL_MAX);
956 if (test_bit(EV_ABS, dev->evbit))
957 INPUT_ADD_HOTPLUG_BM_VAR("ABS=", dev->absbit, ABS_MAX);
958 if (test_bit(EV_MSC, dev->evbit))
959 INPUT_ADD_HOTPLUG_BM_VAR("MSC=", dev->mscbit, MSC_MAX);
960 if (test_bit(EV_LED, dev->evbit))
961 INPUT_ADD_HOTPLUG_BM_VAR("LED=", dev->ledbit, LED_MAX);
962 if (test_bit(EV_SND, dev->evbit))
963 INPUT_ADD_HOTPLUG_BM_VAR("SND=", dev->sndbit, SND_MAX);
964 if (test_bit(EV_FF, dev->evbit))
965 INPUT_ADD_HOTPLUG_BM_VAR("FF=", dev->ffbit, FF_MAX);
966 if (test_bit(EV_SW, dev->evbit))
967 INPUT_ADD_HOTPLUG_BM_VAR("SW=", dev->swbit, SW_MAX);
968
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500969 INPUT_ADD_HOTPLUG_MODALIAS_VAR(dev);
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -0500970
Kay Sieversbd37e5a2006-01-05 13:19:55 +0100971 envp[i] = NULL;
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -0500972 return 0;
973}
974
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -0700975struct class input_class = {
976 .name = "input",
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -0500977 .release = input_dev_release,
Kay Sievers312c0042005-11-16 09:00:00 +0100978 .uevent = input_dev_uevent,
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -0500979};
Dmitry Torokhovca56fe02006-06-26 01:49:21 -0400980EXPORT_SYMBOL_GPL(input_class);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -0500981
Dmitry Torokhov14471902006-11-02 23:26:55 -0500982/**
983 * input_allocate_device - allocate memory for new input device
984 *
985 * Returns prepared struct input_dev or NULL.
986 *
987 * NOTE: Use input_free_device() to free devices that have not been
988 * registered; input_unregister_device() should be used for already
989 * registered devices.
990 */
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -0500991struct input_dev *input_allocate_device(void)
992{
993 struct input_dev *dev;
994
995 dev = kzalloc(sizeof(struct input_dev), GFP_KERNEL);
996 if (dev) {
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -0700997 dev->cdev.class = &input_class;
Dmitry Torokhovcb9def42007-03-07 23:20:26 -0500998 dev->cdev.groups = input_dev_attr_groups;
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -0500999 class_device_initialize(&dev->cdev);
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -04001000 mutex_init(&dev->mutex);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001001 INIT_LIST_HEAD(&dev->h_list);
1002 INIT_LIST_HEAD(&dev->node);
Dmitry Torokhov655816e2006-09-14 01:32:14 -04001003
1004 __module_get(THIS_MODULE);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001005 }
1006
1007 return dev;
1008}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001009EXPORT_SYMBOL(input_allocate_device);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001010
Dmitry Torokhov14471902006-11-02 23:26:55 -05001011/**
1012 * input_free_device - free memory occupied by input_dev structure
1013 * @dev: input device to free
1014 *
1015 * This function should only be used if input_register_device()
1016 * was not called yet or if it failed. Once device was registered
1017 * use input_unregister_device() and memory will be freed once last
1018 * refrence to the device is dropped.
1019 *
1020 * Device should be allocated by input_allocate_device().
1021 *
1022 * NOTE: If there are references to the input device then memory
1023 * will not be freed until last reference is dropped.
1024 */
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -04001025void input_free_device(struct input_dev *dev)
1026{
1027 if (dev) {
1028
1029 mutex_lock(&dev->mutex);
1030 dev->name = dev->phys = dev->uniq = NULL;
1031 mutex_unlock(&dev->mutex);
1032
1033 input_put_device(dev);
1034 }
1035}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001036EXPORT_SYMBOL(input_free_device);
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -04001037
Dmitry Torokhov5f945482005-11-02 22:51:46 -05001038int input_register_device(struct input_dev *dev)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001039{
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001040 static atomic_t input_no = ATOMIC_INIT(0);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001041 struct input_handle *handle;
1042 struct input_handler *handler;
Dmitry Torokhov66e66112006-09-14 01:31:59 -04001043 const struct input_device_id *id;
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001044 const char *path;
1045 int error;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001046
Dmitry Torokhov5f945482005-11-02 22:51:46 -05001047 set_bit(EV_SYN, dev->evbit);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001048
1049 /*
1050 * If delay and period are pre-set by the driver, then autorepeating
1051 * is handled by the driver itself and we don't do it in input.c.
1052 */
1053
1054 init_timer(&dev->timer);
1055 if (!dev->rep[REP_DELAY] && !dev->rep[REP_PERIOD]) {
1056 dev->timer.data = (long) dev;
1057 dev->timer.function = input_repeat_key;
1058 dev->rep[REP_DELAY] = 250;
1059 dev->rep[REP_PERIOD] = 33;
1060 }
1061
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -04001062 if (!dev->getkeycode)
1063 dev->getkeycode = input_default_getkeycode;
1064
1065 if (!dev->setkeycode)
1066 dev->setkeycode = input_default_setkeycode;
1067
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001068 list_add_tail(&dev->node, &input_dev_list);
1069
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001070 snprintf(dev->cdev.class_id, sizeof(dev->cdev.class_id),
1071 "input%ld", (unsigned long) atomic_inc_return(&input_no) - 1);
1072
1073 error = class_device_add(&dev->cdev);
1074 if (error)
1075 return error;
1076
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -05001077 path = kobject_get_path(&dev->cdev.kobj, GFP_KERNEL);
1078 printk(KERN_INFO "input: %s as %s\n",
1079 dev->name ? dev->name : "Unspecified device", path ? path : "N/A");
1080 kfree(path);
Greg Kroah-Hartman10204022005-10-27 22:25:43 -07001081
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001082 list_for_each_entry(handler, &input_handler_list, node)
1083 if (!handler->blacklist || !input_match_device(handler->blacklist, dev))
1084 if ((id = input_match_device(handler->id_table, dev)))
Dmitry Torokhovc7e8dc62006-07-06 00:21:03 -04001085 if ((handle = handler->connect(handler, dev, id))) {
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001086 input_link_handle(handle);
Dmitry Torokhovc7e8dc62006-07-06 00:21:03 -04001087 if (handler->start)
1088 handler->start(handle);
1089 }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001090
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001091 input_wakeup_procfs_readers();
Dmitry Torokhov5f945482005-11-02 22:51:46 -05001092
1093 return 0;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001094}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001095EXPORT_SYMBOL(input_register_device);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001096
1097void input_unregister_device(struct input_dev *dev)
1098{
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -04001099 struct list_head *node, *next;
Dmitry Torokhov6d2750c2006-09-10 21:56:06 -04001100 int code;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001101
Dmitry Torokhov6d2750c2006-09-10 21:56:06 -04001102 for (code = 0; code <= KEY_MAX; code++)
1103 if (test_bit(code, dev->key))
1104 input_report_key(dev, code, 0);
1105 input_sync(dev);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001106
1107 del_timer_sync(&dev->timer);
1108
1109 list_for_each_safe(node, next, &dev->h_list) {
1110 struct input_handle * handle = to_handle(node);
1111 list_del_init(&handle->d_node);
1112 list_del_init(&handle->h_node);
1113 handle->handler->disconnect(handle);
1114 }
1115
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001116 list_del_init(&dev->node);
1117
Dmitry Torokhove7374e42006-06-27 08:30:31 -04001118 class_device_unregister(&dev->cdev);
1119
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001120 input_wakeup_procfs_readers();
1121}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001122EXPORT_SYMBOL(input_unregister_device);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001123
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001124int input_register_handler(struct input_handler *handler)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001125{
1126 struct input_dev *dev;
1127 struct input_handle *handle;
Dmitry Torokhov66e66112006-09-14 01:31:59 -04001128 const struct input_device_id *id;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001129
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001130 INIT_LIST_HEAD(&handler->h_list);
1131
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001132 if (handler->fops != NULL) {
1133 if (input_table[handler->minor >> 5])
1134 return -EBUSY;
1135
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001136 input_table[handler->minor >> 5] = handler;
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001137 }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001138
1139 list_add_tail(&handler->node, &input_handler_list);
1140
1141 list_for_each_entry(dev, &input_dev_list, node)
1142 if (!handler->blacklist || !input_match_device(handler->blacklist, dev))
1143 if ((id = input_match_device(handler->id_table, dev)))
Dmitry Torokhovb6d786d2006-07-19 01:08:51 -04001144 if ((handle = handler->connect(handler, dev, id))) {
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001145 input_link_handle(handle);
Dmitry Torokhovb6d786d2006-07-19 01:08:51 -04001146 if (handler->start)
1147 handler->start(handle);
1148 }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001149
1150 input_wakeup_procfs_readers();
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001151 return 0;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001152}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001153EXPORT_SYMBOL(input_register_handler);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001154
1155void input_unregister_handler(struct input_handler *handler)
1156{
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -04001157 struct list_head *node, *next;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001158
1159 list_for_each_safe(node, next, &handler->h_list) {
1160 struct input_handle * handle = to_handle_h(node);
1161 list_del_init(&handle->h_node);
1162 list_del_init(&handle->d_node);
1163 handler->disconnect(handle);
1164 }
1165
1166 list_del_init(&handler->node);
1167
1168 if (handler->fops != NULL)
1169 input_table[handler->minor >> 5] = NULL;
1170
1171 input_wakeup_procfs_readers();
1172}
Dmitry Torokhovca56fe02006-06-26 01:49:21 -04001173EXPORT_SYMBOL(input_unregister_handler);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001174
1175static int input_open_file(struct inode *inode, struct file *file)
1176{
1177 struct input_handler *handler = input_table[iminor(inode) >> 5];
Arjan van de Ven99ac48f2006-03-28 01:56:41 -08001178 const struct file_operations *old_fops, *new_fops = NULL;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001179 int err;
1180
1181 /* No load-on-demand here? */
1182 if (!handler || !(new_fops = fops_get(handler->fops)))
1183 return -ENODEV;
1184
1185 /*
1186 * That's _really_ odd. Usually NULL ->open means "nothing special",
1187 * not "no device". Oh, well...
1188 */
1189 if (!new_fops->open) {
1190 fops_put(new_fops);
1191 return -ENODEV;
1192 }
1193 old_fops = file->f_op;
1194 file->f_op = new_fops;
1195
1196 err = new_fops->open(inode, file);
1197
1198 if (err) {
1199 fops_put(file->f_op);
1200 file->f_op = fops_get(old_fops);
1201 }
1202 fops_put(old_fops);
1203 return err;
1204}
1205
Arjan van de Ven2b8693c2007-02-12 00:55:32 -08001206static const struct file_operations input_fops = {
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001207 .owner = THIS_MODULE,
1208 .open = input_open_file,
1209};
1210
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211static int __init input_init(void)
1212{
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001213 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -07001215 err = class_register(&input_class);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001216 if (err) {
1217 printk(KERN_ERR "input: unable to register input_dev class\n");
1218 return err;
1219 }
1220
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001221 err = input_proc_init();
1222 if (err)
Greg Kroah-Hartmanb0fdfeb2005-10-27 22:25:43 -07001223 goto fail1;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001224
1225 err = register_chrdev(INPUT_MAJOR, "input", &input_fops);
1226 if (err) {
1227 printk(KERN_ERR "input: unable to register char major %d", INPUT_MAJOR);
Greg Kroah-Hartmanb0fdfeb2005-10-27 22:25:43 -07001228 goto fail2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001230
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001231 return 0;
1232
Greg Kroah-Hartmanb0fdfeb2005-10-27 22:25:43 -07001233 fail2: input_proc_exit();
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -07001234 fail1: class_unregister(&input_class);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001235 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236}
1237
1238static void __exit input_exit(void)
1239{
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001240 input_proc_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 unregister_chrdev(INPUT_MAJOR, "input");
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -07001242 class_unregister(&input_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243}
1244
1245subsys_initcall(input_init);
1246module_exit(input_exit);