nrf_rtc_timer.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /*
  2. * Copyright (c) 2016-2020 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_DRIVERS_TIMER_NRF_RTC_TIMER_H
  7. #define ZEPHYR_INCLUDE_DRIVERS_TIMER_NRF_RTC_TIMER_H
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11. typedef void (*z_nrf_rtc_timer_compare_handler_t)(int32_t id,
  12. uint32_t cc_value,
  13. void *user_data);
  14. /** @brief Allocate RTC compare channel.
  15. *
  16. * Channel 0 is used for the system clock.
  17. *
  18. * @retval Non-negative indicates allocated channel ID.
  19. * @retval -ENOMEM if channel cannot be allocated.
  20. */
  21. int32_t z_nrf_rtc_timer_chan_alloc(void);
  22. /** @brief Free RTC compare channel.
  23. *
  24. * @param chan Previously allocated channel ID.
  25. */
  26. void z_nrf_rtc_timer_chan_free(int32_t chan);
  27. /** @brief Read current RTC counter value.
  28. *
  29. * @return Current RTC counter value.
  30. */
  31. uint32_t z_nrf_rtc_timer_read(void);
  32. /** @brief Get COMPARE event register address.
  33. *
  34. * Address can be used for (D)PPI.
  35. *
  36. * @param chan Channel ID between 0 and CONFIG_NRF_RTC_TIMER_USER_CHAN_COUNT.
  37. *
  38. * @return Register address.
  39. */
  40. uint32_t z_nrf_rtc_timer_compare_evt_address_get(int32_t chan);
  41. /** @brief Safely disable compare event interrupt.
  42. *
  43. * Function returns key indicating whether interrupt was already disabled.
  44. *
  45. * @param chan Channel ID between 1 and CONFIG_NRF_RTC_TIMER_USER_CHAN_COUNT.
  46. *
  47. * @return key passed to @ref z_nrf_rtc_timer_compare_int_unlock.
  48. */
  49. bool z_nrf_rtc_timer_compare_int_lock(int32_t chan);
  50. /** @brief Safely enable compare event interrupt.
  51. *
  52. * Event interrupt is conditionally enabled based on @p key.
  53. *
  54. * @param chan Channel ID between 1 and CONFIG_NRF_RTC_TIMER_USER_CHAN_COUNT.
  55. *
  56. * @param key Key returned by @ref z_nrf_rtc_timer_compare_int_lock.
  57. */
  58. void z_nrf_rtc_timer_compare_int_unlock(int32_t chan, bool key);
  59. /** @brief Read compare register value.
  60. *
  61. * @param chan Channel ID between 0 and CONFIG_NRF_RTC_TIMER_USER_CHAN_COUNT.
  62. *
  63. * @return Value set in the compare register.
  64. */
  65. uint32_t z_nrf_rtc_timer_compare_read(int32_t chan);
  66. /** @brief Try to set compare channel to given value.
  67. *
  68. * Provided value is absolute and cannot be further in future than half span of
  69. * the RTC counter. Function continouosly retries to set compare register until
  70. * value that is written is far enough in the future and will generate an event.
  71. * Because of that, compare register value may be different than the one
  72. * requested. During this operation interrupt from that compare channel is
  73. * disabled. Other interrupts are not locked during this operation.
  74. *
  75. * There is no option to abort the request once it is set. However, it can be
  76. * overwritten.
  77. *
  78. * @param chan Channel ID between 1 and CONFIG_NRF_RTC_TIMER_USER_CHAN_COUNT.
  79. *
  80. * @param cc_value Absolute value. Values which are further distanced from
  81. * current counter value than half RTC span are considered in the past.
  82. *
  83. * @param handler User function called in the context of the RTC interrupt.
  84. *
  85. * @param user_data Data passed to the handler.
  86. */
  87. void z_nrf_rtc_timer_compare_set(int32_t chan, uint32_t cc_value,
  88. z_nrf_rtc_timer_compare_handler_t handler,
  89. void *user_data);
  90. /** @brief Convert system clock time to RTC ticks.
  91. *
  92. * @p t can be absolute or relative. @p t cannot be further from now than half
  93. * of the RTC range (e.g. 256 seconds if RTC is running at 32768 Hz).
  94. *
  95. * @retval Positive value represents @p t in RTC tick value.
  96. * @retval -EINVAL if @p t is out of range.
  97. */
  98. int z_nrf_rtc_timer_get_ticks(k_timeout_t t);
  99. #ifdef __cplusplus
  100. }
  101. #endif
  102. #endif /* ZEPHYR_INCLUDE_DRIVERS_TIMER_NRF_RTC_TIMER_H */