From: Andrey Smirnov <andrew.smirnov@gmail.com>
To: barebox@lists.infradead.org
Cc: Andrey Smirnov <andrew.smirnov@gmail.com>
Subject: [PATCH v2 4/4] common: oftree: Pass reset source and reset source instance to kernel
Date: Wed, 16 May 2018 13:18:27 -0700 [thread overview]
Message-ID: <20180516201827.6430-5-andrew.smirnov@gmail.com> (raw)
In-Reply-To: <20180516201827.6430-1-andrew.smirnov@gmail.com>
Detecting reset reason is, in some cases, a destructive operation and
in such cases it is impossible to obtain that information in the
kernel without some help from barebox.
Pass reset source and reset source instance to kernel to Linux to make
it availible to Linux userspace. This info is placeed under
/chosen/bootsource and it can be read under Linux in
/sys/firmware/devicetree/base/chosen/reset-source.
and
/sys/firmware/devicetree/base/chosen/reset-source-instance.
Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
---
common/oftree.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/common/oftree.c b/common/oftree.c
index 5ab6bf089..5b592fb07 100644
--- a/common/oftree.c
+++ b/common/oftree.c
@@ -13,6 +13,7 @@
#include <boot.h>
#include <bootsource.h>
#include <i2c/i2c.h>
+#include <reset_source.h>
#define MAX_LEVEL 32 /* how deeply nested we will go */
@@ -176,6 +177,10 @@ static int of_fixup_bootargs(struct device_node *root, void *unused)
if (err)
return err;
+ of_property_write_string(node, "reset-source", reset_source_name());
+ of_property_write_u32(node, "reset-source-instance",
+ reset_source_get_instance());
+
return of_fixup_bootargs_bootsource(root, node);
}
--
2.17.0
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
prev parent reply other threads:[~2018-05-16 20:19 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-05-16 20:18 [PATCH v2 0/4] Pass reset and boot sources via /chosen node Andrey Smirnov
2018-05-16 20:18 ` [PATCH v2 1/4] of: Make of_property_get_value() public Andrey Smirnov
2018-05-16 20:18 ` [PATCH v2 2/4] bootsource: Add bootsource alias name API Andrey Smirnov
2018-05-17 9:43 ` Sascha Hauer
2018-05-17 19:35 ` Andrey Smirnov
2018-05-16 20:18 ` [PATCH v2 3/4] common: oftree: Pass bootsource and bootsource instance to kernel Andrey Smirnov
2018-05-17 9:52 ` Sascha Hauer
2018-05-17 20:20 ` Andrey Smirnov
2018-05-16 20:18 ` Andrey Smirnov [this message]
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=20180516201827.6430-5-andrew.smirnov@gmail.com \
--to=andrew.smirnov@gmail.com \
--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