Pull request: Please pull u-boot-imx-20240115

2024-01-22 Thread Fabio Estevam
bit-imx6ul to CONFIG_DM_SERIAL. - Fix 'reset' command on wandboard. -------- Fabio Estevam (3): imx8m: Enable LTO by default wandboard: Convert to watchdog driver model pico-dwarf/hobbit-imx6ul: Convert to CONFIG_DM_SERIAL Marek Vasut (3):

Re: [PATCH] ARM: imx: Enable kaslrseed command on DH i.MX8M Plus DHCOM

2024-01-22 Thread Fabio Estevam
On Fri, Jan 19, 2024 at 9:36 PM Marek Vasut wrote: > > Linux 6.6.y with KASLR enabled would print the following message on boot: > " > KASLR disabled due to lack of seed > " > Enable the 'kaslrseed' command so a random number seed can be pulled > from CAAM and inserted into the /chosen node

Re: [PATCH] pico-dwarf/hobbit-imx6ul: Convert to CONFIG_DM_SERIAL

2024-01-22 Thread Fabio Estevam
On Fri, Jan 19, 2024 at 4:41 PM Fabio Estevam wrote: > > The conversion to CONFIG_DM_SERIAL is mandatory, so select > this option. > > Signed-off-by: Fabio Estevam Applied, thanks.

Re: [PATCH] wandboard: Convert to watchdog driver model

2024-01-22 Thread Fabio Estevam
On Fri, Jan 19, 2024 at 2:25 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

Re: [PATCH v2] ARM: imx: Configure GIC clock parent on Data Modul i.MX8M Plus eDM SBC

2024-01-22 Thread Fabio Estevam
On Fri, Jan 19, 2024 at 1:09 PM Marek Vasut wrote: > > The CONFIG_SPL_BOARD_INIT lets SPL common code call spl_board_init() > during the SPL start up. On this particular system, spl_board_init() > is used to reconfigure GIC clock parent to PLL2 500M, which is the > configuration expected by the

Re: [PATCH 1/2] imx8m: Enable LTO by default

2024-01-22 Thread Fabio Estevam
On Thu, Jan 18, 2024 at 12:06 PM Fabio Estevam wrote: > > From: Fabio Estevam > > In an attempt to select ARMV8_SPL_EXCEPTION_VECTORS, the SPL size > could not fit into the internal SRAM of some imx8m targets: > >aarch64: + imx8mm_phg > +aarch64-linux-ld

Re: [PATCH] ARM: imx: Enable kaslrseed command on DH i.MX8M Plus DHCOM

2024-01-22 Thread Fabio Estevam
On Fri, Jan 19, 2024 at 9:36 PM Marek Vasut wrote: > > Linux 6.6.y with KASLR enabled would print the following message on boot: > " > KASLR disabled due to lack of seed > " > Enable the 'kaslrseed' command so a random number seed can be pulled > from CAAM and inserted into the /chosen node

Re: [PATCH] ARM: imx: Enable kaslrseed command on DH i.MX8M Plus DHCOM

2024-01-20 Thread Fabio Estevam
inserted into the /chosen node 'kaslr-seed' property of > Linux kernel DT before boot, thus letting KASLR work properly. > > Signed-off-by: Marek Vasut Reviewed-by: Fabio Estevam

Re: [PATCH v2] ARM: imx: Configure GIC clock parent on Data Modul i.MX8M Plus eDM SBC

2024-01-20 Thread Fabio Estevam
2) set by ROM for > ND VDD_SOC. > > Signed-off-by: Marek Vasut Reviewed-by: Fabio Estevam

Re: [PATCH v2] ARM: imx: Enable SPL_BOARD_INIT on DH i.MX8M Plus DHCOM

2024-01-20 Thread Fabio Estevam
igned-off-by: Marek Vasut Reviewed-by: Fabio Estevam

[PATCH] pico-dwarf/hobbit-imx6ul: Convert to CONFIG_DM_SERIAL

2024-01-19 Thread Fabio Estevam
The conversion to CONFIG_DM_SERIAL is mandatory, so select this option. Signed-off-by: Fabio Estevam --- configs/pico-dwarf-imx6ul_defconfig | 1 + configs/pico-hobbit-imx6ul_defconfig | 1 + 2 files changed, 2 insertions(+) diff --git a/configs/pico-dwarf-imx6ul_defconfig b/configs/pico

[PATCH] wandboard: Convert to watchdog driver model

2024-01-19 Thread Fabio Estevam
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 implementing the watchdog reset. Signed-off-by: Fab

Re: [PATCH] ARM: imx: Enable SPL_BOARD_INIT on DH i.MX8M Plus DHCOM

2024-01-19 Thread Fabio Estevam
On Thu, Jan 18, 2024 at 9:38 PM Marek Vasut wrote: > > The CONFIG_SPL_BOARD_INIT lets SPL common code call spl_board_init() > during the SPL start up. On this particular system, spl_board_init() > is used to reconfigure GIC clock parent to PLL2 500M, which is the > configuration expected by the

Re: [PATCH] ARM: imx: Configure GIC clock parent on Data Modul i.MX8M Plus eDM SBC

2024-01-19 Thread Fabio Estevam
Hi Marek, On Thu, Jan 18, 2024 at 9:47 PM Marek Vasut wrote: > > The CONFIG_SPL_BOARD_INIT lets SPL common code call spl_board_init() > during the SPL start up. On this particular system, spl_board_init() > is used to reconfigure GIC clock parent to PLL2 500M, which is the > configuration

