Add watchdog driver.
[bertos.git] / bertos / cpu / arm / drv / wdt_arm.h
index 2e631bd6472e837e73d7eab488dce61b436fb52e..64f21eef91f98e8d168f6e3a848c2cbd8ec16e5a 100644 (file)
 #define DRV_WDT_ARM_H
 
 #include <cfg/compiler.h> // INLINE
+#include <cfg/macros.h> // BV
 
-#warning TODO: This module is not implemented for at91 CPUs
+#if CPU_ARM_AT91
+       #include <io/arm.h>
 
-INLINE void wdt_start(uint32_t _timeout) { (void) _timeout; /* implement me */ }
-INLINE void wdt_stop(void) { /*implement me */ }
-INLINE void wdt_reset(void) { /* implement me */ }
+       INLINE void wdt_start(uint32_t _timeout) { (void) _timeout; /* implement me */ }
+       INLINE void wdt_stop(void) { WDT_MR = BV(WDT_WDDIS); }
+       INLINE void wdt_reset(void)
+       {
+               #if (ARCH & ARCH_BOOT)
+                       WDT_CR = WDT_KEY | BV(WDT_WDRSTT);
+               #endif
+       }
+#else
+       #error "Missing watchdog support for yout CPU"
+#endif
 
 #endif //DRV_WDT_ARM_H