2 * Roccat Arvo driver for Linux
4 * Copyright (c) 2011 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 * Roccat Arvo is a gamer keyboard with 5 macro keys that can be configured in
19 #include <linux/device.h>
20 #include <linux/input.h>
21 #include <linux/hid.h>
22 #include <linux/module.h>
23 #include <linux/slab.h>
24 #include <linux/hid-roccat.h>
26 #include "hid-roccat-common.h"
27 #include "hid-roccat-arvo.h"
29 static struct class *arvo_class
;
31 static ssize_t
arvo_sysfs_show_mode_key(struct device
*dev
,
32 struct device_attribute
*attr
, char *buf
)
34 struct arvo_device
*arvo
=
35 hid_get_drvdata(dev_get_drvdata(dev
->parent
->parent
));
36 struct usb_device
*usb_dev
=
37 interface_to_usbdev(to_usb_interface(dev
->parent
->parent
));
38 struct arvo_mode_key temp_buf
;
41 mutex_lock(&arvo
->arvo_lock
);
42 retval
= roccat_common2_receive(usb_dev
, ARVO_COMMAND_MODE_KEY
,
43 &temp_buf
, sizeof(struct arvo_mode_key
));
44 mutex_unlock(&arvo
->arvo_lock
);
48 return snprintf(buf
, PAGE_SIZE
, "%d\n", temp_buf
.state
);
51 static ssize_t
arvo_sysfs_set_mode_key(struct device
*dev
,
52 struct device_attribute
*attr
, char const *buf
, size_t size
)
54 struct arvo_device
*arvo
=
55 hid_get_drvdata(dev_get_drvdata(dev
->parent
->parent
));
56 struct usb_device
*usb_dev
=
57 interface_to_usbdev(to_usb_interface(dev
->parent
->parent
));
58 struct arvo_mode_key temp_buf
;
62 retval
= kstrtoul(buf
, 10, &state
);
66 temp_buf
.command
= ARVO_COMMAND_MODE_KEY
;
67 temp_buf
.state
= state
;
69 mutex_lock(&arvo
->arvo_lock
);
70 retval
= roccat_common2_send(usb_dev
, ARVO_COMMAND_MODE_KEY
,
71 &temp_buf
, sizeof(struct arvo_mode_key
));
72 mutex_unlock(&arvo
->arvo_lock
);
78 static DEVICE_ATTR(mode_key
, 0660,
79 arvo_sysfs_show_mode_key
, arvo_sysfs_set_mode_key
);
81 static ssize_t
arvo_sysfs_show_key_mask(struct device
*dev
,
82 struct device_attribute
*attr
, char *buf
)
84 struct arvo_device
*arvo
=
85 hid_get_drvdata(dev_get_drvdata(dev
->parent
->parent
));
86 struct usb_device
*usb_dev
=
87 interface_to_usbdev(to_usb_interface(dev
->parent
->parent
));
88 struct arvo_key_mask temp_buf
;
91 mutex_lock(&arvo
->arvo_lock
);
92 retval
= roccat_common2_receive(usb_dev
, ARVO_COMMAND_KEY_MASK
,
93 &temp_buf
, sizeof(struct arvo_key_mask
));
94 mutex_unlock(&arvo
->arvo_lock
);
98 return snprintf(buf
, PAGE_SIZE
, "%d\n", temp_buf
.key_mask
);
101 static ssize_t
arvo_sysfs_set_key_mask(struct device
*dev
,
102 struct device_attribute
*attr
, char const *buf
, size_t size
)
104 struct arvo_device
*arvo
=
105 hid_get_drvdata(dev_get_drvdata(dev
->parent
->parent
));
106 struct usb_device
*usb_dev
=
107 interface_to_usbdev(to_usb_interface(dev
->parent
->parent
));
108 struct arvo_key_mask temp_buf
;
109 unsigned long key_mask
;
112 retval
= kstrtoul(buf
, 10, &key_mask
);
116 temp_buf
.command
= ARVO_COMMAND_KEY_MASK
;
117 temp_buf
.key_mask
= key_mask
;
119 mutex_lock(&arvo
->arvo_lock
);
120 retval
= roccat_common2_send(usb_dev
, ARVO_COMMAND_KEY_MASK
,
121 &temp_buf
, sizeof(struct arvo_key_mask
));
122 mutex_unlock(&arvo
->arvo_lock
);
128 static DEVICE_ATTR(key_mask
, 0660,
129 arvo_sysfs_show_key_mask
, arvo_sysfs_set_key_mask
);
131 /* retval is 1-5 on success, < 0 on error */
132 static int arvo_get_actual_profile(struct usb_device
*usb_dev
)
134 struct arvo_actual_profile temp_buf
;
137 retval
= roccat_common2_receive(usb_dev
, ARVO_COMMAND_ACTUAL_PROFILE
,
138 &temp_buf
, sizeof(struct arvo_actual_profile
));
143 return temp_buf
.actual_profile
;
146 static ssize_t
arvo_sysfs_show_actual_profile(struct device
*dev
,
147 struct device_attribute
*attr
, char *buf
)
149 struct arvo_device
*arvo
=
150 hid_get_drvdata(dev_get_drvdata(dev
->parent
->parent
));
152 return snprintf(buf
, PAGE_SIZE
, "%d\n", arvo
->actual_profile
);
155 static ssize_t
arvo_sysfs_set_actual_profile(struct device
*dev
,
156 struct device_attribute
*attr
, char const *buf
, size_t size
)
158 struct arvo_device
*arvo
=
159 hid_get_drvdata(dev_get_drvdata(dev
->parent
->parent
));
160 struct usb_device
*usb_dev
=
161 interface_to_usbdev(to_usb_interface(dev
->parent
->parent
));
162 struct arvo_actual_profile temp_buf
;
163 unsigned long profile
;
166 retval
= kstrtoul(buf
, 10, &profile
);
170 if (profile
< 1 || profile
> 5)
173 temp_buf
.command
= ARVO_COMMAND_ACTUAL_PROFILE
;
174 temp_buf
.actual_profile
= profile
;
176 mutex_lock(&arvo
->arvo_lock
);
177 retval
= roccat_common2_send(usb_dev
, ARVO_COMMAND_ACTUAL_PROFILE
,
178 &temp_buf
, sizeof(struct arvo_actual_profile
));
180 arvo
->actual_profile
= profile
;
183 mutex_unlock(&arvo
->arvo_lock
);
186 static DEVICE_ATTR(actual_profile
, 0660,
187 arvo_sysfs_show_actual_profile
,
188 arvo_sysfs_set_actual_profile
);
190 static ssize_t
arvo_sysfs_write(struct file
*fp
,
191 struct kobject
*kobj
, void const *buf
,
192 loff_t off
, size_t count
, size_t real_size
, uint command
)
194 struct device
*dev
= kobj_to_dev(kobj
)->parent
->parent
;
195 struct arvo_device
*arvo
= hid_get_drvdata(dev_get_drvdata(dev
));
196 struct usb_device
*usb_dev
= interface_to_usbdev(to_usb_interface(dev
));
199 if (off
!= 0 || count
!= real_size
)
202 mutex_lock(&arvo
->arvo_lock
);
203 retval
= roccat_common2_send(usb_dev
, command
, buf
, real_size
);
204 mutex_unlock(&arvo
->arvo_lock
);
206 return (retval
? retval
: real_size
);
209 static ssize_t
arvo_sysfs_read(struct file
*fp
,
210 struct kobject
*kobj
, void *buf
, loff_t off
,
211 size_t count
, size_t real_size
, uint command
)
213 struct device
*dev
= kobj_to_dev(kobj
)->parent
->parent
;
214 struct arvo_device
*arvo
= hid_get_drvdata(dev_get_drvdata(dev
));
215 struct usb_device
*usb_dev
= interface_to_usbdev(to_usb_interface(dev
));
218 if (off
>= real_size
)
221 if (off
!= 0 || count
!= real_size
)
224 mutex_lock(&arvo
->arvo_lock
);
225 retval
= roccat_common2_receive(usb_dev
, command
, buf
, real_size
);
226 mutex_unlock(&arvo
->arvo_lock
);
228 return (retval
? retval
: real_size
);
231 static ssize_t
arvo_sysfs_write_button(struct file
*fp
,
232 struct kobject
*kobj
, struct bin_attribute
*attr
, char *buf
,
233 loff_t off
, size_t count
)
235 return arvo_sysfs_write(fp
, kobj
, buf
, off
, count
,
236 sizeof(struct arvo_button
), ARVO_COMMAND_BUTTON
);
238 static BIN_ATTR(button
, 0220, NULL
, arvo_sysfs_write_button
,
239 sizeof(struct arvo_button
));
241 static ssize_t
arvo_sysfs_read_info(struct file
*fp
,
242 struct kobject
*kobj
, struct bin_attribute
*attr
, char *buf
,
243 loff_t off
, size_t count
)
245 return arvo_sysfs_read(fp
, kobj
, buf
, off
, count
,
246 sizeof(struct arvo_info
), ARVO_COMMAND_INFO
);
248 static BIN_ATTR(info
, 0440, arvo_sysfs_read_info
, NULL
,
249 sizeof(struct arvo_info
));
251 static struct attribute
*arvo_attrs
[] = {
252 &dev_attr_mode_key
.attr
,
253 &dev_attr_key_mask
.attr
,
254 &dev_attr_actual_profile
.attr
,
258 static struct bin_attribute
*arvo_bin_attributes
[] = {
264 static const struct attribute_group arvo_group
= {
266 .bin_attrs
= arvo_bin_attributes
,
269 static const struct attribute_group
*arvo_groups
[] = {
274 static int arvo_init_arvo_device_struct(struct usb_device
*usb_dev
,
275 struct arvo_device
*arvo
)
279 mutex_init(&arvo
->arvo_lock
);
281 retval
= arvo_get_actual_profile(usb_dev
);
284 arvo
->actual_profile
= retval
;
289 static int arvo_init_specials(struct hid_device
*hdev
)
291 struct usb_interface
*intf
= to_usb_interface(hdev
->dev
.parent
);
292 struct usb_device
*usb_dev
= interface_to_usbdev(intf
);
293 struct arvo_device
*arvo
;
296 if (intf
->cur_altsetting
->desc
.bInterfaceProtocol
297 == USB_INTERFACE_PROTOCOL_KEYBOARD
) {
298 hid_set_drvdata(hdev
, NULL
);
302 arvo
= kzalloc(sizeof(*arvo
), GFP_KERNEL
);
304 hid_err(hdev
, "can't alloc device descriptor\n");
307 hid_set_drvdata(hdev
, arvo
);
309 retval
= arvo_init_arvo_device_struct(usb_dev
, arvo
);
311 hid_err(hdev
, "couldn't init struct arvo_device\n");
315 retval
= roccat_connect(arvo_class
, hdev
,
316 sizeof(struct arvo_roccat_report
));
318 hid_err(hdev
, "couldn't init char dev\n");
320 arvo
->chrdev_minor
= retval
;
321 arvo
->roccat_claimed
= 1;
330 static void arvo_remove_specials(struct hid_device
*hdev
)
332 struct usb_interface
*intf
= to_usb_interface(hdev
->dev
.parent
);
333 struct arvo_device
*arvo
;
335 if (intf
->cur_altsetting
->desc
.bInterfaceProtocol
336 == USB_INTERFACE_PROTOCOL_KEYBOARD
)
339 arvo
= hid_get_drvdata(hdev
);
340 if (arvo
->roccat_claimed
)
341 roccat_disconnect(arvo
->chrdev_minor
);
345 static int arvo_probe(struct hid_device
*hdev
,
346 const struct hid_device_id
*id
)
350 retval
= hid_parse(hdev
);
352 hid_err(hdev
, "parse failed\n");
356 retval
= hid_hw_start(hdev
, HID_CONNECT_DEFAULT
);
358 hid_err(hdev
, "hw start failed\n");
362 retval
= arvo_init_specials(hdev
);
364 hid_err(hdev
, "couldn't install keyboard\n");
376 static void arvo_remove(struct hid_device
*hdev
)
378 arvo_remove_specials(hdev
);
382 static void arvo_report_to_chrdev(struct arvo_device
const *arvo
,
385 struct arvo_special_report
const *special_report
;
386 struct arvo_roccat_report roccat_report
;
388 special_report
= (struct arvo_special_report
const *)data
;
390 roccat_report
.profile
= arvo
->actual_profile
;
391 roccat_report
.button
= special_report
->event
&
392 ARVO_SPECIAL_REPORT_EVENT_MASK_BUTTON
;
393 if ((special_report
->event
& ARVO_SPECIAL_REPORT_EVENT_MASK_ACTION
) ==
394 ARVO_SPECIAL_REPORT_EVENT_ACTION_PRESS
)
395 roccat_report
.action
= ARVO_ROCCAT_REPORT_ACTION_PRESS
;
397 roccat_report
.action
= ARVO_ROCCAT_REPORT_ACTION_RELEASE
;
399 roccat_report_event(arvo
->chrdev_minor
,
400 (uint8_t const *)&roccat_report
);
403 static int arvo_raw_event(struct hid_device
*hdev
,
404 struct hid_report
*report
, u8
*data
, int size
)
406 struct arvo_device
*arvo
= hid_get_drvdata(hdev
);
411 if (arvo
&& arvo
->roccat_claimed
)
412 arvo_report_to_chrdev(arvo
, data
);
417 static const struct hid_device_id arvo_devices
[] = {
418 { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT
, USB_DEVICE_ID_ROCCAT_ARVO
) },
422 MODULE_DEVICE_TABLE(hid
, arvo_devices
);
424 static struct hid_driver arvo_driver
= {
426 .id_table
= arvo_devices
,
428 .remove
= arvo_remove
,
429 .raw_event
= arvo_raw_event
432 static int __init
arvo_init(void)
436 arvo_class
= class_create(THIS_MODULE
, "arvo");
437 if (IS_ERR(arvo_class
))
438 return PTR_ERR(arvo_class
);
439 arvo_class
->dev_groups
= arvo_groups
;
441 retval
= hid_register_driver(&arvo_driver
);
443 class_destroy(arvo_class
);
447 static void __exit
arvo_exit(void)
449 hid_unregister_driver(&arvo_driver
);
450 class_destroy(arvo_class
);
453 module_init(arvo_init
);
454 module_exit(arvo_exit
);
456 MODULE_AUTHOR("Stefan Achatz");
457 MODULE_DESCRIPTION("USB Roccat Arvo driver");
458 MODULE_LICENSE("GPL v2");