public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH 00/12] imx9: switch to bootstd for i.MX93/1 EVK/QSB and i.MX8M EVK
@ 2025-01-04  4:25 Peng Fan (OSS)
  2025-01-04  4:25 ` [PATCH 01/12] imx: imx93_evk: switch to BOOTSTD Peng Fan (OSS)
                   ` (12 more replies)
  0 siblings, 13 replies; 26+ messages in thread
From: Peng Fan (OSS) @ 2025-01-04  4:25 UTC (permalink / raw)
  To: Stefano Babic, Fabio Estevam, NXP i.MX U-Boot Team; +Cc: u-boot, Peng Fan

Switch to bootstd for NXP i.MX9/8M boards with a bsp_bootcmd as fallback.

Patch 12 not related to bootstd, it is just one addon patch to cleanup

CI: https://dev.azure.com/pengfan/uboot-ci/_build/results?buildId=15&view=results

Signed-off-by: Peng Fan <peng.fan@nxp.com>
---
Peng Fan (12):
      imx: imx93_evk: switch to BOOTSTD
      imx: imx93_qsb: switch to BOOTSTD
      imx: imx91_evk: switch to BOOTSTD
      imx: imx8mp_evk: Enable dynamic settings to mmcdev and mmcroot
      imx: imx8mp_evk: Switch to BOOTSTD
      imx: imx8mn_evk: Enable dynamic settings to mmcdev and mmcroot
      imx: imx8mn_evk: Switch to BOOTSTD
      imx: imx8mm_evk: Enable dynamic settings to mmcdev and mmcroot
      imx: imx8mm_evk: Switch to BOOTSTD
      imx: imx8mq_evk: Enable dynamic settings to mmcdev and mmcroot
      imx: imx8mq_evk: Switch to BOOTSTD
      imx: imx93-11x11-evk: drop duplicated nodes

 arch/arm/dts/imx93-11x11-evk-u-boot.dtsi     | 118 ---------------------------
 arch/arm/mach-imx/imx8m/Kconfig              |   8 ++
 arch/arm/mach-imx/imx9/Kconfig               |   6 ++
 board/freescale/common/Makefile              |   2 +-
 board/freescale/imx8mm_evk/imx8mm_evk.c      |   3 +
 board/freescale/imx8mm_evk/imx8mm_evk.env    |  67 +++++++++++++++
 board/freescale/imx8mn_evk/imx8mn_evk.c      |   9 +-
 board/freescale/imx8mn_evk/imx8mn_evk.env    |  67 +++++++++++++++
 board/freescale/imx8mp_evk/imx8mp_evk.c      |   5 ++
 board/freescale/imx8mp_evk/imx8mp_evk.env    |  57 +++++++++++++
 board/freescale/imx8mq_evk/imx8mq_evk.c      |  25 ++----
 board/freescale/imx8mq_evk/imx8mq_evk.env    |  60 ++++++++++++++
 board/freescale/imx91_evk/imx91_evk.env      |  29 ++++++-
 board/freescale/imx93_evk/imx93_evk.env      |  88 ++++++++++++++++++++
 board/freescale/imx93_qsb/imx93_qsb.env      |  29 ++++++-
 configs/imx8mm_evk_defconfig                 |   4 +-
 configs/imx8mm_evk_fspi_defconfig            |   4 +-
 configs/imx8mn_evk_defconfig                 |   3 +-
 configs/imx8mp_evk_defconfig                 |   3 +-
 configs/imx8mq_evk_defconfig                 |   4 +-
 configs/imx91_11x11_evk_defconfig            |   2 +-
 configs/imx91_11x11_evk_inline_ecc_defconfig |   2 +-
 configs/imx93_11x11_evk_defconfig            |   3 +-
 configs/imx93_9x9_qsb_defconfig              |   2 +-
 configs/imx93_9x9_qsb_inline_ecc_defconfig   |   2 +-
 drivers/gpio/adp5585_gpio.c                  |   2 +-
 include/configs/imx8mm_evk.h                 |  22 -----
 include/configs/imx8mn_evk.h                 |  30 -------
 include/configs/imx8mp_evk.h                 |  21 -----
 include/configs/imx8mq_evk.h                 |  22 -----
 include/configs/imx93_evk.h                  | 105 ------------------------
 31 files changed, 448 insertions(+), 356 deletions(-)
---
base-commit: a3d3d869b6f5860660718d05ee9b4d040d938e0f
change-id: 20241231-imx-bootstd-abbf2e9e0d75

Best regards,
-- 
Peng Fan <peng.fan@nxp.com>


^ permalink raw reply	[flat|nested] 26+ messages in thread

end of thread, other threads:[~2025-01-14 13:14 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-04  4:25 [PATCH 00/12] imx9: switch to bootstd for i.MX93/1 EVK/QSB and i.MX8M EVK Peng Fan (OSS)
2025-01-04  4:25 ` [PATCH 01/12] imx: imx93_evk: switch to BOOTSTD Peng Fan (OSS)
2025-01-06 11:06   ` Fabio Estevam
2025-01-04  4:25 ` [PATCH 02/12] imx: imx93_qsb: " Peng Fan (OSS)
2025-01-04  4:25 ` [PATCH 03/12] imx: imx91_evk: " Peng Fan (OSS)
2025-01-04  4:25 ` [PATCH 04/12] imx: imx8mp_evk: Enable dynamic settings to mmcdev and mmcroot Peng Fan (OSS)
2025-01-04  4:25 ` [PATCH 05/12] imx: imx8mp_evk: Switch to BOOTSTD Peng Fan (OSS)
2025-01-04  4:25 ` [PATCH 06/12] imx: imx8mn_evk: Enable dynamic settings to mmcdev and mmcroot Peng Fan (OSS)
2025-01-06 11:09   ` Fabio Estevam
2025-01-04  4:25 ` [PATCH 07/12] imx: imx8mn_evk: Switch to BOOTSTD Peng Fan (OSS)
2025-01-04  4:25 ` [PATCH 08/12] imx: imx8mm_evk: Enable dynamic settings to mmcdev and mmcroot Peng Fan (OSS)
2025-01-04  4:25 ` [PATCH 09/12] imx: imx8mm_evk: Switch to BOOTSTD Peng Fan (OSS)
2025-01-04  4:25 ` [PATCH 10/12] imx: imx8mq_evk: Enable dynamic settings to mmcdev and mmcroot Peng Fan (OSS)
2025-01-06 11:11   ` Fabio Estevam
2025-01-04  4:25 ` [PATCH 11/12] imx: imx8mq_evk: Switch to BOOTSTD Peng Fan (OSS)
2025-01-04  4:25 ` [PATCH 12/12] imx: imx93-11x11-evk: drop duplicated nodes Peng Fan (OSS)
2025-01-04 19:30 ` [PATCH 00/12] imx9: switch to bootstd for i.MX93/1 EVK/QSB and i.MX8M EVK Simon Glass
2025-01-06  1:33   ` Peng Fan
2025-01-06  1:02     ` Simon Glass
2025-01-06  1:14       ` Peng Fan
2025-01-06 12:15         ` Simon Glass
2025-01-06 23:45           ` Tony Dinh
2025-01-13  9:48             ` Frieder Schrempf
2025-01-14 13:13               ` Simon Glass
2025-01-07  1:39           ` Peng Fan
2025-01-08 16:27             ` Simon Glass

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox