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

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since c901632 was c901632, checked in by Ondřej Hlavatý <aearsis@…>, 8 years ago

usbdev: polling interval and interval is the same thing

  • Property mode set to 100644
File size: 12.2 KB
RevLine 
[93ef8f6]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
[160b75e]29/** @addtogroup libusbdev
[93ef8f6]30 * @{
31 */
32/** @file
[3538b0e]33 * Non trivial initialization of endpoint pipes.
[93ef8f6]34 *
35 */
[7d521e24]36#include <usb/dev/pipes.h>
37#include <usb/dev/dp.h>
38#include <usb/dev/request.h>
[c01987c]39#include <usb/usb.h>
[ec700c7]40#include <usb/debug.h>
[c01987c]41#include <usb/descriptor.h>
42
[93ef8f6]43#include <assert.h>
[c01987c]44#include <errno.h>
[93ef8f6]45
[206f71a]46#define DEV_DESCR_MAX_PACKET_SIZE_OFFSET 7
47
[93ef8f6]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. */
[3ddbd38]56static const usb_dp_descriptor_nesting_t descriptor_nesting[] = {
[93ef8f6]57 NESTING(CONFIGURATION, INTERFACE),
58 NESTING(INTERFACE, ENDPOINT),
59 NESTING(INTERFACE, HUB),
60 NESTING(INTERFACE, HID),
61 NESTING(HID, HID_REPORT),
[ec700c7]62 NESTING(ENDPOINT, SSPEED_EP_COMPANION),
[93ef8f6]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 */
[8a121b1]71static inline bool is_endpoint_descriptor(const uint8_t *descriptor)
[93ef8f6]72{
73 return descriptor[1] == USB_DESCTYPE_ENDPOINT;
74}
75
[ec700c7]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
[93ef8f6]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,
[8a121b1]93 const usb_endpoint_description_t *found)
[93ef8f6]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.
[18cb870]127 * @param interface_number Number of currently processed interface.
[93ef8f6]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,
[8a121b1]133 const usb_endpoint_description_t *found_endpoint,
[159b91f4]134 int interface_number, int interface_setting)
[93ef8f6]135{
136 while (mapping_count > 0) {
[18cb870]137 bool interface_number_fits = (mapping->interface_no < 0)
138 || (mapping->interface_no == interface_number);
139
[159b91f4]140 bool interface_setting_fits = (mapping->interface_setting < 0)
141 || (mapping->interface_setting == interface_setting);
142
[18cb870]143 bool endpoint_descriptions_fits = endpoint_fits_description(
144 mapping->description, found_endpoint);
145
[159b91f4]146 if (interface_number_fits
147 && interface_setting_fits
148 && endpoint_descriptions_fits) {
[93ef8f6]149 return mapping;
150 }
151
152 mapping++;
153 mapping_count--;
154 }
155 return NULL;
156}
157
[86650db]158static void parse_endpoint_descriptors(usb_endpoint_desc_t *ep_desc,
159 usb_standard_endpoint_descriptor_t *endpoint_desc,
160 usb_superspeed_endpoint_companion_descriptor_t *companion_desc)
161{
162 *ep_desc = (usb_endpoint_desc_t) {
163 /* Actual endpoint number is in bits 0..3 */
164 .endpoint_no = endpoint_desc->endpoint_address & 0x0F,
165 /* Transfer type is in bits 0..2 and
166 * the enum values corresponds 1:1 */
167 .transfer_type = endpoint_desc->attributes & 3,
168 /* Endpoint direction is set by bit 7 */
169 .direction = (endpoint_desc->endpoint_address & 128)
170 ? USB_DIRECTION_IN : USB_DIRECTION_OUT,
171 // FIXME: USB2 max_packet_size is limited to 1023 bytes, 1024+ doesn't work for USB3
172 // See 4.14.2.1.1 of XHCI specification -> possibly refactor into one somehow-named field
173 .max_packet_size
174 = ED_MPS_PACKET_SIZE_GET(uint16_usb2host(endpoint_desc->max_packet_size)),
175 .interval = endpoint_desc->poll_interval,
176 // FIXME: USB2 packets and USB3 max_burst are probably the same thing
177 .packets = ED_MPS_TRANS_OPPORTUNITIES_GET(uint16_usb2host(endpoint_desc->max_packet_size)),
178 };
179
180 if (companion_desc) {
181 ep_desc->usb3 = (usb3_endpoint_desc_t) {
182 .max_burst = companion_desc->max_burst,
183 .max_streams
184 = SS_COMPANION_MAX_STREAMS(companion_desc->attributes),
185 .bytes_per_interval
186 = companion_desc->bytes_per_interval,
187 .mult = SS_COMPANION_MULT(companion_desc->attributes),
188 };
189 }
190}
191
192
[93ef8f6]193/** Process endpoint descriptor.
194 *
195 * @param mapping Endpoint mapping list.
196 * @param mapping_count Number of endpoint mappings in @p mapping.
197 * @param interface Interface descriptor under which belongs the @p endpoint.
198 * @param endpoint Endpoint descriptor.
[ec700c7]199 * @param companion Superspeed companion descriptor.
[93ef8f6]200 * @return Error code.
201 */
202static int process_endpoint(
203 usb_endpoint_mapping_t *mapping, size_t mapping_count,
204 usb_standard_interface_descriptor_t *interface,
[48f0f73a]205 usb_standard_endpoint_descriptor_t *endpoint_desc,
[ec700c7]206 usb_superspeed_endpoint_companion_descriptor_t *companion_desc,
[d93f5afb]207 usb_dev_session_t *bus_session)
[93ef8f6]208{
209
210 /*
211 * Get endpoint characteristics.
212 */
[86650db]213 usb_endpoint_desc_t ep_desc;
214 parse_endpoint_descriptors(&ep_desc, endpoint_desc, companion_desc);
[8a121b1]215
216 const usb_endpoint_description_t description = {
[86650db]217 .direction = ep_desc.direction,
218 .transfer_type = ep_desc.transfer_type,
[8a121b1]219
220 /* Get interface characteristics. */
221 .interface_class = interface->interface_class,
222 .interface_subclass = interface->interface_subclass,
223 .interface_protocol = interface->interface_protocol,
224 };
[93ef8f6]225
226 /*
227 * Find the most fitting mapping and initialize the pipe.
228 */
229 usb_endpoint_mapping_t *ep_mapping = find_endpoint_mapping(mapping,
[159b91f4]230 mapping_count, &description,
231 interface->interface_number, interface->alternate_setting);
[93ef8f6]232 if (ep_mapping == NULL) {
233 return ENOENT;
234 }
235
236 if (ep_mapping->present) {
[8a637a4]237 return EEXIST;
[93ef8f6]238 }
239
[9e5b162]240 int err = usb_pipe_initialize(&ep_mapping->pipe, bus_session, &ep_desc);
241 if (err)
242 return err;
[93ef8f6]243
244 ep_mapping->present = true;
[48f0f73a]245 ep_mapping->descriptor = endpoint_desc;
[ec700c7]246 ep_mapping->companion_descriptor = companion_desc;
[9d4579e]247 ep_mapping->interface = interface;
[93ef8f6]248
249 return EOK;
250}
251
252/** Process whole USB interface.
253 *
254 * @param mapping Endpoint mapping list.
255 * @param mapping_count Number of endpoint mappings in @p mapping.
256 * @param parser Descriptor parser.
257 * @param parser_data Descriptor parser data.
258 * @param interface_descriptor Interface descriptor.
259 * @return Error code.
260 */
261static int process_interface(
262 usb_endpoint_mapping_t *mapping, size_t mapping_count,
[7c95d6f5]263 const usb_dp_parser_t *parser, const usb_dp_parser_data_t *parser_data,
[8582076]264 const uint8_t *interface_descriptor, usb_dev_session_t *bus_session)
[93ef8f6]265{
[8a121b1]266 const uint8_t *descriptor = usb_dp_get_nested_descriptor(parser,
[93ef8f6]267 parser_data, interface_descriptor);
268
269 if (descriptor == NULL) {
270 return ENOENT;
271 }
272
273 do {
274 if (is_endpoint_descriptor(descriptor)) {
[ec700c7]275 /* Check if companion descriptor is present too, it should immediatelly follow. */
276 const uint8_t *companion_desc = usb_dp_get_nested_descriptor(parser,
277 parser_data, descriptor);
278 if (companion_desc && !is_superspeed_companion_descriptor(companion_desc)) {
279 /* Not what we wanted, don't pass it further. */
280 companion_desc = NULL;
281 }
282
[93ef8f6]283 (void) process_endpoint(mapping, mapping_count,
284 (usb_standard_interface_descriptor_t *)
285 interface_descriptor,
286 (usb_standard_endpoint_descriptor_t *)
287 descriptor,
[ec700c7]288 (usb_superspeed_endpoint_companion_descriptor_t *)
289 companion_desc,
[8582076]290 bus_session);
[93ef8f6]291 }
292
293 descriptor = usb_dp_get_sibling_descriptor(parser, parser_data,
294 interface_descriptor, descriptor);
295 } while (descriptor != NULL);
296
297 return EOK;
298}
299
300/** Initialize endpoint pipes from configuration descriptor.
301 *
302 * The mapping array is expected to conform to following rules:
[b77931d]303 * - @c pipe must be uninitialized pipe
[93ef8f6]304 * - @c description must point to prepared endpoint description
305 * - @c descriptor does not need to be initialized (will be overwritten)
[9d4579e]306 * - @c interface does not need to be initialized (will be overwritten)
[93ef8f6]307 * - @c present does not need to be initialized (will be overwritten)
308 *
309 * After processing the configuration descriptor, the mapping is updated
310 * in the following fashion:
311 * - @c present will be set to @c true when the endpoint was found in the
312 * configuration
313 * - @c descriptor will point inside the configuration descriptor to endpoint
[1110ebd]314 * corresponding to given description (or NULL for not found descriptor)
[9d4579e]315 * - @c interface will point inside the configuration descriptor to interface
316 * descriptor the endpoint @c descriptor belongs to (or NULL for not found
317 * descriptor)
[93ef8f6]318 * - @c pipe will be initialized when found, otherwise left untouched
319 * - @c description will be untouched under all circumstances
320 *
321 * @param mapping Endpoint mapping list.
322 * @param mapping_count Number of endpoint mappings in @p mapping.
323 * @param configuration_descriptor Full configuration descriptor (is expected
324 * to be in USB endianness: i.e. as-is after being retrieved from
325 * the device).
326 * @param configuration_descriptor_size Size of @p configuration_descriptor
327 * in bytes.
328 * @param connection Connection backing the endpoint pipes.
329 * @return Error code.
330 */
[3954a63b]331int usb_pipe_initialize_from_configuration(
[93ef8f6]332 usb_endpoint_mapping_t *mapping, size_t mapping_count,
[7c95d6f5]333 const uint8_t *config_descriptor, size_t config_descriptor_size,
[d93f5afb]334 usb_dev_session_t *bus_session)
[93ef8f6]335{
[58563585]336 if (config_descriptor == NULL)
[93ef8f6]337 return EBADMEM;
[816f5f4]338
[58563585]339 if (config_descriptor_size <
340 sizeof(usb_standard_configuration_descriptor_t)) {
[93ef8f6]341 return ERANGE;
342 }
343
[b77931d]344 /* Go through the mapping and set all endpoints to not present. */
345 for (size_t i = 0; i < mapping_count; i++) {
[93ef8f6]346 mapping[i].present = false;
347 mapping[i].descriptor = NULL;
[9d4579e]348 mapping[i].interface = NULL;
[93ef8f6]349 }
350
[b77931d]351 /* Prepare the descriptor parser. */
[7c95d6f5]352 const usb_dp_parser_t dp_parser = {
[93ef8f6]353 .nesting = descriptor_nesting
354 };
[7c95d6f5]355 const usb_dp_parser_data_t dp_data = {
356 .data = config_descriptor,
357 .size = config_descriptor_size,
[93ef8f6]358 };
359
360 /*
361 * Iterate through all interfaces.
362 */
[8a121b1]363 const uint8_t *interface = usb_dp_get_nested_descriptor(&dp_parser,
[7c95d6f5]364 &dp_data, config_descriptor);
[93ef8f6]365 if (interface == NULL) {
366 return ENOENT;
367 }
368 do {
369 (void) process_interface(mapping, mapping_count,
[8582076]370 &dp_parser, &dp_data, interface, bus_session);
[93ef8f6]371 interface = usb_dp_get_sibling_descriptor(&dp_parser, &dp_data,
[7c95d6f5]372 config_descriptor, interface);
[93ef8f6]373 } while (interface != NULL);
374
375 return EOK;
376}
377
378/**
379 * @}
380 */
Note: See TracBrowser for help on using the repository browser.