From: Christian Marangi <ansuelsmth@gmail.com>
To: Konrad Dybcio <konrad.dybcio@somainline.org>
Cc: Andy Gross <agross@kernel.org>,
Bjorn Andersson <bjorn.andersson@linaro.org>,
Rob Herring <robh+dt@kernel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
linux-arm-msm@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org,
Jonathan McDowell <noodles@earth.li>
Subject: Re: [PATCH 03/13] ARM: dts: qcom: add missing rpm regulators and cells for ipq8064
Date: Wed, 6 Jul 2022 14:52:08 +0200 [thread overview]
Message-ID: <62c5895d.1c69fb81.21090.02f1@mx.google.com> (raw)
In-Reply-To: <1e261828-6f87-8e02-e560-01a47758471e@somainline.org>
On Wed, Jul 06, 2022 at 03:02:44PM +0200, Konrad Dybcio wrote:
>
>
> On 5.07.2022 15:39, Christian Marangi wrote:
> > Add cells definition for rpm node and add missing regulators for the 4
> > regulator present on ipq8064. There regulators are controlled by rpm and
> > to correctly works gsbi4_i2c require to be NEVER disabled or rpm will
> > reject any regulator change request.
> That sounds.. very weird for a RPM regulator..
>
>
I know but it's like that. In theory the smb208 can be controlled via
the gsbi4_i2c and bypass rpm completely but we have no ducmentation of
smb208 so rpm is the only way to scale voltage on this SoC.
If gsbi4_i2c is disabled any RPM voltage request fails as RPM in it's
firmware use the same line and assume it's always enabled.
> >
> > Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
> > Tested-by: Jonathan McDowell <noodles@earth.li>
> > ---
> > arch/arm/boot/dts/qcom-ipq8064.dtsi | 36 +++++++++++++++++++++++++++++
> > 1 file changed, 36 insertions(+)
> >
> > diff --git a/arch/arm/boot/dts/qcom-ipq8064.dtsi b/arch/arm/boot/dts/qcom-ipq8064.dtsi
> > index 1b4b72723ead..c0b05d2a2d6d 100644
> > --- a/arch/arm/boot/dts/qcom-ipq8064.dtsi
> > +++ b/arch/arm/boot/dts/qcom-ipq8064.dtsi
> > @@ -844,10 +844,46 @@ rpm: rpm@108000 {
> > clocks = <&gcc RPM_MSG_RAM_H_CLK>;
> > clock-names = "ram";
> >
> > + #address-cells = <1>;
> > + #size-cells = <0>;
> > +
> > rpmcc: clock-controller {
> > compatible = "qcom,rpmcc-ipq806x", "qcom,rpmcc";
> > #clock-cells = <1>;
> > };
> > +
> > + smb208_regulators: regulators {
> Are you sure it is used on all ipq8064 boards? And with the same
> voltage settings?
>
Out of 28 device we have on openwrt only the one present upstream
doesn't use the smb208 regulator and use it's own way.
The voltage are all the same, it does change with other revision of the
SoC (ipq8065) but they will pushed in another series later.
> > + compatible = "qcom,rpm-smb208-regulators";
> > + status = "okay";
> They are enabled by default, as you are defining them here and
> the status property is not overwritten anywhere else.
>
> Konrad
> > +
> > + smb208_s1a: s1a {
> > + regulator-min-microvolt = <1050000>;
> > + regulator-max-microvolt = <1150000>;
> > +
> > + qcom,switch-mode-frequency = <1200000>;
> > + };
> > +
> > + smb208_s1b: s1b {
> > + regulator-min-microvolt = <1050000>;
> > + regulator-max-microvolt = <1150000>;
> > +
> > + qcom,switch-mode-frequency = <1200000>;
> > + };
> > +
> > + smb208_s2a: s2a {
> > + regulator-min-microvolt = < 800000>;
> > + regulator-max-microvolt = <1250000>;
> > +
> > + qcom,switch-mode-frequency = <1200000>;
> > + };
> > +
> > + smb208_s2b: s2b {
> > + regulator-min-microvolt = < 800000>;
> > + regulator-max-microvolt = <1250000>;
> > +
> > + qcom,switch-mode-frequency = <1200000>;
> > + };
> > + };
> > };
> >
> > tcsr: syscon@1a400000 {
--
Ansuel
next prev parent reply other threads:[~2022-07-06 13:08 UTC|newest]
Thread overview: 56+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-07-05 13:39 [PATCH 00/13] Add ipq806x missing bindings Christian Marangi
2022-07-05 13:39 ` [PATCH 01/13] ARM: dts: qcom: add multiple missing pin definition for ipq8064 Christian Marangi
2022-07-06 12:48 ` Konrad Dybcio
2022-07-05 13:39 ` [PATCH 02/13] ARM: dts: qcom: add gsbi6 missing " Christian Marangi
2022-07-06 8:33 ` Krzysztof Kozlowski
2022-07-06 12:48 ` Konrad Dybcio
2022-07-05 13:39 ` [PATCH 03/13] ARM: dts: qcom: add missing rpm regulators and cells " Christian Marangi
2022-07-06 8:34 ` Krzysztof Kozlowski
2022-07-06 10:09 ` Christian Marangi
2022-07-06 11:55 ` Dmitry Baryshkov
2022-07-06 14:42 ` Krzysztof Kozlowski
2022-07-06 13:02 ` Konrad Dybcio
2022-07-06 12:52 ` Christian Marangi [this message]
2022-07-05 13:39 ` [PATCH 04/13] ARM: dts: qcom: disable smb208 regulators for ipq8064-rb3011 Christian Marangi
2022-07-06 8:34 ` Krzysztof Kozlowski
2022-07-06 10:11 ` Christian Marangi
2022-07-06 13:03 ` Konrad Dybcio
2022-07-06 12:56 ` Christian Marangi
2022-07-06 13:31 ` Konrad Dybcio
2022-07-06 13:19 ` Christian Marangi
2022-07-06 13:37 ` Konrad Dybcio
2022-07-06 13:25 ` Christian Marangi
2022-07-05 13:39 ` [PATCH 05/13] ARM: dts: qcom: add missing snps,dwmac compatible for gmac ipq8064 Christian Marangi
2022-07-06 8:35 ` Krzysztof Kozlowski
2022-07-06 13:04 ` Konrad Dybcio
2022-07-05 13:39 ` [PATCH 06/13] ARM: dts: qcom: enable usb phy by default for ipq8064 Christian Marangi
2022-07-06 8:36 ` Krzysztof Kozlowski
2022-07-06 13:04 ` Konrad Dybcio
2022-07-06 12:59 ` Christian Marangi
2022-07-06 13:33 ` Konrad Dybcio
2022-07-06 13:20 ` Christian Marangi
2022-07-05 13:39 ` [PATCH 07/13] ARM: dts: qcom: reduce pci IO size to 64K " Christian Marangi
2022-07-05 13:39 ` [PATCH 08/13] ARM: dts: qcom: fix dtc warning for missing #address-cells " Christian Marangi
2022-07-06 8:37 ` Krzysztof Kozlowski
2022-07-06 10:12 ` Christian Marangi
2022-07-06 14:45 ` Krzysztof Kozlowski
2022-07-05 13:39 ` [PATCH 09/13] ARM: dts: qcom: add smem node " Christian Marangi
2022-07-06 8:39 ` Krzysztof Kozlowski
2022-07-06 10:14 ` Christian Marangi
2022-07-06 10:37 ` Christian Marangi
2022-07-06 12:01 ` Dmitry Baryshkov
2022-07-06 14:46 ` Krzysztof Kozlowski
2022-07-06 13:11 ` Konrad Dybcio
2022-07-06 13:03 ` Christian Marangi
2022-07-06 13:41 ` Dmitry Baryshkov
2022-07-05 13:39 ` [PATCH 10/13] ARM: dts: qcom: add sic non secure " Christian Marangi
2022-07-06 8:39 ` Krzysztof Kozlowski
2022-07-05 13:39 ` [PATCH 11/13] ARM: dts: qcom: fix and add some missing gsbi " Christian Marangi
2022-07-06 8:40 ` Krzysztof Kozlowski
2022-07-05 13:39 ` [PATCH 12/13] ARM: dts: qcom: add speedbin efuse nvmem binding Christian Marangi
2022-07-06 8:40 ` Krzysztof Kozlowski
2022-07-05 13:39 ` [PATCH 13/13] ARM: dts: qcom: remove redundant binding from ipq8064 rb3011 dts Christian Marangi
2022-07-05 14:28 ` [PATCH 00/13] Add ipq806x missing bindings Krzysztof Kozlowski
2022-07-05 14:04 ` Christian Marangi
2022-07-05 15:55 ` Krzysztof Kozlowski
2022-07-05 15:40 ` Christian Marangi
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=62c5895d.1c69fb81.21090.02f1@mx.google.com \
--to=ansuelsmth@gmail.com \
--cc=agross@kernel.org \
--cc=bjorn.andersson@linaro.org \
--cc=devicetree@vger.kernel.org \
--cc=konrad.dybcio@somainline.org \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=noodles@earth.li \
--cc=robh+dt@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).