From: Jean-Christophe Dubois <j...@tribudubois.net> According to the FEC chapter of i.MX25 reference manual ECR register is initialized at 0xf0000000 at reset time.
We fix the value. Signed-off-by: Jean-Christophe Dubois <j...@tribudubois.net> Signed-off-by: Jason Wang <jasow...@redhat.com> --- hw/net/imx_fec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/net/imx_fec.c b/hw/net/imx_fec.c index bf68ce6..768181e 100644 --- a/hw/net/imx_fec.c +++ b/hw/net/imx_fec.c @@ -339,7 +339,7 @@ static void imx_fec_reset(DeviceState *d) s->eir = 0; s->eimr = 0; s->rx_enabled = 0; - s->ecr = 0; + s->ecr = 0xf0000000; s->mscr = 0; s->mibc = 0xc0000000; s->rcr = 0x05ee0001; -- 2.7.4