From: Varadarajan Narayanan <quic_varada@quicinc.com>
To: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Cc: <agross@kernel.org>, <andersson@kernel.org>,
<konrad.dybcio@linaro.org>, <robh+dt@kernel.org>,
<krzysztof.kozlowski+dt@linaro.org>, <conor+dt@kernel.org>,
<catalin.marinas@arm.com>, <will@kernel.org>, <vkoul@kernel.org>,
<kishon@kernel.org>, <arnd@arndb.de>, <geert+renesas@glider.be>,
<nfraprado@collabora.com>, <rafal@milecki.pl>, <peng.fan@nxp.com>,
<linux-arm-msm@vger.kernel.org>, <devicetree@vger.kernel.org>,
<linux-kernel@vger.kernel.org>,
<linux-arm-kernel@lists.infradead.org>,
<linux-phy@lists.infradead.org>
Subject: Re: [PATCH v9 2/4] arm64: dts: qcom: ipq5332: Add USB related nodes
Date: Wed, 23 Aug 2023 10:48:50 +0530 [thread overview]
Message-ID: <20230823051849.GA15057@varda-linux.qualcomm.com> (raw)
In-Reply-To: <8792cced-62bc-d887-8b14-05f967f7f4ed@linaro.org>
On Tue, Aug 22, 2023 at 01:40:57PM +0200, Krzysztof Kozlowski wrote:
> On 22/08/2023 12:29, Varadarajan Narayanan wrote:
> > Add USB phy and controller nodes.
> >
> > Signed-off-by: Varadarajan Narayanan <quic_varada@quicinc.com>
> > ---
> > v9:
> > usb2@8a00000 -> usb@8a00000
> > "make ARCH=arm64 -j 16 CHECK_DTBS=y DT_SCHEMA_FILES=qcom,ipq5332-usb-hsphy.yaml dtbs_check" passed
>
> I asked about W=1.
>
>
> > v6:
> > Remove clock names
> > Move the nodes to address sorted location
> > v5:
> > Use generic phy instead of usb-phy
> > 'make CHECK_DTBS=y DT_SCHEMA_FILES=qcom dtbs_check' passed
> > 'DT_CHECKER_FLAGS='-v -m' DT_SCHEMA_FILES=qcom dt_binding_check' passed
> > v4:
> > Change node name
> > Remove blank line
> > 'make CHECK_DTBS=y DT_SCHEMA_FILES=qcom qcom/ipq5332-rdp441.dtb' passed
> > v1:
> > Rename phy node
> > Change compatible from m31,ipq5332-usb-hsphy -> qcom,ipq5332-usb-hsphy
> > Remove 'qscratch' from phy node
> > Fix alignment and upper-case hex no.s
> > Add clock definition for the phy
> > Remove snps,ref-clock-period-ns as it is not used. dwc3_ref_clk_period()
> > in dwc3/core.c takes the frequency from ref clock and calculates fladj
> > as appropriate.
> > ---
> > arch/arm64/boot/dts/qcom/ipq5332.dtsi | 55 +++++++++++++++++++++++++++++++++++
> > 1 file changed, 55 insertions(+)
> >
> > diff --git a/arch/arm64/boot/dts/qcom/ipq5332.dtsi b/arch/arm64/boot/dts/qcom/ipq5332.dtsi
> > index 8bfc2db..e6baf69 100644
> > --- a/arch/arm64/boot/dts/qcom/ipq5332.dtsi
> > +++ b/arch/arm64/boot/dts/qcom/ipq5332.dtsi
> > @@ -145,6 +145,19 @@
> > #size-cells = <1>;
> > ranges = <0 0 0 0xffffffff>;
> >
> > + usbphy0: phy@7b000 {
> > + compatible = "qcom,ipq5332-usb-hsphy";
> > + reg = <0x0007b000 0x12c>;
> > +
> > + clocks = <&gcc GCC_USB0_PHY_CFG_AHB_CLK>;
> > +
> > + resets = <&gcc GCC_QUSB2_0_PHY_BCR>;
> > +
> > + #phy-cells = <0>;
> > +
> > + status = "disabled";
> > + };
> > +
> > qfprom: efuse@a4000 {
> > compatible = "qcom,ipq5332-qfprom", "qcom,qfprom";
> > reg = <0x000a4000 0x721>;
> > @@ -290,6 +303,48 @@
> > status = "disabled";
> > };
> >
> > + usb: usb@8a00000 {
> > + compatible = "qcom,ipq5332-dwc3", "qcom,dwc3";
> > + reg = <0x08af8800 0x400>;
>
> Still wrong address. I pointed it last time. Please fix it instead of
> just sending the same. If you do not agree, keep discussing. I could
> have make a mistake, but ignoring error and not responding is not the way.
Sorry, my mistake. I changed usb2 to usb and missed this.
Thanks
Varada
WARNING: multiple messages have this Message-ID (diff)
From: Varadarajan Narayanan <quic_varada@quicinc.com>
To: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Cc: <agross@kernel.org>, <andersson@kernel.org>,
<konrad.dybcio@linaro.org>, <robh+dt@kernel.org>,
<krzysztof.kozlowski+dt@linaro.org>, <conor+dt@kernel.org>,
<catalin.marinas@arm.com>, <will@kernel.org>, <vkoul@kernel.org>,
<kishon@kernel.org>, <arnd@arndb.de>, <geert+renesas@glider.be>,
<nfraprado@collabora.com>, <rafal@milecki.pl>, <peng.fan@nxp.com>,
<linux-arm-msm@vger.kernel.org>, <devicetree@vger.kernel.org>,
<linux-kernel@vger.kernel.org>,
<linux-arm-kernel@lists.infradead.org>,
<linux-phy@lists.infradead.org>
Subject: Re: [PATCH v9 2/4] arm64: dts: qcom: ipq5332: Add USB related nodes
Date: Wed, 23 Aug 2023 10:48:50 +0530 [thread overview]
Message-ID: <20230823051849.GA15057@varda-linux.qualcomm.com> (raw)
In-Reply-To: <8792cced-62bc-d887-8b14-05f967f7f4ed@linaro.org>
On Tue, Aug 22, 2023 at 01:40:57PM +0200, Krzysztof Kozlowski wrote:
> On 22/08/2023 12:29, Varadarajan Narayanan wrote:
> > Add USB phy and controller nodes.
> >
> > Signed-off-by: Varadarajan Narayanan <quic_varada@quicinc.com>
> > ---
> > v9:
> > usb2@8a00000 -> usb@8a00000
> > "make ARCH=arm64 -j 16 CHECK_DTBS=y DT_SCHEMA_FILES=qcom,ipq5332-usb-hsphy.yaml dtbs_check" passed
>
> I asked about W=1.
>
>
> > v6:
> > Remove clock names
> > Move the nodes to address sorted location
> > v5:
> > Use generic phy instead of usb-phy
> > 'make CHECK_DTBS=y DT_SCHEMA_FILES=qcom dtbs_check' passed
> > 'DT_CHECKER_FLAGS='-v -m' DT_SCHEMA_FILES=qcom dt_binding_check' passed
> > v4:
> > Change node name
> > Remove blank line
> > 'make CHECK_DTBS=y DT_SCHEMA_FILES=qcom qcom/ipq5332-rdp441.dtb' passed
> > v1:
> > Rename phy node
> > Change compatible from m31,ipq5332-usb-hsphy -> qcom,ipq5332-usb-hsphy
> > Remove 'qscratch' from phy node
> > Fix alignment and upper-case hex no.s
> > Add clock definition for the phy
> > Remove snps,ref-clock-period-ns as it is not used. dwc3_ref_clk_period()
> > in dwc3/core.c takes the frequency from ref clock and calculates fladj
> > as appropriate.
> > ---
> > arch/arm64/boot/dts/qcom/ipq5332.dtsi | 55 +++++++++++++++++++++++++++++++++++
> > 1 file changed, 55 insertions(+)
> >
> > diff --git a/arch/arm64/boot/dts/qcom/ipq5332.dtsi b/arch/arm64/boot/dts/qcom/ipq5332.dtsi
> > index 8bfc2db..e6baf69 100644
> > --- a/arch/arm64/boot/dts/qcom/ipq5332.dtsi
> > +++ b/arch/arm64/boot/dts/qcom/ipq5332.dtsi
> > @@ -145,6 +145,19 @@
> > #size-cells = <1>;
> > ranges = <0 0 0 0xffffffff>;
> >
> > + usbphy0: phy@7b000 {
> > + compatible = "qcom,ipq5332-usb-hsphy";
> > + reg = <0x0007b000 0x12c>;
> > +
> > + clocks = <&gcc GCC_USB0_PHY_CFG_AHB_CLK>;
> > +
> > + resets = <&gcc GCC_QUSB2_0_PHY_BCR>;
> > +
> > + #phy-cells = <0>;
> > +
> > + status = "disabled";
> > + };
> > +
> > qfprom: efuse@a4000 {
> > compatible = "qcom,ipq5332-qfprom", "qcom,qfprom";
> > reg = <0x000a4000 0x721>;
> > @@ -290,6 +303,48 @@
> > status = "disabled";
> > };
> >
> > + usb: usb@8a00000 {
> > + compatible = "qcom,ipq5332-dwc3", "qcom,dwc3";
> > + reg = <0x08af8800 0x400>;
>
> Still wrong address. I pointed it last time. Please fix it instead of
> just sending the same. If you do not agree, keep discussing. I could
> have make a mistake, but ignoring error and not responding is not the way.
Sorry, my mistake. I changed usb2 to usb and missed this.
Thanks
Varada
--
linux-phy mailing list
linux-phy@lists.infradead.org
https://lists.infradead.org/mailman/listinfo/linux-phy
WARNING: multiple messages have this Message-ID (diff)
From: Varadarajan Narayanan <quic_varada@quicinc.com>
To: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Cc: <agross@kernel.org>, <andersson@kernel.org>,
<konrad.dybcio@linaro.org>, <robh+dt@kernel.org>,
<krzysztof.kozlowski+dt@linaro.org>, <conor+dt@kernel.org>,
<catalin.marinas@arm.com>, <will@kernel.org>, <vkoul@kernel.org>,
<kishon@kernel.org>, <arnd@arndb.de>, <geert+renesas@glider.be>,
<nfraprado@collabora.com>, <rafal@milecki.pl>, <peng.fan@nxp.com>,
<linux-arm-msm@vger.kernel.org>, <devicetree@vger.kernel.org>,
<linux-kernel@vger.kernel.org>,
<linux-arm-kernel@lists.infradead.org>,
<linux-phy@lists.infradead.org>
Subject: Re: [PATCH v9 2/4] arm64: dts: qcom: ipq5332: Add USB related nodes
Date: Wed, 23 Aug 2023 10:48:50 +0530 [thread overview]
Message-ID: <20230823051849.GA15057@varda-linux.qualcomm.com> (raw)
In-Reply-To: <8792cced-62bc-d887-8b14-05f967f7f4ed@linaro.org>
On Tue, Aug 22, 2023 at 01:40:57PM +0200, Krzysztof Kozlowski wrote:
> On 22/08/2023 12:29, Varadarajan Narayanan wrote:
> > Add USB phy and controller nodes.
> >
> > Signed-off-by: Varadarajan Narayanan <quic_varada@quicinc.com>
> > ---
> > v9:
> > usb2@8a00000 -> usb@8a00000
> > "make ARCH=arm64 -j 16 CHECK_DTBS=y DT_SCHEMA_FILES=qcom,ipq5332-usb-hsphy.yaml dtbs_check" passed
>
> I asked about W=1.
>
>
> > v6:
> > Remove clock names
> > Move the nodes to address sorted location
> > v5:
> > Use generic phy instead of usb-phy
> > 'make CHECK_DTBS=y DT_SCHEMA_FILES=qcom dtbs_check' passed
> > 'DT_CHECKER_FLAGS='-v -m' DT_SCHEMA_FILES=qcom dt_binding_check' passed
> > v4:
> > Change node name
> > Remove blank line
> > 'make CHECK_DTBS=y DT_SCHEMA_FILES=qcom qcom/ipq5332-rdp441.dtb' passed
> > v1:
> > Rename phy node
> > Change compatible from m31,ipq5332-usb-hsphy -> qcom,ipq5332-usb-hsphy
> > Remove 'qscratch' from phy node
> > Fix alignment and upper-case hex no.s
> > Add clock definition for the phy
> > Remove snps,ref-clock-period-ns as it is not used. dwc3_ref_clk_period()
> > in dwc3/core.c takes the frequency from ref clock and calculates fladj
> > as appropriate.
> > ---
> > arch/arm64/boot/dts/qcom/ipq5332.dtsi | 55 +++++++++++++++++++++++++++++++++++
> > 1 file changed, 55 insertions(+)
> >
> > diff --git a/arch/arm64/boot/dts/qcom/ipq5332.dtsi b/arch/arm64/boot/dts/qcom/ipq5332.dtsi
> > index 8bfc2db..e6baf69 100644
> > --- a/arch/arm64/boot/dts/qcom/ipq5332.dtsi
> > +++ b/arch/arm64/boot/dts/qcom/ipq5332.dtsi
> > @@ -145,6 +145,19 @@
> > #size-cells = <1>;
> > ranges = <0 0 0 0xffffffff>;
> >
> > + usbphy0: phy@7b000 {
> > + compatible = "qcom,ipq5332-usb-hsphy";
> > + reg = <0x0007b000 0x12c>;
> > +
> > + clocks = <&gcc GCC_USB0_PHY_CFG_AHB_CLK>;
> > +
> > + resets = <&gcc GCC_QUSB2_0_PHY_BCR>;
> > +
> > + #phy-cells = <0>;
> > +
> > + status = "disabled";
> > + };
> > +
> > qfprom: efuse@a4000 {
> > compatible = "qcom,ipq5332-qfprom", "qcom,qfprom";
> > reg = <0x000a4000 0x721>;
> > @@ -290,6 +303,48 @@
> > status = "disabled";
> > };
> >
> > + usb: usb@8a00000 {
> > + compatible = "qcom,ipq5332-dwc3", "qcom,dwc3";
> > + reg = <0x08af8800 0x400>;
>
> Still wrong address. I pointed it last time. Please fix it instead of
> just sending the same. If you do not agree, keep discussing. I could
> have make a mistake, but ignoring error and not responding is not the way.
Sorry, my mistake. I changed usb2 to usb and missed this.
Thanks
Varada
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2023-08-23 5:19 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-22 10:29 [PATCH v9 0/4] Enable IPQ5332 USB2 Varadarajan Narayanan
2023-08-22 10:29 ` Varadarajan Narayanan
2023-08-22 10:29 ` Varadarajan Narayanan
2023-08-22 10:29 ` [PATCH v9 1/4] phy: qcom: m31: Fix indentation issues Varadarajan Narayanan
2023-08-22 10:29 ` Varadarajan Narayanan
2023-08-22 10:29 ` Varadarajan Narayanan
2023-08-22 10:55 ` Dmitry Baryshkov
2023-08-22 10:55 ` Dmitry Baryshkov
2023-08-22 10:55 ` Dmitry Baryshkov
2023-08-22 11:33 ` Dmitry Baryshkov
2023-08-22 11:33 ` Dmitry Baryshkov
2023-08-22 11:33 ` Dmitry Baryshkov
2023-08-22 11:47 ` Krzysztof Kozlowski
2023-08-22 11:47 ` Krzysztof Kozlowski
2023-08-22 11:47 ` Krzysztof Kozlowski
2023-08-22 10:29 ` [PATCH v9 2/4] arm64: dts: qcom: ipq5332: Add USB related nodes Varadarajan Narayanan
2023-08-22 10:29 ` Varadarajan Narayanan
2023-08-22 10:29 ` Varadarajan Narayanan
2023-08-22 11:40 ` Krzysztof Kozlowski
2023-08-22 11:40 ` Krzysztof Kozlowski
2023-08-22 11:40 ` Krzysztof Kozlowski
2023-08-23 5:18 ` Varadarajan Narayanan [this message]
2023-08-23 5:18 ` Varadarajan Narayanan
2023-08-23 5:18 ` Varadarajan Narayanan
2023-08-22 10:29 ` [PATCH v9 3/4] arm64: dts: qcom: ipq5332: Enable USB Varadarajan Narayanan
2023-08-22 10:29 ` Varadarajan Narayanan
2023-08-22 10:29 ` Varadarajan Narayanan
2023-08-22 11:39 ` Krzysztof Kozlowski
2023-08-22 11:39 ` Krzysztof Kozlowski
2023-08-22 11:39 ` Krzysztof Kozlowski
2023-08-22 10:29 ` [PATCH v9 4/4] arm64: defconfig: Enable M31 USB phy driver Varadarajan Narayanan
2023-08-22 10:29 ` Varadarajan Narayanan
2023-08-22 10:29 ` Varadarajan Narayanan
2023-08-22 11:33 ` Dmitry Baryshkov
2023-08-22 11:33 ` Dmitry Baryshkov
2023-08-22 11:33 ` Dmitry Baryshkov
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=20230823051849.GA15057@varda-linux.qualcomm.com \
--to=quic_varada@quicinc.com \
--cc=agross@kernel.org \
--cc=andersson@kernel.org \
--cc=arnd@arndb.de \
--cc=catalin.marinas@arm.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=geert+renesas@glider.be \
--cc=kishon@kernel.org \
--cc=konrad.dybcio@linaro.org \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=krzysztof.kozlowski@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-phy@lists.infradead.org \
--cc=nfraprado@collabora.com \
--cc=peng.fan@nxp.com \
--cc=rafal@milecki.pl \
--cc=robh+dt@kernel.org \
--cc=vkoul@kernel.org \
--cc=will@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.