hid-input-quirks.c 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. /*
  2. * HID-input usage mapping quirks
  3. *
  4. * This is used to handle HID-input mappings for devices violating
  5. * HUT 1.12 specification.
  6. *
  7. * Copyright (c) 2007-2008 Jiri Kosina
  8. */
  9. /*
  10. * This program is free software; you can redistribute it and/or modify it
  11. * under the terms of the GNU General Public License as published by the Free
  12. * Software Foundation; either version 2 of the License
  13. */
  14. #include <linux/input.h>
  15. #include <linux/hid.h>
  16. #define map_key_clear(c) hid_map_usage_clear(hidinput, usage, bit, \
  17. max, EV_KEY, (c))
  18. static int quirk_belkin_wkbd(struct hid_usage *usage,
  19. struct hid_input *hidinput, unsigned long **bit, int *max)
  20. {
  21. if ((usage->hid & HID_USAGE_PAGE) != HID_UP_CONSUMER)
  22. return 0;
  23. switch (usage->hid & HID_USAGE) {
  24. case 0x03a: map_key_clear(KEY_SOUND); break;
  25. case 0x03b: map_key_clear(KEY_CAMERA); break;
  26. case 0x03c: map_key_clear(KEY_DOCUMENTS); break;
  27. default:
  28. return 0;
  29. }
  30. return 1;
  31. }
  32. static int quirk_gyration_remote(struct hid_usage *usage,
  33. struct hid_input *hidinput, unsigned long **bit, int *max)
  34. {
  35. if ((usage->hid & HID_USAGE_PAGE) != HID_UP_LOGIVENDOR)
  36. return 0;
  37. set_bit(EV_REP, hidinput->input->evbit);
  38. switch(usage->hid & HID_USAGE) {
  39. /* Reported on Gyration MCE Remote */
  40. case 0x00d: map_key_clear(KEY_HOME); break;
  41. case 0x024: map_key_clear(KEY_DVD); break;
  42. case 0x025: map_key_clear(KEY_PVR); break;
  43. case 0x046: map_key_clear(KEY_MEDIA); break;
  44. case 0x047: map_key_clear(KEY_MP3); break;
  45. case 0x049: map_key_clear(KEY_CAMERA); break;
  46. case 0x04a: map_key_clear(KEY_VIDEO); break;
  47. default:
  48. return 0;
  49. }
  50. return 1;
  51. }
  52. static int quirk_petalynx_remote(struct hid_usage *usage,
  53. struct hid_input *hidinput, unsigned long **bit, int *max)
  54. {
  55. if (((usage->hid & HID_USAGE_PAGE) != HID_UP_LOGIVENDOR) &&
  56. ((usage->hid & HID_USAGE_PAGE) != HID_UP_CONSUMER))
  57. return 0;
  58. if ((usage->hid & HID_USAGE_PAGE) == HID_UP_LOGIVENDOR)
  59. switch(usage->hid & HID_USAGE) {
  60. case 0x05a: map_key_clear(KEY_TEXT); break;
  61. case 0x05b: map_key_clear(KEY_RED); break;
  62. case 0x05c: map_key_clear(KEY_GREEN); break;
  63. case 0x05d: map_key_clear(KEY_YELLOW); break;
  64. case 0x05e: map_key_clear(KEY_BLUE); break;
  65. default:
  66. return 0;
  67. }
  68. if ((usage->hid & HID_USAGE_PAGE) == HID_UP_CONSUMER)
  69. switch(usage->hid & HID_USAGE) {
  70. case 0x0f6: map_key_clear(KEY_NEXT); break;
  71. case 0x0fa: map_key_clear(KEY_BACK); break;
  72. default:
  73. return 0;
  74. }
  75. return 1;
  76. }
  77. static int quirk_cherry_genius_29e(struct hid_usage *usage,
  78. struct hid_input *hidinput, unsigned long **bit, int *max)
  79. {
  80. if ((usage->hid & HID_USAGE_PAGE) != HID_UP_CONSUMER)
  81. return 0;
  82. switch (usage->hid & HID_USAGE) {
  83. case 0x156: map_key_clear(KEY_WORDPROCESSOR); break;
  84. case 0x157: map_key_clear(KEY_SPREADSHEET); break;
  85. case 0x158: map_key_clear(KEY_PRESENTATION); break;
  86. case 0x15c: map_key_clear(KEY_STOP); break;
  87. default:
  88. return 0;
  89. }
  90. return 1;
  91. }
  92. #define VENDOR_ID_BELKIN 0x1020
  93. #define DEVICE_ID_BELKIN_WIRELESS_KEYBOARD 0x0006
  94. #define VENDOR_ID_GYRATION 0x0c16
  95. #define DEVICE_ID_GYRATION_REMOTE 0x0002
  96. #define VENDOR_ID_MONTEREY 0x0566
  97. #define DEVICE_ID_GENIUS_KB29E 0x3004
  98. #define VENDOR_ID_PETALYNX 0x18b1
  99. #define DEVICE_ID_PETALYNX_MAXTER_REMOTE 0x0037
  100. static const struct hid_input_blacklist {
  101. __u16 idVendor;
  102. __u16 idProduct;
  103. int (*quirk)(struct hid_usage *, struct hid_input *, unsigned long **,
  104. int *);
  105. } hid_input_blacklist[] = {
  106. { VENDOR_ID_BELKIN, DEVICE_ID_BELKIN_WIRELESS_KEYBOARD, quirk_belkin_wkbd },
  107. { VENDOR_ID_GYRATION, DEVICE_ID_GYRATION_REMOTE, quirk_gyration_remote },
  108. { VENDOR_ID_MONTEREY, DEVICE_ID_GENIUS_KB29E, quirk_cherry_genius_29e },
  109. { VENDOR_ID_PETALYNX, DEVICE_ID_PETALYNX_MAXTER_REMOTE, quirk_petalynx_remote },
  110. { 0, 0, NULL }
  111. };
  112. int hidinput_mapping_quirks(struct hid_usage *usage,
  113. struct hid_input *hi, unsigned long **bit, int *max)
  114. {
  115. struct hid_device *device = input_get_drvdata(hi->input);
  116. int i = 0;
  117. while (hid_input_blacklist[i].quirk) {
  118. if (hid_input_blacklist[i].idVendor == device->vendor &&
  119. hid_input_blacklist[i].idProduct == device->product)
  120. return hid_input_blacklist[i].quirk(usage, hi, bit,
  121. max);
  122. i++;
  123. }
  124. return 0;
  125. }
  126. int hidinput_event_quirks(struct hid_device *hid, struct hid_field *field, struct hid_usage *usage, __s32 value)
  127. {
  128. struct input_dev *input;
  129. input = field->hidinput->input;
  130. /* Gyration MCE remote "Sleep" key */
  131. if (hid->vendor == VENDOR_ID_GYRATION &&
  132. hid->product == DEVICE_ID_GYRATION_REMOTE &&
  133. (usage->hid & HID_USAGE_PAGE) == HID_UP_GENDESK &&
  134. (usage->hid & 0xff) == 0x82) {
  135. input_event(input, usage->type, usage->code, 1);
  136. input_sync(input);
  137. input_event(input, usage->type, usage->code, 0);
  138. input_sync(input);
  139. return 1;
  140. }
  141. return 0;
  142. }