sys_clock.h 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. /*
  2. * Copyright (c) 2014-2015 Wind River Systems, Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Variables needed for system clock
  9. *
  10. *
  11. * Declare variables used by both system timer device driver and kernel
  12. * components that use timer functionality.
  13. */
  14. #ifndef ZEPHYR_INCLUDE_SYS_CLOCK_H_
  15. #define ZEPHYR_INCLUDE_SYS_CLOCK_H_
  16. #include <sys/util.h>
  17. #include <sys/dlist.h>
  18. #include <toolchain.h>
  19. #include <zephyr/types.h>
  20. #include <sys/time_units.h>
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. /**
  25. * @addtogroup clock_apis
  26. * @{
  27. */
  28. /**
  29. * @brief Tick precision used in timeout APIs
  30. *
  31. * This type defines the word size of the timeout values used in
  32. * k_timeout_t objects, and thus defines an upper bound on maximum
  33. * timeout length (or equivalently minimum tick duration). Note that
  34. * this does not affect the size of the system uptime counter, which
  35. * is always a 64 bit count of ticks.
  36. */
  37. #ifdef CONFIG_TIMEOUT_64BIT
  38. typedef int64_t k_ticks_t;
  39. #else
  40. typedef uint32_t k_ticks_t;
  41. #endif
  42. #define K_TICKS_FOREVER ((k_ticks_t) -1)
  43. /**
  44. * @brief Kernel timeout type
  45. *
  46. * Timeout arguments presented to kernel APIs are stored in this
  47. * opaque type, which is capable of representing times in various
  48. * formats and units. It should be constructed from application data
  49. * using one of the macros defined for this purpose (e.g. `K_MSEC()`,
  50. * `K_TIMEOUT_ABS_TICKS()`, etc...), or be one of the two constants
  51. * K_NO_WAIT or K_FOREVER. Applications should not inspect the
  52. * internal data once constructed. Timeout values may be compared for
  53. * equality with the `K_TIMEOUT_EQ()` macro.
  54. */
  55. typedef struct {
  56. k_ticks_t ticks;
  57. } k_timeout_t;
  58. /**
  59. * @brief Compare timeouts for equality
  60. *
  61. * The k_timeout_t object is an opaque struct that should not be
  62. * inspected by application code. This macro exists so that users can
  63. * test timeout objects for equality with known constants
  64. * (e.g. K_NO_WAIT and K_FOREVER) when implementing their own APIs in
  65. * terms of Zephyr timeout constants.
  66. *
  67. * @return True if the timeout objects are identical
  68. */
  69. #define K_TIMEOUT_EQ(a, b) ((a).ticks == (b).ticks)
  70. #define Z_TIMEOUT_NO_WAIT ((k_timeout_t) {})
  71. #if defined(__cplusplus) && ((__cplusplus - 0) < 202002L)
  72. #define Z_TIMEOUT_TICKS(t) ((k_timeout_t) { (t) })
  73. #else
  74. #define Z_TIMEOUT_TICKS(t) ((k_timeout_t) { .ticks = (t) })
  75. #endif
  76. #define Z_FOREVER Z_TIMEOUT_TICKS(K_TICKS_FOREVER)
  77. #ifdef CONFIG_TIMEOUT_64BIT
  78. # define Z_TIMEOUT_MS(t) Z_TIMEOUT_TICKS((k_ticks_t)k_ms_to_ticks_ceil64(MAX(t, 0)))
  79. # define Z_TIMEOUT_US(t) Z_TIMEOUT_TICKS((k_ticks_t)k_us_to_ticks_ceil64(MAX(t, 0)))
  80. # define Z_TIMEOUT_NS(t) Z_TIMEOUT_TICKS((k_ticks_t)k_ns_to_ticks_ceil64(MAX(t, 0)))
  81. # define Z_TIMEOUT_CYC(t) Z_TIMEOUT_TICKS((k_ticks_t)k_cyc_to_ticks_ceil64(MAX(t, 0)))
  82. #else
  83. # define Z_TIMEOUT_MS(t) Z_TIMEOUT_TICKS((k_ticks_t)k_ms_to_ticks_ceil32(MAX(t, 0)))
  84. # define Z_TIMEOUT_US(t) Z_TIMEOUT_TICKS((k_ticks_t)k_us_to_ticks_ceil32(MAX(t, 0)))
  85. # define Z_TIMEOUT_NS(t) Z_TIMEOUT_TICKS((k_ticks_t)k_ns_to_ticks_ceil32(MAX(t, 0)))
  86. # define Z_TIMEOUT_CYC(t) Z_TIMEOUT_TICKS((k_ticks_t)k_cyc_to_ticks_ceil32(MAX(t, 0)))
  87. #endif
  88. /* Converts between absolute timeout expiration values (packed into
  89. * the negative space below K_TICKS_FOREVER) and (non-negative) delta
  90. * timeout values. If the result of Z_TICK_ABS(t) is >= 0, then the
  91. * value was an absolute timeout with the returend expiration time.
  92. * Note that this macro is bidirectional: Z_TICK_ABS(Z_TICK_ABS(t)) ==
  93. * t for all inputs, and that the representation of K_TICKS_FOREVER is
  94. * the same value in both spaces! Clever, huh?
  95. */
  96. #define Z_TICK_ABS(t) (K_TICKS_FOREVER - 1 - (t))
  97. /** @} */
  98. #ifdef CONFIG_TICKLESS_KERNEL
  99. extern void z_enable_sys_clock(void);
  100. #endif
  101. #if defined(CONFIG_SYS_CLOCK_EXISTS) && \
  102. (CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC == 0)
  103. #error "SYS_CLOCK_HW_CYCLES_PER_SEC must be non-zero!"
  104. #endif
  105. /* number of nsec per usec */
  106. #define NSEC_PER_USEC 1000U
  107. /* number of microseconds per millisecond */
  108. #define USEC_PER_MSEC 1000U
  109. /* number of milliseconds per second */
  110. #define MSEC_PER_SEC 1000U
  111. /* number of microseconds per second */
  112. #define USEC_PER_SEC ((USEC_PER_MSEC) * (MSEC_PER_SEC))
  113. /* number of nanoseconds per second */
  114. #define NSEC_PER_SEC ((NSEC_PER_USEC) * (USEC_PER_MSEC) * (MSEC_PER_SEC))
  115. /* kernel clocks */
  116. /*
  117. * We default to using 64-bit intermediates in timescale conversions,
  118. * but if the HW timer cycles/sec, ticks/sec and ms/sec are all known
  119. * to be nicely related, then we can cheat with 32 bits instead.
  120. */
  121. #ifdef CONFIG_SYS_CLOCK_EXISTS
  122. #if defined(CONFIG_TIMER_READS_ITS_FREQUENCY_AT_RUNTIME) || \
  123. (MSEC_PER_SEC % CONFIG_SYS_CLOCK_TICKS_PER_SEC) || \
  124. (CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC % CONFIG_SYS_CLOCK_TICKS_PER_SEC)
  125. #define _NEED_PRECISE_TICK_MS_CONVERSION
  126. #endif
  127. #endif
  128. /* added tick needed to account for tick in progress */
  129. #define _TICK_ALIGN 1
  130. /*
  131. * SYS_CLOCK_HW_CYCLES_TO_NS_AVG converts CPU clock cycles to nanoseconds
  132. * and calculates the average cycle time
  133. */
  134. #define SYS_CLOCK_HW_CYCLES_TO_NS_AVG(X, NCYCLES) \
  135. (uint32_t)(k_cyc_to_ns_floor64(X) / NCYCLES)
  136. /**
  137. *
  138. * @brief Return the lower part of the current system tick count
  139. *
  140. * @return the current system tick count
  141. *
  142. */
  143. uint32_t sys_clock_tick_get_32(void);
  144. /**
  145. *
  146. * @brief Return the current system tick count
  147. *
  148. * @return the current system tick count
  149. *
  150. */
  151. int64_t sys_clock_tick_get(void);
  152. #ifndef CONFIG_SYS_CLOCK_EXISTS
  153. #define sys_clock_tick_get() (0)
  154. #define sys_clock_tick_get_32() (0)
  155. #endif
  156. uint64_t sys_clock_timeout_end_calc(k_timeout_t timeout);
  157. #ifdef __cplusplus
  158. }
  159. #endif
  160. #endif /* ZEPHYR_INCLUDE_SYS_CLOCK_H_ */