From: Chester Lin <chester62515@gmail.com>
To: Ghennadi Procopciuc <ghennadi.procopciuc@oss.nxp.com>
Cc: Andreas Farber <afaerber@suse.de>,
Matthias Brugger <mbrugger@suse.com>,
Shawn Guo <shawnguo@kernel.org>,
Sascha Hauer <s.hauer@pengutronix.de>,
Fabio Estevam <festevam@gmail.com>,
Rob Herring <robh+dt@kernel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
Conor Dooley <conor+dt@kernel.org>,
Michael Turquette <mturquette@baylibre.com>,
Stephen Boyd <sboyd@kernel.org>, NXP S32 Linux Team <s32@nxp.com>,
Pengutronix Kernel Team <kernel@pengutronix.de>,
NXP Linux Team <linux-imx@nxp.com>,
linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org, linux-clk@vger.kernel.org,
Ghennadi Procopciuc <ghennadi.procopciuc@nxp.com>,
Ciprian Costea <ciprianmarian.costea@nxp.com>
Subject: Re: [PATCH v2 2/2] arm64: dts: s32g: add uSDHC node
Date: Sat, 2 Mar 2024 09:56:24 +0800 [thread overview]
Message-ID: <ZeKHSEcQ4h0nk8qb@linux-8mug> (raw)
In-Reply-To: <bc9bcc98-62db-420c-b30f-e4af513cbd8c@oss.nxp.com>
On Mon, Feb 26, 2024 at 08:29:31AM +0200, Ghennadi Procopciuc wrote:
> On 2/24/24 12:44, Chester Lin wrote:
> > Hi Ghennadi,
> >
> > On Sat, Feb 24, 2024 at 04:22:30PM +0800, Chester Lin wrote:
> >> Hi Ghennadi,
>
> Hi Chester,
> >>
> >> On Mon, Jan 22, 2024 at 04:06:01PM +0200, Ghennadi Procopciuc wrote:
> >>> From: Ghennadi Procopciuc <ghennadi.procopciuc@nxp.com>
> >>>
> >>> Add the uSDHC node for the boards that are based on S32G SoCs.
> >>>
> >>> Signed-off-by: Ciprian Costea <ciprianmarian.costea@nxp.com>
> >>> Signed-off-by: Ghennadi Procopciuc <ghennadi.procopciuc@nxp.com>
> >>> ---
> >>> arch/arm64/boot/dts/freescale/s32g2.dtsi | 10 ++++++++++
> >>> arch/arm64/boot/dts/freescale/s32g274a-evb.dts | 6 +++++-
> >>> arch/arm64/boot/dts/freescale/s32g274a-rdb2.dts | 6 +++++-
> >>> 3 files changed, 20 insertions(+), 2 deletions(-)
> >>>
> >>> diff --git a/arch/arm64/boot/dts/freescale/s32g2.dtsi b/arch/arm64/boot/dts/freescale/s32g2.dtsi
> >>> index ef1a1d61f2ba..fc19ae2e8d3b 100644
> >>> --- a/arch/arm64/boot/dts/freescale/s32g2.dtsi
> >>> +++ b/arch/arm64/boot/dts/freescale/s32g2.dtsi
> >>> @@ -138,6 +138,16 @@ uart2: serial@402bc000 {
> >>> status = "disabled";
> >>> };
> >>>
> >>> + usdhc0: mmc@402f0000 {
> >>> + compatible = "nxp,s32g2-usdhc";
> >>> + reg = <0x402f0000 0x1000>;
> >>> + interrupts = <GIC_SPI 36 IRQ_TYPE_LEVEL_HIGH>;
> >>> + clocks = <&clks 32>, <&clks 31>, <&clks 33>;
> >>
> >> Same as I have mentioned in [PATCH v2 1/2], could we have fixed dt-bindings to
> >> replace with these raw clock id values (32, 31, 33)?
> >>
> >
> > Just found the previous review discussion in v1:
> > https://lore.kernel.org/all/f54d947c-58dc-498f-8871-b472f97be4a8@oss.nxp.com/
> >
> Indeed, I switched to raw clocks instead of placing them into a binding
> header after receiving this feedback on v1.
>
> > What I'm worried is that, could these raw clock IDs be rearranged in the
> > downstream TF-A? If so it would cause ABI inconsistency and clock issues
> > since the kernel is not aware of any raw ID changes in downstream TF-A.
>
> These clock IDs will become immutable in the downstream version of TF-A
> once the patches get merged. This will prevent any unfortunate events
> when the Kernel and TF-A are not in sync with regard to SCMI clock IDs.
>
> Best regards,
> Ghennadi
Thanks for explanation.
Reviewed-by: Chester Lin <chester62515@gmail.com>
> >
> > Chester
> >
> >>> + clock-names = "ipg", "ahb", "per";
> >>> + bus-width = <8>;
> >>> + status = "disabled";
> >>> + };
> >>> +
> >>> gic: interrupt-controller@50800000 {
> >>> compatible = "arm,gic-v3";
> >>> reg = <0x50800000 0x10000>,
> >>> diff --git a/arch/arm64/boot/dts/freescale/s32g274a-evb.dts b/arch/arm64/boot/dts/freescale/s32g274a-evb.dts
> >>> index 9118d8d2ee01..00070c949e2a 100644
> >>> --- a/arch/arm64/boot/dts/freescale/s32g274a-evb.dts
> >>> +++ b/arch/arm64/boot/dts/freescale/s32g274a-evb.dts
> >>> @@ -1,7 +1,7 @@
> >>> // SPDX-License-Identifier: GPL-2.0-or-later OR MIT
> >>> /*
> >>> * Copyright (c) 2021 SUSE LLC
> >>> - * Copyright (c) 2019-2021 NXP
> >>> + * Copyright 2019-2021, 2024 NXP
> >>> */
> >>>
> >>> /dts-v1/;
> >>> @@ -32,3 +32,7 @@ memory@80000000 {
> >>> &uart0 {
> >>> status = "okay";
> >>> };
> >>> +
> >>> +&usdhc0 {
> >>> + status = "okay";
> >>> +};
> >>> diff --git a/arch/arm64/boot/dts/freescale/s32g274a-rdb2.dts b/arch/arm64/boot/dts/freescale/s32g274a-rdb2.dts
> >>> index e05ee854cdf5..b3fc12899cae 100644
> >>> --- a/arch/arm64/boot/dts/freescale/s32g274a-rdb2.dts
> >>> +++ b/arch/arm64/boot/dts/freescale/s32g274a-rdb2.dts
> >>> @@ -1,7 +1,7 @@
> >>> // SPDX-License-Identifier: GPL-2.0-or-later OR MIT
> >>> /*
> >>> * Copyright (c) 2021 SUSE LLC
> >>> - * Copyright (c) 2019-2021 NXP
> >>> + * Copyright 2019-2021, 2024 NXP
> >>> */
> >>>
> >>> /dts-v1/;
> >>> @@ -38,3 +38,7 @@ &uart0 {
> >>> &uart1 {
> >>> status = "okay";
> >>> };
> >>> +
> >>> +&usdhc0 {
> >>> + status = "okay";
> >>> +};
> >>> --
> >>> 2.43.0
> >>>
>
> --
> Regards,
> Ghennadi
>
next prev parent reply other threads:[~2024-03-02 1:56 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-01-22 14:05 [PATCH v2 0/2] add uSDHC and SCMI nodes to the S32G2 SoC Ghennadi Procopciuc
2024-01-22 14:06 ` [PATCH v2 1/2] arm64: dts: s32g: add SCMI firmware node Ghennadi Procopciuc
2024-01-22 14:39 ` Matthias Brugger
2024-02-24 8:14 ` Chester Lin
2024-03-02 1:57 ` Chester Lin
2024-01-22 14:06 ` [PATCH v2 2/2] arm64: dts: s32g: add uSDHC node Ghennadi Procopciuc
2024-01-22 14:39 ` Matthias Brugger
2024-02-24 8:22 ` Chester Lin
2024-02-24 10:44 ` Chester Lin
2024-02-26 6:29 ` Ghennadi Procopciuc
2024-03-02 1:56 ` Chester Lin [this message]
2024-02-08 9:34 ` [PATCH v2 0/2] add uSDHC and SCMI nodes to the S32G2 SoC Ghennadi Procopciuc
2024-03-02 2:01 ` Chester Lin
2024-03-20 7:38 ` Ghennadi Procopciuc
2024-03-28 6:37 ` Shawn Guo
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=ZeKHSEcQ4h0nk8qb@linux-8mug \
--to=chester62515@gmail.com \
--cc=afaerber@suse.de \
--cc=ciprianmarian.costea@nxp.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=festevam@gmail.com \
--cc=ghennadi.procopciuc@nxp.com \
--cc=ghennadi.procopciuc@oss.nxp.com \
--cc=kernel@pengutronix.de \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-imx@nxp.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mbrugger@suse.com \
--cc=mturquette@baylibre.com \
--cc=robh+dt@kernel.org \
--cc=s.hauer@pengutronix.de \
--cc=s32@nxp.com \
--cc=sboyd@kernel.org \
--cc=shawnguo@kernel.org \
/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;
as well as URLs for NNTP newsgroup(s).