📄 hiddev.txt
字号:
Care and feeding of your Human Interface DevicesINTRODUCTIONIn addition to the normal input type HID devices, USB also uses thehuman interface device protocols for things that are not really humaninterfaces, but have similar sorts of communication needs. The two bigexamples for this are power devices (especially uninterruptable powersupplies) and monitor control on higher end monitors.To support these disparite requirements, the Linux USB system providesHID events to two seperate interfaces:* the input subsystem, which converts HID events into normal inputdevice interfaces (such as keyboard, mouse and joystick) and anormalised event interface - see Documentation/input/input.txt* the hiddev interface, which provides fairly raw HID eventsThe data flow for a HID event produced by a device is something likethe following : usb.c ---> hid.c ----> input.c ----> [keyboard/mouse/joystick/event] | | --> hiddev.c ----> POWER / MONITOR CONTROL In addition, other subsystems (apart from USB) can potentially feedevents into the input subsystem, but these have no effect on the hiddevice interface.USING THE HID DEVICE INTERFACEThe hiddev interface is a char interface using the normal USB major,with the minor numbers starting at 96 and finishing at 111. Therefore,you need the following commands:mknod /dev/usb/hiddev0 c 180 96mknod /dev/usb/hiddev1 c 180 97mknod /dev/usb/hiddev2 c 180 98mknod /dev/usb/hiddev3 c 180 99mknod /dev/usb/hiddev4 c 180 100mknod /dev/usb/hiddev5 c 180 101mknod /dev/usb/hiddev6 c 180 102mknod /dev/usb/hiddev7 c 180 103mknod /dev/usb/hiddev8 c 180 104mknod /dev/usb/hiddev9 c 180 105mknod /dev/usb/hiddev10 c 180 106mknod /dev/usb/hiddev11 c 180 107mknod /dev/usb/hiddev12 c 180 108mknod /dev/usb/hiddev13 c 180 109mknod /dev/usb/hiddev14 c 180 110mknod /dev/usb/hiddev15 c 180 111So you point your hiddev compliant user-space program at the correctinterface for your device, and it all just works.Assuming that you have a hiddev compliant user-space program, ofcourse. If you need to write one, read on.THE HIDDEV APIThis description should be read in conjunction with the HIDspecification, freely available from http://www.usb.org, andconveniently linked of http://www.linux-usb.org.The hiddev API uses a read() interface, and a set of ioctl() calls.read():This is the event interface. When the HID device performs aninterrupt transfer, indicating a change of state, data will be madeavailable at the associated hiddev device with the content of a structhiddev_event: struct hiddev_event { unsigned hid; signed int value; };containing the HID usage identifier for the status that changed, andthe value that it was changed to. Note that the structure is definedwithin <linux/hiddev.h>, along with some other useful #defines andstructures. ioctl(): This is the control interface. There are a number of controls: HIDIOCGVERSION - int (read)Gets the version code out of the hiddev driver.HIDIOCAPPLICATION - (none)This ioctl call returns the HID application usage associated with thehid device. The third argument to ioctl() specifies which applicationindex to get. This is useful when the device has more than oneapplication collection. If the index is invalid (greater or equal tothe number of application collections this device has) the ioctlreturns -1. You can find out beforehand how many applicationcollections the device has from the num_applications field from thehiddev_devinfo structure. HIDIOCGDEVINFO - struct hiddev_devinfo (read)Gets a hiddev_devinfo structure which describes the device.HIDIOCGSTRING - struct struct hiddev_string_descriptor (read/write)Gets a string descriptor from the device. The caller must fill in the"index" field to indicate which descriptor should be returned.HIDIOCINITREPORT - (none)Instructs the kernel to retrieve all input and feature report valuesfrom the device. At this point, all the usage structures will containcurrent values for the device, and will maintain it as the devicechanges.HIDIOCGNAME - string (variable length)Gets the device nameHIDIOCGREPORT - struct hiddev_report_info (write)Instructs the kernel to get a feature or input report from the device,in order to selectively update the usage structures (in contrast toINITREPORT). HIDIOCSREPORT - struct hiddev_report_info (write)Instructs the kernel to send a report to the device. This report canbe filled in by the user through HIDIOCSUSAGE calls (below) to fill inindividual usage values in the report beforesending the report in fullto the device. HIDIOCGREPORTINFO - struct hiddev_report_info (read/write)Fills in a hiddev_report_info structure for the user. The report islooked up by type (input, output or feature) and id, so these fieldsmust be filled in by the user. The ID can be absolute -- the actualreport id as reported by the device -- or relative --HID_REPORT_ID_FIRST for the first report, and (HID_REPORT_ID_NEXT |report_id) for the next report after report_id. Without a-prioriinformation about report ids, the right way to use this ioctl is touse the relative IDs above to enumerate the valid IDs. The ioctlreturns non-zero when there is no more next ID. The real report ID isfilled into the returned hiddev_report_info structure. HIDIOCGFIELDINFO - struct hiddev_field_info (read/write)Returns the field information associated with a report in ahiddev_field_info structure. The user must fill in report_id andreport_type in this structure, as above. The field_index should alsobe filled in, which should be a number from 0 and maxfield-1, asreturned from a previous HIDIOCGREPORTINFO call. HIDIOCGUCODE - struct hiddev_usage_ref (read/write)Returns the usage_code in a hiddev_usage_ref structure, given thatgiven its report type, report id, field index, and index within thefield have already been filled into the structure.HIDIOCGUSAGE - struct hiddev_usage_ref (read/write)Returns the value of a usage in a hiddev_usage_ref structure. Theusage to be retrieved can be specified as above, or the user canchoose to fill in the report_type field and specify the report_id asHID_REPORT_ID_UNKNOWN. In this case, the hiddev_usage_ref will befilled in with the report and field infomation associated with thisusage if it is found. HIDIOCSUSAGE - struct hiddev_usage_ref (write)Sets the value of a usage in an output report.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -