Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 2 | /* |
| 3 | * Roccat Kova[+] driver for Linux |
| 4 | * |
| 5 | * Copyright (c) 2011 Stefan Achatz <erazor_de@users.sourceforge.net> |
| 6 | */ |
| 7 | |
| 8 | /* |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | /* |
| 12 | * Roccat Kova[+] is a bigger version of the Pyra with two more side buttons. |
| 13 | */ |
| 14 | |
| 15 | #include <linux/device.h> |
| 16 | #include <linux/input.h> |
| 17 | #include <linux/hid.h> |
| 18 | #include <linux/module.h> |
| 19 | #include <linux/slab.h> |
Stefan Achatz | 5dc0c98 | 2011-02-03 16:14:43 +0100 | [diff] [blame] | 20 | #include <linux/hid-roccat.h> |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 21 | #include "hid-ids.h" |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 22 | #include "hid-roccat-common.h" |
| 23 | #include "hid-roccat-kovaplus.h" |
| 24 | |
| 25 | static uint profile_numbers[5] = {0, 1, 2, 3, 4}; |
| 26 | |
| 27 | static struct class *kovaplus_class; |
| 28 | |
| 29 | static uint kovaplus_convert_event_cpi(uint value) |
| 30 | { |
| 31 | return (value == 7 ? 4 : (value == 4 ? 3 : value)); |
| 32 | } |
| 33 | |
| 34 | static void kovaplus_profile_activated(struct kovaplus_device *kovaplus, |
| 35 | uint new_profile_index) |
| 36 | { |
Dan Carpenter | 7ad8148 | 2018-01-10 12:39:03 +0300 | [diff] [blame] | 37 | if (new_profile_index >= ARRAY_SIZE(kovaplus->profile_settings)) |
| 38 | return; |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 39 | kovaplus->actual_profile = new_profile_index; |
| 40 | kovaplus->actual_cpi = kovaplus->profile_settings[new_profile_index].cpi_startup_level; |
| 41 | kovaplus->actual_x_sensitivity = kovaplus->profile_settings[new_profile_index].sensitivity_x; |
| 42 | kovaplus->actual_y_sensitivity = kovaplus->profile_settings[new_profile_index].sensitivity_y; |
| 43 | } |
| 44 | |
| 45 | static int kovaplus_send_control(struct usb_device *usb_dev, uint value, |
| 46 | enum kovaplus_control_requests request) |
| 47 | { |
| 48 | int retval; |
Stefan Achatz | 7392d73 | 2012-05-20 22:45:04 +0200 | [diff] [blame] | 49 | struct roccat_common2_control control; |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 50 | |
| 51 | if ((request == KOVAPLUS_CONTROL_REQUEST_PROFILE_SETTINGS || |
| 52 | request == KOVAPLUS_CONTROL_REQUEST_PROFILE_BUTTONS) && |
| 53 | value > 4) |
| 54 | return -EINVAL; |
| 55 | |
Stefan Achatz | 4728f2d | 2012-05-20 22:44:59 +0200 | [diff] [blame] | 56 | control.command = ROCCAT_COMMON_COMMAND_CONTROL; |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 57 | control.value = value; |
| 58 | control.request = request; |
| 59 | |
Stefan Achatz | 7392d73 | 2012-05-20 22:45:04 +0200 | [diff] [blame] | 60 | retval = roccat_common2_send(usb_dev, ROCCAT_COMMON_COMMAND_CONTROL, |
| 61 | &control, sizeof(struct roccat_common2_control)); |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 62 | |
| 63 | return retval; |
| 64 | } |
| 65 | |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 66 | static int kovaplus_select_profile(struct usb_device *usb_dev, uint number, |
| 67 | enum kovaplus_control_requests request) |
| 68 | { |
| 69 | return kovaplus_send_control(usb_dev, number, request); |
| 70 | } |
| 71 | |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 72 | static int kovaplus_get_profile_settings(struct usb_device *usb_dev, |
| 73 | struct kovaplus_profile_settings *buf, uint number) |
| 74 | { |
| 75 | int retval; |
| 76 | |
| 77 | retval = kovaplus_select_profile(usb_dev, number, |
| 78 | KOVAPLUS_CONTROL_REQUEST_PROFILE_SETTINGS); |
| 79 | if (retval) |
| 80 | return retval; |
| 81 | |
Stefan Achatz | 7392d73 | 2012-05-20 22:45:04 +0200 | [diff] [blame] | 82 | return roccat_common2_receive(usb_dev, KOVAPLUS_COMMAND_PROFILE_SETTINGS, |
Stefan Achatz | 94a8fcf | 2012-11-11 06:20:52 +0100 | [diff] [blame] | 83 | buf, KOVAPLUS_SIZE_PROFILE_SETTINGS); |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 84 | } |
| 85 | |
| 86 | static int kovaplus_get_profile_buttons(struct usb_device *usb_dev, |
| 87 | struct kovaplus_profile_buttons *buf, int number) |
| 88 | { |
| 89 | int retval; |
| 90 | |
| 91 | retval = kovaplus_select_profile(usb_dev, number, |
| 92 | KOVAPLUS_CONTROL_REQUEST_PROFILE_BUTTONS); |
| 93 | if (retval) |
| 94 | return retval; |
| 95 | |
Stefan Achatz | 7392d73 | 2012-05-20 22:45:04 +0200 | [diff] [blame] | 96 | return roccat_common2_receive(usb_dev, KOVAPLUS_COMMAND_PROFILE_BUTTONS, |
Stefan Achatz | 94a8fcf | 2012-11-11 06:20:52 +0100 | [diff] [blame] | 97 | buf, KOVAPLUS_SIZE_PROFILE_BUTTONS); |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 98 | } |
| 99 | |
| 100 | /* retval is 0-4 on success, < 0 on error */ |
| 101 | static int kovaplus_get_actual_profile(struct usb_device *usb_dev) |
| 102 | { |
| 103 | struct kovaplus_actual_profile buf; |
| 104 | int retval; |
| 105 | |
Stefan Achatz | 7392d73 | 2012-05-20 22:45:04 +0200 | [diff] [blame] | 106 | retval = roccat_common2_receive(usb_dev, KOVAPLUS_COMMAND_ACTUAL_PROFILE, |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 107 | &buf, sizeof(struct kovaplus_actual_profile)); |
| 108 | |
| 109 | return retval ? retval : buf.actual_profile; |
| 110 | } |
| 111 | |
| 112 | static int kovaplus_set_actual_profile(struct usb_device *usb_dev, |
| 113 | int new_profile) |
| 114 | { |
| 115 | struct kovaplus_actual_profile buf; |
| 116 | |
| 117 | buf.command = KOVAPLUS_COMMAND_ACTUAL_PROFILE; |
| 118 | buf.size = sizeof(struct kovaplus_actual_profile); |
| 119 | buf.actual_profile = new_profile; |
| 120 | |
Stefan Achatz | 7392d73 | 2012-05-20 22:45:04 +0200 | [diff] [blame] | 121 | return roccat_common2_send_with_status(usb_dev, |
Stefan Achatz | 4728f2d | 2012-05-20 22:44:59 +0200 | [diff] [blame] | 122 | KOVAPLUS_COMMAND_ACTUAL_PROFILE, |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 123 | &buf, sizeof(struct kovaplus_actual_profile)); |
| 124 | } |
| 125 | |
Stefan Achatz | 94a8fcf | 2012-11-11 06:20:52 +0100 | [diff] [blame] | 126 | static ssize_t kovaplus_sysfs_read(struct file *fp, struct kobject *kobj, |
| 127 | char *buf, loff_t off, size_t count, |
| 128 | size_t real_size, uint command) |
| 129 | { |
Geliang Tang | 2cf8383 | 2015-12-27 17:25:24 +0800 | [diff] [blame] | 130 | struct device *dev = kobj_to_dev(kobj)->parent->parent; |
Stefan Achatz | 94a8fcf | 2012-11-11 06:20:52 +0100 | [diff] [blame] | 131 | struct kovaplus_device *kovaplus = hid_get_drvdata(dev_get_drvdata(dev)); |
| 132 | struct usb_device *usb_dev = interface_to_usbdev(to_usb_interface(dev)); |
| 133 | int retval; |
| 134 | |
| 135 | if (off >= real_size) |
| 136 | return 0; |
| 137 | |
| 138 | if (off != 0 || count != real_size) |
| 139 | return -EINVAL; |
| 140 | |
| 141 | mutex_lock(&kovaplus->kovaplus_lock); |
| 142 | retval = roccat_common2_receive(usb_dev, command, buf, real_size); |
| 143 | mutex_unlock(&kovaplus->kovaplus_lock); |
| 144 | |
| 145 | if (retval) |
| 146 | return retval; |
| 147 | |
| 148 | return real_size; |
| 149 | } |
| 150 | |
| 151 | static ssize_t kovaplus_sysfs_write(struct file *fp, struct kobject *kobj, |
| 152 | void const *buf, loff_t off, size_t count, |
| 153 | size_t real_size, uint command) |
| 154 | { |
Geliang Tang | 2cf8383 | 2015-12-27 17:25:24 +0800 | [diff] [blame] | 155 | struct device *dev = kobj_to_dev(kobj)->parent->parent; |
Stefan Achatz | 94a8fcf | 2012-11-11 06:20:52 +0100 | [diff] [blame] | 156 | struct kovaplus_device *kovaplus = hid_get_drvdata(dev_get_drvdata(dev)); |
| 157 | struct usb_device *usb_dev = interface_to_usbdev(to_usb_interface(dev)); |
| 158 | int retval; |
| 159 | |
| 160 | if (off != 0 || count != real_size) |
| 161 | return -EINVAL; |
| 162 | |
| 163 | mutex_lock(&kovaplus->kovaplus_lock); |
| 164 | retval = roccat_common2_send_with_status(usb_dev, command, |
| 165 | buf, real_size); |
| 166 | mutex_unlock(&kovaplus->kovaplus_lock); |
| 167 | |
| 168 | if (retval) |
| 169 | return retval; |
| 170 | |
| 171 | return real_size; |
| 172 | } |
| 173 | |
| 174 | #define KOVAPLUS_SYSFS_W(thingy, THINGY) \ |
| 175 | static ssize_t kovaplus_sysfs_write_ ## thingy(struct file *fp, \ |
| 176 | struct kobject *kobj, struct bin_attribute *attr, char *buf, \ |
| 177 | loff_t off, size_t count) \ |
| 178 | { \ |
| 179 | return kovaplus_sysfs_write(fp, kobj, buf, off, count, \ |
| 180 | KOVAPLUS_SIZE_ ## THINGY, KOVAPLUS_COMMAND_ ## THINGY); \ |
| 181 | } |
| 182 | |
| 183 | #define KOVAPLUS_SYSFS_R(thingy, THINGY) \ |
| 184 | static ssize_t kovaplus_sysfs_read_ ## thingy(struct file *fp, \ |
| 185 | struct kobject *kobj, struct bin_attribute *attr, char *buf, \ |
| 186 | loff_t off, size_t count) \ |
| 187 | { \ |
| 188 | return kovaplus_sysfs_read(fp, kobj, buf, off, count, \ |
| 189 | KOVAPLUS_SIZE_ ## THINGY, KOVAPLUS_COMMAND_ ## THINGY); \ |
| 190 | } |
| 191 | |
| 192 | #define KOVAPLUS_SYSFS_RW(thingy, THINGY) \ |
| 193 | KOVAPLUS_SYSFS_W(thingy, THINGY) \ |
| 194 | KOVAPLUS_SYSFS_R(thingy, THINGY) |
| 195 | |
| 196 | #define KOVAPLUS_BIN_ATTRIBUTE_RW(thingy, THINGY) \ |
Greg Kroah-Hartman | 975b53c | 2013-08-19 21:50:28 -0700 | [diff] [blame] | 197 | KOVAPLUS_SYSFS_RW(thingy, THINGY); \ |
| 198 | static struct bin_attribute bin_attr_##thingy = { \ |
Stefan Achatz | 94a8fcf | 2012-11-11 06:20:52 +0100 | [diff] [blame] | 199 | .attr = { .name = #thingy, .mode = 0660 }, \ |
| 200 | .size = KOVAPLUS_SIZE_ ## THINGY, \ |
| 201 | .read = kovaplus_sysfs_read_ ## thingy, \ |
| 202 | .write = kovaplus_sysfs_write_ ## thingy \ |
| 203 | } |
| 204 | |
Stefan Achatz | 94a8fcf | 2012-11-11 06:20:52 +0100 | [diff] [blame] | 205 | #define KOVAPLUS_BIN_ATTRIBUTE_W(thingy, THINGY) \ |
Greg Kroah-Hartman | 975b53c | 2013-08-19 21:50:28 -0700 | [diff] [blame] | 206 | KOVAPLUS_SYSFS_W(thingy, THINGY); \ |
| 207 | static struct bin_attribute bin_attr_##thingy = { \ |
Stefan Achatz | 94a8fcf | 2012-11-11 06:20:52 +0100 | [diff] [blame] | 208 | .attr = { .name = #thingy, .mode = 0220 }, \ |
| 209 | .size = KOVAPLUS_SIZE_ ## THINGY, \ |
| 210 | .write = kovaplus_sysfs_write_ ## thingy \ |
| 211 | } |
Greg Kroah-Hartman | 975b53c | 2013-08-19 21:50:28 -0700 | [diff] [blame] | 212 | KOVAPLUS_BIN_ATTRIBUTE_W(control, CONTROL); |
| 213 | KOVAPLUS_BIN_ATTRIBUTE_RW(info, INFO); |
| 214 | KOVAPLUS_BIN_ATTRIBUTE_RW(profile_settings, PROFILE_SETTINGS); |
| 215 | KOVAPLUS_BIN_ATTRIBUTE_RW(profile_buttons, PROFILE_BUTTONS); |
Stefan Achatz | 94a8fcf | 2012-11-11 06:20:52 +0100 | [diff] [blame] | 216 | |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 217 | static ssize_t kovaplus_sysfs_read_profilex_settings(struct file *fp, |
| 218 | struct kobject *kobj, struct bin_attribute *attr, char *buf, |
| 219 | loff_t off, size_t count) |
| 220 | { |
Geliang Tang | 2cf8383 | 2015-12-27 17:25:24 +0800 | [diff] [blame] | 221 | struct device *dev = kobj_to_dev(kobj)->parent->parent; |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 222 | struct usb_device *usb_dev = interface_to_usbdev(to_usb_interface(dev)); |
Stefan Achatz | 94a8fcf | 2012-11-11 06:20:52 +0100 | [diff] [blame] | 223 | ssize_t retval; |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 224 | |
Stefan Achatz | 94a8fcf | 2012-11-11 06:20:52 +0100 | [diff] [blame] | 225 | retval = kovaplus_select_profile(usb_dev, *(uint *)(attr->private), |
| 226 | KOVAPLUS_CONTROL_REQUEST_PROFILE_SETTINGS); |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 227 | if (retval) |
| 228 | return retval; |
| 229 | |
Stefan Achatz | 94a8fcf | 2012-11-11 06:20:52 +0100 | [diff] [blame] | 230 | return kovaplus_sysfs_read(fp, kobj, buf, off, count, |
| 231 | KOVAPLUS_SIZE_PROFILE_SETTINGS, |
| 232 | KOVAPLUS_COMMAND_PROFILE_SETTINGS); |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 233 | } |
| 234 | |
| 235 | static ssize_t kovaplus_sysfs_read_profilex_buttons(struct file *fp, |
| 236 | struct kobject *kobj, struct bin_attribute *attr, char *buf, |
| 237 | loff_t off, size_t count) |
| 238 | { |
Geliang Tang | 2cf8383 | 2015-12-27 17:25:24 +0800 | [diff] [blame] | 239 | struct device *dev = kobj_to_dev(kobj)->parent->parent; |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 240 | struct usb_device *usb_dev = interface_to_usbdev(to_usb_interface(dev)); |
Stefan Achatz | 94a8fcf | 2012-11-11 06:20:52 +0100 | [diff] [blame] | 241 | ssize_t retval; |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 242 | |
Stefan Achatz | 94a8fcf | 2012-11-11 06:20:52 +0100 | [diff] [blame] | 243 | retval = kovaplus_select_profile(usb_dev, *(uint *)(attr->private), |
| 244 | KOVAPLUS_CONTROL_REQUEST_PROFILE_BUTTONS); |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 245 | if (retval) |
| 246 | return retval; |
| 247 | |
Stefan Achatz | 94a8fcf | 2012-11-11 06:20:52 +0100 | [diff] [blame] | 248 | return kovaplus_sysfs_read(fp, kobj, buf, off, count, |
| 249 | KOVAPLUS_SIZE_PROFILE_BUTTONS, |
| 250 | KOVAPLUS_COMMAND_PROFILE_BUTTONS); |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 251 | } |
| 252 | |
Greg Kroah-Hartman | 975b53c | 2013-08-19 21:50:28 -0700 | [diff] [blame] | 253 | #define PROFILE_ATTR(number) \ |
| 254 | static struct bin_attribute bin_attr_profile##number##_settings = { \ |
Stefan Achatz | 550dbf4 | 2013-09-28 05:57:46 +0200 | [diff] [blame] | 255 | .attr = { .name = "profile" #number "_settings", .mode = 0440 }, \ |
Greg Kroah-Hartman | 975b53c | 2013-08-19 21:50:28 -0700 | [diff] [blame] | 256 | .size = KOVAPLUS_SIZE_PROFILE_SETTINGS, \ |
| 257 | .read = kovaplus_sysfs_read_profilex_settings, \ |
| 258 | .private = &profile_numbers[number-1], \ |
| 259 | }; \ |
| 260 | static struct bin_attribute bin_attr_profile##number##_buttons = { \ |
Stefan Achatz | 550dbf4 | 2013-09-28 05:57:46 +0200 | [diff] [blame] | 261 | .attr = { .name = "profile" #number "_buttons", .mode = 0440 }, \ |
Greg Kroah-Hartman | 975b53c | 2013-08-19 21:50:28 -0700 | [diff] [blame] | 262 | .size = KOVAPLUS_SIZE_PROFILE_BUTTONS, \ |
| 263 | .read = kovaplus_sysfs_read_profilex_buttons, \ |
| 264 | .private = &profile_numbers[number-1], \ |
| 265 | }; |
| 266 | PROFILE_ATTR(1); |
| 267 | PROFILE_ATTR(2); |
| 268 | PROFILE_ATTR(3); |
| 269 | PROFILE_ATTR(4); |
| 270 | PROFILE_ATTR(5); |
| 271 | |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 272 | static ssize_t kovaplus_sysfs_show_actual_profile(struct device *dev, |
| 273 | struct device_attribute *attr, char *buf) |
| 274 | { |
| 275 | struct kovaplus_device *kovaplus = |
| 276 | hid_get_drvdata(dev_get_drvdata(dev->parent->parent)); |
| 277 | return snprintf(buf, PAGE_SIZE, "%d\n", kovaplus->actual_profile); |
| 278 | } |
| 279 | |
| 280 | static ssize_t kovaplus_sysfs_set_actual_profile(struct device *dev, |
| 281 | struct device_attribute *attr, char const *buf, size_t size) |
| 282 | { |
| 283 | struct kovaplus_device *kovaplus; |
| 284 | struct usb_device *usb_dev; |
| 285 | unsigned long profile; |
| 286 | int retval; |
Stefan Achatz | 6b9a57b | 2011-08-27 15:24:45 +0200 | [diff] [blame] | 287 | struct kovaplus_roccat_report roccat_report; |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 288 | |
| 289 | dev = dev->parent->parent; |
| 290 | kovaplus = hid_get_drvdata(dev_get_drvdata(dev)); |
| 291 | usb_dev = interface_to_usbdev(to_usb_interface(dev)); |
| 292 | |
Jingoo Han | dfc450b | 2013-07-19 15:53:16 +0900 | [diff] [blame] | 293 | retval = kstrtoul(buf, 10, &profile); |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 294 | if (retval) |
| 295 | return retval; |
| 296 | |
| 297 | if (profile >= 5) |
| 298 | return -EINVAL; |
| 299 | |
| 300 | mutex_lock(&kovaplus->kovaplus_lock); |
| 301 | retval = kovaplus_set_actual_profile(usb_dev, profile); |
Stefan Achatz | 6b9a57b | 2011-08-27 15:24:45 +0200 | [diff] [blame] | 302 | if (retval) { |
| 303 | mutex_unlock(&kovaplus->kovaplus_lock); |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 304 | return retval; |
Stefan Achatz | 6b9a57b | 2011-08-27 15:24:45 +0200 | [diff] [blame] | 305 | } |
| 306 | |
| 307 | kovaplus_profile_activated(kovaplus, profile); |
| 308 | |
| 309 | roccat_report.type = KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_PROFILE_1; |
| 310 | roccat_report.profile = profile + 1; |
| 311 | roccat_report.button = 0; |
| 312 | roccat_report.data1 = profile + 1; |
| 313 | roccat_report.data2 = 0; |
| 314 | roccat_report_event(kovaplus->chrdev_minor, |
| 315 | (uint8_t const *)&roccat_report); |
| 316 | |
| 317 | mutex_unlock(&kovaplus->kovaplus_lock); |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 318 | |
| 319 | return size; |
| 320 | } |
Greg Kroah-Hartman | 46a58c4 | 2013-07-24 15:05:11 -0700 | [diff] [blame] | 321 | static DEVICE_ATTR(actual_profile, 0660, |
| 322 | kovaplus_sysfs_show_actual_profile, |
| 323 | kovaplus_sysfs_set_actual_profile); |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 324 | |
| 325 | static ssize_t kovaplus_sysfs_show_actual_cpi(struct device *dev, |
| 326 | struct device_attribute *attr, char *buf) |
| 327 | { |
| 328 | struct kovaplus_device *kovaplus = |
| 329 | hid_get_drvdata(dev_get_drvdata(dev->parent->parent)); |
| 330 | return snprintf(buf, PAGE_SIZE, "%d\n", kovaplus->actual_cpi); |
| 331 | } |
Greg Kroah-Hartman | 46a58c4 | 2013-07-24 15:05:11 -0700 | [diff] [blame] | 332 | static DEVICE_ATTR(actual_cpi, 0440, kovaplus_sysfs_show_actual_cpi, NULL); |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 333 | |
| 334 | static ssize_t kovaplus_sysfs_show_actual_sensitivity_x(struct device *dev, |
| 335 | struct device_attribute *attr, char *buf) |
| 336 | { |
| 337 | struct kovaplus_device *kovaplus = |
| 338 | hid_get_drvdata(dev_get_drvdata(dev->parent->parent)); |
| 339 | return snprintf(buf, PAGE_SIZE, "%d\n", kovaplus->actual_x_sensitivity); |
| 340 | } |
Greg Kroah-Hartman | 46a58c4 | 2013-07-24 15:05:11 -0700 | [diff] [blame] | 341 | static DEVICE_ATTR(actual_sensitivity_x, 0440, |
| 342 | kovaplus_sysfs_show_actual_sensitivity_x, NULL); |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 343 | |
| 344 | static ssize_t kovaplus_sysfs_show_actual_sensitivity_y(struct device *dev, |
| 345 | struct device_attribute *attr, char *buf) |
| 346 | { |
| 347 | struct kovaplus_device *kovaplus = |
| 348 | hid_get_drvdata(dev_get_drvdata(dev->parent->parent)); |
| 349 | return snprintf(buf, PAGE_SIZE, "%d\n", kovaplus->actual_y_sensitivity); |
| 350 | } |
Greg Kroah-Hartman | 46a58c4 | 2013-07-24 15:05:11 -0700 | [diff] [blame] | 351 | static DEVICE_ATTR(actual_sensitivity_y, 0440, |
| 352 | kovaplus_sysfs_show_actual_sensitivity_y, NULL); |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 353 | |
| 354 | static ssize_t kovaplus_sysfs_show_firmware_version(struct device *dev, |
| 355 | struct device_attribute *attr, char *buf) |
| 356 | { |
Stefan Achatz | 94a8fcf | 2012-11-11 06:20:52 +0100 | [diff] [blame] | 357 | struct kovaplus_device *kovaplus; |
| 358 | struct usb_device *usb_dev; |
| 359 | struct kovaplus_info info; |
| 360 | |
| 361 | dev = dev->parent->parent; |
| 362 | kovaplus = hid_get_drvdata(dev_get_drvdata(dev)); |
| 363 | usb_dev = interface_to_usbdev(to_usb_interface(dev)); |
| 364 | |
| 365 | mutex_lock(&kovaplus->kovaplus_lock); |
| 366 | roccat_common2_receive(usb_dev, KOVAPLUS_COMMAND_INFO, |
| 367 | &info, KOVAPLUS_SIZE_INFO); |
| 368 | mutex_unlock(&kovaplus->kovaplus_lock); |
| 369 | |
| 370 | return snprintf(buf, PAGE_SIZE, "%d\n", info.firmware_version); |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 371 | } |
Greg Kroah-Hartman | 46a58c4 | 2013-07-24 15:05:11 -0700 | [diff] [blame] | 372 | static DEVICE_ATTR(firmware_version, 0440, |
| 373 | kovaplus_sysfs_show_firmware_version, NULL); |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 374 | |
Greg Kroah-Hartman | 46a58c4 | 2013-07-24 15:05:11 -0700 | [diff] [blame] | 375 | static struct attribute *kovaplus_attrs[] = { |
| 376 | &dev_attr_actual_cpi.attr, |
| 377 | &dev_attr_firmware_version.attr, |
| 378 | &dev_attr_actual_profile.attr, |
| 379 | &dev_attr_actual_sensitivity_x.attr, |
| 380 | &dev_attr_actual_sensitivity_y.attr, |
| 381 | NULL, |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 382 | }; |
| 383 | |
Greg Kroah-Hartman | 975b53c | 2013-08-19 21:50:28 -0700 | [diff] [blame] | 384 | static struct bin_attribute *kovaplus_bin_attributes[] = { |
| 385 | &bin_attr_control, |
| 386 | &bin_attr_info, |
| 387 | &bin_attr_profile_settings, |
| 388 | &bin_attr_profile_buttons, |
| 389 | &bin_attr_profile1_settings, |
| 390 | &bin_attr_profile2_settings, |
| 391 | &bin_attr_profile3_settings, |
| 392 | &bin_attr_profile4_settings, |
| 393 | &bin_attr_profile5_settings, |
| 394 | &bin_attr_profile1_buttons, |
| 395 | &bin_attr_profile2_buttons, |
| 396 | &bin_attr_profile3_buttons, |
| 397 | &bin_attr_profile4_buttons, |
| 398 | &bin_attr_profile5_buttons, |
| 399 | NULL, |
| 400 | }; |
| 401 | |
| 402 | static const struct attribute_group kovaplus_group = { |
| 403 | .attrs = kovaplus_attrs, |
| 404 | .bin_attrs = kovaplus_bin_attributes, |
| 405 | }; |
| 406 | |
| 407 | static const struct attribute_group *kovaplus_groups[] = { |
| 408 | &kovaplus_group, |
| 409 | NULL, |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 410 | }; |
| 411 | |
| 412 | static int kovaplus_init_kovaplus_device_struct(struct usb_device *usb_dev, |
| 413 | struct kovaplus_device *kovaplus) |
| 414 | { |
| 415 | int retval, i; |
| 416 | static uint wait = 70; /* device will freeze with just 60 */ |
| 417 | |
| 418 | mutex_init(&kovaplus->kovaplus_lock); |
| 419 | |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 420 | for (i = 0; i < 5; ++i) { |
| 421 | msleep(wait); |
| 422 | retval = kovaplus_get_profile_settings(usb_dev, |
| 423 | &kovaplus->profile_settings[i], i); |
| 424 | if (retval) |
| 425 | return retval; |
| 426 | |
| 427 | msleep(wait); |
| 428 | retval = kovaplus_get_profile_buttons(usb_dev, |
| 429 | &kovaplus->profile_buttons[i], i); |
| 430 | if (retval) |
| 431 | return retval; |
| 432 | } |
| 433 | |
| 434 | msleep(wait); |
| 435 | retval = kovaplus_get_actual_profile(usb_dev); |
| 436 | if (retval < 0) |
| 437 | return retval; |
| 438 | kovaplus_profile_activated(kovaplus, retval); |
| 439 | |
| 440 | return 0; |
| 441 | } |
| 442 | |
| 443 | static int kovaplus_init_specials(struct hid_device *hdev) |
| 444 | { |
| 445 | struct usb_interface *intf = to_usb_interface(hdev->dev.parent); |
| 446 | struct usb_device *usb_dev = interface_to_usbdev(intf); |
| 447 | struct kovaplus_device *kovaplus; |
| 448 | int retval; |
| 449 | |
| 450 | if (intf->cur_altsetting->desc.bInterfaceProtocol |
| 451 | == USB_INTERFACE_PROTOCOL_MOUSE) { |
| 452 | |
| 453 | kovaplus = kzalloc(sizeof(*kovaplus), GFP_KERNEL); |
| 454 | if (!kovaplus) { |
| 455 | hid_err(hdev, "can't alloc device descriptor\n"); |
| 456 | return -ENOMEM; |
| 457 | } |
| 458 | hid_set_drvdata(hdev, kovaplus); |
| 459 | |
| 460 | retval = kovaplus_init_kovaplus_device_struct(usb_dev, kovaplus); |
| 461 | if (retval) { |
| 462 | hid_err(hdev, "couldn't init struct kovaplus_device\n"); |
| 463 | goto exit_free; |
| 464 | } |
| 465 | |
Stefan Achatz | 8211e46 | 2011-01-30 13:38:25 +0100 | [diff] [blame] | 466 | retval = roccat_connect(kovaplus_class, hdev, |
| 467 | sizeof(struct kovaplus_roccat_report)); |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 468 | if (retval < 0) { |
| 469 | hid_err(hdev, "couldn't init char dev\n"); |
| 470 | } else { |
| 471 | kovaplus->chrdev_minor = retval; |
| 472 | kovaplus->roccat_claimed = 1; |
| 473 | } |
| 474 | |
| 475 | } else { |
| 476 | hid_set_drvdata(hdev, NULL); |
| 477 | } |
| 478 | |
| 479 | return 0; |
| 480 | exit_free: |
| 481 | kfree(kovaplus); |
| 482 | return retval; |
| 483 | } |
| 484 | |
| 485 | static void kovaplus_remove_specials(struct hid_device *hdev) |
| 486 | { |
| 487 | struct usb_interface *intf = to_usb_interface(hdev->dev.parent); |
| 488 | struct kovaplus_device *kovaplus; |
| 489 | |
| 490 | if (intf->cur_altsetting->desc.bInterfaceProtocol |
| 491 | == USB_INTERFACE_PROTOCOL_MOUSE) { |
| 492 | kovaplus = hid_get_drvdata(hdev); |
| 493 | if (kovaplus->roccat_claimed) |
| 494 | roccat_disconnect(kovaplus->chrdev_minor); |
| 495 | kfree(kovaplus); |
| 496 | } |
| 497 | } |
| 498 | |
| 499 | static int kovaplus_probe(struct hid_device *hdev, |
| 500 | const struct hid_device_id *id) |
| 501 | { |
| 502 | int retval; |
| 503 | |
| 504 | retval = hid_parse(hdev); |
| 505 | if (retval) { |
| 506 | hid_err(hdev, "parse failed\n"); |
| 507 | goto exit; |
| 508 | } |
| 509 | |
| 510 | retval = hid_hw_start(hdev, HID_CONNECT_DEFAULT); |
| 511 | if (retval) { |
| 512 | hid_err(hdev, "hw start failed\n"); |
| 513 | goto exit; |
| 514 | } |
| 515 | |
| 516 | retval = kovaplus_init_specials(hdev); |
| 517 | if (retval) { |
| 518 | hid_err(hdev, "couldn't install mouse\n"); |
| 519 | goto exit_stop; |
| 520 | } |
| 521 | |
| 522 | return 0; |
| 523 | |
| 524 | exit_stop: |
| 525 | hid_hw_stop(hdev); |
| 526 | exit: |
| 527 | return retval; |
| 528 | } |
| 529 | |
| 530 | static void kovaplus_remove(struct hid_device *hdev) |
| 531 | { |
| 532 | kovaplus_remove_specials(hdev); |
| 533 | hid_hw_stop(hdev); |
| 534 | } |
| 535 | |
| 536 | static void kovaplus_keep_values_up_to_date(struct kovaplus_device *kovaplus, |
| 537 | u8 const *data) |
| 538 | { |
| 539 | struct kovaplus_mouse_report_button const *button_report; |
| 540 | |
| 541 | if (data[0] != KOVAPLUS_MOUSE_REPORT_NUMBER_BUTTON) |
| 542 | return; |
| 543 | |
| 544 | button_report = (struct kovaplus_mouse_report_button const *)data; |
| 545 | |
| 546 | switch (button_report->type) { |
| 547 | case KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_PROFILE_1: |
| 548 | kovaplus_profile_activated(kovaplus, button_report->data1 - 1); |
| 549 | break; |
| 550 | case KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_CPI: |
| 551 | kovaplus->actual_cpi = kovaplus_convert_event_cpi(button_report->data1); |
Stefan Achatz | 7be63f2 | 2013-11-03 06:25:33 +0100 | [diff] [blame] | 552 | break; |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 553 | case KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_SENSITIVITY: |
| 554 | kovaplus->actual_x_sensitivity = button_report->data1; |
| 555 | kovaplus->actual_y_sensitivity = button_report->data2; |
Stefan Achatz | 7be63f2 | 2013-11-03 06:25:33 +0100 | [diff] [blame] | 556 | break; |
| 557 | default: |
| 558 | break; |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 559 | } |
| 560 | } |
| 561 | |
| 562 | static void kovaplus_report_to_chrdev(struct kovaplus_device const *kovaplus, |
| 563 | u8 const *data) |
| 564 | { |
| 565 | struct kovaplus_roccat_report roccat_report; |
| 566 | struct kovaplus_mouse_report_button const *button_report; |
| 567 | |
| 568 | if (data[0] != KOVAPLUS_MOUSE_REPORT_NUMBER_BUTTON) |
| 569 | return; |
| 570 | |
| 571 | button_report = (struct kovaplus_mouse_report_button const *)data; |
| 572 | |
| 573 | if (button_report->type == KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_PROFILE_2) |
| 574 | return; |
| 575 | |
| 576 | roccat_report.type = button_report->type; |
| 577 | roccat_report.profile = kovaplus->actual_profile + 1; |
| 578 | |
| 579 | if (roccat_report.type == KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_MACRO || |
| 580 | roccat_report.type == KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_SHORTCUT || |
| 581 | roccat_report.type == KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_QUICKLAUNCH || |
| 582 | roccat_report.type == KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_TIMER) |
| 583 | roccat_report.button = button_report->data1; |
| 584 | else |
| 585 | roccat_report.button = 0; |
| 586 | |
| 587 | if (roccat_report.type == KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_CPI) |
| 588 | roccat_report.data1 = kovaplus_convert_event_cpi(button_report->data1); |
| 589 | else |
| 590 | roccat_report.data1 = button_report->data1; |
| 591 | |
| 592 | roccat_report.data2 = button_report->data2; |
| 593 | |
| 594 | roccat_report_event(kovaplus->chrdev_minor, |
Stefan Achatz | 8211e46 | 2011-01-30 13:38:25 +0100 | [diff] [blame] | 595 | (uint8_t const *)&roccat_report); |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 596 | } |
| 597 | |
| 598 | static int kovaplus_raw_event(struct hid_device *hdev, |
| 599 | struct hid_report *report, u8 *data, int size) |
| 600 | { |
| 601 | struct usb_interface *intf = to_usb_interface(hdev->dev.parent); |
| 602 | struct kovaplus_device *kovaplus = hid_get_drvdata(hdev); |
| 603 | |
| 604 | if (intf->cur_altsetting->desc.bInterfaceProtocol |
| 605 | != USB_INTERFACE_PROTOCOL_MOUSE) |
| 606 | return 0; |
| 607 | |
Stefan Achatz | 901e64d | 2011-06-12 10:02:44 +0200 | [diff] [blame] | 608 | if (kovaplus == NULL) |
| 609 | return 0; |
| 610 | |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 611 | kovaplus_keep_values_up_to_date(kovaplus, data); |
| 612 | |
| 613 | if (kovaplus->roccat_claimed) |
| 614 | kovaplus_report_to_chrdev(kovaplus, data); |
| 615 | |
| 616 | return 0; |
| 617 | } |
| 618 | |
| 619 | static const struct hid_device_id kovaplus_devices[] = { |
| 620 | { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_KOVAPLUS) }, |
| 621 | { } |
| 622 | }; |
| 623 | |
| 624 | MODULE_DEVICE_TABLE(hid, kovaplus_devices); |
| 625 | |
| 626 | static struct hid_driver kovaplus_driver = { |
| 627 | .name = "kovaplus", |
| 628 | .id_table = kovaplus_devices, |
| 629 | .probe = kovaplus_probe, |
| 630 | .remove = kovaplus_remove, |
| 631 | .raw_event = kovaplus_raw_event |
| 632 | }; |
| 633 | |
| 634 | static int __init kovaplus_init(void) |
| 635 | { |
| 636 | int retval; |
| 637 | |
| 638 | kovaplus_class = class_create(THIS_MODULE, "kovaplus"); |
| 639 | if (IS_ERR(kovaplus_class)) |
| 640 | return PTR_ERR(kovaplus_class); |
Greg Kroah-Hartman | 46a58c4 | 2013-07-24 15:05:11 -0700 | [diff] [blame] | 641 | kovaplus_class->dev_groups = kovaplus_groups; |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 642 | |
| 643 | retval = hid_register_driver(&kovaplus_driver); |
| 644 | if (retval) |
| 645 | class_destroy(kovaplus_class); |
| 646 | return retval; |
| 647 | } |
| 648 | |
| 649 | static void __exit kovaplus_exit(void) |
| 650 | { |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 651 | hid_unregister_driver(&kovaplus_driver); |
Stefan Achatz | 74b643da | 2011-01-30 13:38:27 +0100 | [diff] [blame] | 652 | class_destroy(kovaplus_class); |
Stefan Achatz | 0e70f97 | 2011-01-30 13:38:24 +0100 | [diff] [blame] | 653 | } |
| 654 | |
| 655 | module_init(kovaplus_init); |
| 656 | module_exit(kovaplus_exit); |
| 657 | |
| 658 | MODULE_AUTHOR("Stefan Achatz"); |
| 659 | MODULE_DESCRIPTION("USB Roccat Kova[+] driver"); |
| 660 | MODULE_LICENSE("GPL v2"); |