source: mainline/kernel/generic/src/time/timeout.c@ 6eabb6e6

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 6eabb6e6 was 11675207, checked in by jermar <jermar@…>, 17 years ago

Move everything to kernel/.

  • Property mode set to 100644
File size: 5.0 KB
RevLine 
[f761f1eb]1/*
2 * Copyright (C) 2001-2004 Jakub Jermar
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
[1bb2e7a]29/** @addtogroup time
[b45c443]30 * @{
31 */
32
[cf26ba9]33/**
[b45c443]34 * @file
[cf26ba9]35 * @brief Timeout management functions.
36 */
37
[f761f1eb]38#include <time/timeout.h>
39#include <typedefs.h>
40#include <arch/types.h>
41#include <config.h>
[02a99d2]42#include <panic.h>
[f761f1eb]43#include <synch/spinlock.h>
44#include <func.h>
45#include <cpu.h>
46#include <arch/asm.h>
47#include <arch.h>
48
[70527f1]49
50/** Initialize timeouts
51 *
52 * Initialize kernel timeouts.
53 *
54 */
[f761f1eb]55void timeout_init(void)
56{
[2d93f1f9]57 spinlock_initialize(&CPU->timeoutlock, "timeout_lock");
[43114c5]58 list_initialize(&CPU->timeout_active_head);
[f761f1eb]59}
60
61
[ba1b2194]62/** Reinitialize timeout
[70527f1]63 *
[ba1b2194]64 * Initialize all members except the lock.
[70527f1]65 *
[ba1b2194]66 * @param t Timeout to be initialized.
[70527f1]67 *
68 */
[f761f1eb]69void timeout_reinitialize(timeout_t *t)
70{
71 t->cpu = NULL;
72 t->ticks = 0;
73 t->handler = NULL;
74 t->arg = NULL;
75 link_initialize(&t->link);
76}
77
[70527f1]78
[ba1b2194]79/** Initialize timeout
[70527f1]80 *
[ba1b2194]81 * Initialize all members including the lock.
[70527f1]82 *
[ba1b2194]83 * @param t Timeout to be initialized.
[70527f1]84 *
85 */
[f761f1eb]86void timeout_initialize(timeout_t *t)
87{
[2d93f1f9]88 spinlock_initialize(&t->lock, "timeout_t_lock");
[f761f1eb]89 timeout_reinitialize(t);
90}
91
[70527f1]92
[ba1b2194]93/** Register timeout
[70527f1]94 *
[ba1b2194]95 * Insert timeout handler f (with argument arg)
96 * to timeout list and make it execute in
[70527f1]97 * time microseconds (or slightly more).
98 *
[ba1b2194]99 * @param t Timeout structure.
[a783ca4]100 * @param time Number of usec in the future to execute
[70527f1]101 * the handler.
102 * @param f Timeout handler function.
103 * @param arg Timeout handler argument.
104 *
[f761f1eb]105 */
[7f1c620]106void timeout_register(timeout_t *t, uint64_t time, timeout_handler_t f, void *arg)
[f761f1eb]107{
[2cf5634]108 timeout_t *hlp = NULL;
[f761f1eb]109 link_t *l, *m;
[22f7769]110 ipl_t ipl;
[7f1c620]111 uint64_t sum;
[f761f1eb]112
[22f7769]113 ipl = interrupts_disable();
[43114c5]114 spinlock_lock(&CPU->timeoutlock);
[f761f1eb]115 spinlock_lock(&t->lock);
[76cec1e]116
[f761f1eb]117 if (t->cpu)
[747a2476]118 panic("t->cpu != 0");
[f761f1eb]119
[43114c5]120 t->cpu = CPU;
[f761f1eb]121 t->ticks = us2ticks(time);
122
123 t->handler = f;
124 t->arg = arg;
[76cec1e]125
[f761f1eb]126 /*
127 * Insert t into the active timeouts list according to t->ticks.
128 */
129 sum = 0;
[43114c5]130 l = CPU->timeout_active_head.next;
131 while (l != &CPU->timeout_active_head) {
[f761f1eb]132 hlp = list_get_instance(l, timeout_t, link);
133 spinlock_lock(&hlp->lock);
134 if (t->ticks < sum + hlp->ticks) {
135 spinlock_unlock(&hlp->lock);
136 break;
137 }
138 sum += hlp->ticks;
139 spinlock_unlock(&hlp->lock);
140 l = l->next;
141 }
[5a2e9bbb]142
[f761f1eb]143 m = l->prev;
144 list_prepend(&t->link, m); /* avoid using l->prev */
145
146 /*
147 * Adjust t->ticks according to ticks accumulated in h's predecessors.
148 */
149 t->ticks -= sum;
150
151 /*
152 * Decrease ticks of t's immediate succesor by t->ticks.
153 */
[43114c5]154 if (l != &CPU->timeout_active_head) {
[f761f1eb]155 spinlock_lock(&hlp->lock);
156 hlp->ticks -= t->ticks;
157 spinlock_unlock(&hlp->lock);
158 }
159
160 spinlock_unlock(&t->lock);
[43114c5]161 spinlock_unlock(&CPU->timeoutlock);
[22f7769]162 interrupts_restore(ipl);
[f761f1eb]163}
164
[70527f1]165
[ba1b2194]166/** Unregister timeout
[70527f1]167 *
168 * Remove timeout from timeout list.
169 *
170 * @param t Timeout to unregister.
171 *
[ba1b2194]172 * @return true on success, false on failure.
[70527f1]173 */
[ba1b2194]174bool timeout_unregister(timeout_t *t)
[f761f1eb]175{
176 timeout_t *hlp;
177 link_t *l;
[22f7769]178 ipl_t ipl;
[f761f1eb]179
180grab_locks:
[22f7769]181 ipl = interrupts_disable();
[f761f1eb]182 spinlock_lock(&t->lock);
183 if (!t->cpu) {
184 spinlock_unlock(&t->lock);
[22f7769]185 interrupts_restore(ipl);
[ba1b2194]186 return false;
[f761f1eb]187 }
188 if (!spinlock_trylock(&t->cpu->timeoutlock)) {
189 spinlock_unlock(&t->lock);
[22f7769]190 interrupts_restore(ipl);
[f761f1eb]191 goto grab_locks;
192 }
193
194 /*
195 * Now we know for sure that t hasn't been activated yet
196 * and is lurking in t->cpu->timeout_active_head queue.
197 */
198
199 l = t->link.next;
200 if (l != &t->cpu->timeout_active_head) {
201 hlp = list_get_instance(l, timeout_t, link);
202 spinlock_lock(&hlp->lock);
203 hlp->ticks += t->ticks;
204 spinlock_unlock(&hlp->lock);
205 }
206
207 list_remove(&t->link);
208 spinlock_unlock(&t->cpu->timeoutlock);
209
210 timeout_reinitialize(t);
211 spinlock_unlock(&t->lock);
212
[22f7769]213 interrupts_restore(ipl);
[ba1b2194]214 return true;
[f761f1eb]215}
[b45c443]216
[1bb2e7a]217/** @}
[b45c443]218 */
Note: See TracBrowser for help on using the repository browser.