hid-input.c 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515
  1. /*
  2. * Copyright (c) 2000-2001 Vojtech Pavlik
  3. * Copyright (c) 2006-2010 Jiri Kosina
  4. *
  5. * HID to Linux Input mapping
  6. */
  7. /*
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  21. *
  22. * Should you need to contact me, the author, you can do so either by
  23. * e-mail - mail your message to <vojtech@ucw.cz>, or by paper mail:
  24. * Vojtech Pavlik, Simunkova 1594, Prague 8, 182 00 Czech Republic
  25. */
  26. #include <linux/module.h>
  27. #include <linux/slab.h>
  28. #include <linux/kernel.h>
  29. #include <linux/hid.h>
  30. #include <linux/hid-debug.h>
  31. #include "hid-ids.h"
  32. #define unk KEY_UNKNOWN
  33. static const unsigned char hid_keyboard[256] = {
  34. 0, 0, 0, 0, 30, 48, 46, 32, 18, 33, 34, 35, 23, 36, 37, 38,
  35. 50, 49, 24, 25, 16, 19, 31, 20, 22, 47, 17, 45, 21, 44, 2, 3,
  36. 4, 5, 6, 7, 8, 9, 10, 11, 28, 1, 14, 15, 57, 12, 13, 26,
  37. 27, 43, 43, 39, 40, 41, 51, 52, 53, 58, 59, 60, 61, 62, 63, 64,
  38. 65, 66, 67, 68, 87, 88, 99, 70,119,110,102,104,111,107,109,106,
  39. 105,108,103, 69, 98, 55, 74, 78, 96, 79, 80, 81, 75, 76, 77, 71,
  40. 72, 73, 82, 83, 86,127,116,117,183,184,185,186,187,188,189,190,
  41. 191,192,193,194,134,138,130,132,128,129,131,137,133,135,136,113,
  42. 115,114,unk,unk,unk,121,unk, 89, 93,124, 92, 94, 95,unk,unk,unk,
  43. 122,123, 90, 91, 85,unk,unk,unk,unk,unk,unk,unk,111,unk,unk,unk,
  44. unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,
  45. unk,unk,unk,unk,unk,unk,179,180,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,111,unk,unk,unk,unk,unk,unk,unk,
  48. 29, 42, 56,125, 97, 54,100,126,164,166,165,163,161,115,114,113,
  49. 150,158,159,128,136,177,178,176,142,152,173,140,unk,unk,unk,unk
  50. };
  51. static const struct {
  52. __s32 x;
  53. __s32 y;
  54. } hid_hat_to_axis[] = {{ 0, 0}, { 0,-1}, { 1,-1}, { 1, 0}, { 1, 1}, { 0, 1}, {-1, 1}, {-1, 0}, {-1,-1}};
  55. #define map_abs(c) hid_map_usage(hidinput, usage, &bit, &max, EV_ABS, (c))
  56. #define map_rel(c) hid_map_usage(hidinput, usage, &bit, &max, EV_REL, (c))
  57. #define map_key(c) hid_map_usage(hidinput, usage, &bit, &max, EV_KEY, (c))
  58. #define map_led(c) hid_map_usage(hidinput, usage, &bit, &max, EV_LED, (c))
  59. #define map_abs_clear(c) hid_map_usage_clear(hidinput, usage, &bit, \
  60. &max, EV_ABS, (c))
  61. #define map_key_clear(c) hid_map_usage_clear(hidinput, usage, &bit, \
  62. &max, EV_KEY, (c))
  63. static bool match_scancode(struct hid_usage *usage,
  64. unsigned int cur_idx, unsigned int scancode)
  65. {
  66. return (usage->hid & (HID_USAGE_PAGE | HID_USAGE)) == scancode;
  67. }
  68. static bool match_keycode(struct hid_usage *usage,
  69. unsigned int cur_idx, unsigned int keycode)
  70. {
  71. /*
  72. * We should exclude unmapped usages when doing lookup by keycode.
  73. */
  74. return (usage->type == EV_KEY && usage->code == keycode);
  75. }
  76. static bool match_index(struct hid_usage *usage,
  77. unsigned int cur_idx, unsigned int idx)
  78. {
  79. return cur_idx == idx;
  80. }
  81. typedef bool (*hid_usage_cmp_t)(struct hid_usage *usage,
  82. unsigned int cur_idx, unsigned int val);
  83. static struct hid_usage *hidinput_find_key(struct hid_device *hid,
  84. hid_usage_cmp_t match,
  85. unsigned int value,
  86. unsigned int *usage_idx)
  87. {
  88. unsigned int i, j, k, cur_idx = 0;
  89. struct hid_report *report;
  90. struct hid_usage *usage;
  91. for (k = HID_INPUT_REPORT; k <= HID_OUTPUT_REPORT; k++) {
  92. list_for_each_entry(report, &hid->report_enum[k].report_list, list) {
  93. for (i = 0; i < report->maxfield; i++) {
  94. for (j = 0; j < report->field[i]->maxusage; j++) {
  95. usage = report->field[i]->usage + j;
  96. if (usage->type == EV_KEY || usage->type == 0) {
  97. if (match(usage, cur_idx, value)) {
  98. if (usage_idx)
  99. *usage_idx = cur_idx;
  100. return usage;
  101. }
  102. cur_idx++;
  103. }
  104. }
  105. }
  106. }
  107. }
  108. return NULL;
  109. }
  110. static struct hid_usage *hidinput_locate_usage(struct hid_device *hid,
  111. const struct input_keymap_entry *ke,
  112. unsigned int *index)
  113. {
  114. struct hid_usage *usage;
  115. unsigned int scancode;
  116. if (ke->flags & INPUT_KEYMAP_BY_INDEX)
  117. usage = hidinput_find_key(hid, match_index, ke->index, index);
  118. else if (input_scancode_to_scalar(ke, &scancode) == 0)
  119. usage = hidinput_find_key(hid, match_scancode, scancode, index);
  120. else
  121. usage = NULL;
  122. return usage;
  123. }
  124. static int hidinput_getkeycode(struct input_dev *dev,
  125. struct input_keymap_entry *ke)
  126. {
  127. struct hid_device *hid = input_get_drvdata(dev);
  128. struct hid_usage *usage;
  129. unsigned int scancode, index;
  130. usage = hidinput_locate_usage(hid, ke, &index);
  131. if (usage) {
  132. ke->keycode = usage->type == EV_KEY ?
  133. usage->code : KEY_RESERVED;
  134. ke->index = index;
  135. scancode = usage->hid & (HID_USAGE_PAGE | HID_USAGE);
  136. ke->len = sizeof(scancode);
  137. memcpy(ke->scancode, &scancode, sizeof(scancode));
  138. return 0;
  139. }
  140. return -EINVAL;
  141. }
  142. static int hidinput_setkeycode(struct input_dev *dev,
  143. const struct input_keymap_entry *ke,
  144. unsigned int *old_keycode)
  145. {
  146. struct hid_device *hid = input_get_drvdata(dev);
  147. struct hid_usage *usage;
  148. usage = hidinput_locate_usage(hid, ke, NULL);
  149. if (usage) {
  150. *old_keycode = usage->type == EV_KEY ?
  151. usage->code : KEY_RESERVED;
  152. usage->code = ke->keycode;
  153. clear_bit(*old_keycode, dev->keybit);
  154. set_bit(usage->code, dev->keybit);
  155. dbg_hid("Assigned keycode %d to HID usage code %x\n",
  156. usage->code, usage->hid);
  157. /*
  158. * Set the keybit for the old keycode if the old keycode is used
  159. * by another key
  160. */
  161. if (hidinput_find_key(hid, match_keycode, *old_keycode, NULL))
  162. set_bit(*old_keycode, dev->keybit);
  163. return 0;
  164. }
  165. return -EINVAL;
  166. }
  167. /**
  168. * hidinput_calc_abs_res - calculate an absolute axis resolution
  169. * @field: the HID report field to calculate resolution for
  170. * @code: axis code
  171. *
  172. * The formula is:
  173. * (logical_maximum - logical_minimum)
  174. * resolution = ----------------------------------------------------------
  175. * (physical_maximum - physical_minimum) * 10 ^ unit_exponent
  176. *
  177. * as seen in the HID specification v1.11 6.2.2.7 Global Items.
  178. *
  179. * Only exponent 1 length units are processed. Centimeters and inches are
  180. * converted to millimeters. Degrees are converted to radians.
  181. */
  182. __s32 hidinput_calc_abs_res(const struct hid_field *field, __u16 code)
  183. {
  184. __s32 unit_exponent = field->unit_exponent;
  185. __s32 logical_extents = field->logical_maximum -
  186. field->logical_minimum;
  187. __s32 physical_extents = field->physical_maximum -
  188. field->physical_minimum;
  189. __s32 prev;
  190. /* Check if the extents are sane */
  191. if (logical_extents <= 0 || physical_extents <= 0)
  192. return 0;
  193. /*
  194. * Verify and convert units.
  195. * See HID specification v1.11 6.2.2.7 Global Items for unit decoding
  196. */
  197. switch (code) {
  198. case ABS_X:
  199. case ABS_Y:
  200. case ABS_Z:
  201. case ABS_MT_POSITION_X:
  202. case ABS_MT_POSITION_Y:
  203. case ABS_MT_TOOL_X:
  204. case ABS_MT_TOOL_Y:
  205. case ABS_MT_TOUCH_MAJOR:
  206. case ABS_MT_TOUCH_MINOR:
  207. if (field->unit == 0x11) { /* If centimeters */
  208. /* Convert to millimeters */
  209. unit_exponent += 1;
  210. } else if (field->unit == 0x13) { /* If inches */
  211. /* Convert to millimeters */
  212. prev = physical_extents;
  213. physical_extents *= 254;
  214. if (physical_extents < prev)
  215. return 0;
  216. unit_exponent -= 1;
  217. } else {
  218. return 0;
  219. }
  220. break;
  221. case ABS_RX:
  222. case ABS_RY:
  223. case ABS_RZ:
  224. case ABS_TILT_X:
  225. case ABS_TILT_Y:
  226. if (field->unit == 0x14) { /* If degrees */
  227. /* Convert to radians */
  228. prev = logical_extents;
  229. logical_extents *= 573;
  230. if (logical_extents < prev)
  231. return 0;
  232. unit_exponent += 1;
  233. } else if (field->unit != 0x12) { /* If not radians */
  234. return 0;
  235. }
  236. break;
  237. default:
  238. return 0;
  239. }
  240. /* Apply negative unit exponent */
  241. for (; unit_exponent < 0; unit_exponent++) {
  242. prev = logical_extents;
  243. logical_extents *= 10;
  244. if (logical_extents < prev)
  245. return 0;
  246. }
  247. /* Apply positive unit exponent */
  248. for (; unit_exponent > 0; unit_exponent--) {
  249. prev = physical_extents;
  250. physical_extents *= 10;
  251. if (physical_extents < prev)
  252. return 0;
  253. }
  254. /* Calculate resolution */
  255. return DIV_ROUND_CLOSEST(logical_extents, physical_extents);
  256. }
  257. EXPORT_SYMBOL_GPL(hidinput_calc_abs_res);
  258. #ifdef CONFIG_HID_BATTERY_STRENGTH
  259. static enum power_supply_property hidinput_battery_props[] = {
  260. POWER_SUPPLY_PROP_PRESENT,
  261. POWER_SUPPLY_PROP_ONLINE,
  262. POWER_SUPPLY_PROP_CAPACITY,
  263. POWER_SUPPLY_PROP_MODEL_NAME,
  264. POWER_SUPPLY_PROP_STATUS,
  265. POWER_SUPPLY_PROP_SCOPE,
  266. };
  267. #define HID_BATTERY_QUIRK_PERCENT (1 << 0) /* always reports percent */
  268. #define HID_BATTERY_QUIRK_FEATURE (1 << 1) /* ask for feature report */
  269. static const struct hid_device_id hid_battery_quirks[] = {
  270. { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE,
  271. USB_DEVICE_ID_APPLE_ALU_WIRELESS_2009_ISO),
  272. HID_BATTERY_QUIRK_PERCENT | HID_BATTERY_QUIRK_FEATURE },
  273. { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE,
  274. USB_DEVICE_ID_APPLE_ALU_WIRELESS_2011_ANSI),
  275. HID_BATTERY_QUIRK_PERCENT | HID_BATTERY_QUIRK_FEATURE },
  276. { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE,
  277. USB_DEVICE_ID_APPLE_ALU_WIRELESS_2011_ISO),
  278. HID_BATTERY_QUIRK_PERCENT | HID_BATTERY_QUIRK_FEATURE },
  279. { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE,
  280. USB_DEVICE_ID_APPLE_ALU_WIRELESS_ANSI),
  281. HID_BATTERY_QUIRK_PERCENT | HID_BATTERY_QUIRK_FEATURE },
  282. {}
  283. };
  284. static unsigned find_battery_quirk(struct hid_device *hdev)
  285. {
  286. unsigned quirks = 0;
  287. const struct hid_device_id *match;
  288. match = hid_match_id(hdev, hid_battery_quirks);
  289. if (match != NULL)
  290. quirks = match->driver_data;
  291. return quirks;
  292. }
  293. static int hidinput_get_battery_property(struct power_supply *psy,
  294. enum power_supply_property prop,
  295. union power_supply_propval *val)
  296. {
  297. struct hid_device *dev = container_of(psy, struct hid_device, battery);
  298. int ret = 0;
  299. __u8 *buf;
  300. switch (prop) {
  301. case POWER_SUPPLY_PROP_PRESENT:
  302. case POWER_SUPPLY_PROP_ONLINE:
  303. val->intval = 1;
  304. break;
  305. case POWER_SUPPLY_PROP_CAPACITY:
  306. buf = kmalloc(2 * sizeof(__u8), GFP_KERNEL);
  307. if (!buf) {
  308. ret = -ENOMEM;
  309. break;
  310. }
  311. ret = hid_hw_raw_request(dev, dev->battery_report_id, buf, 2,
  312. dev->battery_report_type,
  313. HID_REQ_GET_REPORT);
  314. if (ret != 2) {
  315. ret = -ENODATA;
  316. kfree(buf);
  317. break;
  318. }
  319. ret = 0;
  320. if (dev->battery_min < dev->battery_max &&
  321. buf[1] >= dev->battery_min &&
  322. buf[1] <= dev->battery_max)
  323. val->intval = (100 * (buf[1] - dev->battery_min)) /
  324. (dev->battery_max - dev->battery_min);
  325. kfree(buf);
  326. break;
  327. case POWER_SUPPLY_PROP_MODEL_NAME:
  328. val->strval = dev->name;
  329. break;
  330. case POWER_SUPPLY_PROP_STATUS:
  331. val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
  332. break;
  333. case POWER_SUPPLY_PROP_SCOPE:
  334. val->intval = POWER_SUPPLY_SCOPE_DEVICE;
  335. break;
  336. default:
  337. ret = -EINVAL;
  338. break;
  339. }
  340. return ret;
  341. }
  342. static bool hidinput_setup_battery(struct hid_device *dev, unsigned report_type, struct hid_field *field)
  343. {
  344. struct power_supply *battery = &dev->battery;
  345. int ret;
  346. unsigned quirks;
  347. s32 min, max;
  348. if (field->usage->hid != HID_DC_BATTERYSTRENGTH)
  349. return false; /* no match */
  350. if (battery->name != NULL)
  351. goto out; /* already initialized? */
  352. battery->name = kasprintf(GFP_KERNEL, "hid-%s-battery", dev->uniq);
  353. if (battery->name == NULL)
  354. goto out;
  355. battery->type = POWER_SUPPLY_TYPE_BATTERY;
  356. battery->properties = hidinput_battery_props;
  357. battery->num_properties = ARRAY_SIZE(hidinput_battery_props);
  358. battery->use_for_apm = 0;
  359. battery->get_property = hidinput_get_battery_property;
  360. quirks = find_battery_quirk(dev);
  361. hid_dbg(dev, "device %x:%x:%x %d quirks %d\n",
  362. dev->bus, dev->vendor, dev->product, dev->version, quirks);
  363. min = field->logical_minimum;
  364. max = field->logical_maximum;
  365. if (quirks & HID_BATTERY_QUIRK_PERCENT) {
  366. min = 0;
  367. max = 100;
  368. }
  369. if (quirks & HID_BATTERY_QUIRK_FEATURE)
  370. report_type = HID_FEATURE_REPORT;
  371. dev->battery_min = min;
  372. dev->battery_max = max;
  373. dev->battery_report_type = report_type;
  374. dev->battery_report_id = field->report->id;
  375. ret = power_supply_register(&dev->dev, battery);
  376. if (ret != 0) {
  377. hid_warn(dev, "can't register power supply: %d\n", ret);
  378. kfree(battery->name);
  379. battery->name = NULL;
  380. }
  381. power_supply_powers(battery, &dev->dev);
  382. out:
  383. return true;
  384. }
  385. static void hidinput_cleanup_battery(struct hid_device *dev)
  386. {
  387. if (!dev->battery.name)
  388. return;
  389. power_supply_unregister(&dev->battery);
  390. kfree(dev->battery.name);
  391. dev->battery.name = NULL;
  392. }
  393. #else /* !CONFIG_HID_BATTERY_STRENGTH */
  394. static bool hidinput_setup_battery(struct hid_device *dev, unsigned report_type,
  395. struct hid_field *field)
  396. {
  397. return false;
  398. }
  399. static void hidinput_cleanup_battery(struct hid_device *dev)
  400. {
  401. }
  402. #endif /* CONFIG_HID_BATTERY_STRENGTH */
  403. static void hidinput_configure_usage(struct hid_input *hidinput, struct hid_field *field,
  404. struct hid_usage *usage)
  405. {
  406. struct input_dev *input = hidinput->input;
  407. struct hid_device *device = input_get_drvdata(input);
  408. int max = 0, code;
  409. unsigned long *bit = NULL;
  410. field->hidinput = hidinput;
  411. if (field->flags & HID_MAIN_ITEM_CONSTANT)
  412. goto ignore;
  413. /* Ignore if report count is out of bounds. */
  414. if (field->report_count < 1)
  415. goto ignore;
  416. /* only LED usages are supported in output fields */
  417. if (field->report_type == HID_OUTPUT_REPORT &&
  418. (usage->hid & HID_USAGE_PAGE) != HID_UP_LED) {
  419. goto ignore;
  420. }
  421. if (device->driver->input_mapping) {
  422. int ret = device->driver->input_mapping(device, hidinput, field,
  423. usage, &bit, &max);
  424. if (ret > 0)
  425. goto mapped;
  426. if (ret < 0)
  427. goto ignore;
  428. }
  429. switch (usage->hid & HID_USAGE_PAGE) {
  430. case HID_UP_UNDEFINED:
  431. goto ignore;
  432. case HID_UP_KEYBOARD:
  433. set_bit(EV_REP, input->evbit);
  434. if ((usage->hid & HID_USAGE) < 256) {
  435. if (!hid_keyboard[usage->hid & HID_USAGE]) goto ignore;
  436. map_key_clear(hid_keyboard[usage->hid & HID_USAGE]);
  437. } else
  438. map_key(KEY_UNKNOWN);
  439. break;
  440. case HID_UP_BUTTON:
  441. code = ((usage->hid - 1) & HID_USAGE);
  442. switch (field->application) {
  443. case HID_GD_MOUSE:
  444. case HID_GD_POINTER: code += BTN_MOUSE; break;
  445. case HID_GD_JOYSTICK:
  446. if (code <= 0xf)
  447. code += BTN_JOYSTICK;
  448. else
  449. code += BTN_TRIGGER_HAPPY - 0x10;
  450. break;
  451. case HID_GD_GAMEPAD:
  452. if (code <= 0xf)
  453. code += BTN_GAMEPAD;
  454. else
  455. code += BTN_TRIGGER_HAPPY - 0x10;
  456. break;
  457. default:
  458. switch (field->physical) {
  459. case HID_GD_MOUSE:
  460. case HID_GD_POINTER: code += BTN_MOUSE; break;
  461. case HID_GD_JOYSTICK: code += BTN_JOYSTICK; break;
  462. case HID_GD_GAMEPAD: code += BTN_GAMEPAD; break;
  463. default: code += BTN_MISC;
  464. }
  465. }
  466. map_key(code);
  467. break;
  468. case HID_UP_SIMULATION:
  469. switch (usage->hid & 0xffff) {
  470. case 0xba: map_abs(ABS_RUDDER); break;
  471. case 0xbb: map_abs(ABS_THROTTLE); break;
  472. case 0xc4: map_abs(ABS_GAS); break;
  473. case 0xc5: map_abs(ABS_BRAKE); break;
  474. case 0xc8: map_abs(ABS_WHEEL); break;
  475. default: goto ignore;
  476. }
  477. break;
  478. case HID_UP_GENDESK:
  479. if ((usage->hid & 0xf0) == 0x80) { /* SystemControl */
  480. switch (usage->hid & 0xf) {
  481. case 0x1: map_key_clear(KEY_POWER); break;
  482. case 0x2: map_key_clear(KEY_SLEEP); break;
  483. case 0x3: map_key_clear(KEY_WAKEUP); break;
  484. case 0x4: map_key_clear(KEY_CONTEXT_MENU); break;
  485. case 0x5: map_key_clear(KEY_MENU); break;
  486. case 0x6: map_key_clear(KEY_PROG1); break;
  487. case 0x7: map_key_clear(KEY_HELP); break;
  488. case 0x8: map_key_clear(KEY_EXIT); break;
  489. case 0x9: map_key_clear(KEY_SELECT); break;
  490. case 0xa: map_key_clear(KEY_RIGHT); break;
  491. case 0xb: map_key_clear(KEY_LEFT); break;
  492. case 0xc: map_key_clear(KEY_UP); break;
  493. case 0xd: map_key_clear(KEY_DOWN); break;
  494. case 0xe: map_key_clear(KEY_POWER2); break;
  495. case 0xf: map_key_clear(KEY_RESTART); break;
  496. default: goto unknown;
  497. }
  498. break;
  499. }
  500. if ((usage->hid & 0xf0) == 0x90) { /* D-pad */
  501. switch (usage->hid) {
  502. case HID_GD_UP: usage->hat_dir = 1; break;
  503. case HID_GD_DOWN: usage->hat_dir = 5; break;
  504. case HID_GD_RIGHT: usage->hat_dir = 3; break;
  505. case HID_GD_LEFT: usage->hat_dir = 7; break;
  506. default: goto unknown;
  507. }
  508. if (field->dpad) {
  509. map_abs(field->dpad);
  510. goto ignore;
  511. }
  512. map_abs(ABS_HAT0X);
  513. break;
  514. }
  515. switch (usage->hid) {
  516. /* These usage IDs map directly to the usage codes. */
  517. case HID_GD_X: case HID_GD_Y: case HID_GD_Z:
  518. case HID_GD_RX: case HID_GD_RY: case HID_GD_RZ:
  519. if (field->flags & HID_MAIN_ITEM_RELATIVE)
  520. map_rel(usage->hid & 0xf);
  521. else
  522. map_abs_clear(usage->hid & 0xf);
  523. break;
  524. case HID_GD_SLIDER: case HID_GD_DIAL: case HID_GD_WHEEL:
  525. if (field->flags & HID_MAIN_ITEM_RELATIVE)
  526. map_rel(usage->hid & 0xf);
  527. else
  528. map_abs(usage->hid & 0xf);
  529. break;
  530. case HID_GD_HATSWITCH:
  531. usage->hat_min = field->logical_minimum;
  532. usage->hat_max = field->logical_maximum;
  533. map_abs(ABS_HAT0X);
  534. break;
  535. case HID_GD_START: map_key_clear(BTN_START); break;
  536. case HID_GD_SELECT: map_key_clear(BTN_SELECT); break;
  537. default: goto unknown;
  538. }
  539. break;
  540. case HID_UP_LED:
  541. switch (usage->hid & 0xffff) { /* HID-Value: */
  542. case 0x01: map_led (LED_NUML); break; /* "Num Lock" */
  543. case 0x02: map_led (LED_CAPSL); break; /* "Caps Lock" */
  544. case 0x03: map_led (LED_SCROLLL); break; /* "Scroll Lock" */
  545. case 0x04: map_led (LED_COMPOSE); break; /* "Compose" */
  546. case 0x05: map_led (LED_KANA); break; /* "Kana" */
  547. case 0x27: map_led (LED_SLEEP); break; /* "Stand-By" */
  548. case 0x4c: map_led (LED_SUSPEND); break; /* "System Suspend" */
  549. case 0x09: map_led (LED_MUTE); break; /* "Mute" */
  550. case 0x4b: map_led (LED_MISC); break; /* "Generic Indicator" */
  551. case 0x19: map_led (LED_MAIL); break; /* "Message Waiting" */
  552. case 0x4d: map_led (LED_CHARGING); break; /* "External Power Connected" */
  553. default: goto ignore;
  554. }
  555. break;
  556. case HID_UP_DIGITIZER:
  557. switch (usage->hid & 0xff) {
  558. case 0x00: /* Undefined */
  559. goto ignore;
  560. case 0x30: /* TipPressure */
  561. if (!test_bit(BTN_TOUCH, input->keybit)) {
  562. device->quirks |= HID_QUIRK_NOTOUCH;
  563. set_bit(EV_KEY, input->evbit);
  564. set_bit(BTN_TOUCH, input->keybit);
  565. }
  566. map_abs_clear(ABS_PRESSURE);
  567. break;
  568. case 0x32: /* InRange */
  569. switch (field->physical & 0xff) {
  570. case 0x21: map_key(BTN_TOOL_MOUSE); break;
  571. case 0x22: map_key(BTN_TOOL_FINGER); break;
  572. default: map_key(BTN_TOOL_PEN); break;
  573. }
  574. break;
  575. case 0x3c: /* Invert */
  576. map_key_clear(BTN_TOOL_RUBBER);
  577. break;
  578. case 0x3d: /* X Tilt */
  579. map_abs_clear(ABS_TILT_X);
  580. break;
  581. case 0x3e: /* Y Tilt */
  582. map_abs_clear(ABS_TILT_Y);
  583. break;
  584. case 0x33: /* Touch */
  585. case 0x42: /* TipSwitch */
  586. case 0x43: /* TipSwitch2 */
  587. device->quirks &= ~HID_QUIRK_NOTOUCH;
  588. map_key_clear(BTN_TOUCH);
  589. break;
  590. case 0x44: /* BarrelSwitch */
  591. map_key_clear(BTN_STYLUS);
  592. break;
  593. case 0x46: /* TabletPick */
  594. case 0x5a: /* SecondaryBarrelSwitch */
  595. map_key_clear(BTN_STYLUS2);
  596. break;
  597. case 0x5b: /* TransducerSerialNumber */
  598. usage->type = EV_MSC;
  599. usage->code = MSC_SERIAL;
  600. bit = input->mscbit;
  601. max = MSC_MAX;
  602. break;
  603. default: goto unknown;
  604. }
  605. break;
  606. case HID_UP_CONSUMER: /* USB HUT v1.12, pages 75-84 */
  607. switch (usage->hid & HID_USAGE) {
  608. case 0x000: goto ignore;
  609. case 0x030: map_key_clear(KEY_POWER); break;
  610. case 0x031: map_key_clear(KEY_RESTART); break;
  611. case 0x032: map_key_clear(KEY_SLEEP); break;
  612. case 0x034: map_key_clear(KEY_SLEEP); break;
  613. case 0x035: map_key_clear(KEY_KBDILLUMTOGGLE); break;
  614. case 0x036: map_key_clear(BTN_MISC); break;
  615. case 0x040: map_key_clear(KEY_MENU); break; /* Menu */
  616. case 0x041: map_key_clear(KEY_SELECT); break; /* Menu Pick */
  617. case 0x042: map_key_clear(KEY_UP); break; /* Menu Up */
  618. case 0x043: map_key_clear(KEY_DOWN); break; /* Menu Down */
  619. case 0x044: map_key_clear(KEY_LEFT); break; /* Menu Left */
  620. case 0x045: map_key_clear(KEY_RIGHT); break; /* Menu Right */
  621. case 0x046: map_key_clear(KEY_ESC); break; /* Menu Escape */
  622. case 0x047: map_key_clear(KEY_KPPLUS); break; /* Menu Value Increase */
  623. case 0x048: map_key_clear(KEY_KPMINUS); break; /* Menu Value Decrease */
  624. case 0x060: map_key_clear(KEY_INFO); break; /* Data On Screen */
  625. case 0x061: map_key_clear(KEY_SUBTITLE); break; /* Closed Caption */
  626. case 0x063: map_key_clear(KEY_VCR); break; /* VCR/TV */
  627. case 0x065: map_key_clear(KEY_CAMERA); break; /* Snapshot */
  628. case 0x069: map_key_clear(KEY_RED); break;
  629. case 0x06a: map_key_clear(KEY_GREEN); break;
  630. case 0x06b: map_key_clear(KEY_BLUE); break;
  631. case 0x06c: map_key_clear(KEY_YELLOW); break;
  632. case 0x06d: map_key_clear(KEY_ZOOM); break;
  633. case 0x06f: map_key_clear(KEY_BRIGHTNESSUP); break;
  634. case 0x070: map_key_clear(KEY_BRIGHTNESSDOWN); break;
  635. case 0x072: map_key_clear(KEY_BRIGHTNESS_TOGGLE); break;
  636. case 0x073: map_key_clear(KEY_BRIGHTNESS_MIN); break;
  637. case 0x074: map_key_clear(KEY_BRIGHTNESS_MAX); break;
  638. case 0x075: map_key_clear(KEY_BRIGHTNESS_AUTO); break;
  639. case 0x082: map_key_clear(KEY_VIDEO_NEXT); break;
  640. case 0x083: map_key_clear(KEY_LAST); break;
  641. case 0x084: map_key_clear(KEY_ENTER); break;
  642. case 0x088: map_key_clear(KEY_PC); break;
  643. case 0x089: map_key_clear(KEY_TV); break;
  644. case 0x08a: map_key_clear(KEY_WWW); break;
  645. case 0x08b: map_key_clear(KEY_DVD); break;
  646. case 0x08c: map_key_clear(KEY_PHONE); break;
  647. case 0x08d: map_key_clear(KEY_PROGRAM); break;
  648. case 0x08e: map_key_clear(KEY_VIDEOPHONE); break;
  649. case 0x08f: map_key_clear(KEY_GAMES); break;
  650. case 0x090: map_key_clear(KEY_MEMO); break;
  651. case 0x091: map_key_clear(KEY_CD); break;
  652. case 0x092: map_key_clear(KEY_VCR); break;
  653. case 0x093: map_key_clear(KEY_TUNER); break;
  654. case 0x094: map_key_clear(KEY_EXIT); break;
  655. case 0x095: map_key_clear(KEY_HELP); break;
  656. case 0x096: map_key_clear(KEY_TAPE); break;
  657. case 0x097: map_key_clear(KEY_TV2); break;
  658. case 0x098: map_key_clear(KEY_SAT); break;
  659. case 0x09a: map_key_clear(KEY_PVR); break;
  660. case 0x09c: map_key_clear(KEY_CHANNELUP); break;
  661. case 0x09d: map_key_clear(KEY_CHANNELDOWN); break;
  662. case 0x0a0: map_key_clear(KEY_VCR2); break;
  663. case 0x0b0: map_key_clear(KEY_PLAY); break;
  664. case 0x0b1: map_key_clear(KEY_PAUSE); break;
  665. case 0x0b2: map_key_clear(KEY_RECORD); break;
  666. case 0x0b3: map_key_clear(KEY_FASTFORWARD); break;
  667. case 0x0b4: map_key_clear(KEY_REWIND); break;
  668. case 0x0b5: map_key_clear(KEY_NEXTSONG); break;
  669. case 0x0b6: map_key_clear(KEY_PREVIOUSSONG); break;
  670. case 0x0b7: map_key_clear(KEY_STOPCD); break;
  671. case 0x0b8: map_key_clear(KEY_EJECTCD); break;
  672. case 0x0bc: map_key_clear(KEY_MEDIA_REPEAT); break;
  673. case 0x0b9: map_key_clear(KEY_SHUFFLE); break;
  674. case 0x0bf: map_key_clear(KEY_SLOW); break;
  675. case 0x0cd: map_key_clear(KEY_PLAYPAUSE); break;
  676. case 0x0cf: map_key_clear(KEY_VOICECOMMAND); break;
  677. case 0x0e0: map_abs_clear(ABS_VOLUME); break;
  678. case 0x0e2: map_key_clear(KEY_MUTE); break;
  679. case 0x0e5: map_key_clear(KEY_BASSBOOST); break;
  680. case 0x0e9: map_key_clear(KEY_VOLUMEUP); break;
  681. case 0x0ea: map_key_clear(KEY_VOLUMEDOWN); break;
  682. case 0x0f5: map_key_clear(KEY_SLOW); break;
  683. case 0x181: map_key_clear(KEY_BUTTONCONFIG); break;
  684. case 0x182: map_key_clear(KEY_BOOKMARKS); break;
  685. case 0x183: map_key_clear(KEY_CONFIG); break;
  686. case 0x184: map_key_clear(KEY_WORDPROCESSOR); break;
  687. case 0x185: map_key_clear(KEY_EDITOR); break;
  688. case 0x186: map_key_clear(KEY_SPREADSHEET); break;
  689. case 0x187: map_key_clear(KEY_GRAPHICSEDITOR); break;
  690. case 0x188: map_key_clear(KEY_PRESENTATION); break;
  691. case 0x189: map_key_clear(KEY_DATABASE); break;
  692. case 0x18a: map_key_clear(KEY_MAIL); break;
  693. case 0x18b: map_key_clear(KEY_NEWS); break;
  694. case 0x18c: map_key_clear(KEY_VOICEMAIL); break;
  695. case 0x18d: map_key_clear(KEY_ADDRESSBOOK); break;
  696. case 0x18e: map_key_clear(KEY_CALENDAR); break;
  697. case 0x18f: map_key_clear(KEY_TASKMANAGER); break;
  698. case 0x190: map_key_clear(KEY_JOURNAL); break;
  699. case 0x191: map_key_clear(KEY_FINANCE); break;
  700. case 0x192: map_key_clear(KEY_CALC); break;
  701. case 0x193: map_key_clear(KEY_PLAYER); break;
  702. case 0x194: map_key_clear(KEY_FILE); break;
  703. case 0x196: map_key_clear(KEY_WWW); break;
  704. case 0x199: map_key_clear(KEY_CHAT); break;
  705. case 0x19c: map_key_clear(KEY_LOGOFF); break;
  706. case 0x19e: map_key_clear(KEY_COFFEE); break;
  707. case 0x19f: map_key_clear(KEY_CONTROLPANEL); break;
  708. case 0x1a2: map_key_clear(KEY_APPSELECT); break;
  709. case 0x1a3: map_key_clear(KEY_NEXT); break;
  710. case 0x1a4: map_key_clear(KEY_PREVIOUS); break;
  711. case 0x1a6: map_key_clear(KEY_HELP); break;
  712. case 0x1a7: map_key_clear(KEY_DOCUMENTS); break;
  713. case 0x1ab: map_key_clear(KEY_SPELLCHECK); break;
  714. case 0x1ae: map_key_clear(KEY_KEYBOARD); break;
  715. case 0x1b1: map_key_clear(KEY_SCREENSAVER); break;
  716. case 0x1b4: map_key_clear(KEY_FILE); break;
  717. case 0x1b6: map_key_clear(KEY_IMAGES); break;
  718. case 0x1b7: map_key_clear(KEY_AUDIO); break;
  719. case 0x1b8: map_key_clear(KEY_VIDEO); break;
  720. case 0x1bc: map_key_clear(KEY_MESSENGER); break;
  721. case 0x1bd: map_key_clear(KEY_INFO); break;
  722. case 0x201: map_key_clear(KEY_NEW); break;
  723. case 0x202: map_key_clear(KEY_OPEN); break;
  724. case 0x203: map_key_clear(KEY_CLOSE); break;
  725. case 0x204: map_key_clear(KEY_EXIT); break;
  726. case 0x207: map_key_clear(KEY_SAVE); break;
  727. case 0x208: map_key_clear(KEY_PRINT); break;
  728. case 0x209: map_key_clear(KEY_PROPS); break;
  729. case 0x21a: map_key_clear(KEY_UNDO); break;
  730. case 0x21b: map_key_clear(KEY_COPY); break;
  731. case 0x21c: map_key_clear(KEY_CUT); break;
  732. case 0x21d: map_key_clear(KEY_PASTE); break;
  733. case 0x21f: map_key_clear(KEY_FIND); break;
  734. case 0x221: map_key_clear(KEY_SEARCH); break;
  735. case 0x222: map_key_clear(KEY_GOTO); break;
  736. case 0x223: map_key_clear(KEY_HOMEPAGE); break;
  737. case 0x224: map_key_clear(KEY_BACK); break;
  738. case 0x225: map_key_clear(KEY_FORWARD); break;
  739. case 0x226: map_key_clear(KEY_STOP); break;
  740. case 0x227: map_key_clear(KEY_REFRESH); break;
  741. case 0x22a: map_key_clear(KEY_BOOKMARKS); break;
  742. case 0x22d: map_key_clear(KEY_ZOOMIN); break;
  743. case 0x22e: map_key_clear(KEY_ZOOMOUT); break;
  744. case 0x22f: map_key_clear(KEY_ZOOMRESET); break;
  745. case 0x233: map_key_clear(KEY_SCROLLUP); break;
  746. case 0x234: map_key_clear(KEY_SCROLLDOWN); break;
  747. case 0x238: map_rel(REL_HWHEEL); break;
  748. case 0x23d: map_key_clear(KEY_EDIT); break;
  749. case 0x25f: map_key_clear(KEY_CANCEL); break;
  750. case 0x269: map_key_clear(KEY_INSERT); break;
  751. case 0x26a: map_key_clear(KEY_DELETE); break;
  752. case 0x279: map_key_clear(KEY_REDO); break;
  753. case 0x289: map_key_clear(KEY_REPLY); break;
  754. case 0x28b: map_key_clear(KEY_FORWARDMAIL); break;
  755. case 0x28c: map_key_clear(KEY_SEND); break;
  756. case 0x2c7: map_key_clear(KEY_KBDINPUTASSIST_PREV); break;
  757. case 0x2c8: map_key_clear(KEY_KBDINPUTASSIST_NEXT); break;
  758. case 0x2c9: map_key_clear(KEY_KBDINPUTASSIST_PREVGROUP); break;
  759. case 0x2ca: map_key_clear(KEY_KBDINPUTASSIST_NEXTGROUP); break;
  760. case 0x2cb: map_key_clear(KEY_KBDINPUTASSIST_ACCEPT); break;
  761. case 0x2cc: map_key_clear(KEY_KBDINPUTASSIST_CANCEL); break;
  762. default: map_key_clear(KEY_UNKNOWN);
  763. }
  764. break;
  765. case HID_UP_GENDEVCTRLS:
  766. if (hidinput_setup_battery(device, HID_INPUT_REPORT, field))
  767. goto ignore;
  768. else
  769. goto unknown;
  770. break;
  771. case HID_UP_HPVENDOR: /* Reported on a Dutch layout HP5308 */
  772. set_bit(EV_REP, input->evbit);
  773. switch (usage->hid & HID_USAGE) {
  774. case 0x021: map_key_clear(KEY_PRINT); break;
  775. case 0x070: map_key_clear(KEY_HP); break;
  776. case 0x071: map_key_clear(KEY_CAMERA); break;
  777. case 0x072: map_key_clear(KEY_SOUND); break;
  778. case 0x073: map_key_clear(KEY_QUESTION); break;
  779. case 0x080: map_key_clear(KEY_EMAIL); break;
  780. case 0x081: map_key_clear(KEY_CHAT); break;
  781. case 0x082: map_key_clear(KEY_SEARCH); break;
  782. case 0x083: map_key_clear(KEY_CONNECT); break;
  783. case 0x084: map_key_clear(KEY_FINANCE); break;
  784. case 0x085: map_key_clear(KEY_SPORT); break;
  785. case 0x086: map_key_clear(KEY_SHOP); break;
  786. default: goto ignore;
  787. }
  788. break;
  789. case HID_UP_HPVENDOR2:
  790. set_bit(EV_REP, input->evbit);
  791. switch (usage->hid & HID_USAGE) {
  792. case 0x003: map_key_clear(KEY_BRIGHTNESSDOWN); break;
  793. case 0x004: map_key_clear(KEY_BRIGHTNESSUP); break;
  794. default: goto ignore;
  795. }
  796. break;
  797. case HID_UP_MSVENDOR:
  798. goto ignore;
  799. case HID_UP_CUSTOM: /* Reported on Logitech and Apple USB keyboards */
  800. set_bit(EV_REP, input->evbit);
  801. goto ignore;
  802. case HID_UP_LOGIVENDOR:
  803. goto ignore;
  804. case HID_UP_PID:
  805. switch (usage->hid & HID_USAGE) {
  806. case 0xa4: map_key_clear(BTN_DEAD); break;
  807. default: goto ignore;
  808. }
  809. break;
  810. default:
  811. unknown:
  812. if (field->report_size == 1) {
  813. if (field->report->type == HID_OUTPUT_REPORT) {
  814. map_led(LED_MISC);
  815. break;
  816. }
  817. map_key(BTN_MISC);
  818. break;
  819. }
  820. if (field->flags & HID_MAIN_ITEM_RELATIVE) {
  821. map_rel(REL_MISC);
  822. break;
  823. }
  824. map_abs(ABS_MISC);
  825. break;
  826. }
  827. mapped:
  828. if (device->driver->input_mapped && device->driver->input_mapped(device,
  829. hidinput, field, usage, &bit, &max) < 0)
  830. goto ignore;
  831. set_bit(usage->type, input->evbit);
  832. while (usage->code <= max && test_and_set_bit(usage->code, bit))
  833. usage->code = find_next_zero_bit(bit, max + 1, usage->code);
  834. if (usage->code > max)
  835. goto ignore;
  836. if (usage->type == EV_ABS) {
  837. int a = field->logical_minimum;
  838. int b = field->logical_maximum;
  839. if ((device->quirks & HID_QUIRK_BADPAD) && (usage->code == ABS_X || usage->code == ABS_Y)) {
  840. a = field->logical_minimum = 0;
  841. b = field->logical_maximum = 255;
  842. }
  843. if (field->application == HID_GD_GAMEPAD || field->application == HID_GD_JOYSTICK)
  844. input_set_abs_params(input, usage->code, a, b, (b - a) >> 8, (b - a) >> 4);
  845. else input_set_abs_params(input, usage->code, a, b, 0, 0);
  846. input_abs_set_res(input, usage->code,
  847. hidinput_calc_abs_res(field, usage->code));
  848. /* use a larger default input buffer for MT devices */
  849. if (usage->code == ABS_MT_POSITION_X && input->hint_events_per_packet == 0)
  850. input_set_events_per_packet(input, 60);
  851. }
  852. if (usage->type == EV_ABS &&
  853. (usage->hat_min < usage->hat_max || usage->hat_dir)) {
  854. int i;
  855. for (i = usage->code; i < usage->code + 2 && i <= max; i++) {
  856. input_set_abs_params(input, i, -1, 1, 0, 0);
  857. set_bit(i, input->absbit);
  858. }
  859. if (usage->hat_dir && !field->dpad)
  860. field->dpad = usage->code;
  861. }
  862. /* for those devices which produce Consumer volume usage as relative,
  863. * we emulate pressing volumeup/volumedown appropriate number of times
  864. * in hidinput_hid_event()
  865. */
  866. if ((usage->type == EV_ABS) && (field->flags & HID_MAIN_ITEM_RELATIVE) &&
  867. (usage->code == ABS_VOLUME)) {
  868. set_bit(KEY_VOLUMEUP, input->keybit);
  869. set_bit(KEY_VOLUMEDOWN, input->keybit);
  870. }
  871. if (usage->type == EV_KEY) {
  872. set_bit(EV_MSC, input->evbit);
  873. set_bit(MSC_SCAN, input->mscbit);
  874. }
  875. ignore:
  876. return;
  877. }
  878. void hidinput_hid_event(struct hid_device *hid, struct hid_field *field, struct hid_usage *usage, __s32 value)
  879. {
  880. struct input_dev *input;
  881. unsigned *quirks = &hid->quirks;
  882. if (!field->hidinput)
  883. return;
  884. input = field->hidinput->input;
  885. if (!usage->type)
  886. return;
  887. if (usage->hat_min < usage->hat_max || usage->hat_dir) {
  888. int hat_dir = usage->hat_dir;
  889. if (!hat_dir)
  890. hat_dir = (value - usage->hat_min) * 8 / (usage->hat_max - usage->hat_min + 1) + 1;
  891. if (hat_dir < 0 || hat_dir > 8) hat_dir = 0;
  892. input_event(input, usage->type, usage->code , hid_hat_to_axis[hat_dir].x);
  893. input_event(input, usage->type, usage->code + 1, hid_hat_to_axis[hat_dir].y);
  894. return;
  895. }
  896. if (usage->hid == (HID_UP_DIGITIZER | 0x003c)) { /* Invert */
  897. *quirks = value ? (*quirks | HID_QUIRK_INVERT) : (*quirks & ~HID_QUIRK_INVERT);
  898. return;
  899. }
  900. if (usage->hid == (HID_UP_DIGITIZER | 0x0032)) { /* InRange */
  901. if (value) {
  902. input_event(input, usage->type, (*quirks & HID_QUIRK_INVERT) ? BTN_TOOL_RUBBER : usage->code, 1);
  903. return;
  904. }
  905. input_event(input, usage->type, usage->code, 0);
  906. input_event(input, usage->type, BTN_TOOL_RUBBER, 0);
  907. return;
  908. }
  909. if (usage->hid == (HID_UP_DIGITIZER | 0x0030) && (*quirks & HID_QUIRK_NOTOUCH)) { /* Pressure */
  910. int a = field->logical_minimum;
  911. int b = field->logical_maximum;
  912. input_event(input, EV_KEY, BTN_TOUCH, value > a + ((b - a) >> 3));
  913. }
  914. if (usage->hid == (HID_UP_PID | 0x83UL)) { /* Simultaneous Effects Max */
  915. dbg_hid("Maximum Effects - %d\n",value);
  916. return;
  917. }
  918. if (usage->hid == (HID_UP_PID | 0x7fUL)) {
  919. dbg_hid("PID Pool Report\n");
  920. return;
  921. }
  922. if ((usage->type == EV_KEY) && (usage->code == 0)) /* Key 0 is "unassigned", not KEY_UNKNOWN */
  923. return;
  924. if ((usage->type == EV_ABS) && (field->flags & HID_MAIN_ITEM_RELATIVE) &&
  925. (usage->code == ABS_VOLUME)) {
  926. int count = abs(value);
  927. int direction = value > 0 ? KEY_VOLUMEUP : KEY_VOLUMEDOWN;
  928. int i;
  929. for (i = 0; i < count; i++) {
  930. input_event(input, EV_KEY, direction, 1);
  931. input_sync(input);
  932. input_event(input, EV_KEY, direction, 0);
  933. input_sync(input);
  934. }
  935. return;
  936. }
  937. /*
  938. * Ignore out-of-range values as per HID specification,
  939. * section 5.10 and 6.2.25.
  940. *
  941. * The logical_minimum < logical_maximum check is done so that we
  942. * don't unintentionally discard values sent by devices which
  943. * don't specify logical min and max.
  944. */
  945. if ((field->flags & HID_MAIN_ITEM_VARIABLE) &&
  946. (field->logical_minimum < field->logical_maximum) &&
  947. (value < field->logical_minimum ||
  948. value > field->logical_maximum)) {
  949. dbg_hid("Ignoring out-of-range value %x\n", value);
  950. return;
  951. }
  952. /* report the usage code as scancode if the key status has changed */
  953. if (usage->type == EV_KEY && !!test_bit(usage->code, input->key) != value)
  954. input_event(input, EV_MSC, MSC_SCAN, usage->hid);
  955. input_event(input, usage->type, usage->code, value);
  956. if ((field->flags & HID_MAIN_ITEM_RELATIVE) && (usage->type == EV_KEY))
  957. input_event(input, usage->type, usage->code, 0);
  958. }
  959. void hidinput_report_event(struct hid_device *hid, struct hid_report *report)
  960. {
  961. struct hid_input *hidinput;
  962. if (hid->quirks & HID_QUIRK_NO_INPUT_SYNC)
  963. return;
  964. list_for_each_entry(hidinput, &hid->inputs, list)
  965. input_sync(hidinput->input);
  966. }
  967. EXPORT_SYMBOL_GPL(hidinput_report_event);
  968. int hidinput_find_field(struct hid_device *hid, unsigned int type, unsigned int code, struct hid_field **field)
  969. {
  970. struct hid_report *report;
  971. int i, j;
  972. list_for_each_entry(report, &hid->report_enum[HID_OUTPUT_REPORT].report_list, list) {
  973. for (i = 0; i < report->maxfield; i++) {
  974. *field = report->field[i];
  975. for (j = 0; j < (*field)->maxusage; j++)
  976. if ((*field)->usage[j].type == type && (*field)->usage[j].code == code)
  977. return j;
  978. }
  979. }
  980. return -1;
  981. }
  982. EXPORT_SYMBOL_GPL(hidinput_find_field);
  983. struct hid_field *hidinput_get_led_field(struct hid_device *hid)
  984. {
  985. struct hid_report *report;
  986. struct hid_field *field;
  987. int i, j;
  988. list_for_each_entry(report,
  989. &hid->report_enum[HID_OUTPUT_REPORT].report_list,
  990. list) {
  991. for (i = 0; i < report->maxfield; i++) {
  992. field = report->field[i];
  993. for (j = 0; j < field->maxusage; j++)
  994. if (field->usage[j].type == EV_LED)
  995. return field;
  996. }
  997. }
  998. return NULL;
  999. }
  1000. EXPORT_SYMBOL_GPL(hidinput_get_led_field);
  1001. unsigned int hidinput_count_leds(struct hid_device *hid)
  1002. {
  1003. struct hid_report *report;
  1004. struct hid_field *field;
  1005. int i, j;
  1006. unsigned int count = 0;
  1007. list_for_each_entry(report,
  1008. &hid->report_enum[HID_OUTPUT_REPORT].report_list,
  1009. list) {
  1010. for (i = 0; i < report->maxfield; i++) {
  1011. field = report->field[i];
  1012. for (j = 0; j < field->maxusage; j++)
  1013. if (field->usage[j].type == EV_LED &&
  1014. field->value[j])
  1015. count += 1;
  1016. }
  1017. }
  1018. return count;
  1019. }
  1020. EXPORT_SYMBOL_GPL(hidinput_count_leds);
  1021. static void hidinput_led_worker(struct work_struct *work)
  1022. {
  1023. struct hid_device *hid = container_of(work, struct hid_device,
  1024. led_work);
  1025. struct hid_field *field;
  1026. struct hid_report *report;
  1027. int len, ret;
  1028. __u8 *buf;
  1029. field = hidinput_get_led_field(hid);
  1030. if (!field)
  1031. return;
  1032. /*
  1033. * field->report is accessed unlocked regarding HID core. So there might
  1034. * be another incoming SET-LED request from user-space, which changes
  1035. * the LED state while we assemble our outgoing buffer. However, this
  1036. * doesn't matter as hid_output_report() correctly converts it into a
  1037. * boolean value no matter what information is currently set on the LED
  1038. * field (even garbage). So the remote device will always get a valid
  1039. * request.
  1040. * And in case we send a wrong value, a next led worker is spawned
  1041. * for every SET-LED request so the following worker will send the
  1042. * correct value, guaranteed!
  1043. */
  1044. report = field->report;
  1045. /* use custom SET_REPORT request if possible (asynchronous) */
  1046. if (hid->ll_driver->request)
  1047. return hid->ll_driver->request(hid, report, HID_REQ_SET_REPORT);
  1048. /* fall back to generic raw-output-report */
  1049. len = hid_report_len(report);
  1050. buf = hid_alloc_report_buf(report, GFP_KERNEL);
  1051. if (!buf)
  1052. return;
  1053. hid_output_report(report, buf);
  1054. /* synchronous output report */
  1055. ret = hid_hw_output_report(hid, buf, len);
  1056. if (ret == -ENOSYS)
  1057. hid_hw_raw_request(hid, report->id, buf, len, HID_OUTPUT_REPORT,
  1058. HID_REQ_SET_REPORT);
  1059. kfree(buf);
  1060. }
  1061. static int hidinput_input_event(struct input_dev *dev, unsigned int type,
  1062. unsigned int code, int value)
  1063. {
  1064. struct hid_device *hid = input_get_drvdata(dev);
  1065. struct hid_field *field;
  1066. int offset;
  1067. if (type == EV_FF)
  1068. return input_ff_event(dev, type, code, value);
  1069. if (type != EV_LED)
  1070. return -1;
  1071. if ((offset = hidinput_find_field(hid, type, code, &field)) == -1) {
  1072. hid_warn(dev, "event field not found\n");
  1073. return -1;
  1074. }
  1075. hid_set_field(field, offset, value);
  1076. schedule_work(&hid->led_work);
  1077. return 0;
  1078. }
  1079. static int hidinput_open(struct input_dev *dev)
  1080. {
  1081. struct hid_device *hid = input_get_drvdata(dev);
  1082. return hid_hw_open(hid);
  1083. }
  1084. static void hidinput_close(struct input_dev *dev)
  1085. {
  1086. struct hid_device *hid = input_get_drvdata(dev);
  1087. hid_hw_close(hid);
  1088. }
  1089. static void report_features(struct hid_device *hid)
  1090. {
  1091. struct hid_driver *drv = hid->driver;
  1092. struct hid_report_enum *rep_enum;
  1093. struct hid_report *rep;
  1094. int i, j;
  1095. rep_enum = &hid->report_enum[HID_FEATURE_REPORT];
  1096. list_for_each_entry(rep, &rep_enum->report_list, list)
  1097. for (i = 0; i < rep->maxfield; i++) {
  1098. /* Ignore if report count is out of bounds. */
  1099. if (rep->field[i]->report_count < 1)
  1100. continue;
  1101. for (j = 0; j < rep->field[i]->maxusage; j++) {
  1102. /* Verify if Battery Strength feature is available */
  1103. hidinput_setup_battery(hid, HID_FEATURE_REPORT, rep->field[i]);
  1104. if (drv->feature_mapping)
  1105. drv->feature_mapping(hid, rep->field[i],
  1106. rep->field[i]->usage + j);
  1107. }
  1108. }
  1109. }
  1110. static struct hid_input *hidinput_allocate(struct hid_device *hid)
  1111. {
  1112. struct hid_input *hidinput = kzalloc(sizeof(*hidinput), GFP_KERNEL);
  1113. struct input_dev *input_dev = input_allocate_device();
  1114. if (!hidinput || !input_dev) {
  1115. kfree(hidinput);
  1116. input_free_device(input_dev);
  1117. hid_err(hid, "Out of memory during hid input probe\n");
  1118. return NULL;
  1119. }
  1120. input_set_drvdata(input_dev, hid);
  1121. input_dev->event = hidinput_input_event;
  1122. input_dev->open = hidinput_open;
  1123. input_dev->close = hidinput_close;
  1124. input_dev->setkeycode = hidinput_setkeycode;
  1125. input_dev->getkeycode = hidinput_getkeycode;
  1126. input_dev->name = hid->name;
  1127. input_dev->phys = hid->phys;
  1128. input_dev->uniq = hid->uniq;
  1129. input_dev->id.bustype = hid->bus;
  1130. input_dev->id.vendor = hid->vendor;
  1131. input_dev->id.product = hid->product;
  1132. input_dev->id.version = hid->version;
  1133. input_dev->dev.parent = &hid->dev;
  1134. hidinput->input = input_dev;
  1135. list_add_tail(&hidinput->list, &hid->inputs);
  1136. return hidinput;
  1137. }
  1138. static bool hidinput_has_been_populated(struct hid_input *hidinput)
  1139. {
  1140. int i;
  1141. unsigned long r = 0;
  1142. for (i = 0; i < BITS_TO_LONGS(EV_CNT); i++)
  1143. r |= hidinput->input->evbit[i];
  1144. for (i = 0; i < BITS_TO_LONGS(KEY_CNT); i++)
  1145. r |= hidinput->input->keybit[i];
  1146. for (i = 0; i < BITS_TO_LONGS(REL_CNT); i++)
  1147. r |= hidinput->input->relbit[i];
  1148. for (i = 0; i < BITS_TO_LONGS(ABS_CNT); i++)
  1149. r |= hidinput->input->absbit[i];
  1150. for (i = 0; i < BITS_TO_LONGS(MSC_CNT); i++)
  1151. r |= hidinput->input->mscbit[i];
  1152. for (i = 0; i < BITS_TO_LONGS(LED_CNT); i++)
  1153. r |= hidinput->input->ledbit[i];
  1154. for (i = 0; i < BITS_TO_LONGS(SND_CNT); i++)
  1155. r |= hidinput->input->sndbit[i];
  1156. for (i = 0; i < BITS_TO_LONGS(FF_CNT); i++)
  1157. r |= hidinput->input->ffbit[i];
  1158. for (i = 0; i < BITS_TO_LONGS(SW_CNT); i++)
  1159. r |= hidinput->input->swbit[i];
  1160. return !!r;
  1161. }
  1162. static void hidinput_cleanup_hidinput(struct hid_device *hid,
  1163. struct hid_input *hidinput)
  1164. {
  1165. struct hid_report *report;
  1166. int i, k;
  1167. list_del(&hidinput->list);
  1168. input_free_device(hidinput->input);
  1169. for (k = HID_INPUT_REPORT; k <= HID_OUTPUT_REPORT; k++) {
  1170. if (k == HID_OUTPUT_REPORT &&
  1171. hid->quirks & HID_QUIRK_SKIP_OUTPUT_REPORTS)
  1172. continue;
  1173. list_for_each_entry(report, &hid->report_enum[k].report_list,
  1174. list) {
  1175. for (i = 0; i < report->maxfield; i++)
  1176. if (report->field[i]->hidinput == hidinput)
  1177. report->field[i]->hidinput = NULL;
  1178. }
  1179. }
  1180. kfree(hidinput);
  1181. }
  1182. /*
  1183. * Register the input device; print a message.
  1184. * Configure the input layer interface
  1185. * Read all reports and initialize the absolute field values.
  1186. */
  1187. int hidinput_connect(struct hid_device *hid, unsigned int force)
  1188. {
  1189. struct hid_driver *drv = hid->driver;
  1190. struct hid_report *report;
  1191. struct hid_input *hidinput = NULL;
  1192. int i, j, k;
  1193. INIT_LIST_HEAD(&hid->inputs);
  1194. INIT_WORK(&hid->led_work, hidinput_led_worker);
  1195. if (!force) {
  1196. for (i = 0; i < hid->maxcollection; i++) {
  1197. struct hid_collection *col = &hid->collection[i];
  1198. if (col->type == HID_COLLECTION_APPLICATION ||
  1199. col->type == HID_COLLECTION_PHYSICAL)
  1200. if (IS_INPUT_APPLICATION(col->usage))
  1201. break;
  1202. }
  1203. if (i == hid->maxcollection)
  1204. return -1;
  1205. }
  1206. report_features(hid);
  1207. for (k = HID_INPUT_REPORT; k <= HID_OUTPUT_REPORT; k++) {
  1208. if (k == HID_OUTPUT_REPORT &&
  1209. hid->quirks & HID_QUIRK_SKIP_OUTPUT_REPORTS)
  1210. continue;
  1211. list_for_each_entry(report, &hid->report_enum[k].report_list, list) {
  1212. if (!report->maxfield)
  1213. continue;
  1214. if (!hidinput) {
  1215. hidinput = hidinput_allocate(hid);
  1216. if (!hidinput)
  1217. goto out_unwind;
  1218. }
  1219. for (i = 0; i < report->maxfield; i++)
  1220. for (j = 0; j < report->field[i]->maxusage; j++)
  1221. hidinput_configure_usage(hidinput, report->field[i],
  1222. report->field[i]->usage + j);
  1223. if ((hid->quirks & HID_QUIRK_NO_EMPTY_INPUT) &&
  1224. !hidinput_has_been_populated(hidinput))
  1225. continue;
  1226. if (hid->quirks & HID_QUIRK_MULTI_INPUT) {
  1227. /* This will leave hidinput NULL, so that it
  1228. * allocates another one if we have more inputs on
  1229. * the same interface. Some devices (e.g. Happ's
  1230. * UGCI) cram a lot of unrelated inputs into the
  1231. * same interface. */
  1232. hidinput->report = report;
  1233. if (drv->input_configured)
  1234. drv->input_configured(hid, hidinput);
  1235. if (input_register_device(hidinput->input))
  1236. goto out_cleanup;
  1237. hidinput = NULL;
  1238. }
  1239. }
  1240. }
  1241. if (hidinput && (hid->quirks & HID_QUIRK_NO_EMPTY_INPUT) &&
  1242. !hidinput_has_been_populated(hidinput)) {
  1243. /* no need to register an input device not populated */
  1244. hidinput_cleanup_hidinput(hid, hidinput);
  1245. hidinput = NULL;
  1246. }
  1247. if (list_empty(&hid->inputs)) {
  1248. hid_err(hid, "No inputs registered, leaving\n");
  1249. goto out_unwind;
  1250. }
  1251. if (hidinput) {
  1252. if (drv->input_configured)
  1253. drv->input_configured(hid, hidinput);
  1254. if (input_register_device(hidinput->input))
  1255. goto out_cleanup;
  1256. }
  1257. return 0;
  1258. out_cleanup:
  1259. list_del(&hidinput->list);
  1260. input_free_device(hidinput->input);
  1261. kfree(hidinput);
  1262. out_unwind:
  1263. /* unwind the ones we already registered */
  1264. hidinput_disconnect(hid);
  1265. return -1;
  1266. }
  1267. EXPORT_SYMBOL_GPL(hidinput_connect);
  1268. void hidinput_disconnect(struct hid_device *hid)
  1269. {
  1270. struct hid_input *hidinput, *next;
  1271. hidinput_cleanup_battery(hid);
  1272. list_for_each_entry_safe(hidinput, next, &hid->inputs, list) {
  1273. list_del(&hidinput->list);
  1274. input_unregister_device(hidinput->input);
  1275. kfree(hidinput);
  1276. }
  1277. /* led_work is spawned by input_dev callbacks, but doesn't access the
  1278. * parent input_dev at all. Once all input devices are removed, we
  1279. * know that led_work will never get restarted, so we can cancel it
  1280. * synchronously and are safe. */
  1281. cancel_work_sync(&hid->led_work);
  1282. }
  1283. EXPORT_SYMBOL_GPL(hidinput_disconnect);