From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?ISO-8859-15?Q?Thomas_D=F6rfler?= Date: Sun, 19 Jul 2009 17:35:54 +0200 Subject: [U-Boot] [PATCH] Bugfix: mpc512x_fec MII accesses fail after ethernet transfers Message-ID: <4A633D5A.3060803@embedded-brains.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de The mpc512x FEC network driver resets the FEC before transferring packets. With this reset, the FEC clears the previous setting of MII transfer speed. This patch ensures, that it is set again to a reasonable value after a FEC reset. Signed-off-by: Thomas Doerfler -- diff --git a/drivers/net/mpc512x_fec.c b/drivers/net/mpc512x_fec.c index fb2c19a..f3d76ba 100644 --- a/drivers/net/mpc512x_fec.c +++ b/drivers/net/mpc512x_fec.c @@ -446,6 +446,19 @@ static void mpc512x_fec_halt (struct eth_device *dev) * wait at least 16 clock cycles */ udelay (10); + /* + * NOTE: reset will also clear the MII speed register + * we should reinitialize it ASAP + */ + if (fec->xcv_type != SEVENWIRE) { + /* + * Set MII_SPEED = (1/(mii_speed * 2)) * System Clock + * and do not drop the Preamble. + */ + fec->eth->mii_speed = ((((gd->ips_clk / 1000000) / 5) + + 1) + << 1); + } #if (DEBUG & 0x3) printf ("Ethernet task stopped\n"); #endif -- -------------------------------------------- Embedded Brains GmbH Thomas Doerfler Obere Lagerstrasse 30 D-82178 Puchheim Germany email: Thomas.Doerfler@embedded-brains.de Phone: +49-89-18908079-2 Fax: +49-89-18908079-9