4 * Copyright (c) 1999-2002 Vojtech Pavlik
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.
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>
21 #include <linux/kobject_uevent.h>
22 #include <linux/interrupt.h>
23 #include <linux/poll.h>
24 #include <linux/device.h>
26 MODULE_AUTHOR("Vojtech Pavlik <vojtech@suse.cz>");
27 MODULE_DESCRIPTION("Input core");
28 MODULE_LICENSE("GPL");
30 EXPORT_SYMBOL(input_allocate_device
);
31 EXPORT_SYMBOL(input_register_device
);
32 EXPORT_SYMBOL(input_unregister_device
);
33 EXPORT_SYMBOL(input_register_handler
);
34 EXPORT_SYMBOL(input_unregister_handler
);
35 EXPORT_SYMBOL(input_grab_device
);
36 EXPORT_SYMBOL(input_release_device
);
37 EXPORT_SYMBOL(input_open_device
);
38 EXPORT_SYMBOL(input_close_device
);
39 EXPORT_SYMBOL(input_accept_process
);
40 EXPORT_SYMBOL(input_flush_device
);
41 EXPORT_SYMBOL(input_event
);
42 EXPORT_SYMBOL_GPL(input_class
);
44 #define INPUT_DEVICES 256
46 static LIST_HEAD(input_dev_list
);
47 static LIST_HEAD(input_handler_list
);
49 static struct input_handler
*input_table
[8];
51 void input_event(struct input_dev
*dev
, unsigned int type
, unsigned int code
, int value
)
53 struct input_handle
*handle
;
55 if (type
> EV_MAX
|| !test_bit(type
, dev
->evbit
))
58 add_input_randomness(type
, code
, value
);
65 if (dev
->event
) dev
->event(dev
, type
, code
, value
);
69 if (dev
->sync
) return;
77 if (code
> KEY_MAX
|| !test_bit(code
, dev
->keybit
) || !!test_bit(code
, dev
->key
) == value
)
83 change_bit(code
, dev
->key
);
85 if (test_bit(EV_REP
, dev
->evbit
) && dev
->rep
[REP_PERIOD
] && dev
->rep
[REP_DELAY
] && dev
->timer
.data
&& value
) {
86 dev
->repeat_key
= code
;
87 mod_timer(&dev
->timer
, jiffies
+ msecs_to_jiffies(dev
->rep
[REP_DELAY
]));
94 if (code
> SW_MAX
|| !test_bit(code
, dev
->swbit
) || !!test_bit(code
, dev
->sw
) == value
)
97 change_bit(code
, dev
->sw
);
103 if (code
> ABS_MAX
|| !test_bit(code
, dev
->absbit
))
106 if (dev
->absfuzz
[code
]) {
107 if ((value
> dev
->abs
[code
] - (dev
->absfuzz
[code
] >> 1)) &&
108 (value
< dev
->abs
[code
] + (dev
->absfuzz
[code
] >> 1)))
111 if ((value
> dev
->abs
[code
] - dev
->absfuzz
[code
]) &&
112 (value
< dev
->abs
[code
] + dev
->absfuzz
[code
]))
113 value
= (dev
->abs
[code
] * 3 + value
) >> 2;
115 if ((value
> dev
->abs
[code
] - (dev
->absfuzz
[code
] << 1)) &&
116 (value
< dev
->abs
[code
] + (dev
->absfuzz
[code
] << 1)))
117 value
= (dev
->abs
[code
] + value
) >> 1;
120 if (dev
->abs
[code
] == value
)
123 dev
->abs
[code
] = value
;
128 if (code
> REL_MAX
|| !test_bit(code
, dev
->relbit
) || (value
== 0))
135 if (code
> MSC_MAX
|| !test_bit(code
, dev
->mscbit
))
138 if (dev
->event
) dev
->event(dev
, type
, code
, value
);
144 if (code
> LED_MAX
|| !test_bit(code
, dev
->ledbit
) || !!test_bit(code
, dev
->led
) == value
)
147 change_bit(code
, dev
->led
);
148 if (dev
->event
) dev
->event(dev
, type
, code
, value
);
154 if (code
> SND_MAX
|| !test_bit(code
, dev
->sndbit
))
157 if (dev
->event
) dev
->event(dev
, type
, code
, value
);
163 if (code
> REP_MAX
|| value
< 0 || dev
->rep
[code
] == value
) return;
165 dev
->rep
[code
] = value
;
166 if (dev
->event
) dev
->event(dev
, type
, code
, value
);
171 if (dev
->event
) dev
->event(dev
, type
, code
, value
);
179 dev
->grab
->handler
->event(dev
->grab
, type
, code
, value
);
181 list_for_each_entry(handle
, &dev
->h_list
, d_node
)
183 handle
->handler
->event(handle
, type
, code
, value
);
186 static void input_repeat_key(unsigned long data
)
188 struct input_dev
*dev
= (void *) data
;
190 if (!test_bit(dev
->repeat_key
, dev
->key
))
193 input_event(dev
, EV_KEY
, dev
->repeat_key
, 2);
196 if (dev
->rep
[REP_PERIOD
])
197 mod_timer(&dev
->timer
, jiffies
+ msecs_to_jiffies(dev
->rep
[REP_PERIOD
]));
200 int input_accept_process(struct input_handle
*handle
, struct file
*file
)
202 if (handle
->dev
->accept
)
203 return handle
->dev
->accept(handle
->dev
, file
);
208 int input_grab_device(struct input_handle
*handle
)
210 if (handle
->dev
->grab
)
213 handle
->dev
->grab
= handle
;
217 void input_release_device(struct input_handle
*handle
)
219 if (handle
->dev
->grab
== handle
)
220 handle
->dev
->grab
= NULL
;
223 int input_open_device(struct input_handle
*handle
)
225 struct input_dev
*dev
= handle
->dev
;
228 err
= down_interruptible(&dev
->sem
);
234 if (!dev
->users
++ && dev
->open
)
235 err
= dev
->open(dev
);
245 int input_flush_device(struct input_handle
* handle
, struct file
* file
)
247 if (handle
->dev
->flush
)
248 return handle
->dev
->flush(handle
->dev
, file
);
253 void input_close_device(struct input_handle
*handle
)
255 struct input_dev
*dev
= handle
->dev
;
257 input_release_device(handle
);
261 if (!--dev
->users
&& dev
->close
)
268 static void input_link_handle(struct input_handle
*handle
)
270 list_add_tail(&handle
->d_node
, &handle
->dev
->h_list
);
271 list_add_tail(&handle
->h_node
, &handle
->handler
->h_list
);
274 #define MATCH_BIT(bit, max) \
275 for (i = 0; i < NBITS(max); i++) \
276 if ((id->bit[i] & dev->bit[i]) != id->bit[i]) \
278 if (i != NBITS(max)) \
281 static struct input_device_id
*input_match_device(struct input_device_id
*id
, struct input_dev
*dev
)
285 for (; id
->flags
|| id
->driver_info
; id
++) {
287 if (id
->flags
& INPUT_DEVICE_ID_MATCH_BUS
)
288 if (id
->id
.bustype
!= dev
->id
.bustype
)
291 if (id
->flags
& INPUT_DEVICE_ID_MATCH_VENDOR
)
292 if (id
->id
.vendor
!= dev
->id
.vendor
)
295 if (id
->flags
& INPUT_DEVICE_ID_MATCH_PRODUCT
)
296 if (id
->id
.product
!= dev
->id
.product
)
299 if (id
->flags
& INPUT_DEVICE_ID_MATCH_VERSION
)
300 if (id
->id
.version
!= dev
->id
.version
)
303 MATCH_BIT(evbit
, EV_MAX
);
304 MATCH_BIT(keybit
, KEY_MAX
);
305 MATCH_BIT(relbit
, REL_MAX
);
306 MATCH_BIT(absbit
, ABS_MAX
);
307 MATCH_BIT(mscbit
, MSC_MAX
);
308 MATCH_BIT(ledbit
, LED_MAX
);
309 MATCH_BIT(sndbit
, SND_MAX
);
310 MATCH_BIT(ffbit
, FF_MAX
);
311 MATCH_BIT(swbit
, SW_MAX
);
319 static int input_print_bitmap(char *buf
, int buf_size
, unsigned long *bitmap
, int max
)
324 for (i
= NBITS(max
) - 1; i
> 0; i
--)
329 len
+= snprintf(buf
+ len
, max(buf_size
- len
, 0),
330 "%lx%s", bitmap
[i
], i
> 0 ? " " : "");
334 #ifdef CONFIG_PROC_FS
336 static struct proc_dir_entry
*proc_bus_input_dir
;
337 static DECLARE_WAIT_QUEUE_HEAD(input_devices_poll_wait
);
338 static int input_devices_state
;
340 static inline void input_wakeup_procfs_readers(void)
342 input_devices_state
++;
343 wake_up(&input_devices_poll_wait
);
346 static unsigned int input_devices_poll(struct file
*file
, poll_table
*wait
)
348 int state
= input_devices_state
;
349 poll_wait(file
, &input_devices_poll_wait
, wait
);
350 if (state
!= input_devices_state
)
351 return POLLIN
| POLLRDNORM
;
355 #define SPRINTF_BIT(ev, bm) \
357 len += sprintf(buf + len, "B: %s=", #ev); \
358 len += input_print_bitmap(buf + len, INT_MAX, \
359 dev->bm##bit, ev##_MAX); \
360 len += sprintf(buf + len, "\n"); \
363 #define TEST_AND_SPRINTF_BIT(ev, bm) \
365 if (test_bit(EV_##ev, dev->evbit)) \
366 SPRINTF_BIT(ev, bm); \
369 static int input_devices_read(char *buf
, char **start
, off_t pos
, int count
, int *eof
, void *data
)
371 struct input_dev
*dev
;
372 struct input_handle
*handle
;
378 list_for_each_entry(dev
, &input_dev_list
, node
) {
380 path
= kobject_get_path(&dev
->cdev
.kobj
, GFP_KERNEL
);
382 len
= sprintf(buf
, "I: Bus=%04x Vendor=%04x Product=%04x Version=%04x\n",
383 dev
->id
.bustype
, dev
->id
.vendor
, dev
->id
.product
, dev
->id
.version
);
385 len
+= sprintf(buf
+ len
, "N: Name=\"%s\"\n", dev
->name
? dev
->name
: "");
386 len
+= sprintf(buf
+ len
, "P: Phys=%s\n", dev
->phys
? dev
->phys
: "");
387 len
+= sprintf(buf
+ len
, "S: Sysfs=%s\n", path
? path
: "");
388 len
+= sprintf(buf
+ len
, "H: Handlers=");
390 list_for_each_entry(handle
, &dev
->h_list
, d_node
)
391 len
+= sprintf(buf
+ len
, "%s ", handle
->name
);
393 len
+= sprintf(buf
+ len
, "\n");
396 TEST_AND_SPRINTF_BIT(KEY
, key
);
397 TEST_AND_SPRINTF_BIT(REL
, rel
);
398 TEST_AND_SPRINTF_BIT(ABS
, abs
);
399 TEST_AND_SPRINTF_BIT(MSC
, msc
);
400 TEST_AND_SPRINTF_BIT(LED
, led
);
401 TEST_AND_SPRINTF_BIT(SND
, snd
);
402 TEST_AND_SPRINTF_BIT(FF
, ff
);
403 TEST_AND_SPRINTF_BIT(SW
, sw
);
405 len
+= sprintf(buf
+ len
, "\n");
411 *start
= buf
+ (pos
- (at
- len
));
422 if (&dev
->node
== &input_dev_list
)
425 return (count
> cnt
) ? cnt
: count
;
428 static int input_handlers_read(char *buf
, char **start
, off_t pos
, int count
, int *eof
, void *data
)
430 struct input_handler
*handler
;
433 int len
= 0, cnt
= 0;
436 list_for_each_entry(handler
, &input_handler_list
, node
) {
439 len
= sprintf(buf
, "N: Number=%d Name=%s Minor=%d\n",
440 i
++, handler
->name
, handler
->minor
);
442 len
= sprintf(buf
, "N: Number=%d Name=%s\n",
449 *start
= buf
+ (pos
- (at
- len
));
457 if (&handler
->node
== &input_handler_list
)
460 return (count
> cnt
) ? cnt
: count
;
463 static struct file_operations input_fileops
;
465 static int __init
input_proc_init(void)
467 struct proc_dir_entry
*entry
;
469 proc_bus_input_dir
= proc_mkdir("input", proc_bus
);
470 if (!proc_bus_input_dir
)
473 proc_bus_input_dir
->owner
= THIS_MODULE
;
475 entry
= create_proc_read_entry("devices", 0, proc_bus_input_dir
, input_devices_read
, NULL
);
479 entry
->owner
= THIS_MODULE
;
480 input_fileops
= *entry
->proc_fops
;
481 entry
->proc_fops
= &input_fileops
;
482 entry
->proc_fops
->poll
= input_devices_poll
;
484 entry
= create_proc_read_entry("handlers", 0, proc_bus_input_dir
, input_handlers_read
, NULL
);
488 entry
->owner
= THIS_MODULE
;
492 fail2
: remove_proc_entry("devices", proc_bus_input_dir
);
493 fail1
: remove_proc_entry("input", proc_bus
);
497 static void input_proc_exit(void)
499 remove_proc_entry("devices", proc_bus_input_dir
);
500 remove_proc_entry("handlers", proc_bus_input_dir
);
501 remove_proc_entry("input", proc_bus
);
504 #else /* !CONFIG_PROC_FS */
505 static inline void input_wakeup_procfs_readers(void) { }
506 static inline int input_proc_init(void) { return 0; }
507 static inline void input_proc_exit(void) { }
510 #define INPUT_DEV_STRING_ATTR_SHOW(name) \
511 static ssize_t input_dev_show_##name(struct class_device *dev, char *buf) \
513 struct input_dev *input_dev = to_input_dev(dev); \
516 retval = down_interruptible(&input_dev->sem); \
520 retval = sprintf(buf, "%s\n", input_dev->name ? input_dev->name : ""); \
522 up(&input_dev->sem); \
526 static CLASS_DEVICE_ATTR(name, S_IRUGO, input_dev_show_##name, NULL);
528 INPUT_DEV_STRING_ATTR_SHOW(name
);
529 INPUT_DEV_STRING_ATTR_SHOW(phys
);
530 INPUT_DEV_STRING_ATTR_SHOW(uniq
);
532 static struct attribute
*input_dev_attrs
[] = {
533 &class_device_attr_name
.attr
,
534 &class_device_attr_phys
.attr
,
535 &class_device_attr_uniq
.attr
,
539 static struct attribute_group input_dev_attr_group
= {
540 .attrs
= input_dev_attrs
,
543 #define INPUT_DEV_ID_ATTR(name) \
544 static ssize_t input_dev_show_id_##name(struct class_device *dev, char *buf) \
546 struct input_dev *input_dev = to_input_dev(dev); \
547 return sprintf(buf, "%04x\n", input_dev->id.name); \
549 static CLASS_DEVICE_ATTR(name, S_IRUGO, input_dev_show_id_##name, NULL);
551 INPUT_DEV_ID_ATTR(bustype
);
552 INPUT_DEV_ID_ATTR(vendor
);
553 INPUT_DEV_ID_ATTR(product
);
554 INPUT_DEV_ID_ATTR(version
);
556 static struct attribute
*input_dev_id_attrs
[] = {
557 &class_device_attr_bustype
.attr
,
558 &class_device_attr_vendor
.attr
,
559 &class_device_attr_product
.attr
,
560 &class_device_attr_version
.attr
,
564 static struct attribute_group input_dev_id_attr_group
= {
566 .attrs
= input_dev_id_attrs
,
569 #define INPUT_DEV_CAP_ATTR(ev, bm) \
570 static ssize_t input_dev_show_cap_##bm(struct class_device *dev, char *buf) \
572 struct input_dev *input_dev = to_input_dev(dev); \
573 return input_print_bitmap(buf, PAGE_SIZE, input_dev->bm##bit, ev##_MAX);\
575 static CLASS_DEVICE_ATTR(bm, S_IRUGO, input_dev_show_cap_##bm, NULL);
577 INPUT_DEV_CAP_ATTR(EV
, ev
);
578 INPUT_DEV_CAP_ATTR(KEY
, key
);
579 INPUT_DEV_CAP_ATTR(REL
, rel
);
580 INPUT_DEV_CAP_ATTR(ABS
, abs
);
581 INPUT_DEV_CAP_ATTR(MSC
, msc
);
582 INPUT_DEV_CAP_ATTR(LED
, led
);
583 INPUT_DEV_CAP_ATTR(SND
, snd
);
584 INPUT_DEV_CAP_ATTR(FF
, ff
);
585 INPUT_DEV_CAP_ATTR(SW
, sw
);
587 static struct attribute
*input_dev_caps_attrs
[] = {
588 &class_device_attr_ev
.attr
,
589 &class_device_attr_key
.attr
,
590 &class_device_attr_rel
.attr
,
591 &class_device_attr_abs
.attr
,
592 &class_device_attr_msc
.attr
,
593 &class_device_attr_led
.attr
,
594 &class_device_attr_snd
.attr
,
595 &class_device_attr_ff
.attr
,
596 &class_device_attr_sw
.attr
,
600 static struct attribute_group input_dev_caps_attr_group
= {
601 .name
= "capabilities",
602 .attrs
= input_dev_caps_attrs
,
605 static void input_dev_release(struct class_device
*class_dev
)
607 struct input_dev
*dev
= to_input_dev(class_dev
);
610 module_put(THIS_MODULE
);
614 * Input hotplugging interface - loading event handlers based on
617 static int input_add_hotplug_bm_var(char **envp
, int num_envp
, int *cur_index
,
618 char *buffer
, int buffer_size
, int *cur_len
,
619 const char *name
, unsigned long *bitmap
, int max
)
621 if (*cur_index
>= num_envp
- 1)
624 envp
[*cur_index
] = buffer
+ *cur_len
;
626 *cur_len
+= snprintf(buffer
+ *cur_len
, max(buffer_size
- *cur_len
, 0), name
);
627 if (*cur_len
> buffer_size
)
630 *cur_len
+= input_print_bitmap(buffer
+ *cur_len
,
631 max(buffer_size
- *cur_len
, 0),
633 if (*cur_len
> buffer_size
)
640 #define INPUT_ADD_HOTPLUG_VAR(fmt, val...) \
642 int err = add_hotplug_env_var(envp, num_envp, &i, \
643 buffer, buffer_size, &len, \
649 #define INPUT_ADD_HOTPLUG_BM_VAR(name, bm, max) \
651 int err = input_add_hotplug_bm_var(envp, num_envp, &i, \
652 buffer, buffer_size, &len, \
658 static int input_dev_hotplug(struct class_device
*cdev
, char **envp
,
659 int num_envp
, char *buffer
, int buffer_size
)
661 struct input_dev
*dev
= to_input_dev(cdev
);
665 INPUT_ADD_HOTPLUG_VAR("PRODUCT=%x/%x/%x/%x",
666 dev
->id
.bustype
, dev
->id
.vendor
,
667 dev
->id
.product
, dev
->id
.version
);
669 INPUT_ADD_HOTPLUG_VAR("NAME=\"%s\"", dev
->name
);
671 INPUT_ADD_HOTPLUG_VAR("PHYS=\"%s\"", dev
->phys
);
673 INPUT_ADD_HOTPLUG_VAR("UNIQ=\"%s\"", dev
->uniq
);
675 INPUT_ADD_HOTPLUG_BM_VAR("EV=", dev
->evbit
, EV_MAX
);
676 if (test_bit(EV_KEY
, dev
->evbit
))
677 INPUT_ADD_HOTPLUG_BM_VAR("KEY=", dev
->keybit
, KEY_MAX
);
678 if (test_bit(EV_REL
, dev
->evbit
))
679 INPUT_ADD_HOTPLUG_BM_VAR("REL=", dev
->relbit
, REL_MAX
);
680 if (test_bit(EV_ABS
, dev
->evbit
))
681 INPUT_ADD_HOTPLUG_BM_VAR("ABS=", dev
->absbit
, ABS_MAX
);
682 if (test_bit(EV_MSC
, dev
->evbit
))
683 INPUT_ADD_HOTPLUG_BM_VAR("MSC=", dev
->mscbit
, MSC_MAX
);
684 if (test_bit(EV_LED
, dev
->evbit
))
685 INPUT_ADD_HOTPLUG_BM_VAR("LED=", dev
->ledbit
, LED_MAX
);
686 if (test_bit(EV_SND
, dev
->evbit
))
687 INPUT_ADD_HOTPLUG_BM_VAR("SND=", dev
->sndbit
, SND_MAX
);
688 if (test_bit(EV_FF
, dev
->evbit
))
689 INPUT_ADD_HOTPLUG_BM_VAR("FF=", dev
->ffbit
, FF_MAX
);
690 if (test_bit(EV_SW
, dev
->evbit
))
691 INPUT_ADD_HOTPLUG_BM_VAR("SW=", dev
->swbit
, SW_MAX
);
698 struct class input_class
= {
700 .release
= input_dev_release
,
701 .hotplug
= input_dev_hotplug
,
704 struct input_dev
*input_allocate_device(void)
706 struct input_dev
*dev
;
708 dev
= kzalloc(sizeof(struct input_dev
), GFP_KERNEL
);
711 dev
->cdev
.class = &input_class
;
712 class_device_initialize(&dev
->cdev
);
713 INIT_LIST_HEAD(&dev
->h_list
);
714 INIT_LIST_HEAD(&dev
->node
);
720 int input_register_device(struct input_dev
*dev
)
722 static atomic_t input_no
= ATOMIC_INIT(0);
723 struct input_handle
*handle
;
724 struct input_handler
*handler
;
725 struct input_device_id
*id
;
729 if (!dev
->dynalloc
) {
730 printk(KERN_WARNING
"input: device %s is statically allocated, will not register\n"
731 "Please convert to input_allocate_device() or contact dtor_core@ameritech.net\n",
732 dev
->name
? dev
->name
: "<Unknown>");
736 init_MUTEX(&dev
->sem
);
737 set_bit(EV_SYN
, dev
->evbit
);
740 * If delay and period are pre-set by the driver, then autorepeating
741 * is handled by the driver itself and we don't do it in input.c.
744 init_timer(&dev
->timer
);
745 if (!dev
->rep
[REP_DELAY
] && !dev
->rep
[REP_PERIOD
]) {
746 dev
->timer
.data
= (long) dev
;
747 dev
->timer
.function
= input_repeat_key
;
748 dev
->rep
[REP_DELAY
] = 250;
749 dev
->rep
[REP_PERIOD
] = 33;
752 INIT_LIST_HEAD(&dev
->h_list
);
753 list_add_tail(&dev
->node
, &input_dev_list
);
755 dev
->cdev
.class = &input_class
;
756 snprintf(dev
->cdev
.class_id
, sizeof(dev
->cdev
.class_id
),
757 "input%ld", (unsigned long) atomic_inc_return(&input_no
) - 1);
759 error
= class_device_add(&dev
->cdev
);
763 error
= sysfs_create_group(&dev
->cdev
.kobj
, &input_dev_attr_group
);
767 error
= sysfs_create_group(&dev
->cdev
.kobj
, &input_dev_id_attr_group
);
771 error
= sysfs_create_group(&dev
->cdev
.kobj
, &input_dev_caps_attr_group
);
775 __module_get(THIS_MODULE
);
777 path
= kobject_get_path(&dev
->cdev
.kobj
, GFP_KERNEL
);
778 printk(KERN_INFO
"input: %s as %s\n",
779 dev
->name
? dev
->name
: "Unspecified device", path
? path
: "N/A");
782 list_for_each_entry(handler
, &input_handler_list
, node
)
783 if (!handler
->blacklist
|| !input_match_device(handler
->blacklist
, dev
))
784 if ((id
= input_match_device(handler
->id_table
, dev
)))
785 if ((handle
= handler
->connect(handler
, dev
, id
)))
786 input_link_handle(handle
);
788 input_wakeup_procfs_readers();
792 fail3
: sysfs_remove_group(&dev
->cdev
.kobj
, &input_dev_id_attr_group
);
793 fail2
: sysfs_remove_group(&dev
->cdev
.kobj
, &input_dev_attr_group
);
794 fail1
: class_device_del(&dev
->cdev
);
798 void input_unregister_device(struct input_dev
*dev
)
800 struct list_head
* node
, * next
;
804 del_timer_sync(&dev
->timer
);
806 list_for_each_safe(node
, next
, &dev
->h_list
) {
807 struct input_handle
* handle
= to_handle(node
);
808 list_del_init(&handle
->d_node
);
809 list_del_init(&handle
->h_node
);
810 handle
->handler
->disconnect(handle
);
813 list_del_init(&dev
->node
);
815 sysfs_remove_group(&dev
->cdev
.kobj
, &input_dev_caps_attr_group
);
816 sysfs_remove_group(&dev
->cdev
.kobj
, &input_dev_id_attr_group
);
817 sysfs_remove_group(&dev
->cdev
.kobj
, &input_dev_attr_group
);
818 class_device_unregister(&dev
->cdev
);
820 input_wakeup_procfs_readers();
823 void input_register_handler(struct input_handler
*handler
)
825 struct input_dev
*dev
;
826 struct input_handle
*handle
;
827 struct input_device_id
*id
;
829 if (!handler
) return;
831 INIT_LIST_HEAD(&handler
->h_list
);
833 if (handler
->fops
!= NULL
)
834 input_table
[handler
->minor
>> 5] = handler
;
836 list_add_tail(&handler
->node
, &input_handler_list
);
838 list_for_each_entry(dev
, &input_dev_list
, node
)
839 if (!handler
->blacklist
|| !input_match_device(handler
->blacklist
, dev
))
840 if ((id
= input_match_device(handler
->id_table
, dev
)))
841 if ((handle
= handler
->connect(handler
, dev
, id
)))
842 input_link_handle(handle
);
844 input_wakeup_procfs_readers();
847 void input_unregister_handler(struct input_handler
*handler
)
849 struct list_head
* node
, * next
;
851 list_for_each_safe(node
, next
, &handler
->h_list
) {
852 struct input_handle
* handle
= to_handle_h(node
);
853 list_del_init(&handle
->h_node
);
854 list_del_init(&handle
->d_node
);
855 handler
->disconnect(handle
);
858 list_del_init(&handler
->node
);
860 if (handler
->fops
!= NULL
)
861 input_table
[handler
->minor
>> 5] = NULL
;
863 input_wakeup_procfs_readers();
866 static int input_open_file(struct inode
*inode
, struct file
*file
)
868 struct input_handler
*handler
= input_table
[iminor(inode
) >> 5];
869 struct file_operations
*old_fops
, *new_fops
= NULL
;
872 /* No load-on-demand here? */
873 if (!handler
|| !(new_fops
= fops_get(handler
->fops
)))
877 * That's _really_ odd. Usually NULL ->open means "nothing special",
878 * not "no device". Oh, well...
880 if (!new_fops
->open
) {
884 old_fops
= file
->f_op
;
885 file
->f_op
= new_fops
;
887 err
= new_fops
->open(inode
, file
);
890 fops_put(file
->f_op
);
891 file
->f_op
= fops_get(old_fops
);
897 static struct file_operations input_fops
= {
898 .owner
= THIS_MODULE
,
899 .open
= input_open_file
,
902 static int __init
input_init(void)
906 err
= class_register(&input_class
);
908 printk(KERN_ERR
"input: unable to register input_dev class\n");
912 err
= input_proc_init();
916 err
= register_chrdev(INPUT_MAJOR
, "input", &input_fops
);
918 printk(KERN_ERR
"input: unable to register char major %d", INPUT_MAJOR
);
924 fail2
: input_proc_exit();
925 fail1
: class_unregister(&input_class
);
929 static void __exit
input_exit(void)
932 unregister_chrdev(INPUT_MAJOR
, "input");
933 class_unregister(&input_class
);
936 subsys_initcall(input_init
);
937 module_exit(input_exit
);