devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] dt-bindings: soc: qcom: aoss-qmp: add compatible for sa8775p
@ 2023-05-04 16:17 Bartosz Golaszewski
  2023-05-04 16:17 ` [PATCH 2/2] arm64: dts: qcom: sa8775p: enable AOSS Bartosz Golaszewski
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Bartosz Golaszewski @ 2023-05-04 16:17 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski
  Cc: linux-arm-msm, devicetree, linux-kernel, Bartosz Golaszewski

From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>

Document the AOSS QMP compatible for SA8775P.

Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
---
 Documentation/devicetree/bindings/soc/qcom/qcom,aoss-qmp.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/soc/qcom/qcom,aoss-qmp.yaml b/Documentation/devicetree/bindings/soc/qcom/qcom,aoss-qmp.yaml
index 798f15588ee2..9dc8e48c8af4 100644
--- a/Documentation/devicetree/bindings/soc/qcom/qcom,aoss-qmp.yaml
+++ b/Documentation/devicetree/bindings/soc/qcom/qcom,aoss-qmp.yaml
@@ -26,6 +26,7 @@ properties:
     items:
       - enum:
           - qcom,qdu1000-aoss-qmp
+          - qcom,sa8775p-aoss-qmp
           - qcom,sc7180-aoss-qmp
           - qcom,sc7280-aoss-qmp
           - qcom,sc8180x-aoss-qmp
-- 
2.39.2


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 2/2] arm64: dts: qcom: sa8775p: enable AOSS
  2023-05-04 16:17 [PATCH 1/2] dt-bindings: soc: qcom: aoss-qmp: add compatible for sa8775p Bartosz Golaszewski
@ 2023-05-04 16:17 ` Bartosz Golaszewski
  2023-05-04 17:12   ` Konrad Dybcio
  2023-05-04 16:41 ` [PATCH 1/2] dt-bindings: soc: qcom: aoss-qmp: add compatible for sa8775p Krzysztof Kozlowski
  2023-05-15  3:32 ` (subset) " Bjorn Andersson
  2 siblings, 1 reply; 5+ messages in thread
From: Bartosz Golaszewski @ 2023-05-04 16:17 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski
  Cc: linux-arm-msm, devicetree, linux-kernel, Bartosz Golaszewski

From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>

Enable the always-on subsystem controller on SA8775P platforms for use
by upcoming support for other peripherals.

Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
---
 arch/arm64/boot/dts/qcom/sa8775p.dtsi | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/arch/arm64/boot/dts/qcom/sa8775p.dtsi b/arch/arm64/boot/dts/qcom/sa8775p.dtsi
index 0737ba38fefe..c5e2e3256bc4 100644
--- a/arch/arm64/boot/dts/qcom/sa8775p.dtsi
+++ b/arch/arm64/boot/dts/qcom/sa8775p.dtsi
@@ -9,6 +9,7 @@
 #include <dt-bindings/clock/qcom,sa8775p-gcc.h>
 #include <dt-bindings/clock/qcom,sa8775p-gpucc.h>
 #include <dt-bindings/interconnect/qcom,sa8775p-rpmh.h>
+#include <dt-bindings/mailbox/qcom-ipcc.h>
 #include <dt-bindings/power/qcom-rpmpd.h>
 #include <dt-bindings/soc/qcom,rpmh-rsc.h>
 
@@ -752,6 +753,16 @@ pdc: interrupt-controller@b220000 {
 			interrupt-controller;
 		};
 
+		aoss_qmp: power-management@c300000 {
+			compatible = "qcom,sa8775p-aoss-qmp", "qcom,aoss-qmp";
+			reg = <0x0 0x0c300000 0x0 0x400>;
+			interrupts-extended = <&ipcc IPCC_CLIENT_AOP
+					       IPCC_MPROC_SIGNAL_GLINK_QMP
+					       IRQ_TYPE_EDGE_RISING>;
+			mboxes = <&ipcc IPCC_CLIENT_AOP IPCC_MPROC_SIGNAL_GLINK_QMP>;
+			#clock-cells = <0>;
+		};
+
 		spmi_bus: spmi@c440000 {
 			compatible = "qcom,spmi-pmic-arb";
 			reg = <0x0 0x0c440000 0x0 0x1100>,
-- 
2.39.2


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/2] dt-bindings: soc: qcom: aoss-qmp: add compatible for sa8775p
  2023-05-04 16:17 [PATCH 1/2] dt-bindings: soc: qcom: aoss-qmp: add compatible for sa8775p Bartosz Golaszewski
  2023-05-04 16:17 ` [PATCH 2/2] arm64: dts: qcom: sa8775p: enable AOSS Bartosz Golaszewski
@ 2023-05-04 16:41 ` Krzysztof Kozlowski
  2023-05-15  3:32 ` (subset) " Bjorn Andersson
  2 siblings, 0 replies; 5+ messages in thread
From: Krzysztof Kozlowski @ 2023-05-04 16:41 UTC (permalink / raw)
  To: Bartosz Golaszewski, Andy Gross, Bjorn Andersson, Konrad Dybcio,
	Rob Herring, Krzysztof Kozlowski
  Cc: linux-arm-msm, devicetree, linux-kernel, Bartosz Golaszewski

