hid-roccat-kovaplus.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685
  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. { \
  161. .attr = { .name = #thingy, .mode = 0660 }, \
  162. .size = KOVAPLUS_SIZE_ ## THINGY, \
  163. .read = kovaplus_sysfs_read_ ## thingy, \
  164. .write = kovaplus_sysfs_write_ ## thingy \
  165. }
  166. #define KOVAPLUS_BIN_ATTRIBUTE_R(thingy, THINGY) \
  167. { \
  168. .attr = { .name = #thingy, .mode = 0440 }, \
  169. .size = KOVAPLUS_SIZE_ ## THINGY, \
  170. .read = kovaplus_sysfs_read_ ## thingy, \
  171. }
  172. #define KOVAPLUS_BIN_ATTRIBUTE_W(thingy, THINGY) \
  173. { \
  174. .attr = { .name = #thingy, .mode = 0220 }, \
  175. .size = KOVAPLUS_SIZE_ ## THINGY, \
  176. .write = kovaplus_sysfs_write_ ## thingy \
  177. }
  178. KOVAPLUS_SYSFS_W(control, CONTROL)
  179. KOVAPLUS_SYSFS_RW(info, INFO)
  180. KOVAPLUS_SYSFS_RW(profile_settings, PROFILE_SETTINGS)
  181. KOVAPLUS_SYSFS_RW(profile_buttons, PROFILE_BUTTONS)
  182. static ssize_t kovaplus_sysfs_read_profilex_settings(struct file *fp,
  183. struct kobject *kobj, struct bin_attribute *attr, char *buf,
  184. loff_t off, size_t count)
  185. {
  186. struct device *dev =
  187. container_of(kobj, struct device, kobj)->parent->parent;
  188. struct usb_device *usb_dev = interface_to_usbdev(to_usb_interface(dev));
  189. ssize_t retval;
  190. retval = kovaplus_select_profile(usb_dev, *(uint *)(attr->private),
  191. KOVAPLUS_CONTROL_REQUEST_PROFILE_SETTINGS);
  192. if (retval)
  193. return retval;
  194. return kovaplus_sysfs_read(fp, kobj, buf, off, count,
  195. KOVAPLUS_SIZE_PROFILE_SETTINGS,
  196. KOVAPLUS_COMMAND_PROFILE_SETTINGS);
  197. }
  198. static ssize_t kovaplus_sysfs_read_profilex_buttons(struct file *fp,
  199. struct kobject *kobj, struct bin_attribute *attr, char *buf,
  200. loff_t off, size_t count)
  201. {
  202. struct device *dev =
  203. container_of(kobj, struct device, kobj)->parent->parent;
  204. struct usb_device *usb_dev = interface_to_usbdev(to_usb_interface(dev));
  205. ssize_t retval;
  206. retval = kovaplus_select_profile(usb_dev, *(uint *)(attr->private),
  207. KOVAPLUS_CONTROL_REQUEST_PROFILE_BUTTONS);
  208. if (retval)
  209. return retval;
  210. return kovaplus_sysfs_read(fp, kobj, buf, off, count,
  211. KOVAPLUS_SIZE_PROFILE_BUTTONS,
  212. KOVAPLUS_COMMAND_PROFILE_BUTTONS);
  213. }
  214. static ssize_t kovaplus_sysfs_show_actual_profile(struct device *dev,
  215. struct device_attribute *attr, char *buf)
  216. {
  217. struct kovaplus_device *kovaplus =
  218. hid_get_drvdata(dev_get_drvdata(dev->parent->parent));
  219. return snprintf(buf, PAGE_SIZE, "%d\n", kovaplus->actual_profile);
  220. }
  221. static ssize_t kovaplus_sysfs_set_actual_profile(struct device *dev,
  222. struct device_attribute *attr, char const *buf, size_t size)
  223. {
  224. struct kovaplus_device *kovaplus;
  225. struct usb_device *usb_dev;
  226. unsigned long profile;
  227. int retval;
  228. struct kovaplus_roccat_report roccat_report;
  229. dev = dev->parent->parent;
  230. kovaplus = hid_get_drvdata(dev_get_drvdata(dev));
  231. usb_dev = interface_to_usbdev(to_usb_interface(dev));
  232. retval = strict_strtoul(buf, 10, &profile);
  233. if (retval)
  234. return retval;
  235. if (profile >= 5)
  236. return -EINVAL;
  237. mutex_lock(&kovaplus->kovaplus_lock);
  238. retval = kovaplus_set_actual_profile(usb_dev, profile);
  239. if (retval) {
  240. mutex_unlock(&kovaplus->kovaplus_lock);
  241. return retval;
  242. }
  243. kovaplus_profile_activated(kovaplus, profile);
  244. roccat_report.type = KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_PROFILE_1;
  245. roccat_report.profile = profile + 1;
  246. roccat_report.button = 0;
  247. roccat_report.data1 = profile + 1;
  248. roccat_report.data2 = 0;
  249. roccat_report_event(kovaplus->chrdev_minor,
  250. (uint8_t const *)&roccat_report);
  251. mutex_unlock(&kovaplus->kovaplus_lock);
  252. return size;
  253. }
  254. static ssize_t kovaplus_sysfs_show_actual_cpi(struct device *dev,
  255. struct device_attribute *attr, char *buf)
  256. {
  257. struct kovaplus_device *kovaplus =
  258. hid_get_drvdata(dev_get_drvdata(dev->parent->parent));
  259. return snprintf(buf, PAGE_SIZE, "%d\n", kovaplus->actual_cpi);
  260. }
  261. static ssize_t kovaplus_sysfs_show_actual_sensitivity_x(struct device *dev,
  262. struct device_attribute *attr, char *buf)
  263. {
  264. struct kovaplus_device *kovaplus =
  265. hid_get_drvdata(dev_get_drvdata(dev->parent->parent));
  266. return snprintf(buf, PAGE_SIZE, "%d\n", kovaplus->actual_x_sensitivity);
  267. }
  268. static ssize_t kovaplus_sysfs_show_actual_sensitivity_y(struct device *dev,
  269. struct device_attribute *attr, char *buf)
  270. {
  271. struct kovaplus_device *kovaplus =
  272. hid_get_drvdata(dev_get_drvdata(dev->parent->parent));
  273. return snprintf(buf, PAGE_SIZE, "%d\n", kovaplus->actual_y_sensitivity);
  274. }
  275. static ssize_t kovaplus_sysfs_show_firmware_version(struct device *dev,
  276. struct device_attribute *attr, char *buf)
  277. {
  278. struct kovaplus_device *kovaplus;
  279. struct usb_device *usb_dev;
  280. struct kovaplus_info info;
  281. dev = dev->parent->parent;
  282. kovaplus = hid_get_drvdata(dev_get_drvdata(dev));
  283. usb_dev = interface_to_usbdev(to_usb_interface(dev));
  284. mutex_lock(&kovaplus->kovaplus_lock);
  285. roccat_common2_receive(usb_dev, KOVAPLUS_COMMAND_INFO,
  286. &info, KOVAPLUS_SIZE_INFO);
  287. mutex_unlock(&kovaplus->kovaplus_lock);
  288. return snprintf(buf, PAGE_SIZE, "%d\n", info.firmware_version);
  289. }
  290. static struct device_attribute kovaplus_attributes[] = {
  291. __ATTR(actual_cpi, 0440,
  292. kovaplus_sysfs_show_actual_cpi, NULL),
  293. __ATTR(firmware_version, 0440,
  294. kovaplus_sysfs_show_firmware_version, NULL),
  295. __ATTR(actual_profile, 0660,
  296. kovaplus_sysfs_show_actual_profile,
  297. kovaplus_sysfs_set_actual_profile),
  298. __ATTR(actual_sensitivity_x, 0440,
  299. kovaplus_sysfs_show_actual_sensitivity_x, NULL),
  300. __ATTR(actual_sensitivity_y, 0440,
  301. kovaplus_sysfs_show_actual_sensitivity_y, NULL),
  302. __ATTR_NULL
  303. };
  304. static struct bin_attribute kovaplus_bin_attributes[] = {
  305. KOVAPLUS_BIN_ATTRIBUTE_W(control, CONTROL),
  306. KOVAPLUS_BIN_ATTRIBUTE_RW(info, INFO),
  307. KOVAPLUS_BIN_ATTRIBUTE_RW(profile_settings, PROFILE_SETTINGS),
  308. KOVAPLUS_BIN_ATTRIBUTE_RW(profile_buttons, PROFILE_BUTTONS),
  309. {
  310. .attr = { .name = "profile1_settings", .mode = 0440 },
  311. .size = KOVAPLUS_SIZE_PROFILE_SETTINGS,
  312. .read = kovaplus_sysfs_read_profilex_settings,
  313. .private = &profile_numbers[0]
  314. },
  315. {
  316. .attr = { .name = "profile2_settings", .mode = 0440 },
  317. .size = KOVAPLUS_SIZE_PROFILE_SETTINGS,
  318. .read = kovaplus_sysfs_read_profilex_settings,
  319. .private = &profile_numbers[1]
  320. },
  321. {
  322. .attr = { .name = "profile3_settings", .mode = 0440 },
  323. .size = KOVAPLUS_SIZE_PROFILE_SETTINGS,
  324. .read = kovaplus_sysfs_read_profilex_settings,
  325. .private = &profile_numbers[2]
  326. },
  327. {
  328. .attr = { .name = "profile4_settings", .mode = 0440 },
  329. .size = KOVAPLUS_SIZE_PROFILE_SETTINGS,
  330. .read = kovaplus_sysfs_read_profilex_settings,
  331. .private = &profile_numbers[3]
  332. },
  333. {
  334. .attr = { .name = "profile5_settings", .mode = 0440 },
  335. .size = KOVAPLUS_SIZE_PROFILE_SETTINGS,
  336. .read = kovaplus_sysfs_read_profilex_settings,
  337. .private = &profile_numbers[4]
  338. },
  339. {
  340. .attr = { .name = "profile1_buttons", .mode = 0440 },
  341. .size = KOVAPLUS_SIZE_PROFILE_BUTTONS,
  342. .read = kovaplus_sysfs_read_profilex_buttons,
  343. .private = &profile_numbers[0]
  344. },
  345. {
  346. .attr = { .name = "profile2_buttons", .mode = 0440 },
  347. .size = KOVAPLUS_SIZE_PROFILE_BUTTONS,
  348. .read = kovaplus_sysfs_read_profilex_buttons,
  349. .private = &profile_numbers[1]
  350. },
  351. {
  352. .attr = { .name = "profile3_buttons", .mode = 0440 },
  353. .size = KOVAPLUS_SIZE_PROFILE_BUTTONS,
  354. .read = kovaplus_sysfs_read_profilex_buttons,
  355. .private = &profile_numbers[2]
  356. },
  357. {
  358. .attr = { .name = "profile4_buttons", .mode = 0440 },
  359. .size = KOVAPLUS_SIZE_PROFILE_BUTTONS,
  360. .read = kovaplus_sysfs_read_profilex_buttons,
  361. .private = &profile_numbers[3]
  362. },
  363. {
  364. .attr = { .name = "profile5_buttons", .mode = 0440 },
  365. .size = KOVAPLUS_SIZE_PROFILE_BUTTONS,
  366. .read = kovaplus_sysfs_read_profilex_buttons,
  367. .private = &profile_numbers[4]
  368. },
  369. __ATTR_NULL
  370. };
  371. static int kovaplus_init_kovaplus_device_struct(struct usb_device *usb_dev,
  372. struct kovaplus_device *kovaplus)
  373. {
  374. int retval, i;
  375. static uint wait = 70; /* device will freeze with just 60 */
  376. mutex_init(&kovaplus->kovaplus_lock);
  377. for (i = 0; i < 5; ++i) {
  378. msleep(wait);
  379. retval = kovaplus_get_profile_settings(usb_dev,
  380. &kovaplus->profile_settings[i], i);
  381. if (retval)
  382. return retval;
  383. msleep(wait);
  384. retval = kovaplus_get_profile_buttons(usb_dev,
  385. &kovaplus->profile_buttons[i], i);
  386. if (retval)
  387. return retval;
  388. }
  389. msleep(wait);
  390. retval = kovaplus_get_actual_profile(usb_dev);
  391. if (retval < 0)
  392. return retval;
  393. kovaplus_profile_activated(kovaplus, retval);
  394. return 0;
  395. }
  396. static int kovaplus_init_specials(struct hid_device *hdev)
  397. {
  398. struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
  399. struct usb_device *usb_dev = interface_to_usbdev(intf);
  400. struct kovaplus_device *kovaplus;
  401. int retval;
  402. if (intf->cur_altsetting->desc.bInterfaceProtocol
  403. == USB_INTERFACE_PROTOCOL_MOUSE) {
  404. kovaplus = kzalloc(sizeof(*kovaplus), GFP_KERNEL);
  405. if (!kovaplus) {
  406. hid_err(hdev, "can't alloc device descriptor\n");
  407. return -ENOMEM;
  408. }
  409. hid_set_drvdata(hdev, kovaplus);
  410. retval = kovaplus_init_kovaplus_device_struct(usb_dev, kovaplus);
  411. if (retval) {
  412. hid_err(hdev, "couldn't init struct kovaplus_device\n");
  413. goto exit_free;
  414. }
  415. retval = roccat_connect(kovaplus_class, hdev,
  416. sizeof(struct kovaplus_roccat_report));
  417. if (retval < 0) {
  418. hid_err(hdev, "couldn't init char dev\n");
  419. } else {
  420. kovaplus->chrdev_minor = retval;
  421. kovaplus->roccat_claimed = 1;
  422. }
  423. } else {
  424. hid_set_drvdata(hdev, NULL);
  425. }
  426. return 0;
  427. exit_free:
  428. kfree(kovaplus);
  429. return retval;
  430. }
  431. static void kovaplus_remove_specials(struct hid_device *hdev)
  432. {
  433. struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
  434. struct kovaplus_device *kovaplus;
  435. if (intf->cur_altsetting->desc.bInterfaceProtocol
  436. == USB_INTERFACE_PROTOCOL_MOUSE) {
  437. kovaplus = hid_get_drvdata(hdev);
  438. if (kovaplus->roccat_claimed)
  439. roccat_disconnect(kovaplus->chrdev_minor);
  440. kfree(kovaplus);
  441. }
  442. }
  443. static int kovaplus_probe(struct hid_device *hdev,
  444. const struct hid_device_id *id)
  445. {
  446. int retval;
  447. retval = hid_parse(hdev);
  448. if (retval) {
  449. hid_err(hdev, "parse failed\n");
  450. goto exit;
  451. }
  452. retval = hid_hw_start(hdev, HID_CONNECT_DEFAULT);
  453. if (retval) {
  454. hid_err(hdev, "hw start failed\n");
  455. goto exit;
  456. }
  457. retval = kovaplus_init_specials(hdev);
  458. if (retval) {
  459. hid_err(hdev, "couldn't install mouse\n");
  460. goto exit_stop;
  461. }
  462. return 0;
  463. exit_stop:
  464. hid_hw_stop(hdev);
  465. exit:
  466. return retval;
  467. }
  468. static void kovaplus_remove(struct hid_device *hdev)
  469. {
  470. kovaplus_remove_specials(hdev);
  471. hid_hw_stop(hdev);
  472. }
  473. static void kovaplus_keep_values_up_to_date(struct kovaplus_device *kovaplus,
  474. u8 const *data)
  475. {
  476. struct kovaplus_mouse_report_button const *button_report;
  477. if (data[0] != KOVAPLUS_MOUSE_REPORT_NUMBER_BUTTON)
  478. return;
  479. button_report = (struct kovaplus_mouse_report_button const *)data;
  480. switch (button_report->type) {
  481. case KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_PROFILE_1:
  482. kovaplus_profile_activated(kovaplus, button_report->data1 - 1);
  483. break;
  484. case KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_CPI:
  485. kovaplus->actual_cpi = kovaplus_convert_event_cpi(button_report->data1);
  486. case KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_SENSITIVITY:
  487. kovaplus->actual_x_sensitivity = button_report->data1;
  488. kovaplus->actual_y_sensitivity = button_report->data2;
  489. }
  490. }
  491. static void kovaplus_report_to_chrdev(struct kovaplus_device const *kovaplus,
  492. u8 const *data)
  493. {
  494. struct kovaplus_roccat_report roccat_report;
  495. struct kovaplus_mouse_report_button const *button_report;
  496. if (data[0] != KOVAPLUS_MOUSE_REPORT_NUMBER_BUTTON)
  497. return;
  498. button_report = (struct kovaplus_mouse_report_button const *)data;
  499. if (button_report->type == KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_PROFILE_2)
  500. return;
  501. roccat_report.type = button_report->type;
  502. roccat_report.profile = kovaplus->actual_profile + 1;
  503. if (roccat_report.type == KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_MACRO ||
  504. roccat_report.type == KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_SHORTCUT ||
  505. roccat_report.type == KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_QUICKLAUNCH ||
  506. roccat_report.type == KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_TIMER)
  507. roccat_report.button = button_report->data1;
  508. else
  509. roccat_report.button = 0;
  510. if (roccat_report.type == KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_CPI)
  511. roccat_report.data1 = kovaplus_convert_event_cpi(button_report->data1);
  512. else
  513. roccat_report.data1 = button_report->data1;
  514. roccat_report.data2 = button_report->data2;
  515. roccat_report_event(kovaplus->chrdev_minor,
  516. (uint8_t const *)&roccat_report);
  517. }
  518. static int kovaplus_raw_event(struct hid_device *hdev,
  519. struct hid_report *report, u8 *data, int size)
  520. {
  521. struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
  522. struct kovaplus_device *kovaplus = hid_get_drvdata(hdev);
  523. if (intf->cur_altsetting->desc.bInterfaceProtocol
  524. != USB_INTERFACE_PROTOCOL_MOUSE)
  525. return 0;
  526. if (kovaplus == NULL)
  527. return 0;
  528. kovaplus_keep_values_up_to_date(kovaplus, data);
  529. if (kovaplus->roccat_claimed)
  530. kovaplus_report_to_chrdev(kovaplus, data);
  531. return 0;
  532. }
  533. static const struct hid_device_id kovaplus_devices[] = {
  534. { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_KOVAPLUS) },
  535. { }
  536. };
  537. MODULE_DEVICE_TABLE(hid, kovaplus_devices);
  538. static struct hid_driver kovaplus_driver = {
  539. .name = "kovaplus",
  540. .id_table = kovaplus_devices,
  541. .probe = kovaplus_probe,
  542. .remove = kovaplus_remove,
  543. .raw_event = kovaplus_raw_event
  544. };
  545. static int __init kovaplus_init(void)
  546. {
  547. int retval;
  548. kovaplus_class = class_create(THIS_MODULE, "kovaplus");
  549. if (IS_ERR(kovaplus_class))
  550. return PTR_ERR(kovaplus_class);
  551. kovaplus_class->dev_attrs = kovaplus_attributes;
  552. kovaplus_class->dev_bin_attrs = kovaplus_bin_attributes;
  553. retval = hid_register_driver(&kovaplus_driver);
  554. if (retval)
  555. class_destroy(kovaplus_class);
  556. return retval;
  557. }
  558. static void __exit kovaplus_exit(void)
  559. {
  560. hid_unregister_driver(&kovaplus_driver);
  561. class_destroy(kovaplus_class);
  562. }
  563. module_init(kovaplus_init);
  564. module_exit(kovaplus_exit);
  565. MODULE_AUTHOR("Stefan Achatz");
  566. MODULE_DESCRIPTION("USB Roccat Kova[+] driver");
  567. MODULE_LICENSE("GPL v2");