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

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

Use per endpoint communication mutex

  • Property mode set to 100644
File size: 7.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 drvusbuhcihc
29 * @{
30 */
31/** @file
32 * @brief UHCI driver transfer list implementation
33 */
34#include <errno.h>
35#include <usb/debug.h>
36
37#include "transfer_list.h"
38
39static 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 */
50int transfer_list_init(transfer_list_t *instance, const char *name)
51{
52 assert(instance);
53 instance->name = name;
54 instance->queue_head = malloc32(sizeof(qh_t));
55 if (!instance->queue_head) {
56 usb_log_error("Failed to allocate queue head.\n");
57 return ENOMEM;
58 }
59 instance->queue_head_pa = addr_to_phys(instance->queue_head);
60 usb_log_debug2("Transfer list %s setup with QH: %p(%p).\n",
61 name, instance->queue_head, instance->queue_head_pa);
62
63 qh_init(instance->queue_head);
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 */
77void transfer_list_set_next(transfer_list_t *instance, transfer_list_t *next)
78{
79 assert(instance);
80 assert(next);
81 if (!instance->queue_head)
82 return;
83 /* Set both queue_head.next to point to the follower */
84 qh_set_next_qh(instance->queue_head, next->queue_head_pa);
85}
86/*----------------------------------------------------------------------------*/
87/** Submit transfer batch to the list and queue.
88 *
89 * @param[in] instance List to use.
90 * @param[in] batch Transfer batch to submit.
91 * @return Error code
92 *
93 * The batch is added to the end of the list and queue.
94 */
95void transfer_list_add_batch(
96 transfer_list_t *instance, usb_transfer_batch_t *batch)
97{
98 assert(instance);
99 assert(batch);
100 usb_log_debug2("Queue %s: Adding batch(%p).\n", instance->name, batch);
101
102 fibril_mutex_lock(&instance->guard);
103
104 qh_t *last_qh = NULL;
105 /* Add to the hardware queue. */
106 if (list_empty(&instance->batch_list)) {
107 /* There is nothing scheduled */
108 last_qh = instance->queue_head;
109 } else {
110 /* There is something scheduled */
111 usb_transfer_batch_t *last = list_get_instance(
112 instance->batch_list.prev, usb_transfer_batch_t, link);
113 last_qh = batch_qh(last);
114 }
115 const uint32_t pa = addr_to_phys(batch_qh(batch));
116 assert((pa & LINK_POINTER_ADDRESS_MASK) == pa);
117
118 /* keep link */
119 batch_qh(batch)->next = last_qh->next;
120 qh_set_next_qh(last_qh, pa);
121
122 asm volatile ("": : :"memory");
123
124 /* Add to the driver list */
125 list_append(&batch->link, &instance->batch_list);
126
127 usb_transfer_batch_t *first = list_get_instance(
128 instance->batch_list.next, usb_transfer_batch_t, link);
129 usb_log_debug("Batch(%p) added to queue %s, first is %p.\n",
130 batch, instance->name, first);
131 fibril_mutex_unlock(&instance->guard);
132}
133/*----------------------------------------------------------------------------*/
134/** Create list for finished batches.
135 *
136 * @param[in] instance List to use.
137 * @param[in] done list to fill
138 */
139void transfer_list_remove_finished(transfer_list_t *instance, link_t *done)
140{
141 assert(instance);
142 assert(done);
143
144 fibril_mutex_lock(&instance->guard);
145 link_t *current = instance->batch_list.next;
146 while (current != &instance->batch_list) {
147 link_t *next = current->next;
148 usb_transfer_batch_t *batch =
149 list_get_instance(current, usb_transfer_batch_t, link);
150
151 if (batch_is_complete(batch)) {
152 /* Save for post-processing */
153 transfer_list_remove_batch(instance, batch);
154 list_append(current, done);
155 }
156 current = next;
157 }
158 fibril_mutex_unlock(&instance->guard);
159}
160/*----------------------------------------------------------------------------*/
161/** Walk the list and abort all batches.
162 *
163 * @param[in] instance List to use.
164 */
165void transfer_list_abort_all(transfer_list_t *instance)
166{
167 fibril_mutex_lock(&instance->guard);
168 while (!list_empty(&instance->batch_list)) {
169 link_t *current = instance->batch_list.next;
170 usb_transfer_batch_t *batch =
171 list_get_instance(current, usb_transfer_batch_t, link);
172 transfer_list_remove_batch(instance, batch);
173 usb_transfer_batch_finish_error(batch, EIO);
174 }
175 fibril_mutex_unlock(&instance->guard);
176}
177/*----------------------------------------------------------------------------*/
178/** Remove a transfer batch from the list and queue.
179 *
180 * @param[in] instance List to use.
181 * @param[in] batch Transfer batch to remove.
182 * @return Error code
183 *
184 * Does not lock the transfer list, caller is responsible for that.
185 */
186void transfer_list_remove_batch(
187 transfer_list_t *instance, usb_transfer_batch_t *batch)
188{
189 assert(instance);
190 assert(instance->queue_head);
191 assert(batch);
192 assert(batch_qh(batch));
193 assert(fibril_mutex_is_locked(&instance->guard));
194
195 usb_log_debug2(
196 "Queue %s: removing batch(%p).\n", instance->name, batch);
197
198 const char *qpos = NULL;
199 /* Remove from the hardware queue */
200 if (instance->batch_list.next == &batch->link) {
201 /* I'm the first one here */
202 assert((instance->queue_head->next & LINK_POINTER_ADDRESS_MASK)
203 == addr_to_phys(batch_qh(batch)));
204 instance->queue_head->next = batch_qh(batch)->next;
205 qpos = "FIRST";
206 } else {
207 usb_transfer_batch_t *prev =
208 list_get_instance(
209 batch->link.prev, usb_transfer_batch_t, link);
210 assert((batch_qh(prev)->next & LINK_POINTER_ADDRESS_MASK)
211 == addr_to_phys(batch_qh(batch)));
212 batch_qh(prev)->next = batch_qh(batch)->next;
213 qpos = "NOT FIRST";
214 }
215 asm volatile ("": : :"memory");
216 /* Remove from the batch list */
217 list_remove(&batch->link);
218 usb_log_debug("Batch(%p) removed (%s) from %s, next %x.\n",
219 batch, qpos, instance->name, batch_qh(batch)->next);
220}
221/**
222 * @}
223 */
Note: See TracBrowser for help on using the repository browser.