Re: [PATCH] imx9: Update to mx93 A1 chip revision.

2024-03-04 Thread Fabio Estevam
On Mon, Feb 26, 2024 at 2:48 PM Mathieu Othacehe wrote: > > Use the latest, mx93a1-ahab-container.img that is compatible with the > i.MX93 A1 revision. > > Using mx93a1-ahab-container.img on an A0 chip and conversely causes a boot > failure without any traces on the UART. > > Signed-off-by:

Re: [PATCH 0/2] Fix OP-TEE support

2024-03-04 Thread Fabio Estevam
On Mon, Feb 26, 2024 at 2:37 PM Mathieu Othacehe wrote: > > Hello, > > This series fixes OP-TEE support on all imx9 boards by starting the ELE RNG > and adding the optional tee.bin binary to the ATF container. > > Thanks, > > Mathieu > > Mathieu Othacehe (2): > imx9: Fix OP-TEE support >

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

2024-03-04 Thread Fabio Estevam
Hi Tom, Please pull from u-boot-imx, thanks. The following changes since commit eac52e4be4e234d563d6911737ee7ccdc0ada1f1: Merge patch series "ARM: renesas: Rename R-Mobile to Renesas" (2024-03-02 14:30:25 -0500) are available in the Git repository at:

Re: [PATCH 1/2] board: phytec: common: phytec_som_detection: Add phytec_get_som_type

2024-03-04 Thread Fabio Estevam
On Mon, Mar 4, 2024 at 9:31 AM Benjamin Hahn wrote: > > Add a function that gets the som_type from the EEPROM. > Add an enum for the som_type. > > Signed-off-by: Benjamin Hahn Your series does not even build: board/phytec/common/phytec_som_detection.c: In function ‘phytec_get_som_type’:

Re: [PATCH 1/2] opos6uldev: make the LCD work again

2024-03-04 Thread Fabio Estevam
On Mon, Mar 4, 2024 at 10:35 AM Tom Rini wrote: > For v2024.04 yes, this is fine. For long term, we should parse the new > timing properties that the simple panel driver takes in our simple panel > driver instead. Sounds good. Sébastien, please follow Tom's suggestion when you have a chance.

Re: [PATCH 1/2] opos6uldev: make the LCD work again

2024-03-04 Thread Fabio Estevam
Hi Tom, On Tue, Feb 27, 2024 at 12:42 PM Tom Rini wrote: > What's the long term fix here? Why aren't these needed in Linux anymore, > and perhaps why was it OK to remove them? This is perhaps another case > where we as the U-Boot community need to go and talk with some Linux > Kernel community

Re: [PATCH v6 00/11] An effort to bring DT bindings compliance within U-Boot

2024-03-04 Thread Fabio Estevam
On Mon, Mar 4, 2024 at 9:15 AM Sumit Garg wrote: > I suppose the earlier reference patch wasn't complete, can you rather > try its v4 [1] instead? > > [1] > https://patchwork.ozlabs.org/project/uboot/patch/20240304121257.3551104-1-sumit.g...@linaro.org/ This one works, thanks!

Re: [PATCH v4] Makefile: remove hardcoded device tree source directory

2024-03-04 Thread Fabio Estevam
Include the correct path to the board's dtbs depending on if OF_UPSTREAM > is selected or not. > > Signed-off-by: Bryan Brattlof > Signed-off-by: Sumit Garg Tested-by: Fabio Estevam

Re: [PATCH v6 00/11] An effort to bring DT bindings compliance within U-Boot

2024-03-04 Thread Fabio Estevam
Hi Sumit, On Mon, Mar 4, 2024 at 3:33 AM Sumit Garg wrote: > I think you also need Bryan's patch [1] to be incorporated as well. > Give it a try and let me know if you still see any further issues. > > [1] >

[OE-core] [PATCH] [kirkstone] u-boot: Move UBOOT_INITIAL_ENV back to u-boot.inc

2024-03-03 Thread Fabio Estevam
From: Fabio Estevam Commit cc6c3e31526d ("u-boot: Move definitions to common locations") moved UBOOT_INITIAL_ENV to uboot-config.bbclass, but it should be kept at u-boot.inc because it encodes ${PN} in it, which should be set by the U-Boot recipe. Currently, whatever inherits ub

Re: [PATCH v6 00/11] An effort to bring DT bindings compliance within U-Boot

2024-03-01 Thread Fabio Estevam
Hi Sumit, On Fri, Mar 1, 2024 at 9:57 AM Tom Rini wrote: > > On Thu, 22 Feb 2024 15:05:56 +0530, Sumit Garg wrote: > > > Changes in v6: > > -- > > - v6_dt: https://github.com/b49020/u-boot/tree/v6_dt > > - Patch #3: Incorporate fix for sandbox CI failure. > > - Patch #6: Incorporate

