hid-lcpower.c 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /*
  2. * HID driver for LC Power Model RC1000MCE
  3. *
  4. * Copyright (c) 2011 Chris Schlund
  5. * based on hid-topseed module
  6. */
  7. /*
  8. * This program is free software; you can redistribute it and/or modify it
  9. * under the terms of the GNU General Public License as published by the Free
  10. * Software Foundation; either version 2 of the License, or (at your option)
  11. * any later version.
  12. */
  13. #include <linux/device.h>
  14. #include <linux/hid.h>
  15. #include <linux/module.h>
  16. #include "hid-ids.h"
  17. #define ts_map_key_clear(c) hid_map_usage_clear(hi, usage, bit, max, \
  18. EV_KEY, (c))
  19. static int ts_input_mapping(struct hid_device *hdev, struct hid_input *hi,
  20. struct hid_field *field, struct hid_usage *usage,
  21. unsigned long **bit, int *max)
  22. {
  23. if ((usage->hid & HID_USAGE_PAGE) != HID_UP_LOGIVENDOR)
  24. return 0;
  25. switch (usage->hid & HID_USAGE) {
  26. case 0x046: ts_map_key_clear(KEY_YELLOW); break;
  27. case 0x047: ts_map_key_clear(KEY_GREEN); break;
  28. case 0x049: ts_map_key_clear(KEY_BLUE); break;
  29. case 0x04a: ts_map_key_clear(KEY_RED); break;
  30. case 0x00d: ts_map_key_clear(KEY_HOME); break;
  31. case 0x025: ts_map_key_clear(KEY_TV); break;
  32. case 0x048: ts_map_key_clear(KEY_VCR); break;
  33. case 0x024: ts_map_key_clear(KEY_MENU); break;
  34. default:
  35. return 0;
  36. }
  37. return 1;
  38. }
  39. static const struct hid_device_id ts_devices[] = {
  40. { HID_USB_DEVICE( USB_VENDOR_ID_LCPOWER, USB_DEVICE_ID_LCPOWER_LC1000) },
  41. { }
  42. };
  43. MODULE_DEVICE_TABLE(hid, ts_devices);
  44. static struct hid_driver ts_driver = {
  45. .name = "LC RC1000MCE",
  46. .id_table = ts_devices,
  47. .input_mapping = ts_input_mapping,
  48. };
  49. module_hid_driver(ts_driver);
  50. MODULE_LICENSE("GPL");