mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Sascha Hauer <s.hauer@pengutronix.de>
To: Oleksij Rempel <o.rempel@pengutronix.de>
Cc: barebox@lists.infradead.org,
	Steffen Trumtrar <s.trumtrar@pengutronix.de>
Subject: Re: [PATCH v2] bootm: fit: support multiple configuration nodes
Date: Wed, 29 Mar 2017 08:54:23 +0200	[thread overview]
Message-ID: <20170329065423.fhehywbzpv7dk773@pengutronix.de> (raw)
In-Reply-To: <20170327060647.14269-1-o.rempel@pengutronix.de>

On Mon, Mar 27, 2017 at 08:06:47AM +0200, Oleksij Rempel wrote:
> From: Steffen Trumtrar <s.trumtrar@pengutronix.de>
> 
> Signed-off-by: Steffen Trumtrar <s.trumtrar@pengutronix.de>
> Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de>
> ---
>  common/image-fit.c | 39 +++++++++++++++++++++++++++++++++++++--
>  1 file changed, 37 insertions(+), 2 deletions(-)
> 
> diff --git a/common/image-fit.c b/common/image-fit.c
> index 0536c49b1..cd2d7519a 100644
> --- a/common/image-fit.c
> +++ b/common/image-fit.c
> @@ -491,6 +491,37 @@ static int fit_config_verify_signature(struct fit_handle *handle, struct device_
>  	return ret;
>  }
>  
> +static int fit_find_compatible_unit(struct device_node *conf_node,
> +				    const char **unit)
> +{
> +	struct device_node *child = NULL;
> +	struct device_node *barebox_root;
> +	const char *machine;
> +	int ret;
> +
> +	barebox_root = of_get_root_node();
> +	if (!barebox_root)
> +		return -ENOSYS;

Fall back to default here for non of machines?

Sascha

> +
> +	ret = of_property_read_string(barebox_root, "compatible", &machine);
> +	if (ret)
> +		return -ENOENT;
> +
> +	for_each_child_of_node(conf_node, child) {
> +		if (of_device_is_compatible(child, machine)) {
> +			*unit = child->name;
> +			pr_info("matching unit '%s' found\n", *unit);
> +			return 0;
> +		}
> +	}
> +
> +	pr_info("No match found. Trying default.\n");
> +	if (of_property_read_string(conf_node, "default", unit) == 0)
> +		return 0;
> +
> +	return -ENOENT;
> +}
> +
>  static int fit_open_configuration(struct fit_handle *handle, const char *name)
>  {
>  	struct device_node *conf_node = NULL;
> @@ -503,8 +534,12 @@ static int fit_open_configuration(struct fit_handle *handle, const char *name)
>  
>  	if (name) {
>  		unit = name;
> -	} else if (of_property_read_string(conf_node, "default", &unit)) {
> -		unit = "conf@1";
> +	} else {
> +		ret = fit_find_compatible_unit(conf_node, &unit);
> +		if (ret) {
> +			pr_info("Couldn't get a valid configuration. Aborting.\n");
> +			return ret;
> +		}
>  	}
>  
>  	conf_node = of_get_child_by_name(conf_node, unit);
> -- 
> 2.11.0
> 
> 
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
> 

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

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

      reply	other threads:[~2017-03-29  6:54 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-03-27  6:06 Oleksij Rempel
2017-03-29  6:54 ` Sascha Hauer [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=20170329065423.fhehywbzpv7dk773@pengutronix.de \
    --to=s.hauer@pengutronix.de \
    --cc=barebox@lists.infradead.org \
    --cc=o.rempel@pengutronix.de \
    --cc=s.trumtrar@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