hid-quirks.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380
  1. /*
  2. * USB HID quirks support for Linux
  3. *
  4. * Copyright (c) 1999 Andreas Gal
  5. * Copyright (c) 2000-2005 Vojtech Pavlik <vojtech@suse.cz>
  6. * Copyright (c) 2005 Michael Haboustak <mike-@cinci.rr.com> for Concept2, Inc
  7. * Copyright (c) 2006-2007 Jiri Kosina
  8. * Copyright (c) 2007 Paul Walmsley
  9. */
  10. /*
  11. * This program is free software; you can redistribute it and/or modify it
  12. * under the terms of the GNU General Public License as published by the Free
  13. * Software Foundation; either version 2 of the License, or (at your option)
  14. * any later version.
  15. */
  16. #include <linux/hid.h>
  17. #include "../hid-ids.h"
  18. /*
  19. * Alphabetically sorted blacklist by quirk type.
  20. */
  21. static const struct hid_blacklist {
  22. __u16 idVendor;
  23. __u16 idProduct;
  24. __u32 quirks;
  25. } hid_blacklist[] = {
  26. { USB_VENDOR_ID_AASHIMA, USB_DEVICE_ID_AASHIMA_GAMEPAD, HID_QUIRK_BADPAD },
  27. { USB_VENDOR_ID_AASHIMA, USB_DEVICE_ID_AASHIMA_PREDATOR, HID_QUIRK_BADPAD },
  28. { USB_VENDOR_ID_ALPS, USB_DEVICE_ID_IBM_GAMEPAD, HID_QUIRK_BADPAD },
  29. { USB_VENDOR_ID_CHIC, USB_DEVICE_ID_CHIC_GAMEPAD, HID_QUIRK_BADPAD },
  30. { USB_VENDOR_ID_GAMERON, USB_DEVICE_ID_GAMERON_DUAL_PSX_ADAPTOR, HID_QUIRK_MULTI_INPUT },
  31. { USB_VENDOR_ID_HAPP, USB_DEVICE_ID_UGCI_DRIVING, HID_QUIRK_BADPAD | HID_QUIRK_MULTI_INPUT },
  32. { USB_VENDOR_ID_HAPP, USB_DEVICE_ID_UGCI_FLYING, HID_QUIRK_BADPAD | HID_QUIRK_MULTI_INPUT },
  33. { USB_VENDOR_ID_HAPP, USB_DEVICE_ID_UGCI_FIGHTING, HID_QUIRK_BADPAD | HID_QUIRK_MULTI_INPUT },
  34. { USB_VENDOR_ID_NATSU, USB_DEVICE_ID_NATSU_GAMEPAD, HID_QUIRK_BADPAD },
  35. { USB_VENDOR_ID_NEC, USB_DEVICE_ID_NEC_USB_GAME_PAD, HID_QUIRK_BADPAD },
  36. { USB_VENDOR_ID_SAITEK, USB_DEVICE_ID_SAITEK_RUMBLEPAD, HID_QUIRK_BADPAD },
  37. { USB_VENDOR_ID_TOPMAX, USB_DEVICE_ID_TOPMAX_COBRAPAD, HID_QUIRK_BADPAD },
  38. { USB_VENDOR_ID_AFATECH, USB_DEVICE_ID_AFATECH_AF9016, HID_QUIRK_FULLSPEED_INTERVAL },
  39. { USB_VENDOR_ID_SAMSUNG, USB_DEVICE_ID_SAMSUNG_IR_REMOTE, HID_QUIRK_HIDDEV | HID_QUIRK_IGNORE_HIDINPUT },
  40. { USB_VENDOR_ID_PANTHERLORD, USB_DEVICE_ID_PANTHERLORD_TWIN_USB_JOYSTICK, HID_QUIRK_MULTI_INPUT | HID_QUIRK_SKIP_OUTPUT_REPORTS },
  41. { USB_VENDOR_ID_PLAYDOTCOM, USB_DEVICE_ID_PLAYDOTCOM_EMS_USBII, HID_QUIRK_MULTI_INPUT },
  42. { USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_PS3_CONTROLLER, HID_QUIRK_SONY_PS3_CONTROLLER | HID_QUIRK_HIDDEV },
  43. { USB_VENDOR_ID_ATEN, USB_DEVICE_ID_ATEN_UC100KM, HID_QUIRK_NOGET },
  44. { USB_VENDOR_ID_ATEN, USB_DEVICE_ID_ATEN_CS124U, HID_QUIRK_NOGET },
  45. { USB_VENDOR_ID_ATEN, USB_DEVICE_ID_ATEN_2PORTKVM, HID_QUIRK_NOGET },
  46. { USB_VENDOR_ID_ATEN, USB_DEVICE_ID_ATEN_4PORTKVM, HID_QUIRK_NOGET },
  47. { USB_VENDOR_ID_ATEN, USB_DEVICE_ID_ATEN_4PORTKVMC, HID_QUIRK_NOGET },
  48. { USB_VENDOR_ID_DMI, USB_DEVICE_ID_DMI_ENC, HID_QUIRK_NOGET },
  49. { USB_VENDOR_ID_ELO, USB_DEVICE_ID_ELO_TS2700, HID_QUIRK_NOGET },
  50. { USB_VENDOR_ID_SUN, USB_DEVICE_ID_RARITAN_KVM_DONGLE, HID_QUIRK_NOGET },
  51. { USB_VENDOR_ID_TURBOX, USB_DEVICE_ID_TURBOX_KEYBOARD, HID_QUIRK_NOGET },
  52. { USB_VENDOR_ID_WISEGROUP, USB_DEVICE_ID_DUAL_USB_JOYPAD, HID_QUIRK_NOGET | HID_QUIRK_MULTI_INPUT | HID_QUIRK_SKIP_OUTPUT_REPORTS },
  53. { USB_VENDOR_ID_WISEGROUP, USB_DEVICE_ID_QUAD_USB_JOYPAD, HID_QUIRK_NOGET | HID_QUIRK_MULTI_INPUT },
  54. { USB_VENDOR_ID_WISEGROUP_LTD, USB_DEVICE_ID_SMARTJOY_DUAL_PLUS, HID_QUIRK_NOGET | HID_QUIRK_MULTI_INPUT },
  55. { USB_VENDOR_ID_DELL, USB_DEVICE_ID_DELL_W7658, HID_QUIRK_RESET_LEDS },
  56. { 0, 0 }
  57. };
  58. /* Quirks for devices which require report descriptor fixup go here */
  59. static const struct hid_rdesc_blacklist {
  60. __u16 idVendor;
  61. __u16 idProduct;
  62. __u32 quirks;
  63. } hid_rdesc_blacklist[] = {
  64. { USB_VENDOR_ID_SAMSUNG, USB_DEVICE_ID_SAMSUNG_IR_REMOTE, HID_QUIRK_RDESC_SAMSUNG_REMOTE },
  65. { 0, 0 }
  66. };
  67. /* Dynamic HID quirks list - specified at runtime */
  68. struct quirks_list_struct {
  69. struct hid_blacklist hid_bl_item;
  70. struct list_head node;
  71. };
  72. static LIST_HEAD(dquirks_list);
  73. static DECLARE_RWSEM(dquirks_rwsem);
  74. /* Runtime ("dynamic") quirks manipulation functions */
  75. /**
  76. * usbhid_exists_dquirk: find any dynamic quirks for a USB HID device
  77. * @idVendor: the 16-bit USB vendor ID, in native byteorder
  78. * @idProduct: the 16-bit USB product ID, in native byteorder
  79. *
  80. * Description:
  81. * Scans dquirks_list for a matching dynamic quirk and returns
  82. * the pointer to the relevant struct hid_blacklist if found.
  83. * Must be called with a read lock held on dquirks_rwsem.
  84. *
  85. * Returns: NULL if no quirk found, struct hid_blacklist * if found.
  86. */
  87. static struct hid_blacklist *usbhid_exists_dquirk(const u16 idVendor,
  88. const u16 idProduct)
  89. {
  90. struct quirks_list_struct *q;
  91. struct hid_blacklist *bl_entry = NULL;
  92. list_for_each_entry(q, &dquirks_list, node) {
  93. if (q->hid_bl_item.idVendor == idVendor &&
  94. q->hid_bl_item.idProduct == idProduct) {
  95. bl_entry = &q->hid_bl_item;
  96. break;
  97. }
  98. }
  99. if (bl_entry != NULL)
  100. dbg_hid("Found dynamic quirk 0x%x for USB HID vendor 0x%hx prod 0x%hx\n",
  101. bl_entry->quirks, bl_entry->idVendor,
  102. bl_entry->idProduct);
  103. return bl_entry;
  104. }
  105. /**
  106. * usbhid_modify_dquirk: add/replace a HID quirk
  107. * @idVendor: the 16-bit USB vendor ID, in native byteorder
  108. * @idProduct: the 16-bit USB product ID, in native byteorder
  109. * @quirks: the u32 quirks value to add/replace
  110. *
  111. * Description:
  112. * If an dynamic quirk exists in memory for this (idVendor,
  113. * idProduct) pair, replace its quirks value with what was
  114. * provided. Otherwise, add the quirk to the dynamic quirks list.
  115. *
  116. * Returns: 0 OK, -error on failure.
  117. */
  118. static int usbhid_modify_dquirk(const u16 idVendor, const u16 idProduct,
  119. const u32 quirks)
  120. {
  121. struct quirks_list_struct *q_new, *q;
  122. int list_edited = 0;
  123. if (!idVendor) {
  124. dbg_hid("Cannot add a quirk with idVendor = 0\n");
  125. return -EINVAL;
  126. }
  127. q_new = kmalloc(sizeof(struct quirks_list_struct), GFP_KERNEL);
  128. if (!q_new) {
  129. dbg_hid("Could not allocate quirks_list_struct\n");
  130. return -ENOMEM;
  131. }
  132. q_new->hid_bl_item.idVendor = idVendor;
  133. q_new->hid_bl_item.idProduct = idProduct;
  134. q_new->hid_bl_item.quirks = quirks;
  135. down_write(&dquirks_rwsem);
  136. list_for_each_entry(q, &dquirks_list, node) {
  137. if (q->hid_bl_item.idVendor == idVendor &&
  138. q->hid_bl_item.idProduct == idProduct) {
  139. list_replace(&q->node, &q_new->node);
  140. kfree(q);
  141. list_edited = 1;
  142. break;
  143. }
  144. }
  145. if (!list_edited)
  146. list_add_tail(&q_new->node, &dquirks_list);
  147. up_write(&dquirks_rwsem);
  148. return 0;
  149. }
  150. /**
  151. * usbhid_remove_all_dquirks: remove all runtime HID quirks from memory
  152. *
  153. * Description:
  154. * Free all memory associated with dynamic quirks - called before
  155. * module unload.
  156. *
  157. */
  158. static void usbhid_remove_all_dquirks(void)
  159. {
  160. struct quirks_list_struct *q, *temp;
  161. down_write(&dquirks_rwsem);
  162. list_for_each_entry_safe(q, temp, &dquirks_list, node) {
  163. list_del(&q->node);
  164. kfree(q);
  165. }
  166. up_write(&dquirks_rwsem);
  167. }
  168. /**
  169. * usbhid_quirks_init: apply USB HID quirks specified at module load time
  170. */
  171. int usbhid_quirks_init(char **quirks_param)
  172. {
  173. u16 idVendor, idProduct;
  174. u32 quirks;
  175. int n = 0, m;
  176. for (; quirks_param[n] && n < MAX_USBHID_BOOT_QUIRKS; n++) {
  177. m = sscanf(quirks_param[n], "0x%hx:0x%hx:0x%x",
  178. &idVendor, &idProduct, &quirks);
  179. if (m != 3 ||
  180. usbhid_modify_dquirk(idVendor, idProduct, quirks) != 0) {
  181. printk(KERN_WARNING
  182. "Could not parse HID quirk module param %s\n",
  183. quirks_param[n]);
  184. }
  185. }
  186. return 0;
  187. }
  188. /**
  189. * usbhid_quirks_exit: release memory associated with dynamic_quirks
  190. *
  191. * Description:
  192. * Release all memory associated with dynamic quirks. Called upon
  193. * module unload.
  194. *
  195. * Returns: nothing
  196. */
  197. void usbhid_quirks_exit(void)
  198. {
  199. usbhid_remove_all_dquirks();
  200. }
  201. /**
  202. * usbhid_exists_squirk: return any static quirks for a USB HID device
  203. * @idVendor: the 16-bit USB vendor ID, in native byteorder
  204. * @idProduct: the 16-bit USB product ID, in native byteorder
  205. *
  206. * Description:
  207. * Given a USB vendor ID and product ID, return a pointer to
  208. * the hid_blacklist entry associated with that device.
  209. *
  210. * Returns: pointer if quirk found, or NULL if no quirks found.
  211. */
  212. static const struct hid_blacklist *usbhid_exists_squirk(const u16 idVendor,
  213. const u16 idProduct)
  214. {
  215. const struct hid_blacklist *bl_entry = NULL;
  216. int n = 0;
  217. for (; hid_blacklist[n].idVendor; n++)
  218. if (hid_blacklist[n].idVendor == idVendor &&
  219. hid_blacklist[n].idProduct == idProduct)
  220. bl_entry = &hid_blacklist[n];
  221. if (bl_entry != NULL)
  222. dbg_hid("Found squirk 0x%x for USB HID vendor 0x%hx prod 0x%hx\n",
  223. bl_entry->quirks, bl_entry->idVendor,
  224. bl_entry->idProduct);
  225. return bl_entry;
  226. }
  227. /**
  228. * usbhid_lookup_quirk: return any quirks associated with a USB HID device
  229. * @idVendor: the 16-bit USB vendor ID, in native byteorder
  230. * @idProduct: the 16-bit USB product ID, in native byteorder
  231. *
  232. * Description:
  233. * Given a USB vendor ID and product ID, return any quirks associated
  234. * with that device.
  235. *
  236. * Returns: a u32 quirks value.
  237. */
  238. u32 usbhid_lookup_quirk(const u16 idVendor, const u16 idProduct)
  239. {
  240. u32 quirks = 0;
  241. const struct hid_blacklist *bl_entry = NULL;
  242. /* NCR devices must not be queried for reports */
  243. if (idVendor == USB_VENDOR_ID_NCR &&
  244. idProduct >= USB_DEVICE_ID_NCR_FIRST &&
  245. idProduct <= USB_DEVICE_ID_NCR_LAST)
  246. return HID_QUIRK_NOGET;
  247. down_read(&dquirks_rwsem);
  248. bl_entry = usbhid_exists_dquirk(idVendor, idProduct);
  249. if (!bl_entry)
  250. bl_entry = usbhid_exists_squirk(idVendor, idProduct);
  251. if (bl_entry)
  252. quirks = bl_entry->quirks;
  253. up_read(&dquirks_rwsem);
  254. return quirks;
  255. }
  256. EXPORT_SYMBOL_GPL(usbhid_lookup_quirk);
  257. /*
  258. * Samsung IrDA remote controller (reports as Cypress USB Mouse).
  259. *
  260. * Vendor specific report #4 has a size of 48 bit,
  261. * and therefore is not accepted when inspecting the descriptors.
  262. * As a workaround we reinterpret the report as:
  263. * Variable type, count 6, size 8 bit, log. maximum 255
  264. * The burden to reconstruct the data is moved into user space.
  265. */
  266. static void usbhid_fixup_samsung_irda_descriptor(unsigned char *rdesc,
  267. int rsize)
  268. {
  269. if (rsize >= 182 && rdesc[175] == 0x25
  270. && rdesc[176] == 0x40
  271. && rdesc[177] == 0x75
  272. && rdesc[178] == 0x30
  273. && rdesc[179] == 0x95
  274. && rdesc[180] == 0x01
  275. && rdesc[182] == 0x40) {
  276. printk(KERN_INFO "Fixing up Samsung IrDA report descriptor\n");
  277. rdesc[176] = 0xff;
  278. rdesc[178] = 0x08;
  279. rdesc[180] = 0x06;
  280. rdesc[182] = 0x42;
  281. }
  282. }
  283. static void __usbhid_fixup_report_descriptor(__u32 quirks, char *rdesc, unsigned rsize)
  284. {
  285. if (quirks & HID_QUIRK_RDESC_SAMSUNG_REMOTE)
  286. usbhid_fixup_samsung_irda_descriptor(rdesc, rsize);
  287. }
  288. /**
  289. * usbhid_fixup_report_descriptor: check if report descriptor needs fixup
  290. *
  291. * Description:
  292. * Walks the hid_rdesc_blacklist[] array and checks whether the device
  293. * is known to have broken report descriptor that needs to be fixed up
  294. * prior to entering the HID parser
  295. *
  296. * Returns: nothing
  297. */
  298. void usbhid_fixup_report_descriptor(const u16 idVendor, const u16 idProduct,
  299. char *rdesc, unsigned rsize, char **quirks_param)
  300. {
  301. int n, m;
  302. u16 paramVendor, paramProduct;
  303. u32 quirks;
  304. /* static rdesc quirk entries */
  305. for (n = 0; hid_rdesc_blacklist[n].idVendor; n++)
  306. if (hid_rdesc_blacklist[n].idVendor == idVendor &&
  307. hid_rdesc_blacklist[n].idProduct == idProduct)
  308. __usbhid_fixup_report_descriptor(hid_rdesc_blacklist[n].quirks,
  309. rdesc, rsize);
  310. /* runtime rdesc quirk entries handling */
  311. for (n = 0; quirks_param[n] && n < MAX_USBHID_BOOT_QUIRKS; n++) {
  312. m = sscanf(quirks_param[n], "0x%hx:0x%hx:0x%x",
  313. &paramVendor, &paramProduct, &quirks);
  314. if (m != 3)
  315. printk(KERN_WARNING
  316. "Could not parse HID quirk module param %s\n",
  317. quirks_param[n]);
  318. else if (paramVendor == idVendor && paramProduct == idProduct)
  319. __usbhid_fixup_report_descriptor(quirks, rdesc, rsize);
  320. }
  321. }