rtc.h 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. /*
  2. * Copyright (c) 2020 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Public API for RTC(Real Time Clock) Drivers
  9. */
  10. #ifndef _RTC_H_
  11. #define _RTC_H_
  12. #include <zephyr/types.h>
  13. #include <device.h>
  14. #include <sys/util.h>
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. /*!
  19. * struct rtc_time
  20. * @brief The structure to discribe TIME
  21. */
  22. struct rtc_time {
  23. uint8_t tm_sec; /* rtc second 0-59 */
  24. uint8_t tm_min; /* rtc minute 0-59 */
  25. uint8_t tm_hour; /* rtc hour 0-23 */
  26. uint8_t tm_mday; /* rtc day 1-31 */
  27. uint8_t tm_mon; /* rtc month 1-12 */
  28. uint8_t tm_wday; /* day of the week */
  29. uint16_t tm_year; /* rtc year */
  30. uint16_t tm_ms; /* rtc milisecond 0 ~ 999 */
  31. };
  32. /* @brief The function to translate seconds time (UTC) to rtc time. */
  33. void rtc_time_to_tm(uint32_t time, struct rtc_time *tm);
  34. /* @brief Check the rtc time is valid or not. */
  35. int rtc_valid_tm(struct rtc_time *tm);
  36. /* @brief The function to translate the rtc time to seconds time (UTC). */
  37. int rtc_tm_to_time(struct rtc_time *tm, uint32_t *time);
  38. /* @brief The function to print the rtc time. */
  39. void print_rtc_time(struct rtc_time *tm);
  40. /* @brief The number of days in the month.*/
  41. int rtc_month_days(unsigned int month, unsigned int year);
  42. /*!
  43. * struct rtc_alarm_config
  44. * @brief The structure to configure the alarm function.
  45. */
  46. struct rtc_alarm_config {
  47. struct rtc_time alarm_time; /*!< The alarm time setting */
  48. void (*cb_fn)(const void *cb_data); /*!< Pointer to function to call when alarm value matches current RTC value */
  49. const void *cb_data; /*!< The callback data */
  50. };
  51. /*!
  52. * struct rtc_alarm_period_config
  53. * @brief The structure to configure the period alarm function.
  54. */
  55. struct rtc_alarm_period_config {
  56. uint16_t tm_msec; /*!< period milliseconds */
  57. uint8_t tm_sec; /*!< period seconds */
  58. void (*cb_fn)(const void *cb_data); /*!< Pointer to function to call when alarm value matches current RTC value */
  59. const void *cb_data; /*!< The callback data */
  60. };
  61. /*!
  62. * struct rtc_alarm_config
  63. * @brief The current alarm status
  64. */
  65. struct rtc_alarm_status {
  66. struct rtc_time alarm_time; /*!< The alarm time setting */
  67. bool is_on; /*!< Alarm on status */
  68. };
  69. struct rtc_driver_api {
  70. void (*enable)(const struct device *dev);
  71. void (*disable)(const struct device *dev);
  72. int (*get_time)(const struct device *dev, struct rtc_time *tm);
  73. int (*set_time)(const struct device *dev, const struct rtc_time *tm);
  74. int (*set_alarm)(const struct device *dev, struct rtc_alarm_config *config, bool enable);
  75. int (*set_period_alarm)(const struct device *dev, struct rtc_alarm_period_config *config, bool enable);
  76. int (*get_alarm)(const struct device *dev, struct rtc_alarm_status *sts);
  77. bool (*is_alarm_wakeup)(const struct device *dev);
  78. };
  79. /**
  80. * @brief Enable the RTC module
  81. *
  82. * @param dev: Pointer to the device structure for the driver instance.
  83. *
  84. * @return N/A
  85. */
  86. static inline void rtc_enable(const struct device *dev)
  87. {
  88. const struct rtc_driver_api *api = dev->api;
  89. api->enable(dev);
  90. }
  91. /**
  92. * @brief Disable the RTC module
  93. *
  94. * @param dev: Pointer to the device structure for the driver instance.
  95. *
  96. * @return N/A
  97. */
  98. static inline void rtc_disable(const struct device *dev)
  99. {
  100. const struct rtc_driver_api *api = dev->api;
  101. api->disable(dev);
  102. }
  103. /**
  104. * @brief Get the RTC time
  105. *
  106. * @param dev: Pointer to the device structure for the driver instance.
  107. * @param tm: Pointer to rtc time structure
  108. *
  109. * @return 0 on success, negative errno code on fail.
  110. */
  111. static inline int rtc_get_time(const struct device *dev, struct rtc_time *tm)
  112. {
  113. const struct rtc_driver_api *api = dev->api;
  114. return api->get_time(dev, tm);
  115. }
  116. /**
  117. * @brief Set the RTC time
  118. *
  119. * @param dev: Pointer to the device structure for the driver instance.
  120. * @param tm: Pointer to rtc time structure
  121. *
  122. * @return 0 on success, negative errno code on fail.
  123. */
  124. static inline int rtc_set_time(const struct device *dev, const struct rtc_time *tm)
  125. {
  126. const struct rtc_driver_api *api = dev->api;
  127. return api->set_time(dev, tm);
  128. }
  129. /**
  130. * @brief Set the alarm time
  131. *
  132. * @param dev: Pointer to the device structure for the driver instance.
  133. * @param config: Pointer to rtc alarm configuration
  134. *
  135. * @return 0 on success, negative errno code on fail.
  136. */
  137. static inline int rtc_set_alarm(const struct device *dev, struct rtc_alarm_config *config, bool enable)
  138. {
  139. const struct rtc_driver_api *api = dev->api;
  140. return api->set_alarm(dev, config, enable);
  141. }
  142. /**
  143. * @brief Set the period alarm time
  144. *
  145. * @param dev: Pointer to the device structure for the driver instance.
  146. * @param config: Pointer to rtc period alarm configuration
  147. *
  148. * @return 0 on success, negative errno code on fail.
  149. */
  150. static inline int rtc_set_period_alarm(const struct device *dev,
  151. struct rtc_alarm_period_config *config, bool enable)
  152. {
  153. const struct rtc_driver_api *api = dev->api;
  154. return api->set_period_alarm(dev, config, enable);
  155. }
  156. /**
  157. * @brief Get the alarm time setting
  158. *
  159. * @param dev: Pointer to the device structure for the driver instance.
  160. * @param tm: Pointer to rtc time structure
  161. *
  162. * @return 0 on success, negative errno code on fail.
  163. */
  164. static inline int rtc_get_alarm(const struct device *dev, struct rtc_alarm_status *sts)
  165. {
  166. const struct rtc_driver_api *api = dev->api;
  167. return api->get_alarm(dev, sts);
  168. }
  169. /**
  170. * @brief Function to get the information that whether wakeup from RTC
  171. *
  172. * Moreover, user can distinguish the ALARM wake up event from this API.
  173. *
  174. * @param dev Pointer to the device structure for the driver instance.
  175. *
  176. * @retval 1 if the rtc interrupt is pending.
  177. * @retval 0 if no rtc interrupt is pending.
  178. */
  179. static inline bool rtc_is_alarm_wakeup(const struct device *dev)
  180. {
  181. struct rtc_driver_api *api = (struct rtc_driver_api *)dev->api;
  182. return api->is_alarm_wakeup(dev);
  183. }
  184. #ifdef __cplusplus
  185. }
  186. #endif
  187. #endif