2009-07-03 06:48:23 +08:00
|
|
|
/*
|
2018-09-14 22:37:43 +08:00
|
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
2013-06-24 17:06:09 +08:00
|
|
|
*
|
2018-09-14 22:37:43 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2013-06-24 17:06:09 +08:00
|
|
|
*
|
2009-07-03 06:48:23 +08:00
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2006-03-12 Bernard first version
|
|
|
|
* 2006-05-27 Bernard add support for same priority thread schedule
|
2010-05-23 07:26:08 +08:00
|
|
|
* 2006-08-10 Bernard remove the last rt_schedule in rt_tick_increase
|
2010-03-09 07:09:40 +08:00
|
|
|
* 2010-03-08 Bernard remove rt_passed_second
|
2010-05-23 07:26:08 +08:00
|
|
|
* 2010-05-20 Bernard fix the tick exceeds the maximum limits
|
2010-07-13 15:36:37 +08:00
|
|
|
* 2010-07-13 Bernard fix rt_tick_from_millisecond issue found by kuronca
|
2011-06-29 22:45:35 +08:00
|
|
|
* 2011-06-26 Bernard add rt_tick_set function.
|
2018-11-22 14:40:43 +08:00
|
|
|
* 2018-11-22 Jesven add per cpu tick
|
2009-07-03 06:48:23 +08:00
|
|
|
*/
|
|
|
|
|
2011-06-29 22:45:35 +08:00
|
|
|
#include <rthw.h>
|
2009-07-03 06:48:23 +08:00
|
|
|
#include <rtthread.h>
|
|
|
|
|
2018-11-22 14:40:43 +08:00
|
|
|
#ifdef RT_USING_SMP
|
|
|
|
#define rt_tick rt_cpu_index(0)->tick
|
|
|
|
#else
|
2012-01-31 20:17:47 +08:00
|
|
|
static rt_tick_t rt_tick = 0;
|
2018-11-22 14:40:43 +08:00
|
|
|
#endif
|
2009-07-03 06:48:23 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This function will init system tick and set it to zero.
|
|
|
|
* @ingroup SystemInit
|
|
|
|
*
|
2012-01-31 20:17:47 +08:00
|
|
|
* @deprecated since 1.1.0, this function does not need to be invoked
|
|
|
|
* in the system initialization.
|
2009-07-03 06:48:23 +08:00
|
|
|
*/
|
2011-09-21 11:56:42 +08:00
|
|
|
void rt_system_tick_init(void)
|
2009-07-03 06:48:23 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @addtogroup Clock
|
|
|
|
*/
|
|
|
|
|
2016-08-19 10:05:00 +08:00
|
|
|
/**@{*/
|
2009-07-03 06:48:23 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This function will return current tick from operating system startup
|
|
|
|
*
|
|
|
|
* @return current tick
|
|
|
|
*/
|
2011-09-21 11:56:42 +08:00
|
|
|
rt_tick_t rt_tick_get(void)
|
2009-07-03 06:48:23 +08:00
|
|
|
{
|
2012-12-20 15:34:48 +08:00
|
|
|
/* return the global tick */
|
|
|
|
return rt_tick;
|
2009-07-03 06:48:23 +08:00
|
|
|
}
|
2012-08-27 09:21:57 +08:00
|
|
|
RTM_EXPORT(rt_tick_get);
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2011-06-29 22:45:35 +08:00
|
|
|
/**
|
|
|
|
* This function will set current tick
|
|
|
|
*/
|
|
|
|
void rt_tick_set(rt_tick_t tick)
|
|
|
|
{
|
2012-12-20 15:34:48 +08:00
|
|
|
rt_base_t level;
|
2011-06-29 22:45:35 +08:00
|
|
|
|
2012-12-20 15:34:48 +08:00
|
|
|
level = rt_hw_interrupt_disable();
|
|
|
|
rt_tick = tick;
|
|
|
|
rt_hw_interrupt_enable(level);
|
2011-06-29 22:45:35 +08:00
|
|
|
}
|
|
|
|
|
2009-07-03 06:48:23 +08:00
|
|
|
/**
|
2009-12-25 20:18:53 +08:00
|
|
|
* This function will notify kernel there is one tick passed. Normally,
|
2009-07-03 06:48:23 +08:00
|
|
|
* this function is invoked by clock ISR.
|
|
|
|
*/
|
2011-09-21 11:56:42 +08:00
|
|
|
void rt_tick_increase(void)
|
2009-07-03 06:48:23 +08:00
|
|
|
{
|
2012-12-20 15:34:48 +08:00
|
|
|
struct rt_thread *thread;
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2012-12-20 15:34:48 +08:00
|
|
|
/* increase the global tick */
|
2018-11-22 14:40:43 +08:00
|
|
|
#ifdef RT_USING_SMP
|
|
|
|
rt_cpu_self()->tick ++;
|
|
|
|
#else
|
2012-12-20 15:34:48 +08:00
|
|
|
++ rt_tick;
|
2018-11-22 14:40:43 +08:00
|
|
|
#endif
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2012-12-20 15:34:48 +08:00
|
|
|
/* check time slice */
|
|
|
|
thread = rt_thread_self();
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2012-12-20 15:34:48 +08:00
|
|
|
-- thread->remaining_tick;
|
|
|
|
if (thread->remaining_tick == 0)
|
|
|
|
{
|
|
|
|
/* change to initialized tick */
|
|
|
|
thread->remaining_tick = thread->init_tick;
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2012-12-20 15:34:48 +08:00
|
|
|
/* yield */
|
|
|
|
rt_thread_yield();
|
|
|
|
}
|
2010-05-23 07:26:08 +08:00
|
|
|
|
2012-12-20 15:34:48 +08:00
|
|
|
/* check timer */
|
|
|
|
rt_timer_check();
|
2009-07-03 06:48:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This function will calculate the tick from millisecond.
|
|
|
|
*
|
|
|
|
* @param ms the specified millisecond
|
2017-10-15 22:31:53 +08:00
|
|
|
* - Negative Number wait forever
|
|
|
|
* - Zero not wait
|
|
|
|
* - Max 0x7fffffff
|
2009-07-03 06:48:23 +08:00
|
|
|
*
|
|
|
|
* @return the calculated tick
|
|
|
|
*/
|
2019-03-20 14:54:17 +08:00
|
|
|
rt_tick_t rt_tick_from_millisecond(rt_int32_t ms)
|
2009-07-03 06:48:23 +08:00
|
|
|
{
|
2019-03-20 14:54:17 +08:00
|
|
|
rt_tick_t tick;
|
2017-10-15 22:31:53 +08:00
|
|
|
|
|
|
|
if (ms < 0)
|
2019-03-26 17:53:57 +08:00
|
|
|
{
|
|
|
|
tick = (rt_tick_t)RT_WAITING_FOREVER;
|
2019-03-20 14:54:17 +08:00
|
|
|
}
|
2017-10-15 22:31:53 +08:00
|
|
|
else
|
2019-03-20 14:54:17 +08:00
|
|
|
{
|
|
|
|
tick = RT_TICK_PER_SECOND * (ms / 1000);
|
2019-03-26 17:53:57 +08:00
|
|
|
tick += (RT_TICK_PER_SECOND * (ms % 1000) + 999) / 1000;
|
2019-03-20 14:54:17 +08:00
|
|
|
}
|
|
|
|
|
2012-12-20 15:34:48 +08:00
|
|
|
/* return the calculated tick */
|
2017-10-15 22:31:53 +08:00
|
|
|
return tick;
|
2009-07-03 06:48:23 +08:00
|
|
|
}
|
2012-08-27 09:21:57 +08:00
|
|
|
RTM_EXPORT(rt_tick_from_millisecond);
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2016-08-19 10:05:00 +08:00
|
|
|
/**@}*/
|
2009-07-03 06:48:23 +08:00
|
|
|
|