[OE-core] [PATCH] u-boot: Move UBOOT_INITIAL_ENV back to u-boot.inc

2024-02-29 Thread Fabio Estevam
From: Fabio Estevam Commit cc6c3e31526d ("u-boot: Move definitions to common locations") moved UBOOT_INITIAL_ENV to uboot-config.bbclass, but it should be kept at u-boot.inc because it encodes ${PN} in it, which should be set by the U-Boot recipe. Currently, whatever inherits ub

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

2024-02-24 Thread Fabio Estevam
CONFIG_IMX_TMU Fabio Estevam (1): imx53-qsb: Convert to watchdog driver model Frieder Schrempf (1): board: imx6dl-sielaff: spl.c: Remove multiline string Jesse Taube (2): imx: imxrt1050-evk: Add support for SPI flash booting imx: imxrt1050-evk: Add documentation for SPI boot

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

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

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

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] 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 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: [OE-core] [PATCH] openssl: add loongarch64 support

2024-02-24 Thread Fabio Estevam
On Sat, Feb 24, 2024 at 10:54 AM Xiaotian Wu wrote: > It would be nice to put here the same text you added in the cover letter. Also, you missed your Signed-off-by line. > --- > meta/recipes-connectivity/openssl/openssl_3.2.1.bb | 3 +++ > 1 file changed, 3 insertions(+)

Re: [PATCH v2 0/7] toradex: fix reset and hardware detection regressions

2024-02-23 Thread Fabio Estevam
: Francesco Dolcini > Closes: https://lore.kernel.org/all/ZY2ZDWAQuTlRjV9H@francesco-nb/ For the series: Reviewed-by: Fabio Estevam

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

2024-02-23 Thread Fabio Estevam
> is the preferred method for implementing the watchdog reset. > > Signed-off-by: Sébastien Szymanski Reviewed-by: Fabio Estevam

Re: [PATCH v2] arm64: zynqmp: Support semihosting boot method

2024-02-22 Thread Fabio Estevam
On Thu, Feb 22, 2024 at 1:53 PM Sean Anderson wrote: > > From: Sean Anderson ... > Signed-off-by: Sean Anderson > --- > I'm resending this from my linux.dev email as my regular email is > mangling my patches. That's OK, but you need to make sure that the From and Signed-off-by fields match.

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

2024-02-21 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: ECDSA related PRs

2024-02-21 Thread Fabio Estevam
Hi Bob, On Wed, Feb 21, 2024 at 8:30 AM Bob Wolff wrote: > > Hi there, > I have two separate but related pull requests I'd like to contribute. They > both have to do with ECDSA support. > - The simple one is a lack of null-pointer check that can cause a crash in > certain situations. Easy peasy.

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

2024-02-20 Thread Fabio Estevam
On Mon, Feb 19, 2024 at 11:50 PM Jesse T wrote: > Huh, this is very interesting and I haven't noticed before. > When sending git send-email lowercases my email. > It seems like all my commits are like this. > Do you want this fixed? Please fix both issues and submit a v5.

Re: [PATCH 7/7] verdin-imx8mp_defconfig: Enable PCIe/NVMe support

2024-02-20 Thread Fabio Estevam
On Tue, Feb 20, 2024 at 10:51 AM Sumit Garg wrote: > > Also, enable reset driver which is a prerequisite for PCIe support. > > Signed-off-by: Sumit Garg > --- > configs/verdin-imx8mp_defconfig | 9 + > 1 file changed, 9 insertions(+) > > diff --git a/configs/verdin-imx8mp_defconfig

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

2024-02-19 Thread Fabio Estevam
On Mon, Feb 19, 2024 at 8:01 PM Jesse Taube wrote: > > Add support for booting the imxrt1050-evk from spi. > Add imximage config and the ability for SPL to boot from NOR. > Enable binman in Kconfig and device tree for imxrt* as it is used to > prepend fspi_header.bin to SPL and u-boot.img. > >

Re: [PATCH v3 1/3] arm: dts: imxrt: Add binman support

2024-02-19 Thread Fabio Estevam
On Mon, Feb 19, 2024 at 5:18 PM Jesse T wrote: > Shall I send a V4 with them squashed then? Yes, please send a v4 with them squashed and with a nice commit log :-)

Re: [PATCH v2] usb: ehci-mx6: Add i.MX93 support

2024-02-19 Thread Fabio Estevam
On Mon, Feb 19, 2024 at 2:05 PM Mathieu Othacehe wrote: > > i.MX93 uses the same USB IP as i.MX8MM. It can then reuse the ehci-mx6 > driver. > > Reviewed-by: Marek Vasut > Signed-off-by: Mathieu Othacehe Reviewed-by: Fabio Estevam I assume you will add USB support to some i.MX93 boards later.

Re: [PATCH] usb: ehci-mx6: Add i.MX93 support

