igb: New PHY_ID for i354 device
authorAkeem G Abodunrin <akeem.g.abodunrin@intel.com>
Wed, 28 Aug 2013 02:22:58 +0000 (02:22 +0000)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Wed, 4 Sep 2013 11:57:13 +0000 (04:57 -0700)
This patch changes PHY_ID for i354 device, now using M88E1543
instead of M88E1545.

Signed-off-by: Akeem G Abodunrin <akeem.g.abodunrin@intel.com>
Tested-by: Aaron Brown <aaron.f.brown@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
drivers/net/ethernet/intel/igb/e1000_82575.c
drivers/net/ethernet/intel/igb/e1000_defines.h
drivers/net/ethernet/intel/igb/e1000_phy.c

index d398fad6eedc78d2a8f080f7dd0ec32182548979..b0b33a17947b61dac094afa4d8aa253bb51ca332 100644 (file)
@@ -176,7 +176,7 @@ static s32 igb_init_phy_params_82575(struct e1000_hw *hw)
 
        /* Verify phy id and set remaining function pointers */
        switch (phy->id) {
-       case M88E1545_E_PHY_ID:
+       case M88E1543_E_PHY_ID:
        case I347AT4_E_PHY_ID:
        case M88E1112_E_PHY_ID:
        case M88E1111_I_PHY_ID:
@@ -1448,7 +1448,7 @@ static s32 igb_setup_copper_link_82575(struct e1000_hw *hw)
                switch (hw->phy.id) {
                case I347AT4_E_PHY_ID:
                case M88E1112_E_PHY_ID:
-               case M88E1545_E_PHY_ID:
+               case M88E1543_E_PHY_ID:
                case I210_I_PHY_ID:
                        ret_val = igb_copper_link_setup_m88_gen2(hw);
                        break;
@@ -2477,28 +2477,28 @@ s32 igb_set_eee_i354(struct e1000_hw *hw)
        u16 phy_data;
 
        if ((hw->phy.media_type != e1000_media_type_copper) ||
-           (phy->id != M88E1545_E_PHY_ID))
+           (phy->id != M88E1543_E_PHY_ID))
                goto out;
 
        if (!hw->dev_spec._82575.eee_disable) {
                /* Switch to PHY page 18. */
-               ret_val = phy->ops.write_reg(hw, E1000_M88E1545_PAGE_ADDR, 18);
+               ret_val = phy->ops.write_reg(hw, E1000_M88E1543_PAGE_ADDR, 18);
                if (ret_val)
                        goto out;
 
-               ret_val = phy->ops.read_reg(hw, E1000_M88E1545_EEE_CTRL_1,
+               ret_val = phy->ops.read_reg(hw, E1000_M88E1543_EEE_CTRL_1,
                                            &phy_data);
                if (ret_val)
                        goto out;
 
-               phy_data |= E1000_M88E1545_EEE_CTRL_1_MS;
-               ret_val = phy->ops.write_reg(hw, E1000_M88E1545_EEE_CTRL_1,
+               phy_data |= E1000_M88E1543_EEE_CTRL_1_MS;
+               ret_val = phy->ops.write_reg(hw, E1000_M88E1543_EEE_CTRL_1,
                                             phy_data);
                if (ret_val)
                        goto out;
 
                /* Return the PHY to page 0. */
-               ret_val = phy->ops.write_reg(hw, E1000_M88E1545_PAGE_ADDR, 0);
+               ret_val = phy->ops.write_reg(hw, E1000_M88E1543_PAGE_ADDR, 0);
                if (ret_val)
                        goto out;
 
@@ -2549,7 +2549,7 @@ s32 igb_get_eee_status_i354(struct e1000_hw *hw, bool *status)
 
        /* Check if EEE is supported on this device. */
        if ((hw->phy.media_type != e1000_media_type_copper) ||
-           (phy->id != M88E1545_E_PHY_ID))
+           (phy->id != M88E1543_E_PHY_ID))
                goto out;
 
        ret_val = igb_read_xmdio_reg(hw, E1000_PCS_STATUS_ADDR_I354,
index 60559af39a98b09e091fc30298dd1991a73f2bf1..978eca31ceda94a146bc9095221a0205f65325e8 100644 (file)
 #define I350_I_PHY_ID        0x015403B0
 #define M88_VENDOR           0x0141
 #define I210_I_PHY_ID        0x01410C00
-#define M88E1545_E_PHY_ID    0x01410EA0
+#define M88E1543_E_PHY_ID    0x01410EA0
 
 /* M88E1000 Specific Registers */
 #define M88E1000_PHY_SPEC_CTRL     0x10  /* PHY Specific Control Register */
 #define E1000_EEE_LP_ADV_DEV_I210    7           /* EEE LP Adv Device */
 #define E1000_EEE_LP_ADV_ADDR_I210   61          /* EEE LP Adv Register */
 #define E1000_MMDAC_FUNC_DATA        0x4000      /* Data, no post increment */
-#define E1000_M88E1545_PAGE_ADDR       0x16       /* Page Offset Register */
-#define E1000_M88E1545_EEE_CTRL_1      0x0
-#define E1000_M88E1545_EEE_CTRL_1_MS   0x0001     /* EEE Master/Slave */
+#define E1000_M88E1543_PAGE_ADDR       0x16       /* Page Offset Register */
+#define E1000_M88E1543_EEE_CTRL_1      0x0
+#define E1000_M88E1543_EEE_CTRL_1_MS   0x0001     /* EEE Master/Slave */
 #define E1000_EEE_ADV_DEV_I354         7
 #define E1000_EEE_ADV_ADDR_I354                60
 #define E1000_EEE_ADV_100_SUPPORTED    (1 << 1)   /* 100BaseTx EEE Supported */
index 60461946f98c5ad64bb6d62bf7beefe81e39464e..5adccbc90740d7b2654355ad86866ff611514e22 100644 (file)
@@ -1806,7 +1806,7 @@ s32 igb_get_cable_length_m88_gen2(struct e1000_hw *hw)
                phy->max_cable_length = phy_data / (is_cm ? 100 : 1);
                phy->cable_length = phy_data / (is_cm ? 100 : 1);
                break;
-       case M88E1545_E_PHY_ID:
+       case M88E1543_E_PHY_ID:
        case I347AT4_E_PHY_ID:
                /* Remember the original page select and set it to 7 */
                ret_val = phy->ops.read_reg(hw, I347AT4_PAGE_SELECT,
This page took 0.048512 seconds and 5 git commands to generate.