All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 net] net: phy: marvell: Limit errata to 88m1101
@ 2017-05-23 15:49 Andrew Lunn
  2017-05-23 18:55 ` Florian Fainelli
  2017-05-24 19:49 ` David Miller
  0 siblings, 2 replies; 3+ messages in thread
From: Andrew Lunn @ 2017-05-23 15:49 UTC (permalink / raw)
  To: David Miller; +Cc: netdev, Andrew Lunn

The 88m1101 has an errata when configuring autoneg. However, it was
being applied to many other Marvell PHYs as well. Limit its scope to
just the 88m1101.

Fixes: 76884679c644 ("phylib: Add support for Marvell 88e1111S and 88e1145")
Reported-by: Daniel Walker <danielwa@cisco.com>
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Acked-by: Harini Katakam <harinik@xilinx.com>
---

v3: Rebase onto net.

drivers/net/phy/marvell.c | 66 ++++++++++++++++++++++++++---------------------
 1 file changed, 37 insertions(+), 29 deletions(-)

diff --git a/drivers/net/phy/marvell.c b/drivers/net/phy/marvell.c
index 272b051a0199..9097e42bec2e 100644
--- a/drivers/net/phy/marvell.c
+++ b/drivers/net/phy/marvell.c
@@ -255,34 +255,6 @@ static int marvell_config_aneg(struct phy_device *phydev)
 {
 	int err;
 
-	/* The Marvell PHY has an errata which requires
-	 * that certain registers get written in order
-	 * to restart autonegotiation */
-	err = phy_write(phydev, MII_BMCR, BMCR_RESET);
-
-	if (err < 0)
-		return err;
-
-	err = phy_write(phydev, 0x1d, 0x1f);
-	if (err < 0)
-		return err;
-
-	err = phy_write(phydev, 0x1e, 0x200c);
-	if (err < 0)
-		return err;
-
-	err = phy_write(phydev, 0x1d, 0x5);
-	if (err < 0)
-		return err;
-
-	err = phy_write(phydev, 0x1e, 0);
-	if (err < 0)
-		return err;
-
-	err = phy_write(phydev, 0x1e, 0x100);
-	if (err < 0)
-		return err;
-
 	err = marvell_set_polarity(phydev, phydev->mdix_ctrl);
 	if (err < 0)
 		return err;
@@ -316,6 +288,42 @@ static int marvell_config_aneg(struct phy_device *phydev)
 	return 0;
 }
 
