Re: Pull request efi-2024-07-rc3

2024-05-18 Thread Fiona Klute
Hi Heinrich, Am 18.05.24 um 22:51 schrieb Heinrich Schuchardt: Dear Tom, The following changes since commit 3be9f399e911cfc437a37ac826441f1d96da1c9b:   Init virtio before loading ENV from EXT4 or FAT (2024-05-17 13:18:43 -0600) are available in the Git repository at:   https://source.denx.

Re: Pull request efi-2024-07-rc3

2024-05-18 Thread Heinrich Schuchardt
On 5/18/24 23:04, Fiona Klute wrote: Hi Heinrich, Am 18.05.24 um 22:51 schrieb Heinrich Schuchardt: Dear Tom, The following changes since commit 3be9f399e911cfc437a37ac826441f1d96da1c9b:    Init virtio before loading ENV from EXT4 or FAT (2024-05-17 13:18:43 -0600) are available in the Git r

Pull request efi-2024-07-rc3

2024-05-18 Thread Heinrich Schuchardt
Dear Tom, The following changes since commit 3be9f399e911cfc437a37ac826441f1d96da1c9b: Init virtio before loading ENV from EXT4 or FAT (2024-05-17 13:18:43 -0600) are available in the Git repository at: https://source.denx.de/u-boot/custodians/u-boot-efi.git tags/efi-2024-07-rc3 for you t

Re: [PATCH 2/3] EFI: Make EFI loader depend sandbox HOST_ARCH

2024-05-18 Thread Heinrich Schuchardt
On 5/18/24 00:09, Jiaxun Yang wrote: Since EFI loader on sandbox requires some architecture code, make it depend on HOST_ARCH to ensure it's only compiled on desired host. Signed-off-by: Jiaxun Yang --- lib/efi_loader/Kconfig | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff

Re: [PATCH v2 1/2] doc: Detailed example for netconsole setup

2024-05-18 Thread Tony Dinh
Hi Fiona, Added Heinrich to CC list. On Sat, May 18, 2024 at 4:05 AM Fiona Klute wrote: > > Hi Tony! > > Am 16.05.24 um 21:28 schrieb Tony Dinh: > > On Thu, May 16, 2024 at 3:43 AM Fiona Klute wrote: > >> > >> This adds details that I would have liked to have readily available, > >> in particul

[RESEND PATCH 4/4] omap3: igep0x00: Migrate to use upstream DT

2024-05-18 Thread Javier Martinez Canillas
Enable OF_UPSTREAM to use upstream DT and add a ti/omap/ prefix to the DEFAULT_DEVICE_TREE config option. That way, a DTS from the upstream dts/upstream/src/ directory is used instead of the arch/$(ARCH)/dts/ directory. These in turn are removed. Signed-off-by: Javier Martinez Canillas --- arc

[RESEND PATCH 3/4] omap3: igep0x00: Update for DM SPL support

2024-05-18 Thread Javier Martinez Canillas
This change is heavily based on commit e0cc7df9fdf2 ("omap3_beagle: Update for DM SPL support"), that did the same update for the OMAP3 Beagle board. Signed-off-by: Javier Martinez Canillas --- arch/arm/dts/omap3-igep0020-u-boot.dtsi | 14 ++ board/isee/igep00x0/igep00x0.c

[RESEND PATCH 2/4] omap3: igep0x00: Drop unused SPI support

2024-05-18 Thread Javier Martinez Canillas
There are no SPI peripherals in neither the IGEPv2 board nor the IGEP COM Module, so there's no reason to have this enabled in the boards defconfig. Signed-off-by: Javier Martinez Canillas --- configs/igep00x0_defconfig | 3 --- 1 file changed, 3 deletions(-) diff --git a/configs/igep00x0_defc

[RESEND PATCH 1/4] omap3: igep00x0: Increase malloc() pool size

2024-05-18 Thread Javier Martinez Canillas
The IGEPv2 board boot started to fail since the commit afd4f15a39de ("spi: omap3_spi: Read platform data in ofdata_to_platdata()"). Because this made the OMAP3 SPI controller driver to allocate its platform data before doing a relocation, but the igep0x00 config sets this pool size to just 1 KiB.

[RESEND PATCH 0/4] omap3: igep0x00: Fix boot failure and modernize the boards support

2024-05-18 Thread Javier Martinez Canillas
Hello, I noticed that the IGEPv2 board did not boot anymore with mainline U-Boot. This was caused by a driver change to allocate its platform data before relocation and U-Boot not having enough pre-relocation heap size for this. This series fixes this issue and also makes the board support more m

Re: [PATCH v2 1/2] doc: Detailed example for netconsole setup

2024-05-18 Thread Fiona Klute
Hi Tony! Am 16.05.24 um 21:28 schrieb Tony Dinh: On Thu, May 16, 2024 at 3:43 AM Fiona Klute wrote: This adds details that I would have liked to have readily available, in particular how to activate the network interface before enabling netconsole, and how to integrate netconsole so you can u

Re: [PATCH 1/2] doc: Detailed example for netconsole setup

2024-05-18 Thread Fiona Klute
Am 17.05.24 um 09:32 schrieb Heinrich Schuchardt: On 5/14/24 22:20, Fiona Klute wrote: This adds details that I would have liked to have readily available, in particular how to activate the network interface before enabling netconsole, and how to integrate netconsole so you can use the U-Boot pr

[PATCH v3 2/2] doc: Update netconsole examples, mention stderr

