mbox series

[PULL] Pull request for u-boot/master v2024.01 = u-boot-stm32-20220124

Message ID 7edc5f20-ff65-cdea-0431-c0b2a963f5e5@foss.st.com
State Accepted
Delegated to: Tom Rini
Headers show
Series [PULL] Pull request for u-boot/master v2024.01 = u-boot-stm32-20220124 | expand

Pull-request

https://source.denx.de/u-boot/custodians/u-boot-stm.git tags/u-boot-stm32-20220124

Message

Patrice CHOTARD Jan. 24, 2022, 12:21 p.m. UTC
Hi Tom

Please pull the STM32 related patches for u-boot/master, v2022.04: u-boot-stm32-20220124

CI status: https://source.denx.de/u-boot/custodians/u-boot-stm/-/pipelines/10748

Thanks
Patrice

The following changes since commit d323242b62920be08e3a2efb1a61bd9bdf9ed583:

  Merge https://source.denx.de/u-boot/custodians/u-boot-sh (2022-01-23 09:54:49 -0500)

are available in the Git repository at:

  https://source.denx.de/u-boot/custodians/u-boot-stm.git tags/u-boot-stm32-20220124

for you to fetch changes up to 22c0815ecaa538de51a5204caceec850d5965126:

  configs: stm32mp15: Enable OF_BOARD flag (2022-01-24 11:03:21 +0100)

----------------------------------------------------------------
- stm32mp15: sync DT with kernel v5.16
- stm32mp15: Enable OF_BOARD config flag
- DHCOM: sync DT with kernel 5.15.12
- stm32mp: Fix USB boot device
- stm32mp: Remove bootcount activation
- stm32mp: Fix board_get_alt_info_mmc()
- board: stm32mp1: solve compilation issue when ENV_IS_IN_MMC is deactivated
- stm32prog: add partition name in treat_partition_list error messages

----------------------------------------------------------------
Heinrich Schuchardt (1):
      stm32mp: fix board_get_alt_info_mmc()

Marek Vasut (4):
      arm: stm32mp: Fix USB boot device report
      ARM: dts: stm32: Add DFU support for DHCOR recovery
      ARM: dts: stm32: Synchronize DHCOR DTs with Linux 5.15.12
      ARM: dts: stm32: Synchronize DHCOM DTs with Linux 5.15.12

Patrice Chotard (1):
      configs: stm32mp15: Enable OF_BOARD flag

Patrick Delaunay (5):
      stm32mp: remove the bootcount activation
      stm32mp: correct the dependency for bootcount configs
      arm: dts: stm32mp15: alignment with v5.16
      board: stm32mp1: solve compilation issue when ENV_IS_IN_MMC is deactivated
      stm32prog: add partition name in treat_partition_list error messages

 arch/arm/dts/Makefile                              |   1 -
 arch/arm/dts/stm32mp15-pinctrl.dtsi                |   8 +-
 arch/arm/dts/stm32mp151.dtsi                       |  19 +-
 arch/arm/dts/stm32mp157a-avenger96.dts             |   8 -
 arch/arm/dts/stm32mp157a-dhcor-avenger96.dts       |  38 ++
 arch/arm/dts/stm32mp15xx-dhcom-drc02.dts           | 162 +-------
 arch/arm/dts/stm32mp15xx-dhcom-drc02.dtsi          | 165 ++++++++
 arch/arm/dts/stm32mp15xx-dhcom-pdk2-u-boot.dtsi    |   4 +
 arch/arm/dts/stm32mp15xx-dhcom-pdk2.dts            |  14 +-
 arch/arm/dts/stm32mp15xx-dhcom-pdk2.dtsi           | 325 ++++++++++++++++
 arch/arm/dts/stm32mp15xx-dhcom-picoitx-u-boot.dtsi |   6 +-
 arch/arm/dts/stm32mp15xx-dhcom-picoitx.dts         |  88 +----
 arch/arm/dts/stm32mp15xx-dhcom-picoitx.dtsi        | 147 +++++++
 ...p15xx-dhcom.dtsi => stm32mp15xx-dhcom-som.dtsi} | 387 ++++++++++--------
 arch/arm/dts/stm32mp15xx-dhcom-u-boot.dtsi         |  43 +-
 .../dts/stm32mp15xx-dhcor-avenger96-u-boot.dtsi    |   2 +
 arch/arm/dts/stm32mp15xx-dhcor-avenger96.dts       | 202 +---------
 arch/arm/dts/stm32mp15xx-dhcor-avenger96.dtsi      | 431 +++++++++++++++++++++
 arch/arm/dts/stm32mp15xx-dhcor-io1v8.dtsi          |   7 +-
 ...dhcor-io3v3.dtsi => stm32mp15xx-dhcor-som.dtsi} |  30 +-
 arch/arm/dts/stm32mp15xx-dhcor-u-boot.dtsi         |  50 +++
 arch/arm/dts/stm32mp15xx-dkx.dtsi                  |   2 +-
 arch/arm/mach-stm32mp/Kconfig                      |  11 +-
 arch/arm/mach-stm32mp/cmd_stm32prog/stm32prog.c    |  12 +-
 arch/arm/mach-stm32mp/spl.c                        |   2 +-
 board/st/common/stm32mp_dfu.c                      |   2 +-
 board/st/stm32mp1/stm32mp1.c                       |   6 +-
 configs/stm32mp15_dhcor_basic_defconfig            |  14 +-
 include/configs/stm32mp15_common.h                 |   1 -
 include/configs/stm32mp15_dh_dhsom.h               |   7 +
 30 files changed, 1510 insertions(+), 684 deletions(-)
 delete mode 100644 arch/arm/dts/stm32mp157a-avenger96.dts
 create mode 100644 arch/arm/dts/stm32mp157a-dhcor-avenger96.dts
 create mode 100644 arch/arm/dts/stm32mp15xx-dhcom-drc02.dtsi
 create mode 100644 arch/arm/dts/stm32mp15xx-dhcom-pdk2.dtsi
 create mode 100644 arch/arm/dts/stm32mp15xx-dhcom-picoitx.dtsi
 rename arch/arm/dts/{stm32mp15xx-dhcom.dtsi => stm32mp15xx-dhcom-som.dtsi} (56%)
 create mode 100644 arch/arm/dts/stm32mp15xx-dhcor-avenger96.dtsi
 rename arch/arm/dts/{stm32mp15xx-dhcor-io3v3.dtsi => stm32mp15xx-dhcor-som.dtsi} (91%)

Comments

Tom Rini Jan. 24, 2022, 3:35 p.m. UTC | #1
On Mon, Jan 24, 2022 at 01:21:33PM +0100, Patrice CHOTARD wrote:

> Hi Tom
> 
> Please pull the STM32 related patches for u-boot/master, v2022.04: u-boot-stm32-20220124
> 
> CI status: https://source.denx.de/u-boot/custodians/u-boot-stm/-/pipelines/10748
> 
> Thanks
> Patrice
> 
> The following changes since commit d323242b62920be08e3a2efb1a61bd9bdf9ed583:
> 
>   Merge https://source.denx.de/u-boot/custodians/u-boot-sh (2022-01-23 09:54:49 -0500)
> 
> are available in the Git repository at:
> 
>   https://source.denx.de/u-boot/custodians/u-boot-stm.git tags/u-boot-stm32-20220124
> 
> for you to fetch changes up to 22c0815ecaa538de51a5204caceec850d5965126:
> 
>   configs: stm32mp15: Enable OF_BOARD flag (2022-01-24 11:03:21 +0100)
> 

Applied to u-boot/master, thanks!