task_wdt_manager.c 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /*
  2. * Copyright (c) 2019 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file task wdt manager interface
  8. */
  9. #include <task_wdt_manager.h>
  10. #include <sys/reboot.h>
  11. #include <msg_manager.h>
  12. extern void show_stack(void);
  13. static void task_wdt_callback(int channel_id, void *user_data)
  14. {
  15. os_printk("Task watchdog channel %d callback, thread: %s\n",
  16. channel_id, k_thread_name_get((k_tid_t)user_data));
  17. /*
  18. * If the issue could be resolved, call task_wdt_feed(channel_id) here
  19. * to continue operation.
  20. *
  21. * Otherwise we can perform some cleanup and reset the device.
  22. */
  23. //show_stack();
  24. //os_printk("Resetting device...\n");
  25. //sys_reboot(SYS_REBOOT_COLD);
  26. k_panic();
  27. }
  28. int task_wdt_start(uint32_t reload_period)
  29. {
  30. return task_wdt_add(reload_period, task_wdt_callback, os_current_get());
  31. }
  32. int task_wdt_stop(void)
  33. {
  34. int channel_id = msg_manager_get_current_channel_id();
  35. if (channel_id >= 0) {
  36. return task_wdt_delete(channel_id);
  37. }
  38. return 0;
  39. }
  40. int task_wdt_user_feed(void)
  41. {
  42. int channel_id = msg_manager_get_current_channel_id();
  43. if (channel_id >= 0) {
  44. return task_wdt_feed(channel_id);
  45. }
  46. return -EINVAL;
  47. }
  48. int task_wdt_manager_init(void)
  49. {
  50. const struct device *hw_wdt_dev = NULL;
  51. #ifdef CONFIG_WATCHDOG
  52. hw_wdt_dev = device_get_binding(CONFIG_WDT_ACTS_NAME);
  53. if (!hw_wdt_dev) {
  54. SYS_LOG_ERR("cannot found watchdog device");
  55. return -ENODEV;
  56. }
  57. if (!device_is_ready(hw_wdt_dev)) {
  58. os_printk("Hardware watchdog %s is not ready; ignoring it.\n",
  59. hw_wdt_dev->name);
  60. hw_wdt_dev = NULL;
  61. }
  62. #endif
  63. task_wdt_init(hw_wdt_dev);
  64. return 0;
  65. }