All of lore.kernel.org
 help / color / mirror / Atom feed
From: Roger Quadros <rogerq@kernel.org>
To: Nishanth Menon <nm@ti.com>, Tom Rini <trini@konsulko.com>
Cc: Kamlesh Gurudasani <kamlesh@ti.com>,
	Sinthu Raja <sinthu.raja@ti.com>,
	Neha Malcom Francis <n-francis@ti.com>,
	Heinrich Schuchardt <xypron.glpk@gmx.de>,
	Simon Glass <sjg@chromium.org>, Andrew Davis <afd@ti.com>,
	Mattijs Korpershoek <mkorpershoek@baylibre.com>,
	Nikhil M Jain <n-jain1@ti.com>,
	Manorit Chawdhry <m-chawdhry@ti.com>, Bryan Brattlof <bb@ti.com>,
	Robert Nelson <robertcnelson@gmail.com>,
	u-boot@lists.denx.de, Jon Humphreys <j-humphreys@ti.com>
Subject: Re: [PATCH 04/10] board: ti: am64x: Set fdtfile from C code instead of findfdt script
Date: Tue, 9 Jan 2024 15:08:18 +0200	[thread overview]
Message-ID: <ec2ead48-0aaa-44fd-be71-545a7e3d59e1@kernel.org> (raw)
In-Reply-To: <20240108173301.2692332-5-nm@ti.com>



On 08/01/2024 19:32, Nishanth Menon wrote:
> We now can provide a map and have the standard fdtfile variable set from
> code itself. This allows for bootstd to "just work".
> 
> While at this, replace findfdt in environment with a warning as it is no
> longer needed.
> 
> Signed-off-by: Nishanth Menon <nm@ti.com>
> ---
>  board/ti/am64x/am64x.env | 9 ---------
>  board/ti/am64x/evm.c     | 8 ++++++++
>  2 files changed, 8 insertions(+), 9 deletions(-)
> 
> diff --git a/board/ti/am64x/am64x.env b/board/ti/am64x/am64x.env
> index efd736b99be4..9a8812d4ee54 100644
> --- a/board/ti/am64x/am64x.env
> +++ b/board/ti/am64x/am64x.env
> @@ -2,14 +2,6 @@
>  #include <env/ti/mmc.env>
>  #include <env/ti/k3_dfu.env>
>  
> -findfdt=
> -	if test $board_name = am64x_gpevm; then
> -		setenv name_fdt ti/k3-am642-evm.dtb; fi;
> -	if test $board_name = am64x_skevm; then
> -		setenv name_fdt ti/k3-am642-sk.dtb; fi;
> -	if test $name_fdt = undefined; then
> -		echo WARNING: Could not determine device tree to use; fi;
> -	setenv fdtfile ${name_fdt}
>  name_kern=Image
>  console=ttyS2,115200n8
>  args_all=setenv optargs earlycon=ns16550a,mmio32,0x02800000 ${mtdparts}
> @@ -43,7 +35,6 @@ get_fit_usb=load usb ${bootpart} ${addr_fit}
>  usbboot=setenv boot usb;
>  	setenv bootpart 0:2;
>  	usb start;
> -	run findfdt;
>  	run init_usb;
>  	run get_kern_usb;
>  	run get_fdt_usb;
> diff --git a/board/ti/am64x/evm.c b/board/ti/am64x/evm.c
> index a6dcff2eb434..e2f506d2c6ea 100644
> --- a/board/ti/am64x/evm.c
> +++ b/board/ti/am64x/evm.c
> @@ -16,6 +16,7 @@
>  #include <env.h>
>  
>  #include "../common/board_detect.h"
> +#include "../common/fdt_ops.h"
>  
>  #define board_is_am64x_gpevm() (board_ti_k3_is("AM64-GPEVM") || \
>  				board_ti_k3_is("AM64-HSEVM"))
> @@ -180,6 +181,12 @@ int checkboard(void)
>  }
>  
>  #ifdef CONFIG_BOARD_LATE_INIT
> +static struct ti_fdt_map ti_am64_evm_fdt_map[] = {
> +	{"am64x_gpevm", "k3-am642-evm.dtb"},
> +	{"am64x_skevm", "k3-am642-sk.dtb"},

"am64x_gpevm" and "am64x_skevm" strings are used multiple times in this file.
see setup_board_eeprom_env()

Please use a MACRO for them.

What is the logic of choosing this name and can it be updated at this point?
e.g."gp" is misleading in the board name as the boards are now shipped with
HS-FS chip and are no longer GP.


> +	{ /* Sentinel. */ }
> +};
> +
>  static void setup_board_eeprom_env(void)
>  {
>  	char *name = "am64x_gpevm";
> @@ -197,6 +204,7 @@ static void setup_board_eeprom_env(void)
>  
>  invalid_eeprom:
>  	set_board_info_env_am6(name);
> +	ti_set_fdt_env(name, ti_am64_evm_fdt_map);
>  }
>  
>  static void setup_serial(void)

