diff options
Diffstat (limited to 'drivers/net/sfc/falcon_xmac.c')
-rw-r--r-- | drivers/net/sfc/falcon_xmac.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/drivers/net/sfc/falcon_xmac.c b/drivers/net/sfc/falcon_xmac.c index be5a86f0e5cf..5620d9d13925 100644 --- a/drivers/net/sfc/falcon_xmac.c +++ b/drivers/net/sfc/falcon_xmac.c | |||
@@ -69,10 +69,6 @@ static int falcon_reset_xmac(struct efx_nic *efx) | |||
69 | udelay(10); | 69 | udelay(10); |
70 | } | 70 | } |
71 | 71 | ||
72 | /* This often fails when DSP is disabled, ignore it */ | ||
73 | if (sfe4001_phy_flash_cfg) | ||
74 | return 0; | ||
75 | |||
76 | EFX_ERR(efx, "timed out waiting for XMAC core reset\n"); | 72 | EFX_ERR(efx, "timed out waiting for XMAC core reset\n"); |
77 | return -ETIMEDOUT; | 73 | return -ETIMEDOUT; |
78 | } | 74 | } |
@@ -444,7 +440,8 @@ static bool falcon_check_xaui_link_up(struct efx_nic *efx) | |||
444 | max_tries = tries; | 440 | max_tries = tries; |
445 | 441 | ||
446 | if ((efx->loopback_mode == LOOPBACK_NETWORK) || | 442 | if ((efx->loopback_mode == LOOPBACK_NETWORK) || |
447 | (efx->phy_type == PHY_TYPE_NONE)) | 443 | (efx->phy_type == PHY_TYPE_NONE) || |
444 | efx_phy_mode_disabled(efx->phy_mode)) | ||
448 | return false; | 445 | return false; |
449 | 446 | ||
450 | while (tries) { | 447 | while (tries) { |
@@ -471,7 +468,11 @@ void falcon_reconfigure_xmac(struct efx_nic *efx) | |||
471 | 468 | ||
472 | falcon_deconfigure_mac_wrapper(efx); | 469 | falcon_deconfigure_mac_wrapper(efx); |
473 | 470 | ||
474 | efx->tx_disabled = LOOPBACK_INTERNAL(efx); | 471 | /* Reconfigure the PHY, disabling transmit in mac level loopback. */ |
472 | if (LOOPBACK_INTERNAL(efx)) | ||
473 | efx->phy_mode |= PHY_MODE_TX_DISABLED; | ||
474 | else | ||
475 | efx->phy_mode &= ~PHY_MODE_TX_DISABLED; | ||
475 | efx->phy_op->reconfigure(efx); | 476 | efx->phy_op->reconfigure(efx); |
476 | 477 | ||
477 | falcon_reconfigure_xgxs_core(efx); | 478 | falcon_reconfigure_xgxs_core(efx); |
@@ -566,7 +567,7 @@ int falcon_check_xmac(struct efx_nic *efx) | |||
566 | int rc; | 567 | int rc; |
567 | 568 | ||
568 | if ((efx->loopback_mode == LOOPBACK_NETWORK) || | 569 | if ((efx->loopback_mode == LOOPBACK_NETWORK) || |
569 | (efx->phy_type == PHY_TYPE_NONE)) | 570 | efx_phy_mode_disabled(efx->phy_mode)) |
570 | return 0; | 571 | return 0; |
571 | 572 | ||
572 | falcon_mask_status_intr(efx, false); | 573 | falcon_mask_status_intr(efx, false); |