From: Sumit Garg <sumit.garg@kernel.org>
To: Dario Binacchi <dario.binacchi@amarulasolutions.com>
Cc: Patrice CHOTARD <patrice.chotard@foss.st.com>,
u-boot@lists.denx.de, linux-amarula@amarulasolutions.com,
Alexandre Torgue <alexandre.torgue@foss.st.com>,
Dillon Min <dillon.minfei@gmail.com>,
Ilias Apalodimas <ilias.apalodimas@linaro.org>,
Jerome Forissier <jerome.forissier@linaro.org>,
Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>,
Lukasz Majewski <lukma@denx.de>,
Patrick Delaunay <patrick.delaunay@foss.st.com>,
Rasmus Villemoes <rasmus.villemoes@prevas.dk>,
Sean Anderson <seanga2@gmail.com>, Tom Rini <trini@konsulko.com>,
uboot-stm32@st-md-mailman.stormreply.com
Subject: Re: [PATCH 0/9] Support stm32h747-discovery board
Date: Mon, 9 Jun 2025 16:40:43 +0100 [thread overview]
Message-ID: <aEcAe80kh66cf0_c@sumit-X1> (raw)
In-Reply-To: <CABGWkvox-1a1VSGjX8toQ=WsVTma0JcL8su=MGWaAwq4UZFkrQ@mail.gmail.com>
On Mon, Jun 09, 2025 at 03:46:27PM +0200, Dario Binacchi wrote:
> Hi Sumit,
>
> On Mon, Jun 9, 2025 at 3:25 PM Sumit Garg <sumit.garg@kernel.org> wrote:
> >
> > Hi Patrice,
> >
> > On Mon, Jun 09, 2025 at 03:15:14PM +0200, Patrice CHOTARD wrote:
> > >
> > >
> > > On 6/7/25 11:37, Dario Binacchi wrote:
> > > > 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
> > >
> > >
> > > Hi Dario
> > >
> > > For the whole series
> > > Applied to u-boot-stm32/next
> >
> > Please give some time for other maintainers to review this patch-set.
> > The dts/upstream patches in this series aren't clean cherry pick from
> > upstream.
>
> All the commits are already in the mainline Linux kernel, specifically
> in v6.16-rc1.
> If you're referring to the fact that the patches can't be applied
> cleanly, I believe it's
> because the target path in the Linux kernel doesn't match the one in U-Boot.
> In fact, the DTS files are located in two different relative paths.
That's exactly why we have (refer here [1]):
./tools/update-subtree.sh pick dts <commit-id-to-be-picked>
You should have waited v6.16-rc1 tag to be synced into
devicetree-rebasing [2] for the cherry-picks to work. This way of
manually patching dts/upstream is not allowed since it is going to break
DT syncs in one way or another.
So I would suggest you to wait for v6.16-rc1 to land in DT rebasing tree
and then send v2 with proper cherry picked patches.
[1] https://docs.u-boot.org/en/latest/develop/devicetree/control.html#resyncing-with-devicetree-rebasing
[2] https://git.kernel.org/pub/scm/linux/kernel/git/devicetree/devicetree-rebasing.git
-Sumit
>
> Thanks and regards,
> Dario
>
> > This has to be fixed as otherwise random patches are going to
> > cause DT sync issues.
> >
> > -Sumit
> >
> > >
> > > Thanks
> > > Patrice
> > >
> > > >
> > > > 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
> > > >
>
>
>
> --
>
> Dario Binacchi
>
> Senior Embedded Linux Developer
>
> dario.binacchi@amarulasolutions.com
>
> __________________________________
>
>
> Amarula Solutions SRL
>
> Via Le Canevare 30, 31100 Treviso, Veneto, IT
>
> T. +39 042 243 5310
> info@amarulasolutions.com
>
> www.amarulasolutions.com
next prev parent reply other threads:[~2025-06-09 15:40 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
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 [this message]
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
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=aEcAe80kh66cf0_c@sumit-X1 \
--to=sumit.garg@kernel.org \
--cc=alexandre.torgue@foss.st.com \
--cc=dario.binacchi@amarulasolutions.com \
--cc=dillon.minfei@gmail.com \
--cc=ilias.apalodimas@linaro.org \
--cc=jerome.forissier@linaro.org \
--cc=krzysztof.kozlowski@linaro.org \
--cc=linux-amarula@amarulasolutions.com \
--cc=lukma@denx.de \
--cc=patrice.chotard@foss.st.com \
--cc=patrick.delaunay@foss.st.com \
--cc=rasmus.villemoes@prevas.dk \
--cc=seanga2@gmail.com \
--cc=trini@konsulko.com \
--cc=u-boot@lists.denx.de \
--cc=uboot-stm32@st-md-mailman.stormreply.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox