xref: /netbsd/share/man/man4/uhid.4 (revision 6550d01e)
1.\" $NetBSD: uhid.4,v 1.20 2008/04/30 13:10:54 martin Exp $
2.\"
3.\" Copyright (c) 1999, 2001 The NetBSD Foundation, Inc.
4.\" All rights reserved.
5.\"
6.\" This code is derived from software contributed to The NetBSD Foundation
7.\" by Lennart Augustsson.
8.\"
9.\" Redistribution and use in source and binary forms, with or without
10.\" modification, are permitted provided that the following conditions
11.\" are met:
12.\" 1. Redistributions of source code must retain the above copyright
13.\"    notice, this list of conditions and the following disclaimer.
14.\" 2. Redistributions in binary form must reproduce the above copyright
15.\"    notice, this list of conditions and the following disclaimer in the
16.\"    documentation and/or other materials provided with the distribution.
17.\"
18.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
19.\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
20.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21.\" PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
22.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28.\" POSSIBILITY OF SUCH DAMAGE.
29.\"
30.Dd November 22, 2005
31.Dt UHID 4
32.Os
33.Sh NAME
34.Nm uhid
35.Nd USB generic HID support
36.Sh SYNOPSIS
37.Cd "uhid* at uhidev? reportid ? flags N"
38.Sh DESCRIPTION
39The
40.Nm
41driver provides support for all HID (Human Interface Device) interfaces
42in USB devices that do not have a special driver.
43.Pp
44Normally the
45.Nm
46driver is used when no other HID driver attaches to a device.
47If
48.Dq flags 1
49is specified, the
50.Nm
51driver will instead attach with a very high priority and always be used.
52Together with the
53.Cd vendor
54and
55.Cd product
56locators on the
57.Xr uhidev 4
58driver this can be used to force the
59.Nm
60driver to be used for a certain device.
61.Pp
62The device handles the following
63.Xr ioctl 2
64calls:
65.Pp
66.Bl -tag -width indent
67.It Dv USB_GET_REPORT_ID (int)
68Get the report identifier used by this HID report.
69.It Dv USB_GET_REPORT_DESC (struct usb_ctl_report_desc)
70Get the HID report descriptor.
71Using this descriptor the exact layout and meaning of data to/from
72the device can be found.
73The report descriptor is delivered without any processing.
74.Bd -literal
75struct usb_ctl_report_desc {
76    int     ucrd_size;
77    u_char  ucrd_data[1024];	/* filled data size will vary */
78};
79.Ed
80.It Dv USB_SET_IMMED (int)
81Sets the device in a mode where each
82.Xr read 2
83will return the current value of the input report.
84Normally a
85.Xr read 2
86will only return the data that the device reports on its
87interrupt pipe.
88This call may fail if the device does not support this feature.
89.It Dv USB_GET_REPORT (struct usb_ctl_report)
90Get a report from the device without waiting for data on
91the interrupt pipe.
92The
93.Dv report
94field indicates which report is requested.
95It should be
96.Dv UHID_INPUT_REPORT ,
97.Dv UHID_OUTPUT_REPORT ,
98or
99.Dv UHID_FEATURE_REPORT .
100This call may fail if the device does not support this feature.
101.Bd -literal
102struct usb_ctl_report {
103	int     ucr_report;
104	u_char	ucr_data[1024];	/* used data size will vary */
105};
106.Ed
107.It Dv USB_SET_REPORT (struct usb_ctl_report)
108Set a report in the device.
109The
110.Dv report
111field indicates which report is to be set.
112It should be
113.Dv UHID_INPUT_REPORT ,
114.Dv UHID_OUTPUT_REPORT ,
115or
116.Dv UHID_FEATURE_REPORT .
117This call may fail if the device does not support this feature.
118.It Dv USB_GET_DEVICEINFO (struct usb_device_info)
119Get an information summary for the device.
120This call will not issue any USB transactions.
121.It Dv USB_GET_STRING_DESC (struct usb_string_desc)
122Get a string descriptor for the given language id and
123string index.
124.Bd -literal
125struct usb_string_desc {
126	int	usd_string_index;
127	int	usd_language_id;
128	usb_string_descriptor_t usd_desc;
129};
130.Ed
131.El
132.Pp
133Use
134.Xr read 2
135to get data from the device.
136Data should be read in chunks of the size prescribed by the report
137descriptor.
138.Pp
139Use
140.Xr write 2
141send data to the device.
142Data should be written in chunks of the size prescribed by the
143report descriptor.
144.Sh FILES
145.Bl -tag -width Pa
146.It Pa /dev/uhid?
147.El
148.Sh SEE ALSO
149.Xr usbhidaction 1 ,
150.Xr usbhidctl 1 ,
151.Xr uhidev 4 ,
152.Xr usb 4
153.Sh HISTORY
154The
155.Nm
156driver
157appeared in
158.Nx 1.4 .
159Support for the
160.Dv USB_GET_DEVICEINFO
161and
162.Dv USB_GET_STRING_DESC
163ioctls appeared in
164.Nx 2.0 .
165