All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tom Rini <trini@konsulko.com>
To: Simon Glass <sjg@chromium.org>
Cc: Peter Robinson <pbrobinson@gmail.com>,
	U-Boot Mailing List <u-boot@lists.denx.de>,
	Andre Przywara <andre.przywara@arm.com>,
	Apurva Nandan <a-nandan@ti.com>, Bryan Brattlof <bb@ti.com>,
	Greg Malysa <greg.malysa@timesys.com>,
	Ilias Apalodimas <ilias.apalodimas@linaro.org>,
	Jayesh Choudhary <j-choudhary@ti.com>,
	Jiaxun Yang <jiaxun.yang@flygoat.com>,
	Jonas Karlman <jonas@kwiboo.se>,
	Kever Yang <kever.yang@rock-chips.com>,
	Kongyang Liu <seashell11234455@gmail.com>,
	Minkyu Kang <mk7.kang@samsung.com>,
	Neil Armstrong <neil.armstrong@linaro.org>,
	Richard Henderson <richard.henderson@linaro.org>,
	Stefan Roese <sr@denx.de>, Tony Dinh <mibodhi@gmail.com>,
	Vaishnav Achath <vaishnav.a@ti.com>,
	Venkatesh Yadav Abbarapu <venkatesh.abbarapu@amd.com>,
	huang lin <hl@rock-chips.com>
Subject: Re: [PATCH 00/18] vbe: Series part D
Date: Thu, 29 Aug 2024 19:46:22 -0600	[thread overview]
Message-ID: <20240830014622.GQ2479150@bill-the-cat> (raw)
In-Reply-To: <CAFLszTjjni839jghOpforB-4+MnqRh7JXw575VtP_UO-SzfnKg@mail.gmail.com>

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

On Thu, Aug 29, 2024 at 07:06:32PM -0600, Simon Glass wrote:
> Hi Tom,
> 
> On Thu, 29 Aug 2024 at 18:49, Tom Rini <trini@konsulko.com> wrote:
> >
> > On Wed, Aug 28, 2024 at 04:16:55PM -0600, Simon Glass wrote:
> > > Hi Peter,
> > >
> > > On Wed, 28 Aug 2024 at 03:59, Peter Robinson <pbrobinson@gmail.com> wrote:
> > > >
> > > > Hi Simon,
> > > >
> > > > > This includes various patches towards implementing the VBE abrec
> > > >
> > > > What is abrec?
> > >
> > > It's a VBE method which supports A, B and recovery images and permits
> > > updating from SPL onwards. The idea is that you can safely update
> > > without bricking a device.
> > >
> > > >
> > > > > bootmeth in U-Boot.
> > > > >
> > > > >
> > > > > Simon Glass (18):
> > > > >   sandbox: Add missing header file
> > > > >   bootstd: Add stub for bootdev_setup_for_sibling_blk()
> > > > >   gzip: Correct function comment for gunzip()
> > > >
> > > > Is this from upstream gzip code somewher?
> > >
> > > I'm not sure, actually.
> > >
> > > >
> > > > >   fdtdec: Support separate BSS for all XPL builds
> > >
> > > Needed so that VPL can use DDT
> > >
> > > > >   tiny-printf: Correct return values
> > >
> > > I can't remember, sorry.
> > >
> > > > >   tpl: Support numbered aliases in device tree
> > >
> > > The MMC needs to be accessed using its sequence number
> > >
> > > > >   ram: Support driver model in TPL
> > >
> > > That should say VPL...but again I'm not quite sure
> > >
> > > > >   serial: Support debug UART in TPL
> > >
> > > This allows debugging of the jump from TPL to VPL
> > >
> > > > >   armv8: Support not having separate BSS
> > >
> > > VPL doesn't want a separate BSS since SDRAM isn't available that early
> > >
> > > > >   arm: cache: Drop a stale comment
> > >
> > > Just something I noticed
> > >
> > > > >   arm: Fix up a stale comment in sections.c
> > >
> > > Another thing I noticed
> > >
> > > > >   mmc: Support driver model in TPL
> > >
> > > TPL needs to read VPL from MMC
> > >
> > > > >   mmc: Add more debugging for SPL
> > > > >   mmc: Log the error when init fails
> > > > >   mmc: rockchip: Log some error returns
> > > > >   mmc: rockchip: Allow clocks to be missing
> > >
> > > These all help with debugging reading of VPL from the correct MMC device
> > >
> > > > >   rockchip: mmc: Fix a missing colon
> > >
> > > Just something I noticed
> > >
> > > > >   rockchip: Provided SPL control over efuse presence
> > >
> > > We don't want this driver in TPL or VPL
> > >
> > > >
> > > > I'm not sure what most of these patches have to do with VBE?
> > >
> > > Basically there are a lot of little tweaks needed.
> >
> > Well, I think this gets back to some common feedback. You have a lot of
> > little bugfixes, which is good, but they get sprinkled in to the next
> > big series you post, which is bad and hard to review. And that leads to
> > fixes not getting merged / reviewed timely because nominally simple fix
> > A is in part 3 of a series to introduce something larger and to which
> > there is feedback to work through.
> 
> I actually thought I was splitting them up quite nicely. What do you suggest?

