hid-ezkey.c 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /*
  2. * HID driver for some ezkey "special" devices
  3. *
  4. * Copyright (c) 1999 Andreas Gal
  5. * Copyright (c) 2000-2005 Vojtech Pavlik <vojtech@suse.cz>
  6. * Copyright (c) 2005 Michael Haboustak <mike-@cinci.rr.com> for Concept2, Inc
  7. * Copyright (c) 2006-2007 Jiri Kosina
  8. * Copyright (c) 2008 Jiri Slaby
  9. */
  10. /*
  11. * This program is free software; you can redistribute it and/or modify it
  12. * under the terms of the GNU General Public License as published by the Free
  13. * Software Foundation; either version 2 of the License, or (at your option)
  14. * any later version.
  15. */
  16. #include <linux/device.h>
  17. #include <linux/input.h>
  18. #include <linux/hid.h>
  19. #include <linux/module.h>
  20. #include "hid-ids.h"
  21. #define ez_map_rel(c) hid_map_usage(hi, usage, bit, max, EV_REL, (c))
  22. #define ez_map_key(c) hid_map_usage(hi, usage, bit, max, EV_KEY, (c))
  23. static int ez_input_mapping(struct hid_device *hdev, struct hid_input *hi,
  24. struct hid_field *field, struct hid_usage *usage,
  25. unsigned long **bit, int *max)
  26. {
  27. if ((usage->hid & HID_USAGE_PAGE) != HID_UP_CONSUMER)
  28. return 0;
  29. switch (usage->hid & HID_USAGE) {
  30. case 0x230: ez_map_key(BTN_MOUSE); break;
  31. case 0x231: ez_map_rel(REL_WHEEL); break;
  32. /*
  33. * this keyboard has a scrollwheel implemented in
  34. * totally broken way. We map this usage temporarily
  35. * to HWHEEL and handle it in the event quirk handler
  36. */
  37. case 0x232: ez_map_rel(REL_HWHEEL); break;
  38. default:
  39. return 0;
  40. }
  41. return 1;
  42. }
  43. static int ez_event(struct hid_device *hdev, struct hid_field *field,
  44. struct hid_usage *usage, __s32 value)
  45. {
  46. if (!(hdev->claimed & HID_CLAIMED_INPUT) || !field->hidinput ||
  47. !usage->type)
  48. return 0;
  49. /* handle the temporary quirky mapping to HWHEEL */
  50. if (usage->type == EV_REL && usage->code == REL_HWHEEL) {
  51. struct input_dev *input = field->hidinput->input;
  52. input_event(input, usage->type, REL_WHEEL, -value);
  53. return 1;
  54. }
  55. return 0;
  56. }
  57. static const struct hid_device_id ez_devices[] = {
  58. { HID_USB_DEVICE(USB_VENDOR_ID_EZKEY, USB_DEVICE_ID_BTC_8193) },
  59. { }
  60. };
  61. MODULE_DEVICE_TABLE(hid, ez_devices);
  62. static struct hid_driver ez_driver = {
  63. .name = "ezkey",
  64. .id_table = ez_devices,
  65. .input_mapping = ez_input_mapping,
  66. .event = ez_event,
  67. };
  68. module_hid_driver(ez_driver);
  69. MODULE_LICENSE("GPL");