ag71xx: fix a memory corruption bug that happens if you flood the interface with...
authorFelix Fietkau <nbd@openwrt.org>
Sun, 4 Jul 2010 01:31:33 +0000 (01:31 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Sun, 4 Jul 2010 01:31:33 +0000 (01:31 +0000)
SVN-Revision: 22054

target/linux/ar71xx/files/drivers/net/ag71xx/ag71xx_main.c

index a57b6d46fc1e8a5f7ab4827914acb615158bf265..9fd41527dd54165d627e0df64f971b6a2a5c0c7b 100644 (file)
@@ -454,6 +454,12 @@ static void ag71xx_dma_reset(struct ag71xx *ag)
        ag71xx_wr(ag, AG71XX_REG_RX_CTRL, 0);
        ag71xx_wr(ag, AG71XX_REG_TX_CTRL, 0);
 
+       /*
+        * give the hardware some time to really stop all rx/tx activity
+        * clearing the descriptors too early causes random memory corruption
+        */
+       mdelay(1);
+
        /* clear descriptor addresses */
        ag71xx_wr(ag, AG71XX_REG_TX_DESC, 0);
        ag71xx_wr(ag, AG71XX_REG_RX_DESC, 0);