+static int m88e1101_config_aneg(struct phy_device *phydev)
+{
+	int err;
+
+	/* This Marvell PHY has an errata which requires
+	 * that certain registers get written in order
+	 * to restart autonegotiation
+	 */
+	err = phy_write(phydev, MII_BMCR, BMCR_RESET);
+
+	if (err < 0)
+		return err;
+
+	err = phy_write(phydev, 0x1d, 0x1f);
+	if (err < 0)
+		return err;
+
+	err = phy_write(phydev, 0x1e, 0x200c);
+	if (err < 0)
+		return err;
+
+	err = phy_write(phydev, 0x1d, 0x5);
+	if (err < 0)
+		return err;
+
+	err = phy_write(phydev, 0x1e, 0);
+	if (err < 0)
+		return err;
+
+	err = phy_write(phydev, 0x1e, 0x100);
+	if (err < 0)
+		return err;
+
+	return marvell_config_aneg(phydev);
+}
+
 static int m88e1111_config_aneg(struct phy_device *phydev)
 {
 	int err;
@@ -1892,7 +1900,7 @@ static struct phy_driver marvell_drivers[] = {
 		.flags = PHY_HAS_INTERRUPT,
 		.probe = marvell_probe,
 		.config_init = &marvell_config_init,
-		.config_aneg = &marvell_config_aneg,
+		.config_aneg = &m88e1101_config_aneg,
 		.read_status = &genphy_read_status,
 		.ack_interrupt = &marvell_ack_interrupt,
 		.config_intr = &marvell_config_intr,
-- 
2.11.0

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

* Re: [PATCH v3 net] net: phy: marvell: Limit errata to 88m1101
  2017-05-23 15:49 [PATCH v3 net] net: phy: marvell: Limit errata to 88m1101 Andrew Lunn
@ 2017-05-23 18:55 ` Florian Fainelli
  2017-05-24 19:49 ` David Miller
  1 sibling, 0 replies; 3+ messages in thread
From: Florian Fainelli @ 2017-05-23 18:55 UTC (permalink / raw)
  To: Andrew Lunn, David Miller; +Cc: netdev

On 05/23/2017 08:49 AM, Andrew Lunn wrote:
> The 88m1101 has an errata when configuring autoneg. However, it was
> being applied to many other Marvell PHYs as well. Limit its scope to
> just the 88m1101.
> 
> Fixes: 76884679c644 ("phylib: Add support for Marvell 88e1111S and 88e1145")
> Reported-by: Daniel Walker <danielwa@cisco.com>
> Signed-off-by: Andrew Lunn <andrew@lunn.ch>
> Acked-by: Harini Katakam <harinik@xilinx.com>

Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>

it would be great to be put proper defines (at least for the registers)
for what this work around accomplishes, anyone with the datasheet?

> ---
> 
> v3: Rebase onto net.
> 
> drivers/net/phy/marvell.c | 66 ++++++++++++++++++++++++++---------------------
>  1 file changed, 37 insertions(+), 29 deletions(-)
> 
> diff --git a/drivers/net/phy/marvell.c b/drivers/net/phy/marvell.c
> index 272b051a0199..9097e42bec2e 100644
> --- a/drivers/net/phy/marvell.c
> +++ b/drivers/net/phy/marvell.c
> @@ -255,34 +255,6 @@ static int marvell_config_aneg(struct phy_device *phydev)
>  {
>  	int err;
>  
> -	/* The Marvell PHY has an errata which requires
> -	 * that certain registers get written in order
> -	 * to restart autonegotiation */
> -	err = phy_write(phydev, MII_BMCR, BMCR_RESET);
> -
> -	if (err < 0)
> -		return err;
> -
> -	err = phy_write(phydev, 0x1d, 0x1f);
> -	if (err < 0)
> -		return err;
> -
> -	err = phy_write(phydev, 0x1e, 0x200c);
> -	if (err < 0)
> -		return err;
> -
> -	err = phy_write(phydev, 0x1d, 0x5);
> -	if (err < 0)
> -		return err;
> -
> -	err = phy_write(phydev, 0x1e, 0);
> -	if (err < 0)
> -		return err;
> -
> -	err = phy_write(phydev, 0x1e, 0x100);
> -	if (err < 0)
> -		return err;
> -
>  	err = marvell_set_polarity(phydev, phydev->mdix_ctrl);
>  	if (err < 0)
>  		return err;
> @@ -316,6 +288,42 @@ static int marvell_config_aneg(struct phy_device *phydev)
>  	return 0;
>  }
>  
> +static int m88e1101_config_aneg(struct phy_device *phydev)
> +{
> +	int err;
> +
> +	/* This Marvell PHY has an errata which requires
> +	 * that certain registers get written in order
> +	 * to restart autonegotiation
> +	 */
> +	err = phy_write(phydev, MII_BMCR, BMCR_RESET);
> +
> +	if (err < 0)
> +		return err;
> +
> +	err = phy_write(phydev, 0x1d, 0x1f);
> +	if (err < 0)
> +		return err;
> +
> +	err = phy_write(phydev, 0x1e, 0x200c);
> +	if (err < 0)
> +		return err;
> +
> +	err = phy_write(phydev, 0x1d, 0x5);
> +	if (err < 0)
> +		return err;
> +
> +	err = phy_write(phydev, 0x1e, 0);
> +	if (err < 0)
> +		return err;
> +
> +	err = phy_write(phydev, 0x1e, 0x100);
> +	if (err < 0)
> +		return err;
> +
> +	return marvell_config_aneg(phydev);
> +}
> +
>  static int m88e1111_config_aneg(struct phy_device *phydev)
>  {
>  	int err;
> @@ -1892,7 +1900,7 @@ static struct phy_driver marvell_drivers[] = {
>  		.flags = PHY_HAS_INTERRUPT,
>  		.probe = marvell_probe,
>  		.config_init = &marvell_config_init,
> -		.config_aneg = &marvell_config_aneg,
> +		.config_aneg = &m88e1101_config_aneg,
>  		.read_status = &genphy_read_status,
>  		.ack_interrupt = &marvell_ack_interrupt,
>  		.config_intr = &marvell_config_intr,
> 


-- 
Florian

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

* Re: [PATCH v3 net] net: phy: marvell: Limit errata to 88m1101
  2017-05-23 15:49 [PATCH v3 net] net: phy: marvell: Limit errata to 88m1101 Andrew Lunn
  2017-05-23 18:55 ` Florian Fainelli
@ 2017-05-24 19:49 ` David Miller
  1 sibling, 0 replies; 3+ messages in thread
From: David Miller @ 2017-05-24 19:49 UTC (permalink / raw)
  To: andrew; +Cc: netdev

From: Andrew Lunn <andrew@lunn.ch>
Date: Tue, 23 May 2017 17:49:13 +0200

> The 88m1101 has an errata when configuring autoneg. However, it was
> being applied to many other Marvell PHYs as well. Limit its scope to
> just the 88m1101.
> 
> Fixes: 76884679c644 ("phylib: Add support for Marvell 88e1111S and 88e1145")
> Reported-by: Daniel Walker <danielwa@cisco.com>
> Signed-off-by: Andrew Lunn <andrew@lunn.ch>
> Acked-by: Harini Katakam <harinik@xilinx.com>

Applied and queued up for -stable, thanks.

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

end of thread, other threads:[~2017-05-24 19:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-05-23 15:49 [PATCH v3 net] net: phy: marvell: Limit errata to 88m1101 Andrew Lunn
2017-05-23 18:55 ` Florian Fainelli
2017-05-24 19:49 ` David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.