timing.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. /*
  2. * Copyright (c) 2020 Intel Corporation.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_TIMING_TIMING_H_
  7. #define ZEPHYR_INCLUDE_TIMING_TIMING_H_
  8. #include <sys/arch_interface.h>
  9. #include <timing/types.h>
  10. void soc_timing_init(void);
  11. void soc_timing_start(void);
  12. void soc_timing_stop(void);
  13. timing_t soc_timing_counter_get(void);
  14. uint64_t soc_timing_cycles_get(volatile timing_t *const start,
  15. volatile timing_t *const end);
  16. uint64_t soc_timing_freq_get(void);
  17. uint64_t soc_timing_cycles_to_ns(uint64_t cycles);
  18. uint64_t soc_timing_cycles_to_ns_avg(uint64_t cycles, uint32_t count);
  19. uint32_t soc_timing_freq_get_mhz(void);
  20. void board_timing_init(void);
  21. void board_timing_start(void);
  22. void board_timing_stop(void);
  23. timing_t board_timing_counter_get(void);
  24. uint64_t board_timing_cycles_get(volatile timing_t *const start,
  25. volatile timing_t *const end);
  26. uint64_t board_timing_freq_get(void);
  27. uint64_t board_timing_cycles_to_ns(uint64_t cycles);
  28. uint64_t board_timing_cycles_to_ns_avg(uint64_t cycles, uint32_t count);
  29. uint32_t board_timing_freq_get_mhz(void);
  30. /**
  31. * @brief Timing Measurement APIs
  32. * @defgroup timing_api Timing APIs
  33. * @{
  34. */
  35. #ifdef CONFIG_TIMING_FUNCTIONS
  36. /**
  37. * @brief Initialize the timing subsystem.
  38. *
  39. * Perform the necessary steps to initialize the timing subsystem.
  40. */
  41. void timing_init(void);
  42. /**
  43. * @brief Signal the start of the timing information gathering.
  44. *
  45. * Signal to the timing subsystem that timing information
  46. * will be gathered from this point forward.
  47. */
  48. void timing_start(void);
  49. /**
  50. * @brief Signal the end of the timing information gathering.
  51. *
  52. * Signal to the timing subsystem that timing information
  53. * is no longer being gathered from this point forward.
  54. */
  55. void timing_stop(void);
  56. /**
  57. * @brief Return timing counter.
  58. *
  59. * @return Timing counter.
  60. */
  61. static inline timing_t timing_counter_get(void)
  62. {
  63. #if defined(CONFIG_BOARD_HAS_TIMING_FUNCTIONS)
  64. return board_timing_counter_get();
  65. #elif defined(CONFIG_SOC_HAS_TIMING_FUNCTIONS)
  66. return soc_timing_counter_get();
  67. #else
  68. return arch_timing_counter_get();
  69. #endif
  70. }
  71. /**
  72. * @brief Get number of cycles between @p start and @p end.
  73. *
  74. * For some architectures or SoCs, the raw numbers from counter
  75. * need to be scaled to obtain actual number of cycles.
  76. *
  77. * @param start Pointer to counter at start of a measured execution.
  78. * @param end Pointer to counter at stop of a measured execution.
  79. * @return Number of cycles between start and end.
  80. */
  81. static inline uint64_t timing_cycles_get(volatile timing_t *const start,
  82. volatile timing_t *const end)
  83. {
  84. #if defined(CONFIG_BOARD_HAS_TIMING_FUNCTIONS)
  85. return board_timing_cycles_get(start, end);
  86. #elif defined(CONFIG_SOC_HAS_TIMING_FUNCTIONS)
  87. return soc_timing_cycles_get(start, end);
  88. #else
  89. return arch_timing_cycles_get(start, end);
  90. #endif
  91. }
  92. /**
  93. * @brief Get frequency of counter used (in Hz).
  94. *
  95. * @return Frequency of counter used for timing in Hz.
  96. */
  97. static inline uint64_t timing_freq_get(void)
  98. {
  99. #if defined(CONFIG_BOARD_HAS_TIMING_FUNCTIONS)
  100. return board_timing_freq_get();
  101. #elif defined(CONFIG_SOC_HAS_TIMING_FUNCTIONS)
  102. return soc_timing_freq_get();
  103. #else
  104. return arch_timing_freq_get();
  105. #endif
  106. }
  107. /**
  108. * @brief Convert number of @p cycles into nanoseconds.
  109. *
  110. * @param cycles Number of cycles
  111. * @return Converted time value
  112. */
  113. static inline uint64_t timing_cycles_to_ns(uint64_t cycles)
  114. {
  115. #if defined(CONFIG_BOARD_HAS_TIMING_FUNCTIONS)
  116. return board_timing_cycles_to_ns(cycles);
  117. #elif defined(CONFIG_SOC_HAS_TIMING_FUNCTIONS)
  118. return soc_timing_cycles_to_ns(cycles);
  119. #else
  120. return arch_timing_cycles_to_ns(cycles);
  121. #endif
  122. }
  123. /**
  124. * @brief Convert number of @p cycles into nanoseconds with averaging.
  125. *
  126. * @param cycles Number of cycles
  127. * @param count Times of accumulated cycles to average over
  128. * @return Converted time value
  129. */
  130. static inline uint64_t timing_cycles_to_ns_avg(uint64_t cycles, uint32_t count)
  131. {
  132. #if defined(CONFIG_BOARD_HAS_TIMING_FUNCTIONS)
  133. return board_timing_cycles_to_ns_avg(cycles, count);
  134. #elif defined(CONFIG_SOC_HAS_TIMING_FUNCTIONS)
  135. return soc_timing_cycles_to_ns_avg(cycles, count);
  136. #else
  137. return arch_timing_cycles_to_ns_avg(cycles, count);
  138. #endif
  139. }
  140. /**
  141. * @brief Get frequency of counter used (in MHz).
  142. *
  143. * @return Frequency of counter used for timing in MHz.
  144. */
  145. static inline uint32_t timing_freq_get_mhz(void)
  146. {
  147. #if defined(CONFIG_BOARD_HAS_TIMING_FUNCTIONS)
  148. return board_timing_freq_get_mhz();
  149. #elif defined(CONFIG_SOC_HAS_TIMING_FUNCTIONS)
  150. return soc_timing_freq_get_mhz();
  151. #else
  152. return arch_timing_freq_get_mhz();
  153. #endif
  154. }
  155. #endif /* CONFIG_TIMING_FUNCTIONS */
  156. /**
  157. * @}
  158. */
  159. #endif /* ZEPHYR_INCLUDE_TIMING_TIMING_H_ */