Re: [PATCH 1/1] arm: separate .data and .text sections of EFI binaries

2024-02-24 Thread Heinrich Schuchardt
On 2/16/24 11:35, Ilias Apalodimas wrote: Hi Heinrich, [...] } + .rela.dyn : { *(.rela.dyn) } + .rela.plt : { *(.rela.plt) } + .rela.got : { *(.rela.got) } + .rela.data : { *(.rela.data) *(.rela.data*) } Why are we switching from Rel to Rela? This was wrong

Re: [PATCH v2 2/2] arm: dts: k3-am642-evm/sk: Enable OSPI support in SPL

2024-02-24 Thread Tom Rini
On Fri, Feb 23, 2024 at 06:17:02PM -0600, Jonathan Humphreys wrote: > Add bootph DT tags to enable OSPI in SPL. > Set OSPI regs for R5 SPL to address OSPI's boot region. > > Signed-off-by: Jonathan Humphreys > --- > arch/arm/dts/k3-am642-evm-u-boot.dtsi | 16 > arch/arm/dts/k3-a

Re: [PATCH v2 2/2] arm: dts: k3-am642-evm/sk: Enable OSPI support in SPL

2024-02-24 Thread Jon Humphreys
Tom Rini writes: > On Fri, Feb 23, 2024 at 06:17:02PM -0600, Jonathan Humphreys wrote: >> Add bootph DT tags to enable OSPI in SPL. >> Set OSPI regs for R5 SPL to address OSPI's boot region. >> >> Signed-off-by: Jonathan Humphreys >> --- >> arch/arm/dts/k3-am642-evm-u-boot.dtsi | 16 ++

Re: [PATCH v4 1/2] imx: imxrt1050-evk: Add support for SPI flash booting

2024-02-24 Thread Fabio Estevam
On Tue, Feb 20, 2024 at 2:20 PM Fabio Estevam wrote: > Please fix both issues and submit a v5. I have fixed these issues myself and applied it, thanks.

Re: [PATCH] board: imx6dl-sielaff: spl.c: Remove multiline string

2024-02-24 Thread Fabio Estevam
On Tue, Feb 20, 2024 at 6:01 AM Frieder Schrempf wrote: > > From: Frieder Schrempf > > Remove the malformed multiline string and fix the checkpatch warning. > > Reported-by: Dan Carpenter > Signed-off-by: Frieder Schrempf Applied, thanks.

Re: [PATCH 0/5] imx93_var_som: Add USB support.

2024-02-24 Thread Fabio Estevam
On Tue, Feb 20, 2024 at 7:35 AM Mathieu Othacehe wrote: > > Hello, > > This series adds USB support for the imx93_var_som board. It depends on: > https://lists.denx.de/pipermail/u-boot/2024-February/546203.html > > It also adds support for fastboot and EFI partitions. > > Thanks, > > Mathieu > >

Re: [PATCH 0/3] Enable IMX_TMU driver for PHYTEC boards

2024-02-24 Thread Fabio Estevam
On Tue, Feb 20, 2024 at 7:43 AM Benjamin Hahn wrote: > > Enable IMX_TMU driver to prevent the system from booting when it is too > hot. > > Signed-off-by: Benjamin Hahn > --- > Benjamin Hahn (3): > phycore-imx8mp_defconfig: Enable CONFIG_IMX_TMU > phycore-imx8mm_defconfig: Enable CONF

Re: [PATCH] imx53-qsb: Convert to watchdog driver model

2024-02-24 Thread Fabio Estevam
On Wed, Feb 21, 2024 at 2:39 PM Fabio Estevam wrote: > > Commit 68dcbdd594d4 ("ARM: imx: Add weak default reset_cpu()") caused > the 'reset' command in U-Boot to not cause a board reset. > > Fix it by switching to the watchdog driver model via sysreset, which > is the preferred method for implemen

Re: [PATCH 1/1] opos6uldev: Convert to watchdog driver model

2024-02-24 Thread Fabio Estevam
On Fri, Feb 23, 2024 at 8:28 AM Sébastien Szymanski wrote: > > Commit 68dcbdd594d4 ("ARM: imx: Add weak default reset_cpu()") caused > the 'reset' command in U-Boot to not cause a board reset. > > Fix it by switching to the watchdog driver model via sysreset, which > is the preferred method for im

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

2024-02-24 Thread Fabio Estevam
ository at: https://gitlab.denx.de/u-boot/custodians/u-boot-imx.git tags/u-boot-imx-master-20240224 for you to fetch changes up to 7c76b1b91bf67cd09fdf5dbd71590f9e580590fa: opos6uldev: Convert to watchdog driver model (2024-02-24 16:29:24 -0300) u-boot-imx-maste

[PATCH v2 1/3] mmc: Convert hs400_tuning flag from u8 to bool

