Hi Tom, Please pull from u-boot-imx/next, thanks.
The following changes since commit eeefcacb851f7f0bccabc3089a725f5ce86f5c70: Merge tag 'u-boot-stm32-20250312' of https://source.denx.de/u-boot/custodians/u-boot-stm into next (2025-03-12 21:36:52 -0600) are available in the Git repository at: https://gitlab.denx.de/u-boot/custodians/u-boot-imx.git tags/u-boot-imx-next-20250313 for you to fetch changes up to 21a4ac55c0d4eba836a45345d011093ffdc85b5c: mailbox: add i.MX Messaging Unit (MU) driver (2025-03-13 15:15:50 -0300) u-boot-imx-next-20250313 ------------------------ CI: https://source.denx.de/u-boot/custodians/u-boot-imx/-/pipelines/25142 - Support Toradex i.MX6 Apalis/Colibri v1.2 SoM. - Guard tee.bin inclusion on imx9, - Remove unneeded regulator entry on DH i.MX6 DHCOM DRC02 devicetree. - Add i.MX mailbox driver - Convert ESDHCI_QUIRK_BROKEN_TIMEOUT_VALUE to Kconfig. - Cope with existing optee node on imx8m. ---------------------------------------------------------------- Ernest Van Hoecke (2): board: toradex: apalis/colibri imx6: Detect new v1.2 SoM variant toradex: apalis/colibri imx6: Select correct DTB for SoM v1.2+ Fabio Estevam (1): imx9: container.cfg: Guard tee.bin inclusion Marek Vasut (1): ARM: dts: imx: Drop bogus regulator extras on DH i.MX6 DHCOM DRC02 Peng Fan (1): mailbox: add i.MX Messaging Unit (MU) driver Tom Rini (1): mmc: fsl_esdhc: Migrate ESDHCI_QUIRK_BROKEN_TIMEOUT_VALUE to Kconfig Vincent Stehlé (1): imx8m: soc: cope with existing optee node MAINTAINERS | 1 + arch/arm/dts/imx6qdl-dhcom-u-boot.dtsi | 5 - arch/arm/mach-imx/imx8m/soc.c | 3 +- arch/arm/mach-imx/imx9/container.cfg | 2 + arch/powerpc/include/asm/config_mpc85xx.h | 3 - board/toradex/apalis_imx6/apalis_imx6.c | 31 +++ board/toradex/colibri_imx6/colibri_imx6.c | 31 +++ configs/apalis_imx6_defconfig | 2 +- configs/colibri_imx6_defconfig | 2 +- drivers/mailbox/Kconfig | 7 + drivers/mailbox/Makefile | 1 + drivers/mailbox/imx-mailbox.c | 443 ++++++++++++++++++++++++++++++ drivers/mmc/Kconfig | 6 + drivers/mmc/fsl_esdhc_imx.c | 8 +- include/configs/imxrt1020-evk.h | 2 - include/configs/imxrt1050-evk.h | 2 - include/configs/imxrt1170-evk.h | 2 - 17 files changed, 527 insertions(+), 24 deletions(-) create mode 100644 drivers/mailbox/imx-mailbox.c