devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] dt-bindings: mfd: qcom,tcsr: document SDX55 TCSR
@ 2023-03-06  7:26 Krzysztof Kozlowski
  2023-03-06  7:26 ` [PATCH 2/2] ARM: dts: qcom: sdx55: add dedicated SDX55 TCSR compatible Krzysztof Kozlowski
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Krzysztof Kozlowski @ 2023-03-06  7:26 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Lee Jones,
	Rob Herring, Krzysztof Kozlowski, linux-arm-msm, devicetree,
	linux-kernel
  Cc: Krzysztof Kozlowski

Add compatible for SDX55 TCSR block.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 Documentation/devicetree/bindings/mfd/qcom,tcsr.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/mfd/qcom,tcsr.yaml b/Documentation/devicetree/bindings/mfd/qcom,tcsr.yaml
index 2eeebe920e6e..c29e1127685e 100644
--- a/Documentation/devicetree/bindings/mfd/qcom,tcsr.yaml
+++ b/Documentation/devicetree/bindings/mfd/qcom,tcsr.yaml
@@ -25,6 +25,7 @@ properties:
           - qcom,sc8280xp-tcsr
           - qcom,sdm630-tcsr
           - qcom,sdm845-tcsr
+          - qcom,sdx55-tcsr
           - qcom,sm8150-tcsr
           - qcom,tcsr-apq8064
           - qcom,tcsr-apq8084
-- 
2.34.1


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

* [PATCH 2/2] ARM: dts: qcom: sdx55: add dedicated SDX55 TCSR compatible
  2023-03-06  7:26 [PATCH 1/2] dt-bindings: mfd: qcom,tcsr: document SDX55 TCSR Krzysztof Kozlowski
@ 2023-03-06  7:26 ` Krzysztof Kozlowski
  2023-03-06 10:34   ` Konrad Dybcio
  2023-03-07 13:50 ` [PATCH 1/2] dt-bindings: mfd: qcom,tcsr: document SDX55 TCSR Rob Herring
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 6+ messages in thread
From: Krzysztof Kozlowski @ 2023-03-06  7:26 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Lee Jones,
	Rob Herring, Krzysztof Kozlowski, linux-arm-msm, devicetree,
	linux-kernel
  Cc: Krzysztof Kozlowski

syscon should not be used alone as compatible.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 arch/arm/boot/dts/qcom-sdx55.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/qcom-sdx55.dtsi b/arch/arm/boot/dts/qcom-sdx55.dtsi
index df7303c5c843..72de632b5265 100644
--- a/arch/arm/boot/dts/qcom-sdx55.dtsi
+++ b/arch/arm/boot/dts/qcom-sdx55.dtsi
@@ -385,7 +385,7 @@ tcsr_mutex: hwlock@1f40000 {
 		};
 
 		tcsr: syscon@1fcb000 {
-			compatible = "syscon";
+			compatible = "qcom,sdx55-tcsr", "syscon";
 			reg = <0x01fc0000 0x1000>;
 		};
 
-- 
2.34.1


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

* Re: [PATCH 2/2] ARM: dts: qcom: sdx55: add dedicated SDX55 TCSR compatible
  2023-03-06  7:26 ` [PATCH 2/2] ARM: dts: qcom: sdx55: add dedicated SDX55 TCSR compatible Krzysztof Kozlowski
@ 2023-03-06 10:34   ` Konrad Dybcio
  0 siblings, 0 replies; 6+ messages in thread
From: Konrad Dybcio @ 2023-03-06 10:34 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Andy Gross, Bjorn Andersson, Lee Jones,
	Rob Herring, Krzysztof Kozlowski, linux-arm-msm, devicetree,
	linux-kernel



On 6.03.2023 08:26, Krzysztof Kozlowski wrote:
> syscon should not be used alone as compatible.
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org>

Konrad
>  arch/arm/boot/dts/qcom-sdx55.dtsi | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/arm/boot/dts/qcom-sdx55.dtsi b/arch/arm/boot/dts/qcom-sdx55.dtsi
> index df7303c5c843..72de632b5265 100644
> --- a/arch/arm/boot/dts/qcom-sdx55.dtsi
> +++ b/arch/arm/boot/dts/qcom-sdx55.dtsi
> @@ -385,7 +385,7 @@ tcsr_mutex: hwlock@1f40000 {
>  		};
>  
>  		tcsr: syscon@1fcb000 {
> -			compatible = "syscon";
> +			compatible = "qcom,sdx55-tcsr", "syscon";
>  			reg = <0x01fc0000 0x1000>;
>  		};
>  

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

