summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2012-08-01 17:49:27 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2012-08-01 17:49:27 +0200
commit2935411dea8ed1b76e0e42a8f1988ba127c3dc02 (patch)
tree3bec81536dd9e88257b061b00a765198dd787c2e /include
parent88107f6e121a3a1835aa261a39a0a284e06457ce (diff)
parent15d989e83d84ba13c100fbfe60980d22bf807fea (diff)
downloadbarebox-2935411dea8ed1b76e0e42a8f1988ba127c3dc02.tar.gz
barebox-2935411dea8ed1b76e0e42a8f1988ba127c3dc02.tar.xz
Merge branch 'for-next/reset-source'
Diffstat (limited to 'include')
-rw-r--r--include/reset_source.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/include/reset_source.h b/include/reset_source.h
new file mode 100644
index 0000000000..6734fbdee6
--- /dev/null
+++ b/include/reset_source.h
@@ -0,0 +1,27 @@
+/*
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of
+ * the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ */
+
+#ifndef __INCLUDE_RESET_SOURCE_H
+# define __INCLUDE_RESET_SOURCE_H
+
+enum reset_src_type {
+ RESET_UKWN, /* maybe the SoC cannot detect the reset source */
+ RESET_POR, /* Power On Reset (cold start) */
+ RESET_RST, /* generic ReSeT (warm start) */
+ RESET_WDG, /* watchdog */
+ RESET_WKE, /* wake-up (some SoCs can handle this) */
+ RESET_JTAG, /* JTAG reset */
+};
+
+void set_reset_source(enum reset_src_type);
+
+#endif /* __INCLUDE_RESET_SOURCE_H */