Hi Tom, Please pull from u-boot-imx/master, thanks.
The following changes since commit a3e09b24ffd4429909604f1b28455b44306edbaa: Merge tag 'mmc-2025-05-20' of https://source.denx.de/u-boot/custodians/u-boot-mmc (2025-05-20 08:35:31 -0600) are available in the Git repository at: https://gitlab.denx.de/u-boot/custodians/u-boot-imx.git tags/u-boot-imx-master-20250522 for you to fetch changes up to 159b6f0e119962ce5da645f548cefe9196c8778e: caam: Fix CAAM error on startup (2025-05-22 09:01:51 -0300) u-boot-imx-master-20250522 -------------------------- CI: https://source.denx.de/u-boot/custodians/u-boot-imx/-/pipelines/26275 - Fix boot regression on imx8mn_bsh_smm_s2/s2pro. - Fix reset on imx6ulz_smm_m2. - Adjust DDR initialization on imx6ulz_smm_m2. - Fix CAAM startup error. ---------------------------------------------------------------- Dario Binacchi (6): arm: imx: imx8m: soc: replace ifdef by IS_ENABLED() spl: Kconfig: support U-Boot load from raw NAND imx: spl_imx_romapi: support raw NAND sector configs: imx8mn_bsh_smm_s2: load U-Boot from raw NAND board: bsh: imx8mn_bsh_smm_s2/s2pro: enlarge CONFIG_SPL_SYS_MALLOC_F_LEN board: bsh: imx8mn_bsh_smm_s2/s2pro: let clock system enable UART clock Michael Bode (2): board: bsh: imx6ulz_smm_m2: Add support for 512 MiB DRAM board: bsh: imx6ulz_smm_m2: Add delay between DRAM read access Michael Trimarchi (6): arm: imx: imx8m: soc: fix the macro name arm: dts: imx6ulz-bsh-smm-m2-u-boot: Drop soc node configs: imx6ulz_smm_m2: Add board watchdog reset configuration arm: dts: imx6ulz-bsh-smm-m2: Fix reset using wdt-reboot driver board: freescale: imx8mn_evk: let clock system enable UART clock board: bsh: imx6ulz_smm_m2: Match SPL DDR settings to DCD table Olaf Baehring (1): caam: Fix CAAM error on startup Primoz Fiser (1): ARM: dts: imx93-phycore: Migrate to OF_UPSTREAM Simon Holesch (1): board: bsh: imx6ulz_smm_m2: Add support for 256 MiB DRAM arch/arm/dts/Makefile | 3 +- arch/arm/dts/imx6ulz-bsh-smm-m2-u-boot.dtsi | 8 +- arch/arm/dts/imx93-phyboard-segin.dts | 117 ------------------- arch/arm/dts/imx93-phycore-som.dtsi | 126 -------------------- arch/arm/mach-imx/imx8m/soc.c | 42 +++---- arch/arm/mach-imx/imx9/Kconfig | 1 + arch/arm/mach-imx/spl_imx_romapi.c | 8 +- board/bsh/imx6ulz_smm_m2/Makefile | 3 +- board/bsh/imx6ulz_smm_m2/ddr3l_timing_128m.c | 169 +++++++++++++++++++++++++++ board/bsh/imx6ulz_smm_m2/ddr3l_timing_256m.c | 168 ++++++++++++++++++++++++++ board/bsh/imx6ulz_smm_m2/ddr3l_timing_512m.c | 168 ++++++++++++++++++++++++++ board/bsh/imx6ulz_smm_m2/spl.c | 111 +++++++----------- board/bsh/imx6ulz_smm_m2/spl_mtypes.h | 27 +++++ board/bsh/imx8mn_smm_s2/spl.c | 2 - board/freescale/imx8mn_evk/spl.c | 2 - board/phytec/phycore_imx93/MAINTAINERS | 2 - common/spl/Kconfig | 15 +++ configs/imx6ulz_smm_m2_defconfig | 3 + configs/imx8mn_bsh_smm_s2_defconfig | 3 +- configs/imx8mn_bsh_smm_s2pro_defconfig | 1 - configs/imx93-phycore_defconfig | 2 +- drivers/crypto/fsl/jr.c | 25 ++-- drivers/crypto/fsl/jr.h | 4 - include/configs/imx6ulz_smm_m2.h | 6 +- 24 files changed, 647 insertions(+), 369 deletions(-) delete mode 100644 arch/arm/dts/imx93-phyboard-segin.dts delete mode 100644 arch/arm/dts/imx93-phycore-som.dtsi create mode 100644 board/bsh/imx6ulz_smm_m2/ddr3l_timing_128m.c create mode 100644 board/bsh/imx6ulz_smm_m2/ddr3l_timing_256m.c create mode 100644 board/bsh/imx6ulz_smm_m2/ddr3l_timing_512m.c create mode 100644 board/bsh/imx6ulz_smm_m2/spl_mtypes.h