* [U-Boot] PATCH Fix 100Mbs ethernet operation on sh7763 based boards
@ 2009-02-02 9:44 Simon Munton
2009-02-02 16:50 ` Nobuhiro Iwamatsu
2009-02-06 7:54 ` Ben Warren
0 siblings, 2 replies; 3+ messages in thread
From: Simon Munton @ 2009-02-02 9:44 UTC (permalink / raw)
To: u-boot
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 <simon@nidoran.m5data.com>
--- ./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*/
^ permalink raw reply [flat|nested] 3+ messages in thread
* [U-Boot] PATCH Fix 100Mbs ethernet operation on sh7763 based boards
2009-02-02 9:44 [U-Boot] PATCH Fix 100Mbs ethernet operation on sh7763 based boards Simon Munton
@ 2009-02-02 16:50 ` Nobuhiro Iwamatsu
2009-02-06 7:54 ` Ben Warren
1 sibling, 0 replies; 3+ messages in thread
From: Nobuhiro Iwamatsu @ 2009-02-02 16:50 UTC (permalink / raw)
To: u-boot
On Mon, 2 Feb 2009 09:44:08 +0000
Simon Munton <simon@nidoran.m5data.com> 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 <simon@nidoran.m5data.com>
Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
--
Nobuhiro Iwamatsu
^ permalink raw reply [flat|nested] 3+ messages in thread
* [U-Boot] PATCH Fix 100Mbs ethernet operation on sh7763 based boards
2009-02-02 9:44 [U-Boot] PATCH Fix 100Mbs ethernet operation on sh7763 based boards Simon Munton
2009-02-02 16:50 ` Nobuhiro Iwamatsu
@ 2009-02-06 7:54 ` Ben Warren
1 sibling, 0 replies; 3+ messages in thread
From: Ben Warren @ 2009-02-06 7:54 UTC (permalink / raw)
To: u-boot
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 <simon@nidoran.m5data.com>
>
>
> --- ./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
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-02-06 7:54 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-02 9:44 [U-Boot] PATCH Fix 100Mbs ethernet operation on sh7763 based boards Simon Munton
2009-02-02 16:50 ` Nobuhiro Iwamatsu
2009-02-06 7:54 ` Ben Warren
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox