hid-sunplus.c 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /*
  2. * HID driver for some sunplus "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) 2007 Paul Walmsley
  9. * Copyright (c) 2008 Jiri Slaby
  10. */
  11. /*
  12. * This program is free software; you can redistribute it and/or modify it
  13. * under the terms of the GNU General Public License as published by the Free
  14. * Software Foundation; either version 2 of the License, or (at your option)
  15. * any later version.
  16. */
  17. #include <linux/device.h>
  18. #include <linux/hid.h>
  19. #include <linux/module.h>
  20. #include "hid-ids.h"
  21. static __u8 *sp_report_fixup(struct hid_device *hdev, __u8 *rdesc,
  22. unsigned int *rsize)
  23. {
  24. if (*rsize >= 107 && rdesc[104] == 0x26 && rdesc[105] == 0x80 &&
  25. rdesc[106] == 0x03) {
  26. dev_info(&hdev->dev, "fixing up Sunplus Wireless Desktop "
  27. "report descriptor\n");
  28. rdesc[105] = rdesc[110] = 0x03;
  29. rdesc[106] = rdesc[111] = 0x21;
  30. }
  31. return rdesc;
  32. }
  33. #define sp_map_key_clear(c) hid_map_usage_clear(hi, usage, bit, max, \
  34. EV_KEY, (c))
  35. static int sp_input_mapping(struct hid_device *hdev, struct hid_input *hi,
  36. struct hid_field *field, struct hid_usage *usage,
  37. unsigned long **bit, int *max)
  38. {
  39. if ((usage->hid & HID_USAGE_PAGE) != HID_UP_CONSUMER)
  40. return 0;
  41. switch (usage->hid & HID_USAGE) {
  42. case 0x2003: sp_map_key_clear(KEY_ZOOMIN); break;
  43. case 0x2103: sp_map_key_clear(KEY_ZOOMOUT); break;
  44. default:
  45. return 0;
  46. }
  47. return 1;
  48. }
  49. static const struct hid_device_id sp_devices[] = {
  50. { HID_USB_DEVICE(USB_VENDOR_ID_SUNPLUS, USB_DEVICE_ID_SUNPLUS_WDESKTOP) },
  51. { }
  52. };
  53. MODULE_DEVICE_TABLE(hid, sp_devices);
  54. static struct hid_driver sp_driver = {
  55. .name = "sunplus",
  56. .id_table = sp_devices,
  57. .report_fixup = sp_report_fixup,
  58. .input_mapping = sp_input_mapping,
  59. };
  60. static int __init sp_init(void)
  61. {
  62. return hid_register_driver(&sp_driver);
  63. }
  64. static void __exit sp_exit(void)
  65. {
  66. hid_unregister_driver(&sp_driver);
  67. }
  68. module_init(sp_init);
  69. module_exit(sp_exit);
  70. MODULE_LICENSE("GPL");