[f98b8269] | 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 drvusbohci
|
---|
| 29 | * @{
|
---|
| 30 | */
|
---|
| 31 | /** @file
|
---|
| 32 | * @brief OHCI driver transfer list implementation
|
---|
| 33 | */
|
---|
| 34 | #include <errno.h>
|
---|
| 35 | #include <usb/debug.h>
|
---|
| 36 |
|
---|
| 37 | #include "transfer_list.h"
|
---|
| 38 |
|
---|
| 39 | static void transfer_list_remove_batch(
|
---|
| 40 | transfer_list_t *instance, usb_transfer_batch_t *batch);
|
---|
| 41 | /*----------------------------------------------------------------------------*/
|
---|
| 42 | /** Initialize transfer list structures.
|
---|
| 43 | *
|
---|
| 44 | * @param[in] instance Memory place to use.
|
---|
| 45 | * @param[in] name Name of the new list.
|
---|
| 46 | * @return Error code
|
---|
| 47 | *
|
---|
| 48 | * Allocates memory for internal qh_t structure.
|
---|
| 49 | */
|
---|
| 50 | int transfer_list_init(transfer_list_t *instance, const char *name)
|
---|
| 51 | {
|
---|
| 52 | assert(instance);
|
---|
| 53 | instance->name = name;
|
---|
| 54 | instance->list_head = malloc32(sizeof(ed_t));
|
---|
| 55 | if (!instance->list_head) {
|
---|
| 56 | usb_log_error("Failed to allocate list head.\n");
|
---|
| 57 | return ENOMEM;
|
---|
| 58 | }
|
---|
| 59 | instance->list_head_pa = addr_to_phys(instance->list_head);
|
---|
| 60 | usb_log_debug2("Transfer list %s setup with ED: %p(%p).\n",
|
---|
| 61 | name, instance->list_head, instance->list_head_pa);
|
---|
| 62 |
|
---|
[7786cea] | 63 | ed_init(instance->list_head, NULL);
|
---|
[f98b8269] | 64 | list_initialize(&instance->batch_list);
|
---|
| 65 | fibril_mutex_initialize(&instance->guard);
|
---|
| 66 | return EOK;
|
---|
| 67 | }
|
---|
| 68 | /*----------------------------------------------------------------------------*/
|
---|
| 69 | /** Set the next list in transfer list chain.
|
---|
| 70 | *
|
---|
| 71 | * @param[in] instance List to lead.
|
---|
| 72 | * @param[in] next List to append.
|
---|
| 73 | * @return Error code
|
---|
| 74 | *
|
---|
| 75 | * Does not check whether this replaces an existing list .
|
---|
| 76 | */
|
---|
| 77 | void transfer_list_set_next(transfer_list_t *instance, transfer_list_t *next)
|
---|
| 78 | {
|
---|
| 79 | assert(instance);
|
---|
| 80 | assert(next);
|
---|
| 81 | /* Set both queue_head.next to point to the follower */
|
---|
| 82 | ed_append_ed(instance->list_head, next->list_head);
|
---|
| 83 | }
|
---|
| 84 | /*----------------------------------------------------------------------------*/
|
---|
| 85 | /** Submit transfer batch to the list and queue.
|
---|
| 86 | *
|
---|
| 87 | * @param[in] instance List to use.
|
---|
| 88 | * @param[in] batch Transfer batch to submit.
|
---|
| 89 | * @return Error code
|
---|
| 90 | *
|
---|
| 91 | * The batch is added to the end of the list and queue.
|
---|
| 92 | */
|
---|
| 93 | void transfer_list_add_batch(
|
---|
| 94 | transfer_list_t *instance, usb_transfer_batch_t *batch)
|
---|
| 95 | {
|
---|
| 96 | assert(instance);
|
---|
| 97 | assert(batch);
|
---|
| 98 | usb_log_debug2("Queue %s: Adding batch(%p).\n", instance->name, batch);
|
---|
| 99 |
|
---|
| 100 | fibril_mutex_lock(&instance->guard);
|
---|
| 101 |
|
---|
| 102 | ed_t *last_ed = NULL;
|
---|
| 103 | /* Add to the hardware queue. */
|
---|
| 104 | if (list_empty(&instance->batch_list)) {
|
---|
| 105 | /* There is nothing scheduled */
|
---|
| 106 | last_ed = instance->list_head;
|
---|
| 107 | } else {
|
---|
| 108 | /* There is something scheduled */
|
---|
| 109 | usb_transfer_batch_t *last = list_get_instance(
|
---|
| 110 | instance->batch_list.prev, usb_transfer_batch_t, link);
|
---|
| 111 | last_ed = batch_ed(last);
|
---|
| 112 | }
|
---|
| 113 | /* keep link */
|
---|
| 114 | batch_ed(batch)->next = last_ed->next;
|
---|
| 115 | ed_append_ed(last_ed, batch_ed(batch));
|
---|
| 116 |
|
---|
| 117 | asm volatile ("": : :"memory");
|
---|
| 118 |
|
---|
| 119 | /* Add to the driver list */
|
---|
| 120 | list_append(&batch->link, &instance->batch_list);
|
---|
| 121 |
|
---|
| 122 | usb_transfer_batch_t *first = list_get_instance(
|
---|
| 123 | instance->batch_list.next, usb_transfer_batch_t, link);
|
---|
| 124 | usb_log_debug("Batch(%p) added to queue %s, first is %p.\n",
|
---|
| 125 | batch, instance->name, first);
|
---|
| 126 | fibril_mutex_unlock(&instance->guard);
|
---|
| 127 | }
|
---|
| 128 | /*----------------------------------------------------------------------------*/
|
---|
| 129 | /** Create list for finished batches.
|
---|
| 130 | *
|
---|
| 131 | * @param[in] instance List to use.
|
---|
| 132 | * @param[in] done list to fill
|
---|
| 133 | */
|
---|
| 134 | void transfer_list_remove_finished(transfer_list_t *instance, link_t *done)
|
---|
| 135 | {
|
---|
| 136 | assert(instance);
|
---|
| 137 | assert(done);
|
---|
| 138 |
|
---|
| 139 | fibril_mutex_lock(&instance->guard);
|
---|
| 140 | link_t *current = instance->batch_list.next;
|
---|
| 141 | while (current != &instance->batch_list) {
|
---|
| 142 | link_t *next = current->next;
|
---|
| 143 | usb_transfer_batch_t *batch =
|
---|
| 144 | list_get_instance(current, usb_transfer_batch_t, link);
|
---|
| 145 |
|
---|
| 146 | if (batch_is_complete(batch)) {
|
---|
| 147 | /* Save for post-processing */
|
---|
| 148 | transfer_list_remove_batch(instance, batch);
|
---|
| 149 | list_append(current, done);
|
---|
| 150 | }
|
---|
| 151 | current = next;
|
---|
| 152 | }
|
---|
| 153 | fibril_mutex_unlock(&instance->guard);
|
---|
| 154 | }
|
---|
| 155 | /*----------------------------------------------------------------------------*/
|
---|
| 156 | /** Walk the list and abort all batches.
|
---|
| 157 | *
|
---|
| 158 | * @param[in] instance List to use.
|
---|
| 159 | */
|
---|
| 160 | void transfer_list_abort_all(transfer_list_t *instance)
|
---|
| 161 | {
|
---|
| 162 | fibril_mutex_lock(&instance->guard);
|
---|
| 163 | while (!list_empty(&instance->batch_list)) {
|
---|
| 164 | link_t *current = instance->batch_list.next;
|
---|
| 165 | usb_transfer_batch_t *batch =
|
---|
| 166 | list_get_instance(current, usb_transfer_batch_t, link);
|
---|
| 167 | transfer_list_remove_batch(instance, batch);
|
---|
| 168 | usb_transfer_batch_finish_error(batch, EIO);
|
---|
| 169 | }
|
---|
| 170 | fibril_mutex_unlock(&instance->guard);
|
---|
| 171 | }
|
---|
| 172 | /*----------------------------------------------------------------------------*/
|
---|
| 173 | /** Remove a transfer batch from the list and queue.
|
---|
| 174 | *
|
---|
| 175 | * @param[in] instance List to use.
|
---|
| 176 | * @param[in] batch Transfer batch to remove.
|
---|
| 177 | * @return Error code
|
---|
| 178 | *
|
---|
| 179 | * Does not lock the transfer list, caller is responsible for that.
|
---|
| 180 | */
|
---|
| 181 | void transfer_list_remove_batch(
|
---|
| 182 | transfer_list_t *instance, usb_transfer_batch_t *batch)
|
---|
| 183 | {
|
---|
| 184 | assert(instance);
|
---|
| 185 | assert(instance->list_head);
|
---|
| 186 | assert(batch);
|
---|
| 187 | assert(batch_ed(batch));
|
---|
| 188 | assert(fibril_mutex_is_locked(&instance->guard));
|
---|
| 189 |
|
---|
| 190 | usb_log_debug2(
|
---|
| 191 | "Queue %s: removing batch(%p).\n", instance->name, batch);
|
---|
| 192 |
|
---|
| 193 | const char *qpos = NULL;
|
---|
| 194 | /* Remove from the hardware queue */
|
---|
| 195 | if (instance->batch_list.next == &batch->link) {
|
---|
| 196 | /* I'm the first one here */
|
---|
| 197 | assert((instance->list_head->next & ED_NEXT_PTR_MASK)
|
---|
| 198 | == addr_to_phys(batch_ed(batch)));
|
---|
| 199 | instance->list_head->next = batch_ed(batch)->next;
|
---|
| 200 | qpos = "FIRST";
|
---|
| 201 | } else {
|
---|
| 202 | usb_transfer_batch_t *prev =
|
---|
| 203 | list_get_instance(
|
---|
| 204 | batch->link.prev, usb_transfer_batch_t, link);
|
---|
| 205 | assert((batch_ed(prev)->next & ED_NEXT_PTR_MASK)
|
---|
| 206 | == addr_to_phys(batch_ed(batch)));
|
---|
| 207 | batch_ed(prev)->next = batch_ed(batch)->next;
|
---|
| 208 | qpos = "NOT FIRST";
|
---|
| 209 | }
|
---|
| 210 | asm volatile ("": : :"memory");
|
---|
| 211 | usb_log_debug("Batch(%p) removed (%s) from %s, next %x.\n",
|
---|
| 212 | batch, qpos, instance->name, batch_ed(batch)->next);
|
---|
| 213 |
|
---|
| 214 | /* Remove from the batch list */
|
---|
| 215 | list_remove(&batch->link);
|
---|
| 216 | }
|
---|
| 217 | /**
|
---|
| 218 | * @}
|
---|
| 219 | */
|
---|