source: mainline/uspace/drv/ohci/batch.c@ a91fbb1

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

Bulk out data fix

  • Property mode set to 100644
File size: 11.9 KB
RevLine 
[41b96b4]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 */
[81dce9f]28/** @addtogroup drvusbohci
[41b96b4]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
40#include "batch.h"
[9a6fde4]41#include "hcd_endpoint.h"
[2bf8f8c]42#include "utils/malloc32.h"
[06c552c]43#include "hw_struct/endpoint_descriptor.h"
44#include "hw_struct/transfer_descriptor.h"
45
[2cc6e97]46typedef struct ohci_transfer_batch {
[06c552c]47 ed_t *ed;
[9a6fde4]48 td_t **tds;
[06c552c]49 size_t td_count;
[9a6fde4]50 size_t leave_td;
51 char *device_buffer;
[2cc6e97]52} ohci_transfer_batch_t;
53
54static void ohci_transfer_batch_dispose(void *ohci_batch)
55{
56 ohci_transfer_batch_t *instance = ohci_batch;
[9a6fde4]57 if (!instance)
58 return;
59 free32(instance->device_buffer);
60 unsigned i = 0;
61 if (instance->tds) {
62 for (; i< instance->td_count; ++i) {
63 if (i != instance->leave_td)
64 free32(instance->tds[i]);
65 }
66 free(instance->tds);
67 }
68 free(instance);
[2cc6e97]69}
[9a6fde4]70/*----------------------------------------------------------------------------*/
[e42dd32]71static void batch_control(usb_transfer_batch_t *instance,
72 usb_direction_t data_dir, usb_direction_t status_dir);
[c6fe469]73static void batch_data(usb_transfer_batch_t *instance);
[9a6fde4]74/*----------------------------------------------------------------------------*/
[6bec59b]75usb_transfer_batch_t * batch_get(ddf_fun_t *fun, endpoint_t *ep,
76 char *buffer, size_t buffer_size, char* setup_buffer, size_t setup_size,
[be7950e8]77 usbhc_iface_transfer_in_callback_t func_in,
[6bec59b]78 usbhc_iface_transfer_out_callback_t func_out, void *arg)
[be7950e8]79{
[2bf8f8c]80#define CHECK_NULL_DISPOSE_RETURN(ptr, message...) \
81 if (ptr == NULL) { \
82 usb_log_error(message); \
83 if (instance) { \
[2cc6e97]84 usb_transfer_batch_dispose(instance); \
[2bf8f8c]85 } \
86 return NULL; \
87 } else (void)0
88
[1387692]89 usb_transfer_batch_t *instance = malloc(sizeof(usb_transfer_batch_t));
[2bf8f8c]90 CHECK_NULL_DISPOSE_RETURN(instance,
91 "Failed to allocate batch instance.\n");
[d017cea]92 usb_transfer_batch_init(instance, ep, buffer, NULL, buffer_size,
[2cc6e97]93 NULL, setup_size, func_in, func_out, arg, fun, NULL,
94 ohci_transfer_batch_dispose);
[2bf8f8c]95
[9a6fde4]96 hcd_endpoint_t *hcd_ep = hcd_endpoint_get(ep);
97 assert(hcd_ep);
98
99 ohci_transfer_batch_t *data = calloc(sizeof(ohci_transfer_batch_t), 1);
[06c552c]100 CHECK_NULL_DISPOSE_RETURN(data, "Failed to allocate batch data.\n");
101 instance->private_data = data;
102
[9a6fde4]103 data->td_count =
[b854e56]104 ((buffer_size + OHCI_TD_MAX_TRANSFER - 1) / OHCI_TD_MAX_TRANSFER);
[06c552c]105 if (ep->transfer_type == USB_TRANSFER_CONTROL) {
106 data->td_count += 2;
107 }
108
[9a6fde4]109 /* we need one extra place for td that is currently assigned to hcd_ep*/
110 data->tds = calloc(sizeof(td_t*), data->td_count + 1);
[06c552c]111 CHECK_NULL_DISPOSE_RETURN(data->tds,
112 "Failed to allocate transfer descriptors.\n");
113
[9a6fde4]114 data->tds[0] = hcd_ep->td;
115 data->leave_td = 0;
116 unsigned i = 1;
117 for (; i <= data->td_count; ++i) {
118 data->tds[i] = malloc32(sizeof(td_t));
119 CHECK_NULL_DISPOSE_RETURN(data->tds[i],
120 "Failed to allocate TD %d.\n", i );
121 }
122
123 data->ed = hcd_ep->ed;
[06c552c]124
[9a6fde4]125 if (setup_size + buffer_size > 0) {
126 data->device_buffer = malloc32(setup_size + buffer_size);
127 CHECK_NULL_DISPOSE_RETURN(data->device_buffer,
[2bf8f8c]128 "Failed to allocate device accessible buffer.\n");
[9a6fde4]129 instance->setup_buffer = data->device_buffer;
130 instance->data_buffer = data->device_buffer + setup_size;
[2bf8f8c]131 memcpy(instance->setup_buffer, setup_buffer, setup_size);
132 }
133
134 return instance;
[be7950e8]135}
136/*----------------------------------------------------------------------------*/
[f98b8269]137bool batch_is_complete(usb_transfer_batch_t *instance)
138{
[f1be95c8]139 assert(instance);
[2cc6e97]140 ohci_transfer_batch_t *data = instance->private_data;
[f1be95c8]141 assert(data);
[9a6fde4]142 size_t tds = data->td_count;
[78d4e1f]143 usb_log_debug("Batch(%p) checking %d td(s) for completion.\n",
[f1be95c8]144 instance, tds);
[78d4e1f]145 usb_log_debug("ED: %x:%x:%x:%x.\n",
146 data->ed->status, data->ed->td_head, data->ed->td_tail,
147 data->ed->next);
[f1be95c8]148 size_t i = 0;
[ad86349]149 instance->transfered_size = instance->buffer_size;
[f1be95c8]150 for (; i < tds; ++i) {
[9a6fde4]151 assert(data->tds[i] != NULL);
[78d4e1f]152 usb_log_debug("TD %d: %x:%x:%x:%x.\n", i,
[9a6fde4]153 data->tds[i]->status, data->tds[i]->cbp, data->tds[i]->next,
154 data->tds[i]->be);
155 if (!td_is_finished(data->tds[i])) {
[f1be95c8]156 return false;
[aa9ccf7]157 }
[9a6fde4]158 instance->error = td_error(data->tds[i]);
[f1be95c8]159 if (instance->error != EOK) {
160 usb_log_debug("Batch(%p) found error TD(%d):%x.\n",
[9a6fde4]161 instance, i, data->tds[i]->status);
[c9dc471]162 /* Make sure TD queue is empty (one TD),
163 * ED should be marked as halted */
164 data->ed->td_tail =
165 (data->ed->td_head & ED_TDTAIL_PTR_MASK);
166 ++i;
[9a6fde4]167 break;
[f1be95c8]168 }
169 }
[d6522dd]170 data->leave_td = i;
[9a6fde4]171 assert(data->leave_td <= data->td_count);
[d6522dd]172 hcd_endpoint_t *hcd_ep = hcd_endpoint_get(instance->ep);
173 assert(hcd_ep);
174 hcd_ep->td = data->tds[i];
[ad86349]175 if (i > 0)
176 instance->transfered_size -= td_remain_size(data->tds[i - 1]);
177
[c9dc471]178 /* Clear possible ED HALT */
179 data->ed->td_head &= ~ED_TDHEAD_HALTED_FLAG;
180 uint32_t pa = addr_to_phys(hcd_ep->td);
181 assert(pa == (data->ed->td_head & ED_TDHEAD_PTR_MASK));
182 assert(pa == (data->ed->td_tail & ED_TDTAIL_PTR_MASK));
[d6522dd]183
[f1be95c8]184 return true;
[f98b8269]185}
186/*----------------------------------------------------------------------------*/
[7013b14]187void batch_commit(usb_transfer_batch_t *instance)
188{
189 assert(instance);
190 ohci_transfer_batch_t *data = instance->private_data;
191 assert(data);
192 ed_set_end_td(data->ed, data->tds[data->td_count]);
193}
194/*----------------------------------------------------------------------------*/
[1387692]195void batch_control_write(usb_transfer_batch_t *instance)
[be7950e8]196{
[2bf8f8c]197 assert(instance);
[d328172]198 /* We are data out, we are supposed to provide data */
[d017cea]199 memcpy(instance->data_buffer, instance->buffer, instance->buffer_size);
[2cc6e97]200 instance->next_step = usb_transfer_batch_call_out_and_dispose;
[e42dd32]201 batch_control(instance, USB_DIRECTION_OUT, USB_DIRECTION_IN);
[d328172]202 usb_log_debug("Batch(%p) CONTROL WRITE initialized.\n", instance);
[be7950e8]203}
204/*----------------------------------------------------------------------------*/
[1387692]205void batch_control_read(usb_transfer_batch_t *instance)
[be7950e8]206{
[2bf8f8c]207 assert(instance);
[2cc6e97]208 instance->next_step = usb_transfer_batch_call_in_and_dispose;
[e42dd32]209 batch_control(instance, USB_DIRECTION_IN, USB_DIRECTION_OUT);
[81001f6]210 usb_log_debug("Batch(%p) CONTROL READ initialized.\n", instance);
[be7950e8]211}
212/*----------------------------------------------------------------------------*/
[1387692]213void batch_interrupt_in(usb_transfer_batch_t *instance)
[be7950e8]214{
[2bf8f8c]215 assert(instance);
[2cc6e97]216 instance->next_step = usb_transfer_batch_call_in_and_dispose;
[c6fe469]217 batch_data(instance);
[d328172]218 usb_log_debug("Batch(%p) INTERRUPT IN initialized.\n", instance);
[be7950e8]219}
220/*----------------------------------------------------------------------------*/
[1387692]221void batch_interrupt_out(usb_transfer_batch_t *instance)
[be7950e8]222{
[2bf8f8c]223 assert(instance);
[d328172]224 /* We are data out, we are supposed to provide data */
[d017cea]225 memcpy(instance->data_buffer, instance->buffer, instance->buffer_size);
[2cc6e97]226 instance->next_step = usb_transfer_batch_call_out_and_dispose;
[c6fe469]227 batch_data(instance);
[d328172]228 usb_log_debug("Batch(%p) INTERRUPT OUT initialized.\n", instance);
[be7950e8]229}
230/*----------------------------------------------------------------------------*/
[1387692]231void batch_bulk_in(usb_transfer_batch_t *instance)
[be7950e8]232{
[2bf8f8c]233 assert(instance);
[2cc6e97]234 instance->next_step = usb_transfer_batch_call_in_and_dispose;
[c6fe469]235 batch_data(instance);
[d328172]236 usb_log_debug("Batch(%p) BULK IN initialized.\n", instance);
[be7950e8]237}
238/*----------------------------------------------------------------------------*/
[1387692]239void batch_bulk_out(usb_transfer_batch_t *instance)
[be7950e8]240{
[2bf8f8c]241 assert(instance);
[6b082a1b]242 /* We are data out, we are supposed to provide data */
243 memcpy(instance->data_buffer, instance->buffer, instance->buffer_size);
[a13ed97]244 instance->next_step = usb_transfer_batch_call_out_and_dispose;
[c6fe469]245 batch_data(instance);
[a13ed97]246 usb_log_debug("Batch(%p) BULK OUT initialized.\n", instance);
[d328172]247}
248/*----------------------------------------------------------------------------*/
[f98b8269]249ed_t * batch_ed(usb_transfer_batch_t *instance)
250{
[7786cea]251 assert(instance);
[2cc6e97]252 ohci_transfer_batch_t *data = instance->private_data;
[7786cea]253 assert(data);
254 return data->ed;
255}
256/*----------------------------------------------------------------------------*/
[e42dd32]257void batch_control(usb_transfer_batch_t *instance,
258 usb_direction_t data_dir, usb_direction_t status_dir)
[7786cea]259{
260 assert(instance);
[2cc6e97]261 ohci_transfer_batch_t *data = instance->private_data;
[7786cea]262 assert(data);
[d6522dd]263 usb_log_debug("Using ED(%p): %x:%x:%x:%x.\n", data->ed,
[8790650]264 data->ed->status, data->ed->td_tail, data->ed->td_head,
265 data->ed->next);
[e42dd32]266 int toggle = 0;
267 /* setup stage */
[9a6fde4]268 td_init(data->tds[0], USB_DIRECTION_BOTH, instance->setup_buffer,
[e42dd32]269 instance->setup_size, toggle);
[9a6fde4]270 td_set_next(data->tds[0], data->tds[1]);
271 usb_log_debug("Created SETUP TD: %x:%x:%x:%x.\n", data->tds[0]->status,
272 data->tds[0]->cbp, data->tds[0]->next, data->tds[0]->be);
[e42dd32]273
274 /* data stage */
275 size_t td_current = 1;
276 size_t remain_size = instance->buffer_size;
[d017cea]277 char *buffer = instance->data_buffer;
[e42dd32]278 while (remain_size > 0) {
279 size_t transfer_size = remain_size > OHCI_TD_MAX_TRANSFER ?
280 OHCI_TD_MAX_TRANSFER : remain_size;
281 toggle = 1 - toggle;
282
[9a6fde4]283 td_init(data->tds[td_current], data_dir, buffer,
[e42dd32]284 transfer_size, toggle);
[9a6fde4]285 td_set_next(data->tds[td_current], data->tds[td_current + 1]);
[e42dd32]286 usb_log_debug("Created DATA TD: %x:%x:%x:%x.\n",
[9a6fde4]287 data->tds[td_current]->status, data->tds[td_current]->cbp,
288 data->tds[td_current]->next, data->tds[td_current]->be);
[e42dd32]289
[d017cea]290 buffer += transfer_size;
[e42dd32]291 remain_size -= transfer_size;
[9a6fde4]292 assert(td_current < data->td_count - 1);
[e42dd32]293 ++td_current;
294 }
295
296 /* status stage */
[9a6fde4]297 assert(td_current == data->td_count - 1);
298 td_init(data->tds[td_current], status_dir, NULL, 0, 1);
299 td_set_next(data->tds[td_current], data->tds[td_current + 1]);
[e42dd32]300 usb_log_debug("Created STATUS TD: %x:%x:%x:%x.\n",
[9a6fde4]301 data->tds[td_current]->status, data->tds[td_current]->cbp,
302 data->tds[td_current]->next, data->tds[td_current]->be);
[f98b8269]303}
304/*----------------------------------------------------------------------------*/
[c6fe469]305void batch_data(usb_transfer_batch_t *instance)
306{
307 assert(instance);
[2cc6e97]308 ohci_transfer_batch_t *data = instance->private_data;
[c6fe469]309 assert(data);
[d6522dd]310 usb_log_debug("Using ED(%p): %x:%x:%x:%x.\n", data->ed,
[c6fe469]311 data->ed->status, data->ed->td_tail, data->ed->td_head,
312 data->ed->next);
313
[aa9ccf7]314 size_t td_current = 0;
[c6fe469]315 size_t remain_size = instance->buffer_size;
[d017cea]316 char *buffer = instance->data_buffer;
[c6fe469]317 while (remain_size > 0) {
318 size_t transfer_size = remain_size > OHCI_TD_MAX_TRANSFER ?
319 OHCI_TD_MAX_TRANSFER : remain_size;
320
[9a6fde4]321 td_init(data->tds[td_current], instance->ep->direction,
[d017cea]322 buffer, transfer_size, -1);
[9a6fde4]323 td_set_next(data->tds[td_current], data->tds[td_current + 1]);
[c6fe469]324 usb_log_debug("Created DATA TD: %x:%x:%x:%x.\n",
[9a6fde4]325 data->tds[td_current]->status, data->tds[td_current]->cbp,
326 data->tds[td_current]->next, data->tds[td_current]->be);
[c6fe469]327
[d017cea]328 buffer += transfer_size;
[c6fe469]329 remain_size -= transfer_size;
330 assert(td_current < data->td_count);
331 ++td_current;
332 }
333}
[41b96b4]334/**
335 * @}
336 */
Note: See TracBrowser for help on using the repository browser.