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

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

libus*: remove optical separators

  • Property mode set to 100644
File size: 15.1 KB
RevLine 
[6105fc0]1/*
2 * Copyright (c) 2011 Vojtech Horky
[4291215]3 * Copyright (c) 2011 Jan Vesely
[6105fc0]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 */
[160b75e]29/** @addtogroup libusbdev
[6105fc0]30 * @{
31 */
32/** @file
33 * USB device driver framework.
34 */
[7d521e24]35#include <usb/dev/driver.h>
36#include <usb/dev/request.h>
[6105fc0]37#include <usb/debug.h>
[1a38701]38#include <usb/dev.h>
[6105fc0]39#include <errno.h>
[69334af]40#include <str_error.h>
[6105fc0]41#include <assert.h>
42
[1a4ea01d]43static int generic_device_add(ddf_dev_t *);
[96646a6]44static int generic_device_remove(ddf_dev_t *);
45static int generic_device_gone(ddf_dev_t *);
[6105fc0]46
47static driver_ops_t generic_driver_ops = {
[0c0f823b]48 .dev_add = generic_device_add,
[96646a6]49 .dev_remove = generic_device_remove,
50 .dev_gone = generic_device_gone,
[6105fc0]51};
52static driver_t generic_driver = {
53 .driver_ops = &generic_driver_ops
54};
55
[49bd7ae2]56static const usb_driver_t *driver = NULL;
[6105fc0]57
[69334af]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 */
[882580a]65int usb_driver_main(const usb_driver_t *drv)
[6105fc0]66{
[69334af]67 assert(drv != NULL);
68
[6105fc0]69 /* Prepare the generic driver. */
70 generic_driver.name = drv->name;
71
72 driver = drv;
73
74 return ddf_driver_main(&generic_driver);
75}
[a76b01b4]76
[69334af]77/** Count number of pipes the driver expects.
78 *
79 * @param drv USB driver.
80 * @return Number of pipes (excluding default control pipe).
81 */
[ab27e01]82static inline size_t count_other_pipes(
83 const usb_endpoint_description_t **endpoints)
[6105fc0]84{
[ab27e01]85 size_t count;
[64e3dad]86 for (count = 0; endpoints != NULL && endpoints[count] != NULL; ++count);
[6105fc0]87 return count;
88}
[a76b01b4]89
[51f033ce]90/** Callback when a new device is supposed to be controlled by this driver.
[69334af]91 *
[51f033ce]92 * This callback is a wrapper for USB specific version of @c device_add.
[69334af]93 *
94 * @param gen_dev Device structure as prepared by DDF.
95 * @return Error code.
96 */
[1a4ea01d]97int generic_device_add(ddf_dev_t *gen_dev)
[6105fc0]98{
99 assert(driver);
100 assert(driver->ops);
[1a4ea01d]101 assert(driver->ops->device_add);
[6105fc0]102
[54cbda2]103 /* Get place for driver data. */
[7d9cd62]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 gen_dev->name);
108 return ENOMEM;
109 }
[54cbda2]110
111 /* Initialize generic USB driver data. */
[6ee6e6f]112 const char *err_msg = NULL;
[7d9cd62]113 int rc = usb_device_init(dev, gen_dev, driver->endpoints, &err_msg);
[69334af]114 if (rc != EOK) {
[7d9cd62]115 usb_log_error("USB device `%s' init failed (%s): %s.\n",
[6ee6e6f]116 gen_dev->name, err_msg, str_error(rc));
[69334af]117 return rc;
[6105fc0]118 }
119
[54cbda2]120 /* Start USB driver specific initialization. */
[065064e6]121 rc = driver->ops->device_add(dev);
122 if (rc != EOK)
[9c5fd7a]123 usb_device_deinit(dev);
[065064e6]124 return rc;
[6105fc0]125}
[a76b01b4]126
[51f033ce]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 */
[96646a6]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;
[54cbda2]140 /* Just tell the driver to stop whatever it is doing */
141 usb_device_t *usb_dev = gen_dev->driver_data;
142 const int ret = driver->ops->device_rem(usb_dev);
[c0fdc0e]143 if (ret != EOK)
144 return ret;
[54cbda2]145 usb_device_deinit(usb_dev);
146 return EOK;
[96646a6]147}
[a76b01b4]148
[51f033ce]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 */
[96646a6]156int generic_device_gone(ddf_dev_t *gen_dev)
157{
158 assert(driver);
159 assert(driver->ops);
[844f4ef]160 if (driver->ops->device_gone == NULL)
161 return ENOTSUP;
[065064e6]162 usb_device_t *usb_dev = gen_dev->driver_data;
163 const int ret = driver->ops->device_gone(usb_dev);
[844f4ef]164 if (ret == EOK)
[9c5fd7a]165 usb_device_deinit(usb_dev);
[96646a6]166
[844f4ef]167 return ret;
[96646a6]168}
[a76b01b4]169
[0b4e7ca]170/** Destroy existing pipes of a USB device.
171 *
172 * @param dev Device where to destroy the pipes.
173 */
[6883abfa]174static void destroy_current_pipes(usb_device_t *dev)
[0b4e7ca]175{
[6883abfa]176 usb_device_destroy_pipes(dev->pipes, dev->pipes_count);
[0b4e7ca]177 dev->pipes = NULL;
178 dev->pipes_count = 0;
179}
[a76b01b4]180
[0b4e7ca]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 *
[3f2af64]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 *
[0b4e7ca]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,
[b803845]204 const usb_endpoint_description_t **endpoints)
[0b4e7ca]205{
206 if (dev->interface_no < 0) {
207 return EINVAL;
208 }
209
210 /* Destroy existing pipes. */
[6883abfa]211 destroy_current_pipes(dev);
[0b4e7ca]212
213 /* Change the interface itself. */
[441633f]214 int rc = usb_request_set_interface(&dev->ctrl_pipe, dev->interface_no,
[0b4e7ca]215 alternate_setting);
216 if (rc != EOK) {
217 return rc;
218 }
219
220 /* Create new pipes. */
[66ee26a]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);
[c1b1944]225
226 return rc;
227}
228
229/** Retrieve basic descriptors from the device.
230 *
[4fa0a384]231 * @param[in] ctrl_pipe Control endpoint pipe.
[c1b1944]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
[4fa0a384]244 /* It is worth to start a long transfer. */
[2c2cbcf]245 usb_pipe_start_long_transfer(ctrl_pipe);
[4fa0a384]246
[c1b1944]247 /* Get the device descriptor. */
248 rc = usb_request_get_device_descriptor(ctrl_pipe, &descriptors->device);
249 if (rc != EOK) {
[4fa0a384]250 goto leave;
[c1b1944]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
[4fa0a384]258leave:
259 usb_pipe_end_long_transfer(ctrl_pipe);
260
261 return rc;
[c1b1944]262}
263
[7fc260ff]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
[c1b1944]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
[ab27e01]291 * (set to NULL if you wish to ignore the count).
[c1b1944]292 * @return Error code.
293 */
[0cfb05e]294int usb_device_create_pipes(usb_device_connection_t *wire,
[b803845]295 const usb_endpoint_description_t **endpoints,
[7c95d6f5]296 const uint8_t *config_descr, size_t config_descr_size,
[c1b1944]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
[5917859c]308 const size_t pipe_count = count_other_pipes(endpoints);
[c1b1944]309 if (pipe_count == 0) {
[ab27e01]310 if (pipes_count_ptr)
311 *pipes_count_ptr = pipe_count;
[c1b1944]312 *pipes_ptr = NULL;
313 return EOK;
314 }
315
316 usb_endpoint_mapping_t *pipes
[ab27e01]317 = calloc(pipe_count, sizeof(usb_endpoint_mapping_t));
[c1b1944]318 if (pipes == NULL) {
319 return ENOMEM;
320 }
321
[441633f]322 /* Now initialize. */
[c1b1944]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) {
[441633f]333 free(pipes);
334 return rc;
[c1b1944]335 }
336
[441633f]337 /* Register created pipes. */
[c1b1944]338 for (i = 0; i < pipe_count; i++) {
339 if (pipes[i].present) {
[b77931d]340 rc = usb_pipe_register(&pipes[i].pipe,
[bd575647]341 pipes[i].descriptor->poll_interval);
[c1b1944]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) {
[bd575647]364 usb_pipe_unregister(&pipes[i].pipe);
[c1b1944]365 }
366 }
367
368 free(pipes);
[0b4e7ca]369 return rc;
370}
[159b91f4]371
[c1b1944]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 */
[6883abfa]377void usb_device_destroy_pipes(usb_endpoint_mapping_t *pipes, size_t pipes_count)
[c1b1944]378{
379 /* Destroy the pipes. */
[8a01a0b]380 for (size_t i = 0; i < pipes_count; ++i) {
[6883abfa]381 assert(pipes);
[8a01a0b]382 usb_log_debug2("Unregistering pipe %zu: %spresent.\n",
[1526c174]383 i, pipes[i].present ? "" : "not ");
384 if (pipes[i].present)
[bd575647]385 usb_pipe_unregister(&pipes[i].pipe);
[c1b1944]386 }
387 free(pipes);
388}
389
[7d9cd62]390/** Initialize new instance of USB device.
[6ee6e6f]391 *
[7d9cd62]392 * @param[in] usb_dev Pointer to the new device.
[6ee6e6f]393 * @param[in] ddf_dev Generic DDF device backing the USB one.
394 * @param[in] endpoints NULL terminated array of endpoints (NULL for none).
395 * @param[out] errstr_ptr Where to store description of context
396 * (in case error occurs).
397 * @return Error code.
398 */
[7d9cd62]399int usb_device_init(usb_device_t *usb_dev, ddf_dev_t *ddf_dev,
400 const usb_endpoint_description_t **endpoints, const char **errstr_ptr)
[6ee6e6f]401{
[7d9cd62]402 assert(usb_dev != NULL);
[6ee6e6f]403 assert(ddf_dev != NULL);
404
[7fc260ff]405 *errstr_ptr = NULL;
406
[7d9cd62]407 usb_dev->ddf_dev = ddf_dev;
408 usb_dev->driver_data = NULL;
409 usb_dev->descriptors.configuration = NULL;
410 usb_dev->pipes_count = 0;
411 usb_dev->pipes = NULL;
[6ee6e6f]412
[c24c157d]413 /* Get assigned params */
414 devman_handle_t hc_handle;
415 usb_address_t address;
416
417 int rc = usb_get_info_by_handle(ddf_dev->handle,
418 &hc_handle, &address, &usb_dev->interface_no);
419 if (rc != EOK) {
420 *errstr_ptr = "device parameters retrieval";
421 return rc;
422 }
423
[c0fdc0e]424 /* Initialize hc connection. */
[c24c157d]425 usb_hc_connection_initialize(&usb_dev->hc_conn, hc_handle);
[c0fdc0e]426
[3f2af64]427 /* Initialize backing wire and control pipe. */
[c24c157d]428 rc = usb_device_connection_initialize(
[bd575647]429 &usb_dev->wire, &usb_dev->hc_conn, address);
[3f2af64]430 if (rc != EOK) {
[7fc260ff]431 *errstr_ptr = "device connection initialization";
432 return rc;
433 }
434
435 /* This pipe was registered by the hub driver,
436 * during device initialization. */
[c0fdc0e]437 rc = usb_pipe_initialize_default_control(
438 &usb_dev->ctrl_pipe, &usb_dev->wire);
[7fc260ff]439 if (rc != EOK) {
440 *errstr_ptr = "default control pipe initialization";
[3f2af64]441 return rc;
442 }
443
[6e3c005]444 /* Open hc connection for pipe registration. */
[c0fdc0e]445 rc = usb_hc_connection_open(&usb_dev->hc_conn);
446 if (rc != EOK) {
447 *errstr_ptr = "hc connection open";
448 return rc;
449 }
450
[3f2af64]451 /* Retrieve standard descriptors. */
[c0fdc0e]452 rc = usb_device_retrieve_descriptors(
453 &usb_dev->ctrl_pipe, &usb_dev->descriptors);
[6ee6e6f]454 if (rc != EOK) {
[3f2af64]455 *errstr_ptr = "descriptor retrieval";
[c0fdc0e]456 usb_hc_connection_close(&usb_dev->hc_conn);
[6ee6e6f]457 return rc;
458 }
459
[7fc260ff]460 /* Create alternate interfaces. We will silently ignore failure.
461 * We might either control one interface or an entire device,
462 * it makes no sense to speak about alternate interfaces when
463 * controlling a device. */
[ab27e01]464 rc = usb_alternate_interfaces_init(&usb_dev->alternate_interfaces,
[904dcc6]465 usb_dev->descriptors.configuration,
466 usb_dev->descriptors.configuration_size, usb_dev->interface_no);
[ab27e01]467 const int alternate_iface =
468 (rc == EOK) ? usb_dev->alternate_interfaces.current : 0;
[6ee6e6f]469
[66ee26a]470 /* Create and register other pipes than default control (EP 0) */
471 rc = usb_device_create_pipes(&usb_dev->wire, endpoints,
472 usb_dev->descriptors.configuration,
473 usb_dev->descriptors.configuration_size,
474 usb_dev->interface_no, (int)alternate_iface,
475 &usb_dev->pipes, &usb_dev->pipes_count);
[6ee6e6f]476 if (rc != EOK) {
[c0fdc0e]477 usb_hc_connection_close(&usb_dev->hc_conn);
[7d9cd62]478 /* Full configuration descriptor is allocated. */
[7fc260ff]479 usb_device_release_descriptors(&usb_dev->descriptors);
[7d9cd62]480 /* Alternate interfaces may be allocated */
[904dcc6]481 usb_alternate_interfaces_deinit(&usb_dev->alternate_interfaces);
[6ee6e6f]482 *errstr_ptr = "pipes initialization";
483 return rc;
484 }
485
[c0fdc0e]486 usb_hc_connection_close(&usb_dev->hc_conn);
[6ee6e6f]487 return EOK;
488}
489
[7d9cd62]490/** Clean instance of a USB device.
[70452dd4]491 *
[9c5fd7a]492 * @param dev Device to be de-initialized.
493 *
494 * Does not free/destroy supplied pointer.
[70452dd4]495 */
[9c5fd7a]496void usb_device_deinit(usb_device_t *dev)
[70452dd4]497{
[7d9cd62]498 if (dev) {
[8e3742f9]499 /* Destroy existing pipes. */
[7d9cd62]500 destroy_current_pipes(dev);
[8e3742f9]501 /* Ignore errors and hope for the best. */
502 usb_hc_connection_deinitialize(&dev->hc_conn);
[904dcc6]503 usb_alternate_interfaces_deinit(&dev->alternate_interfaces);
[7fc260ff]504 usb_device_release_descriptors(&dev->descriptors);
[7d9cd62]505 free(dev->driver_data);
[8e3742f9]506 dev->driver_data = NULL;
[70452dd4]507 }
[065064e6]508}
509
[6e3c005]510/** Allocate driver specific data.
511 * @param usb_dev usb_device structure.
512 * @param size requested data size.
513 * @return Pointer to the newly allocated space, NULL on failure.
514 */
[065064e6]515void * usb_device_data_alloc(usb_device_t *usb_dev, size_t size)
516{
517 assert(usb_dev);
518 assert(usb_dev->driver_data == NULL);
519 return usb_dev->driver_data = calloc(1, size);
[70452dd4]520
521}
522
[6105fc0]523/**
524 * @}
525 */
Note: See TracBrowser for help on using the repository browser.