2 * Roccat Savu driver for Linux
4 * Copyright (c) 2012 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)
14 /* Roccat Savu is a gamer mouse with macro keys that can be configured in
18 #include <linux/device.h>
19 #include <linux/input.h>
20 #include <linux/hid.h>
21 #include <linux/module.h>
22 #include <linux/slab.h>
23 #include <linux/hid-roccat.h>
25 #include "hid-roccat-common.h"
26 #include "hid-roccat-savu.h"
28 static struct class *savu_class
;
30 static ssize_t
savu_sysfs_read(struct file
*fp
, struct kobject
*kobj
,
31 char *buf
, loff_t off
, size_t count
,
32 size_t real_size
, uint command
)
35 container_of(kobj
, struct device
, kobj
)->parent
->parent
;
36 struct savu_device
*savu
= hid_get_drvdata(dev_get_drvdata(dev
));
37 struct usb_device
*usb_dev
= interface_to_usbdev(to_usb_interface(dev
));
43 if (off
!= 0 || count
!= real_size
)
46 mutex_lock(&savu
->savu_lock
);
47 retval
= roccat_common2_receive(usb_dev
, command
, buf
, real_size
);
48 mutex_unlock(&savu
->savu_lock
);
50 return retval
? retval
: real_size
;
53 static ssize_t
savu_sysfs_write(struct file
*fp
, struct kobject
*kobj
,
54 void const *buf
, loff_t off
, size_t count
,
55 size_t real_size
, uint command
)
58 container_of(kobj
, struct device
, kobj
)->parent
->parent
;
59 struct savu_device
*savu
= hid_get_drvdata(dev_get_drvdata(dev
));
60 struct usb_device
*usb_dev
= interface_to_usbdev(to_usb_interface(dev
));
63 if (off
!= 0 || count
!= real_size
)
66 mutex_lock(&savu
->savu_lock
);
67 retval
= roccat_common2_send_with_status(usb_dev
, command
,
68 (void *)buf
, real_size
);
69 mutex_unlock(&savu
->savu_lock
);
71 return retval
? retval
: real_size
;
74 #define SAVU_SYSFS_W(thingy, THINGY) \
75 static ssize_t savu_sysfs_write_ ## thingy(struct file *fp, \
76 struct kobject *kobj, struct bin_attribute *attr, char *buf, \
77 loff_t off, size_t count) \
79 return savu_sysfs_write(fp, kobj, buf, off, count, \
80 SAVU_SIZE_ ## THINGY, SAVU_COMMAND_ ## THINGY); \
83 #define SAVU_SYSFS_R(thingy, THINGY) \
84 static ssize_t savu_sysfs_read_ ## thingy(struct file *fp, \
85 struct kobject *kobj, struct bin_attribute *attr, char *buf, \
86 loff_t off, size_t count) \
88 return savu_sysfs_read(fp, kobj, buf, off, count, \
89 SAVU_SIZE_ ## THINGY, SAVU_COMMAND_ ## THINGY); \
92 #define SAVU_SYSFS_RW(thingy, THINGY) \
93 SAVU_SYSFS_W(thingy, THINGY) \
94 SAVU_SYSFS_R(thingy, THINGY)
96 #define SAVU_BIN_ATTRIBUTE_RW(thingy, THINGY) \
98 .attr = { .name = #thingy, .mode = 0660 }, \
99 .size = SAVU_SIZE_ ## THINGY, \
100 .read = savu_sysfs_read_ ## thingy, \
101 .write = savu_sysfs_write_ ## thingy \
104 #define SAVU_BIN_ATTRIBUTE_R(thingy, THINGY) \
106 .attr = { .name = #thingy, .mode = 0440 }, \
107 .size = SAVU_SIZE_ ## THINGY, \
108 .read = savu_sysfs_read_ ## thingy, \
111 #define SAVU_BIN_ATTRIBUTE_W(thingy, THINGY) \
113 .attr = { .name = #thingy, .mode = 0220 }, \
114 .size = SAVU_SIZE_ ## THINGY, \
115 .write = savu_sysfs_write_ ## thingy \
118 SAVU_SYSFS_W(control
, CONTROL
)
119 SAVU_SYSFS_RW(profile
, PROFILE
)
120 SAVU_SYSFS_RW(general
, GENERAL
)
121 SAVU_SYSFS_RW(buttons
, BUTTONS
)
122 SAVU_SYSFS_RW(macro
, MACRO
)
123 SAVU_SYSFS_RW(info
, INFO
)
124 SAVU_SYSFS_RW(sensor
, SENSOR
)
126 static struct bin_attribute savu_bin_attributes
[] = {
127 SAVU_BIN_ATTRIBUTE_W(control
, CONTROL
),
128 SAVU_BIN_ATTRIBUTE_RW(profile
, PROFILE
),
129 SAVU_BIN_ATTRIBUTE_RW(general
, GENERAL
),
130 SAVU_BIN_ATTRIBUTE_RW(buttons
, BUTTONS
),
131 SAVU_BIN_ATTRIBUTE_RW(macro
, MACRO
),
132 SAVU_BIN_ATTRIBUTE_RW(info
, INFO
),
133 SAVU_BIN_ATTRIBUTE_RW(sensor
, SENSOR
),
137 static int savu_init_savu_device_struct(struct usb_device
*usb_dev
,
138 struct savu_device
*savu
)
140 mutex_init(&savu
->savu_lock
);
145 static int savu_init_specials(struct hid_device
*hdev
)
147 struct usb_interface
*intf
= to_usb_interface(hdev
->dev
.parent
);
148 struct usb_device
*usb_dev
= interface_to_usbdev(intf
);
149 struct savu_device
*savu
;
152 if (intf
->cur_altsetting
->desc
.bInterfaceProtocol
153 != USB_INTERFACE_PROTOCOL_MOUSE
) {
154 hid_set_drvdata(hdev
, NULL
);
158 savu
= kzalloc(sizeof(*savu
), GFP_KERNEL
);
160 hid_err(hdev
, "can't alloc device descriptor\n");
163 hid_set_drvdata(hdev
, savu
);
165 retval
= savu_init_savu_device_struct(usb_dev
, savu
);
167 hid_err(hdev
, "couldn't init struct savu_device\n");
171 retval
= roccat_connect(savu_class
, hdev
,
172 sizeof(struct savu_roccat_report
));
174 hid_err(hdev
, "couldn't init char dev\n");
176 savu
->chrdev_minor
= retval
;
177 savu
->roccat_claimed
= 1;
186 static void savu_remove_specials(struct hid_device
*hdev
)
188 struct usb_interface
*intf
= to_usb_interface(hdev
->dev
.parent
);
189 struct savu_device
*savu
;
191 if (intf
->cur_altsetting
->desc
.bInterfaceProtocol
192 != USB_INTERFACE_PROTOCOL_MOUSE
)
195 savu
= hid_get_drvdata(hdev
);
196 if (savu
->roccat_claimed
)
197 roccat_disconnect(savu
->chrdev_minor
);
201 static int savu_probe(struct hid_device
*hdev
,
202 const struct hid_device_id
*id
)
206 retval
= hid_parse(hdev
);
208 hid_err(hdev
, "parse failed\n");
212 retval
= hid_hw_start(hdev
, HID_CONNECT_DEFAULT
);
214 hid_err(hdev
, "hw start failed\n");
218 retval
= savu_init_specials(hdev
);
220 hid_err(hdev
, "couldn't install mouse\n");
232 static void savu_remove(struct hid_device
*hdev
)
234 savu_remove_specials(hdev
);
238 static void savu_report_to_chrdev(struct savu_device
const *savu
,
241 struct savu_roccat_report roccat_report
;
242 struct savu_mouse_report_special
const *special_report
;
244 if (data
[0] != SAVU_MOUSE_REPORT_NUMBER_SPECIAL
)
247 special_report
= (struct savu_mouse_report_special
const *)data
;
249 roccat_report
.type
= special_report
->type
;
250 roccat_report
.data
[0] = special_report
->data
[0];
251 roccat_report
.data
[1] = special_report
->data
[1];
252 roccat_report_event(savu
->chrdev_minor
,
253 (uint8_t const *)&roccat_report
);
256 static int savu_raw_event(struct hid_device
*hdev
,
257 struct hid_report
*report
, u8
*data
, int size
)
259 struct usb_interface
*intf
= to_usb_interface(hdev
->dev
.parent
);
260 struct savu_device
*savu
= hid_get_drvdata(hdev
);
262 if (intf
->cur_altsetting
->desc
.bInterfaceProtocol
263 != USB_INTERFACE_PROTOCOL_MOUSE
)
269 if (savu
->roccat_claimed
)
270 savu_report_to_chrdev(savu
, data
);
275 static const struct hid_device_id savu_devices
[] = {
276 { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT
, USB_DEVICE_ID_ROCCAT_SAVU
) },
280 MODULE_DEVICE_TABLE(hid
, savu_devices
);
282 static struct hid_driver savu_driver
= {
284 .id_table
= savu_devices
,
286 .remove
= savu_remove
,
287 .raw_event
= savu_raw_event
290 static int __init
savu_init(void)
294 savu_class
= class_create(THIS_MODULE
, "savu");
295 if (IS_ERR(savu_class
))
296 return PTR_ERR(savu_class
);
297 savu_class
->dev_bin_attrs
= savu_bin_attributes
;
299 retval
= hid_register_driver(&savu_driver
);
301 class_destroy(savu_class
);
305 static void __exit
savu_exit(void)
307 hid_unregister_driver(&savu_driver
);
308 class_destroy(savu_class
);
311 module_init(savu_init
);
312 module_exit(savu_exit
);
314 MODULE_AUTHOR("Stefan Achatz");
315 MODULE_DESCRIPTION("USB Roccat Savu driver");
316 MODULE_LICENSE("GPL v2");