mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 11:46:19 +00:00
bnx2x: Legacy speeds autoneg failures
10M/100M autoneg was not establishing link. Signed-off-by: Yaniv Rosner <yanivr@broadcom.com> Signed-off-by: Eilon Greenstein <eilong@broadcom.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
3858276b71
commit
44722d1d21
1 changed files with 8 additions and 2 deletions
|
@ -3882,9 +3882,15 @@ static u8 bnx2x_link_initialize(struct link_params *params,
|
|||
}
|
||||
|
||||
if (vars->phy_flags & PHY_XGXS_FLAG) {
|
||||
if (params->req_line_speed &&
|
||||
if ((params->req_line_speed &&
|
||||
((params->req_line_speed == SPEED_100) ||
|
||||
(params->req_line_speed == SPEED_10))) {
|
||||
(params->req_line_speed == SPEED_10))) ||
|
||||
(!params->req_line_speed &&
|
||||
(params->speed_cap_mask >=
|
||||
PORT_HW_CFG_SPEED_CAPABILITY_D0_10M_FULL) &&
|
||||
(params->speed_cap_mask <
|
||||
PORT_HW_CFG_SPEED_CAPABILITY_D0_1G)
|
||||
)) {
|
||||
vars->phy_flags |= PHY_SGMII_FLAG;
|
||||
} else {
|
||||
vars->phy_flags &= ~PHY_SGMII_FLAG;
|
||||
|
|
Loading…
Reference in a new issue