source: mainline/uspace/drv/uhci-hcd/transfer_list.c@ 8986412

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 8986412 was 4125b7d, checked in by Vojtech Horky <vojtechhorky@…>, 14 years ago

usb_log_printf() checks for printf correctness

It is surprising how many printf warnings simple check could
produce ;-).

Next time, it won't compile. Bad, huh?

  • Property mode set to 100644
File size: 7.4 KB
RevLine 
[c56dbe0]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 */
[17ceb72]28/** @addtogroup drvusbuhcihc
[c56dbe0]29 * @{
30 */
31/** @file
[17ceb72]32 * @brief UHCI driver transfer list implementation
[c56dbe0]33 */
[89a0485a]34#include <errno.h>
[afcd86e]35#include <usb/debug.h>
36
[89a0485a]37#include "transfer_list.h"
38
[a7e2f0d]39static void transfer_list_remove_batch(
[1387692]40 transfer_list_t *instance, usb_transfer_batch_t *batch);
[a7e2f0d]41/*----------------------------------------------------------------------------*/
[17ceb72]42/** Initialize transfer list structures.
[a7e2f0d]43 *
44 * @param[in] instance Memory place to use.
[17ceb72]45 * @param[in] name Name of the new list.
[a7e2f0d]46 * @return Error code
47 *
[6143ce3]48 * Allocates memory for internal qh_t structure.
[a7e2f0d]49 */
[881c47b]50int transfer_list_init(transfer_list_t *instance, const char *name)
[89a0485a]51{
52 assert(instance);
[881c47b]53 instance->name = name;
[6143ce3]54 instance->queue_head = malloc32(sizeof(qh_t));
[89a0485a]55 if (!instance->queue_head) {
[afcd86e]56 usb_log_error("Failed to allocate queue head.\n");
[89a0485a]57 return ENOMEM;
58 }
[4c70554]59 uint32_t queue_head_pa = addr_to_phys(instance->queue_head);
[4125b7d]60 usb_log_debug2("Transfer list %s setup with QH: %p (%#" PRIx32" ).\n",
[4c70554]61 name, instance->queue_head, queue_head_pa);
[89a0485a]62
[6143ce3]63 qh_init(instance->queue_head);
[83c439c]64 list_initialize(&instance->batch_list);
[e0df6c2]65 fibril_mutex_initialize(&instance->guard);
[89a0485a]66 return EOK;
67}
68/*----------------------------------------------------------------------------*/
[4c70554]69/** Dispose transfer list structures.
70 *
71 * @param[in] instance Memory place to use.
72 *
73 * Frees memory for internal qh_t structure.
74 */
75void transfer_list_fini(transfer_list_t *instance)
76{
77 assert(instance);
78 free32(instance->queue_head);
79}
[17ceb72]80/** Set the next list in transfer list chain.
[a7e2f0d]81 *
82 * @param[in] instance List to lead.
83 * @param[in] next List to append.
84 * @return Error code
[6143ce3]85 *
[17ceb72]86 * Does not check whether this replaces an existing list .
[a7e2f0d]87 */
[881c47b]88void transfer_list_set_next(transfer_list_t *instance, transfer_list_t *next)
89{
90 assert(instance);
91 assert(next);
92 if (!instance->queue_head)
93 return;
[4c70554]94 /* Set queue_head.next to point to the follower */
95 qh_set_next_qh(instance->queue_head, next->queue_head);
[881c47b]96}
97/*----------------------------------------------------------------------------*/
[4c70554]98/** Add transfer batch to the list and queue.
[a7e2f0d]99 *
100 * @param[in] instance List to use.
101 * @param[in] batch Transfer batch to submit.
[17ceb72]102 *
103 * The batch is added to the end of the list and queue.
[a7e2f0d]104 */
[5bf82ee]105void transfer_list_add_batch(
106 transfer_list_t *instance, usb_transfer_batch_t *batch)
[9a818a9]107{
108 assert(instance);
[83c439c]109 assert(batch);
[6143ce3]110 usb_log_debug2("Queue %s: Adding batch(%p).\n", instance->name, batch);
[9a818a9]111
[e0df6c2]112 fibril_mutex_lock(&instance->guard);
113
[13b9cb5]114 qh_t *last_qh = NULL;
[17ceb72]115 /* Add to the hardware queue. */
[6143ce3]116 if (list_empty(&instance->batch_list)) {
117 /* There is nothing scheduled */
[13b9cb5]118 last_qh = instance->queue_head;
[6143ce3]119 } else {
120 /* There is something scheduled */
[4c70554]121 usb_transfer_batch_t *last =
122 usb_transfer_batch_from_link(instance->batch_list.prev);
[e099f26]123 last_qh = batch_qh(last);
[9a818a9]124 }
[c56c5b5b]125 const uint32_t pa = addr_to_phys(batch_qh(batch));
[13b9cb5]126 assert((pa & LINK_POINTER_ADDRESS_MASK) == pa);
127
[e099f26]128 /* keep link */
129 batch_qh(batch)->next = last_qh->next;
[4c70554]130 qh_set_next_qh(last_qh, batch_qh(batch));
[13b9cb5]131
[001b152]132 asm volatile ("": : :"memory");
133
[17ceb72]134 /* Add to the driver list */
[83c439c]135 list_append(&batch->link, &instance->batch_list);
[a7e2f0d]136
[1387692]137 usb_transfer_batch_t *first = list_get_instance(
138 instance->batch_list.next, usb_transfer_batch_t, link);
[6143ce3]139 usb_log_debug("Batch(%p) added to queue %s, first is %p.\n",
[a7e2f0d]140 batch, instance->name, first);
[e0df6c2]141 fibril_mutex_unlock(&instance->guard);
[9a818a9]142}
[53338bda]143/*----------------------------------------------------------------------------*/
[4c70554]144/** Add completed bantches to the provided list.
[a7e2f0d]145 *
146 * @param[in] instance List to use.
[4fd3faf]147 * @param[in] done list to fill
[a7e2f0d]148 */
[1585c7e]149void transfer_list_remove_finished(transfer_list_t *instance, link_t *done)
[7dd3318]150{
151 assert(instance);
[1585c7e]152 assert(done);
[86c2ccd]153
[e0df6c2]154 fibril_mutex_lock(&instance->guard);
[83c439c]155 link_t *current = instance->batch_list.next;
156 while (current != &instance->batch_list) {
[7dd3318]157 link_t *next = current->next;
[5bf82ee]158 usb_transfer_batch_t *batch =
[4c70554]159 usb_transfer_batch_from_link(current);
[53338bda]160
[83c439c]161 if (batch_is_complete(batch)) {
[4c70554]162 /* Save for processing */
[83c439c]163 transfer_list_remove_batch(instance, batch);
[1585c7e]164 list_append(current, done);
[7dd3318]165 }
166 current = next;
[53338bda]167 }
[e0df6c2]168 fibril_mutex_unlock(&instance->guard);
[53338bda]169}
[a963a68]170/*----------------------------------------------------------------------------*/
[4c70554]171/** Walk the list and finish all batches with EINTR.
[a963a68]172 *
173 * @param[in] instance List to use.
174 */
175void transfer_list_abort_all(transfer_list_t *instance)
176{
177 fibril_mutex_lock(&instance->guard);
[13b9cb5]178 while (!list_empty(&instance->batch_list)) {
[a963a68]179 link_t *current = instance->batch_list.next;
[5bf82ee]180 usb_transfer_batch_t *batch =
[4c70554]181 usb_transfer_batch_from_link(current);
[a963a68]182 transfer_list_remove_batch(instance, batch);
[4c70554]183 usb_transfer_batch_finish_error(batch, EINTR);
[a963a68]184 }
185 fibril_mutex_unlock(&instance->guard);
186}
187/*----------------------------------------------------------------------------*/
188/** Remove a transfer batch from the list and queue.
189 *
190 * @param[in] instance List to use.
191 * @param[in] batch Transfer batch to remove.
192 *
193 * Does not lock the transfer list, caller is responsible for that.
194 */
[5bf82ee]195void transfer_list_remove_batch(
196 transfer_list_t *instance, usb_transfer_batch_t *batch)
[a963a68]197{
198 assert(instance);
199 assert(instance->queue_head);
[81dce9f]200 assert(batch);
201 assert(batch_qh(batch));
[4fb6d9ee]202 assert(fibril_mutex_is_locked(&instance->guard));
203
[a963a68]204 usb_log_debug2(
205 "Queue %s: removing batch(%p).\n", instance->name, batch);
206
[4fb6d9ee]207 const char *qpos = NULL;
[4c70554]208 qh_t *prev_qh = NULL;
[a963a68]209 /* Remove from the hardware queue */
[4fb6d9ee]210 if (instance->batch_list.next == &batch->link) {
[a963a68]211 /* I'm the first one here */
[4c70554]212 prev_qh = instance->queue_head;
[4fb6d9ee]213 qpos = "FIRST";
[a963a68]214 } else {
[4c70554]215 /* The thing before me is a batch too */
[1387692]216 usb_transfer_batch_t *prev =
[4c70554]217 usb_transfer_batch_from_link(batch->link.prev);
218 prev_qh = batch_qh(prev);
[4fb6d9ee]219 qpos = "NOT FIRST";
[a963a68]220 }
[4c70554]221 assert((prev_qh->next & LINK_POINTER_ADDRESS_MASK)
222 == addr_to_phys(batch_qh(batch)));
223 prev_qh->next = batch_qh(batch)->next;
[001b152]224 asm volatile ("": : :"memory");
[4fb6d9ee]225 /* Remove from the batch list */
[a963a68]226 list_remove(&batch->link);
[4c70554]227 usb_log_debug("Batch(%p) removed (%s) from %s, next: %x.\n",
[c56c5b5b]228 batch, qpos, instance->name, batch_qh(batch)->next);
[a963a68]229}
[c56dbe0]230/**
231 * @}
232 */
Note: See TracBrowser for help on using the repository browser.