2024-02-19 Thread Fabio Estevam
Hi Mathieu, On Mon, Feb 19, 2024 at 5:43 AM Mathieu Othacehe wrote: > > i.MX93 uses the same USB IP as i.MX8MM. It can then reuse the ehci-mx6 > driver. > > Signed-off-by: Mathieu Othacehe You missed copying Marek Vasut, who is the USB maintainer. > --- > drivers/usb/host/Kconfig| 6

Re: EXT: [PATCH 1/5] msc_sm2s_imx8mp: Convert to DM_SERIAL

2024-02-19 Thread Fabio Estevam
On Thu, Feb 15, 2024 at 9:05 AM Ian Ray wrote: > > On Tue, Feb 13, 2024 at 08:43:38AM -0300, Fabio Estevam wrote: > > > > From: Fabio Estevam > > > > The conversion to DM_SERIAL is mandatory, so do the conversion. > > > > Signed-off-by: Fabio Estev

Re: [PATCH v4 1/3] mtd: spi-nor-ids: Add support for ESMT/EON EN25Q80B

2024-02-19 Thread Fabio Estevam
On Thu, Feb 15, 2024 at 11:00 AM Frieder Schrempf wrote: > > From: Frieder Schrempf > > The datasheet can be found here: > https://www.esmt.com.tw/upload/pdf/ESMT/datasheets/EN25Q80B_Ver.E.pdf > > Signed-off-by: Frieder Schrempf > Reviewed-by: Fabio Estevam Applied all, thanks.

Re: [PATCH] MAINTAINERS: Update after GEHC spin-off

2024-02-19 Thread Fabio Estevam
On Tue, Feb 13, 2024 at 11:08 AM Ian Ray wrote: > > Update our email addresses, from @ge.com to @gehealthcare.com, after GE > HealthCare was spun-off from GE. > > Remove Antti, who no longer works on the project. > > Signed-off-by: Ian Ray Applied, thanks.

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

2024-02-19 Thread Fabio Estevam
addresses. Fabio Estevam (5): msc_sm2s_imx8mp: Convert to DM_SERIAL msc_sm2s_imx8mp: Make Ethernet functional imx8mp-msc-sm2s: Add mmc aliases msc_sm2s_imx8mp: Add redundant environment support

Re: [PATCH v3 1/3] arm: dts: imxrt: Add binman support

2024-02-18 Thread Fabio Estevam
On Sun, Feb 18, 2024 at 10:39 PM Fabio Estevam wrote: > > Hi Jesse, > > On Sun, Feb 18, 2024 at 6:20 PM Jesse Taube wrote: > > > > Enable binman in Kconfig and in device tree. > > Please explain the rationale for doing this. Also, it seems that this patch alo

Re: [PATCH v3 1/3] arm: dts: imxrt: Add binman support

2024-02-18 Thread Fabio Estevam
Hi Jesse, On Sun, Feb 18, 2024 at 6:20 PM Jesse Taube wrote: > > Enable binman in Kconfig and in device tree. Please explain the rationale for doing this.

Re: [PATCH v2 2/3] board: Add support for Sielaff i.MX6 Solo board

2024-02-15 Thread Fabio Estevam
Hi Frieder, On Tue, Feb 13, 2024 at 2:22 PM Frieder Schrempf wrote: > > From: Frieder Schrempf > > The Sielaff i.MX6 Solo board is a control and HMI board for vending > machines. Add support for this board. > > The devicetree files are taken from pending changes in the Linux > kernel that are

Re: [PATCH v2 3/3] doc: board: Add minimal documentation for Sielaff i.MX6 Solo board

2024-02-14 Thread Fabio Estevam
On Tue, Feb 13, 2024 at 2:33 PM Frieder Schrempf wrote: > > From: Frieder Schrempf > > Describe how to build and boot for the Sielaff i.MX6 Solo board. > > Signed-off-by: Frieder Schrempf Reviewed-by: Fabio Estevam

Re: [PATCH v2 2/3] board: Add support for Sielaff i.MX6 Solo board

2024-02-14 Thread Fabio Estevam
that are available from linux-next and will likely be > part of Linux v6.9. > > Signed-off-by: Frieder Schrempf Reviewed-by: Fabio Estevam

Re: [PATCH 2/3] board: Add support for Sielaff i.MX6 Solo board

2024-02-13 Thread Fabio Estevam
Hi Frieder, On Tue, Feb 13, 2024 at 1:58 PM Frieder Schrempf wrote: > I understand the reasoning and I can change that if you insist. But I'm > not really happy about it as we already use the flash.bin as common name > for the binary across all platforms downstream. Also in our upstream >

[PATCH 5/5] msc_sm2s_imx8mp: Fix CONFIG_DEFAULT_FDT_FILE

