source: mainline/uspace/lib/usbhost/src/bus.c@ 92a7b296

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

usb: some sanity checks are too obvious for clang

  • Property mode set to 100644
File size: 17.0 KB
RevLine 
[41924f30]1/*
2 * Copyright (c) 2017 Ondrej Hlavaty <aearsis@eideo.cz>
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 libusbhost
30 * @{
31 */
32/** @file
33 *
[1102eca]34 * The Bus is a structure that serves as an interface of the HC driver
35 * implementation for the usbhost library. Every HC driver that uses libusbhost
36 * must use a bus_t (or its child), fill it with bus_ops and present it to the
37 * library. The library then handles the DDF interface and translates it to the
38 * bus callbacks.
[41924f30]39 */
40
[20eaa82]41#include <ddf/driver.h>
[41924f30]42#include <errno.h>
[64fea02]43#include <mem.h>
[a6afb4c]44#include <macros.h>
[20eaa82]45#include <stdio.h>
[0892663a]46#include <str_error.h>
[64fea02]47#include <usb/debug.h>
48
49#include "endpoint.h"
50#include "bus.h"
[41924f30]51
52/**
[1102eca]53 * Initializes the base bus structure.
[41924f30]54 */
[32fb6bce]55void bus_init(bus_t *bus, size_t device_size)
[41924f30]56{
[20eaa82]57 assert(bus);
58 assert(device_size >= sizeof(device_t));
[41924f30]59 memset(bus, 0, sizeof(bus_t));
60
61 fibril_mutex_initialize(&bus->guard);
[20eaa82]62 bus->device_size = device_size;
63}
64
[1102eca]65/**
66 * Initialize the device_t structure belonging to a bus.
67 */
[6832245]68int bus_device_init(device_t *dev, bus_t *bus)
[20eaa82]69{
[6832245]70 assert(bus);
71
[20eaa82]72 memset(dev, 0, sizeof(*dev));
73
[6832245]74 dev->bus = bus;
75
[20eaa82]76 link_initialize(&dev->link);
77 list_initialize(&dev->devices);
78 fibril_mutex_initialize(&dev->guard);
79
80 return EOK;
81}
82
[1102eca]83/**
84 * Create a name of the ddf function node.
85 */
[6832245]86int bus_device_set_default_name(device_t *dev)
[20eaa82]87{
88 assert(dev);
89 assert(dev->fun);
90
91 char buf[10] = { 0 }; /* usbxyz-ss */
[babcc423]92 snprintf(buf, sizeof(buf), "usb%u-%cs",
[20eaa82]93 dev->address, usb_str_speed(dev->speed)[0]);
94
95 return ddf_fun_set_name(dev->fun, buf);
96}
97
[4c25c2fb]98/**
99 * Setup devices Transaction Translation.
100 *
101 * This applies for Low/Full speed devices under High speed hub only. Other
102 * devices just inherit TT from the hub.
103 *
104 * Roothub must be handled specially.
105 */
106static void device_setup_tt(device_t *dev)
107{
108 if (!dev->hub)
109 return;
110
111 if (dev->hub->speed == USB_SPEED_HIGH && usb_speed_is_11(dev->speed)) {
112 /* For LS devices under HS hub */
113 dev->tt.dev = dev->hub;
114 dev->tt.port = dev->port;
115 }
116 else {
117 /* Inherit hub's TT */
118 dev->tt = dev->hub->tt;
119 }
120}
121
[1102eca]122/**
123 * Invoke the device_enumerate bus operation.
[0892663a]124 *
125 * There's no need to synchronize here, because no one knows the device yet.
[1102eca]126 */
[6832245]127int bus_device_enumerate(device_t *dev)
[20eaa82]128{
129 assert(dev);
130
[6832245]131 const bus_ops_t *ops = BUS_OPS_LOOKUP(dev->bus->ops, device_enumerate);
132 if (!ops)
[20eaa82]133 return ENOTSUP;
134
[53a9d02]135 if (dev->online)
[0892663a]136 return EINVAL;
137
[4c25c2fb]138 device_setup_tt(dev);
139
[0892663a]140 const int r = ops->device_enumerate(dev);
[53a9d02]141 if (r)
142 return r;
143
144 dev->online = true;
[0892663a]145
[53a9d02]146 if (dev->hub) {
[0892663a]147 fibril_mutex_lock(&dev->hub->guard);
148 list_append(&dev->link, &dev->hub->devices);
149 fibril_mutex_unlock(&dev->hub->guard);
150 }
151
[53a9d02]152 return EOK;
[0892663a]153}
154
155/**
156 * Clean endpoints and children that could have been left behind after
157 * asking the driver of device to offline/remove a device.
158 *
159 * Note that EP0's lifetime is shared with the device, and as such is not
160 * touched.
161 */
162static void device_clean_ep_children(device_t *dev, const char *op)
163{
164 assert(fibril_mutex_is_locked(&dev->guard));
165
166 /* Unregister endpoints left behind. */
167 for (usb_endpoint_t i = 1; i < USB_ENDPOINT_MAX; ++i) {
168 if (!dev->endpoints[i])
169 continue;
170
171 usb_log_warning("USB device '%s' driver left endpoint %u registered after %s.",
172 ddf_fun_get_name(dev->fun), i, op);
173
174 endpoint_t * const ep = dev->endpoints[i];
175 endpoint_add_ref(ep);
176
177 fibril_mutex_unlock(&dev->guard);
178 bus_endpoint_remove(ep);
179 fibril_mutex_lock(&dev->guard);
180
181 assert(dev->endpoints[i] == NULL);
182 }
183
184 /* Remove also orphaned children. */
185 while (!list_empty(&dev->devices)) {
186 device_t * const child = list_get_instance(list_first(&dev->devices), device_t, link);
187
188 usb_log_warning("USB device '%s' driver left device '%s' behind after %s.",
189 ddf_fun_get_name(dev->fun), ddf_fun_get_name(child->fun), op);
190 /*
191 * The child node won't disappear, because its parent's driver
192 * is already dead. And the child will need the guard to remove
193 * itself from the list.
194 */
195 fibril_mutex_unlock(&dev->guard);
[9848c77]196 bus_device_gone(child);
[0892663a]197 fibril_mutex_lock(&dev->guard);
198 }
199 assert(list_empty(&dev->devices));
[20eaa82]200}
201
[1102eca]202/**
[0892663a]203 * Resolve a USB device that is gone.
[1102eca]204 */
[9848c77]205void bus_device_gone(device_t *dev)
[20eaa82]206{
207 assert(dev);
[99a00a6]208 assert(dev->fun != NULL);
[20eaa82]209
[9848c77]210 const bus_ops_t *ops = BUS_OPS_LOOKUP(dev->bus->ops, device_gone);
[7278cbc9]211 const bus_ops_t *ep_ops = BUS_OPS_LOOKUP(dev->bus->ops, endpoint_unregister);
[20eaa82]212
[0892663a]213 /* First, block new transfers and operations. */
214 fibril_mutex_lock(&dev->guard);
215 dev->online = false;
216
217 /* Unbinding will need guard unlocked. */
218 fibril_mutex_unlock(&dev->guard);
219
220 /* Remove our device from our hub's children. */
[53a9d02]221 if (dev->hub) {
222 fibril_mutex_lock(&dev->hub->guard);
223 list_remove(&dev->link);
224 fibril_mutex_unlock(&dev->hub->guard);
225 }
[0892663a]226
227 /*
228 * Unbind the DDF function. That will result in dev_gone called in
229 * driver, which shall destroy its pipes and remove its children.
230 */
231 const int err = ddf_fun_unbind(dev->fun);
232 if (err) {
233 usb_log_error("Failed to unbind USB device '%s': %s",
234 ddf_fun_get_name(dev->fun), str_error(err));
235 return;
236 }
237
238 /* Remove what driver left behind */
239 fibril_mutex_lock(&dev->guard);
240 device_clean_ep_children(dev, "removing");
241
242 /* Tell the HC to release its resources. */
[7278cbc9]243 if (ops)
244 ops->device_gone(dev);
245
246 /* Check whether the driver didn't forgot EP0 */
247 if (dev->endpoints[0]) {
248 if (ep_ops)
249 ep_ops->endpoint_unregister(dev->endpoints[0]);
250 /* Release the EP0 bus reference */
251 endpoint_del_ref(dev->endpoints[0]);
252 }
[0892663a]253
254 /* Destroy the function, freeing also the device, unlocking mutex. */
255 ddf_fun_destroy(dev->fun);
[41924f30]256}
257
[1102eca]258/**
[0892663a]259 * The user wants this device back online.
[1102eca]260 */
[6832245]261int bus_device_online(device_t *dev)
[d37514e]262{
[351113f]263 int rc;
[d37514e]264 assert(dev);
265
[0892663a]266 fibril_mutex_lock(&dev->guard);
267 if (dev->online) {
[351113f]268 rc = EINVAL;
269 goto err_lock;
[0892663a]270 }
271
272 /* First, tell the HC driver. */
[6832245]273 const bus_ops_t *ops = BUS_OPS_LOOKUP(dev->bus->ops, device_online);
[351113f]274 if (ops && (rc = ops->device_online(dev))) {
275 usb_log_warning("Host controller failed to make device '%s' online: %s",
276 ddf_fun_get_name(dev->fun), str_error(rc));
277 goto err_lock;
[0892663a]278 }
279
280 /* Allow creation of new endpoints and communication with the device. */
281 dev->online = true;
[d37514e]282
[0892663a]283 /* Onlining will need the guard */
284 fibril_mutex_unlock(&dev->guard);
285
[351113f]286 if ((rc = ddf_fun_online(dev->fun))) {
[0892663a]287 usb_log_warning("Failed to take device '%s' online: %s",
[351113f]288 ddf_fun_get_name(dev->fun), str_error(rc));
289 goto err;
[0892663a]290 }
291
[351113f]292 usb_log_info("USB Device '%s' is now online.", ddf_fun_get_name(dev->fun));
[0892663a]293 return EOK;
[351113f]294
295err_lock:
296 fibril_mutex_unlock(&dev->guard);
297err:
298 return rc;
[d37514e]299}
300
[1102eca]301/**
[0892663a]302 * The user requested to take this device offline.
[1102eca]303 */
[6832245]304int bus_device_offline(device_t *dev)
[d37514e]305{
[351113f]306 int rc;
[d37514e]307 assert(dev);
308
[0892663a]309 /* Make sure we're the one who offlines this device */
[351113f]310 if (!dev->online) {
311 rc = ENOENT;
312 goto err;
313 }
[0892663a]314
315 /*
316 * XXX: If the device is removed/offlined just now, this can fail on
317 * assertion. We most probably need some kind of enum status field to
318 * make the synchronization work.
319 */
320
321 /* Tear down all drivers working with the device. */
[351113f]322 if ((rc = ddf_fun_offline(dev->fun))) {
323 goto err;
[0892663a]324 }
325
326 fibril_mutex_lock(&dev->guard);
327 dev->online = false;
328 device_clean_ep_children(dev, "offlining");
329
330 /* Tell also the HC driver. */
[6832245]331 const bus_ops_t *ops = BUS_OPS_LOOKUP(dev->bus->ops, device_offline);
[0892663a]332 if (ops)
333 ops->device_offline(dev);
[d37514e]334
[0892663a]335 fibril_mutex_unlock(&dev->guard);
[351113f]336 usb_log_info("USB Device '%s' is now offline.", ddf_fun_get_name(dev->fun));
[0892663a]337 return EOK;
[351113f]338
339err:
340 return rc;
[d37514e]341}
342
[1ed3eb4]343/**
344 * Calculate an index to the endpoint array.
345 * For the default control endpoint 0, it must return 0.
346 * For different arguments, the result is stable but not defined.
347 */
[a6afb4c]348static size_t bus_endpoint_index(usb_endpoint_t ep, usb_direction_t dir)
[1ed3eb4]349{
350 return 2 * ep + (dir == USB_DIRECTION_OUT);
351}
352
[1102eca]353/**
354 * Create and register new endpoint to the bus.
355 *
356 * @param[in] device The device of which the endpoint shall be created
357 * @param[in] desc Endpoint descriptors as reported by the device
358 * @param[out] out_ep The resulting new endpoint reference, if any. Can be NULL.
359 */
[9efad54]360int bus_endpoint_add(device_t *device, const usb_endpoint_descriptors_t *desc, endpoint_t **out_ep)
[41924f30]361{
[6832245]362 int err;
[0206d35]363 assert(device);
[41924f30]364
[6832245]365 bus_t *bus = device->bus;
366
367 const bus_ops_t *register_ops = BUS_OPS_LOOKUP(bus->ops, endpoint_register);
[1102eca]368 if (!register_ops)
[6832245]369 return ENOTSUP;
[53db806]370
[1102eca]371 const bus_ops_t *create_ops = BUS_OPS_LOOKUP(bus->ops, endpoint_create);
372 endpoint_t *ep;
373 if (create_ops) {
374 ep = create_ops->endpoint_create(device, desc);
375 if (!ep)
376 return ENOMEM;
377 } else {
378 ep = calloc(1, sizeof(endpoint_t));
379 if (!ep)
380 return ENOMEM;
381 endpoint_init(ep, device, desc);
382 }
[0206d35]383
[9efad54]384 /* Bus reference */
[0206d35]385 endpoint_add_ref(ep);
386
[a6afb4c]387 const size_t idx = bus_endpoint_index(ep->endpoint, ep->direction);
388 if (idx >= ARRAY_SIZE(device->endpoints)) {
389 usb_log_warning("Invalid endpoint description (ep no %u out of "
390 "bounds)", ep->endpoint);
391 goto drop;
392 }
393
[9efad54]394 if (ep->max_transfer_size == 0) {
395 usb_log_warning("Invalid endpoint description (mps %zu, "
396 "%u packets)", ep->max_packet_size, ep->packets_per_uframe);
[a6afb4c]397 goto drop;
[9efad54]398 }
399
[a1732929]400 usb_log_debug("Register endpoint %d:%d %s-%s %zuB.",
[9efad54]401 device->address, ep->endpoint,
402 usb_str_transfer_type(ep->transfer_type),
403 usb_str_direction(ep->direction),
404 ep->max_transfer_size);
405
[a6c4597]406 fibril_mutex_lock(&device->guard);
[56257ba]407 if (!device->online && ep->endpoint != 0) {
408 err = EAGAIN;
[1ed3eb4]409 } else if (device->endpoints[idx] != NULL) {
[56257ba]410 err = EEXIST;
411 } else {
412 err = register_ops->endpoint_register(ep);
413 if (!err)
[1ed3eb4]414 device->endpoints[idx] = ep;
[56257ba]415 }
[a6c4597]416 fibril_mutex_unlock(&device->guard);
[56257ba]417 if (err) {
418 endpoint_del_ref(ep);
419 return err;
420 }
[0206d35]421
422 if (out_ep) {
[6832245]423 /* Exporting reference */
[41924f30]424 endpoint_add_ref(ep);
[0206d35]425 *out_ep = ep;
[41924f30]426 }
[0206d35]427
[56257ba]428 return EOK;
[a6afb4c]429drop:
430 /* Bus reference */
431 endpoint_del_ref(ep);
432 return EINVAL;
[41924f30]433}
434
[1102eca]435/**
436 * Search for an endpoint. Returns a reference.
[0206d35]437 */
[a6afb4c]438endpoint_t *bus_find_endpoint(device_t *device, usb_endpoint_t endpoint,
439 usb_direction_t dir)
[41924f30]440{
[6832245]441 assert(device);
442
[a6afb4c]443 const size_t idx = bus_endpoint_index(endpoint, dir);
444 const size_t ctrl_idx = bus_endpoint_index(endpoint, USB_DIRECTION_BOTH);
445
446 endpoint_t *ep = NULL;
[1ed3eb4]447
[a6c4597]448 fibril_mutex_lock(&device->guard);
[a6afb4c]449 if (idx < ARRAY_SIZE(device->endpoints))
450 ep = device->endpoints[idx];
[1ed3eb4]451 /*
452 * If the endpoint was not found, it's still possible it is a control
453 * endpoint having direction BOTH.
454 */
[a6afb4c]455 if (!ep && ctrl_idx < ARRAY_SIZE(device->endpoints)) {
[1ed3eb4]456 ep = device->endpoints[ctrl_idx];
457 if (ep && ep->transfer_type != USB_TRANSFER_CONTROL)
458 ep = NULL;
459 }
[0206d35]460 if (ep) {
461 /* Exporting reference */
462 endpoint_add_ref(ep);
463 }
[a6c4597]464 fibril_mutex_unlock(&device->guard);
[0206d35]465 return ep;
[41924f30]466}
467
[1102eca]468/**
469 * Remove an endpoint from the device. Consumes a reference.
470 */
[6832245]471int bus_endpoint_remove(endpoint_t *ep)
[41924f30]472{
473 assert(ep);
[9efad54]474 assert(ep->device);
[41924f30]475
[a6c4597]476 device_t *device = ep->device;
477 if (!device)
478 return ENOENT;
479
480 bus_t *bus = device->bus;
[6832245]481
[9efad54]482 const bus_ops_t *ops = BUS_OPS_LOOKUP(bus->ops, endpoint_unregister);
[6832245]483 if (!ops)
484 return ENOTSUP;
485
[a1732929]486 usb_log_debug("Unregister endpoint %d:%d %s-%s %zuB.",
[a6c4597]487 device->address, ep->endpoint,
[9efad54]488 usb_str_transfer_type(ep->transfer_type),
489 usb_str_direction(ep->direction),
490 ep->max_transfer_size);
491
[a6afb4c]492 const size_t idx = bus_endpoint_index(ep->endpoint, ep->direction);
493
494 if (idx >= ARRAY_SIZE(device->endpoints))
495 return EINVAL;
[1ed3eb4]496
[a6c4597]497 fibril_mutex_lock(&device->guard);
[bad4a05]498 ops->endpoint_unregister(ep);
[1ed3eb4]499 device->endpoints[idx] = NULL;
[a6c4597]500 fibril_mutex_unlock(&device->guard);
[41924f30]501
502 /* Bus reference */
503 endpoint_del_ref(ep);
504
[1102eca]505 /* Given reference */
506 endpoint_del_ref(ep);
507
[41924f30]508 return EOK;
509}
510
[1102eca]511/**
[a6afb4c]512 * Reserve the default address on the bus for the specified device (hub).
[1102eca]513 */
[eeca8a6]514int bus_reserve_default_address(bus_t *bus, device_t *dev)
[41924f30]515{
516 assert(bus);
517
[eeca8a6]518 int err;
[41924f30]519 fibril_mutex_lock(&bus->guard);
[eeca8a6]520 if (bus->default_address_owner != NULL) {
521 err = (bus->default_address_owner == dev) ? EINVAL : EAGAIN;
[5e2b1ae6]522 } else {
[eeca8a6]523 bus->default_address_owner = dev;
524 err = EOK;
[5e2b1ae6]525 }
[eeca8a6]526 fibril_mutex_unlock(&bus->guard);
527 return err;
[41924f30]528}
529
[1102eca]530/**
531 * Release the default address.
532 */
[eeca8a6]533void bus_release_default_address(bus_t *bus, device_t *dev)
[41924f30]534{
535 assert(bus);
[eeca8a6]536
537 fibril_mutex_lock(&bus->guard);
538 if (bus->default_address_owner != dev) {
[4603b35]539 usb_log_error("Device %d tried to release default address, "
540 "which is not reserved for it.", dev->address);
[eeca8a6]541 } else {
542 bus->default_address_owner = NULL;
543 }
544 fibril_mutex_unlock(&bus->guard);
[41924f30]545}
546
[1102eca]547/**
548 * Initiate a transfer on the bus. Finds the target endpoint, creates
549 * a transfer batch and schedules it.
550 *
[32fb6bce]551 * @param device Device for which to send the batch
[1102eca]552 * @param target The target of the transfer.
553 * @param direction A direction of the transfer.
554 * @param data A pointer to the data buffer.
555 * @param size Size of the data buffer.
556 * @param setup_data Data to use in the setup stage (Control communication type)
557 * @param on_complete Callback which is called after the batch is complete
[32fb6bce]558 * @param arg Callback parameter.
559 * @param name Communication identifier (for nicer output).
560 * @return Error code.
561 */
562int bus_device_send_batch(device_t *device, usb_target_t target,
563 usb_direction_t direction, char *data, size_t size, uint64_t setup_data,
564 usbhc_iface_transfer_callback_t on_complete, void *arg, const char *name)
565{
566 assert(device->address == target.address);
567
568 /* Temporary reference */
[1ed3eb4]569 endpoint_t *ep = bus_find_endpoint(device, target.endpoint, direction);
[32fb6bce]570 if (ep == NULL) {
[a1732929]571 usb_log_error("Endpoint(%d:%d) not registered for %s.",
[32fb6bce]572 device->address, target.endpoint, name);
573 return ENOENT;
574 }
575
576 assert(ep->device == device);
577
[a6afb4c]578 /*
579 * This method is already callable from HC only, so we can force these
580 * conditions harder.
581 * Invalid values from devices shall be caught on DDF interface already.
582 */
583 assert(usb_target_is_valid(&target));
584 assert(direction != USB_DIRECTION_BOTH);
585 assert(size == 0 || data != NULL);
586 assert(arg == NULL || on_complete != NULL);
587 assert(name);
588
589 const int err = endpoint_send_batch(ep, target, direction,
590 data, size, setup_data, on_complete, arg, name);
[32fb6bce]591
592 /* Temporary reference */
593 endpoint_del_ref(ep);
594
595 return err;
596}
597
[a6afb4c]598/**
599 * A structure to pass data from the completion callback to the caller.
600 */
[32fb6bce]601typedef struct {
602 fibril_mutex_t done_mtx;
603 fibril_condvar_t done_cv;
[a6afb4c]604 bool done;
[32fb6bce]605
[db51a6a6]606 size_t transferred_size;
[32fb6bce]607 int error;
608} sync_data_t;
609
[1102eca]610/**
611 * Callback for finishing the transfer. Wake the issuing thread.
612 */
[db51a6a6]613static int sync_transfer_complete(void *arg, int error, size_t transferred_size)
[32fb6bce]614{
615 sync_data_t *d = arg;
616 assert(d);
[db51a6a6]617 d->transferred_size = transferred_size;
[32fb6bce]618 d->error = error;
619 fibril_mutex_lock(&d->done_mtx);
[a6afb4c]620 d->done = true;
[32fb6bce]621 fibril_condvar_broadcast(&d->done_cv);
622 fibril_mutex_unlock(&d->done_mtx);
623 return EOK;
624}
625
[1102eca]626/**
[a6afb4c]627 * Issue a transfer on the bus, wait for the result.
[1102eca]628 *
629 * @param device Device for which to send the batch
630 * @param target The target of the transfer.
631 * @param direction A direction of the transfer.
632 * @param data A pointer to the data buffer.
633 * @param size Size of the data buffer.
634 * @param setup_data Data to use in the setup stage (Control communication type)
635 * @param name Communication identifier (for nicer output).
636 */
[32fb6bce]637ssize_t bus_device_send_batch_sync(device_t *device, usb_target_t target,
638 usb_direction_t direction, char *data, size_t size, uint64_t setup_data,
639 const char *name)
640{
[a6afb4c]641 sync_data_t sd = { .done = false };
[32fb6bce]642 fibril_mutex_initialize(&sd.done_mtx);
643 fibril_condvar_initialize(&sd.done_cv);
644
645 const int ret = bus_device_send_batch(device, target, direction,
[a6afb4c]646 data, size, setup_data, sync_transfer_complete, &sd, name);
[32fb6bce]647 if (ret != EOK)
648 return ret;
649
[a6afb4c]650 /*
651 * Note: There are requests that are completed synchronously. It is not
652 * therefore possible to just lock the mutex before and wait.
653 */
[32fb6bce]654 fibril_mutex_lock(&sd.done_mtx);
[a6afb4c]655 while (!sd.done)
[1102eca]656 fibril_condvar_wait(&sd.done_cv, &sd.done_mtx);
[32fb6bce]657 fibril_mutex_unlock(&sd.done_mtx);
658
659 return (sd.error == EOK)
[db51a6a6]660 ? (ssize_t) sd.transferred_size
[32fb6bce]661 : (ssize_t) sd.error;
662}
663
[41924f30]664/**
665 * @}
666 */
Note: See TracBrowser for help on using the repository browser.