source: mainline/uspace/lib/usbdev/src/pipesinit.c@ 83fb72e

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 83fb72e was 6b433a8, checked in by Salmelu <salmelu@…>, 8 years ago

Isochronous transfers - endpoint initialization

  • Property mode set to 100644
File size: 13.0 KB
Line 
1/*
2 * Copyright (c) 2011 Vojtech Horky
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup libusbdev
30 * @{
31 */
32/** @file
33 * Non trivial initialization of endpoint pipes.
34 *
35 */
36#include <usb/dev/pipes.h>
37#include <usb/dev/dp.h>
38#include <usb/dev/request.h>
39#include <usb/usb.h>
40#include <usb/debug.h>
41#include <usb/descriptor.h>
42
43#include <assert.h>
44#include <errno.h>
45
46#define DEV_DESCR_MAX_PACKET_SIZE_OFFSET 7
47
48#define NESTING(parentname, childname) \
49 { \
50 .child = USB_DESCTYPE_##childname, \
51 .parent = USB_DESCTYPE_##parentname, \
52 }
53#define LAST_NESTING { -1, -1 }
54
55/** Nesting pairs of standard descriptors. */
56static const usb_dp_descriptor_nesting_t descriptor_nesting[] = {
57 NESTING(CONFIGURATION, INTERFACE),
58 NESTING(INTERFACE, ENDPOINT),
59 NESTING(INTERFACE, HUB),
60 NESTING(INTERFACE, HID),
61 NESTING(HID, HID_REPORT),
62 NESTING(ENDPOINT, SSPEED_EP_COMPANION),
63 LAST_NESTING
64};
65
66/** Tells whether given descriptor is of endpoint type.
67 *
68 * @param descriptor Descriptor in question.
69 * @return Whether the given descriptor is endpoint descriptor.
70 */
71static inline bool is_endpoint_descriptor(const uint8_t *descriptor)
72{
73 return descriptor[1] == USB_DESCTYPE_ENDPOINT;
74}
75
76/** Tells whether given descriptor is of superspeed companion type.
77 *
78 * @param descriptor Descriptor in question.
79 * @return Whether the given descriptor is superspeed companion descriptor.
80 */
81static inline bool is_superspeed_companion_descriptor(const uint8_t *descriptor)
82{
83 return descriptor[1] == USB_DESCTYPE_SSPEED_EP_COMPANION;
84}
85
86/** Tells whether found endpoint corresponds to endpoint described by user.
87 *
88 * @param wanted Endpoint description as entered by driver author.
89 * @param found Endpoint description obtained from endpoint descriptor.
90 * @return Whether the @p found descriptor fits the @p wanted descriptor.
91 */
92static bool endpoint_fits_description(const usb_endpoint_description_t *wanted,
93 const usb_endpoint_description_t *found)
94{
95#define _SAME(fieldname) ((wanted->fieldname) == (found->fieldname))
96
97 if (!_SAME(direction)) {
98 return false;
99 }
100
101 if (!_SAME(transfer_type)) {
102 return false;
103 }
104
105 if ((wanted->interface_class >= 0) && !_SAME(interface_class)) {
106 return false;
107 }
108
109 if ((wanted->interface_subclass >= 0) && !_SAME(interface_subclass)) {
110 return false;
111 }
112
113 if ((wanted->interface_protocol >= 0) && !_SAME(interface_protocol)) {
114 return false;
115 }
116
117#undef _SAME
118
119 return true;
120}
121
122/** Find endpoint mapping for a found endpoint.
123 *
124 * @param mapping Endpoint mapping list.
125 * @param mapping_count Number of endpoint mappings in @p mapping.
126 * @param found_endpoint Description of found endpoint.
127 * @param interface_number Number of currently processed interface.
128 * @return Endpoint mapping corresponding to @p found_endpoint.
129 * @retval NULL No corresponding endpoint found.
130 */
131static usb_endpoint_mapping_t *find_endpoint_mapping(
132 usb_endpoint_mapping_t *mapping, size_t mapping_count,
133 const usb_endpoint_description_t *found_endpoint,
134 int interface_number, int interface_setting)
135{
136 while (mapping_count > 0) {
137 bool interface_number_fits = (mapping->interface_no < 0)
138 || (mapping->interface_no == interface_number);
139
140 bool interface_setting_fits = (mapping->interface_setting < 0)
141 || (mapping->interface_setting == interface_setting);
142
143 bool endpoint_descriptions_fits = endpoint_fits_description(
144 mapping->description, found_endpoint);
145
146 if (interface_number_fits
147 && interface_setting_fits
148 && endpoint_descriptions_fits) {
149 return mapping;
150 }
151
152 mapping++;
153 mapping_count--;
154 }
155 return NULL;
156}
157
158/** Process endpoint descriptor.
159 *
160 * @param mapping Endpoint mapping list.
161 * @param mapping_count Number of endpoint mappings in @p mapping.
162 * @param interface Interface descriptor under which belongs the @p endpoint.
163 * @param endpoint Endpoint descriptor.
164 * @param companion Superspeed companion descriptor.
165 * @return Error code.
166 */
167static int process_endpoint(
168 usb_endpoint_mapping_t *mapping, size_t mapping_count,
169 usb_standard_interface_descriptor_t *interface,
170 usb_standard_endpoint_descriptor_t *endpoint_desc,
171 usb_superspeed_endpoint_companion_descriptor_t *companion_desc,
172 usb_dev_session_t *bus_session)
173{
174
175 /*
176 * Get endpoint characteristics.
177 */
178
179 /* Actual endpoint number is in bits 0..3 */
180 const usb_endpoint_t ep_no = endpoint_desc->endpoint_address & 0x0F;
181
182 const usb_endpoint_description_t description = {
183 /* Endpoint direction is set by bit 7 */
184 .direction = (endpoint_desc->endpoint_address & 128)
185 ? USB_DIRECTION_IN : USB_DIRECTION_OUT,
186 /* Transfer type is in bits 0..2 and
187 * the enum values corresponds 1:1 */
188 .transfer_type = endpoint_desc->attributes & 3,
189
190 /* Get interface characteristics. */
191 .interface_class = interface->interface_class,
192 .interface_subclass = interface->interface_subclass,
193 .interface_protocol = interface->interface_protocol,
194 };
195
196 /*
197 * Find the most fitting mapping and initialize the pipe.
198 */
199 usb_endpoint_mapping_t *ep_mapping = find_endpoint_mapping(mapping,
200 mapping_count, &description,
201 interface->interface_number, interface->alternate_setting);
202 if (ep_mapping == NULL) {
203 return ENOENT;
204 }
205
206 if (ep_mapping->present) {
207 return EEXIST;
208 }
209
210 unsigned max_burst = 0;
211 unsigned max_streams = 0;
212 unsigned bytes_per_interval = 0;
213 unsigned mult = 0;
214 if(companion_desc) {
215 max_burst = companion_desc->max_burst;
216 max_streams = SS_COMPANION_MAX_STREAMS(companion_desc->attributes);
217 bytes_per_interval = companion_desc->bytes_per_interval;
218 mult = SS_COMPANION_MULT(companion_desc->attributes);
219 }
220
221 // FIXME: USB2 packets and USB3 max_burst are probably the same thing
222 // See 4.14.2.1.1 of XHCI specification -> possibly refactor into one somehow-named field
223 int rc = usb_pipe_initialize(&ep_mapping->pipe,
224 ep_no, description.transfer_type,
225 ED_MPS_PACKET_SIZE_GET(
226 uint16_usb2host(endpoint_desc->max_packet_size)),
227 description.direction, ED_MPS_TRANS_OPPORTUNITIES_GET(
228 uint16_usb2host(endpoint_desc->max_packet_size)),
229 max_burst, max_streams, bytes_per_interval, mult, bus_session);
230 if (rc != EOK) {
231 return rc;
232 }
233
234 ep_mapping->present = true;
235 ep_mapping->descriptor = endpoint_desc;
236 ep_mapping->companion_descriptor = companion_desc;
237 ep_mapping->interface = interface;
238
239 return EOK;
240}
241
242/** Process whole USB interface.
243 *
244 * @param mapping Endpoint mapping list.
245 * @param mapping_count Number of endpoint mappings in @p mapping.
246 * @param parser Descriptor parser.
247 * @param parser_data Descriptor parser data.
248 * @param interface_descriptor Interface descriptor.
249 * @return Error code.
250 */
251static int process_interface(
252 usb_endpoint_mapping_t *mapping, size_t mapping_count,
253 const usb_dp_parser_t *parser, const usb_dp_parser_data_t *parser_data,
254 const uint8_t *interface_descriptor, usb_dev_session_t *bus_session)
255{
256 const uint8_t *descriptor = usb_dp_get_nested_descriptor(parser,
257 parser_data, interface_descriptor);
258
259 if (descriptor == NULL) {
260 return ENOENT;
261 }
262
263 do {
264 if (is_endpoint_descriptor(descriptor)) {
265 /* Check if companion descriptor is present too, it should immediatelly follow. */
266 const uint8_t *companion_desc = usb_dp_get_nested_descriptor(parser,
267 parser_data, descriptor);
268 if (companion_desc && !is_superspeed_companion_descriptor(companion_desc)) {
269 /* Not what we wanted, don't pass it further. */
270 companion_desc = NULL;
271 }
272
273 (void) process_endpoint(mapping, mapping_count,
274 (usb_standard_interface_descriptor_t *)
275 interface_descriptor,
276 (usb_standard_endpoint_descriptor_t *)
277 descriptor,
278 (usb_superspeed_endpoint_companion_descriptor_t *)
279 companion_desc,
280 bus_session);
281 }
282
283 descriptor = usb_dp_get_sibling_descriptor(parser, parser_data,
284 interface_descriptor, descriptor);
285 } while (descriptor != NULL);
286
287 return EOK;
288}
289
290/** Initialize endpoint pipes from configuration descriptor.
291 *
292 * The mapping array is expected to conform to following rules:
293 * - @c pipe must be uninitialized pipe
294 * - @c description must point to prepared endpoint description
295 * - @c descriptor does not need to be initialized (will be overwritten)
296 * - @c interface does not need to be initialized (will be overwritten)
297 * - @c present does not need to be initialized (will be overwritten)
298 *
299 * After processing the configuration descriptor, the mapping is updated
300 * in the following fashion:
301 * - @c present will be set to @c true when the endpoint was found in the
302 * configuration
303 * - @c descriptor will point inside the configuration descriptor to endpoint
304 * corresponding to given description (or NULL for not found descriptor)
305 * - @c interface will point inside the configuration descriptor to interface
306 * descriptor the endpoint @c descriptor belongs to (or NULL for not found
307 * descriptor)
308 * - @c pipe will be initialized when found, otherwise left untouched
309 * - @c description will be untouched under all circumstances
310 *
311 * @param mapping Endpoint mapping list.
312 * @param mapping_count Number of endpoint mappings in @p mapping.
313 * @param configuration_descriptor Full configuration descriptor (is expected
314 * to be in USB endianness: i.e. as-is after being retrieved from
315 * the device).
316 * @param configuration_descriptor_size Size of @p configuration_descriptor
317 * in bytes.
318 * @param connection Connection backing the endpoint pipes.
319 * @return Error code.
320 */
321int usb_pipe_initialize_from_configuration(
322 usb_endpoint_mapping_t *mapping, size_t mapping_count,
323 const uint8_t *config_descriptor, size_t config_descriptor_size,
324 usb_dev_session_t *bus_session)
325{
326 if (config_descriptor == NULL)
327 return EBADMEM;
328
329 if (config_descriptor_size <
330 sizeof(usb_standard_configuration_descriptor_t)) {
331 return ERANGE;
332 }
333
334 /* Go through the mapping and set all endpoints to not present. */
335 for (size_t i = 0; i < mapping_count; i++) {
336 mapping[i].present = false;
337 mapping[i].descriptor = NULL;
338 mapping[i].interface = NULL;
339 }
340
341 /* Prepare the descriptor parser. */
342 const usb_dp_parser_t dp_parser = {
343 .nesting = descriptor_nesting
344 };
345 const usb_dp_parser_data_t dp_data = {
346 .data = config_descriptor,
347 .size = config_descriptor_size,
348 };
349
350 /*
351 * Iterate through all interfaces.
352 */
353 const uint8_t *interface = usb_dp_get_nested_descriptor(&dp_parser,
354 &dp_data, config_descriptor);
355 if (interface == NULL) {
356 return ENOENT;
357 }
358 do {
359 (void) process_interface(mapping, mapping_count,
360 &dp_parser, &dp_data, interface, bus_session);
361 interface = usb_dp_get_sibling_descriptor(&dp_parser, &dp_data,
362 config_descriptor, interface);
363 } while (interface != NULL);
364
365 return EOK;
366}
367
368/** Probe default control pipe for max packet size.
369 *
370 * The function tries to get the correct value of max packet size several
371 * time before giving up.
372 *
373 * The session on the pipe shall not be started.
374 *
375 * @param pipe Default control pipe.
376 * @return Error code.
377 */
378int usb_pipe_probe_default_control(usb_pipe_t *pipe)
379{
380 assert(pipe);
381 static_assert(DEV_DESCR_MAX_PACKET_SIZE_OFFSET < CTRL_PIPE_MIN_PACKET_SIZE);
382
383 if ((pipe->desc.direction != USB_DIRECTION_BOTH) ||
384 (pipe->desc.transfer_type != USB_TRANSFER_CONTROL) ||
385 (pipe->desc.endpoint_no != 0)) {
386 return EINVAL;
387 }
388
389 uint8_t dev_descr_start[CTRL_PIPE_MIN_PACKET_SIZE];
390 size_t transferred_size;
391 int rc;
392 for (size_t attempt_var = 0; attempt_var < 3; ++attempt_var) {
393 rc = usb_request_get_descriptor(pipe, USB_REQUEST_TYPE_STANDARD,
394 USB_REQUEST_RECIPIENT_DEVICE, USB_DESCTYPE_DEVICE,
395 0, 0, dev_descr_start, CTRL_PIPE_MIN_PACKET_SIZE,
396 &transferred_size);
397 if (rc == EOK) {
398 if (transferred_size != CTRL_PIPE_MIN_PACKET_SIZE) {
399 rc = ELIMIT;
400 continue;
401 }
402 break;
403 }
404 }
405 if (rc != EOK) {
406 return rc;
407 }
408
409 pipe->desc.max_packet_size
410 = dev_descr_start[DEV_DESCR_MAX_PACKET_SIZE_OFFSET];
411
412 return EOK;
413}
414
415/**
416 * @}
417 */
Note: See TracBrowser for help on using the repository browser.