r8169: use phy_read/write instead of rtl_readphy/writephy
authorHeiner Kallweit <hkallweit1@gmail.com>
Thu, 9 Jan 2020 19:31:47 +0000 (20:31 +0100)
committerDavid S. Miller <davem@davemloft.net>
Sat, 11 Jan 2020 00:41:35 +0000 (16:41 -0800)
Replace rtl_writephy and rtl_readphy with the respective phylib
functions.

Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/realtek/r8169_main.c

index 457c8cd..595659c 100644 (file)
@@ -2513,10 +2513,10 @@ static void rtl8169sce_hw_phy_config(struct rtl8169_private *tp,
 static void rtl8168bb_hw_phy_config(struct rtl8169_private *tp,
                                    struct phy_device *phydev)
 {
-       rtl_writephy(tp, 0x1f, 0x0001);
+       phy_write(phydev, 0x1f, 0x0001);
        phy_set_bits(phydev, 0x16, BIT(0));
-       rtl_writephy(tp, 0x10, 0xf41b);
-       rtl_writephy(tp, 0x1f, 0x0000);
+       phy_write(phydev, 0x10, 0xf41b);
+       phy_write(phydev, 0x1f, 0x0000);
 }
 
 static void rtl8168bef_hw_phy_config(struct rtl8169_private *tp,
@@ -2671,15 +2671,16 @@ static const struct phy_reg rtl8168d_1_phy_reg_init_1[] = {
 
 static void rtl8168d_apply_firmware_cond(struct rtl8169_private *tp, u16 val)
 {
+       struct phy_device *phydev = tp->phydev;
        u16 reg_val;
 
-       rtl_writephy(tp, 0x1f, 0x0005);
-       rtl_writephy(tp, 0x05, 0x001b);
-       reg_val = rtl_readphy(tp, 0x06);
-       rtl_writephy(tp, 0x1f, 0x0000);
+       phy_write(phydev, 0x1f, 0x0005);
+       phy_write(phydev, 0x05, 0x001b);
+       reg_val = phy_read(phydev, 0x06);
+       phy_write(phydev, 0x1f, 0x0000);
 
        if (reg_val != val)
-               netif_warn(tp, hw, tp->dev, "chipset not ready for firmware\n");
+               phydev_warn(phydev, "chipset not ready for firmware\n");
        else
                rtl_apply_firmware(tp);
 }
@@ -2693,7 +2694,7 @@ static void rtl8168d_1_hw_phy_config(struct rtl8169_private *tp,
         * Rx Error Issue
         * Fine Tune Switching regulator parameter
         */
-       rtl_writephy(tp, 0x1f, 0x0002);
+       phy_write(phydev, 0x1f, 0x0002);
        phy_modify(phydev, 0x0b, 0x00ef, 0x0010);
        phy_modify(phydev, 0x0c, 0x5d00, 0xa200);
 
@@ -2702,7 +2703,7 @@ static void rtl8168d_1_hw_phy_config(struct rtl8169_private *tp,
 
                rtl_writephy_batch(phydev, rtl8168d_1_phy_reg_init_1);
 
-               val = rtl_readphy(tp, 0x0d);
+               val = phy_read(phydev, 0x0d);
 
                if ((val & 0x00ff) != 0x006c) {
                        static const u32 set[] = {
@@ -2711,11 +2712,11 @@ static void rtl8168d_1_hw_phy_config(struct rtl8169_private *tp,
                        };
                        int i;
 
-                       rtl_writephy(tp, 0x1f, 0x0002);
+                       phy_write(phydev, 0x1f, 0x0002);
 
                        val &= 0xff00;
                        for (i = 0; i < ARRAY_SIZE(set); i++)
-                               rtl_writephy(tp, 0x0d, val | set[i]);
+                               phy_write(phydev, 0x0d, val | set[i]);
                }
        } else {
                phy_write_paged(phydev, 0x0002, 0x05, 0x6662);
@@ -2723,15 +2724,15 @@ static void rtl8168d_1_hw_phy_config(struct rtl8169_private *tp,
        }
 
        /* RSET couple improve */
-       rtl_writephy(tp, 0x1f, 0x0002);
+       phy_write(phydev, 0x1f, 0x0002);
        phy_set_bits(phydev, 0x0d, 0x0300);
        phy_set_bits(phydev, 0x0f, 0x0010);
 
        /* Fine tune PLL performance */
-       rtl_writephy(tp, 0x1f, 0x0002);
+       phy_write(phydev, 0x1f, 0x0002);
        phy_modify(phydev, 0x02, 0x0600, 0x0100);
        phy_clear_bits(phydev, 0x03, 0xe000);
-       rtl_writephy(tp, 0x1f, 0x0000);
+       phy_write(phydev, 0x1f, 0x0000);
 
        rtl8168d_apply_firmware_cond(tp, 0xbf00);
 }
@@ -2746,7 +2747,7 @@ static void rtl8168d_2_hw_phy_config(struct rtl8169_private *tp,
 
                rtl_writephy_batch(phydev, rtl8168d_1_phy_reg_init_1);
 
-               val = rtl_readphy(tp, 0x0d);
+               val = phy_read(phydev, 0x0d);
                if ((val & 0x00ff) != 0x006c) {
                        static const u32 set[] = {
                                0x0065, 0x0066, 0x0067, 0x0068,
@@ -2754,11 +2755,11 @@ static void rtl8168d_2_hw_phy_config(struct rtl8169_private *tp,
                        };
                        int i;
 
-                       rtl_writephy(tp, 0x1f, 0x0002);
+                       phy_write(phydev, 0x1f, 0x0002);
 
                        val &= 0xff00;
                        for (i = 0; i < ARRAY_SIZE(set); i++)
-                               rtl_writephy(tp, 0x0d, val | set[i]);
+                               phy_write(phydev, 0x0d, val | set[i]);
                }
        } else {
                phy_write_paged(phydev, 0x0002, 0x05, 0x2642);
@@ -2766,10 +2767,10 @@ static void rtl8168d_2_hw_phy_config(struct rtl8169_private *tp,
        }
 
        /* Fine tune PLL performance */
-       rtl_writephy(tp, 0x1f, 0x0002);
+       phy_write(phydev, 0x1f, 0x0002);
        phy_modify(phydev, 0x02, 0x0600, 0x0100);
        phy_clear_bits(phydev, 0x03, 0xe000);
-       rtl_writephy(tp, 0x1f, 0x0000);
+       phy_write(phydev, 0x1f, 0x0000);
 
        /* Switching regulator Slew rate */
        phy_modify_paged(phydev, 0x0002, 0x0f, 0x0000, 0x0017);
@@ -2919,10 +2920,10 @@ static void rtl8168e_2_hw_phy_config(struct rtl8169_private *tp,
        r8168d_phy_param(phydev, 0x8b76, 0xffff, 0x8000);
 
        /* For 4-corner performance improve */
-       rtl_writephy(tp, 0x1f, 0x0005);
-       rtl_writephy(tp, 0x05, 0x8b80);
+       phy_write(phydev, 0x1f, 0x0005);
+       phy_write(phydev, 0x05, 0x8b80);
        phy_set_bits(phydev, 0x17, 0x0006);
-       rtl_writephy(tp, 0x1f, 0x0000);
+       phy_write(phydev, 0x1f, 0x0000);
 
        /* PHY auto speed down */
        r8168d_modify_extpage(phydev, 0x002d, 0x18, 0x0000, 0x0010);
@@ -2937,10 +2938,10 @@ static void rtl8168e_2_hw_phy_config(struct rtl8169_private *tp,
        rtl8168f_config_eee_phy(phydev);
 
        /* Green feature */
-       rtl_writephy(tp, 0x1f, 0x0003);
+       phy_write(phydev, 0x1f, 0x0003);
        phy_set_bits(phydev, 0x19, BIT(0));
        phy_set_bits(phydev, 0x10, BIT(10));
-       rtl_writephy(tp, 0x1f, 0x0000);
+       phy_write(phydev, 0x1f, 0x0000);
        phy_modify_paged(phydev, 0x0005, 0x01, 0, BIT(8));
 }
 
@@ -3036,10 +3037,10 @@ static void rtl8411_hw_phy_config(struct rtl8169_private *tp,
        r8168d_phy_param(phydev, 0x8b85, 0x0000, 0x8000);
 
        /* Green feature */
-       rtl_writephy(tp, 0x1f, 0x0003);
+       phy_write(phydev, 0x1f, 0x0003);
        phy_clear_bits(phydev, 0x19, BIT(0));
        phy_clear_bits(phydev, 0x10, BIT(10));
-       rtl_writephy(tp, 0x1f, 0x0000);
+       phy_write(phydev, 0x1f, 0x0000);
 }
 
 static void rtl8168g_disable_aldps(struct phy_device *phydev)
@@ -3088,16 +3089,16 @@ static void rtl8168g_1_hw_phy_config(struct rtl8169_private *tp,
        phy_modify_paged(phydev, 0x0c42, 0x11, BIT(13), BIT(14));
 
        /* Improve SWR Efficiency */
-       rtl_writephy(tp, 0x1f, 0x0bcd);
-       rtl_writephy(tp, 0x14, 0x5065);
-       rtl_writephy(tp, 0x14, 0xd065);
-       rtl_writephy(tp, 0x1f, 0x0bc8);
-       rtl_writephy(tp, 0x11, 0x5655);
-       rtl_writephy(tp, 0x1f, 0x0bcd);
-       rtl_writephy(tp, 0x14, 0x1065);
-       rtl_writephy(tp, 0x14, 0x9065);
-       rtl_writephy(tp, 0x14, 0x1065);
-       rtl_writephy(tp, 0x1f, 0x0000);
+       phy_write(phydev, 0x1f, 0x0bcd);
+       phy_write(phydev, 0x14, 0x5065);
+       phy_write(phydev, 0x14, 0xd065);
+       phy_write(phydev, 0x1f, 0x0bc8);
+       phy_write(phydev, 0x11, 0x5655);
+       phy_write(phydev, 0x1f, 0x0bcd);
+       phy_write(phydev, 0x14, 0x1065);
+       phy_write(phydev, 0x14, 0x9065);
+       phy_write(phydev, 0x14, 0x1065);
+       phy_write(phydev, 0x1f, 0x0000);
 
        rtl8168g_disable_aldps(phydev);
        rtl8168g_config_eee_phy(phydev);
@@ -3286,16 +3287,16 @@ static void rtl8168ep_2_hw_phy_config(struct rtl8169_private *tp,
        r8168g_phy_param(phydev, 0x80d7, 0xff00, 0x8400);
 
        /* Force PWM-mode */
-       rtl_writephy(tp, 0x1f, 0x0bcd);
-       rtl_writephy(tp, 0x14, 0x5065);
-       rtl_writephy(tp, 0x14, 0xd065);
-       rtl_writephy(tp, 0x1f, 0x0bc8);
-       rtl_writephy(tp, 0x12, 0x00ed);
-       rtl_writephy(tp, 0x1f, 0x0bcd);
-       rtl_writephy(tp, 0x14, 0x1065);
-       rtl_writephy(tp, 0x14, 0x9065);
-       rtl_writephy(tp, 0x14, 0x1065);
-       rtl_writephy(tp, 0x1f, 0x0000);
+       phy_write(phydev, 0x1f, 0x0bcd);
+       phy_write(phydev, 0x14, 0x5065);
+       phy_write(phydev, 0x14, 0xd065);
+       phy_write(phydev, 0x1f, 0x0bc8);
+       phy_write(phydev, 0x12, 0x00ed);
+       phy_write(phydev, 0x1f, 0x0bcd);
+       phy_write(phydev, 0x14, 0x1065);
+       phy_write(phydev, 0x14, 0x9065);
+       phy_write(phydev, 0x14, 0x1065);
+       phy_write(phydev, 0x1f, 0x0000);
 
        rtl8168g_disable_aldps(phydev);
        rtl8168g_config_eee_phy(phydev);
@@ -3380,10 +3381,10 @@ static void rtl8402_hw_phy_config(struct rtl8169_private *tp,
        rtl_apply_firmware(tp);
 
        /* EEE setting */
-       rtl_writephy(tp, 0x1f, 0x0004);
-       rtl_writephy(tp, 0x10, 0x401f);
-       rtl_writephy(tp, 0x19, 0x7030);
-       rtl_writephy(tp, 0x1f, 0x0000);
+       phy_write(phydev, 0x1f, 0x0004);
+       phy_write(phydev, 0x10, 0x401f);
+       phy_write(phydev, 0x19, 0x7030);
+       phy_write(phydev, 0x1f, 0x0000);
 }
 
 static void rtl8106e_hw_phy_config(struct rtl8169_private *tp,
@@ -4680,9 +4681,7 @@ static void rtl_hw_start_8168h_1(struct rtl8169_private *tp)
 
        rtl_pcie_state_l2l3_disable(tp);
 
-       rtl_writephy(tp, 0x1f, 0x0c42);
-       rg_saw_cnt = (rtl_readphy(tp, 0x13) & 0x3fff);
-       rtl_writephy(tp, 0x1f, 0x0000);
+       rg_saw_cnt = phy_read_paged(tp->phydev, 0x0c42, 0x13) & 0x3fff;
        if (rg_saw_cnt > 0) {
                u16 sw_cnt_1ms_ini;