Message ID | 1438857474-20262-11-git-send-email-rnayak@codeaurora.org (mailing list archive) |
---|---|
State | Changes Requested |
Delegated to: | Andy Gross |
Headers | show |
On 08/06, Rajendra Nayak wrote: > msm8974 has gcc and mmcc nodes, and apq8084 has a gcc node which > implement gdsc powerdomains. Add the #power-domain-cells property > to them. > > Signed-off-by: Rajendra Nayak <rnayak@codeaurora.org> > --- This needs to go through Andy's tree and arm-soc. Also, I don't see an update for the binding anywhere. Please update the binding too.
On 08/11/2015 12:23 PM, Stephen Boyd wrote: > On 08/06, Rajendra Nayak wrote: >> msm8974 has gcc and mmcc nodes, and apq8084 has a gcc node which >> implement gdsc powerdomains. Add the #power-domain-cells property >> to them. >> >> Signed-off-by: Rajendra Nayak <rnayak@codeaurora.org> >> --- > > This needs to go through Andy's tree and arm-soc. Also, I don't > see an update for the binding anywhere. Please update the binding > too. Will do, I hope you mean update the bindings in qcom,mmcc.txt and qcom,gcc.txt? -- To unsubscribe from this list: send the line "unsubscribe linux-arm-msm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On 08/12/2015 09:24 PM, Rajendra Nayak wrote: > On 08/11/2015 12:23 PM, Stephen Boyd wrote: >> On 08/06, Rajendra Nayak wrote: >>> msm8974 has gcc and mmcc nodes, and apq8084 has a gcc node which >>> implement gdsc powerdomains. Add the #power-domain-cells property >>> to them. >>> >>> Signed-off-by: Rajendra Nayak <rnayak@codeaurora.org> >>> --- >> >> This needs to go through Andy's tree and arm-soc. Also, I don't >> see an update for the binding anywhere. Please update the binding >> too. > > Will do, I hope you mean update the bindings in qcom,mmcc.txt and > qcom,gcc.txt? Yes.
diff --git a/arch/arm/boot/dts/qcom-apq8084.dtsi b/arch/arm/boot/dts/qcom-apq8084.dtsi index 7084010..1cdb568 100644 --- a/arch/arm/boot/dts/qcom-apq8084.dtsi +++ b/arch/arm/boot/dts/qcom-apq8084.dtsi @@ -221,6 +221,7 @@ compatible = "qcom,gcc-apq8084"; #clock-cells = <1>; #reset-cells = <1>; + #power-domain-cells = <1>; reg = <0xfc400000 0x4000>; }; diff --git a/arch/arm/boot/dts/qcom-msm8974.dtsi b/arch/arm/boot/dts/qcom-msm8974.dtsi index 37b47b5..8a2dfa6 100644 --- a/arch/arm/boot/dts/qcom-msm8974.dtsi +++ b/arch/arm/boot/dts/qcom-msm8974.dtsi @@ -217,6 +217,7 @@ compatible = "qcom,gcc-msm8974"; #clock-cells = <1>; #reset-cells = <1>; + #power-domain-cells = <1>; reg = <0xfc400000 0x4000>; }; @@ -224,6 +225,7 @@ compatible = "qcom,mmcc-msm8974"; #clock-cells = <1>; #reset-cells = <1>; + #power-domain-cells = <1>; reg = <0xfd8c0000 0x6000>; }; diff --git a/arch/arm64/boot/dts/qcom/msm8916.dtsi b/arch/arm64/boot/dts/qcom/msm8916.dtsi index 0f49ebd..3b0645a 100644 --- a/arch/arm64/boot/dts/qcom/msm8916.dtsi +++ b/arch/arm64/boot/dts/qcom/msm8916.dtsi @@ -120,6 +120,7 @@ compatible = "qcom,gcc-msm8916"; #clock-cells = <1>; #reset-cells = <1>; + #power-domain-cells = <1>; reg = <0x1800000 0x80000>; };
msm8974 has gcc and mmcc nodes, and apq8084 has a gcc node which implement gdsc powerdomains. Add the #power-domain-cells property to them. Signed-off-by: Rajendra Nayak <rnayak@codeaurora.org> --- arch/arm/boot/dts/qcom-apq8084.dtsi | 1 + arch/arm/boot/dts/qcom-msm8974.dtsi | 2 ++ arch/arm64/boot/dts/qcom/msm8916.dtsi | 1 + 3 files changed, 4 insertions(+)