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

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 1a2227d was 1a2227d, checked in by Petr Manek <petr.manek@…>, 7 years ago

usbdev: endpoint mapping tolerates multiple endpoints of the same type

  • Property mode set to 100644
File size: 10.8 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 && !mapping->present) {
150 return mapping;
151 }
152
153 mapping++;
154 mapping_count--;
155 }
156
157 return NULL;
158}
159
160/** Process endpoint descriptor.
161 *
162 * @param mapping Endpoint mapping list.
163 * @param mapping_count Number of endpoint mappings in @p mapping.
164 * @param interface Interface descriptor under which belongs the @p endpoint.
165 * @param endpoint Endpoint descriptor.
166 * @param companion Superspeed companion descriptor.
167 * @return Error code.
168 */
169static int process_endpoint(
170 usb_endpoint_mapping_t *mapping, size_t mapping_count,
171 usb_standard_interface_descriptor_t *interface,
172 usb_standard_endpoint_descriptor_t *endpoint_desc,
173 usb_superspeed_endpoint_companion_descriptor_t *companion_desc,
174 usb_dev_session_t *bus_session)
175{
176
177 /*
178 * Get endpoint characteristics.
179 */
180 const usb_endpoint_description_t description = {
181 .transfer_type = USB_ED_GET_TRANSFER_TYPE(*endpoint_desc),
182 .direction = USB_ED_GET_DIR(*endpoint_desc),
183
184 /* Get interface characteristics. */
185 .interface_class = interface->interface_class,
186 .interface_subclass = interface->interface_subclass,
187 .interface_protocol = interface->interface_protocol,
188 };
189
190 /*
191 * Find the most fitting mapping and initialize the pipe.
192 */
193 usb_endpoint_mapping_t *ep_mapping = find_endpoint_mapping(mapping,
194 mapping_count, &description,
195 interface->interface_number, interface->alternate_setting);
196 if (ep_mapping == NULL) {
197 return ENOENT;
198 }
199
200 if (ep_mapping->present) {
201 return EEXIST;
202 }
203
204 int err = usb_pipe_initialize(&ep_mapping->pipe, bus_session);
205 if (err)
206 return err;
207
208 ep_mapping->present = true;
209 ep_mapping->descriptor = endpoint_desc;
210 ep_mapping->companion_descriptor = companion_desc;
211 ep_mapping->interface = interface;
212
213 return EOK;
214}
215
216/** Process whole USB interface.
217 *
218 * @param mapping Endpoint mapping list.
219 * @param mapping_count Number of endpoint mappings in @p mapping.
220 * @param parser Descriptor parser.
221 * @param parser_data Descriptor parser data.
222 * @param interface_descriptor Interface descriptor.
223 * @return Error code.
224 */
225static int process_interface(
226 usb_endpoint_mapping_t *mapping, size_t mapping_count,
227 const usb_dp_parser_t *parser, const usb_dp_parser_data_t *parser_data,
228 const uint8_t *interface_descriptor, usb_dev_session_t *bus_session)
229{
230 const uint8_t *descriptor = usb_dp_get_nested_descriptor(parser,
231 parser_data, interface_descriptor);
232
233 if (descriptor == NULL) {
234 return ENOENT;
235 }
236
237 do {
238 if (is_endpoint_descriptor(descriptor)) {
239 /* Check if companion descriptor is present too, it should immediatelly follow. */
240 const uint8_t *companion_desc = usb_dp_get_nested_descriptor(parser,
241 parser_data, descriptor);
242 if (companion_desc && !is_superspeed_companion_descriptor(companion_desc)) {
243 /* Not what we wanted, don't pass it further. */
244 companion_desc = NULL;
245 }
246
247 (void) process_endpoint(mapping, mapping_count,
248 (usb_standard_interface_descriptor_t *)
249 interface_descriptor,
250 (usb_standard_endpoint_descriptor_t *)
251 descriptor,
252 (usb_superspeed_endpoint_companion_descriptor_t *)
253 companion_desc,
254 bus_session);
255 }
256
257 descriptor = usb_dp_get_sibling_descriptor(parser, parser_data,
258 interface_descriptor, descriptor);
259 } while (descriptor != NULL);
260
261 return EOK;
262}
263
264/** Initialize endpoint pipes from configuration descriptor.
265 *
266 * The mapping array is expected to conform to following rules:
267 * - @c pipe must be uninitialized pipe
268 * - @c description must point to prepared endpoint description
269 * - @c descriptor does not need to be initialized (will be overwritten)
270 * - @c interface does not need to be initialized (will be overwritten)
271 * - @c present does not need to be initialized (will be overwritten)
272 *
273 * After processing the configuration descriptor, the mapping is updated
274 * in the following fashion:
275 * - @c present will be set to @c true when the endpoint was found in the
276 * configuration
277 * - @c descriptor will point inside the configuration descriptor to endpoint
278 * corresponding to given description (or NULL for not found descriptor)
279 * - @c interface will point inside the configuration descriptor to interface
280 * descriptor the endpoint @c descriptor belongs to (or NULL for not found
281 * descriptor)
282 * - @c pipe will be initialized when found, otherwise left untouched
283 * - @c description will be untouched under all circumstances
284 *
285 * @param mapping Endpoint mapping list.
286 * @param mapping_count Number of endpoint mappings in @p mapping.
287 * @param configuration_descriptor Full configuration descriptor (is expected
288 * to be in USB endianness: i.e. as-is after being retrieved from
289 * the device).
290 * @param configuration_descriptor_size Size of @p configuration_descriptor
291 * in bytes.
292 * @param connection Connection backing the endpoint pipes.
293 * @return Error code.
294 */
295int usb_pipe_initialize_from_configuration(
296 usb_endpoint_mapping_t *mapping, size_t mapping_count,
297 const uint8_t *config_descriptor, size_t config_descriptor_size,
298 usb_dev_session_t *bus_session)
299{
300 if (config_descriptor == NULL)
301 return EBADMEM;
302
303 if (config_descriptor_size <
304 sizeof(usb_standard_configuration_descriptor_t)) {
305 return ERANGE;
306 }
307
308 /* Go through the mapping and set all endpoints to not present. */
309 for (size_t i = 0; i < mapping_count; i++) {
310 mapping[i].present = false;
311 mapping[i].descriptor = NULL;
312 mapping[i].interface = NULL;
313 }
314
315 /* Prepare the descriptor parser. */
316 const usb_dp_parser_t dp_parser = {
317 .nesting = descriptor_nesting
318 };
319 const usb_dp_parser_data_t dp_data = {
320 .data = config_descriptor,
321 .size = config_descriptor_size,
322 };
323
324 /*
325 * Iterate through all interfaces.
326 */
327 const uint8_t *interface = usb_dp_get_nested_descriptor(&dp_parser,
328 &dp_data, config_descriptor);
329 if (interface == NULL) {
330 return ENOENT;
331 }
332 do {
333 (void) process_interface(mapping, mapping_count,
334 &dp_parser, &dp_data, interface, bus_session);
335 interface = usb_dp_get_sibling_descriptor(&dp_parser, &dp_data,
336 config_descriptor, interface);
337 } while (interface != NULL);
338
339 return EOK;
340}
341
342/**
343 * @}
344 */
Note: See TracBrowser for help on using the repository browser.