watchdog_hal.c 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*
  2. * Copyright (c) 2019 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief watchdog hal interface
  9. */
  10. #include <kernel.h>
  11. #include <os_common_api.h>
  12. #include <drivers/watchdog.h>
  13. #include <watchdog_hal.h>
  14. const struct device *system_wdg_dev;
  15. #ifndef CONFIG_WDT_MODE_RESET
  16. void watchdog_overflow(const struct device *wdt_dev, int channel_id)
  17. {
  18. printk("watchdog overflow");
  19. k_panic();
  20. }
  21. #endif
  22. void watchdog_start(int timeout_ms)
  23. {
  24. int err;
  25. struct wdt_timeout_cfg m_cfg_wdt0 = { 0 };
  26. system_wdg_dev = device_get_binding(CONFIG_WDT_ACTS_NAME);
  27. if (!system_wdg_dev) {
  28. SYS_LOG_ERR("cannot found watchdog device");
  29. return;
  30. }
  31. #ifdef CONFIG_WDT_MODE_RESET
  32. m_cfg_wdt0.callback = NULL;
  33. #else
  34. m_cfg_wdt0.callback = watchdog_overflow;
  35. #endif
  36. m_cfg_wdt0.flags = WDT_FLAG_RESET_SOC;
  37. m_cfg_wdt0.window.max = timeout_ms;
  38. wdt_install_timeout(system_wdg_dev, &m_cfg_wdt0);
  39. err = wdt_setup(system_wdg_dev, 0);
  40. if (err < 0) {
  41. SYS_LOG_ERR("Watchdog setup error\n");
  42. return;
  43. }
  44. SYS_LOG_INF("enable watchdog (%d ms)", m_cfg_wdt0.window.max);
  45. }
  46. void watchdog_clear(void)
  47. {
  48. if (system_wdg_dev) {
  49. wdt_feed(system_wdg_dev, 0);
  50. }
  51. }
  52. void watchdog_stop(void)
  53. {
  54. SYS_LOG_INF("disable watchdog");
  55. if (system_wdg_dev) {
  56. wdt_disable(system_wdg_dev);
  57. system_wdg_dev = NULL;
  58. }
  59. }