| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550 |
- /*
- * File : timer.c
- * This file is part of RT-Thread RTOS
- * COPYRIGHT (C) 2006, RT-Thread Development Team
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rt-thread.org/license/LICENSE
- *
- * Change Logs:
- * Date Author Notes
- * 2006-03-12 Bernard first version
- * 2006-04-29 Bernard implement thread timer
- * 2006-06-04 Bernard implement rt_timer_control
- * 2006-08-10 Bernard fix the periodic timer bug
- * 2006-09-03 Bernard implement rt_timer_detach
- * 2009-11-11 LiJin add soft timer
- */
- #include <rtthread.h>
- #include <rthw.h>
- #include "kservice.h"
- /* #define RT_TIMER_DEBUG */
- /* hard timer list */
- static rt_list_t rt_timer_list;
- #ifdef RT_USING_TIMER_SOFT
- /* soft timer list */
- static rt_list_t rt_soft_timer_list;
- #endif
- #ifdef RT_USING_HOOK
- extern void (*rt_object_take_hook)(struct rt_object* object);
- extern void (*rt_object_put_hook)(struct rt_object* object);
- static void (*rt_timer_timeout_hook)(struct rt_timer* timer);
- /**
- * @addtogroup Hook
- */
- /*@{*/
- /**
- * This function will set a hook function, which will be invoked when timer
- * is timeout.
- *
- * @param hook the hook function
- */
- void rt_timer_timeout_sethook(void (*hook)(struct rt_timer* timer))
- {
- rt_timer_timeout_hook = hook;
- }
- /*@}*/
- #endif
- static void _rt_timer_init(rt_timer_t timer,
- void (*timeout)(void* parameter), void* parameter,
- rt_tick_t time, rt_uint8_t flag)
- {
- /* set flag */
- timer->parent.flag = flag;
- /* set deactivated */
- timer->parent.flag &= ~RT_TIMER_FLAG_ACTIVATED;
- timer->timeout_func = timeout;
- timer->parameter = parameter;
- timer->timeout_tick = 0;
- timer->init_tick = time;
- /* init timer list */
- rt_list_init(&(timer->list));
- }
- /**
- * @addtogroup Clock
- */
- /*@{*/
- /**
- * This function will init a timer, normally this function is used to initialize
- * a static timer object.
- *
- * @param timer the static timer object
- * @param name the name of timer
- * @param timeout the timeout function
- * @param parameter the parameter of timeout function
- * @param time the tick of timer
- * @param flag the flag of timer
- */
- void rt_timer_init(rt_timer_t timer,
- const char* name,
- void (*timeout)(void* parameter), void* parameter,
- rt_tick_t time, rt_uint8_t flag)
- {
- /* timer check */
- RT_ASSERT(timer != RT_NULL);
- /* timer object init */
- rt_object_init((rt_object_t)timer, RT_Object_Class_Timer, name);
- _rt_timer_init(timer, timeout, parameter, time, flag);
- }
- /**
- * This function will detach a timer from timer management.
- *
- * @param timer the static timer object
- *
- * @return the operation status, RT_EOK on OK; RT_ERROR on error
- */
- rt_err_t rt_timer_detach(rt_timer_t timer)
- {
- register rt_base_t level;
- /* timer check */
- RT_ASSERT(timer != RT_NULL);
- /* disable interrupt */
- level = rt_hw_interrupt_disable();
- /* remove it from timer list */
- rt_list_remove(&(timer->list));
- /* enable interrupt */
- rt_hw_interrupt_enable(level);
- rt_object_detach((rt_object_t)timer);
- return -RT_EOK;
- }
- #ifdef RT_USING_HEAP
- /**
- * This function will create a timer
- *
- * @param name the name of timer
- * @param timeout the timeout function
- * @param parameter the parameter of timeout function
- * @param time the tick of timer
- * @param flag the flag of timer
- *
- * @return the created timer object
- */
- rt_timer_t rt_timer_create(const char* name, void (*timeout)(void* parameter), void* parameter, rt_tick_t time, rt_uint8_t flag)
- {
- struct rt_timer* timer;
- /* allocate a object */
- timer = (struct rt_timer*)rt_object_allocate(RT_Object_Class_Timer, name);
- if (timer == RT_NULL)
- {
- return RT_NULL;
- }
- _rt_timer_init(timer, timeout, parameter, time, flag);
- return timer;
- }
- /**
- * This function will delete a timer and release timer memory
- *
- * @param timer the timer to be deleted
- *
- * @return the operation status, RT_EOK on OK; RT_ERROR on error
- *
- */
- rt_err_t rt_timer_delete(rt_timer_t timer)
- {
- register rt_base_t level;
- /* timer check */
- RT_ASSERT(timer != RT_NULL);
- /* disable interrupt */
- level = rt_hw_interrupt_disable();
- /* remove it from timer list */
- rt_list_remove(&(timer->list));
- /* enable interrupt */
- rt_hw_interrupt_enable(level);
- rt_object_delete((rt_object_t)timer);
- return -RT_EOK;
- }
- #endif
- /**
- * This function will start the timer
- *
- * @param timer the timer to be started
- *
- * @return the operation status, RT_EOK on OK; RT_ERROR on error
- *
- */
- rt_err_t rt_timer_start(rt_timer_t timer)
- {
- rt_list_t *n;
- struct rt_timer* t;
- register rt_base_t level;
- /* timer check */
- RT_ASSERT(timer != RT_NULL);
- if (timer->parent.flag & RT_TIMER_FLAG_ACTIVATED) return -RT_ERROR;
- #ifdef RT_USING_HOOK
- 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();
- #ifdef RT_USING_TIMER_SOFT
- if (timer->parent.flag & RT_TIMER_FLAG_SOFT_TIMER)
- {
- /* insert timer to soft timer list */
- for (n = rt_soft_timer_list.next; n != &rt_soft_timer_list; n = n->next)
- {
- t = rt_list_entry(n, struct rt_timer, list);
- if (t->timeout_tick > timer->timeout_tick)
- {
- rt_list_insert_before(n, &(timer->list));
- break;
- }
- }
- /* no found suitable position in timer list */
- if (n == &rt_soft_timer_list)
- {
- rt_list_insert_before(n, &(timer->list));
- }
- }
- else
- #endif
- {
- /* insert timer to system timer list */
- for (n = rt_timer_list.next; n != &rt_timer_list; n = n->next)
- {
- t = rt_list_entry(n, struct rt_timer, list);
- if (t->timeout_tick > timer->timeout_tick)
- {
- rt_list_insert_before(n, &(timer->list));
- break;
- }
- }
- /* no found suitable position in timer list */
- if (n == &rt_timer_list)
- {
- rt_list_insert_before(n, &(timer->list));
- }
- }
- timer->parent.flag |= RT_TIMER_FLAG_ACTIVATED;
- /* enable interrupt */
- rt_hw_interrupt_enable(level);
- return -RT_EOK;
- }
- /**
- * This function will stop the timer
- *
- * @param timer the timer to be stopped
- *
- * @return the operation status, RT_EOK on OK; RT_ERROR on error
- *
- */
- rt_err_t rt_timer_stop(rt_timer_t timer)
- {
- register rt_base_t level;
- /* timer check */
- RT_ASSERT(timer != RT_NULL);
- if(!(timer->parent.flag & RT_TIMER_FLAG_ACTIVATED)) return -RT_ERROR;
- #ifdef RT_USING_HOOK
- if (rt_object_put_hook != RT_NULL) rt_object_put_hook(&(timer->parent));
- #endif
- /* disable interrupt */
- level = rt_hw_interrupt_disable();
- /* change stat */
- timer->parent.flag &= ~RT_TIMER_FLAG_ACTIVATED;
- /* remove it from timer list */
- rt_list_remove(&(timer->list));
- /* enable interrupt */
- rt_hw_interrupt_enable(level);
- return RT_EOK;
- }
- /**
- * This function will get or set some options of the timer
- *
- * @param timer the timer to be get or set
- * @param cmd the control command
- * @param arg the argument
- *
- * @return the operation status, RT_EOK on OK; RT_ERROR on error
- *
- */
- rt_err_t rt_timer_control(rt_timer_t timer, rt_uint8_t cmd, void* arg)
- {
- /* timer check */
- RT_ASSERT(timer != RT_NULL);
- switch (cmd)
- {
- case RT_TIMER_CTRL_GET_TIME:
- *(rt_tick_t*)arg = timer->init_tick;
- break;
- case RT_TIMER_CTRL_SET_TIME:
- timer->init_tick = *(rt_tick_t*)arg;
- break;
- case RT_TIMER_CTRL_SET_ONESHOT:
- timer->parent.flag &= ~(1 << RT_TIMER_FLAG_PERIODIC);
- break;
- case RT_TIMER_CTRL_SET_PERIODIC:
- timer->parent.flag |= (1 << RT_TIMER_FLAG_PERIODIC);
- break;
- }
- return RT_EOK;
- }
- /**
- * This function will check timer list, if a timeout event happens, the
- * corresponding timeout function will be invoked.
- *
- */
- #ifdef RT_USING_TIMER_SOFT
- void rt_soft_timer_tick_hook (void);
- #endif
- void rt_timer_check()
- {
- rt_tick_t current_tick;
- rt_list_t *n;
- struct rt_timer *t;
- register rt_base_t level;
- #ifdef RT_TIMER_DEBUG
- rt_kprintf("timer check enter\n");
- #endif
- current_tick = rt_tick_get();
- /* disable interrupt */
- level = rt_hw_interrupt_disable();
- for (n = rt_timer_list.next; n != &(rt_timer_list); )
- {
- t = rt_list_entry(n, 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));
- /* call timeout function */
- t->timeout_func(t->parameter);
- /* reget tick */
- current_tick = rt_tick_get();
- #ifdef RT_TIMER_DEBUG
- rt_kprintf("current tick: %d\n", current_tick);
- #endif
- if ((t->parent.flag & RT_TIMER_FLAG_PERIODIC) &&
- (t->parent.flag & RT_TIMER_FLAG_ACTIVATED))
- {
- /* start it */
- t->parent.flag &= ~RT_TIMER_FLAG_ACTIVATED;
- rt_timer_start(t);
- }
- else
- {
- /* stop timer */
- t->parent.flag &= ~RT_TIMER_FLAG_ACTIVATED;
- }
- }
- else break;
- }
- /* enable interrupt */
- rt_hw_interrupt_enable(level);
- /**/
- #ifdef RT_USING_TIMER_SOFT
- rt_soft_timer_tick_hook ( );
- #endif
- #ifdef TIMER_DEBUG
- rt_kprintf("timer check leave\n");
- #endif
- }
- #ifdef RT_USING_TIMER_SOFT
- static struct rt_thread timer_thread;
- static rt_uint8_t timer_thread_stack[RT_TIMER_THREAD_STACK_SIZE];
- static struct rt_semaphore timer_sem;
- static rt_uint16_t timer_ex_cnt;
- rt_err_t timer_signal (void)
- {
- return rt_sem_release(&timer_sem);
- }
- void rt_soft_timer_tick_hook (void)
- {
- timer_ex_cnt++;
- if (timer_ex_cnt >= (RT_TICK_PER_SECOND / RT_TIMER_EX_TICKS_PER_SEC))
- {
- timer_ex_cnt = 0;
- timer_signal();
- }
- }
- /**
- * This function will check timer list, if a timeout event happens, the
- * corresponding timeout function will be invoked.
- *
- */
- void rt_soft_timer_check()
- {
- rt_tick_t current_tick;
- rt_list_t *n;
- struct rt_timer *t;
- #ifdef RT_TIMER_DEBUG
- rt_kprintf("software timer check enter\n");
- #endif
- current_tick = rt_tick_get();
- for (n = rt_soft_timer_list.next; n != &(rt_soft_timer_list); )
- {
- t = rt_list_entry(n, 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));
- /* call timeout function */
- t->timeout_func(t->parameter);
- /* reget tick */
- current_tick = rt_tick_get();
- #ifdef RT_TIMER_DEBUG
- rt_kprintf("current tick: %d\n", current_tick);
- #endif
- if ((t->parent.flag & RT_TIMER_FLAG_PERIODIC) &&
- (t->parent.flag & RT_TIMER_FLAG_ACTIVATED))
- {
- /* start it */
- t->parent.flag &= ~RT_TIMER_FLAG_ACTIVATED;
- rt_timer_start(t);
- }
- else
- {
- /* stop timer */
- t->parent.flag &= ~RT_TIMER_FLAG_ACTIVATED;
- }
- }
- else break;
- }
- #ifdef RT_TIMER_DEBUG
- rt_kprintf("software timer check leave\n");
- #endif
- }
- /* system timer thread entry */
- static void rt_thread_timer_entry(void* parameter)
- {
- while (1)
- {
-
- rt_sem_take(&timer_sem,RT_WAITING_FOREVER);
-
- /* lock scheduler */
- rt_enter_critical();
- /* check software timer */
- rt_soft_timer_check();
- /* unlock scheduler */
- rt_exit_critical();
- }
- }
- #endif
- /**
- * @ingroup SystemInit
- *
- * This function will init system timer
- *
- */
- void rt_system_timer_init()
- {
- rt_list_init(&rt_timer_list);
- #ifdef RT_USING_TIMER_SOFT
- rt_list_init(&rt_soft_timer_list);
- rt_sem_init(&timer_sem, "timer", 0, RT_IPC_FLAG_FIFO);
- /* start software timer thread */
- rt_thread_init(&timer_thread,
- "timer",
- rt_thread_timer_entry, RT_NULL,
- &timer_thread_stack[0], sizeof(timer_thread_stack),
- RT_TIMER_THREAD_PRIO, 10);
- /* startup */
- rt_thread_startup(&timer_thread);
- #endif
- }
- /*@}*/
|