blob: a9d9b29ff47f65347fcaa70db94d6ea41fcd490f [file] [log] [blame]
Stefan Achatz206f5f22010-05-19 18:55:16 +02001/*
2 * Roccat driver for Linux
3 *
4 * Copyright (c) 2010 Stefan Achatz <erazor_de@users.sourceforge.net>
5 */
6
7/*
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)
11 * any later version.
12 */
13
14/*
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.
22 */
23
24#include <linux/cdev.h>
25#include <linux/poll.h>
26#include <linux/sched.h>
27
28#include "hid-roccat.h"
29
30#define ROCCAT_FIRST_MINOR 0
31#define ROCCAT_MAX_DEVICES 8
32
33/* should be a power of 2 for performance reason */
34#define ROCCAT_CBUF_SIZE 16
35
36struct roccat_report {
37 uint8_t *value;
38 int len;
39};
40
41struct roccat_device {
42 unsigned int minor;
43 int open;
44 int exist;
45 wait_queue_head_t wait;
46 struct device *dev;
47 struct hid_device *hid;
48 struct list_head readers;
49 /* protects modifications of readers list */
50 struct mutex readers_lock;
51
52 /*
53 * circular_buffer has one writer and multiple readers with their own
54 * read pointers
55 */
56 struct roccat_report cbuf[ROCCAT_CBUF_SIZE];
57 int cbuf_end;
58 struct mutex cbuf_lock;
59};
60
61struct roccat_reader {
62 struct list_head node;
63 struct roccat_device *device;
64 int cbuf_start;
65};
66
67static int roccat_major;
68static struct class *roccat_class;
69static struct cdev roccat_cdev;
70
71static struct roccat_device *devices[ROCCAT_MAX_DEVICES];
72/* protects modifications of devices array */
73static DEFINE_MUTEX(devices_lock);
74
75static ssize_t roccat_read(struct file *file, char __user *buffer,
76 size_t count, loff_t *ppos)
77{
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);
83
84 mutex_lock(&device->cbuf_lock);
85
86 /* no data? */
87 if (reader->cbuf_start == device->cbuf_end) {
88 add_wait_queue(&device->wait, &wait);
89 set_current_state(TASK_INTERRUPTIBLE);
90
91 /* wait for data */
92 while (reader->cbuf_start == device->cbuf_end) {
93 if (file->f_flags & O_NONBLOCK) {
94 retval = -EAGAIN;
95 break;
96 }
97 if (signal_pending(current)) {
98 retval = -ERESTARTSYS;
99 break;
100 }
101 if (!device->exist) {
102 retval = -EIO;
103 break;
104 }
105
106 mutex_unlock(&device->cbuf_lock);
107 schedule();
108 mutex_lock(&device->cbuf_lock);
109 set_current_state(TASK_INTERRUPTIBLE);
110 }
111
112 set_current_state(TASK_RUNNING);
113 remove_wait_queue(&device->wait, &wait);
114 }
115
116 /* here we either have data or a reason to return if retval is set */
117 if (retval)
118 goto exit_unlock;
119
120 report = &device->cbuf[reader->cbuf_start];
121 /*
122 * If report is larger than requested amount of data, rest of report
123 * is lost!
124 */
125 len = report->len > count ? count : report->len;
126
127 if (copy_to_user(buffer, report->value, len)) {
128 retval = -EFAULT;
129 goto exit_unlock;
130 }
131 retval += len;
132 reader->cbuf_start = (reader->cbuf_start + 1) % ROCCAT_CBUF_SIZE;
133
134exit_unlock:
135 mutex_unlock(&device->cbuf_lock);
136 return retval;
137}
138
139static unsigned int roccat_poll(struct file *file, poll_table *wait)
140{
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;
147 return 0;
148}
149
150static int roccat_open(struct inode *inode, struct file *file)
151{
152 unsigned int minor = iminor(inode);
153 struct roccat_reader *reader;
154 struct roccat_device *device;
155 int error = 0;
156
157 reader = kzalloc(sizeof(struct roccat_reader), GFP_KERNEL);
158 if (!reader)
159 return -ENOMEM;
160
161 mutex_lock(&devices_lock);
162
163 device = devices[minor];
164
165 mutex_lock(&device->readers_lock);
166
167 if (!device) {
168 printk(KERN_EMERG "roccat device with minor %d doesn't exist\n",
169 minor);
170 error = -ENODEV;
Julia Lawalldfe5c7b2010-06-01 16:35:15 +0200171 goto exit_err;
Stefan Achatz206f5f22010-05-19 18:55:16 +0200172 }
173
174 if (!device->open++) {
175 /* power on device on adding first reader */
Dmitry Torokhov5bea7662010-12-07 23:02:48 -0800176 error = hid_hw_power(device->hid, PM_HINT_FULLON);
Stefan Achatz206f5f22010-05-19 18:55:16 +0200177 if (error < 0) {
Dmitry Torokhov5bea7662010-12-07 23:02:48 -0800178 --device->open;
179 goto exit_err;
180 }
181
182 error = hid_hw_open(device->hid);
183 if (error < 0) {
184 hid_hw_power(device->hid, PM_HINT_NORMAL);
Stefan Achatz206f5f22010-05-19 18:55:16 +0200185 --device->open;
Julia Lawalldfe5c7b2010-06-01 16:35:15 +0200186 goto exit_err;
Stefan Achatz206f5f22010-05-19 18:55:16 +0200187 }
188 }
189
190 reader->device = device;
191 /* new reader doesn't get old events */
192 reader->cbuf_start = device->cbuf_end;
193
194 list_add_tail(&reader->node, &device->readers);
195 file->private_data = reader;
196
197exit_unlock:
198 mutex_unlock(&device->readers_lock);
199 mutex_unlock(&devices_lock);
200 return error;
Julia Lawalldfe5c7b2010-06-01 16:35:15 +0200201exit_err:
202 kfree(reader);
203 goto exit_unlock;
Stefan Achatz206f5f22010-05-19 18:55:16 +0200204}
205
206static int roccat_release(struct inode *inode, struct file *file)
207{
208 unsigned int minor = iminor(inode);
209 struct roccat_reader *reader = file->private_data;
210 struct roccat_device *device;
211
212 mutex_lock(&devices_lock);
213
214 device = devices[minor];
215 if (!device) {
216 mutex_unlock(&devices_lock);
217 printk(KERN_EMERG "roccat device with minor %d doesn't exist\n",
218 minor);
219 return -ENODEV;
220 }
221
222 mutex_lock(&device->readers_lock);
223 list_del(&reader->node);
224 mutex_unlock(&device->readers_lock);
225 kfree(reader);
226
227 if (!--device->open) {
228 /* removing last reader */
229 if (device->exist) {
Dmitry Torokhov5bea7662010-12-07 23:02:48 -0800230 hid_hw_power(device->hid, PM_HINT_NORMAL);
231 hid_hw_close(device->hid);
Stefan Achatz206f5f22010-05-19 18:55:16 +0200232 } else {
233 kfree(device);
234 }
235 }
236
237 mutex_unlock(&devices_lock);
238
239 return 0;
240}
241
242/*
243 * roccat_report_event() - output data to readers
244 * @minor: minor device number returned by roccat_connect()
245 * @data: pointer to data
246 * @len: size of data
247 *
248 * Return value is zero on success, a negative error code on failure.
249 *
250 * This is called from interrupt handler.
251 */
252int roccat_report_event(int minor, u8 const *data, int len)
253{
254 struct roccat_device *device;
255 struct roccat_reader *reader;
256 struct roccat_report *report;
257 uint8_t *new_value;
258
259 new_value = kmemdup(data, len, GFP_ATOMIC);
260 if (!new_value)
261 return -ENOMEM;
262
263 device = devices[minor];
264
265 report = &device->cbuf[device->cbuf_end];
266
267 /* passing NULL is safe */
268 kfree(report->value);
269
270 report->value = new_value;
271 report->len = len;
272 device->cbuf_end = (device->cbuf_end + 1) % ROCCAT_CBUF_SIZE;
273
274 list_for_each_entry(reader, &device->readers, node) {
275 /*
276 * As we already inserted one element, the buffer can't be
277 * empty. If start and end are equal, buffer is full and we
278 * increase start, so that slow reader misses one event, but
279 * gets the newer ones in the right order.
280 */
281 if (reader->cbuf_start == device->cbuf_end)
282 reader->cbuf_start = (reader->cbuf_start + 1) % ROCCAT_CBUF_SIZE;
283 }
284
285 wake_up_interruptible(&device->wait);
286 return 0;
287}
288EXPORT_SYMBOL_GPL(roccat_report_event);
289
290/*
291 * roccat_connect() - create a char device for special event output
292 * @hid: the hid device the char device should be connected to.
293 *
294 * Return value is minor device number in Range [0, ROCCAT_MAX_DEVICES] on
295 * success, a negative error code on failure.
296 */
297int roccat_connect(struct hid_device *hid)
298{
299 unsigned int minor;
300 struct roccat_device *device;
301 int temp;
302
303 device = kzalloc(sizeof(struct roccat_device), GFP_KERNEL);
304 if (!device)
305 return -ENOMEM;
306
307 mutex_lock(&devices_lock);
308
309 for (minor = 0; minor < ROCCAT_MAX_DEVICES; ++minor) {
310 if (devices[minor])
311 continue;
312 break;
313 }
314
315 if (minor < ROCCAT_MAX_DEVICES) {
316 devices[minor] = device;
317 } else {
318 mutex_unlock(&devices_lock);
319 kfree(device);
320 return -EINVAL;
321 }
322
323 device->dev = device_create(roccat_class, &hid->dev,
324 MKDEV(roccat_major, minor), NULL,
325 "%s%s%d", "roccat", hid->driver->name, minor);
326
327 if (IS_ERR(device->dev)) {
328 devices[minor] = NULL;
329 mutex_unlock(&devices_lock);
330 temp = PTR_ERR(device->dev);
331 kfree(device);
332 return temp;
333 }
334
335 mutex_unlock(&devices_lock);
336
337 init_waitqueue_head(&device->wait);
338 INIT_LIST_HEAD(&device->readers);
339 mutex_init(&device->readers_lock);
340 mutex_init(&device->cbuf_lock);
341 device->minor = minor;
342 device->hid = hid;
343 device->exist = 1;
344 device->cbuf_end = 0;
345
346 return minor;
347}
348EXPORT_SYMBOL_GPL(roccat_connect);
349
350/* roccat_disconnect() - remove char device from hid device
351 * @minor: the minor device number returned by roccat_connect()
352 */
353void roccat_disconnect(int minor)
354{
355 struct roccat_device *device;
356
357 mutex_lock(&devices_lock);
358 device = devices[minor];
359 devices[minor] = NULL;
360 mutex_unlock(&devices_lock);
361
362 device->exist = 0; /* TODO exist maybe not needed */
363
364 device_destroy(roccat_class, MKDEV(roccat_major, minor));
365
366 if (device->open) {
Dmitry Torokhov5bea7662010-12-07 23:02:48 -0800367 hid_hw_close(device->hid);
Stefan Achatz206f5f22010-05-19 18:55:16 +0200368 wake_up_interruptible(&device->wait);
369 } else {
370 kfree(device);
371 }
372}
373EXPORT_SYMBOL_GPL(roccat_disconnect);
374
375static const struct file_operations roccat_ops = {
376 .owner = THIS_MODULE,
377 .read = roccat_read,
378 .poll = roccat_poll,
379 .open = roccat_open,
380 .release = roccat_release,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200381 .llseek = noop_llseek,
Stefan Achatz206f5f22010-05-19 18:55:16 +0200382};
383
384static int __init roccat_init(void)
385{
386 int retval;
387 dev_t dev_id;
388
389 retval = alloc_chrdev_region(&dev_id, ROCCAT_FIRST_MINOR,
390 ROCCAT_MAX_DEVICES, "roccat");
391
392 roccat_major = MAJOR(dev_id);
393
394 if (retval < 0) {
395 printk(KERN_WARNING "roccat: can't get major number\n");
396 return retval;
397 }
398
399 roccat_class = class_create(THIS_MODULE, "roccat");
400 if (IS_ERR(roccat_class)) {
401 retval = PTR_ERR(roccat_class);
402 unregister_chrdev_region(dev_id, ROCCAT_MAX_DEVICES);
403 return retval;
404 }
405
406 cdev_init(&roccat_cdev, &roccat_ops);
407 cdev_add(&roccat_cdev, dev_id, ROCCAT_MAX_DEVICES);
408
409 return 0;
410}
411
412static void __exit roccat_exit(void)
413{
414 dev_t dev_id = MKDEV(roccat_major, 0);
415
416 cdev_del(&roccat_cdev);
417 class_destroy(roccat_class);
418 unregister_chrdev_region(dev_id, ROCCAT_MAX_DEVICES);
419}
420
421module_init(roccat_init);
422module_exit(roccat_exit);
423
424MODULE_AUTHOR("Stefan Achatz");
425MODULE_DESCRIPTION("USB Roccat char device");
426MODULE_LICENSE("GPL v2");