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>
25 #include <linux/devfs_fs_kernel.h>
27 MODULE_AUTHOR("Vojtech Pavlik <vojtech@suse.cz>");
28 MODULE_DESCRIPTION("Input core");
29 MODULE_LICENSE("GPL");
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(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
);
321 * Input hotplugging interface - loading event handlers based on
325 #ifdef CONFIG_HOTPLUG
328 * Input hotplugging invokes what /proc/sys/kernel/hotplug says
329 * (normally /sbin/hotplug) when input devices get added or removed.
331 * This invokes a user mode policy agent, typically helping to load driver
332 * or other modules, configure the device, and more. Drivers can provide
333 * a MODULE_DEVICE_TABLE to help with module loading subtasks.
337 #define SPRINTF_BIT_A(bit, name, max) \
339 envp[i++] = scratch; \
340 scratch += sprintf(scratch, name); \
341 for (j = NBITS(max) - 1; j >= 0; j--) \
342 if (dev->bit[j]) break; \
343 for (; j >= 0; j--) \
344 scratch += sprintf(scratch, "%lx ", dev->bit[j]); \
348 #define SPRINTF_BIT_A2(bit, name, max, ev) \
350 if (test_bit(ev, dev->evbit)) \
351 SPRINTF_BIT_A(bit, name, max); \
354 static void input_call_hotplug(char *verb
, struct input_dev
*dev
)
356 char *argv
[3], **envp
, *buf
, *scratch
;
359 if (!hotplug_path
[0]) {
360 printk(KERN_ERR
"input.c: calling hotplug without a hotplug agent defined\n");
363 if (in_interrupt()) {
364 printk(KERN_ERR
"input.c: calling hotplug from interrupt\n");
367 if (!current
->fs
->root
) {
368 printk(KERN_WARNING
"input.c: calling hotplug without valid filesystem\n");
371 if (!(envp
= (char **) kmalloc(20 * sizeof(char *), GFP_KERNEL
))) {
372 printk(KERN_ERR
"input.c: not enough memory allocating hotplug environment\n");
375 if (!(buf
= kmalloc(1024, GFP_KERNEL
))) {
377 printk(KERN_ERR
"input.c: not enough memory allocating hotplug environment\n");
381 argv
[0] = hotplug_path
;
385 envp
[i
++] = "HOME=/";
386 envp
[i
++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
391 scratch
+= sprintf(scratch
, "ACTION=%s", verb
) + 1;
394 scratch
+= sprintf(scratch
, "PRODUCT=%x/%x/%x/%x",
395 dev
->id
.bustype
, dev
->id
.vendor
, dev
->id
.product
, dev
->id
.version
) + 1;
399 scratch
+= sprintf(scratch
, "NAME=%s", dev
->name
) + 1;
404 scratch
+= sprintf(scratch
, "PHYS=%s", dev
->phys
) + 1;
407 SPRINTF_BIT_A(evbit
, "EV=", EV_MAX
);
408 SPRINTF_BIT_A2(keybit
, "KEY=", KEY_MAX
, EV_KEY
);
409 SPRINTF_BIT_A2(relbit
, "REL=", REL_MAX
, EV_REL
);
410 SPRINTF_BIT_A2(absbit
, "ABS=", ABS_MAX
, EV_ABS
);
411 SPRINTF_BIT_A2(mscbit
, "MSC=", MSC_MAX
, EV_MSC
);
412 SPRINTF_BIT_A2(ledbit
, "LED=", LED_MAX
, EV_LED
);
413 SPRINTF_BIT_A2(sndbit
, "SND=", SND_MAX
, EV_SND
);
414 SPRINTF_BIT_A2(ffbit
, "FF=", FF_MAX
, EV_FF
);
415 SPRINTF_BIT_A2(swbit
, "SW=", SW_MAX
, EV_SW
);
420 printk(KERN_DEBUG
"input.c: calling %s %s [%s %s %s %s %s]\n",
421 argv
[0], argv
[1], envp
[0], envp
[1], envp
[2], envp
[3], envp
[4]);
424 value
= call_usermodehelper(argv
[0], argv
, envp
, 0);
431 printk(KERN_DEBUG
"input.c: hotplug returned %d\n", value
);
437 #ifdef CONFIG_PROC_FS
439 static struct proc_dir_entry
*proc_bus_input_dir
;
440 static DECLARE_WAIT_QUEUE_HEAD(input_devices_poll_wait
);
441 static int input_devices_state
;
443 static inline void input_wakeup_procfs_readers(void)
445 input_devices_state
++;
446 wake_up(&input_devices_poll_wait
);
449 static unsigned int input_devices_poll(struct file
*file
, poll_table
*wait
)
451 int state
= input_devices_state
;
452 poll_wait(file
, &input_devices_poll_wait
, wait
);
453 if (state
!= input_devices_state
)
454 return POLLIN
| POLLRDNORM
;
458 #define SPRINTF_BIT_B(bit, name, max) \
460 len += sprintf(buf + len, "B: %s", name); \
461 for (i = NBITS(max) - 1; i >= 0; i--) \
462 if (dev->bit[i]) break; \
463 for (; i >= 0; i--) \
464 len += sprintf(buf + len, "%lx ", dev->bit[i]); \
465 len += sprintf(buf + len, "\n"); \
468 #define SPRINTF_BIT_B2(bit, name, max, ev) \
470 if (test_bit(ev, dev->evbit)) \
471 SPRINTF_BIT_B(bit, name, max); \
474 static int input_devices_read(char *buf
, char **start
, off_t pos
, int count
, int *eof
, void *data
)
476 struct input_dev
*dev
;
477 struct input_handle
*handle
;
482 list_for_each_entry(dev
, &input_dev_list
, node
) {
484 len
= sprintf(buf
, "I: Bus=%04x Vendor=%04x Product=%04x Version=%04x\n",
485 dev
->id
.bustype
, dev
->id
.vendor
, dev
->id
.product
, dev
->id
.version
);
487 len
+= sprintf(buf
+ len
, "N: Name=\"%s\"\n", dev
->name
? dev
->name
: "");
488 len
+= sprintf(buf
+ len
, "P: Phys=%s\n", dev
->phys
? dev
->phys
: "");
489 len
+= sprintf(buf
+ len
, "H: Handlers=");
491 list_for_each_entry(handle
, &dev
->h_list
, d_node
)
492 len
+= sprintf(buf
+ len
, "%s ", handle
->name
);
494 len
+= sprintf(buf
+ len
, "\n");
496 SPRINTF_BIT_B(evbit
, "EV=", EV_MAX
);
497 SPRINTF_BIT_B2(keybit
, "KEY=", KEY_MAX
, EV_KEY
);
498 SPRINTF_BIT_B2(relbit
, "REL=", REL_MAX
, EV_REL
);
499 SPRINTF_BIT_B2(absbit
, "ABS=", ABS_MAX
, EV_ABS
);
500 SPRINTF_BIT_B2(mscbit
, "MSC=", MSC_MAX
, EV_MSC
);
501 SPRINTF_BIT_B2(ledbit
, "LED=", LED_MAX
, EV_LED
);
502 SPRINTF_BIT_B2(sndbit
, "SND=", SND_MAX
, EV_SND
);
503 SPRINTF_BIT_B2(ffbit
, "FF=", FF_MAX
, EV_FF
);
504 SPRINTF_BIT_B2(swbit
, "SW=", SW_MAX
, EV_SW
);
506 len
+= sprintf(buf
+ len
, "\n");
512 *start
= buf
+ (pos
- (at
- len
));
521 if (&dev
->node
== &input_dev_list
)
524 return (count
> cnt
) ? cnt
: count
;
527 static int input_handlers_read(char *buf
, char **start
, off_t pos
, int count
, int *eof
, void *data
)
529 struct input_handler
*handler
;
532 int len
= 0, cnt
= 0;
535 list_for_each_entry(handler
, &input_handler_list
, node
) {
538 len
= sprintf(buf
, "N: Number=%d Name=%s Minor=%d\n",
539 i
++, handler
->name
, handler
->minor
);
541 len
= sprintf(buf
, "N: Number=%d Name=%s\n",
548 *start
= buf
+ (pos
- (at
- len
));
556 if (&handler
->node
== &input_handler_list
)
559 return (count
> cnt
) ? cnt
: count
;
562 static struct file_operations input_fileops
;
564 static int __init
input_proc_init(void)
566 struct proc_dir_entry
*entry
;
568 proc_bus_input_dir
= proc_mkdir("input", proc_bus
);
569 if (!proc_bus_input_dir
)
572 proc_bus_input_dir
->owner
= THIS_MODULE
;
574 entry
= create_proc_read_entry("devices", 0, proc_bus_input_dir
, input_devices_read
, NULL
);
578 entry
->owner
= THIS_MODULE
;
579 input_fileops
= *entry
->proc_fops
;
580 entry
->proc_fops
= &input_fileops
;
581 entry
->proc_fops
->poll
= input_devices_poll
;
583 entry
= create_proc_read_entry("handlers", 0, proc_bus_input_dir
, input_handlers_read
, NULL
);
587 entry
->owner
= THIS_MODULE
;
591 fail2
: remove_proc_entry("devices", proc_bus_input_dir
);
592 fail1
: remove_proc_entry("input", proc_bus
);
596 static void input_proc_exit(void)
598 remove_proc_entry("devices", proc_bus_input_dir
);
599 remove_proc_entry("handlers", proc_bus_input_dir
);
600 remove_proc_entry("input", proc_bus
);
603 #else /* !CONFIG_PROC_FS */
604 static inline void input_wakeup_procfs_readers(void) { }
605 static inline int input_proc_init(void) { return 0; }
606 static inline void input_proc_exit(void) { }
609 void input_register_device(struct input_dev
*dev
)
611 struct input_handle
*handle
;
612 struct input_handler
*handler
;
613 struct input_device_id
*id
;
615 set_bit(EV_SYN
, dev
->evbit
);
617 init_MUTEX(&dev
->sem
);
620 * If delay and period are pre-set by the driver, then autorepeating
621 * is handled by the driver itself and we don't do it in input.c.
624 init_timer(&dev
->timer
);
625 if (!dev
->rep
[REP_DELAY
] && !dev
->rep
[REP_PERIOD
]) {
626 dev
->timer
.data
= (long) dev
;
627 dev
->timer
.function
= input_repeat_key
;
628 dev
->rep
[REP_DELAY
] = 250;
629 dev
->rep
[REP_PERIOD
] = 33;
632 INIT_LIST_HEAD(&dev
->h_list
);
633 list_add_tail(&dev
->node
, &input_dev_list
);
635 list_for_each_entry(handler
, &input_handler_list
, node
)
636 if (!handler
->blacklist
|| !input_match_device(handler
->blacklist
, dev
))
637 if ((id
= input_match_device(handler
->id_table
, dev
)))
638 if ((handle
= handler
->connect(handler
, dev
, id
)))
639 input_link_handle(handle
);
641 #ifdef CONFIG_HOTPLUG
642 input_call_hotplug("add", dev
);
645 input_wakeup_procfs_readers();
648 void input_unregister_device(struct input_dev
*dev
)
650 struct list_head
* node
, * next
;
654 del_timer_sync(&dev
->timer
);
656 list_for_each_safe(node
, next
, &dev
->h_list
) {
657 struct input_handle
* handle
= to_handle(node
);
658 list_del_init(&handle
->d_node
);
659 list_del_init(&handle
->h_node
);
660 handle
->handler
->disconnect(handle
);
663 #ifdef CONFIG_HOTPLUG
664 input_call_hotplug("remove", dev
);
667 list_del_init(&dev
->node
);
669 input_wakeup_procfs_readers();
672 void input_register_handler(struct input_handler
*handler
)
674 struct input_dev
*dev
;
675 struct input_handle
*handle
;
676 struct input_device_id
*id
;
678 if (!handler
) return;
680 INIT_LIST_HEAD(&handler
->h_list
);
682 if (handler
->fops
!= NULL
)
683 input_table
[handler
->minor
>> 5] = handler
;
685 list_add_tail(&handler
->node
, &input_handler_list
);
687 list_for_each_entry(dev
, &input_dev_list
, node
)
688 if (!handler
->blacklist
|| !input_match_device(handler
->blacklist
, dev
))
689 if ((id
= input_match_device(handler
->id_table
, dev
)))
690 if ((handle
= handler
->connect(handler
, dev
, id
)))
691 input_link_handle(handle
);
693 input_wakeup_procfs_readers();
696 void input_unregister_handler(struct input_handler
*handler
)
698 struct list_head
* node
, * next
;
700 list_for_each_safe(node
, next
, &handler
->h_list
) {
701 struct input_handle
* handle
= to_handle_h(node
);
702 list_del_init(&handle
->h_node
);
703 list_del_init(&handle
->d_node
);
704 handler
->disconnect(handle
);
707 list_del_init(&handler
->node
);
709 if (handler
->fops
!= NULL
)
710 input_table
[handler
->minor
>> 5] = NULL
;
712 input_wakeup_procfs_readers();
715 static int input_open_file(struct inode
*inode
, struct file
*file
)
717 struct input_handler
*handler
= input_table
[iminor(inode
) >> 5];
718 struct file_operations
*old_fops
, *new_fops
= NULL
;
721 /* No load-on-demand here? */
722 if (!handler
|| !(new_fops
= fops_get(handler
->fops
)))
726 * That's _really_ odd. Usually NULL ->open means "nothing special",
727 * not "no device". Oh, well...
729 if (!new_fops
->open
) {
733 old_fops
= file
->f_op
;
734 file
->f_op
= new_fops
;
736 err
= new_fops
->open(inode
, file
);
739 fops_put(file
->f_op
);
740 file
->f_op
= fops_get(old_fops
);
746 static struct file_operations input_fops
= {
747 .owner
= THIS_MODULE
,
748 .open
= input_open_file
,
751 struct class *input_class
;
753 static int __init
input_init(void)
757 input_class
= class_create(THIS_MODULE
, "input");
758 if (IS_ERR(input_class
)) {
759 printk(KERN_ERR
"input: unable to register input class\n");
760 return PTR_ERR(input_class
);
763 err
= input_proc_init();
767 err
= register_chrdev(INPUT_MAJOR
, "input", &input_fops
);
769 printk(KERN_ERR
"input: unable to register char major %d", INPUT_MAJOR
);
773 err
= devfs_mk_dir("input");
779 fail3
: unregister_chrdev(INPUT_MAJOR
, "input");
780 fail2
: input_proc_exit();
781 fail1
: class_destroy(input_class
);
785 static void __exit
input_exit(void)
788 devfs_remove("input");
789 unregister_chrdev(INPUT_MAJOR
, "input");
790 class_destroy(input_class
);
793 subsys_initcall(input_init
);
794 module_exit(input_exit
);