I would refer back to your own comments about what some of the patches
do and say that "Just something I noticed" should be a one off, and
little fixes for this-and-that should be a 1-2 part series and so on.

-- 
Tom

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

  reply	other threads:[~2024-08-30  1:46 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-08-28  1:45 [PATCH 00/18] vbe: Series part D Simon Glass
2024-08-28  1:45 ` [PATCH 01/18] sandbox: Add missing header file Simon Glass
2024-08-28  1:45 ` [PATCH 02/18] bootstd: Add stub for bootdev_setup_for_sibling_blk() Simon Glass
2024-08-28  1:45 ` [PATCH 03/18] gzip: Correct function comment for gunzip() Simon Glass
2024-08-28  1:45 ` [PATCH 04/18] fdtdec: Support separate BSS for all XPL builds Simon Glass
2024-08-28  1:45 ` [PATCH 05/18] tiny-printf: Correct return values Simon Glass
2024-08-28  1:45 ` [PATCH 06/18] tpl: Support numbered aliases in device tree Simon Glass
2024-08-28  1:45 ` [PATCH 07/18] ram: Support driver model in TPL Simon Glass
2024-09-04 18:14   ` Tom Rini
2024-08-28  1:45 ` [PATCH 08/18] serial: Support debug UART " Simon Glass
2024-08-28  1:45 ` [PATCH 09/18] armv8: Support not having separate BSS Simon Glass
2024-08-28  1:45 ` [PATCH 10/18] arm: cache: Drop a stale comment Simon Glass
2024-08-28  1:45 ` [PATCH 11/18] arm: Fix up a stale comment in sections.c Simon Glass
2024-08-28  1:45 ` [PATCH 12/18] mmc: Support driver model in TPL Simon Glass
2024-09-04 18:14   ` Tom Rini
2024-08-28  1:45 ` [PATCH 13/18] mmc: Add more debugging for SPL Simon Glass
2024-08-28  3:38   ` Marek Vasut
2024-08-29 14:05     ` Simon Glass
2024-09-04 18:14   ` Tom Rini
2024-08-28  1:45 ` [PATCH 14/18] mmc: Log the error when init fails Simon Glass
2024-08-28  1:45 ` [PATCH 15/18] mmc: rockchip: Log some error returns Simon Glass
2024-08-28  1:45 ` [PATCH 16/18] mmc: rockchip: Allow clocks to be missing Simon Glass
2024-08-28  1:45 ` [PATCH 17/18] rockchip: mmc: Fix a missing colon Simon Glass
2024-08-29  6:36   ` Sughosh Ganu
2024-08-28  1:45 ` [PATCH 18/18] rockchip: Provided SPL control over efuse presence Simon Glass
2024-08-28  9:59 ` [PATCH 00/18] vbe: Series part D Peter Robinson
2024-08-28 22:16   ` Simon Glass
2024-08-30  0:49     ` Tom Rini
2024-08-30  1:06       ` Simon Glass
2024-08-30  1:46         ` Tom Rini [this message]
2024-09-20  7:25           ` Simon Glass
2024-09-20 15:01             ` Tom Rini
2024-09-20 16:04               ` Simon Glass
2024-09-20 16:40                 ` Tom Rini
2024-09-25 12:50                   ` Simon Glass

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=20240830014622.GQ2479150@bill-the-cat \
    --to=trini@konsulko.com \
    --cc=a-nandan@ti.com \
    --cc=andre.przywara@arm.com \
    --cc=bb@ti.com \
    --cc=greg.malysa@timesys.com \
    --cc=hl@rock-chips.com \
    --cc=ilias.apalodimas@linaro.org \
    --cc=j-choudhary@ti.com \
    --cc=jiaxun.yang@flygoat.com \
    --cc=jonas@kwiboo.se \
    --cc=kever.yang@rock-chips.com \
    --cc=mibodhi@gmail.com \
    --cc=mk7.kang@samsung.com \
    --cc=neil.armstrong@linaro.org \
    --cc=pbrobinson@gmail.com \
    --cc=richard.henderson@linaro.org \
    --cc=seashell11234455@gmail.com \
    --cc=sjg@chromium.org \
    --cc=sr@denx.de \
    --cc=u-boot@lists.denx.de \
    --cc=vaishnav.a@ti.com \
    --cc=venkatesh.abbarapu@amd.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 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.