hid-roccat-kovaplus.c 18 KB

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