kernel: preemptive and cooperative scheduler refactoring.
[bertos.git] / bertos / drv / timer.c
1 /**
2  * \file
3  * <!--
4  * This file is part of BeRTOS.
5  *
6  * Bertos is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  * As a special exception, you may use this file as part of a free software
21  * library without restriction.  Specifically, if other files instantiate
22  * templates or use macros or inline functions from this file, or you compile
23  * this file and link it with other files to produce an executable, this
24  * file does not by itself cause the resulting executable to be covered by
25  * the GNU General Public License.  This exception does not however
26  * invalidate any other reasons why the executable file might be covered by
27  * the GNU General Public License.
28  *
29  * Copyright 2003, 2004, 2005, 2006 Develer S.r.l. (http://www.develer.com/)
30  * Copyright 2000, 2008 Bernie Innocenti <bernie@codewiz.org>
31  * -->
32  *
33  * \brief Hardware independent timer driver (implementation)
34  *
35  * \author Bernie Innocenti <bernie@codewiz.org>
36  * \author Francesco Sacchi <batt@develer.com>
37  */
38
39 #include "timer.h"
40 #include "hw/hw_timer.h"
41
42 #include "cfg/cfg_timer.h"
43 #include "cfg/cfg_wdt.h"
44 #include "cfg/cfg_proc.h"
45 #include "cfg/cfg_signal.h"
46 #include <cfg/os.h>
47 #include <cfg/debug.h>
48 #include <cfg/module.h>
49
50 #include <cpu/attr.h>
51 #include <cpu/types.h>
52 #include <cpu/irq.h>
53 #include <cpu/power.h> // cpu_relax()
54
55 #include <kern/proc_p.h> // proc_decQuantun()
56
57 /*
58  * Include platform-specific binding code if we're hosted.
59  * Try the CPU specific one for bare-metal environments.
60  */
61 #if OS_HOSTED
62         //#include OS_CSOURCE(timer)
63         #include <emul/timer_posix.c>
64 #else
65         #ifndef WIZ_AUTOGEN
66                 #warning Deprecated: now you should include timer_<cpu> directly in the makefile. Remove this line and the following once done.
67                 #include CPU_CSOURCE(timer)
68         #endif
69 #endif
70
71 /*
72  * Sanity check for config parameters required by this module.
73  */
74 #if !defined(CONFIG_KERN) || ((CONFIG_KERN != 0) && CONFIG_KERN != 1)
75         #error CONFIG_KERN must be set to either 0 or 1 in config.h
76 #endif
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
79 #endif
80
81 #if CONFIG_WATCHDOG
82         #include <drv/wdt.h>
83 #endif
84
85 #if defined (CONFIG_KERN_SIGNALS) && CONFIG_KERN_SIGNALS
86         #include <kern/signal.h> /* sig_wait(), sig_check() */
87         #include <kern/proc.h>   /* proc_current() */
88         #include <cfg/macros.h>  /* BV() */
89 #endif
90
91
92 /**
93  * \def CONFIG_TIMER_STROBE
94  *
95  * This is a debug facility that can be used to
96  * monitor timer interrupt activity on an external pin.
97  *
98  * To use strobes, redefine the macros TIMER_STROBE_ON,
99  * TIMER_STROBE_OFF and TIMER_STROBE_INIT and set
100  * CONFIG_TIMER_STROBE to 1.
101  */
102 #if !defined(CONFIG_TIMER_STROBE) || !CONFIG_TIMER_STROBE
103         #define TIMER_STROBE_ON    do {/*nop*/} while(0)
104         #define TIMER_STROBE_OFF   do {/*nop*/} while(0)
105         #define TIMER_STROBE_INIT  do {/*nop*/} while(0)
106 #endif
107
108
109 /// Master system clock (1 tick accuracy)
110 volatile ticks_t _clock;
111
112
113 #if CONFIG_TIMER_EVENTS
114
115 /**
116  * List of active asynchronous timers.
117  */
118 REGISTER static List timers_queue;
119
120 /**
121  * This function really does the job. It adds \a timer to \a queue.
122  * \see timer_add for details.
123  */
124 INLINE void timer_addToList(Timer *timer, List *queue)
125 {
126         /* Inserting timers twice causes mayhem. */
127         ASSERT(timer->magic != TIMER_MAGIC_ACTIVE);
128         DB(timer->magic = TIMER_MAGIC_ACTIVE;)
129
130
131         /* Calculate expiration time for this timer */
132         timer->tick = _clock + timer->_delay;
133
134         /*
135          * Search for the first node whose expiration time is
136          * greater than the timer we want to add.
137          */
138         Timer *node = (Timer *)LIST_HEAD(queue);
139         while (node->link.succ)
140         {
141                 /*
142                  * Stop just after the insertion point.
143                  * (this fancy compare takes care of wrap-arounds).
144                  */
145                 if (node->tick - timer->tick > 0)
146                         break;
147
148                 /* Go to next node */
149                 node = (Timer *)node->link.succ;
150         }
151
152         /* Enqueue timer request into the list */
153         INSERT_BEFORE(&timer->link, &node->link);
154 }
155
156 /**
157  * Add the specified timer to the software timer service queue.
158  * When the delay indicated by the timer expires, the timer
159  * device will execute the event associated with it.
160  *
161  * \note Interrupt safe
162  */
163 void timer_add(Timer *timer)
164 {
165         ATOMIC(timer_addToList(timer, &timers_queue));
166 }
167
168 /**
169  * Remove a timer from the timers queue before it has expired.
170  *
171  * \note Attempting to remove a timer already expired cause
172  *       undefined behaviour.
173  */
174 Timer *timer_abort(Timer *timer)
175 {
176         ATOMIC(REMOVE(&timer->link));
177         DB(timer->magic = TIMER_MAGIC_INACTIVE;)
178
179         return timer;
180 }
181
182
183 INLINE void timer_poll(List *queue)
184 {
185         Timer *timer;
186
187         /*
188          * Check the first timer request in the list and process
189          * it when it has expired. Repeat this check until the
190          * first node has not yet expired. Since the list is sorted
191          * by expiry time, all the following requests are guaranteed
192          * to expire later.
193          */
194         while ((timer = (Timer *)LIST_HEAD(queue))->link.succ)
195         {
196                 /* This request in list has not yet expired? */
197                 if (timer_clock() - timer->tick < 0)
198                         break;
199
200                 /* Retreat the expired timer */
201                 REMOVE(&timer->link);
202                 DB(timer->magic = TIMER_MAGIC_INACTIVE;)
203
204                 /* Execute the associated event */
205                 event_do(&timer->expire);
206         }
207 }
208
209 /**
210  * Add \a timer to \a queue.
211  * \see synctimer_poll() for details.
212  */
213 void synctimer_add(Timer *timer, List *queue)
214 {
215         timer_addToList(timer, queue);
216 }
217
218 /**
219  * Simple synchronous timer based scheduler polling routine.
220  *
221  * Sometimes you would like to have a proper scheduler,
222  * but you can't afford it due to memory constraints.
223  *
224  * This is a simple replacement: you can create events and call
225  * them periodically at specific time intervals.
226  * All you have to do is to set up normal timers, and call synctimer_add()
227  * instead of timer_add() to add the events to your specific queue.
228  * Then, in the main loop or wherever you want, you can call
229  * synctimer_poll() to process expired events. The associated callbacks will be
230  * executed.
231  * As this is done synchronously you don't have to worry about race conditions.
232  * You can kill an event by simply calling synctimer_abort().
233  *
234  */
235 void synctimer_poll(List *queue)
236 {
237         timer_poll(queue);
238 }
239
240 #endif /* CONFIG_TIMER_EVENTS */
241
242
243 /**
244  * Wait for the specified amount of timer ticks.
245  *
246  * \note Sleeping while preemption is disabled fallbacks to a busy wait sleep.
247  */
248 void timer_delayTicks(ticks_t delay)
249 {
250         /* We shouldn't sleep with interrupts disabled */
251         IRQ_ASSERT_ENABLED();
252
253 #if CONFIG_KERN_SIGNALS
254         Timer t;
255
256         if (proc_preemptAllowed())
257         {
258                 ASSERT(!sig_check(SIG_SINGLE));
259                 timer_setSignal(&t, proc_current(), SIG_SINGLE);
260                 timer_setDelay(&t, delay);
261                 timer_add(&t);
262                 sig_wait(SIG_SINGLE);
263         }
264         else
265 #endif /* !CONFIG_KERN_SIGNALS */
266         {
267                 ticks_t start = timer_clock();
268
269                 /* Busy wait */
270                 while (timer_clock() - start < delay)
271                         cpu_relax();
272         }
273 }
274
275
276 #if CONFIG_TIMER_UDELAY
277
278 /**
279  * Busy wait until the specified amount of high-precision ticks have elapsed.
280  *
281  * \note This function is interrupt safe, the only
282  *       requirement is a running hardware timer.
283  */
284 void timer_busyWait(hptime_t delay)
285 {
286         hptime_t now, prev = timer_hw_hpread();
287         hptime_t delta;
288
289         for(;;)
290         {
291                 now = timer_hw_hpread();
292                 /*
293                  * We rely on hptime_t being unsigned here to
294                  * reduce the modulo to an AND in the common
295                  * case of TIMER_HW_CNT.
296                  */
297                 delta = (now - prev) % TIMER_HW_CNT;
298                 if (delta >= delay)
299                         break;
300                 delay -= delta;
301                 prev = now;
302         }
303 }
304
305 /**
306  * Wait for the specified amount of time (expressed in microseconds).
307  *
308  * \bug In AVR arch the maximum amount of time that can be used as
309  *      delay could be very limited, depending on the hardware timer
310  *      used. Check timer_avr.h, and what register is used as hptime_t.
311  */
312 void timer_delayHp(hptime_t delay)
313 {
314         if (UNLIKELY(delay > us_to_hptime(1000)))
315         {
316                 timer_delayTicks(delay / (TIMER_HW_HPTICKS_PER_SEC / TIMER_TICKS_PER_SEC));
317                 delay %= (TIMER_HW_HPTICKS_PER_SEC / TIMER_TICKS_PER_SEC);
318         }
319
320         timer_busyWait(delay);
321 }
322 #endif /* CONFIG_TIMER_UDELAY */
323
324 /**
325  * Timer interrupt handler. Find soft timers expired and
326  * trigger corresponding events.
327  */
328 DEFINE_TIMER_ISR
329 {
330         /*
331          * With the Metrowerks compiler, the only way to force the compiler generate
332          * an interrupt service routine is to put a pragma directive within the function
333          * body.
334          */
335         #ifdef __MWERKS__
336         #pragma interrupt saveall
337         #endif
338
339         /*
340          * On systems sharing IRQ line and vector, this check is needed
341          * to ensure that IRQ is generated by timer source.
342          */
343         if (!timer_hw_triggered())
344                 return;
345
346         TIMER_STROBE_ON;
347
348         /* Update the master ms counter */
349         ++_clock;
350
351         /* Update the current task's quantum (if enabled). */
352         proc_decQuantum();
353
354         #if CONFIG_TIMER_EVENTS
355                 timer_poll(&timers_queue);
356         #endif
357
358         /* Perform hw IRQ handling */
359         timer_hw_irq();
360         
361         TIMER_STROBE_OFF;
362 }
363
364 MOD_DEFINE(timer)
365
366 /**
367  * Initialize timer
368  */
369 void timer_init(void)
370 {
371         #if CONFIG_KERN_IRQ
372                 MOD_CHECK(irq);
373         #endif
374
375         #if CONFIG_TIMER_EVENTS
376                 LIST_INIT(&timers_queue);
377         #endif
378
379         TIMER_STROBE_INIT;
380
381         _clock = 0;
382
383         timer_hw_init();
384
385         MOD_INIT(timer);
386 }
387
388
389 #if (ARCH & ARCH_EMUL)
390 /**
391  * Stop timer (only used by emulator)
392  */
393 void timer_cleanup(void)
394 {
395         MOD_CLEANUP(timer);
396
397         timer_hw_cleanup();
398
399         // Hmmm... apparently, the demo app does not cleanup properly
400         //ASSERT(LIST_EMPTY(&timers_queue));
401 }
402 #endif /* ARCH_EMUL */