From mboxrd@z Thu Jan 1 00:00:00 1970 From: Shawn Guo Subject: Re: [PATCH][NET] several cleanups and bugfixes for fec.c: preserve MII/RMII setting in fec_stop() Date: Wed, 7 Dec 2011 18:58:17 +0800 Message-ID: <20111207105816.GH5550@S2100-06.ap.freescale.net> References: <20111207094146.GG5550@S2100-06.ap.freescale.net> <20191.17172.493079.722098@ipc1.ka-ro> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: QUOTED-PRINTABLE Cc: , Shawn Guo , , To: Lothar =?iso-8859-1?Q?Wa=DFmann?= Return-path: Content-Disposition: inline In-Reply-To: <20191.17172.493079.722098@ipc1.ka-ro> Sender: linux-kernel-owner@vger.kernel.org List-Id: netdev.vger.kernel.org On Wed, Dec 07, 2011 at 11:42:28AM +0100, Lothar Wa=DFmann wrote: > Hi, >=20 > Shawn Guo writes: > > On Tue, Dec 06, 2011 at 11:27:14AM +0100, Lothar Wa=DFmann wrote: > > > Additionally to setting the ETHER_EN bit in FEC_ECNTRL the MII/RM= II > > > setting in FEC_R_CNTRL needs to be preserved to keep the MII inte= rface > >=20 > > s/MII/RMII? From what I see from imx28 and imx6q RM, the reset sta= te > > for this setting is MII mode. > >=20 > > > functional. > > >=20 > > > Signed-off-by: Lothar Wa=DFmann > > > --- > > > drivers/net/ethernet/freescale/fec.c | 5 ++++- > > > 1 files changed, 4 insertions(+), 1 deletions(-) > >=20 > > I assume this is fixing a problem you are seeing on imx28 only. > > Do you see the problem on imx53/51? > >=20 > No. i.MX53 uses the RMII gasket which is not affected by resetting th= e > controller. And imMX51 does not support RMII at all. >=20 > > >=20 > > > diff --git a/drivers/net/ethernet/freescale/fec.c b/drivers/net/e= thernet/freescale/fec.c > > > index 11534b9..ab0afb5 100644 > > > --- a/drivers/net/ethernet/freescale/fec.c > > > +++ b/drivers/net/ethernet/freescale/fec.c > > > @@ -515,6 +515,7 @@ fec_stop(struct net_device *ndev) > > > struct fec_enet_private *fep =3D netdev_priv(ndev); > > > const struct platform_device_id *id_entry =3D > > > platform_get_device_id(fep->pdev); > > > + u32 rmii_mode =3D readl(fep->hwp + FEC_R_CNTRL) & (1 << 8); > >=20 > > This bit is only available on ENET (imx28 and imx6q). Do we want t= o > > do the same thing for FEC (imx25/27/35/51/53)? > >=20 > No. AFAICT that's not necessary there. >=20 So you need to check it's actually running on ENET before accessing the bit. --=20 Regards, Shawn