* Re: [PATCH 1/2] dt-bindings: mfd: qcom,tcsr: document SDX55 TCSR
  2023-03-06  7:26 [PATCH 1/2] dt-bindings: mfd: qcom,tcsr: document SDX55 TCSR Krzysztof Kozlowski
  2023-03-06  7:26 ` [PATCH 2/2] ARM: dts: qcom: sdx55: add dedicated SDX55 TCSR compatible Krzysztof Kozlowski
@ 2023-03-07 13:50 ` Rob Herring
  2023-03-15 17:55 ` Lee Jones
  2023-03-22 14:45 ` (subset) " Bjorn Andersson
  3 siblings, 0 replies; 6+ messages in thread
From: Rob Herring @ 2023-03-07 13:50 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: linux-kernel, Rob Herring, Krzysztof Kozlowski, linux-arm-msm,
	devicetree, Lee Jones, Konrad Dybcio, Andy Gross, Bjorn Andersson


On Mon, 06 Mar 2023 08:26:17 +0100, Krzysztof Kozlowski wrote:
> Add compatible for SDX55 TCSR block.
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
>  Documentation/devicetree/bindings/mfd/qcom,tcsr.yaml | 1 +
>  1 file changed, 1 insertion(+)
> 

Acked-by: Rob Herring <robh@kernel.org>


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

* Re: [PATCH 1/2] dt-bindings: mfd: qcom,tcsr: document SDX55 TCSR
  2023-03-06  7:26 [PATCH 1/2] dt-bindings: mfd: qcom,tcsr: document SDX55 TCSR Krzysztof Kozlowski
  2023-03-06  7:26 ` [PATCH 2/2] ARM: dts: qcom: sdx55: add dedicated SDX55 TCSR compatible Krzysztof Kozlowski
  2023-03-07 13:50 ` [PATCH 1/2] dt-bindings: mfd: qcom,tcsr: document SDX55 TCSR Rob Herring
@ 2023-03-15 17:55 ` Lee Jones
  2023-03-22 14:45 ` (subset) " Bjorn Andersson
  3 siblings, 0 replies; 6+ messages in thread
From: Lee Jones @ 2023-03-15 17:55 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, linux-arm-msm, devicetree, linux-kernel

On Mon, 06 Mar 2023, Krzysztof Kozlowski wrote:

> Add compatible for SDX55 TCSR block.
>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
>  Documentation/devicetree/bindings/mfd/qcom,tcsr.yaml | 1 +
>  1 file changed, 1 insertion(+)

Applied, thanks

--
Lee Jones [李琼斯]

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

* Re: (subset) [PATCH 1/2] dt-bindings: mfd: qcom,tcsr: document SDX55 TCSR
  2023-03-06  7:26 [PATCH 1/2] dt-bindings: mfd: qcom,tcsr: document SDX55 TCSR Krzysztof Kozlowski
                   ` (2 preceding siblings ...)
  2023-03-15 17:55 ` Lee Jones
@ 2023-03-22 14:45 ` Bjorn Andersson
  3 siblings, 0 replies; 6+ messages in thread
From: Bjorn Andersson @ 2023-03-22 14:45 UTC (permalink / raw)
  To: Krzysztof Kozlowski, devicetree, Lee Jones, Krzysztof Kozlowski,
	Andy Gross, linux-kernel, linux-arm-msm, Konrad Dybcio,
	Rob Herring

On Mon, 6 Mar 2023 08:26:17 +0100, Krzysztof Kozlowski wrote:
> Add compatible for SDX55 TCSR block.
> 
> 

Applied, thanks!

[2/2] ARM: dts: qcom: sdx55: add dedicated SDX55 TCSR compatible
      commit: 424a4e5273bfc16b6974faff50f0d24c1df0c76e

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

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

end of thread, other threads:[~2023-03-22 14:44 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-06  7:26 [PATCH 1/2] dt-bindings: mfd: qcom,tcsr: document SDX55 TCSR Krzysztof Kozlowski
2023-03-06  7:26 ` [PATCH 2/2] ARM: dts: qcom: sdx55: add dedicated SDX55 TCSR compatible Krzysztof Kozlowski
2023-03-06 10:34   ` Konrad Dybcio
2023-03-07 13:50 ` [PATCH 1/2] dt-bindings: mfd: qcom,tcsr: document SDX55 TCSR Rob Herring
2023-03-15 17:55 ` Lee Jones
2023-03-22 14:45 ` (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).