On 5/8/25 23:23, Johannes Krottmayer wrote: > These patch series adds support for the STM32H747 discovery > board from STMicroelectronics. > > Johannes Krottmayer (10): > arm: mach-stm32: stm32h7: add initial lowlevel early function > arm: mach-stm32: stm32h7: add initial Makefile > arm: mach-stm32: stm32h7: add STM32H747-DISCO board > arm: mach-stm32: add stm32h7 subdirectory > board: st: add STM32H747 discovery board > configs: add STM32H747 discovery board > include: configs: add STM32H747 discovery board > arm: dts: add STM32H747 discovery board > dts: upstream: arm: st: add STM32H747 discovery board > dts: upstream: arm: st: stm32h7-pinctrl: change pins for USART1 > > arch/arm/dts/stm32h747i-disco-u-boot.dtsi | 101 ++++++++++++++++ > arch/arm/mach-stm32/Makefile | 2 + > arch/arm/mach-stm32/stm32h7/Kconfig | 5 + > arch/arm/mach-stm32/stm32h7/Makefile | 6 + > arch/arm/mach-stm32/stm32h7/lowlevel.S | 45 ++++++++ > board/st/stm32h747-disco/Kconfig | 15 +++ > board/st/stm32h747-disco/MAINTAINERS | 8 ++ > board/st/stm32h747-disco/Makefile | 10 ++ > board/st/stm32h747-disco/stm32h747-disco.c | 43 +++++++ > configs/stm32h747-disco_defconfig | 35 ++++++ > dts/upstream/src/arm/st/stm32h7-pinctrl.dtsi | 4 +- > dts/upstream/src/arm/st/stm32h747i-disco.dts | 115 +++++++++++++++++++ > include/configs/stm32h747-disco.h | 37 ++++++ > 13 files changed, 424 insertions(+), 2 deletions(-) > create mode 100644 arch/arm/dts/stm32h747i-disco-u-boot.dtsi > create mode 100644 arch/arm/mach-stm32/stm32h7/Makefile > create mode 100644 arch/arm/mach-stm32/stm32h7/lowlevel.S > create mode 100644 board/st/stm32h747-disco/Kconfig > create mode 100644 board/st/stm32h747-disco/MAINTAINERS > create mode 100644 board/st/stm32h747-disco/Makefile > create mode 100644 board/st/stm32h747-disco/stm32h747-disco.c > create mode 100644 configs/stm32h747-disco_defconfig > create mode 100644 dts/upstream/src/arm/st/stm32h747i-disco.dts > create mode 100644 include/configs/stm32h747-disco.h > The patches 1/2/3/4/5 and 7 can be merged together. Thanks patrice