hidraw.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. #ifndef _HIDRAW_H
  2. #define _HIDRAW_H
  3. /*
  4. * Copyright (c) 2007 Jiri Kosina
  5. */
  6. /*
  7. * This program is free software; you can redistribute it and/or modify it
  8. * under the terms and conditions of the GNU General Public License,
  9. * version 2, as published by the Free Software Foundation.
  10. *
  11. * You should have received a copy of the GNU General Public License along with
  12. * this program; if not, write to the Free Software Foundation, Inc.,
  13. * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
  14. */
  15. #include <linux/hid.h>
  16. #include <linux/types.h>
  17. struct hidraw_report_descriptor {
  18. __u32 size;
  19. __u8 value[HID_MAX_DESCRIPTOR_SIZE];
  20. };
  21. struct hidraw_devinfo {
  22. __u32 bustype;
  23. __s16 vendor;
  24. __s16 product;
  25. };
  26. /* ioctl interface */
  27. #define HIDIOCGRDESCSIZE _IOR('H', 0x01, int)
  28. #define HIDIOCGRDESC _IOR('H', 0x02, struct hidraw_report_descriptor)
  29. #define HIDIOCGRAWINFO _IOR('H', 0x03, struct hidraw_devinfo)
  30. #define HIDRAW_FIRST_MINOR 0
  31. #define HIDRAW_MAX_DEVICES 64
  32. /* number of reports to buffer */
  33. #define HIDRAW_BUFFER_SIZE 64
  34. /* kernel-only API declarations */
  35. #ifdef __KERNEL__
  36. struct hidraw {
  37. unsigned int minor;
  38. int exist;
  39. int open;
  40. wait_queue_head_t wait;
  41. struct hid_device *hid;
  42. struct device *dev;
  43. struct list_head list;
  44. };
  45. struct hidraw_report {
  46. __u8 *value;
  47. int len;
  48. };
  49. struct hidraw_list {
  50. struct hidraw_report buffer[HIDRAW_BUFFER_SIZE];
  51. int head;
  52. int tail;
  53. struct fasync_struct *fasync;
  54. struct hidraw *hidraw;
  55. struct list_head node;
  56. struct mutex read_mutex;
  57. };
  58. #ifdef CONFIG_HIDRAW
  59. int hidraw_init(void);
  60. void hidraw_exit(void);
  61. void hidraw_report_event(struct hid_device *, u8 *, int);
  62. int hidraw_connect(struct hid_device *);
  63. void hidraw_disconnect(struct hid_device *);
  64. #else
  65. static inline int hidraw_init(void) { return 0; }
  66. static inline void hidraw_exit(void) { }
  67. static inline void hidraw_report_event(struct hid_device *hid, u8 *data, int len) { }
  68. static inline int hidraw_connect(struct hid_device *hid) { return -1; }
  69. static inline void hidraw_disconnect(struct hid_device *hid) { }
  70. #endif
  71. #endif
  72. #endif