mcp7940n.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. /*
  2. * Copyright (c) 2021 Laird Connectivity
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_DRIVERS_RTC_MCP7940N_H_
  7. #define ZEPHYR_INCLUDE_DRIVERS_RTC_MCP7940N_H_
  8. #include <sys/timeutil.h>
  9. #include <time.h>
  10. struct mcp7940n_rtc_sec {
  11. uint8_t sec_one : 4;
  12. uint8_t sec_ten : 3;
  13. uint8_t start_osc : 1;
  14. } __packed;
  15. struct mcp7940n_rtc_min {
  16. uint8_t min_one : 4;
  17. uint8_t min_ten : 3;
  18. uint8_t nimp : 1;
  19. } __packed;
  20. struct mcp7940n_rtc_hours {
  21. uint8_t hr_one : 4;
  22. uint8_t hr_ten : 2;
  23. uint8_t twelve_hr : 1;
  24. uint8_t nimp : 1;
  25. } __packed;
  26. struct mcp7940n_rtc_weekday {
  27. uint8_t weekday : 3;
  28. uint8_t vbaten : 1;
  29. uint8_t pwrfail : 1;
  30. uint8_t oscrun : 1;
  31. uint8_t nimp : 2;
  32. } __packed;
  33. struct mcp7940n_rtc_date {
  34. uint8_t date_one : 4;
  35. uint8_t date_ten : 2;
  36. uint8_t nimp : 2;
  37. } __packed;
  38. struct mcp7940n_rtc_month {
  39. uint8_t month_one : 4;
  40. uint8_t month_ten : 1;
  41. uint8_t lpyr : 1;
  42. uint8_t nimp : 2;
  43. } __packed;
  44. struct mcp7940n_rtc_year {
  45. uint8_t year_one : 4;
  46. uint8_t year_ten : 4;
  47. } __packed;
  48. struct mcp7940n_rtc_control {
  49. uint8_t sqwfs : 2;
  50. uint8_t crs_trim : 1;
  51. uint8_t ext_osc : 1;
  52. uint8_t alm0_en : 1;
  53. uint8_t alm1_en : 1;
  54. uint8_t sqw_en : 1;
  55. uint8_t out : 1;
  56. } __packed;
  57. struct mcp7940n_rtc_osctrim {
  58. uint8_t trim_val : 7;
  59. uint8_t sign : 1;
  60. } __packed;
  61. struct mcp7940n_alm_sec {
  62. uint8_t sec_one : 4;
  63. uint8_t sec_ten : 3;
  64. uint8_t nimp : 1;
  65. } __packed;
  66. struct mcp7940n_alm_min {
  67. uint8_t min_one : 4;
  68. uint8_t min_ten : 3;
  69. uint8_t nimp : 1;
  70. } __packed;
  71. struct mcp7940n_alm_hours {
  72. uint8_t hr_one : 4;
  73. uint8_t hr_ten : 2;
  74. uint8_t twelve_hr : 1;
  75. uint8_t nimp : 1;
  76. } __packed;
  77. struct mcp7940n_alm_weekday {
  78. uint8_t weekday : 3;
  79. uint8_t alm_if : 1;
  80. uint8_t alm_msk : 3;
  81. uint8_t alm_pol : 1;
  82. } __packed;
  83. struct mcp7940n_alm_date {
  84. uint8_t date_one : 4;
  85. uint8_t date_ten : 2;
  86. uint8_t nimp : 2;
  87. } __packed;
  88. struct mcp7940n_alm_month {
  89. uint8_t month_one : 4;
  90. uint8_t month_ten : 1;
  91. uint8_t nimp : 3;
  92. } __packed;
  93. struct mcp7940n_time_registers {
  94. struct mcp7940n_rtc_sec rtc_sec;
  95. struct mcp7940n_rtc_min rtc_min;
  96. struct mcp7940n_rtc_hours rtc_hours;
  97. struct mcp7940n_rtc_weekday rtc_weekday;
  98. struct mcp7940n_rtc_date rtc_date;
  99. struct mcp7940n_rtc_month rtc_month;
  100. struct mcp7940n_rtc_year rtc_year;
  101. struct mcp7940n_rtc_control rtc_control;
  102. struct mcp7940n_rtc_osctrim rtc_osctrim;
  103. } __packed;
  104. struct mcp7940n_alarm_registers {
  105. struct mcp7940n_alm_sec alm_sec;
  106. struct mcp7940n_alm_min alm_min;
  107. struct mcp7940n_alm_hours alm_hours;
  108. struct mcp7940n_alm_weekday alm_weekday;
  109. struct mcp7940n_alm_date alm_date;
  110. struct mcp7940n_alm_month alm_month;
  111. } __packed;
  112. enum mcp7940n_register {
  113. REG_RTC_SEC = 0x0,
  114. REG_RTC_MIN = 0x1,
  115. REG_RTC_HOUR = 0x2,
  116. REG_RTC_WDAY = 0x3,
  117. REG_RTC_DATE = 0x4,
  118. REG_RTC_MONTH = 0x5,
  119. REG_RTC_YEAR = 0x6,
  120. REG_RTC_CONTROL = 0x7,
  121. REG_RTC_OSCTRIM = 0x8,
  122. /* 0x9 not implemented */
  123. REG_ALM0_SEC = 0xA,
  124. REG_ALM0_MIN = 0xB,
  125. REG_ALM0_HOUR = 0xC,
  126. REG_ALM0_WDAY = 0xD,
  127. REG_ALM0_DATE = 0xE,
  128. REG_ALM0_MONTH = 0xF,
  129. /* 0x10 not implemented */
  130. REG_ALM1_SEC = 0x11,
  131. REG_ALM1_MIN = 0x12,
  132. REG_ALM1_HOUR = 0x13,
  133. REG_ALM1_WDAY = 0x14,
  134. REG_ALM1_DATE = 0x15,
  135. REG_ALM1_MONTH = 0x16,
  136. /* 0x17 not implemented */
  137. REG_PWR_DWN_MIN = 0x18,
  138. REG_PWR_DWN_HOUR = 0x19,
  139. REG_PWR_DWN_DATE = 0x1A,
  140. REG_PWR_DWN_MONTH = 0x1B,
  141. REG_PWR_UP_MIN = 0x1C,
  142. REG_PWR_UP_HOUR = 0x1D,
  143. REG_PWR_UP_DATE = 0x1E,
  144. REG_PWR_UP_MONTH = 0x1F,
  145. SRAM_MIN = 0x20,
  146. SRAM_MAX = 0x5F,
  147. REG_INVAL = 0x60,
  148. };
  149. /* Mutually exclusive alarm trigger settings */
  150. enum mcp7940n_alarm_trigger {
  151. MCP7940N_ALARM_TRIGGER_SECONDS = 0x0,
  152. MCP7940N_ALARM_TRIGGER_MINUTES = 0x1,
  153. MCP7940N_ALARM_TRIGGER_HOURS = 0x2,
  154. MCP7940N_ALARM_TRIGGER_WDAY = 0x3,
  155. MCP7940N_ALARM_TRIGGER_DATE = 0x4,
  156. /* TRIGGER_ALL matches seconds, minutes, hours, weekday, date and month */
  157. MCP7940N_ALARM_TRIGGER_ALL = 0x7,
  158. };
  159. /** @brief Set the RTC to a given Unix time
  160. *
  161. * The RTC advances one tick per second with no access to sub-second
  162. * precision. This function will convert the given unix_time into seconds,
  163. * minutes, hours, day of the week, day of the month, month and year.
  164. * A Unix time of '0' means a timestamp of 00:00:00 UTC on Thursday 1st January
  165. * 1970.
  166. *
  167. * @param dev the MCP7940N device pointer.
  168. * @param unix_time Unix time to set the rtc to.
  169. *
  170. * @retval return 0 on success, or a negative error code from an I2C
  171. * transaction or invalid parameter.
  172. */
  173. int mcp7940n_rtc_set_time(const struct device *dev, time_t unix_time);
  174. #endif /* ZEPHYR_INCLUDE_DRIVERS_RTC_MCP7940N_H_ */