From: "Peng Fan (OSS)" <peng.fan@oss.nxp.com>
To: Stefano Babic <sbabic@denx.de>,
Fabio Estevam <festevam@gmail.com>,
"NXP i.MX U-Boot Team" <uboot-imx@nxp.com>
Cc: u-boot@lists.denx.de, Peng Fan <peng.fan@nxp.com>
Subject: [PATCH 00/12] imx9: switch to bootstd for i.MX93/1 EVK/QSB and i.MX8M EVK
Date: Sat, 04 Jan 2025 12:25:34 +0800 [thread overview]
Message-ID: <20250104-imx-bootstd-v1-0-e09618cc1d65@nxp.com> (raw)
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>
next reply other threads:[~2025-01-04 3:19 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-04 4:25 Peng Fan (OSS) [this message]
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
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250104-imx-bootstd-v1-0-e09618cc1d65@nxp.com \
--to=peng.fan@oss.nxp.com \
--cc=festevam@gmail.com \
--cc=peng.fan@nxp.com \
--cc=sbabic@denx.de \
--cc=u-boot@lists.denx.de \
--cc=uboot-imx@nxp.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox