1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Roccat KonePure driver for Linux
5 * Copyright (c) 2012 Stefan Achatz <erazor_de@users.sourceforge.net>
12 * Roccat KonePure is a smaller version of KoneXTD with less buttons and lights.
15 #include <linux/types.h>
16 #include <linux/device.h>
17 #include <linux/input.h>
18 #include <linux/hid.h>
19 #include <linux/module.h>
20 #include <linux/slab.h>
21 #include <linux/hid-roccat.h>
23 #include "hid-roccat-common.h"
26 KONEPURE_MOUSE_REPORT_NUMBER_BUTTON = 3,
29 struct konepure_mouse_report_button {
30 uint8_t report_number; /* always KONEPURE_MOUSE_REPORT_NUMBER_BUTTON */
39 static struct class *konepure_class;
41 ROCCAT_COMMON2_BIN_ATTRIBUTE_W(control, 0x04, 0x03);
42 ROCCAT_COMMON2_BIN_ATTRIBUTE_RW(actual_profile, 0x05, 0x03);
43 ROCCAT_COMMON2_BIN_ATTRIBUTE_RW(profile_settings, 0x06, 0x1f);
44 ROCCAT_COMMON2_BIN_ATTRIBUTE_RW(profile_buttons, 0x07, 0x3b);
45 ROCCAT_COMMON2_BIN_ATTRIBUTE_W(macro, 0x08, 0x0822);
46 ROCCAT_COMMON2_BIN_ATTRIBUTE_RW(info, 0x09, 0x06);
47 ROCCAT_COMMON2_BIN_ATTRIBUTE_RW(tcu, 0x0c, 0x04);
48 ROCCAT_COMMON2_BIN_ATTRIBUTE_R(tcu_image, 0x0c, 0x0404);
49 ROCCAT_COMMON2_BIN_ATTRIBUTE_RW(sensor, 0x0f, 0x06);
50 ROCCAT_COMMON2_BIN_ATTRIBUTE_W(talk, 0x10, 0x10);
52 static struct bin_attribute *konepure_bin_attrs[] = {
53 &bin_attr_actual_profile,
61 &bin_attr_profile_settings,
62 &bin_attr_profile_buttons,
66 static const struct attribute_group konepure_group = {
67 .bin_attrs = konepure_bin_attrs,
70 static const struct attribute_group *konepure_groups[] = {
75 static int konepure_init_specials(struct hid_device *hdev)
77 struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
78 struct usb_device *usb_dev = interface_to_usbdev(intf);
79 struct roccat_common2_device *konepure;
82 if (intf->cur_altsetting->desc.bInterfaceProtocol
83 != USB_INTERFACE_PROTOCOL_MOUSE) {
84 hid_set_drvdata(hdev, NULL);
88 konepure = kzalloc(sizeof(*konepure), GFP_KERNEL);
90 hid_err(hdev, "can't alloc device descriptor\n");
93 hid_set_drvdata(hdev, konepure);
95 retval = roccat_common2_device_init_struct(usb_dev, konepure);
97 hid_err(hdev, "couldn't init KonePure device\n");
101 retval = roccat_connect(konepure_class, hdev,
102 sizeof(struct konepure_mouse_report_button));
104 hid_err(hdev, "couldn't init char dev\n");
106 konepure->chrdev_minor = retval;
107 konepure->roccat_claimed = 1;
116 static void konepure_remove_specials(struct hid_device *hdev)
118 struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
119 struct roccat_common2_device *konepure;
121 if (intf->cur_altsetting->desc.bInterfaceProtocol
122 != USB_INTERFACE_PROTOCOL_MOUSE)
125 konepure = hid_get_drvdata(hdev);
126 if (konepure->roccat_claimed)
127 roccat_disconnect(konepure->chrdev_minor);
131 static int konepure_probe(struct hid_device *hdev,
132 const struct hid_device_id *id)
136 retval = hid_parse(hdev);
138 hid_err(hdev, "parse failed\n");
142 retval = hid_hw_start(hdev, HID_CONNECT_DEFAULT);
144 hid_err(hdev, "hw start failed\n");
148 retval = konepure_init_specials(hdev);
150 hid_err(hdev, "couldn't install mouse\n");
162 static void konepure_remove(struct hid_device *hdev)
164 konepure_remove_specials(hdev);
168 static int konepure_raw_event(struct hid_device *hdev,
169 struct hid_report *report, u8 *data, int size)
171 struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
172 struct roccat_common2_device *konepure = hid_get_drvdata(hdev);
174 if (intf->cur_altsetting->desc.bInterfaceProtocol
175 != USB_INTERFACE_PROTOCOL_MOUSE)
178 if (data[0] != KONEPURE_MOUSE_REPORT_NUMBER_BUTTON)
181 if (konepure != NULL && konepure->roccat_claimed)
182 roccat_report_event(konepure->chrdev_minor, data);
187 static const struct hid_device_id konepure_devices[] = {
188 { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_KONEPURE) },
189 { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_KONEPURE_OPTICAL) },
193 MODULE_DEVICE_TABLE(hid, konepure_devices);
195 static struct hid_driver konepure_driver = {
197 .id_table = konepure_devices,
198 .probe = konepure_probe,
199 .remove = konepure_remove,
200 .raw_event = konepure_raw_event
203 static int __init konepure_init(void)
207 konepure_class = class_create(THIS_MODULE, "konepure");
208 if (IS_ERR(konepure_class))
209 return PTR_ERR(konepure_class);
210 konepure_class->dev_groups = konepure_groups;
212 retval = hid_register_driver(&konepure_driver);
214 class_destroy(konepure_class);
218 static void __exit konepure_exit(void)
220 hid_unregister_driver(&konepure_driver);
221 class_destroy(konepure_class);
224 module_init(konepure_init);
225 module_exit(konepure_exit);
227 MODULE_AUTHOR("Stefan Achatz");
228 MODULE_DESCRIPTION("USB Roccat KonePure/Optical driver");
229 MODULE_LICENSE("GPL v2");