public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Tom Rini <trini@konsulko.com>
To: Marcel Ziswiler <marcel.ziswiler@toradex.com>
Cc: "clamor95@gmail.com" <clamor95@gmail.com>,
	"uboot-imx@nxp.com" <uboot-imx@nxp.com>,
	"festevam@gmail.com" <festevam@gmail.com>,
	Emanuele Ghidoli <emanuele.ghidoli@toradex.com>,
	"francesco@dolcini.it" <francesco@dolcini.it>,
	"sbabic@denx.de" <sbabic@denx.de>,
	Francesco Dolcini <francesco.dolcini@toradex.com>,
	"u-boot@lists.denx.de" <u-boot@lists.denx.de>,
	"treding@nvidia.com" <treding@nvidia.com>
Subject: Re: [PATCH v1 5/7] toradex: common: Add sysinfo driver
Date: Wed, 21 Feb 2024 10:23:44 -0500	[thread overview]
Message-ID: <20240221152344.GU3040305@bill-the-cat> (raw)
In-Reply-To: <c7d26d3a59e48582286bc889b67dacdf9e02cbdc.camel@toradex.com>

[-- Attachment #1: Type: text/plain, Size: 3245 bytes --]

On Wed, Feb 21, 2024 at 02:24:23PM +0000, Marcel Ziswiler wrote:
> Hi Tom
> 
> On Wed, 2024-02-21 at 08:10 -0500, Tom Rini wrote:
> > On Tue, Feb 20, 2024 at 07:51:35PM +0000, Marcel Ziswiler wrote:
> > > On Tue, 2024-02-20 at 21:14 +0200, Svyatoslav Ryhel wrote:
> > > > вт, 20 лют. 2024 р. о 20:29 Francesco Dolcini <francesco@dolcini.it> пише:
> > > > > 
> > > > > From: Emanuele Ghidoli <emanuele.ghidoli@toradex.com>
> > > > > 
> > > > > This commit introduces support for the Toradex sysinfo driver in U-Boot,
> > > > > which uses information from Toradex config block to print correct
> > > > > board model.
> > > > > In case the Toradex config block is not present sysinfo prints the model
> > > > > of the board provided by device tree removing per board specific prints.
> > > > > 
> > > > > Signed-off-by: Emanuele Ghidoli <emanuele.ghidoli@toradex.com>
> > > > > Signed-off-by: Francesco Dolcini <francesco.dolcini@toradex.com>
> > > > > ---
> > > > >  arch/arm/dts/fsl-imx8qm-apalis-u-boot.dtsi    |  6 +++
> > > > >  arch/arm/dts/fsl-imx8qxp-colibri-u-boot.dtsi  |  6 +++
> > > > >  .../dts/imx6dl-colibri-eval-v3-u-boot.dtsi    |  4 ++
> > > > >  arch/arm/dts/imx6q-apalis-eval-u-boot.dtsi    |  4 ++
> > > > >  .../dts/imx6ull-colibri-eval-v3-u-boot.dtsi   |  4 ++
> > > > >  .../arm/dts/imx7d-colibri-eval-v3-u-boot.dtsi |  4 ++
> > > > >  .../dts/imx8mm-verdin-wifi-dev-u-boot.dtsi    |  4 ++
> > > > >  .../dts/imx8mp-verdin-wifi-dev-u-boot.dtsi    |  4 ++
> > > > >  .../dts/k3-am625-verdin-wifi-dev-u-boot.dtsi  |  4 ++
> > > > >  arch/arm/dts/tegra124-apalis-u-boot.dtsi      | 12 +++++
> > > > >  arch/arm/dts/tegra20-colibri-u-boot.dtsi      | 12 +++++
> > > > >  arch/arm/dts/tegra30-apalis-u-boot.dtsi       | 12 +++++
> > > > >  arch/arm/dts/tegra30-colibri-u-boot.dtsi      | 12 +++++
> > > > >  .../arm/dts/vf610-colibri-eval-v3-u-boot.dtsi |  4 ++
> > > > >  board/toradex/common/Kconfig                  |  1 +
> > > > >  board/toradex/common/tdx-common.c             | 50 ++++++++++++++++---
> > > > >  16 files changed, 136 insertions(+), 7 deletions(-)
> > > > >  create mode 100644 arch/arm/dts/tegra124-apalis-u-boot.dtsi
> > > > >  create mode 100644 arch/arm/dts/tegra20-colibri-u-boot.dtsi
> > > > >  create mode 100644 arch/arm/dts/tegra30-apalis-u-boot.dtsi
> > > > >  create mode 100644 arch/arm/dts/tegra30-colibri-u-boot.dtsi
> > > > > 
> > > > 
> > > > Greetings! Thank you for contribution but may you at split patches
> > > > according to SoC vendor at least? For imx, tegra and ti since it
> > > > would be hard to both review and pick them to correct custodian
> > > > trees.
> > > 
> > > I would assume for those urgent fixes to go through Tom directly to master. Thanks!
> > 
> > So this is a series we need for v2024.04 then?
> 
> Yes, please. From the cover letter:
> 
> > This series fixes two regressions affecting multiple Toradex boards (i.MX, TI and TEGRA based) and targets
> the current master, e.g. v2024.04 release.

OK, thanks. I'll wait a bit more for further feedback on the contents
themselves.

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

  reply	other threads:[~2024-02-21 15:23 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-02-20 18:29 [PATCH v1 0/7] toradex: fix reset and hardware detection regressions Francesco Dolcini
2024-02-20 18:29 ` [PATCH v1 1/7] toradex: Fix recursive call to checkboard Francesco Dolcini
2024-02-20 18:29 ` [PATCH v1 2/7] toradex: Remove not necessary model prints from checkboard() Francesco Dolcini
2024-02-20 18:29 ` [PATCH v1 3/7] toradex: common: Use SETTINGS_R event to read toradex config block Francesco Dolcini
2024-02-20 18:29 ` [PATCH v1 4/7] arm: dts: Refactor device trees using "&{/aliases}" syntax Francesco Dolcini
2024-02-20 18:29 ` [PATCH v1 5/7] toradex: common: Add sysinfo driver Francesco Dolcini
2024-02-20 19:14   ` Svyatoslav Ryhel
2024-02-20 19:51     ` Marcel Ziswiler
2024-02-21 13:10       ` Tom Rini
2024-02-21 14:24         ` Marcel Ziswiler
2024-02-21 15:23           ` Tom Rini [this message]
2024-02-21 15:43   ` Igor Opaniuk
2024-02-21 21:16     ` Francesco Dolcini
2024-02-20 18:29 ` [PATCH v1 6/7] toradex: common: Use random mac address if toradex config block is missing Francesco Dolcini
2024-02-23  8:07   ` Francesco Dolcini
2024-02-20 18:29 ` [PATCH v1 7/7] toradex: imx6*: fix reset using wdt-reboot driver Francesco Dolcini
2024-02-20 19:51 ` [PATCH v1 0/7] toradex: fix reset and hardware detection regressions Marcel Ziswiler

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=20240221152344.GU3040305@bill-the-cat \
    --to=trini@konsulko.com \
    --cc=clamor95@gmail.com \
    --cc=emanuele.ghidoli@toradex.com \
    --cc=festevam@gmail.com \
    --cc=francesco.dolcini@toradex.com \
    --cc=francesco@dolcini.it \
    --cc=marcel.ziswiler@toradex.com \
    --cc=sbabic@denx.de \
    --cc=treding@nvidia.com \
    --cc=u-boot@lists.denx.de \
    --cc=uboot-imx@nxp.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