From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Lunn Subject: Re: [PATCH net 1/3] lan78xx: PHY DSP registers initialization to address EEE link drop issues with long cables Date: Fri, 6 Apr 2018 16:43:42 +0200 Message-ID: <20180406144342.GN17495@lunn.ch> References: <20180406061204.18257-1-raghuramchary.jallipalli@microchip.com> <20180406061204.18257-2-raghuramchary.jallipalli@microchip.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: davem@davemloft.net, netdev@vger.kernel.org, unglinuxdriver@microchip.com, woojung.huh@microchip.com To: Raghuram Chary J Return-path: Received: from vps0.lunn.ch ([185.16.172.187]:52420 "EHLO vps0.lunn.ch" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755807AbeDFOno (ORCPT ); Fri, 6 Apr 2018 10:43:44 -0400 Content-Disposition: inline In-Reply-To: <20180406061204.18257-2-raghuramchary.jallipalli@microchip.com> Sender: netdev-owner@vger.kernel.org List-ID: On Fri, Apr 06, 2018 at 11:42:02AM +0530, Raghuram Chary J wrote: > The patch is to configure DSP registers of PHY device > to handle Gbe-EEE failures with >40m cable length. > > Fixes: 55d7de9de6c3 ("Microchip's LAN7800 family USB 2/3 to 10/100/1000 Ethernet device driver") > Signed-off-by: Raghuram Chary J > --- > drivers/net/phy/microchip.c | 123 ++++++++++++++++++++++++++++++++++++++++++- > include/linux/microchipphy.h | 8 +++ > 2 files changed, 130 insertions(+), 1 deletion(-) > > diff --git a/drivers/net/phy/microchip.c b/drivers/net/phy/microchip.c > index 0f293ef28935..174ae9808722 100644 > --- a/drivers/net/phy/microchip.c > +++ b/drivers/net/phy/microchip.c > @@ -20,6 +20,7 @@ > #include > #include > #include > +#include > > #define DRIVER_AUTHOR "WOOJUNG HUH " > #define DRIVER_DESC "Microchip LAN88XX PHY driver" > @@ -66,6 +67,107 @@ static int lan88xx_suspend(struct phy_device *phydev) > return 0; > } > > +static void lan88xx_TR_reg_set(struct phy_device *phydev, u16 regaddr, > + u32 data) > +{ > + int val; > + u16 buf; > + > + /* Get access to token ring page */ > + phy_write(phydev, LAN88XX_EXT_PAGE_ACCESS, > + LAN88XX_EXT_PAGE_ACCESS_TR); Hi Raghuram You might want to look at phy_read_paged(), phy_write_paged(), etc. There can be race conditions with paged access. Andrew