task_wdt.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /*
  2. * Copyright (c) 2020 Libre Solar Technologies GmbH
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Task watchdog header file
  9. *
  10. * This header file declares prototypes for the task watchdog APIs.
  11. *
  12. * The task watchdog can be used to monitor correct operation of individual
  13. * threads. It can be used together with a hardware watchdog as a fallback.
  14. */
  15. #ifndef TASK_WDT_H_
  16. #define TASK_WDT_H_
  17. #include <zephyr/types.h>
  18. #include <kernel.h>
  19. #include <device.h>
  20. /**
  21. * @brief Task Watchdog APIs
  22. * @defgroup task_wdt_api Task Watchdog APIs
  23. * @ingroup subsystem
  24. * @{
  25. */
  26. #ifdef __cplusplus
  27. extern "C" {
  28. #endif
  29. /** Task watchdog callback. */
  30. typedef void (*task_wdt_callback_t)(int channel_id, void *user_data);
  31. /**
  32. * @brief Initialize task watchdog.
  33. *
  34. * This function sets up necessary kernel timers and the hardware watchdog (if
  35. * desired as fallback). It has to be called before task_wdt_add() and
  36. * task_wdt_feed().
  37. *
  38. * @param hw_wdt Pointer to the hardware watchdog device used as fallback.
  39. * Pass NULL if no hardware watchdog fallback is desired.
  40. *
  41. * @retval 0 If successful.
  42. * @retval -ENOTSUP If assigning a hardware watchdog is not supported.
  43. */
  44. int task_wdt_init(const struct device *hw_wdt);
  45. /**
  46. * @brief Install new timeout.
  47. *
  48. * Adds a new timeout to the list of task watchdog channels.
  49. *
  50. * @param reload_period Period in milliseconds used to reset the timeout
  51. * @param callback Function to be called when watchdog timer expired. Pass
  52. * NULL to use system reset handler.
  53. * @param user_data User data to associate with the watchdog channel.
  54. *
  55. * @retval channel_id If successful, a non-negative value indicating the index
  56. * of the channel to which the timeout was assigned. This
  57. * ID is supposed to be used as the parameter in calls to
  58. * task_wdt_feed().
  59. * @retval -EINVAL If the reload_period is invalid.
  60. * @retval -ENOMEM If no more timeouts can be installed.
  61. */
  62. int task_wdt_add(uint32_t reload_period, task_wdt_callback_t callback,
  63. void *user_data);
  64. /**
  65. * @brief Delete task watchdog channel.
  66. *
  67. * Deletes the specified channel from the list of task watchdog channels. The
  68. * channel is now available again for other tasks via task_wdt_add() function.
  69. *
  70. * @param channel_id Index of the channel as returned by task_wdt_add().
  71. *
  72. * @retval 0 If successful.
  73. * @retval -EINVAL If there is no installed timeout for supplied channel.
  74. */
  75. int task_wdt_delete(int channel_id);
  76. /**
  77. * @brief Feed specified watchdog channel.
  78. *
  79. * This function loops through all installed task watchdogs and updates the
  80. * internal kernel timer used as for the software watchdog with the next due
  81. * timeout.
  82. *
  83. * @param channel_id Index of the fed channel as returned by task_wdt_add().
  84. *
  85. * @retval 0 If successful.
  86. * @retval -EINVAL If there is no installed timeout for supplied channel.
  87. */
  88. int task_wdt_feed(int channel_id);
  89. #ifdef __cplusplus
  90. }
  91. #endif
  92. /**
  93. * @}
  94. */
  95. #endif /* TASK_WDT_H_ */