diff options
author | Glenn Elliott <gelliott@cs.unc.edu> | 2012-03-04 19:47:13 -0500 |
---|---|---|
committer | Glenn Elliott <gelliott@cs.unc.edu> | 2012-03-04 19:47:13 -0500 |
commit | c71c03bda1e86c9d5198c5d83f712e695c4f2a1e (patch) | |
tree | ecb166cb3e2b7e2adb3b5e292245fefd23381ac8 /Documentation/hid | |
parent | ea53c912f8a86a8567697115b6a0d8152beee5c8 (diff) | |
parent | 6a00f206debf8a5c8899055726ad127dbeeed098 (diff) |
Merge branch 'mpi-master' into wip-k-fmlpwip-k-fmlp
Conflicts:
litmus/sched_cedf.c
Diffstat (limited to 'Documentation/hid')
-rw-r--r-- | Documentation/hid/hiddev.txt | 205 | ||||
-rw-r--r-- | Documentation/hid/hidraw.txt | 119 |
2 files changed, 324 insertions, 0 deletions
diff --git a/Documentation/hid/hiddev.txt b/Documentation/hid/hiddev.txt new file mode 100644 index 000000000000..6e8c9f1d2f22 --- /dev/null +++ b/Documentation/hid/hiddev.txt | |||
@@ -0,0 +1,205 @@ | |||
1 | Care and feeding of your Human Interface Devices | ||
2 | |||
3 | INTRODUCTION | ||
4 | |||
5 | In addition to the normal input type HID devices, USB also uses the | ||
6 | human interface device protocols for things that are not really human | ||
7 | interfaces, but have similar sorts of communication needs. The two big | ||
8 | examples for this are power devices (especially uninterruptable power | ||
9 | supplies) and monitor control on higher end monitors. | ||
10 | |||
11 | To support these disparate requirements, the Linux USB system provides | ||
12 | HID events to two separate interfaces: | ||
13 | * the input subsystem, which converts HID events into normal input | ||
14 | device interfaces (such as keyboard, mouse and joystick) and a | ||
15 | normalised event interface - see Documentation/input/input.txt | ||
16 | * the hiddev interface, which provides fairly raw HID events | ||
17 | |||
18 | The data flow for a HID event produced by a device is something like | ||
19 | the following : | ||
20 | |||
21 | usb.c ---> hid-core.c ----> hid-input.c ----> [keyboard/mouse/joystick/event] | ||
22 | | | ||
23 | | | ||
24 | --> hiddev.c ----> POWER / MONITOR CONTROL | ||
25 | |||
26 | In addition, other subsystems (apart from USB) can potentially feed | ||
27 | events into the input subsystem, but these have no effect on the hid | ||
28 | device interface. | ||
29 | |||
30 | USING THE HID DEVICE INTERFACE | ||
31 | |||
32 | The hiddev interface is a char interface using the normal USB major, | ||
33 | with the minor numbers starting at 96 and finishing at 111. Therefore, | ||
34 | you need the following commands: | ||
35 | mknod /dev/usb/hiddev0 c 180 96 | ||
36 | mknod /dev/usb/hiddev1 c 180 97 | ||
37 | mknod /dev/usb/hiddev2 c 180 98 | ||
38 | mknod /dev/usb/hiddev3 c 180 99 | ||
39 | mknod /dev/usb/hiddev4 c 180 100 | ||
40 | mknod /dev/usb/hiddev5 c 180 101 | ||
41 | mknod /dev/usb/hiddev6 c 180 102 | ||
42 | mknod /dev/usb/hiddev7 c 180 103 | ||
43 | mknod /dev/usb/hiddev8 c 180 104 | ||
44 | mknod /dev/usb/hiddev9 c 180 105 | ||
45 | mknod /dev/usb/hiddev10 c 180 106 | ||
46 | mknod /dev/usb/hiddev11 c 180 107 | ||
47 | mknod /dev/usb/hiddev12 c 180 108 | ||
48 | mknod /dev/usb/hiddev13 c 180 109 | ||
49 | mknod /dev/usb/hiddev14 c 180 110 | ||
50 | mknod /dev/usb/hiddev15 c 180 111 | ||
51 | |||
52 | So you point your hiddev compliant user-space program at the correct | ||
53 | interface for your device, and it all just works. | ||
54 | |||
55 | Assuming that you have a hiddev compliant user-space program, of | ||
56 | course. If you need to write one, read on. | ||
57 | |||
58 | |||
59 | THE HIDDEV API | ||
60 | This description should be read in conjunction with the HID | ||
61 | specification, freely available from http://www.usb.org, and | ||
62 | conveniently linked of http://www.linux-usb.org. | ||
63 | |||
64 | The hiddev API uses a read() interface, and a set of ioctl() calls. | ||
65 | |||
66 | HID devices exchange data with the host computer using data | ||
67 | bundles called "reports". Each report is divided into "fields", | ||
68 | each of which can have one or more "usages". In the hid-core, | ||
69 | each one of these usages has a single signed 32 bit value. | ||
70 | |||
71 | read(): | ||
72 | This is the event interface. When the HID device's state changes, | ||
73 | it performs an interrupt transfer containing a report which contains | ||
74 | the changed value. The hid-core.c module parses the report, and | ||
75 | returns to hiddev.c the individual usages that have changed within | ||
76 | the report. In its basic mode, the hiddev will make these individual | ||
77 | usage changes available to the reader using a struct hiddev_event: | ||
78 | |||
79 | struct hiddev_event { | ||
80 | unsigned hid; | ||
81 | signed int value; | ||
82 | }; | ||
83 | |||
84 | containing the HID usage identifier for the status that changed, and | ||
85 | the value that it was changed to. Note that the structure is defined | ||
86 | within <linux/hiddev.h>, along with some other useful #defines and | ||
87 | structures. The HID usage identifier is a composite of the HID usage | ||
88 | page shifted to the 16 high order bits ORed with the usage code. The | ||
89 | behavior of the read() function can be modified using the HIDIOCSFLAG | ||
90 | ioctl() described below. | ||
91 | |||
92 | |||
93 | ioctl(): | ||
94 | This is the control interface. There are a number of controls: | ||
95 | |||
96 | HIDIOCGVERSION - int (read) | ||
97 | Gets the version code out of the hiddev driver. | ||
98 | |||
99 | HIDIOCAPPLICATION - (none) | ||
100 | This ioctl call returns the HID application usage associated with the | ||
101 | hid device. The third argument to ioctl() specifies which application | ||
102 | index to get. This is useful when the device has more than one | ||
103 | application collection. If the index is invalid (greater or equal to | ||
104 | the number of application collections this device has) the ioctl | ||
105 | returns -1. You can find out beforehand how many application | ||
106 | collections the device has from the num_applications field from the | ||
107 | hiddev_devinfo structure. | ||
108 | |||
109 | HIDIOCGCOLLECTIONINFO - struct hiddev_collection_info (read/write) | ||
110 | This returns a superset of the information above, providing not only | ||
111 | application collections, but all the collections the device has. It | ||
112 | also returns the level the collection lives in the hierarchy. | ||
113 | The user passes in a hiddev_collection_info struct with the index | ||
114 | field set to the index that should be returned. The ioctl fills in | ||
115 | the other fields. If the index is larger than the last collection | ||
116 | index, the ioctl returns -1 and sets errno to -EINVAL. | ||
117 | |||
118 | HIDIOCGDEVINFO - struct hiddev_devinfo (read) | ||
119 | Gets a hiddev_devinfo structure which describes the device. | ||
120 | |||
121 | HIDIOCGSTRING - struct hiddev_string_descriptor (read/write) | ||
122 | Gets a string descriptor from the device. The caller must fill in the | ||
123 | "index" field to indicate which descriptor should be returned. | ||
124 | |||
125 | HIDIOCINITREPORT - (none) | ||
126 | Instructs the kernel to retrieve all input and feature report values | ||
127 | from the device. At this point, all the usage structures will contain | ||
128 | current values for the device, and will maintain it as the device | ||
129 | changes. Note that the use of this ioctl is unnecessary in general, | ||
130 | since later kernels automatically initialize the reports from the | ||
131 | device at attach time. | ||
132 | |||
133 | HIDIOCGNAME - string (variable length) | ||
134 | Gets the device name | ||
135 | |||
136 | HIDIOCGREPORT - struct hiddev_report_info (write) | ||
137 | Instructs the kernel to get a feature or input report from the device, | ||
138 | in order to selectively update the usage structures (in contrast to | ||
139 | INITREPORT). | ||
140 | |||
141 | HIDIOCSREPORT - struct hiddev_report_info (write) | ||
142 | Instructs the kernel to send a report to the device. This report can | ||
143 | be filled in by the user through HIDIOCSUSAGE calls (below) to fill in | ||
144 | individual usage values in the report before sending the report in full | ||
145 | to the device. | ||
146 | |||
147 | HIDIOCGREPORTINFO - struct hiddev_report_info (read/write) | ||
148 | Fills in a hiddev_report_info structure for the user. The report is | ||
149 | looked up by type (input, output or feature) and id, so these fields | ||
150 | must be filled in by the user. The ID can be absolute -- the actual | ||
151 | report id as reported by the device -- or relative -- | ||
152 | HID_REPORT_ID_FIRST for the first report, and (HID_REPORT_ID_NEXT | | ||
153 | report_id) for the next report after report_id. Without a-priori | ||
154 | information about report ids, the right way to use this ioctl is to | ||
155 | use the relative IDs above to enumerate the valid IDs. The ioctl | ||
156 | returns non-zero when there is no more next ID. The real report ID is | ||
157 | filled into the returned hiddev_report_info structure. | ||
158 | |||
159 | HIDIOCGFIELDINFO - struct hiddev_field_info (read/write) | ||
160 | Returns the field information associated with a report in a | ||
161 | hiddev_field_info structure. The user must fill in report_id and | ||
162 | report_type in this structure, as above. The field_index should also | ||
163 | be filled in, which should be a number from 0 and maxfield-1, as | ||
164 | returned from a previous HIDIOCGREPORTINFO call. | ||
165 | |||
166 | HIDIOCGUCODE - struct hiddev_usage_ref (read/write) | ||
167 | Returns the usage_code in a hiddev_usage_ref structure, given that | ||
168 | given its report type, report id, field index, and index within the | ||
169 | field have already been filled into the structure. | ||
170 | |||
171 | HIDIOCGUSAGE - struct hiddev_usage_ref (read/write) | ||
172 | Returns the value of a usage in a hiddev_usage_ref structure. The | ||
173 | usage to be retrieved can be specified as above, or the user can | ||
174 | choose to fill in the report_type field and specify the report_id as | ||
175 | HID_REPORT_ID_UNKNOWN. In this case, the hiddev_usage_ref will be | ||
176 | filled in with the report and field information associated with this | ||
177 | usage if it is found. | ||
178 | |||
179 | HIDIOCSUSAGE - struct hiddev_usage_ref (write) | ||
180 | Sets the value of a usage in an output report. The user fills in | ||
181 | the hiddev_usage_ref structure as above, but additionally fills in | ||
182 | the value field. | ||
183 | |||
184 | HIDIOGCOLLECTIONINDEX - struct hiddev_usage_ref (write) | ||
185 | Returns the collection index associated with this usage. This | ||
186 | indicates where in the collection hierarchy this usage sits. | ||
187 | |||
188 | HIDIOCGFLAG - int (read) | ||
189 | HIDIOCSFLAG - int (write) | ||
190 | These operations respectively inspect and replace the mode flags | ||
191 | that influence the read() call above. The flags are as follows: | ||
192 | |||
193 | HIDDEV_FLAG_UREF - read() calls will now return | ||
194 | struct hiddev_usage_ref instead of struct hiddev_event. | ||
195 | This is a larger structure, but in situations where the | ||
196 | device has more than one usage in its reports with the | ||
197 | same usage code, this mode serves to resolve such | ||
198 | ambiguity. | ||
199 | |||
200 | HIDDEV_FLAG_REPORT - This flag can only be used in conjunction | ||
201 | with HIDDEV_FLAG_UREF. With this flag set, when the device | ||
202 | sends a report, a struct hiddev_usage_ref will be returned | ||
203 | to read() filled in with the report_type and report_id, but | ||
204 | with field_index set to FIELD_INDEX_NONE. This serves as | ||
205 | additional notification when the device has sent a report. | ||
diff --git a/Documentation/hid/hidraw.txt b/Documentation/hid/hidraw.txt new file mode 100644 index 000000000000..029e6cb9a7e8 --- /dev/null +++ b/Documentation/hid/hidraw.txt | |||
@@ -0,0 +1,119 @@ | |||
1 | HIDRAW - Raw Access to USB and Bluetooth Human Interface Devices | ||
2 | ================================================================== | ||
3 | |||
4 | The hidraw driver provides a raw interface to USB and Bluetooth Human | ||
5 | Interface Devices (HIDs). It differs from hiddev in that reports sent and | ||
6 | received are not parsed by the HID parser, but are sent to and received from | ||
7 | the device unmodified. | ||
8 | |||
9 | Hidraw should be used if the userspace application knows exactly how to | ||
10 | communicate with the hardware device, and is able to construct the HID | ||
11 | reports manually. This is often the case when making userspace drivers for | ||
12 | custom HID devices. | ||
13 | |||
14 | Hidraw is also useful for communicating with non-conformant HID devices | ||
15 | which send and receive data in a way that is inconsistent with their report | ||
16 | descriptors. Because hiddev parses reports which are sent and received | ||
17 | through it, checking them against the device's report descriptor, such | ||
18 | communication with these non-conformant devices is impossible using hiddev. | ||
19 | Hidraw is the only alternative, short of writing a custom kernel driver, for | ||
20 | these non-conformant devices. | ||
21 | |||
22 | A benefit of hidraw is that its use by userspace applications is independent | ||
23 | of the underlying hardware type. Currently, Hidraw is implemented for USB | ||
24 | and Bluetooth. In the future, as new hardware bus types are developed which | ||
25 | use the HID specification, hidraw will be expanded to add support for these | ||
26 | new bus types. | ||
27 | |||
28 | Hidraw uses a dynamic major number, meaning that udev should be relied on to | ||
29 | create hidraw device nodes. Udev will typically create the device nodes | ||
30 | directly under /dev (eg: /dev/hidraw0). As this location is distribution- | ||
31 | and udev rule-dependent, applications should use libudev to locate hidraw | ||
32 | devices attached to the system. There is a tutorial on libudev with a | ||
33 | working example at: | ||
34 | http://www.signal11.us/oss/udev/ | ||
35 | |||
36 | The HIDRAW API | ||
37 | --------------- | ||
38 | |||
39 | read() | ||
40 | ------- | ||
41 | read() will read a queued report received from the HID device. On USB | ||
42 | devices, the reports read using read() are the reports sent from the device | ||
43 | on the INTERRUPT IN endpoint. By default, read() will block until there is | ||
44 | a report available to be read. read() can be made non-blocking, by passing | ||
45 | the O_NONBLOCK flag to open(), or by setting the O_NONBLOCK flag using | ||
46 | fcntl(). | ||
47 | |||
48 | On a device which uses numbered reports, the first byte of the returned data | ||
49 | will be the report number; the report data follows, beginning in the second | ||
50 | byte. For devices which do not use numbered reports, the report data | ||
51 | will begin at the first byte. | ||
52 | |||
53 | write() | ||
54 | -------- | ||
55 | The write() function will write a report to the device. For USB devices, if | ||
56 | the device has an INTERRUPT OUT endpoint, the report will be sent on that | ||
57 | endpoint. If it does not, the report will be sent over the control endpoint, | ||
58 | using a SET_REPORT transfer. | ||
59 | |||
60 | The first byte of the buffer passed to write() should be set to the report | ||
61 | number. If the device does not use numbered reports, the first byte should | ||
62 | be set to 0. The report data itself should begin at the second byte. | ||
63 | |||
64 | ioctl() | ||
65 | -------- | ||
66 | Hidraw supports the following ioctls: | ||
67 | |||
68 | HIDIOCGRDESCSIZE: Get Report Descriptor Size | ||
69 | This ioctl will get the size of the device's report descriptor. | ||
70 | |||
71 | HIDIOCGRDESC: Get Report Descriptor | ||
72 | This ioctl returns the device's report descriptor using a | ||
73 | hidraw_report_descriptor struct. Make sure to set the size field of the | ||
74 | hidraw_report_descriptor struct to the size returned from HIDIOCGRDESCSIZE. | ||
75 | |||
76 | HIDIOCGRAWINFO: Get Raw Info | ||
77 | This ioctl will return a hidraw_devinfo struct containing the bus type, the | ||
78 | vendor ID (VID), and product ID (PID) of the device. The bus type can be one | ||
79 | of: | ||
80 | BUS_USB | ||
81 | BUS_HIL | ||
82 | BUS_BLUETOOTH | ||
83 | BUS_VIRTUAL | ||
84 | which are defined in linux/input.h. | ||
85 | |||
86 | HIDIOCGRAWNAME(len): Get Raw Name | ||
87 | This ioctl returns a string containing the vendor and product strings of | ||
88 | the device. The returned string is Unicode, UTF-8 encoded. | ||
89 | |||
90 | HIDIOCGRAWPHYS(len): Get Physical Address | ||
91 | This ioctl returns a string representing the physical address of the device. | ||
92 | For USB devices, the string contains the physical path to the device (the | ||
93 | USB controller, hubs, ports, etc). For Bluetooth devices, the string | ||
94 | contains the hardware (MAC) address of the device. | ||
95 | |||
96 | HIDIOCSFEATURE(len): Send a Feature Report | ||
97 | This ioctl will send a feature report to the device. Per the HID | ||
98 | specification, feature reports are always sent using the control endpoint. | ||
99 | Set the first byte of the supplied buffer to the report number. For devices | ||
100 | which do not use numbered reports, set the first byte to 0. The report data | ||
101 | begins in the second byte. Make sure to set len accordingly, to one more | ||
102 | than the length of the report (to account for the report number). | ||
103 | |||
104 | HIDIOCGFEATURE(len): Get a Feature Report | ||
105 | This ioctl will request a feature report from the device using the control | ||
106 | endpoint. The first byte of the supplied buffer should be set to the report | ||
107 | number of the requested report. For devices which do not use numbered | ||
108 | reports, set the first byte to 0. The report will be returned starting at | ||
109 | the first byte of the buffer (ie: the report number is not returned). | ||
110 | |||
111 | Example | ||
112 | --------- | ||
113 | In samples/, find hid-example.c, which shows examples of read(), write(), | ||
114 | and all the ioctls for hidraw. The code may be used by anyone for any | ||
115 | purpose, and can serve as a starting point for developing applications using | ||
116 | hidraw. | ||
117 | |||
118 | Document by: | ||
119 | Alan Ott <alan@signal11.us>, Signal 11 Software | ||