source: mainline/uspace/lib/usbhost/src/usb_transfer_batch.c@ 5e2b1ae6

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

usbhost: manage endpoints by library + get/set_toggle → reset_toggle

That simplifies things A LOT. Now you can find endpoints for device in
an array inside device. This array is managed automatically in
register/unregister endpoint. HC drivers still needs to write to it when
setting up/tearing down the device.

Sorry for these two changes being in one commit, but splitting them
would be simply more work for no benefit.

  • Property mode set to 100644
File size: 3.8 KB
Line 
1/*
2 * Copyright (c) 2011 Jan Vesely
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/** @addtogroup libusbhost
29 * @{
30 */
31/** @file
32 * USB transfer transaction structures (implementation).
33 */
34
35#include <assert.h>
36#include <errno.h>
37#include <stdlib.h>
38#include <str_error.h>
39#include <usb/debug.h>
40
41#include "endpoint.h"
42#include "bus.h"
43
44#include "usb_transfer_batch.h"
45
46/** Create a batch on given endpoint.
47 */
48usb_transfer_batch_t *usb_transfer_batch_create(endpoint_t *ep)
49{
50 assert(ep);
51
52 bus_t *bus = endpoint_get_bus(ep);
53 const bus_ops_t *ops = BUS_OPS_LOOKUP(bus->ops, batch_create);
54
55 if (!ops) {
56 usb_transfer_batch_t *batch = calloc(1, sizeof(usb_transfer_batch_t));
57 usb_transfer_batch_init(batch, ep);
58 return batch;
59 }
60
61 return ops->batch_create(ep);
62}
63
64/** Initialize given batch structure.
65 */
66void usb_transfer_batch_init(usb_transfer_batch_t *batch, endpoint_t *ep)
67{
68 assert(ep);
69 endpoint_add_ref(ep);
70 batch->ep = ep;
71}
72
73/** Destroy the batch.
74 *
75 * @param[in] batch Batch structure to use.
76 */
77void usb_transfer_batch_destroy(usb_transfer_batch_t *batch)
78{
79 assert(batch);
80 assert(batch->ep);
81
82 bus_t *bus = endpoint_get_bus(batch->ep);
83 const bus_ops_t *ops = BUS_OPS_LOOKUP(bus->ops, batch_destroy);
84
85 endpoint_del_ref(batch->ep);
86
87 if (ops) {
88 usb_log_debug2("Batch %p " USB_TRANSFER_BATCH_FMT " destroying.\n",
89 batch, USB_TRANSFER_BATCH_ARGS(*batch));
90 ops->batch_destroy(batch);
91 }
92 else {
93 usb_log_debug2("Batch %p " USB_TRANSFER_BATCH_FMT " disposing.\n",
94 batch, USB_TRANSFER_BATCH_ARGS(*batch));
95 free(batch);
96 }
97}
98
99/** Finish a transfer batch: call handler, destroy batch, release endpoint.
100 *
101 * Call only after the batch have been scheduled && completed!
102 *
103 * @param[in] batch Batch structure to use.
104 */
105void usb_transfer_batch_finish(usb_transfer_batch_t *batch)
106{
107 assert(batch);
108 assert(batch->ep);
109
110 usb_log_debug2("Batch %p " USB_TRANSFER_BATCH_FMT " finishing.\n",
111 batch, USB_TRANSFER_BATCH_ARGS(*batch));
112
113 if (batch->on_complete) {
114 const int err = batch->on_complete(batch->on_complete_data, batch->error, batch->transfered_size);
115 if (err)
116 usb_log_warning("batch %p failed to complete: %s",
117 batch, str_error(err));
118 }
119
120 usb_transfer_batch_destroy(batch);
121}
122
123/** Finish a transfer batch as an aborted one.
124 *
125 * @param[in] batch Batch structure to use.
126 */
127void usb_transfer_batch_abort(usb_transfer_batch_t *batch)
128{
129 assert(batch);
130 assert(batch->ep);
131
132 batch->error = EAGAIN;
133 usb_transfer_batch_finish(batch);
134}
135
136/**
137 * @}
138 */
Note: See TracBrowser for help on using the repository browser.