U-Boot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/9] Support stm32h747-discovery board
@ 2025-06-07  9:37 Dario Binacchi
  2025-06-07  9:37 ` [PATCH 1/9] ARM: dts: stm32h7-pinctrl: add _a suffix to u[s]art_pins phandles Dario Binacchi
                   ` (9 more replies)
  0 siblings, 10 replies; 38+ messages in thread
From: Dario Binacchi @ 2025-06-07  9:37 UTC (permalink / raw)
  To: u-boot
  Cc: linux-amarula, Dario Binacchi, Alexandre Torgue, Dillon Min,
	Ilias Apalodimas, Jerome Forissier, Krzysztof Kozlowski,
	Lukasz Majewski, Patrice Chotard, Patrick Delaunay,
	Rasmus Villemoes, Sean Anderson, Sumit Garg, Tom Rini,
	uboot-stm32

The series adds support for stm32h747-discovery board.

Detailed information can be found at:
https://www.st.com/en/evaluation-tools/stm32h747i-disco.html


Dario Binacchi (9):
  ARM: dts: stm32h7-pinctrl: add _a suffix to u[s]art_pins phandles
  dt-bindings: arm: stm32: add compatible for stm32h747i-disco board
  dt-bindings: clock: stm32h7: rename USART{7,8}_CK to UART{7,8}_CK
  ARM: dts: stm32: add uart8 node for stm32h743 MCU
  ARM: dts: stm32: add pin map for UART8 controller on stm32h743
  ARM: dts: stm32: add an extra pin map for USART1 on stm32h743
  ARM: dts: stm32: support STM32h747i-disco board
  ARM: dts: stm32: add stm32h747i-disco-u-boot DTS file
  board: stm32: add stm32h747-discovery board support

 arch/arm/dts/stm32h747i-disco-u-boot.dtsi     | 104 ++++++++++++++
 arch/arm/mach-stm32/stm32h7/Kconfig           |   4 +
 board/st/stm32h747-disco/Kconfig              |  15 ++
 board/st/stm32h747-disco/MAINTAINERS          |   7 +
 board/st/stm32h747-disco/Makefile             |   6 +
 board/st/stm32h747-disco/stm32h747-disco.c    |  42 ++++++
 configs/stm32h747-disco_defconfig             |  35 +++++
 drivers/clk/stm32/clk-stm32h7.c               |   5 +
 dts/upstream/Bindings/arm/stm32/stm32.yaml    |   4 +
 .../include/dt-bindings/clock/stm32h7-clks.h  |   4 +-
 dts/upstream/src/arm/st/stm32h7-pinctrl.dtsi  |  34 ++++-
 dts/upstream/src/arm/st/stm32h743.dtsi        |   8 ++
 dts/upstream/src/arm/st/stm32h743i-disco.dts  |   2 +-
 dts/upstream/src/arm/st/stm32h743i-eval.dts   |   2 +-
 dts/upstream/src/arm/st/stm32h747i-disco.dts  | 136 ++++++++++++++++++
 dts/upstream/src/arm/st/stm32h750i-art-pi.dts |   6 +-
 include/configs/stm32h747-disco.h             |  32 +++++
 17 files changed, 435 insertions(+), 11 deletions(-)
 create mode 100644 arch/arm/dts/stm32h747i-disco-u-boot.dtsi
 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

-- 
2.43.0

base-commit: b3f69c14187d413610abbc2b82d1a3752cb342c1
branch: stm32h747i-disco

^ permalink raw reply	[flat|nested] 38+ messages in thread

end of thread, other threads:[~2025-06-11 18:36 UTC | newest]

Thread overview: 38+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-07  9:37 [PATCH 0/9] Support stm32h747-discovery board Dario Binacchi
2025-06-07  9:37 ` [PATCH 1/9] ARM: dts: stm32h7-pinctrl: add _a suffix to u[s]art_pins phandles Dario Binacchi
2025-06-09  7:55   ` Patrice CHOTARD
2025-06-09 13:20   ` Sumit Garg
2025-06-09 13:38     ` Patrice CHOTARD
2025-06-09 13:38     ` Dario Binacchi
2025-06-07  9:37 ` [PATCH 2/9] dt-bindings: arm: stm32: add compatible for stm32h747i-disco board Dario Binacchi
2025-06-09  7:55   ` Patrice CHOTARD
2025-06-07  9:37 ` [PATCH 3/9] dt-bindings: clock: stm32h7: rename USART{7, 8}_CK to UART{7, 8}_CK Dario Binacchi
2025-06-09  7:55   ` [PATCH 3/9] dt-bindings: clock: stm32h7: rename USART{7, 8}_CK to UART{7,8}_CK Patrice CHOTARD
2025-06-07  9:37 ` [PATCH 4/9] ARM: dts: stm32: add uart8 node for stm32h743 MCU Dario Binacchi
2025-06-09  7:56   ` Patrice CHOTARD
2025-06-07  9:37 ` [PATCH 5/9] ARM: dts: stm32: add pin map for UART8 controller on stm32h743 Dario Binacchi
2025-06-09  7:56   ` Patrice CHOTARD
2025-06-07  9:37 ` [PATCH 6/9] ARM: dts: stm32: add an extra pin map for USART1 " Dario Binacchi
2025-06-09  7:56   ` Patrice CHOTARD
2025-06-07  9:37 ` [PATCH 7/9] ARM: dts: stm32: support STM32h747i-disco board Dario Binacchi
2025-06-09  7:57   ` Patrice CHOTARD
2025-06-07  9:37 ` [PATCH 8/9] ARM: dts: stm32: add stm32h747i-disco-u-boot DTS file Dario Binacchi
2025-06-09  7:57   ` Patrice CHOTARD
2025-06-07  9:37 ` [PATCH 9/9] board: stm32: add stm32h747-discovery board support Dario Binacchi
2025-06-09  7:58   ` Patrice CHOTARD
2025-06-09  8:07     ` Lukasz Majewski
2025-06-09  8:34       ` Patrice CHOTARD
2025-06-09  9:22         ` [Uboot-stm32] " Patrice CHOTARD
2025-06-09  9:29         ` Lukasz Majewski
2025-06-09 13:15 ` [PATCH 0/9] Support stm32h747-discovery board Patrice CHOTARD
2025-06-09 13:25   ` Sumit Garg
2025-06-09 13:46     ` Dario Binacchi
2025-06-09 15:40       ` Sumit Garg
2025-06-09 15:50         ` Tom Rini
2025-06-09 16:07           ` Sumit Garg
2025-06-09 16:22             ` Tom Rini
2025-06-10  8:52               ` Sumit Garg
2025-06-10 16:04                 ` Tom Rini
2025-06-11 12:08                   ` Sumit Garg
2025-06-11 13:25                     ` Quentin Schulz
2025-06-11 18:35                       ` Tom Rini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox