source: mainline/uspace/lib/usb/src/host/batch.c@ a372663

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

Fix toggle protocol, add support for all 32 endpoints

  • Property mode set to 100644
File size: 4.3 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 libusb
29 * @{
30 */
31/** @file
32 * @brief OHCI driver USB transaction structure
33 */
34#include <errno.h>
35#include <str_error.h>
36
37#include <usb/usb.h>
38#include <usb/debug.h>
39#include <usb/host/batch.h>
40
41void batch_init(
42 batch_t *instance,
43 usb_target_t target,
44 usb_transfer_type_t transfer_type,
45 usb_speed_t speed,
46 size_t max_packet_size,
47 char *buffer,
48 char *transport_buffer,
49 size_t buffer_size,
50 char *setup_buffer,
51 size_t setup_size,
52 usbhc_iface_transfer_in_callback_t func_in,
53 usbhc_iface_transfer_out_callback_t func_out,
54 void *arg,
55 ddf_fun_t *fun,
56 void *private_data
57 )
58{
59 assert(instance);
60 link_initialize(&instance->link);
61 instance->target = target;
62 instance->transfer_type = transfer_type;
63 instance->speed = speed;
64 instance->direction = USB_DIRECTION_BOTH;
65 instance->callback_in = func_in;
66 instance->callback_out = func_out;
67 instance->arg = arg;
68 instance->buffer = buffer;
69 instance->transport_buffer = transport_buffer;
70 instance->buffer_size = buffer_size;
71 instance->setup_buffer = setup_buffer;
72 instance->setup_size = setup_size;
73 instance->max_packet_size = max_packet_size;
74 instance->fun = fun;
75 instance->private_data = private_data;
76 instance->transfered_size = 0;
77 instance->next_step = NULL;
78 instance->error = EOK;
79
80}
81/*----------------------------------------------------------------------------*/
82/** Mark batch as finished and continue with next step.
83 *
84 * @param[in] instance Batch structure to use.
85 *
86 */
87void batch_finish(batch_t *instance, int error)
88{
89 assert(instance);
90 instance->error = error;
91 instance->next_step(instance);
92}
93/*----------------------------------------------------------------------------*/
94/** Prepare data, get error status and call callback in.
95 *
96 * @param[in] instance Batch structure to use.
97 * Copies data from transport buffer, and calls callback with appropriate
98 * parameters.
99 */
100void batch_call_in(batch_t *instance)
101{
102 assert(instance);
103 assert(instance->callback_in);
104
105 /* We are data in, we need data */
106 memcpy(instance->buffer, instance->transport_buffer,
107 instance->buffer_size);
108
109 int err = instance->error;
110 usb_log_debug("Batch(%p) callback IN(type:%d): %s(%d), %zu.\n",
111 instance, instance->transfer_type, str_error(err), err,
112 instance->transfered_size);
113
114 instance->callback_in(
115 instance->fun, err, instance->transfered_size, instance->arg);
116}
117/*----------------------------------------------------------------------------*/
118/** Get error status and call callback out.
119 *
120 * @param[in] instance Batch structure to use.
121 */
122void batch_call_out(batch_t *instance)
123{
124 assert(instance);
125 assert(instance->callback_out);
126
127 int err = instance->error;
128 usb_log_debug("Batch(%p) callback OUT(type:%d): %s(%d).\n",
129 instance, instance->transfer_type, str_error(err), err);
130 instance->callback_out(instance->fun,
131 err, instance->arg);
132}
133/**
134 * @}
135 */
Note: See TracBrowser for help on using the repository browser.