2 * Roccat driver for Linux
4 * Copyright (c) 2010 Stefan Achatz <erazor_de@users.sourceforge.net>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the Free
10 * Software Foundation; either version 2 of the License, or (at your option)
15 * Module roccat is a char device used to report special events of roccat
16 * hardware to userland. These events include requests for on-screen-display of
17 * profile or dpi settings or requests for execution of macro sequences that are
18 * not stored in device. The information in these events depends on hid device
19 * implementation and contains data that is not available in a single hid event
20 * or else hidraw could have been used.
21 * It is inspired by hidraw, but uses only one circular buffer for all readers.
24 #include <linux/cdev.h>
25 #include <linux/poll.h>
26 #include <linux/sched.h>
28 #include "hid-roccat.h"
30 #define ROCCAT_FIRST_MINOR 0
31 #define ROCCAT_MAX_DEVICES 8
33 /* should be a power of 2 for performance reason */
34 #define ROCCAT_CBUF_SIZE 16
36 struct roccat_report
{
41 struct roccat_device
{
45 wait_queue_head_t wait
;
47 struct hid_device
*hid
;
48 struct list_head readers
;
49 /* protects modifications of readers list */
50 struct mutex readers_lock
;
53 * circular_buffer has one writer and multiple readers with their own
56 struct roccat_report cbuf
[ROCCAT_CBUF_SIZE
];
58 struct mutex cbuf_lock
;
61 struct roccat_reader
{
62 struct list_head node
;
63 struct roccat_device
*device
;
67 static int roccat_major
;
68 static struct class *roccat_class
;
69 static struct cdev roccat_cdev
;
71 static struct roccat_device
*devices
[ROCCAT_MAX_DEVICES
];
72 /* protects modifications of devices array */
73 static DEFINE_MUTEX(devices_lock
);
75 static ssize_t
roccat_read(struct file
*file
, char __user
*buffer
,
76 size_t count
, loff_t
*ppos
)
78 struct roccat_reader
*reader
= file
->private_data
;
79 struct roccat_device
*device
= reader
->device
;
80 struct roccat_report
*report
;
81 ssize_t retval
= 0, len
;
82 DECLARE_WAITQUEUE(wait
, current
);
84 mutex_lock(&device
->cbuf_lock
);
87 if (reader
->cbuf_start
== device
->cbuf_end
) {
88 add_wait_queue(&device
->wait
, &wait
);
89 set_current_state(TASK_INTERRUPTIBLE
);
92 while (reader
->cbuf_start
== device
->cbuf_end
) {
93 if (file
->f_flags
& O_NONBLOCK
) {
97 if (signal_pending(current
)) {
98 retval
= -ERESTARTSYS
;
101 if (!device
->exist
) {
106 mutex_unlock(&device
->cbuf_lock
);
108 mutex_lock(&device
->cbuf_lock
);
109 set_current_state(TASK_INTERRUPTIBLE
);
112 set_current_state(TASK_RUNNING
);
113 remove_wait_queue(&device
->wait
, &wait
);
116 /* here we either have data or a reason to return if retval is set */
120 report
= &device
->cbuf
[reader
->cbuf_start
];
122 * If report is larger than requested amount of data, rest of report
125 len
= report
->len
> count
? count
: report
->len
;
127 if (copy_to_user(buffer
, report
->value
, len
)) {
132 reader
->cbuf_start
= (reader
->cbuf_start
+ 1) % ROCCAT_CBUF_SIZE
;
135 mutex_unlock(&device
->cbuf_lock
);
139 static unsigned int roccat_poll(struct file
*file
, poll_table
*wait
)
141 struct roccat_reader
*reader
= file
->private_data
;
142 poll_wait(file
, &reader
->device
->wait
, wait
);
143 if (reader
->cbuf_start
!= reader
->device
->cbuf_end
)
144 return POLLIN
| POLLRDNORM
;
145 if (!reader
->device
->exist
)
146 return POLLERR
| POLLHUP
;
150 static int roccat_open(struct inode
*inode
, struct file
*file
)
152 unsigned int minor
= iminor(inode
);
153 struct roccat_reader
*reader
;
154 struct roccat_device
*device
;
157 reader
= kzalloc(sizeof(struct roccat_reader
), GFP_KERNEL
);
161 mutex_lock(&devices_lock
);
163 device
= devices
[minor
];
165 mutex_lock(&device
->readers_lock
);
168 printk(KERN_EMERG
"roccat device with minor %d doesn't exist\n",
174 if (!device
->open
++) {
175 /* power on device on adding first reader */
176 if (device
->hid
->ll_driver
->power
) {
177 error
= device
->hid
->ll_driver
->power(device
->hid
,
184 error
= device
->hid
->ll_driver
->open(device
->hid
);
186 if (device
->hid
->ll_driver
->power
)
187 device
->hid
->ll_driver
->power(device
->hid
,
194 reader
->device
= device
;
195 /* new reader doesn't get old events */
196 reader
->cbuf_start
= device
->cbuf_end
;
198 list_add_tail(&reader
->node
, &device
->readers
);
199 file
->private_data
= reader
;
202 mutex_unlock(&device
->readers_lock
);
203 mutex_unlock(&devices_lock
);
210 static int roccat_release(struct inode
*inode
, struct file
*file
)
212 unsigned int minor
= iminor(inode
);
213 struct roccat_reader
*reader
= file
->private_data
;
214 struct roccat_device
*device
;
216 mutex_lock(&devices_lock
);
218 device
= devices
[minor
];
220 mutex_unlock(&devices_lock
);
221 printk(KERN_EMERG
"roccat device with minor %d doesn't exist\n",
226 mutex_lock(&device
->readers_lock
);
227 list_del(&reader
->node
);
228 mutex_unlock(&device
->readers_lock
);
231 if (!--device
->open
) {
232 /* removing last reader */
234 if (device
->hid
->ll_driver
->power
)
235 device
->hid
->ll_driver
->power(device
->hid
,
237 device
->hid
->ll_driver
->close(device
->hid
);
243 mutex_unlock(&devices_lock
);
249 * roccat_report_event() - output data to readers
250 * @minor: minor device number returned by roccat_connect()
251 * @data: pointer to data
254 * Return value is zero on success, a negative error code on failure.
256 * This is called from interrupt handler.
258 int roccat_report_event(int minor
, u8
const *data
, int len
)
260 struct roccat_device
*device
;
261 struct roccat_reader
*reader
;
262 struct roccat_report
*report
;
265 new_value
= kmemdup(data
, len
, GFP_ATOMIC
);
269 device
= devices
[minor
];
271 report
= &device
->cbuf
[device
->cbuf_end
];
273 /* passing NULL is safe */
274 kfree(report
->value
);
276 report
->value
= new_value
;
278 device
->cbuf_end
= (device
->cbuf_end
+ 1) % ROCCAT_CBUF_SIZE
;
280 list_for_each_entry(reader
, &device
->readers
, node
) {
282 * As we already inserted one element, the buffer can't be
283 * empty. If start and end are equal, buffer is full and we
284 * increase start, so that slow reader misses one event, but
285 * gets the newer ones in the right order.
287 if (reader
->cbuf_start
== device
->cbuf_end
)
288 reader
->cbuf_start
= (reader
->cbuf_start
+ 1) % ROCCAT_CBUF_SIZE
;
291 wake_up_interruptible(&device
->wait
);
294 EXPORT_SYMBOL_GPL(roccat_report_event
);
297 * roccat_connect() - create a char device for special event output
298 * @hid: the hid device the char device should be connected to.
300 * Return value is minor device number in Range [0, ROCCAT_MAX_DEVICES] on
301 * success, a negative error code on failure.
303 int roccat_connect(struct hid_device
*hid
)
306 struct roccat_device
*device
;
309 device
= kzalloc(sizeof(struct roccat_device
), GFP_KERNEL
);
313 mutex_lock(&devices_lock
);
315 for (minor
= 0; minor
< ROCCAT_MAX_DEVICES
; ++minor
) {
321 if (minor
< ROCCAT_MAX_DEVICES
) {
322 devices
[minor
] = device
;
324 mutex_unlock(&devices_lock
);
329 device
->dev
= device_create(roccat_class
, &hid
->dev
,
330 MKDEV(roccat_major
, minor
), NULL
,
331 "%s%s%d", "roccat", hid
->driver
->name
, minor
);
333 if (IS_ERR(device
->dev
)) {
334 devices
[minor
] = NULL
;
335 mutex_unlock(&devices_lock
);
336 temp
= PTR_ERR(device
->dev
);
341 mutex_unlock(&devices_lock
);
343 init_waitqueue_head(&device
->wait
);
344 INIT_LIST_HEAD(&device
->readers
);
345 mutex_init(&device
->readers_lock
);
346 mutex_init(&device
->cbuf_lock
);
347 device
->minor
= minor
;
350 device
->cbuf_end
= 0;
354 EXPORT_SYMBOL_GPL(roccat_connect
);
356 /* roccat_disconnect() - remove char device from hid device
357 * @minor: the minor device number returned by roccat_connect()
359 void roccat_disconnect(int minor
)
361 struct roccat_device
*device
;
363 mutex_lock(&devices_lock
);
364 device
= devices
[minor
];
365 devices
[minor
] = NULL
;
366 mutex_unlock(&devices_lock
);
368 device
->exist
= 0; /* TODO exist maybe not needed */
370 device_destroy(roccat_class
, MKDEV(roccat_major
, minor
));
373 device
->hid
->ll_driver
->close(device
->hid
);
374 wake_up_interruptible(&device
->wait
);
379 EXPORT_SYMBOL_GPL(roccat_disconnect
);
381 static const struct file_operations roccat_ops
= {
382 .owner
= THIS_MODULE
,
386 .release
= roccat_release
,
387 .llseek
= noop_llseek
,
390 static int __init
roccat_init(void)
395 retval
= alloc_chrdev_region(&dev_id
, ROCCAT_FIRST_MINOR
,
396 ROCCAT_MAX_DEVICES
, "roccat");
398 roccat_major
= MAJOR(dev_id
);
401 printk(KERN_WARNING
"roccat: can't get major number\n");
405 roccat_class
= class_create(THIS_MODULE
, "roccat");
406 if (IS_ERR(roccat_class
)) {
407 retval
= PTR_ERR(roccat_class
);
408 unregister_chrdev_region(dev_id
, ROCCAT_MAX_DEVICES
);
412 cdev_init(&roccat_cdev
, &roccat_ops
);
413 cdev_add(&roccat_cdev
, dev_id
, ROCCAT_MAX_DEVICES
);
418 static void __exit
roccat_exit(void)
420 dev_t dev_id
= MKDEV(roccat_major
, 0);
422 cdev_del(&roccat_cdev
);
423 class_destroy(roccat_class
);
424 unregister_chrdev_region(dev_id
, ROCCAT_MAX_DEVICES
);
427 module_init(roccat_init
);
428 module_exit(roccat_exit
);
430 MODULE_AUTHOR("Stefan Achatz");
431 MODULE_DESCRIPTION("USB Roccat char device");
432 MODULE_LICENSE("GPL v2");