source: mainline/uspace/lib/usbdev/src/devdrv.c@ f6b2a76b

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since f6b2a76b was f6b2a76b, checked in by Jan Vesely <jano.vesely@…>, 12 years ago

libusbdev: Add name getting wrapper.

  • Property mode set to 100644
File size: 15.9 KB
Line 
1/*
2 * Copyright (c) 2011 Vojtech Horky
3 * Copyright (c) 2011 Jan Vesely
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 *
10 * - Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * - Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * - The name of the author may not be used to endorse or promote products
16 * derived from this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29/** @addtogroup libusbdev
30 * @{
31 */
32/** @file
33 * USB device driver framework.
34 */
35#include <usb/dev/driver.h>
36#include <usb/dev/request.h>
37#include <usb/debug.h>
38#include <usb/dev.h>
39#include <errno.h>
40#include <str_error.h>
41#include <assert.h>
42
43static int generic_device_add(ddf_dev_t *);
44static int generic_device_remove(ddf_dev_t *);
45static int generic_device_gone(ddf_dev_t *);
46
47static driver_ops_t generic_driver_ops = {
48 .dev_add = generic_device_add,
49 .dev_remove = generic_device_remove,
50 .dev_gone = generic_device_gone,
51};
52static driver_t generic_driver = {
53 .driver_ops = &generic_driver_ops
54};
55
56static const usb_driver_t *driver = NULL;
57
58/** Main routine of USB device driver.
59 *
60 * Under normal conditions, this function never returns.
61 *
62 * @param drv USB device driver structure.
63 * @return Task exit status.
64 */
65int usb_driver_main(const usb_driver_t *drv)
66{
67 assert(drv != NULL);
68
69 /* Prepare the generic driver. */
70 generic_driver.name = drv->name;
71
72 driver = drv;
73
74 return ddf_driver_main(&generic_driver);
75}
76
77/** Count number of pipes the driver expects.
78 *
79 * @param drv USB driver.
80 * @return Number of pipes (excluding default control pipe).
81 */
82static inline size_t count_other_pipes(
83 const usb_endpoint_description_t **endpoints)
84{
85 size_t count;
86 for (count = 0; endpoints != NULL && endpoints[count] != NULL; ++count);
87 return count;
88}
89
90/** Callback when a new device is supposed to be controlled by this driver.
91 *
92 * This callback is a wrapper for USB specific version of @c device_add.
93 *
94 * @param gen_dev Device structure as prepared by DDF.
95 * @return Error code.
96 */
97int generic_device_add(ddf_dev_t *gen_dev)
98{
99 assert(driver);
100 assert(driver->ops);
101 assert(driver->ops->device_add);
102
103 /* Get place for driver data. */
104 usb_device_t *dev = ddf_dev_data_alloc(gen_dev, sizeof(usb_device_t));
105 if (dev == NULL) {
106 usb_log_error("USB device `%s' structure allocation failed.\n",
107 ddf_dev_get_name(gen_dev));
108 return ENOMEM;
109 }
110
111 /* Initialize generic USB driver data. */
112 const char *err_msg = NULL;
113 int rc = usb_device_init(dev, gen_dev, driver->endpoints, &err_msg);
114 if (rc != EOK) {
115 usb_log_error("USB device `%s' init failed (%s): %s.\n",
116 ddf_dev_get_name(gen_dev), err_msg, str_error(rc));
117 return rc;
118 }
119
120 /* Start USB driver specific initialization. */
121 rc = driver->ops->device_add(dev);
122 if (rc != EOK)
123 usb_device_deinit(dev);
124 return rc;
125}
126
127/** Callback when a device is supposed to be removed from the system.
128 *
129 * This callback is a wrapper for USB specific version of @c device_remove.
130 *
131 * @param gen_dev Device structure as prepared by DDF.
132 * @return Error code.
133 */
134int generic_device_remove(ddf_dev_t *gen_dev)
135{
136 assert(driver);
137 assert(driver->ops);
138 if (driver->ops->device_rem == NULL)
139 return ENOTSUP;
140 /* Just tell the driver to stop whatever it is doing */
141 usb_device_t *usb_dev = ddf_dev_data_get(gen_dev);
142 const int ret = driver->ops->device_rem(usb_dev);
143 if (ret != EOK)
144 return ret;
145 usb_device_deinit(usb_dev);
146 return EOK;
147}
148
149/** Callback when a device was removed from the system.
150 *
151 * This callback is a wrapper for USB specific version of @c device_gone.
152 *
153 * @param gen_dev Device structure as prepared by DDF.
154 * @return Error code.
155 */
156int generic_device_gone(ddf_dev_t *gen_dev)
157{
158 assert(driver);
159 assert(driver->ops);
160 if (driver->ops->device_gone == NULL)
161 return ENOTSUP;
162 usb_device_t *usb_dev = ddf_dev_data_get(gen_dev);
163 const int ret = driver->ops->device_gone(usb_dev);
164 if (ret == EOK)
165 usb_device_deinit(usb_dev);
166
167 return ret;
168}
169
170/** Destroy existing pipes of a USB device.
171 *
172 * @param dev Device where to destroy the pipes.
173 */
174static void destroy_current_pipes(usb_device_t *dev)
175{
176 usb_device_destroy_pipes(dev->pipes, dev->pipes_count);
177 dev->pipes = NULL;
178 dev->pipes_count = 0;
179}
180
181/** Change interface setting of a device.
182 * This function selects new alternate setting of an interface by issuing
183 * proper USB command to the device and also creates new USB pipes
184 * under @c dev->pipes.
185 *
186 * @warning This function is intended for drivers working at interface level.
187 * For drivers controlling the whole device, you need to change interface
188 * manually using usb_request_set_interface() and creating new pipes
189 * with usb_pipe_initialize_from_configuration().
190 *
191 * @warning This is a wrapper function that does several operations that
192 * can fail and that cannot be rollbacked easily. That means that a failure
193 * during the SET_INTERFACE request would result in having a device with
194 * no pipes at all (except the default control one). That is because the old
195 * pipes needs to be unregistered at HC first and the new ones could not
196 * be created.
197 *
198 * @param dev USB device.
199 * @param alternate_setting Alternate setting to choose.
200 * @param endpoints New endpoint descriptions.
201 * @return Error code.
202 */
203int usb_device_select_interface(usb_device_t *dev, uint8_t alternate_setting,
204 const usb_endpoint_description_t **endpoints)
205{
206 if (dev->interface_no < 0) {
207 return EINVAL;
208 }
209
210 /* Destroy existing pipes. */
211 destroy_current_pipes(dev);
212
213 /* Change the interface itself. */
214 int rc = usb_request_set_interface(&dev->ctrl_pipe, dev->interface_no,
215 alternate_setting);
216 if (rc != EOK) {
217 return rc;
218 }
219
220 /* Create new pipes. */
221 rc = usb_device_create_pipes(&dev->wire, endpoints,
222 dev->descriptors.configuration, dev->descriptors.configuration_size,
223 dev->interface_no, (int)alternate_setting,
224 &dev->pipes, &dev->pipes_count);
225
226 return rc;
227}
228
229/** Retrieve basic descriptors from the device.
230 *
231 * @param[in] ctrl_pipe Control endpoint pipe.
232 * @param[out] descriptors Where to store the descriptors.
233 * @return Error code.
234 */
235int usb_device_retrieve_descriptors(usb_pipe_t *ctrl_pipe,
236 usb_device_descriptors_t *descriptors)
237{
238 assert(descriptors != NULL);
239
240 descriptors->configuration = NULL;
241
242 int rc;
243
244 /* It is worth to start a long transfer. */
245 usb_pipe_start_long_transfer(ctrl_pipe);
246
247 /* Get the device descriptor. */
248 rc = usb_request_get_device_descriptor(ctrl_pipe, &descriptors->device);
249 if (rc != EOK) {
250 goto leave;
251 }
252
253 /* Get the full configuration descriptor. */
254 rc = usb_request_get_full_configuration_descriptor_alloc(
255 ctrl_pipe, 0, (void **) &descriptors->configuration,
256 &descriptors->configuration_size);
257
258leave:
259 usb_pipe_end_long_transfer(ctrl_pipe);
260
261 return rc;
262}
263
264/** Cleanup structure initialized via usb_device_retrieve_descriptors.
265 *
266 * @param[in] descriptors Where to store the descriptors.
267 */
268void usb_device_release_descriptors(usb_device_descriptors_t *descriptors)
269{
270 assert(descriptors);
271 free(descriptors->configuration);
272 descriptors->configuration = NULL;
273}
274
275/** Create pipes for a device.
276 *
277 * This is more or less a wrapper that does following actions:
278 * - allocate and initialize pipes
279 * - map endpoints to the pipes based on the descriptions
280 * - registers endpoints with the host controller
281 *
282 * @param[in] wire Initialized backing connection to the host controller.
283 * @param[in] endpoints Endpoints description, NULL terminated.
284 * @param[in] config_descr Configuration descriptor of active configuration.
285 * @param[in] config_descr_size Size of @p config_descr in bytes.
286 * @param[in] interface_no Interface to map from.
287 * @param[in] interface_setting Interface setting (default is usually 0).
288 * @param[out] pipes_ptr Where to store array of created pipes
289 * (not NULL terminated).
290 * @param[out] pipes_count_ptr Where to store number of pipes
291 * (set to NULL if you wish to ignore the count).
292 * @return Error code.
293 */
294int usb_device_create_pipes(usb_device_connection_t *wire,
295 const usb_endpoint_description_t **endpoints,
296 const uint8_t *config_descr, size_t config_descr_size,
297 int interface_no, int interface_setting,
298 usb_endpoint_mapping_t **pipes_ptr, size_t *pipes_count_ptr)
299{
300 assert(wire != NULL);
301 assert(config_descr != NULL);
302 assert(config_descr_size > 0);
303 assert(pipes_ptr != NULL);
304
305 size_t i;
306 int rc;
307
308 const size_t pipe_count = count_other_pipes(endpoints);
309 if (pipe_count == 0) {
310 if (pipes_count_ptr)
311 *pipes_count_ptr = pipe_count;
312 *pipes_ptr = NULL;
313 return EOK;
314 }
315
316 usb_endpoint_mapping_t *pipes
317 = calloc(pipe_count, sizeof(usb_endpoint_mapping_t));
318 if (pipes == NULL) {
319 return ENOMEM;
320 }
321
322 /* Now initialize. */
323 for (i = 0; i < pipe_count; i++) {
324 pipes[i].description = endpoints[i];
325 pipes[i].interface_no = interface_no;
326 pipes[i].interface_setting = interface_setting;
327 }
328
329 /* Find the mapping from configuration descriptor. */
330 rc = usb_pipe_initialize_from_configuration(pipes, pipe_count,
331 config_descr, config_descr_size, wire);
332 if (rc != EOK) {
333 free(pipes);
334 return rc;
335 }
336
337 /* Register created pipes. */
338 for (i = 0; i < pipe_count; i++) {
339 if (pipes[i].present) {
340 rc = usb_pipe_register(&pipes[i].pipe,
341 pipes[i].descriptor->poll_interval);
342 if (rc != EOK) {
343 goto rollback_unregister_endpoints;
344 }
345 }
346 }
347
348 *pipes_ptr = pipes;
349 if (pipes_count_ptr != NULL) {
350 *pipes_count_ptr = pipe_count;
351 }
352
353 return EOK;
354
355 /*
356 * Jump here if something went wrong after endpoints have
357 * been registered.
358 * This is also the target when the registration of
359 * endpoints fails.
360 */
361rollback_unregister_endpoints:
362 for (i = 0; i < pipe_count; i++) {
363 if (pipes[i].present) {
364 usb_pipe_unregister(&pipes[i].pipe);
365 }
366 }
367
368 free(pipes);
369 return rc;
370}
371
372/** Destroy pipes previously created by usb_device_create_pipes.
373 *
374 * @param[in] pipes Endpoint mapping to be destroyed.
375 * @param[in] pipes_count Number of endpoints.
376 */
377void usb_device_destroy_pipes(usb_endpoint_mapping_t *pipes, size_t pipes_count)
378{
379 /* Destroy the pipes. */
380 for (size_t i = 0; i < pipes_count; ++i) {
381 assert(pipes);
382 usb_log_debug2("Unregistering pipe %zu: %spresent.\n",
383 i, pipes[i].present ? "" : "not ");
384 if (pipes[i].present)
385 usb_pipe_unregister(&pipes[i].pipe);
386 }
387 free(pipes);
388}
389
390usb_pipe_t *usb_device_get_default_pipe(usb_device_t *usb_dev)
391{
392 assert(usb_dev);
393 return &usb_dev->ctrl_pipe;
394}
395
396/** Initialize new instance of USB device.
397 *
398 * @param[in] usb_dev Pointer to the new device.
399 * @param[in] ddf_dev Generic DDF device backing the USB one.
400 * @param[in] endpoints NULL terminated array of endpoints (NULL for none).
401 * @param[out] errstr_ptr Where to store description of context
402 * (in case error occurs).
403 * @return Error code.
404 */
405int usb_device_init(usb_device_t *usb_dev, ddf_dev_t *ddf_dev,
406 const usb_endpoint_description_t **endpoints, const char **errstr_ptr)
407{
408 assert(usb_dev != NULL);
409 assert(ddf_dev != NULL);
410
411 *errstr_ptr = NULL;
412
413 usb_dev->ddf_dev = ddf_dev;
414 usb_dev->driver_data = NULL;
415 usb_dev->descriptors.configuration = NULL;
416 usb_dev->pipes_count = 0;
417 usb_dev->pipes = NULL;
418
419 usb_dev->bus_session = usb_dev_connect_to_self(ddf_dev);
420 if (!usb_dev->bus_session) {
421 *errstr_ptr = "device bus session create";
422 return ENOMEM;
423 }
424
425 /* Get assigned params */
426 devman_handle_t hc_handle;
427 usb_address_t address;
428
429 int rc = usb_get_info_by_handle(ddf_dev_get_handle(ddf_dev),
430 &hc_handle, &address, &usb_dev->interface_no);
431 if (rc != EOK) {
432 *errstr_ptr = "device parameters retrieval";
433 return rc;
434 }
435
436 /* Initialize hc connection. */
437 usb_hc_connection_initialize(&usb_dev->hc_conn, hc_handle);
438
439 /* Initialize backing wire and control pipe. */
440 rc = usb_device_connection_initialize(
441 &usb_dev->wire, &usb_dev->hc_conn, address);
442 if (rc != EOK) {
443 *errstr_ptr = "device connection initialization";
444 return rc;
445 }
446
447 /* This pipe was registered by the hub driver,
448 * during device initialization. */
449 rc = usb_pipe_initialize_default_control(
450 &usb_dev->ctrl_pipe, &usb_dev->wire);
451 if (rc != EOK) {
452 *errstr_ptr = "default control pipe initialization";
453 return rc;
454 }
455
456 /* Open hc connection for pipe registration. */
457 rc = usb_hc_connection_open(&usb_dev->hc_conn);
458 if (rc != EOK) {
459 *errstr_ptr = "hc connection open";
460 return rc;
461 }
462
463 /* Retrieve standard descriptors. */
464 rc = usb_device_retrieve_descriptors(
465 &usb_dev->ctrl_pipe, &usb_dev->descriptors);
466 if (rc != EOK) {
467 *errstr_ptr = "descriptor retrieval";
468 usb_hc_connection_close(&usb_dev->hc_conn);
469 return rc;
470 }
471
472 /* Create alternate interfaces. We will silently ignore failure.
473 * We might either control one interface or an entire device,
474 * it makes no sense to speak about alternate interfaces when
475 * controlling a device. */
476 rc = usb_alternate_interfaces_init(&usb_dev->alternate_interfaces,
477 usb_dev->descriptors.configuration,
478 usb_dev->descriptors.configuration_size, usb_dev->interface_no);
479 const int alternate_iface =
480 (rc == EOK) ? usb_dev->alternate_interfaces.current : 0;
481
482 /* Create and register other pipes than default control (EP 0) */
483 rc = usb_device_create_pipes(&usb_dev->wire, endpoints,
484 usb_dev->descriptors.configuration,
485 usb_dev->descriptors.configuration_size,
486 usb_dev->interface_no, (int)alternate_iface,
487 &usb_dev->pipes, &usb_dev->pipes_count);
488 if (rc != EOK) {
489 usb_hc_connection_close(&usb_dev->hc_conn);
490 /* Full configuration descriptor is allocated. */
491 usb_device_release_descriptors(&usb_dev->descriptors);
492 /* Alternate interfaces may be allocated */
493 usb_alternate_interfaces_deinit(&usb_dev->alternate_interfaces);
494 *errstr_ptr = "pipes initialization";
495 return rc;
496 }
497
498 usb_hc_connection_close(&usb_dev->hc_conn);
499 return EOK;
500}
501
502/** Clean instance of a USB device.
503 *
504 * @param dev Device to be de-initialized.
505 *
506 * Does not free/destroy supplied pointer.
507 */
508void usb_device_deinit(usb_device_t *dev)
509{
510 if (dev) {
511 usb_dev_session_close(dev->bus_session);
512 /* Destroy existing pipes. */
513 destroy_current_pipes(dev);
514 /* Ignore errors and hope for the best. */
515 usb_hc_connection_deinitialize(&dev->hc_conn);
516 usb_alternate_interfaces_deinit(&dev->alternate_interfaces);
517 usb_device_release_descriptors(&dev->descriptors);
518 free(dev->driver_data);
519 dev->driver_data = NULL;
520 }
521}
522
523const char *usb_device_get_name(usb_device_t *usb_dev)
524{
525 assert(usb_dev);
526 assert(usb_dev->ddf_dev);
527 //TODO Handle case without ddf_dev
528 return ddf_dev_get_name(usb_dev->ddf_dev);
529}
530
531async_exch_t * usb_device_bus_exchange_begin(usb_device_t *usb_dev)
532{
533 assert(usb_dev);
534 return async_exchange_begin(usb_dev->bus_session);
535}
536
537void usb_device_bus_exchange_end(async_exch_t *exch)
538{
539 async_exchange_end(exch);
540}
541
542/** Allocate driver specific data.
543 * @param usb_dev usb_device structure.
544 * @param size requested data size.
545 * @return Pointer to the newly allocated space, NULL on failure.
546 */
547void * usb_device_data_alloc(usb_device_t *usb_dev, size_t size)
548{
549 assert(usb_dev);
550 assert(usb_dev->driver_data == NULL);
551 return usb_dev->driver_data = calloc(1, size);
552
553}
554
555void * usb_device_data_get(usb_device_t *usb_dev)
556{
557 assert(usb_dev);
558 return usb_dev->driver_data;
559}
560/**
561 * @}
562 */
Note: See TracBrowser for help on using the repository browser.