Pacify users who get all bent out of shape when they see the "xl%d: command
never completed" message. The RX reset takes longer complete than it used to, a lot longer in fact than xl_wait() is prepared to wait. When we do the RX reset in xl_reset(), this cases xl_wait() to time out and whine. We wait a little extra time now after the RX reset, which should silence the warning. Thanks to obrien for finally getting me a box with a NIC that causes this problem for me to tinker with.
This commit is contained in:
parent
2be840b347
commit
0a75b55602
@ -1033,10 +1033,15 @@ static void xl_reset(sc)
|
||||
if (i == XL_TIMEOUT)
|
||||
printf("xl%d: reset didn't complete\n", sc->xl_unit);
|
||||
|
||||
DELAY(100000);
|
||||
|
||||
/* Reset TX and RX. */
|
||||
/* Note: the RX reset takes an absurd amount of time
|
||||
* on newer versions of the Tornado chips such as those
|
||||
* on the 3c905CX and newer 3c908C cards. We wait an
|
||||
* extra amount of time so that xl_wait() doesn't complain
|
||||
* and annoy the users.
|
||||
*/
|
||||
CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_RX_RESET);
|
||||
DELAY(100000);
|
||||
xl_wait(sc);
|
||||
CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_TX_RESET);
|
||||
xl_wait(sc);
|
||||
|
Loading…
Reference in New Issue
Block a user