From: Jean-Christophe Dubois Date: Mon, 30 May 2016 17:26:00 +0000 (+0200) Subject: i.MX: reset TX/RX descriptors when FEC is disabled. X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=ff4b325f5e1d68cd089e71edcaa3fe3432ca18dc;p=qemu.git i.MX: reset TX/RX descriptors when FEC is disabled. According to the FEC chapter of i.MX25 reference manual RX adn TX descriptors are reseted when the FEC device is disabled through ECR. Signed-off-by: Jean-Christophe Dubois Signed-off-by: Jason Wang --- diff --git a/hw/net/imx_fec.c b/hw/net/imx_fec.c index 768181e3c1..7369cfafe5 100644 --- a/hw/net/imx_fec.c +++ b/hw/net/imx_fec.c @@ -454,6 +454,8 @@ static void imx_fec_write(void *opaque, hwaddr addr, } if ((s->ecr & FEC_EN) == 0) { s->rx_enabled = 0; + s->rx_descriptor = s->erdsr; + s->tx_descriptor = s->etdsr; } break; case 0x040: /* MMFR */