2 * Input driver to ExplorerPS/2 device driver module.
4 * Copyright (c) 1999-2002 Vojtech Pavlik
5 * Copyright (c) 2004 Dmitry Torokhov
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as published by
9 * the Free Software Foundation.
12 #define MOUSEDEV_MINOR_BASE 32
13 #define MOUSEDEV_MINORS 32
14 #define MOUSEDEV_MIX 31
16 #include <linux/slab.h>
17 #include <linux/poll.h>
18 #include <linux/module.h>
19 #include <linux/moduleparam.h>
20 #include <linux/init.h>
21 #include <linux/input.h>
22 #include <linux/smp_lock.h>
23 #include <linux/random.h>
24 #include <linux/major.h>
25 #include <linux/device.h>
26 #ifdef CONFIG_INPUT_MOUSEDEV_PSAUX
27 #include <linux/miscdevice.h>
30 MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
31 MODULE_DESCRIPTION("Mouse (ExplorerPS/2) device interfaces");
32 MODULE_LICENSE("GPL");
34 #ifndef CONFIG_INPUT_MOUSEDEV_SCREEN_X
35 #define CONFIG_INPUT_MOUSEDEV_SCREEN_X 1024
37 #ifndef CONFIG_INPUT_MOUSEDEV_SCREEN_Y
38 #define CONFIG_INPUT_MOUSEDEV_SCREEN_Y 768
41 static int xres
= CONFIG_INPUT_MOUSEDEV_SCREEN_X
;
42 module_param(xres
, uint
, 0644);
43 MODULE_PARM_DESC(xres
, "Horizontal screen resolution");
45 static int yres
= CONFIG_INPUT_MOUSEDEV_SCREEN_Y
;
46 module_param(yres
, uint
, 0644);
47 MODULE_PARM_DESC(yres
, "Vertical screen resolution");
49 static unsigned tap_time
= 200;
50 module_param(tap_time
, uint
, 0644);
51 MODULE_PARM_DESC(tap_time
, "Tap time for touchpads in absolute mode (msecs)");
53 struct mousedev_hw_data
{
57 unsigned long buttons
;
65 wait_queue_head_t wait
;
66 struct list_head list
;
67 struct input_handle handle
;
69 struct mousedev_hw_data packet
;
70 unsigned int pkt_count
;
71 int old_x
[4], old_y
[4];
82 struct mousedev_motion
{
84 unsigned long buttons
;
87 #define PACKET_QUEUE_LEN 16
88 struct mousedev_list
{
89 struct fasync_struct
*fasync
;
90 struct mousedev
*mousedev
;
91 struct list_head node
;
93 struct mousedev_motion packets
[PACKET_QUEUE_LEN
];
94 unsigned int head
, tail
;
95 spinlock_t packet_lock
;
99 unsigned char ready
, buffer
, bufsiz
;
100 unsigned char imexseq
, impsseq
;
101 enum mousedev_emul mode
;
102 unsigned long last_buttons
;
105 #define MOUSEDEV_SEQ_LEN 6
107 static unsigned char mousedev_imps_seq
[] = { 0xf3, 200, 0xf3, 100, 0xf3, 80 };
108 static unsigned char mousedev_imex_seq
[] = { 0xf3, 200, 0xf3, 200, 0xf3, 80 };
110 static struct input_handler mousedev_handler
;
112 static struct mousedev
*mousedev_table
[MOUSEDEV_MINORS
];
113 static struct mousedev mousedev_mix
;
115 #define fx(i) (mousedev->old_x[(mousedev->pkt_count - (i)) & 03])
116 #define fy(i) (mousedev->old_y[(mousedev->pkt_count - (i)) & 03])
118 static void mousedev_touchpad_event(struct input_dev
*dev
, struct mousedev
*mousedev
, unsigned int code
, int value
)
121 enum { FRACTION_DENOM
= 128 };
123 if (mousedev
->touch
) {
124 size
= dev
->absmax
[ABS_X
] - dev
->absmin
[ABS_X
];
131 if (mousedev
->pkt_count
>= 2) {
132 tmp
= ((value
- fx(2)) * (256 * FRACTION_DENOM
)) / size
;
133 tmp
+= mousedev
->frac_dx
;
134 mousedev
->packet
.dx
= tmp
/ FRACTION_DENOM
;
135 mousedev
->frac_dx
= tmp
- mousedev
->packet
.dx
* FRACTION_DENOM
;
141 if (mousedev
->pkt_count
>= 2) {
142 tmp
= -((value
- fy(2)) * (256 * FRACTION_DENOM
)) / size
;
143 tmp
+= mousedev
->frac_dy
;
144 mousedev
->packet
.dy
= tmp
/ FRACTION_DENOM
;
145 mousedev
->frac_dy
= tmp
- mousedev
->packet
.dy
* FRACTION_DENOM
;
152 static void mousedev_abs_event(struct input_dev
*dev
, struct mousedev
*mousedev
, unsigned int code
, int value
)
158 size
= dev
->absmax
[ABS_X
] - dev
->absmin
[ABS_X
];
161 if (value
> dev
->absmax
[ABS_X
])
162 value
= dev
->absmax
[ABS_X
];
163 if (value
< dev
->absmin
[ABS_X
])
164 value
= dev
->absmin
[ABS_X
];
165 mousedev
->packet
.x
= ((value
- dev
->absmin
[ABS_X
]) * xres
) / size
;
166 mousedev
->packet
.abs_event
= 1;
170 size
= dev
->absmax
[ABS_Y
] - dev
->absmin
[ABS_Y
];
173 if (value
> dev
->absmax
[ABS_Y
])
174 value
= dev
->absmax
[ABS_Y
];
175 if (value
< dev
->absmin
[ABS_Y
])
176 value
= dev
->absmin
[ABS_Y
];
177 mousedev
->packet
.y
= yres
- ((value
- dev
->absmin
[ABS_Y
]) * yres
) / size
;
178 mousedev
->packet
.abs_event
= 1;
183 static void mousedev_rel_event(struct mousedev
*mousedev
, unsigned int code
, int value
)
186 case REL_X
: mousedev
->packet
.dx
+= value
; break;
187 case REL_Y
: mousedev
->packet
.dy
-= value
; break;
188 case REL_WHEEL
: mousedev
->packet
.dz
-= value
; break;
192 static void mousedev_key_event(struct mousedev
*mousedev
, unsigned int code
, int value
)
200 case BTN_LEFT
: index
= 0; break;
203 case BTN_RIGHT
: index
= 1; break;
206 case BTN_MIDDLE
: index
= 2; break;
209 case BTN_SIDE
: index
= 3; break;
211 case BTN_EXTRA
: index
= 4; break;
216 set_bit(index
, &mousedev
->packet
.buttons
);
217 set_bit(index
, &mousedev_mix
.packet
.buttons
);
219 clear_bit(index
, &mousedev
->packet
.buttons
);
220 clear_bit(index
, &mousedev_mix
.packet
.buttons
);
224 static void mousedev_notify_readers(struct mousedev
*mousedev
, struct mousedev_hw_data
*packet
)
226 struct mousedev_list
*list
;
227 struct mousedev_motion
*p
;
229 int wake_readers
= 0;
231 list_for_each_entry(list
, &mousedev
->list
, node
) {
232 spin_lock_irqsave(&list
->packet_lock
, flags
);
234 p
= &list
->packets
[list
->head
];
235 if (list
->ready
&& p
->buttons
!= mousedev
->packet
.buttons
) {
236 unsigned int new_head
= (list
->head
+ 1) % PACKET_QUEUE_LEN
;
237 if (new_head
!= list
->tail
) {
238 p
= &list
->packets
[list
->head
= new_head
];
239 memset(p
, 0, sizeof(struct mousedev_motion
));
243 if (packet
->abs_event
) {
244 p
->dx
+= packet
->x
- list
->pos_x
;
245 p
->dy
+= packet
->y
- list
->pos_y
;
246 list
->pos_x
= packet
->x
;
247 list
->pos_y
= packet
->y
;
250 list
->pos_x
+= packet
->dx
;
251 list
->pos_x
= list
->pos_x
< 0 ? 0 : (list
->pos_x
>= xres
? xres
: list
->pos_x
);
252 list
->pos_y
+= packet
->dy
;
253 list
->pos_y
= list
->pos_y
< 0 ? 0 : (list
->pos_y
>= yres
? yres
: list
->pos_y
);
258 p
->buttons
= mousedev
->packet
.buttons
;
260 if (p
->dx
|| p
->dy
|| p
->dz
|| p
->buttons
!= list
->last_buttons
)
263 spin_unlock_irqrestore(&list
->packet_lock
, flags
);
266 kill_fasync(&list
->fasync
, SIGIO
, POLL_IN
);
272 wake_up_interruptible(&mousedev
->wait
);
275 static void mousedev_touchpad_touch(struct mousedev
*mousedev
, int value
)
278 if (mousedev
->touch
&&
279 time_before(jiffies
, mousedev
->touch
+ msecs_to_jiffies(tap_time
))) {
281 * Toggle left button to emulate tap.
282 * We rely on the fact that mousedev_mix always has 0
283 * motion packet so we won't mess current position.
285 set_bit(0, &mousedev
->packet
.buttons
);
286 set_bit(0, &mousedev_mix
.packet
.buttons
);
287 mousedev_notify_readers(mousedev
, &mousedev_mix
.packet
);
288 mousedev_notify_readers(&mousedev_mix
, &mousedev_mix
.packet
);
289 clear_bit(0, &mousedev
->packet
.buttons
);
290 clear_bit(0, &mousedev_mix
.packet
.buttons
);
292 mousedev
->touch
= mousedev
->pkt_count
= 0;
293 mousedev
->frac_dx
= 0;
294 mousedev
->frac_dy
= 0;
296 } else if (!mousedev
->touch
)
297 mousedev
->touch
= jiffies
;
300 static void mousedev_event(struct input_handle
*handle
, unsigned int type
, unsigned int code
, int value
)
302 struct mousedev
*mousedev
= handle
->private;
306 /* Ignore joysticks */
307 if (test_bit(BTN_TRIGGER
, handle
->dev
->keybit
))
310 if (test_bit(BTN_TOOL_FINGER
, handle
->dev
->keybit
))
311 mousedev_touchpad_event(handle
->dev
, mousedev
, code
, value
);
313 mousedev_abs_event(handle
->dev
, mousedev
, code
, value
);
318 mousedev_rel_event(mousedev
, code
, value
);
323 if (code
== BTN_TOUCH
&& test_bit(BTN_TOOL_FINGER
, handle
->dev
->keybit
))
324 mousedev_touchpad_touch(mousedev
, value
);
326 mousedev_key_event(mousedev
, code
, value
);
331 if (code
== SYN_REPORT
) {
332 if (mousedev
->touch
) {
333 mousedev
->pkt_count
++;
334 /* Input system eats duplicate events, but we need all of them
335 * to do correct averaging so apply present one forward
341 mousedev_notify_readers(mousedev
, &mousedev
->packet
);
342 mousedev_notify_readers(&mousedev_mix
, &mousedev
->packet
);
344 mousedev
->packet
.dx
= mousedev
->packet
.dy
= mousedev
->packet
.dz
= 0;
345 mousedev
->packet
.abs_event
= 0;
351 static int mousedev_fasync(int fd
, struct file
*file
, int on
)
354 struct mousedev_list
*list
= file
->private_data
;
356 retval
= fasync_helper(fd
, file
, on
, &list
->fasync
);
358 return retval
< 0 ? retval
: 0;
361 static void mousedev_free(struct mousedev
*mousedev
)
363 mousedev_table
[mousedev
->minor
] = NULL
;
367 static void mixdev_release(void)
369 struct input_handle
*handle
;
371 list_for_each_entry(handle
, &mousedev_handler
.h_list
, h_node
) {
372 struct mousedev
*mousedev
= handle
->private;
374 if (!mousedev
->open
) {
376 input_close_device(&mousedev
->handle
);
378 mousedev_free(mousedev
);
383 static int mousedev_release(struct inode
* inode
, struct file
* file
)
385 struct mousedev_list
*list
= file
->private_data
;
387 mousedev_fasync(-1, file
, 0);
389 list_del(&list
->node
);
391 if (!--list
->mousedev
->open
) {
392 if (list
->mousedev
->minor
== MOUSEDEV_MIX
)
394 else if (!mousedev_mix
.open
) {
395 if (list
->mousedev
->exist
)
396 input_close_device(&list
->mousedev
->handle
);
398 mousedev_free(list
->mousedev
);
406 static int mousedev_open(struct inode
* inode
, struct file
* file
)
408 struct mousedev_list
*list
;
409 struct input_handle
*handle
;
410 struct mousedev
*mousedev
;
413 #ifdef CONFIG_INPUT_MOUSEDEV_PSAUX
414 if (imajor(inode
) == MISC_MAJOR
)
418 i
= iminor(inode
) - MOUSEDEV_MINOR_BASE
;
420 if (i
>= MOUSEDEV_MINORS
|| !mousedev_table
[i
])
423 if (!(list
= kzalloc(sizeof(struct mousedev_list
), GFP_KERNEL
)))
426 spin_lock_init(&list
->packet_lock
);
427 list
->pos_x
= xres
/ 2;
428 list
->pos_y
= yres
/ 2;
429 list
->mousedev
= mousedev_table
[i
];
430 list_add_tail(&list
->node
, &mousedev_table
[i
]->list
);
431 file
->private_data
= list
;
433 if (!list
->mousedev
->open
++) {
434 if (list
->mousedev
->minor
== MOUSEDEV_MIX
) {
435 list_for_each_entry(handle
, &mousedev_handler
.h_list
, h_node
) {
436 mousedev
= handle
->private;
437 if (!mousedev
->open
&& mousedev
->exist
)
438 input_open_device(handle
);
441 if (!mousedev_mix
.open
&& list
->mousedev
->exist
)
442 input_open_device(&list
->mousedev
->handle
);
448 static inline int mousedev_limit_delta(int delta
, int limit
)
450 return delta
> limit
? limit
: (delta
< -limit
? -limit
: delta
);
453 static void mousedev_packet(struct mousedev_list
*list
, signed char *ps2_data
)
455 struct mousedev_motion
*p
;
458 spin_lock_irqsave(&list
->packet_lock
, flags
);
459 p
= &list
->packets
[list
->tail
];
461 ps2_data
[0] = 0x08 | ((p
->dx
< 0) << 4) | ((p
->dy
< 0) << 5) | (p
->buttons
& 0x07);
462 ps2_data
[1] = mousedev_limit_delta(p
->dx
, 127);
463 ps2_data
[2] = mousedev_limit_delta(p
->dy
, 127);
464 p
->dx
-= ps2_data
[1];
465 p
->dy
-= ps2_data
[2];
467 switch (list
->mode
) {
468 case MOUSEDEV_EMUL_EXPS
:
469 ps2_data
[3] = mousedev_limit_delta(p
->dz
, 7);
470 p
->dz
-= ps2_data
[3];
471 ps2_data
[3] = (ps2_data
[3] & 0x0f) | ((p
->buttons
& 0x18) << 1);
475 case MOUSEDEV_EMUL_IMPS
:
476 ps2_data
[0] |= ((p
->buttons
& 0x10) >> 3) | ((p
->buttons
& 0x08) >> 1);
477 ps2_data
[3] = mousedev_limit_delta(p
->dz
, 127);
478 p
->dz
-= ps2_data
[3];
482 case MOUSEDEV_EMUL_PS2
:
484 ps2_data
[0] |= ((p
->buttons
& 0x10) >> 3) | ((p
->buttons
& 0x08) >> 1);
490 if (!p
->dx
&& !p
->dy
&& !p
->dz
) {
491 if (list
->tail
== list
->head
) {
493 list
->last_buttons
= p
->buttons
;
495 list
->tail
= (list
->tail
+ 1) % PACKET_QUEUE_LEN
;
498 spin_unlock_irqrestore(&list
->packet_lock
, flags
);
502 static ssize_t
mousedev_write(struct file
* file
, const char __user
* buffer
, size_t count
, loff_t
*ppos
)
504 struct mousedev_list
*list
= file
->private_data
;
508 for (i
= 0; i
< count
; i
++) {
510 if (get_user(c
, buffer
+ i
))
513 if (c
== mousedev_imex_seq
[list
->imexseq
]) {
514 if (++list
->imexseq
== MOUSEDEV_SEQ_LEN
) {
516 list
->mode
= MOUSEDEV_EMUL_EXPS
;
521 if (c
== mousedev_imps_seq
[list
->impsseq
]) {
522 if (++list
->impsseq
== MOUSEDEV_SEQ_LEN
) {
524 list
->mode
= MOUSEDEV_EMUL_IMPS
;
533 case 0xeb: /* Poll */
534 mousedev_packet(list
, &list
->ps2
[1]);
535 list
->bufsiz
++; /* account for leading ACK */
538 case 0xf2: /* Get ID */
539 switch (list
->mode
) {
540 case MOUSEDEV_EMUL_PS2
: list
->ps2
[1] = 0; break;
541 case MOUSEDEV_EMUL_IMPS
: list
->ps2
[1] = 3; break;
542 case MOUSEDEV_EMUL_EXPS
: list
->ps2
[1] = 4; break;
547 case 0xe9: /* Get info */
548 list
->ps2
[1] = 0x60; list
->ps2
[2] = 3; list
->ps2
[3] = 200;
552 case 0xff: /* Reset */
553 list
->impsseq
= list
->imexseq
= 0;
554 list
->mode
= MOUSEDEV_EMUL_PS2
;
555 list
->ps2
[1] = 0xaa; list
->ps2
[2] = 0x00;
564 list
->buffer
= list
->bufsiz
;
567 kill_fasync(&list
->fasync
, SIGIO
, POLL_IN
);
569 wake_up_interruptible(&list
->mousedev
->wait
);
574 static ssize_t
mousedev_read(struct file
* file
, char __user
* buffer
, size_t count
, loff_t
*ppos
)
576 struct mousedev_list
*list
= file
->private_data
;
579 if (!list
->ready
&& !list
->buffer
&& (file
->f_flags
& O_NONBLOCK
))
582 retval
= wait_event_interruptible(list
->mousedev
->wait
,
583 !list
->mousedev
->exist
|| list
->ready
|| list
->buffer
);
588 if (!list
->mousedev
->exist
)
591 if (!list
->buffer
&& list
->ready
) {
592 mousedev_packet(list
, list
->ps2
);
593 list
->buffer
= list
->bufsiz
;
596 if (count
> list
->buffer
)
597 count
= list
->buffer
;
599 list
->buffer
-= count
;
601 if (copy_to_user(buffer
, list
->ps2
+ list
->bufsiz
- list
->buffer
- count
, count
))
607 /* No kernel lock - fine */
608 static unsigned int mousedev_poll(struct file
*file
, poll_table
*wait
)
610 struct mousedev_list
*list
= file
->private_data
;
612 poll_wait(file
, &list
->mousedev
->wait
, wait
);
613 return ((list
->ready
|| list
->buffer
) ? (POLLIN
| POLLRDNORM
) : 0) |
614 (list
->mousedev
->exist
? 0 : (POLLHUP
| POLLERR
));
617 static const struct file_operations mousedev_fops
= {
618 .owner
= THIS_MODULE
,
619 .read
= mousedev_read
,
620 .write
= mousedev_write
,
621 .poll
= mousedev_poll
,
622 .open
= mousedev_open
,
623 .release
= mousedev_release
,
624 .fasync
= mousedev_fasync
,
627 static struct input_handle
*mousedev_connect(struct input_handler
*handler
, struct input_dev
*dev
,
628 const struct input_device_id
*id
)
630 struct mousedev
*mousedev
;
631 struct class_device
*cdev
;
634 for (minor
= 0; minor
< MOUSEDEV_MINORS
&& mousedev_table
[minor
]; minor
++);
635 if (minor
== MOUSEDEV_MINORS
) {
636 printk(KERN_ERR
"mousedev: no more free mousedev devices\n");
640 if (!(mousedev
= kzalloc(sizeof(struct mousedev
), GFP_KERNEL
)))
643 INIT_LIST_HEAD(&mousedev
->list
);
644 init_waitqueue_head(&mousedev
->wait
);
646 mousedev
->minor
= minor
;
648 mousedev
->handle
.dev
= dev
;
649 mousedev
->handle
.name
= mousedev
->name
;
650 mousedev
->handle
.handler
= handler
;
651 mousedev
->handle
.private = mousedev
;
652 sprintf(mousedev
->name
, "mouse%d", minor
);
654 if (mousedev_mix
.open
)
655 input_open_device(&mousedev
->handle
);
657 mousedev_table
[minor
] = mousedev
;
659 cdev
= class_device_create(&input_class
, &dev
->cdev
,
660 MKDEV(INPUT_MAJOR
, MOUSEDEV_MINOR_BASE
+ minor
),
661 dev
->cdev
.dev
, mousedev
->name
);
663 /* temporary symlink to keep userspace happy */
664 sysfs_create_link(&input_class
.subsys
.kset
.kobj
, &cdev
->kobj
,
667 return &mousedev
->handle
;
670 static void mousedev_disconnect(struct input_handle
*handle
)
672 struct mousedev
*mousedev
= handle
->private;
673 struct mousedev_list
*list
;
675 sysfs_remove_link(&input_class
.subsys
.kset
.kobj
, mousedev
->name
);
676 class_device_destroy(&input_class
,
677 MKDEV(INPUT_MAJOR
, MOUSEDEV_MINOR_BASE
+ mousedev
->minor
));
680 if (mousedev
->open
) {
681 input_close_device(handle
);
682 wake_up_interruptible(&mousedev
->wait
);
683 list_for_each_entry(list
, &mousedev
->list
, node
)
684 kill_fasync(&list
->fasync
, SIGIO
, POLL_HUP
);
686 if (mousedev_mix
.open
)
687 input_close_device(handle
);
688 mousedev_free(mousedev
);
692 static const struct input_device_id mousedev_ids
[] = {
694 .flags
= INPUT_DEVICE_ID_MATCH_EVBIT
| INPUT_DEVICE_ID_MATCH_KEYBIT
| INPUT_DEVICE_ID_MATCH_RELBIT
,
695 .evbit
= { BIT(EV_KEY
) | BIT(EV_REL
) },
696 .keybit
= { [LONG(BTN_LEFT
)] = BIT(BTN_LEFT
) },
697 .relbit
= { BIT(REL_X
) | BIT(REL_Y
) },
698 }, /* A mouse like device, at least one button, two relative axes */
700 .flags
= INPUT_DEVICE_ID_MATCH_EVBIT
| INPUT_DEVICE_ID_MATCH_RELBIT
,
701 .evbit
= { BIT(EV_KEY
) | BIT(EV_REL
) },
702 .relbit
= { BIT(REL_WHEEL
) },
703 }, /* A separate scrollwheel */
705 .flags
= INPUT_DEVICE_ID_MATCH_EVBIT
| INPUT_DEVICE_ID_MATCH_KEYBIT
| INPUT_DEVICE_ID_MATCH_ABSBIT
,
706 .evbit
= { BIT(EV_KEY
) | BIT(EV_ABS
) },
707 .keybit
= { [LONG(BTN_TOUCH
)] = BIT(BTN_TOUCH
) },
708 .absbit
= { BIT(ABS_X
) | BIT(ABS_Y
) },
709 }, /* A tablet like device, at least touch detection, two absolute axes */
711 .flags
= INPUT_DEVICE_ID_MATCH_EVBIT
| INPUT_DEVICE_ID_MATCH_KEYBIT
| INPUT_DEVICE_ID_MATCH_ABSBIT
,
712 .evbit
= { BIT(EV_KEY
) | BIT(EV_ABS
) },
713 .keybit
= { [LONG(BTN_TOOL_FINGER
)] = BIT(BTN_TOOL_FINGER
) },
714 .absbit
= { BIT(ABS_X
) | BIT(ABS_Y
) | BIT(ABS_PRESSURE
) | BIT(ABS_TOOL_WIDTH
) },
717 { }, /* Terminating entry */
720 MODULE_DEVICE_TABLE(input
, mousedev_ids
);
722 static struct input_handler mousedev_handler
= {
723 .event
= mousedev_event
,
724 .connect
= mousedev_connect
,
725 .disconnect
= mousedev_disconnect
,
726 .fops
= &mousedev_fops
,
727 .minor
= MOUSEDEV_MINOR_BASE
,
729 .id_table
= mousedev_ids
,
732 #ifdef CONFIG_INPUT_MOUSEDEV_PSAUX
733 static struct miscdevice psaux_mouse
= {
734 PSMOUSE_MINOR
, "psaux", &mousedev_fops
736 static int psaux_registered
;
739 static int __init
mousedev_init(void)
741 struct class_device
*cdev
;
744 error
= input_register_handler(&mousedev_handler
);
748 memset(&mousedev_mix
, 0, sizeof(struct mousedev
));
749 INIT_LIST_HEAD(&mousedev_mix
.list
);
750 init_waitqueue_head(&mousedev_mix
.wait
);
751 mousedev_table
[MOUSEDEV_MIX
] = &mousedev_mix
;
752 mousedev_mix
.exist
= 1;
753 mousedev_mix
.minor
= MOUSEDEV_MIX
;
755 cdev
= class_device_create(&input_class
, NULL
,
756 MKDEV(INPUT_MAJOR
, MOUSEDEV_MINOR_BASE
+ MOUSEDEV_MIX
), NULL
, "mice");
758 input_unregister_handler(&mousedev_handler
);
759 return PTR_ERR(cdev
);
762 #ifdef CONFIG_INPUT_MOUSEDEV_PSAUX
763 error
= misc_register(&psaux_mouse
);
765 printk(KERN_WARNING
"mice: could not register psaux device, "
766 "error: %d\n", error
);
768 psaux_registered
= 1;
771 printk(KERN_INFO
"mice: PS/2 mouse device common for all mice\n");
776 static void __exit
mousedev_exit(void)
778 #ifdef CONFIG_INPUT_MOUSEDEV_PSAUX
779 if (psaux_registered
)
780 misc_deregister(&psaux_mouse
);
782 class_device_destroy(&input_class
,
783 MKDEV(INPUT_MAJOR
, MOUSEDEV_MINOR_BASE
+ MOUSEDEV_MIX
));
784 input_unregister_handler(&mousedev_handler
);
787 module_init(mousedev_init
);
788 module_exit(mousedev_exit
);