blob: 3038c268917d7598091e0d80f9f3a1a9cd1f4725 [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>
14#include <linux/sched.h>
15#include <linux/smp_lock.h>
16#include <linux/input.h>
17#include <linux/module.h>
18#include <linux/random.h>
19#include <linux/major.h>
20#include <linux/proc_fs.h>
Dmitry Torokhov969b21c2006-04-02 00:09:34 -050021#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/interrupt.h>
23#include <linux/poll.h>
24#include <linux/device.h>
Jes Sorensene676c232006-02-19 00:21:46 -050025#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27MODULE_AUTHOR("Vojtech Pavlik <vojtech@suse.cz>");
28MODULE_DESCRIPTION("Input core");
29MODULE_LICENSE("GPL");
30
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -050031EXPORT_SYMBOL(input_allocate_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070032EXPORT_SYMBOL(input_register_device);
33EXPORT_SYMBOL(input_unregister_device);
34EXPORT_SYMBOL(input_register_handler);
35EXPORT_SYMBOL(input_unregister_handler);
36EXPORT_SYMBOL(input_grab_device);
37EXPORT_SYMBOL(input_release_device);
38EXPORT_SYMBOL(input_open_device);
39EXPORT_SYMBOL(input_close_device);
40EXPORT_SYMBOL(input_accept_process);
41EXPORT_SYMBOL(input_flush_device);
42EXPORT_SYMBOL(input_event);
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -070043EXPORT_SYMBOL_GPL(input_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45#define INPUT_DEVICES 256
46
47static LIST_HEAD(input_dev_list);
48static LIST_HEAD(input_handler_list);
49
50static struct input_handler *input_table[8];
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052void input_event(struct input_dev *dev, unsigned int type, unsigned int code, int value)
53{
54 struct input_handle *handle;
55
56 if (type > EV_MAX || !test_bit(type, dev->evbit))
57 return;
58
59 add_input_randomness(type, code, value);
60
61 switch (type) {
62
63 case EV_SYN:
64 switch (code) {
65 case SYN_CONFIG:
66 if (dev->event) dev->event(dev, type, code, value);
67 break;
68
69 case SYN_REPORT:
70 if (dev->sync) return;
71 dev->sync = 1;
72 break;
73 }
74 break;
75
76 case EV_KEY:
77
78 if (code > KEY_MAX || !test_bit(code, dev->keybit) || !!test_bit(code, dev->key) == value)
79 return;
80
81 if (value == 2)
82 break;
83
84 change_bit(code, dev->key);
85
86 if (test_bit(EV_REP, dev->evbit) && dev->rep[REP_PERIOD] && dev->rep[REP_DELAY] && dev->timer.data && value) {
87 dev->repeat_key = code;
88 mod_timer(&dev->timer, jiffies + msecs_to_jiffies(dev->rep[REP_DELAY]));
89 }
90
91 break;
92
Richard Purdie31581062005-09-06 15:19:06 -070093 case EV_SW:
94
95 if (code > SW_MAX || !test_bit(code, dev->swbit) || !!test_bit(code, dev->sw) == value)
96 return;
97
98 change_bit(code, dev->sw);
99
100 break;
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 case EV_ABS:
103
104 if (code > ABS_MAX || !test_bit(code, dev->absbit))
105 return;
106
107 if (dev->absfuzz[code]) {
108 if ((value > dev->abs[code] - (dev->absfuzz[code] >> 1)) &&
109 (value < dev->abs[code] + (dev->absfuzz[code] >> 1)))
110 return;
111
112 if ((value > dev->abs[code] - dev->absfuzz[code]) &&
113 (value < dev->abs[code] + dev->absfuzz[code]))
114 value = (dev->abs[code] * 3 + value) >> 2;
115
116 if ((value > dev->abs[code] - (dev->absfuzz[code] << 1)) &&
117 (value < dev->abs[code] + (dev->absfuzz[code] << 1)))
118 value = (dev->abs[code] + value) >> 1;
119 }
120
121 if (dev->abs[code] == value)
122 return;
123
124 dev->abs[code] = value;
125 break;
126
127 case EV_REL:
128
129 if (code > REL_MAX || !test_bit(code, dev->relbit) || (value == 0))
130 return;
131
132 break;
133
134 case EV_MSC:
135
136 if (code > MSC_MAX || !test_bit(code, dev->mscbit))
137 return;
138
139 if (dev->event) dev->event(dev, type, code, value);
140
141 break;
142
143 case EV_LED:
144
145 if (code > LED_MAX || !test_bit(code, dev->ledbit) || !!test_bit(code, dev->led) == value)
146 return;
147
148 change_bit(code, dev->led);
149 if (dev->event) dev->event(dev, type, code, value);
150
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 if (dev->event) dev->event(dev, type, code, value);
162
163 break;
164
165 case EV_REP:
166
167 if (code > REP_MAX || value < 0 || dev->rep[code] == value) return;
168
169 dev->rep[code] = value;
170 if (dev->event) dev->event(dev, type, code, value);
171
172 break;
173
174 case EV_FF:
175 if (dev->event) dev->event(dev, type, code, value);
176 break;
177 }
178
179 if (type != EV_SYN)
180 dev->sync = 0;
181
182 if (dev->grab)
183 dev->grab->handler->event(dev->grab, type, code, value);
184 else
185 list_for_each_entry(handle, &dev->h_list, d_node)
186 if (handle->open)
187 handle->handler->event(handle, type, code, value);
188}
189
190static void input_repeat_key(unsigned long data)
191{
192 struct input_dev *dev = (void *) data;
193
194 if (!test_bit(dev->repeat_key, dev->key))
195 return;
196
197 input_event(dev, EV_KEY, dev->repeat_key, 2);
198 input_sync(dev);
199
200 if (dev->rep[REP_PERIOD])
201 mod_timer(&dev->timer, jiffies + msecs_to_jiffies(dev->rep[REP_PERIOD]));
202}
203
204int input_accept_process(struct input_handle *handle, struct file *file)
205{
206 if (handle->dev->accept)
207 return handle->dev->accept(handle->dev, file);
208
209 return 0;
210}
211
212int input_grab_device(struct input_handle *handle)
213{
214 if (handle->dev->grab)
215 return -EBUSY;
216
217 handle->dev->grab = handle;
218 return 0;
219}
220
221void input_release_device(struct input_handle *handle)
222{
223 if (handle->dev->grab == handle)
224 handle->dev->grab = NULL;
225}
226
227int input_open_device(struct input_handle *handle)
228{
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500229 struct input_dev *dev = handle->dev;
230 int err;
231
Jes Sorensene676c232006-02-19 00:21:46 -0500232 err = mutex_lock_interruptible(&dev->mutex);
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500233 if (err)
234 return err;
235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 handle->open++;
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500237
238 if (!dev->users++ && dev->open)
239 err = dev->open(dev);
240
241 if (err)
242 handle->open--;
243
Jes Sorensene676c232006-02-19 00:21:46 -0500244 mutex_unlock(&dev->mutex);
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500245
246 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247}
248
249int input_flush_device(struct input_handle* handle, struct file* file)
250{
251 if (handle->dev->flush)
252 return handle->dev->flush(handle->dev, file);
253
254 return 0;
255}
256
257void input_close_device(struct input_handle *handle)
258{
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500259 struct input_dev *dev = handle->dev;
260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 input_release_device(handle);
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500262
Jes Sorensene676c232006-02-19 00:21:46 -0500263 mutex_lock(&dev->mutex);
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500264
265 if (!--dev->users && dev->close)
266 dev->close(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 handle->open--;
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500268
Jes Sorensene676c232006-02-19 00:21:46 -0500269 mutex_unlock(&dev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270}
271
272static void input_link_handle(struct input_handle *handle)
273{
274 list_add_tail(&handle->d_node, &handle->dev->h_list);
275 list_add_tail(&handle->h_node, &handle->handler->h_list);
276}
277
278#define MATCH_BIT(bit, max) \
279 for (i = 0; i < NBITS(max); i++) \
280 if ((id->bit[i] & dev->bit[i]) != id->bit[i]) \
281 break; \
282 if (i != NBITS(max)) \
283 continue;
284
285static struct input_device_id *input_match_device(struct input_device_id *id, struct input_dev *dev)
286{
287 int i;
288
289 for (; id->flags || id->driver_info; id++) {
290
291 if (id->flags & INPUT_DEVICE_ID_MATCH_BUS)
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400292 if (id->bustype != dev->id.bustype)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 continue;
294
295 if (id->flags & INPUT_DEVICE_ID_MATCH_VENDOR)
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400296 if (id->vendor != dev->id.vendor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 continue;
298
299 if (id->flags & INPUT_DEVICE_ID_MATCH_PRODUCT)
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400300 if (id->product != dev->id.product)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 continue;
302
303 if (id->flags & INPUT_DEVICE_ID_MATCH_VERSION)
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400304 if (id->version != dev->id.version)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 continue;
306
307 MATCH_BIT(evbit, EV_MAX);
308 MATCH_BIT(keybit, KEY_MAX);
309 MATCH_BIT(relbit, REL_MAX);
310 MATCH_BIT(absbit, ABS_MAX);
311 MATCH_BIT(mscbit, MSC_MAX);
312 MATCH_BIT(ledbit, LED_MAX);
313 MATCH_BIT(sndbit, SND_MAX);
314 MATCH_BIT(ffbit, FF_MAX);
Dmitry Torokhovff13f982005-09-24 02:02:29 -0500315 MATCH_BIT(swbit, SW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317 return id;
318 }
319
320 return NULL;
321}
322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323#ifdef CONFIG_PROC_FS
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500324
325static struct proc_dir_entry *proc_bus_input_dir;
326static DECLARE_WAIT_QUEUE_HEAD(input_devices_poll_wait);
327static int input_devices_state;
328
329static inline void input_wakeup_procfs_readers(void)
330{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 input_devices_state++;
332 wake_up(&input_devices_poll_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333}
334
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500335static unsigned int input_proc_devices_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500337 int state = input_devices_state;
338 poll_wait(file, &input_devices_poll_wait, wait);
339 if (state != input_devices_state)
340 return POLLIN | POLLRDNORM;
341 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
343
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500344static struct list_head *list_get_nth_element(struct list_head *list, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500346 struct list_head *node;
347 loff_t i = 0;
348
349 list_for_each(node, list)
350 if (i++ == *pos)
351 return node;
352
353 return NULL;
354}
355
356static struct list_head *list_get_next_element(struct list_head *list, struct list_head *element, loff_t *pos)
357{
358 if (element->next == list)
359 return NULL;
360
361 ++(*pos);
362 return element->next;
363}
364
365static void *input_devices_seq_start(struct seq_file *seq, loff_t *pos)
366{
367 /* acquire lock here ... Yes, we do need locking, I knowi, I know... */
368
369 return list_get_nth_element(&input_dev_list, pos);
370}
371
372static void *input_devices_seq_next(struct seq_file *seq, void *v, loff_t *pos)
373{
374 return list_get_next_element(&input_dev_list, v, pos);
375}
376
377static void input_devices_seq_stop(struct seq_file *seq, void *v)
378{
379 /* release lock here */
380}
381
382static void input_seq_print_bitmap(struct seq_file *seq, const char *name,
383 unsigned long *bitmap, int max)
384{
385 int i;
386
387 for (i = NBITS(max) - 1; i > 0; i--)
388 if (bitmap[i])
389 break;
390
391 seq_printf(seq, "B: %s=", name);
392 for (; i >= 0; i--)
393 seq_printf(seq, "%lx%s", bitmap[i], i > 0 ? " " : "");
394 seq_putc(seq, '\n');
395}
396
397static int input_devices_seq_show(struct seq_file *seq, void *v)
398{
399 struct input_dev *dev = container_of(v, struct input_dev, node);
400 const char *path = kobject_get_path(&dev->cdev.kobj, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 struct input_handle *handle;
402
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500403 seq_printf(seq, "I: Bus=%04x Vendor=%04x Product=%04x Version=%04x\n",
404 dev->id.bustype, dev->id.vendor, dev->id.product, dev->id.version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500406 seq_printf(seq, "N: Name=\"%s\"\n", dev->name ? dev->name : "");
407 seq_printf(seq, "P: Phys=%s\n", dev->phys ? dev->phys : "");
408 seq_printf(seq, "S: Sysfs=%s\n", path ? path : "");
409 seq_printf(seq, "H: Handlers=");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500411 list_for_each_entry(handle, &dev->h_list, d_node)
412 seq_printf(seq, "%s ", handle->name);
413 seq_putc(seq, '\n');
Dmitry Torokhov051b2fe2005-09-15 02:01:54 -0500414
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500415 input_seq_print_bitmap(seq, "EV", dev->evbit, EV_MAX);
416 if (test_bit(EV_KEY, dev->evbit))
417 input_seq_print_bitmap(seq, "KEY", dev->keybit, KEY_MAX);
418 if (test_bit(EV_REL, dev->evbit))
419 input_seq_print_bitmap(seq, "REL", dev->relbit, REL_MAX);
420 if (test_bit(EV_ABS, dev->evbit))
421 input_seq_print_bitmap(seq, "ABS", dev->absbit, ABS_MAX);
422 if (test_bit(EV_MSC, dev->evbit))
423 input_seq_print_bitmap(seq, "MSC", dev->mscbit, MSC_MAX);
424 if (test_bit(EV_LED, dev->evbit))
425 input_seq_print_bitmap(seq, "LED", dev->ledbit, LED_MAX);
426 if (test_bit(EV_SND, dev->evbit))
427 input_seq_print_bitmap(seq, "SND", dev->sndbit, SND_MAX);
428 if (test_bit(EV_FF, dev->evbit))
429 input_seq_print_bitmap(seq, "FF", dev->ffbit, FF_MAX);
430 if (test_bit(EV_SW, dev->evbit))
431 input_seq_print_bitmap(seq, "SW", dev->swbit, SW_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500433 seq_putc(seq, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500435 kfree(path);
436 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437}
438
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500439static struct seq_operations input_devices_seq_ops = {
440 .start = input_devices_seq_start,
441 .next = input_devices_seq_next,
442 .stop = input_devices_seq_stop,
443 .show = input_devices_seq_show,
444};
445
446static int input_proc_devices_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500448 return seq_open(file, &input_devices_seq_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449}
450
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500451static struct file_operations input_devices_fileops = {
452 .owner = THIS_MODULE,
453 .open = input_proc_devices_open,
454 .poll = input_proc_devices_poll,
455 .read = seq_read,
456 .llseek = seq_lseek,
457 .release = seq_release,
458};
459
460static void *input_handlers_seq_start(struct seq_file *seq, loff_t *pos)
461{
462 /* acquire lock here ... Yes, we do need locking, I knowi, I know... */
463 seq->private = (void *)(unsigned long)*pos;
464 return list_get_nth_element(&input_handler_list, pos);
465}
466
467static void *input_handlers_seq_next(struct seq_file *seq, void *v, loff_t *pos)
468{
469 seq->private = (void *)(unsigned long)(*pos + 1);
470 return list_get_next_element(&input_handler_list, v, pos);
471}
472
473static void input_handlers_seq_stop(struct seq_file *seq, void *v)
474{
475 /* release lock here */
476}
477
478static int input_handlers_seq_show(struct seq_file *seq, void *v)
479{
480 struct input_handler *handler = container_of(v, struct input_handler, node);
481
482 seq_printf(seq, "N: Number=%ld Name=%s",
483 (unsigned long)seq->private, handler->name);
484 if (handler->fops)
485 seq_printf(seq, " Minor=%d", handler->minor);
486 seq_putc(seq, '\n');
487
488 return 0;
489}
490static struct seq_operations input_handlers_seq_ops = {
491 .start = input_handlers_seq_start,
492 .next = input_handlers_seq_next,
493 .stop = input_handlers_seq_stop,
494 .show = input_handlers_seq_show,
495};
496
497static int input_proc_handlers_open(struct inode *inode, struct file *file)
498{
499 return seq_open(file, &input_handlers_seq_ops);
500}
501
502static struct file_operations input_handlers_fileops = {
503 .owner = THIS_MODULE,
504 .open = input_proc_handlers_open,
505 .read = seq_read,
506 .llseek = seq_lseek,
507 .release = seq_release,
508};
Luke Kosewskie334016fc2005-06-01 02:39:28 -0500509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510static int __init input_proc_init(void)
511{
512 struct proc_dir_entry *entry;
513
514 proc_bus_input_dir = proc_mkdir("input", proc_bus);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500515 if (!proc_bus_input_dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 return -ENOMEM;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 proc_bus_input_dir->owner = THIS_MODULE;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500519
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500520 entry = create_proc_entry("devices", 0, proc_bus_input_dir);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500521 if (!entry)
522 goto fail1;
523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 entry->owner = THIS_MODULE;
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500525 entry->proc_fops = &input_devices_fileops;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500526
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500527 entry = create_proc_entry("handlers", 0, proc_bus_input_dir);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500528 if (!entry)
529 goto fail2;
530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 entry->owner = THIS_MODULE;
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500532 entry->proc_fops = &input_handlers_fileops;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500533
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 return 0;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500535
536 fail2: remove_proc_entry("devices", proc_bus_input_dir);
537 fail1: remove_proc_entry("input", proc_bus);
538 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539}
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500540
Andrew Mortonbeffbdc2005-07-01 23:54:30 -0500541static void input_proc_exit(void)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500542{
543 remove_proc_entry("devices", proc_bus_input_dir);
544 remove_proc_entry("handlers", proc_bus_input_dir);
545 remove_proc_entry("input", proc_bus);
546}
547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548#else /* !CONFIG_PROC_FS */
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500549static inline void input_wakeup_procfs_readers(void) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550static inline int input_proc_init(void) { return 0; }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500551static inline void input_proc_exit(void) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552#endif
553
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -0500554#define INPUT_DEV_STRING_ATTR_SHOW(name) \
555static ssize_t input_dev_show_##name(struct class_device *dev, char *buf) \
556{ \
557 struct input_dev *input_dev = to_input_dev(dev); \
558 int retval; \
559 \
Jes Sorensene676c232006-02-19 00:21:46 -0500560 retval = mutex_lock_interruptible(&input_dev->mutex); \
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -0500561 if (retval) \
562 return retval; \
563 \
Dmitry Torokhov2db66872006-04-02 00:09:26 -0500564 retval = scnprintf(buf, PAGE_SIZE, \
565 "%s\n", input_dev->name ? input_dev->name : ""); \
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -0500566 \
Jes Sorensene676c232006-02-19 00:21:46 -0500567 mutex_unlock(&input_dev->mutex); \
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -0500568 \
569 return retval; \
Greg Kroah-Hartman629b77a2005-10-27 22:25:43 -0700570} \
571static CLASS_DEVICE_ATTR(name, S_IRUGO, input_dev_show_##name, NULL);
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -0500572
573INPUT_DEV_STRING_ATTR_SHOW(name);
574INPUT_DEV_STRING_ATTR_SHOW(phys);
575INPUT_DEV_STRING_ATTR_SHOW(uniq);
576
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500577static int input_print_modalias_bits(char *buf, int size,
578 char name, unsigned long *bm,
579 unsigned int min_bit, unsigned int max_bit)
Rusty Russell1d8f4302005-12-07 21:40:34 +0100580{
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500581 int len = 0, i;
Rusty Russell1d8f4302005-12-07 21:40:34 +0100582
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500583 len += snprintf(buf, max(size, 0), "%c", name);
584 for (i = min_bit; i < max_bit; i++)
585 if (bm[LONG(i)] & BIT(i))
586 len += snprintf(buf + len, max(size - len, 0), "%X,", i);
Kay Sieversbd37e5a2006-01-05 13:19:55 +0100587 return len;
588}
589
Dmitry Torokhov2db66872006-04-02 00:09:26 -0500590static int input_print_modalias(char *buf, int size, struct input_dev *id,
591 int add_cr)
Kay Sieversbd37e5a2006-01-05 13:19:55 +0100592{
593 int len;
594
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500595 len = snprintf(buf, max(size, 0),
596 "input:b%04Xv%04Xp%04Xe%04X-",
597 id->id.bustype, id->id.vendor,
598 id->id.product, id->id.version);
Kay Sieversbd37e5a2006-01-05 13:19:55 +0100599
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500600 len += input_print_modalias_bits(buf + len, size - len,
601 'e', id->evbit, 0, EV_MAX);
602 len += input_print_modalias_bits(buf + len, size - len,
603 'k', id->keybit, KEY_MIN_INTERESTING, KEY_MAX);
604 len += input_print_modalias_bits(buf + len, size - len,
605 'r', id->relbit, 0, REL_MAX);
606 len += input_print_modalias_bits(buf + len, size - len,
607 'a', id->absbit, 0, ABS_MAX);
608 len += input_print_modalias_bits(buf + len, size - len,
609 'm', id->mscbit, 0, MSC_MAX);
610 len += input_print_modalias_bits(buf + len, size - len,
611 'l', id->ledbit, 0, LED_MAX);
612 len += input_print_modalias_bits(buf + len, size - len,
613 's', id->sndbit, 0, SND_MAX);
614 len += input_print_modalias_bits(buf + len, size - len,
615 'f', id->ffbit, 0, FF_MAX);
616 len += input_print_modalias_bits(buf + len, size - len,
617 'w', id->swbit, 0, SW_MAX);
Dmitry Torokhov2db66872006-04-02 00:09:26 -0500618
619 if (add_cr)
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500620 len += snprintf(buf + len, max(size - len, 0), "\n");
Dmitry Torokhov2db66872006-04-02 00:09:26 -0500621
Rusty Russell1d8f4302005-12-07 21:40:34 +0100622 return len;
623}
624
625static ssize_t input_dev_show_modalias(struct class_device *dev, char *buf)
626{
627 struct input_dev *id = to_input_dev(dev);
Kay Sieversbd37e5a2006-01-05 13:19:55 +0100628 ssize_t len;
Rusty Russell1d8f4302005-12-07 21:40:34 +0100629
Dmitry Torokhov2db66872006-04-02 00:09:26 -0500630 len = input_print_modalias(buf, PAGE_SIZE, id, 1);
631
632 return max_t(int, len, PAGE_SIZE);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100633}
634static CLASS_DEVICE_ATTR(modalias, S_IRUGO, input_dev_show_modalias, NULL);
635
Greg Kroah-Hartman629b77a2005-10-27 22:25:43 -0700636static struct attribute *input_dev_attrs[] = {
637 &class_device_attr_name.attr,
638 &class_device_attr_phys.attr,
639 &class_device_attr_uniq.attr,
Rusty Russell1d8f4302005-12-07 21:40:34 +0100640 &class_device_attr_modalias.attr,
Greg Kroah-Hartman629b77a2005-10-27 22:25:43 -0700641 NULL
642};
643
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -0500644static struct attribute_group input_dev_attr_group = {
Greg Kroah-Hartman629b77a2005-10-27 22:25:43 -0700645 .attrs = input_dev_attrs,
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -0500646};
647
648#define INPUT_DEV_ID_ATTR(name) \
649static ssize_t input_dev_show_id_##name(struct class_device *dev, char *buf) \
650{ \
651 struct input_dev *input_dev = to_input_dev(dev); \
Dmitry Torokhov2db66872006-04-02 00:09:26 -0500652 return scnprintf(buf, PAGE_SIZE, "%04x\n", input_dev->id.name); \
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -0500653} \
654static CLASS_DEVICE_ATTR(name, S_IRUGO, input_dev_show_id_##name, NULL);
655
656INPUT_DEV_ID_ATTR(bustype);
657INPUT_DEV_ID_ATTR(vendor);
658INPUT_DEV_ID_ATTR(product);
659INPUT_DEV_ID_ATTR(version);
660
661static struct attribute *input_dev_id_attrs[] = {
662 &class_device_attr_bustype.attr,
663 &class_device_attr_vendor.attr,
664 &class_device_attr_product.attr,
665 &class_device_attr_version.attr,
666 NULL
667};
668
669static struct attribute_group input_dev_id_attr_group = {
670 .name = "id",
671 .attrs = input_dev_id_attrs,
672};
673
Dmitry Torokhov969b21c2006-04-02 00:09:34 -0500674static int input_print_bitmap(char *buf, int buf_size, unsigned long *bitmap,
675 int max, int add_cr)
676{
677 int i;
678 int len = 0;
679
680 for (i = NBITS(max) - 1; i > 0; i--)
681 if (bitmap[i])
682 break;
683
684 for (; i >= 0; i--)
685 len += snprintf(buf + len, max(buf_size - len, 0),
686 "%lx%s", bitmap[i], i > 0 ? " " : "");
687
688 if (add_cr)
689 len += snprintf(buf + len, max(buf_size - len, 0), "\n");
690
691 return len;
692}
693
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -0500694#define INPUT_DEV_CAP_ATTR(ev, bm) \
695static ssize_t input_dev_show_cap_##bm(struct class_device *dev, char *buf) \
696{ \
697 struct input_dev *input_dev = to_input_dev(dev); \
Dmitry Torokhov2db66872006-04-02 00:09:26 -0500698 int len = input_print_bitmap(buf, PAGE_SIZE, \
699 input_dev->bm##bit, ev##_MAX, 1); \
700 return min_t(int, len, PAGE_SIZE); \
Dmitry Torokhov5c1e9a62005-09-15 02:01:55 -0500701} \
702static CLASS_DEVICE_ATTR(bm, S_IRUGO, input_dev_show_cap_##bm, NULL);
703
704INPUT_DEV_CAP_ATTR(EV, ev);
705INPUT_DEV_CAP_ATTR(KEY, key);
706INPUT_DEV_CAP_ATTR(REL, rel);
707INPUT_DEV_CAP_ATTR(ABS, abs);
708INPUT_DEV_CAP_ATTR(MSC, msc);
709INPUT_DEV_CAP_ATTR(LED, led);
710INPUT_DEV_CAP_ATTR(SND, snd);
711INPUT_DEV_CAP_ATTR(FF, ff);
712INPUT_DEV_CAP_ATTR(SW, sw);
713
714static struct attribute *input_dev_caps_attrs[] = {
715 &class_device_attr_ev.attr,
716 &class_device_attr_key.attr,
717 &class_device_attr_rel.attr,
718 &class_device_attr_abs.attr,
719 &class_device_attr_msc.attr,
720 &class_device_attr_led.attr,
721 &class_device_attr_snd.attr,
722 &class_device_attr_ff.attr,
723 &class_device_attr_sw.attr,
724 NULL
725};
726
727static struct attribute_group input_dev_caps_attr_group = {
728 .name = "capabilities",
729 .attrs = input_dev_caps_attrs,
730};
731
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -0500732static void input_dev_release(struct class_device *class_dev)
733{
734 struct input_dev *dev = to_input_dev(class_dev);
735
736 kfree(dev);
737 module_put(THIS_MODULE);
738}
739
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -0500740/*
Kay Sievers312c0042005-11-16 09:00:00 +0100741 * Input uevent interface - loading event handlers based on
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -0500742 * device bitfields.
743 */
Kay Sievers312c0042005-11-16 09:00:00 +0100744static int input_add_uevent_bm_var(char **envp, int num_envp, int *cur_index,
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500745 char *buffer, int buffer_size, int *cur_len,
746 const char *name, unsigned long *bitmap, int max)
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -0500747{
748 if (*cur_index >= num_envp - 1)
749 return -ENOMEM;
750
751 envp[*cur_index] = buffer + *cur_len;
752
753 *cur_len += snprintf(buffer + *cur_len, max(buffer_size - *cur_len, 0), name);
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500754 if (*cur_len >= buffer_size)
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -0500755 return -ENOMEM;
756
757 *cur_len += input_print_bitmap(buffer + *cur_len,
758 max(buffer_size - *cur_len, 0),
Dmitry Torokhov2db66872006-04-02 00:09:26 -0500759 bitmap, max, 0) + 1;
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -0500760 if (*cur_len > buffer_size)
761 return -ENOMEM;
762
763 (*cur_index)++;
764 return 0;
765}
766
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500767static int input_add_uevent_modalias_var(char **envp, int num_envp, int *cur_index,
768 char *buffer, int buffer_size, int *cur_len,
769 struct input_dev *dev)
770{
771 if (*cur_index >= num_envp - 1)
772 return -ENOMEM;
773
774 envp[*cur_index] = buffer + *cur_len;
775
776 *cur_len += snprintf(buffer + *cur_len, max(buffer_size - *cur_len, 0),
777 "MODALIAS=");
778 if (*cur_len >= buffer_size)
779 return -ENOMEM;
780
781 *cur_len += input_print_modalias(buffer + *cur_len,
782 max(buffer_size - *cur_len, 0),
783 dev, 0) + 1;
784 if (*cur_len > buffer_size)
785 return -ENOMEM;
786
787 (*cur_index)++;
788 return 0;
789}
790
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -0500791#define INPUT_ADD_HOTPLUG_VAR(fmt, val...) \
792 do { \
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500793 int err = add_uevent_var(envp, num_envp, &i, \
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -0500794 buffer, buffer_size, &len, \
795 fmt, val); \
796 if (err) \
797 return err; \
798 } while (0)
799
800#define INPUT_ADD_HOTPLUG_BM_VAR(name, bm, max) \
801 do { \
Kay Sievers312c0042005-11-16 09:00:00 +0100802 int err = input_add_uevent_bm_var(envp, num_envp, &i, \
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -0500803 buffer, buffer_size, &len, \
804 name, bm, max); \
805 if (err) \
806 return err; \
807 } while (0)
808
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500809#define INPUT_ADD_HOTPLUG_MODALIAS_VAR(dev) \
810 do { \
811 int err = input_add_uevent_modalias_var(envp, \
812 num_envp, &i, \
813 buffer, buffer_size, &len, \
814 dev); \
815 if (err) \
816 return err; \
817 } while (0)
818
Kay Sievers312c0042005-11-16 09:00:00 +0100819static int input_dev_uevent(struct class_device *cdev, char **envp,
820 int num_envp, char *buffer, int buffer_size)
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -0500821{
822 struct input_dev *dev = to_input_dev(cdev);
823 int i = 0;
824 int len = 0;
825
826 INPUT_ADD_HOTPLUG_VAR("PRODUCT=%x/%x/%x/%x",
827 dev->id.bustype, dev->id.vendor,
828 dev->id.product, dev->id.version);
829 if (dev->name)
830 INPUT_ADD_HOTPLUG_VAR("NAME=\"%s\"", dev->name);
831 if (dev->phys)
832 INPUT_ADD_HOTPLUG_VAR("PHYS=\"%s\"", dev->phys);
Dmitry Torokhov08de1f02005-11-08 21:34:29 -0800833 if (dev->uniq)
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -0500834 INPUT_ADD_HOTPLUG_VAR("UNIQ=\"%s\"", dev->uniq);
835
836 INPUT_ADD_HOTPLUG_BM_VAR("EV=", dev->evbit, EV_MAX);
837 if (test_bit(EV_KEY, dev->evbit))
838 INPUT_ADD_HOTPLUG_BM_VAR("KEY=", dev->keybit, KEY_MAX);
839 if (test_bit(EV_REL, dev->evbit))
840 INPUT_ADD_HOTPLUG_BM_VAR("REL=", dev->relbit, REL_MAX);
841 if (test_bit(EV_ABS, dev->evbit))
842 INPUT_ADD_HOTPLUG_BM_VAR("ABS=", dev->absbit, ABS_MAX);
843 if (test_bit(EV_MSC, dev->evbit))
844 INPUT_ADD_HOTPLUG_BM_VAR("MSC=", dev->mscbit, MSC_MAX);
845 if (test_bit(EV_LED, dev->evbit))
846 INPUT_ADD_HOTPLUG_BM_VAR("LED=", dev->ledbit, LED_MAX);
847 if (test_bit(EV_SND, dev->evbit))
848 INPUT_ADD_HOTPLUG_BM_VAR("SND=", dev->sndbit, SND_MAX);
849 if (test_bit(EV_FF, dev->evbit))
850 INPUT_ADD_HOTPLUG_BM_VAR("FF=", dev->ffbit, FF_MAX);
851 if (test_bit(EV_SW, dev->evbit))
852 INPUT_ADD_HOTPLUG_BM_VAR("SW=", dev->swbit, SW_MAX);
853
Dmitry Torokhovac648a62006-04-02 00:09:51 -0500854 INPUT_ADD_HOTPLUG_MODALIAS_VAR(dev);
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -0500855
Kay Sieversbd37e5a2006-01-05 13:19:55 +0100856 envp[i] = NULL;
Dmitry Torokhova7fadbe2005-09-15 02:01:57 -0500857 return 0;
858}
859
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -0700860struct class input_class = {
861 .name = "input",
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -0500862 .release = input_dev_release,
Kay Sievers312c0042005-11-16 09:00:00 +0100863 .uevent = input_dev_uevent,
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -0500864};
865
866struct input_dev *input_allocate_device(void)
867{
868 struct input_dev *dev;
869
870 dev = kzalloc(sizeof(struct input_dev), GFP_KERNEL);
871 if (dev) {
872 dev->dynalloc = 1;
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -0700873 dev->cdev.class = &input_class;
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -0500874 class_device_initialize(&dev->cdev);
875 INIT_LIST_HEAD(&dev->h_list);
876 INIT_LIST_HEAD(&dev->node);
877 }
878
879 return dev;
880}
881
Dmitry Torokhov5f945482005-11-02 22:51:46 -0500882int input_register_device(struct input_dev *dev)
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500883{
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -0500884 static atomic_t input_no = ATOMIC_INIT(0);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500885 struct input_handle *handle;
886 struct input_handler *handler;
887 struct input_device_id *id;
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -0500888 const char *path;
889 int error;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500890
Dmitry Torokhov5f945482005-11-02 22:51:46 -0500891 if (!dev->dynalloc) {
892 printk(KERN_WARNING "input: device %s is statically allocated, will not register\n"
893 "Please convert to input_allocate_device() or contact dtor_core@ameritech.net\n",
894 dev->name ? dev->name : "<Unknown>");
895 return -EINVAL;
896 }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500897
Jes Sorensene676c232006-02-19 00:21:46 -0500898 mutex_init(&dev->mutex);
Dmitry Torokhov5f945482005-11-02 22:51:46 -0500899 set_bit(EV_SYN, dev->evbit);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500900
901 /*
902 * If delay and period are pre-set by the driver, then autorepeating
903 * is handled by the driver itself and we don't do it in input.c.
904 */
905
906 init_timer(&dev->timer);
907 if (!dev->rep[REP_DELAY] && !dev->rep[REP_PERIOD]) {
908 dev->timer.data = (long) dev;
909 dev->timer.function = input_repeat_key;
910 dev->rep[REP_DELAY] = 250;
911 dev->rep[REP_PERIOD] = 33;
912 }
913
914 INIT_LIST_HEAD(&dev->h_list);
915 list_add_tail(&dev->node, &input_dev_list);
916
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -0500917 dev->cdev.class = &input_class;
918 snprintf(dev->cdev.class_id, sizeof(dev->cdev.class_id),
919 "input%ld", (unsigned long) atomic_inc_return(&input_no) - 1);
920
921 error = class_device_add(&dev->cdev);
922 if (error)
923 return error;
924
925 error = sysfs_create_group(&dev->cdev.kobj, &input_dev_attr_group);
926 if (error)
927 goto fail1;
928
929 error = sysfs_create_group(&dev->cdev.kobj, &input_dev_id_attr_group);
930 if (error)
931 goto fail2;
932
933 error = sysfs_create_group(&dev->cdev.kobj, &input_dev_caps_attr_group);
934 if (error)
935 goto fail3;
936
937 __module_get(THIS_MODULE);
938
939 path = kobject_get_path(&dev->cdev.kobj, GFP_KERNEL);
940 printk(KERN_INFO "input: %s as %s\n",
941 dev->name ? dev->name : "Unspecified device", path ? path : "N/A");
942 kfree(path);
Greg Kroah-Hartman10204022005-10-27 22:25:43 -0700943
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500944 list_for_each_entry(handler, &input_handler_list, node)
945 if (!handler->blacklist || !input_match_device(handler->blacklist, dev))
946 if ((id = input_match_device(handler->id_table, dev)))
947 if ((handle = handler->connect(handler, dev, id)))
948 input_link_handle(handle);
949
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500950 input_wakeup_procfs_readers();
Dmitry Torokhov5f945482005-11-02 22:51:46 -0500951
952 return 0;
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -0500953
954 fail3: sysfs_remove_group(&dev->cdev.kobj, &input_dev_id_attr_group);
955 fail2: sysfs_remove_group(&dev->cdev.kobj, &input_dev_attr_group);
956 fail1: class_device_del(&dev->cdev);
957 return error;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500958}
959
960void input_unregister_device(struct input_dev *dev)
961{
962 struct list_head * node, * next;
963
964 if (!dev) return;
965
966 del_timer_sync(&dev->timer);
967
968 list_for_each_safe(node, next, &dev->h_list) {
969 struct input_handle * handle = to_handle(node);
970 list_del_init(&handle->d_node);
971 list_del_init(&handle->h_node);
972 handle->handler->disconnect(handle);
973 }
974
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500975 list_del_init(&dev->node);
976
Dmitry Torokhov5f945482005-11-02 22:51:46 -0500977 sysfs_remove_group(&dev->cdev.kobj, &input_dev_caps_attr_group);
978 sysfs_remove_group(&dev->cdev.kobj, &input_dev_id_attr_group);
Dmitry Torokhovbd0ef232005-11-20 00:56:31 -0500979 sysfs_remove_group(&dev->cdev.kobj, &input_dev_attr_group);
Dmitry Torokhov5f945482005-11-02 22:51:46 -0500980 class_device_unregister(&dev->cdev);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -0500981
Dmitry Torokhovf96b4342005-06-30 00:50:29 -0500982 input_wakeup_procfs_readers();
983}
984
985void input_register_handler(struct input_handler *handler)
986{
987 struct input_dev *dev;
988 struct input_handle *handle;
989 struct input_device_id *id;
990
991 if (!handler) return;
992
993 INIT_LIST_HEAD(&handler->h_list);
994
995 if (handler->fops != NULL)
996 input_table[handler->minor >> 5] = handler;
997
998 list_add_tail(&handler->node, &input_handler_list);
999
1000 list_for_each_entry(dev, &input_dev_list, node)
1001 if (!handler->blacklist || !input_match_device(handler->blacklist, dev))
1002 if ((id = input_match_device(handler->id_table, dev)))
1003 if ((handle = handler->connect(handler, dev, id)))
1004 input_link_handle(handle);
1005
1006 input_wakeup_procfs_readers();
1007}
1008
1009void input_unregister_handler(struct input_handler *handler)
1010{
1011 struct list_head * node, * next;
1012
1013 list_for_each_safe(node, next, &handler->h_list) {
1014 struct input_handle * handle = to_handle_h(node);
1015 list_del_init(&handle->h_node);
1016 list_del_init(&handle->d_node);
1017 handler->disconnect(handle);
1018 }
1019
1020 list_del_init(&handler->node);
1021
1022 if (handler->fops != NULL)
1023 input_table[handler->minor >> 5] = NULL;
1024
1025 input_wakeup_procfs_readers();
1026}
1027
1028static int input_open_file(struct inode *inode, struct file *file)
1029{
1030 struct input_handler *handler = input_table[iminor(inode) >> 5];
Arjan van de Ven99ac48f2006-03-28 01:56:41 -08001031 const struct file_operations *old_fops, *new_fops = NULL;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001032 int err;
1033
1034 /* No load-on-demand here? */
1035 if (!handler || !(new_fops = fops_get(handler->fops)))
1036 return -ENODEV;
1037
1038 /*
1039 * That's _really_ odd. Usually NULL ->open means "nothing special",
1040 * not "no device". Oh, well...
1041 */
1042 if (!new_fops->open) {
1043 fops_put(new_fops);
1044 return -ENODEV;
1045 }
1046 old_fops = file->f_op;
1047 file->f_op = new_fops;
1048
1049 err = new_fops->open(inode, file);
1050
1051 if (err) {
1052 fops_put(file->f_op);
1053 file->f_op = fops_get(old_fops);
1054 }
1055 fops_put(old_fops);
1056 return err;
1057}
1058
1059static struct file_operations input_fops = {
1060 .owner = THIS_MODULE,
1061 .open = input_open_file,
1062};
1063
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064static int __init input_init(void)
1065{
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001066 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -07001068 err = class_register(&input_class);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -05001069 if (err) {
1070 printk(KERN_ERR "input: unable to register input_dev class\n");
1071 return err;
1072 }
1073
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001074 err = input_proc_init();
1075 if (err)
Greg Kroah-Hartmanb0fdfeb2005-10-27 22:25:43 -07001076 goto fail1;
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001077
1078 err = register_chrdev(INPUT_MAJOR, "input", &input_fops);
1079 if (err) {
1080 printk(KERN_ERR "input: unable to register char major %d", INPUT_MAJOR);
Greg Kroah-Hartmanb0fdfeb2005-10-27 22:25:43 -07001081 goto fail2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 }
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001083
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001084 return 0;
1085
Greg Kroah-Hartmanb0fdfeb2005-10-27 22:25:43 -07001086 fail2: input_proc_exit();
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -07001087 fail1: class_unregister(&input_class);
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001088 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089}
1090
1091static void __exit input_exit(void)
1092{
Dmitry Torokhovf96b4342005-06-30 00:50:29 -05001093 input_proc_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 unregister_chrdev(INPUT_MAJOR, "input");
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -07001095 class_unregister(&input_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096}
1097
1098subsys_initcall(input_init);
1099module_exit(input_exit);