Mauro Carvalho Chehab | cca4786 | 2019-06-28 09:19:59 -0300 | [diff] [blame] | 1 | ================================================================ |
| 2 | HIDRAW - Raw Access to USB and Bluetooth Human Interface Devices |
| 3 | ================================================================ |
Alan Ott | c54ea49 | 2011-03-19 20:29:44 -0400 | [diff] [blame] | 4 | |
| 5 | The hidraw driver provides a raw interface to USB and Bluetooth Human |
| 6 | Interface Devices (HIDs). It differs from hiddev in that reports sent and |
| 7 | received are not parsed by the HID parser, but are sent to and received from |
| 8 | the device unmodified. |
| 9 | |
| 10 | Hidraw should be used if the userspace application knows exactly how to |
| 11 | communicate with the hardware device, and is able to construct the HID |
| 12 | reports manually. This is often the case when making userspace drivers for |
| 13 | custom HID devices. |
| 14 | |
| 15 | Hidraw is also useful for communicating with non-conformant HID devices |
| 16 | which send and receive data in a way that is inconsistent with their report |
| 17 | descriptors. Because hiddev parses reports which are sent and received |
| 18 | through it, checking them against the device's report descriptor, such |
| 19 | communication with these non-conformant devices is impossible using hiddev. |
| 20 | Hidraw is the only alternative, short of writing a custom kernel driver, for |
| 21 | these non-conformant devices. |
| 22 | |
| 23 | A benefit of hidraw is that its use by userspace applications is independent |
| 24 | of the underlying hardware type. Currently, Hidraw is implemented for USB |
| 25 | and Bluetooth. In the future, as new hardware bus types are developed which |
| 26 | use the HID specification, hidraw will be expanded to add support for these |
| 27 | new bus types. |
| 28 | |
| 29 | Hidraw uses a dynamic major number, meaning that udev should be relied on to |
| 30 | create hidraw device nodes. Udev will typically create the device nodes |
| 31 | directly under /dev (eg: /dev/hidraw0). As this location is distribution- |
| 32 | and udev rule-dependent, applications should use libudev to locate hidraw |
| 33 | devices attached to the system. There is a tutorial on libudev with a |
| 34 | working example at: |
Mauro Carvalho Chehab | cca4786 | 2019-06-28 09:19:59 -0300 | [diff] [blame] | 35 | |
Alan Ott | c54ea49 | 2011-03-19 20:29:44 -0400 | [diff] [blame] | 36 | http://www.signal11.us/oss/udev/ |
| 37 | |
| 38 | The HIDRAW API |
| 39 | --------------- |
| 40 | |
| 41 | read() |
| 42 | ------- |
| 43 | read() will read a queued report received from the HID device. On USB |
| 44 | devices, the reports read using read() are the reports sent from the device |
| 45 | on the INTERRUPT IN endpoint. By default, read() will block until there is |
| 46 | a report available to be read. read() can be made non-blocking, by passing |
| 47 | the O_NONBLOCK flag to open(), or by setting the O_NONBLOCK flag using |
| 48 | fcntl(). |
| 49 | |
| 50 | On a device which uses numbered reports, the first byte of the returned data |
| 51 | will be the report number; the report data follows, beginning in the second |
| 52 | byte. For devices which do not use numbered reports, the report data |
| 53 | will begin at the first byte. |
| 54 | |
| 55 | write() |
Mauro Carvalho Chehab | cca4786 | 2019-06-28 09:19:59 -0300 | [diff] [blame] | 56 | ------- |
Alan Ott | c54ea49 | 2011-03-19 20:29:44 -0400 | [diff] [blame] | 57 | The write() function will write a report to the device. For USB devices, if |
| 58 | the device has an INTERRUPT OUT endpoint, the report will be sent on that |
| 59 | endpoint. If it does not, the report will be sent over the control endpoint, |
| 60 | using a SET_REPORT transfer. |
| 61 | |
| 62 | The first byte of the buffer passed to write() should be set to the report |
| 63 | number. If the device does not use numbered reports, the first byte should |
| 64 | be set to 0. The report data itself should begin at the second byte. |
| 65 | |
| 66 | ioctl() |
Mauro Carvalho Chehab | cca4786 | 2019-06-28 09:19:59 -0300 | [diff] [blame] | 67 | ------- |
Alan Ott | c54ea49 | 2011-03-19 20:29:44 -0400 | [diff] [blame] | 68 | Hidraw supports the following ioctls: |
| 69 | |
Mauro Carvalho Chehab | cca4786 | 2019-06-28 09:19:59 -0300 | [diff] [blame] | 70 | HIDIOCGRDESCSIZE: |
| 71 | Get Report Descriptor Size |
| 72 | |
Alan Ott | c54ea49 | 2011-03-19 20:29:44 -0400 | [diff] [blame] | 73 | This ioctl will get the size of the device's report descriptor. |
| 74 | |
Mauro Carvalho Chehab | cca4786 | 2019-06-28 09:19:59 -0300 | [diff] [blame] | 75 | HIDIOCGRDESC: |
| 76 | Get Report Descriptor |
| 77 | |
Alan Ott | c54ea49 | 2011-03-19 20:29:44 -0400 | [diff] [blame] | 78 | This ioctl returns the device's report descriptor using a |
| 79 | hidraw_report_descriptor struct. Make sure to set the size field of the |
| 80 | hidraw_report_descriptor struct to the size returned from HIDIOCGRDESCSIZE. |
| 81 | |
Mauro Carvalho Chehab | cca4786 | 2019-06-28 09:19:59 -0300 | [diff] [blame] | 82 | HIDIOCGRAWINFO: |
| 83 | Get Raw Info |
| 84 | |
Alan Ott | c54ea49 | 2011-03-19 20:29:44 -0400 | [diff] [blame] | 85 | This ioctl will return a hidraw_devinfo struct containing the bus type, the |
| 86 | vendor ID (VID), and product ID (PID) of the device. The bus type can be one |
Mauro Carvalho Chehab | cca4786 | 2019-06-28 09:19:59 -0300 | [diff] [blame] | 87 | of:: |
| 88 | |
| 89 | - BUS_USB |
| 90 | - BUS_HIL |
| 91 | - BUS_BLUETOOTH |
| 92 | - BUS_VIRTUAL |
| 93 | |
Martin Kepplinger | 1e1f780 | 2017-03-12 12:54:21 +0100 | [diff] [blame] | 94 | which are defined in uapi/linux/input.h. |
Alan Ott | c54ea49 | 2011-03-19 20:29:44 -0400 | [diff] [blame] | 95 | |
Mauro Carvalho Chehab | cca4786 | 2019-06-28 09:19:59 -0300 | [diff] [blame] | 96 | HIDIOCGRAWNAME(len): |
| 97 | Get Raw Name |
| 98 | |
Alan Ott | c54ea49 | 2011-03-19 20:29:44 -0400 | [diff] [blame] | 99 | This ioctl returns a string containing the vendor and product strings of |
| 100 | the device. The returned string is Unicode, UTF-8 encoded. |
| 101 | |
Mauro Carvalho Chehab | cca4786 | 2019-06-28 09:19:59 -0300 | [diff] [blame] | 102 | HIDIOCGRAWPHYS(len): |
| 103 | Get Physical Address |
| 104 | |
Alan Ott | c54ea49 | 2011-03-19 20:29:44 -0400 | [diff] [blame] | 105 | This ioctl returns a string representing the physical address of the device. |
| 106 | For USB devices, the string contains the physical path to the device (the |
| 107 | USB controller, hubs, ports, etc). For Bluetooth devices, the string |
| 108 | contains the hardware (MAC) address of the device. |
| 109 | |
Mauro Carvalho Chehab | cca4786 | 2019-06-28 09:19:59 -0300 | [diff] [blame] | 110 | HIDIOCSFEATURE(len): |
| 111 | Send a Feature Report |
| 112 | |
Alan Ott | c54ea49 | 2011-03-19 20:29:44 -0400 | [diff] [blame] | 113 | This ioctl will send a feature report to the device. Per the HID |
| 114 | specification, feature reports are always sent using the control endpoint. |
| 115 | Set the first byte of the supplied buffer to the report number. For devices |
| 116 | which do not use numbered reports, set the first byte to 0. The report data |
| 117 | begins in the second byte. Make sure to set len accordingly, to one more |
| 118 | than the length of the report (to account for the report number). |
| 119 | |
Mauro Carvalho Chehab | cca4786 | 2019-06-28 09:19:59 -0300 | [diff] [blame] | 120 | HIDIOCGFEATURE(len): |
| 121 | Get a Feature Report |
| 122 | |
Alan Ott | c54ea49 | 2011-03-19 20:29:44 -0400 | [diff] [blame] | 123 | This ioctl will request a feature report from the device using the control |
| 124 | endpoint. The first byte of the supplied buffer should be set to the report |
| 125 | number of the requested report. For devices which do not use numbered |
| 126 | reports, set the first byte to 0. The report will be returned starting at |
| 127 | the first byte of the buffer (ie: the report number is not returned). |
| 128 | |
| 129 | Example |
Mauro Carvalho Chehab | cca4786 | 2019-06-28 09:19:59 -0300 | [diff] [blame] | 130 | ------- |
Alan Ott | c54ea49 | 2011-03-19 20:29:44 -0400 | [diff] [blame] | 131 | In samples/, find hid-example.c, which shows examples of read(), write(), |
| 132 | and all the ioctls for hidraw. The code may be used by anyone for any |
| 133 | purpose, and can serve as a starting point for developing applications using |
| 134 | hidraw. |
| 135 | |
| 136 | Document by: |
Mauro Carvalho Chehab | cca4786 | 2019-06-28 09:19:59 -0300 | [diff] [blame] | 137 | |
Alan Ott | c54ea49 | 2011-03-19 20:29:44 -0400 | [diff] [blame] | 138 | Alan Ott <alan@signal11.us>, Signal 11 Software |