2024-02-13 Thread Fabio Estevam
From: Fabio Estevam There is no imx8mp-msc-sm2s.dtb file in upstream Linux. Change it to imx8mp-msc-sm2s-ep1.dtb. Signed-off-by: Fabio Estevam --- configs/msc_sm2s_imx8mp_defconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/msc_sm2s_imx8mp_defconfig b

[PATCH 4/5] msc_sm2s_imx8mp: Add redundant environment support

2024-02-13 Thread Fabio Estevam
From: Fabio Estevam Redundant environment support is required for software updates. Add support for it. Signed-off-by: Fabio Estevam --- configs/msc_sm2s_imx8mp_defconfig | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/configs/msc_sm2s_imx8mp_defconfig b/configs

[PATCH 2/5] msc_sm2s_imx8mp: Make Ethernet functional

2024-02-13 Thread Fabio Estevam
From: Fabio Estevam Currently, the Ethernet ports are not working. The Ethernet PHY reset lines are controlled by the TCA6424 I2C GPIO expander. The TCA6424 I2C GPIO expander is supported by the CONFIG_DM_PCA953X driver. Select the CONFIG_DM_PCA953X option so that the Ethernet PHYs can go

[PATCH 3/5] imx8mp-msc-sm2s: Add mmc aliases

2024-02-13 Thread Fabio Estevam
From: Fabio Estevam Add mmc alias so that the eMMC is mmc0 and the SD card is mmc1 to have a well defined device numbering scheme. Signed-off-by: Fabio Estevam --- arch/arm/dts/imx8mp-msc-sm2s-u-boot.dtsi | 5 + 1 file changed, 5 insertions(+) diff --git a/arch/arm/dts/imx8mp-msc-sm2s-u

[PATCH 1/5] msc_sm2s_imx8mp: Convert to DM_SERIAL

2024-02-13 Thread Fabio Estevam
From: Fabio Estevam The conversion to DM_SERIAL is mandatory, so do the conversion. Signed-off-by: Fabio Estevam --- arch/arm/dts/imx8mp-msc-sm2s-u-boot.dtsi | 8 board/msc/sm2s_imx8mp/spl.c | 9 - configs/msc_sm2s_imx8mp_defconfig| 1 + include/configs

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

2024-02-12 Thread Fabio Estevam
Hi Tom, Please pull from u-boot-imx, thanks. The following changes since commit d7aaaf4223d0a2f9f8c9eed47d7431860b3116d8: Merge tag 'u-boot-dfu-20240209' of https://source.denx.de/u-boot/custodians/u-boot-dfu (2024-02-09 09:00:42 -0500) are available in the Git repository at:

Re: [PATCH v2 0/3] imx93_var_som: Enable AHAB support

2024-02-12 Thread Fabio Estevam
On Fri, Feb 9, 2024 at 7:30 AM Mathieu Othacehe wrote: > > Hello, > > In this v2, I moved imx93_probe_mu to a dedicated header. Applied all, thanks.

Re: [PATCH v2] spi: mxc_spi: Add imx6ul-ecspi compatible string

2024-02-12 Thread Fabio Estevam
4376fb68 ("arm64: dts: imx8mp: update ecspi compatible and clk") > 8eb1252bbedf ("spi: imx: remove ERR009165 workaround on i.mx6ul") > > Fixes: 451799a6ceac ("arm: dts: imx8mp: Sync the DT with kernel 6.4-rc4") > Reviewed-by: Fabio Estevam > Signed-off-by: Marek Vasut Applied, thanks.

Re: [PATCH] ARM: imx: Let SPL configure ECSPI1 clock on Data Modul i.MX8M Plus eDM SBC

2024-02-12 Thread Fabio Estevam
On Thu, Feb 8, 2024 at 2:34 PM Marek Vasut wrote: > > The SPL clock code does configure the ECSPI clock frequency, which has > to match the mxc-spi driver configuration for successful SPI NOR boot. > Drop the assigned-clock from DT ecspi1 node on this board to let the > SPL clock code do the

Re: [PATCH 1/3] mtd: spi-nor-ids: Add support for ESMT/EON EN25Q80B

2024-02-10 Thread Fabio Estevam
On Thu, Feb 8, 2024 at 1:59 PM Frieder Schrempf wrote: > > From: Frieder Schrempf > > The datasheet can be found here: > https://www.esmt.com.tw/upload/pdf/ESMT/datasheets/EN25Q80B_Ver.E.pdf > > Signed-off-by: Frieder Schrempf Reviewed-by: Fabio Estevam

Re: [PATCH 2/3] board: Add support for Sielaff i.MX6 Solo board

