thread_timer.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. /*
  2. * Copyright (c) 2018 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file Thread timer interface
  8. *
  9. * NOTE: All Thread timer functions cannot be called in interrupt context.
  10. */
  11. #ifndef _THREAD_TIMER__H_
  12. #define _THREAD_TIMER__H_
  13. #include <sys_clock.h>
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. #ifdef CONFIG_THREAD_TIMER
  18. struct thread_timer;
  19. /**
  20. * @typedef thread_timer_expiry_t
  21. * @brief Thread timer expiry function type.
  22. *
  23. * A timer's expiry function is executed by the thread message looper
  24. * each time the timer expires.
  25. *
  26. * @param ttimer Address of timer.
  27. * @param expiry_fn_arg Argument that set by init function.
  28. *
  29. * @return N/A
  30. */
  31. typedef void (*thread_timer_expiry_t)(struct thread_timer *ttimer, void *expiry_fn_arg);
  32. struct thread_timer {
  33. sys_dlist_t node;
  34. int32_t duration;
  35. int32_t period;
  36. uint32_t expiry_time;
  37. thread_timer_expiry_t expiry_fn;
  38. void *expiry_fn_arg;
  39. };
  40. /**
  41. * @brief Initialize a thread timer.
  42. *
  43. * This routine initializes a timer, prior to its first use.
  44. *
  45. * @param ttimer Address of thread timer.
  46. * @param expiry_fn Function to invoke each time the thread timer expires.
  47. * @param arg Argument that need by expiry function.
  48. *
  49. * @return N/A
  50. */
  51. extern void thread_timer_init(struct thread_timer *ttimer,
  52. thread_timer_expiry_t expiry_fn,
  53. void *arg);
  54. /**
  55. * @brief Start a thread timer.
  56. *
  57. * This routine starts a thread timer.
  58. *
  59. * Attempting to start a thread timer that is already running is permitted.
  60. * The timer's duration and period values is reset to use the new duration
  61. * and period values.
  62. *
  63. * @param ttimer Address of timer.
  64. * @param duration Initial timer duration (in milliseconds).
  65. * @param period Timer period (in milliseconds).
  66. *
  67. * @return N/A
  68. */
  69. extern void thread_timer_start(struct thread_timer *ttimer, int32_t duration, int32_t period);
  70. /**
  71. * @brief Stop a thread timer.
  72. *
  73. * This routine stops a running thread timer prematurely.
  74. *
  75. * Attempting to stop a thread timer that is not running is permitted, but has no
  76. * effect on the thread timer.
  77. *
  78. *
  79. * @param ttimer Address of timer.
  80. *
  81. * @return N/A
  82. */
  83. extern void thread_timer_stop(struct thread_timer *ttimer);
  84. /**
  85. * @brief restart a thread timer.
  86. *
  87. * This routine restart a timer. The timer must be initialized and started before.
  88. *
  89. * @param ttimer Address of thread timer.
  90. *
  91. * @return N/A
  92. */
  93. static inline void thread_timer_restart(struct thread_timer *ttimer)
  94. {
  95. thread_timer_start(ttimer, ttimer->duration, ttimer->period);
  96. }
  97. /**
  98. * @brief restart a thread timer status.
  99. *
  100. * This routine get the status of a thread timer.
  101. *
  102. * @param ttimer Address of thread timer.
  103. *
  104. * @return true if the thread timer is in thread timer list, otherwise return false
  105. */
  106. extern bool thread_timer_is_running(struct thread_timer *ttimer);
  107. /**
  108. * @brief get the next expiry thread time interval of current thread.
  109. *
  110. * This routine get the expiry time thread time interval of current threadt.
  111. *
  112. * @param N/A
  113. *
  114. * @return the next expiry time interval
  115. * K_FOREVER, if no actived thread timer in current thread
  116. */
  117. extern int thread_timer_next_timeout(void);
  118. /**
  119. * @brief handle the expired thread timers of current thread.
  120. *
  121. * This routine get the status of a thread timer.
  122. *
  123. * @param N/A
  124. *
  125. * @return N/A
  126. */
  127. extern void thread_timer_handle_expired(void);
  128. #else
  129. #define thread_timer_next_timeout() (-1)
  130. #define thread_timer_handle_expired() do { } while (0)
  131. #endif
  132. #ifdef __cplusplus
  133. }
  134. #endif
  135. #endif /* _THREAD_TIMER__H_ */