bbram.h 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. /*
  2. * Copyright (c) 2021 Google Inc
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_DRIVERS_BBRAM_H
  7. #define ZEPHYR_INCLUDE_DRIVERS_BBRAM_H
  8. #include <device.h>
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. /**
  13. * API template to check if the BBRAM is invalid.
  14. *
  15. * @see bbram_check_invlaid
  16. */
  17. typedef int (*bbram_api_check_invalid)(const struct device *dev);
  18. /**
  19. * API template to check for standby power failure.
  20. *
  21. * @see bbram_check_standby_power
  22. */
  23. typedef int (*bbram_api_check_standby_power)(const struct device *dev);
  24. /**
  25. * API template to check for V CC1 power failure.
  26. *
  27. * @see bbram_check_power
  28. */
  29. typedef int (*bbram_api_check_power)(const struct device *dev);
  30. /**
  31. * API template to check the size of the BBRAM
  32. *
  33. * @see bbram_get_size
  34. */
  35. typedef int (*bbram_api_get_size)(const struct device *dev, size_t *size);
  36. /**
  37. * API template to read from BBRAM.
  38. *
  39. * @see bbram_read
  40. */
  41. typedef int (*bbram_api_read)(const struct device *dev, size_t offset, size_t size,
  42. uint8_t *data);
  43. /**
  44. * API template to write to BBRAM.
  45. *
  46. * @see bbram_write
  47. */
  48. typedef int (*bbram_api_write)(const struct device *dev, size_t offset, size_t size,
  49. const uint8_t *data);
  50. __subsystem struct bbram_driver_api {
  51. bbram_api_check_invalid check_invalid;
  52. bbram_api_check_standby_power check_standby_power;
  53. bbram_api_check_power check_power;
  54. bbram_api_get_size get_size;
  55. bbram_api_read read;
  56. bbram_api_write write;
  57. };
  58. /**
  59. * @brief Check if BBRAM is invalid
  60. *
  61. * Check if "Invalid Battery-Backed RAM" status is set then reset the status
  62. * bit. This may occur as a result to low voltage at the VBAT pin.
  63. *
  64. * @param dev BBRAM device pointer.
  65. * @return 0 if the Battery-Backed RAM data is valid, -EFAULT otherwise.
  66. */
  67. __syscall int bbram_check_invalid(const struct device *dev);
  68. static inline int z_impl_bbram_check_invalid(const struct device *dev)
  69. {
  70. const struct bbram_driver_api *api =
  71. (const struct bbram_driver_api *)dev->api;
  72. if (!api->check_invalid) {
  73. return -ENOTSUP;
  74. }
  75. return api->check_invalid(dev);
  76. }
  77. /**
  78. * @brief Check for standby (Volt SBY) power failure.
  79. *
  80. * Check if the V standby power domain is turned on after it was off then reset
  81. * the status bit.
  82. *
  83. * @param dev BBRAM device pointer.
  84. * @return 0 if V SBY power domain is in normal operation.
  85. */
  86. __syscall int bbram_check_standby_power(const struct device *dev);
  87. static inline int z_impl_bbram_check_standby_power(const struct device *dev)
  88. {
  89. const struct bbram_driver_api *api =
  90. (const struct bbram_driver_api *)dev->api;
  91. if (!api->check_standby_power) {
  92. return -ENOTSUP;
  93. }
  94. return api->check_standby_power(dev);
  95. }
  96. /**
  97. * @brief Check for V CC1 power failure.
  98. *
  99. * This will return an error if the V CC1 power domain is turned on after it was
  100. * off and reset the status bit.
  101. *
  102. * @param dev BBRAM device pointer.
  103. * @return 0 if the V CC1 power domain is in normal operation, -EFAULT
  104. * otherwise.
  105. */
  106. __syscall int bbram_check_power(const struct device *dev);
  107. static inline int z_impl_bbram_check_power(const struct device *dev)
  108. {
  109. const struct bbram_driver_api *api =
  110. (const struct bbram_driver_api *)dev->api;
  111. if (!api->check_power) {
  112. return -ENOTSUP;
  113. }
  114. return api->check_power(dev);
  115. }
  116. /**
  117. * Get the size of the BBRAM (in bytes).
  118. *
  119. * @param dev BBRAM device pointer.
  120. * @param size Pointer to write the size to.
  121. * @return 0 for success, -EFAULT otherwise.
  122. */
  123. __syscall int bbram_get_size(const struct device *dev, size_t *size);
  124. static inline int z_impl_bbram_get_size(const struct device *dev, size_t *size)
  125. {
  126. const struct bbram_driver_api *api =
  127. (const struct bbram_driver_api *)dev->api;
  128. if (!api->get_size) {
  129. return -ENOTSUP;
  130. }
  131. return api->get_size(dev, size);
  132. }
  133. /**
  134. * Read bytes from BBRAM.
  135. *
  136. * @param dev The BBRAM device pointer to read from.
  137. * @param offset The offset into the RAM address to start reading from.
  138. * @param size The number of bytes to read.
  139. * @param data The buffer to load the data into.
  140. * @return 0 on success, -EFAULT if the address range is out of bounds.
  141. */
  142. __syscall int bbram_read(const struct device *dev, size_t offset, size_t size,
  143. uint8_t *data);
  144. static inline int z_impl_bbram_read(const struct device *dev, size_t offset,
  145. size_t size, uint8_t *data)
  146. {
  147. const struct bbram_driver_api *api =
  148. (const struct bbram_driver_api *)dev->api;
  149. if (!api->read) {
  150. return -ENOTSUP;
  151. }
  152. return api->read(dev, offset, size, data);
  153. }
  154. /**
  155. * Write bytes to BBRAM.
  156. *
  157. * @param dev The BBRAM device pointer to write to.
  158. * @param offset The offset into the RAM address to start writing to.
  159. * @param size The number of bytes to write.
  160. * @param data Pointer to the start of data to write.
  161. * @return 0 on success, -EFAULT if the address range is out of bounds.
  162. */
  163. __syscall int bbram_write(const struct device *dev, size_t offset, size_t size,
  164. const uint8_t *data);
  165. static inline int z_impl_bbram_write(const struct device *dev, size_t offset,
  166. size_t size, const uint8_t *data)
  167. {
  168. const struct bbram_driver_api *api =
  169. (const struct bbram_driver_api *)dev->api;
  170. if (!api->write) {
  171. return -ENOTSUP;
  172. }
  173. return api->write(dev, offset, size, data);
  174. }
  175. /**
  176. *
  177. * @param dev
  178. * @param is_invalid
  179. * @return
  180. */
  181. int bbram_emul_set_invalid(const struct device *dev, bool is_invalid);
  182. int bbram_emul_set_standby_power_state(const struct device *dev, bool failure);
  183. int bbram_emul_set_power_state(const struct device *dev, bool failure);
  184. #ifdef __cplusplus
  185. }
  186. #endif
  187. #include <syscalls/bbram.h>
  188. #endif /* ZEPHYR_INCLUDE_DRIVERS_BBRAM_H */