public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] net: phy: marvell: Do not reset 88e1310 after autoneg
@ 2016-06-03 13:16 Nathan Rossi
  2016-06-03 13:38 ` Michal Simek
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Nathan Rossi @ 2016-06-03 13:16 UTC (permalink / raw)
  To: u-boot

Commit a058052c "net: phy: do not read configuration register on reset",
changes the behaviour of the phy_reset function such that the state of
the BMCR register is not preserved during reset.

Change the config function for the m88e1310 so that it does not do a
reset after configuring auto-negotiation.

Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
Cc: Joe Hershberger <joe.hershberger@ni.com>
Cc: Michal Simek <michal.simek@xilinx.com>
Cc: Stefan Roese <sr@denx.de>
---
 drivers/net/phy/marvell.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/drivers/net/phy/marvell.c b/drivers/net/phy/marvell.c
index d2e68d4..58d287b 100644
--- a/drivers/net/phy/marvell.c
+++ b/drivers/net/phy/marvell.c
@@ -476,10 +476,7 @@ static int m88e1310_config(struct phy_device *phydev)
 	/* Ensure to return to page 0 */
 	phy_write(phydev, MDIO_DEVAD_NONE, MIIM_88E1310_PHY_PAGE, 0x0000);
 
-	genphy_config_aneg(phydev);
-	phy_reset(phydev);
-
-	return 0;
+	return genphy_config_aneg(phydev);
 }
 
 static struct phy_driver M88E1011S_driver = {
-- 
2.8.1

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

* [U-Boot] [PATCH] net: phy: marvell: Do not reset 88e1310 after autoneg
  2016-06-03 13:16 [U-Boot] [PATCH] net: phy: marvell: Do not reset 88e1310 after autoneg Nathan Rossi
@ 2016-06-03 13:38 ` Michal Simek
  2016-06-03 13:53 ` Joe Hershberger
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Michal Simek @ 2016-06-03 13:38 UTC (permalink / raw)
  To: u-boot

On 3.6.2016 15:16, Nathan Rossi wrote:
> Commit a058052c "net: phy: do not read configuration register on reset",
> changes the behaviour of the phy_reset function such that the state of
> the BMCR register is not preserved during reset.
> 
> Change the config function for the m88e1310 so that it does not do a
> reset after configuring auto-negotiation.
> 
> Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
> Cc: Joe Hershberger <joe.hershberger@ni.com>
> Cc: Michal Simek <michal.simek@xilinx.com>
> Cc: Stefan Roese <sr@denx.de>
> ---
>  drivers/net/phy/marvell.c | 5 +----
>  1 file changed, 1 insertion(+), 4 deletions(-)
> 
> diff --git a/drivers/net/phy/marvell.c b/drivers/net/phy/marvell.c
> index d2e68d4..58d287b 100644
> --- a/drivers/net/phy/marvell.c
> +++ b/drivers/net/phy/marvell.c
> @@ -476,10 +476,7 @@ static int m88e1310_config(struct phy_device *phydev)
>  	/* Ensure to return to page 0 */
>  	phy_write(phydev, MDIO_DEVAD_NONE, MIIM_88E1310_PHY_PAGE, 0x0000);
>  
> -	genphy_config_aneg(phydev);
> -	phy_reset(phydev);
> -
> -	return 0;
> +	return genphy_config_aneg(phydev);
>  }
>  
>  static struct phy_driver M88E1011S_driver = {
> 

Acked-by: Michal Simek <michal.simek@xilinx.com>

Thanks,
Michal

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

* [U-Boot] [PATCH] net: phy: marvell: Do not reset 88e1310 after autoneg
  2016-06-03 13:16 [U-Boot] [PATCH] net: phy: marvell: Do not reset 88e1310 after autoneg Nathan Rossi
  2016-06-03 13:38 ` Michal Simek
@ 2016-06-03 13:53 ` Joe Hershberger
  2016-06-03 14:16 ` Stefan Roese
  2016-06-21 22:10 ` [U-Boot] " Joe Hershberger
  3 siblings, 0 replies; 5+ messages in thread
From: Joe Hershberger @ 2016-06-03 13:53 UTC (permalink / raw)
  To: u-boot

On Fri, Jun 3, 2016 at 8:16 AM, Nathan Rossi <nathan@nathanrossi.com> wrote:
> Commit a058052c "net: phy: do not read configuration register on reset",
> changes the behaviour of the phy_reset function such that the state of
> the BMCR register is not preserved during reset.
>
> Change the config function for the m88e1310 so that it does not do a
> reset after configuring auto-negotiation.
>
> Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
> Cc: Joe Hershberger <joe.hershberger@ni.com>
> Cc: Michal Simek <michal.simek@xilinx.com>
> Cc: Stefan Roese <sr@denx.de>

Acked-by: Joe Hershberger <joe.hershberger@ni.com>

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

* [U-Boot] [PATCH] net: phy: marvell: Do not reset 88e1310 after autoneg
  2016-06-03 13:16 [U-Boot] [PATCH] net: phy: marvell: Do not reset 88e1310 after autoneg Nathan Rossi
  2016-06-03 13:38 ` Michal Simek
  2016-06-03 13:53 ` Joe Hershberger
@ 2016-06-03 14:16 ` Stefan Roese
  2016-06-21 22:10 ` [U-Boot] " Joe Hershberger
  3 siblings, 0 replies; 5+ messages in thread
From: Stefan Roese @ 2016-06-03 14:16 UTC (permalink / raw)
  To: u-boot

On 03.06.2016 15:16, Nathan Rossi wrote:
> Commit a058052c "net: phy: do not read configuration register on reset",
> changes the behaviour of the phy_reset function such that the state of
> the BMCR register is not preserved during reset.
>
> Change the config function for the m88e1310 so that it does not do a
> reset after configuring auto-negotiation.
>
> Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
> Cc: Joe Hershberger <joe.hershberger@ni.com>
> Cc: Michal Simek <michal.simek@xilinx.com>
> Cc: Stefan Roese <sr@denx.de>

Reviewed-by: Stefan Roese <sr@denx.de>

Thanks,
Stefan

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

* [U-Boot] net: phy: marvell: Do not reset 88e1310 after autoneg
  2016-06-03 13:16 [U-Boot] [PATCH] net: phy: marvell: Do not reset 88e1310 after autoneg Nathan Rossi
                   ` (2 preceding siblings ...)
  2016-06-03 14:16 ` Stefan Roese
@ 2016-06-21 22:10 ` Joe Hershberger
  3 siblings, 0 replies; 5+ messages in thread
From: Joe Hershberger @ 2016-06-21 22:10 UTC (permalink / raw)
  To: u-boot

Hi Nathan,

https://patchwork.ozlabs.org/patch/629829/ was applied to u-boot-net.git.

Thanks!
-Joe

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

end of thread, other threads:[~2016-06-21 22:10 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-03 13:16 [U-Boot] [PATCH] net: phy: marvell: Do not reset 88e1310 after autoneg Nathan Rossi
2016-06-03 13:38 ` Michal Simek
2016-06-03 13:53 ` Joe Hershberger
2016-06-03 14:16 ` Stefan Roese
2016-06-21 22:10 ` [U-Boot] " Joe Hershberger

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