/*
* $Log$
+ * Revision 1.9 2004/07/21 00:15:13 bernie
+ * Put timer driver on diet.
+ *
* Revision 1.8 2004/07/18 21:57:07 bernie
* Fix preprocessor warning with potentially undefined symbol.
*
//! Master system clock (1ms accuracy)
volatile time_t _clock;
-REGISTER static List timers_queue; /*!< Active timers */
+
+#ifndef CONFIG_TIMER_DISABLE_EVENTS
+
+/*!
+ * List of active asynchronous timers.
+ */
+REGISTER static List timers_queue;
/*!
return timer;
}
+#endif /* CONFIG_TIMER_DISABLE_EVENTS */
+
/*!
* Wait for the specified amount of time (expressed in ms)
}
+#ifndef CONFIG_TIMER_DISABLE_UDELAY
/*!
* Wait for the specified amount of time (expressed in microseconds)
*
while (timer_hw_hpread() - start < delay)
{}
}
+#endif /* CONFIG_TIMER_DISABLE_UDELAY */
/*!
*/
DEFINE_TIMER_ISR
{
- /* With the Metrowerks compiler, the only way to force the compiler generate
- an interrupt service routine is to put a pragma directive within the function
- body. */
+ /*
+ * With the Metrowerks compiler, the only way to force the compiler generate
+ * an interrupt service routine is to put a pragma directive within the function
+ * body.
+ */
#ifdef __MWERKS__
#pragma interrupt saveall
#endif
+#ifndef CONFIG_TIMER_DISABLE_EVENTS
Timer *timer;
+#endif
TIMER_STROBE_ON;
/* Update the master ms counter */
++_clock;
+#ifndef CONFIG_TIMER_DISABLE_EVENTS
/*
* Check the first timer request in the list and process
* it when it has expired. Repeat this check until the
/* Execute the associated event */
event_doIntr(&timer->expire);
}
+#endif /* CONFIG_TIMER_DISABLE_EVENTS */
TIMER_STROBE_OFF;
}
{
TIMER_STROBE_INIT;
+#ifndef CONFIG_TIMER_DISABLE_EVENTS
INITLIST(&timers_queue);
+#endif
_clock = 0;
/*
* $Log$
+ * Revision 1.10 2004/07/21 00:13:57 bernie
+ * Put timer driver on diet.
+ *
* Revision 1.9 2004/07/20 23:45:01 bernie
* Finally remove redundant protos.
*
#include "compiler.h"
#include <mware/list.h>
+/*! Number of timer ticks per second. */
+#define TICKS_PER_SEC 1000
+
+/* Function protos */
+extern void timer_init(void);
+extern void timer_delay(time_t time);
+
+#ifndef CONFIG_TIMER_DISABLE_UDELAY
+extern void timer_udelay(utime_t utime);
+#endif
+
+
+#ifndef CONFIG_TIMER_DISABLE_EVENTS
+
#ifdef CONFIG_KERNEL
#include <kern/event.h>
#else
#include <mware/event.h>
#endif
-/*! Number of timer ticks per second. */
-#define TICKS_PER_SEC 1000
-
+/*!
+ * The timer driver supports multiple ssynchronous timers
+ * that can trigger an event when they expire.
+ *
+ * \sa timer_add()
+ * \sa timer_abort()
+ */
typedef struct Timer
{
Node link; /*!< Link into timers queue */
Event expire; /*!< Event to execute when the timer expires */
} Timer;
-/* Function protos */
-extern void timer_init(void);
extern void timer_add(Timer *timer);
extern Timer *timer_abort(Timer *timer);
-extern void timer_delay(time_t time);
-extern void timer_udelay(utime_t utime);
#if defined(CONFIG_KERN_SIGNALS) && CONFIG_KERN_SIGNALS
timer->delay = delay;
}
+#endif /* CONFIG_TIMER_DISABLE_EVENTS */
extern volatile time_t _clock;
/*!
- * Like \c timer_tick, faster version to be called
- * from interrupt context only.
+ * Faster version of timer_tick(), to be called only when the timer
+ * interrupt is disabled (DISABLE_INTS) or overridden by a
+ * higher-priority or non-nesting interrupt.
*
* \sa timer_tick
*/