public inbox for devicetree@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] arm64: dts: ti: k3-am62-main: Add bootph-all property in phy_gmii_sel node
@ 2024-04-25  9:54 Chintan Vankar
  2024-04-25 11:55 ` Nishanth Menon
  0 siblings, 1 reply; 3+ messages in thread
From: Chintan Vankar @ 2024-04-25  9:54 UTC (permalink / raw)
  To: Conor Dooley, Krzysztof Kozlowski, Rob Herring, Tero Kristo,
	Vignesh Raghavendra, Nishanth Menon, s-vadapalli
  Cc: linux-kernel, devicetree, linux-arm-kernel, Chintan Vankar

Add missing bootph-all property for CPSW MAC's PHY node
phy_gmii_sel.

Signed-off-by: Chintan Vankar <c-vankar@ti.com>
---

This patch is based on linux-next tagged next-20240424.

 arch/arm64/boot/dts/ti/k3-am62-main.dtsi | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm64/boot/dts/ti/k3-am62-main.dtsi b/arch/arm64/boot/dts/ti/k3-am62-main.dtsi
index e9cffca073ef..7a6f7cdc4cbe 100644
--- a/arch/arm64/boot/dts/ti/k3-am62-main.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-am62-main.dtsi
@@ -52,6 +52,7 @@ phy_gmii_sel: phy@4044 {
 			compatible = "ti,am654-phy-gmii-sel";
 			reg = <0x4044 0x8>;
 			#phy-cells = <1>;
+			bootph-all;
 		};
 
 		epwm_tbclk: clock-controller@4130 {
-- 
2.34.1


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

* Re: [PATCH] arm64: dts: ti: k3-am62-main: Add bootph-all property in phy_gmii_sel node
  2024-04-25  9:54 [PATCH] arm64: dts: ti: k3-am62-main: Add bootph-all property in phy_gmii_sel node Chintan Vankar
@ 2024-04-25 11:55 ` Nishanth Menon
  2024-04-25 12:30   ` Chintan Vankar
  0 siblings, 1 reply; 3+ messages in thread
From: Nishanth Menon @ 2024-04-25 11:55 UTC (permalink / raw)
  To: Chintan Vankar
  Cc: Conor Dooley, Krzysztof Kozlowski, Rob Herring, Tero Kristo,
	Vignesh Raghavendra, s-vadapalli, linux-kernel, devicetree,
	linux-arm-kernel

On 15:24-20240425, Chintan Vankar wrote:
> Add missing bootph-all property for CPSW MAC's PHY node
> phy_gmii_sel.
> 
> Signed-off-by: Chintan Vankar <c-vankar@ti.com>
> ---
> 
> This patch is based on linux-next tagged next-20240424.
> 
>  arch/arm64/boot/dts/ti/k3-am62-main.dtsi | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/arch/arm64/boot/dts/ti/k3-am62-main.dtsi b/arch/arm64/boot/dts/ti/k3-am62-main.dtsi
> index e9cffca073ef..7a6f7cdc4cbe 100644
> --- a/arch/arm64/boot/dts/ti/k3-am62-main.dtsi
> +++ b/arch/arm64/boot/dts/ti/k3-am62-main.dtsi
> @@ -52,6 +52,7 @@ phy_gmii_sel: phy@4044 {
>  			compatible = "ti,am654-phy-gmii-sel";
>  			reg = <0x4044 0x8>;
>  			#phy-cells = <1>;
> +			bootph-all;

Do not do this at SoC level for peripherals that may or maynot be used
at various boards.

>  		};
>  
>  		epwm_tbclk: clock-controller@4130 {
> -- 
> 2.34.1
> 

-- 
Regards,
Nishanth Menon
Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3  1A34 DDB5 849D 1736 249D

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

* Re: [PATCH] arm64: dts: ti: k3-am62-main: Add bootph-all property in phy_gmii_sel node
  2024-04-25 11:55 ` Nishanth Menon
@ 2024-04-25 12:30   ` Chintan Vankar
  0 siblings, 0 replies; 3+ messages in thread
From: Chintan Vankar @ 2024-04-25 12:30 UTC (permalink / raw)
  To: Nishanth Menon
  Cc: Conor Dooley, Krzysztof Kozlowski, Rob Herring, Tero Kristo,
	Vignesh Raghavendra, s-vadapalli, linux-kernel, devicetree,
	linux-arm-kernel



On 25/04/24 17:25, Nishanth Menon wrote:
> On 15:24-20240425, Chintan Vankar wrote:
>> Add missing bootph-all property for CPSW MAC's PHY node
>> phy_gmii_sel.
>>
>> Signed-off-by: Chintan Vankar <c-vankar@ti.com>
>> ---
>>
>> This patch is based on linux-next tagged next-20240424.
>>
>>   arch/arm64/boot/dts/ti/k3-am62-main.dtsi | 1 +
>>   1 file changed, 1 insertion(+)
>>
>> diff --git a/arch/arm64/boot/dts/ti/k3-am62-main.dtsi b/arch/arm64/boot/dts/ti/k3-am62-main.dtsi
>> index e9cffca073ef..7a6f7cdc4cbe 100644
>> --- a/arch/arm64/boot/dts/ti/k3-am62-main.dtsi
>> +++ b/arch/arm64/boot/dts/ti/k3-am62-main.dtsi
>> @@ -52,6 +52,7 @@ phy_gmii_sel: phy@4044 {
>>   			compatible = "ti,am654-phy-gmii-sel";
>>   			reg = <0x4044 0x8>;
>>   			#phy-cells = <1>;
>> +			bootph-all;
> 
> Do not do this at SoC level for peripherals that may or maynot be used
> at various boards.
> 

Okay. I will move it to "k3-am625-sk.dts".

>>   		};
>>   
>>   		epwm_tbclk: clock-controller@4130 {
>> -- 
>> 2.34.1
>>
> 

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

end of thread, other threads:[~2024-04-25 12:30 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-25  9:54 [PATCH] arm64: dts: ti: k3-am62-main: Add bootph-all property in phy_gmii_sel node Chintan Vankar
2024-04-25 11:55 ` Nishanth Menon
2024-04-25 12:30   ` Chintan Vankar

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