public inbox for devicetree@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] ARM: dts: qcom: msm8974: Align dsi phy-names with schema
@ 2022-09-25 17:24 Luca Weiss
  2022-09-25 17:24 ` [PATCH 2/2] arm64: dts: qcom: msm8916: " Luca Weiss
                   ` (3 more replies)
  0 siblings, 4 replies; 9+ messages in thread
From: Luca Weiss @ 2022-09-25 17:24 UTC (permalink / raw)
  To: linux-arm-msm
  Cc: ~postmarketos/upstreaming, phone-devel, Luca Weiss, Andy Gross,
	Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	devicetree, linux-kernel

Use dsi instead of dsi-phy as required by the binding.

Signed-off-by: Luca Weiss <luca@z3ntu.xyz>
---
 arch/arm/boot/dts/qcom-msm8974.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/qcom-msm8974.dtsi b/arch/arm/boot/dts/qcom-msm8974.dtsi
index 620900e5ffd5..da247d799492 100644
--- a/arch/arm/boot/dts/qcom-msm8974.dtsi
+++ b/arch/arm/boot/dts/qcom-msm8974.dtsi
@@ -1571,7 +1571,7 @@ dsi0: dsi@fd922800 {
 					      "core_mmss";
 
 				phys = <&dsi0_phy>;
-				phy-names = "dsi-phy";
+				phy-names = "dsi";
 
 				status = "disabled";
 
-- 
2.37.3


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

* [PATCH 2/2] arm64: dts: qcom: msm8916: Align dsi phy-names with schema
  2022-09-25 17:24 [PATCH 1/2] ARM: dts: qcom: msm8974: Align dsi phy-names with schema Luca Weiss
@ 2022-09-25 17:24 ` Luca Weiss
  2022-09-26  8:47   ` Neil Armstrong
  2022-09-26  8:53   ` Krzysztof Kozlowski
  2022-09-26  8:47 ` [PATCH 1/2] ARM: dts: qcom: msm8974: " Neil Armstrong
                   ` (2 subsequent siblings)
  3 siblings, 2 replies; 9+ messages in thread
From: Luca Weiss @ 2022-09-25 17:24 UTC (permalink / raw)
  To: linux-arm-msm
  Cc: ~postmarketos/upstreaming, phone-devel, Luca Weiss, Andy Gross,
	Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	devicetree, linux-kernel

Use dsi instead of dsi-phy as required by the binding.

Signed-off-by: Luca Weiss <luca@z3ntu.xyz>
---
 arch/arm64/boot/dts/qcom/msm8916.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/qcom/msm8916.dtsi b/arch/arm64/boot/dts/qcom/msm8916.dtsi
index a831064700ee..48f4b4deb8b1 100644
--- a/arch/arm64/boot/dts/qcom/msm8916.dtsi
+++ b/arch/arm64/boot/dts/qcom/msm8916.dtsi
@@ -1046,7 +1046,7 @@ dsi0: dsi@1a98000 {
 					      "pixel",
 					      "core";
 				phys = <&dsi_phy0>;
-				phy-names = "dsi-phy";
+				phy-names = "dsi";
 
 				#address-cells = <1>;
 				#size-cells = <0>;
-- 
2.37.3


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

* Re: [PATCH 1/2] ARM: dts: qcom: msm8974: Align dsi phy-names with schema
  2022-09-25 17:24 [PATCH 1/2] ARM: dts: qcom: msm8974: Align dsi phy-names with schema Luca Weiss
  2022-09-25 17:24 ` [PATCH 2/2] arm64: dts: qcom: msm8916: " Luca Weiss
@ 2022-09-26  8:47 ` Neil Armstrong
  2022-09-26  8:52 ` Krzysztof Kozlowski
  2022-09-26 10:09 ` Dmitry Baryshkov
  3 siblings, 0 replies; 9+ messages in thread
From: Neil Armstrong @ 2022-09-26  8:47 UTC (permalink / raw)
  To: Luca Weiss, linux-arm-msm
  Cc: ~postmarketos/upstreaming, phone-devel, Andy Gross,
	Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	devicetree, linux-kernel

On 25/09/2022 19:24, Luca Weiss wrote:
> Use dsi instead of dsi-phy as required by the binding.
> 
> Signed-off-by: Luca Weiss <luca@z3ntu.xyz>
> ---
>   arch/arm/boot/dts/qcom-msm8974.dtsi | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/arm/boot/dts/qcom-msm8974.dtsi b/arch/arm/boot/dts/qcom-msm8974.dtsi
> index 620900e5ffd5..da247d799492 100644
> --- a/arch/arm/boot/dts/qcom-msm8974.dtsi
> +++ b/arch/arm/boot/dts/qcom-msm8974.dtsi
> @@ -1571,7 +1571,7 @@ dsi0: dsi@fd922800 {
>   					      "core_mmss";
>   
>   				phys = <&dsi0_phy>;
> -				phy-names = "dsi-phy";
> +				phy-names = "dsi";
>   
>   				status = "disabled";
>   

Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>

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

* Re: [PATCH 2/2] arm64: dts: qcom: msm8916: Align dsi phy-names with schema
  2022-09-25 17:24 ` [PATCH 2/2] arm64: dts: qcom: msm8916: " Luca Weiss
@ 2022-09-26  8:47   ` Neil Armstrong
  2022-09-26  8:53   ` Krzysztof Kozlowski
  1 sibling, 0 replies; 9+ messages in thread
From: Neil Armstrong @ 2022-09-26  8:47 UTC (permalink / raw)
  To: Luca Weiss, linux-arm-msm
  Cc: ~postmarketos/upstreaming, phone-devel, Andy Gross,
	Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	devicetree, linux-kernel

On 25/09/2022 19:24, Luca Weiss wrote:
> Use dsi instead of dsi-phy as required by the binding.
> 
> Signed-off-by: Luca Weiss <luca@z3ntu.xyz>
> ---
>   arch/arm64/boot/dts/qcom/msm8916.dtsi | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/arm64/boot/dts/qcom/msm8916.dtsi b/arch/arm64/boot/dts/qcom/msm8916.dtsi
> index a831064700ee..48f4b4deb8b1 100644
> --- a/arch/arm64/boot/dts/qcom/msm8916.dtsi
> +++ b/arch/arm64/boot/dts/qcom/msm8916.dtsi
> @@ -1046,7 +1046,7 @@ dsi0: dsi@1a98000 {
>   					      "pixel",
>   					      "core";
>   				phys = <&dsi_phy0>;
> -				phy-names = "dsi-phy";
> +				phy-names = "dsi";
>   
>   				#address-cells = <1>;
>   				#size-cells = <0>;

Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>

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

* Re: [PATCH 1/2] ARM: dts: qcom: msm8974: Align dsi phy-names with schema
  2022-09-25 17:24 [PATCH 1/2] ARM: dts: qcom: msm8974: Align dsi phy-names with schema Luca Weiss
  2022-09-25 17:24 ` [PATCH 2/2] arm64: dts: qcom: msm8916: " Luca Weiss
  2022-09-26  8:47 ` [PATCH 1/2] ARM: dts: qcom: msm8974: " Neil Armstrong
@ 2022-09-26  8:52 ` Krzysztof Kozlowski
  2022-09-26 10:09 ` Dmitry Baryshkov
  3 siblings, 0 replies; 9+ messages in thread
From: Krzysztof Kozlowski @ 2022-09-26  8:52 UTC (permalink / raw)
  To: Luca Weiss, linux-arm-msm
  Cc: ~postmarketos/upstreaming, phone-devel, Andy Gross,
	Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	devicetree, linux-kernel

On 25/09/2022 19:24, Luca Weiss wrote:
> Use dsi instead of dsi-phy as required by the binding.
> 
> Signed-off-by: Luca Weiss <luca@z3ntu.xyz>
> ---
>  arch/arm/boot/dts/qcom-msm8974.dtsi | 2 +-

Already sent:

https://lore.kernel.org/all/20220924090108.166934-3-dmitry.baryshkov@linaro.org/

Best regards,
Krzysztof


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

* Re: [PATCH 2/2] arm64: dts: qcom: msm8916: Align dsi phy-names with schema
  2022-09-25 17:24 ` [PATCH 2/2] arm64: dts: qcom: msm8916: " Luca Weiss
  2022-09-26  8:47   ` Neil Armstrong
@ 2022-09-26  8:53   ` Krzysztof Kozlowski
  2022-09-26 15:02     ` Luca Weiss
  1 sibling, 1 reply; 9+ messages in thread
From: Krzysztof Kozlowski @ 2022-09-26  8:53 UTC (permalink / raw)
  To: Luca Weiss, linux-arm-msm
  Cc: ~postmarketos/upstreaming, phone-devel, Andy Gross,
	Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	devicetree, linux-kernel

On 25/09/2022 19:24, Luca Weiss wrote:
> Use dsi instead of dsi-phy as required by the binding.
> 
> Signed-off-by: Luca Weiss <luca@z3ntu.xyz>
> ---

Already sent:

https://lore.kernel.org/all/20220924090108.166934-4-dmitry.baryshkov@linaro.org/

Best regards,
Krzysztof


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

* Re: [PATCH 1/2] ARM: dts: qcom: msm8974: Align dsi phy-names with schema
  2022-09-25 17:24 [PATCH 1/2] ARM: dts: qcom: msm8974: Align dsi phy-names with schema Luca Weiss
                   ` (2 preceding siblings ...)
  2022-09-26  8:52 ` Krzysztof Kozlowski
@ 2022-09-26 10:09 ` Dmitry Baryshkov
  3 siblings, 0 replies; 9+ messages in thread
From: Dmitry Baryshkov @ 2022-09-26 10:09 UTC (permalink / raw)
  To: Luca Weiss, linux-arm-msm
  Cc: ~postmarketos/upstreaming, phone-devel, Andy Gross,
	Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	devicetree, linux-kernel

On 25/09/2022 20:24, Luca Weiss wrote:
> Use dsi instead of dsi-phy as required by the binding.
> 
> Signed-off-by: Luca Weiss <luca@z3ntu.xyz>
> ---
>   arch/arm/boot/dts/qcom-msm8974.dtsi | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/arm/boot/dts/qcom-msm8974.dtsi b/arch/arm/boot/dts/qcom-msm8974.dtsi
> index 620900e5ffd5..da247d799492 100644
> --- a/arch/arm/boot/dts/qcom-msm8974.dtsi
> +++ b/arch/arm/boot/dts/qcom-msm8974.dtsi
> @@ -1571,7 +1571,7 @@ dsi0: dsi@fd922800 {
>   					      "core_mmss";
>   
>   				phys = <&dsi0_phy>;
> -				phy-names = "dsi-phy";
> +				phy-names = "dsi";

I'd prefer to merge [1] instead

[1] 
https://lore.kernel.org/linux-arm-msm/20220907000105.786265-1-bryan.odonoghue@linaro.org/

>   
>   				status = "disabled";
>   

-- 
With best wishes
Dmitry


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

* Re: [PATCH 2/2] arm64: dts: qcom: msm8916: Align dsi phy-names with schema
  2022-09-26  8:53   ` Krzysztof Kozlowski
@ 2022-09-26 15:02     ` Luca Weiss
  2022-09-26 15:22       ` Krzysztof Kozlowski
  0 siblings, 1 reply; 9+ messages in thread
From: Luca Weiss @ 2022-09-26 15:02 UTC (permalink / raw)
  To: linux-arm-msm, Krzysztof Kozlowski
  Cc: ~postmarketos/upstreaming, phone-devel, Andy Gross,
	Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	devicetree, linux-kernel

Hi Krzysztof,

On Montag, 26. September 2022 10:53:03 CEST Krzysztof Kozlowski wrote:
> On 25/09/2022 19:24, Luca Weiss wrote:
> > Use dsi instead of dsi-phy as required by the binding.
> > 
> > Signed-off-by: Luca Weiss <luca@z3ntu.xyz>
> > ---
> 
> Already sent:
> 
> https://lore.kernel.org/all/20220924090108.166934-4-dmitry.baryshkov@linaro.
> org/

This patch is phy-names property while the other patch is for node name, 
unless I'm missing something.

But as Dmitry pointed out, there's a patchset to completely remove the 
property which is also totally fine by me.

Regards
Luca

> 
> Best regards,
> Krzysztof





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

* Re: [PATCH 2/2] arm64: dts: qcom: msm8916: Align dsi phy-names with schema
  2022-09-26 15:02     ` Luca Weiss
@ 2022-09-26 15:22       ` Krzysztof Kozlowski
  0 siblings, 0 replies; 9+ messages in thread
From: Krzysztof Kozlowski @ 2022-09-26 15:22 UTC (permalink / raw)
  To: Luca Weiss, linux-arm-msm
  Cc: ~postmarketos/upstreaming, phone-devel, Andy Gross,
	Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	devicetree, linux-kernel

On 26/09/2022 17:02, Luca Weiss wrote:
> Hi Krzysztof,
> 
> On Montag, 26. September 2022 10:53:03 CEST Krzysztof Kozlowski wrote:
>> On 25/09/2022 19:24, Luca Weiss wrote:
>>> Use dsi instead of dsi-phy as required by the binding.
>>>
>>> Signed-off-by: Luca Weiss <luca@z3ntu.xyz>
>>> ---
>>
>> Already sent:
>>
>> https://lore.kernel.org/all/20220924090108.166934-4-dmitry.baryshkov@linaro.
>> org/
> 
> This patch is phy-names property while the other patch is for node name, 
> unless I'm missing something.

Ah, right. -ETOOMANYPHYs...

> 
> But as Dmitry pointed out, there's a patchset to completely remove the 
> property which is also totally fine by me.
Best regards,
Krzysztof


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

end of thread, other threads:[~2022-09-26 16:36 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-09-25 17:24 [PATCH 1/2] ARM: dts: qcom: msm8974: Align dsi phy-names with schema Luca Weiss
2022-09-25 17:24 ` [PATCH 2/2] arm64: dts: qcom: msm8916: " Luca Weiss
2022-09-26  8:47   ` Neil Armstrong
2022-09-26  8:53   ` Krzysztof Kozlowski
2022-09-26 15:02     ` Luca Weiss
2022-09-26 15:22       ` Krzysztof Kozlowski
2022-09-26  8:47 ` [PATCH 1/2] ARM: dts: qcom: msm8974: " Neil Armstrong
2022-09-26  8:52 ` Krzysztof Kozlowski
2022-09-26 10:09 ` Dmitry Baryshkov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox