hid-roccat-kovaplus.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690
  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 DEVICE_ATTR(actual_profile, 0660,
  255. kovaplus_sysfs_show_actual_profile,
  256. kovaplus_sysfs_set_actual_profile);
  257. static ssize_t kovaplus_sysfs_show_actual_cpi(struct device *dev,
  258. struct device_attribute *attr, char *buf)
  259. {
  260. struct kovaplus_device *kovaplus =
  261. hid_get_drvdata(dev_get_drvdata(dev->parent->parent));
  262. return snprintf(buf, PAGE_SIZE, "%d\n", kovaplus->actual_cpi);
  263. }
  264. static DEVICE_ATTR(actual_cpi, 0440, kovaplus_sysfs_show_actual_cpi, NULL);
  265. static ssize_t kovaplus_sysfs_show_actual_sensitivity_x(struct device *dev,
  266. struct device_attribute *attr, char *buf)
  267. {
  268. struct kovaplus_device *kovaplus =
  269. hid_get_drvdata(dev_get_drvdata(dev->parent->parent));
  270. return snprintf(buf, PAGE_SIZE, "%d\n", kovaplus->actual_x_sensitivity);
  271. }
  272. static DEVICE_ATTR(actual_sensitivity_x, 0440,
  273. kovaplus_sysfs_show_actual_sensitivity_x, NULL);
  274. static ssize_t kovaplus_sysfs_show_actual_sensitivity_y(struct device *dev,
  275. struct device_attribute *attr, char *buf)
  276. {
  277. struct kovaplus_device *kovaplus =
  278. hid_get_drvdata(dev_get_drvdata(dev->parent->parent));
  279. return snprintf(buf, PAGE_SIZE, "%d\n", kovaplus->actual_y_sensitivity);
  280. }
  281. static DEVICE_ATTR(actual_sensitivity_y, 0440,
  282. kovaplus_sysfs_show_actual_sensitivity_y, NULL);
  283. static ssize_t kovaplus_sysfs_show_firmware_version(struct device *dev,
  284. struct device_attribute *attr, char *buf)
  285. {
  286. struct kovaplus_device *kovaplus;
  287. struct usb_device *usb_dev;
  288. struct kovaplus_info info;
  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. mutex_lock(&kovaplus->kovaplus_lock);
  293. roccat_common2_receive(usb_dev, KOVAPLUS_COMMAND_INFO,
  294. &info, KOVAPLUS_SIZE_INFO);
  295. mutex_unlock(&kovaplus->kovaplus_lock);
  296. return snprintf(buf, PAGE_SIZE, "%d\n", info.firmware_version);
  297. }
  298. static DEVICE_ATTR(firmware_version, 0440,
  299. kovaplus_sysfs_show_firmware_version, NULL);
  300. static struct attribute *kovaplus_attrs[] = {
  301. &dev_attr_actual_cpi.attr,
  302. &dev_attr_firmware_version.attr,
  303. &dev_attr_actual_profile.attr,
  304. &dev_attr_actual_sensitivity_x.attr,
  305. &dev_attr_actual_sensitivity_y.attr,
  306. NULL,
  307. };
  308. ATTRIBUTE_GROUPS(kovaplus);
  309. static struct bin_attribute kovaplus_bin_attributes[] = {
  310. KOVAPLUS_BIN_ATTRIBUTE_W(control, CONTROL),
  311. KOVAPLUS_BIN_ATTRIBUTE_RW(info, INFO),
  312. KOVAPLUS_BIN_ATTRIBUTE_RW(profile_settings, PROFILE_SETTINGS),
  313. KOVAPLUS_BIN_ATTRIBUTE_RW(profile_buttons, PROFILE_BUTTONS),
  314. {
  315. .attr = { .name = "profile1_settings", .mode = 0440 },
  316. .size = KOVAPLUS_SIZE_PROFILE_SETTINGS,
  317. .read = kovaplus_sysfs_read_profilex_settings,
  318. .private = &profile_numbers[0]
  319. },
  320. {
  321. .attr = { .name = "profile2_settings", .mode = 0440 },
  322. .size = KOVAPLUS_SIZE_PROFILE_SETTINGS,
  323. .read = kovaplus_sysfs_read_profilex_settings,
  324. .private = &profile_numbers[1]
  325. },
  326. {
  327. .attr = { .name = "profile3_settings", .mode = 0440 },
  328. .size = KOVAPLUS_SIZE_PROFILE_SETTINGS,
  329. .read = kovaplus_sysfs_read_profilex_settings,
  330. .private = &profile_numbers[2]
  331. },
  332. {
  333. .attr = { .name = "profile4_settings", .mode = 0440 },
  334. .size = KOVAPLUS_SIZE_PROFILE_SETTINGS,
  335. .read = kovaplus_sysfs_read_profilex_settings,
  336. .private = &profile_numbers[3]
  337. },
  338. {
  339. .attr = { .name = "profile5_settings", .mode = 0440 },
  340. .size = KOVAPLUS_SIZE_PROFILE_SETTINGS,
  341. .read = kovaplus_sysfs_read_profilex_settings,
  342. .private = &profile_numbers[4]
  343. },
  344. {
  345. .attr = { .name = "profile1_buttons", .mode = 0440 },
  346. .size = KOVAPLUS_SIZE_PROFILE_BUTTONS,
  347. .read = kovaplus_sysfs_read_profilex_buttons,
  348. .private = &profile_numbers[0]
  349. },
  350. {
  351. .attr = { .name = "profile2_buttons", .mode = 0440 },
  352. .size = KOVAPLUS_SIZE_PROFILE_BUTTONS,
  353. .read = kovaplus_sysfs_read_profilex_buttons,
  354. .private = &profile_numbers[1]
  355. },
  356. {
  357. .attr = { .name = "profile3_buttons", .mode = 0440 },
  358. .size = KOVAPLUS_SIZE_PROFILE_BUTTONS,
  359. .read = kovaplus_sysfs_read_profilex_buttons,
  360. .private = &profile_numbers[2]
  361. },
  362. {
  363. .attr = { .name = "profile4_buttons", .mode = 0440 },
  364. .size = KOVAPLUS_SIZE_PROFILE_BUTTONS,
  365. .read = kovaplus_sysfs_read_profilex_buttons,
  366. .private = &profile_numbers[3]
  367. },
  368. {
  369. .attr = { .name = "profile5_buttons", .mode = 0440 },
  370. .size = KOVAPLUS_SIZE_PROFILE_BUTTONS,
  371. .read = kovaplus_sysfs_read_profilex_buttons,
  372. .private = &profile_numbers[4]
  373. },
  374. __ATTR_NULL
  375. };
  376. static int kovaplus_init_kovaplus_device_struct(struct usb_device *usb_dev,
  377. struct kovaplus_device *kovaplus)
  378. {
  379. int retval, i;
  380. static uint wait = 70; /* device will freeze with just 60 */
  381. mutex_init(&kovaplus->kovaplus_lock);
  382. for (i = 0; i < 5; ++i) {
  383. msleep(wait);
  384. retval = kovaplus_get_profile_settings(usb_dev,
  385. &kovaplus->profile_settings[i], i);
  386. if (retval)
  387. return retval;
  388. msleep(wait);
  389. retval = kovaplus_get_profile_buttons(usb_dev,
  390. &kovaplus->profile_buttons[i], i);
  391. if (retval)
  392. return retval;
  393. }
  394. msleep(wait);
  395. retval = kovaplus_get_actual_profile(usb_dev);
  396. if (retval < 0)
  397. return retval;
  398. kovaplus_profile_activated(kovaplus, retval);
  399. return 0;
  400. }
  401. static int kovaplus_init_specials(struct hid_device *hdev)
  402. {
  403. struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
  404. struct usb_device *usb_dev = interface_to_usbdev(intf);
  405. struct kovaplus_device *kovaplus;
  406. int retval;
  407. if (intf->cur_altsetting->desc.bInterfaceProtocol
  408. == USB_INTERFACE_PROTOCOL_MOUSE) {
  409. kovaplus = kzalloc(sizeof(*kovaplus), GFP_KERNEL);
  410. if (!kovaplus) {
  411. hid_err(hdev, "can't alloc device descriptor\n");
  412. return -ENOMEM;
  413. }
  414. hid_set_drvdata(hdev, kovaplus);
  415. retval = kovaplus_init_kovaplus_device_struct(usb_dev, kovaplus);
  416. if (retval) {
  417. hid_err(hdev, "couldn't init struct kovaplus_device\n");
  418. goto exit_free;
  419. }
  420. retval = roccat_connect(kovaplus_class, hdev,
  421. sizeof(struct kovaplus_roccat_report));
  422. if (retval < 0) {
  423. hid_err(hdev, "couldn't init char dev\n");
  424. } else {
  425. kovaplus->chrdev_minor = retval;
  426. kovaplus->roccat_claimed = 1;
  427. }
  428. } else {
  429. hid_set_drvdata(hdev, NULL);
  430. }
  431. return 0;
  432. exit_free:
  433. kfree(kovaplus);
  434. return retval;
  435. }
  436. static void kovaplus_remove_specials(struct hid_device *hdev)
  437. {
  438. struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
  439. struct kovaplus_device *kovaplus;
  440. if (intf->cur_altsetting->desc.bInterfaceProtocol
  441. == USB_INTERFACE_PROTOCOL_MOUSE) {
  442. kovaplus = hid_get_drvdata(hdev);
  443. if (kovaplus->roccat_claimed)
  444. roccat_disconnect(kovaplus->chrdev_minor);
  445. kfree(kovaplus);
  446. }
  447. }
  448. static int kovaplus_probe(struct hid_device *hdev,
  449. const struct hid_device_id *id)
  450. {
  451. int retval;
  452. retval = hid_parse(hdev);
  453. if (retval) {
  454. hid_err(hdev, "parse failed\n");
  455. goto exit;
  456. }
  457. retval = hid_hw_start(hdev, HID_CONNECT_DEFAULT);
  458. if (retval) {
  459. hid_err(hdev, "hw start failed\n");
  460. goto exit;
  461. }
  462. retval = kovaplus_init_specials(hdev);
  463. if (retval) {
  464. hid_err(hdev, "couldn't install mouse\n");
  465. goto exit_stop;
  466. }
  467. return 0;
  468. exit_stop:
  469. hid_hw_stop(hdev);
  470. exit:
  471. return retval;
  472. }
  473. static void kovaplus_remove(struct hid_device *hdev)
  474. {
  475. kovaplus_remove_specials(hdev);
  476. hid_hw_stop(hdev);
  477. }
  478. static void kovaplus_keep_values_up_to_date(struct kovaplus_device *kovaplus,
  479. u8 const *data)
  480. {
  481. struct kovaplus_mouse_report_button const *button_report;
  482. if (data[0] != KOVAPLUS_MOUSE_REPORT_NUMBER_BUTTON)
  483. return;
  484. button_report = (struct kovaplus_mouse_report_button const *)data;
  485. switch (button_report->type) {
  486. case KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_PROFILE_1:
  487. kovaplus_profile_activated(kovaplus, button_report->data1 - 1);
  488. break;
  489. case KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_CPI:
  490. kovaplus->actual_cpi = kovaplus_convert_event_cpi(button_report->data1);
  491. case KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_SENSITIVITY:
  492. kovaplus->actual_x_sensitivity = button_report->data1;
  493. kovaplus->actual_y_sensitivity = button_report->data2;
  494. }
  495. }
  496. static void kovaplus_report_to_chrdev(struct kovaplus_device const *kovaplus,
  497. u8 const *data)
  498. {
  499. struct kovaplus_roccat_report roccat_report;
  500. struct kovaplus_mouse_report_button const *button_report;
  501. if (data[0] != KOVAPLUS_MOUSE_REPORT_NUMBER_BUTTON)
  502. return;
  503. button_report = (struct kovaplus_mouse_report_button const *)data;
  504. if (button_report->type == KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_PROFILE_2)
  505. return;
  506. roccat_report.type = button_report->type;
  507. roccat_report.profile = kovaplus->actual_profile + 1;
  508. if (roccat_report.type == KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_MACRO ||
  509. roccat_report.type == KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_SHORTCUT ||
  510. roccat_report.type == KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_QUICKLAUNCH ||
  511. roccat_report.type == KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_TIMER)
  512. roccat_report.button = button_report->data1;
  513. else
  514. roccat_report.button = 0;
  515. if (roccat_report.type == KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_CPI)
  516. roccat_report.data1 = kovaplus_convert_event_cpi(button_report->data1);
  517. else
  518. roccat_report.data1 = button_report->data1;
  519. roccat_report.data2 = button_report->data2;
  520. roccat_report_event(kovaplus->chrdev_minor,
  521. (uint8_t const *)&roccat_report);
  522. }
  523. static int kovaplus_raw_event(struct hid_device *hdev,
  524. struct hid_report *report, u8 *data, int size)
  525. {
  526. struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
  527. struct kovaplus_device *kovaplus = hid_get_drvdata(hdev);
  528. if (intf->cur_altsetting->desc.bInterfaceProtocol
  529. != USB_INTERFACE_PROTOCOL_MOUSE)
  530. return 0;
  531. if (kovaplus == NULL)
  532. return 0;
  533. kovaplus_keep_values_up_to_date(kovaplus, data);
  534. if (kovaplus->roccat_claimed)
  535. kovaplus_report_to_chrdev(kovaplus, data);
  536. return 0;
  537. }
  538. static const struct hid_device_id kovaplus_devices[] = {
  539. { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_KOVAPLUS) },
  540. { }
  541. };
  542. MODULE_DEVICE_TABLE(hid, kovaplus_devices);
  543. static struct hid_driver kovaplus_driver = {
  544. .name = "kovaplus",
  545. .id_table = kovaplus_devices,
  546. .probe = kovaplus_probe,
  547. .remove = kovaplus_remove,
  548. .raw_event = kovaplus_raw_event
  549. };
  550. static int __init kovaplus_init(void)
  551. {
  552. int retval;
  553. kovaplus_class = class_create(THIS_MODULE, "kovaplus");
  554. if (IS_ERR(kovaplus_class))
  555. return PTR_ERR(kovaplus_class);
  556. kovaplus_class->dev_groups = kovaplus_groups;
  557. kovaplus_class->dev_bin_attrs = kovaplus_bin_attributes;
  558. retval = hid_register_driver(&kovaplus_driver);
  559. if (retval)
  560. class_destroy(kovaplus_class);
  561. return retval;
  562. }
  563. static void __exit kovaplus_exit(void)
  564. {
  565. hid_unregister_driver(&kovaplus_driver);
  566. class_destroy(kovaplus_class);
  567. }
  568. module_init(kovaplus_init);
  569. module_exit(kovaplus_exit);
  570. MODULE_AUTHOR("Stefan Achatz");
  571. MODULE_DESCRIPTION("USB Roccat Kova[+] driver");
  572. MODULE_LICENSE("GPL v2");