2 * Joystick device driver for the input driver suite.
4 * Copyright (c) 1999-2002 Vojtech Pavlik
5 * Copyright (c) 1999 Colin Van Dyke
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
14 #include <asm/system.h>
15 #include <linux/delay.h>
16 #include <linux/errno.h>
17 #include <linux/joystick.h>
18 #include <linux/input.h>
19 #include <linux/kernel.h>
20 #include <linux/major.h>
21 #include <linux/slab.h>
23 #include <linux/miscdevice.h>
24 #include <linux/module.h>
25 #include <linux/poll.h>
26 #include <linux/init.h>
27 #include <linux/device.h>
29 MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
30 MODULE_DESCRIPTION("Joystick device interfaces");
31 MODULE_SUPPORTED_DEVICE("input/js");
32 MODULE_LICENSE("GPL");
34 #define JOYDEV_MINOR_BASE 0
35 #define JOYDEV_MINORS 16
36 #define JOYDEV_BUFFER_SIZE 64
43 struct input_handle handle
;
44 wait_queue_head_t wait
;
45 struct list_head client_list
;
46 struct js_corr corr
[ABS_MAX
+ 1];
47 struct JS_DATA_SAVE_TYPE glue
;
50 __u16 keymap
[KEY_MAX
- BTN_MISC
+ 1];
51 __u16 keypam
[KEY_MAX
- BTN_MISC
+ 1];
52 __u8 absmap
[ABS_MAX
+ 1];
53 __u8 abspam
[ABS_MAX
+ 1];
54 __s16 abs
[ABS_MAX
+ 1];
57 struct joydev_client
{
58 struct js_event buffer
[JOYDEV_BUFFER_SIZE
];
62 struct fasync_struct
*fasync
;
63 struct joydev
*joydev
;
64 struct list_head node
;
67 static struct joydev
*joydev_table
[JOYDEV_MINORS
];
69 static int joydev_correct(int value
, struct js_corr
*corr
)
75 value
= value
> corr
->coef
[0] ? (value
< corr
->coef
[1] ? 0 :
76 ((corr
->coef
[3] * (value
- corr
->coef
[1])) >> 14)) :
77 ((corr
->coef
[2] * (value
- corr
->coef
[0])) >> 14);
83 return value
< -32767 ? -32767 : (value
> 32767 ? 32767 : value
);
86 static void joydev_event(struct input_handle
*handle
, unsigned int type
, unsigned int code
, int value
)
88 struct joydev
*joydev
= handle
->private;
89 struct joydev_client
*client
;
90 struct js_event event
;
95 if (code
< BTN_MISC
|| value
== 2)
97 event
.type
= JS_EVENT_BUTTON
;
98 event
.number
= joydev
->keymap
[code
- BTN_MISC
];
103 event
.type
= JS_EVENT_AXIS
;
104 event
.number
= joydev
->absmap
[code
];
105 event
.value
= joydev_correct(value
, joydev
->corr
+ event
.number
);
106 if (event
.value
== joydev
->abs
[event
.number
])
108 joydev
->abs
[event
.number
] = event
.value
;
115 event
.time
= jiffies_to_msecs(jiffies
);
117 list_for_each_entry(client
, &joydev
->client_list
, node
) {
119 memcpy(client
->buffer
+ client
->head
, &event
, sizeof(struct js_event
));
121 if (client
->startup
== joydev
->nabs
+ joydev
->nkey
)
122 if (client
->tail
== (client
->head
= (client
->head
+ 1) & (JOYDEV_BUFFER_SIZE
- 1)))
125 kill_fasync(&client
->fasync
, SIGIO
, POLL_IN
);
128 wake_up_interruptible(&joydev
->wait
);
131 static int joydev_fasync(int fd
, struct file
*file
, int on
)
134 struct joydev_client
*client
= file
->private_data
;
136 retval
= fasync_helper(fd
, file
, on
, &client
->fasync
);
138 return retval
< 0 ? retval
: 0;
141 static void joydev_free(struct joydev
*joydev
)
143 joydev_table
[joydev
->minor
] = NULL
;
147 static int joydev_release(struct inode
*inode
, struct file
*file
)
149 struct joydev_client
*client
= file
->private_data
;
150 struct joydev
*joydev
= client
->joydev
;
152 joydev_fasync(-1, file
, 0);
154 list_del(&client
->node
);
157 if (!--joydev
->open
) {
159 input_close_device(&joydev
->handle
);
167 static int joydev_open(struct inode
*inode
, struct file
*file
)
169 struct joydev_client
*client
;
170 struct joydev
*joydev
;
171 int i
= iminor(inode
) - JOYDEV_MINOR_BASE
;
174 if (i
>= JOYDEV_MINORS
)
177 joydev
= joydev_table
[i
];
178 if (!joydev
|| !joydev
->exist
)
181 client
= kzalloc(sizeof(struct joydev_client
), GFP_KERNEL
);
185 client
->joydev
= joydev
;
186 list_add_tail(&client
->node
, &joydev
->client_list
);
188 if (!joydev
->open
++ && joydev
->exist
) {
189 error
= input_open_device(&joydev
->handle
);
191 list_del(&client
->node
);
197 file
->private_data
= client
;
201 static ssize_t
joydev_write(struct file
*file
, const char __user
*buffer
, size_t count
, loff_t
*ppos
)
206 static ssize_t
joydev_read(struct file
*file
, char __user
*buf
, size_t count
, loff_t
*ppos
)
208 struct joydev_client
*client
= file
->private_data
;
209 struct joydev
*joydev
= client
->joydev
;
210 struct input_dev
*input
= joydev
->handle
.dev
;
216 if (count
< sizeof(struct js_event
))
219 if (count
== sizeof(struct JS_DATA_TYPE
)) {
221 struct JS_DATA_TYPE data
;
224 for (data
.buttons
= i
= 0; i
< 32 && i
< joydev
->nkey
; i
++)
225 data
.buttons
|= test_bit(joydev
->keypam
[i
], input
->key
) ? (1 << i
) : 0;
226 data
.x
= (joydev
->abs
[0] / 256 + 128) >> joydev
->glue
.JS_CORR
.x
;
227 data
.y
= (joydev
->abs
[1] / 256 + 128) >> joydev
->glue
.JS_CORR
.y
;
229 if (copy_to_user(buf
, &data
, sizeof(struct JS_DATA_TYPE
)))
233 client
->tail
= client
->head
;
235 return sizeof(struct JS_DATA_TYPE
);
238 if (client
->startup
== joydev
->nabs
+ joydev
->nkey
&&
239 client
->head
== client
->tail
&& (file
->f_flags
& O_NONBLOCK
))
242 retval
= wait_event_interruptible(joydev
->wait
,
244 client
->startup
< joydev
->nabs
+ joydev
->nkey
||
245 client
->head
!= client
->tail
);
252 while (client
->startup
< joydev
->nabs
+ joydev
->nkey
&& retval
+ sizeof(struct js_event
) <= count
) {
254 struct js_event event
;
256 event
.time
= jiffies_to_msecs(jiffies
);
258 if (client
->startup
< joydev
->nkey
) {
259 event
.type
= JS_EVENT_BUTTON
| JS_EVENT_INIT
;
260 event
.number
= client
->startup
;
261 event
.value
= !!test_bit(joydev
->keypam
[event
.number
], input
->key
);
263 event
.type
= JS_EVENT_AXIS
| JS_EVENT_INIT
;
264 event
.number
= client
->startup
- joydev
->nkey
;
265 event
.value
= joydev
->abs
[event
.number
];
268 if (copy_to_user(buf
+ retval
, &event
, sizeof(struct js_event
)))
272 retval
+= sizeof(struct js_event
);
275 while (client
->head
!= client
->tail
&& retval
+ sizeof(struct js_event
) <= count
) {
277 if (copy_to_user(buf
+ retval
, client
->buffer
+ client
->tail
, sizeof(struct js_event
)))
280 client
->tail
= (client
->tail
+ 1) & (JOYDEV_BUFFER_SIZE
- 1);
281 retval
+= sizeof(struct js_event
);
287 /* No kernel lock - fine */
288 static unsigned int joydev_poll(struct file
*file
, poll_table
*wait
)
290 struct joydev_client
*client
= file
->private_data
;
291 struct joydev
*joydev
= client
->joydev
;
293 poll_wait(file
, &joydev
->wait
, wait
);
294 return ((client
->head
!= client
->tail
|| client
->startup
< joydev
->nabs
+ joydev
->nkey
) ?
295 (POLLIN
| POLLRDNORM
) : 0) | (joydev
->exist
? 0 : (POLLHUP
| POLLERR
));
298 static int joydev_ioctl_common(struct joydev
*joydev
, unsigned int cmd
, void __user
*argp
)
300 struct input_dev
*dev
= joydev
->handle
.dev
;
306 return copy_from_user(&joydev
->glue
.JS_CORR
, argp
,
307 sizeof(joydev
->glue
.JS_CORR
)) ? -EFAULT
: 0;
310 return copy_to_user(argp
, &joydev
->glue
.JS_CORR
,
311 sizeof(joydev
->glue
.JS_CORR
)) ? -EFAULT
: 0;
314 return get_user(joydev
->glue
.JS_TIMEOUT
, (s32 __user
*) argp
);
317 return put_user(joydev
->glue
.JS_TIMEOUT
, (s32 __user
*) argp
);
320 return put_user(JS_VERSION
, (__u32 __user
*) argp
);
323 return put_user(joydev
->nabs
, (__u8 __user
*) argp
);
326 return put_user(joydev
->nkey
, (__u8 __user
*) argp
);
329 if (copy_from_user(joydev
->corr
, argp
,
330 sizeof(joydev
->corr
[0]) * joydev
->nabs
))
332 for (i
= 0; i
< joydev
->nabs
; i
++) {
333 j
= joydev
->abspam
[i
];
334 joydev
->abs
[i
] = joydev_correct(dev
->abs
[j
], joydev
->corr
+ i
);
339 return copy_to_user(argp
, joydev
->corr
,
340 sizeof(joydev
->corr
[0]) * joydev
->nabs
) ? -EFAULT
: 0;
343 if (copy_from_user(joydev
->abspam
, argp
, sizeof(__u8
) * (ABS_MAX
+ 1)))
345 for (i
= 0; i
< joydev
->nabs
; i
++) {
346 if (joydev
->abspam
[i
] > ABS_MAX
)
348 joydev
->absmap
[joydev
->abspam
[i
]] = i
;
353 return copy_to_user(argp
, joydev
->abspam
,
354 sizeof(__u8
) * (ABS_MAX
+ 1)) ? -EFAULT
: 0;
357 if (copy_from_user(joydev
->keypam
, argp
, sizeof(__u16
) * (KEY_MAX
- BTN_MISC
+ 1)))
359 for (i
= 0; i
< joydev
->nkey
; i
++) {
360 if (joydev
->keypam
[i
] > KEY_MAX
|| joydev
->keypam
[i
] < BTN_MISC
)
362 joydev
->keymap
[joydev
->keypam
[i
] - BTN_MISC
] = i
;
367 return copy_to_user(argp
, joydev
->keypam
,
368 sizeof(__u16
) * (KEY_MAX
- BTN_MISC
+ 1)) ? -EFAULT
: 0;
371 if ((cmd
& ~(_IOC_SIZEMASK
<< _IOC_SIZESHIFT
)) == JSIOCGNAME(0)) {
375 len
= strlen(dev
->name
) + 1;
376 if (len
> _IOC_SIZE(cmd
))
377 len
= _IOC_SIZE(cmd
);
378 if (copy_to_user(argp
, dev
->name
, len
))
387 static long joydev_compat_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
389 struct joydev_client
*client
= file
->private_data
;
390 struct joydev
*joydev
= client
->joydev
;
391 void __user
*argp
= (void __user
*)arg
;
393 struct JS_DATA_SAVE_TYPE_32 ds32
;
400 case JS_SET_TIMELIMIT
:
401 err
= get_user(tmp32
, (s32 __user
*) arg
);
403 joydev
->glue
.JS_TIMELIMIT
= tmp32
;
405 case JS_GET_TIMELIMIT
:
406 tmp32
= joydev
->glue
.JS_TIMELIMIT
;
407 err
= put_user(tmp32
, (s32 __user
*) arg
);
411 err
= copy_from_user(&ds32
, argp
,
412 sizeof(ds32
)) ? -EFAULT
: 0;
414 joydev
->glue
.JS_TIMEOUT
= ds32
.JS_TIMEOUT
;
415 joydev
->glue
.BUSY
= ds32
.BUSY
;
416 joydev
->glue
.JS_EXPIRETIME
= ds32
.JS_EXPIRETIME
;
417 joydev
->glue
.JS_TIMELIMIT
= ds32
.JS_TIMELIMIT
;
418 joydev
->glue
.JS_SAVE
= ds32
.JS_SAVE
;
419 joydev
->glue
.JS_CORR
= ds32
.JS_CORR
;
424 ds32
.JS_TIMEOUT
= joydev
->glue
.JS_TIMEOUT
;
425 ds32
.BUSY
= joydev
->glue
.BUSY
;
426 ds32
.JS_EXPIRETIME
= joydev
->glue
.JS_EXPIRETIME
;
427 ds32
.JS_TIMELIMIT
= joydev
->glue
.JS_TIMELIMIT
;
428 ds32
.JS_SAVE
= joydev
->glue
.JS_SAVE
;
429 ds32
.JS_CORR
= joydev
->glue
.JS_CORR
;
431 err
= copy_to_user(argp
, &ds32
, sizeof(ds32
)) ? -EFAULT
: 0;
435 err
= joydev_ioctl_common(joydev
, cmd
, argp
);
439 #endif /* CONFIG_COMPAT */
441 static int joydev_ioctl(struct inode
*inode
, struct file
*file
, unsigned int cmd
, unsigned long arg
)
443 struct joydev_client
*client
= file
->private_data
;
444 struct joydev
*joydev
= client
->joydev
;
445 void __user
*argp
= (void __user
*)arg
;
451 case JS_SET_TIMELIMIT
:
452 return get_user(joydev
->glue
.JS_TIMELIMIT
, (long __user
*) arg
);
453 case JS_GET_TIMELIMIT
:
454 return put_user(joydev
->glue
.JS_TIMELIMIT
, (long __user
*) arg
);
456 return copy_from_user(&joydev
->glue
, argp
,
457 sizeof(joydev
->glue
)) ? -EFAULT
: 0;
459 return copy_to_user(argp
, &joydev
->glue
,
460 sizeof(joydev
->glue
)) ? -EFAULT
: 0;
462 return joydev_ioctl_common(joydev
, cmd
, argp
);
466 static const struct file_operations joydev_fops
= {
467 .owner
= THIS_MODULE
,
469 .write
= joydev_write
,
472 .release
= joydev_release
,
473 .ioctl
= joydev_ioctl
,
475 .compat_ioctl
= joydev_compat_ioctl
,
477 .fasync
= joydev_fasync
,
480 static int joydev_connect(struct input_handler
*handler
, struct input_dev
*dev
,
481 const struct input_device_id
*id
)
483 struct joydev
*joydev
;
484 struct class_device
*cdev
;
489 for (minor
= 0; minor
< JOYDEV_MINORS
&& joydev_table
[minor
]; minor
++);
490 if (minor
== JOYDEV_MINORS
) {
491 printk(KERN_ERR
"joydev: no more free joydev devices\n");
495 joydev
= kzalloc(sizeof(struct joydev
), GFP_KERNEL
);
499 INIT_LIST_HEAD(&joydev
->client_list
);
500 init_waitqueue_head(&joydev
->wait
);
502 joydev
->minor
= minor
;
504 joydev
->handle
.dev
= dev
;
505 joydev
->handle
.name
= joydev
->name
;
506 joydev
->handle
.handler
= handler
;
507 joydev
->handle
.private = joydev
;
508 sprintf(joydev
->name
, "js%d", minor
);
510 for (i
= 0; i
< ABS_MAX
+ 1; i
++)
511 if (test_bit(i
, dev
->absbit
)) {
512 joydev
->absmap
[i
] = joydev
->nabs
;
513 joydev
->abspam
[joydev
->nabs
] = i
;
517 for (i
= BTN_JOYSTICK
- BTN_MISC
; i
< KEY_MAX
- BTN_MISC
+ 1; i
++)
518 if (test_bit(i
+ BTN_MISC
, dev
->keybit
)) {
519 joydev
->keymap
[i
] = joydev
->nkey
;
520 joydev
->keypam
[joydev
->nkey
] = i
+ BTN_MISC
;
524 for (i
= 0; i
< BTN_JOYSTICK
- BTN_MISC
; i
++)
525 if (test_bit(i
+ BTN_MISC
, dev
->keybit
)) {
526 joydev
->keymap
[i
] = joydev
->nkey
;
527 joydev
->keypam
[joydev
->nkey
] = i
+ BTN_MISC
;
531 for (i
= 0; i
< joydev
->nabs
; i
++) {
532 j
= joydev
->abspam
[i
];
533 if (dev
->absmax
[j
] == dev
->absmin
[j
]) {
534 joydev
->corr
[i
].type
= JS_CORR_NONE
;
535 joydev
->abs
[i
] = dev
->abs
[j
];
538 joydev
->corr
[i
].type
= JS_CORR_BROKEN
;
539 joydev
->corr
[i
].prec
= dev
->absfuzz
[j
];
540 joydev
->corr
[i
].coef
[0] = (dev
->absmax
[j
] + dev
->absmin
[j
]) / 2 - dev
->absflat
[j
];
541 joydev
->corr
[i
].coef
[1] = (dev
->absmax
[j
] + dev
->absmin
[j
]) / 2 + dev
->absflat
[j
];
542 if (!(t
= ((dev
->absmax
[j
] - dev
->absmin
[j
]) / 2 - 2 * dev
->absflat
[j
])))
544 joydev
->corr
[i
].coef
[2] = (1 << 29) / t
;
545 joydev
->corr
[i
].coef
[3] = (1 << 29) / t
;
547 joydev
->abs
[i
] = joydev_correct(dev
->abs
[j
], joydev
->corr
+ i
);
550 joydev_table
[minor
] = joydev
;
552 devt
= MKDEV(INPUT_MAJOR
, JOYDEV_MINOR_BASE
+ minor
),
554 cdev
= class_device_create(&input_class
, &dev
->cdev
, devt
,
555 dev
->cdev
.dev
, joydev
->name
);
557 error
= PTR_ERR(cdev
);
558 goto err_free_joydev
;
561 /* temporary symlink to keep userspace happy */
562 error
= sysfs_create_link(&input_class
.subsys
.kobj
,
563 &cdev
->kobj
, joydev
->name
);
565 goto err_cdev_destroy
;
567 error
= input_register_handle(&joydev
->handle
);
569 goto err_remove_link
;
574 sysfs_remove_link(&input_class
.subsys
.kobj
, joydev
->name
);
576 class_device_destroy(&input_class
, devt
);
578 joydev_table
[minor
] = NULL
;
584 static void joydev_disconnect(struct input_handle
*handle
)
586 struct joydev
*joydev
= handle
->private;
587 struct joydev_client
*client
;
589 input_unregister_handle(handle
);
591 sysfs_remove_link(&input_class
.subsys
.kobj
, joydev
->name
);
592 class_device_destroy(&input_class
, MKDEV(INPUT_MAJOR
, JOYDEV_MINOR_BASE
+ joydev
->minor
));
596 input_close_device(handle
);
597 list_for_each_entry(client
, &joydev
->client_list
, node
)
598 kill_fasync(&client
->fasync
, SIGIO
, POLL_HUP
);
599 wake_up_interruptible(&joydev
->wait
);
604 static const struct input_device_id joydev_blacklist
[] = {
606 .flags
= INPUT_DEVICE_ID_MATCH_EVBIT
| INPUT_DEVICE_ID_MATCH_KEYBIT
,
607 .evbit
= { BIT(EV_KEY
) },
608 .keybit
= { [LONG(BTN_TOUCH
)] = BIT(BTN_TOUCH
) },
609 }, /* Avoid itouchpads, touchscreens and tablets */
610 { } /* Terminating entry */
613 static const struct input_device_id joydev_ids
[] = {
615 .flags
= INPUT_DEVICE_ID_MATCH_EVBIT
| INPUT_DEVICE_ID_MATCH_ABSBIT
,
616 .evbit
= { BIT(EV_ABS
) },
617 .absbit
= { BIT(ABS_X
) },
620 .flags
= INPUT_DEVICE_ID_MATCH_EVBIT
| INPUT_DEVICE_ID_MATCH_ABSBIT
,
621 .evbit
= { BIT(EV_ABS
) },
622 .absbit
= { BIT(ABS_WHEEL
) },
625 .flags
= INPUT_DEVICE_ID_MATCH_EVBIT
| INPUT_DEVICE_ID_MATCH_ABSBIT
,
626 .evbit
= { BIT(EV_ABS
) },
627 .absbit
= { BIT(ABS_THROTTLE
) },
629 { } /* Terminating entry */
632 MODULE_DEVICE_TABLE(input
, joydev_ids
);
634 static struct input_handler joydev_handler
= {
635 .event
= joydev_event
,
636 .connect
= joydev_connect
,
637 .disconnect
= joydev_disconnect
,
638 .fops
= &joydev_fops
,
639 .minor
= JOYDEV_MINOR_BASE
,
641 .id_table
= joydev_ids
,
642 .blacklist
= joydev_blacklist
,
645 static int __init
joydev_init(void)
647 return input_register_handler(&joydev_handler
);
650 static void __exit
joydev_exit(void)
652 input_unregister_handler(&joydev_handler
);
655 module_init(joydev_init
);
656 module_exit(joydev_exit
);