Hi Tom, Please pull from u-boot-imx/main, thanks.
The following changes since commit baa64b2f892890f00a377eac4a3e685472bb56b5: Merge tag 'efi-2026-10-rc2-2' of https://git.u-boot-project.org/u-boot/custodians/u-boot-efi (2026-07-31 08:55:30 -0600) are available in the Git repository at: https://git.u-boot-project.org/u-boot/custodians/u-boot-imx.git tags/u-boot-imx-main-20260807 for you to fetch changes up to fca58e8a08cf2ba2b09350732fd2b8d62b265463: binman: nxp_imx8mcst: Handle FCFB header during SPI NOR boot (2026-08-06 22:05:45 -0300) u-boot-imx-main-20260807 ------------------------ CI: https://git.u-boot-project.org/u-boot/custodians/u-boot-imx/-/pipelines/906 - Fix a boot regression on i.MX7 related to the system counter. - Add Aquila iMX95 0243 PID4. - Update phycore_imx8mm DDR timings. - Add FRDM-IMX95 initial support. - Handle FCFB header during SPI NOR boot and CST backend selection. ---------------------------------------------------------------- Emanuele Ghidoli (1): arm: imx: initialize the system counter earlier on i.MX7 Franz Schnyder (1): toradex: tdx-cfg-block: Add Aquila iMX95 0243 PID4 INgo Rah (2): board: phycore_imx8mm: update RAM timings board: phycore_imx8mm: add 1 and 4GB RAM timings Joseph Guo (2): imx: scmi: suppress invalid origin/errid in reset reason print imx: Add FRDM-IMX95 initial support Marek Vasut (2): binman: add CST backend selection for i.MX8M signing binman: nxp_imx8mcst: Handle FCFB header during SPI NOR boot arch/arm/dts/imx8mm-phygate-tauri-l-u-boot.dtsi | 23 + arch/arm/dts/imx95-15x15-frdm-u-boot.dtsi | 81 + arch/arm/mach-imx/imx9/Kconfig | 9 + arch/arm/mach-imx/imx9/scmi/soc.c | 52 +- arch/arm/mach-imx/mx7/soc.c | 6 + arch/arm/mach-imx/syscounter.c | 6 +- board/nxp/imx95_frdm/Kconfig | 12 + board/nxp/imx95_frdm/MAINTAINERS | 6 + board/nxp/imx95_frdm/Makefile | 11 + board/nxp/imx95_frdm/imx95_frdm.c | 24 + board/nxp/imx95_frdm/imx95_frdm.env | 93 ++ board/nxp/imx95_frdm/spl.c | 82 + board/phytec/phycore_imx8mm/Kconfig | 65 + board/phytec/phycore_imx8mm/lpddr4_timing.c | 1867 +++++++++++----------- board/phytec/phycore_imx8mm/lpddr4_timing.h | 13 + board/phytec/phycore_imx8mm/phycore-imx8mm.c | 18 + board/phytec/phycore_imx8mm/spl.c | 56 +- board/toradex/common/tdx-cfg-block.c | 1 + board/toradex/common/tdx-cfg-block.h | 1 + configs/imx8mm-phygate-tauri-l_defconfig | 1 + configs/imx95_15x15_frdm_defconfig | 143 ++ doc/board/nxp/imx95_frdm.rst | 131 ++ doc/board/nxp/index.rst | 1 + doc/imx/habv4/guides/mx8m_spl_secure_boot.txt | 30 +- include/configs/imx95_frdm.h | 23 + include/configs/phycore_imx8mm.h | 5 +- tools/binman/etype/nxp_imx8mcst.py | 38 +- tools/binman/ftest.py | 33 + tools/binman/test/vendor/nxp_imx8_csf_pkcs11.dts | 27 + 29 files changed, 1852 insertions(+), 1006 deletions(-) create mode 100644 arch/arm/dts/imx95-15x15-frdm-u-boot.dtsi create mode 100644 board/nxp/imx95_frdm/Kconfig create mode 100644 board/nxp/imx95_frdm/MAINTAINERS create mode 100644 board/nxp/imx95_frdm/Makefile create mode 100644 board/nxp/imx95_frdm/imx95_frdm.c create mode 100644 board/nxp/imx95_frdm/imx95_frdm.env create mode 100644 board/nxp/imx95_frdm/spl.c create mode 100644 board/phytec/phycore_imx8mm/lpddr4_timing.h create mode 100644 configs/imx95_15x15_frdm_defconfig create mode 100644 doc/board/nxp/imx95_frdm.rst create mode 100644 include/configs/imx95_frdm.h create mode 100644 tools/binman/test/vendor/nxp_imx8_csf_pkcs11.dts
