summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/lpc176x/watchdog/watchdog.c
diff options
context:
space:
mode:
authorMartin Boretto <martin.boretto@tallertechnologies.com>2014-06-09 11:27:18 -0300
committerSebastian Huber <sebastian.huber@embedded-brains.de>2014-06-10 08:53:36 +0200
commit19260fbe85a9a2101a2684961b7882bd91224e11 (patch)
treed2bf16c52ed9556d43195a59a8a6f06ef73c8df9 /c/src/lib/libbsp/arm/lpc176x/watchdog/watchdog.c
parentRevert "bsps/powerpc: Fix potential relocation truncation" (diff)
downloadrtems-19260fbe85a9a2101a2684961b7882bd91224e11.tar.bz2
bsp/lpc176x: New BSP
Diffstat (limited to '')
-rw-r--r--c/src/lib/libbsp/arm/lpc176x/watchdog/watchdog.c102
1 files changed, 102 insertions, 0 deletions
diff --git a/c/src/lib/libbsp/arm/lpc176x/watchdog/watchdog.c b/c/src/lib/libbsp/arm/lpc176x/watchdog/watchdog.c
new file mode 100644
index 0000000000..0cb486baf3
--- /dev/null
+++ b/c/src/lib/libbsp/arm/lpc176x/watchdog/watchdog.c
@@ -0,0 +1,102 @@
+/**
+ * @file watchdog.c
+ *
+ * @ingroup lpc176x
+ *
+ * @brief Watchdog controller for the mbed lpc176x family boards.
+ */
+
+/*
+ * Copyright (c) 2014 Taller Technologies.
+ *
+ * @author Boretto Martin (martin.boretto@tallertechnologies.com)
+ * @author Diaz Marcos (marcos.diaz@tallertechnologies.com)
+ * @author Lenarduzzi Federico (federico.lenarduzzi@tallertechnologies.com)
+ * @author Daniel Chicco (daniel.chicco@tallertechnologies.com)
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.com/license/LICENSE.
+ */
+
+#include <assert.h>
+#include <rtems/status-checks.h>
+#include <bsp.h>
+#include <bsp/irq.h>
+#include <bsp/watchdog.h>
+#include <bsp/io.h>
+
+inline bool lpc176x_been_reset_by_watchdog( void )
+{
+ return ( ( LPC176X_WDMOD & LPC176X_WWDT_MOD_WDTOF ) ==
+ LPC176X_WWDT_MOD_WDTOF );
+}
+
+inline void lpc176x_watchdog_reset( void )
+{
+ LPC176X_WDFEED = LPC176X_WDFEED_CON;
+ LPC176X_WDFEED = LPC176X_WDFEED_CFG;
+}
+
+/**
+ * @brief Enables the watchdog module, sets wd clock and wd timer.
+ *
+ * @param tcount Timer's out value.
+ * @return RTEMS_SUCCESSFUL if the configuration was done successfully.
+ */
+static inline rtems_status_code enable_module_and_set_clocksel(
+ const lpc176x_microseconds tcount )
+{
+ rtems_status_code status_code;
+
+ /* Sets clock. */
+ LPC176X_WDCLKSEL = LPC176X_WWDT_CLKSEL_WDSEL_PCLK;
+
+ /* Enables the watchdog module. */
+ status_code = lpc176x_module_enable( LPC176X_MODULE_WD,
+ LPC176X_MODULE_PCLK_DEFAULT );
+ RTEMS_CHECK_SC( status_code, "Enabling the watchdog module." );
+
+ /* Set the watchdog timer constant value. */
+ LPC176X_WDTC = ( LPC176X_CCLK / LPC176X_WD_PRESCALER_DIVISOR ) * tcount;
+
+ return status_code;
+}
+
+rtems_status_code lpc176x_watchdog_config( const lpc176x_microseconds tcount )
+{
+ rtems_status_code status_code = enable_module_and_set_clocksel( tcount );
+
+ /* Setup the Watchdog timer operating mode in WDMOD register. */
+ LPC176X_WDMOD = LPC176X_WWDT_MOD_WDEN | LPC176X_WWDT_MOD_WDRESET;
+
+ /* Enable the Watchdog by writing 0xAA followed by 0x55 to the
+ WDFEED register. */
+ lpc176x_watchdog_reset();
+
+ return status_code;
+}
+
+rtems_status_code lpc176x_watchdog_config_with_interrupt(
+ const lpc176x_wd_isr_funct interrupt,
+ const lpc176x_microseconds tcount
+)
+{
+ rtems_status_code status_code = enable_module_and_set_clocksel( tcount );
+
+ /* Setup the Watchdog timer operating mode in WDMOD register. */
+ LPC176X_WDMOD = LPC176X_WWDT_MOD_WDEN | LPC176X_WWDT_MOD_WDINT;
+
+ status_code = rtems_interrupt_handler_install(
+ LPC176X_WD_INTERRUPT_VECTOR_NUMBER,
+ "watchdog_interrupt",
+ RTEMS_INTERRUPT_UNIQUE,
+ interrupt,
+ NULL );
+
+ /* Enable the Watchdog by writing 0xAA followed by 0x55 to the
+ WDFEED register. */
+ lpc176x_watchdog_reset();
+
+ return status_code;
+} \ No newline at end of file