Commit 16b311cc authored by Eilon Greenstein's avatar Eilon Greenstein Committed by David S. Miller

bnx2x: Handling PHY FW load failure

If the default PHY version (0x4321) is read - the PHY FW load failed
Signed-off-by: default avatarYaniv Rosner <yanivr@broadcom.com>
Signed-off-by: default avatarEilon Greenstein <eilong@broadcom.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 44722d1d
...@@ -4404,10 +4404,11 @@ static u8 bnx2x_8073_common_init_phy(struct bnx2x *bp, u32 shmem_base) ...@@ -4404,10 +4404,11 @@ static u8 bnx2x_8073_common_init_phy(struct bnx2x *bp, u32 shmem_base)
ext_phy_addr[port], ext_phy_addr[port],
MDIO_PMA_DEVAD, MDIO_PMA_DEVAD,
MDIO_PMA_REG_ROM_VER1, &fw_ver1); MDIO_PMA_REG_ROM_VER1, &fw_ver1);
if (fw_ver1 == 0) { if (fw_ver1 == 0 || fw_ver1 == 0x4321) {
DP(NETIF_MSG_LINK, DP(NETIF_MSG_LINK,
"bnx2x_8073_common_init_phy port %x " "bnx2x_8073_common_init_phy port %x:"
"fw Download failed\n", port); "Download failed. fw version = 0x%x\n",
port, fw_ver1);
return -EINVAL; return -EINVAL;
} }
......
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