
Hi Tom,
Please pull from u-boot-imx/next, thanks.
The following changes since commit 377e91c162ab09ec20f96f966f380cb55c590edd:
Merge patch series "Clean-up patch set for MbedTLS integration" (2024-05-22 08:55:35 -0600)
are available in the Git repository at:
https://gitlab.denx.de/u-boot/custodians/u-boot-imx.git tags/u-boot-imx-next-20240524
for you to fetch changes up to 7457dc6f183303aaf2d58fff0a622e6791aba33c:
imx: hab: add documentation about the required keys/certs (2024-05-24 11:33:15 -0300)
u-boot-imx-master-20240524 --------------------------
CI: https://source.denx.de/u-boot/custodians/u-boot-imx/-/pipelines/20834
- Allow signing i.MX8M flash.bin via binman, which is a much more elegant solution that using scripts. - Improve i.MX8M HAB documentation. - Increase PHY auto-negotiation timeout to 20s on MX8Menlo - Add bmode support for the MX53 Menlo board. - Update Update iMX8MM Menlo board configuration ---------------------------------------------------------------- Claudius Heine (1): imx: hab: add documentation about the required keys/certs
Marek Vasut (8): binman: Add nxp_imx8mcst etype for i.MX8M flash.bin signing ARM: dts: imx: Introduce SPL and FIT labels to i.MX8M DTs binman nodes ARM: dts: imx: Wrap i.MX8M binman SPL and FIT nodes in CST node if IMX_HAB enabled imx: hab: Use nxp_imx8mcst etype for i.MX8M flash.bin signing ARM: imx: Add doc/imx/ to i.MX MAINTAINERS entry ARM: imx: Increase PHY auto-negotiation timeout to 20s on MX8Menlo ARM: dts: imx8mm: Update iMX8MM Menlo board configuration ARM: imx: mx5: Enable BMODE command on MX53 Menlo board
Olaf Mandel (1): ARM: imx: mx5: Simplify TFTP server layout on MX53 Menlo board
.gitignore | 2 + MAINTAINERS | 1 + Makefile | 2 +- arch/arm/dts/imx8mm-u-boot.dtsi | 195 ++++++++++++---------- arch/arm/dts/imx8mm-verdin-wifi-dev-u-boot.dtsi | 8 +- arch/arm/dts/imx8mn-u-boot.dtsi | 209 +++++++++++++----------- arch/arm/dts/imx8mp-dhcom-u-boot.dtsi | 124 +++++++------- arch/arm/dts/imx8mp-rsb3720-a1-u-boot.dtsi | 26 ++- arch/arm/dts/imx8mp-u-boot.dtsi | 172 ++++++++++--------- arch/arm/dts/imx8mq-librem5-r4-u-boot.dtsi | 10 +- arch/arm/dts/imx8mq-u-boot.dtsi | 182 ++++++++++++--------- configs/imx8mm-mx8menlo_defconfig | 28 +++- configs/m53menlo_defconfig | 3 +- doc/imx/habv4/csf_examples/mx8m/csf.sh | 92 ----------- doc/imx/habv4/csf_examples/mx8m/csf_fit.txt | 30 ---- doc/imx/habv4/csf_examples/mx8m/csf_spl.txt | 33 ---- doc/imx/habv4/guides/mx8m_spl_secure_boot.txt | 131 ++++++--------- include/configs/imx8mm-mx8menlo.h | 3 + include/configs/m53menlo.h | 2 +- tools/binman/btool/cst.py | 48 ++++++ tools/binman/etype/nxp_imx8mcst.py | 164 +++++++++++++++++++ 21 files changed, 799 insertions(+), 666 deletions(-) delete mode 100644 doc/imx/habv4/csf_examples/mx8m/csf.sh delete mode 100644 doc/imx/habv4/csf_examples/mx8m/csf_fit.txt delete mode 100644 doc/imx/habv4/csf_examples/mx8m/csf_spl.txt create mode 100644 tools/binman/btool/cst.py create mode 100644 tools/binman/etype/nxp_imx8mcst.py