Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 1 | /******************************************************************************* |
| 2 | |
| 3 | Intel(R) Gigabit Ethernet Linux driver |
Alexander Duyck | 86d5d38 | 2009-02-06 23:23:12 +0000 | [diff] [blame] | 4 | Copyright(c) 2007-2009 Intel Corporation. |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 5 | |
| 6 | This program is free software; you can redistribute it and/or modify it |
| 7 | under the terms and conditions of the GNU General Public License, |
| 8 | version 2, as published by the Free Software Foundation. |
| 9 | |
| 10 | This program is distributed in the hope it will be useful, but WITHOUT |
| 11 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 12 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 13 | more details. |
| 14 | |
| 15 | You should have received a copy of the GNU General Public License along with |
| 16 | this program; if not, write to the Free Software Foundation, Inc., |
| 17 | 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. |
| 18 | |
| 19 | The full GNU General Public License is included in this distribution in |
| 20 | the file called "COPYING". |
| 21 | |
| 22 | Contact Information: |
| 23 | e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> |
| 24 | Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 |
| 25 | |
| 26 | *******************************************************************************/ |
| 27 | |
| 28 | /* e1000_82575 |
| 29 | * e1000_82576 |
| 30 | */ |
| 31 | |
| 32 | #include <linux/types.h> |
| 33 | #include <linux/slab.h> |
Alexander Duyck | 2d064c0 | 2008-07-08 15:10:12 -0700 | [diff] [blame] | 34 | #include <linux/if_ether.h> |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 35 | |
| 36 | #include "e1000_mac.h" |
| 37 | #include "e1000_82575.h" |
| 38 | |
| 39 | static s32 igb_get_invariants_82575(struct e1000_hw *); |
| 40 | static s32 igb_acquire_phy_82575(struct e1000_hw *); |
| 41 | static void igb_release_phy_82575(struct e1000_hw *); |
| 42 | static s32 igb_acquire_nvm_82575(struct e1000_hw *); |
| 43 | static void igb_release_nvm_82575(struct e1000_hw *); |
| 44 | static s32 igb_check_for_link_82575(struct e1000_hw *); |
| 45 | static s32 igb_get_cfg_done_82575(struct e1000_hw *); |
| 46 | static s32 igb_init_hw_82575(struct e1000_hw *); |
| 47 | static s32 igb_phy_hw_reset_sgmii_82575(struct e1000_hw *); |
| 48 | static s32 igb_read_phy_reg_sgmii_82575(struct e1000_hw *, u32, u16 *); |
Alexander Duyck | bb2ac47 | 2009-11-19 12:42:01 +0000 | [diff] [blame] | 49 | static s32 igb_read_phy_reg_82580(struct e1000_hw *, u32, u16 *); |
| 50 | static s32 igb_write_phy_reg_82580(struct e1000_hw *, u32, u16); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 51 | static s32 igb_reset_hw_82575(struct e1000_hw *); |
Alexander Duyck | bb2ac47 | 2009-11-19 12:42:01 +0000 | [diff] [blame] | 52 | static s32 igb_reset_hw_82580(struct e1000_hw *); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 53 | static s32 igb_set_d0_lplu_state_82575(struct e1000_hw *, bool); |
| 54 | static s32 igb_setup_copper_link_82575(struct e1000_hw *); |
Alexander Duyck | 2fb02a2 | 2009-09-14 08:22:54 +0000 | [diff] [blame] | 55 | static s32 igb_setup_serdes_link_82575(struct e1000_hw *); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 56 | static s32 igb_write_phy_reg_sgmii_82575(struct e1000_hw *, u32, u16); |
| 57 | static void igb_clear_hw_cntrs_82575(struct e1000_hw *); |
| 58 | static s32 igb_acquire_swfw_sync_82575(struct e1000_hw *, u16); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 59 | static s32 igb_get_pcs_speed_and_duplex_82575(struct e1000_hw *, u16 *, |
| 60 | u16 *); |
| 61 | static s32 igb_get_phy_id_82575(struct e1000_hw *); |
| 62 | static void igb_release_swfw_sync_82575(struct e1000_hw *, u16); |
| 63 | static bool igb_sgmii_active_82575(struct e1000_hw *); |
| 64 | static s32 igb_reset_init_script_82575(struct e1000_hw *); |
| 65 | static s32 igb_read_mac_addr_82575(struct e1000_hw *); |
Alexander Duyck | 009bc06 | 2009-07-23 18:08:35 +0000 | [diff] [blame] | 66 | static s32 igb_set_pcie_completion_timeout(struct e1000_hw *hw); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 67 | |
Alexander Duyck | bb2ac47 | 2009-11-19 12:42:01 +0000 | [diff] [blame] | 68 | static const u16 e1000_82580_rxpbs_table[] = |
| 69 | { 36, 72, 144, 1, 2, 4, 8, 16, |
| 70 | 35, 70, 140 }; |
| 71 | #define E1000_82580_RXPBS_TABLE_SIZE \ |
| 72 | (sizeof(e1000_82580_rxpbs_table)/sizeof(u16)) |
| 73 | |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 74 | static s32 igb_get_invariants_82575(struct e1000_hw *hw) |
| 75 | { |
| 76 | struct e1000_phy_info *phy = &hw->phy; |
| 77 | struct e1000_nvm_info *nvm = &hw->nvm; |
| 78 | struct e1000_mac_info *mac = &hw->mac; |
Alexander Duyck | c1889bf | 2009-02-06 23:16:45 +0000 | [diff] [blame] | 79 | struct e1000_dev_spec_82575 * dev_spec = &hw->dev_spec._82575; |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 80 | u32 eecd; |
| 81 | s32 ret_val; |
| 82 | u16 size; |
| 83 | u32 ctrl_ext = 0; |
| 84 | |
| 85 | switch (hw->device_id) { |
| 86 | case E1000_DEV_ID_82575EB_COPPER: |
| 87 | case E1000_DEV_ID_82575EB_FIBER_SERDES: |
| 88 | case E1000_DEV_ID_82575GB_QUAD_COPPER: |
| 89 | mac->type = e1000_82575; |
| 90 | break; |
Alexander Duyck | 2d064c0 | 2008-07-08 15:10:12 -0700 | [diff] [blame] | 91 | case E1000_DEV_ID_82576: |
Alexander Duyck | 9eb2341 | 2009-03-13 20:42:15 +0000 | [diff] [blame] | 92 | case E1000_DEV_ID_82576_NS: |
Alexander Duyck | 747d49b | 2009-10-05 06:33:27 +0000 | [diff] [blame] | 93 | case E1000_DEV_ID_82576_NS_SERDES: |
Alexander Duyck | 2d064c0 | 2008-07-08 15:10:12 -0700 | [diff] [blame] | 94 | case E1000_DEV_ID_82576_FIBER: |
| 95 | case E1000_DEV_ID_82576_SERDES: |
Alexander Duyck | c8ea5ea | 2009-03-13 20:42:35 +0000 | [diff] [blame] | 96 | case E1000_DEV_ID_82576_QUAD_COPPER: |
Carolyn Wyborny | b894fa2 | 2010-03-19 06:07:48 +0000 | [diff] [blame] | 97 | case E1000_DEV_ID_82576_QUAD_COPPER_ET2: |
Alexander Duyck | 4703bf7 | 2009-07-23 18:09:48 +0000 | [diff] [blame] | 98 | case E1000_DEV_ID_82576_SERDES_QUAD: |
Alexander Duyck | 2d064c0 | 2008-07-08 15:10:12 -0700 | [diff] [blame] | 99 | mac->type = e1000_82576; |
| 100 | break; |
Alexander Duyck | bb2ac47 | 2009-11-19 12:42:01 +0000 | [diff] [blame] | 101 | case E1000_DEV_ID_82580_COPPER: |
| 102 | case E1000_DEV_ID_82580_FIBER: |
| 103 | case E1000_DEV_ID_82580_SERDES: |
| 104 | case E1000_DEV_ID_82580_SGMII: |
| 105 | case E1000_DEV_ID_82580_COPPER_DUAL: |
| 106 | mac->type = e1000_82580; |
| 107 | break; |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 108 | default: |
| 109 | return -E1000_ERR_MAC_INIT; |
| 110 | break; |
| 111 | } |
| 112 | |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 113 | /* Set media type */ |
| 114 | /* |
| 115 | * The 82575 uses bits 22:23 for link mode. The mode can be changed |
| 116 | * based on the EEPROM. We cannot rely upon device ID. There |
| 117 | * is no distinguishable difference between fiber and internal |
| 118 | * SerDes mode on the 82575. There can be an external PHY attached |
| 119 | * on the SGMII interface. For this, we'll set sgmii_active to true. |
| 120 | */ |
| 121 | phy->media_type = e1000_media_type_copper; |
| 122 | dev_spec->sgmii_active = false; |
| 123 | |
| 124 | ctrl_ext = rd32(E1000_CTRL_EXT); |
Alexander Duyck | 2fb02a2 | 2009-09-14 08:22:54 +0000 | [diff] [blame] | 125 | switch (ctrl_ext & E1000_CTRL_EXT_LINK_MODE_MASK) { |
| 126 | case E1000_CTRL_EXT_LINK_MODE_SGMII: |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 127 | dev_spec->sgmii_active = true; |
| 128 | ctrl_ext |= E1000_CTRL_I2C_ENA; |
Alexander Duyck | 2fb02a2 | 2009-09-14 08:22:54 +0000 | [diff] [blame] | 129 | break; |
Alexander Duyck | bb2ac47 | 2009-11-19 12:42:01 +0000 | [diff] [blame] | 130 | case E1000_CTRL_EXT_LINK_MODE_1000BASE_KX: |
Alexander Duyck | 2fb02a2 | 2009-09-14 08:22:54 +0000 | [diff] [blame] | 131 | case E1000_CTRL_EXT_LINK_MODE_PCIE_SERDES: |
| 132 | hw->phy.media_type = e1000_media_type_internal_serdes; |
| 133 | ctrl_ext |= E1000_CTRL_I2C_ENA; |
| 134 | break; |
| 135 | default: |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 136 | ctrl_ext &= ~E1000_CTRL_I2C_ENA; |
Alexander Duyck | 2fb02a2 | 2009-09-14 08:22:54 +0000 | [diff] [blame] | 137 | break; |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 138 | } |
Alexander Duyck | 2fb02a2 | 2009-09-14 08:22:54 +0000 | [diff] [blame] | 139 | |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 140 | wr32(E1000_CTRL_EXT, ctrl_ext); |
| 141 | |
Alexander Duyck | bb2ac47 | 2009-11-19 12:42:01 +0000 | [diff] [blame] | 142 | /* |
| 143 | * if using i2c make certain the MDICNFG register is cleared to prevent |
| 144 | * communications from being misrouted to the mdic registers |
| 145 | */ |
| 146 | if ((ctrl_ext & E1000_CTRL_I2C_ENA) && (hw->mac.type == e1000_82580)) |
| 147 | wr32(E1000_MDICNFG, 0); |
| 148 | |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 149 | /* Set mta register count */ |
| 150 | mac->mta_reg_count = 128; |
| 151 | /* Set rar entry count */ |
| 152 | mac->rar_entry_count = E1000_RAR_ENTRIES_82575; |
Alexander Duyck | 2d064c0 | 2008-07-08 15:10:12 -0700 | [diff] [blame] | 153 | if (mac->type == e1000_82576) |
| 154 | mac->rar_entry_count = E1000_RAR_ENTRIES_82576; |
Alexander Duyck | bb2ac47 | 2009-11-19 12:42:01 +0000 | [diff] [blame] | 155 | if (mac->type == e1000_82580) |
| 156 | mac->rar_entry_count = E1000_RAR_ENTRIES_82580; |
| 157 | /* reset */ |
| 158 | if (mac->type == e1000_82580) |
| 159 | mac->ops.reset_hw = igb_reset_hw_82580; |
| 160 | else |
| 161 | mac->ops.reset_hw = igb_reset_hw_82575; |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 162 | /* Set if part includes ASF firmware */ |
| 163 | mac->asf_firmware_present = true; |
| 164 | /* Set if manageability features are enabled. */ |
| 165 | mac->arc_subsystem_valid = |
| 166 | (rd32(E1000_FWSM) & E1000_FWSM_MODE_MASK) |
| 167 | ? true : false; |
| 168 | |
| 169 | /* physical interface link setup */ |
| 170 | mac->ops.setup_physical_interface = |
| 171 | (hw->phy.media_type == e1000_media_type_copper) |
| 172 | ? igb_setup_copper_link_82575 |
Alexander Duyck | 2fb02a2 | 2009-09-14 08:22:54 +0000 | [diff] [blame] | 173 | : igb_setup_serdes_link_82575; |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 174 | |
| 175 | /* NVM initialization */ |
| 176 | eecd = rd32(E1000_EECD); |
| 177 | |
| 178 | nvm->opcode_bits = 8; |
| 179 | nvm->delay_usec = 1; |
| 180 | switch (nvm->override) { |
| 181 | case e1000_nvm_override_spi_large: |
| 182 | nvm->page_size = 32; |
| 183 | nvm->address_bits = 16; |
| 184 | break; |
| 185 | case e1000_nvm_override_spi_small: |
| 186 | nvm->page_size = 8; |
| 187 | nvm->address_bits = 8; |
| 188 | break; |
| 189 | default: |
| 190 | nvm->page_size = eecd & E1000_EECD_ADDR_BITS ? 32 : 8; |
| 191 | nvm->address_bits = eecd & E1000_EECD_ADDR_BITS ? 16 : 8; |
| 192 | break; |
| 193 | } |
| 194 | |
| 195 | nvm->type = e1000_nvm_eeprom_spi; |
| 196 | |
| 197 | size = (u16)((eecd & E1000_EECD_SIZE_EX_MASK) >> |
| 198 | E1000_EECD_SIZE_EX_SHIFT); |
| 199 | |
| 200 | /* |
| 201 | * Added to a constant, "size" becomes the left-shift value |
| 202 | * for setting word_size. |
| 203 | */ |
| 204 | size += NVM_WORD_SIZE_BASE_SHIFT; |
Jeff Kirsher | 5c3cad7 | 2008-06-27 10:59:33 -0700 | [diff] [blame] | 205 | |
| 206 | /* EEPROM access above 16k is unsupported */ |
| 207 | if (size > 14) |
| 208 | size = 14; |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 209 | nvm->word_size = 1 << size; |
| 210 | |
Alexander Duyck | a0c9860 | 2009-07-23 18:10:43 +0000 | [diff] [blame] | 211 | /* if 82576 then initialize mailbox parameters */ |
| 212 | if (mac->type == e1000_82576) |
| 213 | igb_init_mbx_params_pf(hw); |
| 214 | |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 215 | /* setup PHY parameters */ |
| 216 | if (phy->media_type != e1000_media_type_copper) { |
| 217 | phy->type = e1000_phy_none; |
| 218 | return 0; |
| 219 | } |
| 220 | |
| 221 | phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT; |
| 222 | phy->reset_delay_us = 100; |
| 223 | |
| 224 | /* PHY function pointers */ |
| 225 | if (igb_sgmii_active_82575(hw)) { |
Alexander Duyck | a8d2a0c | 2009-02-06 23:17:26 +0000 | [diff] [blame] | 226 | phy->ops.reset = igb_phy_hw_reset_sgmii_82575; |
| 227 | phy->ops.read_reg = igb_read_phy_reg_sgmii_82575; |
| 228 | phy->ops.write_reg = igb_write_phy_reg_sgmii_82575; |
Alexander Duyck | bb2ac47 | 2009-11-19 12:42:01 +0000 | [diff] [blame] | 229 | } else if (hw->mac.type == e1000_82580) { |
| 230 | phy->ops.reset = igb_phy_hw_reset; |
| 231 | phy->ops.read_reg = igb_read_phy_reg_82580; |
| 232 | phy->ops.write_reg = igb_write_phy_reg_82580; |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 233 | } else { |
Alexander Duyck | a8d2a0c | 2009-02-06 23:17:26 +0000 | [diff] [blame] | 234 | phy->ops.reset = igb_phy_hw_reset; |
| 235 | phy->ops.read_reg = igb_read_phy_reg_igp; |
| 236 | phy->ops.write_reg = igb_write_phy_reg_igp; |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 237 | } |
| 238 | |
Alexander Duyck | 19e588e | 2009-07-07 13:01:55 +0000 | [diff] [blame] | 239 | /* set lan id */ |
| 240 | hw->bus.func = (rd32(E1000_STATUS) & E1000_STATUS_FUNC_MASK) >> |
| 241 | E1000_STATUS_FUNC_SHIFT; |
| 242 | |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 243 | /* Set phy->phy_addr and phy->id. */ |
| 244 | ret_val = igb_get_phy_id_82575(hw); |
| 245 | if (ret_val) |
| 246 | return ret_val; |
| 247 | |
| 248 | /* Verify phy id and set remaining function pointers */ |
| 249 | switch (phy->id) { |
| 250 | case M88E1111_I_PHY_ID: |
| 251 | phy->type = e1000_phy_m88; |
| 252 | phy->ops.get_phy_info = igb_get_phy_info_m88; |
| 253 | phy->ops.get_cable_length = igb_get_cable_length_m88; |
| 254 | phy->ops.force_speed_duplex = igb_phy_force_speed_duplex_m88; |
| 255 | break; |
| 256 | case IGP03E1000_E_PHY_ID: |
| 257 | phy->type = e1000_phy_igp_3; |
| 258 | phy->ops.get_phy_info = igb_get_phy_info_igp; |
| 259 | phy->ops.get_cable_length = igb_get_cable_length_igp_2; |
| 260 | phy->ops.force_speed_duplex = igb_phy_force_speed_duplex_igp; |
| 261 | phy->ops.set_d0_lplu_state = igb_set_d0_lplu_state_82575; |
| 262 | phy->ops.set_d3_lplu_state = igb_set_d3_lplu_state; |
| 263 | break; |
Alexander Duyck | bb2ac47 | 2009-11-19 12:42:01 +0000 | [diff] [blame] | 264 | case I82580_I_PHY_ID: |
| 265 | phy->type = e1000_phy_82580; |
| 266 | phy->ops.force_speed_duplex = igb_phy_force_speed_duplex_82580; |
| 267 | phy->ops.get_cable_length = igb_get_cable_length_82580; |
| 268 | phy->ops.get_phy_info = igb_get_phy_info_82580; |
| 269 | break; |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 270 | default: |
| 271 | return -E1000_ERR_PHY; |
| 272 | } |
| 273 | |
| 274 | return 0; |
| 275 | } |
| 276 | |
| 277 | /** |
Jeff Kirsher | 733596b | 2008-06-27 10:59:59 -0700 | [diff] [blame] | 278 | * igb_acquire_phy_82575 - Acquire rights to access PHY |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 279 | * @hw: pointer to the HW structure |
| 280 | * |
| 281 | * Acquire access rights to the correct PHY. This is a |
| 282 | * function pointer entry point called by the api module. |
| 283 | **/ |
| 284 | static s32 igb_acquire_phy_82575(struct e1000_hw *hw) |
| 285 | { |
Alexander Duyck | 008c342 | 2009-10-05 06:32:07 +0000 | [diff] [blame] | 286 | u16 mask = E1000_SWFW_PHY0_SM; |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 287 | |
Alexander Duyck | 008c342 | 2009-10-05 06:32:07 +0000 | [diff] [blame] | 288 | if (hw->bus.func == E1000_FUNC_1) |
| 289 | mask = E1000_SWFW_PHY1_SM; |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 290 | |
| 291 | return igb_acquire_swfw_sync_82575(hw, mask); |
| 292 | } |
| 293 | |
| 294 | /** |
Jeff Kirsher | 733596b | 2008-06-27 10:59:59 -0700 | [diff] [blame] | 295 | * igb_release_phy_82575 - Release rights to access PHY |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 296 | * @hw: pointer to the HW structure |
| 297 | * |
| 298 | * A wrapper to release access rights to the correct PHY. This is a |
| 299 | * function pointer entry point called by the api module. |
| 300 | **/ |
| 301 | static void igb_release_phy_82575(struct e1000_hw *hw) |
| 302 | { |
Alexander Duyck | 008c342 | 2009-10-05 06:32:07 +0000 | [diff] [blame] | 303 | u16 mask = E1000_SWFW_PHY0_SM; |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 304 | |
Alexander Duyck | 008c342 | 2009-10-05 06:32:07 +0000 | [diff] [blame] | 305 | if (hw->bus.func == E1000_FUNC_1) |
| 306 | mask = E1000_SWFW_PHY1_SM; |
| 307 | |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 308 | igb_release_swfw_sync_82575(hw, mask); |
| 309 | } |
| 310 | |
| 311 | /** |
Jeff Kirsher | 733596b | 2008-06-27 10:59:59 -0700 | [diff] [blame] | 312 | * igb_read_phy_reg_sgmii_82575 - Read PHY register using sgmii |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 313 | * @hw: pointer to the HW structure |
| 314 | * @offset: register offset to be read |
| 315 | * @data: pointer to the read data |
| 316 | * |
| 317 | * Reads the PHY register at offset using the serial gigabit media independent |
| 318 | * interface and stores the retrieved information in data. |
| 319 | **/ |
| 320 | static s32 igb_read_phy_reg_sgmii_82575(struct e1000_hw *hw, u32 offset, |
| 321 | u16 *data) |
| 322 | { |
Alexander Duyck | bf6f7a9 | 2009-10-05 06:32:27 +0000 | [diff] [blame] | 323 | s32 ret_val = -E1000_ERR_PARAM; |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 324 | |
| 325 | if (offset > E1000_MAX_SGMII_PHY_REG_ADDR) { |
Auke Kok | 652fff3 | 2008-06-27 11:00:18 -0700 | [diff] [blame] | 326 | hw_dbg("PHY Address %u is out of range\n", offset); |
Alexander Duyck | bf6f7a9 | 2009-10-05 06:32:27 +0000 | [diff] [blame] | 327 | goto out; |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 328 | } |
| 329 | |
Alexander Duyck | bf6f7a9 | 2009-10-05 06:32:27 +0000 | [diff] [blame] | 330 | ret_val = hw->phy.ops.acquire(hw); |
| 331 | if (ret_val) |
| 332 | goto out; |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 333 | |
Alexander Duyck | bf6f7a9 | 2009-10-05 06:32:27 +0000 | [diff] [blame] | 334 | ret_val = igb_read_phy_reg_i2c(hw, offset, data); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 335 | |
Alexander Duyck | bf6f7a9 | 2009-10-05 06:32:27 +0000 | [diff] [blame] | 336 | hw->phy.ops.release(hw); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 337 | |
Alexander Duyck | bf6f7a9 | 2009-10-05 06:32:27 +0000 | [diff] [blame] | 338 | out: |
| 339 | return ret_val; |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 340 | } |
| 341 | |
| 342 | /** |
Jeff Kirsher | 733596b | 2008-06-27 10:59:59 -0700 | [diff] [blame] | 343 | * igb_write_phy_reg_sgmii_82575 - Write PHY register using sgmii |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 344 | * @hw: pointer to the HW structure |
| 345 | * @offset: register offset to write to |
| 346 | * @data: data to write at register offset |
| 347 | * |
| 348 | * Writes the data to PHY register at the offset using the serial gigabit |
| 349 | * media independent interface. |
| 350 | **/ |
| 351 | static s32 igb_write_phy_reg_sgmii_82575(struct e1000_hw *hw, u32 offset, |
| 352 | u16 data) |
| 353 | { |
Alexander Duyck | bf6f7a9 | 2009-10-05 06:32:27 +0000 | [diff] [blame] | 354 | s32 ret_val = -E1000_ERR_PARAM; |
| 355 | |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 356 | |
| 357 | if (offset > E1000_MAX_SGMII_PHY_REG_ADDR) { |
Auke Kok | 652fff3 | 2008-06-27 11:00:18 -0700 | [diff] [blame] | 358 | hw_dbg("PHY Address %d is out of range\n", offset); |
Alexander Duyck | bf6f7a9 | 2009-10-05 06:32:27 +0000 | [diff] [blame] | 359 | goto out; |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 360 | } |
| 361 | |
Alexander Duyck | bf6f7a9 | 2009-10-05 06:32:27 +0000 | [diff] [blame] | 362 | ret_val = hw->phy.ops.acquire(hw); |
| 363 | if (ret_val) |
| 364 | goto out; |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 365 | |
Alexander Duyck | bf6f7a9 | 2009-10-05 06:32:27 +0000 | [diff] [blame] | 366 | ret_val = igb_write_phy_reg_i2c(hw, offset, data); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 367 | |
Alexander Duyck | bf6f7a9 | 2009-10-05 06:32:27 +0000 | [diff] [blame] | 368 | hw->phy.ops.release(hw); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 369 | |
Alexander Duyck | bf6f7a9 | 2009-10-05 06:32:27 +0000 | [diff] [blame] | 370 | out: |
| 371 | return ret_val; |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 372 | } |
| 373 | |
| 374 | /** |
Jeff Kirsher | 733596b | 2008-06-27 10:59:59 -0700 | [diff] [blame] | 375 | * igb_get_phy_id_82575 - Retrieve PHY addr and id |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 376 | * @hw: pointer to the HW structure |
| 377 | * |
Auke Kok | 652fff3 | 2008-06-27 11:00:18 -0700 | [diff] [blame] | 378 | * Retrieves the PHY address and ID for both PHY's which do and do not use |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 379 | * sgmi interface. |
| 380 | **/ |
| 381 | static s32 igb_get_phy_id_82575(struct e1000_hw *hw) |
| 382 | { |
| 383 | struct e1000_phy_info *phy = &hw->phy; |
| 384 | s32 ret_val = 0; |
| 385 | u16 phy_id; |
Alexander Duyck | 2fb02a2 | 2009-09-14 08:22:54 +0000 | [diff] [blame] | 386 | u32 ctrl_ext; |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 387 | |
| 388 | /* |
| 389 | * For SGMII PHYs, we try the list of possible addresses until |
| 390 | * we find one that works. For non-SGMII PHYs |
| 391 | * (e.g. integrated copper PHYs), an address of 1 should |
| 392 | * work. The result of this function should mean phy->phy_addr |
| 393 | * and phy->id are set correctly. |
| 394 | */ |
| 395 | if (!(igb_sgmii_active_82575(hw))) { |
| 396 | phy->addr = 1; |
| 397 | ret_val = igb_get_phy_id(hw); |
| 398 | goto out; |
| 399 | } |
| 400 | |
Alexander Duyck | 2fb02a2 | 2009-09-14 08:22:54 +0000 | [diff] [blame] | 401 | /* Power on sgmii phy if it is disabled */ |
| 402 | ctrl_ext = rd32(E1000_CTRL_EXT); |
| 403 | wr32(E1000_CTRL_EXT, ctrl_ext & ~E1000_CTRL_EXT_SDP3_DATA); |
| 404 | wrfl(); |
| 405 | msleep(300); |
| 406 | |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 407 | /* |
| 408 | * The address field in the I2CCMD register is 3 bits and 0 is invalid. |
| 409 | * Therefore, we need to test 1-7 |
| 410 | */ |
| 411 | for (phy->addr = 1; phy->addr < 8; phy->addr++) { |
| 412 | ret_val = igb_read_phy_reg_sgmii_82575(hw, PHY_ID1, &phy_id); |
| 413 | if (ret_val == 0) { |
Auke Kok | 652fff3 | 2008-06-27 11:00:18 -0700 | [diff] [blame] | 414 | hw_dbg("Vendor ID 0x%08X read at address %u\n", |
| 415 | phy_id, phy->addr); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 416 | /* |
| 417 | * At the time of this writing, The M88 part is |
| 418 | * the only supported SGMII PHY product. |
| 419 | */ |
| 420 | if (phy_id == M88_VENDOR) |
| 421 | break; |
| 422 | } else { |
Auke Kok | 652fff3 | 2008-06-27 11:00:18 -0700 | [diff] [blame] | 423 | hw_dbg("PHY address %u was unreadable\n", phy->addr); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 424 | } |
| 425 | } |
| 426 | |
| 427 | /* A valid PHY type couldn't be found. */ |
| 428 | if (phy->addr == 8) { |
| 429 | phy->addr = 0; |
| 430 | ret_val = -E1000_ERR_PHY; |
| 431 | goto out; |
Alexander Duyck | 2fb02a2 | 2009-09-14 08:22:54 +0000 | [diff] [blame] | 432 | } else { |
| 433 | ret_val = igb_get_phy_id(hw); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 434 | } |
| 435 | |
Alexander Duyck | 2fb02a2 | 2009-09-14 08:22:54 +0000 | [diff] [blame] | 436 | /* restore previous sfp cage power state */ |
| 437 | wr32(E1000_CTRL_EXT, ctrl_ext); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 438 | |
| 439 | out: |
| 440 | return ret_val; |
| 441 | } |
| 442 | |
| 443 | /** |
Jeff Kirsher | 733596b | 2008-06-27 10:59:59 -0700 | [diff] [blame] | 444 | * igb_phy_hw_reset_sgmii_82575 - Performs a PHY reset |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 445 | * @hw: pointer to the HW structure |
| 446 | * |
| 447 | * Resets the PHY using the serial gigabit media independent interface. |
| 448 | **/ |
| 449 | static s32 igb_phy_hw_reset_sgmii_82575(struct e1000_hw *hw) |
| 450 | { |
| 451 | s32 ret_val; |
| 452 | |
| 453 | /* |
| 454 | * This isn't a true "hard" reset, but is the only reset |
| 455 | * available to us at this time. |
| 456 | */ |
| 457 | |
Auke Kok | 652fff3 | 2008-06-27 11:00:18 -0700 | [diff] [blame] | 458 | hw_dbg("Soft resetting SGMII attached PHY...\n"); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 459 | |
| 460 | /* |
| 461 | * SFP documentation requires the following to configure the SPF module |
| 462 | * to work on SGMII. No further documentation is given. |
| 463 | */ |
Alexander Duyck | a8d2a0c | 2009-02-06 23:17:26 +0000 | [diff] [blame] | 464 | ret_val = hw->phy.ops.write_reg(hw, 0x1B, 0x8084); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 465 | if (ret_val) |
| 466 | goto out; |
| 467 | |
| 468 | ret_val = igb_phy_sw_reset(hw); |
| 469 | |
| 470 | out: |
| 471 | return ret_val; |
| 472 | } |
| 473 | |
| 474 | /** |
Jeff Kirsher | 733596b | 2008-06-27 10:59:59 -0700 | [diff] [blame] | 475 | * igb_set_d0_lplu_state_82575 - Set Low Power Linkup D0 state |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 476 | * @hw: pointer to the HW structure |
| 477 | * @active: true to enable LPLU, false to disable |
| 478 | * |
| 479 | * Sets the LPLU D0 state according to the active flag. When |
| 480 | * activating LPLU this function also disables smart speed |
| 481 | * and vice versa. LPLU will not be activated unless the |
| 482 | * device autonegotiation advertisement meets standards of |
| 483 | * either 10 or 10/100 or 10/100/1000 at all duplexes. |
| 484 | * This is a function pointer entry point only called by |
| 485 | * PHY setup routines. |
| 486 | **/ |
| 487 | static s32 igb_set_d0_lplu_state_82575(struct e1000_hw *hw, bool active) |
| 488 | { |
| 489 | struct e1000_phy_info *phy = &hw->phy; |
| 490 | s32 ret_val; |
| 491 | u16 data; |
| 492 | |
Alexander Duyck | a8d2a0c | 2009-02-06 23:17:26 +0000 | [diff] [blame] | 493 | ret_val = phy->ops.read_reg(hw, IGP02E1000_PHY_POWER_MGMT, &data); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 494 | if (ret_val) |
| 495 | goto out; |
| 496 | |
| 497 | if (active) { |
| 498 | data |= IGP02E1000_PM_D0_LPLU; |
Alexander Duyck | a8d2a0c | 2009-02-06 23:17:26 +0000 | [diff] [blame] | 499 | ret_val = phy->ops.write_reg(hw, IGP02E1000_PHY_POWER_MGMT, |
Auke Kok | 652fff3 | 2008-06-27 11:00:18 -0700 | [diff] [blame] | 500 | data); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 501 | if (ret_val) |
| 502 | goto out; |
| 503 | |
| 504 | /* When LPLU is enabled, we should disable SmartSpeed */ |
Alexander Duyck | a8d2a0c | 2009-02-06 23:17:26 +0000 | [diff] [blame] | 505 | ret_val = phy->ops.read_reg(hw, IGP01E1000_PHY_PORT_CONFIG, |
Auke Kok | 652fff3 | 2008-06-27 11:00:18 -0700 | [diff] [blame] | 506 | &data); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 507 | data &= ~IGP01E1000_PSCFR_SMART_SPEED; |
Alexander Duyck | a8d2a0c | 2009-02-06 23:17:26 +0000 | [diff] [blame] | 508 | ret_val = phy->ops.write_reg(hw, IGP01E1000_PHY_PORT_CONFIG, |
Auke Kok | 652fff3 | 2008-06-27 11:00:18 -0700 | [diff] [blame] | 509 | data); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 510 | if (ret_val) |
| 511 | goto out; |
| 512 | } else { |
| 513 | data &= ~IGP02E1000_PM_D0_LPLU; |
Alexander Duyck | a8d2a0c | 2009-02-06 23:17:26 +0000 | [diff] [blame] | 514 | ret_val = phy->ops.write_reg(hw, IGP02E1000_PHY_POWER_MGMT, |
Auke Kok | 652fff3 | 2008-06-27 11:00:18 -0700 | [diff] [blame] | 515 | data); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 516 | /* |
| 517 | * LPLU and SmartSpeed are mutually exclusive. LPLU is used |
| 518 | * during Dx states where the power conservation is most |
| 519 | * important. During driver activity we should enable |
| 520 | * SmartSpeed, so performance is maintained. |
| 521 | */ |
| 522 | if (phy->smart_speed == e1000_smart_speed_on) { |
Alexander Duyck | a8d2a0c | 2009-02-06 23:17:26 +0000 | [diff] [blame] | 523 | ret_val = phy->ops.read_reg(hw, |
Auke Kok | 652fff3 | 2008-06-27 11:00:18 -0700 | [diff] [blame] | 524 | IGP01E1000_PHY_PORT_CONFIG, &data); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 525 | if (ret_val) |
| 526 | goto out; |
| 527 | |
| 528 | data |= IGP01E1000_PSCFR_SMART_SPEED; |
Alexander Duyck | a8d2a0c | 2009-02-06 23:17:26 +0000 | [diff] [blame] | 529 | ret_val = phy->ops.write_reg(hw, |
Auke Kok | 652fff3 | 2008-06-27 11:00:18 -0700 | [diff] [blame] | 530 | IGP01E1000_PHY_PORT_CONFIG, data); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 531 | if (ret_val) |
| 532 | goto out; |
| 533 | } else if (phy->smart_speed == e1000_smart_speed_off) { |
Alexander Duyck | a8d2a0c | 2009-02-06 23:17:26 +0000 | [diff] [blame] | 534 | ret_val = phy->ops.read_reg(hw, |
Auke Kok | 652fff3 | 2008-06-27 11:00:18 -0700 | [diff] [blame] | 535 | IGP01E1000_PHY_PORT_CONFIG, &data); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 536 | if (ret_val) |
| 537 | goto out; |
| 538 | |
| 539 | data &= ~IGP01E1000_PSCFR_SMART_SPEED; |
Alexander Duyck | a8d2a0c | 2009-02-06 23:17:26 +0000 | [diff] [blame] | 540 | ret_val = phy->ops.write_reg(hw, |
Auke Kok | 652fff3 | 2008-06-27 11:00:18 -0700 | [diff] [blame] | 541 | IGP01E1000_PHY_PORT_CONFIG, data); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 542 | if (ret_val) |
| 543 | goto out; |
| 544 | } |
| 545 | } |
| 546 | |
| 547 | out: |
| 548 | return ret_val; |
| 549 | } |
| 550 | |
| 551 | /** |
Jeff Kirsher | 733596b | 2008-06-27 10:59:59 -0700 | [diff] [blame] | 552 | * igb_acquire_nvm_82575 - Request for access to EEPROM |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 553 | * @hw: pointer to the HW structure |
| 554 | * |
Auke Kok | 652fff3 | 2008-06-27 11:00:18 -0700 | [diff] [blame] | 555 | * Acquire the necessary semaphores for exclusive access to the EEPROM. |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 556 | * Set the EEPROM access request bit and wait for EEPROM access grant bit. |
| 557 | * Return successful if access grant bit set, else clear the request for |
| 558 | * EEPROM access and return -E1000_ERR_NVM (-1). |
| 559 | **/ |
| 560 | static s32 igb_acquire_nvm_82575(struct e1000_hw *hw) |
| 561 | { |
| 562 | s32 ret_val; |
| 563 | |
| 564 | ret_val = igb_acquire_swfw_sync_82575(hw, E1000_SWFW_EEP_SM); |
| 565 | if (ret_val) |
| 566 | goto out; |
| 567 | |
| 568 | ret_val = igb_acquire_nvm(hw); |
| 569 | |
| 570 | if (ret_val) |
| 571 | igb_release_swfw_sync_82575(hw, E1000_SWFW_EEP_SM); |
| 572 | |
| 573 | out: |
| 574 | return ret_val; |
| 575 | } |
| 576 | |
| 577 | /** |
Jeff Kirsher | 733596b | 2008-06-27 10:59:59 -0700 | [diff] [blame] | 578 | * igb_release_nvm_82575 - Release exclusive access to EEPROM |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 579 | * @hw: pointer to the HW structure |
| 580 | * |
| 581 | * Stop any current commands to the EEPROM and clear the EEPROM request bit, |
| 582 | * then release the semaphores acquired. |
| 583 | **/ |
| 584 | static void igb_release_nvm_82575(struct e1000_hw *hw) |
| 585 | { |
| 586 | igb_release_nvm(hw); |
| 587 | igb_release_swfw_sync_82575(hw, E1000_SWFW_EEP_SM); |
| 588 | } |
| 589 | |
| 590 | /** |
Jeff Kirsher | 733596b | 2008-06-27 10:59:59 -0700 | [diff] [blame] | 591 | * igb_acquire_swfw_sync_82575 - Acquire SW/FW semaphore |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 592 | * @hw: pointer to the HW structure |
| 593 | * @mask: specifies which semaphore to acquire |
| 594 | * |
| 595 | * Acquire the SW/FW semaphore to access the PHY or NVM. The mask |
| 596 | * will also specify which port we're acquiring the lock for. |
| 597 | **/ |
| 598 | static s32 igb_acquire_swfw_sync_82575(struct e1000_hw *hw, u16 mask) |
| 599 | { |
| 600 | u32 swfw_sync; |
| 601 | u32 swmask = mask; |
| 602 | u32 fwmask = mask << 16; |
| 603 | s32 ret_val = 0; |
| 604 | s32 i = 0, timeout = 200; /* FIXME: find real value to use here */ |
| 605 | |
| 606 | while (i < timeout) { |
| 607 | if (igb_get_hw_semaphore(hw)) { |
| 608 | ret_val = -E1000_ERR_SWFW_SYNC; |
| 609 | goto out; |
| 610 | } |
| 611 | |
| 612 | swfw_sync = rd32(E1000_SW_FW_SYNC); |
| 613 | if (!(swfw_sync & (fwmask | swmask))) |
| 614 | break; |
| 615 | |
| 616 | /* |
| 617 | * Firmware currently using resource (fwmask) |
| 618 | * or other software thread using resource (swmask) |
| 619 | */ |
| 620 | igb_put_hw_semaphore(hw); |
| 621 | mdelay(5); |
| 622 | i++; |
| 623 | } |
| 624 | |
| 625 | if (i == timeout) { |
Auke Kok | 652fff3 | 2008-06-27 11:00:18 -0700 | [diff] [blame] | 626 | hw_dbg("Driver can't access resource, SW_FW_SYNC timeout.\n"); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 627 | ret_val = -E1000_ERR_SWFW_SYNC; |
| 628 | goto out; |
| 629 | } |
| 630 | |
| 631 | swfw_sync |= swmask; |
| 632 | wr32(E1000_SW_FW_SYNC, swfw_sync); |
| 633 | |
| 634 | igb_put_hw_semaphore(hw); |
| 635 | |
| 636 | out: |
| 637 | return ret_val; |
| 638 | } |
| 639 | |
| 640 | /** |
Jeff Kirsher | 733596b | 2008-06-27 10:59:59 -0700 | [diff] [blame] | 641 | * igb_release_swfw_sync_82575 - Release SW/FW semaphore |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 642 | * @hw: pointer to the HW structure |
| 643 | * @mask: specifies which semaphore to acquire |
| 644 | * |
| 645 | * Release the SW/FW semaphore used to access the PHY or NVM. The mask |
| 646 | * will also specify which port we're releasing the lock for. |
| 647 | **/ |
| 648 | static void igb_release_swfw_sync_82575(struct e1000_hw *hw, u16 mask) |
| 649 | { |
| 650 | u32 swfw_sync; |
| 651 | |
| 652 | while (igb_get_hw_semaphore(hw) != 0); |
| 653 | /* Empty */ |
| 654 | |
| 655 | swfw_sync = rd32(E1000_SW_FW_SYNC); |
| 656 | swfw_sync &= ~mask; |
| 657 | wr32(E1000_SW_FW_SYNC, swfw_sync); |
| 658 | |
| 659 | igb_put_hw_semaphore(hw); |
| 660 | } |
| 661 | |
| 662 | /** |
Jeff Kirsher | 733596b | 2008-06-27 10:59:59 -0700 | [diff] [blame] | 663 | * igb_get_cfg_done_82575 - Read config done bit |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 664 | * @hw: pointer to the HW structure |
| 665 | * |
| 666 | * Read the management control register for the config done bit for |
| 667 | * completion status. NOTE: silicon which is EEPROM-less will fail trying |
| 668 | * to read the config done bit, so an error is *ONLY* logged and returns |
| 669 | * 0. If we were to return with error, EEPROM-less silicon |
| 670 | * would not be able to be reset or change link. |
| 671 | **/ |
| 672 | static s32 igb_get_cfg_done_82575(struct e1000_hw *hw) |
| 673 | { |
| 674 | s32 timeout = PHY_CFG_TIMEOUT; |
| 675 | s32 ret_val = 0; |
| 676 | u32 mask = E1000_NVM_CFG_DONE_PORT_0; |
| 677 | |
| 678 | if (hw->bus.func == 1) |
| 679 | mask = E1000_NVM_CFG_DONE_PORT_1; |
Alexander Duyck | bb2ac47 | 2009-11-19 12:42:01 +0000 | [diff] [blame] | 680 | else if (hw->bus.func == E1000_FUNC_2) |
| 681 | mask = E1000_NVM_CFG_DONE_PORT_2; |
| 682 | else if (hw->bus.func == E1000_FUNC_3) |
| 683 | mask = E1000_NVM_CFG_DONE_PORT_3; |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 684 | |
| 685 | while (timeout) { |
| 686 | if (rd32(E1000_EEMNGCTL) & mask) |
| 687 | break; |
| 688 | msleep(1); |
| 689 | timeout--; |
| 690 | } |
| 691 | if (!timeout) |
Auke Kok | 652fff3 | 2008-06-27 11:00:18 -0700 | [diff] [blame] | 692 | hw_dbg("MNG configuration cycle has not completed.\n"); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 693 | |
| 694 | /* If EEPROM is not marked present, init the PHY manually */ |
| 695 | if (((rd32(E1000_EECD) & E1000_EECD_PRES) == 0) && |
| 696 | (hw->phy.type == e1000_phy_igp_3)) |
| 697 | igb_phy_init_script_igp3(hw); |
| 698 | |
| 699 | return ret_val; |
| 700 | } |
| 701 | |
| 702 | /** |
Jeff Kirsher | 733596b | 2008-06-27 10:59:59 -0700 | [diff] [blame] | 703 | * igb_check_for_link_82575 - Check for link |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 704 | * @hw: pointer to the HW structure |
| 705 | * |
| 706 | * If sgmii is enabled, then use the pcs register to determine link, otherwise |
| 707 | * use the generic interface for determining link. |
| 708 | **/ |
| 709 | static s32 igb_check_for_link_82575(struct e1000_hw *hw) |
| 710 | { |
| 711 | s32 ret_val; |
| 712 | u16 speed, duplex; |
| 713 | |
Alexander Duyck | 70d92f8 | 2009-10-05 06:31:47 +0000 | [diff] [blame] | 714 | if (hw->phy.media_type != e1000_media_type_copper) { |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 715 | ret_val = igb_get_pcs_speed_and_duplex_82575(hw, &speed, |
Alexander Duyck | 2d064c0 | 2008-07-08 15:10:12 -0700 | [diff] [blame] | 716 | &duplex); |
Alexander Duyck | 5d0932a | 2009-01-31 00:53:18 -0800 | [diff] [blame] | 717 | /* |
| 718 | * Use this flag to determine if link needs to be checked or |
| 719 | * not. If we have link clear the flag so that we do not |
| 720 | * continue to check for link. |
| 721 | */ |
| 722 | hw->mac.get_link_status = !hw->mac.serdes_has_link; |
| 723 | } else { |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 724 | ret_val = igb_check_for_copper_link(hw); |
Alexander Duyck | 5d0932a | 2009-01-31 00:53:18 -0800 | [diff] [blame] | 725 | } |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 726 | |
| 727 | return ret_val; |
| 728 | } |
Alexander Duyck | 70d92f8 | 2009-10-05 06:31:47 +0000 | [diff] [blame] | 729 | |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 730 | /** |
Nick Nunley | 88a268c | 2010-02-17 01:01:59 +0000 | [diff] [blame] | 731 | * igb_power_up_serdes_link_82575 - Power up the serdes link after shutdown |
| 732 | * @hw: pointer to the HW structure |
| 733 | **/ |
| 734 | void igb_power_up_serdes_link_82575(struct e1000_hw *hw) |
| 735 | { |
| 736 | u32 reg; |
| 737 | |
| 738 | |
| 739 | if ((hw->phy.media_type != e1000_media_type_internal_serdes) && |
| 740 | !igb_sgmii_active_82575(hw)) |
| 741 | return; |
| 742 | |
| 743 | /* Enable PCS to turn on link */ |
| 744 | reg = rd32(E1000_PCS_CFG0); |
| 745 | reg |= E1000_PCS_CFG_PCS_EN; |
| 746 | wr32(E1000_PCS_CFG0, reg); |
| 747 | |
| 748 | /* Power up the laser */ |
| 749 | reg = rd32(E1000_CTRL_EXT); |
| 750 | reg &= ~E1000_CTRL_EXT_SDP3_DATA; |
| 751 | wr32(E1000_CTRL_EXT, reg); |
| 752 | |
| 753 | /* flush the write to verify completion */ |
| 754 | wrfl(); |
| 755 | msleep(1); |
| 756 | } |
| 757 | |
| 758 | /** |
Jeff Kirsher | 733596b | 2008-06-27 10:59:59 -0700 | [diff] [blame] | 759 | * igb_get_pcs_speed_and_duplex_82575 - Retrieve current speed/duplex |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 760 | * @hw: pointer to the HW structure |
| 761 | * @speed: stores the current speed |
| 762 | * @duplex: stores the current duplex |
| 763 | * |
Auke Kok | 652fff3 | 2008-06-27 11:00:18 -0700 | [diff] [blame] | 764 | * Using the physical coding sub-layer (PCS), retrieve the current speed and |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 765 | * duplex, then store the values in the pointers provided. |
| 766 | **/ |
| 767 | static s32 igb_get_pcs_speed_and_duplex_82575(struct e1000_hw *hw, u16 *speed, |
| 768 | u16 *duplex) |
| 769 | { |
| 770 | struct e1000_mac_info *mac = &hw->mac; |
| 771 | u32 pcs; |
| 772 | |
| 773 | /* Set up defaults for the return values of this function */ |
| 774 | mac->serdes_has_link = false; |
| 775 | *speed = 0; |
| 776 | *duplex = 0; |
| 777 | |
| 778 | /* |
| 779 | * Read the PCS Status register for link state. For non-copper mode, |
| 780 | * the status register is not accurate. The PCS status register is |
| 781 | * used instead. |
| 782 | */ |
| 783 | pcs = rd32(E1000_PCS_LSTAT); |
| 784 | |
| 785 | /* |
| 786 | * The link up bit determines when link is up on autoneg. The sync ok |
| 787 | * gets set once both sides sync up and agree upon link. Stable link |
| 788 | * can be determined by checking for both link up and link sync ok |
| 789 | */ |
| 790 | if ((pcs & E1000_PCS_LSTS_LINK_OK) && (pcs & E1000_PCS_LSTS_SYNK_OK)) { |
| 791 | mac->serdes_has_link = true; |
| 792 | |
| 793 | /* Detect and store PCS speed */ |
| 794 | if (pcs & E1000_PCS_LSTS_SPEED_1000) { |
| 795 | *speed = SPEED_1000; |
| 796 | } else if (pcs & E1000_PCS_LSTS_SPEED_100) { |
| 797 | *speed = SPEED_100; |
| 798 | } else { |
| 799 | *speed = SPEED_10; |
| 800 | } |
| 801 | |
| 802 | /* Detect and store PCS duplex */ |
| 803 | if (pcs & E1000_PCS_LSTS_DUPLEX_FULL) { |
| 804 | *duplex = FULL_DUPLEX; |
| 805 | } else { |
| 806 | *duplex = HALF_DUPLEX; |
| 807 | } |
| 808 | } |
| 809 | |
| 810 | return 0; |
| 811 | } |
| 812 | |
| 813 | /** |
Alexander Duyck | 2fb02a2 | 2009-09-14 08:22:54 +0000 | [diff] [blame] | 814 | * igb_shutdown_serdes_link_82575 - Remove link during power down |
Alexander Duyck | 2d064c0 | 2008-07-08 15:10:12 -0700 | [diff] [blame] | 815 | * @hw: pointer to the HW structure |
| 816 | * |
| 817 | * In the case of fiber serdes, shut down optics and PCS on driver unload |
| 818 | * when management pass thru is not enabled. |
| 819 | **/ |
Alexander Duyck | 2fb02a2 | 2009-09-14 08:22:54 +0000 | [diff] [blame] | 820 | void igb_shutdown_serdes_link_82575(struct e1000_hw *hw) |
Alexander Duyck | 2d064c0 | 2008-07-08 15:10:12 -0700 | [diff] [blame] | 821 | { |
| 822 | u32 reg; |
| 823 | |
Nick Nunley | 53c992f | 2010-02-17 01:01:40 +0000 | [diff] [blame] | 824 | if (hw->phy.media_type != e1000_media_type_internal_serdes && |
Alexander Duyck | 2fb02a2 | 2009-09-14 08:22:54 +0000 | [diff] [blame] | 825 | igb_sgmii_active_82575(hw)) |
Alexander Duyck | 2d064c0 | 2008-07-08 15:10:12 -0700 | [diff] [blame] | 826 | return; |
| 827 | |
Nick Nunley | 53c992f | 2010-02-17 01:01:40 +0000 | [diff] [blame] | 828 | if (!igb_enable_mng_pass_thru(hw)) { |
Alexander Duyck | 2d064c0 | 2008-07-08 15:10:12 -0700 | [diff] [blame] | 829 | /* Disable PCS to turn off link */ |
| 830 | reg = rd32(E1000_PCS_CFG0); |
| 831 | reg &= ~E1000_PCS_CFG_PCS_EN; |
| 832 | wr32(E1000_PCS_CFG0, reg); |
| 833 | |
| 834 | /* shutdown the laser */ |
| 835 | reg = rd32(E1000_CTRL_EXT); |
Alexander Duyck | 2fb02a2 | 2009-09-14 08:22:54 +0000 | [diff] [blame] | 836 | reg |= E1000_CTRL_EXT_SDP3_DATA; |
Alexander Duyck | 2d064c0 | 2008-07-08 15:10:12 -0700 | [diff] [blame] | 837 | wr32(E1000_CTRL_EXT, reg); |
| 838 | |
| 839 | /* flush the write to verify completion */ |
| 840 | wrfl(); |
| 841 | msleep(1); |
| 842 | } |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 843 | } |
| 844 | |
| 845 | /** |
Jeff Kirsher | 733596b | 2008-06-27 10:59:59 -0700 | [diff] [blame] | 846 | * igb_reset_hw_82575 - Reset hardware |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 847 | * @hw: pointer to the HW structure |
| 848 | * |
| 849 | * This resets the hardware into a known state. This is a |
| 850 | * function pointer entry point called by the api module. |
| 851 | **/ |
| 852 | static s32 igb_reset_hw_82575(struct e1000_hw *hw) |
| 853 | { |
| 854 | u32 ctrl, icr; |
| 855 | s32 ret_val; |
| 856 | |
| 857 | /* |
| 858 | * Prevent the PCI-E bus from sticking if there is no TLP connection |
| 859 | * on the last TLP read/write transaction when MAC is reset. |
| 860 | */ |
| 861 | ret_val = igb_disable_pcie_master(hw); |
| 862 | if (ret_val) |
Auke Kok | 652fff3 | 2008-06-27 11:00:18 -0700 | [diff] [blame] | 863 | hw_dbg("PCI-E Master disable polling has failed.\n"); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 864 | |
Alexander Duyck | 009bc06 | 2009-07-23 18:08:35 +0000 | [diff] [blame] | 865 | /* set the completion timeout for interface */ |
| 866 | ret_val = igb_set_pcie_completion_timeout(hw); |
| 867 | if (ret_val) { |
| 868 | hw_dbg("PCI-E Set completion timeout has failed.\n"); |
| 869 | } |
| 870 | |
Auke Kok | 652fff3 | 2008-06-27 11:00:18 -0700 | [diff] [blame] | 871 | hw_dbg("Masking off all interrupts\n"); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 872 | wr32(E1000_IMC, 0xffffffff); |
| 873 | |
| 874 | wr32(E1000_RCTL, 0); |
| 875 | wr32(E1000_TCTL, E1000_TCTL_PSP); |
| 876 | wrfl(); |
| 877 | |
| 878 | msleep(10); |
| 879 | |
| 880 | ctrl = rd32(E1000_CTRL); |
| 881 | |
Auke Kok | 652fff3 | 2008-06-27 11:00:18 -0700 | [diff] [blame] | 882 | hw_dbg("Issuing a global reset to MAC\n"); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 883 | wr32(E1000_CTRL, ctrl | E1000_CTRL_RST); |
| 884 | |
| 885 | ret_val = igb_get_auto_rd_done(hw); |
| 886 | if (ret_val) { |
| 887 | /* |
| 888 | * When auto config read does not complete, do not |
| 889 | * return with an error. This can happen in situations |
| 890 | * where there is no eeprom and prevents getting link. |
| 891 | */ |
Auke Kok | 652fff3 | 2008-06-27 11:00:18 -0700 | [diff] [blame] | 892 | hw_dbg("Auto Read Done did not complete\n"); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 893 | } |
| 894 | |
| 895 | /* If EEPROM is not present, run manual init scripts */ |
| 896 | if ((rd32(E1000_EECD) & E1000_EECD_PRES) == 0) |
| 897 | igb_reset_init_script_82575(hw); |
| 898 | |
| 899 | /* Clear any pending interrupt events. */ |
| 900 | wr32(E1000_IMC, 0xffffffff); |
| 901 | icr = rd32(E1000_ICR); |
| 902 | |
Alexander Duyck | 5ac1665 | 2009-07-23 18:09:12 +0000 | [diff] [blame] | 903 | /* Install any alternate MAC address into RAR0 */ |
| 904 | ret_val = igb_check_alt_mac_addr(hw); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 905 | |
| 906 | return ret_val; |
| 907 | } |
| 908 | |
| 909 | /** |
Jeff Kirsher | 733596b | 2008-06-27 10:59:59 -0700 | [diff] [blame] | 910 | * igb_init_hw_82575 - Initialize hardware |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 911 | * @hw: pointer to the HW structure |
| 912 | * |
| 913 | * This inits the hardware readying it for operation. |
| 914 | **/ |
| 915 | static s32 igb_init_hw_82575(struct e1000_hw *hw) |
| 916 | { |
| 917 | struct e1000_mac_info *mac = &hw->mac; |
| 918 | s32 ret_val; |
| 919 | u16 i, rar_count = mac->rar_entry_count; |
| 920 | |
| 921 | /* Initialize identification LED */ |
| 922 | ret_val = igb_id_led_init(hw); |
| 923 | if (ret_val) { |
Auke Kok | 652fff3 | 2008-06-27 11:00:18 -0700 | [diff] [blame] | 924 | hw_dbg("Error initializing identification LED\n"); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 925 | /* This is not fatal and we should not stop init due to this */ |
| 926 | } |
| 927 | |
| 928 | /* Disabling VLAN filtering */ |
Auke Kok | 652fff3 | 2008-06-27 11:00:18 -0700 | [diff] [blame] | 929 | hw_dbg("Initializing the IEEE VLAN\n"); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 930 | igb_clear_vfta(hw); |
| 931 | |
| 932 | /* Setup the receive address */ |
Alexander Duyck | 5ac1665 | 2009-07-23 18:09:12 +0000 | [diff] [blame] | 933 | igb_init_rx_addrs(hw, rar_count); |
| 934 | |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 935 | /* Zero out the Multicast HASH table */ |
Auke Kok | 652fff3 | 2008-06-27 11:00:18 -0700 | [diff] [blame] | 936 | hw_dbg("Zeroing the MTA\n"); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 937 | for (i = 0; i < mac->mta_reg_count; i++) |
| 938 | array_wr32(E1000_MTA, i, 0); |
| 939 | |
Alexander Duyck | 68d480c | 2009-10-05 06:33:08 +0000 | [diff] [blame] | 940 | /* Zero out the Unicast HASH table */ |
| 941 | hw_dbg("Zeroing the UTA\n"); |
| 942 | for (i = 0; i < mac->uta_reg_count; i++) |
| 943 | array_wr32(E1000_UTA, i, 0); |
| 944 | |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 945 | /* Setup link and flow control */ |
| 946 | ret_val = igb_setup_link(hw); |
| 947 | |
| 948 | /* |
| 949 | * Clear all of the statistics registers (clear on read). It is |
| 950 | * important that we do this after we have tried to establish link |
| 951 | * because the symbol error count will increment wildly if there |
| 952 | * is no link. |
| 953 | */ |
| 954 | igb_clear_hw_cntrs_82575(hw); |
| 955 | |
| 956 | return ret_val; |
| 957 | } |
| 958 | |
| 959 | /** |
Jeff Kirsher | 733596b | 2008-06-27 10:59:59 -0700 | [diff] [blame] | 960 | * igb_setup_copper_link_82575 - Configure copper link settings |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 961 | * @hw: pointer to the HW structure |
| 962 | * |
| 963 | * Configures the link for auto-neg or forced speed and duplex. Then we check |
| 964 | * for link, once link is established calls to configure collision distance |
| 965 | * and flow control are called. |
| 966 | **/ |
| 967 | static s32 igb_setup_copper_link_82575(struct e1000_hw *hw) |
| 968 | { |
Alexander Duyck | 12645a1 | 2009-07-23 18:08:16 +0000 | [diff] [blame] | 969 | u32 ctrl; |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 970 | s32 ret_val; |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 971 | |
| 972 | ctrl = rd32(E1000_CTRL); |
| 973 | ctrl |= E1000_CTRL_SLU; |
| 974 | ctrl &= ~(E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX); |
| 975 | wr32(E1000_CTRL, ctrl); |
| 976 | |
Alexander Duyck | 2fb02a2 | 2009-09-14 08:22:54 +0000 | [diff] [blame] | 977 | ret_val = igb_setup_serdes_link_82575(hw); |
| 978 | if (ret_val) |
| 979 | goto out; |
| 980 | |
| 981 | if (igb_sgmii_active_82575(hw) && !hw->phy.reset_disable) { |
Alexander Duyck | bb2ac47 | 2009-11-19 12:42:01 +0000 | [diff] [blame] | 982 | /* allow time for SFP cage time to power up phy */ |
| 983 | msleep(300); |
| 984 | |
Alexander Duyck | 2fb02a2 | 2009-09-14 08:22:54 +0000 | [diff] [blame] | 985 | ret_val = hw->phy.ops.reset(hw); |
| 986 | if (ret_val) { |
| 987 | hw_dbg("Error resetting the PHY.\n"); |
| 988 | goto out; |
| 989 | } |
| 990 | } |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 991 | switch (hw->phy.type) { |
| 992 | case e1000_phy_m88: |
| 993 | ret_val = igb_copper_link_setup_m88(hw); |
| 994 | break; |
| 995 | case e1000_phy_igp_3: |
| 996 | ret_val = igb_copper_link_setup_igp(hw); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 997 | break; |
Alexander Duyck | bb2ac47 | 2009-11-19 12:42:01 +0000 | [diff] [blame] | 998 | case e1000_phy_82580: |
| 999 | ret_val = igb_copper_link_setup_82580(hw); |
| 1000 | break; |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 1001 | default: |
| 1002 | ret_val = -E1000_ERR_PHY; |
| 1003 | break; |
| 1004 | } |
| 1005 | |
| 1006 | if (ret_val) |
| 1007 | goto out; |
| 1008 | |
Alexander Duyck | 81fadd8 | 2009-10-05 06:35:03 +0000 | [diff] [blame] | 1009 | ret_val = igb_setup_copper_link(hw); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 1010 | out: |
| 1011 | return ret_val; |
| 1012 | } |
| 1013 | |
| 1014 | /** |
Alexander Duyck | 70d92f8 | 2009-10-05 06:31:47 +0000 | [diff] [blame] | 1015 | * igb_setup_serdes_link_82575 - Setup link for serdes |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 1016 | * @hw: pointer to the HW structure |
| 1017 | * |
Alexander Duyck | 70d92f8 | 2009-10-05 06:31:47 +0000 | [diff] [blame] | 1018 | * Configure the physical coding sub-layer (PCS) link. The PCS link is |
| 1019 | * used on copper connections where the serialized gigabit media independent |
| 1020 | * interface (sgmii), or serdes fiber is being used. Configures the link |
| 1021 | * for auto-negotiation or forces speed/duplex. |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 1022 | **/ |
Alexander Duyck | 2fb02a2 | 2009-09-14 08:22:54 +0000 | [diff] [blame] | 1023 | static s32 igb_setup_serdes_link_82575(struct e1000_hw *hw) |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 1024 | { |
Alexander Duyck | bb2ac47 | 2009-11-19 12:42:01 +0000 | [diff] [blame] | 1025 | u32 ctrl_ext, ctrl_reg, reg; |
| 1026 | bool pcs_autoneg; |
Alexander Duyck | 2fb02a2 | 2009-09-14 08:22:54 +0000 | [diff] [blame] | 1027 | |
| 1028 | if ((hw->phy.media_type != e1000_media_type_internal_serdes) && |
| 1029 | !igb_sgmii_active_82575(hw)) |
| 1030 | return 0; |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 1031 | |
| 1032 | /* |
| 1033 | * On the 82575, SerDes loopback mode persists until it is |
| 1034 | * explicitly turned off or a power cycle is performed. A read to |
| 1035 | * the register does not indicate its status. Therefore, we ensure |
| 1036 | * loopback mode is disabled during initialization. |
| 1037 | */ |
| 1038 | wr32(E1000_SCTL, E1000_SCTL_DISABLE_SERDES_LOOPBACK); |
| 1039 | |
Alexander Duyck | 2fb02a2 | 2009-09-14 08:22:54 +0000 | [diff] [blame] | 1040 | /* power on the sfp cage if present */ |
Alexander Duyck | bb2ac47 | 2009-11-19 12:42:01 +0000 | [diff] [blame] | 1041 | ctrl_ext = rd32(E1000_CTRL_EXT); |
| 1042 | ctrl_ext &= ~E1000_CTRL_EXT_SDP3_DATA; |
| 1043 | wr32(E1000_CTRL_EXT, ctrl_ext); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 1044 | |
Alexander Duyck | 2fb02a2 | 2009-09-14 08:22:54 +0000 | [diff] [blame] | 1045 | ctrl_reg = rd32(E1000_CTRL); |
| 1046 | ctrl_reg |= E1000_CTRL_SLU; |
| 1047 | |
| 1048 | if (hw->mac.type == e1000_82575 || hw->mac.type == e1000_82576) { |
| 1049 | /* set both sw defined pins */ |
| 1050 | ctrl_reg |= E1000_CTRL_SWDPIN0 | E1000_CTRL_SWDPIN1; |
| 1051 | |
| 1052 | /* Set switch control to serdes energy detect */ |
| 1053 | reg = rd32(E1000_CONNSW); |
| 1054 | reg |= E1000_CONNSW_ENRGSRC; |
| 1055 | wr32(E1000_CONNSW, reg); |
Alexander Duyck | 921aa74 | 2009-01-21 14:42:28 -0800 | [diff] [blame] | 1056 | } |
| 1057 | |
Alexander Duyck | 2fb02a2 | 2009-09-14 08:22:54 +0000 | [diff] [blame] | 1058 | reg = rd32(E1000_PCS_LCTL); |
| 1059 | |
Alexander Duyck | bb2ac47 | 2009-11-19 12:42:01 +0000 | [diff] [blame] | 1060 | /* default pcs_autoneg to the same setting as mac autoneg */ |
| 1061 | pcs_autoneg = hw->mac.autoneg; |
Alexander Duyck | 2fb02a2 | 2009-09-14 08:22:54 +0000 | [diff] [blame] | 1062 | |
Alexander Duyck | bb2ac47 | 2009-11-19 12:42:01 +0000 | [diff] [blame] | 1063 | switch (ctrl_ext & E1000_CTRL_EXT_LINK_MODE_MASK) { |
| 1064 | case E1000_CTRL_EXT_LINK_MODE_SGMII: |
| 1065 | /* sgmii mode lets the phy handle forcing speed/duplex */ |
| 1066 | pcs_autoneg = true; |
| 1067 | /* autoneg time out should be disabled for SGMII mode */ |
Alexander Duyck | 2fb02a2 | 2009-09-14 08:22:54 +0000 | [diff] [blame] | 1068 | reg &= ~(E1000_PCS_LCTL_AN_TIMEOUT); |
Alexander Duyck | bb2ac47 | 2009-11-19 12:42:01 +0000 | [diff] [blame] | 1069 | break; |
| 1070 | case E1000_CTRL_EXT_LINK_MODE_1000BASE_KX: |
| 1071 | /* disable PCS autoneg and support parallel detect only */ |
| 1072 | pcs_autoneg = false; |
| 1073 | default: |
| 1074 | /* |
| 1075 | * non-SGMII modes only supports a speed of 1000/Full for the |
| 1076 | * link so it is best to just force the MAC and let the pcs |
| 1077 | * link either autoneg or be forced to 1000/Full |
| 1078 | */ |
Alexander Duyck | 2fb02a2 | 2009-09-14 08:22:54 +0000 | [diff] [blame] | 1079 | ctrl_reg |= E1000_CTRL_SPD_1000 | E1000_CTRL_FRCSPD | |
| 1080 | E1000_CTRL_FD | E1000_CTRL_FRCDPX; |
Alexander Duyck | bb2ac47 | 2009-11-19 12:42:01 +0000 | [diff] [blame] | 1081 | |
| 1082 | /* set speed of 1000/Full if speed/duplex is forced */ |
| 1083 | reg |= E1000_PCS_LCTL_FSV_1000 | E1000_PCS_LCTL_FDV_FULL; |
| 1084 | break; |
Alexander Duyck | 2fb02a2 | 2009-09-14 08:22:54 +0000 | [diff] [blame] | 1085 | } |
| 1086 | |
| 1087 | wr32(E1000_CTRL, ctrl_reg); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 1088 | |
| 1089 | /* |
| 1090 | * New SerDes mode allows for forcing speed or autonegotiating speed |
| 1091 | * at 1gb. Autoneg should be default set by most drivers. This is the |
| 1092 | * mode that will be compatible with older link partners and switches. |
| 1093 | * However, both are supported by the hardware and some drivers/tools. |
| 1094 | */ |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 1095 | reg &= ~(E1000_PCS_LCTL_AN_ENABLE | E1000_PCS_LCTL_FLV_LINK_UP | |
| 1096 | E1000_PCS_LCTL_FSD | E1000_PCS_LCTL_FORCE_LINK); |
| 1097 | |
Alexander Duyck | 2fb02a2 | 2009-09-14 08:22:54 +0000 | [diff] [blame] | 1098 | /* |
| 1099 | * We force flow control to prevent the CTRL register values from being |
| 1100 | * overwritten by the autonegotiated flow control values |
| 1101 | */ |
| 1102 | reg |= E1000_PCS_LCTL_FORCE_FCTRL; |
| 1103 | |
Alexander Duyck | bb2ac47 | 2009-11-19 12:42:01 +0000 | [diff] [blame] | 1104 | if (pcs_autoneg) { |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 1105 | /* Set PCS register for autoneg */ |
Alexander Duyck | bb2ac47 | 2009-11-19 12:42:01 +0000 | [diff] [blame] | 1106 | reg |= E1000_PCS_LCTL_AN_ENABLE | /* Enable Autoneg */ |
Alexander Duyck | 70d92f8 | 2009-10-05 06:31:47 +0000 | [diff] [blame] | 1107 | E1000_PCS_LCTL_AN_RESTART; /* Restart autoneg */ |
Alexander Duyck | bb2ac47 | 2009-11-19 12:42:01 +0000 | [diff] [blame] | 1108 | hw_dbg("Configuring Autoneg:PCS_LCTL=0x%08X\n", reg); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 1109 | } else { |
Alexander Duyck | bb2ac47 | 2009-11-19 12:42:01 +0000 | [diff] [blame] | 1110 | /* Set PCS register for forced link */ |
Alexander Duyck | d68caec | 2009-12-23 13:20:47 +0000 | [diff] [blame] | 1111 | reg |= E1000_PCS_LCTL_FSD; /* Force Speed */ |
Alexander Duyck | 70d92f8 | 2009-10-05 06:31:47 +0000 | [diff] [blame] | 1112 | |
Alexander Duyck | bb2ac47 | 2009-11-19 12:42:01 +0000 | [diff] [blame] | 1113 | hw_dbg("Configuring Forced Link:PCS_LCTL=0x%08X\n", reg); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 1114 | } |
Alexander Duyck | 726c09e | 2008-08-04 14:59:56 -0700 | [diff] [blame] | 1115 | |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 1116 | wr32(E1000_PCS_LCTL, reg); |
| 1117 | |
Alexander Duyck | 2fb02a2 | 2009-09-14 08:22:54 +0000 | [diff] [blame] | 1118 | if (!igb_sgmii_active_82575(hw)) |
| 1119 | igb_force_mac_fc(hw); |
| 1120 | |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 1121 | return 0; |
| 1122 | } |
| 1123 | |
| 1124 | /** |
Jeff Kirsher | 733596b | 2008-06-27 10:59:59 -0700 | [diff] [blame] | 1125 | * igb_sgmii_active_82575 - Return sgmii state |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 1126 | * @hw: pointer to the HW structure |
| 1127 | * |
| 1128 | * 82575 silicon has a serialized gigabit media independent interface (sgmii) |
| 1129 | * which can be enabled for use in the embedded applications. Simply |
| 1130 | * return the current state of the sgmii interface. |
| 1131 | **/ |
| 1132 | static bool igb_sgmii_active_82575(struct e1000_hw *hw) |
| 1133 | { |
Alexander Duyck | c1889bf | 2009-02-06 23:16:45 +0000 | [diff] [blame] | 1134 | struct e1000_dev_spec_82575 *dev_spec = &hw->dev_spec._82575; |
Alexander Duyck | c1889bf | 2009-02-06 23:16:45 +0000 | [diff] [blame] | 1135 | return dev_spec->sgmii_active; |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 1136 | } |
| 1137 | |
| 1138 | /** |
Jeff Kirsher | 733596b | 2008-06-27 10:59:59 -0700 | [diff] [blame] | 1139 | * igb_reset_init_script_82575 - Inits HW defaults after reset |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 1140 | * @hw: pointer to the HW structure |
| 1141 | * |
| 1142 | * Inits recommended HW defaults after a reset when there is no EEPROM |
| 1143 | * detected. This is only for the 82575. |
| 1144 | **/ |
| 1145 | static s32 igb_reset_init_script_82575(struct e1000_hw *hw) |
| 1146 | { |
| 1147 | if (hw->mac.type == e1000_82575) { |
Auke Kok | 652fff3 | 2008-06-27 11:00:18 -0700 | [diff] [blame] | 1148 | hw_dbg("Running reset init script for 82575\n"); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 1149 | /* SerDes configuration via SERDESCTRL */ |
| 1150 | igb_write_8bit_ctrl_reg(hw, E1000_SCTL, 0x00, 0x0C); |
| 1151 | igb_write_8bit_ctrl_reg(hw, E1000_SCTL, 0x01, 0x78); |
| 1152 | igb_write_8bit_ctrl_reg(hw, E1000_SCTL, 0x1B, 0x23); |
| 1153 | igb_write_8bit_ctrl_reg(hw, E1000_SCTL, 0x23, 0x15); |
| 1154 | |
| 1155 | /* CCM configuration via CCMCTL register */ |
| 1156 | igb_write_8bit_ctrl_reg(hw, E1000_CCMCTL, 0x14, 0x00); |
| 1157 | igb_write_8bit_ctrl_reg(hw, E1000_CCMCTL, 0x10, 0x00); |
| 1158 | |
| 1159 | /* PCIe lanes configuration */ |
| 1160 | igb_write_8bit_ctrl_reg(hw, E1000_GIOCTL, 0x00, 0xEC); |
| 1161 | igb_write_8bit_ctrl_reg(hw, E1000_GIOCTL, 0x61, 0xDF); |
| 1162 | igb_write_8bit_ctrl_reg(hw, E1000_GIOCTL, 0x34, 0x05); |
| 1163 | igb_write_8bit_ctrl_reg(hw, E1000_GIOCTL, 0x2F, 0x81); |
| 1164 | |
| 1165 | /* PCIe PLL Configuration */ |
| 1166 | igb_write_8bit_ctrl_reg(hw, E1000_SCCTL, 0x02, 0x47); |
| 1167 | igb_write_8bit_ctrl_reg(hw, E1000_SCCTL, 0x14, 0x00); |
| 1168 | igb_write_8bit_ctrl_reg(hw, E1000_SCCTL, 0x10, 0x00); |
| 1169 | } |
| 1170 | |
| 1171 | return 0; |
| 1172 | } |
| 1173 | |
| 1174 | /** |
Jeff Kirsher | 733596b | 2008-06-27 10:59:59 -0700 | [diff] [blame] | 1175 | * igb_read_mac_addr_82575 - Read device MAC address |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 1176 | * @hw: pointer to the HW structure |
| 1177 | **/ |
| 1178 | static s32 igb_read_mac_addr_82575(struct e1000_hw *hw) |
| 1179 | { |
| 1180 | s32 ret_val = 0; |
| 1181 | |
Alexander Duyck | 2289663 | 2009-10-05 06:34:25 +0000 | [diff] [blame] | 1182 | /* |
| 1183 | * If there's an alternate MAC address place it in RAR0 |
| 1184 | * so that it will override the Si installed default perm |
| 1185 | * address. |
| 1186 | */ |
| 1187 | ret_val = igb_check_alt_mac_addr(hw); |
| 1188 | if (ret_val) |
| 1189 | goto out; |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 1190 | |
Alexander Duyck | 2289663 | 2009-10-05 06:34:25 +0000 | [diff] [blame] | 1191 | ret_val = igb_read_mac_addr(hw); |
| 1192 | |
| 1193 | out: |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 1194 | return ret_val; |
| 1195 | } |
| 1196 | |
| 1197 | /** |
Nick Nunley | 88a268c | 2010-02-17 01:01:59 +0000 | [diff] [blame] | 1198 | * igb_power_down_phy_copper_82575 - Remove link during PHY power down |
| 1199 | * @hw: pointer to the HW structure |
| 1200 | * |
| 1201 | * In the case of a PHY power down to save power, or to turn off link during a |
| 1202 | * driver unload, or wake on lan is not enabled, remove the link. |
| 1203 | **/ |
| 1204 | void igb_power_down_phy_copper_82575(struct e1000_hw *hw) |
| 1205 | { |
| 1206 | /* If the management interface is not enabled, then power down */ |
| 1207 | if (!(igb_enable_mng_pass_thru(hw) || igb_check_reset_block(hw))) |
| 1208 | igb_power_down_phy_copper(hw); |
| 1209 | |
| 1210 | return; |
| 1211 | } |
| 1212 | |
| 1213 | /** |
Jeff Kirsher | 733596b | 2008-06-27 10:59:59 -0700 | [diff] [blame] | 1214 | * igb_clear_hw_cntrs_82575 - Clear device specific hardware counters |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 1215 | * @hw: pointer to the HW structure |
| 1216 | * |
| 1217 | * Clears the hardware counters by reading the counter registers. |
| 1218 | **/ |
| 1219 | static void igb_clear_hw_cntrs_82575(struct e1000_hw *hw) |
| 1220 | { |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 1221 | igb_clear_hw_cntrs_base(hw); |
| 1222 | |
Alexander Duyck | cc9073b | 2009-10-05 06:31:25 +0000 | [diff] [blame] | 1223 | rd32(E1000_PRC64); |
| 1224 | rd32(E1000_PRC127); |
| 1225 | rd32(E1000_PRC255); |
| 1226 | rd32(E1000_PRC511); |
| 1227 | rd32(E1000_PRC1023); |
| 1228 | rd32(E1000_PRC1522); |
| 1229 | rd32(E1000_PTC64); |
| 1230 | rd32(E1000_PTC127); |
| 1231 | rd32(E1000_PTC255); |
| 1232 | rd32(E1000_PTC511); |
| 1233 | rd32(E1000_PTC1023); |
| 1234 | rd32(E1000_PTC1522); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 1235 | |
Alexander Duyck | cc9073b | 2009-10-05 06:31:25 +0000 | [diff] [blame] | 1236 | rd32(E1000_ALGNERRC); |
| 1237 | rd32(E1000_RXERRC); |
| 1238 | rd32(E1000_TNCRS); |
| 1239 | rd32(E1000_CEXTERR); |
| 1240 | rd32(E1000_TSCTC); |
| 1241 | rd32(E1000_TSCTFC); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 1242 | |
Alexander Duyck | cc9073b | 2009-10-05 06:31:25 +0000 | [diff] [blame] | 1243 | rd32(E1000_MGTPRC); |
| 1244 | rd32(E1000_MGTPDC); |
| 1245 | rd32(E1000_MGTPTC); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 1246 | |
Alexander Duyck | cc9073b | 2009-10-05 06:31:25 +0000 | [diff] [blame] | 1247 | rd32(E1000_IAC); |
| 1248 | rd32(E1000_ICRXOC); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 1249 | |
Alexander Duyck | cc9073b | 2009-10-05 06:31:25 +0000 | [diff] [blame] | 1250 | rd32(E1000_ICRXPTC); |
| 1251 | rd32(E1000_ICRXATC); |
| 1252 | rd32(E1000_ICTXPTC); |
| 1253 | rd32(E1000_ICTXATC); |
| 1254 | rd32(E1000_ICTXQEC); |
| 1255 | rd32(E1000_ICTXQMTC); |
| 1256 | rd32(E1000_ICRXDMTC); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 1257 | |
Alexander Duyck | cc9073b | 2009-10-05 06:31:25 +0000 | [diff] [blame] | 1258 | rd32(E1000_CBTMPC); |
| 1259 | rd32(E1000_HTDPMC); |
| 1260 | rd32(E1000_CBRMPC); |
| 1261 | rd32(E1000_RPTHC); |
| 1262 | rd32(E1000_HGPTC); |
| 1263 | rd32(E1000_HTCBDPC); |
| 1264 | rd32(E1000_HGORCL); |
| 1265 | rd32(E1000_HGORCH); |
| 1266 | rd32(E1000_HGOTCL); |
| 1267 | rd32(E1000_HGOTCH); |
| 1268 | rd32(E1000_LENERRS); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 1269 | |
| 1270 | /* This register should not be read in copper configurations */ |
Alexander Duyck | 2fb02a2 | 2009-09-14 08:22:54 +0000 | [diff] [blame] | 1271 | if (hw->phy.media_type == e1000_media_type_internal_serdes || |
| 1272 | igb_sgmii_active_82575(hw)) |
Alexander Duyck | cc9073b | 2009-10-05 06:31:25 +0000 | [diff] [blame] | 1273 | rd32(E1000_SCVPC); |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 1274 | } |
| 1275 | |
Alexander Duyck | 662d720 | 2008-06-27 11:00:29 -0700 | [diff] [blame] | 1276 | /** |
| 1277 | * igb_rx_fifo_flush_82575 - Clean rx fifo after RX enable |
| 1278 | * @hw: pointer to the HW structure |
| 1279 | * |
| 1280 | * After rx enable if managability is enabled then there is likely some |
| 1281 | * bad data at the start of the fifo and possibly in the DMA fifo. This |
| 1282 | * function clears the fifos and flushes any packets that came in as rx was |
| 1283 | * being enabled. |
| 1284 | **/ |
| 1285 | void igb_rx_fifo_flush_82575(struct e1000_hw *hw) |
| 1286 | { |
| 1287 | u32 rctl, rlpml, rxdctl[4], rfctl, temp_rctl, rx_enabled; |
| 1288 | int i, ms_wait; |
| 1289 | |
| 1290 | if (hw->mac.type != e1000_82575 || |
| 1291 | !(rd32(E1000_MANC) & E1000_MANC_RCV_TCO_EN)) |
| 1292 | return; |
| 1293 | |
| 1294 | /* Disable all RX queues */ |
| 1295 | for (i = 0; i < 4; i++) { |
| 1296 | rxdctl[i] = rd32(E1000_RXDCTL(i)); |
| 1297 | wr32(E1000_RXDCTL(i), |
| 1298 | rxdctl[i] & ~E1000_RXDCTL_QUEUE_ENABLE); |
| 1299 | } |
| 1300 | /* Poll all queues to verify they have shut down */ |
| 1301 | for (ms_wait = 0; ms_wait < 10; ms_wait++) { |
| 1302 | msleep(1); |
| 1303 | rx_enabled = 0; |
| 1304 | for (i = 0; i < 4; i++) |
| 1305 | rx_enabled |= rd32(E1000_RXDCTL(i)); |
| 1306 | if (!(rx_enabled & E1000_RXDCTL_QUEUE_ENABLE)) |
| 1307 | break; |
| 1308 | } |
| 1309 | |
| 1310 | if (ms_wait == 10) |
| 1311 | hw_dbg("Queue disable timed out after 10ms\n"); |
| 1312 | |
| 1313 | /* Clear RLPML, RCTL.SBP, RFCTL.LEF, and set RCTL.LPE so that all |
| 1314 | * incoming packets are rejected. Set enable and wait 2ms so that |
| 1315 | * any packet that was coming in as RCTL.EN was set is flushed |
| 1316 | */ |
| 1317 | rfctl = rd32(E1000_RFCTL); |
| 1318 | wr32(E1000_RFCTL, rfctl & ~E1000_RFCTL_LEF); |
| 1319 | |
| 1320 | rlpml = rd32(E1000_RLPML); |
| 1321 | wr32(E1000_RLPML, 0); |
| 1322 | |
| 1323 | rctl = rd32(E1000_RCTL); |
| 1324 | temp_rctl = rctl & ~(E1000_RCTL_EN | E1000_RCTL_SBP); |
| 1325 | temp_rctl |= E1000_RCTL_LPE; |
| 1326 | |
| 1327 | wr32(E1000_RCTL, temp_rctl); |
| 1328 | wr32(E1000_RCTL, temp_rctl | E1000_RCTL_EN); |
| 1329 | wrfl(); |
| 1330 | msleep(2); |
| 1331 | |
| 1332 | /* Enable RX queues that were previously enabled and restore our |
| 1333 | * previous state |
| 1334 | */ |
| 1335 | for (i = 0; i < 4; i++) |
| 1336 | wr32(E1000_RXDCTL(i), rxdctl[i]); |
| 1337 | wr32(E1000_RCTL, rctl); |
| 1338 | wrfl(); |
| 1339 | |
| 1340 | wr32(E1000_RLPML, rlpml); |
| 1341 | wr32(E1000_RFCTL, rfctl); |
| 1342 | |
| 1343 | /* Flush receive errors generated by workaround */ |
| 1344 | rd32(E1000_ROC); |
| 1345 | rd32(E1000_RNBC); |
| 1346 | rd32(E1000_MPC); |
| 1347 | } |
| 1348 | |
Alexander Duyck | 4ae196d | 2009-02-19 20:40:07 -0800 | [diff] [blame] | 1349 | /** |
Alexander Duyck | 009bc06 | 2009-07-23 18:08:35 +0000 | [diff] [blame] | 1350 | * igb_set_pcie_completion_timeout - set pci-e completion timeout |
| 1351 | * @hw: pointer to the HW structure |
| 1352 | * |
| 1353 | * The defaults for 82575 and 82576 should be in the range of 50us to 50ms, |
| 1354 | * however the hardware default for these parts is 500us to 1ms which is less |
| 1355 | * than the 10ms recommended by the pci-e spec. To address this we need to |
| 1356 | * increase the value to either 10ms to 200ms for capability version 1 config, |
| 1357 | * or 16ms to 55ms for version 2. |
| 1358 | **/ |
| 1359 | static s32 igb_set_pcie_completion_timeout(struct e1000_hw *hw) |
| 1360 | { |
| 1361 | u32 gcr = rd32(E1000_GCR); |
| 1362 | s32 ret_val = 0; |
| 1363 | u16 pcie_devctl2; |
| 1364 | |
| 1365 | /* only take action if timeout value is defaulted to 0 */ |
| 1366 | if (gcr & E1000_GCR_CMPL_TMOUT_MASK) |
| 1367 | goto out; |
| 1368 | |
| 1369 | /* |
| 1370 | * if capababilities version is type 1 we can write the |
| 1371 | * timeout of 10ms to 200ms through the GCR register |
| 1372 | */ |
| 1373 | if (!(gcr & E1000_GCR_CAP_VER2)) { |
| 1374 | gcr |= E1000_GCR_CMPL_TMOUT_10ms; |
| 1375 | goto out; |
| 1376 | } |
| 1377 | |
| 1378 | /* |
| 1379 | * for version 2 capabilities we need to write the config space |
| 1380 | * directly in order to set the completion timeout value for |
| 1381 | * 16ms to 55ms |
| 1382 | */ |
| 1383 | ret_val = igb_read_pcie_cap_reg(hw, PCIE_DEVICE_CONTROL2, |
| 1384 | &pcie_devctl2); |
| 1385 | if (ret_val) |
| 1386 | goto out; |
| 1387 | |
| 1388 | pcie_devctl2 |= PCIE_DEVICE_CONTROL2_16ms; |
| 1389 | |
| 1390 | ret_val = igb_write_pcie_cap_reg(hw, PCIE_DEVICE_CONTROL2, |
| 1391 | &pcie_devctl2); |
| 1392 | out: |
| 1393 | /* disable completion timeout resend */ |
| 1394 | gcr &= ~E1000_GCR_CMPL_TMOUT_RESEND; |
| 1395 | |
| 1396 | wr32(E1000_GCR, gcr); |
| 1397 | return ret_val; |
| 1398 | } |
| 1399 | |
| 1400 | /** |
Alexander Duyck | 4ae196d | 2009-02-19 20:40:07 -0800 | [diff] [blame] | 1401 | * igb_vmdq_set_loopback_pf - enable or disable vmdq loopback |
| 1402 | * @hw: pointer to the hardware struct |
| 1403 | * @enable: state to enter, either enabled or disabled |
| 1404 | * |
| 1405 | * enables/disables L2 switch loopback functionality. |
| 1406 | **/ |
| 1407 | void igb_vmdq_set_loopback_pf(struct e1000_hw *hw, bool enable) |
| 1408 | { |
| 1409 | u32 dtxswc = rd32(E1000_DTXSWC); |
| 1410 | |
| 1411 | if (enable) |
| 1412 | dtxswc |= E1000_DTXSWC_VMDQ_LOOPBACK_EN; |
| 1413 | else |
| 1414 | dtxswc &= ~E1000_DTXSWC_VMDQ_LOOPBACK_EN; |
| 1415 | |
| 1416 | wr32(E1000_DTXSWC, dtxswc); |
| 1417 | } |
| 1418 | |
| 1419 | /** |
| 1420 | * igb_vmdq_set_replication_pf - enable or disable vmdq replication |
| 1421 | * @hw: pointer to the hardware struct |
| 1422 | * @enable: state to enter, either enabled or disabled |
| 1423 | * |
| 1424 | * enables/disables replication of packets across multiple pools. |
| 1425 | **/ |
| 1426 | void igb_vmdq_set_replication_pf(struct e1000_hw *hw, bool enable) |
| 1427 | { |
| 1428 | u32 vt_ctl = rd32(E1000_VT_CTL); |
| 1429 | |
| 1430 | if (enable) |
| 1431 | vt_ctl |= E1000_VT_CTL_VM_REPL_EN; |
| 1432 | else |
| 1433 | vt_ctl &= ~E1000_VT_CTL_VM_REPL_EN; |
| 1434 | |
| 1435 | wr32(E1000_VT_CTL, vt_ctl); |
| 1436 | } |
| 1437 | |
Alexander Duyck | bb2ac47 | 2009-11-19 12:42:01 +0000 | [diff] [blame] | 1438 | /** |
| 1439 | * igb_read_phy_reg_82580 - Read 82580 MDI control register |
| 1440 | * @hw: pointer to the HW structure |
| 1441 | * @offset: register offset to be read |
| 1442 | * @data: pointer to the read data |
| 1443 | * |
| 1444 | * Reads the MDI control register in the PHY at offset and stores the |
| 1445 | * information read to data. |
| 1446 | **/ |
| 1447 | static s32 igb_read_phy_reg_82580(struct e1000_hw *hw, u32 offset, u16 *data) |
| 1448 | { |
Alexander Duyck | bb2ac47 | 2009-11-19 12:42:01 +0000 | [diff] [blame] | 1449 | s32 ret_val; |
| 1450 | |
| 1451 | |
| 1452 | ret_val = hw->phy.ops.acquire(hw); |
| 1453 | if (ret_val) |
| 1454 | goto out; |
| 1455 | |
Alexander Duyck | bb2ac47 | 2009-11-19 12:42:01 +0000 | [diff] [blame] | 1456 | ret_val = igb_read_phy_reg_mdic(hw, offset, data); |
| 1457 | |
| 1458 | hw->phy.ops.release(hw); |
| 1459 | |
| 1460 | out: |
| 1461 | return ret_val; |
| 1462 | } |
| 1463 | |
| 1464 | /** |
| 1465 | * igb_write_phy_reg_82580 - Write 82580 MDI control register |
| 1466 | * @hw: pointer to the HW structure |
| 1467 | * @offset: register offset to write to |
| 1468 | * @data: data to write to register at offset |
| 1469 | * |
| 1470 | * Writes data to MDI control register in the PHY at offset. |
| 1471 | **/ |
| 1472 | static s32 igb_write_phy_reg_82580(struct e1000_hw *hw, u32 offset, u16 data) |
| 1473 | { |
Alexander Duyck | bb2ac47 | 2009-11-19 12:42:01 +0000 | [diff] [blame] | 1474 | s32 ret_val; |
| 1475 | |
| 1476 | |
| 1477 | ret_val = hw->phy.ops.acquire(hw); |
| 1478 | if (ret_val) |
| 1479 | goto out; |
| 1480 | |
Alexander Duyck | bb2ac47 | 2009-11-19 12:42:01 +0000 | [diff] [blame] | 1481 | ret_val = igb_write_phy_reg_mdic(hw, offset, data); |
| 1482 | |
| 1483 | hw->phy.ops.release(hw); |
| 1484 | |
| 1485 | out: |
| 1486 | return ret_val; |
| 1487 | } |
| 1488 | |
| 1489 | /** |
| 1490 | * igb_reset_hw_82580 - Reset hardware |
| 1491 | * @hw: pointer to the HW structure |
| 1492 | * |
| 1493 | * This resets function or entire device (all ports, etc.) |
| 1494 | * to a known state. |
| 1495 | **/ |
| 1496 | static s32 igb_reset_hw_82580(struct e1000_hw *hw) |
| 1497 | { |
| 1498 | s32 ret_val = 0; |
| 1499 | /* BH SW mailbox bit in SW_FW_SYNC */ |
| 1500 | u16 swmbsw_mask = E1000_SW_SYNCH_MB; |
| 1501 | u32 ctrl, icr; |
| 1502 | bool global_device_reset = hw->dev_spec._82575.global_device_reset; |
| 1503 | |
| 1504 | |
| 1505 | hw->dev_spec._82575.global_device_reset = false; |
| 1506 | |
| 1507 | /* Get current control state. */ |
| 1508 | ctrl = rd32(E1000_CTRL); |
| 1509 | |
| 1510 | /* |
| 1511 | * Prevent the PCI-E bus from sticking if there is no TLP connection |
| 1512 | * on the last TLP read/write transaction when MAC is reset. |
| 1513 | */ |
| 1514 | ret_val = igb_disable_pcie_master(hw); |
| 1515 | if (ret_val) |
| 1516 | hw_dbg("PCI-E Master disable polling has failed.\n"); |
| 1517 | |
| 1518 | hw_dbg("Masking off all interrupts\n"); |
| 1519 | wr32(E1000_IMC, 0xffffffff); |
| 1520 | wr32(E1000_RCTL, 0); |
| 1521 | wr32(E1000_TCTL, E1000_TCTL_PSP); |
| 1522 | wrfl(); |
| 1523 | |
| 1524 | msleep(10); |
| 1525 | |
| 1526 | /* Determine whether or not a global dev reset is requested */ |
| 1527 | if (global_device_reset && |
| 1528 | igb_acquire_swfw_sync_82575(hw, swmbsw_mask)) |
| 1529 | global_device_reset = false; |
| 1530 | |
| 1531 | if (global_device_reset && |
| 1532 | !(rd32(E1000_STATUS) & E1000_STAT_DEV_RST_SET)) |
| 1533 | ctrl |= E1000_CTRL_DEV_RST; |
| 1534 | else |
| 1535 | ctrl |= E1000_CTRL_RST; |
| 1536 | |
| 1537 | wr32(E1000_CTRL, ctrl); |
| 1538 | |
| 1539 | /* Add delay to insure DEV_RST has time to complete */ |
| 1540 | if (global_device_reset) |
| 1541 | msleep(5); |
| 1542 | |
| 1543 | ret_val = igb_get_auto_rd_done(hw); |
| 1544 | if (ret_val) { |
| 1545 | /* |
| 1546 | * When auto config read does not complete, do not |
| 1547 | * return with an error. This can happen in situations |
| 1548 | * where there is no eeprom and prevents getting link. |
| 1549 | */ |
| 1550 | hw_dbg("Auto Read Done did not complete\n"); |
| 1551 | } |
| 1552 | |
| 1553 | /* If EEPROM is not present, run manual init scripts */ |
| 1554 | if ((rd32(E1000_EECD) & E1000_EECD_PRES) == 0) |
| 1555 | igb_reset_init_script_82575(hw); |
| 1556 | |
| 1557 | /* clear global device reset status bit */ |
| 1558 | wr32(E1000_STATUS, E1000_STAT_DEV_RST_SET); |
| 1559 | |
| 1560 | /* Clear any pending interrupt events. */ |
| 1561 | wr32(E1000_IMC, 0xffffffff); |
| 1562 | icr = rd32(E1000_ICR); |
| 1563 | |
| 1564 | /* Install any alternate MAC address into RAR0 */ |
| 1565 | ret_val = igb_check_alt_mac_addr(hw); |
| 1566 | |
| 1567 | /* Release semaphore */ |
| 1568 | if (global_device_reset) |
| 1569 | igb_release_swfw_sync_82575(hw, swmbsw_mask); |
| 1570 | |
| 1571 | return ret_val; |
| 1572 | } |
| 1573 | |
| 1574 | /** |
| 1575 | * igb_rxpbs_adjust_82580 - adjust RXPBS value to reflect actual RX PBA size |
| 1576 | * @data: data received by reading RXPBS register |
| 1577 | * |
| 1578 | * The 82580 uses a table based approach for packet buffer allocation sizes. |
| 1579 | * This function converts the retrieved value into the correct table value |
| 1580 | * 0x0 0x1 0x2 0x3 0x4 0x5 0x6 0x7 |
| 1581 | * 0x0 36 72 144 1 2 4 8 16 |
| 1582 | * 0x8 35 70 140 rsv rsv rsv rsv rsv |
| 1583 | */ |
| 1584 | u16 igb_rxpbs_adjust_82580(u32 data) |
| 1585 | { |
| 1586 | u16 ret_val = 0; |
| 1587 | |
| 1588 | if (data < E1000_82580_RXPBS_TABLE_SIZE) |
| 1589 | ret_val = e1000_82580_rxpbs_table[data]; |
| 1590 | |
| 1591 | return ret_val; |
| 1592 | } |
| 1593 | |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 1594 | static struct e1000_mac_operations e1000_mac_ops_82575 = { |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 1595 | .init_hw = igb_init_hw_82575, |
| 1596 | .check_for_link = igb_check_for_link_82575, |
Alexander Duyck | 2d064c0 | 2008-07-08 15:10:12 -0700 | [diff] [blame] | 1597 | .rar_set = igb_rar_set, |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 1598 | .read_mac_addr = igb_read_mac_addr_82575, |
| 1599 | .get_speed_and_duplex = igb_get_speed_and_duplex_copper, |
| 1600 | }; |
| 1601 | |
| 1602 | static struct e1000_phy_operations e1000_phy_ops_82575 = { |
Alexander Duyck | a8d2a0c | 2009-02-06 23:17:26 +0000 | [diff] [blame] | 1603 | .acquire = igb_acquire_phy_82575, |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 1604 | .get_cfg_done = igb_get_cfg_done_82575, |
Alexander Duyck | a8d2a0c | 2009-02-06 23:17:26 +0000 | [diff] [blame] | 1605 | .release = igb_release_phy_82575, |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 1606 | }; |
| 1607 | |
| 1608 | static struct e1000_nvm_operations e1000_nvm_ops_82575 = { |
Alexander Duyck | 312c75a | 2009-02-06 23:17:47 +0000 | [diff] [blame] | 1609 | .acquire = igb_acquire_nvm_82575, |
| 1610 | .read = igb_read_nvm_eerd, |
| 1611 | .release = igb_release_nvm_82575, |
| 1612 | .write = igb_write_nvm_spi, |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 1613 | }; |
| 1614 | |
| 1615 | const struct e1000_info e1000_82575_info = { |
| 1616 | .get_invariants = igb_get_invariants_82575, |
| 1617 | .mac_ops = &e1000_mac_ops_82575, |
| 1618 | .phy_ops = &e1000_phy_ops_82575, |
| 1619 | .nvm_ops = &e1000_nvm_ops_82575, |
| 1620 | }; |
| 1621 | |