* [PATCH 0/4] arm64: dts: qcom: Rename the qmp node to power-controller
@ 2021-03-02 7:28 Sai Prakash Ranjan
2021-03-02 7:28 ` [PATCH 1/4] arm64: dts: qcom: sc7180: " Sai Prakash Ranjan
` (4 more replies)
0 siblings, 5 replies; 14+ messages in thread
From: Sai Prakash Ranjan @ 2021-03-02 7:28 UTC (permalink / raw)
To: Andy Gross, Bjorn Andersson, Stephen Boyd
Cc: devicetree, linux-arm-kernel, linux-kernel, linux-arm-msm,
Sai Prakash Ranjan
This short series converts the qmp DT node name to generic "power-controller"
for AOSS message ram instead of the protocol name QMP(Qualcomm Messaging Protocol)
since it is used for power management requests.
Sai Prakash Ranjan (4):
arm64: dts: qcom: sc7180: Rename the qmp node to power-controller
arm64: dts: qcom: sdm845: Rename the qmp node to power-controller
arm64: dts: qcom: sm8250: Rename the qmp node to power-controller
arm64: dts: qcom: sm8350: Rename the qmp node to power-controller
arch/arm64/boot/dts/qcom/sc7180.dtsi | 2 +-
arch/arm64/boot/dts/qcom/sdm845.dtsi | 2 +-
arch/arm64/boot/dts/qcom/sm8250.dtsi | 2 +-
arch/arm64/boot/dts/qcom/sm8350.dtsi | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
--
QUALCOMM INDIA, on behalf of Qualcomm Innovation Center, Inc. is a member
of Code Aurora Forum, hosted by The Linux Foundation
^ permalink raw reply [flat|nested] 14+ messages in thread* [PATCH 1/4] arm64: dts: qcom: sc7180: Rename the qmp node to power-controller 2021-03-02 7:28 [PATCH 0/4] arm64: dts: qcom: Rename the qmp node to power-controller Sai Prakash Ranjan @ 2021-03-02 7:28 ` Sai Prakash Ranjan 2021-03-03 8:11 ` Stephen Boyd 2021-03-02 7:28 ` [PATCH 2/4] arm64: dts: qcom: sdm845: " Sai Prakash Ranjan ` (3 subsequent siblings) 4 siblings, 1 reply; 14+ messages in thread From: Sai Prakash Ranjan @ 2021-03-02 7:28 UTC (permalink / raw) To: Andy Gross, Bjorn Andersson, Stephen Boyd Cc: devicetree, linux-arm-kernel, linux-kernel, linux-arm-msm, Sai Prakash Ranjan Use the generic DT node name "power-controller" for AOSS message ram instead of the protocol name QMP(Qualcomm Messaging Protocol) since it is used for power management requests. Suggested-by: Stephen Boyd <swboyd@chromium.org> Signed-off-by: Sai Prakash Ranjan <saiprakash.ranjan@codeaurora.org> --- arch/arm64/boot/dts/qcom/sc7180.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm64/boot/dts/qcom/sc7180.dtsi b/arch/arm64/boot/dts/qcom/sc7180.dtsi index 1ea3344ab62c..15e8149854bf 100644 --- a/arch/arm64/boot/dts/qcom/sc7180.dtsi +++ b/arch/arm64/boot/dts/qcom/sc7180.dtsi @@ -3222,7 +3222,7 @@ aoss_reset: reset-controller@c2a0000 { #reset-cells = <1>; }; - aoss_qmp: qmp@c300000 { + aoss_qmp: power-controller@c300000 { compatible = "qcom,sc7180-aoss-qmp"; reg = <0 0x0c300000 0 0x100000>; interrupts = <GIC_SPI 389 IRQ_TYPE_EDGE_RISING>; -- QUALCOMM INDIA, on behalf of Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation ^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [PATCH 1/4] arm64: dts: qcom: sc7180: Rename the qmp node to power-controller 2021-03-02 7:28 ` [PATCH 1/4] arm64: dts: qcom: sc7180: " Sai Prakash Ranjan @ 2021-03-03 8:11 ` Stephen Boyd 0 siblings, 0 replies; 14+ messages in thread From: Stephen Boyd @ 2021-03-03 8:11 UTC (permalink / raw) To: Andy Gross, Bjorn Andersson, Sai Prakash Ranjan Cc: devicetree, linux-arm-kernel, linux-kernel, linux-arm-msm, Sai Prakash Ranjan Quoting Sai Prakash Ranjan (2021-03-01 23:28:01) > Use the generic DT node name "power-controller" for AOSS message ram > instead of the protocol name QMP(Qualcomm Messaging Protocol) since > it is used for power management requests. > > Suggested-by: Stephen Boyd <swboyd@chromium.org> > Signed-off-by: Sai Prakash Ranjan <saiprakash.ranjan@codeaurora.org> > --- Reviewed-by: Stephen Boyd <swboyd@chromium.org> ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH 1/4] arm64: dts: qcom: sc7180: Rename the qmp node to power-controller @ 2021-03-03 8:11 ` Stephen Boyd 0 siblings, 0 replies; 14+ messages in thread From: Stephen Boyd @ 2021-03-03 8:11 UTC (permalink / raw) To: Andy Gross, Bjorn Andersson, Sai Prakash Ranjan Cc: devicetree, linux-arm-kernel, linux-kernel, linux-arm-msm, Sai Prakash Ranjan Quoting Sai Prakash Ranjan (2021-03-01 23:28:01) > Use the generic DT node name "power-controller" for AOSS message ram > instead of the protocol name QMP(Qualcomm Messaging Protocol) since > it is used for power management requests. > > Suggested-by: Stephen Boyd <swboyd@chromium.org> > Signed-off-by: Sai Prakash Ranjan <saiprakash.ranjan@codeaurora.org> > --- Reviewed-by: Stephen Boyd <swboyd@chromium.org> _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH 2/4] arm64: dts: qcom: sdm845: Rename the qmp node to power-controller 2021-03-02 7:28 [PATCH 0/4] arm64: dts: qcom: Rename the qmp node to power-controller Sai Prakash Ranjan 2021-03-02 7:28 ` [PATCH 1/4] arm64: dts: qcom: sc7180: " Sai Prakash Ranjan @ 2021-03-02 7:28 ` Sai Prakash Ranjan 2021-03-03 8:11 ` Stephen Boyd 2021-03-02 7:28 ` [PATCH 3/4] arm64: dts: qcom: sm8250: " Sai Prakash Ranjan ` (2 subsequent siblings) 4 siblings, 1 reply; 14+ messages in thread From: Sai Prakash Ranjan @ 2021-03-02 7:28 UTC (permalink / raw) To: Andy Gross, Bjorn Andersson, Stephen Boyd Cc: devicetree, linux-arm-kernel, linux-kernel, linux-arm-msm, Sai Prakash Ranjan Use the generic DT node name "power-controller" for AOSS message ram instead of the protocol name QMP(Qualcomm Messaging Protocol) since it is used for power management requests. Suggested-by: Stephen Boyd <swboyd@chromium.org> Signed-off-by: Sai Prakash Ranjan <saiprakash.ranjan@codeaurora.org> --- arch/arm64/boot/dts/qcom/sdm845.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm64/boot/dts/qcom/sdm845.dtsi b/arch/arm64/boot/dts/qcom/sdm845.dtsi index 454f794af547..8acc731b58a3 100644 --- a/arch/arm64/boot/dts/qcom/sdm845.dtsi +++ b/arch/arm64/boot/dts/qcom/sdm845.dtsi @@ -4428,7 +4428,7 @@ aoss_reset: reset-controller@c2a0000 { #reset-cells = <1>; }; - aoss_qmp: qmp@c300000 { + aoss_qmp: power-controller@c300000 { compatible = "qcom,sdm845-aoss-qmp"; reg = <0 0x0c300000 0 0x100000>; interrupts = <GIC_SPI 389 IRQ_TYPE_EDGE_RISING>; -- QUALCOMM INDIA, on behalf of Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation ^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [PATCH 2/4] arm64: dts: qcom: sdm845: Rename the qmp node to power-controller 2021-03-02 7:28 ` [PATCH 2/4] arm64: dts: qcom: sdm845: " Sai Prakash Ranjan @ 2021-03-03 8:11 ` Stephen Boyd 0 siblings, 0 replies; 14+ messages in thread From: Stephen Boyd @ 2021-03-03 8:11 UTC (permalink / raw) To: Andy Gross, Bjorn Andersson, Sai Prakash Ranjan Cc: devicetree, linux-arm-kernel, linux-kernel, linux-arm-msm, Sai Prakash Ranjan Quoting Sai Prakash Ranjan (2021-03-01 23:28:02) > Use the generic DT node name "power-controller" for AOSS message ram > instead of the protocol name QMP(Qualcomm Messaging Protocol) since > it is used for power management requests. > > Suggested-by: Stephen Boyd <swboyd@chromium.org> > Signed-off-by: Sai Prakash Ranjan <saiprakash.ranjan@codeaurora.org> > --- Reviewed-by: Stephen Boyd <swboyd@chromium.org> ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH 2/4] arm64: dts: qcom: sdm845: Rename the qmp node to power-controller @ 2021-03-03 8:11 ` Stephen Boyd 0 siblings, 0 replies; 14+ messages in thread From: Stephen Boyd @ 2021-03-03 8:11 UTC (permalink / raw) To: Andy Gross, Bjorn Andersson, Sai Prakash Ranjan Cc: devicetree, linux-arm-kernel, linux-kernel, linux-arm-msm, Sai Prakash Ranjan Quoting Sai Prakash Ranjan (2021-03-01 23:28:02) > Use the generic DT node name "power-controller" for AOSS message ram > instead of the protocol name QMP(Qualcomm Messaging Protocol) since > it is used for power management requests. > > Suggested-by: Stephen Boyd <swboyd@chromium.org> > Signed-off-by: Sai Prakash Ranjan <saiprakash.ranjan@codeaurora.org> > --- Reviewed-by: Stephen Boyd <swboyd@chromium.org> _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH 3/4] arm64: dts: qcom: sm8250: Rename the qmp node to power-controller 2021-03-02 7:28 [PATCH 0/4] arm64: dts: qcom: Rename the qmp node to power-controller Sai Prakash Ranjan 2021-03-02 7:28 ` [PATCH 1/4] arm64: dts: qcom: sc7180: " Sai Prakash Ranjan 2021-03-02 7:28 ` [PATCH 2/4] arm64: dts: qcom: sdm845: " Sai Prakash Ranjan @ 2021-03-02 7:28 ` Sai Prakash Ranjan 2021-03-03 8:12 ` Stephen Boyd 2021-03-02 7:28 ` [PATCH 4/4] arm64: dts: qcom: sm8350: " Sai Prakash Ranjan 2021-03-06 0:20 ` [PATCH 0/4] arm64: dts: qcom: " patchwork-bot+linux-arm-msm 4 siblings, 1 reply; 14+ messages in thread From: Sai Prakash Ranjan @ 2021-03-02 7:28 UTC (permalink / raw) To: Andy Gross, Bjorn Andersson, Stephen Boyd Cc: devicetree, linux-arm-kernel, linux-kernel, linux-arm-msm, Sai Prakash Ranjan Use the generic DT node name "power-controller" for AOSS message ram instead of the protocol name QMP(Qualcomm Messaging Protocol) since it is used for power management requests. Suggested-by: Stephen Boyd <swboyd@chromium.org> Signed-off-by: Sai Prakash Ranjan <saiprakash.ranjan@codeaurora.org> --- arch/arm64/boot/dts/qcom/sm8250.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm64/boot/dts/qcom/sm8250.dtsi b/arch/arm64/boot/dts/qcom/sm8250.dtsi index 947e1accae3a..2724c9cc3602 100644 --- a/arch/arm64/boot/dts/qcom/sm8250.dtsi +++ b/arch/arm64/boot/dts/qcom/sm8250.dtsi @@ -2647,7 +2647,7 @@ tsens1: thermal-sensor@c265000 { #thermal-sensor-cells = <1>; }; - aoss_qmp: qmp@c300000 { + aoss_qmp: power-controller@c300000 { compatible = "qcom,sm8250-aoss-qmp"; reg = <0 0x0c300000 0 0x100000>; interrupts-extended = <&ipcc IPCC_CLIENT_AOP -- QUALCOMM INDIA, on behalf of Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation ^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [PATCH 3/4] arm64: dts: qcom: sm8250: Rename the qmp node to power-controller 2021-03-02 7:28 ` [PATCH 3/4] arm64: dts: qcom: sm8250: " Sai Prakash Ranjan @ 2021-03-03 8:12 ` Stephen Boyd 0 siblings, 0 replies; 14+ messages in thread From: Stephen Boyd @ 2021-03-03 8:12 UTC (permalink / raw) To: Andy Gross, Bjorn Andersson, Sai Prakash Ranjan Cc: devicetree, linux-arm-kernel, linux-kernel, linux-arm-msm, Sai Prakash Ranjan Quoting Sai Prakash Ranjan (2021-03-01 23:28:03) > Use the generic DT node name "power-controller" for AOSS message ram > instead of the protocol name QMP(Qualcomm Messaging Protocol) since > it is used for power management requests. > > Suggested-by: Stephen Boyd <swboyd@chromium.org> > Signed-off-by: Sai Prakash Ranjan <saiprakash.ranjan@codeaurora.org> > --- Reviewed-by: Stephen Boyd <swboyd@chromium.org> ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH 3/4] arm64: dts: qcom: sm8250: Rename the qmp node to power-controller @ 2021-03-03 8:12 ` Stephen Boyd 0 siblings, 0 replies; 14+ messages in thread From: Stephen Boyd @ 2021-03-03 8:12 UTC (permalink / raw) To: Andy Gross, Bjorn Andersson, Sai Prakash Ranjan Cc: devicetree, linux-arm-kernel, linux-kernel, linux-arm-msm, Sai Prakash Ranjan Quoting Sai Prakash Ranjan (2021-03-01 23:28:03) > Use the generic DT node name "power-controller" for AOSS message ram > instead of the protocol name QMP(Qualcomm Messaging Protocol) since > it is used for power management requests. > > Suggested-by: Stephen Boyd <swboyd@chromium.org> > Signed-off-by: Sai Prakash Ranjan <saiprakash.ranjan@codeaurora.org> > --- Reviewed-by: Stephen Boyd <swboyd@chromium.org> _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH 4/4] arm64: dts: qcom: sm8350: Rename the qmp node to power-controller 2021-03-02 7:28 [PATCH 0/4] arm64: dts: qcom: Rename the qmp node to power-controller Sai Prakash Ranjan ` (2 preceding siblings ...) 2021-03-02 7:28 ` [PATCH 3/4] arm64: dts: qcom: sm8250: " Sai Prakash Ranjan @ 2021-03-02 7:28 ` Sai Prakash Ranjan 2021-03-03 8:12 ` Stephen Boyd 2021-03-06 0:20 ` [PATCH 0/4] arm64: dts: qcom: " patchwork-bot+linux-arm-msm 4 siblings, 1 reply; 14+ messages in thread From: Sai Prakash Ranjan @ 2021-03-02 7:28 UTC (permalink / raw) To: Andy Gross, Bjorn Andersson, Stephen Boyd Cc: devicetree, linux-arm-kernel, linux-kernel, linux-arm-msm, Sai Prakash Ranjan Use the generic DT node name "power-controller" for AOSS message ram instead of the protocol name QMP(Qualcomm Messaging Protocol) since it is used for power management requests. Suggested-by: Stephen Boyd <swboyd@chromium.org> Signed-off-by: Sai Prakash Ranjan <saiprakash.ranjan@codeaurora.org> --- arch/arm64/boot/dts/qcom/sm8350.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm64/boot/dts/qcom/sm8350.dtsi b/arch/arm64/boot/dts/qcom/sm8350.dtsi index 5ef460458f5c..617bc1993217 100644 --- a/arch/arm64/boot/dts/qcom/sm8350.dtsi +++ b/arch/arm64/boot/dts/qcom/sm8350.dtsi @@ -363,7 +363,7 @@ pdc: interrupt-controller@b220000 { interrupt-controller; }; - aoss_qmp: qmp@c300000 { + aoss_qmp: power-controller@c300000 { compatible = "qcom,sm8350-aoss-qmp"; reg = <0 0x0c300000 0 0x100000>; interrupts-extended = <&ipcc IPCC_CLIENT_AOP IPCC_MPROC_SIGNAL_GLINK_QMP -- QUALCOMM INDIA, on behalf of Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation ^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [PATCH 4/4] arm64: dts: qcom: sm8350: Rename the qmp node to power-controller 2021-03-02 7:28 ` [PATCH 4/4] arm64: dts: qcom: sm8350: " Sai Prakash Ranjan @ 2021-03-03 8:12 ` Stephen Boyd 0 siblings, 0 replies; 14+ messages in thread From: Stephen Boyd @ 2021-03-03 8:12 UTC (permalink / raw) To: Andy Gross, Bjorn Andersson, Sai Prakash Ranjan Cc: devicetree, linux-arm-kernel, linux-kernel, linux-arm-msm, Sai Prakash Ranjan Quoting Sai Prakash Ranjan (2021-03-01 23:28:04) > Use the generic DT node name "power-controller" for AOSS message ram > instead of the protocol name QMP(Qualcomm Messaging Protocol) since > it is used for power management requests. > > Suggested-by: Stephen Boyd <swboyd@chromium.org> > Signed-off-by: Sai Prakash Ranjan <saiprakash.ranjan@codeaurora.org> > --- Reviewed-by: Stephen Boyd <swboyd@chromium.org> ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH 4/4] arm64: dts: qcom: sm8350: Rename the qmp node to power-controller @ 2021-03-03 8:12 ` Stephen Boyd 0 siblings, 0 replies; 14+ messages in thread From: Stephen Boyd @ 2021-03-03 8:12 UTC (permalink / raw) To: Andy Gross, Bjorn Andersson, Sai Prakash Ranjan Cc: devicetree, linux-arm-kernel, linux-kernel, linux-arm-msm, Sai Prakash Ranjan Quoting Sai Prakash Ranjan (2021-03-01 23:28:04) > Use the generic DT node name "power-controller" for AOSS message ram > instead of the protocol name QMP(Qualcomm Messaging Protocol) since > it is used for power management requests. > > Suggested-by: Stephen Boyd <swboyd@chromium.org> > Signed-off-by: Sai Prakash Ranjan <saiprakash.ranjan@codeaurora.org> > --- Reviewed-by: Stephen Boyd <swboyd@chromium.org> _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH 0/4] arm64: dts: qcom: Rename the qmp node to power-controller 2021-03-02 7:28 [PATCH 0/4] arm64: dts: qcom: Rename the qmp node to power-controller Sai Prakash Ranjan ` (3 preceding siblings ...) 2021-03-02 7:28 ` [PATCH 4/4] arm64: dts: qcom: sm8350: " Sai Prakash Ranjan @ 2021-03-06 0:20 ` patchwork-bot+linux-arm-msm 4 siblings, 0 replies; 14+ messages in thread From: patchwork-bot+linux-arm-msm @ 2021-03-06 0:20 UTC (permalink / raw) To: Sai Prakash Ranjan; +Cc: linux-arm-msm Hello: This series was applied to qcom/linux.git (refs/heads/for-next): On Tue, 2 Mar 2021 12:58:00 +0530 you wrote: > This short series converts the qmp DT node name to generic "power-controller" > for AOSS message ram instead of the protocol name QMP(Qualcomm Messaging Protocol) > since it is used for power management requests. > > Sai Prakash Ranjan (4): > arm64: dts: qcom: sc7180: Rename the qmp node to power-controller > arm64: dts: qcom: sdm845: Rename the qmp node to power-controller > arm64: dts: qcom: sm8250: Rename the qmp node to power-controller > arm64: dts: qcom: sm8350: Rename the qmp node to power-controller > > [...] Here is the summary with links: - [1/4] arm64: dts: qcom: sc7180: Rename the qmp node to power-controller https://git.kernel.org/qcom/c/c0e93b029bee - [2/4] arm64: dts: qcom: sdm845: Rename the qmp node to power-controller https://git.kernel.org/qcom/c/0cc147305586 - [3/4] arm64: dts: qcom: sm8250: Rename the qmp node to power-controller https://git.kernel.org/qcom/c/067a8db27ddc - [4/4] arm64: dts: qcom: sm8350: Rename the qmp node to power-controller https://git.kernel.org/qcom/c/2808211cc9a7 You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html ^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2021-03-06 0:20 UTC | newest] Thread overview: 14+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2021-03-02 7:28 [PATCH 0/4] arm64: dts: qcom: Rename the qmp node to power-controller Sai Prakash Ranjan 2021-03-02 7:28 ` [PATCH 1/4] arm64: dts: qcom: sc7180: " Sai Prakash Ranjan 2021-03-03 8:11 ` Stephen Boyd 2021-03-03 8:11 ` Stephen Boyd 2021-03-02 7:28 ` [PATCH 2/4] arm64: dts: qcom: sdm845: " Sai Prakash Ranjan 2021-03-03 8:11 ` Stephen Boyd 2021-03-03 8:11 ` Stephen Boyd 2021-03-02 7:28 ` [PATCH 3/4] arm64: dts: qcom: sm8250: " Sai Prakash Ranjan 2021-03-03 8:12 ` Stephen Boyd 2021-03-03 8:12 ` Stephen Boyd 2021-03-02 7:28 ` [PATCH 4/4] arm64: dts: qcom: sm8350: " Sai Prakash Ranjan 2021-03-03 8:12 ` Stephen Boyd 2021-03-03 8:12 ` Stephen Boyd 2021-03-06 0:20 ` [PATCH 0/4] arm64: dts: qcom: " patchwork-bot+linux-arm-msm
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.