[PATCH] bios_emulator: fix incorrect printing of address in "call near immediate"

2024-11-30 Thread Yuri Zaporozhets
In the x86emuOp_call_near_IMM() function the address of CALL is printed incorrectly when jumping backwards. For example, the correct disassemble of the bytes below would be: E8DE E8DBFFcall 0xe8bc (verified by ndisasm). But instead the address is printed as "e8bc". That's bec

Re: [PATCH] powerpc/t2080qds: remove spurious x permission from README file

2024-11-30 Thread Tom Rini
On Mon, 25 Nov 2024 10:37:00 +0100, Rasmus Villemoes wrote: > It doesn't make sense for a README file to be executable. Remove that > bit. > > Applied to u-boot/master, thanks! -- Tom

Re: [PATCH] Makefile: avoid non-standard sed expressions

2024-11-30 Thread Tom Rini
On Tue, 26 Nov 2024 20:12:14 +0100, Mark Kettenis wrote: > The '?' that is used in the sed expression that determines MK_ARCH > is part of the extended regular expression syntax, but the default > behaviour of sed as specified by POSIX is to use only basic regular > expression syntax. Use the equ

Re: [PATCH] arm: dts: socfpga: remove spurious execute permission from dt files

2024-11-30 Thread Tom Rini
On Mon, 25 Nov 2024 10:33:22 +0100, Rasmus Villemoes wrote: > It doesn't make sense for these files to have the x bit set. It was, > probably accidentally, added in: > > Applied to u-boot/master, thanks! -- Tom

Re: [PATCH] net: lwip: wget: fix legacy syntax

2024-11-30 Thread Tom Rini
On Tue, 26 Nov 2024 15:45:06 +0100, Jerome Forissier wrote: > Commit 356011f7ac25 ("lwip: fix code style issues") has inadvertently > broken the support for the legacy syntax: > > => wget 192.168.0.16:test.bin > invalid uri, no file path > Invalid URL. Use http(s):// > > [...] Applied to u-b

Re: [PATCH 05/13] efi_loader: Move some memory-function comments to header

2024-11-30 Thread Simon Glass
Hi Tom, On Wed, 27 Nov 2024 at 15:11, Tom Rini wrote: > > On Wed, Nov 27, 2024 at 07:56:11AM -0700, Simon Glass wrote: > > Hi Tom, > > > > On Wed, 27 Nov 2024 at 07:15, Tom Rini wrote: > > > > > > On Wed, Nov 27, 2024 at 06:07:58AM -0700, Simon Glass wrote: > > > > Hi, > > > > > > > > On Tue, 26

[PATCH v1] doc: remove redundant Rockchip bindings

2024-11-30 Thread Johan Jonker
Most Rockchip device tree related bindings are converted to YAML and available in the U-boot /dts/upstream/Bindings/ directory. Remove all redundant U-boot entries. Signed-off-by: Johan Jonker --- .../clock/rockchip,rk3188-cru.txt | 61 --- .../clock/rockchip,rk3288-cru.txt

Re: [PATCH 2/2] boot: android: Add bootconfig support

2024-11-30 Thread Simon Glass
Hi Guillaume, On Thu, 28 Nov 2024 at 03:15, Guillaume La Roque wrote: > > For android vendor boot image version 4 bootconfig is mandatory.[1] > > In the android_image_get_ramdisk function, after copying both vendor and > boot ramdisks, we extract all androidboot.* entries from the kernel > comman

Re: [v6 01/12] sandbox: efi_loader: Correct use of addresses as pointers

2024-11-30 Thread Simon Glass
Hi Tom, On Wed, 27 Nov 2024 at 14:14, Tom Rini wrote: > > On Wed, Nov 27, 2024 at 02:09:42PM -0700, Simon Glass wrote: > > Hi Heinrich, > > > > On Wed, 27 Nov 2024 at 11:40, Heinrich Schuchardt > > wrote: > > > > > > On 27.11.24 18:17, Tom Rini wrote: > > > > From: Simon Glass > > > > > > > >

Re: [PATCH 06/13] efi_loader: Use the enum for memory type

2024-11-30 Thread Simon Glass
Hi Mark, On Wed, 27 Nov 2024 at 06:23, Mark Kettenis wrote: > > > From: Simon Glass > > Date: Wed, 27 Nov 2024 06:07:05 -0700 > > > > Hi Heinrich, > > > > On Tue, 26 Nov 2024 at 08:37, Simon Glass wrote: > > > > > > Hi Heinrich, > > > > > > On Tue, 26 Nov 2024 at 02:44, Heinrich Schuchardt >

Re: [PATCH 00/13] efi: Tidy up confusion between pointers and addresses

2024-11-30 Thread Simon Glass
Hi Mark, On Wed, 27 Nov 2024 at 06:52, Mark Kettenis wrote: > > > From: Simon Glass > > Date: Wed, 27 Nov 2024 06:08:10 -0700 > > Hi Simon, > > > Hi Tom, > > > > On Tue, 26 Nov 2024 at 09:08, Tom Rini wrote: > > > > > > On Tue, Nov 26, 2024 at 08:39:05AM -0700, Simon Glass wrote: > > > > Hi Hei

Re: [PATCH 1/2] test: add command to 'Lab failure' timeout message

2024-11-30 Thread Tom Rini
On Sat, 23 Nov 2024 22:29:21 +0100, Heinrich Schuchardt wrote: > When a timeout occurs while executing a command a 'Lab failure' message is > written and testing is stopped. The user is left in the dark about the > failure cause. > > ! _pytest.outcomes.Exit: Lab failure: Marking connection ba

