diff options
Diffstat (limited to 'drivers/net/sfc/qt202x_phy.c')
-rw-r--r-- | drivers/net/sfc/qt202x_phy.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/drivers/net/sfc/qt202x_phy.c b/drivers/net/sfc/qt202x_phy.c index 68813d1d85f3..7ad97e397406 100644 --- a/drivers/net/sfc/qt202x_phy.c +++ b/drivers/net/sfc/qt202x_phy.c | |||
@@ -1,6 +1,6 @@ | |||
1 | /**************************************************************************** | 1 | /**************************************************************************** |
2 | * Driver for Solarflare Solarstorm network controllers and boards | 2 | * Driver for Solarflare Solarstorm network controllers and boards |
3 | * Copyright 2006-2009 Solarflare Communications Inc. | 3 | * Copyright 2006-2010 Solarflare Communications Inc. |
4 | * | 4 | * |
5 | * This program is free software; you can redistribute it and/or modify it | 5 | * This program is free software; you can redistribute it and/or modify it |
6 | * under the terms of the GNU General Public License version 2 as published | 6 | * under the terms of the GNU General Public License version 2 as published |
@@ -41,6 +41,8 @@ | |||
41 | #define PCS_UC_STATUS_LBN 0 | 41 | #define PCS_UC_STATUS_LBN 0 |
42 | #define PCS_UC_STATUS_WIDTH 8 | 42 | #define PCS_UC_STATUS_WIDTH 8 |
43 | #define PCS_UC_STATUS_FW_SAVE 0x20 | 43 | #define PCS_UC_STATUS_FW_SAVE 0x20 |
44 | #define PMA_PMD_MODE_REG 0xc301 | ||
45 | #define PMA_PMD_RXIN_SEL_LBN 6 | ||
44 | #define PMA_PMD_FTX_CTRL2_REG 0xc309 | 46 | #define PMA_PMD_FTX_CTRL2_REG 0xc309 |
45 | #define PMA_PMD_FTX_STATIC_LBN 13 | 47 | #define PMA_PMD_FTX_STATIC_LBN 13 |
46 | #define PMA_PMD_VEND1_REG 0xc001 | 48 | #define PMA_PMD_VEND1_REG 0xc001 |
@@ -282,6 +284,10 @@ static int qt2025c_select_phy_mode(struct efx_nic *efx) | |||
282 | * slow) reload of the firmware image (the microcontroller's code | 284 | * slow) reload of the firmware image (the microcontroller's code |
283 | * memory is not affected by the microcontroller reset). */ | 285 | * memory is not affected by the microcontroller reset). */ |
284 | efx_mdio_write(efx, 1, 0xc317, 0x00ff); | 286 | efx_mdio_write(efx, 1, 0xc317, 0x00ff); |
287 | /* PMA/PMD loopback sets RXIN to inverse polarity and the firmware | ||
288 | * restart doesn't reset it. We need to do that ourselves. */ | ||
289 | efx_mdio_set_flag(efx, 1, PMA_PMD_MODE_REG, | ||
290 | 1 << PMA_PMD_RXIN_SEL_LBN, false); | ||
285 | efx_mdio_write(efx, 1, 0xc300, 0x0002); | 291 | efx_mdio_write(efx, 1, 0xc300, 0x0002); |
286 | msleep(20); | 292 | msleep(20); |
287 | 293 | ||
@@ -443,7 +449,7 @@ static void qt202x_phy_remove(struct efx_nic *efx) | |||
443 | efx->phy_data = NULL; | 449 | efx->phy_data = NULL; |
444 | } | 450 | } |
445 | 451 | ||
446 | struct efx_phy_operations falcon_qt202x_phy_ops = { | 452 | const struct efx_phy_operations falcon_qt202x_phy_ops = { |
447 | .probe = qt202x_phy_probe, | 453 | .probe = qt202x_phy_probe, |
448 | .init = qt202x_phy_init, | 454 | .init = qt202x_phy_init, |
449 | .reconfigure = qt202x_phy_reconfigure, | 455 | .reconfigure = qt202x_phy_reconfigure, |