From: Andrey Smirnov <andrew.smirnov@gmail.com>
To: Sascha Hauer <s.hauer@pengutronix.de>
Cc: Barebox List <barebox@lists.infradead.org>
Subject: Re: [PATCH v2 3/4] common: oftree: Pass bootsource and bootsource instance to kernel
Date: Thu, 17 May 2018 13:20:53 -0700 [thread overview]
Message-ID: <CAHQ1cqEBxVeDwFZZWnSig2Tm7PWxQ29DcHpBqjc04VNpMipjpw@mail.gmail.com> (raw)
In-Reply-To: <20180517095212.dnb5kvhcb4wm25qi@pengutronix.de>
On Thu, May 17, 2018 at 2:52 AM, Sascha Hauer <s.hauer@pengutronix.de> wrote:
> On Wed, May 16, 2018 at 01:18:26PM -0700, Andrey Smirnov wrote:
>> Pass barebox-detected bootsource to Linux to make it availible to
>> Linux userspace. That information is passed as full path to the node
>> corresponding to the bootsource and is placed under /chosen/bootsource
>> and it can be read under Linux in
>>
>> /sys/firmware/devicetree/base/chosen/bootsource
>>
>> Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
>> ---
>> common/oftree.c | 46 +++++++++++++++++++++++++++++++++++++++++++++-
>> 1 file changed, 45 insertions(+), 1 deletion(-)
>>
>> diff --git a/common/oftree.c b/common/oftree.c
>> index 8a2ede4c6..5ab6bf089 100644
>> --- a/common/oftree.c
>> +++ b/common/oftree.c
>> @@ -11,6 +11,7 @@
>> #include <getopt.h>
>> #include <init.h>
>> #include <boot.h>
>> +#include <bootsource.h>
>> #include <i2c/i2c.h>
>>
>> #define MAX_LEVEL 32 /* how deeply nested we will go */
>> @@ -114,6 +115,47 @@ void of_print_cmdline(struct device_node *root)
>> printf("commandline: %s\n", cmdline);
>> }
>>
>> +static int of_fixup_bootargs_bootsource(struct device_node *root,
>> + struct device_node *chosen)
>> +{
>> + char *alias_name = bootsource_get_alias_name();
>> + struct device_node *bootsource;
>> + struct device_node *aliasnp;
>> + struct property *p;
>> + int ret;
>> +
>> + if (!alias_name)
>> + return 0;
>> +
>> + bootsource = of_find_node_by_alias(root, alias_name);
>> + /*
>> + * If kerenel DTB doesn't have the appropriate alias set up,
>> + * give up and exit early. No error is reported.
>> + */
>
> s/kerenel/kernel/
>
Will fix in v3.
>> + if (!bootsource) {
>> + ret = 0;
>> + goto exit;
>> + }
>> +
>> + aliasnp = of_find_node_by_path_from(root, "/aliases");
>> + if (!aliasnp) {
>> + ret = -ENOENT;
>> + goto exit;
>> + }
>> +
>> + p = of_find_property(aliasnp, alias_name, NULL);
>> + if (!p) {
>> + ret = -ENOENT;
>> + goto exit;
>> + }
>
> This seems unnecessary. Pass bootsource->full_name to of_set_property
> below.
>
Haven't thought about doing that. Will do in v3.
Thanks,
Andrey Smirnov
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2018-05-17 20:21 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 [this message]
2018-05-16 20:18 ` [PATCH v2 4/4] common: oftree: Pass reset source and reset source " Andrey Smirnov
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=CAHQ1cqEBxVeDwFZZWnSig2Tm7PWxQ29DcHpBqjc04VNpMipjpw@mail.gmail.com \
--to=andrew.smirnov@gmail.com \
--cc=barebox@lists.infradead.org \
--cc=s.hauer@pengutronix.de \
/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