-- 
cheers,
-roger

  reply	other threads:[~2024-01-09 13:08 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-08 17:32 [PATCH 00/10] board/ti: k3 boards: Stop using findfdt Nishanth Menon
2024-01-08 17:32 ` [PATCH 01/10] board: ti: common: Introduce a common fdt ops library Nishanth Menon
2024-01-08 18:50   ` Andrew Davis
2024-01-08 20:02     ` Nishanth Menon
2024-01-09  2:20   ` Jon Humphreys
2024-01-09 14:18     ` Nishanth Menon
2024-01-09 13:08   ` Roger Quadros
2024-01-09 14:38     ` Nishanth Menon
2024-01-08 17:32 ` [PATCH 02/10] board: ti: am62ax: Set fdtfile from C code instead of findfdt script Nishanth Menon
2024-01-09  2:48   ` Jon Humphreys
2024-01-09 14:23     ` Nishanth Menon
2024-01-08 17:32 ` [PATCH 03/10] board: ti: am62x: " Nishanth Menon
2024-01-08 17:32 ` [PATCH 04/10] board: ti: am64x: " Nishanth Menon
2024-01-09 13:08   ` Roger Quadros [this message]
2024-01-09 14:25     ` Nishanth Menon
2024-01-08 17:32 ` [PATCH 05/10] board: ti: am65x: " Nishanth Menon
2024-01-08 17:32 ` [PATCH 06/10] board: ti: j721e: " Nishanth Menon
2024-01-09 16:20   ` Roger Quadros
2024-01-09 16:30     ` Nishanth Menon
2024-01-08 17:32 ` [PATCH 07/10] board: ti: j721s2: " Nishanth Menon
2024-01-08 17:32 ` [PATCH 08/10] board: beagle: beagleboneai64: " Nishanth Menon
2024-01-08 19:00   ` Andrew Davis
2024-01-08 20:04     ` Nishanth Menon
2024-01-09  2:24   ` Jon Humphreys
2024-01-09 14:20     ` Nishanth Menon
2024-01-08 17:33 ` [PATCH 09/10] board: beagle: beagleplay: " Nishanth Menon
2024-01-08 17:33 ` [PATCH 10/10] include: env: ti: Drop default_findfdt Nishanth Menon
2024-01-08 18:27 ` [PATCH 00/10] board/ti: k3 boards: Stop using findfdt 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=ec2ead48-0aaa-44fd-be71-545a7e3d59e1@kernel.org \
    --to=rogerq@kernel.org \
    --cc=afd@ti.com \
    --cc=bb@ti.com \
    --cc=j-humphreys@ti.com \
    --cc=kamlesh@ti.com \
    --cc=m-chawdhry@ti.com \
    --cc=mkorpershoek@baylibre.com \
    --cc=n-francis@ti.com \
    --cc=n-jain1@ti.com \
    --cc=nm@ti.com \
    --cc=robertcnelson@gmail.com \
    --cc=sinthu.raja@ti.com \
    --cc=sjg@chromium.org \
    --cc=trini@konsulko.com \
    --cc=u-boot@lists.denx.de \
    --cc=xypron.glpk@gmx.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.