On 04/05/2023 18:17, Bartosz Golaszewski wrote:
> From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
> 
> Document the AOSS QMP compatible for SA8775P.
> 
> Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
> ---

Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Best regards,
Krzysztof


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 2/2] arm64: dts: qcom: sa8775p: enable AOSS
  2023-05-04 16:17 ` [PATCH 2/2] arm64: dts: qcom: sa8775p: enable AOSS Bartosz Golaszewski
@ 2023-05-04 17:12   ` Konrad Dybcio
  0 siblings, 0 replies; 5+ messages in thread
From: Konrad Dybcio @ 2023-05-04 17:12 UTC (permalink / raw)
  To: Bartosz Golaszewski, Andy Gross, Bjorn Andersson, Rob Herring,
	Krzysztof Kozlowski
  Cc: linux-arm-msm, devicetree, linux-kernel, Bartosz Golaszewski



On 4.05.2023 18:17, Bartosz Golaszewski wrote:
> From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
> 
> Enable the always-on subsystem controller on SA8775P platforms for use
> by upcoming support for other peripherals.
> 
> Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
> ---
Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org>

Konrad
>  arch/arm64/boot/dts/qcom/sa8775p.dtsi | 11 +++++++++++
>  1 file changed, 11 insertions(+)
> 
> diff --git a/arch/arm64/boot/dts/qcom/sa8775p.dtsi b/arch/arm64/boot/dts/qcom/sa8775p.dtsi
> index 0737ba38fefe..c5e2e3256bc4 100644
> --- a/arch/arm64/boot/dts/qcom/sa8775p.dtsi
> +++ b/arch/arm64/boot/dts/qcom/sa8775p.dtsi
> @@ -9,6 +9,7 @@
>  #include <dt-bindings/clock/qcom,sa8775p-gcc.h>
>  #include <dt-bindings/clock/qcom,sa8775p-gpucc.h>
>  #include <dt-bindings/interconnect/qcom,sa8775p-rpmh.h>
> +#include <dt-bindings/mailbox/qcom-ipcc.h>
>  #include <dt-bindings/power/qcom-rpmpd.h>
>  #include <dt-bindings/soc/qcom,rpmh-rsc.h>
>  
> @@ -752,6 +753,16 @@ pdc: interrupt-controller@b220000 {
>  			interrupt-controller;
>  		};
>  
> +		aoss_qmp: power-management@c300000 {
> +			compatible = "qcom,sa8775p-aoss-qmp", "qcom,aoss-qmp";
> +			reg = <0x0 0x0c300000 0x0 0x400>;
> +			interrupts-extended = <&ipcc IPCC_CLIENT_AOP
> +					       IPCC_MPROC_SIGNAL_GLINK_QMP
> +					       IRQ_TYPE_EDGE_RISING>;
> +			mboxes = <&ipcc IPCC_CLIENT_AOP IPCC_MPROC_SIGNAL_GLINK_QMP>;
> +			#clock-cells = <0>;
> +		};
> +
>  		spmi_bus: spmi@c440000 {
>  			compatible = "qcom,spmi-pmic-arb";
>  			reg = <0x0 0x0c440000 0x0 0x1100>,

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: (subset) [PATCH 1/2] dt-bindings: soc: qcom: aoss-qmp: add compatible for sa8775p
  2023-05-04 16:17 [PATCH 1/2] dt-bindings: soc: qcom: aoss-qmp: add compatible for sa8775p Bartosz Golaszewski
  2023-05-04 16:17 ` [PATCH 2/2] arm64: dts: qcom: sa8775p: enable AOSS Bartosz Golaszewski
  2023-05-04 16:41 ` [PATCH 1/2] dt-bindings: soc: qcom: aoss-qmp: add compatible for sa8775p Krzysztof Kozlowski
@ 2023-05-15  3:32 ` Bjorn Andersson
  2 siblings, 0 replies; 5+ messages in thread
From: Bjorn Andersson @ 2023-05-15  3:32 UTC (permalink / raw)
  To: Bartosz Golaszewski, Andy Gross, Krzysztof Kozlowski,
	Konrad Dybcio, Rob Herring
  Cc: linux-kernel, Bartosz Golaszewski, devicetree, linux-arm-msm

On Thu, 4 May 2023 18:17:54 +0200, Bartosz Golaszewski wrote:
> From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
> 
> Document the AOSS QMP compatible for SA8775P.
> 
> 

Applied, thanks!

[1/2] dt-bindings: soc: qcom: aoss-qmp: add compatible for sa8775p
      commit: 0dc608855195c8f79e499e2a608b26e56e259810

Best regards,
-- 
Bjorn Andersson <andersson@kernel.org>

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-05-15  3:31 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-04 16:17 [PATCH 1/2] dt-bindings: soc: qcom: aoss-qmp: add compatible for sa8775p Bartosz Golaszewski
2023-05-04 16:17 ` [PATCH 2/2] arm64: dts: qcom: sa8775p: enable AOSS Bartosz Golaszewski
2023-05-04 17:12   ` Konrad Dybcio
2023-05-04 16:41 ` [PATCH 1/2] dt-bindings: soc: qcom: aoss-qmp: add compatible for sa8775p Krzysztof Kozlowski
2023-05-15  3:32 ` (subset) " Bjorn Andersson

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).