hid-input.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:12k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * $Id: hid-input.c,v 1.5 2001/05/23 09:25:02 vojtech Exp $
  3.  *
  4.  *  Copyright (c) 2000-2001 Vojtech Pavlik
  5.  *
  6.  *  USB HID to Linux Input mapping module
  7.  *
  8.  *  Sponsored by SuSE
  9.  */
  10. /*
  11.  * This program is free software; you can redistribute it and/or modify
  12.  * it under the terms of the GNU General Public License as published by
  13.  * the Free Software Foundation; either version 2 of the License, or
  14.  * (at your option) any later version.
  15.  *
  16.  * This program is distributed in the hope that it will be useful,
  17.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  * GNU General Public License for more details.
  20.  *
  21.  * You should have received a copy of the GNU General Public License
  22.  * along with this program; if not, write to the Free Software
  23.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  24.  *
  25.  * Should you need to contact me, the author, you can do so either by
  26.  * e-mail - mail your message to <vojtech@suse.cz>, or by paper mail:
  27.  * Vojtech Pavlik, Ucitelska 1576, Prague 8, 182 00 Czech Republic
  28.  */
  29. #include <linux/module.h>
  30. #include <linux/slab.h>
  31. #include <linux/init.h>
  32. #include <linux/kernel.h>
  33. #include <linux/input.h>
  34. #include <linux/usb.h>
  35. #include "hid.h"
  36. #define unk KEY_UNKNOWN
  37. static unsigned char hid_keyboard[256] = {
  38.   0,  0,  0,  0, 30, 48, 46, 32, 18, 33, 34, 35, 23, 36, 37, 38,
  39.  50, 49, 24, 25, 16, 19, 31, 20, 22, 47, 17, 45, 21, 44,  2,  3,
  40.   4,  5,  6,  7,  8,  9, 10, 11, 28,  1, 14, 15, 57, 12, 13, 26,
  41.  27, 43, 84, 39, 40, 41, 51, 52, 53, 58, 59, 60, 61, 62, 63, 64,
  42.  65, 66, 67, 68, 87, 88, 99, 70,119,110,102,104,111,107,109,106,
  43. 105,108,103, 69, 98, 55, 74, 78, 96, 79, 80, 81, 75, 76, 77, 71,
  44.  72, 73, 82, 83, 86,127,116,117, 85, 89, 90, 91, 92, 93, 94, 95,
  45. 120,121,122,123,134,138,130,132,128,129,131,137,133,135,136,113,
  46. 115,114,unk,unk,unk,124,unk,181,182,183,184,185,186,187,188,189,
  47. 190,191,192,193,194,195,196,197,198,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. unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,
  51. unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,
  52.  29, 42, 56,125, 97, 54,100,126,164,166,165,163,161,115,114,113,
  53. 150,158,159,128,136,177,178,176,142,152,173,140,unk,unk,unk,unk
  54. };
  55. static struct {
  56. __s32 x;
  57. __s32 y;
  58. }  hid_hat_to_axis[] = {{0, 0}, { 0,-1}, { 1,-1}, { 1, 0}, { 1, 1}, { 0, 1}, {-1, 1}, {-1, 0}, {-1,-1}};
  59. static void hidinput_configure_usage(struct hid_device *device, struct hid_field *field, struct hid_usage *usage)
  60. {
  61. struct input_dev *input = &device->input;
  62. int max;
  63. unsigned long *bit;
  64. switch (usage->hid & HID_USAGE_PAGE) {
  65. case HID_UP_KEYBOARD:
  66. set_bit(EV_REP, input->evbit);
  67. usage->type = EV_KEY; bit = input->keybit; max = KEY_MAX;
  68. if ((usage->hid & HID_USAGE) < 256) {
  69. if (!(usage->code = hid_keyboard[usage->hid & HID_USAGE]))
  70. return;
  71. clear_bit(usage->code, bit);
  72. } else
  73. usage->code = KEY_UNKNOWN;
  74. break;
  75. case HID_UP_BUTTON:
  76. usage->code = ((usage->hid - 1) & 0xf) + 0x100;
  77. usage->type = EV_KEY; bit = input->keybit; max = KEY_MAX;
  78. switch (field->application) {
  79. case HID_GD_GAMEPAD:  usage->code += 0x10;
  80. case HID_GD_JOYSTICK: usage->code += 0x10;
  81. case HID_GD_MOUSE:    usage->code += 0x10; break;
  82. default:
  83. if (field->physical == HID_GD_POINTER)
  84. usage->code += 0x10;
  85. break;
  86. }
  87. break;
  88. case HID_UP_GENDESK:
  89. if ((usage->hid & 0xf0) == 0x80) { /* SystemControl */
  90. switch (usage->hid & 0xf) {
  91. case 0x1: usage->code = KEY_POWER;  break;
  92. case 0x2: usage->code = KEY_SLEEP;  break;
  93. case 0x3: usage->code = KEY_WAKEUP; break;
  94. default: usage->code = KEY_UNKNOWN; break;
  95. }
  96. usage->type = EV_KEY; bit = input->keybit; max = KEY_MAX;
  97. break;
  98. }
  99. usage->code = usage->hid & 0xf;
  100. if (field->report_size == 1) {
  101. usage->code = BTN_MISC;
  102. usage->type = EV_KEY; bit = input->keybit; max = KEY_MAX;
  103. break;
  104. }
  105. if (field->flags & HID_MAIN_ITEM_RELATIVE) {
  106. usage->type = EV_REL; bit = input->relbit; max = REL_MAX;
  107. break;
  108. }
  109. usage->type = EV_ABS; bit = input->absbit; max = ABS_MAX;
  110. if (usage->hid == HID_GD_HATSWITCH) {
  111. usage->code = ABS_HAT0X;
  112. usage->hat_min = field->logical_minimum;
  113. usage->hat_max = field->logical_maximum;
  114. }
  115. break;
  116. case HID_UP_LED:
  117. usage->code = (usage->hid - 1) & 0xf;
  118. usage->type = EV_LED; bit = input->ledbit; max = LED_MAX;
  119. break;
  120. case HID_UP_DIGITIZER:
  121. switch (usage->hid & 0xff) {
  122. case 0x30: /* TipPressure */
  123. if (!test_bit(BTN_TOUCH, input->keybit)) {
  124. device->quirks |= HID_QUIRK_NOTOUCH;
  125. set_bit(EV_KEY, input->evbit);
  126. set_bit(BTN_TOUCH, input->keybit);
  127. }
  128. usage->type = EV_ABS; bit = input->absbit; max = ABS_MAX;
  129. usage->code = ABS_PRESSURE;
  130. clear_bit(usage->code, bit);
  131. break;
  132. case 0x32: /* InRange */
  133. usage->type = EV_KEY; bit = input->keybit; max = KEY_MAX;
  134. switch (field->physical & 0xff) {
  135. case 0x21: usage->code = BTN_TOOL_MOUSE; break;
  136. case 0x22: usage->code = BTN_TOOL_FINGER; break;
  137. default: usage->code = BTN_TOOL_PEN; break;
  138. }
  139. break;
  140. case 0x3c: /* Invert */
  141. usage->type = EV_KEY; bit = input->keybit; max = KEY_MAX;
  142. usage->code = BTN_TOOL_RUBBER;
  143. clear_bit(usage->code, bit);
  144. break;
  145. case 0x33: /* Touch */
  146. case 0x42: /* TipSwitch */
  147. case 0x43: /* TipSwitch2 */
  148. device->quirks &= ~HID_QUIRK_NOTOUCH;
  149. usage->type = EV_KEY; bit = input->keybit; max = KEY_MAX;
  150. usage->code = BTN_TOUCH;
  151. clear_bit(usage->code, bit);
  152. break;
  153. case 0x44: /* BarrelSwitch */
  154. usage->type = EV_KEY; bit = input->keybit; max = KEY_MAX;
  155. usage->code = BTN_STYLUS;
  156. clear_bit(usage->code, bit);
  157. break;
  158. default:  goto unknown;
  159. }
  160. break;
  161. case HID_UP_CONSUMER: /* USB HUT v1.1, pages 56-62 */
  162. switch (usage->hid & HID_USAGE) {
  163. case 0x000: usage->code = 0; break;
  164. case 0x034: usage->code = KEY_SLEEP; break;
  165. case 0x036: usage->code = BTN_MISC; break;
  166. case 0x08a: usage->code = KEY_WWW; break;
  167. case 0x095: usage->code = KEY_HELP; break;
  168. case 0x0b4: usage->code = KEY_REWIND; break;
  169. case 0x0b5: usage->code = KEY_NEXTSONG; break;
  170. case 0x0b6: usage->code = KEY_PREVIOUSSONG; break;
  171. case 0x0b7: usage->code = KEY_STOPCD; break;
  172. case 0x0b8: usage->code = KEY_EJECTCD; break;
  173. case 0x0cd: usage->code = KEY_PLAYPAUSE; break;
  174. case 0x0e2: usage->code = KEY_MUTE; break;
  175. case 0x0e9: usage->code = KEY_VOLUMEUP; break;
  176. case 0x0ea: usage->code = KEY_VOLUMEDOWN; break;
  177. case 0x183: usage->code = KEY_CONFIG; break;
  178. case 0x18a: usage->code = KEY_MAIL; break;
  179. case 0x192: usage->code = KEY_CALC; break;
  180. case 0x194: usage->code = KEY_FILE; break;
  181. case 0x21a: usage->code = KEY_UNDO; break;
  182. case 0x21b: usage->code = KEY_COPY; break;
  183. case 0x21c: usage->code = KEY_CUT; break;
  184. case 0x21d: usage->code = KEY_PASTE; break;
  185. case 0x221: usage->code = KEY_FIND; break;
  186. case 0x223: usage->code = KEY_HOMEPAGE; break;
  187. case 0x224: usage->code = KEY_BACK; break;
  188. case 0x225: usage->code = KEY_FORWARD; break;
  189. case 0x226: usage->code = KEY_STOP; break;
  190. case 0x227: usage->code = KEY_REFRESH; break;
  191. case 0x22a: usage->code = KEY_BOOKMARKS; break;
  192. default:    usage->code = KEY_UNKNOWN; break;
  193. }
  194. usage->type = EV_KEY; bit = input->keybit; max = KEY_MAX;
  195. break;
  196. default:
  197. unknown:
  198. if (field->report_size == 1) {
  199. if (field->report->type == HID_OUTPUT_REPORT) {
  200. usage->code = LED_MISC;
  201. usage->type = EV_LED; bit = input->ledbit; max = LED_MAX;
  202. break;
  203. }
  204. usage->code = BTN_MISC;
  205. usage->type = EV_KEY; bit = input->keybit; max = KEY_MAX;
  206. break;
  207. }
  208. if (field->flags & HID_MAIN_ITEM_RELATIVE) {
  209. usage->code = REL_MISC;
  210. usage->type = EV_REL; bit = input->relbit; max = REL_MAX;
  211. break;
  212. }
  213. usage->code = ABS_MISC;
  214. usage->type = EV_ABS; bit = input->absbit; max = ABS_MAX;
  215. break;
  216. }
  217. set_bit(usage->type, input->evbit);
  218. while (usage->code <= max && test_and_set_bit(usage->code, bit)) {
  219. usage->code = find_next_zero_bit(bit, max + 1, usage->code);
  220. }
  221. if (usage->code > max) return;
  222. if (usage->type == EV_ABS) {
  223. int a = field->logical_minimum;
  224. int b = field->logical_maximum;
  225. input->absmin[usage->code] = a;
  226. input->absmax[usage->code] = b;
  227. input->absfuzz[usage->code] = (b - a) >> 8;
  228. input->absflat[usage->code] = (b - a) >> 4;
  229. }
  230. if (usage->hat_min != usage->hat_max) {
  231. int i;
  232. for (i = usage->code; i < usage->code + 2 && i <= max; i++) {
  233. input->absmax[i] = 1;
  234. input->absmin[i] = -1;
  235. input->absfuzz[i] = 0;
  236. input->absflat[i] = 0;
  237. }
  238. set_bit(usage->code + 1, input->absbit);
  239. }
  240. }
  241. void hidinput_hid_event(struct hid_device *hid, struct hid_field *field, struct hid_usage *usage, __s32 value)
  242. {
  243. struct input_dev *input = &hid->input;
  244. int *quirks = &hid->quirks;
  245. if (usage->hat_min != usage->hat_max) {
  246. value = (value - usage->hat_min) * 8 / (usage->hat_max - usage->hat_min + 1) + 1;
  247. if (value < 0 || value > 8) value = 0;
  248. input_event(input, usage->type, usage->code    , hid_hat_to_axis[value].x);
  249. input_event(input, usage->type, usage->code + 1, hid_hat_to_axis[value].y);
  250. return;
  251. }
  252. if (usage->hid == (HID_UP_DIGITIZER | 0x003c)) { /* Invert */
  253. *quirks = value ? (*quirks | HID_QUIRK_INVERT) : (*quirks & ~HID_QUIRK_INVERT);
  254. return;
  255. }
  256. if (usage->hid == (HID_UP_DIGITIZER | 0x0032)) { /* InRange */
  257. if (value) {
  258. input_event(input, usage->type, (*quirks & HID_QUIRK_INVERT) ? BTN_TOOL_RUBBER : usage->code, 1);
  259. return;
  260. }
  261. input_event(input, usage->type, usage->code, 0);
  262. input_event(input, usage->type, BTN_TOOL_RUBBER, 0);
  263. return;
  264. }
  265. if (usage->hid == (HID_UP_DIGITIZER | 0x0030) && (*quirks & HID_QUIRK_NOTOUCH)) { /* Pressure */
  266. int a = field->logical_minimum;
  267. int b = field->logical_maximum;
  268. input_event(input, EV_KEY, BTN_TOUCH, value > a + ((b - a) >> 3));
  269. }
  270. if((usage->type == EV_KEY) && (usage->code == 0)) /* Key 0 is "unassigned", not KEY_UKNOWN */
  271. return;
  272. input_event(input, usage->type, usage->code, value);
  273. if ((field->flags & HID_MAIN_ITEM_RELATIVE) && (usage->type == EV_KEY))
  274. input_event(input, usage->type, usage->code, 0);
  275. }
  276. static int hidinput_input_event(struct input_dev *dev, unsigned int type, unsigned int code, int value)
  277. {
  278. struct hid_device *hid = dev->private;
  279. struct hid_field *field = NULL;
  280. int offset;
  281. if ((offset = hid_find_field(hid, type, code, &field)) == -1) {
  282. warn("event field not found");
  283. return -1;
  284. }
  285. hid_set_field(field, offset, value);
  286. hid_write_report(hid, field->report);
  287. return 0;
  288. }
  289. static int hidinput_open(struct input_dev *dev)
  290. {
  291. struct hid_device *hid = dev->private;
  292. return hid_open(hid);
  293. }
  294. static void hidinput_close(struct input_dev *dev)
  295. {
  296. struct hid_device *hid = dev->private;
  297. hid_close(hid);
  298. }
  299. /*
  300.  * Register the input device; print a message.
  301.  * Configure the input layer interface
  302.  * Read all reports and initalize the absoulte field values.
  303.  */
  304. int hidinput_connect(struct hid_device *hid)
  305. {
  306. struct usb_device *dev = hid->dev;
  307. struct hid_report_enum *report_enum;
  308. struct hid_report *report;
  309. struct list_head *list;
  310. int i, j, k;
  311. for (i = 0; i < hid->maxapplication; i++)
  312. if (IS_INPUT_APPLICATION(hid->application[i]))
  313. break;
  314. if (i == hid->maxapplication)
  315. return -1;
  316. hid->input.private = hid;
  317. hid->input.event = hidinput_input_event;
  318. hid->input.open = hidinput_open;
  319. hid->input.close = hidinput_close;
  320. hid->input.name = hid->name;
  321. hid->input.idbus = BUS_USB;
  322. hid->input.idvendor = dev->descriptor.idVendor;
  323. hid->input.idproduct = dev->descriptor.idProduct;
  324. hid->input.idversion = dev->descriptor.bcdDevice;
  325. for (k = HID_INPUT_REPORT; k <= HID_OUTPUT_REPORT; k++) {
  326. report_enum = hid->report_enum + k;
  327. list = report_enum->report_list.next;
  328. while (list != &report_enum->report_list) {
  329. report = (struct hid_report *) list;
  330. for (i = 0; i < report->maxfield; i++)
  331. for (j = 0; j < report->field[i]->maxusage; j++)
  332. hidinput_configure_usage(hid, report->field[i], report->field[i]->usage + j);
  333. list = list->next;
  334. }
  335. }
  336. input_register_device(&hid->input);
  337. return 0;
  338. }
  339. void hidinput_disconnect(struct hid_device *hid)
  340. {
  341. input_unregister_device(&hid->input);
  342. }