diff options
Diffstat (limited to 'drivers/net/e1000/e1000_hw.c')
-rw-r--r-- | drivers/net/e1000/e1000_hw.c | 350 |
1 files changed, 272 insertions, 78 deletions
diff --git a/drivers/net/e1000/e1000_hw.c b/drivers/net/e1000/e1000_hw.c index c7e242b69a18..7501d977d992 100644 --- a/drivers/net/e1000/e1000_hw.c +++ b/drivers/net/e1000/e1000_hw.c | |||
@@ -124,16 +124,22 @@ static s32 e1000_set_phy_type(struct e1000_hw *hw) | |||
124 | case M88E1000_I_PHY_ID: | 124 | case M88E1000_I_PHY_ID: |
125 | case M88E1011_I_PHY_ID: | 125 | case M88E1011_I_PHY_ID: |
126 | case M88E1111_I_PHY_ID: | 126 | case M88E1111_I_PHY_ID: |
127 | case M88E1118_E_PHY_ID: | ||
127 | hw->phy_type = e1000_phy_m88; | 128 | hw->phy_type = e1000_phy_m88; |
128 | break; | 129 | break; |
129 | case IGP01E1000_I_PHY_ID: | 130 | case IGP01E1000_I_PHY_ID: |
130 | if (hw->mac_type == e1000_82541 || | 131 | if (hw->mac_type == e1000_82541 || |
131 | hw->mac_type == e1000_82541_rev_2 || | 132 | hw->mac_type == e1000_82541_rev_2 || |
132 | hw->mac_type == e1000_82547 || | 133 | hw->mac_type == e1000_82547 || |
133 | hw->mac_type == e1000_82547_rev_2) { | 134 | hw->mac_type == e1000_82547_rev_2) |
134 | hw->phy_type = e1000_phy_igp; | 135 | hw->phy_type = e1000_phy_igp; |
135 | break; | 136 | break; |
136 | } | 137 | case RTL8211B_PHY_ID: |
138 | hw->phy_type = e1000_phy_8211; | ||
139 | break; | ||
140 | case RTL8201N_PHY_ID: | ||
141 | hw->phy_type = e1000_phy_8201; | ||
142 | break; | ||
137 | default: | 143 | default: |
138 | /* Should never have loaded on this device */ | 144 | /* Should never have loaded on this device */ |
139 | hw->phy_type = e1000_phy_undefined; | 145 | hw->phy_type = e1000_phy_undefined; |
@@ -318,6 +324,9 @@ s32 e1000_set_mac_type(struct e1000_hw *hw) | |||
318 | case E1000_DEV_ID_82547GI: | 324 | case E1000_DEV_ID_82547GI: |
319 | hw->mac_type = e1000_82547_rev_2; | 325 | hw->mac_type = e1000_82547_rev_2; |
320 | break; | 326 | break; |
327 | case E1000_DEV_ID_INTEL_CE4100_GBE: | ||
328 | hw->mac_type = e1000_ce4100; | ||
329 | break; | ||
321 | default: | 330 | default: |
322 | /* Should never have loaded on this device */ | 331 | /* Should never have loaded on this device */ |
323 | return -E1000_ERR_MAC_TYPE; | 332 | return -E1000_ERR_MAC_TYPE; |
@@ -372,6 +381,9 @@ void e1000_set_media_type(struct e1000_hw *hw) | |||
372 | case e1000_82542_rev2_1: | 381 | case e1000_82542_rev2_1: |
373 | hw->media_type = e1000_media_type_fiber; | 382 | hw->media_type = e1000_media_type_fiber; |
374 | break; | 383 | break; |
384 | case e1000_ce4100: | ||
385 | hw->media_type = e1000_media_type_copper; | ||
386 | break; | ||
375 | default: | 387 | default: |
376 | status = er32(STATUS); | 388 | status = er32(STATUS); |
377 | if (status & E1000_STATUS_TBIMODE) { | 389 | if (status & E1000_STATUS_TBIMODE) { |
@@ -460,6 +472,7 @@ s32 e1000_reset_hw(struct e1000_hw *hw) | |||
460 | /* Reset is performed on a shadow of the control register */ | 472 | /* Reset is performed on a shadow of the control register */ |
461 | ew32(CTRL_DUP, (ctrl | E1000_CTRL_RST)); | 473 | ew32(CTRL_DUP, (ctrl | E1000_CTRL_RST)); |
462 | break; | 474 | break; |
475 | case e1000_ce4100: | ||
463 | default: | 476 | default: |
464 | ew32(CTRL, (ctrl | E1000_CTRL_RST)); | 477 | ew32(CTRL, (ctrl | E1000_CTRL_RST)); |
465 | break; | 478 | break; |
@@ -952,6 +965,67 @@ static s32 e1000_setup_fiber_serdes_link(struct e1000_hw *hw) | |||
952 | } | 965 | } |
953 | 966 | ||
954 | /** | 967 | /** |
968 | * e1000_copper_link_rtl_setup - Copper link setup for e1000_phy_rtl series. | ||
969 | * @hw: Struct containing variables accessed by shared code | ||
970 | * | ||
971 | * Commits changes to PHY configuration by calling e1000_phy_reset(). | ||
972 | */ | ||
973 | static s32 e1000_copper_link_rtl_setup(struct e1000_hw *hw) | ||
974 | { | ||
975 | s32 ret_val; | ||
976 | |||
977 | /* SW reset the PHY so all changes take effect */ | ||
978 | ret_val = e1000_phy_reset(hw); | ||
979 | if (ret_val) { | ||
980 | e_dbg("Error Resetting the PHY\n"); | ||
981 | return ret_val; | ||
982 | } | ||
983 | |||
984 | return E1000_SUCCESS; | ||
985 | } | ||
986 | |||
987 | static s32 gbe_dhg_phy_setup(struct e1000_hw *hw) | ||
988 | { | ||
989 | s32 ret_val; | ||
990 | u32 ctrl_aux; | ||
991 | |||
992 | switch (hw->phy_type) { | ||
993 | case e1000_phy_8211: | ||
994 | ret_val = e1000_copper_link_rtl_setup(hw); | ||
995 | if (ret_val) { | ||
996 | e_dbg("e1000_copper_link_rtl_setup failed!\n"); | ||
997 | return ret_val; | ||
998 | } | ||
999 | break; | ||
1000 | case e1000_phy_8201: | ||
1001 | /* Set RMII mode */ | ||
1002 | ctrl_aux = er32(CTL_AUX); | ||
1003 | ctrl_aux |= E1000_CTL_AUX_RMII; | ||
1004 | ew32(CTL_AUX, ctrl_aux); | ||
1005 | E1000_WRITE_FLUSH(); | ||
1006 | |||
1007 | /* Disable the J/K bits required for receive */ | ||
1008 | ctrl_aux = er32(CTL_AUX); | ||
1009 | ctrl_aux |= 0x4; | ||
1010 | ctrl_aux &= ~0x2; | ||
1011 | ew32(CTL_AUX, ctrl_aux); | ||
1012 | E1000_WRITE_FLUSH(); | ||
1013 | ret_val = e1000_copper_link_rtl_setup(hw); | ||
1014 | |||
1015 | if (ret_val) { | ||
1016 | e_dbg("e1000_copper_link_rtl_setup failed!\n"); | ||
1017 | return ret_val; | ||
1018 | } | ||
1019 | break; | ||
1020 | default: | ||
1021 | e_dbg("Error Resetting the PHY\n"); | ||
1022 | return E1000_ERR_PHY_TYPE; | ||
1023 | } | ||
1024 | |||
1025 | return E1000_SUCCESS; | ||
1026 | } | ||
1027 | |||
1028 | /** | ||
955 | * e1000_copper_link_preconfig - early configuration for copper | 1029 | * e1000_copper_link_preconfig - early configuration for copper |
956 | * @hw: Struct containing variables accessed by shared code | 1030 | * @hw: Struct containing variables accessed by shared code |
957 | * | 1031 | * |
@@ -1286,6 +1360,10 @@ static s32 e1000_copper_link_autoneg(struct e1000_hw *hw) | |||
1286 | if (hw->autoneg_advertised == 0) | 1360 | if (hw->autoneg_advertised == 0) |
1287 | hw->autoneg_advertised = AUTONEG_ADVERTISE_SPEED_DEFAULT; | 1361 | hw->autoneg_advertised = AUTONEG_ADVERTISE_SPEED_DEFAULT; |
1288 | 1362 | ||
1363 | /* IFE/RTL8201N PHY only supports 10/100 */ | ||
1364 | if (hw->phy_type == e1000_phy_8201) | ||
1365 | hw->autoneg_advertised &= AUTONEG_ADVERTISE_10_100_ALL; | ||
1366 | |||
1289 | e_dbg("Reconfiguring auto-neg advertisement params\n"); | 1367 | e_dbg("Reconfiguring auto-neg advertisement params\n"); |
1290 | ret_val = e1000_phy_setup_autoneg(hw); | 1368 | ret_val = e1000_phy_setup_autoneg(hw); |
1291 | if (ret_val) { | 1369 | if (ret_val) { |
@@ -1341,7 +1419,7 @@ static s32 e1000_copper_link_postconfig(struct e1000_hw *hw) | |||
1341 | s32 ret_val; | 1419 | s32 ret_val; |
1342 | e_dbg("e1000_copper_link_postconfig"); | 1420 | e_dbg("e1000_copper_link_postconfig"); |
1343 | 1421 | ||
1344 | if (hw->mac_type >= e1000_82544) { | 1422 | if ((hw->mac_type >= e1000_82544) && (hw->mac_type != e1000_ce4100)) { |
1345 | e1000_config_collision_dist(hw); | 1423 | e1000_config_collision_dist(hw); |
1346 | } else { | 1424 | } else { |
1347 | ret_val = e1000_config_mac_to_phy(hw); | 1425 | ret_val = e1000_config_mac_to_phy(hw); |
@@ -1395,6 +1473,12 @@ static s32 e1000_setup_copper_link(struct e1000_hw *hw) | |||
1395 | ret_val = e1000_copper_link_mgp_setup(hw); | 1473 | ret_val = e1000_copper_link_mgp_setup(hw); |
1396 | if (ret_val) | 1474 | if (ret_val) |
1397 | return ret_val; | 1475 | return ret_val; |
1476 | } else { | ||
1477 | ret_val = gbe_dhg_phy_setup(hw); | ||
1478 | if (ret_val) { | ||
1479 | e_dbg("gbe_dhg_phy_setup failed!\n"); | ||
1480 | return ret_val; | ||
1481 | } | ||
1398 | } | 1482 | } |
1399 | 1483 | ||
1400 | if (hw->autoneg) { | 1484 | if (hw->autoneg) { |
@@ -1461,10 +1545,11 @@ s32 e1000_phy_setup_autoneg(struct e1000_hw *hw) | |||
1461 | return ret_val; | 1545 | return ret_val; |
1462 | 1546 | ||
1463 | /* Read the MII 1000Base-T Control Register (Address 9). */ | 1547 | /* Read the MII 1000Base-T Control Register (Address 9). */ |
1464 | ret_val = | 1548 | ret_val = e1000_read_phy_reg(hw, PHY_1000T_CTRL, &mii_1000t_ctrl_reg); |
1465 | e1000_read_phy_reg(hw, PHY_1000T_CTRL, &mii_1000t_ctrl_reg); | ||
1466 | if (ret_val) | 1549 | if (ret_val) |
1467 | return ret_val; | 1550 | return ret_val; |
1551 | else if (hw->phy_type == e1000_phy_8201) | ||
1552 | mii_1000t_ctrl_reg &= ~REG9_SPEED_MASK; | ||
1468 | 1553 | ||
1469 | /* Need to parse both autoneg_advertised and fc and set up | 1554 | /* Need to parse both autoneg_advertised and fc and set up |
1470 | * the appropriate PHY registers. First we will parse for | 1555 | * the appropriate PHY registers. First we will parse for |
@@ -1577,9 +1662,14 @@ s32 e1000_phy_setup_autoneg(struct e1000_hw *hw) | |||
1577 | 1662 | ||
1578 | e_dbg("Auto-Neg Advertising %x\n", mii_autoneg_adv_reg); | 1663 | e_dbg("Auto-Neg Advertising %x\n", mii_autoneg_adv_reg); |
1579 | 1664 | ||
1580 | ret_val = e1000_write_phy_reg(hw, PHY_1000T_CTRL, mii_1000t_ctrl_reg); | 1665 | if (hw->phy_type == e1000_phy_8201) { |
1581 | if (ret_val) | 1666 | mii_1000t_ctrl_reg = 0; |
1582 | return ret_val; | 1667 | } else { |
1668 | ret_val = e1000_write_phy_reg(hw, PHY_1000T_CTRL, | ||
1669 | mii_1000t_ctrl_reg); | ||
1670 | if (ret_val) | ||
1671 | return ret_val; | ||
1672 | } | ||
1583 | 1673 | ||
1584 | return E1000_SUCCESS; | 1674 | return E1000_SUCCESS; |
1585 | } | 1675 | } |
@@ -1860,7 +1950,7 @@ static s32 e1000_config_mac_to_phy(struct e1000_hw *hw) | |||
1860 | 1950 | ||
1861 | /* 82544 or newer MAC, Auto Speed Detection takes care of | 1951 | /* 82544 or newer MAC, Auto Speed Detection takes care of |
1862 | * MAC speed/duplex configuration.*/ | 1952 | * MAC speed/duplex configuration.*/ |
1863 | if (hw->mac_type >= e1000_82544) | 1953 | if ((hw->mac_type >= e1000_82544) && (hw->mac_type != e1000_ce4100)) |
1864 | return E1000_SUCCESS; | 1954 | return E1000_SUCCESS; |
1865 | 1955 | ||
1866 | /* Read the Device Control Register and set the bits to Force Speed | 1956 | /* Read the Device Control Register and set the bits to Force Speed |
@@ -1870,27 +1960,49 @@ static s32 e1000_config_mac_to_phy(struct e1000_hw *hw) | |||
1870 | ctrl |= (E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX); | 1960 | ctrl |= (E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX); |
1871 | ctrl &= ~(E1000_CTRL_SPD_SEL | E1000_CTRL_ILOS); | 1961 | ctrl &= ~(E1000_CTRL_SPD_SEL | E1000_CTRL_ILOS); |
1872 | 1962 | ||
1873 | /* Set up duplex in the Device Control and Transmit Control | 1963 | switch (hw->phy_type) { |
1874 | * registers depending on negotiated values. | 1964 | case e1000_phy_8201: |
1875 | */ | 1965 | ret_val = e1000_read_phy_reg(hw, PHY_CTRL, &phy_data); |
1876 | ret_val = e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_STATUS, &phy_data); | 1966 | if (ret_val) |
1877 | if (ret_val) | 1967 | return ret_val; |
1878 | return ret_val; | ||
1879 | 1968 | ||
1880 | if (phy_data & M88E1000_PSSR_DPLX) | 1969 | if (phy_data & RTL_PHY_CTRL_FD) |
1881 | ctrl |= E1000_CTRL_FD; | 1970 | ctrl |= E1000_CTRL_FD; |
1882 | else | 1971 | else |
1883 | ctrl &= ~E1000_CTRL_FD; | 1972 | ctrl &= ~E1000_CTRL_FD; |
1884 | 1973 | ||
1885 | e1000_config_collision_dist(hw); | 1974 | if (phy_data & RTL_PHY_CTRL_SPD_100) |
1975 | ctrl |= E1000_CTRL_SPD_100; | ||
1976 | else | ||
1977 | ctrl |= E1000_CTRL_SPD_10; | ||
1886 | 1978 | ||
1887 | /* Set up speed in the Device Control register depending on | 1979 | e1000_config_collision_dist(hw); |
1888 | * negotiated values. | 1980 | break; |
1889 | */ | 1981 | default: |
1890 | if ((phy_data & M88E1000_PSSR_SPEED) == M88E1000_PSSR_1000MBS) | 1982 | /* Set up duplex in the Device Control and Transmit Control |
1891 | ctrl |= E1000_CTRL_SPD_1000; | 1983 | * registers depending on negotiated values. |
1892 | else if ((phy_data & M88E1000_PSSR_SPEED) == M88E1000_PSSR_100MBS) | 1984 | */ |
1893 | ctrl |= E1000_CTRL_SPD_100; | 1985 | ret_val = e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_STATUS, |
1986 | &phy_data); | ||
1987 | if (ret_val) | ||
1988 | return ret_val; | ||
1989 | |||
1990 | if (phy_data & M88E1000_PSSR_DPLX) | ||
1991 | ctrl |= E1000_CTRL_FD; | ||
1992 | else | ||
1993 | ctrl &= ~E1000_CTRL_FD; | ||
1994 | |||
1995 | e1000_config_collision_dist(hw); | ||
1996 | |||
1997 | /* Set up speed in the Device Control register depending on | ||
1998 | * negotiated values. | ||
1999 | */ | ||
2000 | if ((phy_data & M88E1000_PSSR_SPEED) == M88E1000_PSSR_1000MBS) | ||
2001 | ctrl |= E1000_CTRL_SPD_1000; | ||
2002 | else if ((phy_data & M88E1000_PSSR_SPEED) == | ||
2003 | M88E1000_PSSR_100MBS) | ||
2004 | ctrl |= E1000_CTRL_SPD_100; | ||
2005 | } | ||
1894 | 2006 | ||
1895 | /* Write the configured values back to the Device Control Reg. */ | 2007 | /* Write the configured values back to the Device Control Reg. */ |
1896 | ew32(CTRL, ctrl); | 2008 | ew32(CTRL, ctrl); |
@@ -2401,7 +2513,8 @@ s32 e1000_check_for_link(struct e1000_hw *hw) | |||
2401 | * speed/duplex on the MAC to the current PHY speed/duplex | 2513 | * speed/duplex on the MAC to the current PHY speed/duplex |
2402 | * settings. | 2514 | * settings. |
2403 | */ | 2515 | */ |
2404 | if (hw->mac_type >= e1000_82544) | 2516 | if ((hw->mac_type >= e1000_82544) && |
2517 | (hw->mac_type != e1000_ce4100)) | ||
2405 | e1000_config_collision_dist(hw); | 2518 | e1000_config_collision_dist(hw); |
2406 | else { | 2519 | else { |
2407 | ret_val = e1000_config_mac_to_phy(hw); | 2520 | ret_val = e1000_config_mac_to_phy(hw); |
@@ -2738,7 +2851,7 @@ static s32 e1000_read_phy_reg_ex(struct e1000_hw *hw, u32 reg_addr, | |||
2738 | { | 2851 | { |
2739 | u32 i; | 2852 | u32 i; |
2740 | u32 mdic = 0; | 2853 | u32 mdic = 0; |
2741 | const u32 phy_addr = 1; | 2854 | const u32 phy_addr = (hw->mac_type == e1000_ce4100) ? hw->phy_addr : 1; |
2742 | 2855 | ||
2743 | e_dbg("e1000_read_phy_reg_ex"); | 2856 | e_dbg("e1000_read_phy_reg_ex"); |
2744 | 2857 | ||
@@ -2752,28 +2865,61 @@ static s32 e1000_read_phy_reg_ex(struct e1000_hw *hw, u32 reg_addr, | |||
2752 | * Control register. The MAC will take care of interfacing with the | 2865 | * Control register. The MAC will take care of interfacing with the |
2753 | * PHY to retrieve the desired data. | 2866 | * PHY to retrieve the desired data. |
2754 | */ | 2867 | */ |
2755 | mdic = ((reg_addr << E1000_MDIC_REG_SHIFT) | | 2868 | if (hw->mac_type == e1000_ce4100) { |
2756 | (phy_addr << E1000_MDIC_PHY_SHIFT) | | 2869 | mdic = ((reg_addr << E1000_MDIC_REG_SHIFT) | |
2757 | (E1000_MDIC_OP_READ)); | 2870 | (phy_addr << E1000_MDIC_PHY_SHIFT) | |
2871 | (INTEL_CE_GBE_MDIC_OP_READ) | | ||
2872 | (INTEL_CE_GBE_MDIC_GO)); | ||
2758 | 2873 | ||
2759 | ew32(MDIC, mdic); | 2874 | writel(mdic, E1000_MDIO_CMD); |
2760 | 2875 | ||
2761 | /* Poll the ready bit to see if the MDI read completed */ | 2876 | /* Poll the ready bit to see if the MDI read |
2762 | for (i = 0; i < 64; i++) { | 2877 | * completed |
2763 | udelay(50); | 2878 | */ |
2764 | mdic = er32(MDIC); | 2879 | for (i = 0; i < 64; i++) { |
2765 | if (mdic & E1000_MDIC_READY) | 2880 | udelay(50); |
2766 | break; | 2881 | mdic = readl(E1000_MDIO_CMD); |
2767 | } | 2882 | if (!(mdic & INTEL_CE_GBE_MDIC_GO)) |
2768 | if (!(mdic & E1000_MDIC_READY)) { | 2883 | break; |
2769 | e_dbg("MDI Read did not complete\n"); | 2884 | } |
2770 | return -E1000_ERR_PHY; | 2885 | |
2771 | } | 2886 | if (mdic & INTEL_CE_GBE_MDIC_GO) { |
2772 | if (mdic & E1000_MDIC_ERROR) { | 2887 | e_dbg("MDI Read did not complete\n"); |
2773 | e_dbg("MDI Error\n"); | 2888 | return -E1000_ERR_PHY; |
2774 | return -E1000_ERR_PHY; | 2889 | } |
2890 | |||
2891 | mdic = readl(E1000_MDIO_STS); | ||
2892 | if (mdic & INTEL_CE_GBE_MDIC_READ_ERROR) { | ||
2893 | e_dbg("MDI Read Error\n"); | ||
2894 | return -E1000_ERR_PHY; | ||
2895 | } | ||
2896 | *phy_data = (u16) mdic; | ||
2897 | } else { | ||
2898 | mdic = ((reg_addr << E1000_MDIC_REG_SHIFT) | | ||
2899 | (phy_addr << E1000_MDIC_PHY_SHIFT) | | ||
2900 | (E1000_MDIC_OP_READ)); | ||
2901 | |||
2902 | ew32(MDIC, mdic); | ||
2903 | |||
2904 | /* Poll the ready bit to see if the MDI read | ||
2905 | * completed | ||
2906 | */ | ||
2907 | for (i = 0; i < 64; i++) { | ||
2908 | udelay(50); | ||
2909 | mdic = er32(MDIC); | ||
2910 | if (mdic & E1000_MDIC_READY) | ||
2911 | break; | ||
2912 | } | ||
2913 | if (!(mdic & E1000_MDIC_READY)) { | ||
2914 | e_dbg("MDI Read did not complete\n"); | ||
2915 | return -E1000_ERR_PHY; | ||
2916 | } | ||
2917 | if (mdic & E1000_MDIC_ERROR) { | ||
2918 | e_dbg("MDI Error\n"); | ||
2919 | return -E1000_ERR_PHY; | ||
2920 | } | ||
2921 | *phy_data = (u16) mdic; | ||
2775 | } | 2922 | } |
2776 | *phy_data = (u16) mdic; | ||
2777 | } else { | 2923 | } else { |
2778 | /* We must first send a preamble through the MDIO pin to signal the | 2924 | /* We must first send a preamble through the MDIO pin to signal the |
2779 | * beginning of an MII instruction. This is done by sending 32 | 2925 | * beginning of an MII instruction. This is done by sending 32 |
@@ -2840,7 +2986,7 @@ static s32 e1000_write_phy_reg_ex(struct e1000_hw *hw, u32 reg_addr, | |||
2840 | { | 2986 | { |
2841 | u32 i; | 2987 | u32 i; |
2842 | u32 mdic = 0; | 2988 | u32 mdic = 0; |
2843 | const u32 phy_addr = 1; | 2989 | const u32 phy_addr = (hw->mac_type == e1000_ce4100) ? hw->phy_addr : 1; |
2844 | 2990 | ||
2845 | e_dbg("e1000_write_phy_reg_ex"); | 2991 | e_dbg("e1000_write_phy_reg_ex"); |
2846 | 2992 | ||
@@ -2850,27 +2996,54 @@ static s32 e1000_write_phy_reg_ex(struct e1000_hw *hw, u32 reg_addr, | |||
2850 | } | 2996 | } |
2851 | 2997 | ||
2852 | if (hw->mac_type > e1000_82543) { | 2998 | if (hw->mac_type > e1000_82543) { |
2853 | /* Set up Op-code, Phy Address, register address, and data intended | 2999 | /* Set up Op-code, Phy Address, register address, and data |
2854 | * for the PHY register in the MDI Control register. The MAC will take | 3000 | * intended for the PHY register in the MDI Control register. |
2855 | * care of interfacing with the PHY to send the desired data. | 3001 | * The MAC will take care of interfacing with the PHY to send |
3002 | * the desired data. | ||
2856 | */ | 3003 | */ |
2857 | mdic = (((u32) phy_data) | | 3004 | if (hw->mac_type == e1000_ce4100) { |
2858 | (reg_addr << E1000_MDIC_REG_SHIFT) | | 3005 | mdic = (((u32) phy_data) | |
2859 | (phy_addr << E1000_MDIC_PHY_SHIFT) | | 3006 | (reg_addr << E1000_MDIC_REG_SHIFT) | |
2860 | (E1000_MDIC_OP_WRITE)); | 3007 | (phy_addr << E1000_MDIC_PHY_SHIFT) | |
3008 | (INTEL_CE_GBE_MDIC_OP_WRITE) | | ||
3009 | (INTEL_CE_GBE_MDIC_GO)); | ||
2861 | 3010 | ||
2862 | ew32(MDIC, mdic); | 3011 | writel(mdic, E1000_MDIO_CMD); |
2863 | 3012 | ||
2864 | /* Poll the ready bit to see if the MDI read completed */ | 3013 | /* Poll the ready bit to see if the MDI read |
2865 | for (i = 0; i < 641; i++) { | 3014 | * completed |
2866 | udelay(5); | 3015 | */ |
2867 | mdic = er32(MDIC); | 3016 | for (i = 0; i < 640; i++) { |
2868 | if (mdic & E1000_MDIC_READY) | 3017 | udelay(5); |
2869 | break; | 3018 | mdic = readl(E1000_MDIO_CMD); |
2870 | } | 3019 | if (!(mdic & INTEL_CE_GBE_MDIC_GO)) |
2871 | if (!(mdic & E1000_MDIC_READY)) { | 3020 | break; |
2872 | e_dbg("MDI Write did not complete\n"); | 3021 | } |
2873 | return -E1000_ERR_PHY; | 3022 | if (mdic & INTEL_CE_GBE_MDIC_GO) { |
3023 | e_dbg("MDI Write did not complete\n"); | ||
3024 | return -E1000_ERR_PHY; | ||
3025 | } | ||
3026 | } else { | ||
3027 | mdic = (((u32) phy_data) | | ||
3028 | (reg_addr << E1000_MDIC_REG_SHIFT) | | ||
3029 | (phy_addr << E1000_MDIC_PHY_SHIFT) | | ||
3030 | (E1000_MDIC_OP_WRITE)); | ||
3031 | |||
3032 | ew32(MDIC, mdic); | ||
3033 | |||
3034 | /* Poll the ready bit to see if the MDI read | ||
3035 | * completed | ||
3036 | */ | ||
3037 | for (i = 0; i < 641; i++) { | ||
3038 | udelay(5); | ||
3039 | mdic = er32(MDIC); | ||
3040 | if (mdic & E1000_MDIC_READY) | ||
3041 | break; | ||
3042 | } | ||
3043 | if (!(mdic & E1000_MDIC_READY)) { | ||
3044 | e_dbg("MDI Write did not complete\n"); | ||
3045 | return -E1000_ERR_PHY; | ||
3046 | } | ||
2874 | } | 3047 | } |
2875 | } else { | 3048 | } else { |
2876 | /* We'll need to use the SW defined pins to shift the write command | 3049 | /* We'll need to use the SW defined pins to shift the write command |
@@ -3048,6 +3221,12 @@ static s32 e1000_detect_gig_phy(struct e1000_hw *hw) | |||
3048 | if (hw->phy_id == M88E1011_I_PHY_ID) | 3221 | if (hw->phy_id == M88E1011_I_PHY_ID) |
3049 | match = true; | 3222 | match = true; |
3050 | break; | 3223 | break; |
3224 | case e1000_ce4100: | ||
3225 | if ((hw->phy_id == RTL8211B_PHY_ID) || | ||
3226 | (hw->phy_id == RTL8201N_PHY_ID) || | ||
3227 | (hw->phy_id == M88E1118_E_PHY_ID)) | ||
3228 | match = true; | ||
3229 | break; | ||
3051 | case e1000_82541: | 3230 | case e1000_82541: |
3052 | case e1000_82541_rev_2: | 3231 | case e1000_82541_rev_2: |
3053 | case e1000_82547: | 3232 | case e1000_82547: |
@@ -3291,6 +3470,9 @@ s32 e1000_phy_get_info(struct e1000_hw *hw, struct e1000_phy_info *phy_info) | |||
3291 | 3470 | ||
3292 | if (hw->phy_type == e1000_phy_igp) | 3471 | if (hw->phy_type == e1000_phy_igp) |
3293 | return e1000_phy_igp_get_info(hw, phy_info); | 3472 | return e1000_phy_igp_get_info(hw, phy_info); |
3473 | else if ((hw->phy_type == e1000_phy_8211) || | ||
3474 | (hw->phy_type == e1000_phy_8201)) | ||
3475 | return E1000_SUCCESS; | ||
3294 | else | 3476 | else |
3295 | return e1000_phy_m88_get_info(hw, phy_info); | 3477 | return e1000_phy_m88_get_info(hw, phy_info); |
3296 | } | 3478 | } |
@@ -3742,6 +3924,12 @@ static s32 e1000_do_read_eeprom(struct e1000_hw *hw, u16 offset, u16 words, | |||
3742 | 3924 | ||
3743 | e_dbg("e1000_read_eeprom"); | 3925 | e_dbg("e1000_read_eeprom"); |
3744 | 3926 | ||
3927 | if (hw->mac_type == e1000_ce4100) { | ||
3928 | GBE_CONFIG_FLASH_READ(GBE_CONFIG_BASE_VIRT, offset, words, | ||
3929 | data); | ||
3930 | return E1000_SUCCESS; | ||
3931 | } | ||
3932 | |||
3745 | /* If eeprom is not yet detected, do so now */ | 3933 | /* If eeprom is not yet detected, do so now */ |
3746 | if (eeprom->word_size == 0) | 3934 | if (eeprom->word_size == 0) |
3747 | e1000_init_eeprom_params(hw); | 3935 | e1000_init_eeprom_params(hw); |
@@ -3904,6 +4092,12 @@ static s32 e1000_do_write_eeprom(struct e1000_hw *hw, u16 offset, u16 words, | |||
3904 | 4092 | ||
3905 | e_dbg("e1000_write_eeprom"); | 4093 | e_dbg("e1000_write_eeprom"); |
3906 | 4094 | ||
4095 | if (hw->mac_type == e1000_ce4100) { | ||
4096 | GBE_CONFIG_FLASH_WRITE(GBE_CONFIG_BASE_VIRT, offset, words, | ||
4097 | data); | ||
4098 | return E1000_SUCCESS; | ||
4099 | } | ||
4100 | |||
3907 | /* If eeprom is not yet detected, do so now */ | 4101 | /* If eeprom is not yet detected, do so now */ |
3908 | if (eeprom->word_size == 0) | 4102 | if (eeprom->word_size == 0) |
3909 | e1000_init_eeprom_params(hw); | 4103 | e1000_init_eeprom_params(hw); |
@@ -4892,11 +5086,11 @@ static s32 e1000_get_cable_length(struct e1000_hw *hw, u16 *min_length, | |||
4892 | } else if (hw->phy_type == e1000_phy_igp) { /* For IGP PHY */ | 5086 | } else if (hw->phy_type == e1000_phy_igp) { /* For IGP PHY */ |
4893 | u16 cur_agc_value; | 5087 | u16 cur_agc_value; |
4894 | u16 min_agc_value = IGP01E1000_AGC_LENGTH_TABLE_SIZE; | 5088 | u16 min_agc_value = IGP01E1000_AGC_LENGTH_TABLE_SIZE; |
4895 | u16 agc_reg_array[IGP01E1000_PHY_CHANNEL_NUM] = | 5089 | static const u16 agc_reg_array[IGP01E1000_PHY_CHANNEL_NUM] = { |
4896 | { IGP01E1000_PHY_AGC_A, | 5090 | IGP01E1000_PHY_AGC_A, |
4897 | IGP01E1000_PHY_AGC_B, | 5091 | IGP01E1000_PHY_AGC_B, |
4898 | IGP01E1000_PHY_AGC_C, | 5092 | IGP01E1000_PHY_AGC_C, |
4899 | IGP01E1000_PHY_AGC_D | 5093 | IGP01E1000_PHY_AGC_D |
4900 | }; | 5094 | }; |
4901 | /* Read the AGC registers for all channels */ | 5095 | /* Read the AGC registers for all channels */ |
4902 | for (i = 0; i < IGP01E1000_PHY_CHANNEL_NUM; i++) { | 5096 | for (i = 0; i < IGP01E1000_PHY_CHANNEL_NUM; i++) { |
@@ -5071,11 +5265,11 @@ static s32 e1000_config_dsp_after_link_change(struct e1000_hw *hw, bool link_up) | |||
5071 | { | 5265 | { |
5072 | s32 ret_val; | 5266 | s32 ret_val; |
5073 | u16 phy_data, phy_saved_data, speed, duplex, i; | 5267 | u16 phy_data, phy_saved_data, speed, duplex, i; |
5074 | u16 dsp_reg_array[IGP01E1000_PHY_CHANNEL_NUM] = | 5268 | static const u16 dsp_reg_array[IGP01E1000_PHY_CHANNEL_NUM] = { |
5075 | { IGP01E1000_PHY_AGC_PARAM_A, | 5269 | IGP01E1000_PHY_AGC_PARAM_A, |
5076 | IGP01E1000_PHY_AGC_PARAM_B, | 5270 | IGP01E1000_PHY_AGC_PARAM_B, |
5077 | IGP01E1000_PHY_AGC_PARAM_C, | 5271 | IGP01E1000_PHY_AGC_PARAM_C, |
5078 | IGP01E1000_PHY_AGC_PARAM_D | 5272 | IGP01E1000_PHY_AGC_PARAM_D |
5079 | }; | 5273 | }; |
5080 | u16 min_length, max_length; | 5274 | u16 min_length, max_length; |
5081 | 5275 | ||