hiddev.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:7k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _HIDDEV_H
  2. #define _HIDDEV_H
  3. /*
  4.  * $Id: hiddev.h,v 1.2 2001/04/26 11:26:09 vojtech Exp $
  5.  *
  6.  *  Copyright (c) 1999-2000 Vojtech Pavlik
  7.  *
  8.  *  Sponsored by SuSE
  9.  */
  10. /*
  11.  * This program is free software; you can redistribute it and/or modify
  12.  * it under the terms of the GNU General Public License as published by
  13.  * the Free Software Foundation; either version 2 of the License, or 
  14.  * (at your option) any later version.
  15.  * 
  16.  * This program is distributed in the hope that it will be useful,
  17.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  * GNU General Public License for more details.
  20.  * 
  21.  * You should have received a copy of the GNU General Public License
  22.  * along with this program; if not, write to the Free Software
  23.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  24.  * 
  25.  * Should you need to contact me, the author, you can do so either by
  26.  * e-mail - mail your message to <vojtech@suse.cz>, or by paper mail:
  27.  * Vojtech Pavlik, Ucitelska 1576, Prague 8, 182 00 Czech Republic
  28.  */
  29. /*
  30.  * The event structure itself
  31.  */
  32. struct hiddev_event {
  33. unsigned hid;
  34. signed int value;
  35. };
  36. struct hiddev_devinfo {
  37. __u32 bustype;
  38. __u32 busnum;
  39. __u32 devnum;
  40. __u32 ifnum;
  41. __s16 vendor;
  42. __s16 product;
  43. __s16 version;
  44. __u32 num_applications;
  45. };
  46. struct hiddev_collection_info {
  47. __u32 index;
  48. __u32 type;
  49. __u32 usage;
  50. __u32 level;
  51. };
  52. #define HID_STRING_SIZE 256
  53. struct hiddev_string_descriptor {
  54. __s32 index;
  55. char value[HID_STRING_SIZE];
  56. };
  57. struct hiddev_report_info {
  58. __u32 report_type;
  59. __u32 report_id;
  60. __u32 num_fields;
  61. };
  62. /* To do a GUSAGE/SUSAGE, fill in at least usage_code,  report_type and 
  63.  * report_id.  Set report_id to REPORT_ID_UNKNOWN if the rest of the fields 
  64.  * are unknown.  Otherwise use a usage_ref struct filled in from a previous 
  65.  * successful GUSAGE call to save time.  To actually send a value to the
  66.  * device, perform a SUSAGE first, followed by a SREPORT.  An INITREPORT or a
  67.  * GREPORT isn't necessary for a GUSAGE to return valid data.
  68.  */
  69. #define HID_REPORT_ID_UNKNOWN 0xffffffff
  70. #define HID_REPORT_ID_FIRST   0x00000100
  71. #define HID_REPORT_ID_NEXT    0x00000200
  72. #define HID_REPORT_ID_MASK    0x000000ff
  73. #define HID_REPORT_ID_MAX     0x000000ff
  74. #define HID_REPORT_TYPE_INPUT 1
  75. #define HID_REPORT_TYPE_OUTPUT 2
  76. #define HID_REPORT_TYPE_FEATURE 3
  77. #define HID_REPORT_TYPE_MIN     1
  78. #define HID_REPORT_TYPE_MAX     3
  79. struct hiddev_field_info {
  80. __u32 report_type;
  81. __u32 report_id;
  82. __u32 field_index;
  83. __u32 maxusage;
  84. __u32 flags;
  85. __u32 physical; /* physical usage for this field */
  86. __u32 logical; /* logical usage for this field */
  87. __u32 application; /* application usage for this field */
  88. __s32 logical_minimum;
  89. __s32 logical_maximum;
  90. __s32 physical_minimum;
  91. __s32 physical_maximum;
  92. __u32 unit_exponent;
  93. __u32 unit;
  94. };
  95. /* Fill in report_type, report_id and field_index to get the information on a
  96.  * field.
  97.  */
  98. #define HID_FIELD_CONSTANT 0x001
  99. #define HID_FIELD_VARIABLE 0x002
  100. #define HID_FIELD_RELATIVE 0x004
  101. #define HID_FIELD_WRAP 0x008
  102. #define HID_FIELD_NONLINEAR 0x010
  103. #define HID_FIELD_NO_PREFERRED 0x020
  104. #define HID_FIELD_NULL_STATE 0x040
  105. #define HID_FIELD_VOLATILE 0x080
  106. #define HID_FIELD_BUFFERED_BYTE 0x100
  107. struct hiddev_usage_ref {
  108. __u32 report_type;
  109. __u32 report_id;
  110. __u32 field_index;
  111. __u32 usage_index;
  112. __u32 usage_code;
  113. __s32 value;
  114. };
  115. /* hiddev_usage_ref_multi is used for sending multiple bytes to a control.
  116.  * It really manifests itself as setting the value of consecutive usages */
  117. #define HID_MAX_MULTI_USAGES 1024
  118. struct hiddev_usage_ref_multi {
  119. struct hiddev_usage_ref uref;
  120. __u32 num_values;
  121. __s32 values[HID_MAX_MULTI_USAGES];
  122. };
  123. /* FIELD_INDEX_NONE is returned in read() data from the kernel when flags
  124.  * is set to (HIDDEV_FLAG_UREF | HIDDEV_FLAG_REPORT) and a new report has
  125.  * been sent by the device 
  126.  */
  127. #define HID_FIELD_INDEX_NONE 0xffffffff
  128. /*
  129.  * Protocol version.
  130.  */
  131. #define HID_VERSION 0x010004
  132. /*
  133.  * IOCTLs (0x00 - 0x7f)
  134.  */
  135. #define HIDIOCGVERSION _IOR('H', 0x01, int)
  136. #define HIDIOCAPPLICATION _IO('H', 0x02)
  137. #define HIDIOCGDEVINFO _IOR('H', 0x03, struct hiddev_devinfo)
  138. #define HIDIOCGSTRING _IOR('H', 0x04, struct hiddev_string_descriptor)
  139. #define HIDIOCINITREPORT _IO('H', 0x05)
  140. #define HIDIOCGNAME(len) _IOC(_IOC_READ, 'H', 0x06, len)
  141. #define HIDIOCGREPORT _IOW('H', 0x07, struct hiddev_report_info)
  142. #define HIDIOCSREPORT _IOW('H', 0x08, struct hiddev_report_info)
  143. #define HIDIOCGREPORTINFO _IOWR('H', 0x09, struct hiddev_report_info)
  144. #define HIDIOCGFIELDINFO _IOWR('H', 0x0A, struct hiddev_field_info)
  145. #define HIDIOCGUSAGE _IOWR('H', 0x0B, struct hiddev_usage_ref)
  146. #define HIDIOCSUSAGE _IOW('H', 0x0C, struct hiddev_usage_ref)
  147. #define HIDIOCGUCODE _IOWR('H', 0x0D, struct hiddev_usage_ref)
  148. #define HIDIOCGFLAG _IOR('H', 0x0E, int)
  149. #define HIDIOCSFLAG _IOW('H', 0x0F, int)
  150. #define HIDIOCGCOLLECTIONINDEX _IOW('H', 0x10, struct hiddev_usage_ref)
  151. #define HIDIOCGCOLLECTIONINFO _IOWR('H', 0x11, struct hiddev_collection_info)
  152. #define HIDIOCGPHYS(len) _IOC(_IOC_READ, 'H', 0x12, len)
  153. /* For writing/reading to multiple/consecutive usages */
  154. #define HIDIOCGUSAGES _IOWR('H', 0x13, struct hiddev_usage_ref_multi)
  155. #define HIDIOCSUSAGES _IOW('H', 0x14, struct hiddev_usage_ref_multi)
  156. /* 
  157.  * Flags to be used in HIDIOCSFLAG
  158.  */
  159. #define HIDDEV_FLAG_UREF 0x1
  160. #define HIDDEV_FLAG_REPORT 0x2
  161. #define HIDDEV_FLAGS 0x3
  162. /* To traverse the input report descriptor info for a HID device, perform the 
  163.  * following:
  164.  *
  165.  *  rinfo.report_type = HID_REPORT_TYPE_INPUT;
  166.  *  rinfo.report_id = HID_REPORT_ID_FIRST;
  167.  *  ret = ioctl(fd, HIDIOCGREPORTINFO, &rinfo);
  168.  *
  169.  *  while (ret >= 0) {
  170.  *      for (i = 0; i < rinfo.num_fields; i++) { 
  171.  *     finfo.report_type = rinfo.report_type;
  172.  *          finfo.report_id = rinfo.report_id;
  173.  *          finfo.field_index = i;
  174.  *          ioctl(fd, HIDIOCGFIELDINFO, &finfo);
  175.  *          for (j = 0; j < finfo.maxusage; j++) {
  176.  *              uref.field_index = i;
  177.  * uref.usage_index = j;
  178.  * ioctl(fd, HIDIOCGUCODE, &uref);
  179.  * ioctl(fd, HIDIOCGUSAGE, &uref);
  180.  *          }
  181.  * }
  182.  * rinfo.report_id |= HID_REPORT_ID_NEXT;
  183.  * ret = ioctl(fd, HIDIOCGREPORTINFO, &rinfo);
  184.  *  }
  185.  */
  186. #ifdef __KERNEL__
  187. /*
  188.  * In-kernel definitions.
  189.  */
  190. struct hid_device;
  191. struct hid_usage;
  192. struct hid_field;
  193. struct hid_report;
  194. #ifdef CONFIG_USB_HIDDEV
  195. int hiddev_connect(struct hid_device *);
  196. void hiddev_disconnect(struct hid_device *);
  197. void hiddev_hid_event(struct hid_device *hid, struct hid_field *field,
  198.       struct hid_usage *usage, __s32 value, struct pt_regs *regs);
  199. void hiddev_report_event(struct hid_device *hid, struct hid_report *report);
  200. int __init hiddev_init(void);
  201. void hiddev_exit(void);
  202. #else
  203. static inline int hiddev_connect(struct hid_device *hid) { return -1; }
  204. static inline void hiddev_disconnect(struct hid_device *hid) { }
  205. static inline void hiddev_hid_event(struct hid_device *hid, struct hid_field *field,
  206.       struct hid_usage *usage, __s32 value, struct pt_regs *regs) { }
  207. static inline void hiddev_report_event(struct hid_device *hid, struct hid_report *report) { }
  208. static inline int hiddev_init(void) { return 0; }
  209. static inline void hiddev_exit(void) { }
  210. #endif
  211. #endif
  212. #endif