1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
|
/*
* Copyright (c) 1996, 1997, 1998, 1999 The University of Utah and the Flux Group.
*
* This file is part of the OSKit Linux Glue Libraries, which are free
* software, also known as "open source;" you can redistribute them and/or
* modify them under the terms of the GNU General Public License (GPL),
* version 2, as published by the Free Software Foundation (FSF).
*
* The OSKit is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GPL for more details. You should have
* received a copy of the GPL along with the OSKit; see the file COPYING. If
* not, write to the FSF, 59 Temple Place #330, Boston, MA 02111-1307, USA.
*/
/*
* Linux timer support.
*/
#ifndef OSKIT
#define OSKIT
#endif
#include <linux/sched.h>
#include <linux/timer.h>
#include <linux/tqueue.h>
#include <linux/interrupt.h>
#include <oskit/dev/dev.h>
#include "irq.h"
/*
* Mask of active timers.
*/
unsigned long timer_active = 0;
/*
* List of timeout routines.
*/
struct timer_struct timer_table[32];
/*
* The head for the timer-list has a "expires" field of MAX_UINT,
* and the sorting routine counts on this..
*/
static struct timer_list timer_head =
{
&timer_head, &timer_head, ~0, 0, NULL
};
#undef SLOW_BUT_DEBUGGING_TIMERS 0
void
add_timer(struct timer_list *timer)
{
unsigned long flags;
struct timer_list *p;
#if SLOW_BUT_DEBUGGING_TIMERS
if (timer->next || timer->prev) {
printk("add_timer() called with non-zero list from %p\n",
__builtin_return_address(0));
return;
}
#endif
p = &timer_head;
flags = linux_save_flags();
linux_cli();
do {
p = p->next;
} while (timer->expires > p->expires);
timer->next = p;
timer->prev = p->prev;
p->prev = timer;
timer->prev->next = timer;
linux_restore_flags(flags);
}
int
del_timer(struct timer_list *timer)
{
unsigned long flags;
#if SLOW_BUT_DEBUGGING_TIMERS
struct timer_list * p;
p = &timer_head;
flags = linux_save_flags();
linux_cli();
while ((p = p->next) != &timer_head) {
if (p == timer) {
timer->next->prev = timer->prev;
timer->prev->next = timer->next;
timer->next = timer->prev = NULL;
linux_restore_flags(flags);
return 1;
}
}
if (timer->next || timer->prev)
printk("del_timer() called from %p with timer not initialized\n",
__builtin_return_address(0));
linux_restore_flags(flags);
return 0;
#else
struct timer_list * next;
int ret = 0;
flags = linux_save_flags();
linux_cli();
if ((next = timer->next) != NULL) {
(next->prev = timer->prev)->next = next;
timer->next = timer->prev = NULL;
ret = 1;
}
linux_restore_flags(flags);
return ret;
#endif
}
void
mod_timer(struct timer_list *timer, unsigned long expires)
{
unsigned long flags;
flags = linux_save_flags();
linux_cli();
del_timer(timer);
timer->expires = expires;
add_timer(timer);
linux_restore_flags(flags);
}
/*
* Timer software interrupt handler.
* Should be called (and return) with interrupts enabled.
*/
void
timer_bh()
{
unsigned long mask;
struct timer_struct *tp;
struct timer_list * timer;
osenv_assert(osenv_intr_enabled() != 0);
linux_cli();
while ((timer = timer_head.next) != &timer_head
&& timer->expires <= jiffies) {
void (*fn)(unsigned long) = timer->function;
unsigned long data = timer->data;
timer->next->prev = timer->prev;
timer->prev->next = timer->next;
timer->next = timer->prev = NULL;
linux_sti();
fn(data);
linux_cli();
}
linux_sti();
for (mask = 1, tp = timer_table; mask; tp++, mask <<= 1) {
if (mask > timer_active)
break;
if ((mask & timer_active)
&& tp->expires > jiffies) {
timer_active &= ~mask;
(*tp->fn)();
linux_sti();
}
}
osenv_assert(osenv_intr_enabled() != 0);
}
/*
* Timer interrupt handler.
* Should be called (and return) with interrupts disabled.
*/
void
linux_timer_intr()
{
unsigned long mask;
struct timer_struct *tp;
osenv_assert(osenv_intr_enabled() == 0);
for (mask = 1, tp = timer_table; mask; tp++, mask += mask) {
if (mask > timer_active)
break;
if (!(mask & timer_active))
continue;
if (tp->expires > jiffies)
continue;
mark_bh(TIMER_BH);
}
if (timer_head.next->expires <= jiffies)
mark_bh(TIMER_BH);
if (tq_timer)
mark_bh(TQUEUE_BH);
/* Run any Linux software interrupt handlers before returning */
if ((local_irq_count[0] == 0) && (bh_mask & bh_active)) {
struct task_struct *cur = current;
linux_sti();
do_bottom_half();
linux_cli();
current = cur;
}
osenv_assert(osenv_intr_enabled() == 0);
}
|