Blame view

Documentation/hid/hidraw.rst 5.34 KB
cca478617   Mauro Carvalho Chehab   docs: hid: conver...
1
2
3
  ================================================================
  HIDRAW - Raw Access to USB and Bluetooth Human Interface Devices
  ================================================================
c54ea4918   Alan Ott   HID: Documentatio...
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
  
  The hidraw driver provides a raw interface to USB and Bluetooth Human
  Interface Devices (HIDs).  It differs from hiddev in that reports sent and
  received are not parsed by the HID parser, but are sent to and received from
  the device unmodified.
  
  Hidraw should be used if the userspace application knows exactly how to
  communicate with the hardware device, and is able to construct the HID
  reports manually.  This is often the case when making userspace drivers for
  custom HID devices.
  
  Hidraw is also useful for communicating with non-conformant HID devices
  which send and receive data in a way that is inconsistent with their report
  descriptors.  Because hiddev parses reports which are sent and received
  through it, checking them against the device's report descriptor, such
  communication with these non-conformant devices is impossible using hiddev.
  Hidraw is the only alternative, short of writing a custom kernel driver, for
  these non-conformant devices.
  
  A benefit of hidraw is that its use by userspace applications is independent
  of the underlying hardware type.  Currently, Hidraw is implemented for USB
  and Bluetooth.  In the future, as new hardware bus types are developed which
  use the HID specification, hidraw will be expanded to add support for these
  new bus types.
  
  Hidraw uses a dynamic major number, meaning that udev should be relied on to
  create hidraw device nodes.  Udev will typically create the device nodes
  directly under /dev (eg: /dev/hidraw0).  As this location is distribution-
  and udev rule-dependent, applications should use libudev to locate hidraw
  devices attached to the system.  There is a tutorial on libudev with a
  working example at:
cca478617   Mauro Carvalho Chehab   docs: hid: conver...
35

c54ea4918   Alan Ott   HID: Documentatio...
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
  	http://www.signal11.us/oss/udev/
  
  The HIDRAW API
  ---------------
  
  read()
  -------
  read() will read a queued report received from the HID device. On USB
  devices, the reports read using read() are the reports sent from the device
  on the INTERRUPT IN endpoint.  By default, read() will block until there is
  a report available to be read.  read() can be made non-blocking, by passing
  the O_NONBLOCK flag to open(), or by setting the O_NONBLOCK flag using
  fcntl().
  
  On a device which uses numbered reports, the first byte of the returned data
  will be the report number; the report data follows, beginning in the second
  byte.  For devices which do not use numbered reports, the report data
  will begin at the first byte.
  
  write()
cca478617   Mauro Carvalho Chehab   docs: hid: conver...
56
  -------
c54ea4918   Alan Ott   HID: Documentatio...
57
58
59
60
61
62
63
64
65
66
  The write() function will write a report to the device. For USB devices, if
  the device has an INTERRUPT OUT endpoint, the report will be sent on that
  endpoint. If it does not, the report will be sent over the control endpoint,
  using a SET_REPORT transfer.
  
  The first byte of the buffer passed to write() should be set to the report
  number.  If the device does not use numbered reports, the first byte should
  be set to 0. The report data itself should begin at the second byte.
  
  ioctl()
cca478617   Mauro Carvalho Chehab   docs: hid: conver...
67
  -------
c54ea4918   Alan Ott   HID: Documentatio...
68
  Hidraw supports the following ioctls:
cca478617   Mauro Carvalho Chehab   docs: hid: conver...
69
70
  HIDIOCGRDESCSIZE:
  	Get Report Descriptor Size
c54ea4918   Alan Ott   HID: Documentatio...
71
  This ioctl will get the size of the device's report descriptor.
cca478617   Mauro Carvalho Chehab   docs: hid: conver...
72
73
  HIDIOCGRDESC:
  	Get Report Descriptor
c54ea4918   Alan Ott   HID: Documentatio...
74
75
76
  This ioctl returns the device's report descriptor using a
  hidraw_report_descriptor struct.  Make sure to set the size field of the
  hidraw_report_descriptor struct to the size returned from HIDIOCGRDESCSIZE.
cca478617   Mauro Carvalho Chehab   docs: hid: conver...
77
78
  HIDIOCGRAWINFO:
  	Get Raw Info
c54ea4918   Alan Ott   HID: Documentatio...
79
80
  This ioctl will return a hidraw_devinfo struct containing the bus type, the
  vendor ID (VID), and product ID (PID) of the device. The bus type can be one
cca478617   Mauro Carvalho Chehab   docs: hid: conver...
81
82
83
84
85
86
  of::
  
  	- BUS_USB
  	- BUS_HIL
  	- BUS_BLUETOOTH
  	- BUS_VIRTUAL
1e1f780f8   Martin Kepplinger   Documentation: hi...
87
  which are defined in uapi/linux/input.h.
c54ea4918   Alan Ott   HID: Documentatio...
88

cca478617   Mauro Carvalho Chehab   docs: hid: conver...
89
90
  HIDIOCGRAWNAME(len):
  	Get Raw Name
c54ea4918   Alan Ott   HID: Documentatio...
91
92
  This ioctl returns a string containing the vendor and product strings of
  the device.  The returned string is Unicode, UTF-8 encoded.
cca478617   Mauro Carvalho Chehab   docs: hid: conver...
93
94
  HIDIOCGRAWPHYS(len):
  	Get Physical Address
c54ea4918   Alan Ott   HID: Documentatio...
95
96
97
98
  This ioctl returns a string representing the physical address of the device.
  For USB devices, the string contains the physical path to the device (the
  USB controller, hubs, ports, etc).  For Bluetooth devices, the string
  contains the hardware (MAC) address of the device.
cca478617   Mauro Carvalho Chehab   docs: hid: conver...
99
100
  HIDIOCSFEATURE(len):
  	Send a Feature Report
c54ea4918   Alan Ott   HID: Documentatio...
101
102
103
104
105
106
  This ioctl will send a feature report to the device.  Per the HID
  specification, feature reports are always sent using the control endpoint.
  Set the first byte of the supplied buffer to the report number.  For devices
  which do not use numbered reports, set the first byte to 0. The report data
  begins in the second byte. Make sure to set len accordingly, to one more
  than the length of the report (to account for the report number).
cca478617   Mauro Carvalho Chehab   docs: hid: conver...
107
108
  HIDIOCGFEATURE(len):
  	Get a Feature Report
c54ea4918   Alan Ott   HID: Documentatio...
109
110
111
112
113
114
115
  This ioctl will request a feature report from the device using the control
  endpoint.  The first byte of the supplied buffer should be set to the report
  number of the requested report.  For devices which do not use numbered
  reports, set the first byte to 0.  The report will be returned starting at
  the first byte of the buffer (ie: the report number is not returned).
  
  Example
cca478617   Mauro Carvalho Chehab   docs: hid: conver...
116
  -------
c54ea4918   Alan Ott   HID: Documentatio...
117
118
119
120
121
122
  In samples/, find hid-example.c, which shows examples of read(), write(),
  and all the ioctls for hidraw.  The code may be used by anyone for any
  purpose, and can serve as a starting point for developing applications using
  hidraw.
  
  Document by:
cca478617   Mauro Carvalho Chehab   docs: hid: conver...
123

c54ea4918   Alan Ott   HID: Documentatio...
124
  	Alan Ott <alan@signal11.us>, Signal 11 Software