From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ben Warren Date: Thu, 05 Feb 2009 23:54:00 -0800 Subject: [U-Boot] PATCH Fix 100Mbs ethernet operation on sh7763 based boards In-Reply-To: <200902020944.09155.simon@nidoran.m5data.com> References: <200902020944.09155.simon@nidoran.m5data.com> Message-ID: <498BEC98.70508@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi Simon, Simon Munton wrote: > 100Mbs ethernet does not work on sh7763 chips due to the wrong value being > used in the GECMR register. Following diff fixes the problem > > Signed-off-by: Simon Munton > > > --- ./drivers/net/sh_eth.h.orig 2008-11-10 13:49:30.000000000 +0000 > +++ ./drivers/net/sh_eth.h 2009-01-30 16:21:11.000000000 +0000 > @@ -166,7 +166,7 @@ > > /* GECMR */ > enum GECMR_BIT { > - GECMR_1000B = 0x01, GECMR_100B = 0x40, GECMR_10B = 0x00, > + GECMR_1000B = 0x01, GECMR_100B = 0x04, GECMR_10B = 0x00, > }; > > /* EDRRR*/ > ______ Applied to net repo. thanks, Ben