From 0eaf2098b86ceef04b60fdd5407ccd9a3206def0 Mon Sep 17 00:00:00 2001 From: "bernard.xiong@gmail.com" Date: Sat, 22 May 2010 23:26:08 +0000 Subject: [PATCH] fix the timer check bug. git-svn-id: https://rt-thread.googlecode.com/svn/trunk@730 bbd45198-f89e-11dd-88c7-29a3b14d5316 --- include/rtdef.h | 1 + src/clock.c | 17 ++++++-- src/timer.c | 110 ++++++++++++++++++++++++++++++++++++++++-------- 3 files changed, 106 insertions(+), 22 deletions(-) diff --git a/include/rtdef.h b/include/rtdef.h index 479629c9aa..4e414d3041 100644 --- a/include/rtdef.h +++ b/include/rtdef.h @@ -55,6 +55,7 @@ typedef rt_uint32_t rt_off_t; /* Type for offset. */ #define RT_UINT8_MAX 0xff /* Maxium number of UINT8. */ #define RT_UINT16_MAX 0xffff /* Maxium number of UINT16. */ #define RT_UINT32_MAX 0xffffffff /* Maxium number of UINT32. */ +#define RT_TICK_MAX RT_UINT32_MAX /* Maxium number of tick */ /* Compiler Related Definitions */ #ifdef __CC_ARM /* ARM Compiler */ diff --git a/src/clock.c b/src/clock.c index 4f785dd5b9..6ca918d1f8 100644 --- a/src/clock.c +++ b/src/clock.c @@ -11,8 +11,9 @@ * Date Author Notes * 2006-03-12 Bernard first version * 2006-05-27 Bernard add support for same priority thread schedule - * 2006-08-10 Bernard remove the last rt_schedule in rt_tick_increase + * 2006-08-10 Bernard remove the last rt_schedule in rt_tick_increase * 2010-03-08 Bernard remove rt_passed_second + * 2010-05-20 Bernard fix the tick exceeds the maximum limits */ #include @@ -20,6 +21,7 @@ static rt_tick_t rt_tick; extern void rt_timer_check(void); +extern void rt_timer_switch(void); /** * This function will init system tick and set it to zero. @@ -57,10 +59,14 @@ void rt_tick_increase() struct rt_thread* thread; /* increase the global tick */ - ++ rt_tick; + if (rt_tick == RT_TICK_MAX) + { + /* switch to long timer list */ + rt_timer_switch(); - /* check timer */ - rt_timer_check(); + rt_tick = 0; + } + else ++ rt_tick; /* check time slice */ thread = rt_thread_self(); @@ -74,6 +80,9 @@ void rt_tick_increase() /* yield */ rt_thread_yield(); } + + /* check timer */ + rt_timer_check(); } /** diff --git a/src/timer.c b/src/timer.c index 33efcbd22a..ee86156350 100644 --- a/src/timer.c +++ b/src/timer.c @@ -15,6 +15,7 @@ * 2006-08-10 Bernard fix the periodic timer bug * 2006-09-03 Bernard implement rt_timer_detach * 2009-11-11 LiJin add soft timer + * 2010-05-12 Bernard fix the timer check bug. */ #include @@ -25,11 +26,11 @@ /* #define RT_TIMER_DEBUG */ /* hard timer list */ -static rt_list_t rt_timer_list; +static rt_list_t rt_timer_list, rt_long_timer_list; #ifdef RT_USING_TIMER_SOFT /* soft timer list */ -static rt_list_t rt_soft_timer_list; +static rt_list_t rt_soft_timer_list, rt_soft_long_timer_list; #endif #ifdef RT_USING_HOOK @@ -202,9 +203,9 @@ rt_err_t rt_timer_delete(rt_timer_t timer) */ rt_err_t rt_timer_start(rt_timer_t timer) { - rt_list_t *n; struct rt_timer* t; register rt_base_t level; + rt_list_t *n, *timer_list; /* timer check */ RT_ASSERT(timer != RT_NULL); @@ -214,15 +215,24 @@ rt_err_t rt_timer_start(rt_timer_t timer) if (rt_object_take_hook != RT_NULL) rt_object_take_hook(&(timer->parent)); #endif - timer->timeout_tick = rt_tick_get() + timer->init_tick; - /* disable interrupt */ level = rt_hw_interrupt_disable(); + + /* get timeout tick, which will wrap around if it reaches max ticks */ + timer->timeout_tick = rt_tick_get() + timer->init_tick; + #ifdef RT_USING_TIMER_SOFT if (timer->parent.flag & RT_TIMER_FLAG_SOFT_TIMER) { + if ((RT_TICK_MAX - timer->init_tick) < rt_tick_get()) + /* it's a long timer */ + timer_list = &rt_soft_long_timer_list; + else + /* it's a short timer */ + timer_list = &rt_soft_timer_list; + /* insert timer to soft timer list */ - for (n = rt_soft_timer_list.next; n != &rt_soft_timer_list; n = n->next) + for (n = timer_list->next; n != timer_list; n = n->next) { t = rt_list_entry(n, struct rt_timer, list); if (t->timeout_tick > timer->timeout_tick) @@ -232,7 +242,7 @@ rt_err_t rt_timer_start(rt_timer_t timer) } } /* no found suitable position in timer list */ - if (n == &rt_soft_timer_list) + if (n == timer_list) { rt_list_insert_before(n, &(timer->list)); } @@ -240,8 +250,15 @@ rt_err_t rt_timer_start(rt_timer_t timer) else #endif { + if ((RT_TICK_MAX - timer->init_tick) < rt_tick_get()) + /* it's a long timer */ + timer_list = &rt_long_timer_list; + else + /* it's a short timer */ + timer_list = &rt_timer_list; + /* insert timer to system timer list */ - for (n = rt_timer_list.next; n != &rt_timer_list; n = n->next) + for (n = timer_list->next; n != timer_list; n = n->next) { t = rt_list_entry(n, struct rt_timer, list); if (t->timeout_tick > timer->timeout_tick) @@ -251,8 +268,8 @@ rt_err_t rt_timer_start(rt_timer_t timer) } } - /* no found suitable position in timer list */ - if (n == &rt_timer_list) + /* not found suitable position in timer list */ + if (n == timer_list) { rt_list_insert_before(n, &(timer->list)); } @@ -338,6 +355,64 @@ rt_err_t rt_timer_control(rt_timer_t timer, rt_uint8_t cmd, void* arg) return RT_EOK; } +void rt_timer_switch(void) +{ + rt_base_t level; + rt_timer_t t; + + /* disable interrupt */ + level = rt_hw_interrupt_disable(); + + /* switch system timer list to long timer list */ + + /* remove all timer in the old timer list */ + while (!rt_list_isempty(&rt_timer_list)) + { + t = rt_list_entry(rt_timer_list.next, struct rt_timer, list); +#ifdef RT_USING_HOOK + if (rt_timer_timeout_hook != RT_NULL) rt_timer_timeout_hook(t); +#endif + + /* remove timer from timer list firstly */ + rt_list_remove(&(t->list)); + + /* call timeout function */ + t->timeout_func(t->parameter); + } + + rt_timer_list.next = rt_long_timer_list.next; + rt_timer_list.prev = rt_long_timer_list.prev; + rt_long_timer_list.next->prev = &rt_timer_list; + rt_long_timer_list.prev->next = &rt_timer_list; + rt_list_init(&rt_long_timer_list); + +#ifdef RT_USING_TIMER_SOFT + /* remove all timer in the old timer list */ + while (!rt_list_isempty(&rt_soft_timer_list)) + { + t = rt_list_entry(rt_soft_timer_list.next, struct rt_timer, list); +#ifdef RT_USING_HOOK + if (rt_timer_timeout_hook != RT_NULL) rt_timer_timeout_hook(t); +#endif + + /* remove timer from timer list firstly */ + rt_list_remove(&(t->list)); + + /* call timeout function */ + t->timeout_func(t->parameter); + } + + rt_soft_timer_list.next = rt_soft_long_timer_list.next; + rt_soft_timer_list.prev = rt_soft_long_timer_list.prev; + rt_soft_long_timer_list.next->prev = &rt_soft_timer_list; + rt_soft_long_timer_list.prev->next = &rt_soft_timer_list; + rt_list_init(&rt_soft_long_timer_list); +#endif + + /* enable interrupt */ + rt_hw_interrupt_enable(level); +} + /** * This function will check timer list, if a timeout event happens, the * corresponding timeout function will be invoked. @@ -348,9 +423,8 @@ void rt_soft_timer_tick_increase (void); #endif void rt_timer_check(void) { - rt_tick_t current_tick; - rt_list_t *n; struct rt_timer *t; + rt_tick_t current_tick; register rt_base_t level; #ifdef RT_TIMER_DEBUG @@ -362,16 +436,14 @@ void rt_timer_check(void) /* disable interrupt */ level = rt_hw_interrupt_disable(); - for (n = rt_timer_list.next; n != &(rt_timer_list); ) + while (!rt_list_isempty(&rt_timer_list)) { - t = rt_list_entry(n, struct rt_timer, list); + t = rt_list_entry(rt_timer_list.next, struct rt_timer, list); if (current_tick >= t->timeout_tick) { #ifdef RT_USING_HOOK if (rt_timer_timeout_hook != RT_NULL) rt_timer_timeout_hook(t); #endif - /* move node to the next */ - n = n->next; /* remove timer from timer list firstly */ rt_list_remove(&(t->list)); @@ -379,7 +451,7 @@ void rt_timer_check(void) /* call timeout function */ t->timeout_func(t->parameter); - /* reget tick */ + /* re-get tick */ current_tick = rt_tick_get(); #ifdef RT_TIMER_DEBUG @@ -410,7 +482,7 @@ void rt_timer_check(void) rt_soft_timer_tick_increase ( ); #endif -#ifdef TIMER_DEBUG +#ifdef RT_TIMER_DEBUG rt_kprintf("timer check leave\n"); #endif } @@ -523,9 +595,11 @@ static void rt_thread_timer_entry(void* parameter) void rt_system_timer_init() { rt_list_init(&rt_timer_list); + rt_list_init(&rt_long_timer_list); #ifdef RT_USING_TIMER_SOFT rt_list_init(&rt_soft_timer_list); + rt_list_init(&rt_soft_long_timer_list); rt_sem_init(&timer_sem, "timer", 0, RT_IPC_FLAG_FIFO); #endif } -- GitLab