hid-input.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630
  1. /*
  2. * $Id: hid-input.c,v 1.2 2002/04/23 00:59:25 rdamazio Exp $
  3. *
  4. * Copyright (c) 2000-2001 Vojtech Pavlik
  5. *
  6. * USB HID to Linux Input mapping
  7. */
  8. /*
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation; either version 2 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  22. *
  23. * Should you need to contact me, the author, you can do so either by
  24. * e-mail - mail your message to <vojtech@ucw.cz>, or by paper mail:
  25. * Vojtech Pavlik, Simunkova 1594, Prague 8, 182 00 Czech Republic
  26. */
  27. #include <linux/module.h>
  28. #include <linux/slab.h>
  29. #include <linux/kernel.h>
  30. #include <linux/input.h>
  31. #include <linux/usb.h>
  32. #undef DEBUG
  33. #include "hid.h"
  34. #define unk KEY_UNKNOWN
  35. static unsigned char hid_keyboard[256] = {
  36. 0, 0, 0, 0, 30, 48, 46, 32, 18, 33, 34, 35, 23, 36, 37, 38,
  37. 50, 49, 24, 25, 16, 19, 31, 20, 22, 47, 17, 45, 21, 44, 2, 3,
  38. 4, 5, 6, 7, 8, 9, 10, 11, 28, 1, 14, 15, 57, 12, 13, 26,
  39. 27, 43, 43, 39, 40, 41, 51, 52, 53, 58, 59, 60, 61, 62, 63, 64,
  40. 65, 66, 67, 68, 87, 88, 99, 70,119,110,102,104,111,107,109,106,
  41. 105,108,103, 69, 98, 55, 74, 78, 96, 79, 80, 81, 75, 76, 77, 71,
  42. 72, 73, 82, 83, 86,127,116,117,183,184,185,186,187,188,189,190,
  43. 191,192,193,194,134,138,130,132,128,129,131,137,133,135,136,113,
  44. 115,114,unk,unk,unk,121,unk, 89, 93,124, 92, 94, 95,unk,unk,unk,
  45. 122,123, 90, 91, 85,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,
  46. unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,
  47. unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,
  48. unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,
  49. unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,
  50. 29, 42, 56,125, 97, 54,100,126,164,166,165,163,161,115,114,113,
  51. 150,158,159,128,136,177,178,176,142,152,173,140,unk,unk,unk,unk
  52. };
  53. static struct {
  54. __s32 x;
  55. __s32 y;
  56. } hid_hat_to_axis[] = {{ 0, 0}, { 0,-1}, { 1,-1}, { 1, 0}, { 1, 1}, { 0, 1}, {-1, 1}, {-1, 0}, {-1,-1}};
  57. #define map_abs(c) do { usage->code = c; usage->type = EV_ABS; bit = input->absbit; max = ABS_MAX; } while (0)
  58. #define map_rel(c) do { usage->code = c; usage->type = EV_REL; bit = input->relbit; max = REL_MAX; } while (0)
  59. #define map_key(c) do { usage->code = c; usage->type = EV_KEY; bit = input->keybit; max = KEY_MAX; } while (0)
  60. #define map_led(c) do { usage->code = c; usage->type = EV_LED; bit = input->ledbit; max = LED_MAX; } while (0)
  61. #define map_ff(c) do { usage->code = c; usage->type = EV_FF; bit = input->ffbit; max = FF_MAX; } while (0)
  62. #define map_abs_clear(c) do { map_abs(c); clear_bit(c, bit); } while (0)
  63. #define map_key_clear(c) do { map_key(c); clear_bit(c, bit); } while (0)
  64. #define map_ff_effect(c) do { set_bit(c, input->ffbit); } while (0)
  65. static void hidinput_configure_usage(struct hid_input *hidinput, struct hid_field *field,
  66. struct hid_usage *usage)
  67. {
  68. struct input_dev *input = &hidinput->input;
  69. struct hid_device *device = hidinput->input.private;
  70. int max, code;
  71. unsigned long *bit;
  72. field->hidinput = hidinput;
  73. #ifdef DEBUG
  74. printk(KERN_DEBUG "Mapping: ");
  75. resolv_usage(usage->hid);
  76. printk(" ---> ");
  77. #endif
  78. if (field->flags & HID_MAIN_ITEM_CONSTANT)
  79. goto ignore;
  80. switch (usage->hid & HID_USAGE_PAGE) {
  81. case HID_UP_UNDEFINED:
  82. goto ignore;
  83. case HID_UP_KEYBOARD:
  84. set_bit(EV_REP, input->evbit);
  85. if ((usage->hid & HID_USAGE) < 256) {
  86. if (!hid_keyboard[usage->hid & HID_USAGE]) goto ignore;
  87. map_key_clear(hid_keyboard[usage->hid & HID_USAGE]);
  88. } else
  89. map_key(KEY_UNKNOWN);
  90. break;
  91. case HID_UP_BUTTON:
  92. code = ((usage->hid - 1) & 0xf);
  93. switch (field->application) {
  94. case HID_GD_MOUSE:
  95. case HID_GD_POINTER: code += 0x110; break;
  96. case HID_GD_JOYSTICK: code += 0x120; break;
  97. case HID_GD_GAMEPAD: code += 0x130; break;
  98. default:
  99. switch (field->physical) {
  100. case HID_GD_MOUSE:
  101. case HID_GD_POINTER: code += 0x110; break;
  102. case HID_GD_JOYSTICK: code += 0x120; break;
  103. case HID_GD_GAMEPAD: code += 0x130; break;
  104. default: code += 0x100;
  105. }
  106. }
  107. map_key(code);
  108. break;
  109. case HID_UP_GENDESK:
  110. if ((usage->hid & 0xf0) == 0x80) { /* SystemControl */
  111. switch (usage->hid & 0xf) {
  112. case 0x1: map_key_clear(KEY_POWER); break;
  113. case 0x2: map_key_clear(KEY_SLEEP); break;
  114. case 0x3: map_key_clear(KEY_WAKEUP); break;
  115. default: goto unknown;
  116. }
  117. break;
  118. }
  119. if ((usage->hid & 0xf0) == 0x90) { /* D-pad */
  120. switch (usage->hid) {
  121. case HID_GD_UP: usage->hat_dir = 1; break;
  122. case HID_GD_DOWN: usage->hat_dir = 5; break;
  123. case HID_GD_RIGHT: usage->hat_dir = 3; break;
  124. case HID_GD_LEFT: usage->hat_dir = 7; break;
  125. default: goto unknown;
  126. }
  127. if (field->dpad) {
  128. map_abs(field->dpad);
  129. goto ignore;
  130. }
  131. map_abs(ABS_HAT0X);
  132. break;
  133. }
  134. switch (usage->hid) {
  135. /* These usage IDs map directly to the usage codes. */
  136. case HID_GD_X: case HID_GD_Y: case HID_GD_Z:
  137. case HID_GD_RX: case HID_GD_RY: case HID_GD_RZ:
  138. case HID_GD_SLIDER: case HID_GD_DIAL: case HID_GD_WHEEL:
  139. if (field->flags & HID_MAIN_ITEM_RELATIVE)
  140. map_rel(usage->hid & 0xf);
  141. else
  142. map_abs(usage->hid & 0xf);
  143. break;
  144. case HID_GD_HATSWITCH:
  145. usage->hat_min = field->logical_minimum;
  146. usage->hat_max = field->logical_maximum;
  147. map_abs(ABS_HAT0X);
  148. break;
  149. case HID_GD_START: map_key_clear(BTN_START); break;
  150. case HID_GD_SELECT: map_key_clear(BTN_SELECT); break;
  151. default: goto unknown;
  152. }
  153. break;
  154. case HID_UP_LED:
  155. if (((usage->hid - 1) & 0xffff) >= LED_MAX)
  156. goto ignore;
  157. map_led((usage->hid - 1) & 0xffff);
  158. break;
  159. case HID_UP_DIGITIZER:
  160. switch (usage->hid & 0xff) {
  161. case 0x30: /* TipPressure */
  162. if (!test_bit(BTN_TOUCH, input->keybit)) {
  163. device->quirks |= HID_QUIRK_NOTOUCH;
  164. set_bit(EV_KEY, input->evbit);
  165. set_bit(BTN_TOUCH, input->keybit);
  166. }
  167. map_abs_clear(ABS_PRESSURE);
  168. break;
  169. case 0x32: /* InRange */
  170. switch (field->physical & 0xff) {
  171. case 0x21: map_key(BTN_TOOL_MOUSE); break;
  172. case 0x22: map_key(BTN_TOOL_FINGER); break;
  173. default: map_key(BTN_TOOL_PEN); break;
  174. }
  175. break;
  176. case 0x3c: /* Invert */
  177. map_key_clear(BTN_TOOL_RUBBER);
  178. break;
  179. case 0x33: /* Touch */
  180. case 0x42: /* TipSwitch */
  181. case 0x43: /* TipSwitch2 */
  182. device->quirks &= ~HID_QUIRK_NOTOUCH;
  183. map_key_clear(BTN_TOUCH);
  184. break;
  185. case 0x44: /* BarrelSwitch */
  186. map_key_clear(BTN_STYLUS);
  187. break;
  188. default: goto unknown;
  189. }
  190. break;
  191. case HID_UP_CONSUMER: /* USB HUT v1.1, pages 56-62 */
  192. switch (usage->hid & HID_USAGE) {
  193. case 0x000: goto ignore;
  194. case 0x034: map_key_clear(KEY_SLEEP); break;
  195. case 0x036: map_key_clear(BTN_MISC); break;
  196. case 0x08a: map_key_clear(KEY_WWW); break;
  197. case 0x095: map_key_clear(KEY_HELP); break;
  198. case 0x0b0: map_key_clear(KEY_PLAY); break;
  199. case 0x0b1: map_key_clear(KEY_PAUSE); break;
  200. case 0x0b2: map_key_clear(KEY_RECORD); break;
  201. case 0x0b3: map_key_clear(KEY_FASTFORWARD); break;
  202. case 0x0b4: map_key_clear(KEY_REWIND); break;
  203. case 0x0b5: map_key_clear(KEY_NEXTSONG); break;
  204. case 0x0b6: map_key_clear(KEY_PREVIOUSSONG); break;
  205. case 0x0b7: map_key_clear(KEY_STOPCD); break;
  206. case 0x0b8: map_key_clear(KEY_EJECTCD); break;
  207. case 0x0cd: map_key_clear(KEY_PLAYPAUSE); break;
  208. case 0x0e0: map_abs_clear(ABS_VOLUME); break;
  209. case 0x0e2: map_key_clear(KEY_MUTE); break;
  210. case 0x0e5: map_key_clear(KEY_BASSBOOST); break;
  211. case 0x0e9: map_key_clear(KEY_VOLUMEUP); break;
  212. case 0x0ea: map_key_clear(KEY_VOLUMEDOWN); break;
  213. case 0x183: map_key_clear(KEY_CONFIG); break;
  214. case 0x18a: map_key_clear(KEY_MAIL); break;
  215. case 0x192: map_key_clear(KEY_CALC); break;
  216. case 0x194: map_key_clear(KEY_FILE); break;
  217. case 0x21a: map_key_clear(KEY_UNDO); break;
  218. case 0x21b: map_key_clear(KEY_COPY); break;
  219. case 0x21c: map_key_clear(KEY_CUT); break;
  220. case 0x21d: map_key_clear(KEY_PASTE); break;
  221. case 0x221: map_key_clear(KEY_FIND); break;
  222. case 0x223: map_key_clear(KEY_HOMEPAGE); break;
  223. case 0x224: map_key_clear(KEY_BACK); break;
  224. case 0x225: map_key_clear(KEY_FORWARD); break;
  225. case 0x226: map_key_clear(KEY_STOP); break;
  226. case 0x227: map_key_clear(KEY_REFRESH); break;
  227. case 0x22a: map_key_clear(KEY_BOOKMARKS); break;
  228. case 0x238: map_rel(REL_HWHEEL); break;
  229. default: goto unknown;
  230. }
  231. break;
  232. case HID_UP_HPVENDOR: /* Reported on a Dutch layout HP5308 */
  233. set_bit(EV_REP, input->evbit);
  234. switch (usage->hid & HID_USAGE) {
  235. case 0x021: map_key_clear(KEY_PRINT); break;
  236. case 0x070: map_key_clear(KEY_HP); break;
  237. case 0x071: map_key_clear(KEY_CAMERA); break;
  238. case 0x072: map_key_clear(KEY_SOUND); break;
  239. case 0x073: map_key_clear(KEY_QUESTION); break;
  240. case 0x080: map_key_clear(KEY_EMAIL); break;
  241. case 0x081: map_key_clear(KEY_CHAT); break;
  242. case 0x082: map_key_clear(KEY_SEARCH); break;
  243. case 0x083: map_key_clear(KEY_CONNECT); break;
  244. case 0x084: map_key_clear(KEY_FINANCE); break;
  245. case 0x085: map_key_clear(KEY_SPORT); break;
  246. case 0x086: map_key_clear(KEY_SHOP); break;
  247. default: goto ignore;
  248. }
  249. break;
  250. case HID_UP_MSVENDOR:
  251. goto ignore;
  252. case HID_UP_PID:
  253. set_bit(EV_FF, input->evbit);
  254. switch(usage->hid & HID_USAGE) {
  255. case 0x26: map_ff_effect(FF_CONSTANT); goto ignore;
  256. case 0x27: map_ff_effect(FF_RAMP); goto ignore;
  257. case 0x28: map_ff_effect(FF_CUSTOM); goto ignore;
  258. case 0x30: map_ff_effect(FF_SQUARE); map_ff_effect(FF_PERIODIC); goto ignore;
  259. case 0x31: map_ff_effect(FF_SINE); map_ff_effect(FF_PERIODIC); goto ignore;
  260. case 0x32: map_ff_effect(FF_TRIANGLE); map_ff_effect(FF_PERIODIC); goto ignore;
  261. case 0x33: map_ff_effect(FF_SAW_UP); map_ff_effect(FF_PERIODIC); goto ignore;
  262. case 0x34: map_ff_effect(FF_SAW_DOWN); map_ff_effect(FF_PERIODIC); goto ignore;
  263. case 0x40: map_ff_effect(FF_SPRING); goto ignore;
  264. case 0x41: map_ff_effect(FF_DAMPER); goto ignore;
  265. case 0x42: map_ff_effect(FF_INERTIA); goto ignore;
  266. case 0x43: map_ff_effect(FF_FRICTION); goto ignore;
  267. case 0x7e: map_ff(FF_GAIN); break;
  268. case 0x83: input->ff_effects_max = field->value[0]; goto ignore;
  269. case 0x98: map_ff(FF_AUTOCENTER); break;
  270. case 0xa4: map_key_clear(BTN_DEAD); break;
  271. default: goto ignore;
  272. }
  273. break;
  274. default:
  275. unknown:
  276. if (field->report_size == 1) {
  277. if (field->report->type == HID_OUTPUT_REPORT) {
  278. map_led(LED_MISC);
  279. break;
  280. }
  281. map_key(BTN_MISC);
  282. break;
  283. }
  284. if (field->flags & HID_MAIN_ITEM_RELATIVE) {
  285. map_rel(REL_MISC);
  286. break;
  287. }
  288. map_abs(ABS_MISC);
  289. break;
  290. }
  291. set_bit(usage->type, input->evbit);
  292. while (usage->code <= max && test_and_set_bit(usage->code, bit))
  293. usage->code = find_next_zero_bit(bit, max + 1, usage->code);
  294. if (usage->code > max)
  295. goto ignore;
  296. if ((device->quirks & (HID_QUIRK_2WHEEL_MOUSE_HACK_7 | HID_QUIRK_2WHEEL_MOUSE_HACK_5)) &&
  297. (usage->type == EV_REL) && (usage->code == REL_WHEEL))
  298. set_bit(REL_HWHEEL, bit);
  299. if (((device->quirks & HID_QUIRK_2WHEEL_MOUSE_HACK_5) && (usage->hid == 0x00090005))
  300. || ((device->quirks & HID_QUIRK_2WHEEL_MOUSE_HACK_7) && (usage->hid == 0x00090007)))
  301. goto ignore;
  302. if (usage->type == EV_ABS) {
  303. int a = field->logical_minimum;
  304. int b = field->logical_maximum;
  305. if ((device->quirks & HID_QUIRK_BADPAD) && (usage->code == ABS_X || usage->code == ABS_Y)) {
  306. a = field->logical_minimum = 0;
  307. b = field->logical_maximum = 255;
  308. }
  309. if (field->application == HID_GD_GAMEPAD || field->application == HID_GD_JOYSTICK)
  310. input_set_abs_params(input, usage->code, a, b, (b - a) >> 8, (b - a) >> 4);
  311. else input_set_abs_params(input, usage->code, a, b, 0, 0);
  312. }
  313. if (usage->hat_min < usage->hat_max || usage->hat_dir) {
  314. int i;
  315. for (i = usage->code; i < usage->code + 2 && i <= max; i++) {
  316. input_set_abs_params(input, i, -1, 1, 0, 0);
  317. set_bit(i, input->absbit);
  318. }
  319. if (usage->hat_dir && !field->dpad)
  320. field->dpad = usage->code;
  321. }
  322. #ifdef DEBUG
  323. resolv_event(usage->type, usage->code);
  324. printk("\n");
  325. #endif
  326. return;
  327. ignore:
  328. #ifdef DEBUG
  329. printk("IGNORED\n");
  330. #endif
  331. return;
  332. }
  333. void hidinput_hid_event(struct hid_device *hid, struct hid_field *field, struct hid_usage *usage, __s32 value, struct pt_regs *regs)
  334. {
  335. struct input_dev *input = &field->hidinput->input;
  336. int *quirks = &hid->quirks;
  337. if (!input)
  338. return;
  339. input_regs(input, regs);
  340. if (!usage->type)
  341. return;
  342. if (((hid->quirks & HID_QUIRK_2WHEEL_MOUSE_HACK_5) && (usage->hid == 0x00090005))
  343. || ((hid->quirks & HID_QUIRK_2WHEEL_MOUSE_HACK_7) && (usage->hid == 0x00090007))) {
  344. if (value) hid->quirks |= HID_QUIRK_2WHEEL_MOUSE_HACK_ON;
  345. else hid->quirks &= ~HID_QUIRK_2WHEEL_MOUSE_HACK_ON;
  346. return;
  347. }
  348. if ((hid->quirks & HID_QUIRK_2WHEEL_MOUSE_HACK_ON) && (usage->code == REL_WHEEL)) {
  349. input_event(input, usage->type, REL_HWHEEL, value);
  350. return;
  351. }
  352. if (usage->hat_min < usage->hat_max || usage->hat_dir) {
  353. int hat_dir = usage->hat_dir;
  354. if (!hat_dir)
  355. hat_dir = (value - usage->hat_min) * 8 / (usage->hat_max - usage->hat_min + 1) + 1;
  356. if (hat_dir < 0 || hat_dir > 8) hat_dir = 0;
  357. input_event(input, usage->type, usage->code , hid_hat_to_axis[hat_dir].x);
  358. input_event(input, usage->type, usage->code + 1, hid_hat_to_axis[hat_dir].y);
  359. return;
  360. }
  361. if (usage->hid == (HID_UP_DIGITIZER | 0x003c)) { /* Invert */
  362. *quirks = value ? (*quirks | HID_QUIRK_INVERT) : (*quirks & ~HID_QUIRK_INVERT);
  363. return;
  364. }
  365. if (usage->hid == (HID_UP_DIGITIZER | 0x0032)) { /* InRange */
  366. if (value) {
  367. input_event(input, usage->type, (*quirks & HID_QUIRK_INVERT) ? BTN_TOOL_RUBBER : usage->code, 1);
  368. return;
  369. }
  370. input_event(input, usage->type, usage->code, 0);
  371. input_event(input, usage->type, BTN_TOOL_RUBBER, 0);
  372. return;
  373. }
  374. if (usage->hid == (HID_UP_DIGITIZER | 0x0030) && (*quirks & HID_QUIRK_NOTOUCH)) { /* Pressure */
  375. int a = field->logical_minimum;
  376. int b = field->logical_maximum;
  377. input_event(input, EV_KEY, BTN_TOUCH, value > a + ((b - a) >> 3));
  378. }
  379. if (usage->hid == (HID_UP_PID | 0x83UL)) { /* Simultaneous Effects Max */
  380. input->ff_effects_max = value;
  381. dbg("Maximum Effects - %d",input->ff_effects_max);
  382. return;
  383. }
  384. if (usage->hid == (HID_UP_PID | 0x7fUL)) {
  385. dbg("PID Pool Report\n");
  386. return;
  387. }
  388. if((usage->type == EV_KEY) && (usage->code == 0)) /* Key 0 is "unassigned", not KEY_UNKNOWN */
  389. return;
  390. input_event(input, usage->type, usage->code, value);
  391. if ((field->flags & HID_MAIN_ITEM_RELATIVE) && (usage->type == EV_KEY))
  392. input_event(input, usage->type, usage->code, 0);
  393. }
  394. void hidinput_report_event(struct hid_device *hid, struct hid_report *report)
  395. {
  396. struct list_head *lh;
  397. struct hid_input *hidinput;
  398. list_for_each (lh, &hid->inputs) {
  399. hidinput = list_entry(lh, struct hid_input, list);
  400. input_sync(&hidinput->input);
  401. }
  402. }
  403. static int hidinput_find_field(struct hid_device *hid, unsigned int type, unsigned int code, struct hid_field **field)
  404. {
  405. struct hid_report *report;
  406. int i, j;
  407. list_for_each_entry(report, &hid->report_enum[HID_OUTPUT_REPORT].report_list, list) {
  408. for (i = 0; i < report->maxfield; i++) {
  409. *field = report->field[i];
  410. for (j = 0; j < (*field)->maxusage; j++)
  411. if ((*field)->usage[j].type == type && (*field)->usage[j].code == code)
  412. return j;
  413. }
  414. }
  415. return -1;
  416. }
  417. static int hidinput_input_event(struct input_dev *dev, unsigned int type, unsigned int code, int value)
  418. {
  419. struct hid_device *hid = dev->private;
  420. struct hid_field *field;
  421. int offset;
  422. if (type == EV_FF)
  423. return hid_ff_event(hid, dev, type, code, value);
  424. if (type != EV_LED)
  425. return -1;
  426. if ((offset = hidinput_find_field(hid, type, code, &field)) == -1) {
  427. warn("event field not found");
  428. return -1;
  429. }
  430. hid_set_field(field, offset, value);
  431. hid_submit_report(hid, field->report, USB_DIR_OUT);
  432. return 0;
  433. }
  434. static int hidinput_open(struct input_dev *dev)
  435. {
  436. struct hid_device *hid = dev->private;
  437. return hid_open(hid);
  438. }
  439. static void hidinput_close(struct input_dev *dev)
  440. {
  441. struct hid_device *hid = dev->private;
  442. hid_close(hid);
  443. }
  444. /*
  445. * Register the input device; print a message.
  446. * Configure the input layer interface
  447. * Read all reports and initialize the absolute field values.
  448. */
  449. int hidinput_connect(struct hid_device *hid)
  450. {
  451. struct usb_device *dev = hid->dev;
  452. struct hid_report *report;
  453. struct hid_input *hidinput = NULL;
  454. int i, j, k;
  455. INIT_LIST_HEAD(&hid->inputs);
  456. for (i = 0; i < hid->maxcollection; i++)
  457. if (hid->collection[i].type == HID_COLLECTION_APPLICATION ||
  458. hid->collection[i].type == HID_COLLECTION_PHYSICAL)
  459. if (IS_INPUT_APPLICATION(hid->collection[i].usage))
  460. break;
  461. if (i == hid->maxcollection)
  462. return -1;
  463. for (k = HID_INPUT_REPORT; k <= HID_OUTPUT_REPORT; k++)
  464. list_for_each_entry(report, &hid->report_enum[k].report_list, list) {
  465. if (!report->maxfield)
  466. continue;
  467. if (!hidinput) {
  468. hidinput = kmalloc(sizeof(*hidinput), GFP_KERNEL);
  469. if (!hidinput) {
  470. err("Out of memory during hid input probe");
  471. return -1;
  472. }
  473. memset(hidinput, 0, sizeof(*hidinput));
  474. list_add_tail(&hidinput->list, &hid->inputs);
  475. hidinput->input.private = hid;
  476. hidinput->input.event = hidinput_input_event;
  477. hidinput->input.open = hidinput_open;
  478. hidinput->input.close = hidinput_close;
  479. hidinput->input.name = hid->name;
  480. hidinput->input.phys = hid->phys;
  481. hidinput->input.uniq = hid->uniq;
  482. hidinput->input.id.bustype = BUS_USB;
  483. hidinput->input.id.vendor = le16_to_cpu(dev->descriptor.idVendor);
  484. hidinput->input.id.product = le16_to_cpu(dev->descriptor.idProduct);
  485. hidinput->input.id.version = le16_to_cpu(dev->descriptor.bcdDevice);
  486. hidinput->input.dev = &hid->intf->dev;
  487. }
  488. for (i = 0; i < report->maxfield; i++)
  489. for (j = 0; j < report->field[i]->maxusage; j++)
  490. hidinput_configure_usage(hidinput, report->field[i],
  491. report->field[i]->usage + j);
  492. if (hid->quirks & HID_QUIRK_MULTI_INPUT) {
  493. /* This will leave hidinput NULL, so that it
  494. * allocates another one if we have more inputs on
  495. * the same interface. Some devices (e.g. Happ's
  496. * UGCI) cram a lot of unrelated inputs into the
  497. * same interface. */
  498. hidinput->report = report;
  499. input_register_device(&hidinput->input);
  500. hidinput = NULL;
  501. }
  502. }
  503. /* This only gets called when we are a single-input (most of the
  504. * time). IOW, not a HID_QUIRK_MULTI_INPUT. The hid_ff_init() is
  505. * only useful in this case, and not for multi-input quirks. */
  506. if (hidinput) {
  507. hid_ff_init(hid);
  508. input_register_device(&hidinput->input);
  509. }
  510. return 0;
  511. }
  512. void hidinput_disconnect(struct hid_device *hid)
  513. {
  514. struct list_head *lh, *next;
  515. struct hid_input *hidinput;
  516. list_for_each_safe(lh, next, &hid->inputs) {
  517. hidinput = list_entry(lh, struct hid_input, list);
  518. input_unregister_device(&hidinput->input);
  519. list_del(&hidinput->list);
  520. kfree(hidinput);
  521. }
  522. }