aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/igb/e1000_82575.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/igb/e1000_82575.c')
-rw-r--r--drivers/net/igb/e1000_82575.c360
1 files changed, 350 insertions, 10 deletions
diff --git a/drivers/net/igb/e1000_82575.c b/drivers/net/igb/e1000_82575.c
index 187622f1c816..0f563c8c5ffc 100644
--- a/drivers/net/igb/e1000_82575.c
+++ b/drivers/net/igb/e1000_82575.c
@@ -64,7 +64,14 @@ static s32 igb_reset_init_script_82575(struct e1000_hw *);
64static s32 igb_read_mac_addr_82575(struct e1000_hw *); 64static s32 igb_read_mac_addr_82575(struct e1000_hw *);
65static s32 igb_set_pcie_completion_timeout(struct e1000_hw *hw); 65static s32 igb_set_pcie_completion_timeout(struct e1000_hw *hw);
66static s32 igb_reset_mdicnfg_82580(struct e1000_hw *hw); 66static s32 igb_reset_mdicnfg_82580(struct e1000_hw *hw);
67 67static s32 igb_validate_nvm_checksum_82580(struct e1000_hw *hw);
68static s32 igb_update_nvm_checksum_82580(struct e1000_hw *hw);
69static s32 igb_update_nvm_checksum_with_offset(struct e1000_hw *hw,
70 u16 offset);
71static s32 igb_validate_nvm_checksum_with_offset(struct e1000_hw *hw,
72 u16 offset);
73static s32 igb_validate_nvm_checksum_i350(struct e1000_hw *hw);
74static s32 igb_update_nvm_checksum_i350(struct e1000_hw *hw);
68static const u16 e1000_82580_rxpbs_table[] = 75static const u16 e1000_82580_rxpbs_table[] =
69 { 36, 72, 144, 1, 2, 4, 8, 16, 76 { 36, 72, 144, 1, 2, 4, 8, 16,
70 35, 70, 140 }; 77 35, 70, 140 };
@@ -129,9 +136,14 @@ static s32 igb_get_invariants_82575(struct e1000_hw *hw)
129 break; 136 break;
130 case E1000_DEV_ID_82580_COPPER: 137 case E1000_DEV_ID_82580_COPPER:
131 case E1000_DEV_ID_82580_FIBER: 138 case E1000_DEV_ID_82580_FIBER:
139 case E1000_DEV_ID_82580_QUAD_FIBER:
132 case E1000_DEV_ID_82580_SERDES: 140 case E1000_DEV_ID_82580_SERDES:
133 case E1000_DEV_ID_82580_SGMII: 141 case E1000_DEV_ID_82580_SGMII:
134 case E1000_DEV_ID_82580_COPPER_DUAL: 142 case E1000_DEV_ID_82580_COPPER_DUAL:
143 case E1000_DEV_ID_DH89XXCC_SGMII:
144 case E1000_DEV_ID_DH89XXCC_SERDES:
145 case E1000_DEV_ID_DH89XXCC_BACKPLANE:
146 case E1000_DEV_ID_DH89XXCC_SFP:
135 mac->type = e1000_82580; 147 mac->type = e1000_82580;
136 break; 148 break;
137 case E1000_DEV_ID_I350_COPPER: 149 case E1000_DEV_ID_I350_COPPER:
@@ -190,7 +202,11 @@ static s32 igb_get_invariants_82575(struct e1000_hw *hw)
190 mac->arc_subsystem_valid = 202 mac->arc_subsystem_valid =
191 (rd32(E1000_FWSM) & E1000_FWSM_MODE_MASK) 203 (rd32(E1000_FWSM) & E1000_FWSM_MODE_MASK)
192 ? true : false; 204 ? true : false;
193 205 /* enable EEE on i350 parts */
206 if (mac->type == e1000_i350)
207 dev_spec->eee_disable = false;
208 else
209 dev_spec->eee_disable = true;
194 /* physical interface link setup */ 210 /* physical interface link setup */
195 mac->ops.setup_physical_interface = 211 mac->ops.setup_physical_interface =
196 (hw->phy.media_type == e1000_media_type_copper) 212 (hw->phy.media_type == e1000_media_type_copper)
@@ -228,14 +244,50 @@ static s32 igb_get_invariants_82575(struct e1000_hw *hw)
228 */ 244 */
229 size += NVM_WORD_SIZE_BASE_SHIFT; 245 size += NVM_WORD_SIZE_BASE_SHIFT;
230 246
231 /* EEPROM access above 16k is unsupported */ 247 /*
232 if (size > 14) 248 * Check for invalid size
233 size = 14; 249 */
250 if ((hw->mac.type == e1000_82576) && (size > 15)) {
251 printk("igb: The NVM size is not valid, "
252 "defaulting to 32K.\n");
253 size = 15;
254 }
234 nvm->word_size = 1 << size; 255 nvm->word_size = 1 << size;
256 if (nvm->word_size == (1 << 15))
257 nvm->page_size = 128;
235 258
236 /* if 82576 then initialize mailbox parameters */ 259 /* NVM Function Pointers */
237 if (mac->type == e1000_82576) 260 nvm->ops.acquire = igb_acquire_nvm_82575;
261 if (nvm->word_size < (1 << 15))
262 nvm->ops.read = igb_read_nvm_eerd;
263 else
264 nvm->ops.read = igb_read_nvm_spi;
265
266 nvm->ops.release = igb_release_nvm_82575;
267 switch (hw->mac.type) {
268 case e1000_82580:
269 nvm->ops.validate = igb_validate_nvm_checksum_82580;
270 nvm->ops.update = igb_update_nvm_checksum_82580;
271 break;
272 case e1000_i350:
273 nvm->ops.validate = igb_validate_nvm_checksum_i350;
274 nvm->ops.update = igb_update_nvm_checksum_i350;
275 break;
276 default:
277 nvm->ops.validate = igb_validate_nvm_checksum;
278 nvm->ops.update = igb_update_nvm_checksum;
279 }
280 nvm->ops.write = igb_write_nvm_spi;
281
282 /* if part supports SR-IOV then initialize mailbox parameters */
283 switch (mac->type) {
284 case e1000_82576:
285 case e1000_i350:
238 igb_init_mbx_params_pf(hw); 286 igb_init_mbx_params_pf(hw);
287 break;
288 default:
289 break;
290 }
239 291
240 /* setup PHY parameters */ 292 /* setup PHY parameters */
241 if (phy->media_type != e1000_media_type_copper) { 293 if (phy->media_type != e1000_media_type_copper) {
@@ -282,10 +334,18 @@ static s32 igb_get_invariants_82575(struct e1000_hw *hw)
282 334
283 /* Verify phy id and set remaining function pointers */ 335 /* Verify phy id and set remaining function pointers */
284 switch (phy->id) { 336 switch (phy->id) {
337 case I347AT4_E_PHY_ID:
338 case M88E1112_E_PHY_ID:
285 case M88E1111_I_PHY_ID: 339 case M88E1111_I_PHY_ID:
286 phy->type = e1000_phy_m88; 340 phy->type = e1000_phy_m88;
287 phy->ops.get_phy_info = igb_get_phy_info_m88; 341 phy->ops.get_phy_info = igb_get_phy_info_m88;
288 phy->ops.get_cable_length = igb_get_cable_length_m88; 342
343 if (phy->id == I347AT4_E_PHY_ID ||
344 phy->id == M88E1112_E_PHY_ID)
345 phy->ops.get_cable_length = igb_get_cable_length_m88_gen2;
346 else
347 phy->ops.get_cable_length = igb_get_cable_length_m88;
348
289 phy->ops.force_speed_duplex = igb_phy_force_speed_duplex_m88; 349 phy->ops.force_speed_duplex = igb_phy_force_speed_duplex_m88;
290 break; 350 break;
291 case IGP03E1000_E_PHY_ID: 351 case IGP03E1000_E_PHY_ID:
@@ -1058,7 +1118,11 @@ static s32 igb_setup_copper_link_82575(struct e1000_hw *hw)
1058 } 1118 }
1059 switch (hw->phy.type) { 1119 switch (hw->phy.type) {
1060 case e1000_phy_m88: 1120 case e1000_phy_m88:
1061 ret_val = igb_copper_link_setup_m88(hw); 1121 if (hw->phy.id == I347AT4_E_PHY_ID ||
1122 hw->phy.id == M88E1112_E_PHY_ID)
1123 ret_val = igb_copper_link_setup_m88_gen2(hw);
1124 else
1125 ret_val = igb_copper_link_setup_m88(hw);
1062 break; 1126 break;
1063 case e1000_phy_igp_3: 1127 case e1000_phy_igp_3:
1064 ret_val = igb_copper_link_setup_igp(hw); 1128 ret_val = igb_copper_link_setup_igp(hw);
@@ -1464,6 +1528,39 @@ out:
1464} 1528}
1465 1529
1466/** 1530/**
1531 * igb_vmdq_set_anti_spoofing_pf - enable or disable anti-spoofing
1532 * @hw: pointer to the hardware struct
1533 * @enable: state to enter, either enabled or disabled
1534 * @pf: Physical Function pool - do not set anti-spoofing for the PF
1535 *
1536 * enables/disables L2 switch anti-spoofing functionality.
1537 **/
1538void igb_vmdq_set_anti_spoofing_pf(struct e1000_hw *hw, bool enable, int pf)
1539{
1540 u32 dtxswc;
1541
1542 switch (hw->mac.type) {
1543 case e1000_82576:
1544 case e1000_i350:
1545 dtxswc = rd32(E1000_DTXSWC);
1546 if (enable) {
1547 dtxswc |= (E1000_DTXSWC_MAC_SPOOF_MASK |
1548 E1000_DTXSWC_VLAN_SPOOF_MASK);
1549 /* The PF can spoof - it has to in order to
1550 * support emulation mode NICs */
1551 dtxswc ^= (1 << pf | 1 << (pf + MAX_NUM_VFS));
1552 } else {
1553 dtxswc &= ~(E1000_DTXSWC_MAC_SPOOF_MASK |
1554 E1000_DTXSWC_VLAN_SPOOF_MASK);
1555 }
1556 wr32(E1000_DTXSWC, dtxswc);
1557 break;
1558 default:
1559 break;
1560 }
1561}
1562
1563/**
1467 * igb_vmdq_set_loopback_pf - enable or disable vmdq loopback 1564 * igb_vmdq_set_loopback_pf - enable or disable vmdq loopback
1468 * @hw: pointer to the hardware struct 1565 * @hw: pointer to the hardware struct
1469 * @enable: state to enter, either enabled or disabled 1566 * @enable: state to enter, either enabled or disabled
@@ -1564,7 +1661,7 @@ static s32 igb_reset_mdicnfg_82580(struct e1000_hw *hw)
1564{ 1661{
1565 s32 ret_val = 0; 1662 s32 ret_val = 0;
1566 u32 mdicnfg; 1663 u32 mdicnfg;
1567 u16 nvm_data; 1664 u16 nvm_data = 0;
1568 1665
1569 if (hw->mac.type != e1000_82580) 1666 if (hw->mac.type != e1000_82580)
1570 goto out; 1667 goto out;
@@ -1698,6 +1795,249 @@ u16 igb_rxpbs_adjust_82580(u32 data)
1698 return ret_val; 1795 return ret_val;
1699} 1796}
1700 1797
1798/**
1799 * igb_validate_nvm_checksum_with_offset - Validate EEPROM
1800 * checksum
1801 * @hw: pointer to the HW structure
1802 * @offset: offset in words of the checksum protected region
1803 *
1804 * Calculates the EEPROM checksum by reading/adding each word of the EEPROM
1805 * and then verifies that the sum of the EEPROM is equal to 0xBABA.
1806 **/
1807s32 igb_validate_nvm_checksum_with_offset(struct e1000_hw *hw, u16 offset)
1808{
1809 s32 ret_val = 0;
1810 u16 checksum = 0;
1811 u16 i, nvm_data;
1812
1813 for (i = offset; i < ((NVM_CHECKSUM_REG + offset) + 1); i++) {
1814 ret_val = hw->nvm.ops.read(hw, i, 1, &nvm_data);
1815 if (ret_val) {
1816 hw_dbg("NVM Read Error\n");
1817 goto out;
1818 }
1819 checksum += nvm_data;
1820 }
1821
1822 if (checksum != (u16) NVM_SUM) {
1823 hw_dbg("NVM Checksum Invalid\n");
1824 ret_val = -E1000_ERR_NVM;
1825 goto out;
1826 }
1827
1828out:
1829 return ret_val;
1830}
1831
1832/**
1833 * igb_update_nvm_checksum_with_offset - Update EEPROM
1834 * checksum
1835 * @hw: pointer to the HW structure
1836 * @offset: offset in words of the checksum protected region
1837 *
1838 * Updates the EEPROM checksum by reading/adding each word of the EEPROM
1839 * up to the checksum. Then calculates the EEPROM checksum and writes the
1840 * value to the EEPROM.
1841 **/
1842s32 igb_update_nvm_checksum_with_offset(struct e1000_hw *hw, u16 offset)
1843{
1844 s32 ret_val;
1845 u16 checksum = 0;
1846 u16 i, nvm_data;
1847
1848 for (i = offset; i < (NVM_CHECKSUM_REG + offset); i++) {
1849 ret_val = hw->nvm.ops.read(hw, i, 1, &nvm_data);
1850 if (ret_val) {
1851 hw_dbg("NVM Read Error while updating checksum.\n");
1852 goto out;
1853 }
1854 checksum += nvm_data;
1855 }
1856 checksum = (u16) NVM_SUM - checksum;
1857 ret_val = hw->nvm.ops.write(hw, (NVM_CHECKSUM_REG + offset), 1,
1858 &checksum);
1859 if (ret_val)
1860 hw_dbg("NVM Write Error while updating checksum.\n");
1861
1862out:
1863 return ret_val;
1864}
1865
1866/**
1867 * igb_validate_nvm_checksum_82580 - Validate EEPROM checksum
1868 * @hw: pointer to the HW structure
1869 *
1870 * Calculates the EEPROM section checksum by reading/adding each word of
1871 * the EEPROM and then verifies that the sum of the EEPROM is
1872 * equal to 0xBABA.
1873 **/
1874static s32 igb_validate_nvm_checksum_82580(struct e1000_hw *hw)
1875{
1876 s32 ret_val = 0;
1877 u16 eeprom_regions_count = 1;
1878 u16 j, nvm_data;
1879 u16 nvm_offset;
1880
1881 ret_val = hw->nvm.ops.read(hw, NVM_COMPATIBILITY_REG_3, 1, &nvm_data);
1882 if (ret_val) {
1883 hw_dbg("NVM Read Error\n");
1884 goto out;
1885 }
1886
1887 if (nvm_data & NVM_COMPATIBILITY_BIT_MASK) {
1888 /* if checksums compatibility bit is set validate checksums
1889 * for all 4 ports. */
1890 eeprom_regions_count = 4;
1891 }
1892
1893 for (j = 0; j < eeprom_regions_count; j++) {
1894 nvm_offset = NVM_82580_LAN_FUNC_OFFSET(j);
1895 ret_val = igb_validate_nvm_checksum_with_offset(hw,
1896 nvm_offset);
1897 if (ret_val != 0)
1898 goto out;
1899 }
1900
1901out:
1902 return ret_val;
1903}
1904
1905/**
1906 * igb_update_nvm_checksum_82580 - Update EEPROM checksum
1907 * @hw: pointer to the HW structure
1908 *
1909 * Updates the EEPROM section checksums for all 4 ports by reading/adding
1910 * each word of the EEPROM up to the checksum. Then calculates the EEPROM
1911 * checksum and writes the value to the EEPROM.
1912 **/
1913static s32 igb_update_nvm_checksum_82580(struct e1000_hw *hw)
1914{
1915 s32 ret_val;
1916 u16 j, nvm_data;
1917 u16 nvm_offset;
1918
1919 ret_val = hw->nvm.ops.read(hw, NVM_COMPATIBILITY_REG_3, 1, &nvm_data);
1920 if (ret_val) {
1921 hw_dbg("NVM Read Error while updating checksum"
1922 " compatibility bit.\n");
1923 goto out;
1924 }
1925
1926 if ((nvm_data & NVM_COMPATIBILITY_BIT_MASK) == 0) {
1927 /* set compatibility bit to validate checksums appropriately */
1928 nvm_data = nvm_data | NVM_COMPATIBILITY_BIT_MASK;
1929 ret_val = hw->nvm.ops.write(hw, NVM_COMPATIBILITY_REG_3, 1,
1930 &nvm_data);
1931 if (ret_val) {
1932 hw_dbg("NVM Write Error while updating checksum"
1933 " compatibility bit.\n");
1934 goto out;
1935 }
1936 }
1937
1938 for (j = 0; j < 4; j++) {
1939 nvm_offset = NVM_82580_LAN_FUNC_OFFSET(j);
1940 ret_val = igb_update_nvm_checksum_with_offset(hw, nvm_offset);
1941 if (ret_val)
1942 goto out;
1943 }
1944
1945out:
1946 return ret_val;
1947}
1948
1949/**
1950 * igb_validate_nvm_checksum_i350 - Validate EEPROM checksum
1951 * @hw: pointer to the HW structure
1952 *
1953 * Calculates the EEPROM section checksum by reading/adding each word of
1954 * the EEPROM and then verifies that the sum of the EEPROM is
1955 * equal to 0xBABA.
1956 **/
1957static s32 igb_validate_nvm_checksum_i350(struct e1000_hw *hw)
1958{
1959 s32 ret_val = 0;
1960 u16 j;
1961 u16 nvm_offset;
1962
1963 for (j = 0; j < 4; j++) {
1964 nvm_offset = NVM_82580_LAN_FUNC_OFFSET(j);
1965 ret_val = igb_validate_nvm_checksum_with_offset(hw,
1966 nvm_offset);
1967 if (ret_val != 0)
1968 goto out;
1969 }
1970
1971out:
1972 return ret_val;
1973}
1974
1975/**
1976 * igb_update_nvm_checksum_i350 - Update EEPROM checksum
1977 * @hw: pointer to the HW structure
1978 *
1979 * Updates the EEPROM section checksums for all 4 ports by reading/adding
1980 * each word of the EEPROM up to the checksum. Then calculates the EEPROM
1981 * checksum and writes the value to the EEPROM.
1982 **/
1983static s32 igb_update_nvm_checksum_i350(struct e1000_hw *hw)
1984{
1985 s32 ret_val = 0;
1986 u16 j;
1987 u16 nvm_offset;
1988
1989 for (j = 0; j < 4; j++) {
1990 nvm_offset = NVM_82580_LAN_FUNC_OFFSET(j);
1991 ret_val = igb_update_nvm_checksum_with_offset(hw, nvm_offset);
1992 if (ret_val != 0)
1993 goto out;
1994 }
1995
1996out:
1997 return ret_val;
1998}
1999
2000/**
2001 * igb_set_eee_i350 - Enable/disable EEE support
2002 * @hw: pointer to the HW structure
2003 *
2004 * Enable/disable EEE based on setting in dev_spec structure.
2005 *
2006 **/
2007s32 igb_set_eee_i350(struct e1000_hw *hw)
2008{
2009 s32 ret_val = 0;
2010 u32 ipcnfg, eeer, ctrl_ext;
2011
2012 ctrl_ext = rd32(E1000_CTRL_EXT);
2013 if ((hw->mac.type != e1000_i350) ||
2014 (ctrl_ext & E1000_CTRL_EXT_LINK_MODE_MASK))
2015 goto out;
2016 ipcnfg = rd32(E1000_IPCNFG);
2017 eeer = rd32(E1000_EEER);
2018
2019 /* enable or disable per user setting */
2020 if (!(hw->dev_spec._82575.eee_disable)) {
2021 ipcnfg |= (E1000_IPCNFG_EEE_1G_AN |
2022 E1000_IPCNFG_EEE_100M_AN);
2023 eeer |= (E1000_EEER_TX_LPI_EN |
2024 E1000_EEER_RX_LPI_EN |
2025 E1000_EEER_LPI_FC);
2026
2027 } else {
2028 ipcnfg &= ~(E1000_IPCNFG_EEE_1G_AN |
2029 E1000_IPCNFG_EEE_100M_AN);
2030 eeer &= ~(E1000_EEER_TX_LPI_EN |
2031 E1000_EEER_RX_LPI_EN |
2032 E1000_EEER_LPI_FC);
2033 }
2034 wr32(E1000_IPCNFG, ipcnfg);
2035 wr32(E1000_EEER, eeer);
2036out:
2037
2038 return ret_val;
2039}
2040
1701static struct e1000_mac_operations e1000_mac_ops_82575 = { 2041static struct e1000_mac_operations e1000_mac_ops_82575 = {
1702 .init_hw = igb_init_hw_82575, 2042 .init_hw = igb_init_hw_82575,
1703 .check_for_link = igb_check_for_link_82575, 2043 .check_for_link = igb_check_for_link_82575,