mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Juergen Beisert <jbe@pengutronix.de>
To: barebox@lists.infradead.org
Subject: [PATCH 1/2] Enable a way to provide the reason for "being here"
Date: Wed, 20 Jun 2012 16:32:10 +0200	[thread overview]
Message-ID: <1340202731-30831-2-git-send-email-jbe@pengutronix.de> (raw)
In-Reply-To: <1340202731-30831-1-git-send-email-jbe@pengutronix.de>

Many architectures support a way to detect why the bootloader is running.
This patch adds a global variable to be able to use the cause in some kind of
shell code to do special things on demand. For example to do an emergency boot,
when the last boot fails and the watchdog reactivate the hanging system.

Signed-off-by: Juergen Beisert <jbe@pengutronix.de>
---
 common/Makefile        |    2 +-
 common/reset_source.c  |   62 ++++++++++++++++++++++++++++++++++++++++++++++++
 include/reset_source.h |   26 ++++++++++++++++++++
 3 files changed, 89 insertions(+), 1 deletion(-)
 create mode 100644 common/reset_source.c
 create mode 100644 include/reset_source.h

diff --git a/common/Makefile b/common/Makefile
index a1926d3..61eeb6b 100644
--- a/common/Makefile
+++ b/common/Makefile
@@ -29,7 +29,7 @@ obj-$(CONFIG_CMD_BOOTM) += uimage.o
 obj-y += startup.o
 obj-y += misc.o
 obj-y += memsize.o
-obj-$(CONFIG_GLOBALVAR) += globalvar.o
+obj-$(CONFIG_GLOBALVAR) += globalvar.o reset_source.o
 obj-$(CONFIG_FILETYPE) += filetype.o
 obj-y += resource.o
 obj-$(CONFIG_MENU) += menu.o
diff --git a/common/reset_source.c b/common/reset_source.c
new file mode 100644
index 0000000..19015b2
--- /dev/null
+++ b/common/reset_source.c
@@ -0,0 +1,62 @@
+/*
+ * (C) Copyright 2012 Juergen Beisert - <kernel@pengutronix.de>
+ *
+ * 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.
+ */
+
+#include <common.h>
+#include <init.h>
+#include <environment.h>
+#include <globalvar.h>
+#include <reset_source.h>
+
+static const char name[] = "global.system.reset";
+static const char unknown_reset[] = "unknown";
+static const char power_on_reset[] = "POR";
+static const char manual_reset[] = "RST";
+static const char watchdog[] = "WDG";
+static const char wake[] = "WKE";
+static const char jtag[] = "JTAG";
+
+void set_reset_source(unsigned source)
+{
+	switch (source) {
+	case RESET_UKWN:
+		setenv(name, unknown_reset);
+		break;
+	case RESET_POR:
+		setenv(name, power_on_reset);
+		break;
+	case RESET_RST:
+		setenv(name, manual_reset);
+		break;
+	case RESET_WDG:
+		setenv(name, watchdog);
+		break;
+	case RESET_WKE:
+		setenv(name, wake);
+		break;
+	case RESET_JTAG:
+		setenv(name, jtag);
+		break;
+	}
+}
+EXPORT_SYMBOL(set_reset_source);
+
+/* ensure this runs after the 'global' device is already registerd */
+static int init_reset_source(void)
+{
+	globalvar_add_simple(&name[7]);
+	set_reset_source(RESET_UKWN);
+	return 0;
+}
+
+coredevice_initcall(init_reset_source);
diff --git a/include/reset_source.h b/include/reset_source.h
new file mode 100644
index 0000000..bc7e736
--- /dev/null
+++ b/include/reset_source.h
@@ -0,0 +1,26 @@
+/*
+ * 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
+
+/* possible parameters to set_reset_source() */
+#define RESET_UKWN 0
+#define RESET_POR 1	/* Power On Reset */
+#define RESET_RST 2	/* generic ReST */
+#define RESET_WDG 3	/* watchdog */
+#define RESET_WKE 4	/* wake */
+#define RESET_JTAG 5
+
+extern void set_reset_source(unsigned);
+
+#endif /* __INCLUDE_RESET_SOURCE_H */
-- 
1.7.10


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

  reply	other threads:[~2012-06-20 14:32 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-06-20 14:32 [PATCH] " Juergen Beisert
2012-06-20 14:32 ` Juergen Beisert [this message]
2012-06-20 14:53   ` [PATCH 1/2] " Marc Kleine-Budde
2012-06-20 15:08     ` Juergen Beisert
2012-06-20 18:50       ` Uwe Kleine-König
2012-06-20 19:09         ` Juergen Beisert
2012-06-20 19:27           ` Uwe Kleine-König
2012-06-20 19:59             ` Juergen Beisert
2012-06-20 20:09               ` Uwe Kleine-König
2012-06-20 20:57                 ` Juergen Beisert
2012-06-20 14:32 ` [PATCH 2/2] Add two architectures which can detect the reset source Juergen Beisert
2012-06-20 14:59   ` Marc Kleine-Budde
2012-06-20 15:05     ` Juergen Beisert
2012-06-20 15:09       ` Marc Kleine-Budde
2012-06-21  9:16 [PATCHv2] Enable a way to provide the reason for "being here" Juergen Beisert
2012-06-21  9:16 ` [PATCH 1/2] " Juergen Beisert

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1340202731-30831-2-git-send-email-jbe@pengutronix.de \
    --to=jbe@pengutronix.de \
    --cc=barebox@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox