Merge remote-tracking branch 'origin/master'
[unleashed/lotheac.git] / share / man / man9e / usba_hcdi_pipe_intr_xfer.9e
blob086193b298f858ae363a75918aec9215964a3624
1 .\"
2 .\" This file and its contents are supplied under the terms of the
3 .\" Common Development and Distribution License ("CDDL"), version 1.0.
4 .\" You may only use this file in accordance with the terms of version
5 .\" 1.0 of the CDDL.
6 .\"
7 .\" A full copy of the text of the CDDL should have accompanied this
8 .\" source.  A copy of the CDDL is also available via the Internet at
9 .\" http://www.illumos.org/license/CDDL.
10 .\"
11 .\"
12 .\" Copyright 2016 Joyent, Inc.
13 .\"
14 .Dd Dec 22, 2016
15 .Dt USBA_HCDI_PIPE_INTR_XFER 9E
16 .Os
17 .Sh NAME
18 .Nm usba_hcdi_pipe_intr_xfer
19 .Nd perform a USB interrupt transfer
20 .Sh SYNOPSIS
21 .In sys/usb/usba/hcdi.h
22 .Ft int
23 .Fo prefix_hcdi_pipe_intr_xfer
24 .Fa "usba_pipe_handle_data_t *ph"
25 .Fa "usb_intr_req_t *uirp"
26 .Fa "usb_flags_t usb_flags"
27 .Fc
28 .Sh INTERFACE LEVEL
29 .Sy Volatile -
30 illumos USB HCD private function
31 .Pp
32 This is a private function that is not part of the stable DDI.
33 It may be removed or changed at any time.
34 .Sh PARAMETERS
35 .Bl -tag -width Fa
36 .It Fa ph
37 A pointer to a USB pipe handle as defined in
38 .Xr usba_pipe_handle_data 9S .
39 .It Fa uirp
40 A pointer to a USB interrupt transfer request.
41 The structure's members are documented in
42 .Xr usb_intr_req 9S .
43 .It Fa usb_flags
44 Flags which describe how allocations should be performed.
45 Valid flags are:
46 .Bl -tag -width Sy
47 .It Sy USB_FLAGS_NOSLEEP
48 Do not block waiting for memory.
49 If memory is not available the allocation will fail.
50 .It Sy USB_FLAGS_SLEEP
51 Perform a blocking allocation.
52 If memory is not available, the function will wait until memory is made
53 available.
54 .Pp
55 Note, the request may still fail even if
56 .Sy USB_FLAGS_SLEEP
57 is specified.
58 .El
59 .El
60 .Sh DESCRIPTION
61 The
62 .Fn usba_hcdi_pipe_intr_xfer
63 entry point is used to initiate an
64 .Em asynchronous
65 USB interrupt transfer on the pipe
66 .Fa ph .
67 The specific USB interrupt transfer is provided in
68 .Fa uirp .
69 For more background on transfer types, see
70 .Xr usba_hcdi 9E .
71 .Pp
72 The host controller driver should first check the USB address of the
73 pipe handle.
74 It may correspond to the root hub.
75 If it does, rather than initiating an I/O transfer, the driver may need to
76 emulate it.
77 .Pp
78 Unlike other transfers, interrupt transfers may be periodic.
79 If the transfer is meant to be a one-shot, then the
80 .Sy USB_ATTRS_ONE_XFER
81 flag will be set in the
82 .Sy intr_attributes
83 member of the
84 .Fa uirp
85 structure.
86 If the
87 .Sy USB_ATTRS_ONE_XFER
88 flag is not set, then the transfer begins a periodic transfer.
89 Periodic transfers have different handling and behavior.
90 .Pp
91 Interrupt transfers may send data to the device or receive data from the device.
92 A given interrupt endpoint is uni-directional.
93 The direction can be determined from the endpoint address based on the
94 .Sy p_ep
95 member of
96 .Fa ubrp .
97 See
98 .Xr usb_ep_descr 9S
99 for more information on how to determine the direction of the endpoint.
101 The device driver should allocate memory, whether memory suitable for a
102 DMA transfer or otherwise, to perform the transfer.
103 For all memory allocated, it should honor the values in
104 .Fa usb_flags
105 to determine whether or not it should block for allocations.
107 The length of the interrupt transfer and its data can be found in the
108 .Sy intr_len
110 .Sy intr_data
111 members of
112 .Fa uirp
113 respectively.
114  The
115 .Xr mblk 9S
116 structure that should not be used directly and data should be copied to
117 or from the data buffer that will go the controller.
119 Unlike bulk and control transfers, the
120 .Fa intr_data
121 member may not be allocated for interrupt-IN transfers.
122 In such cases, the device driver is required to allocate the message block
123 through something like
124 .Xr allocb 9F
125 and assign it to the
126 .Sy intr_data
127 member.
129 If the driver successfully schedules the I/O, then it should return
130 .Sy USB_SUCCESS .
131 When the I/O completes, it must call
132 .Xr usba_hcdi_cb 9F
133 with
134 .Fa uirp .
135 If the transfer fails, but the driver returned
136 .Sy USB_SUCCESS ,
137 it still must call
138 .Xr usba_hcdi_cb 9F
139 and should specify an error there.
141 It is the driver's responsibility to time out one-shot interrupt transfer
142 requests.
143 If the timeout in the request as indicated in the
144 .Sy intr_timeout
145 member of
146 .Fa uirp
147 is set to zero, then the driver should use the USBA default timeout of
148 .Sy HCDI_DEFAULT_TIMEOUT .
149 All timeout values are in
150 .Em seconds .
151 .Ss Periodic Transfers
152 When the
153 .Sy USB_ATTRS_ONE_XFER
154 flag is not present, it indicates that a periodic interrupt transfer is
155 being initiated.
156 Once a periodic interrupt transfer is initiated, every time data is received the
157 driver should call
158 .Xr usba_hcdi_cb 9F
159 with the updated data.
161 When a periodic transfer is initiated, many controller drivers will
162 allocate multiple transfers up front and schedule them all.
163 Many drivers do this to ensure that data isn't lost between servicing the first
164 transfer and scheduling the next.
165 The number of such transfers used depends on the polling frequency specified in
166 the endpoint descriptor.
168 Unless an error occurs, the driver must not use the original interrupt
169 request,
170 .Fa uirp .
171 Instead, it should duplicate the request through the
172 .Xr usba_hcdi_dup_intr_req 9F
173 function before calling
174 .Xr usba_hcdi_cb 9F .
176 The driver should return the original transfer in one of the following
177 conditions:
178 .Bl -bullet
180 A pipe reset request came in from the
181 .Xr usba_hcdi_pipe_reset 9E
182 entry point.
184 A request to stop polling came in from the
185 .Xr usba_hcdi_pipe_stop_intr_polling 9E
186 entry point.
188 A request to close the pipe came in from the
189 .Xr usba_hcdi_pipe_close 9E
190 entry point.
192 An out of memory condition occurred.
193 The caller should call
194 .Xr usba_hcdi_cb 9F
195 with the code
196 .Sy USB_CR_NO_RESOURCES .
198 Some other transfer error occurred.
201 If the periodic interrupt transfer is for the root hub, the driver will
202 need to emulate the behavior of a hub as specified in the USB
203 specification.
204 For more information, see the
205 .Sx Root Hub Management
206 section in
207 .Xr usba_hcdi 9E .
208 .Ss Callback Handling
209 When the interrupt transfer completes, the driver should consider the
210 following items to determine what actions it should take on the
211 callback:
212 .Sy USB_SUCCESS .
213 Otherwise, it should return the appropriate USB error.
214 If uncertain, use
215 .Sy USB_FAILURE .
216 .Bl -bullet
218 If the transfer timed out, it should remove the transfer from the
219 outstanding list, queue the next transfer, and return the transfer back
220 to the OS with the error code
221 .Sy USB_CR_TIMEOUT
222 with
223 .Xr usba_hcdi_cb 9F .
225 If the transfer failed, it should find the appropriate error and call
226 .Xr usba_hcdi_cb 9F
227 with that error.
229 If the transfer succeeded, but less data was transferred than expected,
230 consult the
231 .Sy intr_attributes
232 member of the
233 .Fa uirp .
234 If the
235 .Sy USB_ATTRS_SHORT_XFER_OK
236 flag is not present, then the driver should call
237 .Xr usba_hcdi_cb 9F
238 with the error
239 .Sy USB_CR_DATA_UNDERRUN .
241 If the transfer was going to the host, then the driver should copy the
242 data into the transfer's message block and update the
243 .Sy b_wptr
244 member of the
245 .Xr mblk 9S .
247 If everything was successful, call
248 .Xr usba_hcdi_cb 9F
249 with the code
250 .Sy USB_CR_OK .
252 If this was a periodic transfer, it should reschedule the transfer.
254 .Sh RETURN VALUES
255 Upon successful completion, the
256 .Fn usba_hcdi_pipe_intr_xfer
257 function should return
258 function should return
259 .Sy USB_SUCCESS .
260 Otherwise, it should return the appropriate USB error.
261 If uncertain, use
262 .Sy USB_FAILURE .
263 .Sh SEE ALSO
264 .Xr usba_hcdi 9E ,
265 .Xr usba_hcdi_pipe_close 9E ,
266 .Xr usba_hcdi_pipe_reset 9E ,
267 .Xr usba_hcdi_pipe_stop_intr_polling 9E ,
268 .Xr allocb 9F ,
269 .Xr usba_hcdi_cb 9F ,
270 .Xr usba_hcdi_dup_intr_req 9F ,
271 .Xr mblk 9S ,
272 .Xr usb_ep_descr 9S ,
273 .Xr usb_intr_req 9S ,
274 .Xr usba_pipe_handle_data 9S