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
> ABS_MAX
|| !test_bit(code
, dev
->absbit
))
97 if (dev
->absfuzz
[code
]) {
98 if ((value
> dev
->abs
[code
] - (dev
->absfuzz
[code
] >> 1)) &&
99 (value
< dev
->abs
[code
] + (dev
->absfuzz
[code
] >> 1)))
102 if ((value
> dev
->abs
[code
] - dev
->absfuzz
[code
]) &&
103 (value
< dev
->abs
[code
] + dev
->absfuzz
[code
]))
104 value
= (dev
->abs
[code
] * 3 + value
) >> 2;
106 if ((value
> dev
->abs
[code
] - (dev
->absfuzz
[code
] << 1)) &&
107 (value
< dev
->abs
[code
] + (dev
->absfuzz
[code
] << 1)))
108 value
= (dev
->abs
[code
] + value
) >> 1;
111 if (dev
->abs
[code
] == value
)
114 dev
->abs
[code
] = value
;
119 if (code
> REL_MAX
|| !test_bit(code
, dev
->relbit
) || (value
== 0))
126 if (code
> MSC_MAX
|| !test_bit(code
, dev
->mscbit
))
129 if (dev
->event
) dev
->event(dev
, type
, code
, value
);
135 if (code
> LED_MAX
|| !test_bit(code
, dev
->ledbit
) || !!test_bit(code
, dev
->led
) == value
)
138 change_bit(code
, dev
->led
);
139 if (dev
->event
) dev
->event(dev
, type
, code
, value
);
145 if (code
> SND_MAX
|| !test_bit(code
, dev
->sndbit
))
148 if (dev
->event
) dev
->event(dev
, type
, code
, value
);
154 if (code
> REP_MAX
|| value
< 0 || dev
->rep
[code
] == value
) return;
156 dev
->rep
[code
] = value
;
157 if (dev
->event
) dev
->event(dev
, type
, code
, value
);
162 if (dev
->event
) dev
->event(dev
, type
, code
, value
);
170 dev
->grab
->handler
->event(dev
->grab
, type
, code
, value
);
172 list_for_each_entry(handle
, &dev
->h_list
, d_node
)
174 handle
->handler
->event(handle
, type
, code
, value
);
177 static void input_repeat_key(unsigned long data
)
179 struct input_dev
*dev
= (void *) data
;
181 if (!test_bit(dev
->repeat_key
, dev
->key
))
184 input_event(dev
, EV_KEY
, dev
->repeat_key
, 2);
187 if (dev
->rep
[REP_PERIOD
])
188 mod_timer(&dev
->timer
, jiffies
+ msecs_to_jiffies(dev
->rep
[REP_PERIOD
]));
191 int input_accept_process(struct input_handle
*handle
, struct file
*file
)
193 if (handle
->dev
->accept
)
194 return handle
->dev
->accept(handle
->dev
, file
);
199 int input_grab_device(struct input_handle
*handle
)
201 if (handle
->dev
->grab
)
204 handle
->dev
->grab
= handle
;
208 void input_release_device(struct input_handle
*handle
)
210 if (handle
->dev
->grab
== handle
)
211 handle
->dev
->grab
= NULL
;
214 int input_open_device(struct input_handle
*handle
)
216 struct input_dev
*dev
= handle
->dev
;
219 err
= down_interruptible(&dev
->sem
);
225 if (!dev
->users
++ && dev
->open
)
226 err
= dev
->open(dev
);
236 int input_flush_device(struct input_handle
* handle
, struct file
* file
)
238 if (handle
->dev
->flush
)
239 return handle
->dev
->flush(handle
->dev
, file
);
244 void input_close_device(struct input_handle
*handle
)
246 struct input_dev
*dev
= handle
->dev
;
248 input_release_device(handle
);
252 if (!--dev
->users
&& dev
->close
)
259 static void input_link_handle(struct input_handle
*handle
)
261 list_add_tail(&handle
->d_node
, &handle
->dev
->h_list
);
262 list_add_tail(&handle
->h_node
, &handle
->handler
->h_list
);
265 #define MATCH_BIT(bit, max) \
266 for (i = 0; i < NBITS(max); i++) \
267 if ((id->bit[i] & dev->bit[i]) != id->bit[i]) \
269 if (i != NBITS(max)) \
272 static struct input_device_id
*input_match_device(struct input_device_id
*id
, struct input_dev
*dev
)
276 for (; id
->flags
|| id
->driver_info
; id
++) {
278 if (id
->flags
& INPUT_DEVICE_ID_MATCH_BUS
)
279 if (id
->id
.bustype
!= dev
->id
.bustype
)
282 if (id
->flags
& INPUT_DEVICE_ID_MATCH_VENDOR
)
283 if (id
->id
.vendor
!= dev
->id
.vendor
)
286 if (id
->flags
& INPUT_DEVICE_ID_MATCH_PRODUCT
)
287 if (id
->id
.product
!= dev
->id
.product
)
290 if (id
->flags
& INPUT_DEVICE_ID_MATCH_VERSION
)
291 if (id
->id
.version
!= dev
->id
.version
)
294 MATCH_BIT(evbit
, EV_MAX
);
295 MATCH_BIT(keybit
, KEY_MAX
);
296 MATCH_BIT(relbit
, REL_MAX
);
297 MATCH_BIT(absbit
, ABS_MAX
);
298 MATCH_BIT(mscbit
, MSC_MAX
);
299 MATCH_BIT(ledbit
, LED_MAX
);
300 MATCH_BIT(sndbit
, SND_MAX
);
301 MATCH_BIT(ffbit
, FF_MAX
);
311 * Input hotplugging interface - loading event handlers based on
315 #ifdef CONFIG_HOTPLUG
318 * Input hotplugging invokes what /proc/sys/kernel/hotplug says
319 * (normally /sbin/hotplug) when input devices get added or removed.
321 * This invokes a user mode policy agent, typically helping to load driver
322 * or other modules, configure the device, and more. Drivers can provide
323 * a MODULE_DEVICE_TABLE to help with module loading subtasks.
327 #define SPRINTF_BIT_A(bit, name, max) \
329 envp[i++] = scratch; \
330 scratch += sprintf(scratch, name); \
331 for (j = NBITS(max) - 1; j >= 0; j--) \
332 if (dev->bit[j]) break; \
333 for (; j >= 0; j--) \
334 scratch += sprintf(scratch, "%lx ", dev->bit[j]); \
338 #define SPRINTF_BIT_A2(bit, name, max, ev) \
340 if (test_bit(ev, dev->evbit)) \
341 SPRINTF_BIT_A(bit, name, max); \
344 static void input_call_hotplug(char *verb
, struct input_dev
*dev
)
346 char *argv
[3], **envp
, *buf
, *scratch
;
349 if (!hotplug_path
[0]) {
350 printk(KERN_ERR
"input.c: calling hotplug without a hotplug agent defined\n");
353 if (in_interrupt()) {
354 printk(KERN_ERR
"input.c: calling hotplug from interrupt\n");
357 if (!current
->fs
->root
) {
358 printk(KERN_WARNING
"input.c: calling hotplug without valid filesystem\n");
361 if (!(envp
= (char **) kmalloc(20 * sizeof(char *), GFP_KERNEL
))) {
362 printk(KERN_ERR
"input.c: not enough memory allocating hotplug environment\n");
365 if (!(buf
= kmalloc(1024, GFP_KERNEL
))) {
367 printk(KERN_ERR
"input.c: not enough memory allocating hotplug environment\n");
371 argv
[0] = hotplug_path
;
375 envp
[i
++] = "HOME=/";
376 envp
[i
++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
381 scratch
+= sprintf(scratch
, "ACTION=%s", verb
) + 1;
384 scratch
+= sprintf(scratch
, "PRODUCT=%x/%x/%x/%x",
385 dev
->id
.bustype
, dev
->id
.vendor
, dev
->id
.product
, dev
->id
.version
) + 1;
389 scratch
+= sprintf(scratch
, "NAME=%s", dev
->name
) + 1;
394 scratch
+= sprintf(scratch
, "PHYS=%s", dev
->phys
) + 1;
397 SPRINTF_BIT_A(evbit
, "EV=", EV_MAX
);
398 SPRINTF_BIT_A2(keybit
, "KEY=", KEY_MAX
, EV_KEY
);
399 SPRINTF_BIT_A2(relbit
, "REL=", REL_MAX
, EV_REL
);
400 SPRINTF_BIT_A2(absbit
, "ABS=", ABS_MAX
, EV_ABS
);
401 SPRINTF_BIT_A2(mscbit
, "MSC=", MSC_MAX
, EV_MSC
);
402 SPRINTF_BIT_A2(ledbit
, "LED=", LED_MAX
, EV_LED
);
403 SPRINTF_BIT_A2(sndbit
, "SND=", SND_MAX
, EV_SND
);
404 SPRINTF_BIT_A2(ffbit
, "FF=", FF_MAX
, EV_FF
);
409 printk(KERN_DEBUG
"input.c: calling %s %s [%s %s %s %s %s]\n",
410 argv
[0], argv
[1], envp
[0], envp
[1], envp
[2], envp
[3], envp
[4]);
413 value
= call_usermodehelper(argv
[0], argv
, envp
, 0);
420 printk(KERN_DEBUG
"input.c: hotplug returned %d\n", value
);
426 #ifdef CONFIG_PROC_FS
428 static struct proc_dir_entry
*proc_bus_input_dir
;
429 static DECLARE_WAIT_QUEUE_HEAD(input_devices_poll_wait
);
430 static int input_devices_state
;
432 static inline void input_wakeup_procfs_readers(void)
434 input_devices_state
++;
435 wake_up(&input_devices_poll_wait
);
438 static unsigned int input_devices_poll(struct file
*file
, poll_table
*wait
)
440 int state
= input_devices_state
;
441 poll_wait(file
, &input_devices_poll_wait
, wait
);
442 if (state
!= input_devices_state
)
443 return POLLIN
| POLLRDNORM
;
447 #define SPRINTF_BIT_B(bit, name, max) \
449 len += sprintf(buf + len, "B: %s", name); \
450 for (i = NBITS(max) - 1; i >= 0; i--) \
451 if (dev->bit[i]) break; \
452 for (; i >= 0; i--) \
453 len += sprintf(buf + len, "%lx ", dev->bit[i]); \
454 len += sprintf(buf + len, "\n"); \
457 #define SPRINTF_BIT_B2(bit, name, max, ev) \
459 if (test_bit(ev, dev->evbit)) \
460 SPRINTF_BIT_B(bit, name, max); \
463 static int input_devices_read(char *buf
, char **start
, off_t pos
, int count
, int *eof
, void *data
)
465 struct input_dev
*dev
;
466 struct input_handle
*handle
;
471 list_for_each_entry(dev
, &input_dev_list
, node
) {
473 len
= sprintf(buf
, "I: Bus=%04x Vendor=%04x Product=%04x Version=%04x\n",
474 dev
->id
.bustype
, dev
->id
.vendor
, dev
->id
.product
, dev
->id
.version
);
476 len
+= sprintf(buf
+ len
, "N: Name=\"%s\"\n", dev
->name
? dev
->name
: "");
477 len
+= sprintf(buf
+ len
, "P: Phys=%s\n", dev
->phys
? dev
->phys
: "");
478 len
+= sprintf(buf
+ len
, "H: Handlers=");
480 list_for_each_entry(handle
, &dev
->h_list
, d_node
)
481 len
+= sprintf(buf
+ len
, "%s ", handle
->name
);
483 len
+= sprintf(buf
+ len
, "\n");
485 SPRINTF_BIT_B(evbit
, "EV=", EV_MAX
);
486 SPRINTF_BIT_B2(keybit
, "KEY=", KEY_MAX
, EV_KEY
);
487 SPRINTF_BIT_B2(relbit
, "REL=", REL_MAX
, EV_REL
);
488 SPRINTF_BIT_B2(absbit
, "ABS=", ABS_MAX
, EV_ABS
);
489 SPRINTF_BIT_B2(mscbit
, "MSC=", MSC_MAX
, EV_MSC
);
490 SPRINTF_BIT_B2(ledbit
, "LED=", LED_MAX
, EV_LED
);
491 SPRINTF_BIT_B2(sndbit
, "SND=", SND_MAX
, EV_SND
);
492 SPRINTF_BIT_B2(ffbit
, "FF=", FF_MAX
, EV_FF
);
494 len
+= sprintf(buf
+ len
, "\n");
500 *start
= buf
+ (pos
- (at
- len
));
509 if (&dev
->node
== &input_dev_list
)
512 return (count
> cnt
) ? cnt
: count
;
515 static int input_handlers_read(char *buf
, char **start
, off_t pos
, int count
, int *eof
, void *data
)
517 struct input_handler
*handler
;
520 int len
= 0, cnt
= 0;
523 list_for_each_entry(handler
, &input_handler_list
, node
) {
526 len
= sprintf(buf
, "N: Number=%d Name=%s Minor=%d\n",
527 i
++, handler
->name
, handler
->minor
);
529 len
= sprintf(buf
, "N: Number=%d Name=%s\n",
536 *start
= buf
+ (pos
- (at
- len
));
544 if (&handler
->node
== &input_handler_list
)
547 return (count
> cnt
) ? cnt
: count
;
550 static struct file_operations input_fileops
;
552 static int __init
input_proc_init(void)
554 struct proc_dir_entry
*entry
;
556 proc_bus_input_dir
= proc_mkdir("input", proc_bus
);
557 if (!proc_bus_input_dir
)
560 proc_bus_input_dir
->owner
= THIS_MODULE
;
562 entry
= create_proc_read_entry("devices", 0, proc_bus_input_dir
, input_devices_read
, NULL
);
566 entry
->owner
= THIS_MODULE
;
567 input_fileops
= *entry
->proc_fops
;
568 entry
->proc_fops
= &input_fileops
;
569 entry
->proc_fops
->poll
= input_devices_poll
;
571 entry
= create_proc_read_entry("handlers", 0, proc_bus_input_dir
, input_handlers_read
, NULL
);
575 entry
->owner
= THIS_MODULE
;
579 fail2
: remove_proc_entry("devices", proc_bus_input_dir
);
580 fail1
: remove_proc_entry("input", proc_bus
);
584 static void input_proc_exit(void)
586 remove_proc_entry("devices", proc_bus_input_dir
);
587 remove_proc_entry("handlers", proc_bus_input_dir
);
588 remove_proc_entry("input", proc_bus
);
591 #else /* !CONFIG_PROC_FS */
592 static inline void input_wakeup_procfs_readers(void) { }
593 static inline int input_proc_init(void) { return 0; }
594 static inline void input_proc_exit(void) { }
597 void input_register_device(struct input_dev
*dev
)
599 struct input_handle
*handle
;
600 struct input_handler
*handler
;
601 struct input_device_id
*id
;
603 set_bit(EV_SYN
, dev
->evbit
);
605 init_MUTEX(&dev
->sem
);
608 * If delay and period are pre-set by the driver, then autorepeating
609 * is handled by the driver itself and we don't do it in input.c.
612 init_timer(&dev
->timer
);
613 if (!dev
->rep
[REP_DELAY
] && !dev
->rep
[REP_PERIOD
]) {
614 dev
->timer
.data
= (long) dev
;
615 dev
->timer
.function
= input_repeat_key
;
616 dev
->rep
[REP_DELAY
] = 250;
617 dev
->rep
[REP_PERIOD
] = 33;
620 INIT_LIST_HEAD(&dev
->h_list
);
621 list_add_tail(&dev
->node
, &input_dev_list
);
623 list_for_each_entry(handler
, &input_handler_list
, node
)
624 if (!handler
->blacklist
|| !input_match_device(handler
->blacklist
, dev
))
625 if ((id
= input_match_device(handler
->id_table
, dev
)))
626 if ((handle
= handler
->connect(handler
, dev
, id
)))
627 input_link_handle(handle
);
629 #ifdef CONFIG_HOTPLUG
630 input_call_hotplug("add", dev
);
633 input_wakeup_procfs_readers();
636 void input_unregister_device(struct input_dev
*dev
)
638 struct list_head
* node
, * next
;
642 del_timer_sync(&dev
->timer
);
644 list_for_each_safe(node
, next
, &dev
->h_list
) {
645 struct input_handle
* handle
= to_handle(node
);
646 list_del_init(&handle
->d_node
);
647 list_del_init(&handle
->h_node
);
648 handle
->handler
->disconnect(handle
);
651 #ifdef CONFIG_HOTPLUG
652 input_call_hotplug("remove", dev
);
655 list_del_init(&dev
->node
);
657 input_wakeup_procfs_readers();
660 void input_register_handler(struct input_handler
*handler
)
662 struct input_dev
*dev
;
663 struct input_handle
*handle
;
664 struct input_device_id
*id
;
666 if (!handler
) return;
668 INIT_LIST_HEAD(&handler
->h_list
);
670 if (handler
->fops
!= NULL
)
671 input_table
[handler
->minor
>> 5] = handler
;
673 list_add_tail(&handler
->node
, &input_handler_list
);
675 list_for_each_entry(dev
, &input_dev_list
, node
)
676 if (!handler
->blacklist
|| !input_match_device(handler
->blacklist
, dev
))
677 if ((id
= input_match_device(handler
->id_table
, dev
)))
678 if ((handle
= handler
->connect(handler
, dev
, id
)))
679 input_link_handle(handle
);
681 input_wakeup_procfs_readers();
684 void input_unregister_handler(struct input_handler
*handler
)
686 struct list_head
* node
, * next
;
688 list_for_each_safe(node
, next
, &handler
->h_list
) {
689 struct input_handle
* handle
= to_handle_h(node
);
690 list_del_init(&handle
->h_node
);
691 list_del_init(&handle
->d_node
);
692 handler
->disconnect(handle
);
695 list_del_init(&handler
->node
);
697 if (handler
->fops
!= NULL
)
698 input_table
[handler
->minor
>> 5] = NULL
;
700 input_wakeup_procfs_readers();
703 static int input_open_file(struct inode
*inode
, struct file
*file
)
705 struct input_handler
*handler
= input_table
[iminor(inode
) >> 5];
706 struct file_operations
*old_fops
, *new_fops
= NULL
;
709 /* No load-on-demand here? */
710 if (!handler
|| !(new_fops
= fops_get(handler
->fops
)))
714 * That's _really_ odd. Usually NULL ->open means "nothing special",
715 * not "no device". Oh, well...
717 if (!new_fops
->open
) {
721 old_fops
= file
->f_op
;
722 file
->f_op
= new_fops
;
724 err
= new_fops
->open(inode
, file
);
727 fops_put(file
->f_op
);
728 file
->f_op
= fops_get(old_fops
);
734 static struct file_operations input_fops
= {
735 .owner
= THIS_MODULE
,
736 .open
= input_open_file
,
739 struct class *input_class
;
741 static int __init
input_init(void)
745 input_class
= class_create(THIS_MODULE
, "input");
746 if (IS_ERR(input_class
)) {
747 printk(KERN_ERR
"input: unable to register input class\n");
748 return PTR_ERR(input_class
);
751 err
= input_proc_init();
755 err
= register_chrdev(INPUT_MAJOR
, "input", &input_fops
);
757 printk(KERN_ERR
"input: unable to register char major %d", INPUT_MAJOR
);
761 err
= devfs_mk_dir("input");
767 fail3
: unregister_chrdev(INPUT_MAJOR
, "input");
768 fail2
: input_proc_exit();
769 fail1
: class_destroy(input_class
);
773 static void __exit
input_exit(void)
776 devfs_remove("input");
777 unregister_chrdev(INPUT_MAJOR
, "input");
778 class_destroy(input_class
);
781 subsys_initcall(input_init
);
782 module_exit(input_exit
);