summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/beagle/startup/bspreset.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/arm/beagle/startup/bspreset.c')
-rw-r--r--c/src/lib/libbsp/arm/beagle/startup/bspreset.c48
1 files changed, 48 insertions, 0 deletions
diff --git a/c/src/lib/libbsp/arm/beagle/startup/bspreset.c b/c/src/lib/libbsp/arm/beagle/startup/bspreset.c
new file mode 100644
index 0000000000..d937a18abd
--- /dev/null
+++ b/c/src/lib/libbsp/arm/beagle/startup/bspreset.c
@@ -0,0 +1,48 @@
+/**
+ * @file
+ *
+ * @ingroup beagle
+ *
+ * @brief Reset code.
+ */
+
+/*
+ * Copyright (c) 2012 Claas Ziemke. All rights reserved.
+ *
+ * Claas Ziemke
+ * Kernerstrasse 11
+ * 70182 Stuttgart
+ * Germany
+ * <claas.ziemke@gmx.net>
+ *
+ * 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 <stdbool.h>
+
+#include <bspopts.h>
+#include <bsp/bootcard.h>
+#include <bsp/beagle.h>
+
+static void watchdog_reset(void)
+{
+ #ifdef BEAGLE_ENABLE_WATCHDOG_RESET
+ //BEAGLE_TIMCLK_CTRL |= TIMCLK_CTRL_WDT;
+ //beagle.wdt.mctrl |= WDTTIM_MCTRL_M_RES1 | WDTTIM_MCTRL_M_RES2;
+ //beagle.wdt.emr = WDTTIM_EMR_MATCH_CTRL_SET(beagle.wdt.emr, 0x2);
+ //beagle.wdt.ctrl |= WDTTIM_CTRL_COUNT_ENAB;
+ //beagle.wdt.match0 = 1;
+ //beagle.wdt.counter = 0;
+ #endif
+}
+
+void bsp_reset( void)
+{
+ watchdog_reset();
+
+ while (true) {
+ /* Do nothing */
+ }
+}