From: Nishanth Menon <nm@ti.com>
To: Tom Rini <trini@konsulko.com>
Cc: Neha Francis <n-francis@ti.com>, Simon Glass <sjg@google.com>,
Bryan <bb@ti.com>, Praneeth <praneeth@ti.com>,
Andrew <afd@ti.com>, Robert Nelson <robertcnelson@gmail.com>,
Vignesh <vigneshr@ti.com>, <u-boot@lists.denx.de>,
Mattijs Korpershoek <mkorpershoek@baylibre.com>,
Jan Kiszka <jan.kiszka@siemens.com>
Subject: Re: [PATCH V5 08/17] include: env: ti: ti_common: Add a generic findfdt
Date: Thu, 24 Aug 2023 11:22:47 -0500 [thread overview]
Message-ID: <20230824162247.oeqooi3454skobnc@connected> (raw)
In-Reply-To: <20230824151439.GY3953269@bill-the-cat>
On 11:14-20230824, Tom Rini wrote:
> On Wed, Aug 23, 2023 at 10:10:52PM -0500, Nishanth Menon wrote:
> > ti_mmc bootmethod uses a findfdt routine that is expected to be
> > implemented by all platforms.
> >
> > Define a default findfdt based on configured DEFAULT_DEVICE_TREE option
> > for u-boot. This saves duplication across multiple boards and handles
> > architecture folder location changes centrally.
> >
> > TI ARMV7 platforms will need to override default_device_tree_subarch
> > in the env file to point to the appropriate platform. Note: default
> > "omap" is used to cater to "most common" default.
> >
> > Signed-off-by: Nishanth Menon <nm@ti.com>
> > ---
> > New patch (part of bootstd transition)
> >
> > include/env/ti/ti_common.env | 12 ++++++++++++
> > 1 file changed, 12 insertions(+)
> >
> > diff --git a/include/env/ti/ti_common.env b/include/env/ti/ti_common.env
> > index e87a41a6590b..322f849a5560 100644
> > --- a/include/env/ti/ti_common.env
> > +++ b/include/env/ti/ti_common.env
> > @@ -32,3 +32,15 @@ bootcmd_ti_mmc=
> > else;
> > run get_kern_${boot}; run get_fdt_${boot}; run get_overlay_${boot}; run run_kern;
> > fi;
> > +default_device_tree=CONFIG_DEFAULT_DEVICE_TREE
> > +default_device_tree_arch=ti
> > +#ifdef CONFIG_ARM64
> > +findfdt=
> > + setenv name_fdt ${default_device_tree_arch}/${default_device_tree}.dtb;
> > + setenv fdtfile ${name_fdt}
> > +#else
> > +default_device_tree_subarch=omap
> > +findfdt=
> > + setenv name_fdt ${default_device_tree_arch}/${default_device_tree_subarch}/${default_device_tree}.dtb;
> > + setenv fdtfile ${name_fdt}
> > +#endif
>
> How does this override work in practice? I fear that it's relying on
> the (not exactly documented) mechanic of "last one set generally work".
I was depending on that -> since we work with #includes anyways - I had
assumed it implicitly.
> So perhaps we don't want this in ti_common.env but instead
> include/env/ti/default_findfdt.env and then #include that, and then
> platforms that need different just don't #include this.
Sure, I can do that in the next spin. Will wait a couple of days for any
further feedback to fixup (without broadening scope unless mandatory).
--
Regards,
Nishanth Menon
Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D
next prev parent reply other threads:[~2023-08-24 16:22 UTC|newest]
Thread overview: 45+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-24 3:10 [PATCH V5 00/17] board: ti: Add support for BeaglePlay Nishanth Menon
2023-08-24 3:10 ` [PATCH V5 01/17] include: configs: ti_armv7_common: Add documentation for protected section Nishanth Menon
2023-08-24 8:06 ` Mattijs Korpershoek
2023-08-24 3:10 ` [PATCH V5 02/17] include: configs: am62x_evm: Drop unused SDRAM address Nishanth Menon
2023-08-24 8:13 ` Mattijs Korpershoek
2023-08-24 12:05 ` Nishanth Menon
2023-08-24 13:02 ` Marcel Ziswiler
2023-08-24 16:09 ` Francesco Dolcini
2023-08-24 16:15 ` Francesco Dolcini
2023-08-28 21:56 ` Marcel Ziswiler
2023-08-24 3:10 ` [PATCH V5 03/17] include: configs: am62x_evm: Wrap distroboot with CONFIG_DISTRO_DEFAULTS Nishanth Menon
2023-08-24 14:53 ` Tom Rini
2023-08-24 3:10 ` [PATCH V5 04/17] board: ti: am62x: am62x.env: Add explicit boot_targets Nishanth Menon
2023-08-24 3:10 ` [PATCH V5 05/17] configs: am62x_evm_a53_defconfig: Switch to bootstd Nishanth Menon
2023-08-24 14:54 ` Tom Rini
2023-08-24 3:10 ` [PATCH V5 06/17] include: configs: am62x_evm: Drop distro_bootcmd usage Nishanth Menon
2023-08-24 14:54 ` Tom Rini
2023-08-24 3:10 ` [PATCH V5 07/17] include: env: ti: ti_armv7_common.env: Rename to ti_common.env Nishanth Menon
2023-08-24 8:29 ` Mattijs Korpershoek
2023-08-24 14:55 ` Tom Rini
2023-08-24 3:10 ` [PATCH V5 08/17] include: env: ti: ti_common: Add a generic findfdt Nishanth Menon
2023-08-24 15:14 ` Tom Rini
2023-08-24 16:22 ` Nishanth Menon [this message]
2023-08-24 16:29 ` Tom Rini
2023-08-24 3:10 ` [PATCH V5 09/17] board: ti: am62x: am62x.env: Use default findfdt Nishanth Menon
2023-08-24 15:14 ` Tom Rini
2023-08-24 3:10 ` [PATCH V5 10/17] arm: mach-k3: am625_init: Use IS_ENABLED() Nishanth Menon
2023-08-24 8:34 ` Mattijs Korpershoek
2023-08-24 15:14 ` Tom Rini
2023-08-24 3:10 ` [PATCH V5 11/17] arm: mach-k3: am625_init: Convert rtc_erratumi2327_init to static Nishanth Menon
2023-08-24 8:36 ` Mattijs Korpershoek
2023-08-24 15:14 ` Tom Rini
2023-08-24 3:10 ` [PATCH V5 12/17] configs: am62x_evm*: Enable EMMC_BOOT configuration Nishanth Menon
2023-08-24 3:10 ` [PATCH V5 13/17] arm: mach-k3: am625: Add support for UDA FS Nishanth Menon
2023-08-24 8:39 ` Mattijs Korpershoek
2023-08-24 3:10 ` [PATCH V5 14/17] arm: dts: k3-am625-sk-binman: Add labels for unsigned binary Nishanth Menon
2023-08-24 3:10 ` [PATCH V5 15/17] arm: dts: Add k3-am625-beagleplay Nishanth Menon
2023-08-24 3:11 ` [PATCH V5 16/17] board: ti: am62x: Add am62x_beagleplay_* defconfigs and env file Nishanth Menon
2023-08-24 8:43 ` Mattijs Korpershoek
2023-08-24 21:53 ` [PATCH] board: ti: am62x: beagleplay: Disable semi-functional PSCI reset support Jan Kiszka
2023-08-24 21:58 ` Tom Rini
2023-08-25 1:16 ` Nishanth Menon
2023-08-24 3:11 ` [PATCH V5 17/17] doc: board: ti: Add BeaglePlay documentation Nishanth Menon
2023-08-24 3:31 ` [PATCH V5 00/17] board: ti: Add support for BeaglePlay Nishanth Menon
2023-08-24 8:02 ` Mattijs Korpershoek
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=20230824162247.oeqooi3454skobnc@connected \
--to=nm@ti.com \
--cc=afd@ti.com \
--cc=bb@ti.com \
--cc=jan.kiszka@siemens.com \
--cc=mkorpershoek@baylibre.com \
--cc=n-francis@ti.com \
--cc=praneeth@ti.com \
--cc=robertcnelson@gmail.com \
--cc=sjg@google.com \
--cc=trini@konsulko.com \
--cc=u-boot@lists.denx.de \
--cc=vigneshr@ti.com \
/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