Commit 583c28e5 authored by Michael Chan's avatar Michael Chan Committed by David S. Miller

[BNX2]: Fix driver phy_flags name space.

Prefix "bp->phy_flags" names with BNX2_PHY_FLAG_* for consistency.
Signed-off-by: default avatarMichael Chan <mchan@broadcom.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent ecfdc8c5
...@@ -296,7 +296,7 @@ bnx2_read_phy(struct bnx2 *bp, u32 reg, u32 *val) ...@@ -296,7 +296,7 @@ bnx2_read_phy(struct bnx2 *bp, u32 reg, u32 *val)
u32 val1; u32 val1;
int i, ret; int i, ret;
if (bp->phy_flags & PHY_INT_MODE_AUTO_POLLING_FLAG) { if (bp->phy_flags & BNX2_PHY_FLAG_INT_MODE_AUTO_POLLING) {
val1 = REG_RD(bp, BNX2_EMAC_MDIO_MODE); val1 = REG_RD(bp, BNX2_EMAC_MDIO_MODE);
val1 &= ~BNX2_EMAC_MDIO_MODE_AUTO_POLL; val1 &= ~BNX2_EMAC_MDIO_MODE_AUTO_POLL;
...@@ -334,7 +334,7 @@ bnx2_read_phy(struct bnx2 *bp, u32 reg, u32 *val) ...@@ -334,7 +334,7 @@ bnx2_read_phy(struct bnx2 *bp, u32 reg, u32 *val)
ret = 0; ret = 0;
} }
if (bp->phy_flags & PHY_INT_MODE_AUTO_POLLING_FLAG) { if (bp->phy_flags & BNX2_PHY_FLAG_INT_MODE_AUTO_POLLING) {
val1 = REG_RD(bp, BNX2_EMAC_MDIO_MODE); val1 = REG_RD(bp, BNX2_EMAC_MDIO_MODE);
val1 |= BNX2_EMAC_MDIO_MODE_AUTO_POLL; val1 |= BNX2_EMAC_MDIO_MODE_AUTO_POLL;
...@@ -353,7 +353,7 @@ bnx2_write_phy(struct bnx2 *bp, u32 reg, u32 val) ...@@ -353,7 +353,7 @@ bnx2_write_phy(struct bnx2 *bp, u32 reg, u32 val)
u32 val1; u32 val1;
int i, ret; int i, ret;
if (bp->phy_flags & PHY_INT_MODE_AUTO_POLLING_FLAG) { if (bp->phy_flags & BNX2_PHY_FLAG_INT_MODE_AUTO_POLLING) {
val1 = REG_RD(bp, BNX2_EMAC_MDIO_MODE); val1 = REG_RD(bp, BNX2_EMAC_MDIO_MODE);
val1 &= ~BNX2_EMAC_MDIO_MODE_AUTO_POLL; val1 &= ~BNX2_EMAC_MDIO_MODE_AUTO_POLL;
...@@ -383,7 +383,7 @@ bnx2_write_phy(struct bnx2 *bp, u32 reg, u32 val) ...@@ -383,7 +383,7 @@ bnx2_write_phy(struct bnx2 *bp, u32 reg, u32 val)
else else
ret = 0; ret = 0;
if (bp->phy_flags & PHY_INT_MODE_AUTO_POLLING_FLAG) { if (bp->phy_flags & BNX2_PHY_FLAG_INT_MODE_AUTO_POLLING) {
val1 = REG_RD(bp, BNX2_EMAC_MDIO_MODE); val1 = REG_RD(bp, BNX2_EMAC_MDIO_MODE);
val1 |= BNX2_EMAC_MDIO_MODE_AUTO_POLL; val1 |= BNX2_EMAC_MDIO_MODE_AUTO_POLL;
...@@ -634,7 +634,7 @@ bnx2_report_fw_link(struct bnx2 *bp) ...@@ -634,7 +634,7 @@ bnx2_report_fw_link(struct bnx2 *bp)
{ {
u32 fw_link_status = 0; u32 fw_link_status = 0;
if (bp->phy_flags & REMOTE_PHY_CAP_FLAG) if (bp->phy_flags & BNX2_PHY_FLAG_REMOTE_PHY_CAP)
return; return;
if (bp->link_up) { if (bp->link_up) {
...@@ -676,7 +676,7 @@ bnx2_report_fw_link(struct bnx2 *bp) ...@@ -676,7 +676,7 @@ bnx2_report_fw_link(struct bnx2 *bp)
bnx2_read_phy(bp, bp->mii_bmsr, &bmsr); bnx2_read_phy(bp, bp->mii_bmsr, &bmsr);
if (!(bmsr & BMSR_ANEGCOMPLETE) || if (!(bmsr & BMSR_ANEGCOMPLETE) ||
bp->phy_flags & PHY_PARALLEL_DETECT_FLAG) bp->phy_flags & BNX2_PHY_FLAG_PARALLEL_DETECT)
fw_link_status |= BNX2_LINK_STATUS_PARALLEL_DET; fw_link_status |= BNX2_LINK_STATUS_PARALLEL_DET;
else else
fw_link_status |= BNX2_LINK_STATUS_AN_COMPLETE; fw_link_status |= BNX2_LINK_STATUS_AN_COMPLETE;
...@@ -692,7 +692,7 @@ static char * ...@@ -692,7 +692,7 @@ static char *
bnx2_xceiver_str(struct bnx2 *bp) bnx2_xceiver_str(struct bnx2 *bp)
{ {
return ((bp->phy_port == PORT_FIBRE) ? "SerDes" : return ((bp->phy_port == PORT_FIBRE) ? "SerDes" :
((bp->phy_flags & PHY_SERDES_FLAG) ? "Remote Copper" : ((bp->phy_flags & BNX2_PHY_FLAG_SERDES) ? "Remote Copper" :
"Copper")); "Copper"));
} }
...@@ -752,7 +752,7 @@ bnx2_resolve_flow_ctrl(struct bnx2 *bp) ...@@ -752,7 +752,7 @@ bnx2_resolve_flow_ctrl(struct bnx2 *bp)
return; return;
} }
if ((bp->phy_flags & PHY_SERDES_FLAG) && if ((bp->phy_flags & BNX2_PHY_FLAG_SERDES) &&
(CHIP_NUM(bp) == CHIP_NUM_5708)) { (CHIP_NUM(bp) == CHIP_NUM_5708)) {
u32 val; u32 val;
...@@ -767,7 +767,7 @@ bnx2_resolve_flow_ctrl(struct bnx2 *bp) ...@@ -767,7 +767,7 @@ bnx2_resolve_flow_ctrl(struct bnx2 *bp)
bnx2_read_phy(bp, bp->mii_adv, &local_adv); bnx2_read_phy(bp, bp->mii_adv, &local_adv);
bnx2_read_phy(bp, bp->mii_lpa, &remote_adv); bnx2_read_phy(bp, bp->mii_lpa, &remote_adv);
if (bp->phy_flags & PHY_SERDES_FLAG) { if (bp->phy_flags & BNX2_PHY_FLAG_SERDES) {
u32 new_local_adv = 0; u32 new_local_adv = 0;
u32 new_remote_adv = 0; u32 new_remote_adv = 0;
...@@ -1050,7 +1050,7 @@ bnx2_set_mac_link(struct bnx2 *bp) ...@@ -1050,7 +1050,7 @@ bnx2_set_mac_link(struct bnx2 *bp)
static void static void
bnx2_enable_bmsr1(struct bnx2 *bp) bnx2_enable_bmsr1(struct bnx2 *bp)
{ {
if ((bp->phy_flags & PHY_SERDES_FLAG) && if ((bp->phy_flags & BNX2_PHY_FLAG_SERDES) &&
(CHIP_NUM(bp) == CHIP_NUM_5709)) (CHIP_NUM(bp) == CHIP_NUM_5709))
bnx2_write_phy(bp, MII_BNX2_BLK_ADDR, bnx2_write_phy(bp, MII_BNX2_BLK_ADDR,
MII_BNX2_BLK_ADDR_GP_STATUS); MII_BNX2_BLK_ADDR_GP_STATUS);
...@@ -1059,7 +1059,7 @@ bnx2_enable_bmsr1(struct bnx2 *bp) ...@@ -1059,7 +1059,7 @@ bnx2_enable_bmsr1(struct bnx2 *bp)
static void static void
bnx2_disable_bmsr1(struct bnx2 *bp) bnx2_disable_bmsr1(struct bnx2 *bp)
{ {
if ((bp->phy_flags & PHY_SERDES_FLAG) && if ((bp->phy_flags & BNX2_PHY_FLAG_SERDES) &&
(CHIP_NUM(bp) == CHIP_NUM_5709)) (CHIP_NUM(bp) == CHIP_NUM_5709))
bnx2_write_phy(bp, MII_BNX2_BLK_ADDR, bnx2_write_phy(bp, MII_BNX2_BLK_ADDR,
MII_BNX2_BLK_ADDR_COMBO_IEEEB0); MII_BNX2_BLK_ADDR_COMBO_IEEEB0);
...@@ -1071,7 +1071,7 @@ bnx2_test_and_enable_2g5(struct bnx2 *bp) ...@@ -1071,7 +1071,7 @@ bnx2_test_and_enable_2g5(struct bnx2 *bp)
u32 up1; u32 up1;
int ret = 1; int ret = 1;
if (!(bp->phy_flags & PHY_2_5G_CAPABLE_FLAG)) if (!(bp->phy_flags & BNX2_PHY_FLAG_2_5G_CAPABLE))
return 0; return 0;
if (bp->autoneg & AUTONEG_SPEED) if (bp->autoneg & AUTONEG_SPEED)
...@@ -1100,7 +1100,7 @@ bnx2_test_and_disable_2g5(struct bnx2 *bp) ...@@ -1100,7 +1100,7 @@ bnx2_test_and_disable_2g5(struct bnx2 *bp)
u32 up1; u32 up1;
int ret = 0; int ret = 0;
if (!(bp->phy_flags & PHY_2_5G_CAPABLE_FLAG)) if (!(bp->phy_flags & BNX2_PHY_FLAG_2_5G_CAPABLE))
return 0; return 0;
if (CHIP_NUM(bp) == CHIP_NUM_5709) if (CHIP_NUM(bp) == CHIP_NUM_5709)
...@@ -1125,7 +1125,7 @@ bnx2_enable_forced_2g5(struct bnx2 *bp) ...@@ -1125,7 +1125,7 @@ bnx2_enable_forced_2g5(struct bnx2 *bp)
{ {
u32 bmcr; u32 bmcr;
if (!(bp->phy_flags & PHY_2_5G_CAPABLE_FLAG)) if (!(bp->phy_flags & BNX2_PHY_FLAG_2_5G_CAPABLE))
return; return;
if (CHIP_NUM(bp) == CHIP_NUM_5709) { if (CHIP_NUM(bp) == CHIP_NUM_5709) {
...@@ -1160,7 +1160,7 @@ bnx2_disable_forced_2g5(struct bnx2 *bp) ...@@ -1160,7 +1160,7 @@ bnx2_disable_forced_2g5(struct bnx2 *bp)
{ {
u32 bmcr; u32 bmcr;
if (!(bp->phy_flags & PHY_2_5G_CAPABLE_FLAG)) if (!(bp->phy_flags & BNX2_PHY_FLAG_2_5G_CAPABLE))
return; return;
if (CHIP_NUM(bp) == CHIP_NUM_5709) { if (CHIP_NUM(bp) == CHIP_NUM_5709) {
...@@ -1210,7 +1210,7 @@ bnx2_set_link(struct bnx2 *bp) ...@@ -1210,7 +1210,7 @@ bnx2_set_link(struct bnx2 *bp)
return 0; return 0;
} }
if (bp->phy_flags & REMOTE_PHY_CAP_FLAG) if (bp->phy_flags & BNX2_PHY_FLAG_REMOTE_PHY_CAP)
return 0; return 0;
link_up = bp->link_up; link_up = bp->link_up;
...@@ -1220,13 +1220,13 @@ bnx2_set_link(struct bnx2 *bp) ...@@ -1220,13 +1220,13 @@ bnx2_set_link(struct bnx2 *bp)
bnx2_read_phy(bp, bp->mii_bmsr1, &bmsr); bnx2_read_phy(bp, bp->mii_bmsr1, &bmsr);
bnx2_disable_bmsr1(bp); bnx2_disable_bmsr1(bp);
if ((bp->phy_flags & PHY_SERDES_FLAG) && if ((bp->phy_flags & BNX2_PHY_FLAG_SERDES) &&
(CHIP_NUM(bp) == CHIP_NUM_5706)) { (CHIP_NUM(bp) == CHIP_NUM_5706)) {
u32 val; u32 val;
if (bp->phy_flags & PHY_FORCED_DOWN_FLAG) { if (bp->phy_flags & BNX2_PHY_FLAG_FORCED_DOWN) {
bnx2_5706s_force_link_dn(bp, 0); bnx2_5706s_force_link_dn(bp, 0);
bp->phy_flags &= ~PHY_FORCED_DOWN_FLAG; bp->phy_flags &= ~BNX2_PHY_FLAG_FORCED_DOWN;
} }
val = REG_RD(bp, BNX2_EMAC_STATUS); val = REG_RD(bp, BNX2_EMAC_STATUS);
if (val & BNX2_EMAC_STATUS_LINK) if (val & BNX2_EMAC_STATUS_LINK)
...@@ -1238,7 +1238,7 @@ bnx2_set_link(struct bnx2 *bp) ...@@ -1238,7 +1238,7 @@ bnx2_set_link(struct bnx2 *bp)
if (bmsr & BMSR_LSTATUS) { if (bmsr & BMSR_LSTATUS) {
bp->link_up = 1; bp->link_up = 1;
if (bp->phy_flags & PHY_SERDES_FLAG) { if (bp->phy_flags & BNX2_PHY_FLAG_SERDES) {
if (CHIP_NUM(bp) == CHIP_NUM_5706) if (CHIP_NUM(bp) == CHIP_NUM_5706)
bnx2_5706s_linkup(bp); bnx2_5706s_linkup(bp);
else if (CHIP_NUM(bp) == CHIP_NUM_5708) else if (CHIP_NUM(bp) == CHIP_NUM_5708)
...@@ -1252,18 +1252,18 @@ bnx2_set_link(struct bnx2 *bp) ...@@ -1252,18 +1252,18 @@ bnx2_set_link(struct bnx2 *bp)
bnx2_resolve_flow_ctrl(bp); bnx2_resolve_flow_ctrl(bp);
} }
else { else {
if ((bp->phy_flags & PHY_SERDES_FLAG) && if ((bp->phy_flags & BNX2_PHY_FLAG_SERDES) &&
(bp->autoneg & AUTONEG_SPEED)) (bp->autoneg & AUTONEG_SPEED))
bnx2_disable_forced_2g5(bp); bnx2_disable_forced_2g5(bp);
if (bp->phy_flags & PHY_PARALLEL_DETECT_FLAG) { if (bp->phy_flags & BNX2_PHY_FLAG_PARALLEL_DETECT) {
u32 bmcr; u32 bmcr;
bnx2_read_phy(bp, bp->mii_bmcr, &bmcr); bnx2_read_phy(bp, bp->mii_bmcr, &bmcr);
bmcr |= BMCR_ANENABLE; bmcr |= BMCR_ANENABLE;
bnx2_write_phy(bp, bp->mii_bmcr, bmcr); bnx2_write_phy(bp, bp->mii_bmcr, bmcr);
bp->phy_flags &= ~PHY_PARALLEL_DETECT_FLAG; bp->phy_flags &= ~BNX2_PHY_FLAG_PARALLEL_DETECT;
} }
bp->link_up = 0; bp->link_up = 0;
} }
...@@ -1309,7 +1309,7 @@ bnx2_phy_get_pause_adv(struct bnx2 *bp) ...@@ -1309,7 +1309,7 @@ bnx2_phy_get_pause_adv(struct bnx2 *bp)
if ((bp->req_flow_ctrl & (FLOW_CTRL_RX | FLOW_CTRL_TX)) == if ((bp->req_flow_ctrl & (FLOW_CTRL_RX | FLOW_CTRL_TX)) ==
(FLOW_CTRL_RX | FLOW_CTRL_TX)) { (FLOW_CTRL_RX | FLOW_CTRL_TX)) {
if (bp->phy_flags & PHY_SERDES_FLAG) { if (bp->phy_flags & BNX2_PHY_FLAG_SERDES) {
adv = ADVERTISE_1000XPAUSE; adv = ADVERTISE_1000XPAUSE;
} }
else { else {
...@@ -1317,7 +1317,7 @@ bnx2_phy_get_pause_adv(struct bnx2 *bp) ...@@ -1317,7 +1317,7 @@ bnx2_phy_get_pause_adv(struct bnx2 *bp)
} }
} }
else if (bp->req_flow_ctrl & FLOW_CTRL_TX) { else if (bp->req_flow_ctrl & FLOW_CTRL_TX) {
if (bp->phy_flags & PHY_SERDES_FLAG) { if (bp->phy_flags & BNX2_PHY_FLAG_SERDES) {
adv = ADVERTISE_1000XPSE_ASYM; adv = ADVERTISE_1000XPSE_ASYM;
} }
else { else {
...@@ -1325,7 +1325,7 @@ bnx2_phy_get_pause_adv(struct bnx2 *bp) ...@@ -1325,7 +1325,7 @@ bnx2_phy_get_pause_adv(struct bnx2 *bp)
} }
} }
else if (bp->req_flow_ctrl & FLOW_CTRL_RX) { else if (bp->req_flow_ctrl & FLOW_CTRL_RX) {
if (bp->phy_flags & PHY_SERDES_FLAG) { if (bp->phy_flags & BNX2_PHY_FLAG_SERDES) {
adv = ADVERTISE_1000XPAUSE | ADVERTISE_1000XPSE_ASYM; adv = ADVERTISE_1000XPAUSE | ADVERTISE_1000XPSE_ASYM;
} }
else { else {
...@@ -1400,7 +1400,7 @@ bnx2_setup_serdes_phy(struct bnx2 *bp, u8 port) ...@@ -1400,7 +1400,7 @@ bnx2_setup_serdes_phy(struct bnx2 *bp, u8 port)
u32 adv, bmcr; u32 adv, bmcr;
u32 new_adv = 0; u32 new_adv = 0;
if (bp->phy_flags & REMOTE_PHY_CAP_FLAG) if (bp->phy_flags & BNX2_PHY_FLAG_REMOTE_PHY_CAP)
return (bnx2_setup_remote_phy(bp, port)); return (bnx2_setup_remote_phy(bp, port));
if (!(bp->autoneg & AUTONEG_SPEED)) { if (!(bp->autoneg & AUTONEG_SPEED)) {
...@@ -1510,7 +1510,7 @@ bnx2_setup_serdes_phy(struct bnx2 *bp, u8 port) ...@@ -1510,7 +1510,7 @@ bnx2_setup_serdes_phy(struct bnx2 *bp, u8 port)
} }
#define ETHTOOL_ALL_FIBRE_SPEED \ #define ETHTOOL_ALL_FIBRE_SPEED \
(bp->phy_flags & PHY_2_5G_CAPABLE_FLAG) ? \ (bp->phy_flags & BNX2_PHY_FLAG_2_5G_CAPABLE) ? \
(ADVERTISED_2500baseX_Full | ADVERTISED_1000baseT_Full) :\ (ADVERTISED_2500baseX_Full | ADVERTISED_1000baseT_Full) :\
(ADVERTISED_1000baseT_Full) (ADVERTISED_1000baseT_Full)
...@@ -1574,12 +1574,12 @@ bnx2_set_default_remote_link(struct bnx2 *bp) ...@@ -1574,12 +1574,12 @@ bnx2_set_default_remote_link(struct bnx2 *bp)
static void static void
bnx2_set_default_link(struct bnx2 *bp) bnx2_set_default_link(struct bnx2 *bp)
{ {
if (bp->phy_flags & REMOTE_PHY_CAP_FLAG) if (bp->phy_flags & BNX2_PHY_FLAG_REMOTE_PHY_CAP)
return bnx2_set_default_remote_link(bp); return bnx2_set_default_remote_link(bp);
bp->autoneg = AUTONEG_SPEED | AUTONEG_FLOW_CTRL; bp->autoneg = AUTONEG_SPEED | AUTONEG_FLOW_CTRL;
bp->req_line_speed = 0; bp->req_line_speed = 0;
if (bp->phy_flags & PHY_SERDES_FLAG) { if (bp->phy_flags & BNX2_PHY_FLAG_SERDES) {
u32 reg; u32 reg;
bp->advertising = ETHTOOL_ALL_FIBRE_SPEED | ADVERTISED_Autoneg; bp->advertising = ETHTOOL_ALL_FIBRE_SPEED | ADVERTISED_Autoneg;
...@@ -1809,7 +1809,7 @@ bnx2_setup_phy(struct bnx2 *bp, u8 port) ...@@ -1809,7 +1809,7 @@ bnx2_setup_phy(struct bnx2 *bp, u8 port)
if (bp->loopback == MAC_LOOPBACK) if (bp->loopback == MAC_LOOPBACK)
return 0; return 0;
if (bp->phy_flags & PHY_SERDES_FLAG) { if (bp->phy_flags & BNX2_PHY_FLAG_SERDES) {
return (bnx2_setup_serdes_phy(bp, port)); return (bnx2_setup_serdes_phy(bp, port));
} }
else { else {
...@@ -1844,7 +1844,7 @@ bnx2_init_5709s_phy(struct bnx2 *bp) ...@@ -1844,7 +1844,7 @@ bnx2_init_5709s_phy(struct bnx2 *bp)
bnx2_write_phy(bp, MII_BNX2_BLK_ADDR, MII_BNX2_BLK_ADDR_OVER1G); bnx2_write_phy(bp, MII_BNX2_BLK_ADDR, MII_BNX2_BLK_ADDR_OVER1G);
bnx2_read_phy(bp, MII_BNX2_OVER1G_UP1, &val); bnx2_read_phy(bp, MII_BNX2_OVER1G_UP1, &val);
if (bp->phy_flags & PHY_2_5G_CAPABLE_FLAG) if (bp->phy_flags & BNX2_PHY_FLAG_2_5G_CAPABLE)
val |= BCM5708S_UP1_2G5; val |= BCM5708S_UP1_2G5;
else else
val &= ~BCM5708S_UP1_2G5; val &= ~BCM5708S_UP1_2G5;
...@@ -1887,7 +1887,7 @@ bnx2_init_5708s_phy(struct bnx2 *bp) ...@@ -1887,7 +1887,7 @@ bnx2_init_5708s_phy(struct bnx2 *bp)
val |= BCM5708S_1000X_CTL2_PLLEL_DET_EN; val |= BCM5708S_1000X_CTL2_PLLEL_DET_EN;
bnx2_write_phy(bp, BCM5708S_1000X_CTL2, val); bnx2_write_phy(bp, BCM5708S_1000X_CTL2, val);
if (bp->phy_flags & PHY_2_5G_CAPABLE_FLAG) { if (bp->phy_flags & BNX2_PHY_FLAG_2_5G_CAPABLE) {
bnx2_read_phy(bp, BCM5708S_UP1, &val); bnx2_read_phy(bp, BCM5708S_UP1, &val);
val |= BCM5708S_UP1_2G5; val |= BCM5708S_UP1_2G5;
bnx2_write_phy(bp, BCM5708S_UP1, val); bnx2_write_phy(bp, BCM5708S_UP1, val);
...@@ -1929,7 +1929,7 @@ bnx2_init_5706s_phy(struct bnx2 *bp) ...@@ -1929,7 +1929,7 @@ bnx2_init_5706s_phy(struct bnx2 *bp)
{ {
bnx2_reset_phy(bp); bnx2_reset_phy(bp);
bp->phy_flags &= ~PHY_PARALLEL_DETECT_FLAG; bp->phy_flags &= ~BNX2_PHY_FLAG_PARALLEL_DETECT;
if (CHIP_NUM(bp) == CHIP_NUM_5706) if (CHIP_NUM(bp) == CHIP_NUM_5706)
REG_WR(bp, BNX2_MISC_GP_HW_CTL0, 0x300); REG_WR(bp, BNX2_MISC_GP_HW_CTL0, 0x300);
...@@ -1968,7 +1968,7 @@ bnx2_init_copper_phy(struct bnx2 *bp) ...@@ -1968,7 +1968,7 @@ bnx2_init_copper_phy(struct bnx2 *bp)
bnx2_reset_phy(bp); bnx2_reset_phy(bp);
if (bp->phy_flags & PHY_CRC_FIX_FLAG) { if (bp->phy_flags & BNX2_PHY_FLAG_CRC_FIX) {
bnx2_write_phy(bp, 0x18, 0x0c00); bnx2_write_phy(bp, 0x18, 0x0c00);
bnx2_write_phy(bp, 0x17, 0x000a); bnx2_write_phy(bp, 0x17, 0x000a);
bnx2_write_phy(bp, 0x15, 0x310b); bnx2_write_phy(bp, 0x15, 0x310b);
...@@ -1979,7 +1979,7 @@ bnx2_init_copper_phy(struct bnx2 *bp) ...@@ -1979,7 +1979,7 @@ bnx2_init_copper_phy(struct bnx2 *bp)
bnx2_write_phy(bp, 0x18, 0x0400); bnx2_write_phy(bp, 0x18, 0x0400);
} }
if (bp->phy_flags & PHY_DIS_EARLY_DAC_FLAG) { if (bp->phy_flags & BNX2_PHY_FLAG_DIS_EARLY_DAC) {
bnx2_write_phy(bp, MII_BNX2_DSP_ADDRESS, bnx2_write_phy(bp, MII_BNX2_DSP_ADDRESS,
MII_BNX2_DSP_EXPAND_REG | 0x8); MII_BNX2_DSP_EXPAND_REG | 0x8);
bnx2_read_phy(bp, MII_BNX2_DSP_RW_PORT, &val); bnx2_read_phy(bp, MII_BNX2_DSP_RW_PORT, &val);
...@@ -2019,8 +2019,8 @@ bnx2_init_phy(struct bnx2 *bp) ...@@ -2019,8 +2019,8 @@ bnx2_init_phy(struct bnx2 *bp)
u32 val; u32 val;
int rc = 0; int rc = 0;
bp->phy_flags &= ~PHY_INT_MODE_MASK_FLAG; bp->phy_flags &= ~BNX2_PHY_FLAG_INT_MODE_MASK;
bp->phy_flags |= PHY_INT_MODE_LINK_READY_FLAG; bp->phy_flags |= BNX2_PHY_FLAG_INT_MODE_LINK_READY;
bp->mii_bmcr = MII_BMCR; bp->mii_bmcr = MII_BMCR;
bp->mii_bmsr = MII_BMSR; bp->mii_bmsr = MII_BMSR;
...@@ -2030,7 +2030,7 @@ bnx2_init_phy(struct bnx2 *bp) ...@@ -2030,7 +2030,7 @@ bnx2_init_phy(struct bnx2 *bp)
REG_WR(bp, BNX2_EMAC_ATTENTION_ENA, BNX2_EMAC_ATTENTION_ENA_LINK); REG_WR(bp, BNX2_EMAC_ATTENTION_ENA, BNX2_EMAC_ATTENTION_ENA_LINK);
if (bp->phy_flags & REMOTE_PHY_CAP_FLAG) if (bp->phy_flags & BNX2_PHY_FLAG_REMOTE_PHY_CAP)
goto setup_phy; goto setup_phy;
bnx2_read_phy(bp, MII_PHYSID1, &val); bnx2_read_phy(bp, MII_PHYSID1, &val);
...@@ -2038,7 +2038,7 @@ bnx2_init_phy(struct bnx2 *bp) ...@@ -2038,7 +2038,7 @@ bnx2_init_phy(struct bnx2 *bp)
bnx2_read_phy(bp, MII_PHYSID2, &val); bnx2_read_phy(bp, MII_PHYSID2, &val);
bp->phy_id |= val & 0xffff; bp->phy_id |= val & 0xffff;
if (bp->phy_flags & PHY_SERDES_FLAG) { if (bp->phy_flags & BNX2_PHY_FLAG_SERDES) {
if (CHIP_NUM(bp) == CHIP_NUM_5706) if (CHIP_NUM(bp) == CHIP_NUM_5706)
rc = bnx2_init_5706s_phy(bp); rc = bnx2_init_5706s_phy(bp);
else if (CHIP_NUM(bp) == CHIP_NUM_5708) else if (CHIP_NUM(bp) == CHIP_NUM_5708)
...@@ -4140,8 +4140,8 @@ bnx2_init_remote_phy(struct bnx2 *bp) ...@@ -4140,8 +4140,8 @@ bnx2_init_remote_phy(struct bnx2 *bp)
{ {
u32 val; u32 val;
bp->phy_flags &= ~REMOTE_PHY_CAP_FLAG; bp->phy_flags &= ~BNX2_PHY_FLAG_REMOTE_PHY_CAP;
if (!(bp->phy_flags & PHY_SERDES_FLAG)) if (!(bp->phy_flags & BNX2_PHY_FLAG_SERDES))
return; return;
val = REG_RD_IND(bp, bp->shmem_base + BNX2_FW_CAP_MB); val = REG_RD_IND(bp, bp->shmem_base + BNX2_FW_CAP_MB);
...@@ -4149,7 +4149,7 @@ bnx2_init_remote_phy(struct bnx2 *bp) ...@@ -4149,7 +4149,7 @@ bnx2_init_remote_phy(struct bnx2 *bp)
return; return;
if (val & BNX2_FW_CAP_REMOTE_PHY_CAPABLE) { if (val & BNX2_FW_CAP_REMOTE_PHY_CAPABLE) {
bp->phy_flags |= REMOTE_PHY_CAP_FLAG; bp->phy_flags |= BNX2_PHY_FLAG_REMOTE_PHY_CAP;
val = REG_RD_IND(bp, bp->shmem_base + BNX2_LINK_STATUS); val = REG_RD_IND(bp, bp->shmem_base + BNX2_LINK_STATUS);
if (val & BNX2_LINK_STATUS_SERDES_LINK) if (val & BNX2_LINK_STATUS_SERDES_LINK)
...@@ -4270,7 +4270,8 @@ bnx2_reset_chip(struct bnx2 *bp, u32 reset_code) ...@@ -4270,7 +4270,8 @@ bnx2_reset_chip(struct bnx2 *bp, u32 reset_code)
spin_lock_bh(&bp->phy_lock); spin_lock_bh(&bp->phy_lock);
old_port = bp->phy_port; old_port = bp->phy_port;
bnx2_init_remote_phy(bp); bnx2_init_remote_phy(bp);
if ((bp->phy_flags & REMOTE_PHY_CAP_FLAG) && old_port != bp->phy_port) if ((bp->phy_flags & BNX2_PHY_FLAG_REMOTE_PHY_CAP) &&
old_port != bp->phy_port)
bnx2_set_default_remote_link(bp); bnx2_set_default_remote_link(bp);
spin_unlock_bh(&bp->phy_lock); spin_unlock_bh(&bp->phy_lock);
...@@ -5083,7 +5084,7 @@ bnx2_run_loopback(struct bnx2 *bp, int loopback_mode) ...@@ -5083,7 +5084,7 @@ bnx2_run_loopback(struct bnx2 *bp, int loopback_mode)
bnx2_set_mac_loopback(bp); bnx2_set_mac_loopback(bp);
} }
else if (loopback_mode == BNX2_PHY_LOOPBACK) { else if (loopback_mode == BNX2_PHY_LOOPBACK) {
if (bp->phy_flags & REMOTE_PHY_CAP_FLAG) if (bp->phy_flags & BNX2_PHY_FLAG_REMOTE_PHY_CAP)
return 0; return 0;
bp->loopback = PHY_LOOPBACK; bp->loopback = PHY_LOOPBACK;
...@@ -5253,7 +5254,7 @@ bnx2_test_link(struct bnx2 *bp) ...@@ -5253,7 +5254,7 @@ bnx2_test_link(struct bnx2 *bp)
{ {
u32 bmsr; u32 bmsr;
if (bp->phy_flags & REMOTE_PHY_CAP_FLAG) { if (bp->phy_flags & BNX2_PHY_FLAG_REMOTE_PHY_CAP) {
if (bp->link_up) if (bp->link_up)
return 0; return 0;
return -ENODEV; return -ENODEV;
...@@ -5335,9 +5336,9 @@ bnx2_5706_serdes_timer(struct bnx2 *bp) ...@@ -5335,9 +5336,9 @@ bnx2_5706_serdes_timer(struct bnx2 *bp)
int check_link = 1; int check_link = 1;
spin_lock(&bp->phy_lock); spin_lock(&bp->phy_lock);
if (bp->phy_flags & PHY_FORCED_DOWN_FLAG) { if (bp->phy_flags & BNX2_PHY_FLAG_FORCED_DOWN) {
bnx2_5706s_force_link_dn(bp, 0); bnx2_5706s_force_link_dn(bp, 0);
bp->phy_flags &= ~PHY_FORCED_DOWN_FLAG; bp->phy_flags &= ~BNX2_PHY_FLAG_FORCED_DOWN;
spin_unlock(&bp->phy_lock); spin_unlock(&bp->phy_lock);
return; return;
} }
...@@ -5357,12 +5358,12 @@ bnx2_5706_serdes_timer(struct bnx2 *bp) ...@@ -5357,12 +5358,12 @@ bnx2_5706_serdes_timer(struct bnx2 *bp)
bmcr &= ~BMCR_ANENABLE; bmcr &= ~BMCR_ANENABLE;
bmcr |= BMCR_SPEED1000 | BMCR_FULLDPLX; bmcr |= BMCR_SPEED1000 | BMCR_FULLDPLX;
bnx2_write_phy(bp, bp->mii_bmcr, bmcr); bnx2_write_phy(bp, bp->mii_bmcr, bmcr);
bp->phy_flags |= PHY_PARALLEL_DETECT_FLAG; bp->phy_flags |= BNX2_PHY_FLAG_PARALLEL_DETECT;
} }
} }
} }
else if ((bp->link_up) && (bp->autoneg & AUTONEG_SPEED) && else if ((bp->link_up) && (bp->autoneg & AUTONEG_SPEED) &&
(bp->phy_flags & PHY_PARALLEL_DETECT_FLAG)) { (bp->phy_flags & BNX2_PHY_FLAG_PARALLEL_DETECT)) {
u32 phy2; u32 phy2;
check_link = 0; check_link = 0;
...@@ -5375,7 +5376,7 @@ bnx2_5706_serdes_timer(struct bnx2 *bp) ...@@ -5375,7 +5376,7 @@ bnx2_5706_serdes_timer(struct bnx2 *bp)
bmcr |= BMCR_ANENABLE; bmcr |= BMCR_ANENABLE;
bnx2_write_phy(bp, bp->mii_bmcr, bmcr); bnx2_write_phy(bp, bp->mii_bmcr, bmcr);
bp->phy_flags &= ~PHY_PARALLEL_DETECT_FLAG; bp->phy_flags &= ~BNX2_PHY_FLAG_PARALLEL_DETECT;
} }
} else } else
bp->current_interval = bp->timer_interval; bp->current_interval = bp->timer_interval;
...@@ -5389,7 +5390,7 @@ bnx2_5706_serdes_timer(struct bnx2 *bp) ...@@ -5389,7 +5390,7 @@ bnx2_5706_serdes_timer(struct bnx2 *bp)
if (val & MISC_SHDW_AN_DBG_NOSYNC) { if (val & MISC_SHDW_AN_DBG_NOSYNC) {
bnx2_5706s_force_link_dn(bp, 1); bnx2_5706s_force_link_dn(bp, 1);
bp->phy_flags |= PHY_FORCED_DOWN_FLAG; bp->phy_flags |= BNX2_PHY_FLAG_FORCED_DOWN;
} }
} }
spin_unlock(&bp->phy_lock); spin_unlock(&bp->phy_lock);
...@@ -5398,10 +5399,10 @@ bnx2_5706_serdes_timer(struct bnx2 *bp) ...@@ -5398,10 +5399,10 @@ bnx2_5706_serdes_timer(struct bnx2 *bp)
static void static void
bnx2_5708_serdes_timer(struct bnx2 *bp) bnx2_5708_serdes_timer(struct bnx2 *bp)
{ {
if (bp->phy_flags & REMOTE_PHY_CAP_FLAG) if (bp->phy_flags & BNX2_PHY_FLAG_REMOTE_PHY_CAP)
return; return;
if ((bp->phy_flags & PHY_2_5G_CAPABLE_FLAG) == 0) { if ((bp->phy_flags & BNX2_PHY_FLAG_2_5G_CAPABLE) == 0) {
bp->serdes_an_pending = 0; bp->serdes_an_pending = 0;
return; return;
} }
...@@ -5448,7 +5449,7 @@ bnx2_timer(unsigned long data) ...@@ -5448,7 +5449,7 @@ bnx2_timer(unsigned long data)
REG_WR(bp, BNX2_HC_COMMAND, bp->hc_cmd | REG_WR(bp, BNX2_HC_COMMAND, bp->hc_cmd |
BNX2_HC_COMMAND_STATS_NOW); BNX2_HC_COMMAND_STATS_NOW);
if (bp->phy_flags & PHY_SERDES_FLAG) { if (bp->phy_flags & BNX2_PHY_FLAG_SERDES) {
if (CHIP_NUM(bp) == CHIP_NUM_5706) if (CHIP_NUM(bp) == CHIP_NUM_5706)
bnx2_5706_serdes_timer(bp); bnx2_5706_serdes_timer(bp);
else else
...@@ -5962,7 +5963,7 @@ bnx2_get_settings(struct net_device *dev, struct ethtool_cmd *cmd) ...@@ -5962,7 +5963,7 @@ bnx2_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
int support_serdes = 0, support_copper = 0; int support_serdes = 0, support_copper = 0;
cmd->supported = SUPPORTED_Autoneg; cmd->supported = SUPPORTED_Autoneg;
if (bp->phy_flags & REMOTE_PHY_CAP_FLAG) { if (bp->phy_flags & BNX2_PHY_FLAG_REMOTE_PHY_CAP) {
support_serdes = 1; support_serdes = 1;
support_copper = 1; support_copper = 1;
} else if (bp->phy_port == PORT_FIBRE) } else if (bp->phy_port == PORT_FIBRE)
...@@ -5973,7 +5974,7 @@ bnx2_get_settings(struct net_device *dev, struct ethtool_cmd *cmd) ...@@ -5973,7 +5974,7 @@ bnx2_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
if (support_serdes) { if (support_serdes) {
cmd->supported |= SUPPORTED_1000baseT_Full | cmd->supported |= SUPPORTED_1000baseT_Full |
SUPPORTED_FIBRE; SUPPORTED_FIBRE;
if (bp->phy_flags & PHY_2_5G_CAPABLE_FLAG) if (bp->phy_flags & BNX2_PHY_FLAG_2_5G_CAPABLE)
cmd->supported |= SUPPORTED_2500baseX_Full; cmd->supported |= SUPPORTED_2500baseX_Full;
} }
...@@ -6029,7 +6030,8 @@ bnx2_set_settings(struct net_device *dev, struct ethtool_cmd *cmd) ...@@ -6029,7 +6030,8 @@ bnx2_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
if (cmd->port != PORT_TP && cmd->port != PORT_FIBRE) if (cmd->port != PORT_TP && cmd->port != PORT_FIBRE)
goto err_out_unlock; goto err_out_unlock;
if (cmd->port != bp->phy_port && !(bp->phy_flags & REMOTE_PHY_CAP_FLAG)) if (cmd->port != bp->phy_port &&
!(bp->phy_flags & BNX2_PHY_FLAG_REMOTE_PHY_CAP))
goto err_out_unlock; goto err_out_unlock;
if (cmd->autoneg == AUTONEG_ENABLE) { if (cmd->autoneg == AUTONEG_ENABLE) {
...@@ -6049,7 +6051,7 @@ bnx2_set_settings(struct net_device *dev, struct ethtool_cmd *cmd) ...@@ -6049,7 +6051,7 @@ bnx2_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
advertising = cmd->advertising; advertising = cmd->advertising;
} else if (cmd->advertising == ADVERTISED_2500baseX_Full) { } else if (cmd->advertising == ADVERTISED_2500baseX_Full) {
if (!(bp->phy_flags & PHY_2_5G_CAPABLE_FLAG) || if (!(bp->phy_flags & BNX2_PHY_FLAG_2_5G_CAPABLE) ||
(cmd->port == PORT_TP)) (cmd->port == PORT_TP))
goto err_out_unlock; goto err_out_unlock;
} else if (cmd->advertising == ADVERTISED_1000baseT_Full) } else if (cmd->advertising == ADVERTISED_1000baseT_Full)
...@@ -6072,7 +6074,7 @@ bnx2_set_settings(struct net_device *dev, struct ethtool_cmd *cmd) ...@@ -6072,7 +6074,7 @@ bnx2_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
goto err_out_unlock; goto err_out_unlock;
if (cmd->speed == SPEED_2500 && if (cmd->speed == SPEED_2500 &&
!(bp->phy_flags & PHY_2_5G_CAPABLE_FLAG)) !(bp->phy_flags & BNX2_PHY_FLAG_2_5G_CAPABLE))
goto err_out_unlock; goto err_out_unlock;
} }
else if (cmd->speed == SPEED_1000 || cmd->speed == SPEED_2500) else if (cmd->speed == SPEED_1000 || cmd->speed == SPEED_2500)
...@@ -6217,7 +6219,7 @@ bnx2_nway_reset(struct net_device *dev) ...@@ -6217,7 +6219,7 @@ bnx2_nway_reset(struct net_device *dev)
spin_lock_bh(&bp->phy_lock); spin_lock_bh(&bp->phy_lock);
if (bp->phy_flags & REMOTE_PHY_CAP_FLAG) { if (bp->phy_flags & BNX2_PHY_FLAG_REMOTE_PHY_CAP) {
int rc; int rc;
rc = bnx2_setup_remote_phy(bp, bp->phy_port); rc = bnx2_setup_remote_phy(bp, bp->phy_port);
...@@ -6226,7 +6228,7 @@ bnx2_nway_reset(struct net_device *dev) ...@@ -6226,7 +6228,7 @@ bnx2_nway_reset(struct net_device *dev)
} }
/* Force a link down visible on the other side */ /* Force a link down visible on the other side */
if (bp->phy_flags & PHY_SERDES_FLAG) { if (bp->phy_flags & BNX2_PHY_FLAG_SERDES) {
bnx2_write_phy(bp, bp->mii_bmcr, BMCR_LOOPBACK); bnx2_write_phy(bp, bp->mii_bmcr, BMCR_LOOPBACK);
spin_unlock_bh(&bp->phy_lock); spin_unlock_bh(&bp->phy_lock);
...@@ -6838,7 +6840,7 @@ bnx2_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd) ...@@ -6838,7 +6840,7 @@ bnx2_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
case SIOCGMIIREG: { case SIOCGMIIREG: {
u32 mii_regval; u32 mii_regval;
if (bp->phy_flags & REMOTE_PHY_CAP_FLAG) if (bp->phy_flags & BNX2_PHY_FLAG_REMOTE_PHY_CAP)
return -EOPNOTSUPP; return -EOPNOTSUPP;
if (!netif_running(dev)) if (!netif_running(dev))
...@@ -6857,7 +6859,7 @@ bnx2_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd) ...@@ -6857,7 +6859,7 @@ bnx2_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
if (!capable(CAP_NET_ADMIN)) if (!capable(CAP_NET_ADMIN))
return -EPERM; return -EPERM;
if (bp->phy_flags & REMOTE_PHY_CAP_FLAG) if (bp->phy_flags & BNX2_PHY_FLAG_REMOTE_PHY_CAP)
return -EOPNOTSUPP; return -EOPNOTSUPP;
if (!netif_running(dev)) if (!netif_running(dev))
...@@ -6929,7 +6931,7 @@ bnx2_get_5709_media(struct bnx2 *bp) ...@@ -6929,7 +6931,7 @@ bnx2_get_5709_media(struct bnx2 *bp)
if (bond_id == BNX2_MISC_DUAL_MEDIA_CTRL_BOND_ID_C) if (bond_id == BNX2_MISC_DUAL_MEDIA_CTRL_BOND_ID_C)
return; return;
else if (bond_id == BNX2_MISC_DUAL_MEDIA_CTRL_BOND_ID_S) { else if (bond_id == BNX2_MISC_DUAL_MEDIA_CTRL_BOND_ID_S) {
bp->phy_flags |= PHY_SERDES_FLAG; bp->phy_flags |= BNX2_PHY_FLAG_SERDES;
return; return;
} }
...@@ -6943,7 +6945,7 @@ bnx2_get_5709_media(struct bnx2 *bp) ...@@ -6943,7 +6945,7 @@ bnx2_get_5709_media(struct bnx2 *bp)
case 0x4: case 0x4:
case 0x5: case 0x5:
case 0x6: case 0x6:
bp->phy_flags |= PHY_SERDES_FLAG; bp->phy_flags |= BNX2_PHY_FLAG_SERDES;
return; return;
} }
} else { } else {
...@@ -6951,7 +6953,7 @@ bnx2_get_5709_media(struct bnx2 *bp) ...@@ -6951,7 +6953,7 @@ bnx2_get_5709_media(struct bnx2 *bp)
case 0x1: case 0x1:
case 0x2: case 0x2:
case 0x4: case 0x4:
bp->phy_flags |= PHY_SERDES_FLAG; bp->phy_flags |= BNX2_PHY_FLAG_SERDES;
return; return;
} }
} }
...@@ -7260,10 +7262,10 @@ bnx2_init_board(struct pci_dev *pdev, struct net_device *dev) ...@@ -7260,10 +7262,10 @@ bnx2_init_board(struct pci_dev *pdev, struct net_device *dev)
if (CHIP_NUM(bp) == CHIP_NUM_5709) if (CHIP_NUM(bp) == CHIP_NUM_5709)
bnx2_get_5709_media(bp); bnx2_get_5709_media(bp);
else if (CHIP_BOND_ID(bp) & CHIP_BOND_ID_SERDES_BIT) else if (CHIP_BOND_ID(bp) & CHIP_BOND_ID_SERDES_BIT)
bp->phy_flags |= PHY_SERDES_FLAG; bp->phy_flags |= BNX2_PHY_FLAG_SERDES;
bp->phy_port = PORT_TP; bp->phy_port = PORT_TP;
if (bp->phy_flags & PHY_SERDES_FLAG) { if (bp->phy_flags & BNX2_PHY_FLAG_SERDES) {
bp->phy_port = PORT_FIBRE; bp->phy_port = PORT_FIBRE;
reg = REG_RD_IND(bp, bp->shmem_base + reg = REG_RD_IND(bp, bp->shmem_base +
BNX2_SHARED_HW_CFG_CONFIG); BNX2_SHARED_HW_CFG_CONFIG);
...@@ -7274,17 +7276,17 @@ bnx2_init_board(struct pci_dev *pdev, struct net_device *dev) ...@@ -7274,17 +7276,17 @@ bnx2_init_board(struct pci_dev *pdev, struct net_device *dev)
if (CHIP_NUM(bp) != CHIP_NUM_5706) { if (CHIP_NUM(bp) != CHIP_NUM_5706) {
bp->phy_addr = 2; bp->phy_addr = 2;
if (reg & BNX2_SHARED_HW_CFG_PHY_2_5G) if (reg & BNX2_SHARED_HW_CFG_PHY_2_5G)
bp->phy_flags |= PHY_2_5G_CAPABLE_FLAG; bp->phy_flags |= BNX2_PHY_FLAG_2_5G_CAPABLE;
} }
bnx2_init_remote_phy(bp); bnx2_init_remote_phy(bp);
} else if (CHIP_NUM(bp) == CHIP_NUM_5706 || } else if (CHIP_NUM(bp) == CHIP_NUM_5706 ||
CHIP_NUM(bp) == CHIP_NUM_5708) CHIP_NUM(bp) == CHIP_NUM_5708)
bp->phy_flags |= PHY_CRC_FIX_FLAG; bp->phy_flags |= BNX2_PHY_FLAG_CRC_FIX;
else if (CHIP_NUM(bp) == CHIP_NUM_5709 && else if (CHIP_NUM(bp) == CHIP_NUM_5709 &&
(CHIP_REV(bp) == CHIP_REV_Ax || (CHIP_REV(bp) == CHIP_REV_Ax ||
CHIP_REV(bp) == CHIP_REV_Bx)) CHIP_REV(bp) == CHIP_REV_Bx))
bp->phy_flags |= PHY_DIS_EARLY_DAC_FLAG; bp->phy_flags |= BNX2_PHY_FLAG_DIS_EARLY_DAC;
if ((CHIP_ID(bp) == CHIP_ID_5708_A0) || if ((CHIP_ID(bp) == CHIP_ID_5708_A0) ||
(CHIP_ID(bp) == CHIP_ID_5708_B0) || (CHIP_ID(bp) == CHIP_ID_5708_B0) ||
......
...@@ -6644,16 +6644,16 @@ struct bnx2 { ...@@ -6644,16 +6644,16 @@ struct bnx2 {
spinlock_t indirect_lock; spinlock_t indirect_lock;
u32 phy_flags; u32 phy_flags;
#define PHY_SERDES_FLAG 1 #define BNX2_PHY_FLAG_SERDES 0x00000001
#define PHY_CRC_FIX_FLAG 2 #define BNX2_PHY_FLAG_CRC_FIX 0x00000002
#define PHY_PARALLEL_DETECT_FLAG 4 #define BNX2_PHY_FLAG_PARALLEL_DETECT 0x00000004
#define PHY_2_5G_CAPABLE_FLAG 8 #define BNX2_PHY_FLAG_2_5G_CAPABLE 0x00000008
#define PHY_INT_MODE_MASK_FLAG 0x300 #define BNX2_PHY_FLAG_INT_MODE_MASK 0x00000300
#define PHY_INT_MODE_AUTO_POLLING_FLAG 0x100 #define BNX2_PHY_FLAG_INT_MODE_AUTO_POLLING 0x00000100
#define PHY_INT_MODE_LINK_READY_FLAG 0x200 #define BNX2_PHY_FLAG_INT_MODE_LINK_READY 0x00000200
#define PHY_DIS_EARLY_DAC_FLAG 0x400 #define BNX2_PHY_FLAG_DIS_EARLY_DAC 0x00000400
#define REMOTE_PHY_CAP_FLAG 0x800 #define BNX2_PHY_FLAG_REMOTE_PHY_CAP 0x00000800
#define PHY_FORCED_DOWN_FLAG 0x1000 #define BNX2_PHY_FLAG_FORCED_DOWN 0x00001000
u32 mii_bmcr; u32 mii_bmcr;
u32 mii_bmsr; u32 mii_bmsr;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment