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_common_receive(usb_dev
, ARVO_USB_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
= strict_strtoul(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_common_send(usb_dev
, ARVO_USB_COMMAND_MODE_KEY
,
71 &temp_buf
, sizeof(struct arvo_mode_key
));
72 mutex_unlock(&arvo
->arvo_lock
);
79 static ssize_t
arvo_sysfs_show_key_mask(struct device
*dev
,
80 struct device_attribute
*attr
, char *buf
)
82 struct arvo_device
*arvo
=
83 hid_get_drvdata(dev_get_drvdata(dev
->parent
->parent
));
84 struct usb_device
*usb_dev
=
85 interface_to_usbdev(to_usb_interface(dev
->parent
->parent
));
86 struct arvo_key_mask temp_buf
;
89 mutex_lock(&arvo
->arvo_lock
);
90 retval
= roccat_common_receive(usb_dev
, ARVO_USB_COMMAND_KEY_MASK
,
91 &temp_buf
, sizeof(struct arvo_key_mask
));
92 mutex_unlock(&arvo
->arvo_lock
);
96 return snprintf(buf
, PAGE_SIZE
, "%d\n", temp_buf
.key_mask
);
99 static ssize_t
arvo_sysfs_set_key_mask(struct device
*dev
,
100 struct device_attribute
*attr
, char const *buf
, size_t size
)
102 struct arvo_device
*arvo
=
103 hid_get_drvdata(dev_get_drvdata(dev
->parent
->parent
));
104 struct usb_device
*usb_dev
=
105 interface_to_usbdev(to_usb_interface(dev
->parent
->parent
));
106 struct arvo_key_mask temp_buf
;
107 unsigned long key_mask
;
110 retval
= strict_strtoul(buf
, 10, &key_mask
);
114 temp_buf
.command
= ARVO_COMMAND_KEY_MASK
;
115 temp_buf
.key_mask
= key_mask
;
117 mutex_lock(&arvo
->arvo_lock
);
118 retval
= roccat_common_send(usb_dev
, ARVO_USB_COMMAND_KEY_MASK
,
119 &temp_buf
, sizeof(struct arvo_key_mask
));
120 mutex_unlock(&arvo
->arvo_lock
);
127 /* retval is 1-5 on success, < 0 on error */
128 static int arvo_get_actual_profile(struct usb_device
*usb_dev
)
130 struct arvo_actual_profile temp_buf
;
133 retval
= roccat_common_receive(usb_dev
, ARVO_USB_COMMAND_ACTUAL_PROFILE
,
134 &temp_buf
, sizeof(struct arvo_actual_profile
));
139 return temp_buf
.actual_profile
;
142 static ssize_t
arvo_sysfs_show_actual_profile(struct device
*dev
,
143 struct device_attribute
*attr
, char *buf
)
145 struct arvo_device
*arvo
=
146 hid_get_drvdata(dev_get_drvdata(dev
->parent
->parent
));
148 return snprintf(buf
, PAGE_SIZE
, "%d\n", arvo
->actual_profile
);
151 static ssize_t
arvo_sysfs_set_actual_profile(struct device
*dev
,
152 struct device_attribute
*attr
, char const *buf
, size_t size
)
154 struct arvo_device
*arvo
=
155 hid_get_drvdata(dev_get_drvdata(dev
->parent
->parent
));
156 struct usb_device
*usb_dev
=
157 interface_to_usbdev(to_usb_interface(dev
->parent
->parent
));
158 struct arvo_actual_profile temp_buf
;
159 unsigned long profile
;
162 retval
= strict_strtoul(buf
, 10, &profile
);
166 temp_buf
.command
= ARVO_COMMAND_ACTUAL_PROFILE
;
167 temp_buf
.actual_profile
= profile
;
169 mutex_lock(&arvo
->arvo_lock
);
170 retval
= roccat_common_send(usb_dev
, ARVO_USB_COMMAND_ACTUAL_PROFILE
,
171 &temp_buf
, sizeof(struct arvo_actual_profile
));
173 arvo
->actual_profile
= profile
;
176 mutex_unlock(&arvo
->arvo_lock
);
180 static ssize_t
arvo_sysfs_write(struct file
*fp
,
181 struct kobject
*kobj
, void const *buf
,
182 loff_t off
, size_t count
, size_t real_size
, uint command
)
185 container_of(kobj
, struct device
, kobj
)->parent
->parent
;
186 struct arvo_device
*arvo
= hid_get_drvdata(dev_get_drvdata(dev
));
187 struct usb_device
*usb_dev
= interface_to_usbdev(to_usb_interface(dev
));
190 if (off
!= 0 || count
!= real_size
)
193 mutex_lock(&arvo
->arvo_lock
);
194 retval
= roccat_common_send(usb_dev
, command
, buf
, real_size
);
195 mutex_unlock(&arvo
->arvo_lock
);
197 return (retval
? retval
: real_size
);
200 static ssize_t
arvo_sysfs_read(struct file
*fp
,
201 struct kobject
*kobj
, void *buf
, loff_t off
,
202 size_t count
, size_t real_size
, uint command
)
205 container_of(kobj
, struct device
, kobj
)->parent
->parent
;
206 struct arvo_device
*arvo
= hid_get_drvdata(dev_get_drvdata(dev
));
207 struct usb_device
*usb_dev
= interface_to_usbdev(to_usb_interface(dev
));
210 if (off
>= real_size
)
213 if (off
!= 0 || count
!= real_size
)
216 mutex_lock(&arvo
->arvo_lock
);
217 retval
= roccat_common_receive(usb_dev
, command
, buf
, real_size
);
218 mutex_unlock(&arvo
->arvo_lock
);
220 return (retval
? retval
: real_size
);
223 static ssize_t
arvo_sysfs_write_button(struct file
*fp
,
224 struct kobject
*kobj
, struct bin_attribute
*attr
, char *buf
,
225 loff_t off
, size_t count
)
227 return arvo_sysfs_write(fp
, kobj
, buf
, off
, count
,
228 sizeof(struct arvo_button
), ARVO_USB_COMMAND_BUTTON
);
231 static ssize_t
arvo_sysfs_read_info(struct file
*fp
,
232 struct kobject
*kobj
, struct bin_attribute
*attr
, char *buf
,
233 loff_t off
, size_t count
)
235 return arvo_sysfs_read(fp
, kobj
, buf
, off
, count
,
236 sizeof(struct arvo_info
), ARVO_USB_COMMAND_INFO
);
240 static struct device_attribute arvo_attributes
[] = {
241 __ATTR(mode_key
, 0660,
242 arvo_sysfs_show_mode_key
, arvo_sysfs_set_mode_key
),
243 __ATTR(key_mask
, 0660,
244 arvo_sysfs_show_key_mask
, arvo_sysfs_set_key_mask
),
245 __ATTR(actual_profile
, 0660,
246 arvo_sysfs_show_actual_profile
,
247 arvo_sysfs_set_actual_profile
),
251 static struct bin_attribute arvo_bin_attributes
[] = {
253 .attr
= { .name
= "button", .mode
= 0220 },
254 .size
= sizeof(struct arvo_button
),
255 .write
= arvo_sysfs_write_button
258 .attr
= { .name
= "info", .mode
= 0440 },
259 .size
= sizeof(struct arvo_info
),
260 .read
= arvo_sysfs_read_info
265 static int arvo_init_arvo_device_struct(struct usb_device
*usb_dev
,
266 struct arvo_device
*arvo
)
270 mutex_init(&arvo
->arvo_lock
);
272 retval
= arvo_get_actual_profile(usb_dev
);
275 arvo
->actual_profile
= retval
;
280 static int arvo_init_specials(struct hid_device
*hdev
)
282 struct usb_interface
*intf
= to_usb_interface(hdev
->dev
.parent
);
283 struct usb_device
*usb_dev
= interface_to_usbdev(intf
);
284 struct arvo_device
*arvo
;
287 if (intf
->cur_altsetting
->desc
.bInterfaceProtocol
288 == USB_INTERFACE_PROTOCOL_KEYBOARD
) {
289 hid_set_drvdata(hdev
, NULL
);
293 arvo
= kzalloc(sizeof(*arvo
), GFP_KERNEL
);
295 hid_err(hdev
, "can't alloc device descriptor\n");
298 hid_set_drvdata(hdev
, arvo
);
300 retval
= arvo_init_arvo_device_struct(usb_dev
, arvo
);
302 hid_err(hdev
, "couldn't init struct arvo_device\n");
306 retval
= roccat_connect(arvo_class
, hdev
,
307 sizeof(struct arvo_roccat_report
));
309 hid_err(hdev
, "couldn't init char dev\n");
311 arvo
->chrdev_minor
= retval
;
312 arvo
->roccat_claimed
= 1;
321 static void arvo_remove_specials(struct hid_device
*hdev
)
323 struct usb_interface
*intf
= to_usb_interface(hdev
->dev
.parent
);
324 struct arvo_device
*arvo
;
326 if (intf
->cur_altsetting
->desc
.bInterfaceProtocol
327 == USB_INTERFACE_PROTOCOL_KEYBOARD
)
330 arvo
= hid_get_drvdata(hdev
);
331 if (arvo
->roccat_claimed
)
332 roccat_disconnect(arvo
->chrdev_minor
);
336 static int arvo_probe(struct hid_device
*hdev
,
337 const struct hid_device_id
*id
)
341 retval
= hid_parse(hdev
);
343 hid_err(hdev
, "parse failed\n");
347 retval
= hid_hw_start(hdev
, HID_CONNECT_DEFAULT
);
349 hid_err(hdev
, "hw start failed\n");
353 retval
= arvo_init_specials(hdev
);
355 hid_err(hdev
, "couldn't install keyboard\n");
367 static void arvo_remove(struct hid_device
*hdev
)
369 arvo_remove_specials(hdev
);
373 static void arvo_report_to_chrdev(struct arvo_device
const *arvo
,
376 struct arvo_special_report
const *special_report
;
377 struct arvo_roccat_report roccat_report
;
379 special_report
= (struct arvo_special_report
const *)data
;
381 roccat_report
.profile
= arvo
->actual_profile
;
382 roccat_report
.button
= special_report
->event
&
383 ARVO_SPECIAL_REPORT_EVENT_MASK_BUTTON
;
384 if ((special_report
->event
& ARVO_SPECIAL_REPORT_EVENT_MASK_ACTION
) ==
385 ARVO_SPECIAL_REPORT_EVENT_ACTION_PRESS
)
386 roccat_report
.action
= ARVO_ROCCAT_REPORT_ACTION_PRESS
;
388 roccat_report
.action
= ARVO_ROCCAT_REPORT_ACTION_RELEASE
;
390 roccat_report_event(arvo
->chrdev_minor
,
391 (uint8_t const *)&roccat_report
);
394 static int arvo_raw_event(struct hid_device
*hdev
,
395 struct hid_report
*report
, u8
*data
, int size
)
397 struct arvo_device
*arvo
= hid_get_drvdata(hdev
);
402 if (arvo
->roccat_claimed
)
403 arvo_report_to_chrdev(arvo
, data
);
408 static const struct hid_device_id arvo_devices
[] = {
409 { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT
, USB_DEVICE_ID_ROCCAT_ARVO
) },
413 MODULE_DEVICE_TABLE(hid
, arvo_devices
);
415 static struct hid_driver arvo_driver
= {
417 .id_table
= arvo_devices
,
419 .remove
= arvo_remove
,
420 .raw_event
= arvo_raw_event
423 static int __init
arvo_init(void)
427 arvo_class
= class_create(THIS_MODULE
, "arvo");
428 if (IS_ERR(arvo_class
))
429 return PTR_ERR(arvo_class
);
430 arvo_class
->dev_attrs
= arvo_attributes
;
431 arvo_class
->dev_bin_attrs
= arvo_bin_attributes
;
433 retval
= hid_register_driver(&arvo_driver
);
435 class_destroy(arvo_class
);
439 static void __exit
arvo_exit(void)
441 hid_unregister_driver(&arvo_driver
);
442 class_destroy(arvo_class
);
445 module_init(arvo_init
);
446 module_exit(arvo_exit
);
448 MODULE_AUTHOR("Stefan Achatz");
449 MODULE_DESCRIPTION("USB Roccat Arvo driver");
450 MODULE_LICENSE("GPL v2");