2024-02-24 Thread Marek Vasut
This hs400_tuning is a flag, make it bool. No functional change. This will be useful in the following patch, which adds another more generic flag, where the compiler can better use the space now reserved for the u8 to store more flags in it. Signed-off-by: Marek Vasut --- Cc: Hai Pham Cc: Jaehoo

[PATCH v2 2/3] mmc: Add generic tuning flag

2024-02-24 Thread Marek Vasut
Set generic mmc->tuning flag when performing tuning to indicate this condition to drivers. Drivers may use this to bypass various checks during tuning. Signed-off-by: Marek Vasut --- Cc: Hai Pham Cc: Jaehoon Chung Cc: Nobuhiro Iwamatsu Cc: Paul Barker Cc: Peng Fan Cc: Sean Anderson Cc: Tom

[PATCH v2 3/3] mmc: renesas-sdhi: Do not access SCC during tuning in send_cmd callback

2024-02-24 Thread Marek Vasut
Do not access SCC when sending commands during tuning operation as that will disrupt the tuning operation. The tuning operation is adjusting the SCC settings itself in execute_tuning callback. When renesas_sdhi_execute_tuning() is called by the MMC core code, a loop which consists of renesas_sdhi_

Re: [PATCH 1/1] arm: separate .data and .text sections of EFI binaries

2024-02-24 Thread Heinrich Schuchardt
On 2/24/24 10:16, Heinrich Schuchardt wrote: On 2/16/24 11:35, Ilias Apalodimas wrote: Hi Heinrich, [...] } +   .rela.dyn : { *(.rela.dyn) } +   .rela.plt : { *(.rela.plt) } +   .rela.got : { *(.rela.got) } +   .rela.data : { *(.rela.data) *(.rela.data*) } Why are w

[PATCH] rockchip: rock64: store env in SPI flash

2024-02-24 Thread Ben Wolsieffer
Currently, U-Boot attempts to store the environment in MMC 0, which doesn't work when an eMMC is used without an SD card. There is an SPI flash chip on the board, so use that instead which should work in all cases. Additionally, this brings the Rock64 into line with the RockPro64. Signed-off-by: B

[PATCH RESEND] serial: pl01x: set baudrate when probing

2024-02-24 Thread Yang Xiwen via B4 Relay
From: Yang Xiwen It is found that when DM is enabled, only generic init function is called in .probe(). Baudrate is never honored. Add a function call to .setbrg() when probing so that we can update the baudrate of the serial device. Signed-off-by: Yang Xiwen --- drivers/serial/serial_pl01x.c

Re: [PATCH v2 3/3] arm: dts: k3-j721e-sk: Remove OSPI phypattern partition

2024-02-24 Thread Kumar, Udit
Thanks Jon On 2/24/2024 5:53 AM, Jonathan Humphreys wrote: The phy calibration pattern partition isn't needed as the Cadence driver isn't calibrating the phys. Please do mention Fixes tag here 58d61fb5a77e ("arm: dts: k3-j721e-sk: Add initial A72 specific dts support") Signed-off-by: Jona

Re: [PATCH v2 1/3] configs: j721e: Enable OSPI memory

2024-02-24 Thread Kumar, Udit
On 2/24/2024 5:53 AM, Jonathan Humphreys wrote: Set config values to enable OSPI functionality. Signed-off-by: Jonathan Humphreys --- configs/j721e_evm_a72_defconfig | 7 +++ configs/j721e_evm_r5_defconfig | 6 ++ 2 files changed, 13 insertions(+) diff --git a/configs/j721e_evm_

Re: [PATCH v2 2/3] arm: mach-k3: j721e: Enable OSPI boot

2024-02-24 Thread Kumar, Udit
Thanks For fixing this On 2/24/2024 5:53 AM, Jonathan Humphreys wrote: Add boot ROM XSPI bootmode, and set to BOOT_DEVICE_SPI if detected. Signed-off-by: Jonathan Humphreys --- arch/arm/mach-k3/include/mach/j721e_spl.h | 5 +++-- arch/arm/mach-k3/j721e_init.c | 3 ++- 2 files c

Re: Raspberry Pi 3b Plus USB-Ethernet lan78xx_eth address not set

2024-02-24 Thread Anand Moon
Hi, On Sat, 24 Feb 2024 at 01:56, Sourabh Hegde Ramu wrote: > > Hello, > > I have a Raspberry Pi 3B Plus which I want to integrate with U-boot > (v2023.10) . > > I am using rpi_3_32b_defconfig to generate u-boot.bin. But while booting I > am getting below error > > Loading Environment from FAT...

Re: Raspberry Pi 3b Plus USB-Ethernet lan78xx_eth address not set

2024-02-24 Thread Sourabh Hegde Ramu
Hi Anand, Thanks for the update. Yes, I can set it manually. But this should be done by u-boot, right? Is there any reason why this is not happening on Pi 3b plus? I have other Raspberry Pi (4 & 3b) and they are working fine. Also, is this MAC address for LAN75xx or LAN78xx? The error message sh