blob: 19f9c47fc0201dabb48fd6ebd4e31bb21d80512c [file] [log] [blame]
Stefan Achatz6a2a6392012-05-20 22:44:54 +02001/*
2 * Roccat Savu driver for Linux
3 *
4 * Copyright (c) 2012 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/* Roccat Savu is a gamer mouse with macro keys that can be configured in
15 * 5 profiles.
16 */
17
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>
24#include "hid-ids.h"
25#include "hid-roccat-common.h"
26#include "hid-roccat-savu.h"
27
28static struct class *savu_class;
29
Stefan Achatz6a2a6392012-05-20 22:44:54 +020030static 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)
33{
34 struct device *dev =
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));
38 int retval;
39
40 if (off >= real_size)
41 return 0;
42
43 if (off != 0 || count != real_size)
44 return -EINVAL;
45
46 mutex_lock(&savu->savu_lock);
47 retval = roccat_common_receive(usb_dev, command, buf, real_size);
48 mutex_unlock(&savu->savu_lock);
49
50 return retval ? retval : real_size;
51}
52
53static 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)
56{
57 struct device *dev =
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));
61 int retval;
62
63 if (off != 0 || count != real_size)
64 return -EINVAL;
65
66 mutex_lock(&savu->savu_lock);
Stefan Achatz4728f2d2012-05-20 22:44:59 +020067 retval = roccat_common_send_with_status(usb_dev, command,
68 (void *)buf, real_size);
Stefan Achatz6a2a6392012-05-20 22:44:54 +020069 mutex_unlock(&savu->savu_lock);
70
71 return retval ? retval : real_size;
72}
73
74#define SAVU_SYSFS_W(thingy, THINGY) \
75static 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) \
78{ \
79 return savu_sysfs_write(fp, kobj, buf, off, count, \
80 SAVU_SIZE_ ## THINGY, SAVU_COMMAND_ ## THINGY); \
81}
82
83#define SAVU_SYSFS_R(thingy, THINGY) \
84static 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) \
87{ \
88 return savu_sysfs_read(fp, kobj, buf, off, count, \
89 SAVU_SIZE_ ## THINGY, SAVU_COMMAND_ ## THINGY); \
90}
91
92#define SAVU_SYSFS_RW(thingy, THINGY) \
93SAVU_SYSFS_W(thingy, THINGY) \
94SAVU_SYSFS_R(thingy, THINGY)
95
96#define SAVU_BIN_ATTRIBUTE_RW(thingy, THINGY) \
97{ \
98 .attr = { .name = #thingy, .mode = 0660 }, \
99 .size = SAVU_SIZE_ ## THINGY, \
100 .read = savu_sysfs_read_ ## thingy, \
101 .write = savu_sysfs_write_ ## thingy \
102}
103
104#define SAVU_BIN_ATTRIBUTE_R(thingy, THINGY) \
105{ \
106 .attr = { .name = #thingy, .mode = 0440 }, \
107 .size = SAVU_SIZE_ ## THINGY, \
108 .read = savu_sysfs_read_ ## thingy, \
109}
110
111#define SAVU_BIN_ATTRIBUTE_W(thingy, THINGY) \
112{ \
113 .attr = { .name = #thingy, .mode = 0220 }, \
114 .size = SAVU_SIZE_ ## THINGY, \
115 .write = savu_sysfs_write_ ## thingy \
116}
117
118SAVU_SYSFS_W(control, CONTROL)
119SAVU_SYSFS_RW(profile, PROFILE)
120SAVU_SYSFS_RW(general, GENERAL)
121SAVU_SYSFS_RW(buttons, BUTTONS)
122SAVU_SYSFS_RW(macro, MACRO)
123SAVU_SYSFS_R(info, INFO)
124
125static struct bin_attribute savu_bin_attributes[] = {
126 SAVU_BIN_ATTRIBUTE_W(control, CONTROL),
127 SAVU_BIN_ATTRIBUTE_RW(profile, PROFILE),
128 SAVU_BIN_ATTRIBUTE_RW(general, GENERAL),
129 SAVU_BIN_ATTRIBUTE_RW(buttons, BUTTONS),
130 SAVU_BIN_ATTRIBUTE_RW(macro, MACRO),
131 SAVU_BIN_ATTRIBUTE_R(info, INFO),
132 __ATTR_NULL
133};
134
135static int savu_init_savu_device_struct(struct usb_device *usb_dev,
136 struct savu_device *savu)
137{
138 mutex_init(&savu->savu_lock);
139
140 return 0;
141}
142
143static int savu_init_specials(struct hid_device *hdev)
144{
145 struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
146 struct usb_device *usb_dev = interface_to_usbdev(intf);
147 struct savu_device *savu;
148 int retval;
149
150 if (intf->cur_altsetting->desc.bInterfaceProtocol
151 != USB_INTERFACE_PROTOCOL_MOUSE) {
152 hid_set_drvdata(hdev, NULL);
153 return 0;
154 }
155
156 savu = kzalloc(sizeof(*savu), GFP_KERNEL);
157 if (!savu) {
158 hid_err(hdev, "can't alloc device descriptor\n");
159 return -ENOMEM;
160 }
161 hid_set_drvdata(hdev, savu);
162
163 retval = savu_init_savu_device_struct(usb_dev, savu);
164 if (retval) {
165 hid_err(hdev, "couldn't init struct savu_device\n");
166 goto exit_free;
167 }
168
169 retval = roccat_connect(savu_class, hdev,
170 sizeof(struct savu_roccat_report));
171 if (retval < 0) {
172 hid_err(hdev, "couldn't init char dev\n");
173 } else {
174 savu->chrdev_minor = retval;
175 savu->roccat_claimed = 1;
176 }
177
178 return 0;
179exit_free:
180 kfree(savu);
181 return retval;
182}
183
184static void savu_remove_specials(struct hid_device *hdev)
185{
186 struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
187 struct savu_device *savu;
188
189 if (intf->cur_altsetting->desc.bInterfaceProtocol
190 != USB_INTERFACE_PROTOCOL_MOUSE)
191 return;
192
193 savu = hid_get_drvdata(hdev);
194 if (savu->roccat_claimed)
195 roccat_disconnect(savu->chrdev_minor);
196 kfree(savu);
197}
198
199static int savu_probe(struct hid_device *hdev,
200 const struct hid_device_id *id)
201{
202 int retval;
203
204 retval = hid_parse(hdev);
205 if (retval) {
206 hid_err(hdev, "parse failed\n");
207 goto exit;
208 }
209
210 retval = hid_hw_start(hdev, HID_CONNECT_DEFAULT);
211 if (retval) {
212 hid_err(hdev, "hw start failed\n");
213 goto exit;
214 }
215
216 retval = savu_init_specials(hdev);
217 if (retval) {
218 hid_err(hdev, "couldn't install mouse\n");
219 goto exit_stop;
220 }
221
222 return 0;
223
224exit_stop:
225 hid_hw_stop(hdev);
226exit:
227 return retval;
228}
229
230static void savu_remove(struct hid_device *hdev)
231{
232 savu_remove_specials(hdev);
233 hid_hw_stop(hdev);
234}
235
236static void savu_report_to_chrdev(struct savu_device const *savu,
237 u8 const *data)
238{
239 struct savu_roccat_report roccat_report;
240 struct savu_mouse_report_special const *special_report;
241
242 if (data[0] != SAVU_MOUSE_REPORT_NUMBER_SPECIAL)
243 return;
244
245 special_report = (struct savu_mouse_report_special const *)data;
246
247 roccat_report.type = special_report->type;
248 roccat_report.data[0] = special_report->data[0];
249 roccat_report.data[1] = special_report->data[1];
250 roccat_report_event(savu->chrdev_minor,
251 (uint8_t const *)&roccat_report);
252}
253
254static int savu_raw_event(struct hid_device *hdev,
255 struct hid_report *report, u8 *data, int size)
256{
257 struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
258 struct savu_device *savu = hid_get_drvdata(hdev);
259
260 if (intf->cur_altsetting->desc.bInterfaceProtocol
261 != USB_INTERFACE_PROTOCOL_MOUSE)
262 return 0;
263
264 if (savu == NULL)
265 return 0;
266
267 if (savu->roccat_claimed)
268 savu_report_to_chrdev(savu, data);
269
270 return 0;
271}
272
273static const struct hid_device_id savu_devices[] = {
274 { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_SAVU) },
275 { }
276};
277
278MODULE_DEVICE_TABLE(hid, savu_devices);
279
280static struct hid_driver savu_driver = {
281 .name = "savu",
282 .id_table = savu_devices,
283 .probe = savu_probe,
284 .remove = savu_remove,
285 .raw_event = savu_raw_event
286};
287
288static int __init savu_init(void)
289{
290 int retval;
291
292 savu_class = class_create(THIS_MODULE, "savu");
293 if (IS_ERR(savu_class))
294 return PTR_ERR(savu_class);
295 savu_class->dev_bin_attrs = savu_bin_attributes;
296
297 retval = hid_register_driver(&savu_driver);
298 if (retval)
299 class_destroy(savu_class);
300 return retval;
301}
302
303static void __exit savu_exit(void)
304{
305 hid_unregister_driver(&savu_driver);
306 class_destroy(savu_class);
307}
308
309module_init(savu_init);
310module_exit(savu_exit);
311
312MODULE_AUTHOR("Stefan Achatz");
313MODULE_DESCRIPTION("USB Roccat Savu driver");
314MODULE_LICENSE("GPL v2");