public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: David Gibson <david@gibson.dropbear.id.au>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v4 06/13] libfdt: Add max phandle retrieval function
Date: Wed, 6 Jul 2016 11:13:43 +1000	[thread overview]
Message-ID: <20160706011343.GP2251@voom.fritz.box> (raw)
In-Reply-To: <20160705082646.25044-7-maxime.ripard@free-electrons.com>

On Tue, Jul 05, 2016 at 10:26:39AM +0200, Maxime Ripard wrote:
> Add a function to retrieve the highest phandle in a given device tree.
> 
> Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
> Reviewed-by: Stefan Agner <stefan@agner.ch>
> Acked-by: Simon Glass <sjg@chromium.org>
> ---
>  include/libfdt.h    | 13 +++++++++++++
>  lib/libfdt/fdt_ro.c | 26 ++++++++++++++++++++++++++
>  2 files changed, 39 insertions(+)
> 
> diff --git a/include/libfdt.h b/include/libfdt.h
> index fbbe58ceb3f1..4643be5adf39 100644
> --- a/include/libfdt.h
> +++ b/include/libfdt.h
> @@ -283,6 +283,19 @@ int fdt_move(const void *fdt, void *buf, int bufsize);
>   */
>  const char *fdt_string(const void *fdt, int stroffset);
>  
> +/**
> + * fdt_get_max_phandle - retrieves the highest phandle in a tree
> + * @fdt: pointer to the device tree blob
> + *
> + * fdt_get_max_phandle retrieves the highest phandle in the given
> + * device tree
> + *
> + * returns:
> + *      the highest phandle on success
> + *      0, if an error occurred

This will also return 0 if there are no phandles in the entire tree,
which isn't exactly an error.

> + */
> +uint32_t fdt_get_max_phandle(const void *fdt);
> +
>  /**
>   * fdt_num_mem_rsv - retrieve the number of memory reserve map entries
>   * @fdt: pointer to the device tree blob
> diff --git a/lib/libfdt/fdt_ro.c b/lib/libfdt/fdt_ro.c
> index 12214c2dc2b5..503150ef1dc5 100644
> --- a/lib/libfdt/fdt_ro.c
> +++ b/lib/libfdt/fdt_ro.c
> @@ -47,6 +47,32 @@ static int _fdt_string_eq(const void *fdt, int stroffset,
>  	return (strnlen(p, len + 1) == len) && (memcmp(p, s, len) == 0);
>  }
>  
> +uint32_t fdt_get_max_phandle(const void *fdt)
> +{
> +	uint32_t max_phandle = 0;
> +	int offset;
> +
> +	for (offset = fdt_next_node(fdt, -1, NULL);;
> +	     offset = fdt_next_node(fdt, offset, NULL)) {
> +		uint32_t phandle;
> +
> +		if (offset == -FDT_ERR_NOTFOUND)
> +			return max_phandle;
> +
> +		if (offset < 0)
> +			return 0;
> +
> +		phandle = fdt_get_phandle(fdt, offset);
> +		if (phandle == (uint32_t)-1)
> +			return 0;

It might be worth pointing out that *any* -1 phandle in the tree
counts as an error.  Since -1 phandles are sometimes used as a
placeholder, ignoring them might be a better option.

> +		if (phandle > max_phandle)
> +			max_phandle = phandle;
> +	}
> +
> +	return 0;
> +}
> +
>  int fdt_get_mem_rsv(const void *fdt, int n, uint64_t *address, uint64_t *size)
>  {
>  	FDT_CHECK_HEADER(fdt);

-- 
David Gibson			| I'll have my music baroque, and my code
david AT gibson.dropbear.id.au	| minimalist, thank you.  NOT _the_ _other_
				| _way_ _around_!
http://www.ozlabs.org/~dgibson
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20160706/6045f04f/attachment.sig>

  reply	other threads:[~2016-07-06  1:13 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-07-05  8:26 [U-Boot] [PATCH v4 00/13] cmd: fdt: Add device tree overlays support Maxime Ripard
2016-07-05  8:26 ` [U-Boot] [PATCH v4 01/13] cmd: fdt: Narrow the check for fdt addr Maxime Ripard
2016-08-16  1:52   ` [U-Boot] [U-Boot, v4, " Jaehoon Chung
2016-08-16  1:55     ` Tom Rini
2016-08-17  2:31       ` Jaehoon Chung
2016-08-17 12:48         ` Tom Rini
2016-08-21 15:06   ` Tom Rini
2016-07-05  8:26 ` [U-Boot] [PATCH v4 02/13] scripts: Makefile.lib: Sanitize DTB names Maxime Ripard
2016-08-21 15:06   ` [U-Boot] [U-Boot, v4, " Tom Rini
2016-07-05  8:26 ` [U-Boot] [PATCH v4 03/13] vsprintf: Include stdarg for va_list Maxime Ripard
2016-08-21 15:06   ` [U-Boot] [U-Boot, v4, " Tom Rini
2016-07-05  8:26 ` [U-Boot] [PATCH v4 04/13] libfdt: Add new headers and defines Maxime Ripard
2016-08-21 15:07   ` [U-Boot] [U-Boot,v4,04/13] " Tom Rini
2016-07-05  8:26 ` [U-Boot] [PATCH v4 05/13] libfdt: Add iterator over properties Maxime Ripard
2016-08-21 15:07   ` [U-Boot] [U-Boot, v4, " Tom Rini
2016-07-05  8:26 ` [U-Boot] [PATCH v4 06/13] libfdt: Add max phandle retrieval function Maxime Ripard
2016-07-06  1:13   ` David Gibson [this message]
2016-08-21 15:07   ` [U-Boot] [U-Boot, v4, " Tom Rini
2016-07-05  8:26 ` [U-Boot] [PATCH v4 07/13] libfdt: Fix separator spelling Maxime Ripard
2016-07-06  1:16   ` David Gibson
2016-07-11  6:59     ` Maxime Ripard
2016-08-21 15:07   ` [U-Boot] [U-Boot,v4,07/13] " Tom Rini
2016-07-05  8:26 ` [U-Boot] [PATCH v4 08/13] libfdt: Add fdt_path_offset_namelen Maxime Ripard
2016-07-06  1:21   ` David Gibson
2016-08-21 15:07   ` [U-Boot] [U-Boot,v4,08/13] " Tom Rini
2016-07-05  8:26 ` [U-Boot] [PATCH v4 09/13] libfdt: Add fdt_getprop_namelen_w Maxime Ripard
2016-07-06  1:22   ` David Gibson
2016-07-11  7:12     ` Maxime Ripard
2016-07-12  5:10       ` David Gibson
2016-08-21 15:07   ` [U-Boot] [U-Boot,v4,09/13] " Tom Rini
2016-07-05  8:26 ` [U-Boot] [PATCH v4 10/13] libfdt: Add fdt_setprop_inplace_namelen_partial Maxime Ripard
2016-08-21 15:07   ` [U-Boot] [U-Boot, v4, " Tom Rini
2016-07-05  8:26 ` [U-Boot] [PATCH v4 11/13] libfdt: Add overlay application function Maxime Ripard
2016-08-21 15:07   ` [U-Boot] [U-Boot, v4, " Tom Rini
2016-07-05  8:26 ` [U-Boot] [PATCH v4 12/13] cmd: fdt: add fdt overlay application subcommand Maxime Ripard
2016-08-21 15:08   ` [U-Boot] [U-Boot, v4, " Tom Rini
2016-07-05  8:26 ` [U-Boot] [PATCH v4 13/13] tests: Introduce DT overlay tests Maxime Ripard
2016-08-21 15:08   ` [U-Boot] [U-Boot,v4,13/13] " Tom Rini

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=20160706011343.GP2251@voom.fritz.box \
    --to=david@gibson.dropbear.id.au \
    --cc=u-boot@lists.denx.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