[PULL] Pull request for u-boot next / v2025.07 = u-boot-stm32-20250312

Patrice CHOTARD patrice.chotard at foss.st.com
Wed Mar 12 18:20:37 CET 2025



Hi Tom

Please pull the STM32 related patches for u-boot/next, v2025.07 = u-boot-stm32-20250312

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

Thanks
Patrice


The following changes since commit 743c15b9fdd2f639012a2c26734dc146dc568218:

  Merge patch series "This series adds support for file renaming to EFI_FILE_PROTOCOL.SetInfo()." (2025-03-07 12:06:21 -0600)

are available in the Git repository at:

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

for you to fetch changes up to 1a87755ecd0d36ec29acdbcbc9b381e76cfd6cfd:

  serial: stm32: restrict _debug_uart_init() usage (2025-03-12 16:44:31 +0100)

----------------------------------------------------------------
- Add drivers for MFD STM32 TIMERS and STM32 PWM and enable them on stm32mp135f-dk
- Restrict _debug_uart_init() usage in STM32 serial driver
- Add support for environment in eMMC on STM32MP13xx DHCOR SoM
- Introduce DH STM32MP15xx DHSOM board specific defconfigs
- Fix CONFIG_BOOTCOUNT_ALTBOOTCMD update on DH STM32MP1 DHSOM
- Update maintainer for board stm32f746-disco
- Fix Linux cmdline for stm32f769-disco
- Cleanup in stm32f***-u-boot.dtsi and in board_late_init() by removing
  legacy led and button management.

----------------------------------------------------------------
Cheick Traore (4):
      mach-stm32: add multifunction timer driver support
      pwm: stm32: add driver to support pwm with timer
      configs: stm32mp13: Enable MFD timer and PWM for stm32mp13_defconfig
      ARM: dts: stm32: Add TIMERS inverted PWM channel 3 on STM32MP135F-DK

Dario Binacchi (3):
      ARM: dts: stm32: drop "st,button1" compatible
      ARM: dts: stm32: drop "st,led1" compatible
      board: stm32f746-disco: drop board_late_init()

Linus Walleij (1):
      configs: stm32f769-disco: Fix console cmdline

Marek Vasut (4):
      ARM: dts: stm32: Add support for STM32MP13xx DHCOR SoM and DHSBC rev.200 board
      ARM: stm32: Fix CONFIG_BOOTCOUNT_ALTBOOTCMD update on DH STM32MP1 DHSOM
      ARM: stm32: Introduce DH STM32MP15xx DHSOM board specific defconfigs
      ARM: dts: stm32: Add support for environment in eMMC on STM32MP13xx DHCOR SoM

Patrice Chotard (2):
      board: st: stm32f746-disco: Update MAINTAINERS file
      serial: stm32: restrict _debug_uart_init() usage

 arch/arm/dts/stm32746g-eval-u-boot.dtsi             |  10 ---------
 arch/arm/dts/stm32f746-disco-u-boot.dtsi            |  10 ---------
 arch/arm/dts/stm32f769-disco-u-boot.dtsi            |  10 ---------
 arch/arm/dts/stm32mp13-pinctrl.dtsi                 |  15 ++++++++++++++
 arch/arm/dts/stm32mp135f-dhcor-dhsbc-u-boot.dtsi    |  22 ++++++++++++++++++++
 arch/arm/dts/stm32mp135f-dk.dts                     |  14 +++++++++++++
 arch/arm/dts/stm32mp13xx-dhcor-u-boot.dtsi          |   2 ++
 arch/arm/mach-stm32mp/Kconfig                       |   6 ++++++
 arch/arm/mach-stm32mp/Makefile                      |   1 +
 arch/arm/mach-stm32mp/include/mach/timers.h         |  55 ++++++++++++++++++++++++++++++++++++++++++++++++++
 arch/arm/mach-stm32mp/stm32mp1/cpu.c                |   2 --
 arch/arm/mach-stm32mp/timers.c                      |  82 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 board/st/stm32f746-disco/MAINTAINERS                |   2 +-
 board/st/stm32f746-disco/stm32f746-disco.c          |  36 ---------------------------------
 configs/stm32746g-eval_defconfig                    |   1 -
 configs/stm32746g-eval_spl_defconfig                |   1 -
 configs/stm32f746-disco_defconfig                   |   1 -
 configs/stm32f746-disco_spl_defconfig               |   1 -
 configs/stm32f769-disco_defconfig                   |   2 +-
 configs/stm32mp13_defconfig                         |   4 ++++
 configs/stm32mp13_dhcor_defconfig                   |   5 ++++-
 configs/stm32mp15_dhcom_basic.config                |   8 ++++++++
 configs/stm32mp15_dhcom_basic_defconfig             |   9 +--------
 configs/stm32mp15_dhcom_drc02_basic_defconfig       |   4 ++++
 configs/stm32mp15_dhcom_pdk2_basic_defconfig        |   4 ++++
 configs/stm32mp15_dhcom_picoitx_basic_defconfig     |   4 ++++
 configs/stm32mp15_dhcor_avenger96_basic_defconfig   |   4 ++++
 configs/stm32mp15_dhcor_basic.config                |   8 ++++++++
 configs/stm32mp15_dhcor_basic_defconfig             |   9 +--------
 configs/stm32mp15_dhcor_drc_compact_basic_defconfig |   4 ++++
 configs/stm32mp15_dhcor_testbench_basic_defconfig   |   4 ++++
 drivers/pwm/Kconfig                                 |   8 ++++++++
 drivers/pwm/Makefile                                |   1 +
 drivers/pwm/pwm-stm32.c                             | 205 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 drivers/serial/serial_stm32.c                       |  18 +++++++++++------
 35 files changed, 475 insertions(+), 97 deletions(-)
 create mode 100644 arch/arm/mach-stm32mp/include/mach/timers.h
 create mode 100644 arch/arm/mach-stm32mp/timers.c
 create mode 100644 configs/stm32mp15_dhcom_basic.config
 create mode 100644 configs/stm32mp15_dhcom_drc02_basic_defconfig
 create mode 100644 configs/stm32mp15_dhcom_pdk2_basic_defconfig
 create mode 100644 configs/stm32mp15_dhcom_picoitx_basic_defconfig
 create mode 100644 configs/stm32mp15_dhcor_avenger96_basic_defconfig
 create mode 100644 configs/stm32mp15_dhcor_basic.config
 create mode 100644 configs/stm32mp15_dhcor_drc_compact_basic_defconfig
 create mode 100644 configs/stm32mp15_dhcor_testbench_basic_defconfig
 create mode 100644 drivers/pwm/pwm-stm32.c


More information about the U-Boot mailing list