Skip to content

Commit

Permalink
r8169: adjust rtl8169_set_speed_xmii function.
Browse files Browse the repository at this point in the history
- adjust code of rtl8169_set_speed_xmii function
- remove parts of code which are done in rtl_pll_power_up
  function (8168 only)

Signed-off-by: Hayes Wang <hayeswang@realtek.com>
Acked-by: Francois Romieu <romieu@fr.zoreil.com>
  • Loading branch information
Hayes Wang authored and Francois Romieu committed Mar 1, 2011
1 parent 8da83f8 commit 716b50a
Showing 1 changed file with 2 additions and 14 deletions.
16 changes: 2 additions & 14 deletions drivers/net/r8169.c
Original file line number Diff line number Diff line change
Expand Up @@ -1124,6 +1124,8 @@ static int rtl8169_set_speed_xmii(struct net_device *dev,
struct rtl8169_private *tp = netdev_priv(dev);
int giga_ctrl, bmcr;

rtl_writephy(tp, 0x1f, 0x0000);

if (autoneg == AUTONEG_ENABLE) {
int auto_nego;

Expand Down Expand Up @@ -1152,18 +1154,6 @@ static int rtl8169_set_speed_xmii(struct net_device *dev,

bmcr = BMCR_ANENABLE | BMCR_ANRESTART;

if ((tp->mac_version == RTL_GIGA_MAC_VER_11) ||
(tp->mac_version == RTL_GIGA_MAC_VER_12) ||
(tp->mac_version >= RTL_GIGA_MAC_VER_17)) {
/*
* Wake up the PHY.
* Vendor specific (0x1f) and reserved (0x0e) MII
* registers.
*/
rtl_writephy(tp, 0x1f, 0x0000);
rtl_writephy(tp, 0x0e, 0x0000);
}

rtl_writephy(tp, MII_ADVERTISE, auto_nego);
rtl_writephy(tp, MII_CTRL1000, giga_ctrl);
} else {
Expand All @@ -1178,8 +1168,6 @@ static int rtl8169_set_speed_xmii(struct net_device *dev,

if (duplex == DUPLEX_FULL)
bmcr |= BMCR_FULLDPLX;

rtl_writephy(tp, 0x1f, 0x0000);
}

tp->phy_1000_ctrl_reg = giga_ctrl;
Expand Down

0 comments on commit 716b50a

Please sign in to comment.