public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Tom Rini <trini@konsulko.com>
To: Simon Glass <sjg@chromium.org>
Cc: Heinrich Schuchardt <xypron.glpk@gmx.de>,
	Guillaume La Roque <glaroque@baylibre.com>,
	Marek Vasut <marex@denx.de>,
	Mattijs Korpershoek <mkorpershoek@baylibre.com>,
	Sughosh Ganu <sughosh.ganu@linaro.org>,
	U-Boot Mailing List <u-boot@lists.denx.de>,
	Ilias Apalodimas <ilias.apalodimas@linaro.org>
Subject: Re: [PATCH 0/8] efi_loader: Complete the bootflow_efi() test
Date: Wed, 8 Jan 2025 13:14:57 -0600	[thread overview]
Message-ID: <20250108191457.GQ3476@bill-the-cat> (raw)
In-Reply-To: <CAFLszTgWe7-zDejNzn1+QDLhjAHz8e=m+r5zYSmf91RAY=ZkTQ@mail.gmail.com>

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

On Wed, Jan 08, 2025 at 10:02:52AM -0700, Simon Glass wrote:
> Hi Heinrich, Tom,
> 
> On Tue, 7 Jan 2025 at 08:47, Heinrich Schuchardt <xypron.glpk@gmx.de> wrote:
> >
> > On 07.01.25 16:11, Tom Rini wrote:
> > > On Tue, Jan 07, 2025 at 06:57:50AM -0700, Simon Glass wrote:
> > >> Hi Heinrich,
> > >>
> > >> On Tue, 7 Jan 2025 at 06:11, Heinrich Schuchardt <xypron.glpk@gmx.de> wrote:
> > >>>
> > >>> On 07.01.25 13:15, Simon Glass wrote:
> > >>>> Hi Heinrich,
> > >>>>
> > >>>> On Mon, 6 Jan 2025 at 10:00, Heinrich Schuchardt <xypron.glpk@gmx.de> wrote:
> > >>>>>
> > >>>>> On 06.01.25 15:47, Simon Glass wrote:
> > >>>>>> This test was hamstrung in code review so this series is an attempt to
> > >>>>>> complete the intended functionality:
> > >>>>>>
> > >>>>>> - Check memory allocations look correct
> > >>>>>> - Check that exit-boot-services removes active-DMA devices
> > >>>>>> - Check that the bootflow is still present after testapp finishes
> > >>>>>>
> > >>>>>> The EFI functionality duplicates bootm_announce_and_cleanup() and still
> > >>>>>> uses the defunct board_quiesce_devices() so a nice cleanup would be to
> > >>>>>> call the bootm function instead, with suitable modifications. That would
> > >>>>>> allow bootstage to work too.
> > >>>>>>
> > >>>>>> This series is based on sjg/master since the EFI logging was rejected so
> > >>>>>> far.
> > >>>>>
> > >>>>> Yes, it was rejected because a solution at the lib/log.c level would be
> > >>>>> more generic.
> > >>>>
> > >>>> As I mentioned, that idea isn't suitable for programmatic use.
> > >>>
> > >>> What can be done with show_addr("mem", rec->memory); that log_debug()
> > >>> does not offer or which you could not do with a new log function in
> > >>> lib/log.c that takes variadic arguments?
> > >>
> > >> There are asserts in [1], for example. How do you propose to handle
> > >> that? See [2] for my previous explanation, quoted here:
> > >>
> > >>> CONFIG_LOG with a bloblist option would be a great idea, but it's hard
> > >>> to programmatically scan text...plus only the external call sites are
> > >>> actually logged.
> > >>
> > >> Also see the discussion on the original patch [3]. There was also your
> > >> reply at [4], but I think you missed that this is intended for use in
> > >> unit tests (i.e. with ut_assert()).
> > >>
> > >> You also requested that this be generalised, rather than being
> > >> EFI-loader-specific. I have no objection to that, but don't have a use
> > >> case for it yet, so have deferred that to later. It's a fairly simple
> > >> change, if/when needed. If the series was not NAKed, I'd be happy to
> > >> do it now.
> > >>
> > >>>>
> > >>>>>
> > >>>>> Tom suggested not to send patches that are for private enjoyment to the
> > >>>>> mailing list.
> > >>>>
> > >>>> My contributions to U-Boot are only ever about private enjoyment :-)
> > >>>>
> > >>>> Do you have any comments on the patches?
> > >>
> > >> Regards,
> > >> Simon
> > >>
> > >> [1] https://patchwork.ozlabs.org/project/uboot/patch/20250106144755.3054780-6-sjg@chromium.org/
> > >> [2] https://lore.kernel.org/u-boot/CAFLszTjxOE_037+kR0jgdax80sBombYo_k0YgiuVnP=KZCOvuA@mail.gmail.com/
> > >> [3] https://lore.kernel.org/u-boot/CAC_iWjKtaN54B98OKbkoXkC_GmKJ=x+M4=UY_O6roSOpZaDxag@mail.gmail.com/
> > >> [4] https://lore.kernel.org/u-boot/D513D326-41A6-425E-B11F-85958065BCD2@gmx.de/
> > >
> > > Looking at the logging portions of the original series again, especially
> > > if this was made generic, we probably don't want to print to actual
> > > console every time we're making a note of some memory allocation for
> > > example, that would be unreadable outside of a debug context. The point
> > > of this really seems to be "log things for verifying in tests later".
> > > Does that end up being useful? I don't know. Heinrich or Ilias, do the
> > > tests in [1] look generally useful?
> > >
> >
> > The tests in [1] are not documented, not even in the commit message. So
> > the reasoning behind the tests remains Simon's secret.
> 
> Are you asking for code comments in the test? If so, I can add some.
> 
> >
> > At first sight the tests in [1] don't make much sense. E.g. that only a
> > subset of memory types have been used does not tell that the right
> > memory type has been used for the right object.
> 
> It is a pretty good start, though. It makes sure that the memory types
> are sane, checks addresses are within DRAM, etc. With [5] it makes
> sure that devices are removed.
> 
> >
> > Implementing a specific tracing functionality for EFI is definitively
> > the wrong way forward as it will lead to code duplication.
> 
> We can cross that bridge when we come to it.

