watchdog.h 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. /*
  2. * Copyright (c) 2017 Nordic Semiconductor ASA
  3. * Copyright (c) 2015 Intel Corporation
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. /**
  8. * @file
  9. * @brief Public API for watchdog drivers.
  10. */
  11. #ifndef ZEPHYR_INCLUDE_DRIVERS_WATCHDOG_H_
  12. #define ZEPHYR_INCLUDE_DRIVERS_WATCHDOG_H_
  13. /**
  14. * @brief Watchdog Interface
  15. * @defgroup watchdog_interface Watchdog Interface
  16. * @ingroup io_interfaces
  17. * @{
  18. */
  19. #include <zephyr/types.h>
  20. #include <sys/util.h>
  21. #include <device.h>
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25. /**
  26. * @brief Pause watchdog timer when CPU is in sleep state.
  27. */
  28. #define WDT_OPT_PAUSE_IN_SLEEP BIT(0)
  29. /**
  30. * @brief Pause watchdog timer when CPU is halted by the debugger.
  31. */
  32. #define WDT_OPT_PAUSE_HALTED_BY_DBG BIT(1)
  33. /**
  34. * @brief Watchdog reset flag bit field mask shift.
  35. */
  36. #define WDT_FLAG_RESET_SHIFT (0)
  37. /**
  38. * @brief Watchdog reset flag bit field mask.
  39. */
  40. #define WDT_FLAG_RESET_MASK (0x3 << WDT_FLAG_RESET_SHIFT)
  41. /**
  42. * @name Watchdog Reset Behavior.
  43. * Reset behavior after timeout.
  44. * @{
  45. */
  46. /** No reset */
  47. #define WDT_FLAG_RESET_NONE (0 << WDT_FLAG_RESET_SHIFT)
  48. /** CPU core reset */
  49. #define WDT_FLAG_RESET_CPU_CORE (1 << WDT_FLAG_RESET_SHIFT)
  50. /** Global SoC reset */
  51. #define WDT_FLAG_RESET_SOC (2 << WDT_FLAG_RESET_SHIFT)
  52. /**
  53. * @}
  54. */
  55. /**
  56. * @brief Watchdog timeout window.
  57. *
  58. * Each installed timeout needs feeding within the specified time window,
  59. * otherwise the watchdog will trigger. If the watchdog instance does not
  60. * support window timeouts then min value must be equal to 0.
  61. *
  62. * @param min Lower limit of watchdog feed timeout in milliseconds.
  63. * @param max Upper limit of watchdog feed timeout in milliseconds.
  64. *
  65. * @note If specified values can not be precisely set they are always
  66. * rounded up.
  67. */
  68. struct wdt_window {
  69. uint32_t min;
  70. uint32_t max;
  71. };
  72. /** Watchdog callback. */
  73. typedef void (*wdt_callback_t)(const struct device *dev, int channel_id);
  74. /**
  75. * @brief Watchdog timeout configuration struct.
  76. *
  77. * @param window Timing parameters of watchdog timeout.
  78. * @param callback Timeout callback. Passing NULL means that no callback
  79. * will be run.
  80. * @param next Pointer to the next timeout configuration. This pointer is used
  81. * for watchdogs with staged timeouts functionality. Value must be
  82. * NULL for single stage timeout.
  83. * @param flags Bit field with following parts:
  84. *
  85. * reset [ 0 : 1 ] - perform specified reset after timeout/callback
  86. */
  87. struct wdt_timeout_cfg {
  88. struct wdt_window window;
  89. wdt_callback_t callback;
  90. #ifdef CONFIG_WDT_MULTISTAGE
  91. struct wdt_timeout_cfg *next;
  92. #endif
  93. uint8_t flags;
  94. };
  95. /**
  96. * @typedef wdt_api_setup
  97. * @brief Callback API for setting up watchdog instance.
  98. * See wdt_setup() for argument descriptions
  99. */
  100. typedef int (*wdt_api_setup)(const struct device *dev, uint8_t options);
  101. /**
  102. * @typedef wdt_api_disable
  103. * @brief Callback API for disabling watchdog instance.
  104. * See wdt_disable() for argument descriptions
  105. */
  106. typedef int (*wdt_api_disable)(const struct device *dev);
  107. /**
  108. * @typedef wdt_api_install_timeout
  109. * @brief Callback API for installing new timeout.
  110. * See wdt_install_timeout() for argument descriptions
  111. */
  112. typedef int (*wdt_api_install_timeout)(const struct device *dev,
  113. const struct wdt_timeout_cfg *cfg);
  114. /**
  115. * @typedef wdt_api_feed
  116. * @brief Callback API for feeding specified watchdog timeout.
  117. * See (wdt_feed) for argument descriptions
  118. */
  119. typedef int (*wdt_api_feed)(const struct device *dev, int channel_id);
  120. /** @cond INTERNAL_HIDDEN */
  121. __subsystem struct wdt_driver_api {
  122. wdt_api_setup setup;
  123. wdt_api_disable disable;
  124. wdt_api_install_timeout install_timeout;
  125. wdt_api_feed feed;
  126. };
  127. /**
  128. * @endcond
  129. */
  130. /**
  131. * @brief Set up watchdog instance.
  132. *
  133. * This function is used for configuring global watchdog settings that
  134. * affect all timeouts. It should be called after installing timeouts.
  135. * After successful return, all installed timeouts are valid and must be
  136. * serviced periodically by calling wdt_feed().
  137. *
  138. * @param dev Pointer to the device structure for the driver instance.
  139. * @param options Configuration options as defined by the WDT_OPT_* constants
  140. *
  141. * @retval 0 If successful.
  142. * @retval -ENOTSUP If any of the set options is not supported.
  143. * @retval -EBUSY If watchdog instance has been already setup.
  144. */
  145. __syscall int wdt_setup(const struct device *dev, uint8_t options);
  146. static inline int z_impl_wdt_setup(const struct device *dev, uint8_t options)
  147. {
  148. const struct wdt_driver_api *api =
  149. (const struct wdt_driver_api *)dev->api;
  150. return api->setup(dev, options);
  151. }
  152. /**
  153. * @brief Disable watchdog instance.
  154. *
  155. * This function disables the watchdog instance and automatically uninstalls all
  156. * timeouts. To set up a new watchdog, install timeouts and call wdt_setup()
  157. * again. Not all watchdogs can be restarted after they are disabled.
  158. *
  159. * @param dev Pointer to the device structure for the driver instance.
  160. *
  161. * @retval 0 If successful.
  162. * @retval -EFAULT If watchdog instance is not enabled.
  163. * @retval -EPERM If watchdog can not be disabled directly by application code.
  164. */
  165. __syscall int wdt_disable(const struct device *dev);
  166. static inline int z_impl_wdt_disable(const struct device *dev)
  167. {
  168. const struct wdt_driver_api *api =
  169. (const struct wdt_driver_api *)dev->api;
  170. return api->disable(dev);
  171. }
  172. /**
  173. * @brief Install new timeout.
  174. *
  175. * This function must be used before wdt_setup(). Changes applied here
  176. * have no effects until wdt_setup() is called.
  177. *
  178. * @param dev Pointer to the device structure for the driver instance.
  179. * @param cfg Pointer to timeout configuration structure.
  180. *
  181. * @retval channel_id If successful, a non-negative value indicating the index
  182. * of the channel to which the timeout was assigned. This
  183. * value is supposed to be used as the parameter in calls to
  184. * wdt_feed().
  185. * @retval -EBUSY If timeout can not be installed while watchdog has already
  186. * been setup.
  187. * @retval -ENOMEM If no more timeouts can be installed.
  188. * @retval -ENOTSUP If any of the set flags is not supported.
  189. * @retval -EINVAL If any of the window timeout value is out of possible range.
  190. * This value is also returned if watchdog supports only one
  191. * timeout value for all timeouts and the supplied timeout
  192. * window differs from windows for alarms installed so far.
  193. */
  194. static inline int wdt_install_timeout(const struct device *dev,
  195. const struct wdt_timeout_cfg *cfg)
  196. {
  197. const struct wdt_driver_api *api =
  198. (const struct wdt_driver_api *) dev->api;
  199. return api->install_timeout(dev, cfg);
  200. }
  201. /**
  202. * @brief Feed specified watchdog timeout.
  203. *
  204. * @param dev Pointer to the device structure for the driver instance.
  205. * @param channel_id Index of the fed channel.
  206. *
  207. * @retval 0 If successful.
  208. * @retval -EAGAIN If completing the feed operation would stall the
  209. * caller, for example due to an in-progress watchdog
  210. * operation such as a previous @c wdt_feed().
  211. * @retval -EINVAL If there is no installed timeout for supplied channel.
  212. */
  213. __syscall int wdt_feed(const struct device *dev, int channel_id);
  214. static inline int z_impl_wdt_feed(const struct device *dev, int channel_id)
  215. {
  216. const struct wdt_driver_api *api =
  217. (const struct wdt_driver_api *)dev->api;
  218. return api->feed(dev, channel_id);
  219. }
  220. #ifdef __cplusplus
  221. }
  222. #endif
  223. /**
  224. * @}
  225. */
  226. #include <syscalls/watchdog.h>
  227. #endif /* _ZEPHYR_WATCHDOG_H__ */