4 * Copyright 2003, 2004, 2005, 2006 Develer S.r.l. (http://www.develer.com/)
5 * Copyright 2000 Bernardo Innocenti <bernie@develer.com>
6 * This file is part of DevLib - See README.devlib for information.
9 * \brief Hardware independent timer driver (implementation)
12 * \author Bernardo Innocenti <bernie@develer.com>
17 *#* Revision 1.31 2006/07/19 12:56:26 bernie
18 *#* Convert to new Doxygen style.
20 *#* Revision 1.30 2006/02/24 00:26:49 bernie
21 *#* Fixes for CONFIG_KERNEL.
23 *#* Revision 1.29 2006/02/17 22:24:07 bernie
24 *#* Add MOD_CHECK() checks.
26 *#* Revision 1.28 2006/02/10 12:32:52 bernie
27 *#* Update Copyright year.
29 *#* Revision 1.27 2005/11/27 03:04:08 bernie
30 *#* Move test code to timer_test.c; Add OS_HOSTED support.
32 *#* Revision 1.26 2005/11/04 16:20:02 bernie
33 *#* Fix reference to README.devlib in header.
35 *#* Revision 1.25 2005/07/19 07:26:37 bernie
36 *#* Refactor to decouple timer ticks from milliseconds.
38 *#* Revision 1.24 2005/04/11 19:10:28 bernie
39 *#* Include top-level headers from cfg/ subdir.
41 *#* Revision 1.23 2004/12/13 12:07:06 bernie
42 *#* DISABLE_IRQSAVE/ENABLE_IRQRESTORE: Convert to IRQ_SAVE_DISABLE/IRQ_RESTORE.
44 *#* Revision 1.22 2004/12/08 09:12:09 bernie
45 *#* Rename time_t to mtime_t.
47 *#* Revision 1.21 2004/11/28 23:20:25 bernie
48 *#* Remove obsolete INITLIST macro.
50 *#* Revision 1.20 2004/11/16 20:59:06 bernie
51 *#* Add watchdog timer support.
57 #include <cfg/debug.h>
58 #include <cfg/module.h>
59 #include <appconfig.h>
62 * Include platform-specific binding code if we're hosted.
63 * Try the CPU specific one for bare-metal environments.
66 #include OS_CSOURCE(timer)
68 #include CPU_CSOURCE(timer)
72 * Sanity check for config parameters required by this module.
74 #if !defined(CONFIG_KERNEL) || ((CONFIG_KERNEL != 0) && CONFIG_KERNEL != 1)
75 #error CONFIG_KERNEL must be set to either 0 or 1 in config.h
77 #if !defined(CONFIG_WATCHDOG) || ((CONFIG_WATCHDOG != 0) && CONFIG_WATCHDOG != 1)
78 #error CONFIG_WATCHDOG must be set to either 0 or 1 in config.h
86 #include <config_kern.h>
87 #if CONFIG_KERN_SIGNALS
88 #include <kern/signal.h> /* sig_wait(), sig_check() */
89 #include <kern/proc.h> /* proc_current() */
90 #include <cfg/macros.h> /* BV() */
96 * \def CONFIG_TIMER_STROBE
98 * This is a debug facility that can be used to
99 * monitor timer interrupt activity on an external pin.
101 * To use strobes, redefine the macros TIMER_STROBE_ON,
102 * TIMER_STROBE_OFF and TIMER_STROBE_INIT and set
103 * CONFIG_TIMER_STROBE to 1.
105 #if !defined(CONFIG_TIMER_STROBE) || !CONFIG_TIMER_STROBE
106 #define TIMER_STROBE_ON do {/*nop*/} while(0)
107 #define TIMER_STROBE_OFF do {/*nop*/} while(0)
108 #define TIMER_STROBE_INIT do {/*nop*/} while(0)
112 /// Master system clock (1 tick accuracy)
113 volatile ticks_t _clock;
116 #ifndef CONFIG_TIMER_DISABLE_EVENTS
119 * List of active asynchronous timers.
121 REGISTER static List timers_queue;
125 * Add the specified timer to the software timer service queue.
126 * When the delay indicated by the timer expires, the timer
127 * device will execute the event associated with it.
129 * \note Interrupt safe
131 void timer_add(Timer *timer)
137 /* Inserting timers twice causes mayhem. */
138 ASSERT(timer->magic != TIMER_MAGIC_ACTIVE);
139 DB(timer->magic = TIMER_MAGIC_ACTIVE;)
141 IRQ_SAVE_DISABLE(flags);
143 /* Calculate expiration time for this timer */
144 timer->tick = _clock + timer->_delay;
147 * Search for the first node whose expiration time is
148 * greater than the timer we want to add.
150 node = (Timer *)LIST_HEAD(&timers_queue);
151 while (node->link.succ)
154 * Stop just after the insertion point.
155 * (this fancy compare takes care of wrap-arounds).
157 if (node->tick - timer->tick > 0)
160 /* Go to next node */
161 node = (Timer *)node->link.succ;
164 /* Enqueue timer request into the list */
165 INSERT_BEFORE(&timer->link, &node->link);
172 * Remove a timer from the timer queue before it has expired.
174 Timer *timer_abort(Timer *timer)
176 ATOMIC(REMOVE(&timer->link));
177 DB(timer->magic = TIMER_MAGIC_INACTIVE;)
182 #endif /* CONFIG_TIMER_DISABLE_EVENTS */
186 * Wait for the specified amount of timer ticks.
188 void timer_delayTicks(ticks_t delay)
190 #if defined(IRQ_GETSTATE)
191 /* We shouldn't sleep with interrupts disabled */
192 ASSERT(IRQ_GETSTATE());
195 #if defined(CONFIG_KERN_SIGNALS) && CONFIG_KERN_SIGNALS
198 ASSERT(!sig_check(SIG_SINGLE));
199 timer_set_event_signal(&t, proc_current(), SIG_SINGLE);
200 timer_setDelay(&t, delay);
202 sig_wait(SIG_SINGLE);
204 #else /* !CONFIG_KERN_SIGNALS */
206 ticks_t start = timer_clock();
209 while (timer_clock() - start < delay)
216 #endif /* !CONFIG_KERN_SIGNALS */
220 #ifndef CONFIG_TIMER_DISABLE_UDELAY
223 * Busy wait until the specified amount of high-precision ticks have elapsed.
225 * \note This function is interrupt safe, the only
226 * requirement is a running hardware timer.
228 void timer_busyWait(hptime_t delay)
230 hptime_t now, prev = timer_hw_hpread();
235 now = timer_hw_hpread();
237 * We rely on hptime_t being unsigned here to
238 * reduce the modulo to an AND in the common
239 * case of TIMER_HW_CNT.
241 delta = (now - prev) % TIMER_HW_CNT;
250 * Wait for the specified amount of time (expressed in microseconds).
252 * \bug In AVR arch the maximum amount of time that can be used as
253 * delay could be very limited, depending on the hardware timer
254 * used. Check timer_avr.h, and what register is used as hptime_t.
256 void timer_delayHp(hptime_t delay)
258 if (UNLIKELY(delay > us_to_hptime(1000)))
260 timer_delayTicks(delay / (TIMER_HW_HPTICKS_PER_SEC / TIMER_TICKS_PER_SEC));
261 delay %= (TIMER_HW_HPTICKS_PER_SEC / TIMER_TICKS_PER_SEC);
264 timer_busyWait(delay);
266 #endif /* CONFIG_TIMER_DISABLE_UDELAY */
270 * Timer interrupt handler. Find soft timers expired and
271 * trigger corresponding events.
276 * With the Metrowerks compiler, the only way to force the compiler generate
277 * an interrupt service routine is to put a pragma directive within the function
281 #pragma interrupt saveall
284 #ifndef CONFIG_TIMER_DISABLE_EVENTS
292 /* Update the master ms counter */
295 #ifndef CONFIG_TIMER_DISABLE_EVENTS
297 * Check the first timer request in the list and process
298 * it when it has expired. Repeat this check until the
299 * first node has not yet expired. Since the list is sorted
300 * by expiry time, all the following requests are guaranteed
303 while ((timer = (Timer *)LIST_HEAD(&timers_queue))->link.succ)
305 /* This request in list has not yet expired? */
306 if (_clock - timer->tick < 0)
309 /* Retreat the expired timer */
310 REMOVE(&timer->link);
311 DB(timer->magic = TIMER_MAGIC_INACTIVE;)
313 /* Execute the associated event */
314 event_do(&timer->expire);
316 #endif /* CONFIG_TIMER_DISABLE_EVENTS */
326 void timer_init(void)
330 #ifndef CONFIG_TIMER_DISABLE_EVENTS
331 LIST_INIT(&timers_queue);