Re: [PATCH v4] cmd: add a fetch utility

2024-11-30 Thread Tom Rini
On Fri, 15 Nov 2024 01:47:29 +0100, Caleb Connolly wrote: > Add a small utility for displaying some information about U-Boot and the > hardware it's running on in a similar fashion to the popular neofetch > tool for Linux [1]. > > While the output is meant to be useful, it should also be pleasing

Re: [PATCH v2 0/8] test: Avoid needing sudo for image-creation

2024-11-30 Thread Tom Rini
On Thu, 21 Nov 2024 15:32:06 -0700, Simon Glass wrote: > This series rebases and tidies up a series sent by Richard Weinberger > to use unpriviliged code to build the test images. > > Link: https://patchwork.ozlabs.org/project/uboot/list/?series=417786 > > Changes in v2: > - Fix a few pylint err

Re: [PATCH v2] efi_loader: Add U-Boot memory to the EFI memory map

2024-11-30 Thread Tom Rini
On Fri, 29 Nov 2024 19:08:13 +0200, Ilias Apalodimas wrote: > This reverts commit ("commit a68c9ac5d8af ("efi_memory: do not add U-Boot > memory to the memory map") > This code was removed when the EFI subsystem started using LMB calls for > the reservations. In hindsight it unearthed two problem

Re: [GIT PULL] Please pull u-boot-imx-master-20241130

2024-11-30 Thread Tom Rini
024-11-27 > 07:34:17 -0600) > > are available in the Git repository at: > > https://gitlab.denx.de/u-boot/custodians/u-boot-imx.git > tags/u-boot-imx-master-20241130 > > for you to fetch changes up to 4835efca7a004fab62853f3e6bbd2854d1df503b: > > ARM: dts: imx:

Re: [PATCH] CI: Add gitlab tags to builds which can use all CPUs

2024-11-30 Thread Simon Glass
Hi Tom, On Thu, 28 Nov 2024 at 10:01, Tom Rini wrote: > > On Thu, Nov 28, 2024 at 09:00:10AM -0700, Simon Glass wrote: > > > Most gitlab runners are mostly idle at present and could happily run > > several jobs at once. > > > > There are a few exceptions, such as the world builds. > > > > Add a '

Re: [PATCH] CI: Add gitlab tags to builds which can use all CPUs

2024-11-30 Thread Simon Glass
Hi Tom, On Thu, 28 Nov 2024 at 10:01, Tom Rini wrote: > > On Thu, Nov 28, 2024 at 09:00:10AM -0700, Simon Glass wrote: > > > Most gitlab runners are mostly idle at present and could happily run > > several jobs at once. > > > > There are a few exceptions, such as the world builds. > > > > Add a '

Re: [PATCH v2] efi_loader: Add U-Boot memory to the EFI memory map

2024-11-30 Thread Tom Rini
On Sat, Nov 30, 2024 at 08:13:24AM +0200, Ilias Apalodimas wrote: > Hi Tom > > On Sat, 30 Nov 2024 at 05:42, Tom Rini wrote: > > > > On Fri, Nov 29, 2024 at 04:27:40PM -0700, Simon Glass wrote: > > > (Sorry, that was supposed to be sent to Ilias) > > > > > > - Simon > > > > > > On Fri, 29 Nov 202

Re: [PATCH] ARM: dts: imx: Enable PCIe and NVMe on Data Modul i.MX8M Mini eDM SBC

2024-11-30 Thread Fabio Estevam
On Thu, Nov 28, 2024 at 9:36 PM Marek Vasut wrote: > > Enable PCIe/NVMe support on Data Modul i.MX8M Mini eDM SBC. Except for > the configuration options which are enabled, add slight adjustment > to board u-boot.dtsi, which is necessary as there is currently no > driver for the I2C PCIe clock gen

Re: [PATCH] ARM: imx: Replace YModem with SDP on Data Modul i.MX8M Mini eDM SBC SPL

2024-11-30 Thread Fabio Estevam
On Thu, Nov 28, 2024 at 9:17 PM Marek Vasut wrote: > > The YModem support in SPL was never really used on this device, > the SDP support is much more convenient on i.MX8M Mini based > hardware. Replace the YModem support with SDP support. > > The SDP can be utilized by forcing the board into SDP b

Re: [PATCH v2 1/4] ARM: dts: imx: Make DRAM coding GPIOs available before relocation on Data Modul i.MX8M Mini/Plus eDM SBC

2024-11-30 Thread Fabio Estevam
On Thu, Nov 28, 2024 at 9:14 PM Marek Vasut wrote: > > The DRAM configuration GPIO straps must be accessible in SPL and before > relocation because the GPIOs are sampled both in U-Boot SPL as well as early > on in U-Boot proper. The already present bootph-pre-ram DT property made the > GPIO contro

[GIT PULL] Please pull u-boot-imx-master-20241130

2024-11-30 Thread Fabio Estevam
/custodians/u-boot-imx.git tags/u-boot-imx-master-20241130 for you to fetch changes up to 4835efca7a004fab62853f3e6bbd2854d1df503b: ARM: dts: imx: Enable PCIe and NVMe on Data Modul i.MX8M Mini eDM SBC (2024-11-29 09:20:47 -0300) u-boot-imx-master-20241130 -- CI: https