b43: HT-PHY: fix typo in 0x2059 radio init
[linux-2.6/btrfs-unstable.git] / drivers / hid / hid-roccat-koneplus.c
blob5b640a7a15a72857e1d7705d8a819b21edc72063
1 /*
2 * Roccat Kone[+] driver for Linux
4 * Copyright (c) 2010 Stefan Achatz <erazor_de@users.sourceforge.net>
5 */
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.
15 * Roccat Kone[+] is an updated/improved version of the Kone with more memory
16 * and functionality and without the non-standard behaviours the Kone had.
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>
25 #include "hid-ids.h"
26 #include "hid-roccat-common.h"
27 #include "hid-roccat-koneplus.h"
29 static uint profile_numbers[5] = {0, 1, 2, 3, 4};
31 static struct class *koneplus_class;
33 static void koneplus_profile_activated(struct koneplus_device *koneplus,
34 uint new_profile)
36 koneplus->actual_profile = new_profile;
39 static int koneplus_send_control(struct usb_device *usb_dev, uint value,
40 enum koneplus_control_requests request)
42 struct koneplus_control control;
44 if ((request == KONEPLUS_CONTROL_REQUEST_PROFILE_SETTINGS ||
45 request == KONEPLUS_CONTROL_REQUEST_PROFILE_BUTTONS) &&
46 value > 4)
47 return -EINVAL;
49 control.command = KONEPLUS_COMMAND_CONTROL;
50 control.value = value;
51 control.request = request;
53 return roccat_common_send(usb_dev, KONEPLUS_USB_COMMAND_CONTROL,
54 &control, sizeof(struct koneplus_control));
57 static int koneplus_receive_control_status(struct usb_device *usb_dev)
59 int retval;
60 struct koneplus_control control;
62 do {
63 retval = roccat_common_receive(usb_dev, KONEPLUS_USB_COMMAND_CONTROL,
64 &control, sizeof(struct koneplus_control));
66 /* check if we get a completely wrong answer */
67 if (retval)
68 return retval;
70 if (control.value == KONEPLUS_CONTROL_REQUEST_STATUS_OK)
71 return 0;
73 /* indicates that hardware needs some more time to complete action */
74 if (control.value == KONEPLUS_CONTROL_REQUEST_STATUS_WAIT) {
75 msleep(500); /* windows driver uses 1000 */
76 continue;
79 /* seems to be critical - replug necessary */
80 if (control.value == KONEPLUS_CONTROL_REQUEST_STATUS_OVERLOAD)
81 return -EINVAL;
83 hid_err(usb_dev, "koneplus_receive_control_status: "
84 "unknown response value 0x%x\n", control.value);
85 return -EINVAL;
86 } while (1);
89 static int koneplus_send(struct usb_device *usb_dev, uint command,
90 void const *buf, uint size)
92 int retval;
94 retval = roccat_common_send(usb_dev, command, buf, size);
95 if (retval)
96 return retval;
98 return koneplus_receive_control_status(usb_dev);
101 static int koneplus_select_profile(struct usb_device *usb_dev, uint number,
102 enum koneplus_control_requests request)
104 int retval;
106 retval = koneplus_send_control(usb_dev, number, request);
107 if (retval)
108 return retval;
110 /* allow time to settle things - windows driver uses 500 */
111 msleep(100);
113 retval = koneplus_receive_control_status(usb_dev);
114 if (retval)
115 return retval;
117 return 0;
120 static int koneplus_get_info(struct usb_device *usb_dev,
121 struct koneplus_info *buf)
123 return roccat_common_receive(usb_dev, KONEPLUS_USB_COMMAND_INFO,
124 buf, sizeof(struct koneplus_info));
127 static int koneplus_get_profile_settings(struct usb_device *usb_dev,
128 struct koneplus_profile_settings *buf, uint number)
130 int retval;
132 retval = koneplus_select_profile(usb_dev, number,
133 KONEPLUS_CONTROL_REQUEST_PROFILE_SETTINGS);
134 if (retval)
135 return retval;
137 return roccat_common_receive(usb_dev, KONEPLUS_USB_COMMAND_PROFILE_SETTINGS,
138 buf, sizeof(struct koneplus_profile_settings));
141 static int koneplus_set_profile_settings(struct usb_device *usb_dev,
142 struct koneplus_profile_settings const *settings)
144 return koneplus_send(usb_dev, KONEPLUS_USB_COMMAND_PROFILE_SETTINGS,
145 settings, sizeof(struct koneplus_profile_settings));
148 static int koneplus_get_profile_buttons(struct usb_device *usb_dev,
149 struct koneplus_profile_buttons *buf, int number)
151 int retval;
153 retval = koneplus_select_profile(usb_dev, number,
154 KONEPLUS_CONTROL_REQUEST_PROFILE_BUTTONS);
155 if (retval)
156 return retval;
158 return roccat_common_receive(usb_dev, KONEPLUS_USB_COMMAND_PROFILE_BUTTONS,
159 buf, sizeof(struct koneplus_profile_buttons));
162 static int koneplus_set_profile_buttons(struct usb_device *usb_dev,
163 struct koneplus_profile_buttons const *buttons)
165 return koneplus_send(usb_dev, KONEPLUS_USB_COMMAND_PROFILE_BUTTONS,
166 buttons, sizeof(struct koneplus_profile_buttons));
169 /* retval is 0-4 on success, < 0 on error */
170 static int koneplus_get_actual_profile(struct usb_device *usb_dev)
172 struct koneplus_actual_profile buf;
173 int retval;
175 retval = roccat_common_receive(usb_dev, KONEPLUS_USB_COMMAND_ACTUAL_PROFILE,
176 &buf, sizeof(struct koneplus_actual_profile));
178 return retval ? retval : buf.actual_profile;
181 static int koneplus_set_actual_profile(struct usb_device *usb_dev,
182 int new_profile)
184 struct koneplus_actual_profile buf;
186 buf.command = KONEPLUS_COMMAND_ACTUAL_PROFILE;
187 buf.size = sizeof(struct koneplus_actual_profile);
188 buf.actual_profile = new_profile;
190 return koneplus_send(usb_dev, KONEPLUS_USB_COMMAND_ACTUAL_PROFILE,
191 &buf, sizeof(struct koneplus_actual_profile));
194 static ssize_t koneplus_sysfs_read(struct file *fp, struct kobject *kobj,
195 char *buf, loff_t off, size_t count,
196 size_t real_size, uint command)
198 struct device *dev =
199 container_of(kobj, struct device, kobj)->parent->parent;
200 struct koneplus_device *koneplus = hid_get_drvdata(dev_get_drvdata(dev));
201 struct usb_device *usb_dev = interface_to_usbdev(to_usb_interface(dev));
202 int retval;
204 if (off >= real_size)
205 return 0;
207 if (off != 0 || count != real_size)
208 return -EINVAL;
210 mutex_lock(&koneplus->koneplus_lock);
211 retval = roccat_common_receive(usb_dev, command, buf, real_size);
212 mutex_unlock(&koneplus->koneplus_lock);
214 if (retval)
215 return retval;
217 return real_size;
220 static ssize_t koneplus_sysfs_write(struct file *fp, struct kobject *kobj,
221 void const *buf, loff_t off, size_t count,
222 size_t real_size, uint command)
224 struct device *dev =
225 container_of(kobj, struct device, kobj)->parent->parent;
226 struct koneplus_device *koneplus = hid_get_drvdata(dev_get_drvdata(dev));
227 struct usb_device *usb_dev = interface_to_usbdev(to_usb_interface(dev));
228 int retval;
230 if (off != 0 || count != real_size)
231 return -EINVAL;
233 mutex_lock(&koneplus->koneplus_lock);
234 retval = koneplus_send(usb_dev, command, buf, real_size);
235 mutex_unlock(&koneplus->koneplus_lock);
237 if (retval)
238 return retval;
240 return real_size;
243 static ssize_t koneplus_sysfs_write_macro(struct file *fp,
244 struct kobject *kobj, struct bin_attribute *attr, char *buf,
245 loff_t off, size_t count)
247 return koneplus_sysfs_write(fp, kobj, buf, off, count,
248 sizeof(struct koneplus_macro), KONEPLUS_USB_COMMAND_MACRO);
251 static ssize_t koneplus_sysfs_read_sensor(struct file *fp,
252 struct kobject *kobj, struct bin_attribute *attr, char *buf,
253 loff_t off, size_t count)
255 return koneplus_sysfs_read(fp, kobj, buf, off, count,
256 sizeof(struct koneplus_sensor), KONEPLUS_USB_COMMAND_SENSOR);
259 static ssize_t koneplus_sysfs_write_sensor(struct file *fp,
260 struct kobject *kobj, struct bin_attribute *attr, char *buf,
261 loff_t off, size_t count)
263 return koneplus_sysfs_write(fp, kobj, buf, off, count,
264 sizeof(struct koneplus_sensor), KONEPLUS_USB_COMMAND_SENSOR);
267 static ssize_t koneplus_sysfs_write_tcu(struct file *fp,
268 struct kobject *kobj, struct bin_attribute *attr, char *buf,
269 loff_t off, size_t count)
271 return koneplus_sysfs_write(fp, kobj, buf, off, count,
272 sizeof(struct koneplus_tcu), KONEPLUS_USB_COMMAND_TCU);
275 static ssize_t koneplus_sysfs_read_tcu_image(struct file *fp,
276 struct kobject *kobj, struct bin_attribute *attr, char *buf,
277 loff_t off, size_t count)
279 return koneplus_sysfs_read(fp, kobj, buf, off, count,
280 sizeof(struct koneplus_tcu_image), KONEPLUS_USB_COMMAND_TCU);
283 static ssize_t koneplus_sysfs_read_profilex_settings(struct file *fp,
284 struct kobject *kobj, struct bin_attribute *attr, char *buf,
285 loff_t off, size_t count)
287 struct device *dev =
288 container_of(kobj, struct device, kobj)->parent->parent;
289 struct koneplus_device *koneplus = hid_get_drvdata(dev_get_drvdata(dev));
291 if (off >= sizeof(struct koneplus_profile_settings))
292 return 0;
294 if (off + count > sizeof(struct koneplus_profile_settings))
295 count = sizeof(struct koneplus_profile_settings) - off;
297 mutex_lock(&koneplus->koneplus_lock);
298 memcpy(buf, ((char const *)&koneplus->profile_settings[*(uint *)(attr->private)]) + off,
299 count);
300 mutex_unlock(&koneplus->koneplus_lock);
302 return count;
305 static ssize_t koneplus_sysfs_write_profile_settings(struct file *fp,
306 struct kobject *kobj, struct bin_attribute *attr, char *buf,
307 loff_t off, size_t count)
309 struct device *dev =
310 container_of(kobj, struct device, kobj)->parent->parent;
311 struct koneplus_device *koneplus = hid_get_drvdata(dev_get_drvdata(dev));
312 struct usb_device *usb_dev = interface_to_usbdev(to_usb_interface(dev));
313 int retval = 0;
314 int difference;
315 int profile_number;
316 struct koneplus_profile_settings *profile_settings;
318 if (off != 0 || count != sizeof(struct koneplus_profile_settings))
319 return -EINVAL;
321 profile_number = ((struct koneplus_profile_settings const *)buf)->number;
322 profile_settings = &koneplus->profile_settings[profile_number];
324 mutex_lock(&koneplus->koneplus_lock);
325 difference = memcmp(buf, profile_settings,
326 sizeof(struct koneplus_profile_settings));
327 if (difference) {
328 retval = koneplus_set_profile_settings(usb_dev,
329 (struct koneplus_profile_settings const *)buf);
330 if (!retval)
331 memcpy(profile_settings, buf,
332 sizeof(struct koneplus_profile_settings));
334 mutex_unlock(&koneplus->koneplus_lock);
336 if (retval)
337 return retval;
339 return sizeof(struct koneplus_profile_settings);
342 static ssize_t koneplus_sysfs_read_profilex_buttons(struct file *fp,
343 struct kobject *kobj, struct bin_attribute *attr, char *buf,
344 loff_t off, size_t count)
346 struct device *dev =
347 container_of(kobj, struct device, kobj)->parent->parent;
348 struct koneplus_device *koneplus = hid_get_drvdata(dev_get_drvdata(dev));
350 if (off >= sizeof(struct koneplus_profile_buttons))
351 return 0;
353 if (off + count > sizeof(struct koneplus_profile_buttons))
354 count = sizeof(struct koneplus_profile_buttons) - off;
356 mutex_lock(&koneplus->koneplus_lock);
357 memcpy(buf, ((char const *)&koneplus->profile_buttons[*(uint *)(attr->private)]) + off,
358 count);
359 mutex_unlock(&koneplus->koneplus_lock);
361 return count;
364 static ssize_t koneplus_sysfs_write_profile_buttons(struct file *fp,
365 struct kobject *kobj, struct bin_attribute *attr, char *buf,
366 loff_t off, size_t count)
368 struct device *dev =
369 container_of(kobj, struct device, kobj)->parent->parent;
370 struct koneplus_device *koneplus = hid_get_drvdata(dev_get_drvdata(dev));
371 struct usb_device *usb_dev = interface_to_usbdev(to_usb_interface(dev));
372 int retval = 0;
373 int difference;
374 uint profile_number;
375 struct koneplus_profile_buttons *profile_buttons;
377 if (off != 0 || count != sizeof(struct koneplus_profile_buttons))
378 return -EINVAL;
380 profile_number = ((struct koneplus_profile_buttons const *)buf)->number;
381 profile_buttons = &koneplus->profile_buttons[profile_number];
383 mutex_lock(&koneplus->koneplus_lock);
384 difference = memcmp(buf, profile_buttons,
385 sizeof(struct koneplus_profile_buttons));
386 if (difference) {
387 retval = koneplus_set_profile_buttons(usb_dev,
388 (struct koneplus_profile_buttons const *)buf);
389 if (!retval)
390 memcpy(profile_buttons, buf,
391 sizeof(struct koneplus_profile_buttons));
393 mutex_unlock(&koneplus->koneplus_lock);
395 if (retval)
396 return retval;
398 return sizeof(struct koneplus_profile_buttons);
401 static ssize_t koneplus_sysfs_show_actual_profile(struct device *dev,
402 struct device_attribute *attr, char *buf)
404 struct koneplus_device *koneplus =
405 hid_get_drvdata(dev_get_drvdata(dev->parent->parent));
406 return snprintf(buf, PAGE_SIZE, "%d\n", koneplus->actual_profile);
409 static ssize_t koneplus_sysfs_set_actual_profile(struct device *dev,
410 struct device_attribute *attr, char const *buf, size_t size)
412 struct koneplus_device *koneplus;
413 struct usb_device *usb_dev;
414 unsigned long profile;
415 int retval;
416 struct koneplus_roccat_report roccat_report;
418 dev = dev->parent->parent;
419 koneplus = hid_get_drvdata(dev_get_drvdata(dev));
420 usb_dev = interface_to_usbdev(to_usb_interface(dev));
422 retval = strict_strtoul(buf, 10, &profile);
423 if (retval)
424 return retval;
426 mutex_lock(&koneplus->koneplus_lock);
428 retval = koneplus_set_actual_profile(usb_dev, profile);
429 if (retval) {
430 mutex_unlock(&koneplus->koneplus_lock);
431 return retval;
434 koneplus->actual_profile = profile;
436 roccat_report.type = KONEPLUS_MOUSE_REPORT_BUTTON_TYPE_PROFILE;
437 roccat_report.data1 = profile + 1;
438 roccat_report.data2 = 0;
439 roccat_report.profile = profile + 1;
440 roccat_report_event(koneplus->chrdev_minor,
441 (uint8_t const *)&roccat_report);
443 mutex_unlock(&koneplus->koneplus_lock);
445 return size;
448 static ssize_t koneplus_sysfs_show_firmware_version(struct device *dev,
449 struct device_attribute *attr, char *buf)
451 struct koneplus_device *koneplus =
452 hid_get_drvdata(dev_get_drvdata(dev->parent->parent));
453 return snprintf(buf, PAGE_SIZE, "%d\n", koneplus->info.firmware_version);
456 static struct device_attribute koneplus_attributes[] = {
457 __ATTR(actual_profile, 0660,
458 koneplus_sysfs_show_actual_profile,
459 koneplus_sysfs_set_actual_profile),
460 __ATTR(startup_profile, 0660,
461 koneplus_sysfs_show_actual_profile,
462 koneplus_sysfs_set_actual_profile),
463 __ATTR(firmware_version, 0440,
464 koneplus_sysfs_show_firmware_version, NULL),
465 __ATTR_NULL
468 static struct bin_attribute koneplus_bin_attributes[] = {
470 .attr = { .name = "sensor", .mode = 0660 },
471 .size = sizeof(struct koneplus_sensor),
472 .read = koneplus_sysfs_read_sensor,
473 .write = koneplus_sysfs_write_sensor
476 .attr = { .name = "tcu", .mode = 0220 },
477 .size = sizeof(struct koneplus_tcu),
478 .write = koneplus_sysfs_write_tcu
481 .attr = { .name = "tcu_image", .mode = 0440 },
482 .size = sizeof(struct koneplus_tcu_image),
483 .read = koneplus_sysfs_read_tcu_image
486 .attr = { .name = "profile_settings", .mode = 0220 },
487 .size = sizeof(struct koneplus_profile_settings),
488 .write = koneplus_sysfs_write_profile_settings
491 .attr = { .name = "profile1_settings", .mode = 0440 },
492 .size = sizeof(struct koneplus_profile_settings),
493 .read = koneplus_sysfs_read_profilex_settings,
494 .private = &profile_numbers[0]
497 .attr = { .name = "profile2_settings", .mode = 0440 },
498 .size = sizeof(struct koneplus_profile_settings),
499 .read = koneplus_sysfs_read_profilex_settings,
500 .private = &profile_numbers[1]
503 .attr = { .name = "profile3_settings", .mode = 0440 },
504 .size = sizeof(struct koneplus_profile_settings),
505 .read = koneplus_sysfs_read_profilex_settings,
506 .private = &profile_numbers[2]
509 .attr = { .name = "profile4_settings", .mode = 0440 },
510 .size = sizeof(struct koneplus_profile_settings),
511 .read = koneplus_sysfs_read_profilex_settings,
512 .private = &profile_numbers[3]
515 .attr = { .name = "profile5_settings", .mode = 0440 },
516 .size = sizeof(struct koneplus_profile_settings),
517 .read = koneplus_sysfs_read_profilex_settings,
518 .private = &profile_numbers[4]
521 .attr = { .name = "profile_buttons", .mode = 0220 },
522 .size = sizeof(struct koneplus_profile_buttons),
523 .write = koneplus_sysfs_write_profile_buttons
526 .attr = { .name = "profile1_buttons", .mode = 0440 },
527 .size = sizeof(struct koneplus_profile_buttons),
528 .read = koneplus_sysfs_read_profilex_buttons,
529 .private = &profile_numbers[0]
532 .attr = { .name = "profile2_buttons", .mode = 0440 },
533 .size = sizeof(struct koneplus_profile_buttons),
534 .read = koneplus_sysfs_read_profilex_buttons,
535 .private = &profile_numbers[1]
538 .attr = { .name = "profile3_buttons", .mode = 0440 },
539 .size = sizeof(struct koneplus_profile_buttons),
540 .read = koneplus_sysfs_read_profilex_buttons,
541 .private = &profile_numbers[2]
544 .attr = { .name = "profile4_buttons", .mode = 0440 },
545 .size = sizeof(struct koneplus_profile_buttons),
546 .read = koneplus_sysfs_read_profilex_buttons,
547 .private = &profile_numbers[3]
550 .attr = { .name = "profile5_buttons", .mode = 0440 },
551 .size = sizeof(struct koneplus_profile_buttons),
552 .read = koneplus_sysfs_read_profilex_buttons,
553 .private = &profile_numbers[4]
556 .attr = { .name = "macro", .mode = 0220 },
557 .size = sizeof(struct koneplus_macro),
558 .write = koneplus_sysfs_write_macro
560 __ATTR_NULL
563 static int koneplus_init_koneplus_device_struct(struct usb_device *usb_dev,
564 struct koneplus_device *koneplus)
566 int retval, i;
567 static uint wait = 200;
569 mutex_init(&koneplus->koneplus_lock);
571 retval = koneplus_get_info(usb_dev, &koneplus->info);
572 if (retval)
573 return retval;
575 for (i = 0; i < 5; ++i) {
576 msleep(wait);
577 retval = koneplus_get_profile_settings(usb_dev,
578 &koneplus->profile_settings[i], i);
579 if (retval)
580 return retval;
582 msleep(wait);
583 retval = koneplus_get_profile_buttons(usb_dev,
584 &koneplus->profile_buttons[i], i);
585 if (retval)
586 return retval;
589 msleep(wait);
590 retval = koneplus_get_actual_profile(usb_dev);
591 if (retval < 0)
592 return retval;
593 koneplus_profile_activated(koneplus, retval);
595 return 0;
598 static int koneplus_init_specials(struct hid_device *hdev)
600 struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
601 struct usb_device *usb_dev = interface_to_usbdev(intf);
602 struct koneplus_device *koneplus;
603 int retval;
605 if (intf->cur_altsetting->desc.bInterfaceProtocol
606 == USB_INTERFACE_PROTOCOL_MOUSE) {
608 koneplus = kzalloc(sizeof(*koneplus), GFP_KERNEL);
609 if (!koneplus) {
610 hid_err(hdev, "can't alloc device descriptor\n");
611 return -ENOMEM;
613 hid_set_drvdata(hdev, koneplus);
615 retval = koneplus_init_koneplus_device_struct(usb_dev, koneplus);
616 if (retval) {
617 hid_err(hdev, "couldn't init struct koneplus_device\n");
618 goto exit_free;
621 retval = roccat_connect(koneplus_class, hdev,
622 sizeof(struct koneplus_roccat_report));
623 if (retval < 0) {
624 hid_err(hdev, "couldn't init char dev\n");
625 } else {
626 koneplus->chrdev_minor = retval;
627 koneplus->roccat_claimed = 1;
629 } else {
630 hid_set_drvdata(hdev, NULL);
633 return 0;
634 exit_free:
635 kfree(koneplus);
636 return retval;
639 static void koneplus_remove_specials(struct hid_device *hdev)
641 struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
642 struct koneplus_device *koneplus;
644 if (intf->cur_altsetting->desc.bInterfaceProtocol
645 == USB_INTERFACE_PROTOCOL_MOUSE) {
646 koneplus = hid_get_drvdata(hdev);
647 if (koneplus->roccat_claimed)
648 roccat_disconnect(koneplus->chrdev_minor);
649 kfree(koneplus);
653 static int koneplus_probe(struct hid_device *hdev,
654 const struct hid_device_id *id)
656 int retval;
658 retval = hid_parse(hdev);
659 if (retval) {
660 hid_err(hdev, "parse failed\n");
661 goto exit;
664 retval = hid_hw_start(hdev, HID_CONNECT_DEFAULT);
665 if (retval) {
666 hid_err(hdev, "hw start failed\n");
667 goto exit;
670 retval = koneplus_init_specials(hdev);
671 if (retval) {
672 hid_err(hdev, "couldn't install mouse\n");
673 goto exit_stop;
676 return 0;
678 exit_stop:
679 hid_hw_stop(hdev);
680 exit:
681 return retval;
684 static void koneplus_remove(struct hid_device *hdev)
686 koneplus_remove_specials(hdev);
687 hid_hw_stop(hdev);
690 static void koneplus_keep_values_up_to_date(struct koneplus_device *koneplus,
691 u8 const *data)
693 struct koneplus_mouse_report_button const *button_report;
695 switch (data[0]) {
696 case KONEPLUS_MOUSE_REPORT_NUMBER_BUTTON:
697 button_report = (struct koneplus_mouse_report_button const *)data;
698 switch (button_report->type) {
699 case KONEPLUS_MOUSE_REPORT_BUTTON_TYPE_PROFILE:
700 koneplus_profile_activated(koneplus, button_report->data1 - 1);
701 break;
703 break;
707 static void koneplus_report_to_chrdev(struct koneplus_device const *koneplus,
708 u8 const *data)
710 struct koneplus_roccat_report roccat_report;
711 struct koneplus_mouse_report_button const *button_report;
713 if (data[0] != KONEPLUS_MOUSE_REPORT_NUMBER_BUTTON)
714 return;
716 button_report = (struct koneplus_mouse_report_button const *)data;
718 if ((button_report->type == KONEPLUS_MOUSE_REPORT_BUTTON_TYPE_QUICKLAUNCH ||
719 button_report->type == KONEPLUS_MOUSE_REPORT_BUTTON_TYPE_TIMER) &&
720 button_report->data2 != KONEPLUS_MOUSE_REPORT_BUTTON_ACTION_PRESS)
721 return;
723 roccat_report.type = button_report->type;
724 roccat_report.data1 = button_report->data1;
725 roccat_report.data2 = button_report->data2;
726 roccat_report.profile = koneplus->actual_profile + 1;
727 roccat_report_event(koneplus->chrdev_minor,
728 (uint8_t const *)&roccat_report);
731 static int koneplus_raw_event(struct hid_device *hdev,
732 struct hid_report *report, u8 *data, int size)
734 struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
735 struct koneplus_device *koneplus = hid_get_drvdata(hdev);
737 if (intf->cur_altsetting->desc.bInterfaceProtocol
738 != USB_INTERFACE_PROTOCOL_MOUSE)
739 return 0;
741 koneplus_keep_values_up_to_date(koneplus, data);
743 if (koneplus->roccat_claimed)
744 koneplus_report_to_chrdev(koneplus, data);
746 return 0;
749 static const struct hid_device_id koneplus_devices[] = {
750 { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_KONEPLUS) },
754 MODULE_DEVICE_TABLE(hid, koneplus_devices);
756 static struct hid_driver koneplus_driver = {
757 .name = "koneplus",
758 .id_table = koneplus_devices,
759 .probe = koneplus_probe,
760 .remove = koneplus_remove,
761 .raw_event = koneplus_raw_event
764 static int __init koneplus_init(void)
766 int retval;
768 /* class name has to be same as driver name */
769 koneplus_class = class_create(THIS_MODULE, "koneplus");
770 if (IS_ERR(koneplus_class))
771 return PTR_ERR(koneplus_class);
772 koneplus_class->dev_attrs = koneplus_attributes;
773 koneplus_class->dev_bin_attrs = koneplus_bin_attributes;
775 retval = hid_register_driver(&koneplus_driver);
776 if (retval)
777 class_destroy(koneplus_class);
778 return retval;
781 static void __exit koneplus_exit(void)
783 hid_unregister_driver(&koneplus_driver);
784 class_destroy(koneplus_class);
787 module_init(koneplus_init);
788 module_exit(koneplus_exit);
790 MODULE_AUTHOR("Stefan Achatz");
791 MODULE_DESCRIPTION("USB Roccat Kone[+] driver");
792 MODULE_LICENSE("GPL v2");