hidraw.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. struct hidraw_report_descriptor {
  17. __u32 size;
  18. __u8 value[HID_MAX_DESCRIPTOR_SIZE];
  19. };
  20. struct hidraw_devinfo {
  21. __u32 bustype;
  22. __s16 vendor;
  23. __s16 product;
  24. };
  25. /* ioctl interface */
  26. #define HIDIOCGRDESCSIZE _IOR('H', 0x01, int)
  27. #define HIDIOCGRDESC _IOR('H', 0x02, struct hidraw_report_descriptor)
  28. #define HIDIOCGRAWINFO _IOR('H', 0x03, struct hidraw_devinfo)
  29. #define HIDRAW_FIRST_MINOR 0
  30. #define HIDRAW_MAX_DEVICES 64
  31. /* number of reports to buffer */
  32. #define HIDRAW_BUFFER_SIZE 64
  33. /* kernel-only API declarations */
  34. #ifdef __KERNEL__
  35. struct hidraw {
  36. unsigned int minor;
  37. int exist;
  38. int open;
  39. wait_queue_head_t wait;
  40. struct hid_device *hid;
  41. struct device *dev;
  42. struct list_head list;
  43. };
  44. struct hidraw_report {
  45. __u8 *value;
  46. int len;
  47. };
  48. struct hidraw_list {
  49. struct hidraw_report buffer[HIDRAW_BUFFER_SIZE];
  50. int head;
  51. int tail;
  52. struct fasync_struct *fasync;
  53. struct hidraw *hidraw;
  54. struct list_head node;
  55. struct mutex read_mutex;
  56. };
  57. #ifdef CONFIG_HIDRAW
  58. int hidraw_init(void);
  59. void hidraw_exit(void);
  60. void hidraw_report_event(struct hid_device *, u8 *, int);
  61. int hidraw_connect(struct hid_device *);
  62. void hidraw_disconnect(struct hid_device *);
  63. #else
  64. static inline int hidraw_init(void) { return 0; }
  65. static inline void hidraw_exit(void) { }
  66. static inline void hidraw_report_event(struct hid_device *hid, u8 *data, int len) { }
  67. static inline int hidraw_connect(struct hid_device *hid) { return -1; }
  68. static inline void hidraw_disconnect(struct hid_device *hid) { }
  69. #endif
  70. #endif
  71. #endif