2024-05-18 Thread Fiona Klute
Stderr was missing from the initial description and example. As I understand the env command documentation the subcommand style is preferred, though the old format is still fully supported. Signed-off-by: Fiona Klute Reviewed-by: Tony Dinh Reviewed-by: Heinrich Schuchardt --- Changes in v2: *

[PATCH v3 1/2] doc: Detailed example for netconsole setup

2024-05-18 Thread Fiona Klute
This adds details that I would have liked to have readily available, in particular how to activate the network interface before enabling netconsole, and how to integrate netconsole so you can use the U-Boot prompt. Signed-off-by: Fiona Klute Reviewed-by: Tony Dinh --- Changes in v2: * Include st

[RESEND PATCH 4/4] omap3: igep0x00: Migrate to use upstream DT

2024-05-18 Thread Javier Martinez Canillas
From: Javier Martinez Canillas Enable OF_UPSTREAM to use upstream DT and add a ti/omap/ prefix to the DEFAULT_DEVICE_TREE config option. That way, a DTS from the upstream dts/upstream/src/ directory is used instead of the arch/$(ARCH)/dts/ directory. These in turn are removed. Signed-off-by: Ja

[RESEND PATCH 2/4] omap3: igep0x00: Drop unused SPI support

2024-05-18 Thread Javier Martinez Canillas
From: Javier Martinez Canillas There are no SPI peripherals in neither the IGEPv2 board nor the IGEP COM Module, so there's no reason to have this enabled in the boards defconfig. Signed-off-by: Javier Martinez Canillas --- configs/igep00x0_defconfig | 3 --- 1 file changed, 3 deletions(-) d

[RESEND PATCH 3/4] omap3: igep0x00: Update for DM SPL support

2024-05-18 Thread Javier Martinez Canillas
From: Javier Martinez Canillas This change is heavily based on commit e0cc7df9fdf2 ("omap3_beagle: Update for DM SPL support"), that did the same update for the OMAP3 Beagle board. Signed-off-by: Javier Martinez Canillas --- arch/arm/dts/omap3-igep0020-u-boot.dtsi | 14 ++ board/i

[RESEND PATCH 1/4] omap3: igep00x0: Increase malloc() pool size

2024-05-18 Thread Javier Martinez Canillas
From: Javier Martinez Canillas The IGEPv2 board boot started to fail since the commit afd4f15a39de ("spi: omap3_spi: Read platform data in ofdata_to_platdata()"). Because this made the OMAP3 SPI controller driver to allocate its platform data before doing a relocation, but the igep0x00 config set

[RESEND PATCH 0/4] omap3: igep0x00: Fix boot failure and modernize the boards support

2024-05-18 Thread Javier Martinez Canillas
Hello, I noticed that the IGEPv2 board did not boot anymore with mainline U-Boot. This was caused by a driver change to allocate its platform data before relocation and U-Boot not having enough pre-relocation heap size for this. This series fixes this issue and also makes the board support more m

Re: [PATCH 1/3] sandbox: Move HOST_ARCH detection to Kconfig

2024-05-18 Thread Jiaxun Yang
在2024年5月17日五月 下午11:09,Jiaxun Yang写道: [...] > diff --git a/lib/efi_selftest/efi_selftest_miniapp_exception.c > b/lib/efi_selftest/efi_selftest_miniapp_exception.c > index f668cdac4ab2..2dfbb7c74075 100644 > --- a/lib/efi_selftest/efi_selftest_miniapp_exception.c > +++ b/lib/efi_selftest/efi_self

Re: [PATCH RFC] doc: Document address spaces used by U-Boot

2024-05-18 Thread Jiaxun Yang
在2024年5月18日五月 上午9:08,Heinrich Schuchardt写道: > On 5/17/24 13:45, Jiaxun Yang wrote: [...] Hi Heinrich, Ah sorry I should really spell check it before sending it off It was copied directly from my personal note. > %s/optinos/options/ > > Relating to gd->bd->bi_dram[] or LMB just adds a laye

Re: [PATCH v2] cmd: move ELF load and boot to lib/elf.c

2024-05-18 Thread Heinrich Schuchardt
On 5/13/24 20:17, Maxim Moskalets wrote: From: Maxim Moskalets Loading and running the ELF image is the responsibility of the library and should not be associated with the command line interface. It is also required to run ELF images from FIT with the bootm command so as not to depend on the c

Re: [PATCH v2] imx: hab: add documentation about the required keys/certs

2024-05-18 Thread Heinrich Schuchardt
On 5/16/24 10:36, Claudius Heine wrote: For CST to find the certificates and keys for signing, some keys and certs need to be copied into the u-boot build directory. Signed-off-by: Claudius Heine --- Hi, this patch documents some changes of the '<20240503010518.263458-1-ma...@denx.de>' patchse

Re: [PATCH RFC] doc: Document address spaces used by U-Boot

2024-05-18 Thread Heinrich Schuchardt
On 5/17/24 13:45, Jiaxun Yang wrote: This serves as a reference for developers on how to handle all those address spaces for U-Boot. Signed-off-by: Jiaxun Yang --- Hi all, I was trying to clear up long standing myth of virtual address vs physical adddress mapping on MIPS by having a clear divi

Re: [PATCH v2 3/3] cyclic: make clients embed a struct cyclic_info in their own data structure

2024-05-18 Thread Stefan Roese
Hi Rasmus, On 5/16/24 09:53, Rasmus Villemoes wrote: There are of course not a whole lot of examples in-tree yet, but before they appear, let's make this API change: Instead of separately allocating a 'struct cyclic_info', make the users embed such an instance in their own structure, and make th