Hi Tom, Please pull from u-boot-imx/master, thanks.
The following changes since commit a70d991212c9684e09ed80ece69ce1ff7bfd9f08: clk: clk-uclass: Print clk name in clk_enable/clk_disable (2024-08-01 15:35:28 -0600) are available in the Git repository at: https://gitlab.denx.de/u-boot/custodians/u-boot-imx.git tags/u-boot-imx-master-20240802 for you to fetch changes up to 0ee02e1c252da85a6ac75865ca33accde69072b7: config: Adjust Phytec imx8mm module config to support NVME disk (2024-08-02 15:16:54 -0300) u-boot-imx-master-20240802 -------------------------- CI: https://source.denx.de/u-boot/custodians/u-boot-imx/-/pipelines/21846 - Convert warp7 to OF_UPSTREAM. - Add 'cpu' command to imx8m and imx93. - Enable CMD_ERASEENV for imx8mm/mp Phytec boards. ---------------------------------------------------------------- Fabio Estevam (1): warp7: Convert to OF_UPSTREAM Hou Zhiqiang (14): clk: imx8m: register ARM A53 core clock cpu: add release_core callback cpu: sandbox: implement release_core callback test: cpu: add test for release CPU core. cpu: imx: fix the CPU frequency in cpu_imx_get_info() cpu: imx: fix the CPU type field width cpu: imx: removed the tail '\n' of the CPU description cpu: imx: Add i.MX 8M series SoCs cpu: imx: implement release_core callback cmd: cpu: add release subcommand doc: cmd: add documentation for cpu command MAINTAINERS: add entry for cpu command configs: imx8m: enable the 'cpu' command configs: imx93: enable the 'cpu' command Lukasz Majewski (1): config: Adjust Phytec imx8mm module config to support NVME disk Yannic Moog (3): configs: imx8mm-phygate-tauri-l_defconfig: enable CMD_ERASEENV configs: phycore-imx8mm_defconfig: enable CMD_ERASEENV configs: phycore-imx8mp_defconfig: enable CMD_ERASEENV MAINTAINERS | 7 + arch/arm/dts/Makefile | 1 - arch/arm/dts/imx7s-warp.dts | 500 ------------------------------- arch/arm/mach-imx/mx7/Kconfig | 1 + cmd/cpu.c | 44 ++- configs/imx8mm-phygate-tauri-l_defconfig | 1 + configs/imx8mm_evk_defconfig | 3 + configs/imx8mn_evk_defconfig | 3 + configs/imx8mp_evk_defconfig | 3 + configs/imx93_11x11_evk_defconfig | 1 + configs/phycore-imx8mm_defconfig | 11 +- configs/phycore-imx8mp_defconfig | 1 + configs/warp7_bl33_defconfig | 2 +- configs/warp7_defconfig | 2 +- doc/usage/cmd/cpu.rst | 101 +++++++ doc/usage/index.rst | 1 + drivers/clk/imx/clk-imx8mm.c | 8 + drivers/clk/imx/clk-imx8mn.c | 8 + drivers/clk/imx/clk-imx8mp.c | 8 + drivers/cpu/cpu-uclass.c | 10 + drivers/cpu/cpu_sandbox.c | 6 + drivers/cpu/imx8_cpu.c | 38 ++- include/cpu.h | 15 + test/dm/cpu.c | 2 + 24 files changed, 266 insertions(+), 511 deletions(-) delete mode 100644 arch/arm/dts/imx7s-warp.dts create mode 100644 doc/usage/cmd/cpu.rst