wdt_avr.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. /*
  2. * Copyright (C) 2006 by egnite Software GmbH. All rights reserved.
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions
  6. * are met:
  7. *
  8. * 1. Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. * 2. Redistributions in binary form must reproduce the above copyright
  11. * notice, this list of conditions and the following disclaimer in the
  12. * documentation and/or other materials provided with the distribution.
  13. * 3. Neither the name of the copyright holders nor the names of
  14. * contributors may be used to endorse or promote products derived
  15. * from this software without specific prior written permission.
  16. *
  17. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  18. * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  19. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  20. * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  21. * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  22. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  23. * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
  24. * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
  25. * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  26. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
  27. * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  28. * SUCH DAMAGE.
  29. *
  30. * For additional information see http://www.ethernut.de/
  31. *
  32. */
  33. /*!
  34. * \file arch/avr/dev/wdt_avr.c
  35. * \brief AVR watchdog support.
  36. *
  37. * \verbatim
  38. * $Id: wdt_avr.c 4706 2012-10-06 17:42:01Z haraldkipp $
  39. * \endverbatim
  40. */
  41. #if defined(__GNUC__)
  42. #include <avr/wdt.h>
  43. #endif
  44. #include <sys/timer.h>
  45. #include <dev/watchdog.h>
  46. /*!
  47. * \addtogroup xgNutArchAvrDevWatchDog
  48. */
  49. /*@{*/
  50. /*!
  51. * \brief Watchdog oscillator frequency.
  52. */
  53. #ifndef NUT_WDT_FREQ
  54. #define NUT_WDT_FREQ 1165000
  55. #endif
  56. static ureg_t nested;
  57. static uint8_t wdt_div;
  58. /*!
  59. * \brief Start the AVR hardware watch dog timer.
  60. *
  61. * For portability, applications should use the platform independent
  62. * \ref xgWatchDog "Watchdog Driver API".
  63. *
  64. * \param ms Desired watchdog timeout in milliseconds.
  65. *
  66. * \return The actual watchdog timeout.
  67. */
  68. uint32_t AvrWatchDogStart(uint32_t ms)
  69. {
  70. uint32_t ticks;
  71. wdt_reset();
  72. ticks = ((NUT_WDT_FREQ / 1000UL) * ms) >> 14;
  73. for (wdt_div = 0; wdt_div < 7 && ticks; wdt_div++) {
  74. ticks >>= 1;
  75. }
  76. wdt_enable(wdt_div);
  77. nested = 1;
  78. return (16384UL << wdt_div) / (NUT_WDT_FREQ / 1000UL);
  79. }
  80. /*!
  81. * \brief Re-start the AVR hardware watch dog timer.
  82. *
  83. * For portability, applications should use the platform independent
  84. * \ref xgWatchDog "Watchdog Driver API".
  85. */
  86. void AvrWatchDogRestart(void)
  87. {
  88. wdt_reset();
  89. }
  90. /*!
  91. * \brief Disable the AVR hardware watch dog timer.
  92. *
  93. * For portability, applications should use the platform independent
  94. * \ref xgWatchDog "Watchdog Driver API".
  95. */
  96. void AvrWatchDogDisable(void)
  97. {
  98. if (nested) {
  99. nested++;
  100. }
  101. wdt_disable();
  102. }
  103. /*!
  104. * \brief Enable the AVR hardware watch dog timer.
  105. *
  106. * For portability, applications should use the platform independent
  107. * \ref xgWatchDog "Watchdog Driver API".
  108. */
  109. void AvrWatchDogEnable(void)
  110. {
  111. if (nested > 1 && --nested == 1) {
  112. wdt_enable(wdt_div);
  113. }
  114. }
  115. /*@}*/