linux-mips.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Frank Rowand <frowand.list@gmail.com>
To: Rob Herring <robh@kernel.org>,
	Benjamin Herrenschmidt <benh@kernel.crashing.org>,
	John Crispin <john@phrozen.org>,
	Michael Ellerman <mpe@ellerman.id.au>,
	Paul Mackerras <paulus@samba.org>,
	Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Cc: devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-mips@vger.kernel.org, linuxppc-dev@lists.ozlabs.org
Subject: Re: [PATCH 2/3] of/fdt: Rework early_init_dt_scan_root() to call directly
Date: Wed, 24 Nov 2021 11:20:24 -0500	[thread overview]
Message-ID: <13f402bb-933d-a5e0-4f45-24e5f5b3b1f1@gmail.com> (raw)
In-Reply-To: <20211118181213.1433346-3-robh@kernel.org>

On 11/18/21 1:12 PM, Rob Herring wrote:
> Use of the of_scan_flat_dt() function predates libfdt and is discouraged
> as libfdt provides a nicer set of APIs. Rework early_init_dt_scan_root()
> to be called directly and use libfdt.
> 
> Cc: Michael Ellerman <mpe@ellerman.id.au>
> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
> Cc: Paul Mackerras <paulus@samba.org>
> Cc: Frank Rowand <frowand.list@gmail.com>
> Cc: linuxppc-dev@lists.ozlabs.org
> Signed-off-by: Rob Herring <robh@kernel.org>
> ---
>  arch/powerpc/kernel/prom.c |  4 ++--
>  drivers/of/fdt.c           | 14 +++++++-------
>  include/linux/of_fdt.h     |  3 +--
>  3 files changed, 10 insertions(+), 11 deletions(-)
> 
> diff --git a/arch/powerpc/kernel/prom.c b/arch/powerpc/kernel/prom.c
> index c6c398ccd98a..6e1a106f02eb 100644
> --- a/arch/powerpc/kernel/prom.c
> +++ b/arch/powerpc/kernel/prom.c
> @@ -748,7 +748,7 @@ void __init early_init_devtree(void *params)
>  	of_scan_flat_dt(early_init_dt_scan_chosen_ppc, boot_command_line);
>  
>  	/* Scan memory nodes and rebuild MEMBLOCKs */
> -	of_scan_flat_dt(early_init_dt_scan_root, NULL);
> +	early_init_dt_scan_root();
>  	of_scan_flat_dt(early_init_dt_scan_memory_ppc, NULL);
>  
>  	parse_early_param();
> @@ -857,7 +857,7 @@ void __init early_get_first_memblock_info(void *params, phys_addr_t *size)
>  	 * mess the memblock.
>  	 */
>  	add_mem_to_memblock = 0;
> -	of_scan_flat_dt(early_init_dt_scan_root, NULL);
> +	early_init_dt_scan_root();
>  	of_scan_flat_dt(early_init_dt_scan_memory_ppc, NULL);
>  	add_mem_to_memblock = 1;
>  
> diff --git a/drivers/of/fdt.c b/drivers/of/fdt.c
> index 1f1705f76263..5e216555fe4f 100644
> --- a/drivers/of/fdt.c
> +++ b/drivers/of/fdt.c
> @@ -1042,13 +1042,14 @@ int __init early_init_dt_scan_chosen_stdout(void)
>  /*
>   * early_init_dt_scan_root - fetch the top level address and size cells
>   */
> -int __init early_init_dt_scan_root(unsigned long node, const char *uname,
> -				   int depth, void *data)
> +int __init early_init_dt_scan_root(void)
>  {
>  	const __be32 *prop;
> +	const void *fdt = initial_boot_params;
> +	int node = fdt_path_offset(fdt, "/");
>  
> -	if (depth != 0)
> -		return 0;
> +	if (node < 0)
> +		return -ENODEV;
>  
>  	dt_root_size_cells = OF_ROOT_NODE_SIZE_CELLS_DEFAULT;
>  	dt_root_addr_cells = OF_ROOT_NODE_ADDR_CELLS_DEFAULT;
> @@ -1063,8 +1064,7 @@ int __init early_init_dt_scan_root(unsigned long node, const char *uname,
>  		dt_root_addr_cells = be32_to_cpup(prop);
>  	pr_debug("dt_root_addr_cells = %x\n", dt_root_addr_cells);
>  
> -	/* break now */
> -	return 1;
> +	return 0;
>  }
>  
>  u64 __init dt_mem_next_cell(int s, const __be32 **cellp)
> @@ -1263,7 +1263,7 @@ void __init early_init_dt_scan_nodes(void)
>  	int rc;
>  
>  	/* Initialize {size,address}-cells info */
> -	of_scan_flat_dt(early_init_dt_scan_root, NULL);
> +	early_init_dt_scan_root();
>  
>  	/* Retrieve various information from the /chosen node */
>  	rc = early_init_dt_scan_chosen(boot_command_line);
> diff --git a/include/linux/of_fdt.h b/include/linux/of_fdt.h
> index 654722235df6..df3d31926c3c 100644
> --- a/include/linux/of_fdt.h
> +++ b/include/linux/of_fdt.h
> @@ -68,8 +68,7 @@ extern void early_init_dt_add_memory_arch(u64 base, u64 size);
>  extern u64 dt_mem_next_cell(int s, const __be32 **cellp);
>  
>  /* Early flat tree scan hooks */
> -extern int early_init_dt_scan_root(unsigned long node, const char *uname,
> -				   int depth, void *data);
> +extern int early_init_dt_scan_root(void);
>  
>  extern bool early_init_dt_scan(void *params);
>  extern bool early_init_dt_verify(void *params);
> 

Reviewed-by: Frank Rowand <frank.rowand@sony.com>

  reply	other threads:[~2021-11-24 16:20 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-18 18:12 [PATCH 0/3] of/fdt: Rework early FDT scanning functions Rob Herring
2021-11-18 18:12 ` [PATCH 1/3] of/fdt: Rework early_init_dt_scan_chosen() to call directly Rob Herring
2021-11-24 16:13   ` Frank Rowand
2021-11-18 18:12 ` [PATCH 2/3] of/fdt: Rework early_init_dt_scan_root() " Rob Herring
2021-11-24 16:20   ` Frank Rowand [this message]
2021-11-18 18:12 ` [PATCH 3/3] of/fdt: Rework early_init_dt_scan_memory() " Rob Herring
2021-11-24 16:58   ` Frank Rowand
2021-11-24 17:01 ` [PATCH 0/3] of/fdt: Rework early FDT scanning functions Frank Rowand

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=13f402bb-933d-a5e0-4f45-24e5f5b3b1f1@gmail.com \
    --to=frowand.list@gmail.com \
    --cc=benh@kernel.crashing.org \
    --cc=devicetree@vger.kernel.org \
    --cc=john@phrozen.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mips@vger.kernel.org \
    --cc=linuxppc-dev@lists.ozlabs.org \
    --cc=mpe@ellerman.id.au \
    --cc=paulus@samba.org \
    --cc=robh@kernel.org \
    --cc=tsbogend@alpha.franken.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;
as well as URLs for NNTP newsgroup(s).