2024-02-10 Thread Fabio Estevam
Hi Frieder, On Thu, Feb 8, 2024 at 1:59 PM Frieder Schrempf wrote: > +/ { > + binman: binman { > + filename = "flash.bin"; > + pad-byte = <0x00>; > + > + spl: blob-ext@1 { > + offset = <0x0>; > +

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

2024-02-09 Thread Fabio Estevam
On Fri, Feb 9, 2024 at 3:27 PM Jesse T wrote: > These errors also happen on master. There are no errors in master, otherwise they would not pass the CI build. > I will submit a patch to fix these soon. Just to clarify: on master we do get the following warnings (not errors):

Re: [PATCH 0/2] imx93_var_som: Enable AHAB support

2024-02-09 Thread Fabio Estevam
On Fri, Feb 9, 2024 at 11:25 AM Mathieu Othacehe wrote: > Once the board is closed you can only boot from signed images. If the > signed image is not working (hanging during relocation for instance), > then you can always boot from a new one. All the interfaces: SD-card, > UART, USB are still

Re: [PATCH 3/3] doc: board: Add minimal documentation for Sielaff i.MX6 Solo board

2024-02-09 Thread Fabio Estevam
Hi Frieder, On Thu, Feb 8, 2024 at 1:59 PM Frieder Schrempf wrote: > +Burn the flash.bin to SD card at an offset of 1 KiB: > + > +.. code-block:: bash > + > + $ dd if=flash.bin of=/dev/sd[x] bs=1K seek=1 conv=notrunc I see that you used binman to create the flash.bin file. You could simply

Re: [PATCH 0/2] imx93_var_som: Enable AHAB support

2024-02-09 Thread Fabio Estevam
Hi Mathieu, On Fri, Feb 9, 2024 at 5:05 AM Mathieu Othacehe wrote: > No. I fused the board and with this series applied and the three HAFDBS > commits reverted, I can boot just fine on that board. Yes, this part I understood. > Without reverting those commits, the SPL is working fine and

Re: [PATCH] ARM: imx: Let SPL configure ECSPI1 clock on Data Modul i.MX8M Plus eDM SBC

2024-02-08 Thread Fabio Estevam
SPL clock code do the configuration and keep it aligned with the driver > expectation. > > Signed-off-by: Marek Vasut Reviewed-by: Fabio Estevam

Re: [PATCH] spi: mxc_spi: Add imx6ul-ecspi compatible string

2024-02-08 Thread Fabio Estevam
PI operation on i.MX8MP. > > Signed-off-by: Marek Vasut I assume this goes via Jagan's spi tree. Reviewed-by: Fabio Estevam

Re: [PATCH 1/2] board: imx93_var_som: Probe ELE MU

2024-02-08 Thread Fabio Estevam
On Thu, Feb 8, 2024 at 6:45 AM Mathieu Othacehe wrote: > diff --git a/board/variscite/imx93_var_som/spl.c > b/board/variscite/imx93_var_som/spl.c > index 502e599b91a..0965a2de996 100644 > --- a/board/variscite/imx93_var_som/spl.c > +++ b/board/variscite/imx93_var_som/spl.c > @@ -97,6 +97,7 @@

Re: [PATCH 0/2] imx93_var_som: Enable AHAB support

2024-02-08 Thread Fabio Estevam
Hi Mathieu, On Thu, Feb 8, 2024 at 6:45 AM Mathieu Othacehe wrote: > > Hello, > > This enables AHAB support on the imx93_var_som. > I was able to test that I can boot from signed images on a closed board. > > There is one issue that has been discovered and that is discussed here: >

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

2024-02-08 Thread Fabio Estevam
Hi Giulio, On Wed, Jan 31, 2024 at 10:06 AM Giulio Benetti wrote: > The problem is that mmu_set_region_dcache_behaviour() is not implemented > for armv7m and mxsfb.c requires it when DCache is enabled, that's why > I've disabled. > > So we can keep it as is or implement armv7m complete >

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

2024-02-08 Thread Fabio Estevam
storage support phycore-imx8mp: add support for booting and flashing emmc via UUU Fabio Estevam (3): mx6sabresd: Fix U-Boot corruption after saving the environment mx6sabresd: Convert to watchdog driver model mx6sabresd: Remove board_phy_config() Igor Opaniuk (2): imx

Re: [PATCH v3 1/4] imx8mp-phyboard-pollux-rdk: sync with kernel devicetree from v6.8-rc2

2024-02-08 Thread Fabio Estevam
On Thu, Feb 8, 2024 at 9:03 AM Benjamin Hahn wrote: > > sync devicetree with kernel v6.8-rc2. > > New commits on kernel v6.8-rc2: > 4a58fcdb1818 arm64: dts: imx8mp-phyboard-pollux: Add support for RS232/RS485 > 3bd7fdcc359e arm64: dts: imx8mp-phyboard-pollux: Add gpio-line-names > f5faa633daf8

Re: [PATCH v2 1/3] mx6sabresd: Fix U-Boot corruption after saving the environment

2024-02-08 Thread Fabio Estevam
On Fri, Feb 2, 2024 at 1:04 PM Fabio Estevam wrote: > > From: Fabio Estevam > > U-Boot binary has grown in such a way that it goes beyond the reserved > area for the environment variables. > > Running "saveenv" and rebooting the board causes U-Boot to hang bec

Re: [PATCH v1 2/2] imx: imx8: print reset cause

2024-02-08 Thread Fabio Estevam
On Wed, Jan 31, 2024 at 9:49 AM Igor Opaniuk wrote: > > Add support for printing reset cause during boot. > > Signed-off-by: Igor Opaniuk Applied, both, thanks.

Re: [PATCH v1] tools: mkimage: Add support for i.MXRT FlexSPI Header

2024-02-08 Thread Fabio Estevam
On Tue, Jan 23, 2024 at 11:15 PM Jesse Taube wrote: > > Modify imx8m Flex SPI Configuration Block to work with imxrt. > Add more Flex SPI configuration options to Kconfig. > > Signed-off-by: Jesse Taube > --- Applied, thanks.

Re: [PATCH] toradex: tdx-cfg-block: add 0086 i.mx8m mini sku

2024-02-08 Thread Fabio Estevam
On Wed, Jan 31, 2024 at 2:32 PM Joao Paulo Goncalves wrote: > > From: Joao Paulo Goncalves > > Add new product id 0086 Verdin iMX8M Mini DualLite 2GB IT. > > Signed-off-by: Joao Paulo Goncalves Applied, thanks.

Re: [PATCH v4] board: phytec: phycore-imx93: Add phyBOARD-Segin-i.MX93 support

2024-02-08 Thread Fabio Estevam
On Tue, Jan 30, 2024 at 11:50 AM Mathieu Othacehe wrote: > > Add initial support for the PHYTEC phyBOARD-Segin-i.MX93 board based on > the PHYTEC phyCORE-i.MX93 SoM. > > Supported features: > - 1GB LPDDR4 RAM > - eMMC > - external SD > - FEC Ethernet > - debug UART > - watchdog > > Signed-off-by:

Re: [PATCH] imx9: clock: Fix board_interface_eth_init for FEC

2024-02-08 Thread Fabio Estevam
On Tue, Jan 30, 2024 at 9:43 AM Primoz Fiser wrote: > > Commit d5eae216d833 ("net: dwc_eth_qos: Add board_interface_eth_init() > for i.MX93") implemented board_interface_eth_init for i.MX9 platforms. > However it only accounted for the EQOS interface while any board using > FEC as primary

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

2024-02-08 Thread Fabio Estevam
Hi Jesse, On Tue, Feb 6, 2024 at 1:40 PM Jesse Taube wrote: > > Add support for booting the imxrt1050-evk from spi. > Add imximage config and the ability for SPL to boot from NOR. > > Signed-off-by: Jesse Taube This causes the following build failure when building imxrt1020-evk_defconfig:

Re: inconsistent wget behavior

2024-02-07 Thread Fabio Estevam
Hi Paul, On Wed, Jan 10, 2024 at 9:20 AM Fabio Estevam wrote: > One colleague from you at Linaro was able to reproduce the bug: > > https://lore.kernel.org/u-boot/cadq0-x_cj1ecn67u3sefcz-jm4obsymzka+jazrca3ekq84...@mail.gmail.com/ > > It is not specific to i.MX. Have you had a

Re: [PATCH] drm/bridge: imx8mp-hdmi-pvi: Fix build warnings

2024-02-07 Thread Fabio Estevam
Hi Adam, On Tue, Feb 6, 2024 at 9:23 PM Adam Ford wrote: > > Two separate build warnings were reported. One from an > uninitialized variable, and the other from returning 0 > instead of NULL from a pointer. > > Fixes: 059c53e877ca ("drm/bridge: imx: add driver for HDMI TX Parallel Video >

Re: [PATCH 0/5] update venice dts

2024-02-05 Thread Fabio Estevam
Hi Tim, On Mon, Feb 5, 2024 at 4:09 PM Tim Harvey wrote: > > This series brings some recent upstream Linux dt updates into U-Boot for > the Gateworks Venice family. Please specify what "some recent upstream Linux dt" means. Is it 6.8-rc, linux-next, or Shawn's tree? Can't you instead sync the

Re: [PATCH v2 2/3] mx6sabresd: Convert to watchdog driver model

2024-02-02 Thread Fabio Estevam
On Fri, Feb 2, 2024 at 1:07 PM Tom Rini wrote: > Can all of this be upstreamed as well? I can try it, but that would go into kernel 6.9 in the best case. For now, let's keep it in u-boot.dtsi.

[PATCH v2 3/3] mx6sabresd: Remove board_phy_config()

2024-02-02 Thread Fabio Estevam
From: Fabio Estevam With Ethernet DM in place, there is no longer the need for having the board_phy_config() anymore. Remove it. Confirmed that TFTP transfer still works fine without board_phy_config(). Signed-off-by: Fabio Estevam --- Changes since v1: - Newly introduced. board

[PATCH v2 2/3] mx6sabresd: Convert to watchdog driver model

2024-02-02 Thread Fabio Estevam
From: 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.

[PATCH v2 1/3] mx6sabresd: Fix U-Boot corruption after saving the environment

2024-02-02 Thread Fabio Estevam
From: Fabio Estevam U-Boot binary has grown in such a way that it goes beyond the reserved area for the environment variables. Running "saveenv" and rebooting the board causes U-Boot to hang because of this overlap. Fix this problem by selecting CONFIG_LTO so that the U-B

[PATCH 2/2] mx6sabresd: Convert to watchdog driver model

2024-02-01 Thread Fabio Estevam
From: 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.

[PATCH 1/2] mx6sabresd: Fix U-Boot corruption after saving the environment

2024-02-01 Thread Fabio Estevam
From: Fabio Estevam U-Boot binary has grown in such a way that it goes beyond the reserved area for the environment variables. Running "saveenv" and rebooting the board causes U-Boot to hang because of this overlap. Fix this problem by increasing the CONFIG_ENV_OFFSET.

Re: [PATCH v2] imx: imx8mp: Add support for Polyhex Debix Model A SBC

2024-01-30 Thread Fabio Estevam
Hi Milan, On Tue, Jan 30, 2024 at 9:22 AM Milan Zamazal wrote: > Well, after trying both the SD cards again with fresh reinstallations, it > works > with a 32 GB card and I get the error above with a 64 GB card. Is it possible > that there is something wrong with SDXC cards? Does the change

Re: [PATCH 3/3] phycore-imx8mp: add support for booting and flashing emmc via UUU

2024-01-30 Thread Fabio Estevam
On Mon, Jan 29, 2024 at 4:56 AM Benjamin Hahn wrote: > > add support for Serial Downloader Boot via UUU as well as flashing emmc > via UUU on USB0 Port of phyBOARD Pollux. > > Signed-off-by: Benjamin Hahn Reviewed-by: Fabio Estevam

Re: [PATCH 2/3] phycore-imx8mp: add USB mass storage support

2024-01-30 Thread Fabio Estevam
On Mon, Jan 29, 2024 at 4:56 AM Benjamin Hahn wrote: > +_0 { > + status = "okay"; > + dr_mode = "peripheral"; > +}; Same comment as patch 1/3. Please sync the dts with Linux.

Re: [PATCH 1/3] phycore-imx8mp: add USB host support

2024-01-30 Thread Fabio Estevam
Hi Benjamin, On Mon, Jan 29, 2024 at 4:56 AM Benjamin Hahn wrote: > diff --git a/arch/arm/dts/imx8mp-phyboard-pollux-rdk-u-boot.dtsi > b/arch/arm/dts/imx8mp-phyboard-pollux-rdk-u-boot.dtsi > index 1c7b250549..5d6974f8fa 100644 > --- a/arch/arm/dts/imx8mp-phyboard-pollux-rdk-u-boot.dtsi > +++

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

2024-01-29 Thread Fabio Estevam
On Sun, Jan 28, 2024 at 6:43 PM Jesse Taube wrote: > +++ b/configs/imxrt1050-evk_fspi_defconfig > @@ -0,0 +1,100 @@ > +CONFIG_ARM=y > +CONFIG_SYS_DCACHE_OFF=y Out of curiosity: what are the problems if the D-Cache is turned on?

Re: [PATCH v1 2/2] imx: imxrt1050-evk: Add documentation for SPI boot

2024-01-28 Thread Fabio Estevam
On Sun, Jan 28, 2024 at 6:43 PM Jesse Taube wrote: > > Adds documentation for SPI boot. s/Adds/Add > +How to use U-Boot with SPI flash on NXP i.MXRT1050 EVK > +-- > + > +- Build U-Boot for i.MXRT1050 EVK: > + > +.. code-block:: bash > + > +

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

2024-01-28 Thread Fabio Estevam
Hi Jesse, On Sun, Jan 28, 2024 at 6:43 PM Jesse Taube wrote: > > This add some macros to change addresses to use flexspi. This sentence is not very clear. > This commit adds support for booting the imxrt1050-evk from spi. Please don't use 'This commit adds support' format. Use imperative

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

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

Re: [PATCH v1] tools: mkimage: Add support for i.MXRT FlexSPI Header

2024-01-27 Thread Fabio Estevam
On Tue, Jan 23, 2024 at 11:15 PM Jesse Taube wrote: > > Modify imx8m Flex SPI Configuration Block to work with imxrt. > Add more Flex SPI configuration options to Kconfig. > > Signed-off-by: Jesse Taube Applied, thanks.

Re: [PATCH] ARM: imx: Enable kaslrseed command on Data Modul i.MX8M Mini/Plus eDM SBC

2024-01-27 Thread Fabio Estevam
On Mon, Jan 22, 2024 at 11:56 AM 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] toradex: tdx-cfg-block: Add new apalis and colibri pid

2024-01-27 Thread Fabio Estevam
On Thu, Jan 25, 2024 at 8:02 AM Francesco Dolcini wrote: > there is some trailing space here at the end of the line. > > Fabio, can you fix this up before applying? Removed the whitespace and applied it, thanks.

Re: [PATCH v1] tools: mkimage: Add support for i.MXRT FlexSPI Header

2024-01-26 Thread Fabio Estevam
Hi Adam, On Thu, Jan 25, 2024 at 7:37 PM Adam Ford wrote: > I had to go back in time, because it appears the current version of > 'master' doesn't fully boot the FSPI, but when I applied this patch > against a working version, it still worked when I was done. I'll try > to git bisect the issue

Re: [PATCH] toradex: tdx-cfg-block: Add new apalis and colibri pid

2024-01-25 Thread Fabio Estevam
On Thu, Jan 25, 2024 at 8:02 AM Francesco Dolcini wrote: > there is some trailing space here at the end of the line. > > Fabio, can you fix this up before applying? Sure, but next time just run checkpatch :-)

Re: [PATCH v1] tools: mkimage: Add support for i.MXRT FlexSPI Header

2024-01-25 Thread Fabio Estevam
Hi Adam, On Tue, Jan 23, 2024 at 11:15 PM Jesse Taube wrote: > > Modify imx8m Flex SPI Configuration Block to work with imxrt. > Add more Flex SPI configuration options to Kconfig. > > Signed-off-by: Jesse Taube Could you please test it on imx8mn_beacon_fspi_defconfig ?

Re: [PATCH v3] board: phytec: phycore-imx93: Add phyBOARD-Segin-i.MX93 support

2024-01-25 Thread Fabio Estevam
On Thu, Jan 25, 2024 at 1:45 PM Mathieu Othacehe wrote: > +ipaddr=192.168.3.11 > +serverip=192.168.3.10 > +netmask=255.255.255.0 Please remove these hardcoded IP addresses.

[OE-core] [PATCH] piglit: Update to latest revision

2024-01-25 Thread Fabio Estevam
From: Fabio Estevam Update to the latest piglit revision. Signed-off-by: Fabio Estevam --- meta/recipes-graphics/piglit/piglit_git.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-graphics/piglit/piglit_git.bb b/meta/recipes-graphics/piglit/piglit_git.bb

[OE-core] [PATCH v2] pulseaudio: Update to 17.0

2024-01-24 Thread Fabio Estevam
From: Fabio Estevam Update to pulseaudio 17.0 version. Since pulseaudio commit e96d278bfc51 ("daemon/meson.build: Install dbus policy in /usr, not /etc"), pulseaudio-system.conf needs to be passed in FILES, otherwise the following QA error is seen: ERROR: pulseaudio-17.0-r0 do_p

Re: [OE-core] [PATCH] pulseaudio: Update to 17.0

2024-01-24 Thread Fabio Estevam
Hi Ross, On Wed, Jan 24, 2024 at 9:48 AM Ross Burton wrote: > > On 23 Jan 2024, at 14:08, Fabio Estevam via lists.openembedded.org > wrote: > > +FILES:${PN}-server = "${bindir}/pulseaudio ${bindir}/start-* ${datadir} > > ${sysconfdir} ${bindir}/pactl */udev/rul

Re: Could you please help me in resolving the " /reset.c:42:(.text.do_reset+0x20): undefined reference to `reset_cpu'?"

2024-01-23 Thread Fabio Estevam
On Tue, Jan 23, 2024 at 4:20 PM Liu Wang wrote: > > Hi Fabio, > > Thank you for your help. > > Attached is the 'git status' and 'git log' in my porting u-boot to my > cse_ptjob_cb3_r102 control board by following README in u-boot and being > blocked with the hurdle of "undefined reference to

[OE-core] [PATCH] pulseaudio: Update to 17.0

2024-01-23 Thread Fabio Estevam
From: Fabio Estevam Update to pulseaudio 17.0 version. Since pulseaudio commit e96d278bfc51 ("daemon/meson.build: Install dbus policy in /usr, not /etc"), ${datadir} needs to be passed in FILES, otherwise the following QA error is seen: ERROR: pulseaudio-17.0-r0 do_package

Re: Could you please help me in resolving the " /reset.c:42:(.text.do_reset+0x20): undefined reference to `reset_cpu'?"

2024-01-22 Thread Fabio Estevam
Hi Liu Wang, On Mon, Jan 22, 2024 at 10:55 PM Liu Wang wrote: > > Hi Fabio, > > Could you please help me in resolving the " > /reset.c:42:(.text.do_reset+0x20): undefined reference to `reset_cpu'?" from: > u-boot$make all: Looking at the errors below, there are several errors besides the

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