| 12345678910111213141516171819202122232425262728293031323334 |
- /*
- * Copyright (c) 2006-2023, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2023-07-10 xqyjlj The first version.
- */
- #include "gtimer.h"
- #include "ktime.h"
- static volatile unsigned long _init_cnt = 0;
- rt_uint64_t rt_ktime_cputimer_getres(void)
- {
- return ((1000ULL * 1000 * 1000) * RT_KTIME_RESMUL) / rt_hw_get_gtimer_frq();
- }
- unsigned long rt_ktime_cputimer_getfrq(void)
- {
- return rt_hw_get_gtimer_frq();
- }
- unsigned long rt_ktime_cputimer_getcnt(void)
- {
- return rt_hw_get_cntpct_val() - _init_cnt;
- }
- void rt_ktime_cputimer_init(void)
- {
- _init_cnt = rt_hw_get_cntpct_val();
- }
|