source: mainline/uspace/lib/usbhost/src/usb_transfer_batch.c@ 8b54fe6

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

usb: rename batch.h ⇒ usb_transfer_batch.h to match the structure name

  • Property mode set to 100644
File size: 5.6 KB
RevLine 
[81dce9f]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 */
[160b75e]28/** @addtogroup libusbhost
[81dce9f]29 * @{
30 */
31/** @file
[c92c13f]32 * USB transfer transaction structures (implementation).
[81dce9f]33 */
34#include <errno.h>
35#include <str_error.h>
36
37#include <usb/usb.h>
38#include <usb/debug.h>
[f58ef61]39#include <usb/host/usb_transfer_batch.h>
[df8f3fa]40#include <usb/host/hcd.h>
[81dce9f]41
[70fb822]42usb_transfer_batch_t * usb_transfer_batch_get(
[2cc6e97]43 endpoint_t *ep,
[81dce9f]44 char *buffer,
45 size_t buffer_size,
[a837544]46 uint64_t setup_buffer,
[81dce9f]47 usbhc_iface_transfer_in_callback_t func_in,
48 usbhc_iface_transfer_out_callback_t func_out,
49 void *arg,
50 ddf_fun_t *fun,
[2cc6e97]51 void *private_data,
[70fb822]52 void (*private_data_dtor)(void *)
[81dce9f]53 )
54{
[70fb822]55 usb_transfer_batch_t *instance = malloc(sizeof(usb_transfer_batch_t));
56 if (instance) {
57 instance->ep = ep;
58 instance->callback_in = func_in;
59 instance->callback_out = func_out;
60 instance->arg = arg;
61 instance->buffer = buffer;
62 instance->buffer_size = buffer_size;
[a00ac07]63 instance->setup_size = 0;
[70fb822]64 instance->fun = fun;
65 instance->private_data = private_data;
66 instance->private_data_dtor = private_data_dtor;
67 instance->transfered_size = 0;
68 instance->error = EOK;
[a00ac07]69 if (ep && ep->transfer_type == USB_TRANSFER_CONTROL) {
[a837544]70 memcpy(instance->setup_buffer, &setup_buffer,
[a00ac07]71 USB_SETUP_PACKET_SIZE);
72 instance->setup_size = USB_SETUP_PACKET_SIZE;
73 }
[70fb822]74 if (instance->ep)
75 endpoint_use(instance->ep);
76 }
77 return instance;
[2cc6e97]78}
79/*----------------------------------------------------------------------------*/
[81dce9f]80/** Mark batch as finished and continue with next step.
81 *
82 * @param[in] instance Batch structure to use.
83 *
84 */
[f18d82f0]85void usb_transfer_batch_finish(
86 usb_transfer_batch_t *instance, const void *data, size_t size)
[81dce9f]87{
88 assert(instance);
[f18d82f0]89 assert(instance->ep);
90 /* we care about the data and there are some to copy */
91 if (instance->ep->direction != USB_DIRECTION_OUT
92 && data) {
93 const size_t min_size =
94 size < instance->buffer_size ? size : instance->buffer_size;
95 memcpy(instance->buffer, data, min_size);
96 }
97 if (instance->callback_out)
98 usb_transfer_batch_call_out(instance);
99 if (instance->callback_in)
100 usb_transfer_batch_call_in(instance);
101
[81dce9f]102}
103/*----------------------------------------------------------------------------*/
104/** Prepare data, get error status and call callback in.
105 *
106 * @param[in] instance Batch structure to use.
107 * Copies data from transport buffer, and calls callback with appropriate
108 * parameters.
109 */
[1387692]110void usb_transfer_batch_call_in(usb_transfer_batch_t *instance)
[81dce9f]111{
112 assert(instance);
113 assert(instance->callback_in);
114
[026793d]115 usb_log_debug2("Batch %p " USB_TRANSFER_BATCH_FMT " completed (%zuB): %s.\n",
[c4fb5ecd]116 instance, USB_TRANSFER_BATCH_ARGS(*instance),
117 instance->transfered_size, str_error(instance->error));
[81dce9f]118
[d7186cd]119 instance->callback_in(instance->fun, instance->error,
120 instance->transfered_size, instance->arg);
[81dce9f]121}
122/*----------------------------------------------------------------------------*/
123/** Get error status and call callback out.
124 *
125 * @param[in] instance Batch structure to use.
126 */
[1387692]127void usb_transfer_batch_call_out(usb_transfer_batch_t *instance)
[81dce9f]128{
129 assert(instance);
130 assert(instance->callback_out);
131
[026793d]132 usb_log_debug2("Batch %p " USB_TRANSFER_BATCH_FMT " completed: %s.\n",
[c4fb5ecd]133 instance, USB_TRANSFER_BATCH_ARGS(*instance),
134 str_error(instance->error));
[d7186cd]135
[df8f3fa]136 if (instance->ep->transfer_type == USB_TRANSFER_CONTROL
137 && instance->error == EOK) {
[56e9fb0]138 const usb_target_t target =
139 {{ instance->ep->address, instance->ep->endpoint }};
[df8f3fa]140 reset_ep_if_need(
141 fun_to_hcd(instance->fun), target, instance->setup_buffer);
142 }
143
[81dce9f]144 instance->callback_out(instance->fun,
[d7186cd]145 instance->error, instance->arg);
[81dce9f]146}
[2cc6e97]147/*----------------------------------------------------------------------------*/
148/** Correctly dispose all used data structures.
149 *
150 * @param[in] instance Batch structure to use.
151 */
152void usb_transfer_batch_dispose(usb_transfer_batch_t *instance)
153{
[96e2d01]154 if (!instance)
155 return;
[c4fb5ecd]156 usb_log_debug2("Batch %p " USB_TRANSFER_BATCH_FMT " disposing.\n",
157 instance, USB_TRANSFER_BATCH_ARGS(*instance));
[70fb822]158 if (instance->ep) {
159 endpoint_release(instance->ep);
160 }
[2cc6e97]161 if (instance->private_data) {
162 assert(instance->private_data_dtor);
163 instance->private_data_dtor(instance->private_data);
164 }
165 free(instance);
166}
[81dce9f]167/**
168 * @}
169 */
Note: See TracBrowser for help on using the repository browser.