mbox series

[GIT,PULL] Please pull u-boot-imx-master-20240813

Message ID 20240813135445.396224-1-festevam@gmail.com
State Accepted
Delegated to: Tom Rini
Headers show
Series [GIT,PULL] Please pull u-boot-imx-master-20240813 | expand

Pull-request

https://gitlab.denx.de/u-boot/custodians/u-boot-imx.git tags/u-boot-imx-master-20240813

Message

Fabio Estevam Aug. 13, 2024, 1:54 p.m. UTC
Hi Tom,

Please pull from u-boot-imx/master, thanks.

The following changes since commit 06dceeba3d4515ccfbe37b8989ee047a7628aee3:

  Merge tag 'u-boot-rockchip-20240812' of https://source.denx.de/u-boot/custodians/u-boot-rockchip (2024-08-12 07:58:24 -0600)

are available in the Git repository at:

  https://gitlab.denx.de/u-boot/custodians/u-boot-imx.git tags/u-boot-imx-master-20240813

for you to fetch changes up to 72801d9971d09734f17056fd4836604d4ffd275f:

  tqma6: Do not print the board name twice (2024-08-13 09:31:35 -0300)

u-boot-imx-master-20240813
--------------------------

CI: https://source.denx.de/u-boot/custodians/u-boot-imx/-/pipelines/22014

- Convert tqma6q_mba6 to watchdog DM to fix reset.
- Convert tqma6q_mba6 to PMIC and I2C DM.
- Convert tqma6q_mba6 to OF_UPSTREAM.
- Do not print the board name twice on tqma6.
- Enable CMD_ERASEENV for imx8mm/mp Phytec boards.
- Add imx8ulp binman support.
- Fix imx8 build when CONFIG_IMX_BOOTAUX is set.
----------------------------------------------------------------
Fabio Estevam (4):
      tqma6q_mba6: Convert to watchdog driver model
      imx6-tqma6: Convert to OF_UPSTREAM
      tqma6: Convert to PMIC and I2C driver model
      tqma6: Do not print the board name twice

Gary Bisson (5):
      tools: imx8image: fix soc variable for ULP
      tools: imx8image: add upower image support
      spl: binman: Disable u_boot_any symbols for i.MX 8ULP boards
      mach-imx: Add i.MX 8ULP binman support
      imx8ulp_evk: enable binman support

Max Krummenacher (1):
      imx: imx8: fix build when CONFIG_IMX_BOOTAUX is set

 arch/arm/dts/Makefile                   |   4 -
 arch/arm/dts/imx6dl-mba6b-u-boot.dtsi   |   3 +
 arch/arm/dts/imx6dl-mba6b.dts           |  21 ----
 arch/arm/dts/imx6dl-tqma6a.dtsi         |  16 ---
 arch/arm/dts/imx6dl-tqma6b.dtsi         |  16 ---
 arch/arm/dts/imx6q-mba6b-u-boot.dtsi    |   3 +
 arch/arm/dts/imx6q-mba6b.dts            |  20 ---
 arch/arm/dts/imx6q-tqma6a.dtsi          |  16 ---
 arch/arm/dts/imx6q-tqma6b.dtsi          |  15 ---
 arch/arm/dts/imx6qdl-mba6-u-boot.dtsi   |  15 +++
 arch/arm/dts/imx6qdl-tqma6.dtsi         | 215 --------------------------------
 arch/arm/dts/imx6qdl-tqma6a.dtsi        |  53 --------
 arch/arm/dts/imx6qdl-tqma6b.dtsi        |  33 -----
 arch/arm/dts/imx8ulp-evk-u-boot.dtsi    |   2 +
 arch/arm/dts/imx8ulp-u-boot.dtsi        |  63 ++++++++++
 arch/arm/mach-imx/Makefile              |   4 +-
 arch/arm/mach-imx/imx8/cpu.c            |   4 +-
 arch/arm/mach-imx/imx8ulp/Kconfig       |   1 +
 arch/arm/mach-imx/imx8ulp/container.cfg |   7 ++
 arch/arm/mach-imx/imx8ulp/imximage.cfg  |   9 ++
 board/tq/tqma6/Kconfig                  |   1 +
 board/tq/tqma6/tqma6.c                  |  66 ++--------
 common/spl/Kconfig                      |   2 +-
 common/spl/Kconfig.tpl                  |   2 +-
 common/spl/Kconfig.vpl                  |   2 +-
 configs/imx8ulp_evk_defconfig           |   3 +-
 configs/tqma6dl_mba6_mmc_defconfig      |   6 +-
 configs/tqma6dl_mba6_spi_defconfig      |   5 +-
 configs/tqma6q_mba6_mmc_defconfig       |   5 +-
 configs/tqma6q_mba6_spi_defconfig       |   7 +-
 configs/tqma6s_mba6_mmc_defconfig       |   5 +-
 configs/tqma6s_mba6_spi_defconfig       |   5 +-
 doc/board/nxp/imx8ulp_evk.rst           |  79 ++++++++++++
 doc/board/nxp/index.rst                 |   1 +
 include/configs/tqma6.h                 |   8 --
 include/imx8image.h                     |   1 +
 tools/imx8image.c                       |   7 +-
 37 files changed, 236 insertions(+), 489 deletions(-)
 create mode 100644 arch/arm/dts/imx6dl-mba6b-u-boot.dtsi
 delete mode 100644 arch/arm/dts/imx6dl-mba6b.dts
 delete mode 100644 arch/arm/dts/imx6dl-tqma6a.dtsi
 delete mode 100644 arch/arm/dts/imx6dl-tqma6b.dtsi
 create mode 100644 arch/arm/dts/imx6q-mba6b-u-boot.dtsi
 delete mode 100644 arch/arm/dts/imx6q-mba6b.dts
 delete mode 100644 arch/arm/dts/imx6q-tqma6a.dtsi
 delete mode 100644 arch/arm/dts/imx6q-tqma6b.dtsi
 create mode 100644 arch/arm/dts/imx6qdl-mba6-u-boot.dtsi
 delete mode 100644 arch/arm/dts/imx6qdl-tqma6.dtsi
 delete mode 100644 arch/arm/dts/imx6qdl-tqma6a.dtsi
 delete mode 100644 arch/arm/dts/imx6qdl-tqma6b.dtsi
 create mode 100644 arch/arm/dts/imx8ulp-u-boot.dtsi
 create mode 100644 arch/arm/mach-imx/imx8ulp/container.cfg
 create mode 100644 arch/arm/mach-imx/imx8ulp/imximage.cfg
 create mode 100644 doc/board/nxp/imx8ulp_evk.rst

Comments

Tom Rini Aug. 14, 2024, 2:12 p.m. UTC | #1
On Tue, Aug 13, 2024 at 10:54:45AM -0300, Fabio Estevam wrote:

> Hi Tom,
> 
> Please pull from u-boot-imx/master, thanks.
> 
> The following changes since commit 06dceeba3d4515ccfbe37b8989ee047a7628aee3:
> 
>   Merge tag 'u-boot-rockchip-20240812' of https://source.denx.de/u-boot/custodians/u-boot-rockchip (2024-08-12 07:58:24 -0600)
> 
> are available in the Git repository at:
> 
>   https://gitlab.denx.de/u-boot/custodians/u-boot-imx.git tags/u-boot-imx-master-20240813
> 
> for you to fetch changes up to 72801d9971d09734f17056fd4836604d4ffd275f:
> 
>   tqma6: Do not print the board name twice (2024-08-13 09:31:35 -0300)
> 
> u-boot-imx-master-20240813

Applied to u-boot/master, thanks!