Re: [PATCH 2/2] arm: imx: imx8m: Enable the SError exception

2024-01-18 Thread Fabio Estevam
On Thu, Jan 18, 2024 at 4:08 PM Marek Vasut wrote: > > On 1/18/24 16:06, Fabio Estevam wrote: > > From: Ye Li > > > > To work with commit 2f3c92060dcd ("imx8m: workaround ROM serror") > > we need to enable the SError exception and install vector in SPL.

[PATCH 2/2] arm: imx: imx8m: Enable the SError exception

2024-01-18 Thread Fabio Estevam
From: Ye Li To work with commit 2f3c92060dcd ("imx8m: workaround ROM serror") we need to enable the SError exception and install vector in SPL. Signed-off-by: Ye Li Reviewed-by: Peng Fan Reported-by: Thomas Schaefer Reviewed-by: Fabio Estevam Signed-off-by: Fabio Estevam --- arc

[PATCH 1/2] imx8m: Enable LTO by default

2024-01-18 Thread Fabio Estevam
From: Fabio Estevam In an attempt to select ARMV8_SPL_EXCEPTION_VECTORS, the SPL size could not fit into the internal SRAM of some imx8m targets: aarch64: + imx8mm_phg +aarch64-linux-ld.bfd: u-boot-spl section `__u_boot_list' will not fit in region `.sram' +aarch64-linux-ld.bfd: region

Re: [PATCH] arm: imx: imx8m: Enable the SError exception

2024-01-18 Thread Fabio Estevam
On Fri, Jan 12, 2024 at 3:00 PM Fabio Estevam wrote: > > Hi Ye Li, > > On Fri, Jan 12, 2024 at 4:07 AM Ye Li wrote: > > > > To work with commit 2f3c920(imx8m: workaround ROM serror), > > we need to enable the SError exception and install vector in SPL. > > &g

Re: Could you please help me in resolving the "arch/arm/lib/vectors.S:87: Error: no such instruction: `b reset' ?"

2024-01-17 Thread Fabio Estevam
On Wed, Jan 17, 2024 at 10:26 PM Liu Wang wrote: > > Hi Fabio, > > Thank you for your help. > > Switching to "arm-gnu-toolchain-13.2.Rel1-x86-64-arm-none-eabi" seems a fix > for : > ...gnueabihf-gcc: cannot execute binary file: Exec format error... I would suggest installing the default arm

[OE-core] [PATCH] iputils: Update to 20240117

2024-01-17 Thread Fabio Estevam
From: Fabio Estevam Update to the 20240117 release. Signed-off-by: Fabio Estevam --- .../iputils/{iputils_20231222.bb => iputils_20240117.bb}| 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-extended/iputils/{iputils_20231222.bb => iputils_20240117.b

Re: Could you please help me in resolving the "arch/arm/lib/vectors.S:87: Error: no such instruction: `b reset' ?"

2024-01-17 Thread Fabio Estevam
On Wed, Jan 17, 2024 at 3:25 PM Liu Wang wrote: > 2. You are right. I have not exported the tool chain. > Could you please share me a link to a readme in setting up the tool chain for > Ubuntu cross build environment ? You can do like this: export ARCH=arm export

Re: Could you please help me in resolving the "arch/arm/lib/vectors.S:87: Error: no such instruction: `b reset' ?"

2024-01-17 Thread Fabio Estevam
On Wed, Jan 17, 2024 at 9:27 AM Liu Wang wrote: > > Sir/Madam, > > Could you please help me in resolving the "arch/arm/lib/vectors.S:87: Error: > no such instruction: `b reset' ?" > > Sincerely, > Liu Wang > liuw@liuw-SYS-E100-12T-H:~/Downloads/u-boot$ make cse_ptjob_cb3_r102_defconfig This is

Re: [PATCH] Add Phytec i.MX93 support

2024-01-17 Thread Fabio Estevam
Hi Mathieu, Thanks for the patch. I have added more Phytec folks in case they could help review/test. On Wed, Jan 17, 2024 at 4:53 AM Mathieu Othacehe wrote: > > Add support for the Phytec i.MX93 Segin evaluation kit. The SoM consists > of an NXP i.MX93 dual A55 CPU. The SoM is mounted on a

[OE-core] [PATCH v2] weston: Update to 13.0.0

2024-01-16 Thread Fabio Estevam
From: Fabio Estevam Update to Weston 13.0.0. Remove the following options that were no longer exist in 13.0.0: deprecated-launcher-logind and launcher-libseat. Add seatd as a required dependency for kms. Signed-off-by: Fabio Estevam --- Changes since v1: - Fixed typo in the commit log. (Khem

[OE-core] [PATCH] weston: Update to 13.0.0

2024-01-15 Thread Fabio Estevam
From: Fabio Estevam Update to Weston 13.0.0. Remove the following options that were no longer exist in 13.0.0: launcher-libseat and launcher-libseat. Add seatd as a required dependency for kms. Signed-off-by: Fabio Estevam --- .../wayland/{weston_12.0.2.bb => weston_13.0.0.bb}

Pull request: Please pull u-boot-imx-20240115

2024-01-15 Thread Fabio Estevam
/-/pipelines/19324 Anatolij Gustschin (1): arm: xea: Add support for boot image source descriptor in SPL Fabio Estevam (3): doc: imx93_var_som: Adjust the underline length imx9: Select BINMAN at SoC level imx8m: Select

[oe] [PATCH] v4l-utils: Remove unneeded musl patch

2024-01-15 Thread Fabio Estevam
From: Fabio Estevam The musl issue that 0004-Do-not-use-getsubopt.patch fixes has already been addressed by the following v4l-utils upstream commit: commit 6e19bb895a16a9a247524ac526ab47f576cc36f6 Author: Hans Verkuil Date: Thu Nov 25 10:59:22 2021 +0100 v4l-utils: use v4l_getsubopt

Re: [PATCH v3 1/3] arm: xea: Move XEA's environment variables from xea.h to xea.env

2024-01-15 Thread Fabio Estevam
On Mon, Jan 15, 2024 at 10:52 AM Lukasz Majewski wrote: > > The default set of environment variables from CFG_EXTRA_ENV_SETTINGS > has been moved to a separate file - board/liebherr/xea/xea.env > > Adjustments done: > - fitImage support > - SPI-NOR layout re-organization > > Signed-off-by: Lukasz

Re: [PATCH v2] board: phytec: fix link error when disabling PHYTEC_SOM_DETECTION

2024-01-15 Thread Fabio Estevam
On Mon, Jan 15, 2024 at 6:31 AM Yannic Moog wrote: > > Commit aa7858fe5e2e ("board: phytec: som_detection: move definitions to > source file") moved function definitions from header to source file. > Makefile however was not updated to unconditionally (from > [..]_SOM_DETECTION) build the imx8

Re: [RFC][PATCH] ARM: imx: verdin-imx8mm: Set CAN oscillator frequency based on model

2024-01-13 Thread Fabio Estevam
On Sat, Jan 13, 2024 at 5:45 PM Francesco Dolcini wrote: > Fabio, you were too fast ... please revert it. I have dropped this patch from u-boot-imx master-next.

Re: [RFC][PATCH] ARM: imx: verdin-imx8mm: Set CAN oscillator frequency based on model

2024-01-13 Thread Fabio Estevam
On Sat, Jan 13, 2024 at 3:34 PM Marek Vasut wrote: > > The older i.MX8M Mini Verdin SoMs before rev. 1.1C came with 20 MHz SPI CAN > controller oscillator, the newer SoMs use 40 MHz oscillator. Handle both by > overriding the oscillator frequency just before booting the kernel. > > Signed-off-by:

Re: [PATCH] ARM: imx: Set stdio to serial on Data Modul i.MX8M Mini/Plus eDM SBC

2024-01-13 Thread Fabio Estevam
On Sat, Jan 13, 2024 at 2:59 PM Marek Vasut wrote: > > In case CONSOLE_MUX and SYS_CONSOLE_IS_IN_ENV are enabled, the console > stdin, stdout, stderr must be defined in environment. Define the default > settings to fix the following warning on boot: > > " > In:No input devices available! >

Re: [PATCH] ARM: imx: Set stdio to serial on DH i.MX8M Plus DHCOM

2024-01-13 Thread Fabio Estevam
On Sat, Jan 13, 2024 at 2:59 PM Marek Vasut wrote: > > In case CONSOLE_MUX and SYS_CONSOLE_IS_IN_ENV are enabled, the console > stdin, stdout, stderr must be defined in environment. Define the default > settings to fix the following warning on boot: > > " > In:No input devices available! >

[OE-core] [PATCH] libdrm: Upgrade to 2.4.120

2024-01-13 Thread Fabio Estevam
From: Fabio Estevam Upgrade to 2.4.120 which has the following changes: Eric Engestrom (1): radeon: fix missing stencil_tile_mode initialisation in the linear/fallback case Pierre-Eric Pelloux-Prayer (1): amdgpu: fix use-after-free Simon Ser (2): Sync headers with drm-next

Re: [PATCH] defconfig: xea: Change default spi-nor memory bus to 2 (single binary)

2024-01-12 Thread Fabio Estevam
On Fri, Jan 12, 2024 at 1:02 PM Lukasz Majewski wrote: > > After the re-sync with Linux kernel (v6.0) of the XEA DTS > (SHA1: 7d08ddd09b75e7a3c103cc0d0d3ed700287f268e) the alias > for SPI bus, to which SPI-NOR memory is connected, has changed from > 'spi3' to 'spi2'. > > To be in sync with

Re: [PATCH 1/1] imx: imx9: fixup thermal trips from fuses

2024-01-12 Thread Fabio Estevam
On Thu, Jan 11, 2024 at 9:56 AM Primoz Fiser wrote: > > Read i.MX9 CPU temp grade from fuses and fixup thermal trips in Linux > device-tree accordingly. > > Based on commit 0543a1ed2787 ("imx8m: fixup thermal trips") > > Signed-off-by: Primoz Fiser Applied, thanks.

Re: [PATCH v2 0/3] This series adds support for the phyGATE-Tauri-L.

2024-01-12 Thread Fabio Estevam
On Wed, Jan 10, 2024 at 10:35 AM Yannic Moog wrote: > > The config is minimal and mostly a copy from the phycore-imx8mm. SPI > (flash) is disabled as it is not populated by default. > Also add documentation for the phyGATE-Tauri-L board. While at it, add > the other PHYTEC doc files to

Re: [PATCH 1/3] doc: imx93_var_som: Adjust the underline length

2024-01-12 Thread Fabio Estevam
On Mon, Jan 8, 2024 at 6:11 PM Fabio Estevam wrote: > > From: Fabio Estevam > > Adjust the underline length so that it matches the title length. > > Signed-off-by: Fabio Estevam Applied all, thanks.

Re: [oe] [meta-python][PATCH] python-4.8.2: update to version 4.8.2

2024-01-12 Thread Fabio Estevam
On Fri, Jan 12, 2024 at 4:19 PM Derek Straka wrote: > > Signed-off-by: Derek Straka Maybe change the Subject to: python3-engineio: update to version 4.8.2 -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#108252):

Re: [PATCH] arm: imx: imx8m: Enable the SError exception

2024-01-12 Thread Fabio Estevam
Hi Ye Li, On Fri, Jan 12, 2024 at 4:07 AM Ye Li wrote: > > To work with commit 2f3c920(imx8m: workaround ROM serror), > we need to enable the SError exception and install vector in SPL. > > Signed-off-by: Ye Li > Reviewed-by: Peng Fan This causes an image increase that makes SPL to not fit

Re: [PATCH] board: phytec: fix link error when disabling PHYTEC_SOM_DETECTION

2024-01-12 Thread Fabio Estevam
Hi Yannic, On Thu, Jan 11, 2024 at 5:27 AM Yannic Moog wrote: > > Commit aa7858fe5e2e ("board: phytec: som_detection: move definitions to > source file") moved function definitions from header to source file. > Makefile however was not updated to unconditionally build the imx8 and > phytec som

Re: [PATCH] arm: imx: imx8m: Enable the SError exception

2024-01-12 Thread Fabio Estevam
On Fri, Jan 12, 2024 at 4:07 AM Ye Li wrote: > > To work with commit 2f3c920(imx8m: workaround ROM serror), > we need to enable the SError exception and install vector in SPL. > > Signed-off-by: Ye Li > Reviewed-by: Peng Fan Reported-by: Thomas Schaefer Reviewed-by: Fabio Estevam

[oe] [PATCH v2] v4l-utils: Update to 1.26.1

2024-01-12 Thread Fabio Estevam
From: Fabio Estevam Update to 1.26.1. Remove the Makefile.am patches as they no longer apply due to the switch to Meson. Backport a fix that prevents installing 50-rc_keymap.conf in systems without systemd. Signed-off-by: Fabio Estevam --- Changes since v1: - Adjust SRCREV to point

Re: [oe] [PATCH] v4l-utils: Update to 1.26.1

2024-01-11 Thread Fabio Estevam
Hi Khem, On Thu, Jan 11, 2024 at 5:10 PM Khem Raj wrote: > > I meant to say without systemd ( using sysvinit ) Yes, I have sent a patch to v4l-utils to fix this bug. Thanks -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#108232):

[OE-core] [PATCH] mesa: Upgrade 23.3.2 -> 23.3.3

2024-01-11 Thread Fabio Estevam
From: Fabio Estevam Mesa 23.3.3 release notes: https://lists.freedesktop.org/archives/mesa-announce/2024-January/000742.html Signed-off-by: Fabio Estevam --- .../mesa/{mesa-gl_23.3.2.bb => mesa-gl_23.3.3.bb} | 0 meta/recipes-graphics/mesa/mesa.

Re: [PATCH v2 1/3] arm: xea: Move XEA's environment variables from xea.h to xea.env

2024-01-11 Thread Fabio Estevam
On Thu, Jan 11, 2024 at 8:16 AM Fabio Estevam wrote: > > Hi Lukasz, > > On Thu, Jan 11, 2024 at 8:06 AM Lukasz Majewski wrote: > > > +serverip=10.8.217.79 > > +nfs_serverip=10.8.218.113 > > +gatewayip=10.8.209.250 > > These IP addresses should not be ha

Re: [PATCH v2 1/3] arm: xea: Move XEA's environment variables from xea.h to xea.env

2024-01-11 Thread Fabio Estevam
Hi Lukasz, On Thu, Jan 11, 2024 at 8:06 AM Lukasz Majewski wrote: > +serverip=10.8.217.79 > +nfs_serverip=10.8.218.113 > +gatewayip=10.8.209.250 These IP addresses should not be hardcoded here. They were not present in xea.h originally. Please remove them.

[oe] [PATCH] v4l-utils: Update to 1.26.1

2024-01-10 Thread Fabio Estevam
From: Fabio Estevam Update to 1.26.1. Also remove the Makefile.am patches as they no longer apply due to the swith to Meson. Signed-off-by: Fabio Estevam --- ...-Don-t-install-libmediactl-and-libv4.patch | 46 --- ...02-original-patch-mediactl-pkgconfig.patch | 23

Re: [PATCH v4 07/11] doc: devicetree: Align documentation to use Kconfig options

2024-01-10 Thread Fabio Estevam
On Wed, Jan 10, 2024 at 7:37 AM Sumit Garg wrote: > History > --- > > -U-Boot configuration was previous done using CONFIG options in the board > +U-Boot configuration was previous done using Kconfig options in the board > config file. This eventually got out of hand with nearly 10,000

Re: inconsistent wget behavior

2024-01-10 Thread Fabio Estevam
Hi Paul, On Fri, Jan 5, 2024 at 4:19 PM Fabio Estevam wrote: > > I tried to investigate this by U-boot sandbox. But it seems to me that I > > cannot reproduce this issue. > > I put a file on localhost apache server and tried to download it from > > localhost.

[OE-core] [PATCH 2/2] kmscube: Add package version

2024-01-08 Thread Fabio Estevam
From: Fabio Estevam kmscube meson.build passes version : '0.0.1', so add a package version entry to match. Suggested-by: Martin Jansa Signed-off-by: Fabio Estevam --- meta/recipes-graphics/kmscube/kmscube_git.bb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta/recipes-graphics

[OE-core] [PATCH 1/2] kmscube: Change header file to

2024-01-08 Thread Fabio Estevam
From: Fabio Estevam Since kmscube commit 96d63eb59e34 ("kmscube: Add gears mode"), kmscube fails to build on platforms without . Fix it by changing the header file to . Reported-by: Martin Jansa Signed-off-by: Fabio Estevam --- ...rs-Change-header-file-to-GLES3-gl3.h.

[PATCH 3/3] imx8m: Select BINMAN at SoC level

2024-01-08 Thread Fabio Estevam
From: Fabio Estevam All i.MX8M targets rely on using binman to generate the U-Boot binary. Select it at the SoC level instead of per board. Signed-off-by: Fabio Estevam --- arch/arm/mach-imx/imx8m/Kconfig | 39 + 1 file changed, 1 insertion(+), 38 deletions

[PATCH 2/3] imx9: Select BINMAN at SoC level

2024-01-08 Thread Fabio Estevam
From: Fabio Estevam All i.MX93 targets rely on using binman to generate the U-Boot binary. Select it at the SoC level instead of per board. Signed-off-by: Fabio Estevam --- arch/arm/mach-imx/imx9/Kconfig | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/arch/arm/mach-imx

[PATCH 1/3] doc: imx93_var_som: Adjust the underline length

2024-01-08 Thread Fabio Estevam
From: Fabio Estevam Adjust the underline length so that it matches the title length. Signed-off-by: Fabio Estevam --- doc/board/variscite/imx93_var_som.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/board/variscite/imx93_var_som.rst b/doc/board/variscite

[v2] Pull request: Please pull u-boot-imx-master-20240108

2024-01-08 Thread Fabio Estevam
Hi Tom, This is v2. Fixed the summary log. Please pull from u-boot-imx, thanks. The following changes since commit 93d91e9485d902a1836a22e72d1a545b587adf36: Merge branch 'next' (2024-01-08 12:00:18 -0500) are available in the Git repository at:

Pull request: Please pull u-boot-imx-master-20240108

2024-01-08 Thread Fabio Estevam
Hi Tom, Please pull from u-boot-imx, thanks. The following changes since commit 93d91e9485d902a1836a22e72d1a545b587adf36: Merge branch 'next' (2024-01-08 12:00:18 -0500) are available in the Git repository at: https://gitlab.denx.de/u-boot/custodians/u-boot-imx.git

Re: [PATCH v5 0/3] Add imx93-var-som support

2024-01-08 Thread Fabio Estevam
On Mon, Jan 8, 2024 at 7:59 AM Mathieu Othacehe wrote: > Right, because I wasn't sure CI was working for pull requests on the > `next` branch of Github. It looks like it is so I also created a PR on > top of the `next` branch: https://github.com/u-boot/u-boot/pull/459. I applied this one,

Re: [PATCH] ARM: imx: Auto-detect PHY on Data Modul i.MX8M Mini/Plus eDM SBC

2024-01-08 Thread Fabio Estevam
On Mon, Jan 1, 2024 at 6:07 PM Marek Vasut wrote: > > Implement fdtdec_board_setup() auto-detection of ethernet PHY. > This uses properties of the hardware and pull resistor placement. > > If GPIO1_16 RGMII_MDC is HIGH, then R530 (MX8MM eDM SBC) or > R390 (MX8MP eDM SBC) is populated. R530 or

Re: [PATCH v1] verdin-imx8mm: Remove stale fdt_addr env variable

2024-01-08 Thread Fabio Estevam
On Tue, Jan 2, 2024 at 9:12 AM Francesco Dolcini wrote: > > From: Francesco Dolcini > > fdt_addr variable is the location in flash of the device tree blob [1], it > does not exist for verdin-imx8mm. > > Because of this the bootefi command fails unless the optional > `[fdt address]` parameter is

[PATCH kmscube] cube-gears: Change header file to

2024-01-08 Thread Fabio Estevam
Since commit 96d63eb59e34 (" kmscube: Add gears mode") , kmscube fails to build on platforms without . Fix it by changing the header file to . Reported-by: Martin Jansa Suggested-by: Martin Jansa Signed-off-by: Fabio Estevam --- cube-gears.c | 2 +- 1 file changed, 1 insertion(+),

Re: [OE-core] [PATCH] kmscube: Upgrade to latest revision

2024-01-08 Thread Fabio Estevam
On Mon, Jan 8, 2024 at 2:26 PM Martin Jansa wrote: > On this platform it doesn't as GL/gl.h is not available, but it builds fine > after replacing GL/gl.h with GLES3/gl3.h (for GL_DEPTH24_STENCIL8). Thanks for the suggestion. I will send a fix upstream. -=-=-=-=-=-=-=-=-=-=-=- Links: You

Re: [OE-core] [PATCH] kmscube: Upgrade to latest revision

2024-01-08 Thread Fabio Estevam
Hi Martin, On Mon, Jan 8, 2024 at 1:21 PM Martin Jansa wrote: > > Hi, > > can you please set PV to something else than "git"? meson.build says version > : '0.0.1' Yes, I can do that. > The last commit from the new 3 is causing build failure on some setups > without GL/gl.h: > >

[OE-core] [PATCH] u-boot: Upgrade to 2024.01

2024-01-08 Thread Fabio Estevam
From: Fabio Estevam Upgrade to U-Boot 2024.01. Signed-off-by: Fabio Estevam --- meta/recipes-bsp/u-boot/u-boot-common.inc | 2 +- .../u-boot/{u-boot-tools_2023.10.bb => u-boot-tools_2024.01.bb} | 0 .../recipes-bsp/u-boot/{u-boot_2023.10.bb => u-boot_2024.01.bb}

Re: [PATHv11 00/43] net/lwip: add lwip library for the network stack

2024-01-08 Thread Fabio Estevam
On Mon, Jan 8, 2024 at 5:43 AM Maxim Uvarov wrote: > I will try, but for some reason there is no i.MX board in the lab. Yes, please. Try to get it. > MAC address is different in two commands, it has to be the same. They are the same actually: u-boot=> net list eth0 : ethernet@30be

Re: [PATCH v5 0/3] Add imx93-var-som support

2024-01-08 Thread Fabio Estevam
Hi Mathieu, On Mon, Jan 8, 2024 at 6:26 AM Mathieu Othacehe wrote: > This issue was that we are expecting binman to keep working on the CI > even though the binary blobs are not present. I fixed that, had a green > Github build and submitted a v6. Excellent, thank you. I plan to apply this

Re: [RFC PATCH V2] net: wget: Take in account tcp sequence number wrap around

2024-01-07 Thread Fabio Estevam
On Sun, Jan 7, 2024 at 5:01 PM Michael Trimarchi wrote: > > Coming from some discussion on mailing about wget unconsistent. It's > just and idea to play around > > Signed-off-by: Michael Trimarchi > --- > RFC V1 -> RFC V2: > - drop random train change in unsigned difference Same

Re: inconsistent wget behavior

2024-01-07 Thread Fabio Estevam
Hi Michael, On Sun, Jan 7, 2024 at 1:36 PM Michael Nazzareno Trimarchi wrote: > I have sent but not sure about it, just compile for now ;) It didn't work: u-boot=> wget 192.168.0.16:/test HTTP/1.0 200 OK| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |

Re: inconsistent wget behavior

2024-01-07 Thread Fabio Estevam
Hi Michael, On Sat, Jan 6, 2024 at 5:49 AM Michael Nazzareno Trimarchi wrote: > > Hi > > Is this code correct? > > if (tcp_seq_num >= initial_data_seq_num && > store_block(pkt, tcp_seq_num - initial_data_seq_num, > len) != 0) { >

Re: [PATCH V5 1/2] dt-bindings: display: imx: add binding for i.MX8MP HDMI PVI

2024-01-05 Thread Fabio Estevam
Hi Adam, Thanks for moving this forward. On Fri, Jan 5, 2024 at 10:56 PM Adam Ford wrote: > > From: Lucas Stach > > Add binding for the i.MX8MP HDMI parallel video interface block. > > Signed-off-by: Lucas Stach > Reviewed-by: Laurent Pinchart > Reviewed-by: Conor Dooley You missed your

Re: inconsistent wget behavior

2024-01-05 Thread Fabio Estevam
On Fri, Jan 5, 2024 at 4:49 PM Michael Nazzareno Trimarchi wrote: > I was thinking that was lwip integration That's a different issue. If you want to test lwip integration, you can try it from: https://github.com/muvarov/u-boot/tree/master_lwip_test_v10

Re: inconsistent wget behavior

2024-01-05 Thread Fabio Estevam
Hi Michael, On Fri, Jan 5, 2024 at 4:12 PM Michael Nazzareno Trimarchi wrote: > Can you reproduce with dcache off? I haven't tried it. > Where are the patches to test? The wget issue can be reproduced with U-Boot master. No need for extra patches. Please see the first message of this thread

Re: inconsistent wget behavior

2024-01-05 Thread Fabio Estevam
Hi Paul, On Fri, Jan 5, 2024 at 3:57 PM Paul Liu wrote: > > Hi Fabio, > > I tried to investigate this by U-boot sandbox. But it seems to me that I > cannot reproduce this issue. > I put a file on localhost apache server and tried to download it from > localhost. > I might need a more

Re: inconsistent wget behavior

2024-01-05 Thread Fabio Estevam
Hi Paul, On Thu, Nov 16, 2023 at 6:41 AM Paul Liu wrote: > > Hi Fabio, > > Yes. I'll look into this problem. Did you have a chance to investigate this problem? Thanks

[OE-core] [PATCH] libusb1: Do not match on -rc versions

2024-01-04 Thread Fabio Estevam
From: Fabio Estevam Currently, the upstream check gives incorrect results: $ devtool latest-version libusb1 ... INFO: Current version: 1.0.26 INFO: Latest version: 1.0.27 There is no 1.0.27 release yet, only 1.0.27-rc1. Anuj Mittal has submitted the fix in v2: https://lists.openembedded.org/g

Re: [PATHv11 00/43] net/lwip: add lwip library for the network stack

2024-01-04 Thread Fabio Estevam
On Thu, Jan 4, 2024 at 12:02 PM Maxim Uvarov wrote: > CI tests this in all qemu emulated boards. I tested it locally on Raspberry > Pi - works well. This version did not > yet tested on imx8, but the previous version worked on eth0, did not work on > eth1. So I plan to continue testing >

Re: [PATCH v5 0/3] Add imx93-var-som support

2024-01-04 Thread Fabio Estevam
On Thu, Jan 4, 2024 at 12:54 PM Mathieu Othacehe wrote: > > From: Mathieu Othacehe > > Hello, > > This v5 fixes imx93_evk compilation by enabling binman support for this board. Still fails: https://source.denx.de/u-boot/custodians/u-boot-imx/-/jobs/764792 Please run a CI job for your series

Re: [PATCH v4 0/3] Add imx93-var-som support

2024-01-04 Thread Fabio Estevam
Hi Mathieu, On Thu, Jan 4, 2024 at 6:14 AM Mathieu Othacehe wrote: > > From: Mathieu Othacehe > > Hello, > > This v4 rebases the series on top of the next branch and fixes Fabio's > remarks. I ran your v4 series through CI, but it failed:

[OE-core] [PATCH] usbutils: Update to version 017

2024-01-03 Thread Fabio Estevam
From: Fabio Estevam Update to version 017 and add a patch to fix a buildpath error. Signed-off-by: Fabio Estevam --- ...0001-usbutils.pc.in-Fix-Cflags-entry.patch | 34 +++ .../{usbutils_015.bb => usbutils_017.bb} | 3 +- 2 files changed, 36 insertions(+), 1 delet

Re: [PATCH v1] verdin-imx8mm: Remove stale fdt_addr env variable

2024-01-03 Thread Fabio Estevam
[fdt address]` parameter is passed on the command line, > bootefi.c:efi_install_fdt() assumes that `fdt_addr` is valid when > present. > > Fix this removing fdt_addr from the U-Boot environment. > > [1] doc/usage/environment.rst > > Signed-off-by: Francesco Dolcini Reviewed-by: Fabio Estevam

Re: [PATCH] ARM: imx: Auto-detect PHY on Data Modul i.MX8M Mini/Plus eDM SBC

2024-01-03 Thread Fabio Estevam
, in > case BCM54213PE PHY is populated, the PHY MDIO address is 1, the > fdtdec_board_setup() is used to patch the correct address into > the U-Boot control DT. > > Enable broadcom PHY support to support both PHYs. > > Signed-off-by: Marek Vasut Reviewed-by: Fabio Estevam

Re: [PATCH v3 2/3] mach-imx: Add i.MX93 binman support.

2024-01-03 Thread Fabio Estevam
On Fri, Dec 29, 2023 at 8:17 AM Mathieu Othacehe wrote: > > From: Mathieu Othacehe > > Add dedicated Makefile targets for the i.MX93 and a new imx93-u-boot.dtsi > device-tree to create binman images. > > Signed-off-by: Mathieu Othacehe Reviewed-by: Fabio Estevam

Re: [PATCH v3 1/3] spl: binman: Disable u_boot_any symbols for i.MX93 boards

2024-01-03 Thread Fabio Estevam
On Fri, Dec 29, 2023 at 8:17 AM Mathieu Othacehe wrote: > > From: Mathieu Othacehe > > This is extending commit 6516c9b349b3 ("spl: binman: Disable u_boot_any > symbols for i.MX8M boards") to i.MX93 boards. > > Signed-off-by: Mathieu Othacehe Reviewed-by: Fabio Estevam

Re: [PATCH v3 3/3] Add imx93-var-som support

2024-01-03 Thread Fabio Estevam
Hi Mathieu, On Fri, Dec 29, 2023 at 8:17 AM Mathieu Othacehe wrote: > > From: Mathieu Othacehe > > Add support for the Variscite VAR-SOM-IMX93 evaluation kit. The SoM > consists of an NXP iMX93 dual A55 CPU. The SoM is mounted on a Variscite > Symphony SBC. > > Signed-off-by: Mathieu Othacehe

[oe] [PATCH v2] picocom: Update to 2023-04

2024-01-03 Thread Fabio Estevam
From: Fabio Estevam Update to the 2023-04 version. Use the the new upstream repository and drop the fix that has been upstreamed. Signed-off-by: Fabio Estevam --- Changes since v1: - Also update SRCREV. .../picocom/0001-Fix-building-with-musl.patch | 118 -- .../recipes

[oe] [PATCH] picocom: Update to 2023-04

2024-01-03 Thread Fabio Estevam
From: Fabio Estevam Update to the 2023-04 version. Use the the new upstream repository and drop the fix that has been upstreamed. Signed-off-by: Fabio Estevam --- .../picocom/0001-Fix-building-with-musl.patch | 118 -- .../recipes-support/picocom/picocom_git.bb| 7 +- 2

Re: [PATHv11 00/43] net/lwip: add lwip library for the network stack

2024-01-03 Thread Fabio Estevam
Hi Maxim, On Tue, Jan 2, 2024 at 2:31 PM Maxim Uvarov wrote: > > Small update here. I made changes without any board limit size changes. > Reordered patches to make them compile in sequence. I think I will do one > more clean up and more testing, > and after that will be able to send an updated

[OE-core] [PATCH] bmap-tools: Upgrade to 3.7

2024-01-02 Thread Fabio Estevam
From: Fabio Estevam Upgrade to version 3.7. The COPYING file has been renamed as LICENSE, so adapt LIC_FILES_CHKSUM accordingly. Signed-off-by: Fabio Estevam --- meta/recipes-support/bmap-tools/bmap-tools_git.bb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meta

[oe] [PATCH] i2cdev_git: Remove AUTHOR field

2024-01-02 Thread Fabio Estevam
The AUTHOR field is no longer used in generating packages. It may also create a possible confusion with the recipe maintainer name, so let's remove it. Signed-off-by: Fabio Estevam --- meta-oe/recipes-bsp/i2cdev/i2cdev_git.bb | 1 - 1 file changed, 1 deletion(-) diff --git a/meta-oe/recipes

Re: [PATCH v3 0/3] Add imx93-var-som support

2023-12-29 Thread Fabio Estevam
Hi Mathieu, On Fri, Dec 29, 2023 at 8:17 AM Mathieu Othacehe wrote: > > From: Mathieu Othacehe > > Hello, > > This v3 adds support for binman and documents how to build and flash a > bootloader for the i.MX93 Variscite Symphony evaluation board. Nice work! Thanks for adding i.MX93 binman

Re: Regression: i.MX6ULL reset not working

2023-12-28 Thread Fabio Estevam
On Thu, Dec 28, 2023 at 2:23 PM Francesco Dolcini wrote: > Are you sure? After the related kconfig changes you'll have CONFIG_WDT > enabled, and with that the watchdog is started and you need to > periodically refresh it. At the moment the watchdog is not enabled at > boot and it is used only

Re: Regression: i.MX6ULL reset not working

2023-12-28 Thread Fabio Estevam
On Thu, Dec 28, 2023 at 1:46 PM Francesco Dolcini wrote: > With that we would have to enable the watchdog, something that is not > done today. Any potential downside on doing it? I don't see any. The watchdog was being used originally too, but not via DM.

Re: Regression: i.MX6ULL reset not working

2023-12-28 Thread Fabio Estevam
Hi Francesco, On Thu, Dec 28, 2023 at 12:49 PM Francesco Dolcini wrote: > > Hello Marek and all, > I just tried latest master on colibri-imx6ull-emmc and the reset command > is broken - it does nothing. > > From a bisect the issue was introduced with commit 68dcbdd594d4 ("ARM: > imx: Add weak

Re: [PATCH] Add imx93-var-som support

2023-12-28 Thread Fabio Estevam
[Adding Peng] On Thu, Dec 28, 2023 at 12:20 PM Fabio Estevam wrote: > > Hi Mathieu, > > On Thu, Dec 28, 2023 at 11:54 AM Mathieu Othacehe > wrote: > > > For now, I am testing the bootloaders I produce using those > > instructions: > > https://variwiki.co

Re: [PATCH] Add imx93-var-som support

2023-12-28 Thread Fabio Estevam
Hi Mathieu, On Thu, Dec 28, 2023 at 11:54 AM Mathieu Othacehe wrote: > For now, I am testing the bootloaders I produce using those > instructions: > https://variwiki.com/index.php?title=Yocto_Build_U-Boot=mx93-yocto-mickledore-6.1.36_2.1.0-v1.1 > > I understand that it would be nice to have

Re: [PATCH v8 7/8] config: xea: Enable the SPL_FIT config option

2023-12-26 Thread Fabio Estevam
Please run /scripts/get_maintainer.pl and add the board maintainer on Cc. I have added Lukasz. On Tue, Dec 26, 2023 at 6:43 AM Venkatesh Yadav Abbarapu wrote: > > Enable the config SPL_FIT. Please improve the commit log by explaining why SPL_FIT is being enabled.

[OE-core] [PATCH] kmscube: Upgrade to latest revision

2023-12-26 Thread Fabio Estevam
From: Fabio Estevam Upgrade to the latest kmscube revision. Signed-off-by: Fabio Estevam --- meta/recipes-graphics/kmscube/kmscube_git.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-graphics/kmscube/kmscube_git.bb b/meta/recipes-graphics/kmscube

Re: [PATCH 2/6] drm/panel: Add driver for BOE TH101MB31IG002-28A panel

2023-12-22 Thread Fabio Estevam
On Fri, Dec 22, 2023 at 2:32 PM Manuel Traut wrote: > > From: Segfault > > The BOE TH101MB31IG002-28A panel is a WXGA panel. > It is used in Pine64 Pinetab2 and PinetabV. > > Signed-off-by: Segfault Please use a real name instead... > +MODULE_AUTHOR("Alexander Warnecke "); like here.

[OE-core] [PATCH] libdrm: Upgrade to 2.4.119

2023-12-21 Thread Fabio Estevam
From: Fabio Estevam Upgrade to 2.4.119 which has the following changes: Marek Olšák (2): amdgpu: add amdgpu_va_get_start_addr meson: bump libdrm version to 2.4.119 Signed-off-by: Fabio Estevam --- .../drm/{libdrm_2.4.118.bb => libdrm_2.4.119.bb}| 2 +- 1 f

Re: fw_env: auto-detect NAND characteristics

2023-12-21 Thread Fabio Estevam
Hi Anthony, On Thu, Dec 21, 2023 at 1:18 PM Anthony Loiseau wrote: > > Hello, > > Please find attached a patch proposal which modifies fw_env so NAND chip Your patch did not come. Could you please send it via git send-email? Also, run ./scripts/get_maintainer.pl 0001-your.patch and Cc the

<    1   2   3   4   5   6   7   8   9   10   >