Well, no. It's backwards to make a bridge in one place when everyone
agrees it needs to be moved somewhere else. I mean [5] is a generic
issue and test/py/tests/test_net_boot.py or some other test we already
have which tests booting an OS should confirm that we've quiesced
devices before moving on. And as a bonus it's in python where dealing
with strings doesn't suck.

> 
> >
> > We already have function _log() which is variadic.
> >
> > Simon could write a new log driver that parses the `format` parameter
> > and saves the binary data in an appropriate format for analysis by the
> > unit tests:
> >
> > * For %s the driver should save the string and not the address of the
> > string.
> > * For %pD the driver should save the device path instead of the pointer.
> > * ...
> >
> > Some changes to the log driver interface will be needed to pass the
> > variadic arguments instead of the formatted message.
> 
> Perhaps the word 'log' is confusing people. But the above suggestion
> is quite a complicated way of handling things. We have no way to
> decode printf() strings in this way. See log_dispatch() for how this
> is handled today. It uses sprintf(). Trying to test based on text
> output would be very clumsy (lots of regexes and sscan() calls?) and
> result in a huge amount of parsing code, highly dependent on the
> printf() format, etc.
> 
> I very-much doubt that would produce a useful implementation, but if
> you would like to try it out then I would be happy to look at it.
> 
> I mentioned this several times, but even if we did go that way, we
> only have logging on the external calls, so much of the EFI-memory
> allocation in U-Boot would not be logged.
> 
> Regards,
> Simon
> 
> [5] https://patchwork.ozlabs.org/project/uboot/patch/20250106144755.3054780-9-sjg@chromium.org/

Yes, calling this a "log" when it's intended for capturing information
for tests got some of this off on the wrong track. But that also helps
explain now that this is still on the wrong track and should instead be
following normal design practices for testing and expanding existing
infrastructure and not inventing a new everything. So if you don't like
Heinrich's suggestion, take a look at Caleb's suggestion. And if you
don't like Caleb's suggestion, go put this in a topic branch you can
merge when you need to debug some problem that seemingly nothing else
will catch.

-- 
Tom

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

  reply	other threads:[~2025-01-08 19:15 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-01-06 14:47 [PATCH 0/8] efi_loader: Complete the bootflow_efi() test Simon Glass
2025-01-06 14:47 ` [PATCH 1/8] sandbox: Make USB controller as having active DMA Simon Glass
2025-01-06 14:47 ` [PATCH 2/8] efi_loader: Fix display of addresses in log Simon Glass
2025-01-07 13:37   ` Ilias Apalodimas
2025-01-07 13:57     ` Simon Glass
2025-01-08  7:12       ` Ilias Apalodimas
2025-01-08 17:03         ` Simon Glass
2025-01-06 14:47 ` [PATCH 3/8] efi_loader: Return the memory map in pointer format Simon Glass
2025-01-06 14:47 ` [PATCH 4/8] efi_loader: Correct bounce-buffer setup Simon Glass
2025-01-17 10:33   ` Ilias Apalodimas
2025-01-18  4:35     ` Simon Glass
2025-01-06 14:47 ` [PATCH 5/8] efi_loader: Check memory allocations in bootflow_efi test() Simon Glass
2025-01-06 14:47 ` [PATCH 6/8] efi_loader: Update testapp to get memory map correctly Simon Glass
2025-01-06 14:47 ` [PATCH 7/8] efi_loader: Check that the bootflow is not removed by app Simon Glass
2025-01-06 14:47 ` [PATCH 8/8] efi_loader: Test that active-DMA devices are removed Simon Glass
2025-01-06 17:00 ` [PATCH 0/8] efi_loader: Complete the bootflow_efi() test Heinrich Schuchardt
2025-01-07 12:15   ` Simon Glass
2025-01-07 13:11     ` Heinrich Schuchardt
2025-01-07 13:57       ` Simon Glass
2025-01-07 15:11         ` Tom Rini
2025-01-07 15:47           ` Heinrich Schuchardt
2025-01-08 13:39             ` Caleb Connolly
2025-01-08 17:02               ` Simon Glass
2025-01-08 17:02             ` Simon Glass
2025-01-08 19:14               ` Tom Rini [this message]
2025-01-09 15:02                 ` Simon Glass
2025-01-09 16:51                   ` Tom Rini
2025-01-10 13:40                     ` Simon Glass
2025-01-10 16:48                       ` Tom Rini
2025-01-13 19:01                         ` Simon Glass
2025-01-13 20:20                           ` Tom Rini
2025-01-18  4:35                             ` Simon Glass
2025-01-18 17:03                               ` Tom Rini
2025-01-18 17:15                               ` Tom Rini
2025-01-31  0:10 ` 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=20250108191457.GQ3476@bill-the-cat \
    --to=trini@konsulko.com \
    --cc=glaroque@baylibre.com \
    --cc=ilias.apalodimas@linaro.org \
    --cc=marex@denx.de \
    --cc=mkorpershoek@baylibre.com \
    --cc=sjg@chromium.org \
    --cc=sughosh.ganu@linaro.org \
    --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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox