2008-04-27 11:55:59 +00:00
|
|
|
/****************************************************************************
|
|
|
|
* Driver for Solarflare 802.3an compliant PHY
|
|
|
|
* Copyright 2007 Solarflare Communications Inc.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License version 2 as published
|
|
|
|
* by the Free Software Foundation, incorporated herein by reference.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/delay.h>
|
|
|
|
#include <linux/seq_file.h>
|
|
|
|
#include "efx.h"
|
|
|
|
#include "mdio_10g.h"
|
|
|
|
#include "falcon.h"
|
|
|
|
#include "phy.h"
|
|
|
|
#include "falcon_hwdefs.h"
|
|
|
|
#include "boards.h"
|
|
|
|
#include "mac.h"
|
|
|
|
|
|
|
|
/* We expect these MMDs to be in the package */
|
|
|
|
/* AN not here as mdio_check_mmds() requires STAT2 support */
|
2008-12-13 05:44:14 +00:00
|
|
|
#define TENXPRESS_REQUIRED_DEVS (MDIO_MMDREG_DEVS_PMAPMD | \
|
|
|
|
MDIO_MMDREG_DEVS_PCS | \
|
|
|
|
MDIO_MMDREG_DEVS_PHYXS)
|
2008-04-27 11:55:59 +00:00
|
|
|
|
2008-05-07 12:36:19 +00:00
|
|
|
#define TENXPRESS_LOOPBACKS ((1 << LOOPBACK_PHYXS) | \
|
|
|
|
(1 << LOOPBACK_PCS) | \
|
|
|
|
(1 << LOOPBACK_PMAPMD) | \
|
|
|
|
(1 << LOOPBACK_NETWORK))
|
|
|
|
|
2008-04-27 11:55:59 +00:00
|
|
|
/* We complain if we fail to see the link partner as 10G capable this many
|
|
|
|
* times in a row (must be > 1 as sampling the autoneg. registers is racy)
|
|
|
|
*/
|
|
|
|
#define MAX_BAD_LP_TRIES (5)
|
|
|
|
|
|
|
|
/* Extended control register */
|
|
|
|
#define PMA_PMD_XCONTROL_REG 0xc000
|
|
|
|
#define PMA_PMD_LNPGA_POWERDOWN_LBN 8
|
|
|
|
#define PMA_PMD_LNPGA_POWERDOWN_WIDTH 1
|
|
|
|
|
|
|
|
/* extended status register */
|
|
|
|
#define PMA_PMD_XSTATUS_REG 0xc001
|
|
|
|
#define PMA_PMD_XSTAT_FLP_LBN (12)
|
|
|
|
|
|
|
|
/* LED control register */
|
|
|
|
#define PMA_PMD_LED_CTRL_REG (0xc007)
|
|
|
|
#define PMA_PMA_LED_ACTIVITY_LBN (3)
|
|
|
|
|
|
|
|
/* LED function override register */
|
|
|
|
#define PMA_PMD_LED_OVERR_REG (0xc009)
|
|
|
|
/* Bit positions for different LEDs (there are more but not wired on SFE4001)*/
|
|
|
|
#define PMA_PMD_LED_LINK_LBN (0)
|
|
|
|
#define PMA_PMD_LED_SPEED_LBN (2)
|
|
|
|
#define PMA_PMD_LED_TX_LBN (4)
|
|
|
|
#define PMA_PMD_LED_RX_LBN (6)
|
|
|
|
/* Override settings */
|
|
|
|
#define PMA_PMD_LED_AUTO (0) /* H/W control */
|
|
|
|
#define PMA_PMD_LED_ON (1)
|
|
|
|
#define PMA_PMD_LED_OFF (2)
|
|
|
|
#define PMA_PMD_LED_FLASH (3)
|
|
|
|
/* All LEDs under hardware control */
|
|
|
|
#define PMA_PMD_LED_FULL_AUTO (0)
|
|
|
|
/* Green and Amber under hardware control, Red off */
|
|
|
|
#define PMA_PMD_LED_DEFAULT (PMA_PMD_LED_OFF << PMA_PMD_LED_RX_LBN)
|
|
|
|
|
|
|
|
|
2008-05-07 12:36:19 +00:00
|
|
|
/* Special Software reset register */
|
|
|
|
#define PMA_PMD_EXT_CTRL_REG 49152
|
|
|
|
#define PMA_PMD_EXT_SSR_LBN 15
|
|
|
|
|
2008-04-27 11:55:59 +00:00
|
|
|
/* Misc register defines */
|
|
|
|
#define PCS_CLOCK_CTRL_REG 0xd801
|
|
|
|
#define PLL312_RST_N_LBN 2
|
|
|
|
|
|
|
|
#define PCS_SOFT_RST2_REG 0xd806
|
|
|
|
#define SERDES_RST_N_LBN 13
|
|
|
|
#define XGXS_RST_N_LBN 12
|
|
|
|
|
|
|
|
#define PCS_TEST_SELECT_REG 0xd807 /* PRM 10.5.8 */
|
|
|
|
#define CLK312_EN_LBN 3
|
|
|
|
|
2008-05-07 12:36:19 +00:00
|
|
|
/* PHYXS registers */
|
|
|
|
#define PHYXS_TEST1 (49162)
|
|
|
|
#define LOOPBACK_NEAR_LBN (8)
|
|
|
|
#define LOOPBACK_NEAR_WIDTH (1)
|
|
|
|
|
2008-04-27 11:55:59 +00:00
|
|
|
/* Boot status register */
|
|
|
|
#define PCS_BOOT_STATUS_REG (0xd000)
|
|
|
|
#define PCS_BOOT_FATAL_ERR_LBN (0)
|
|
|
|
#define PCS_BOOT_PROGRESS_LBN (1)
|
|
|
|
#define PCS_BOOT_PROGRESS_WIDTH (2)
|
|
|
|
#define PCS_BOOT_COMPLETE_LBN (3)
|
|
|
|
#define PCS_BOOT_MAX_DELAY (100)
|
|
|
|
#define PCS_BOOT_POLL_DELAY (10)
|
|
|
|
|
|
|
|
/* Time to wait between powering down the LNPGA and turning off the power
|
|
|
|
* rails */
|
|
|
|
#define LNPGA_PDOWN_WAIT (HZ / 5)
|
|
|
|
|
|
|
|
static int crc_error_reset_threshold = 100;
|
|
|
|
module_param(crc_error_reset_threshold, int, 0644);
|
|
|
|
MODULE_PARM_DESC(crc_error_reset_threshold,
|
|
|
|
"Max number of CRC errors before XAUI reset");
|
|
|
|
|
|
|
|
struct tenxpress_phy_data {
|
2008-05-07 12:36:19 +00:00
|
|
|
enum efx_loopback_mode loopback_mode;
|
2008-04-27 11:55:59 +00:00
|
|
|
atomic_t bad_crc_count;
|
2008-09-01 11:48:17 +00:00
|
|
|
enum efx_phy_mode phy_mode;
|
2008-04-27 11:55:59 +00:00
|
|
|
int bad_lp_tries;
|
|
|
|
};
|
|
|
|
|
|
|
|
void tenxpress_crc_err(struct efx_nic *efx)
|
|
|
|
{
|
|
|
|
struct tenxpress_phy_data *phy_data = efx->phy_data;
|
|
|
|
if (phy_data != NULL)
|
|
|
|
atomic_inc(&phy_data->bad_crc_count);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check that the C166 has booted successfully */
|
|
|
|
static int tenxpress_phy_check(struct efx_nic *efx)
|
|
|
|
{
|
|
|
|
int phy_id = efx->mii.phy_id;
|
|
|
|
int count = PCS_BOOT_MAX_DELAY / PCS_BOOT_POLL_DELAY;
|
|
|
|
int boot_stat;
|
|
|
|
|
|
|
|
/* Wait for the boot to complete (or not) */
|
|
|
|
while (count) {
|
|
|
|
boot_stat = mdio_clause45_read(efx, phy_id,
|
|
|
|
MDIO_MMD_PCS,
|
|
|
|
PCS_BOOT_STATUS_REG);
|
|
|
|
if (boot_stat & (1 << PCS_BOOT_COMPLETE_LBN))
|
|
|
|
break;
|
|
|
|
count--;
|
|
|
|
udelay(PCS_BOOT_POLL_DELAY);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!count) {
|
|
|
|
EFX_ERR(efx, "%s: PHY boot timed out. Last status "
|
|
|
|
"%x\n", __func__,
|
|
|
|
(boot_stat >> PCS_BOOT_PROGRESS_LBN) &
|
|
|
|
((1 << PCS_BOOT_PROGRESS_WIDTH) - 1));
|
|
|
|
return -ETIMEDOUT;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int tenxpress_init(struct efx_nic *efx)
|
|
|
|
{
|
|
|
|
int rc, reg;
|
|
|
|
|
|
|
|
/* Turn on the clock */
|
|
|
|
reg = (1 << CLK312_EN_LBN);
|
|
|
|
mdio_clause45_write(efx, efx->mii.phy_id,
|
|
|
|
MDIO_MMD_PCS, PCS_TEST_SELECT_REG, reg);
|
|
|
|
|
|
|
|
rc = tenxpress_phy_check(efx);
|
|
|
|
if (rc < 0)
|
|
|
|
return rc;
|
|
|
|
|
|
|
|
/* Set the LEDs up as: Green = Link, Amber = Link/Act, Red = Off */
|
|
|
|
reg = mdio_clause45_read(efx, efx->mii.phy_id,
|
|
|
|
MDIO_MMD_PMAPMD, PMA_PMD_LED_CTRL_REG);
|
|
|
|
reg |= (1 << PMA_PMA_LED_ACTIVITY_LBN);
|
|
|
|
mdio_clause45_write(efx, efx->mii.phy_id, MDIO_MMD_PMAPMD,
|
|
|
|
PMA_PMD_LED_CTRL_REG, reg);
|
|
|
|
|
|
|
|
reg = PMA_PMD_LED_DEFAULT;
|
|
|
|
mdio_clause45_write(efx, efx->mii.phy_id, MDIO_MMD_PMAPMD,
|
|
|
|
PMA_PMD_LED_OVERR_REG, reg);
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int tenxpress_phy_init(struct efx_nic *efx)
|
|
|
|
{
|
|
|
|
struct tenxpress_phy_data *phy_data;
|
|
|
|
int rc = 0;
|
|
|
|
|
|
|
|
phy_data = kzalloc(sizeof(*phy_data), GFP_KERNEL);
|
2008-05-16 20:20:20 +00:00
|
|
|
if (!phy_data)
|
|
|
|
return -ENOMEM;
|
2008-04-27 11:55:59 +00:00
|
|
|
efx->phy_data = phy_data;
|
2008-09-01 11:48:17 +00:00
|
|
|
phy_data->phy_mode = efx->phy_mode;
|
2008-04-27 11:55:59 +00:00
|
|
|
|
2008-09-01 11:48:17 +00:00
|
|
|
rc = mdio_clause45_wait_reset_mmds(efx,
|
|
|
|
TENXPRESS_REQUIRED_DEVS);
|
|
|
|
if (rc < 0)
|
|
|
|
goto fail;
|
2008-04-27 11:55:59 +00:00
|
|
|
|
|
|
|
rc = mdio_clause45_check_mmds(efx, TENXPRESS_REQUIRED_DEVS, 0);
|
|
|
|
if (rc < 0)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
rc = tenxpress_init(efx);
|
|
|
|
if (rc < 0)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
schedule_timeout_uninterruptible(HZ / 5); /* 200ms */
|
|
|
|
|
|
|
|
/* Let XGXS and SerDes out of reset and resets 10XPress */
|
|
|
|
falcon_reset_xaui(efx);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
kfree(efx->phy_data);
|
|
|
|
efx->phy_data = NULL;
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2008-05-07 12:36:19 +00:00
|
|
|
static int tenxpress_special_reset(struct efx_nic *efx)
|
|
|
|
{
|
|
|
|
int rc, reg;
|
|
|
|
|
2008-09-01 11:49:25 +00:00
|
|
|
/* The XGMAC clock is driven from the SFC7101/SFT9001 312MHz clock, so
|
|
|
|
* a special software reset can glitch the XGMAC sufficiently for stats
|
|
|
|
* requests to fail. Since we don't ofen special_reset, just lock. */
|
|
|
|
spin_lock(&efx->stats_lock);
|
2008-05-07 12:36:19 +00:00
|
|
|
|
|
|
|
/* Initiate reset */
|
|
|
|
reg = mdio_clause45_read(efx, efx->mii.phy_id,
|
|
|
|
MDIO_MMD_PMAPMD, PMA_PMD_EXT_CTRL_REG);
|
|
|
|
reg |= (1 << PMA_PMD_EXT_SSR_LBN);
|
|
|
|
mdio_clause45_write(efx, efx->mii.phy_id, MDIO_MMD_PMAPMD,
|
|
|
|
PMA_PMD_EXT_CTRL_REG, reg);
|
|
|
|
|
2008-09-01 11:49:25 +00:00
|
|
|
mdelay(200);
|
2008-05-07 12:36:19 +00:00
|
|
|
|
|
|
|
/* Wait for the blocks to come out of reset */
|
|
|
|
rc = mdio_clause45_wait_reset_mmds(efx,
|
|
|
|
TENXPRESS_REQUIRED_DEVS);
|
|
|
|
if (rc < 0)
|
2008-09-01 11:49:25 +00:00
|
|
|
goto unlock;
|
2008-05-07 12:36:19 +00:00
|
|
|
|
|
|
|
/* Try and reconfigure the device */
|
|
|
|
rc = tenxpress_init(efx);
|
|
|
|
if (rc < 0)
|
2008-09-01 11:49:25 +00:00
|
|
|
goto unlock;
|
2008-05-07 12:36:19 +00:00
|
|
|
|
2008-09-01 11:49:25 +00:00
|
|
|
unlock:
|
|
|
|
spin_unlock(&efx->stats_lock);
|
|
|
|
return rc;
|
2008-05-07 12:36:19 +00:00
|
|
|
}
|
|
|
|
|
2008-09-01 11:46:50 +00:00
|
|
|
static void tenxpress_set_bad_lp(struct efx_nic *efx, bool bad_lp)
|
2008-04-27 11:55:59 +00:00
|
|
|
{
|
|
|
|
struct tenxpress_phy_data *pd = efx->phy_data;
|
|
|
|
int reg;
|
|
|
|
|
|
|
|
/* Nothing to do if all is well and was previously so. */
|
|
|
|
if (!(bad_lp || pd->bad_lp_tries))
|
|
|
|
return;
|
|
|
|
|
|
|
|
reg = mdio_clause45_read(efx, efx->mii.phy_id,
|
|
|
|
MDIO_MMD_PMAPMD, PMA_PMD_LED_OVERR_REG);
|
|
|
|
|
|
|
|
if (bad_lp)
|
|
|
|
pd->bad_lp_tries++;
|
|
|
|
else
|
|
|
|
pd->bad_lp_tries = 0;
|
|
|
|
|
|
|
|
if (pd->bad_lp_tries == MAX_BAD_LP_TRIES) {
|
|
|
|
pd->bad_lp_tries = 0; /* Restart count */
|
|
|
|
reg &= ~(PMA_PMD_LED_FLASH << PMA_PMD_LED_RX_LBN);
|
|
|
|
reg |= (PMA_PMD_LED_FLASH << PMA_PMD_LED_RX_LBN);
|
|
|
|
EFX_ERR(efx, "This NIC appears to be plugged into"
|
|
|
|
" a port that is not 10GBASE-T capable.\n"
|
|
|
|
" This PHY is 10GBASE-T ONLY, so no link can"
|
|
|
|
" be established.\n");
|
|
|
|
} else {
|
|
|
|
reg |= (PMA_PMD_LED_OFF << PMA_PMD_LED_RX_LBN);
|
|
|
|
}
|
|
|
|
mdio_clause45_write(efx, efx->mii.phy_id, MDIO_MMD_PMAPMD,
|
|
|
|
PMA_PMD_LED_OVERR_REG, reg);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check link status and return a boolean OK value. If the link is NOT
|
|
|
|
* OK we have a quick rummage round to see if we appear to be plugged
|
|
|
|
* into a non-10GBT port and if so warn the user that they won't get
|
|
|
|
* link any time soon as we are 10GBT only, unless caller specified
|
|
|
|
* not to do this check (it isn't useful in loopback) */
|
2008-09-01 11:46:50 +00:00
|
|
|
static bool tenxpress_link_ok(struct efx_nic *efx, bool check_lp)
|
2008-04-27 11:55:59 +00:00
|
|
|
{
|
2008-09-01 11:46:50 +00:00
|
|
|
bool ok = mdio_clause45_links_ok(efx, TENXPRESS_REQUIRED_DEVS);
|
2008-04-27 11:55:59 +00:00
|
|
|
|
|
|
|
if (ok) {
|
2008-09-01 11:46:50 +00:00
|
|
|
tenxpress_set_bad_lp(efx, false);
|
2008-04-27 11:55:59 +00:00
|
|
|
} else if (check_lp) {
|
|
|
|
/* Are we plugged into the wrong sort of link? */
|
2008-09-01 11:46:50 +00:00
|
|
|
bool bad_lp = false;
|
2008-04-27 11:55:59 +00:00
|
|
|
int phy_id = efx->mii.phy_id;
|
|
|
|
int an_stat = mdio_clause45_read(efx, phy_id, MDIO_MMD_AN,
|
|
|
|
MDIO_AN_STATUS);
|
|
|
|
int xphy_stat = mdio_clause45_read(efx, phy_id,
|
|
|
|
MDIO_MMD_PMAPMD,
|
|
|
|
PMA_PMD_XSTATUS_REG);
|
|
|
|
/* Are we plugged into anything that sends FLPs? If
|
|
|
|
* not we can't distinguish between not being plugged
|
|
|
|
* in and being plugged into a non-AN antique. The FLP
|
|
|
|
* bit has the advantage of not clearing when autoneg
|
|
|
|
* restarts. */
|
|
|
|
if (!(xphy_stat & (1 << PMA_PMD_XSTAT_FLP_LBN))) {
|
2008-09-01 11:46:50 +00:00
|
|
|
tenxpress_set_bad_lp(efx, false);
|
2008-04-27 11:55:59 +00:00
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If it can do 10GBT it must be XNP capable */
|
|
|
|
bad_lp = !(an_stat & (1 << MDIO_AN_STATUS_XNP_LBN));
|
|
|
|
if (!bad_lp && (an_stat & (1 << MDIO_AN_STATUS_PAGE_LBN))) {
|
|
|
|
bad_lp = !(mdio_clause45_read(efx, phy_id,
|
|
|
|
MDIO_MMD_AN, MDIO_AN_10GBT_STATUS) &
|
|
|
|
(1 << MDIO_AN_10GBT_STATUS_LP_10G_LBN));
|
|
|
|
}
|
|
|
|
tenxpress_set_bad_lp(efx, bad_lp);
|
|
|
|
}
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
2008-05-07 12:36:19 +00:00
|
|
|
static void tenxpress_phyxs_loopback(struct efx_nic *efx)
|
|
|
|
{
|
|
|
|
int phy_id = efx->mii.phy_id;
|
|
|
|
int ctrl1, ctrl2;
|
|
|
|
|
|
|
|
ctrl1 = ctrl2 = mdio_clause45_read(efx, phy_id, MDIO_MMD_PHYXS,
|
|
|
|
PHYXS_TEST1);
|
|
|
|
if (efx->loopback_mode == LOOPBACK_PHYXS)
|
|
|
|
ctrl2 |= (1 << LOOPBACK_NEAR_LBN);
|
|
|
|
else
|
|
|
|
ctrl2 &= ~(1 << LOOPBACK_NEAR_LBN);
|
|
|
|
if (ctrl1 != ctrl2)
|
|
|
|
mdio_clause45_write(efx, phy_id, MDIO_MMD_PHYXS,
|
|
|
|
PHYXS_TEST1, ctrl2);
|
|
|
|
}
|
|
|
|
|
2008-04-27 11:55:59 +00:00
|
|
|
static void tenxpress_phy_reconfigure(struct efx_nic *efx)
|
|
|
|
{
|
2008-05-07 12:36:19 +00:00
|
|
|
struct tenxpress_phy_data *phy_data = efx->phy_data;
|
2008-09-01 11:46:50 +00:00
|
|
|
bool loop_change = LOOPBACK_OUT_OF(phy_data, efx,
|
|
|
|
TENXPRESS_LOOPBACKS);
|
2008-05-07 12:36:19 +00:00
|
|
|
|
2008-09-01 11:48:17 +00:00
|
|
|
if (efx->phy_mode & PHY_MODE_SPECIAL) {
|
|
|
|
phy_data->phy_mode = efx->phy_mode;
|
2008-04-27 11:55:59 +00:00
|
|
|
return;
|
2008-09-01 11:48:17 +00:00
|
|
|
}
|
2008-04-27 11:55:59 +00:00
|
|
|
|
2008-05-07 12:36:19 +00:00
|
|
|
/* When coming out of transmit disable, coming out of low power
|
|
|
|
* mode, or moving out of any PHY internal loopback mode,
|
|
|
|
* perform a special software reset */
|
2008-09-01 11:48:17 +00:00
|
|
|
if ((efx->phy_mode == PHY_MODE_NORMAL &&
|
|
|
|
phy_data->phy_mode != PHY_MODE_NORMAL) ||
|
2008-05-07 12:36:19 +00:00
|
|
|
loop_change) {
|
2008-05-16 20:14:27 +00:00
|
|
|
tenxpress_special_reset(efx);
|
2008-05-07 12:36:19 +00:00
|
|
|
falcon_reset_xaui(efx);
|
|
|
|
}
|
|
|
|
|
|
|
|
mdio_clause45_transmit_disable(efx);
|
|
|
|
mdio_clause45_phy_reconfigure(efx);
|
|
|
|
tenxpress_phyxs_loopback(efx);
|
|
|
|
|
|
|
|
phy_data->loopback_mode = efx->loopback_mode;
|
2008-09-01 11:48:17 +00:00
|
|
|
phy_data->phy_mode = efx->phy_mode;
|
2008-09-01 11:46:50 +00:00
|
|
|
efx->link_up = tenxpress_link_ok(efx, false);
|
2008-12-13 05:43:33 +00:00
|
|
|
efx->link_speed = 10000;
|
|
|
|
efx->link_fd = true;
|
2008-04-27 11:55:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void tenxpress_phy_clear_interrupt(struct efx_nic *efx)
|
|
|
|
{
|
|
|
|
/* Nothing done here - LASI interrupts aren't reliable so poll */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Poll PHY for interrupt */
|
|
|
|
static int tenxpress_phy_check_hw(struct efx_nic *efx)
|
|
|
|
{
|
|
|
|
struct tenxpress_phy_data *phy_data = efx->phy_data;
|
2008-09-01 11:46:50 +00:00
|
|
|
bool link_ok;
|
2008-11-04 20:34:56 +00:00
|
|
|
int rc = 0;
|
2008-04-27 11:55:59 +00:00
|
|
|
|
2008-09-01 11:50:01 +00:00
|
|
|
link_ok = tenxpress_link_ok(efx, true);
|
2008-04-27 11:55:59 +00:00
|
|
|
|
|
|
|
if (link_ok != efx->link_up)
|
|
|
|
falcon_xmac_sim_phy_event(efx);
|
|
|
|
|
2008-09-01 11:48:17 +00:00
|
|
|
if (phy_data->phy_mode != PHY_MODE_NORMAL)
|
2008-04-27 11:55:59 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (atomic_read(&phy_data->bad_crc_count) > crc_error_reset_threshold) {
|
|
|
|
EFX_ERR(efx, "Resetting XAUI due to too many CRC errors\n");
|
|
|
|
falcon_reset_xaui(efx);
|
|
|
|
atomic_set(&phy_data->bad_crc_count, 0);
|
|
|
|
}
|
|
|
|
|
2008-11-04 20:34:56 +00:00
|
|
|
rc = efx->board_info.monitor(efx);
|
|
|
|
if (rc) {
|
|
|
|
EFX_ERR(efx, "Board sensor %s; shutting down PHY\n",
|
|
|
|
(rc == -ERANGE) ? "reported fault" : "failed");
|
|
|
|
if (efx->phy_mode & PHY_MODE_OFF) {
|
|
|
|
/* Assume that board has shut PHY off */
|
|
|
|
phy_data->phy_mode = PHY_MODE_OFF;
|
|
|
|
} else {
|
|
|
|
efx->phy_mode |= PHY_MODE_LOW_POWER;
|
|
|
|
mdio_clause45_set_mmds_lpower(efx, true,
|
|
|
|
efx->phy_op->mmds);
|
|
|
|
phy_data->phy_mode |= PHY_MODE_LOW_POWER;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
2008-04-27 11:55:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void tenxpress_phy_fini(struct efx_nic *efx)
|
|
|
|
{
|
|
|
|
int reg;
|
|
|
|
|
|
|
|
/* Power down the LNPGA */
|
|
|
|
reg = (1 << PMA_PMD_LNPGA_POWERDOWN_LBN);
|
|
|
|
mdio_clause45_write(efx, efx->mii.phy_id, MDIO_MMD_PMAPMD,
|
|
|
|
PMA_PMD_XCONTROL_REG, reg);
|
|
|
|
|
|
|
|
/* Waiting here ensures that the board fini, which can turn off the
|
|
|
|
* power to the PHY, won't get run until the LNPGA powerdown has been
|
|
|
|
* given long enough to complete. */
|
|
|
|
schedule_timeout_uninterruptible(LNPGA_PDOWN_WAIT); /* 200 ms */
|
|
|
|
|
|
|
|
kfree(efx->phy_data);
|
|
|
|
efx->phy_data = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Set the RX and TX LEDs and Link LED flashing. The other LEDs
|
|
|
|
* (which probably aren't wired anyway) are left in AUTO mode */
|
2008-09-01 11:46:50 +00:00
|
|
|
void tenxpress_phy_blink(struct efx_nic *efx, bool blink)
|
2008-04-27 11:55:59 +00:00
|
|
|
{
|
|
|
|
int reg;
|
|
|
|
|
|
|
|
if (blink)
|
|
|
|
reg = (PMA_PMD_LED_FLASH << PMA_PMD_LED_TX_LBN) |
|
|
|
|
(PMA_PMD_LED_FLASH << PMA_PMD_LED_RX_LBN) |
|
|
|
|
(PMA_PMD_LED_FLASH << PMA_PMD_LED_LINK_LBN);
|
|
|
|
else
|
|
|
|
reg = PMA_PMD_LED_DEFAULT;
|
|
|
|
|
|
|
|
mdio_clause45_write(efx, efx->mii.phy_id, MDIO_MMD_PMAPMD,
|
|
|
|
PMA_PMD_LED_OVERR_REG, reg);
|
|
|
|
}
|
|
|
|
|
2008-09-01 11:49:02 +00:00
|
|
|
static int tenxpress_phy_test(struct efx_nic *efx)
|
|
|
|
{
|
|
|
|
/* BIST is automatically run after a special software reset */
|
|
|
|
return tenxpress_special_reset(efx);
|
|
|
|
}
|
|
|
|
|
2008-04-27 11:55:59 +00:00
|
|
|
struct efx_phy_operations falcon_tenxpress_phy_ops = {
|
|
|
|
.init = tenxpress_phy_init,
|
|
|
|
.reconfigure = tenxpress_phy_reconfigure,
|
|
|
|
.check_hw = tenxpress_phy_check_hw,
|
|
|
|
.fini = tenxpress_phy_fini,
|
|
|
|
.clear_interrupt = tenxpress_phy_clear_interrupt,
|
2008-09-01 11:49:02 +00:00
|
|
|
.test = tenxpress_phy_test,
|
2008-04-27 11:55:59 +00:00
|
|
|
.mmds = TENXPRESS_REQUIRED_DEVS,
|
2008-05-07 12:36:19 +00:00
|
|
|
.loopbacks = TENXPRESS_LOOPBACKS,
|
2008-04-27 11:55:59 +00:00
|
|
|
};
|