netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [TG3]: Increase 5906 firmware poll time.
@ 2006-11-14 22:42 Michael Chan
  2006-11-14 23:05 ` Jeff Garzik
  0 siblings, 1 reply; 4+ messages in thread
From: Michael Chan @ 2006-11-14 22:42 UTC (permalink / raw)
  To: davem; +Cc: zambrano, netdev

[TG3]: Increase 5906 firmware poll time.
From: Gary Zambrano <zambrano@broadcom.com>

Newer 5906 bootcode needs about 7ms to finish resetting so the poll
firmware loop was changed to maximum 20ms.

Signed-off-by: Gary Zambrano <zambrano@broadcom.com>
Signed-off-by: Michael Chan <mchan@broadcom.com>

diff --git a/drivers/net/tg3.c b/drivers/net/tg3.c
index 8f059b7..d4b211c 100644
--- a/drivers/net/tg3.c
+++ b/drivers/net/tg3.c
@@ -4728,10 +4728,11 @@ static int tg3_poll_fw(struct tg3 *tp)
 	u32 val;
 
 	if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
-		for (i = 0; i < 400; i++) {
+		/* Wait up to 20ms for init done. */
+		for (i = 0; i < 200; i++) {
 			if (tr32(VCPU_STATUS) & VCPU_STATUS_INIT_DONE)
 				return 0;
-			udelay(10);
+			udelay(100);
 		}
 		return -ENODEV;
 	}



^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2006-11-15  0:34 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-11-14 22:42 [TG3]: Increase 5906 firmware poll time Michael Chan
2006-11-14 23:05 ` Jeff Garzik
2006-11-15  0:05   ` Michael Chan
2006-11-15  0:34     ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).