lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20200514015420.GA1159@ns.kevlo.org>
Date:   Thu, 14 May 2020 09:54:20 +0800
From:   Kevin Lo <kevlo@...lo.org>
To:     Florian Fainelli <f.fainelli@...il.com>
Cc:     netdev@...r.kernel.org, Andrew Lunn <andrew@...n.ch>,
        "David S. Miller" <davem@...emloft.net>
Subject: Re: [PATCH net-next] net: phy: broadcom: fix
 BCM54XX_SHD_SCR3_TRDDAPD value for BCM54810

On Wed, May 13, 2020 at 06:31:29PM -0700, Florian Fainelli wrote:
> 
> 
> 
> On 5/13/2020 5:57 PM, Kevin Lo wrote:
> > Set the correct bit when checking for PHY_BRCM_DIS_TXCRXC_NOENRGY on the 
> > BCM54810 PHY.
> 
> Indeed, good catch!
> > 
> > Signed-off-by: Kevin Lo <kevlo@...lo.org>
> 
> Reviewed-by: Florian Fainelli <f.fainelli@...il.com>
> 
> Is the following commit when it started to break?
> 
> Fixes: 0ececcfc9267 ("net: phy: broadcom: Allow BCM54810 to use
> bcm54xx_adjust_rxrefclk()")

Yes.

> > ---
> > diff --git a/drivers/net/phy/broadcom.c b/drivers/net/phy/broadcom.c
> > index 97201d5cf007..45d0aefb964c 100644
> > --- a/drivers/net/phy/broadcom.c
> > +++ b/drivers/net/phy/broadcom.c
> > @@ -225,8 +225,12 @@ static void bcm54xx_adjust_rxrefclk(struct phy_device *phydev)
> >  	else
> >  		val |= BCM54XX_SHD_SCR3_DLLAPD_DIS;
> >  
> > -	if (phydev->dev_flags & PHY_BRCM_DIS_TXCRXC_NOENRGY)
> > -		val |= BCM54XX_SHD_SCR3_TRDDAPD;
> > +	if (phydev->dev_flags & PHY_BRCM_DIS_TXCRXC_NOENRGY) {
> > +		if (BRCM_PHY_MODEL(phydev) == PHY_ID_BCM54810)
> > +			val |= BCM54810_SHD_SCR3_TRDDAPD;
> > +		else
> > +			val |= BCM54XX_SHD_SCR3_TRDDAPD;
> > +	}
> >  
> >  	if (orig != val)
> >  		bcm_phy_write_shadow(phydev, BCM54XX_SHD_SCR3, val);
> > diff --git a/include/linux/brcmphy.h b/include/linux/brcmphy.h
> > index d41624db6de2..1d339a862f7b 100644
> > --- a/include/linux/brcmphy.h
> > +++ b/include/linux/brcmphy.h
> > @@ -255,6 +255,7 @@
> >  #define BCM54810_EXP_BROADREACH_LRE_MISC_CTL_EN	(1 << 0)
> >  #define BCM54810_SHD_CLK_CTL			0x3
> >  #define BCM54810_SHD_CLK_CTL_GTXCLK_EN		(1 << 9)
> > +#define BCM54810_SHD_SCR3_TRDDAPD		0x0100
> >  
> >  /* BCM54612E Registers */
> >  #define BCM54612E_EXP_SPARE0		(MII_BCM54XX_EXP_SEL_ETC + 0x34)
> > 
> 
> -- 
> Florian

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