Message ID | 20200319053902.3415984-4-bjorn.andersson@linaro.org |
---|---|
State | New |
Headers | show |
Series | clk: qcom: gdsc: Handle supply regulators | expand |
Quoting Bjorn Andersson (2020-03-18 22:39:01) > From: Rajendra Nayak <rnayak@codeaurora.org> > > Add the SPMI regulator node in the PMI8994, use it to give us VDD_GX > at a fixed max nominal voltage for the db820c and specify this as supply > for the MMSS GPU_GX GDSC. > > With the introduction of CPR support the range for VDD_GX should be > expanded. > > Signed-off-by: Rajendra Nayak <rnayak@codeaurora.org> > [bjorn: Split between pmi8994 and db820c, changed voltage, rewrote commit message] > Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org> > --- These two dts patches don't need to go through clk tree right? And the first patch can be applied and regulator core will just return us a dummy supply so it's safe to apply now?
On Fri 20 Mar 16:33 PDT 2020, Stephen Boyd wrote: > Quoting Bjorn Andersson (2020-03-18 22:39:01) > > From: Rajendra Nayak <rnayak@codeaurora.org> > > > > Add the SPMI regulator node in the PMI8994, use it to give us VDD_GX > > at a fixed max nominal voltage for the db820c and specify this as supply > > for the MMSS GPU_GX GDSC. > > > > With the introduction of CPR support the range for VDD_GX should be > > expanded. > > > > Signed-off-by: Rajendra Nayak <rnayak@codeaurora.org> > > [bjorn: Split between pmi8994 and db820c, changed voltage, rewrote commit message] > > Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org> > > --- > > These two dts patches don't need to go through clk tree right? And the > first patch can be applied and regulator core will just return us a > dummy supply so it's safe to apply now? Right, the two pairs can be merged completely independently; we just need to agree on the _ vs - Regards, Bjorn
diff --git a/arch/arm64/boot/dts/qcom/apq8096-db820c.dtsi b/arch/arm64/boot/dts/qcom/apq8096-db820c.dtsi index 4692b7ad16b7..075cebaec3f3 100644 --- a/arch/arm64/boot/dts/qcom/apq8096-db820c.dtsi +++ b/arch/arm64/boot/dts/qcom/apq8096-db820c.dtsi @@ -251,6 +251,10 @@ &mdss { status = "okay"; }; +&mmcc { + vdd_gfx-supply = <&vdd_gfx>; +}; + &msmgpio { gpio-line-names = "[SPI0_DOUT]", /* GPIO_0, BLSP1_SPI_MOSI, LSEC pin 14 */ @@ -688,6 +692,16 @@ pinconf { }; }; + +&pmi8994_spmi_regulators { + vdd_gfx: s2@1700 { + reg = <0x1700 0x100>; + regulator-name = "VDD_GFX"; + regulator-min-microvolt = <980000>; + regulator-max-microvolt = <980000>; + }; +}; + &rpm_requests { pm8994-regulators { compatible = "qcom,rpm-pm8994-regulators"; diff --git a/arch/arm64/boot/dts/qcom/pmi8994.dtsi b/arch/arm64/boot/dts/qcom/pmi8994.dtsi index 21e05215abe4..e5ed28ab9b2d 100644 --- a/arch/arm64/boot/dts/qcom/pmi8994.dtsi +++ b/arch/arm64/boot/dts/qcom/pmi8994.dtsi @@ -26,5 +26,11 @@ pmic@3 { reg = <0x3 SPMI_USID>; #address-cells = <1>; #size-cells = <0>; + + pmi8994_spmi_regulators: regulators { + compatible = "qcom,pmi8994-regulators"; + #address-cells = <1>; + #size-cells = <1>; + }; }; };