linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] arm64: dts: clearfog-gt-8k: fix SGMII PHY reset signal
@ 2019-02-17 18:21 Baruch Siach
  2019-02-17 18:26 ` Andrew Lunn
  2019-02-19 15:13 ` Gregory CLEMENT
  0 siblings, 2 replies; 3+ messages in thread
From: Baruch Siach @ 2019-02-17 18:21 UTC (permalink / raw)
  To: Jason Cooper, Andrew Lunn, Gregory Clement, Sebastian Hesselbarth
  Cc: Baruch Siach, Denis Odintsov, linux-arm-kernel

The PHY reset signal goes to mpp43 on CP0.

Reported-by: Denis Odintsov <oversun@me.com>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 arch/arm64/boot/dts/marvell/armada-8040-clearfog-gt-8k.dts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/marvell/armada-8040-clearfog-gt-8k.dts b/arch/arm64/boot/dts/marvell/armada-8040-clearfog-gt-8k.dts
index 5b4a9609e31f..2468762283a5 100644
--- a/arch/arm64/boot/dts/marvell/armada-8040-clearfog-gt-8k.dts
+++ b/arch/arm64/boot/dts/marvell/armada-8040-clearfog-gt-8k.dts
@@ -351,7 +351,7 @@
 		reg = <0>;
 		pinctrl-names = "default";
 		pinctrl-0 = <&cp0_copper_eth_phy_reset>;
-		reset-gpios = <&cp1_gpio1 11 GPIO_ACTIVE_LOW>;
+		reset-gpios = <&cp0_gpio2 11 GPIO_ACTIVE_LOW>;
 		reset-assert-us = <10000>;
 	};
 
-- 
2.20.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH] arm64: dts: clearfog-gt-8k: fix SGMII PHY reset signal
  2019-02-17 18:21 [PATCH] arm64: dts: clearfog-gt-8k: fix SGMII PHY reset signal Baruch Siach
@ 2019-02-17 18:26 ` Andrew Lunn
  2019-02-19 15:13 ` Gregory CLEMENT
  1 sibling, 0 replies; 3+ messages in thread
From: Andrew Lunn @ 2019-02-17 18:26 UTC (permalink / raw)
  To: Baruch Siach
  Cc: Gregory Clement, Denis Odintsov, Jason Cooper, linux-arm-kernel,
	Sebastian Hesselbarth

On Sun, Feb 17, 2019 at 08:21:40PM +0200, Baruch Siach wrote:
> The PHY reset signal goes to mpp43 on CP0.
> 
> Reported-by: Denis Odintsov <oversun@me.com>
> Signed-off-by: Baruch Siach <baruch@tkos.co.il>

Fixes: babc5544c293 ("arm64: dts: clearfog-gt-8k: 1G eth PHY reset signal")

       Andrew

_______________________________________________
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] 3+ messages in thread

* Re: [PATCH] arm64: dts: clearfog-gt-8k: fix SGMII PHY reset signal
  2019-02-17 18:21 [PATCH] arm64: dts: clearfog-gt-8k: fix SGMII PHY reset signal Baruch Siach
  2019-02-17 18:26 ` Andrew Lunn
@ 2019-02-19 15:13 ` Gregory CLEMENT
  1 sibling, 0 replies; 3+ messages in thread
From: Gregory CLEMENT @ 2019-02-19 15:13 UTC (permalink / raw)
  To: Baruch Siach, Jason Cooper, Andrew Lunn, Sebastian Hesselbarth
  Cc: Baruch Siach, Denis Odintsov, linux-arm-kernel

Hi Baruch,
 
 On dim., févr. 17 2019, Baruch Siach <baruch@tkos.co.il> wrote:

> The PHY reset signal goes to mpp43 on CP0.
>


Applied on mvebu/fixes with the Fixes tag pointed by Andrew.

Thanks,

Gregory


> Reported-by: Denis Odintsov <oversun@me.com>
> Signed-off-by: Baruch Siach <baruch@tkos.co.il>
> ---
>  arch/arm64/boot/dts/marvell/armada-8040-clearfog-gt-8k.dts | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/arm64/boot/dts/marvell/armada-8040-clearfog-gt-8k.dts b/arch/arm64/boot/dts/marvell/armada-8040-clearfog-gt-8k.dts
> index 5b4a9609e31f..2468762283a5 100644
> --- a/arch/arm64/boot/dts/marvell/armada-8040-clearfog-gt-8k.dts
> +++ b/arch/arm64/boot/dts/marvell/armada-8040-clearfog-gt-8k.dts
> @@ -351,7 +351,7 @@
>  		reg = <0>;
>  		pinctrl-names = "default";
>  		pinctrl-0 = <&cp0_copper_eth_phy_reset>;
> -		reset-gpios = <&cp1_gpio1 11 GPIO_ACTIVE_LOW>;
> +		reset-gpios = <&cp0_gpio2 11 GPIO_ACTIVE_LOW>;
>  		reset-assert-us = <10000>;
>  	};
>  
> -- 
> 2.20.1
>

-- 
Gregory Clement, Bootlin
Embedded Linux and Kernel engineering
http://bootlin.com

_______________________________________________
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] 3+ messages in thread

end of thread, other threads:[~2019-02-19 15:13 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-17 18:21 [PATCH] arm64: dts: clearfog-gt-8k: fix SGMII PHY reset signal Baruch Siach
2019-02-17 18:26 ` Andrew Lunn
2019-02-19 15:13 ` Gregory CLEMENT

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