system_timer.h 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. /*
  2. * Copyright (c) 2015 Wind River Systems, Inc.
  3. * Copyright (c) 2019 Intel Corporation
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. /**
  8. * @file
  9. * @brief Timer driver API
  10. *
  11. * Declare API implemented by system timer driver and used by kernel components.
  12. */
  13. #ifndef ZEPHYR_INCLUDE_DRIVERS_SYSTEM_TIMER_H_
  14. #define ZEPHYR_INCLUDE_DRIVERS_SYSTEM_TIMER_H_
  15. #include <stdbool.h>
  16. #include <device.h>
  17. #include <stdbool.h>
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21. /**
  22. * @brief Clock APIs
  23. * @defgroup clock_apis Clock APIs
  24. * @{
  25. */
  26. /**
  27. * @brief Initialize system clock driver
  28. *
  29. * The system clock is a Zephyr device created globally. This is its
  30. * initialization callback. It is a weak symbol that will be
  31. * implemented as a noop if undefined in the clock driver.
  32. */
  33. extern int sys_clock_driver_init(const struct device *dev);
  34. /**
  35. * @brief Initialize system clock driver
  36. *
  37. * The system clock is a Zephyr device created globally. This is its
  38. * device control callback, used in a few devices for power
  39. * management. It is a weak symbol that will be implemented as a noop
  40. * if undefined in the clock driver.
  41. */
  42. extern int clock_device_ctrl(const struct device *dev,
  43. enum pm_device_state state);
  44. /**
  45. * @brief Set system clock timeout
  46. *
  47. * Informs the system clock driver that the next needed call to
  48. * sys_clock_announce() will not be until the specified number of ticks
  49. * from the the current time have elapsed. Note that spurious calls
  50. * to sys_clock_announce() are allowed (i.e. it's legal to announce
  51. * every tick and implement this function as a noop), the requirement
  52. * is that one tick announcement should occur within one tick BEFORE
  53. * the specified expiration (that is, passing ticks==1 means "announce
  54. * the next tick", this convention was chosen to match legacy usage).
  55. * Similarly a ticks value of zero (or even negative) is legal and
  56. * treated identically: it simply indicates the kernel would like the
  57. * next tick announcement as soon as possible.
  58. *
  59. * Note that ticks can also be passed the special value K_TICKS_FOREVER,
  60. * indicating that no future timer interrupts are expected or required
  61. * and that the system is permitted to enter an indefinite sleep even
  62. * if this could cause rollover of the internal counter (i.e. the
  63. * system uptime counter is allowed to be wrong
  64. *
  65. * Note also that it is conventional for the kernel to pass INT_MAX
  66. * for ticks if it wants to preserve the uptime tick count but doesn't
  67. * have a specific event to await. The intent here is that the driver
  68. * will schedule any needed timeout as far into the future as
  69. * possible. For the specific case of INT_MAX, the next call to
  70. * sys_clock_announce() may occur at any point in the future, not just
  71. * at INT_MAX ticks. But the correspondence between the announced
  72. * ticks and real-world time must be correct.
  73. *
  74. * A final note about SMP: note that the call to sys_clock_set_timeout()
  75. * is made on any CPU, and reflects the next timeout desired globally.
  76. * The resulting calls(s) to sys_clock_announce() must be properly
  77. * serialized by the driver such that a given tick is announced
  78. * exactly once across the system. The kernel does not (cannot,
  79. * really) attempt to serialize things by "assigning" timeouts to
  80. * specific CPUs.
  81. *
  82. * @param ticks Timeout in tick units
  83. * @param idle Hint to the driver that the system is about to enter
  84. * the idle state immediately after setting the timeout
  85. */
  86. extern void sys_clock_set_timeout(int32_t ticks, bool idle);
  87. /**
  88. * @brief Timer idle exit notification
  89. *
  90. * This notifies the timer driver that the system is exiting the idle
  91. * and allows it to do whatever bookkeeping is needed to restore timer
  92. * operation and compute elapsed ticks.
  93. *
  94. * @note Legacy timer drivers also use this opportunity to call back
  95. * into sys_clock_announce() to notify the kernel of expired ticks.
  96. * This is allowed for compatibility, but not recommended. The kernel
  97. * will figure that out on its own.
  98. */
  99. extern void sys_clock_idle_exit(void);
  100. /**
  101. * @brief Announce time progress to the kernel
  102. *
  103. * Informs the kernel that the specified number of ticks have elapsed
  104. * since the last call to sys_clock_announce() (or system startup for
  105. * the first call). The timer driver is expected to delivery these
  106. * announcements as close as practical (subject to hardware and
  107. * latency limitations) to tick boundaries.
  108. *
  109. * @param ticks Elapsed time, in ticks
  110. */
  111. extern void sys_clock_announce(int32_t ticks);
  112. /**
  113. * @brief Ticks elapsed since last sys_clock_announce() call
  114. *
  115. * Queries the clock driver for the current time elapsed since the
  116. * last call to sys_clock_announce() was made. The kernel will call
  117. * this with appropriate locking, the driver needs only provide an
  118. * instantaneous answer.
  119. */
  120. extern uint32_t sys_clock_elapsed(void);
  121. /**
  122. * @}
  123. */
  124. #ifdef __cplusplus
  125. }
  126. #endif
  127. #endif /* ZEPHYR_INCLUDE_DRIVERS_SYSTEM_TIMER_H_ */