hrtimer.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. /*
  2. * Copyright (c) 2017 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief hr timer interface
  9. */
  10. #ifndef HRTIMER_H_
  11. #define HRTIMER_H_
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. #ifdef CONFIG_ACTS_HRTIMER
  16. struct hrtimer;
  17. /**
  18. * @typedef hrtimer_expiry_t
  19. * @brief hrtimer expiry function type.
  20. *
  21. * A timer's expiry function is executed by the thread message looper
  22. * each time the timer expires.
  23. *
  24. * @param ttimer Address of hrtimer.
  25. * @param expiry_fn_arg Argument that set by init function.
  26. *
  27. * @return N/A
  28. */
  29. typedef void (*hrtimer_expiry_t)(struct hrtimer *ttimer, void *expiry_fn_arg);
  30. struct hrtimer
  31. {
  32. sys_dlist_t node;
  33. s32_t duration;
  34. s32_t period;
  35. u64_t expiry_time;
  36. hrtimer_expiry_t expiry_fn;
  37. void *expiry_fn_arg;
  38. };
  39. /**
  40. * @brief Initialize a hrtimer.
  41. *
  42. * This routine initializes a timer, prior to its first use.
  43. *
  44. * @param timer Address of hrtimer.
  45. * @param expiry_fn Function to invoke each time the thread timer expires.
  46. * @param expiry_fn_arg Argument that need by expiry function.
  47. *
  48. * @return N/A
  49. */
  50. extern void hrtimer_init(struct hrtimer *ttimer, hrtimer_expiry_t expiry_fn,
  51. void *expiry_fn_arg);
  52. /**
  53. * @brief Start a hrtimer.
  54. *
  55. * This routine starts a hrtimer.
  56. *
  57. * Attempting to start a hrtimer that is already running is permitted.
  58. * The timer's duration and period values is reset to use the new duration
  59. * and period values.
  60. *
  61. * @param timer Address of hrtimer.
  62. * @param duration Initial timer duration (in us).
  63. * @param period if Timer period (in us).
  64. *
  65. * @return N/A
  66. */
  67. extern void hrtimer_start(struct hrtimer *ttimer, s32_t duration, s32_t period);
  68. /**
  69. * @brief Stop a hrtimer.
  70. *
  71. * This routine stops a running hrtimer prematurely.
  72. *
  73. * Attempting to stop a hrtimer that is not running is permitted, but has no
  74. * effect on the thread timer.
  75. *
  76. *
  77. * @param timer Address of hrtimer.
  78. *
  79. * @return N/A
  80. */
  81. extern void hrtimer_stop(struct hrtimer* timer);
  82. /**
  83. * @brief restart a hrtimer.
  84. *
  85. * This routine restart a hrtimer. The timer must be initialized and started before.
  86. *
  87. * @param ttimer Address of hrtimer.
  88. *
  89. * @return N/A
  90. */
  91. static inline void hrtimer_restart(struct hrtimer *ttimer)
  92. {
  93. hrtimer_start(ttimer, ttimer->duration, ttimer->period);
  94. }
  95. /**
  96. * @brief hrtimer is running or not.
  97. *
  98. * This routine get the status of a hrtimer.
  99. *
  100. * @param ttimer Address of hrtimer.
  101. *
  102. * @return true if the hrtimer is in hrtimer list, otherwise return false
  103. */
  104. extern bool hrtimer_is_running(struct hrtimer *ttimer);
  105. /**
  106. * @brief init hrtimer runtime data
  107. *
  108. * This routine init hrtimer runtime data
  109. *
  110. * @param N/A
  111. *
  112. * @return N/A
  113. */
  114. //extern void hrtimer_runtime_init(void);
  115. #endif
  116. #ifdef __cplusplus
  117. }
  118. #endif
  119. #endif /* HRTIMER_H_ */