David Ertman | e78b80b | 2014-02-04 01:56:06 +0000 | [diff] [blame] | 1 | /* Intel PRO/1000 Linux driver |
| 2 | * Copyright(c) 1999 - 2014 Intel Corporation. |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify it |
| 5 | * under the terms and conditions of the GNU General Public License, |
| 6 | * version 2, as published by the Free Software Foundation. |
| 7 | * |
| 8 | * This program is distributed in the hope it will be useful, but WITHOUT |
| 9 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 10 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 11 | * more details. |
| 12 | * |
| 13 | * The full GNU General Public License is included in this distribution in |
| 14 | * the file called "COPYING". |
| 15 | * |
| 16 | * Contact Information: |
| 17 | * Linux NICS <linux.nics@intel.com> |
| 18 | * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> |
| 19 | * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 |
| 20 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 21 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 22 | /* 82562G 10/100 Network Connection |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 23 | * 82562G-2 10/100 Network Connection |
| 24 | * 82562GT 10/100 Network Connection |
| 25 | * 82562GT-2 10/100 Network Connection |
| 26 | * 82562V 10/100 Network Connection |
| 27 | * 82562V-2 10/100 Network Connection |
| 28 | * 82566DC-2 Gigabit Network Connection |
| 29 | * 82566DC Gigabit Network Connection |
| 30 | * 82566DM-2 Gigabit Network Connection |
| 31 | * 82566DM Gigabit Network Connection |
| 32 | * 82566MC Gigabit Network Connection |
| 33 | * 82566MM Gigabit Network Connection |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 34 | * 82567LM Gigabit Network Connection |
| 35 | * 82567LF Gigabit Network Connection |
Bruce Allan | 1605927 | 2008-11-21 16:51:06 -0800 | [diff] [blame] | 36 | * 82567V Gigabit Network Connection |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 37 | * 82567LM-2 Gigabit Network Connection |
| 38 | * 82567LF-2 Gigabit Network Connection |
| 39 | * 82567V-2 Gigabit Network Connection |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 40 | * 82567LF-3 Gigabit Network Connection |
| 41 | * 82567LM-3 Gigabit Network Connection |
Bruce Allan | 2f15f9d | 2008-08-26 18:36:36 -0700 | [diff] [blame] | 42 | * 82567LM-4 Gigabit Network Connection |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 43 | * 82577LM Gigabit Network Connection |
| 44 | * 82577LC Gigabit Network Connection |
| 45 | * 82578DM Gigabit Network Connection |
| 46 | * 82578DC Gigabit Network Connection |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 47 | * 82579LM Gigabit Network Connection |
| 48 | * 82579V Gigabit Network Connection |
David Ertman | 3b70d4f | 2014-02-05 01:09:54 +0000 | [diff] [blame] | 49 | * Ethernet Connection I217-LM |
| 50 | * Ethernet Connection I217-V |
| 51 | * Ethernet Connection I218-V |
| 52 | * Ethernet Connection I218-LM |
| 53 | * Ethernet Connection (2) I218-LM |
| 54 | * Ethernet Connection (2) I218-V |
| 55 | * Ethernet Connection (3) I218-LM |
| 56 | * Ethernet Connection (3) I218-V |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 57 | */ |
| 58 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 59 | #include "e1000.h" |
| 60 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 61 | /* ICH GbE Flash Hardware Sequencing Flash Status Register bit breakdown */ |
| 62 | /* Offset 04h HSFSTS */ |
| 63 | union ich8_hws_flash_status { |
| 64 | struct ich8_hsfsts { |
Bruce Allan | 362e20c | 2013-02-20 04:05:45 +0000 | [diff] [blame] | 65 | u16 flcdone:1; /* bit 0 Flash Cycle Done */ |
| 66 | u16 flcerr:1; /* bit 1 Flash Cycle Error */ |
| 67 | u16 dael:1; /* bit 2 Direct Access error Log */ |
| 68 | u16 berasesz:2; /* bit 4:3 Sector Erase Size */ |
| 69 | u16 flcinprog:1; /* bit 5 flash cycle in Progress */ |
| 70 | u16 reserved1:2; /* bit 13:6 Reserved */ |
| 71 | u16 reserved2:6; /* bit 13:6 Reserved */ |
| 72 | u16 fldesvalid:1; /* bit 14 Flash Descriptor Valid */ |
| 73 | u16 flockdn:1; /* bit 15 Flash Config Lock-Down */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 74 | } hsf_status; |
| 75 | u16 regval; |
| 76 | }; |
| 77 | |
| 78 | /* ICH GbE Flash Hardware Sequencing Flash control Register bit breakdown */ |
| 79 | /* Offset 06h FLCTL */ |
| 80 | union ich8_hws_flash_ctrl { |
| 81 | struct ich8_hsflctl { |
Bruce Allan | 362e20c | 2013-02-20 04:05:45 +0000 | [diff] [blame] | 82 | u16 flcgo:1; /* 0 Flash Cycle Go */ |
| 83 | u16 flcycle:2; /* 2:1 Flash Cycle */ |
| 84 | u16 reserved:5; /* 7:3 Reserved */ |
| 85 | u16 fldbcount:2; /* 9:8 Flash Data Byte Count */ |
| 86 | u16 flockdn:6; /* 15:10 Reserved */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 87 | } hsf_ctrl; |
| 88 | u16 regval; |
| 89 | }; |
| 90 | |
| 91 | /* ICH Flash Region Access Permissions */ |
| 92 | union ich8_hws_flash_regacc { |
| 93 | struct ich8_flracc { |
Bruce Allan | 362e20c | 2013-02-20 04:05:45 +0000 | [diff] [blame] | 94 | u32 grra:8; /* 0:7 GbE region Read Access */ |
| 95 | u32 grwa:8; /* 8:15 GbE region Write Access */ |
| 96 | u32 gmrag:8; /* 23:16 GbE Master Read Access Grant */ |
| 97 | u32 gmwag:8; /* 31:24 GbE Master Write Access Grant */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 98 | } hsf_flregacc; |
| 99 | u16 regval; |
| 100 | }; |
| 101 | |
Bruce Allan | 4a77035 | 2008-10-01 17:18:35 -0700 | [diff] [blame] | 102 | /* ICH Flash Protected Region */ |
| 103 | union ich8_flash_protected_range { |
| 104 | struct ich8_pr { |
Bruce Allan | e80bd1d | 2013-05-01 01:19:46 +0000 | [diff] [blame] | 105 | u32 base:13; /* 0:12 Protected Range Base */ |
| 106 | u32 reserved1:2; /* 13:14 Reserved */ |
| 107 | u32 rpe:1; /* 15 Read Protection Enable */ |
| 108 | u32 limit:13; /* 16:28 Protected Range Limit */ |
| 109 | u32 reserved2:2; /* 29:30 Reserved */ |
| 110 | u32 wpe:1; /* 31 Write Protection Enable */ |
Bruce Allan | 4a77035 | 2008-10-01 17:18:35 -0700 | [diff] [blame] | 111 | } range; |
| 112 | u32 regval; |
| 113 | }; |
| 114 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 115 | static void e1000_clear_hw_cntrs_ich8lan(struct e1000_hw *hw); |
| 116 | static void e1000_initialize_hw_bits_ich8lan(struct e1000_hw *hw); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 117 | static s32 e1000_erase_flash_bank_ich8lan(struct e1000_hw *hw, u32 bank); |
| 118 | static s32 e1000_retry_write_flash_byte_ich8lan(struct e1000_hw *hw, |
| 119 | u32 offset, u8 byte); |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 120 | static s32 e1000_read_flash_byte_ich8lan(struct e1000_hw *hw, u32 offset, |
| 121 | u8 *data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 122 | static s32 e1000_read_flash_word_ich8lan(struct e1000_hw *hw, u32 offset, |
| 123 | u16 *data); |
| 124 | static s32 e1000_read_flash_data_ich8lan(struct e1000_hw *hw, u32 offset, |
| 125 | u8 size, u16 *data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 126 | static s32 e1000_kmrn_lock_loss_workaround_ich8lan(struct e1000_hw *hw); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 127 | static s32 e1000_cleanup_led_ich8lan(struct e1000_hw *hw); |
| 128 | static s32 e1000_led_on_ich8lan(struct e1000_hw *hw); |
| 129 | static s32 e1000_led_off_ich8lan(struct e1000_hw *hw); |
| 130 | static s32 e1000_id_led_init_pchlan(struct e1000_hw *hw); |
| 131 | static s32 e1000_setup_led_pchlan(struct e1000_hw *hw); |
| 132 | static s32 e1000_cleanup_led_pchlan(struct e1000_hw *hw); |
| 133 | static s32 e1000_led_on_pchlan(struct e1000_hw *hw); |
| 134 | static s32 e1000_led_off_pchlan(struct e1000_hw *hw); |
Bruce Allan | fa2ce13 | 2009-10-26 11:23:25 +0000 | [diff] [blame] | 135 | static s32 e1000_set_lplu_state_pchlan(struct e1000_hw *hw, bool active); |
Bruce Allan | 17f208d | 2009-12-01 15:47:22 +0000 | [diff] [blame] | 136 | static void e1000_power_down_phy_copper_ich8lan(struct e1000_hw *hw); |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 137 | static void e1000_lan_init_done_ich8lan(struct e1000_hw *hw); |
Bruce Allan | 1f96012d | 2013-01-05 03:06:54 +0000 | [diff] [blame] | 138 | static s32 e1000_k1_gig_workaround_hv(struct e1000_hw *hw, bool link); |
Bruce Allan | fddaa1a | 2010-01-13 01:52:49 +0000 | [diff] [blame] | 139 | static s32 e1000_set_mdio_slow_mode_hv(struct e1000_hw *hw); |
Bruce Allan | eb7700d | 2010-06-16 13:27:05 +0000 | [diff] [blame] | 140 | static bool e1000_check_mng_mode_ich8lan(struct e1000_hw *hw); |
| 141 | static bool e1000_check_mng_mode_pchlan(struct e1000_hw *hw); |
Bruce Allan | 69e1e01 | 2012-04-14 03:28:50 +0000 | [diff] [blame] | 142 | static void e1000_rar_set_pch2lan(struct e1000_hw *hw, u8 *addr, u32 index); |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 143 | static void e1000_rar_set_pch_lpt(struct e1000_hw *hw, u8 *addr, u32 index); |
Bruce Allan | 831bd2e | 2010-09-22 17:16:18 +0000 | [diff] [blame] | 144 | static s32 e1000_k1_workaround_lv(struct e1000_hw *hw); |
Bruce Allan | 605c82b | 2010-09-22 17:17:01 +0000 | [diff] [blame] | 145 | static void e1000_gate_hw_phy_config_ich8lan(struct e1000_hw *hw, bool gate); |
Bruce Allan | ea8179a | 2013-03-06 09:02:47 +0000 | [diff] [blame] | 146 | static s32 e1000_setup_copper_link_pch_lpt(struct e1000_hw *hw); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 147 | |
| 148 | static inline u16 __er16flash(struct e1000_hw *hw, unsigned long reg) |
| 149 | { |
| 150 | return readw(hw->flash_address + reg); |
| 151 | } |
| 152 | |
| 153 | static inline u32 __er32flash(struct e1000_hw *hw, unsigned long reg) |
| 154 | { |
| 155 | return readl(hw->flash_address + reg); |
| 156 | } |
| 157 | |
| 158 | static inline void __ew16flash(struct e1000_hw *hw, unsigned long reg, u16 val) |
| 159 | { |
| 160 | writew(val, hw->flash_address + reg); |
| 161 | } |
| 162 | |
| 163 | static inline void __ew32flash(struct e1000_hw *hw, unsigned long reg, u32 val) |
| 164 | { |
| 165 | writel(val, hw->flash_address + reg); |
| 166 | } |
| 167 | |
| 168 | #define er16flash(reg) __er16flash(hw, (reg)) |
| 169 | #define er32flash(reg) __er32flash(hw, (reg)) |
Bruce Allan | 0e15df4 | 2012-01-31 06:37:11 +0000 | [diff] [blame] | 170 | #define ew16flash(reg, val) __ew16flash(hw, (reg), (val)) |
| 171 | #define ew32flash(reg, val) __ew32flash(hw, (reg), (val)) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 172 | |
Bruce Allan | cb17aab | 2012-04-13 03:16:22 +0000 | [diff] [blame] | 173 | /** |
| 174 | * e1000_phy_is_accessible_pchlan - Check if able to access PHY registers |
| 175 | * @hw: pointer to the HW structure |
| 176 | * |
| 177 | * Test access to the PHY registers by reading the PHY ID registers. If |
| 178 | * the PHY ID is already known (e.g. resume path) compare it with known ID, |
| 179 | * otherwise assume the read PHY ID is correct if it is valid. |
| 180 | * |
| 181 | * Assumes the sw/fw/hw semaphore is already acquired. |
| 182 | **/ |
| 183 | static bool e1000_phy_is_accessible_pchlan(struct e1000_hw *hw) |
Bruce Allan | 99730e4 | 2011-05-13 07:19:48 +0000 | [diff] [blame] | 184 | { |
Bruce Allan | a52359b | 2012-07-14 04:23:58 +0000 | [diff] [blame] | 185 | u16 phy_reg = 0; |
| 186 | u32 phy_id = 0; |
| 187 | s32 ret_val; |
| 188 | u16 retry_count; |
Bruce Allan | 16b095a | 2013-06-29 07:42:39 +0000 | [diff] [blame] | 189 | u32 mac_reg = 0; |
Bruce Allan | 99730e4 | 2011-05-13 07:19:48 +0000 | [diff] [blame] | 190 | |
Bruce Allan | a52359b | 2012-07-14 04:23:58 +0000 | [diff] [blame] | 191 | for (retry_count = 0; retry_count < 2; retry_count++) { |
Bruce Allan | c2ade1a | 2013-01-16 08:54:35 +0000 | [diff] [blame] | 192 | ret_val = e1e_rphy_locked(hw, MII_PHYSID1, &phy_reg); |
Bruce Allan | a52359b | 2012-07-14 04:23:58 +0000 | [diff] [blame] | 193 | if (ret_val || (phy_reg == 0xFFFF)) |
| 194 | continue; |
| 195 | phy_id = (u32)(phy_reg << 16); |
| 196 | |
Bruce Allan | c2ade1a | 2013-01-16 08:54:35 +0000 | [diff] [blame] | 197 | ret_val = e1e_rphy_locked(hw, MII_PHYSID2, &phy_reg); |
Bruce Allan | a52359b | 2012-07-14 04:23:58 +0000 | [diff] [blame] | 198 | if (ret_val || (phy_reg == 0xFFFF)) { |
| 199 | phy_id = 0; |
| 200 | continue; |
| 201 | } |
| 202 | phy_id |= (u32)(phy_reg & PHY_REVISION_MASK); |
| 203 | break; |
| 204 | } |
Bruce Allan | 62bc813 | 2012-03-20 03:47:57 +0000 | [diff] [blame] | 205 | |
Bruce Allan | cb17aab | 2012-04-13 03:16:22 +0000 | [diff] [blame] | 206 | if (hw->phy.id) { |
| 207 | if (hw->phy.id == phy_id) |
Bruce Allan | 16b095a | 2013-06-29 07:42:39 +0000 | [diff] [blame] | 208 | goto out; |
Bruce Allan | a52359b | 2012-07-14 04:23:58 +0000 | [diff] [blame] | 209 | } else if (phy_id) { |
| 210 | hw->phy.id = phy_id; |
| 211 | hw->phy.revision = (u32)(phy_reg & ~PHY_REVISION_MASK); |
Bruce Allan | 16b095a | 2013-06-29 07:42:39 +0000 | [diff] [blame] | 212 | goto out; |
Bruce Allan | cb17aab | 2012-04-13 03:16:22 +0000 | [diff] [blame] | 213 | } |
| 214 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 215 | /* In case the PHY needs to be in mdio slow mode, |
Bruce Allan | a52359b | 2012-07-14 04:23:58 +0000 | [diff] [blame] | 216 | * set slow mode and try to get the PHY id again. |
| 217 | */ |
| 218 | hw->phy.ops.release(hw); |
| 219 | ret_val = e1000_set_mdio_slow_mode_hv(hw); |
| 220 | if (!ret_val) |
| 221 | ret_val = e1000e_get_phy_id(hw); |
| 222 | hw->phy.ops.acquire(hw); |
| 223 | |
Bruce Allan | 16b095a | 2013-06-29 07:42:39 +0000 | [diff] [blame] | 224 | if (ret_val) |
| 225 | return false; |
| 226 | out: |
| 227 | if (hw->mac.type == e1000_pch_lpt) { |
| 228 | /* Unforce SMBus mode in PHY */ |
| 229 | e1e_rphy_locked(hw, CV_SMB_CTRL, &phy_reg); |
| 230 | phy_reg &= ~CV_SMB_CTRL_FORCE_SMBUS; |
| 231 | e1e_wphy_locked(hw, CV_SMB_CTRL, phy_reg); |
| 232 | |
| 233 | /* Unforce SMBus mode in MAC */ |
| 234 | mac_reg = er32(CTRL_EXT); |
| 235 | mac_reg &= ~E1000_CTRL_EXT_FORCE_SMBUS; |
| 236 | ew32(CTRL_EXT, mac_reg); |
| 237 | } |
| 238 | |
| 239 | return true; |
Bruce Allan | cb17aab | 2012-04-13 03:16:22 +0000 | [diff] [blame] | 240 | } |
| 241 | |
| 242 | /** |
| 243 | * e1000_init_phy_workarounds_pchlan - PHY initialization workarounds |
| 244 | * @hw: pointer to the HW structure |
| 245 | * |
| 246 | * Workarounds/flow necessary for PHY initialization during driver load |
| 247 | * and resume paths. |
| 248 | **/ |
| 249 | static s32 e1000_init_phy_workarounds_pchlan(struct e1000_hw *hw) |
| 250 | { |
David Ertman | f7235ef | 2014-01-23 06:29:13 +0000 | [diff] [blame] | 251 | struct e1000_adapter *adapter = hw->adapter; |
Bruce Allan | cb17aab | 2012-04-13 03:16:22 +0000 | [diff] [blame] | 252 | u32 mac_reg, fwsm = er32(FWSM); |
| 253 | s32 ret_val; |
| 254 | |
Bruce Allan | 6e928b7 | 2012-12-12 04:45:51 +0000 | [diff] [blame] | 255 | /* Gate automatic PHY configuration by hardware on managed and |
| 256 | * non-managed 82579 and newer adapters. |
| 257 | */ |
| 258 | e1000_gate_hw_phy_config_ich8lan(hw, true); |
| 259 | |
Bruce Allan | cb17aab | 2012-04-13 03:16:22 +0000 | [diff] [blame] | 260 | ret_val = hw->phy.ops.acquire(hw); |
| 261 | if (ret_val) { |
| 262 | e_dbg("Failed to initialize PHY flow\n"); |
Bruce Allan | 6e928b7 | 2012-12-12 04:45:51 +0000 | [diff] [blame] | 263 | goto out; |
Bruce Allan | cb17aab | 2012-04-13 03:16:22 +0000 | [diff] [blame] | 264 | } |
| 265 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 266 | /* The MAC-PHY interconnect may be in SMBus mode. If the PHY is |
Bruce Allan | cb17aab | 2012-04-13 03:16:22 +0000 | [diff] [blame] | 267 | * inaccessible and resetting the PHY is not blocked, toggle the |
| 268 | * LANPHYPC Value bit to force the interconnect to PCIe mode. |
| 269 | */ |
| 270 | switch (hw->mac.type) { |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 271 | case e1000_pch_lpt: |
| 272 | if (e1000_phy_is_accessible_pchlan(hw)) |
| 273 | break; |
| 274 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 275 | /* Before toggling LANPHYPC, see if PHY is accessible by |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 276 | * forcing MAC to SMBus mode first. |
| 277 | */ |
| 278 | mac_reg = er32(CTRL_EXT); |
| 279 | mac_reg |= E1000_CTRL_EXT_FORCE_SMBUS; |
| 280 | ew32(CTRL_EXT, mac_reg); |
| 281 | |
Bruce Allan | 16b095a | 2013-06-29 07:42:39 +0000 | [diff] [blame] | 282 | /* Wait 50 milliseconds for MAC to finish any retries |
| 283 | * that it might be trying to perform from previous |
| 284 | * attempts to acknowledge any phy read requests. |
| 285 | */ |
| 286 | msleep(50); |
| 287 | |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 288 | /* fall-through */ |
Bruce Allan | cb17aab | 2012-04-13 03:16:22 +0000 | [diff] [blame] | 289 | case e1000_pch2lan: |
Bruce Allan | 16b095a | 2013-06-29 07:42:39 +0000 | [diff] [blame] | 290 | if (e1000_phy_is_accessible_pchlan(hw)) |
Bruce Allan | cb17aab | 2012-04-13 03:16:22 +0000 | [diff] [blame] | 291 | break; |
| 292 | |
| 293 | /* fall-through */ |
| 294 | case e1000_pchlan: |
| 295 | if ((hw->mac.type == e1000_pchlan) && |
| 296 | (fwsm & E1000_ICH_FWSM_FW_VALID)) |
| 297 | break; |
| 298 | |
| 299 | if (hw->phy.ops.check_reset_block(hw)) { |
| 300 | e_dbg("Required LANPHYPC toggle blocked by ME\n"); |
Bruce Allan | 16b095a | 2013-06-29 07:42:39 +0000 | [diff] [blame] | 301 | ret_val = -E1000_ERR_PHY; |
Bruce Allan | cb17aab | 2012-04-13 03:16:22 +0000 | [diff] [blame] | 302 | break; |
| 303 | } |
| 304 | |
| 305 | e_dbg("Toggling LANPHYPC\n"); |
| 306 | |
| 307 | /* Set Phy Config Counter to 50msec */ |
| 308 | mac_reg = er32(FEXTNVM3); |
| 309 | mac_reg &= ~E1000_FEXTNVM3_PHY_CFG_COUNTER_MASK; |
| 310 | mac_reg |= E1000_FEXTNVM3_PHY_CFG_COUNTER_50MSEC; |
| 311 | ew32(FEXTNVM3, mac_reg); |
| 312 | |
| 313 | /* Toggle LANPHYPC Value bit */ |
| 314 | mac_reg = er32(CTRL); |
| 315 | mac_reg |= E1000_CTRL_LANPHYPC_OVERRIDE; |
| 316 | mac_reg &= ~E1000_CTRL_LANPHYPC_VALUE; |
| 317 | ew32(CTRL, mac_reg); |
| 318 | e1e_flush(); |
Bruce Allan | ce43a21 | 2013-02-20 04:06:32 +0000 | [diff] [blame] | 319 | usleep_range(10, 20); |
Bruce Allan | cb17aab | 2012-04-13 03:16:22 +0000 | [diff] [blame] | 320 | mac_reg &= ~E1000_CTRL_LANPHYPC_OVERRIDE; |
| 321 | ew32(CTRL, mac_reg); |
| 322 | e1e_flush(); |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 323 | if (hw->mac.type < e1000_pch_lpt) { |
| 324 | msleep(50); |
| 325 | } else { |
| 326 | u16 count = 20; |
| 327 | do { |
| 328 | usleep_range(5000, 10000); |
| 329 | } while (!(er32(CTRL_EXT) & |
| 330 | E1000_CTRL_EXT_LPCD) && count--); |
Bruce Allan | 16b095a | 2013-06-29 07:42:39 +0000 | [diff] [blame] | 331 | usleep_range(30000, 60000); |
| 332 | if (e1000_phy_is_accessible_pchlan(hw)) |
| 333 | break; |
| 334 | |
| 335 | /* Toggling LANPHYPC brings the PHY out of SMBus mode |
| 336 | * so ensure that the MAC is also out of SMBus mode |
| 337 | */ |
| 338 | mac_reg = er32(CTRL_EXT); |
| 339 | mac_reg &= ~E1000_CTRL_EXT_FORCE_SMBUS; |
| 340 | ew32(CTRL_EXT, mac_reg); |
| 341 | |
| 342 | if (e1000_phy_is_accessible_pchlan(hw)) |
| 343 | break; |
| 344 | |
| 345 | ret_val = -E1000_ERR_PHY; |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 346 | } |
Bruce Allan | cb17aab | 2012-04-13 03:16:22 +0000 | [diff] [blame] | 347 | break; |
| 348 | default: |
| 349 | break; |
| 350 | } |
| 351 | |
| 352 | hw->phy.ops.release(hw); |
Bruce Allan | 16b095a | 2013-06-29 07:42:39 +0000 | [diff] [blame] | 353 | if (!ret_val) { |
David Ertman | f7235ef | 2014-01-23 06:29:13 +0000 | [diff] [blame] | 354 | |
| 355 | /* Check to see if able to reset PHY. Print error if not */ |
| 356 | if (hw->phy.ops.check_reset_block(hw)) { |
| 357 | e_err("Reset blocked by ME\n"); |
| 358 | goto out; |
| 359 | } |
| 360 | |
Bruce Allan | 16b095a | 2013-06-29 07:42:39 +0000 | [diff] [blame] | 361 | /* Reset the PHY before any access to it. Doing so, ensures |
| 362 | * that the PHY is in a known good state before we read/write |
| 363 | * PHY registers. The generic reset is sufficient here, |
| 364 | * because we haven't determined the PHY type yet. |
| 365 | */ |
| 366 | ret_val = e1000e_phy_hw_reset_generic(hw); |
David Ertman | f7235ef | 2014-01-23 06:29:13 +0000 | [diff] [blame] | 367 | if (ret_val) |
| 368 | goto out; |
| 369 | |
| 370 | /* On a successful reset, possibly need to wait for the PHY |
| 371 | * to quiesce to an accessible state before returning control |
| 372 | * to the calling function. If the PHY does not quiesce, then |
| 373 | * return E1000E_BLK_PHY_RESET, as this is the condition that |
| 374 | * the PHY is in. |
| 375 | */ |
| 376 | ret_val = hw->phy.ops.check_reset_block(hw); |
| 377 | if (ret_val) |
| 378 | e_err("ME blocked access to PHY after reset\n"); |
Bruce Allan | 16b095a | 2013-06-29 07:42:39 +0000 | [diff] [blame] | 379 | } |
Bruce Allan | cb17aab | 2012-04-13 03:16:22 +0000 | [diff] [blame] | 380 | |
Bruce Allan | 6e928b7 | 2012-12-12 04:45:51 +0000 | [diff] [blame] | 381 | out: |
Bruce Allan | cb17aab | 2012-04-13 03:16:22 +0000 | [diff] [blame] | 382 | /* Ungate automatic PHY configuration on non-managed 82579 */ |
| 383 | if ((hw->mac.type == e1000_pch2lan) && |
| 384 | !(fwsm & E1000_ICH_FWSM_FW_VALID)) { |
| 385 | usleep_range(10000, 20000); |
| 386 | e1000_gate_hw_phy_config_ich8lan(hw, false); |
| 387 | } |
| 388 | |
| 389 | return ret_val; |
Bruce Allan | 99730e4 | 2011-05-13 07:19:48 +0000 | [diff] [blame] | 390 | } |
| 391 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 392 | /** |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 393 | * e1000_init_phy_params_pchlan - Initialize PHY function pointers |
| 394 | * @hw: pointer to the HW structure |
| 395 | * |
| 396 | * Initialize family-specific PHY parameters and function pointers. |
| 397 | **/ |
| 398 | static s32 e1000_init_phy_params_pchlan(struct e1000_hw *hw) |
| 399 | { |
| 400 | struct e1000_phy_info *phy = &hw->phy; |
Bruce Allan | 70806a7 | 2013-01-05 05:08:37 +0000 | [diff] [blame] | 401 | s32 ret_val; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 402 | |
Bruce Allan | e80bd1d | 2013-05-01 01:19:46 +0000 | [diff] [blame] | 403 | phy->addr = 1; |
| 404 | phy->reset_delay_us = 100; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 405 | |
Bruce Allan | e80bd1d | 2013-05-01 01:19:46 +0000 | [diff] [blame] | 406 | phy->ops.set_page = e1000_set_page_igp; |
| 407 | phy->ops.read_reg = e1000_read_phy_reg_hv; |
| 408 | phy->ops.read_reg_locked = e1000_read_phy_reg_hv_locked; |
| 409 | phy->ops.read_reg_page = e1000_read_phy_reg_page_hv; |
| 410 | phy->ops.set_d0_lplu_state = e1000_set_lplu_state_pchlan; |
| 411 | phy->ops.set_d3_lplu_state = e1000_set_lplu_state_pchlan; |
| 412 | phy->ops.write_reg = e1000_write_phy_reg_hv; |
| 413 | phy->ops.write_reg_locked = e1000_write_phy_reg_hv_locked; |
| 414 | phy->ops.write_reg_page = e1000_write_phy_reg_page_hv; |
| 415 | phy->ops.power_up = e1000_power_up_phy_copper; |
| 416 | phy->ops.power_down = e1000_power_down_phy_copper_ich8lan; |
| 417 | phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 418 | |
| 419 | phy->id = e1000_phy_unknown; |
Bruce Allan | cb17aab | 2012-04-13 03:16:22 +0000 | [diff] [blame] | 420 | |
| 421 | ret_val = e1000_init_phy_workarounds_pchlan(hw); |
| 422 | if (ret_val) |
| 423 | return ret_val; |
| 424 | |
| 425 | if (phy->id == e1000_phy_unknown) |
| 426 | switch (hw->mac.type) { |
| 427 | default: |
| 428 | ret_val = e1000e_get_phy_id(hw); |
| 429 | if (ret_val) |
| 430 | return ret_val; |
| 431 | if ((phy->id != 0) && (phy->id != PHY_REVISION_MASK)) |
| 432 | break; |
| 433 | /* fall-through */ |
| 434 | case e1000_pch2lan: |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 435 | case e1000_pch_lpt: |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 436 | /* In case the PHY needs to be in mdio slow mode, |
Bruce Allan | cb17aab | 2012-04-13 03:16:22 +0000 | [diff] [blame] | 437 | * set slow mode and try to get the PHY id again. |
| 438 | */ |
| 439 | ret_val = e1000_set_mdio_slow_mode_hv(hw); |
| 440 | if (ret_val) |
| 441 | return ret_val; |
| 442 | ret_val = e1000e_get_phy_id(hw); |
| 443 | if (ret_val) |
| 444 | return ret_val; |
Bruce Allan | 664dc87 | 2010-11-24 06:01:46 +0000 | [diff] [blame] | 445 | break; |
Bruce Allan | cb17aab | 2012-04-13 03:16:22 +0000 | [diff] [blame] | 446 | } |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 447 | phy->type = e1000e_get_phy_type_from_id(phy->id); |
| 448 | |
Bruce Allan | 0be8401 | 2009-12-02 17:03:18 +0000 | [diff] [blame] | 449 | switch (phy->type) { |
| 450 | case e1000_phy_82577: |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 451 | case e1000_phy_82579: |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 452 | case e1000_phy_i217: |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 453 | phy->ops.check_polarity = e1000_check_polarity_82577; |
| 454 | phy->ops.force_speed_duplex = |
Bruce Allan | 6cc7aae | 2011-02-25 06:25:18 +0000 | [diff] [blame] | 455 | e1000_phy_force_speed_duplex_82577; |
Bruce Allan | 0be8401 | 2009-12-02 17:03:18 +0000 | [diff] [blame] | 456 | phy->ops.get_cable_length = e1000_get_cable_length_82577; |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 457 | phy->ops.get_info = e1000_get_phy_info_82577; |
| 458 | phy->ops.commit = e1000e_phy_sw_reset; |
Bruce Allan | eab50ff | 2010-05-10 15:01:30 +0000 | [diff] [blame] | 459 | break; |
Bruce Allan | 0be8401 | 2009-12-02 17:03:18 +0000 | [diff] [blame] | 460 | case e1000_phy_82578: |
| 461 | phy->ops.check_polarity = e1000_check_polarity_m88; |
| 462 | phy->ops.force_speed_duplex = e1000e_phy_force_speed_duplex_m88; |
| 463 | phy->ops.get_cable_length = e1000e_get_cable_length_m88; |
| 464 | phy->ops.get_info = e1000e_get_phy_info_m88; |
| 465 | break; |
| 466 | default: |
| 467 | ret_val = -E1000_ERR_PHY; |
| 468 | break; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 469 | } |
| 470 | |
| 471 | return ret_val; |
| 472 | } |
| 473 | |
| 474 | /** |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 475 | * e1000_init_phy_params_ich8lan - Initialize PHY function pointers |
| 476 | * @hw: pointer to the HW structure |
| 477 | * |
| 478 | * Initialize family-specific PHY parameters and function pointers. |
| 479 | **/ |
| 480 | static s32 e1000_init_phy_params_ich8lan(struct e1000_hw *hw) |
| 481 | { |
| 482 | struct e1000_phy_info *phy = &hw->phy; |
| 483 | s32 ret_val; |
| 484 | u16 i = 0; |
| 485 | |
Bruce Allan | e80bd1d | 2013-05-01 01:19:46 +0000 | [diff] [blame] | 486 | phy->addr = 1; |
| 487 | phy->reset_delay_us = 100; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 488 | |
Bruce Allan | e80bd1d | 2013-05-01 01:19:46 +0000 | [diff] [blame] | 489 | phy->ops.power_up = e1000_power_up_phy_copper; |
| 490 | phy->ops.power_down = e1000_power_down_phy_copper_ich8lan; |
Bruce Allan | 17f208d | 2009-12-01 15:47:22 +0000 | [diff] [blame] | 491 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 492 | /* We may need to do this twice - once for IGP and if that fails, |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 493 | * we'll set BM func pointers and try again |
| 494 | */ |
| 495 | ret_val = e1000e_determine_phy_address(hw); |
| 496 | if (ret_val) { |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 497 | phy->ops.write_reg = e1000e_write_phy_reg_bm; |
Bruce Allan | e80bd1d | 2013-05-01 01:19:46 +0000 | [diff] [blame] | 498 | phy->ops.read_reg = e1000e_read_phy_reg_bm; |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 499 | ret_val = e1000e_determine_phy_address(hw); |
Bruce Allan | 9b71b41 | 2009-12-01 15:53:07 +0000 | [diff] [blame] | 500 | if (ret_val) { |
| 501 | e_dbg("Cannot determine PHY addr. Erroring out\n"); |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 502 | return ret_val; |
Bruce Allan | 9b71b41 | 2009-12-01 15:53:07 +0000 | [diff] [blame] | 503 | } |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 504 | } |
| 505 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 506 | phy->id = 0; |
| 507 | while ((e1000_phy_unknown == e1000e_get_phy_type_from_id(phy->id)) && |
| 508 | (i++ < 100)) { |
Bruce Allan | 1bba438 | 2011-03-19 00:27:20 +0000 | [diff] [blame] | 509 | usleep_range(1000, 2000); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 510 | ret_val = e1000e_get_phy_id(hw); |
| 511 | if (ret_val) |
| 512 | return ret_val; |
| 513 | } |
| 514 | |
| 515 | /* Verify phy id */ |
| 516 | switch (phy->id) { |
| 517 | case IGP03E1000_E_PHY_ID: |
| 518 | phy->type = e1000_phy_igp_3; |
| 519 | phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT; |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 520 | phy->ops.read_reg_locked = e1000e_read_phy_reg_igp_locked; |
| 521 | phy->ops.write_reg_locked = e1000e_write_phy_reg_igp_locked; |
Bruce Allan | 0be8401 | 2009-12-02 17:03:18 +0000 | [diff] [blame] | 522 | phy->ops.get_info = e1000e_get_phy_info_igp; |
| 523 | phy->ops.check_polarity = e1000_check_polarity_igp; |
| 524 | phy->ops.force_speed_duplex = e1000e_phy_force_speed_duplex_igp; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 525 | break; |
| 526 | case IFE_E_PHY_ID: |
| 527 | case IFE_PLUS_E_PHY_ID: |
| 528 | case IFE_C_E_PHY_ID: |
| 529 | phy->type = e1000_phy_ife; |
| 530 | phy->autoneg_mask = E1000_ALL_NOT_GIG; |
Bruce Allan | 0be8401 | 2009-12-02 17:03:18 +0000 | [diff] [blame] | 531 | phy->ops.get_info = e1000_get_phy_info_ife; |
| 532 | phy->ops.check_polarity = e1000_check_polarity_ife; |
| 533 | phy->ops.force_speed_duplex = e1000_phy_force_speed_duplex_ife; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 534 | break; |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 535 | case BME1000_E_PHY_ID: |
| 536 | phy->type = e1000_phy_bm; |
| 537 | phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT; |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 538 | phy->ops.read_reg = e1000e_read_phy_reg_bm; |
| 539 | phy->ops.write_reg = e1000e_write_phy_reg_bm; |
| 540 | phy->ops.commit = e1000e_phy_sw_reset; |
Bruce Allan | 0be8401 | 2009-12-02 17:03:18 +0000 | [diff] [blame] | 541 | phy->ops.get_info = e1000e_get_phy_info_m88; |
| 542 | phy->ops.check_polarity = e1000_check_polarity_m88; |
| 543 | phy->ops.force_speed_duplex = e1000e_phy_force_speed_duplex_m88; |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 544 | break; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 545 | default: |
| 546 | return -E1000_ERR_PHY; |
| 547 | break; |
| 548 | } |
| 549 | |
| 550 | return 0; |
| 551 | } |
| 552 | |
| 553 | /** |
| 554 | * e1000_init_nvm_params_ich8lan - Initialize NVM function pointers |
| 555 | * @hw: pointer to the HW structure |
| 556 | * |
| 557 | * Initialize family-specific NVM parameters and function |
| 558 | * pointers. |
| 559 | **/ |
| 560 | static s32 e1000_init_nvm_params_ich8lan(struct e1000_hw *hw) |
| 561 | { |
| 562 | struct e1000_nvm_info *nvm = &hw->nvm; |
| 563 | struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan; |
Bruce Allan | 148675a | 2009-08-07 07:41:56 +0000 | [diff] [blame] | 564 | u32 gfpreg, sector_base_addr, sector_end_addr; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 565 | u16 i; |
| 566 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 567 | /* Can't read flash registers if the register set isn't mapped. */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 568 | if (!hw->flash_address) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 569 | e_dbg("ERROR: Flash registers not mapped\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 570 | return -E1000_ERR_CONFIG; |
| 571 | } |
| 572 | |
| 573 | nvm->type = e1000_nvm_flash_sw; |
| 574 | |
| 575 | gfpreg = er32flash(ICH_FLASH_GFPREG); |
| 576 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 577 | /* sector_X_addr is a "sector"-aligned address (4096 bytes) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 578 | * Add 1 to sector_end_addr since this sector is included in |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 579 | * the overall size. |
| 580 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 581 | sector_base_addr = gfpreg & FLASH_GFPREG_BASE_MASK; |
| 582 | sector_end_addr = ((gfpreg >> 16) & FLASH_GFPREG_BASE_MASK) + 1; |
| 583 | |
| 584 | /* flash_base_addr is byte-aligned */ |
| 585 | nvm->flash_base_addr = sector_base_addr << FLASH_SECTOR_ADDR_SHIFT; |
| 586 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 587 | /* find total size of the NVM, then cut in half since the total |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 588 | * size represents two separate NVM banks. |
| 589 | */ |
Bruce Allan | f0ff439 | 2013-02-20 04:05:39 +0000 | [diff] [blame] | 590 | nvm->flash_bank_size = ((sector_end_addr - sector_base_addr) |
| 591 | << FLASH_SECTOR_ADDR_SHIFT); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 592 | nvm->flash_bank_size /= 2; |
| 593 | /* Adjust to word count */ |
| 594 | nvm->flash_bank_size /= sizeof(u16); |
| 595 | |
| 596 | nvm->word_size = E1000_ICH8_SHADOW_RAM_WORDS; |
| 597 | |
| 598 | /* Clear shadow ram */ |
| 599 | for (i = 0; i < nvm->word_size; i++) { |
Bruce Allan | 564ea9b | 2009-11-20 23:26:44 +0000 | [diff] [blame] | 600 | dev_spec->shadow_ram[i].modified = false; |
Bruce Allan | e80bd1d | 2013-05-01 01:19:46 +0000 | [diff] [blame] | 601 | dev_spec->shadow_ram[i].value = 0xFFFF; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 602 | } |
| 603 | |
| 604 | return 0; |
| 605 | } |
| 606 | |
| 607 | /** |
| 608 | * e1000_init_mac_params_ich8lan - Initialize MAC function pointers |
| 609 | * @hw: pointer to the HW structure |
| 610 | * |
| 611 | * Initialize family-specific MAC parameters and function |
| 612 | * pointers. |
| 613 | **/ |
Bruce Allan | ec34c17 | 2012-02-01 10:53:05 +0000 | [diff] [blame] | 614 | static s32 e1000_init_mac_params_ich8lan(struct e1000_hw *hw) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 615 | { |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 616 | struct e1000_mac_info *mac = &hw->mac; |
| 617 | |
| 618 | /* Set media type function pointer */ |
Jeff Kirsher | 318a94d | 2008-03-28 09:15:16 -0700 | [diff] [blame] | 619 | hw->phy.media_type = e1000_media_type_copper; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 620 | |
| 621 | /* Set mta register count */ |
| 622 | mac->mta_reg_count = 32; |
| 623 | /* Set rar entry count */ |
| 624 | mac->rar_entry_count = E1000_ICH_RAR_ENTRIES; |
| 625 | if (mac->type == e1000_ich8lan) |
| 626 | mac->rar_entry_count--; |
Bruce Allan | a65a4a0 | 2010-05-10 15:01:51 +0000 | [diff] [blame] | 627 | /* FWSM register */ |
| 628 | mac->has_fwsm = true; |
| 629 | /* ARC subsystem not supported */ |
| 630 | mac->arc_subsystem_valid = false; |
Bruce Allan | f464ba8 | 2010-01-07 16:31:35 +0000 | [diff] [blame] | 631 | /* Adaptive IFS supported */ |
| 632 | mac->adaptive_ifs = true; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 633 | |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 634 | /* LED and other operations */ |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 635 | switch (mac->type) { |
| 636 | case e1000_ich8lan: |
| 637 | case e1000_ich9lan: |
| 638 | case e1000_ich10lan: |
Bruce Allan | eb7700d | 2010-06-16 13:27:05 +0000 | [diff] [blame] | 639 | /* check management mode */ |
| 640 | mac->ops.check_mng_mode = e1000_check_mng_mode_ich8lan; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 641 | /* ID LED init */ |
Bruce Allan | d1964eb | 2012-02-22 09:02:21 +0000 | [diff] [blame] | 642 | mac->ops.id_led_init = e1000e_id_led_init_generic; |
Bruce Allan | dbf80dc | 2011-04-16 00:34:40 +0000 | [diff] [blame] | 643 | /* blink LED */ |
| 644 | mac->ops.blink_led = e1000e_blink_led_generic; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 645 | /* setup LED */ |
| 646 | mac->ops.setup_led = e1000e_setup_led_generic; |
| 647 | /* cleanup LED */ |
| 648 | mac->ops.cleanup_led = e1000_cleanup_led_ich8lan; |
| 649 | /* turn on/off LED */ |
| 650 | mac->ops.led_on = e1000_led_on_ich8lan; |
| 651 | mac->ops.led_off = e1000_led_off_ich8lan; |
| 652 | break; |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 653 | case e1000_pch2lan: |
Bruce Allan | 69e1e01 | 2012-04-14 03:28:50 +0000 | [diff] [blame] | 654 | mac->rar_entry_count = E1000_PCH2_RAR_ENTRIES; |
| 655 | mac->ops.rar_set = e1000_rar_set_pch2lan; |
| 656 | /* fall-through */ |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 657 | case e1000_pch_lpt: |
Bruce Allan | 69e1e01 | 2012-04-14 03:28:50 +0000 | [diff] [blame] | 658 | case e1000_pchlan: |
Bruce Allan | eb7700d | 2010-06-16 13:27:05 +0000 | [diff] [blame] | 659 | /* check management mode */ |
| 660 | mac->ops.check_mng_mode = e1000_check_mng_mode_pchlan; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 661 | /* ID LED init */ |
| 662 | mac->ops.id_led_init = e1000_id_led_init_pchlan; |
| 663 | /* setup LED */ |
| 664 | mac->ops.setup_led = e1000_setup_led_pchlan; |
| 665 | /* cleanup LED */ |
| 666 | mac->ops.cleanup_led = e1000_cleanup_led_pchlan; |
| 667 | /* turn on/off LED */ |
| 668 | mac->ops.led_on = e1000_led_on_pchlan; |
| 669 | mac->ops.led_off = e1000_led_off_pchlan; |
| 670 | break; |
| 671 | default: |
| 672 | break; |
| 673 | } |
| 674 | |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 675 | if (mac->type == e1000_pch_lpt) { |
| 676 | mac->rar_entry_count = E1000_PCH_LPT_RAR_ENTRIES; |
| 677 | mac->ops.rar_set = e1000_rar_set_pch_lpt; |
Bruce Allan | ea8179a | 2013-03-06 09:02:47 +0000 | [diff] [blame] | 678 | mac->ops.setup_physical_interface = |
| 679 | e1000_setup_copper_link_pch_lpt; |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 680 | } |
| 681 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 682 | /* Enable PCS Lock-loss workaround for ICH8 */ |
| 683 | if (mac->type == e1000_ich8lan) |
Bruce Allan | 564ea9b | 2009-11-20 23:26:44 +0000 | [diff] [blame] | 684 | e1000e_set_kmrn_lock_loss_workaround_ich8lan(hw, true); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 685 | |
| 686 | return 0; |
| 687 | } |
| 688 | |
Bruce Allan | 7d3cabb | 2009-07-01 13:29:08 +0000 | [diff] [blame] | 689 | /** |
Bruce Allan | 4ddc48a | 2012-12-05 06:25:58 +0000 | [diff] [blame] | 690 | * __e1000_access_emi_reg_locked - Read/write EMI register |
| 691 | * @hw: pointer to the HW structure |
| 692 | * @addr: EMI address to program |
| 693 | * @data: pointer to value to read/write from/to the EMI address |
| 694 | * @read: boolean flag to indicate read or write |
| 695 | * |
| 696 | * This helper function assumes the SW/FW/HW Semaphore is already acquired. |
| 697 | **/ |
| 698 | static s32 __e1000_access_emi_reg_locked(struct e1000_hw *hw, u16 address, |
| 699 | u16 *data, bool read) |
| 700 | { |
Bruce Allan | 70806a7 | 2013-01-05 05:08:37 +0000 | [diff] [blame] | 701 | s32 ret_val; |
Bruce Allan | 4ddc48a | 2012-12-05 06:25:58 +0000 | [diff] [blame] | 702 | |
| 703 | ret_val = e1e_wphy_locked(hw, I82579_EMI_ADDR, address); |
| 704 | if (ret_val) |
| 705 | return ret_val; |
| 706 | |
| 707 | if (read) |
| 708 | ret_val = e1e_rphy_locked(hw, I82579_EMI_DATA, data); |
| 709 | else |
| 710 | ret_val = e1e_wphy_locked(hw, I82579_EMI_DATA, *data); |
| 711 | |
| 712 | return ret_val; |
| 713 | } |
| 714 | |
| 715 | /** |
| 716 | * e1000_read_emi_reg_locked - Read Extended Management Interface register |
| 717 | * @hw: pointer to the HW structure |
| 718 | * @addr: EMI address to program |
| 719 | * @data: value to be read from the EMI address |
| 720 | * |
| 721 | * Assumes the SW/FW/HW Semaphore is already acquired. |
| 722 | **/ |
Bruce Allan | 203e415 | 2012-12-05 08:40:59 +0000 | [diff] [blame] | 723 | s32 e1000_read_emi_reg_locked(struct e1000_hw *hw, u16 addr, u16 *data) |
Bruce Allan | 4ddc48a | 2012-12-05 06:25:58 +0000 | [diff] [blame] | 724 | { |
| 725 | return __e1000_access_emi_reg_locked(hw, addr, data, true); |
| 726 | } |
| 727 | |
| 728 | /** |
| 729 | * e1000_write_emi_reg_locked - Write Extended Management Interface register |
| 730 | * @hw: pointer to the HW structure |
| 731 | * @addr: EMI address to program |
| 732 | * @data: value to be written to the EMI address |
| 733 | * |
| 734 | * Assumes the SW/FW/HW Semaphore is already acquired. |
| 735 | **/ |
Bruce Allan | d495bcb | 2013-03-20 07:23:11 +0000 | [diff] [blame] | 736 | s32 e1000_write_emi_reg_locked(struct e1000_hw *hw, u16 addr, u16 data) |
Bruce Allan | 4ddc48a | 2012-12-05 06:25:58 +0000 | [diff] [blame] | 737 | { |
| 738 | return __e1000_access_emi_reg_locked(hw, addr, &data, false); |
| 739 | } |
| 740 | |
| 741 | /** |
Bruce Allan | e52997f | 2010-06-16 13:27:49 +0000 | [diff] [blame] | 742 | * e1000_set_eee_pchlan - Enable/disable EEE support |
| 743 | * @hw: pointer to the HW structure |
| 744 | * |
Bruce Allan | 3d4d575 | 2012-12-05 06:26:08 +0000 | [diff] [blame] | 745 | * Enable/disable EEE based on setting in dev_spec structure, the duplex of |
| 746 | * the link and the EEE capabilities of the link partner. The LPI Control |
| 747 | * register bits will remain set only if/when link is up. |
David Ertman | a03206e | 2014-01-24 23:07:48 +0000 | [diff] [blame] | 748 | * |
| 749 | * EEE LPI must not be asserted earlier than one second after link is up. |
| 750 | * On 82579, EEE LPI should not be enabled until such time otherwise there |
| 751 | * can be link issues with some switches. Other devices can have EEE LPI |
| 752 | * enabled immediately upon link up since they have a timer in hardware which |
| 753 | * prevents LPI from being asserted too early. |
Bruce Allan | e52997f | 2010-06-16 13:27:49 +0000 | [diff] [blame] | 754 | **/ |
David Ertman | a03206e | 2014-01-24 23:07:48 +0000 | [diff] [blame] | 755 | s32 e1000_set_eee_pchlan(struct e1000_hw *hw) |
Bruce Allan | e52997f | 2010-06-16 13:27:49 +0000 | [diff] [blame] | 756 | { |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 757 | struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan; |
Bruce Allan | 3d4d575 | 2012-12-05 06:26:08 +0000 | [diff] [blame] | 758 | s32 ret_val; |
Bruce Allan | d495bcb | 2013-03-20 07:23:11 +0000 | [diff] [blame] | 759 | u16 lpa, pcs_status, adv, adv_addr, lpi_ctrl, data; |
Bruce Allan | e52997f | 2010-06-16 13:27:49 +0000 | [diff] [blame] | 760 | |
Bruce Allan | d495bcb | 2013-03-20 07:23:11 +0000 | [diff] [blame] | 761 | switch (hw->phy.type) { |
| 762 | case e1000_phy_82579: |
| 763 | lpa = I82579_EEE_LP_ABILITY; |
| 764 | pcs_status = I82579_EEE_PCS_STATUS; |
| 765 | adv_addr = I82579_EEE_ADVERTISEMENT; |
| 766 | break; |
| 767 | case e1000_phy_i217: |
| 768 | lpa = I217_EEE_LP_ABILITY; |
| 769 | pcs_status = I217_EEE_PCS_STATUS; |
| 770 | adv_addr = I217_EEE_ADVERTISEMENT; |
| 771 | break; |
| 772 | default: |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 773 | return 0; |
Bruce Allan | d495bcb | 2013-03-20 07:23:11 +0000 | [diff] [blame] | 774 | } |
Bruce Allan | e52997f | 2010-06-16 13:27:49 +0000 | [diff] [blame] | 775 | |
Bruce Allan | 3d4d575 | 2012-12-05 06:26:08 +0000 | [diff] [blame] | 776 | ret_val = hw->phy.ops.acquire(hw); |
Bruce Allan | e52997f | 2010-06-16 13:27:49 +0000 | [diff] [blame] | 777 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 778 | return ret_val; |
Bruce Allan | e52997f | 2010-06-16 13:27:49 +0000 | [diff] [blame] | 779 | |
Bruce Allan | 3d4d575 | 2012-12-05 06:26:08 +0000 | [diff] [blame] | 780 | ret_val = e1e_rphy_locked(hw, I82579_LPI_CTRL, &lpi_ctrl); |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 781 | if (ret_val) |
Bruce Allan | 3d4d575 | 2012-12-05 06:26:08 +0000 | [diff] [blame] | 782 | goto release; |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 783 | |
Bruce Allan | 3d4d575 | 2012-12-05 06:26:08 +0000 | [diff] [blame] | 784 | /* Clear bits that enable EEE in various speeds */ |
| 785 | lpi_ctrl &= ~I82579_LPI_CTRL_ENABLE_MASK; |
| 786 | |
| 787 | /* Enable EEE if not disabled by user */ |
| 788 | if (!dev_spec->eee_disable) { |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 789 | /* Save off link partner's EEE ability */ |
Bruce Allan | 3d4d575 | 2012-12-05 06:26:08 +0000 | [diff] [blame] | 790 | ret_val = e1000_read_emi_reg_locked(hw, lpa, |
Bruce Allan | 4ddc48a | 2012-12-05 06:25:58 +0000 | [diff] [blame] | 791 | &dev_spec->eee_lp_ability); |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 792 | if (ret_val) |
| 793 | goto release; |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 794 | |
Bruce Allan | d495bcb | 2013-03-20 07:23:11 +0000 | [diff] [blame] | 795 | /* Read EEE advertisement */ |
| 796 | ret_val = e1000_read_emi_reg_locked(hw, adv_addr, &adv); |
| 797 | if (ret_val) |
| 798 | goto release; |
| 799 | |
Bruce Allan | 3d4d575 | 2012-12-05 06:26:08 +0000 | [diff] [blame] | 800 | /* Enable EEE only for speeds in which the link partner is |
Bruce Allan | d495bcb | 2013-03-20 07:23:11 +0000 | [diff] [blame] | 801 | * EEE capable and for which we advertise EEE. |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 802 | */ |
Bruce Allan | d495bcb | 2013-03-20 07:23:11 +0000 | [diff] [blame] | 803 | if (adv & dev_spec->eee_lp_ability & I82579_EEE_1000_SUPPORTED) |
Bruce Allan | 3d4d575 | 2012-12-05 06:26:08 +0000 | [diff] [blame] | 804 | lpi_ctrl |= I82579_LPI_CTRL_1000_ENABLE; |
| 805 | |
Bruce Allan | d495bcb | 2013-03-20 07:23:11 +0000 | [diff] [blame] | 806 | if (adv & dev_spec->eee_lp_ability & I82579_EEE_100_SUPPORTED) { |
Bruce Allan | c2ade1a | 2013-01-16 08:54:35 +0000 | [diff] [blame] | 807 | e1e_rphy_locked(hw, MII_LPA, &data); |
| 808 | if (data & LPA_100FULL) |
Bruce Allan | 3d4d575 | 2012-12-05 06:26:08 +0000 | [diff] [blame] | 809 | lpi_ctrl |= I82579_LPI_CTRL_100_ENABLE; |
| 810 | else |
| 811 | /* EEE is not supported in 100Half, so ignore |
| 812 | * partner's EEE in 100 ability if full-duplex |
| 813 | * is not advertised. |
| 814 | */ |
| 815 | dev_spec->eee_lp_ability &= |
| 816 | ~I82579_EEE_100_SUPPORTED; |
| 817 | } |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 818 | } |
| 819 | |
Bruce Allan | d495bcb | 2013-03-20 07:23:11 +0000 | [diff] [blame] | 820 | /* R/Clr IEEE MMD 3.1 bits 11:10 - Tx/Rx LPI Received */ |
| 821 | ret_val = e1000_read_emi_reg_locked(hw, pcs_status, &data); |
| 822 | if (ret_val) |
| 823 | goto release; |
| 824 | |
Bruce Allan | 3d4d575 | 2012-12-05 06:26:08 +0000 | [diff] [blame] | 825 | ret_val = e1e_wphy_locked(hw, I82579_LPI_CTRL, lpi_ctrl); |
| 826 | release: |
| 827 | hw->phy.ops.release(hw); |
| 828 | |
| 829 | return ret_val; |
Bruce Allan | e52997f | 2010-06-16 13:27:49 +0000 | [diff] [blame] | 830 | } |
| 831 | |
| 832 | /** |
Bruce Allan | e08f626 | 2013-02-20 03:06:34 +0000 | [diff] [blame] | 833 | * e1000_k1_workaround_lpt_lp - K1 workaround on Lynxpoint-LP |
| 834 | * @hw: pointer to the HW structure |
| 835 | * @link: link up bool flag |
| 836 | * |
| 837 | * When K1 is enabled for 1Gbps, the MAC can miss 2 DMA completion indications |
| 838 | * preventing further DMA write requests. Workaround the issue by disabling |
| 839 | * the de-assertion of the clock request when in 1Gpbs mode. |
Bruce Allan | e0236ad | 2013-06-21 09:07:13 +0000 | [diff] [blame] | 840 | * Also, set appropriate Tx re-transmission timeouts for 10 and 100Half link |
| 841 | * speeds in order to avoid Tx hangs. |
Bruce Allan | e08f626 | 2013-02-20 03:06:34 +0000 | [diff] [blame] | 842 | **/ |
| 843 | static s32 e1000_k1_workaround_lpt_lp(struct e1000_hw *hw, bool link) |
| 844 | { |
| 845 | u32 fextnvm6 = er32(FEXTNVM6); |
Bruce Allan | e0236ad | 2013-06-21 09:07:13 +0000 | [diff] [blame] | 846 | u32 status = er32(STATUS); |
Bruce Allan | e08f626 | 2013-02-20 03:06:34 +0000 | [diff] [blame] | 847 | s32 ret_val = 0; |
Bruce Allan | e0236ad | 2013-06-21 09:07:13 +0000 | [diff] [blame] | 848 | u16 reg; |
Bruce Allan | e08f626 | 2013-02-20 03:06:34 +0000 | [diff] [blame] | 849 | |
Bruce Allan | e0236ad | 2013-06-21 09:07:13 +0000 | [diff] [blame] | 850 | if (link && (status & E1000_STATUS_SPEED_1000)) { |
Bruce Allan | e08f626 | 2013-02-20 03:06:34 +0000 | [diff] [blame] | 851 | ret_val = hw->phy.ops.acquire(hw); |
| 852 | if (ret_val) |
| 853 | return ret_val; |
| 854 | |
| 855 | ret_val = |
| 856 | e1000e_read_kmrn_reg_locked(hw, E1000_KMRNCTRLSTA_K1_CONFIG, |
Bruce Allan | e0236ad | 2013-06-21 09:07:13 +0000 | [diff] [blame] | 857 | ®); |
Bruce Allan | e08f626 | 2013-02-20 03:06:34 +0000 | [diff] [blame] | 858 | if (ret_val) |
| 859 | goto release; |
| 860 | |
| 861 | ret_val = |
| 862 | e1000e_write_kmrn_reg_locked(hw, |
| 863 | E1000_KMRNCTRLSTA_K1_CONFIG, |
Bruce Allan | e0236ad | 2013-06-21 09:07:13 +0000 | [diff] [blame] | 864 | reg & |
Bruce Allan | e08f626 | 2013-02-20 03:06:34 +0000 | [diff] [blame] | 865 | ~E1000_KMRNCTRLSTA_K1_ENABLE); |
| 866 | if (ret_val) |
| 867 | goto release; |
| 868 | |
| 869 | usleep_range(10, 20); |
| 870 | |
| 871 | ew32(FEXTNVM6, fextnvm6 | E1000_FEXTNVM6_REQ_PLL_CLK); |
| 872 | |
| 873 | ret_val = |
| 874 | e1000e_write_kmrn_reg_locked(hw, |
| 875 | E1000_KMRNCTRLSTA_K1_CONFIG, |
Bruce Allan | e0236ad | 2013-06-21 09:07:13 +0000 | [diff] [blame] | 876 | reg); |
Bruce Allan | e08f626 | 2013-02-20 03:06:34 +0000 | [diff] [blame] | 877 | release: |
| 878 | hw->phy.ops.release(hw); |
| 879 | } else { |
| 880 | /* clear FEXTNVM6 bit 8 on link down or 10/100 */ |
Bruce Allan | e0236ad | 2013-06-21 09:07:13 +0000 | [diff] [blame] | 881 | fextnvm6 &= ~E1000_FEXTNVM6_REQ_PLL_CLK; |
| 882 | |
| 883 | if (!link || ((status & E1000_STATUS_SPEED_100) && |
| 884 | (status & E1000_STATUS_FD))) |
| 885 | goto update_fextnvm6; |
| 886 | |
| 887 | ret_val = e1e_rphy(hw, I217_INBAND_CTRL, ®); |
| 888 | if (ret_val) |
| 889 | return ret_val; |
| 890 | |
| 891 | /* Clear link status transmit timeout */ |
| 892 | reg &= ~I217_INBAND_CTRL_LINK_STAT_TX_TIMEOUT_MASK; |
| 893 | |
| 894 | if (status & E1000_STATUS_SPEED_100) { |
| 895 | /* Set inband Tx timeout to 5x10us for 100Half */ |
| 896 | reg |= 5 << I217_INBAND_CTRL_LINK_STAT_TX_TIMEOUT_SHIFT; |
| 897 | |
| 898 | /* Do not extend the K1 entry latency for 100Half */ |
| 899 | fextnvm6 &= ~E1000_FEXTNVM6_ENABLE_K1_ENTRY_CONDITION; |
| 900 | } else { |
| 901 | /* Set inband Tx timeout to 50x10us for 10Full/Half */ |
| 902 | reg |= 50 << |
| 903 | I217_INBAND_CTRL_LINK_STAT_TX_TIMEOUT_SHIFT; |
| 904 | |
| 905 | /* Extend the K1 entry latency for 10 Mbps */ |
| 906 | fextnvm6 |= E1000_FEXTNVM6_ENABLE_K1_ENTRY_CONDITION; |
| 907 | } |
| 908 | |
| 909 | ret_val = e1e_wphy(hw, I217_INBAND_CTRL, reg); |
| 910 | if (ret_val) |
| 911 | return ret_val; |
| 912 | |
| 913 | update_fextnvm6: |
| 914 | ew32(FEXTNVM6, fextnvm6); |
Bruce Allan | e08f626 | 2013-02-20 03:06:34 +0000 | [diff] [blame] | 915 | } |
| 916 | |
| 917 | return ret_val; |
| 918 | } |
| 919 | |
| 920 | /** |
Bruce Allan | cf8fb73 | 2013-03-06 09:03:02 +0000 | [diff] [blame] | 921 | * e1000_platform_pm_pch_lpt - Set platform power management values |
| 922 | * @hw: pointer to the HW structure |
| 923 | * @link: bool indicating link status |
| 924 | * |
| 925 | * Set the Latency Tolerance Reporting (LTR) values for the "PCIe-like" |
| 926 | * GbE MAC in the Lynx Point PCH based on Rx buffer size and link speed |
| 927 | * when link is up (which must not exceed the maximum latency supported |
| 928 | * by the platform), otherwise specify there is no LTR requirement. |
| 929 | * Unlike true-PCIe devices which set the LTR maximum snoop/no-snoop |
| 930 | * latencies in the LTR Extended Capability Structure in the PCIe Extended |
| 931 | * Capability register set, on this device LTR is set by writing the |
| 932 | * equivalent snoop/no-snoop latencies in the LTRV register in the MAC and |
| 933 | * set the SEND bit to send an Intel On-chip System Fabric sideband (IOSF-SB) |
| 934 | * message to the PMC. |
| 935 | **/ |
| 936 | static s32 e1000_platform_pm_pch_lpt(struct e1000_hw *hw, bool link) |
| 937 | { |
| 938 | u32 reg = link << (E1000_LTRV_REQ_SHIFT + E1000_LTRV_NOSNOOP_SHIFT) | |
| 939 | link << E1000_LTRV_REQ_SHIFT | E1000_LTRV_SEND; |
| 940 | u16 lat_enc = 0; /* latency encoded */ |
| 941 | |
| 942 | if (link) { |
| 943 | u16 speed, duplex, scale = 0; |
| 944 | u16 max_snoop, max_nosnoop; |
| 945 | u16 max_ltr_enc; /* max LTR latency encoded */ |
| 946 | s64 lat_ns; /* latency (ns) */ |
| 947 | s64 value; |
| 948 | u32 rxa; |
| 949 | |
| 950 | if (!hw->adapter->max_frame_size) { |
| 951 | e_dbg("max_frame_size not set.\n"); |
| 952 | return -E1000_ERR_CONFIG; |
| 953 | } |
| 954 | |
| 955 | hw->mac.ops.get_link_up_info(hw, &speed, &duplex); |
| 956 | if (!speed) { |
| 957 | e_dbg("Speed not set.\n"); |
| 958 | return -E1000_ERR_CONFIG; |
| 959 | } |
| 960 | |
| 961 | /* Rx Packet Buffer Allocation size (KB) */ |
| 962 | rxa = er32(PBA) & E1000_PBA_RXA_MASK; |
| 963 | |
| 964 | /* Determine the maximum latency tolerated by the device. |
| 965 | * |
| 966 | * Per the PCIe spec, the tolerated latencies are encoded as |
| 967 | * a 3-bit encoded scale (only 0-5 are valid) multiplied by |
| 968 | * a 10-bit value (0-1023) to provide a range from 1 ns to |
| 969 | * 2^25*(2^10-1) ns. The scale is encoded as 0=2^0ns, |
| 970 | * 1=2^5ns, 2=2^10ns,...5=2^25ns. |
| 971 | */ |
| 972 | lat_ns = ((s64)rxa * 1024 - |
| 973 | (2 * (s64)hw->adapter->max_frame_size)) * 8 * 1000; |
| 974 | if (lat_ns < 0) |
| 975 | lat_ns = 0; |
| 976 | else |
| 977 | do_div(lat_ns, speed); |
| 978 | |
| 979 | value = lat_ns; |
| 980 | while (value > PCI_LTR_VALUE_MASK) { |
| 981 | scale++; |
| 982 | value = DIV_ROUND_UP(value, (1 << 5)); |
| 983 | } |
| 984 | if (scale > E1000_LTRV_SCALE_MAX) { |
| 985 | e_dbg("Invalid LTR latency scale %d\n", scale); |
| 986 | return -E1000_ERR_CONFIG; |
| 987 | } |
| 988 | lat_enc = (u16)((scale << PCI_LTR_SCALE_SHIFT) | value); |
| 989 | |
| 990 | /* Determine the maximum latency tolerated by the platform */ |
| 991 | pci_read_config_word(hw->adapter->pdev, E1000_PCI_LTR_CAP_LPT, |
| 992 | &max_snoop); |
| 993 | pci_read_config_word(hw->adapter->pdev, |
| 994 | E1000_PCI_LTR_CAP_LPT + 2, &max_nosnoop); |
| 995 | max_ltr_enc = max_t(u16, max_snoop, max_nosnoop); |
| 996 | |
| 997 | if (lat_enc > max_ltr_enc) |
| 998 | lat_enc = max_ltr_enc; |
| 999 | } |
| 1000 | |
| 1001 | /* Set Snoop and No-Snoop latencies the same */ |
| 1002 | reg |= lat_enc | (lat_enc << E1000_LTRV_NOSNOOP_SHIFT); |
| 1003 | ew32(LTRV, reg); |
| 1004 | |
| 1005 | return 0; |
| 1006 | } |
| 1007 | |
| 1008 | /** |
Bruce Allan | 7d3cabb | 2009-07-01 13:29:08 +0000 | [diff] [blame] | 1009 | * e1000_check_for_copper_link_ich8lan - Check for link (Copper) |
| 1010 | * @hw: pointer to the HW structure |
| 1011 | * |
| 1012 | * Checks to see of the link status of the hardware has changed. If a |
| 1013 | * change in link status has been detected, then we read the PHY registers |
| 1014 | * to get the current speed/duplex if link exists. |
| 1015 | **/ |
| 1016 | static s32 e1000_check_for_copper_link_ich8lan(struct e1000_hw *hw) |
| 1017 | { |
| 1018 | struct e1000_mac_info *mac = &hw->mac; |
| 1019 | s32 ret_val; |
| 1020 | bool link; |
Bruce Allan | 1d2101a7 | 2011-07-22 06:21:56 +0000 | [diff] [blame] | 1021 | u16 phy_reg; |
Bruce Allan | 7d3cabb | 2009-07-01 13:29:08 +0000 | [diff] [blame] | 1022 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 1023 | /* We only want to go out to the PHY registers to see if Auto-Neg |
Bruce Allan | 7d3cabb | 2009-07-01 13:29:08 +0000 | [diff] [blame] | 1024 | * has completed and/or if our link status has changed. The |
| 1025 | * get_link_status flag is set upon receiving a Link Status |
| 1026 | * Change or Rx Sequence Error interrupt. |
| 1027 | */ |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 1028 | if (!mac->get_link_status) |
| 1029 | return 0; |
Bruce Allan | 7d3cabb | 2009-07-01 13:29:08 +0000 | [diff] [blame] | 1030 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 1031 | /* First we want to see if the MII Status Register reports |
Bruce Allan | 7d3cabb | 2009-07-01 13:29:08 +0000 | [diff] [blame] | 1032 | * link. If so, then we want to get the current speed/duplex |
| 1033 | * of the PHY. |
| 1034 | */ |
| 1035 | ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link); |
| 1036 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 1037 | return ret_val; |
Bruce Allan | 7d3cabb | 2009-07-01 13:29:08 +0000 | [diff] [blame] | 1038 | |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1039 | if (hw->mac.type == e1000_pchlan) { |
| 1040 | ret_val = e1000_k1_gig_workaround_hv(hw, link); |
| 1041 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 1042 | return ret_val; |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1043 | } |
| 1044 | |
Bruce Allan | 772d05c | 2013-03-06 09:02:36 +0000 | [diff] [blame] | 1045 | /* When connected at 10Mbps half-duplex, 82579 parts are excessively |
| 1046 | * aggressive resulting in many collisions. To avoid this, increase |
| 1047 | * the IPG and reduce Rx latency in the PHY. |
| 1048 | */ |
| 1049 | if ((hw->mac.type == e1000_pch2lan) && link) { |
| 1050 | u32 reg; |
| 1051 | reg = er32(STATUS); |
| 1052 | if (!(reg & (E1000_STATUS_FD | E1000_STATUS_SPEED_MASK))) { |
| 1053 | reg = er32(TIPG); |
| 1054 | reg &= ~E1000_TIPG_IPGT_MASK; |
| 1055 | reg |= 0xFF; |
| 1056 | ew32(TIPG, reg); |
| 1057 | |
| 1058 | /* Reduce Rx latency in analog PHY */ |
| 1059 | ret_val = hw->phy.ops.acquire(hw); |
| 1060 | if (ret_val) |
| 1061 | return ret_val; |
| 1062 | |
| 1063 | ret_val = |
| 1064 | e1000_write_emi_reg_locked(hw, I82579_RX_CONFIG, 0); |
| 1065 | |
| 1066 | hw->phy.ops.release(hw); |
| 1067 | |
| 1068 | if (ret_val) |
| 1069 | return ret_val; |
| 1070 | } |
| 1071 | } |
| 1072 | |
Bruce Allan | e08f626 | 2013-02-20 03:06:34 +0000 | [diff] [blame] | 1073 | /* Work-around I218 hang issue */ |
| 1074 | if ((hw->adapter->pdev->device == E1000_DEV_ID_PCH_LPTLP_I218_LM) || |
Bruce Allan | 91a3d82 | 2013-06-29 01:15:16 +0000 | [diff] [blame] | 1075 | (hw->adapter->pdev->device == E1000_DEV_ID_PCH_LPTLP_I218_V) || |
| 1076 | (hw->adapter->pdev->device == E1000_DEV_ID_PCH_I218_LM3) || |
| 1077 | (hw->adapter->pdev->device == E1000_DEV_ID_PCH_I218_V3)) { |
Bruce Allan | e08f626 | 2013-02-20 03:06:34 +0000 | [diff] [blame] | 1078 | ret_val = e1000_k1_workaround_lpt_lp(hw, link); |
| 1079 | if (ret_val) |
| 1080 | return ret_val; |
| 1081 | } |
| 1082 | |
Bruce Allan | cf8fb73 | 2013-03-06 09:03:02 +0000 | [diff] [blame] | 1083 | if (hw->mac.type == e1000_pch_lpt) { |
| 1084 | /* Set platform power management values for |
| 1085 | * Latency Tolerance Reporting (LTR) |
| 1086 | */ |
| 1087 | ret_val = e1000_platform_pm_pch_lpt(hw, link); |
| 1088 | if (ret_val) |
| 1089 | return ret_val; |
| 1090 | } |
| 1091 | |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 1092 | /* Clear link partner's EEE ability */ |
| 1093 | hw->dev_spec.ich8lan.eee_lp_ability = 0; |
| 1094 | |
Bruce Allan | 7d3cabb | 2009-07-01 13:29:08 +0000 | [diff] [blame] | 1095 | if (!link) |
Bruce Allan | e80bd1d | 2013-05-01 01:19:46 +0000 | [diff] [blame] | 1096 | return 0; /* No link detected */ |
Bruce Allan | 7d3cabb | 2009-07-01 13:29:08 +0000 | [diff] [blame] | 1097 | |
| 1098 | mac->get_link_status = false; |
| 1099 | |
Bruce Allan | 1d2101a7 | 2011-07-22 06:21:56 +0000 | [diff] [blame] | 1100 | switch (hw->mac.type) { |
| 1101 | case e1000_pch2lan: |
Bruce Allan | 831bd2e | 2010-09-22 17:16:18 +0000 | [diff] [blame] | 1102 | ret_val = e1000_k1_workaround_lv(hw); |
| 1103 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 1104 | return ret_val; |
Bruce Allan | 1d2101a7 | 2011-07-22 06:21:56 +0000 | [diff] [blame] | 1105 | /* fall-thru */ |
| 1106 | case e1000_pchlan: |
| 1107 | if (hw->phy.type == e1000_phy_82578) { |
| 1108 | ret_val = e1000_link_stall_workaround_hv(hw); |
| 1109 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 1110 | return ret_val; |
Bruce Allan | 1d2101a7 | 2011-07-22 06:21:56 +0000 | [diff] [blame] | 1111 | } |
| 1112 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 1113 | /* Workaround for PCHx parts in half-duplex: |
Bruce Allan | 1d2101a7 | 2011-07-22 06:21:56 +0000 | [diff] [blame] | 1114 | * Set the number of preambles removed from the packet |
| 1115 | * when it is passed from the PHY to the MAC to prevent |
| 1116 | * the MAC from misinterpreting the packet type. |
| 1117 | */ |
| 1118 | e1e_rphy(hw, HV_KMRN_FIFO_CTRLSTA, &phy_reg); |
| 1119 | phy_reg &= ~HV_KMRN_FIFO_CTRLSTA_PREAMBLE_MASK; |
| 1120 | |
| 1121 | if ((er32(STATUS) & E1000_STATUS_FD) != E1000_STATUS_FD) |
| 1122 | phy_reg |= (1 << HV_KMRN_FIFO_CTRLSTA_PREAMBLE_SHIFT); |
| 1123 | |
| 1124 | e1e_wphy(hw, HV_KMRN_FIFO_CTRLSTA, phy_reg); |
| 1125 | break; |
| 1126 | default: |
| 1127 | break; |
Bruce Allan | 831bd2e | 2010-09-22 17:16:18 +0000 | [diff] [blame] | 1128 | } |
| 1129 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 1130 | /* Check if there was DownShift, must be checked |
Bruce Allan | 7d3cabb | 2009-07-01 13:29:08 +0000 | [diff] [blame] | 1131 | * immediately after link-up |
| 1132 | */ |
| 1133 | e1000e_check_downshift(hw); |
| 1134 | |
Bruce Allan | e52997f | 2010-06-16 13:27:49 +0000 | [diff] [blame] | 1135 | /* Enable/Disable EEE after link up */ |
David Ertman | a03206e | 2014-01-24 23:07:48 +0000 | [diff] [blame] | 1136 | if (hw->phy.type > e1000_phy_82579) { |
| 1137 | ret_val = e1000_set_eee_pchlan(hw); |
| 1138 | if (ret_val) |
| 1139 | return ret_val; |
| 1140 | } |
Bruce Allan | e52997f | 2010-06-16 13:27:49 +0000 | [diff] [blame] | 1141 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 1142 | /* If we are forcing speed/duplex, then we simply return since |
Bruce Allan | 7d3cabb | 2009-07-01 13:29:08 +0000 | [diff] [blame] | 1143 | * we have already determined whether we have link or not. |
| 1144 | */ |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 1145 | if (!mac->autoneg) |
| 1146 | return -E1000_ERR_CONFIG; |
Bruce Allan | 7d3cabb | 2009-07-01 13:29:08 +0000 | [diff] [blame] | 1147 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 1148 | /* Auto-Neg is enabled. Auto Speed Detection takes care |
Bruce Allan | 7d3cabb | 2009-07-01 13:29:08 +0000 | [diff] [blame] | 1149 | * of MAC speed/duplex configuration. So we only need to |
| 1150 | * configure Collision Distance in the MAC. |
| 1151 | */ |
Bruce Allan | 57cde76 | 2012-02-22 09:02:58 +0000 | [diff] [blame] | 1152 | mac->ops.config_collision_dist(hw); |
Bruce Allan | 7d3cabb | 2009-07-01 13:29:08 +0000 | [diff] [blame] | 1153 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 1154 | /* Configure Flow Control now that Auto-Neg has completed. |
Bruce Allan | 7d3cabb | 2009-07-01 13:29:08 +0000 | [diff] [blame] | 1155 | * First, we need to restore the desired flow control |
| 1156 | * settings because we may have had to re-autoneg with a |
| 1157 | * different link partner. |
| 1158 | */ |
| 1159 | ret_val = e1000e_config_fc_after_link_up(hw); |
| 1160 | if (ret_val) |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1161 | e_dbg("Error configuring flow control\n"); |
Bruce Allan | 7d3cabb | 2009-07-01 13:29:08 +0000 | [diff] [blame] | 1162 | |
Bruce Allan | 7d3cabb | 2009-07-01 13:29:08 +0000 | [diff] [blame] | 1163 | return ret_val; |
| 1164 | } |
| 1165 | |
Jeff Kirsher | 69e3fd8 | 2008-04-02 13:48:18 -0700 | [diff] [blame] | 1166 | static s32 e1000_get_variants_ich8lan(struct e1000_adapter *adapter) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1167 | { |
| 1168 | struct e1000_hw *hw = &adapter->hw; |
| 1169 | s32 rc; |
| 1170 | |
Bruce Allan | ec34c17 | 2012-02-01 10:53:05 +0000 | [diff] [blame] | 1171 | rc = e1000_init_mac_params_ich8lan(hw); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1172 | if (rc) |
| 1173 | return rc; |
| 1174 | |
| 1175 | rc = e1000_init_nvm_params_ich8lan(hw); |
| 1176 | if (rc) |
| 1177 | return rc; |
| 1178 | |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 1179 | switch (hw->mac.type) { |
| 1180 | case e1000_ich8lan: |
| 1181 | case e1000_ich9lan: |
| 1182 | case e1000_ich10lan: |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 1183 | rc = e1000_init_phy_params_ich8lan(hw); |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 1184 | break; |
| 1185 | case e1000_pchlan: |
| 1186 | case e1000_pch2lan: |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 1187 | case e1000_pch_lpt: |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 1188 | rc = e1000_init_phy_params_pchlan(hw); |
| 1189 | break; |
| 1190 | default: |
| 1191 | break; |
| 1192 | } |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1193 | if (rc) |
| 1194 | return rc; |
| 1195 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 1196 | /* Disable Jumbo Frame support on parts with Intel 10/100 PHY or |
Bruce Allan | 23e4f06 | 2011-02-25 07:44:51 +0000 | [diff] [blame] | 1197 | * on parts with MACsec enabled in NVM (reflected in CTRL_EXT). |
| 1198 | */ |
| 1199 | if ((adapter->hw.phy.type == e1000_phy_ife) || |
| 1200 | ((adapter->hw.mac.type >= e1000_pch2lan) && |
| 1201 | (!(er32(CTRL_EXT) & E1000_CTRL_EXT_LSECCK)))) { |
Bruce Allan | 2adc55c | 2009-06-02 11:28:58 +0000 | [diff] [blame] | 1202 | adapter->flags &= ~FLAG_HAS_JUMBO_FRAMES; |
| 1203 | adapter->max_hw_frame_size = ETH_FRAME_LEN + ETH_FCS_LEN; |
Bruce Allan | dbf80dc | 2011-04-16 00:34:40 +0000 | [diff] [blame] | 1204 | |
| 1205 | hw->mac.ops.blink_led = NULL; |
Bruce Allan | 2adc55c | 2009-06-02 11:28:58 +0000 | [diff] [blame] | 1206 | } |
| 1207 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1208 | if ((adapter->hw.mac.type == e1000_ich8lan) && |
Bruce Allan | 462d599 | 2011-09-30 08:07:11 +0000 | [diff] [blame] | 1209 | (adapter->hw.phy.type != e1000_phy_ife)) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1210 | adapter->flags |= FLAG_LSC_GIG_SPEED_DROP; |
| 1211 | |
Bruce Allan | c6e7f51 | 2011-07-29 05:53:02 +0000 | [diff] [blame] | 1212 | /* Enable workaround for 82579 w/ ME enabled */ |
| 1213 | if ((adapter->hw.mac.type == e1000_pch2lan) && |
| 1214 | (er32(FWSM) & E1000_ICH_FWSM_FW_VALID)) |
| 1215 | adapter->flags2 |= FLAG2_PCIM2PCI_ARBITER_WA; |
| 1216 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1217 | return 0; |
| 1218 | } |
| 1219 | |
Thomas Gleixner | 717d438 | 2008-10-02 16:33:40 -0700 | [diff] [blame] | 1220 | static DEFINE_MUTEX(nvm_mutex); |
Thomas Gleixner | 717d438 | 2008-10-02 16:33:40 -0700 | [diff] [blame] | 1221 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1222 | /** |
Bruce Allan | ca15df5 | 2009-10-26 11:23:43 +0000 | [diff] [blame] | 1223 | * e1000_acquire_nvm_ich8lan - Acquire NVM mutex |
| 1224 | * @hw: pointer to the HW structure |
| 1225 | * |
| 1226 | * Acquires the mutex for performing NVM operations. |
| 1227 | **/ |
Bruce Allan | 8bb6286 | 2013-01-16 08:46:49 +0000 | [diff] [blame] | 1228 | static s32 e1000_acquire_nvm_ich8lan(struct e1000_hw __always_unused *hw) |
Bruce Allan | ca15df5 | 2009-10-26 11:23:43 +0000 | [diff] [blame] | 1229 | { |
| 1230 | mutex_lock(&nvm_mutex); |
| 1231 | |
| 1232 | return 0; |
| 1233 | } |
| 1234 | |
| 1235 | /** |
| 1236 | * e1000_release_nvm_ich8lan - Release NVM mutex |
| 1237 | * @hw: pointer to the HW structure |
| 1238 | * |
| 1239 | * Releases the mutex used while performing NVM operations. |
| 1240 | **/ |
Bruce Allan | 8bb6286 | 2013-01-16 08:46:49 +0000 | [diff] [blame] | 1241 | static void e1000_release_nvm_ich8lan(struct e1000_hw __always_unused *hw) |
Bruce Allan | ca15df5 | 2009-10-26 11:23:43 +0000 | [diff] [blame] | 1242 | { |
| 1243 | mutex_unlock(&nvm_mutex); |
Bruce Allan | ca15df5 | 2009-10-26 11:23:43 +0000 | [diff] [blame] | 1244 | } |
| 1245 | |
Bruce Allan | ca15df5 | 2009-10-26 11:23:43 +0000 | [diff] [blame] | 1246 | /** |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1247 | * e1000_acquire_swflag_ich8lan - Acquire software control flag |
| 1248 | * @hw: pointer to the HW structure |
| 1249 | * |
Bruce Allan | ca15df5 | 2009-10-26 11:23:43 +0000 | [diff] [blame] | 1250 | * Acquires the software control flag for performing PHY and select |
| 1251 | * MAC CSR accesses. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1252 | **/ |
| 1253 | static s32 e1000_acquire_swflag_ich8lan(struct e1000_hw *hw) |
| 1254 | { |
Bruce Allan | 373a88d | 2009-08-07 07:41:37 +0000 | [diff] [blame] | 1255 | u32 extcnf_ctrl, timeout = PHY_CFG_TIMEOUT; |
| 1256 | s32 ret_val = 0; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1257 | |
Bruce Allan | a90b412 | 2011-10-07 03:50:38 +0000 | [diff] [blame] | 1258 | if (test_and_set_bit(__E1000_ACCESS_SHARED_RESOURCE, |
| 1259 | &hw->adapter->state)) { |
Bruce Allan | 34c9ef8 | 2011-10-21 04:33:47 +0000 | [diff] [blame] | 1260 | e_dbg("contention for Phy access\n"); |
Bruce Allan | a90b412 | 2011-10-07 03:50:38 +0000 | [diff] [blame] | 1261 | return -E1000_ERR_PHY; |
| 1262 | } |
Thomas Gleixner | 717d438 | 2008-10-02 16:33:40 -0700 | [diff] [blame] | 1263 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1264 | while (timeout) { |
| 1265 | extcnf_ctrl = er32(EXTCNF_CTRL); |
Bruce Allan | 373a88d | 2009-08-07 07:41:37 +0000 | [diff] [blame] | 1266 | if (!(extcnf_ctrl & E1000_EXTCNF_CTRL_SWFLAG)) |
| 1267 | break; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1268 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1269 | mdelay(1); |
| 1270 | timeout--; |
| 1271 | } |
| 1272 | |
| 1273 | if (!timeout) { |
Bruce Allan | a90b412 | 2011-10-07 03:50:38 +0000 | [diff] [blame] | 1274 | e_dbg("SW has already locked the resource.\n"); |
Bruce Allan | 373a88d | 2009-08-07 07:41:37 +0000 | [diff] [blame] | 1275 | ret_val = -E1000_ERR_CONFIG; |
| 1276 | goto out; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1277 | } |
| 1278 | |
Bruce Allan | 53ac5a8 | 2009-10-26 11:23:06 +0000 | [diff] [blame] | 1279 | timeout = SW_FLAG_TIMEOUT; |
Bruce Allan | 373a88d | 2009-08-07 07:41:37 +0000 | [diff] [blame] | 1280 | |
| 1281 | extcnf_ctrl |= E1000_EXTCNF_CTRL_SWFLAG; |
| 1282 | ew32(EXTCNF_CTRL, extcnf_ctrl); |
| 1283 | |
| 1284 | while (timeout) { |
| 1285 | extcnf_ctrl = er32(EXTCNF_CTRL); |
| 1286 | if (extcnf_ctrl & E1000_EXTCNF_CTRL_SWFLAG) |
| 1287 | break; |
| 1288 | |
| 1289 | mdelay(1); |
| 1290 | timeout--; |
| 1291 | } |
| 1292 | |
| 1293 | if (!timeout) { |
Bruce Allan | 434f139 | 2011-12-16 00:46:54 +0000 | [diff] [blame] | 1294 | e_dbg("Failed to acquire the semaphore, FW or HW has it: FWSM=0x%8.8x EXTCNF_CTRL=0x%8.8x)\n", |
Bruce Allan | a90b412 | 2011-10-07 03:50:38 +0000 | [diff] [blame] | 1295 | er32(FWSM), extcnf_ctrl); |
Bruce Allan | 373a88d | 2009-08-07 07:41:37 +0000 | [diff] [blame] | 1296 | extcnf_ctrl &= ~E1000_EXTCNF_CTRL_SWFLAG; |
| 1297 | ew32(EXTCNF_CTRL, extcnf_ctrl); |
| 1298 | ret_val = -E1000_ERR_CONFIG; |
| 1299 | goto out; |
| 1300 | } |
| 1301 | |
| 1302 | out: |
| 1303 | if (ret_val) |
Bruce Allan | a90b412 | 2011-10-07 03:50:38 +0000 | [diff] [blame] | 1304 | clear_bit(__E1000_ACCESS_SHARED_RESOURCE, &hw->adapter->state); |
Bruce Allan | 373a88d | 2009-08-07 07:41:37 +0000 | [diff] [blame] | 1305 | |
| 1306 | return ret_val; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1307 | } |
| 1308 | |
| 1309 | /** |
| 1310 | * e1000_release_swflag_ich8lan - Release software control flag |
| 1311 | * @hw: pointer to the HW structure |
| 1312 | * |
Bruce Allan | ca15df5 | 2009-10-26 11:23:43 +0000 | [diff] [blame] | 1313 | * Releases the software control flag for performing PHY and select |
| 1314 | * MAC CSR accesses. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1315 | **/ |
| 1316 | static void e1000_release_swflag_ich8lan(struct e1000_hw *hw) |
| 1317 | { |
| 1318 | u32 extcnf_ctrl; |
| 1319 | |
| 1320 | extcnf_ctrl = er32(EXTCNF_CTRL); |
Bruce Allan | c5caf48 | 2011-05-13 07:19:53 +0000 | [diff] [blame] | 1321 | |
| 1322 | if (extcnf_ctrl & E1000_EXTCNF_CTRL_SWFLAG) { |
| 1323 | extcnf_ctrl &= ~E1000_EXTCNF_CTRL_SWFLAG; |
| 1324 | ew32(EXTCNF_CTRL, extcnf_ctrl); |
| 1325 | } else { |
| 1326 | e_dbg("Semaphore unexpectedly released by sw/fw/hw\n"); |
| 1327 | } |
Thomas Gleixner | 717d438 | 2008-10-02 16:33:40 -0700 | [diff] [blame] | 1328 | |
Bruce Allan | a90b412 | 2011-10-07 03:50:38 +0000 | [diff] [blame] | 1329 | clear_bit(__E1000_ACCESS_SHARED_RESOURCE, &hw->adapter->state); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1330 | } |
| 1331 | |
| 1332 | /** |
Bruce Allan | 4662e82 | 2008-08-26 18:37:06 -0700 | [diff] [blame] | 1333 | * e1000_check_mng_mode_ich8lan - Checks management mode |
| 1334 | * @hw: pointer to the HW structure |
| 1335 | * |
Bruce Allan | eb7700d | 2010-06-16 13:27:05 +0000 | [diff] [blame] | 1336 | * This checks if the adapter has any manageability enabled. |
Bruce Allan | 4662e82 | 2008-08-26 18:37:06 -0700 | [diff] [blame] | 1337 | * This is a function pointer entry point only called by read/write |
| 1338 | * routines for the PHY and NVM parts. |
| 1339 | **/ |
| 1340 | static bool e1000_check_mng_mode_ich8lan(struct e1000_hw *hw) |
| 1341 | { |
Bruce Allan | a708dd8 | 2009-11-20 23:28:37 +0000 | [diff] [blame] | 1342 | u32 fwsm; |
| 1343 | |
| 1344 | fwsm = er32(FWSM); |
Bruce Allan | f0ff439 | 2013-02-20 04:05:39 +0000 | [diff] [blame] | 1345 | return ((fwsm & E1000_ICH_FWSM_FW_VALID) && |
| 1346 | ((fwsm & E1000_FWSM_MODE_MASK) == |
| 1347 | (E1000_ICH_MNG_IAMT_MODE << E1000_FWSM_MODE_SHIFT))); |
Bruce Allan | eb7700d | 2010-06-16 13:27:05 +0000 | [diff] [blame] | 1348 | } |
Bruce Allan | 4662e82 | 2008-08-26 18:37:06 -0700 | [diff] [blame] | 1349 | |
Bruce Allan | eb7700d | 2010-06-16 13:27:05 +0000 | [diff] [blame] | 1350 | /** |
| 1351 | * e1000_check_mng_mode_pchlan - Checks management mode |
| 1352 | * @hw: pointer to the HW structure |
| 1353 | * |
| 1354 | * This checks if the adapter has iAMT enabled. |
| 1355 | * This is a function pointer entry point only called by read/write |
| 1356 | * routines for the PHY and NVM parts. |
| 1357 | **/ |
| 1358 | static bool e1000_check_mng_mode_pchlan(struct e1000_hw *hw) |
| 1359 | { |
| 1360 | u32 fwsm; |
| 1361 | |
| 1362 | fwsm = er32(FWSM); |
| 1363 | return (fwsm & E1000_ICH_FWSM_FW_VALID) && |
Bruce Allan | f0ff439 | 2013-02-20 04:05:39 +0000 | [diff] [blame] | 1364 | (fwsm & (E1000_ICH_MNG_IAMT_MODE << E1000_FWSM_MODE_SHIFT)); |
Bruce Allan | 4662e82 | 2008-08-26 18:37:06 -0700 | [diff] [blame] | 1365 | } |
| 1366 | |
| 1367 | /** |
Bruce Allan | 69e1e01 | 2012-04-14 03:28:50 +0000 | [diff] [blame] | 1368 | * e1000_rar_set_pch2lan - Set receive address register |
| 1369 | * @hw: pointer to the HW structure |
| 1370 | * @addr: pointer to the receive address |
| 1371 | * @index: receive address array register |
| 1372 | * |
| 1373 | * Sets the receive address array register at index to the address passed |
| 1374 | * in by addr. For 82579, RAR[0] is the base address register that is to |
| 1375 | * contain the MAC address but RAR[1-6] are reserved for manageability (ME). |
| 1376 | * Use SHRA[0-3] in place of those reserved for ME. |
| 1377 | **/ |
| 1378 | static void e1000_rar_set_pch2lan(struct e1000_hw *hw, u8 *addr, u32 index) |
| 1379 | { |
| 1380 | u32 rar_low, rar_high; |
| 1381 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 1382 | /* HW expects these in little endian so we reverse the byte order |
Bruce Allan | 69e1e01 | 2012-04-14 03:28:50 +0000 | [diff] [blame] | 1383 | * from network order (big endian) to little endian |
| 1384 | */ |
| 1385 | rar_low = ((u32)addr[0] | |
| 1386 | ((u32)addr[1] << 8) | |
| 1387 | ((u32)addr[2] << 16) | ((u32)addr[3] << 24)); |
| 1388 | |
| 1389 | rar_high = ((u32)addr[4] | ((u32)addr[5] << 8)); |
| 1390 | |
| 1391 | /* If MAC address zero, no need to set the AV bit */ |
| 1392 | if (rar_low || rar_high) |
| 1393 | rar_high |= E1000_RAH_AV; |
| 1394 | |
| 1395 | if (index == 0) { |
| 1396 | ew32(RAL(index), rar_low); |
| 1397 | e1e_flush(); |
| 1398 | ew32(RAH(index), rar_high); |
| 1399 | e1e_flush(); |
| 1400 | return; |
| 1401 | } |
| 1402 | |
David Ertman | c3a0dce | 2013-09-05 04:24:25 +0000 | [diff] [blame] | 1403 | /* RAR[1-6] are owned by manageability. Skip those and program the |
| 1404 | * next address into the SHRA register array. |
| 1405 | */ |
| 1406 | if (index < (u32)(hw->mac.rar_entry_count - 6)) { |
Bruce Allan | 69e1e01 | 2012-04-14 03:28:50 +0000 | [diff] [blame] | 1407 | s32 ret_val; |
| 1408 | |
| 1409 | ret_val = e1000_acquire_swflag_ich8lan(hw); |
| 1410 | if (ret_val) |
| 1411 | goto out; |
| 1412 | |
| 1413 | ew32(SHRAL(index - 1), rar_low); |
| 1414 | e1e_flush(); |
| 1415 | ew32(SHRAH(index - 1), rar_high); |
| 1416 | e1e_flush(); |
| 1417 | |
| 1418 | e1000_release_swflag_ich8lan(hw); |
| 1419 | |
| 1420 | /* verify the register updates */ |
| 1421 | if ((er32(SHRAL(index - 1)) == rar_low) && |
| 1422 | (er32(SHRAH(index - 1)) == rar_high)) |
| 1423 | return; |
| 1424 | |
| 1425 | e_dbg("SHRA[%d] might be locked by ME - FWSM=0x%8.8x\n", |
| 1426 | (index - 1), er32(FWSM)); |
| 1427 | } |
| 1428 | |
| 1429 | out: |
| 1430 | e_dbg("Failed to write receive address at index %d\n", index); |
| 1431 | } |
| 1432 | |
| 1433 | /** |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 1434 | * e1000_rar_set_pch_lpt - Set receive address registers |
| 1435 | * @hw: pointer to the HW structure |
| 1436 | * @addr: pointer to the receive address |
| 1437 | * @index: receive address array register |
| 1438 | * |
| 1439 | * Sets the receive address register array at index to the address passed |
| 1440 | * in by addr. For LPT, RAR[0] is the base address register that is to |
| 1441 | * contain the MAC address. SHRA[0-10] are the shared receive address |
| 1442 | * registers that are shared between the Host and manageability engine (ME). |
| 1443 | **/ |
| 1444 | static void e1000_rar_set_pch_lpt(struct e1000_hw *hw, u8 *addr, u32 index) |
| 1445 | { |
| 1446 | u32 rar_low, rar_high; |
| 1447 | u32 wlock_mac; |
| 1448 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 1449 | /* HW expects these in little endian so we reverse the byte order |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 1450 | * from network order (big endian) to little endian |
| 1451 | */ |
| 1452 | rar_low = ((u32)addr[0] | ((u32)addr[1] << 8) | |
| 1453 | ((u32)addr[2] << 16) | ((u32)addr[3] << 24)); |
| 1454 | |
| 1455 | rar_high = ((u32)addr[4] | ((u32)addr[5] << 8)); |
| 1456 | |
| 1457 | /* If MAC address zero, no need to set the AV bit */ |
| 1458 | if (rar_low || rar_high) |
| 1459 | rar_high |= E1000_RAH_AV; |
| 1460 | |
| 1461 | if (index == 0) { |
| 1462 | ew32(RAL(index), rar_low); |
| 1463 | e1e_flush(); |
| 1464 | ew32(RAH(index), rar_high); |
| 1465 | e1e_flush(); |
| 1466 | return; |
| 1467 | } |
| 1468 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 1469 | /* The manageability engine (ME) can lock certain SHRAR registers that |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 1470 | * it is using - those registers are unavailable for use. |
| 1471 | */ |
| 1472 | if (index < hw->mac.rar_entry_count) { |
| 1473 | wlock_mac = er32(FWSM) & E1000_FWSM_WLOCK_MAC_MASK; |
| 1474 | wlock_mac >>= E1000_FWSM_WLOCK_MAC_SHIFT; |
| 1475 | |
| 1476 | /* Check if all SHRAR registers are locked */ |
| 1477 | if (wlock_mac == 1) |
| 1478 | goto out; |
| 1479 | |
| 1480 | if ((wlock_mac == 0) || (index <= wlock_mac)) { |
| 1481 | s32 ret_val; |
| 1482 | |
| 1483 | ret_val = e1000_acquire_swflag_ich8lan(hw); |
| 1484 | |
| 1485 | if (ret_val) |
| 1486 | goto out; |
| 1487 | |
| 1488 | ew32(SHRAL_PCH_LPT(index - 1), rar_low); |
| 1489 | e1e_flush(); |
| 1490 | ew32(SHRAH_PCH_LPT(index - 1), rar_high); |
| 1491 | e1e_flush(); |
| 1492 | |
| 1493 | e1000_release_swflag_ich8lan(hw); |
| 1494 | |
| 1495 | /* verify the register updates */ |
| 1496 | if ((er32(SHRAL_PCH_LPT(index - 1)) == rar_low) && |
| 1497 | (er32(SHRAH_PCH_LPT(index - 1)) == rar_high)) |
| 1498 | return; |
| 1499 | } |
| 1500 | } |
| 1501 | |
| 1502 | out: |
| 1503 | e_dbg("Failed to write receive address at index %d\n", index); |
| 1504 | } |
| 1505 | |
| 1506 | /** |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1507 | * e1000_check_reset_block_ich8lan - Check if PHY reset is blocked |
| 1508 | * @hw: pointer to the HW structure |
| 1509 | * |
| 1510 | * Checks if firmware is blocking the reset of the PHY. |
| 1511 | * This is a function pointer entry point only called by |
| 1512 | * reset routines. |
| 1513 | **/ |
| 1514 | static s32 e1000_check_reset_block_ich8lan(struct e1000_hw *hw) |
| 1515 | { |
David Ertman | f7235ef | 2014-01-23 06:29:13 +0000 | [diff] [blame] | 1516 | bool blocked = false; |
| 1517 | int i = 0; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1518 | |
David Ertman | f7235ef | 2014-01-23 06:29:13 +0000 | [diff] [blame] | 1519 | while ((blocked = !(er32(FWSM) & E1000_ICH_FWSM_RSPCIPHY)) && |
| 1520 | (i++ < 10)) |
| 1521 | usleep_range(10000, 20000); |
| 1522 | return blocked ? E1000_BLK_PHY_RESET : 0; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1523 | } |
| 1524 | |
| 1525 | /** |
Bruce Allan | 8395ae8 | 2010-09-22 17:15:08 +0000 | [diff] [blame] | 1526 | * e1000_write_smbus_addr - Write SMBus address to PHY needed during Sx states |
| 1527 | * @hw: pointer to the HW structure |
| 1528 | * |
| 1529 | * Assumes semaphore already acquired. |
| 1530 | * |
| 1531 | **/ |
| 1532 | static s32 e1000_write_smbus_addr(struct e1000_hw *hw) |
| 1533 | { |
| 1534 | u16 phy_data; |
| 1535 | u32 strap = er32(STRAP); |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 1536 | u32 freq = (strap & E1000_STRAP_SMT_FREQ_MASK) >> |
| 1537 | E1000_STRAP_SMT_FREQ_SHIFT; |
Bruce Allan | 70806a7 | 2013-01-05 05:08:37 +0000 | [diff] [blame] | 1538 | s32 ret_val; |
Bruce Allan | 8395ae8 | 2010-09-22 17:15:08 +0000 | [diff] [blame] | 1539 | |
| 1540 | strap &= E1000_STRAP_SMBUS_ADDRESS_MASK; |
| 1541 | |
| 1542 | ret_val = e1000_read_phy_reg_hv_locked(hw, HV_SMB_ADDR, &phy_data); |
| 1543 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 1544 | return ret_val; |
Bruce Allan | 8395ae8 | 2010-09-22 17:15:08 +0000 | [diff] [blame] | 1545 | |
| 1546 | phy_data &= ~HV_SMB_ADDR_MASK; |
| 1547 | phy_data |= (strap >> E1000_STRAP_SMBUS_ADDRESS_SHIFT); |
| 1548 | phy_data |= HV_SMB_ADDR_PEC_EN | HV_SMB_ADDR_VALID; |
Bruce Allan | 8395ae8 | 2010-09-22 17:15:08 +0000 | [diff] [blame] | 1549 | |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 1550 | if (hw->phy.type == e1000_phy_i217) { |
| 1551 | /* Restore SMBus frequency */ |
| 1552 | if (freq--) { |
| 1553 | phy_data &= ~HV_SMB_ADDR_FREQ_MASK; |
| 1554 | phy_data |= (freq & (1 << 0)) << |
| 1555 | HV_SMB_ADDR_FREQ_LOW_SHIFT; |
| 1556 | phy_data |= (freq & (1 << 1)) << |
| 1557 | (HV_SMB_ADDR_FREQ_HIGH_SHIFT - 1); |
| 1558 | } else { |
| 1559 | e_dbg("Unsupported SMB frequency in PHY\n"); |
| 1560 | } |
| 1561 | } |
| 1562 | |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 1563 | return e1000_write_phy_reg_hv_locked(hw, HV_SMB_ADDR, phy_data); |
Bruce Allan | 8395ae8 | 2010-09-22 17:15:08 +0000 | [diff] [blame] | 1564 | } |
| 1565 | |
| 1566 | /** |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1567 | * e1000_sw_lcd_config_ich8lan - SW-based LCD Configuration |
| 1568 | * @hw: pointer to the HW structure |
| 1569 | * |
| 1570 | * SW should configure the LCD from the NVM extended configuration region |
| 1571 | * as a workaround for certain parts. |
| 1572 | **/ |
| 1573 | static s32 e1000_sw_lcd_config_ich8lan(struct e1000_hw *hw) |
| 1574 | { |
| 1575 | struct e1000_phy_info *phy = &hw->phy; |
| 1576 | u32 i, data, cnf_size, cnf_base_addr, sw_cfg_mask; |
Bruce Allan | 8b802a7 | 2010-05-10 15:01:10 +0000 | [diff] [blame] | 1577 | s32 ret_val = 0; |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1578 | u16 word_addr, reg_data, reg_addr, phy_page = 0; |
| 1579 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 1580 | /* Initialize the PHY from the NVM on ICH platforms. This |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1581 | * is needed due to an issue where the NVM configuration is |
| 1582 | * not properly autoloaded after power transitions. |
| 1583 | * Therefore, after each PHY reset, we will load the |
| 1584 | * configuration data out of the NVM manually. |
| 1585 | */ |
Bruce Allan | 3f0c16e | 2010-06-16 13:26:17 +0000 | [diff] [blame] | 1586 | switch (hw->mac.type) { |
| 1587 | case e1000_ich8lan: |
| 1588 | if (phy->type != e1000_phy_igp_3) |
| 1589 | return ret_val; |
| 1590 | |
Bruce Allan | 5f3eed6 | 2010-09-22 17:15:54 +0000 | [diff] [blame] | 1591 | if ((hw->adapter->pdev->device == E1000_DEV_ID_ICH8_IGP_AMT) || |
| 1592 | (hw->adapter->pdev->device == E1000_DEV_ID_ICH8_IGP_C)) { |
Bruce Allan | 3f0c16e | 2010-06-16 13:26:17 +0000 | [diff] [blame] | 1593 | sw_cfg_mask = E1000_FEXTNVM_SW_CONFIG; |
| 1594 | break; |
| 1595 | } |
| 1596 | /* Fall-thru */ |
| 1597 | case e1000_pchlan: |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 1598 | case e1000_pch2lan: |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 1599 | case e1000_pch_lpt: |
Bruce Allan | 8b802a7 | 2010-05-10 15:01:10 +0000 | [diff] [blame] | 1600 | sw_cfg_mask = E1000_FEXTNVM_SW_CONFIG_ICH8M; |
Bruce Allan | 3f0c16e | 2010-06-16 13:26:17 +0000 | [diff] [blame] | 1601 | break; |
| 1602 | default: |
| 1603 | return ret_val; |
| 1604 | } |
| 1605 | |
| 1606 | ret_val = hw->phy.ops.acquire(hw); |
| 1607 | if (ret_val) |
| 1608 | return ret_val; |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1609 | |
Bruce Allan | 8b802a7 | 2010-05-10 15:01:10 +0000 | [diff] [blame] | 1610 | data = er32(FEXTNVM); |
| 1611 | if (!(data & sw_cfg_mask)) |
Bruce Allan | 75ce153 | 2012-02-08 02:54:48 +0000 | [diff] [blame] | 1612 | goto release; |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1613 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 1614 | /* Make sure HW does not configure LCD from PHY |
Bruce Allan | 8b802a7 | 2010-05-10 15:01:10 +0000 | [diff] [blame] | 1615 | * extended configuration before SW configuration |
| 1616 | */ |
| 1617 | data = er32(EXTCNF_CTRL); |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 1618 | if ((hw->mac.type < e1000_pch2lan) && |
| 1619 | (data & E1000_EXTCNF_CTRL_LCD_WRITE_ENABLE)) |
| 1620 | goto release; |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1621 | |
Bruce Allan | 8b802a7 | 2010-05-10 15:01:10 +0000 | [diff] [blame] | 1622 | cnf_size = er32(EXTCNF_SIZE); |
| 1623 | cnf_size &= E1000_EXTCNF_SIZE_EXT_PCIE_LENGTH_MASK; |
| 1624 | cnf_size >>= E1000_EXTCNF_SIZE_EXT_PCIE_LENGTH_SHIFT; |
| 1625 | if (!cnf_size) |
Bruce Allan | 75ce153 | 2012-02-08 02:54:48 +0000 | [diff] [blame] | 1626 | goto release; |
Bruce Allan | 8b802a7 | 2010-05-10 15:01:10 +0000 | [diff] [blame] | 1627 | |
| 1628 | cnf_base_addr = data & E1000_EXTCNF_CTRL_EXT_CNF_POINTER_MASK; |
| 1629 | cnf_base_addr >>= E1000_EXTCNF_CTRL_EXT_CNF_POINTER_SHIFT; |
| 1630 | |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 1631 | if (((hw->mac.type == e1000_pchlan) && |
| 1632 | !(data & E1000_EXTCNF_CTRL_OEM_WRITE_ENABLE)) || |
| 1633 | (hw->mac.type > e1000_pchlan)) { |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 1634 | /* HW configures the SMBus address and LEDs when the |
Bruce Allan | 8b802a7 | 2010-05-10 15:01:10 +0000 | [diff] [blame] | 1635 | * OEM and LCD Write Enable bits are set in the NVM. |
| 1636 | * When both NVM bits are cleared, SW will configure |
| 1637 | * them instead. |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1638 | */ |
Bruce Allan | 8395ae8 | 2010-09-22 17:15:08 +0000 | [diff] [blame] | 1639 | ret_val = e1000_write_smbus_addr(hw); |
Bruce Allan | 8b802a7 | 2010-05-10 15:01:10 +0000 | [diff] [blame] | 1640 | if (ret_val) |
Bruce Allan | 75ce153 | 2012-02-08 02:54:48 +0000 | [diff] [blame] | 1641 | goto release; |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1642 | |
Bruce Allan | 8b802a7 | 2010-05-10 15:01:10 +0000 | [diff] [blame] | 1643 | data = er32(LEDCTL); |
| 1644 | ret_val = e1000_write_phy_reg_hv_locked(hw, HV_LED_CONFIG, |
| 1645 | (u16)data); |
| 1646 | if (ret_val) |
Bruce Allan | 75ce153 | 2012-02-08 02:54:48 +0000 | [diff] [blame] | 1647 | goto release; |
Bruce Allan | 8b802a7 | 2010-05-10 15:01:10 +0000 | [diff] [blame] | 1648 | } |
| 1649 | |
| 1650 | /* Configure LCD from extended configuration region. */ |
| 1651 | |
| 1652 | /* cnf_base_addr is in DWORD */ |
| 1653 | word_addr = (u16)(cnf_base_addr << 1); |
| 1654 | |
| 1655 | for (i = 0; i < cnf_size; i++) { |
Bruce Allan | e5fe254 | 2013-02-20 04:06:27 +0000 | [diff] [blame] | 1656 | ret_val = e1000_read_nvm(hw, (word_addr + i * 2), 1, ®_data); |
Bruce Allan | 8b802a7 | 2010-05-10 15:01:10 +0000 | [diff] [blame] | 1657 | if (ret_val) |
Bruce Allan | 75ce153 | 2012-02-08 02:54:48 +0000 | [diff] [blame] | 1658 | goto release; |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1659 | |
Bruce Allan | 8b802a7 | 2010-05-10 15:01:10 +0000 | [diff] [blame] | 1660 | ret_val = e1000_read_nvm(hw, (word_addr + i * 2 + 1), |
| 1661 | 1, ®_addr); |
| 1662 | if (ret_val) |
Bruce Allan | 75ce153 | 2012-02-08 02:54:48 +0000 | [diff] [blame] | 1663 | goto release; |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1664 | |
Bruce Allan | 8b802a7 | 2010-05-10 15:01:10 +0000 | [diff] [blame] | 1665 | /* Save off the PHY page for future writes. */ |
| 1666 | if (reg_addr == IGP01E1000_PHY_PAGE_SELECT) { |
| 1667 | phy_page = reg_data; |
| 1668 | continue; |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1669 | } |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1670 | |
Bruce Allan | 8b802a7 | 2010-05-10 15:01:10 +0000 | [diff] [blame] | 1671 | reg_addr &= PHY_REG_MASK; |
| 1672 | reg_addr |= phy_page; |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1673 | |
Bruce Allan | f1430d6 | 2012-04-14 04:21:52 +0000 | [diff] [blame] | 1674 | ret_val = e1e_wphy_locked(hw, (u32)reg_addr, reg_data); |
Bruce Allan | 8b802a7 | 2010-05-10 15:01:10 +0000 | [diff] [blame] | 1675 | if (ret_val) |
Bruce Allan | 75ce153 | 2012-02-08 02:54:48 +0000 | [diff] [blame] | 1676 | goto release; |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1677 | } |
| 1678 | |
Bruce Allan | 75ce153 | 2012-02-08 02:54:48 +0000 | [diff] [blame] | 1679 | release: |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 1680 | hw->phy.ops.release(hw); |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1681 | return ret_val; |
| 1682 | } |
| 1683 | |
| 1684 | /** |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1685 | * e1000_k1_gig_workaround_hv - K1 Si workaround |
| 1686 | * @hw: pointer to the HW structure |
| 1687 | * @link: link up bool flag |
| 1688 | * |
| 1689 | * If K1 is enabled for 1Gbps, the MAC might stall when transitioning |
| 1690 | * from a lower speed. This workaround disables K1 whenever link is at 1Gig |
| 1691 | * If link is down, the function will restore the default K1 setting located |
| 1692 | * in the NVM. |
| 1693 | **/ |
| 1694 | static s32 e1000_k1_gig_workaround_hv(struct e1000_hw *hw, bool link) |
| 1695 | { |
| 1696 | s32 ret_val = 0; |
| 1697 | u16 status_reg = 0; |
| 1698 | bool k1_enable = hw->dev_spec.ich8lan.nvm_k1_enabled; |
| 1699 | |
| 1700 | if (hw->mac.type != e1000_pchlan) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 1701 | return 0; |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1702 | |
| 1703 | /* Wrap the whole flow with the sw flag */ |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 1704 | ret_val = hw->phy.ops.acquire(hw); |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1705 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 1706 | return ret_val; |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1707 | |
| 1708 | /* Disable K1 when link is 1Gbps, otherwise use the NVM setting */ |
| 1709 | if (link) { |
| 1710 | if (hw->phy.type == e1000_phy_82578) { |
Bruce Allan | f1430d6 | 2012-04-14 04:21:52 +0000 | [diff] [blame] | 1711 | ret_val = e1e_rphy_locked(hw, BM_CS_STATUS, |
| 1712 | &status_reg); |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1713 | if (ret_val) |
| 1714 | goto release; |
| 1715 | |
Bruce Allan | f0ff439 | 2013-02-20 04:05:39 +0000 | [diff] [blame] | 1716 | status_reg &= (BM_CS_STATUS_LINK_UP | |
| 1717 | BM_CS_STATUS_RESOLVED | |
| 1718 | BM_CS_STATUS_SPEED_MASK); |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1719 | |
| 1720 | if (status_reg == (BM_CS_STATUS_LINK_UP | |
Bruce Allan | f0ff439 | 2013-02-20 04:05:39 +0000 | [diff] [blame] | 1721 | BM_CS_STATUS_RESOLVED | |
| 1722 | BM_CS_STATUS_SPEED_1000)) |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1723 | k1_enable = false; |
| 1724 | } |
| 1725 | |
| 1726 | if (hw->phy.type == e1000_phy_82577) { |
Bruce Allan | f1430d6 | 2012-04-14 04:21:52 +0000 | [diff] [blame] | 1727 | ret_val = e1e_rphy_locked(hw, HV_M_STATUS, &status_reg); |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1728 | if (ret_val) |
| 1729 | goto release; |
| 1730 | |
Bruce Allan | f0ff439 | 2013-02-20 04:05:39 +0000 | [diff] [blame] | 1731 | status_reg &= (HV_M_STATUS_LINK_UP | |
| 1732 | HV_M_STATUS_AUTONEG_COMPLETE | |
| 1733 | HV_M_STATUS_SPEED_MASK); |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1734 | |
| 1735 | if (status_reg == (HV_M_STATUS_LINK_UP | |
Bruce Allan | f0ff439 | 2013-02-20 04:05:39 +0000 | [diff] [blame] | 1736 | HV_M_STATUS_AUTONEG_COMPLETE | |
| 1737 | HV_M_STATUS_SPEED_1000)) |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1738 | k1_enable = false; |
| 1739 | } |
| 1740 | |
| 1741 | /* Link stall fix for link up */ |
Bruce Allan | f1430d6 | 2012-04-14 04:21:52 +0000 | [diff] [blame] | 1742 | ret_val = e1e_wphy_locked(hw, PHY_REG(770, 19), 0x0100); |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1743 | if (ret_val) |
| 1744 | goto release; |
| 1745 | |
| 1746 | } else { |
| 1747 | /* Link stall fix for link down */ |
Bruce Allan | f1430d6 | 2012-04-14 04:21:52 +0000 | [diff] [blame] | 1748 | ret_val = e1e_wphy_locked(hw, PHY_REG(770, 19), 0x4100); |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1749 | if (ret_val) |
| 1750 | goto release; |
| 1751 | } |
| 1752 | |
| 1753 | ret_val = e1000_configure_k1_ich8lan(hw, k1_enable); |
| 1754 | |
| 1755 | release: |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 1756 | hw->phy.ops.release(hw); |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 1757 | |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1758 | return ret_val; |
| 1759 | } |
| 1760 | |
| 1761 | /** |
| 1762 | * e1000_configure_k1_ich8lan - Configure K1 power state |
| 1763 | * @hw: pointer to the HW structure |
| 1764 | * @enable: K1 state to configure |
| 1765 | * |
| 1766 | * Configure the K1 power state based on the provided parameter. |
| 1767 | * Assumes semaphore already acquired. |
| 1768 | * |
| 1769 | * Success returns 0, Failure returns -E1000_ERR_PHY (-2) |
| 1770 | **/ |
Bruce Allan | bb436b2 | 2009-11-20 23:24:11 +0000 | [diff] [blame] | 1771 | s32 e1000_configure_k1_ich8lan(struct e1000_hw *hw, bool k1_enable) |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1772 | { |
Bruce Allan | 70806a7 | 2013-01-05 05:08:37 +0000 | [diff] [blame] | 1773 | s32 ret_val; |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1774 | u32 ctrl_reg = 0; |
| 1775 | u32 ctrl_ext = 0; |
| 1776 | u32 reg = 0; |
| 1777 | u16 kmrn_reg = 0; |
| 1778 | |
Bruce Allan | 3d3a167 | 2012-02-23 03:13:18 +0000 | [diff] [blame] | 1779 | ret_val = e1000e_read_kmrn_reg_locked(hw, E1000_KMRNCTRLSTA_K1_CONFIG, |
| 1780 | &kmrn_reg); |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1781 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 1782 | return ret_val; |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1783 | |
| 1784 | if (k1_enable) |
| 1785 | kmrn_reg |= E1000_KMRNCTRLSTA_K1_ENABLE; |
| 1786 | else |
| 1787 | kmrn_reg &= ~E1000_KMRNCTRLSTA_K1_ENABLE; |
| 1788 | |
Bruce Allan | 3d3a167 | 2012-02-23 03:13:18 +0000 | [diff] [blame] | 1789 | ret_val = e1000e_write_kmrn_reg_locked(hw, E1000_KMRNCTRLSTA_K1_CONFIG, |
| 1790 | kmrn_reg); |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1791 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 1792 | return ret_val; |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1793 | |
Bruce Allan | ce43a21 | 2013-02-20 04:06:32 +0000 | [diff] [blame] | 1794 | usleep_range(20, 40); |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1795 | ctrl_ext = er32(CTRL_EXT); |
| 1796 | ctrl_reg = er32(CTRL); |
| 1797 | |
| 1798 | reg = ctrl_reg & ~(E1000_CTRL_SPD_1000 | E1000_CTRL_SPD_100); |
| 1799 | reg |= E1000_CTRL_FRCSPD; |
| 1800 | ew32(CTRL, reg); |
| 1801 | |
| 1802 | ew32(CTRL_EXT, ctrl_ext | E1000_CTRL_EXT_SPD_BYPS); |
Jesse Brandeburg | 945a515 | 2011-07-20 00:56:21 +0000 | [diff] [blame] | 1803 | e1e_flush(); |
Bruce Allan | ce43a21 | 2013-02-20 04:06:32 +0000 | [diff] [blame] | 1804 | usleep_range(20, 40); |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1805 | ew32(CTRL, ctrl_reg); |
| 1806 | ew32(CTRL_EXT, ctrl_ext); |
Jesse Brandeburg | 945a515 | 2011-07-20 00:56:21 +0000 | [diff] [blame] | 1807 | e1e_flush(); |
Bruce Allan | ce43a21 | 2013-02-20 04:06:32 +0000 | [diff] [blame] | 1808 | usleep_range(20, 40); |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1809 | |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 1810 | return 0; |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1811 | } |
| 1812 | |
| 1813 | /** |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1814 | * e1000_oem_bits_config_ich8lan - SW-based LCD Configuration |
| 1815 | * @hw: pointer to the HW structure |
| 1816 | * @d0_state: boolean if entering d0 or d3 device state |
| 1817 | * |
| 1818 | * SW will configure Gbe Disable and LPLU based on the NVM. The four bits are |
| 1819 | * collectively called OEM bits. The OEM Write Enable bit and SW Config bit |
| 1820 | * in NVM determines whether HW should configure LPLU and Gbe Disable. |
| 1821 | **/ |
| 1822 | static s32 e1000_oem_bits_config_ich8lan(struct e1000_hw *hw, bool d0_state) |
| 1823 | { |
| 1824 | s32 ret_val = 0; |
| 1825 | u32 mac_reg; |
| 1826 | u16 oem_reg; |
| 1827 | |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 1828 | if (hw->mac.type < e1000_pchlan) |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1829 | return ret_val; |
| 1830 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 1831 | ret_val = hw->phy.ops.acquire(hw); |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1832 | if (ret_val) |
| 1833 | return ret_val; |
| 1834 | |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 1835 | if (hw->mac.type == e1000_pchlan) { |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 1836 | mac_reg = er32(EXTCNF_CTRL); |
| 1837 | if (mac_reg & E1000_EXTCNF_CTRL_OEM_WRITE_ENABLE) |
Bruce Allan | 75ce153 | 2012-02-08 02:54:48 +0000 | [diff] [blame] | 1838 | goto release; |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 1839 | } |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1840 | |
| 1841 | mac_reg = er32(FEXTNVM); |
| 1842 | if (!(mac_reg & E1000_FEXTNVM_SW_CONFIG_ICH8M)) |
Bruce Allan | 75ce153 | 2012-02-08 02:54:48 +0000 | [diff] [blame] | 1843 | goto release; |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1844 | |
| 1845 | mac_reg = er32(PHY_CTRL); |
| 1846 | |
Bruce Allan | f1430d6 | 2012-04-14 04:21:52 +0000 | [diff] [blame] | 1847 | ret_val = e1e_rphy_locked(hw, HV_OEM_BITS, &oem_reg); |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1848 | if (ret_val) |
Bruce Allan | 75ce153 | 2012-02-08 02:54:48 +0000 | [diff] [blame] | 1849 | goto release; |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1850 | |
| 1851 | oem_reg &= ~(HV_OEM_BITS_GBE_DIS | HV_OEM_BITS_LPLU); |
| 1852 | |
| 1853 | if (d0_state) { |
| 1854 | if (mac_reg & E1000_PHY_CTRL_GBE_DISABLE) |
| 1855 | oem_reg |= HV_OEM_BITS_GBE_DIS; |
| 1856 | |
| 1857 | if (mac_reg & E1000_PHY_CTRL_D0A_LPLU) |
| 1858 | oem_reg |= HV_OEM_BITS_LPLU; |
| 1859 | } else { |
Bruce Allan | 03299e4 | 2011-09-30 08:07:05 +0000 | [diff] [blame] | 1860 | if (mac_reg & (E1000_PHY_CTRL_GBE_DISABLE | |
| 1861 | E1000_PHY_CTRL_NOND0A_GBE_DISABLE)) |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1862 | oem_reg |= HV_OEM_BITS_GBE_DIS; |
| 1863 | |
Bruce Allan | 03299e4 | 2011-09-30 08:07:05 +0000 | [diff] [blame] | 1864 | if (mac_reg & (E1000_PHY_CTRL_D0A_LPLU | |
| 1865 | E1000_PHY_CTRL_NOND0A_LPLU)) |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1866 | oem_reg |= HV_OEM_BITS_LPLU; |
| 1867 | } |
Bruce Allan | 03299e4 | 2011-09-30 08:07:05 +0000 | [diff] [blame] | 1868 | |
Bruce Allan | 92fe173 | 2012-04-12 06:27:03 +0000 | [diff] [blame] | 1869 | /* Set Restart auto-neg to activate the bits */ |
| 1870 | if ((d0_state || (hw->mac.type != e1000_pchlan)) && |
| 1871 | !hw->phy.ops.check_reset_block(hw)) |
| 1872 | oem_reg |= HV_OEM_BITS_RESTART_AN; |
| 1873 | |
Bruce Allan | f1430d6 | 2012-04-14 04:21:52 +0000 | [diff] [blame] | 1874 | ret_val = e1e_wphy_locked(hw, HV_OEM_BITS, oem_reg); |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1875 | |
Bruce Allan | 75ce153 | 2012-02-08 02:54:48 +0000 | [diff] [blame] | 1876 | release: |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 1877 | hw->phy.ops.release(hw); |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1878 | |
| 1879 | return ret_val; |
| 1880 | } |
| 1881 | |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1882 | /** |
Bruce Allan | fddaa1a | 2010-01-13 01:52:49 +0000 | [diff] [blame] | 1883 | * e1000_set_mdio_slow_mode_hv - Set slow MDIO access mode |
| 1884 | * @hw: pointer to the HW structure |
| 1885 | **/ |
| 1886 | static s32 e1000_set_mdio_slow_mode_hv(struct e1000_hw *hw) |
| 1887 | { |
| 1888 | s32 ret_val; |
| 1889 | u16 data; |
| 1890 | |
| 1891 | ret_val = e1e_rphy(hw, HV_KMRN_MODE_CTRL, &data); |
| 1892 | if (ret_val) |
| 1893 | return ret_val; |
| 1894 | |
| 1895 | data |= HV_KMRN_MDIO_SLOW; |
| 1896 | |
| 1897 | ret_val = e1e_wphy(hw, HV_KMRN_MODE_CTRL, data); |
| 1898 | |
| 1899 | return ret_val; |
| 1900 | } |
| 1901 | |
| 1902 | /** |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 1903 | * e1000_hv_phy_workarounds_ich8lan - A series of Phy workarounds to be |
| 1904 | * done after every PHY reset. |
| 1905 | **/ |
| 1906 | static s32 e1000_hv_phy_workarounds_ich8lan(struct e1000_hw *hw) |
| 1907 | { |
| 1908 | s32 ret_val = 0; |
Bruce Allan | baf86c9 | 2010-01-13 01:53:08 +0000 | [diff] [blame] | 1909 | u16 phy_data; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 1910 | |
| 1911 | if (hw->mac.type != e1000_pchlan) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 1912 | return 0; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 1913 | |
Bruce Allan | fddaa1a | 2010-01-13 01:52:49 +0000 | [diff] [blame] | 1914 | /* Set MDIO slow mode before any other MDIO access */ |
| 1915 | if (hw->phy.type == e1000_phy_82577) { |
| 1916 | ret_val = e1000_set_mdio_slow_mode_hv(hw); |
| 1917 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 1918 | return ret_val; |
Bruce Allan | fddaa1a | 2010-01-13 01:52:49 +0000 | [diff] [blame] | 1919 | } |
| 1920 | |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 1921 | if (((hw->phy.type == e1000_phy_82577) && |
| 1922 | ((hw->phy.revision == 1) || (hw->phy.revision == 2))) || |
| 1923 | ((hw->phy.type == e1000_phy_82578) && (hw->phy.revision == 1))) { |
| 1924 | /* Disable generation of early preamble */ |
| 1925 | ret_val = e1e_wphy(hw, PHY_REG(769, 25), 0x4431); |
| 1926 | if (ret_val) |
| 1927 | return ret_val; |
| 1928 | |
| 1929 | /* Preamble tuning for SSC */ |
Bruce Allan | 1d2101a7 | 2011-07-22 06:21:56 +0000 | [diff] [blame] | 1930 | ret_val = e1e_wphy(hw, HV_KMRN_FIFO_CTRLSTA, 0xA204); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 1931 | if (ret_val) |
| 1932 | return ret_val; |
| 1933 | } |
| 1934 | |
| 1935 | if (hw->phy.type == e1000_phy_82578) { |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 1936 | /* Return registers to default by doing a soft reset then |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 1937 | * writing 0x3140 to the control register. |
| 1938 | */ |
| 1939 | if (hw->phy.revision < 2) { |
| 1940 | e1000e_phy_sw_reset(hw); |
Bruce Allan | c2ade1a | 2013-01-16 08:54:35 +0000 | [diff] [blame] | 1941 | ret_val = e1e_wphy(hw, MII_BMCR, 0x3140); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 1942 | } |
| 1943 | } |
| 1944 | |
| 1945 | /* Select page 0 */ |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 1946 | ret_val = hw->phy.ops.acquire(hw); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 1947 | if (ret_val) |
| 1948 | return ret_val; |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1949 | |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 1950 | hw->phy.addr = 1; |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1951 | ret_val = e1000e_write_phy_reg_mdic(hw, IGP01E1000_PHY_PAGE_SELECT, 0); |
Bruce Allan | baf86c9 | 2010-01-13 01:53:08 +0000 | [diff] [blame] | 1952 | hw->phy.ops.release(hw); |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1953 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 1954 | return ret_val; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 1955 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 1956 | /* Configure the K1 Si workaround during phy reset assuming there is |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1957 | * link so that it disables K1 if link is in 1Gbps. |
| 1958 | */ |
| 1959 | ret_val = e1000_k1_gig_workaround_hv(hw, true); |
Bruce Allan | baf86c9 | 2010-01-13 01:53:08 +0000 | [diff] [blame] | 1960 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 1961 | return ret_val; |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1962 | |
Bruce Allan | baf86c9 | 2010-01-13 01:53:08 +0000 | [diff] [blame] | 1963 | /* Workaround for link disconnects on a busy hub in half duplex */ |
| 1964 | ret_val = hw->phy.ops.acquire(hw); |
| 1965 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 1966 | return ret_val; |
Bruce Allan | f1430d6 | 2012-04-14 04:21:52 +0000 | [diff] [blame] | 1967 | ret_val = e1e_rphy_locked(hw, BM_PORT_GEN_CFG, &phy_data); |
Bruce Allan | baf86c9 | 2010-01-13 01:53:08 +0000 | [diff] [blame] | 1968 | if (ret_val) |
| 1969 | goto release; |
Bruce Allan | f1430d6 | 2012-04-14 04:21:52 +0000 | [diff] [blame] | 1970 | ret_val = e1e_wphy_locked(hw, BM_PORT_GEN_CFG, phy_data & 0x00FF); |
Bruce Allan | 651fb10 | 2012-12-05 06:26:03 +0000 | [diff] [blame] | 1971 | if (ret_val) |
| 1972 | goto release; |
| 1973 | |
| 1974 | /* set MSE higher to enable link to stay up when noise is high */ |
| 1975 | ret_val = e1000_write_emi_reg_locked(hw, I82577_MSE_THRESHOLD, 0x0034); |
Bruce Allan | baf86c9 | 2010-01-13 01:53:08 +0000 | [diff] [blame] | 1976 | release: |
| 1977 | hw->phy.ops.release(hw); |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 1978 | |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 1979 | return ret_val; |
| 1980 | } |
| 1981 | |
| 1982 | /** |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 1983 | * e1000_copy_rx_addrs_to_phy_ich8lan - Copy Rx addresses from MAC to PHY |
| 1984 | * @hw: pointer to the HW structure |
| 1985 | **/ |
| 1986 | void e1000_copy_rx_addrs_to_phy_ich8lan(struct e1000_hw *hw) |
| 1987 | { |
| 1988 | u32 mac_reg; |
Bruce Allan | 2b6b168 | 2011-05-13 07:20:09 +0000 | [diff] [blame] | 1989 | u16 i, phy_reg = 0; |
| 1990 | s32 ret_val; |
| 1991 | |
| 1992 | ret_val = hw->phy.ops.acquire(hw); |
| 1993 | if (ret_val) |
| 1994 | return; |
| 1995 | ret_val = e1000_enable_phy_wakeup_reg_access_bm(hw, &phy_reg); |
| 1996 | if (ret_val) |
| 1997 | goto release; |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 1998 | |
David Ertman | c3a0dce | 2013-09-05 04:24:25 +0000 | [diff] [blame] | 1999 | /* Copy both RAL/H (rar_entry_count) and SHRAL/H to PHY */ |
| 2000 | for (i = 0; i < (hw->mac.rar_entry_count); i++) { |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2001 | mac_reg = er32(RAL(i)); |
Bruce Allan | 2b6b168 | 2011-05-13 07:20:09 +0000 | [diff] [blame] | 2002 | hw->phy.ops.write_reg_page(hw, BM_RAR_L(i), |
| 2003 | (u16)(mac_reg & 0xFFFF)); |
| 2004 | hw->phy.ops.write_reg_page(hw, BM_RAR_M(i), |
| 2005 | (u16)((mac_reg >> 16) & 0xFFFF)); |
| 2006 | |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2007 | mac_reg = er32(RAH(i)); |
Bruce Allan | 2b6b168 | 2011-05-13 07:20:09 +0000 | [diff] [blame] | 2008 | hw->phy.ops.write_reg_page(hw, BM_RAR_H(i), |
| 2009 | (u16)(mac_reg & 0xFFFF)); |
| 2010 | hw->phy.ops.write_reg_page(hw, BM_RAR_CTRL(i), |
| 2011 | (u16)((mac_reg & E1000_RAH_AV) |
| 2012 | >> 16)); |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2013 | } |
Bruce Allan | 2b6b168 | 2011-05-13 07:20:09 +0000 | [diff] [blame] | 2014 | |
| 2015 | e1000_disable_phy_wakeup_reg_access_bm(hw, &phy_reg); |
| 2016 | |
| 2017 | release: |
| 2018 | hw->phy.ops.release(hw); |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2019 | } |
| 2020 | |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2021 | /** |
| 2022 | * e1000_lv_jumbo_workaround_ich8lan - required for jumbo frame operation |
| 2023 | * with 82579 PHY |
| 2024 | * @hw: pointer to the HW structure |
| 2025 | * @enable: flag to enable/disable workaround when enabling/disabling jumbos |
| 2026 | **/ |
| 2027 | s32 e1000_lv_jumbo_workaround_ich8lan(struct e1000_hw *hw, bool enable) |
| 2028 | { |
| 2029 | s32 ret_val = 0; |
| 2030 | u16 phy_reg, data; |
| 2031 | u32 mac_reg; |
| 2032 | u16 i; |
| 2033 | |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 2034 | if (hw->mac.type < e1000_pch2lan) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 2035 | return 0; |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2036 | |
| 2037 | /* disable Rx path while enabling/disabling workaround */ |
| 2038 | e1e_rphy(hw, PHY_REG(769, 20), &phy_reg); |
| 2039 | ret_val = e1e_wphy(hw, PHY_REG(769, 20), phy_reg | (1 << 14)); |
| 2040 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 2041 | return ret_val; |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2042 | |
| 2043 | if (enable) { |
David Ertman | c3a0dce | 2013-09-05 04:24:25 +0000 | [diff] [blame] | 2044 | /* Write Rx addresses (rar_entry_count for RAL/H, and |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2045 | * SHRAL/H) and initial CRC values to the MAC |
| 2046 | */ |
David Ertman | c3a0dce | 2013-09-05 04:24:25 +0000 | [diff] [blame] | 2047 | for (i = 0; i < hw->mac.rar_entry_count; i++) { |
Bruce Allan | 362e20c | 2013-02-20 04:05:45 +0000 | [diff] [blame] | 2048 | u8 mac_addr[ETH_ALEN] = { 0 }; |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2049 | u32 addr_high, addr_low; |
| 2050 | |
| 2051 | addr_high = er32(RAH(i)); |
| 2052 | if (!(addr_high & E1000_RAH_AV)) |
| 2053 | continue; |
| 2054 | addr_low = er32(RAL(i)); |
| 2055 | mac_addr[0] = (addr_low & 0xFF); |
| 2056 | mac_addr[1] = ((addr_low >> 8) & 0xFF); |
| 2057 | mac_addr[2] = ((addr_low >> 16) & 0xFF); |
| 2058 | mac_addr[3] = ((addr_low >> 24) & 0xFF); |
| 2059 | mac_addr[4] = (addr_high & 0xFF); |
| 2060 | mac_addr[5] = ((addr_high >> 8) & 0xFF); |
| 2061 | |
Bruce Allan | fe46f58 | 2011-01-06 14:29:51 +0000 | [diff] [blame] | 2062 | ew32(PCH_RAICC(i), ~ether_crc_le(ETH_ALEN, mac_addr)); |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2063 | } |
| 2064 | |
| 2065 | /* Write Rx addresses to the PHY */ |
| 2066 | e1000_copy_rx_addrs_to_phy_ich8lan(hw); |
| 2067 | |
| 2068 | /* Enable jumbo frame workaround in the MAC */ |
| 2069 | mac_reg = er32(FFLT_DBG); |
| 2070 | mac_reg &= ~(1 << 14); |
| 2071 | mac_reg |= (7 << 15); |
| 2072 | ew32(FFLT_DBG, mac_reg); |
| 2073 | |
| 2074 | mac_reg = er32(RCTL); |
| 2075 | mac_reg |= E1000_RCTL_SECRC; |
| 2076 | ew32(RCTL, mac_reg); |
| 2077 | |
| 2078 | ret_val = e1000e_read_kmrn_reg(hw, |
Bruce Allan | 17e813e | 2013-02-20 04:06:01 +0000 | [diff] [blame] | 2079 | E1000_KMRNCTRLSTA_CTRL_OFFSET, |
| 2080 | &data); |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2081 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 2082 | return ret_val; |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2083 | ret_val = e1000e_write_kmrn_reg(hw, |
| 2084 | E1000_KMRNCTRLSTA_CTRL_OFFSET, |
| 2085 | data | (1 << 0)); |
| 2086 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 2087 | return ret_val; |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2088 | ret_val = e1000e_read_kmrn_reg(hw, |
Bruce Allan | 17e813e | 2013-02-20 04:06:01 +0000 | [diff] [blame] | 2089 | E1000_KMRNCTRLSTA_HD_CTRL, |
| 2090 | &data); |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2091 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 2092 | return ret_val; |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2093 | data &= ~(0xF << 8); |
| 2094 | data |= (0xB << 8); |
| 2095 | ret_val = e1000e_write_kmrn_reg(hw, |
| 2096 | E1000_KMRNCTRLSTA_HD_CTRL, |
| 2097 | data); |
| 2098 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 2099 | return ret_val; |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2100 | |
| 2101 | /* Enable jumbo frame workaround in the PHY */ |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2102 | e1e_rphy(hw, PHY_REG(769, 23), &data); |
| 2103 | data &= ~(0x7F << 5); |
| 2104 | data |= (0x37 << 5); |
| 2105 | ret_val = e1e_wphy(hw, PHY_REG(769, 23), data); |
| 2106 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 2107 | return ret_val; |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2108 | e1e_rphy(hw, PHY_REG(769, 16), &data); |
| 2109 | data &= ~(1 << 13); |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2110 | ret_val = e1e_wphy(hw, PHY_REG(769, 16), data); |
| 2111 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 2112 | return ret_val; |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2113 | e1e_rphy(hw, PHY_REG(776, 20), &data); |
| 2114 | data &= ~(0x3FF << 2); |
| 2115 | data |= (0x1A << 2); |
| 2116 | ret_val = e1e_wphy(hw, PHY_REG(776, 20), data); |
| 2117 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 2118 | return ret_val; |
Bruce Allan | b64e9dd | 2011-09-30 08:07:00 +0000 | [diff] [blame] | 2119 | ret_val = e1e_wphy(hw, PHY_REG(776, 23), 0xF100); |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2120 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 2121 | return ret_val; |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2122 | e1e_rphy(hw, HV_PM_CTRL, &data); |
| 2123 | ret_val = e1e_wphy(hw, HV_PM_CTRL, data | (1 << 10)); |
| 2124 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 2125 | return ret_val; |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2126 | } else { |
| 2127 | /* Write MAC register values back to h/w defaults */ |
| 2128 | mac_reg = er32(FFLT_DBG); |
| 2129 | mac_reg &= ~(0xF << 14); |
| 2130 | ew32(FFLT_DBG, mac_reg); |
| 2131 | |
| 2132 | mac_reg = er32(RCTL); |
| 2133 | mac_reg &= ~E1000_RCTL_SECRC; |
Bruce Allan | a1ce647 | 2010-09-22 17:16:40 +0000 | [diff] [blame] | 2134 | ew32(RCTL, mac_reg); |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2135 | |
| 2136 | ret_val = e1000e_read_kmrn_reg(hw, |
Bruce Allan | 17e813e | 2013-02-20 04:06:01 +0000 | [diff] [blame] | 2137 | E1000_KMRNCTRLSTA_CTRL_OFFSET, |
| 2138 | &data); |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2139 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 2140 | return ret_val; |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2141 | ret_val = e1000e_write_kmrn_reg(hw, |
| 2142 | E1000_KMRNCTRLSTA_CTRL_OFFSET, |
| 2143 | data & ~(1 << 0)); |
| 2144 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 2145 | return ret_val; |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2146 | ret_val = e1000e_read_kmrn_reg(hw, |
Bruce Allan | 17e813e | 2013-02-20 04:06:01 +0000 | [diff] [blame] | 2147 | E1000_KMRNCTRLSTA_HD_CTRL, |
| 2148 | &data); |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2149 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 2150 | return ret_val; |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2151 | data &= ~(0xF << 8); |
| 2152 | data |= (0xB << 8); |
| 2153 | ret_val = e1000e_write_kmrn_reg(hw, |
| 2154 | E1000_KMRNCTRLSTA_HD_CTRL, |
| 2155 | data); |
| 2156 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 2157 | return ret_val; |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2158 | |
| 2159 | /* Write PHY register values back to h/w defaults */ |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2160 | e1e_rphy(hw, PHY_REG(769, 23), &data); |
| 2161 | data &= ~(0x7F << 5); |
| 2162 | ret_val = e1e_wphy(hw, PHY_REG(769, 23), data); |
| 2163 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 2164 | return ret_val; |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2165 | e1e_rphy(hw, PHY_REG(769, 16), &data); |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2166 | data |= (1 << 13); |
| 2167 | ret_val = e1e_wphy(hw, PHY_REG(769, 16), data); |
| 2168 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 2169 | return ret_val; |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2170 | e1e_rphy(hw, PHY_REG(776, 20), &data); |
| 2171 | data &= ~(0x3FF << 2); |
| 2172 | data |= (0x8 << 2); |
| 2173 | ret_val = e1e_wphy(hw, PHY_REG(776, 20), data); |
| 2174 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 2175 | return ret_val; |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2176 | ret_val = e1e_wphy(hw, PHY_REG(776, 23), 0x7E00); |
| 2177 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 2178 | return ret_val; |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2179 | e1e_rphy(hw, HV_PM_CTRL, &data); |
| 2180 | ret_val = e1e_wphy(hw, HV_PM_CTRL, data & ~(1 << 10)); |
| 2181 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 2182 | return ret_val; |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2183 | } |
| 2184 | |
| 2185 | /* re-enable Rx path after enabling/disabling workaround */ |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 2186 | return e1e_wphy(hw, PHY_REG(769, 20), phy_reg & ~(1 << 14)); |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2187 | } |
| 2188 | |
| 2189 | /** |
| 2190 | * e1000_lv_phy_workarounds_ich8lan - A series of Phy workarounds to be |
| 2191 | * done after every PHY reset. |
| 2192 | **/ |
| 2193 | static s32 e1000_lv_phy_workarounds_ich8lan(struct e1000_hw *hw) |
| 2194 | { |
| 2195 | s32 ret_val = 0; |
| 2196 | |
| 2197 | if (hw->mac.type != e1000_pch2lan) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 2198 | return 0; |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2199 | |
| 2200 | /* Set MDIO slow mode before any other MDIO access */ |
| 2201 | ret_val = e1000_set_mdio_slow_mode_hv(hw); |
Bruce Allan | 8e5ab42 | 2012-12-05 06:26:19 +0000 | [diff] [blame] | 2202 | if (ret_val) |
| 2203 | return ret_val; |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2204 | |
Bruce Allan | 4d24136 | 2011-12-16 00:46:06 +0000 | [diff] [blame] | 2205 | ret_val = hw->phy.ops.acquire(hw); |
| 2206 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 2207 | return ret_val; |
Bruce Allan | 4d24136 | 2011-12-16 00:46:06 +0000 | [diff] [blame] | 2208 | /* set MSE higher to enable link to stay up when noise is high */ |
Bruce Allan | 4ddc48a | 2012-12-05 06:25:58 +0000 | [diff] [blame] | 2209 | ret_val = e1000_write_emi_reg_locked(hw, I82579_MSE_THRESHOLD, 0x0034); |
Bruce Allan | 4d24136 | 2011-12-16 00:46:06 +0000 | [diff] [blame] | 2210 | if (ret_val) |
| 2211 | goto release; |
| 2212 | /* drop link after 5 times MSE threshold was reached */ |
Bruce Allan | 4ddc48a | 2012-12-05 06:25:58 +0000 | [diff] [blame] | 2213 | ret_val = e1000_write_emi_reg_locked(hw, I82579_MSE_LINK_DOWN, 0x0005); |
Bruce Allan | 4d24136 | 2011-12-16 00:46:06 +0000 | [diff] [blame] | 2214 | release: |
| 2215 | hw->phy.ops.release(hw); |
| 2216 | |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2217 | return ret_val; |
| 2218 | } |
| 2219 | |
| 2220 | /** |
Bruce Allan | 831bd2e | 2010-09-22 17:16:18 +0000 | [diff] [blame] | 2221 | * e1000_k1_gig_workaround_lv - K1 Si workaround |
| 2222 | * @hw: pointer to the HW structure |
| 2223 | * |
| 2224 | * Workaround to set the K1 beacon duration for 82579 parts |
| 2225 | **/ |
| 2226 | static s32 e1000_k1_workaround_lv(struct e1000_hw *hw) |
| 2227 | { |
| 2228 | s32 ret_val = 0; |
| 2229 | u16 status_reg = 0; |
| 2230 | u32 mac_reg; |
Bruce Allan | 0ed013e | 2011-07-29 05:52:56 +0000 | [diff] [blame] | 2231 | u16 phy_reg; |
Bruce Allan | 831bd2e | 2010-09-22 17:16:18 +0000 | [diff] [blame] | 2232 | |
| 2233 | if (hw->mac.type != e1000_pch2lan) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 2234 | return 0; |
Bruce Allan | 831bd2e | 2010-09-22 17:16:18 +0000 | [diff] [blame] | 2235 | |
| 2236 | /* Set K1 beacon duration based on 1Gbps speed or otherwise */ |
| 2237 | ret_val = e1e_rphy(hw, HV_M_STATUS, &status_reg); |
| 2238 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 2239 | return ret_val; |
Bruce Allan | 831bd2e | 2010-09-22 17:16:18 +0000 | [diff] [blame] | 2240 | |
| 2241 | if ((status_reg & (HV_M_STATUS_LINK_UP | HV_M_STATUS_AUTONEG_COMPLETE)) |
| 2242 | == (HV_M_STATUS_LINK_UP | HV_M_STATUS_AUTONEG_COMPLETE)) { |
| 2243 | mac_reg = er32(FEXTNVM4); |
| 2244 | mac_reg &= ~E1000_FEXTNVM4_BEACON_DURATION_MASK; |
| 2245 | |
Bruce Allan | 0ed013e | 2011-07-29 05:52:56 +0000 | [diff] [blame] | 2246 | ret_val = e1e_rphy(hw, I82579_LPI_CTRL, &phy_reg); |
| 2247 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 2248 | return ret_val; |
Bruce Allan | 831bd2e | 2010-09-22 17:16:18 +0000 | [diff] [blame] | 2249 | |
Bruce Allan | 0ed013e | 2011-07-29 05:52:56 +0000 | [diff] [blame] | 2250 | if (status_reg & HV_M_STATUS_SPEED_1000) { |
Bruce Allan | 36ceeb4 | 2012-03-20 03:47:47 +0000 | [diff] [blame] | 2251 | u16 pm_phy_reg; |
| 2252 | |
Bruce Allan | 0ed013e | 2011-07-29 05:52:56 +0000 | [diff] [blame] | 2253 | mac_reg |= E1000_FEXTNVM4_BEACON_DURATION_8USEC; |
| 2254 | phy_reg &= ~I82579_LPI_CTRL_FORCE_PLL_LOCK_COUNT; |
Bruce Allan | 36ceeb4 | 2012-03-20 03:47:47 +0000 | [diff] [blame] | 2255 | /* LV 1G Packet drop issue wa */ |
| 2256 | ret_val = e1e_rphy(hw, HV_PM_CTRL, &pm_phy_reg); |
| 2257 | if (ret_val) |
| 2258 | return ret_val; |
| 2259 | pm_phy_reg &= ~HV_PM_CTRL_PLL_STOP_IN_K1_GIGA; |
| 2260 | ret_val = e1e_wphy(hw, HV_PM_CTRL, pm_phy_reg); |
| 2261 | if (ret_val) |
| 2262 | return ret_val; |
Bruce Allan | 0ed013e | 2011-07-29 05:52:56 +0000 | [diff] [blame] | 2263 | } else { |
| 2264 | mac_reg |= E1000_FEXTNVM4_BEACON_DURATION_16USEC; |
| 2265 | phy_reg |= I82579_LPI_CTRL_FORCE_PLL_LOCK_COUNT; |
| 2266 | } |
Bruce Allan | 831bd2e | 2010-09-22 17:16:18 +0000 | [diff] [blame] | 2267 | ew32(FEXTNVM4, mac_reg); |
Bruce Allan | 0ed013e | 2011-07-29 05:52:56 +0000 | [diff] [blame] | 2268 | ret_val = e1e_wphy(hw, I82579_LPI_CTRL, phy_reg); |
Bruce Allan | 831bd2e | 2010-09-22 17:16:18 +0000 | [diff] [blame] | 2269 | } |
| 2270 | |
Bruce Allan | 831bd2e | 2010-09-22 17:16:18 +0000 | [diff] [blame] | 2271 | return ret_val; |
| 2272 | } |
| 2273 | |
| 2274 | /** |
Bruce Allan | 605c82b | 2010-09-22 17:17:01 +0000 | [diff] [blame] | 2275 | * e1000_gate_hw_phy_config_ich8lan - disable PHY config via hardware |
| 2276 | * @hw: pointer to the HW structure |
| 2277 | * @gate: boolean set to true to gate, false to ungate |
| 2278 | * |
| 2279 | * Gate/ungate the automatic PHY configuration via hardware; perform |
| 2280 | * the configuration via software instead. |
| 2281 | **/ |
| 2282 | static void e1000_gate_hw_phy_config_ich8lan(struct e1000_hw *hw, bool gate) |
| 2283 | { |
| 2284 | u32 extcnf_ctrl; |
| 2285 | |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 2286 | if (hw->mac.type < e1000_pch2lan) |
Bruce Allan | 605c82b | 2010-09-22 17:17:01 +0000 | [diff] [blame] | 2287 | return; |
| 2288 | |
| 2289 | extcnf_ctrl = er32(EXTCNF_CTRL); |
| 2290 | |
| 2291 | if (gate) |
| 2292 | extcnf_ctrl |= E1000_EXTCNF_CTRL_GATE_PHY_CFG; |
| 2293 | else |
| 2294 | extcnf_ctrl &= ~E1000_EXTCNF_CTRL_GATE_PHY_CFG; |
| 2295 | |
| 2296 | ew32(EXTCNF_CTRL, extcnf_ctrl); |
Bruce Allan | 605c82b | 2010-09-22 17:17:01 +0000 | [diff] [blame] | 2297 | } |
| 2298 | |
| 2299 | /** |
Bruce Allan | fc0c776 | 2009-07-01 13:27:55 +0000 | [diff] [blame] | 2300 | * e1000_lan_init_done_ich8lan - Check for PHY config completion |
| 2301 | * @hw: pointer to the HW structure |
| 2302 | * |
| 2303 | * Check the appropriate indication the MAC has finished configuring the |
| 2304 | * PHY after a software reset. |
| 2305 | **/ |
| 2306 | static void e1000_lan_init_done_ich8lan(struct e1000_hw *hw) |
| 2307 | { |
| 2308 | u32 data, loop = E1000_ICH8_LAN_INIT_TIMEOUT; |
| 2309 | |
| 2310 | /* Wait for basic configuration completes before proceeding */ |
| 2311 | do { |
| 2312 | data = er32(STATUS); |
| 2313 | data &= E1000_STATUS_LAN_INIT_DONE; |
Bruce Allan | ce43a21 | 2013-02-20 04:06:32 +0000 | [diff] [blame] | 2314 | usleep_range(100, 200); |
Bruce Allan | fc0c776 | 2009-07-01 13:27:55 +0000 | [diff] [blame] | 2315 | } while ((!data) && --loop); |
| 2316 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 2317 | /* If basic configuration is incomplete before the above loop |
Bruce Allan | fc0c776 | 2009-07-01 13:27:55 +0000 | [diff] [blame] | 2318 | * count reaches 0, loading the configuration from NVM will |
| 2319 | * leave the PHY in a bad state possibly resulting in no link. |
| 2320 | */ |
| 2321 | if (loop == 0) |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 2322 | e_dbg("LAN_INIT_DONE not set, increase timeout\n"); |
Bruce Allan | fc0c776 | 2009-07-01 13:27:55 +0000 | [diff] [blame] | 2323 | |
| 2324 | /* Clear the Init Done bit for the next init event */ |
| 2325 | data = er32(STATUS); |
| 2326 | data &= ~E1000_STATUS_LAN_INIT_DONE; |
| 2327 | ew32(STATUS, data); |
| 2328 | } |
| 2329 | |
| 2330 | /** |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 2331 | * e1000_post_phy_reset_ich8lan - Perform steps required after a PHY reset |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2332 | * @hw: pointer to the HW structure |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2333 | **/ |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 2334 | static s32 e1000_post_phy_reset_ich8lan(struct e1000_hw *hw) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2335 | { |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 2336 | s32 ret_val = 0; |
| 2337 | u16 reg; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2338 | |
Bruce Allan | 44abd5c | 2012-02-22 09:02:37 +0000 | [diff] [blame] | 2339 | if (hw->phy.ops.check_reset_block(hw)) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 2340 | return 0; |
Bruce Allan | fc0c776 | 2009-07-01 13:27:55 +0000 | [diff] [blame] | 2341 | |
Bruce Allan | 5f3eed6 | 2010-09-22 17:15:54 +0000 | [diff] [blame] | 2342 | /* Allow time for h/w to get to quiescent state after reset */ |
Bruce Allan | 1bba438 | 2011-03-19 00:27:20 +0000 | [diff] [blame] | 2343 | usleep_range(10000, 20000); |
Bruce Allan | 5f3eed6 | 2010-09-22 17:15:54 +0000 | [diff] [blame] | 2344 | |
Bruce Allan | fddaa1a | 2010-01-13 01:52:49 +0000 | [diff] [blame] | 2345 | /* Perform any necessary post-reset workarounds */ |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 2346 | switch (hw->mac.type) { |
| 2347 | case e1000_pchlan: |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 2348 | ret_val = e1000_hv_phy_workarounds_ich8lan(hw); |
| 2349 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 2350 | return ret_val; |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 2351 | break; |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2352 | case e1000_pch2lan: |
| 2353 | ret_val = e1000_lv_phy_workarounds_ich8lan(hw); |
| 2354 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 2355 | return ret_val; |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 2356 | break; |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 2357 | default: |
| 2358 | break; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 2359 | } |
| 2360 | |
Bruce Allan | 3ebfc7c | 2011-05-13 07:20:14 +0000 | [diff] [blame] | 2361 | /* Clear the host wakeup bit after lcd reset */ |
| 2362 | if (hw->mac.type >= e1000_pchlan) { |
| 2363 | e1e_rphy(hw, BM_PORT_GEN_CFG, ®); |
| 2364 | reg &= ~BM_WUC_HOST_WU_BIT; |
| 2365 | e1e_wphy(hw, BM_PORT_GEN_CFG, reg); |
| 2366 | } |
Bruce Allan | db2932e | 2009-10-26 11:22:47 +0000 | [diff] [blame] | 2367 | |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 2368 | /* Configure the LCD with the extended configuration region in NVM */ |
| 2369 | ret_val = e1000_sw_lcd_config_ich8lan(hw); |
| 2370 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 2371 | return ret_val; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2372 | |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 2373 | /* Configure the LCD with the OEM bits in NVM */ |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 2374 | ret_val = e1000_oem_bits_config_ich8lan(hw, true); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2375 | |
Bruce Allan | 1effb45 | 2011-02-25 06:58:03 +0000 | [diff] [blame] | 2376 | if (hw->mac.type == e1000_pch2lan) { |
| 2377 | /* Ungate automatic PHY configuration on non-managed 82579 */ |
| 2378 | if (!(er32(FWSM) & E1000_ICH_FWSM_FW_VALID)) { |
Bruce Allan | 1bba438 | 2011-03-19 00:27:20 +0000 | [diff] [blame] | 2379 | usleep_range(10000, 20000); |
Bruce Allan | 1effb45 | 2011-02-25 06:58:03 +0000 | [diff] [blame] | 2380 | e1000_gate_hw_phy_config_ich8lan(hw, false); |
| 2381 | } |
| 2382 | |
| 2383 | /* Set EEE LPI Update Timer to 200usec */ |
| 2384 | ret_val = hw->phy.ops.acquire(hw); |
| 2385 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 2386 | return ret_val; |
Bruce Allan | 4ddc48a | 2012-12-05 06:25:58 +0000 | [diff] [blame] | 2387 | ret_val = e1000_write_emi_reg_locked(hw, |
| 2388 | I82579_LPI_UPDATE_TIMER, |
| 2389 | 0x1387); |
Bruce Allan | 1effb45 | 2011-02-25 06:58:03 +0000 | [diff] [blame] | 2390 | hw->phy.ops.release(hw); |
Bruce Allan | 605c82b | 2010-09-22 17:17:01 +0000 | [diff] [blame] | 2391 | } |
| 2392 | |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 2393 | return ret_val; |
| 2394 | } |
| 2395 | |
| 2396 | /** |
| 2397 | * e1000_phy_hw_reset_ich8lan - Performs a PHY reset |
| 2398 | * @hw: pointer to the HW structure |
| 2399 | * |
| 2400 | * Resets the PHY |
| 2401 | * This is a function pointer entry point called by drivers |
| 2402 | * or other shared routines. |
| 2403 | **/ |
| 2404 | static s32 e1000_phy_hw_reset_ich8lan(struct e1000_hw *hw) |
| 2405 | { |
| 2406 | s32 ret_val = 0; |
| 2407 | |
Bruce Allan | 605c82b | 2010-09-22 17:17:01 +0000 | [diff] [blame] | 2408 | /* Gate automatic PHY configuration by hardware on non-managed 82579 */ |
| 2409 | if ((hw->mac.type == e1000_pch2lan) && |
| 2410 | !(er32(FWSM) & E1000_ICH_FWSM_FW_VALID)) |
| 2411 | e1000_gate_hw_phy_config_ich8lan(hw, true); |
| 2412 | |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 2413 | ret_val = e1000e_phy_hw_reset_generic(hw); |
| 2414 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 2415 | return ret_val; |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 2416 | |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 2417 | return e1000_post_phy_reset_ich8lan(hw); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2418 | } |
| 2419 | |
| 2420 | /** |
Bruce Allan | fa2ce13 | 2009-10-26 11:23:25 +0000 | [diff] [blame] | 2421 | * e1000_set_lplu_state_pchlan - Set Low Power Link Up state |
| 2422 | * @hw: pointer to the HW structure |
| 2423 | * @active: true to enable LPLU, false to disable |
| 2424 | * |
| 2425 | * Sets the LPLU state according to the active flag. For PCH, if OEM write |
| 2426 | * bit are disabled in the NVM, writing the LPLU bits in the MAC will not set |
| 2427 | * the phy speed. This function will manually set the LPLU bit and restart |
| 2428 | * auto-neg as hw would do. D3 and D0 LPLU will call the same function |
| 2429 | * since it configures the same bit. |
| 2430 | **/ |
| 2431 | static s32 e1000_set_lplu_state_pchlan(struct e1000_hw *hw, bool active) |
| 2432 | { |
Bruce Allan | 70806a7 | 2013-01-05 05:08:37 +0000 | [diff] [blame] | 2433 | s32 ret_val; |
Bruce Allan | fa2ce13 | 2009-10-26 11:23:25 +0000 | [diff] [blame] | 2434 | u16 oem_reg; |
| 2435 | |
| 2436 | ret_val = e1e_rphy(hw, HV_OEM_BITS, &oem_reg); |
| 2437 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 2438 | return ret_val; |
Bruce Allan | fa2ce13 | 2009-10-26 11:23:25 +0000 | [diff] [blame] | 2439 | |
| 2440 | if (active) |
| 2441 | oem_reg |= HV_OEM_BITS_LPLU; |
| 2442 | else |
| 2443 | oem_reg &= ~HV_OEM_BITS_LPLU; |
| 2444 | |
Bruce Allan | 44abd5c | 2012-02-22 09:02:37 +0000 | [diff] [blame] | 2445 | if (!hw->phy.ops.check_reset_block(hw)) |
Bruce Allan | 464c85e | 2011-12-16 00:46:49 +0000 | [diff] [blame] | 2446 | oem_reg |= HV_OEM_BITS_RESTART_AN; |
| 2447 | |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 2448 | return e1e_wphy(hw, HV_OEM_BITS, oem_reg); |
Bruce Allan | fa2ce13 | 2009-10-26 11:23:25 +0000 | [diff] [blame] | 2449 | } |
| 2450 | |
| 2451 | /** |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2452 | * e1000_set_d0_lplu_state_ich8lan - Set Low Power Linkup D0 state |
| 2453 | * @hw: pointer to the HW structure |
Bruce Allan | 564ea9b | 2009-11-20 23:26:44 +0000 | [diff] [blame] | 2454 | * @active: true to enable LPLU, false to disable |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2455 | * |
| 2456 | * Sets the LPLU D0 state according to the active flag. When |
| 2457 | * activating LPLU this function also disables smart speed |
| 2458 | * and vice versa. LPLU will not be activated unless the |
| 2459 | * device autonegotiation advertisement meets standards of |
| 2460 | * either 10 or 10/100 or 10/100/1000 at all duplexes. |
| 2461 | * This is a function pointer entry point only called by |
| 2462 | * PHY setup routines. |
| 2463 | **/ |
| 2464 | static s32 e1000_set_d0_lplu_state_ich8lan(struct e1000_hw *hw, bool active) |
| 2465 | { |
| 2466 | struct e1000_phy_info *phy = &hw->phy; |
| 2467 | u32 phy_ctrl; |
| 2468 | s32 ret_val = 0; |
| 2469 | u16 data; |
| 2470 | |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2471 | if (phy->type == e1000_phy_ife) |
Bruce Allan | 8260725 | 2012-02-08 02:55:09 +0000 | [diff] [blame] | 2472 | return 0; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2473 | |
| 2474 | phy_ctrl = er32(PHY_CTRL); |
| 2475 | |
| 2476 | if (active) { |
| 2477 | phy_ctrl |= E1000_PHY_CTRL_D0A_LPLU; |
| 2478 | ew32(PHY_CTRL, phy_ctrl); |
| 2479 | |
Bruce Allan | 60f1292 | 2009-07-01 13:28:14 +0000 | [diff] [blame] | 2480 | if (phy->type != e1000_phy_igp_3) |
| 2481 | return 0; |
| 2482 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 2483 | /* Call gig speed drop workaround on LPLU before accessing |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2484 | * any PHY registers |
| 2485 | */ |
Bruce Allan | 60f1292 | 2009-07-01 13:28:14 +0000 | [diff] [blame] | 2486 | if (hw->mac.type == e1000_ich8lan) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2487 | e1000e_gig_downshift_workaround_ich8lan(hw); |
| 2488 | |
| 2489 | /* When LPLU is enabled, we should disable SmartSpeed */ |
| 2490 | ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG, &data); |
Bruce Allan | 7dbbe5d | 2013-01-05 05:08:31 +0000 | [diff] [blame] | 2491 | if (ret_val) |
| 2492 | return ret_val; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2493 | data &= ~IGP01E1000_PSCFR_SMART_SPEED; |
| 2494 | ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG, data); |
| 2495 | if (ret_val) |
| 2496 | return ret_val; |
| 2497 | } else { |
| 2498 | phy_ctrl &= ~E1000_PHY_CTRL_D0A_LPLU; |
| 2499 | ew32(PHY_CTRL, phy_ctrl); |
| 2500 | |
Bruce Allan | 60f1292 | 2009-07-01 13:28:14 +0000 | [diff] [blame] | 2501 | if (phy->type != e1000_phy_igp_3) |
| 2502 | return 0; |
| 2503 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 2504 | /* LPLU and SmartSpeed are mutually exclusive. LPLU is used |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2505 | * during Dx states where the power conservation is most |
| 2506 | * important. During driver activity we should enable |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2507 | * SmartSpeed, so performance is maintained. |
| 2508 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2509 | if (phy->smart_speed == e1000_smart_speed_on) { |
| 2510 | ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG, |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2511 | &data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2512 | if (ret_val) |
| 2513 | return ret_val; |
| 2514 | |
| 2515 | data |= IGP01E1000_PSCFR_SMART_SPEED; |
| 2516 | ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG, |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2517 | data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2518 | if (ret_val) |
| 2519 | return ret_val; |
| 2520 | } else if (phy->smart_speed == e1000_smart_speed_off) { |
| 2521 | ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG, |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2522 | &data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2523 | if (ret_val) |
| 2524 | return ret_val; |
| 2525 | |
| 2526 | data &= ~IGP01E1000_PSCFR_SMART_SPEED; |
| 2527 | ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG, |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2528 | data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2529 | if (ret_val) |
| 2530 | return ret_val; |
| 2531 | } |
| 2532 | } |
| 2533 | |
| 2534 | return 0; |
| 2535 | } |
| 2536 | |
| 2537 | /** |
| 2538 | * e1000_set_d3_lplu_state_ich8lan - Set Low Power Linkup D3 state |
| 2539 | * @hw: pointer to the HW structure |
Bruce Allan | 564ea9b | 2009-11-20 23:26:44 +0000 | [diff] [blame] | 2540 | * @active: true to enable LPLU, false to disable |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2541 | * |
| 2542 | * Sets the LPLU D3 state according to the active flag. When |
| 2543 | * activating LPLU this function also disables smart speed |
| 2544 | * and vice versa. LPLU will not be activated unless the |
| 2545 | * device autonegotiation advertisement meets standards of |
| 2546 | * either 10 or 10/100 or 10/100/1000 at all duplexes. |
| 2547 | * This is a function pointer entry point only called by |
| 2548 | * PHY setup routines. |
| 2549 | **/ |
| 2550 | static s32 e1000_set_d3_lplu_state_ich8lan(struct e1000_hw *hw, bool active) |
| 2551 | { |
| 2552 | struct e1000_phy_info *phy = &hw->phy; |
| 2553 | u32 phy_ctrl; |
Bruce Allan | d7eb338 | 2012-02-08 02:55:14 +0000 | [diff] [blame] | 2554 | s32 ret_val = 0; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2555 | u16 data; |
| 2556 | |
| 2557 | phy_ctrl = er32(PHY_CTRL); |
| 2558 | |
| 2559 | if (!active) { |
| 2560 | phy_ctrl &= ~E1000_PHY_CTRL_NOND0A_LPLU; |
| 2561 | ew32(PHY_CTRL, phy_ctrl); |
Bruce Allan | 60f1292 | 2009-07-01 13:28:14 +0000 | [diff] [blame] | 2562 | |
| 2563 | if (phy->type != e1000_phy_igp_3) |
| 2564 | return 0; |
| 2565 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 2566 | /* LPLU and SmartSpeed are mutually exclusive. LPLU is used |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2567 | * during Dx states where the power conservation is most |
| 2568 | * important. During driver activity we should enable |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2569 | * SmartSpeed, so performance is maintained. |
| 2570 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2571 | if (phy->smart_speed == e1000_smart_speed_on) { |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2572 | ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG, |
| 2573 | &data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2574 | if (ret_val) |
| 2575 | return ret_val; |
| 2576 | |
| 2577 | data |= IGP01E1000_PSCFR_SMART_SPEED; |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2578 | ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG, |
| 2579 | data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2580 | if (ret_val) |
| 2581 | return ret_val; |
| 2582 | } else if (phy->smart_speed == e1000_smart_speed_off) { |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2583 | ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG, |
| 2584 | &data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2585 | if (ret_val) |
| 2586 | return ret_val; |
| 2587 | |
| 2588 | data &= ~IGP01E1000_PSCFR_SMART_SPEED; |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2589 | ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG, |
| 2590 | data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2591 | if (ret_val) |
| 2592 | return ret_val; |
| 2593 | } |
| 2594 | } else if ((phy->autoneg_advertised == E1000_ALL_SPEED_DUPLEX) || |
| 2595 | (phy->autoneg_advertised == E1000_ALL_NOT_GIG) || |
| 2596 | (phy->autoneg_advertised == E1000_ALL_10_SPEED)) { |
| 2597 | phy_ctrl |= E1000_PHY_CTRL_NOND0A_LPLU; |
| 2598 | ew32(PHY_CTRL, phy_ctrl); |
| 2599 | |
Bruce Allan | 60f1292 | 2009-07-01 13:28:14 +0000 | [diff] [blame] | 2600 | if (phy->type != e1000_phy_igp_3) |
| 2601 | return 0; |
| 2602 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 2603 | /* Call gig speed drop workaround on LPLU before accessing |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2604 | * any PHY registers |
| 2605 | */ |
Bruce Allan | 60f1292 | 2009-07-01 13:28:14 +0000 | [diff] [blame] | 2606 | if (hw->mac.type == e1000_ich8lan) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2607 | e1000e_gig_downshift_workaround_ich8lan(hw); |
| 2608 | |
| 2609 | /* When LPLU is enabled, we should disable SmartSpeed */ |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2610 | ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG, &data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2611 | if (ret_val) |
| 2612 | return ret_val; |
| 2613 | |
| 2614 | data &= ~IGP01E1000_PSCFR_SMART_SPEED; |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2615 | ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG, data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2616 | } |
| 2617 | |
Bruce Allan | d7eb338 | 2012-02-08 02:55:14 +0000 | [diff] [blame] | 2618 | return ret_val; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2619 | } |
| 2620 | |
| 2621 | /** |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 2622 | * e1000_valid_nvm_bank_detect_ich8lan - finds out the valid bank 0 or 1 |
| 2623 | * @hw: pointer to the HW structure |
| 2624 | * @bank: pointer to the variable that returns the active bank |
| 2625 | * |
| 2626 | * Reads signature byte from the NVM using the flash access registers. |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 2627 | * Word 0x13 bits 15:14 = 10b indicate a valid signature for that bank. |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 2628 | **/ |
| 2629 | static s32 e1000_valid_nvm_bank_detect_ich8lan(struct e1000_hw *hw, u32 *bank) |
| 2630 | { |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 2631 | u32 eecd; |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 2632 | struct e1000_nvm_info *nvm = &hw->nvm; |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 2633 | u32 bank1_offset = nvm->flash_bank_size * sizeof(u16); |
| 2634 | u32 act_offset = E1000_ICH_NVM_SIG_WORD * 2 + 1; |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 2635 | u8 sig_byte = 0; |
Bruce Allan | f71dde6 | 2012-02-08 02:55:35 +0000 | [diff] [blame] | 2636 | s32 ret_val; |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 2637 | |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 2638 | switch (hw->mac.type) { |
| 2639 | case e1000_ich8lan: |
| 2640 | case e1000_ich9lan: |
| 2641 | eecd = er32(EECD); |
| 2642 | if ((eecd & E1000_EECD_SEC1VAL_VALID_MASK) == |
| 2643 | E1000_EECD_SEC1VAL_VALID_MASK) { |
| 2644 | if (eecd & E1000_EECD_SEC1VAL) |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 2645 | *bank = 1; |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 2646 | else |
| 2647 | *bank = 0; |
| 2648 | |
| 2649 | return 0; |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 2650 | } |
Bruce Allan | 434f139 | 2011-12-16 00:46:54 +0000 | [diff] [blame] | 2651 | e_dbg("Unable to determine valid NVM bank via EEC - reading flash signature\n"); |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 2652 | /* fall-thru */ |
| 2653 | default: |
| 2654 | /* set bank to 0 in case flash read fails */ |
| 2655 | *bank = 0; |
| 2656 | |
| 2657 | /* Check bank 0 */ |
| 2658 | ret_val = e1000_read_flash_byte_ich8lan(hw, act_offset, |
Bruce Allan | f0ff439 | 2013-02-20 04:05:39 +0000 | [diff] [blame] | 2659 | &sig_byte); |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 2660 | if (ret_val) |
| 2661 | return ret_val; |
| 2662 | if ((sig_byte & E1000_ICH_NVM_VALID_SIG_MASK) == |
| 2663 | E1000_ICH_NVM_SIG_VALUE) { |
| 2664 | *bank = 0; |
| 2665 | return 0; |
| 2666 | } |
| 2667 | |
| 2668 | /* Check bank 1 */ |
| 2669 | ret_val = e1000_read_flash_byte_ich8lan(hw, act_offset + |
Bruce Allan | f0ff439 | 2013-02-20 04:05:39 +0000 | [diff] [blame] | 2670 | bank1_offset, |
| 2671 | &sig_byte); |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 2672 | if (ret_val) |
| 2673 | return ret_val; |
| 2674 | if ((sig_byte & E1000_ICH_NVM_VALID_SIG_MASK) == |
| 2675 | E1000_ICH_NVM_SIG_VALUE) { |
| 2676 | *bank = 1; |
| 2677 | return 0; |
| 2678 | } |
| 2679 | |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 2680 | e_dbg("ERROR: No valid NVM bank present\n"); |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 2681 | return -E1000_ERR_NVM; |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 2682 | } |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 2683 | } |
| 2684 | |
| 2685 | /** |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2686 | * e1000_read_nvm_ich8lan - Read word(s) from the NVM |
| 2687 | * @hw: pointer to the HW structure |
| 2688 | * @offset: The offset (in bytes) of the word(s) to read. |
| 2689 | * @words: Size of data to read in words |
| 2690 | * @data: Pointer to the word(s) to read at offset. |
| 2691 | * |
| 2692 | * Reads a word(s) from the NVM using the flash access registers. |
| 2693 | **/ |
| 2694 | static s32 e1000_read_nvm_ich8lan(struct e1000_hw *hw, u16 offset, u16 words, |
| 2695 | u16 *data) |
| 2696 | { |
| 2697 | struct e1000_nvm_info *nvm = &hw->nvm; |
| 2698 | struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan; |
| 2699 | u32 act_offset; |
Bruce Allan | 148675a | 2009-08-07 07:41:56 +0000 | [diff] [blame] | 2700 | s32 ret_val = 0; |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 2701 | u32 bank = 0; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2702 | u16 i, word; |
| 2703 | |
| 2704 | if ((offset >= nvm->word_size) || (words > nvm->word_size - offset) || |
| 2705 | (words == 0)) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 2706 | e_dbg("nvm parameter(s) out of bounds\n"); |
Bruce Allan | ca15df5 | 2009-10-26 11:23:43 +0000 | [diff] [blame] | 2707 | ret_val = -E1000_ERR_NVM; |
| 2708 | goto out; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2709 | } |
| 2710 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 2711 | nvm->ops.acquire(hw); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2712 | |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 2713 | ret_val = e1000_valid_nvm_bank_detect_ich8lan(hw, &bank); |
Bruce Allan | 148675a | 2009-08-07 07:41:56 +0000 | [diff] [blame] | 2714 | if (ret_val) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 2715 | e_dbg("Could not detect valid bank, assuming bank 0\n"); |
Bruce Allan | 148675a | 2009-08-07 07:41:56 +0000 | [diff] [blame] | 2716 | bank = 0; |
| 2717 | } |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 2718 | |
| 2719 | act_offset = (bank) ? nvm->flash_bank_size : 0; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2720 | act_offset += offset; |
| 2721 | |
Bruce Allan | 148675a | 2009-08-07 07:41:56 +0000 | [diff] [blame] | 2722 | ret_val = 0; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2723 | for (i = 0; i < words; i++) { |
Bruce Allan | 362e20c | 2013-02-20 04:05:45 +0000 | [diff] [blame] | 2724 | if (dev_spec->shadow_ram[offset + i].modified) { |
| 2725 | data[i] = dev_spec->shadow_ram[offset + i].value; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2726 | } else { |
| 2727 | ret_val = e1000_read_flash_word_ich8lan(hw, |
| 2728 | act_offset + i, |
| 2729 | &word); |
| 2730 | if (ret_val) |
| 2731 | break; |
| 2732 | data[i] = word; |
| 2733 | } |
| 2734 | } |
| 2735 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 2736 | nvm->ops.release(hw); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2737 | |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 2738 | out: |
| 2739 | if (ret_val) |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 2740 | e_dbg("NVM read error: %d\n", ret_val); |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 2741 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2742 | return ret_val; |
| 2743 | } |
| 2744 | |
| 2745 | /** |
| 2746 | * e1000_flash_cycle_init_ich8lan - Initialize flash |
| 2747 | * @hw: pointer to the HW structure |
| 2748 | * |
| 2749 | * This function does initial flash setup so that a new read/write/erase cycle |
| 2750 | * can be started. |
| 2751 | **/ |
| 2752 | static s32 e1000_flash_cycle_init_ich8lan(struct e1000_hw *hw) |
| 2753 | { |
| 2754 | union ich8_hws_flash_status hsfsts; |
| 2755 | s32 ret_val = -E1000_ERR_NVM; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2756 | |
| 2757 | hsfsts.regval = er16flash(ICH_FLASH_HSFSTS); |
| 2758 | |
| 2759 | /* Check if the flash descriptor is valid */ |
Bruce Allan | 04499ec | 2012-04-13 00:08:31 +0000 | [diff] [blame] | 2760 | if (!hsfsts.hsf_status.fldesvalid) { |
Bruce Allan | 434f139 | 2011-12-16 00:46:54 +0000 | [diff] [blame] | 2761 | e_dbg("Flash descriptor invalid. SW Sequencing must be used.\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2762 | return -E1000_ERR_NVM; |
| 2763 | } |
| 2764 | |
| 2765 | /* Clear FCERR and DAEL in hw status by writing 1 */ |
| 2766 | hsfsts.hsf_status.flcerr = 1; |
| 2767 | hsfsts.hsf_status.dael = 1; |
| 2768 | |
| 2769 | ew16flash(ICH_FLASH_HSFSTS, hsfsts.regval); |
| 2770 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 2771 | /* Either we should have a hardware SPI cycle in progress |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2772 | * bit to check against, in order to start a new cycle or |
| 2773 | * FDONE bit should be changed in the hardware so that it |
Auke Kok | 489815c | 2008-02-21 15:11:07 -0800 | [diff] [blame] | 2774 | * is 1 after hardware reset, which can then be used as an |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2775 | * indication whether a cycle is in progress or has been |
| 2776 | * completed. |
| 2777 | */ |
| 2778 | |
Bruce Allan | 04499ec | 2012-04-13 00:08:31 +0000 | [diff] [blame] | 2779 | if (!hsfsts.hsf_status.flcinprog) { |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 2780 | /* There is no cycle running at present, |
Bruce Allan | 5ff5b66 | 2009-12-01 15:51:11 +0000 | [diff] [blame] | 2781 | * so we can start a cycle. |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2782 | * Begin by setting Flash Cycle Done. |
| 2783 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2784 | hsfsts.hsf_status.flcdone = 1; |
| 2785 | ew16flash(ICH_FLASH_HSFSTS, hsfsts.regval); |
| 2786 | ret_val = 0; |
| 2787 | } else { |
Bruce Allan | f71dde6 | 2012-02-08 02:55:35 +0000 | [diff] [blame] | 2788 | s32 i; |
Bruce Allan | 90da066 | 2011-01-06 07:02:53 +0000 | [diff] [blame] | 2789 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 2790 | /* Otherwise poll for sometime so the current |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2791 | * cycle has a chance to end before giving up. |
| 2792 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2793 | for (i = 0; i < ICH_FLASH_READ_COMMAND_TIMEOUT; i++) { |
Bruce Allan | c8243ee | 2011-12-17 08:32:57 +0000 | [diff] [blame] | 2794 | hsfsts.regval = er16flash(ICH_FLASH_HSFSTS); |
Bruce Allan | 04499ec | 2012-04-13 00:08:31 +0000 | [diff] [blame] | 2795 | if (!hsfsts.hsf_status.flcinprog) { |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2796 | ret_val = 0; |
| 2797 | break; |
| 2798 | } |
| 2799 | udelay(1); |
| 2800 | } |
Bruce Allan | 9e2d765 | 2012-01-31 06:37:27 +0000 | [diff] [blame] | 2801 | if (!ret_val) { |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 2802 | /* Successful in waiting for previous cycle to timeout, |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2803 | * now set the Flash Cycle Done. |
| 2804 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2805 | hsfsts.hsf_status.flcdone = 1; |
| 2806 | ew16flash(ICH_FLASH_HSFSTS, hsfsts.regval); |
| 2807 | } else { |
Joe Perches | 2c73e1f | 2010-03-26 20:16:59 +0000 | [diff] [blame] | 2808 | e_dbg("Flash controller busy, cannot get access\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2809 | } |
| 2810 | } |
| 2811 | |
| 2812 | return ret_val; |
| 2813 | } |
| 2814 | |
| 2815 | /** |
| 2816 | * e1000_flash_cycle_ich8lan - Starts flash cycle (read/write/erase) |
| 2817 | * @hw: pointer to the HW structure |
| 2818 | * @timeout: maximum time to wait for completion |
| 2819 | * |
| 2820 | * This function starts a flash cycle and waits for its completion. |
| 2821 | **/ |
| 2822 | static s32 e1000_flash_cycle_ich8lan(struct e1000_hw *hw, u32 timeout) |
| 2823 | { |
| 2824 | union ich8_hws_flash_ctrl hsflctl; |
| 2825 | union ich8_hws_flash_status hsfsts; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2826 | u32 i = 0; |
| 2827 | |
| 2828 | /* Start a cycle by writing 1 in Flash Cycle Go in Hw Flash Control */ |
| 2829 | hsflctl.regval = er16flash(ICH_FLASH_HSFCTL); |
| 2830 | hsflctl.hsf_ctrl.flcgo = 1; |
| 2831 | ew16flash(ICH_FLASH_HSFCTL, hsflctl.regval); |
| 2832 | |
| 2833 | /* wait till FDONE bit is set to 1 */ |
| 2834 | do { |
| 2835 | hsfsts.regval = er16flash(ICH_FLASH_HSFSTS); |
Bruce Allan | 04499ec | 2012-04-13 00:08:31 +0000 | [diff] [blame] | 2836 | if (hsfsts.hsf_status.flcdone) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2837 | break; |
| 2838 | udelay(1); |
| 2839 | } while (i++ < timeout); |
| 2840 | |
Bruce Allan | 04499ec | 2012-04-13 00:08:31 +0000 | [diff] [blame] | 2841 | if (hsfsts.hsf_status.flcdone && !hsfsts.hsf_status.flcerr) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2842 | return 0; |
| 2843 | |
Bruce Allan | 55920b5 | 2012-02-08 02:55:25 +0000 | [diff] [blame] | 2844 | return -E1000_ERR_NVM; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2845 | } |
| 2846 | |
| 2847 | /** |
| 2848 | * e1000_read_flash_word_ich8lan - Read word from flash |
| 2849 | * @hw: pointer to the HW structure |
| 2850 | * @offset: offset to data location |
| 2851 | * @data: pointer to the location for storing the data |
| 2852 | * |
| 2853 | * Reads the flash word at offset into data. Offset is converted |
| 2854 | * to bytes before read. |
| 2855 | **/ |
| 2856 | static s32 e1000_read_flash_word_ich8lan(struct e1000_hw *hw, u32 offset, |
| 2857 | u16 *data) |
| 2858 | { |
| 2859 | /* Must convert offset into bytes. */ |
| 2860 | offset <<= 1; |
| 2861 | |
| 2862 | return e1000_read_flash_data_ich8lan(hw, offset, 2, data); |
| 2863 | } |
| 2864 | |
| 2865 | /** |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 2866 | * e1000_read_flash_byte_ich8lan - Read byte from flash |
| 2867 | * @hw: pointer to the HW structure |
| 2868 | * @offset: The offset of the byte to read. |
| 2869 | * @data: Pointer to a byte to store the value read. |
| 2870 | * |
| 2871 | * Reads a single byte from the NVM using the flash access registers. |
| 2872 | **/ |
| 2873 | static s32 e1000_read_flash_byte_ich8lan(struct e1000_hw *hw, u32 offset, |
| 2874 | u8 *data) |
| 2875 | { |
| 2876 | s32 ret_val; |
| 2877 | u16 word = 0; |
| 2878 | |
| 2879 | ret_val = e1000_read_flash_data_ich8lan(hw, offset, 1, &word); |
| 2880 | if (ret_val) |
| 2881 | return ret_val; |
| 2882 | |
| 2883 | *data = (u8)word; |
| 2884 | |
| 2885 | return 0; |
| 2886 | } |
| 2887 | |
| 2888 | /** |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2889 | * e1000_read_flash_data_ich8lan - Read byte or word from NVM |
| 2890 | * @hw: pointer to the HW structure |
| 2891 | * @offset: The offset (in bytes) of the byte or word to read. |
| 2892 | * @size: Size of data to read, 1=byte 2=word |
| 2893 | * @data: Pointer to the word to store the value read. |
| 2894 | * |
| 2895 | * Reads a byte or word from the NVM using the flash access registers. |
| 2896 | **/ |
| 2897 | static s32 e1000_read_flash_data_ich8lan(struct e1000_hw *hw, u32 offset, |
| 2898 | u8 size, u16 *data) |
| 2899 | { |
| 2900 | union ich8_hws_flash_status hsfsts; |
| 2901 | union ich8_hws_flash_ctrl hsflctl; |
| 2902 | u32 flash_linear_addr; |
| 2903 | u32 flash_data = 0; |
| 2904 | s32 ret_val = -E1000_ERR_NVM; |
| 2905 | u8 count = 0; |
| 2906 | |
Bruce Allan | e80bd1d | 2013-05-01 01:19:46 +0000 | [diff] [blame] | 2907 | if (size < 1 || size > 2 || offset > ICH_FLASH_LINEAR_ADDR_MASK) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2908 | return -E1000_ERR_NVM; |
| 2909 | |
Bruce Allan | f0ff439 | 2013-02-20 04:05:39 +0000 | [diff] [blame] | 2910 | flash_linear_addr = ((ICH_FLASH_LINEAR_ADDR_MASK & offset) + |
| 2911 | hw->nvm.flash_base_addr); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2912 | |
| 2913 | do { |
| 2914 | udelay(1); |
| 2915 | /* Steps */ |
| 2916 | ret_val = e1000_flash_cycle_init_ich8lan(hw); |
Bruce Allan | 9e2d765 | 2012-01-31 06:37:27 +0000 | [diff] [blame] | 2917 | if (ret_val) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2918 | break; |
| 2919 | |
| 2920 | hsflctl.regval = er16flash(ICH_FLASH_HSFCTL); |
| 2921 | /* 0b/1b corresponds to 1 or 2 byte size, respectively. */ |
| 2922 | hsflctl.hsf_ctrl.fldbcount = size - 1; |
| 2923 | hsflctl.hsf_ctrl.flcycle = ICH_CYCLE_READ; |
| 2924 | ew16flash(ICH_FLASH_HSFCTL, hsflctl.regval); |
| 2925 | |
| 2926 | ew32flash(ICH_FLASH_FADDR, flash_linear_addr); |
| 2927 | |
Bruce Allan | 17e813e | 2013-02-20 04:06:01 +0000 | [diff] [blame] | 2928 | ret_val = |
| 2929 | e1000_flash_cycle_ich8lan(hw, |
| 2930 | ICH_FLASH_READ_COMMAND_TIMEOUT); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2931 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 2932 | /* Check if FCERR is set to 1, if set to 1, clear it |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2933 | * and try the whole sequence a few more times, else |
| 2934 | * read in (shift in) the Flash Data0, the order is |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2935 | * least significant byte first msb to lsb |
| 2936 | */ |
Bruce Allan | 9e2d765 | 2012-01-31 06:37:27 +0000 | [diff] [blame] | 2937 | if (!ret_val) { |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2938 | flash_data = er32flash(ICH_FLASH_FDATA0); |
Bruce Allan | b1cdfea | 2010-12-11 05:53:47 +0000 | [diff] [blame] | 2939 | if (size == 1) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2940 | *data = (u8)(flash_data & 0x000000FF); |
Bruce Allan | b1cdfea | 2010-12-11 05:53:47 +0000 | [diff] [blame] | 2941 | else if (size == 2) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2942 | *data = (u16)(flash_data & 0x0000FFFF); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2943 | break; |
| 2944 | } else { |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 2945 | /* If we've gotten here, then things are probably |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2946 | * completely hosed, but if the error condition is |
| 2947 | * detected, it won't hurt to give it another try... |
| 2948 | * ICH_FLASH_CYCLE_REPEAT_COUNT times. |
| 2949 | */ |
| 2950 | hsfsts.regval = er16flash(ICH_FLASH_HSFSTS); |
Bruce Allan | 04499ec | 2012-04-13 00:08:31 +0000 | [diff] [blame] | 2951 | if (hsfsts.hsf_status.flcerr) { |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2952 | /* Repeat for some time before giving up. */ |
| 2953 | continue; |
Bruce Allan | 04499ec | 2012-04-13 00:08:31 +0000 | [diff] [blame] | 2954 | } else if (!hsfsts.hsf_status.flcdone) { |
Bruce Allan | 434f139 | 2011-12-16 00:46:54 +0000 | [diff] [blame] | 2955 | e_dbg("Timeout error - flash cycle did not complete.\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2956 | break; |
| 2957 | } |
| 2958 | } |
| 2959 | } while (count++ < ICH_FLASH_CYCLE_REPEAT_COUNT); |
| 2960 | |
| 2961 | return ret_val; |
| 2962 | } |
| 2963 | |
| 2964 | /** |
| 2965 | * e1000_write_nvm_ich8lan - Write word(s) to the NVM |
| 2966 | * @hw: pointer to the HW structure |
| 2967 | * @offset: The offset (in bytes) of the word(s) to write. |
| 2968 | * @words: Size of data to write in words |
| 2969 | * @data: Pointer to the word(s) to write at offset. |
| 2970 | * |
| 2971 | * Writes a byte or word to the NVM using the flash access registers. |
| 2972 | **/ |
| 2973 | static s32 e1000_write_nvm_ich8lan(struct e1000_hw *hw, u16 offset, u16 words, |
| 2974 | u16 *data) |
| 2975 | { |
| 2976 | struct e1000_nvm_info *nvm = &hw->nvm; |
| 2977 | struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2978 | u16 i; |
| 2979 | |
| 2980 | if ((offset >= nvm->word_size) || (words > nvm->word_size - offset) || |
| 2981 | (words == 0)) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 2982 | e_dbg("nvm parameter(s) out of bounds\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2983 | return -E1000_ERR_NVM; |
| 2984 | } |
| 2985 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 2986 | nvm->ops.acquire(hw); |
Bruce Allan | ca15df5 | 2009-10-26 11:23:43 +0000 | [diff] [blame] | 2987 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2988 | for (i = 0; i < words; i++) { |
Bruce Allan | 362e20c | 2013-02-20 04:05:45 +0000 | [diff] [blame] | 2989 | dev_spec->shadow_ram[offset + i].modified = true; |
| 2990 | dev_spec->shadow_ram[offset + i].value = data[i]; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2991 | } |
| 2992 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 2993 | nvm->ops.release(hw); |
Bruce Allan | ca15df5 | 2009-10-26 11:23:43 +0000 | [diff] [blame] | 2994 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2995 | return 0; |
| 2996 | } |
| 2997 | |
| 2998 | /** |
| 2999 | * e1000_update_nvm_checksum_ich8lan - Update the checksum for NVM |
| 3000 | * @hw: pointer to the HW structure |
| 3001 | * |
| 3002 | * The NVM checksum is updated by calling the generic update_nvm_checksum, |
| 3003 | * which writes the checksum to the shadow ram. The changes in the shadow |
| 3004 | * ram are then committed to the EEPROM by processing each bank at a time |
| 3005 | * checking for the modified bit and writing only the pending changes. |
Auke Kok | 489815c | 2008-02-21 15:11:07 -0800 | [diff] [blame] | 3006 | * After a successful commit, the shadow ram is cleared and is ready for |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3007 | * future writes. |
| 3008 | **/ |
| 3009 | static s32 e1000_update_nvm_checksum_ich8lan(struct e1000_hw *hw) |
| 3010 | { |
| 3011 | struct e1000_nvm_info *nvm = &hw->nvm; |
| 3012 | struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan; |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 3013 | u32 i, act_offset, new_bank_offset, old_bank_offset, bank; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3014 | s32 ret_val; |
| 3015 | u16 data; |
| 3016 | |
| 3017 | ret_val = e1000e_update_nvm_checksum_generic(hw); |
| 3018 | if (ret_val) |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 3019 | goto out; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3020 | |
| 3021 | if (nvm->type != e1000_nvm_flash_sw) |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 3022 | goto out; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3023 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 3024 | nvm->ops.acquire(hw); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3025 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 3026 | /* We're writing to the opposite bank so if we're on bank 1, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3027 | * write to bank 0 etc. We also need to erase the segment that |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 3028 | * is going to be written |
| 3029 | */ |
Bruce Allan | e80bd1d | 2013-05-01 01:19:46 +0000 | [diff] [blame] | 3030 | ret_val = e1000_valid_nvm_bank_detect_ich8lan(hw, &bank); |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 3031 | if (ret_val) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 3032 | e_dbg("Could not detect valid bank, assuming bank 0\n"); |
Bruce Allan | 148675a | 2009-08-07 07:41:56 +0000 | [diff] [blame] | 3033 | bank = 0; |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 3034 | } |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 3035 | |
| 3036 | if (bank == 0) { |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3037 | new_bank_offset = nvm->flash_bank_size; |
| 3038 | old_bank_offset = 0; |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 3039 | ret_val = e1000_erase_flash_bank_ich8lan(hw, 1); |
Bruce Allan | 9c5e209 | 2010-05-10 15:00:31 +0000 | [diff] [blame] | 3040 | if (ret_val) |
| 3041 | goto release; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3042 | } else { |
| 3043 | old_bank_offset = nvm->flash_bank_size; |
| 3044 | new_bank_offset = 0; |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 3045 | ret_val = e1000_erase_flash_bank_ich8lan(hw, 0); |
Bruce Allan | 9c5e209 | 2010-05-10 15:00:31 +0000 | [diff] [blame] | 3046 | if (ret_val) |
| 3047 | goto release; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3048 | } |
| 3049 | |
| 3050 | for (i = 0; i < E1000_ICH8_SHADOW_RAM_WORDS; i++) { |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 3051 | /* Determine whether to write the value stored |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3052 | * in the other NVM bank or a modified value stored |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 3053 | * in the shadow RAM |
| 3054 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3055 | if (dev_spec->shadow_ram[i].modified) { |
| 3056 | data = dev_spec->shadow_ram[i].value; |
| 3057 | } else { |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 3058 | ret_val = e1000_read_flash_word_ich8lan(hw, i + |
Bruce Allan | f0ff439 | 2013-02-20 04:05:39 +0000 | [diff] [blame] | 3059 | old_bank_offset, |
| 3060 | &data); |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 3061 | if (ret_val) |
| 3062 | break; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3063 | } |
| 3064 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 3065 | /* If the word is 0x13, then make sure the signature bits |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3066 | * (15:14) are 11b until the commit has completed. |
| 3067 | * This will allow us to write 10b which indicates the |
| 3068 | * signature is valid. We want to do this after the write |
| 3069 | * has completed so that we don't mark the segment valid |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 3070 | * while the write is still in progress |
| 3071 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3072 | if (i == E1000_ICH_NVM_SIG_WORD) |
| 3073 | data |= E1000_ICH_NVM_SIG_MASK; |
| 3074 | |
| 3075 | /* Convert offset to bytes. */ |
| 3076 | act_offset = (i + new_bank_offset) << 1; |
| 3077 | |
Bruce Allan | ce43a21 | 2013-02-20 04:06:32 +0000 | [diff] [blame] | 3078 | usleep_range(100, 200); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3079 | /* Write the bytes to the new bank. */ |
| 3080 | ret_val = e1000_retry_write_flash_byte_ich8lan(hw, |
| 3081 | act_offset, |
| 3082 | (u8)data); |
| 3083 | if (ret_val) |
| 3084 | break; |
| 3085 | |
Bruce Allan | ce43a21 | 2013-02-20 04:06:32 +0000 | [diff] [blame] | 3086 | usleep_range(100, 200); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3087 | ret_val = e1000_retry_write_flash_byte_ich8lan(hw, |
Bruce Allan | f0ff439 | 2013-02-20 04:05:39 +0000 | [diff] [blame] | 3088 | act_offset + 1, |
| 3089 | (u8)(data >> 8)); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3090 | if (ret_val) |
| 3091 | break; |
| 3092 | } |
| 3093 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 3094 | /* Don't bother writing the segment valid bits if sector |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 3095 | * programming failed. |
| 3096 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3097 | if (ret_val) { |
Bruce Allan | 4a77035 | 2008-10-01 17:18:35 -0700 | [diff] [blame] | 3098 | /* Possibly read-only, see e1000e_write_protect_nvm_ich8lan() */ |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 3099 | e_dbg("Flash commit failed.\n"); |
Bruce Allan | 9c5e209 | 2010-05-10 15:00:31 +0000 | [diff] [blame] | 3100 | goto release; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3101 | } |
| 3102 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 3103 | /* Finally validate the new segment by setting bit 15:14 |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3104 | * to 10b in word 0x13 , this can be done without an |
| 3105 | * erase as well since these bits are 11 to start with |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 3106 | * and we need to change bit 14 to 0b |
| 3107 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3108 | act_offset = new_bank_offset + E1000_ICH_NVM_SIG_WORD; |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 3109 | ret_val = e1000_read_flash_word_ich8lan(hw, act_offset, &data); |
Bruce Allan | 9c5e209 | 2010-05-10 15:00:31 +0000 | [diff] [blame] | 3110 | if (ret_val) |
| 3111 | goto release; |
| 3112 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3113 | data &= 0xBFFF; |
| 3114 | ret_val = e1000_retry_write_flash_byte_ich8lan(hw, |
| 3115 | act_offset * 2 + 1, |
| 3116 | (u8)(data >> 8)); |
Bruce Allan | 9c5e209 | 2010-05-10 15:00:31 +0000 | [diff] [blame] | 3117 | if (ret_val) |
| 3118 | goto release; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3119 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 3120 | /* And invalidate the previously valid segment by setting |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3121 | * its signature word (0x13) high_byte to 0b. This can be |
| 3122 | * done without an erase because flash erase sets all bits |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 3123 | * to 1's. We can write 1's to 0's without an erase |
| 3124 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3125 | act_offset = (old_bank_offset + E1000_ICH_NVM_SIG_WORD) * 2 + 1; |
| 3126 | ret_val = e1000_retry_write_flash_byte_ich8lan(hw, act_offset, 0); |
Bruce Allan | 9c5e209 | 2010-05-10 15:00:31 +0000 | [diff] [blame] | 3127 | if (ret_val) |
| 3128 | goto release; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3129 | |
| 3130 | /* Great! Everything worked, we can now clear the cached entries. */ |
| 3131 | for (i = 0; i < E1000_ICH8_SHADOW_RAM_WORDS; i++) { |
Bruce Allan | 564ea9b | 2009-11-20 23:26:44 +0000 | [diff] [blame] | 3132 | dev_spec->shadow_ram[i].modified = false; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3133 | dev_spec->shadow_ram[i].value = 0xFFFF; |
| 3134 | } |
| 3135 | |
Bruce Allan | 9c5e209 | 2010-05-10 15:00:31 +0000 | [diff] [blame] | 3136 | release: |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 3137 | nvm->ops.release(hw); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3138 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 3139 | /* Reload the EEPROM, or else modifications will not appear |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3140 | * until after the next adapter reset. |
| 3141 | */ |
Bruce Allan | 9c5e209 | 2010-05-10 15:00:31 +0000 | [diff] [blame] | 3142 | if (!ret_val) { |
Bruce Allan | e85e363 | 2012-02-22 09:03:14 +0000 | [diff] [blame] | 3143 | nvm->ops.reload(hw); |
Bruce Allan | 1bba438 | 2011-03-19 00:27:20 +0000 | [diff] [blame] | 3144 | usleep_range(10000, 20000); |
Bruce Allan | 9c5e209 | 2010-05-10 15:00:31 +0000 | [diff] [blame] | 3145 | } |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3146 | |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 3147 | out: |
| 3148 | if (ret_val) |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 3149 | e_dbg("NVM update error: %d\n", ret_val); |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 3150 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3151 | return ret_val; |
| 3152 | } |
| 3153 | |
| 3154 | /** |
| 3155 | * e1000_validate_nvm_checksum_ich8lan - Validate EEPROM checksum |
| 3156 | * @hw: pointer to the HW structure |
| 3157 | * |
| 3158 | * Check to see if checksum needs to be fixed by reading bit 6 in word 0x19. |
| 3159 | * If the bit is 0, that the EEPROM had been modified, but the checksum was not |
| 3160 | * calculated, in which case we need to calculate the checksum and set bit 6. |
| 3161 | **/ |
| 3162 | static s32 e1000_validate_nvm_checksum_ich8lan(struct e1000_hw *hw) |
| 3163 | { |
| 3164 | s32 ret_val; |
| 3165 | u16 data; |
Bruce Allan | 1cc7a3a | 2013-01-09 08:15:42 +0000 | [diff] [blame] | 3166 | u16 word; |
| 3167 | u16 valid_csum_mask; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3168 | |
Bruce Allan | 1cc7a3a | 2013-01-09 08:15:42 +0000 | [diff] [blame] | 3169 | /* Read NVM and check Invalid Image CSUM bit. If this bit is 0, |
| 3170 | * the checksum needs to be fixed. This bit is an indication that |
| 3171 | * the NVM was prepared by OEM software and did not calculate |
| 3172 | * the checksum...a likely scenario. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3173 | */ |
Bruce Allan | 1cc7a3a | 2013-01-09 08:15:42 +0000 | [diff] [blame] | 3174 | switch (hw->mac.type) { |
| 3175 | case e1000_pch_lpt: |
| 3176 | word = NVM_COMPAT; |
| 3177 | valid_csum_mask = NVM_COMPAT_VALID_CSUM; |
| 3178 | break; |
| 3179 | default: |
| 3180 | word = NVM_FUTURE_INIT_WORD1; |
| 3181 | valid_csum_mask = NVM_FUTURE_INIT_WORD1_VALID_CSUM; |
| 3182 | break; |
| 3183 | } |
| 3184 | |
| 3185 | ret_val = e1000_read_nvm(hw, word, 1, &data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3186 | if (ret_val) |
| 3187 | return ret_val; |
| 3188 | |
Bruce Allan | 1cc7a3a | 2013-01-09 08:15:42 +0000 | [diff] [blame] | 3189 | if (!(data & valid_csum_mask)) { |
| 3190 | data |= valid_csum_mask; |
| 3191 | ret_val = e1000_write_nvm(hw, word, 1, &data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3192 | if (ret_val) |
| 3193 | return ret_val; |
| 3194 | ret_val = e1000e_update_nvm_checksum(hw); |
| 3195 | if (ret_val) |
| 3196 | return ret_val; |
| 3197 | } |
| 3198 | |
| 3199 | return e1000e_validate_nvm_checksum_generic(hw); |
| 3200 | } |
| 3201 | |
| 3202 | /** |
Bruce Allan | 4a77035 | 2008-10-01 17:18:35 -0700 | [diff] [blame] | 3203 | * e1000e_write_protect_nvm_ich8lan - Make the NVM read-only |
| 3204 | * @hw: pointer to the HW structure |
| 3205 | * |
| 3206 | * To prevent malicious write/erase of the NVM, set it to be read-only |
| 3207 | * so that the hardware ignores all write/erase cycles of the NVM via |
| 3208 | * the flash control registers. The shadow-ram copy of the NVM will |
| 3209 | * still be updated, however any updates to this copy will not stick |
| 3210 | * across driver reloads. |
| 3211 | **/ |
| 3212 | void e1000e_write_protect_nvm_ich8lan(struct e1000_hw *hw) |
| 3213 | { |
Bruce Allan | ca15df5 | 2009-10-26 11:23:43 +0000 | [diff] [blame] | 3214 | struct e1000_nvm_info *nvm = &hw->nvm; |
Bruce Allan | 4a77035 | 2008-10-01 17:18:35 -0700 | [diff] [blame] | 3215 | union ich8_flash_protected_range pr0; |
| 3216 | union ich8_hws_flash_status hsfsts; |
| 3217 | u32 gfpreg; |
Bruce Allan | 4a77035 | 2008-10-01 17:18:35 -0700 | [diff] [blame] | 3218 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 3219 | nvm->ops.acquire(hw); |
Bruce Allan | 4a77035 | 2008-10-01 17:18:35 -0700 | [diff] [blame] | 3220 | |
| 3221 | gfpreg = er32flash(ICH_FLASH_GFPREG); |
| 3222 | |
| 3223 | /* Write-protect GbE Sector of NVM */ |
| 3224 | pr0.regval = er32flash(ICH_FLASH_PR0); |
| 3225 | pr0.range.base = gfpreg & FLASH_GFPREG_BASE_MASK; |
| 3226 | pr0.range.limit = ((gfpreg >> 16) & FLASH_GFPREG_BASE_MASK); |
| 3227 | pr0.range.wpe = true; |
| 3228 | ew32flash(ICH_FLASH_PR0, pr0.regval); |
| 3229 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 3230 | /* Lock down a subset of GbE Flash Control Registers, e.g. |
Bruce Allan | 4a77035 | 2008-10-01 17:18:35 -0700 | [diff] [blame] | 3231 | * PR0 to prevent the write-protection from being lifted. |
| 3232 | * Once FLOCKDN is set, the registers protected by it cannot |
| 3233 | * be written until FLOCKDN is cleared by a hardware reset. |
| 3234 | */ |
| 3235 | hsfsts.regval = er16flash(ICH_FLASH_HSFSTS); |
| 3236 | hsfsts.hsf_status.flockdn = true; |
| 3237 | ew32flash(ICH_FLASH_HSFSTS, hsfsts.regval); |
| 3238 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 3239 | nvm->ops.release(hw); |
Bruce Allan | 4a77035 | 2008-10-01 17:18:35 -0700 | [diff] [blame] | 3240 | } |
| 3241 | |
| 3242 | /** |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3243 | * e1000_write_flash_data_ich8lan - Writes bytes to the NVM |
| 3244 | * @hw: pointer to the HW structure |
| 3245 | * @offset: The offset (in bytes) of the byte/word to read. |
| 3246 | * @size: Size of data to read, 1=byte 2=word |
| 3247 | * @data: The byte(s) to write to the NVM. |
| 3248 | * |
| 3249 | * Writes one/two bytes to the NVM using the flash access registers. |
| 3250 | **/ |
| 3251 | static s32 e1000_write_flash_data_ich8lan(struct e1000_hw *hw, u32 offset, |
| 3252 | u8 size, u16 data) |
| 3253 | { |
| 3254 | union ich8_hws_flash_status hsfsts; |
| 3255 | union ich8_hws_flash_ctrl hsflctl; |
| 3256 | u32 flash_linear_addr; |
| 3257 | u32 flash_data = 0; |
| 3258 | s32 ret_val; |
| 3259 | u8 count = 0; |
| 3260 | |
| 3261 | if (size < 1 || size > 2 || data > size * 0xff || |
| 3262 | offset > ICH_FLASH_LINEAR_ADDR_MASK) |
| 3263 | return -E1000_ERR_NVM; |
| 3264 | |
Bruce Allan | f0ff439 | 2013-02-20 04:05:39 +0000 | [diff] [blame] | 3265 | flash_linear_addr = ((ICH_FLASH_LINEAR_ADDR_MASK & offset) + |
| 3266 | hw->nvm.flash_base_addr); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3267 | |
| 3268 | do { |
| 3269 | udelay(1); |
| 3270 | /* Steps */ |
| 3271 | ret_val = e1000_flash_cycle_init_ich8lan(hw); |
| 3272 | if (ret_val) |
| 3273 | break; |
| 3274 | |
| 3275 | hsflctl.regval = er16flash(ICH_FLASH_HSFCTL); |
| 3276 | /* 0b/1b corresponds to 1 or 2 byte size, respectively. */ |
Bruce Allan | 362e20c | 2013-02-20 04:05:45 +0000 | [diff] [blame] | 3277 | hsflctl.hsf_ctrl.fldbcount = size - 1; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3278 | hsflctl.hsf_ctrl.flcycle = ICH_CYCLE_WRITE; |
| 3279 | ew16flash(ICH_FLASH_HSFCTL, hsflctl.regval); |
| 3280 | |
| 3281 | ew32flash(ICH_FLASH_FADDR, flash_linear_addr); |
| 3282 | |
| 3283 | if (size == 1) |
| 3284 | flash_data = (u32)data & 0x00FF; |
| 3285 | else |
| 3286 | flash_data = (u32)data; |
| 3287 | |
| 3288 | ew32flash(ICH_FLASH_FDATA0, flash_data); |
| 3289 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 3290 | /* check if FCERR is set to 1 , if set to 1, clear it |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 3291 | * and try the whole sequence a few more times else done |
| 3292 | */ |
Bruce Allan | 17e813e | 2013-02-20 04:06:01 +0000 | [diff] [blame] | 3293 | ret_val = |
| 3294 | e1000_flash_cycle_ich8lan(hw, |
| 3295 | ICH_FLASH_WRITE_COMMAND_TIMEOUT); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3296 | if (!ret_val) |
| 3297 | break; |
| 3298 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 3299 | /* If we're here, then things are most likely |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3300 | * completely hosed, but if the error condition |
| 3301 | * is detected, it won't hurt to give it another |
| 3302 | * try...ICH_FLASH_CYCLE_REPEAT_COUNT times. |
| 3303 | */ |
| 3304 | hsfsts.regval = er16flash(ICH_FLASH_HSFSTS); |
Bruce Allan | 04499ec | 2012-04-13 00:08:31 +0000 | [diff] [blame] | 3305 | if (hsfsts.hsf_status.flcerr) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3306 | /* Repeat for some time before giving up. */ |
| 3307 | continue; |
Bruce Allan | 04499ec | 2012-04-13 00:08:31 +0000 | [diff] [blame] | 3308 | if (!hsfsts.hsf_status.flcdone) { |
Bruce Allan | 434f139 | 2011-12-16 00:46:54 +0000 | [diff] [blame] | 3309 | e_dbg("Timeout error - flash cycle did not complete.\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3310 | break; |
| 3311 | } |
| 3312 | } while (count++ < ICH_FLASH_CYCLE_REPEAT_COUNT); |
| 3313 | |
| 3314 | return ret_val; |
| 3315 | } |
| 3316 | |
| 3317 | /** |
| 3318 | * e1000_write_flash_byte_ich8lan - Write a single byte to NVM |
| 3319 | * @hw: pointer to the HW structure |
| 3320 | * @offset: The index of the byte to read. |
| 3321 | * @data: The byte to write to the NVM. |
| 3322 | * |
| 3323 | * Writes a single byte to the NVM using the flash access registers. |
| 3324 | **/ |
| 3325 | static s32 e1000_write_flash_byte_ich8lan(struct e1000_hw *hw, u32 offset, |
| 3326 | u8 data) |
| 3327 | { |
| 3328 | u16 word = (u16)data; |
| 3329 | |
| 3330 | return e1000_write_flash_data_ich8lan(hw, offset, 1, word); |
| 3331 | } |
| 3332 | |
| 3333 | /** |
| 3334 | * e1000_retry_write_flash_byte_ich8lan - Writes a single byte to NVM |
| 3335 | * @hw: pointer to the HW structure |
| 3336 | * @offset: The offset of the byte to write. |
| 3337 | * @byte: The byte to write to the NVM. |
| 3338 | * |
| 3339 | * Writes a single byte to the NVM using the flash access registers. |
| 3340 | * Goes through a retry algorithm before giving up. |
| 3341 | **/ |
| 3342 | static s32 e1000_retry_write_flash_byte_ich8lan(struct e1000_hw *hw, |
| 3343 | u32 offset, u8 byte) |
| 3344 | { |
| 3345 | s32 ret_val; |
| 3346 | u16 program_retries; |
| 3347 | |
| 3348 | ret_val = e1000_write_flash_byte_ich8lan(hw, offset, byte); |
| 3349 | if (!ret_val) |
| 3350 | return ret_val; |
| 3351 | |
| 3352 | for (program_retries = 0; program_retries < 100; program_retries++) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 3353 | e_dbg("Retrying Byte %2.2X at offset %u\n", byte, offset); |
Bruce Allan | ce43a21 | 2013-02-20 04:06:32 +0000 | [diff] [blame] | 3354 | usleep_range(100, 200); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3355 | ret_val = e1000_write_flash_byte_ich8lan(hw, offset, byte); |
| 3356 | if (!ret_val) |
| 3357 | break; |
| 3358 | } |
| 3359 | if (program_retries == 100) |
| 3360 | return -E1000_ERR_NVM; |
| 3361 | |
| 3362 | return 0; |
| 3363 | } |
| 3364 | |
| 3365 | /** |
| 3366 | * e1000_erase_flash_bank_ich8lan - Erase a bank (4k) from NVM |
| 3367 | * @hw: pointer to the HW structure |
| 3368 | * @bank: 0 for first bank, 1 for second bank, etc. |
| 3369 | * |
| 3370 | * Erases the bank specified. Each bank is a 4k block. Banks are 0 based. |
| 3371 | * bank N is 4096 * N + flash_reg_addr. |
| 3372 | **/ |
| 3373 | static s32 e1000_erase_flash_bank_ich8lan(struct e1000_hw *hw, u32 bank) |
| 3374 | { |
| 3375 | struct e1000_nvm_info *nvm = &hw->nvm; |
| 3376 | union ich8_hws_flash_status hsfsts; |
| 3377 | union ich8_hws_flash_ctrl hsflctl; |
| 3378 | u32 flash_linear_addr; |
| 3379 | /* bank size is in 16bit words - adjust to bytes */ |
| 3380 | u32 flash_bank_size = nvm->flash_bank_size * 2; |
| 3381 | s32 ret_val; |
| 3382 | s32 count = 0; |
Bruce Allan | a708dd8 | 2009-11-20 23:28:37 +0000 | [diff] [blame] | 3383 | s32 j, iteration, sector_size; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3384 | |
| 3385 | hsfsts.regval = er16flash(ICH_FLASH_HSFSTS); |
| 3386 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 3387 | /* Determine HW Sector size: Read BERASE bits of hw flash status |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 3388 | * register |
| 3389 | * 00: The Hw sector is 256 bytes, hence we need to erase 16 |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3390 | * consecutive sectors. The start index for the nth Hw sector |
| 3391 | * can be calculated as = bank * 4096 + n * 256 |
| 3392 | * 01: The Hw sector is 4K bytes, hence we need to erase 1 sector. |
| 3393 | * The start index for the nth Hw sector can be calculated |
| 3394 | * as = bank * 4096 |
| 3395 | * 10: The Hw sector is 8K bytes, nth sector = bank * 8192 |
| 3396 | * (ich9 only, otherwise error condition) |
| 3397 | * 11: The Hw sector is 64K bytes, nth sector = bank * 65536 |
| 3398 | */ |
| 3399 | switch (hsfsts.hsf_status.berasesz) { |
| 3400 | case 0: |
| 3401 | /* Hw sector size 256 */ |
| 3402 | sector_size = ICH_FLASH_SEG_SIZE_256; |
| 3403 | iteration = flash_bank_size / ICH_FLASH_SEG_SIZE_256; |
| 3404 | break; |
| 3405 | case 1: |
| 3406 | sector_size = ICH_FLASH_SEG_SIZE_4K; |
Bruce Allan | 28c9195 | 2009-07-01 13:28:32 +0000 | [diff] [blame] | 3407 | iteration = 1; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3408 | break; |
| 3409 | case 2: |
Bruce Allan | 148675a | 2009-08-07 07:41:56 +0000 | [diff] [blame] | 3410 | sector_size = ICH_FLASH_SEG_SIZE_8K; |
| 3411 | iteration = 1; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3412 | break; |
| 3413 | case 3: |
| 3414 | sector_size = ICH_FLASH_SEG_SIZE_64K; |
Bruce Allan | 28c9195 | 2009-07-01 13:28:32 +0000 | [diff] [blame] | 3415 | iteration = 1; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3416 | break; |
| 3417 | default: |
| 3418 | return -E1000_ERR_NVM; |
| 3419 | } |
| 3420 | |
| 3421 | /* Start with the base address, then add the sector offset. */ |
| 3422 | flash_linear_addr = hw->nvm.flash_base_addr; |
Bruce Allan | 148675a | 2009-08-07 07:41:56 +0000 | [diff] [blame] | 3423 | flash_linear_addr += (bank) ? flash_bank_size : 0; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3424 | |
Bruce Allan | 53aa82d | 2013-02-20 04:06:06 +0000 | [diff] [blame] | 3425 | for (j = 0; j < iteration; j++) { |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3426 | do { |
Bruce Allan | 17e813e | 2013-02-20 04:06:01 +0000 | [diff] [blame] | 3427 | u32 timeout = ICH_FLASH_ERASE_COMMAND_TIMEOUT; |
| 3428 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3429 | /* Steps */ |
| 3430 | ret_val = e1000_flash_cycle_init_ich8lan(hw); |
| 3431 | if (ret_val) |
| 3432 | return ret_val; |
| 3433 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 3434 | /* Write a value 11 (block Erase) in Flash |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 3435 | * Cycle field in hw flash control |
| 3436 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3437 | hsflctl.regval = er16flash(ICH_FLASH_HSFCTL); |
| 3438 | hsflctl.hsf_ctrl.flcycle = ICH_CYCLE_ERASE; |
| 3439 | ew16flash(ICH_FLASH_HSFCTL, hsflctl.regval); |
| 3440 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 3441 | /* Write the last 24 bits of an index within the |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3442 | * block into Flash Linear address field in Flash |
| 3443 | * Address. |
| 3444 | */ |
| 3445 | flash_linear_addr += (j * sector_size); |
| 3446 | ew32flash(ICH_FLASH_FADDR, flash_linear_addr); |
| 3447 | |
Bruce Allan | 17e813e | 2013-02-20 04:06:01 +0000 | [diff] [blame] | 3448 | ret_val = e1000_flash_cycle_ich8lan(hw, timeout); |
Bruce Allan | 9e2d765 | 2012-01-31 06:37:27 +0000 | [diff] [blame] | 3449 | if (!ret_val) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3450 | break; |
| 3451 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 3452 | /* Check if FCERR is set to 1. If 1, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3453 | * clear it and try the whole sequence |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 3454 | * a few more times else Done |
| 3455 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3456 | hsfsts.regval = er16flash(ICH_FLASH_HSFSTS); |
Bruce Allan | 04499ec | 2012-04-13 00:08:31 +0000 | [diff] [blame] | 3457 | if (hsfsts.hsf_status.flcerr) |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 3458 | /* repeat for some time before giving up */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3459 | continue; |
Bruce Allan | 04499ec | 2012-04-13 00:08:31 +0000 | [diff] [blame] | 3460 | else if (!hsfsts.hsf_status.flcdone) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3461 | return ret_val; |
| 3462 | } while (++count < ICH_FLASH_CYCLE_REPEAT_COUNT); |
| 3463 | } |
| 3464 | |
| 3465 | return 0; |
| 3466 | } |
| 3467 | |
| 3468 | /** |
| 3469 | * e1000_valid_led_default_ich8lan - Set the default LED settings |
| 3470 | * @hw: pointer to the HW structure |
| 3471 | * @data: Pointer to the LED settings |
| 3472 | * |
| 3473 | * Reads the LED default settings from the NVM to data. If the NVM LED |
| 3474 | * settings is all 0's or F's, set the LED default to a valid LED default |
| 3475 | * setting. |
| 3476 | **/ |
| 3477 | static s32 e1000_valid_led_default_ich8lan(struct e1000_hw *hw, u16 *data) |
| 3478 | { |
| 3479 | s32 ret_val; |
| 3480 | |
| 3481 | ret_val = e1000_read_nvm(hw, NVM_ID_LED_SETTINGS, 1, data); |
| 3482 | if (ret_val) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 3483 | e_dbg("NVM Read Error\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3484 | return ret_val; |
| 3485 | } |
| 3486 | |
Bruce Allan | e5fe254 | 2013-02-20 04:06:27 +0000 | [diff] [blame] | 3487 | if (*data == ID_LED_RESERVED_0000 || *data == ID_LED_RESERVED_FFFF) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3488 | *data = ID_LED_DEFAULT_ICH8LAN; |
| 3489 | |
| 3490 | return 0; |
| 3491 | } |
| 3492 | |
| 3493 | /** |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3494 | * e1000_id_led_init_pchlan - store LED configurations |
| 3495 | * @hw: pointer to the HW structure |
| 3496 | * |
| 3497 | * PCH does not control LEDs via the LEDCTL register, rather it uses |
| 3498 | * the PHY LED configuration register. |
| 3499 | * |
| 3500 | * PCH also does not have an "always on" or "always off" mode which |
| 3501 | * complicates the ID feature. Instead of using the "on" mode to indicate |
Bruce Allan | d1964eb | 2012-02-22 09:02:21 +0000 | [diff] [blame] | 3502 | * in ledctl_mode2 the LEDs to use for ID (see e1000e_id_led_init_generic()), |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3503 | * use "link_up" mode. The LEDs will still ID on request if there is no |
| 3504 | * link based on logic in e1000_led_[on|off]_pchlan(). |
| 3505 | **/ |
| 3506 | static s32 e1000_id_led_init_pchlan(struct e1000_hw *hw) |
| 3507 | { |
| 3508 | struct e1000_mac_info *mac = &hw->mac; |
| 3509 | s32 ret_val; |
| 3510 | const u32 ledctl_on = E1000_LEDCTL_MODE_LINK_UP; |
| 3511 | const u32 ledctl_off = E1000_LEDCTL_MODE_LINK_UP | E1000_PHY_LED0_IVRT; |
| 3512 | u16 data, i, temp, shift; |
| 3513 | |
| 3514 | /* Get default ID LED modes */ |
| 3515 | ret_val = hw->nvm.ops.valid_led_default(hw, &data); |
| 3516 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 3517 | return ret_val; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3518 | |
| 3519 | mac->ledctl_default = er32(LEDCTL); |
| 3520 | mac->ledctl_mode1 = mac->ledctl_default; |
| 3521 | mac->ledctl_mode2 = mac->ledctl_default; |
| 3522 | |
| 3523 | for (i = 0; i < 4; i++) { |
| 3524 | temp = (data >> (i << 2)) & E1000_LEDCTL_LED0_MODE_MASK; |
| 3525 | shift = (i * 5); |
| 3526 | switch (temp) { |
| 3527 | case ID_LED_ON1_DEF2: |
| 3528 | case ID_LED_ON1_ON2: |
| 3529 | case ID_LED_ON1_OFF2: |
| 3530 | mac->ledctl_mode1 &= ~(E1000_PHY_LED0_MASK << shift); |
| 3531 | mac->ledctl_mode1 |= (ledctl_on << shift); |
| 3532 | break; |
| 3533 | case ID_LED_OFF1_DEF2: |
| 3534 | case ID_LED_OFF1_ON2: |
| 3535 | case ID_LED_OFF1_OFF2: |
| 3536 | mac->ledctl_mode1 &= ~(E1000_PHY_LED0_MASK << shift); |
| 3537 | mac->ledctl_mode1 |= (ledctl_off << shift); |
| 3538 | break; |
| 3539 | default: |
| 3540 | /* Do nothing */ |
| 3541 | break; |
| 3542 | } |
| 3543 | switch (temp) { |
| 3544 | case ID_LED_DEF1_ON2: |
| 3545 | case ID_LED_ON1_ON2: |
| 3546 | case ID_LED_OFF1_ON2: |
| 3547 | mac->ledctl_mode2 &= ~(E1000_PHY_LED0_MASK << shift); |
| 3548 | mac->ledctl_mode2 |= (ledctl_on << shift); |
| 3549 | break; |
| 3550 | case ID_LED_DEF1_OFF2: |
| 3551 | case ID_LED_ON1_OFF2: |
| 3552 | case ID_LED_OFF1_OFF2: |
| 3553 | mac->ledctl_mode2 &= ~(E1000_PHY_LED0_MASK << shift); |
| 3554 | mac->ledctl_mode2 |= (ledctl_off << shift); |
| 3555 | break; |
| 3556 | default: |
| 3557 | /* Do nothing */ |
| 3558 | break; |
| 3559 | } |
| 3560 | } |
| 3561 | |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 3562 | return 0; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3563 | } |
| 3564 | |
| 3565 | /** |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3566 | * e1000_get_bus_info_ich8lan - Get/Set the bus type and width |
| 3567 | * @hw: pointer to the HW structure |
| 3568 | * |
| 3569 | * ICH8 use the PCI Express bus, but does not contain a PCI Express Capability |
| 3570 | * register, so the the bus width is hard coded. |
| 3571 | **/ |
| 3572 | static s32 e1000_get_bus_info_ich8lan(struct e1000_hw *hw) |
| 3573 | { |
| 3574 | struct e1000_bus_info *bus = &hw->bus; |
| 3575 | s32 ret_val; |
| 3576 | |
| 3577 | ret_val = e1000e_get_bus_info_pcie(hw); |
| 3578 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 3579 | /* ICH devices are "PCI Express"-ish. They have |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3580 | * a configuration space, but do not contain |
| 3581 | * PCI Express Capability registers, so bus width |
| 3582 | * must be hardcoded. |
| 3583 | */ |
| 3584 | if (bus->width == e1000_bus_width_unknown) |
| 3585 | bus->width = e1000_bus_width_pcie_x1; |
| 3586 | |
| 3587 | return ret_val; |
| 3588 | } |
| 3589 | |
| 3590 | /** |
| 3591 | * e1000_reset_hw_ich8lan - Reset the hardware |
| 3592 | * @hw: pointer to the HW structure |
| 3593 | * |
| 3594 | * Does a full reset of the hardware which includes a reset of the PHY and |
| 3595 | * MAC. |
| 3596 | **/ |
| 3597 | static s32 e1000_reset_hw_ich8lan(struct e1000_hw *hw) |
| 3598 | { |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 3599 | struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan; |
Bruce Allan | 62bc813 | 2012-03-20 03:47:57 +0000 | [diff] [blame] | 3600 | u16 kum_cfg; |
| 3601 | u32 ctrl, reg; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3602 | s32 ret_val; |
| 3603 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 3604 | /* Prevent the PCI-E bus from sticking if there is no TLP connection |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3605 | * on the last TLP read/write transaction when MAC is reset. |
| 3606 | */ |
| 3607 | ret_val = e1000e_disable_pcie_master(hw); |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 3608 | if (ret_val) |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 3609 | e_dbg("PCI-E Master disable polling has failed.\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3610 | |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 3611 | e_dbg("Masking off all interrupts\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3612 | ew32(IMC, 0xffffffff); |
| 3613 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 3614 | /* Disable the Transmit and Receive units. Then delay to allow |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3615 | * any pending transactions to complete before we hit the MAC |
| 3616 | * with the global reset. |
| 3617 | */ |
| 3618 | ew32(RCTL, 0); |
| 3619 | ew32(TCTL, E1000_TCTL_PSP); |
| 3620 | e1e_flush(); |
| 3621 | |
Bruce Allan | 1bba438 | 2011-03-19 00:27:20 +0000 | [diff] [blame] | 3622 | usleep_range(10000, 20000); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3623 | |
| 3624 | /* Workaround for ICH8 bit corruption issue in FIFO memory */ |
| 3625 | if (hw->mac.type == e1000_ich8lan) { |
| 3626 | /* Set Tx and Rx buffer allocation to 8k apiece. */ |
| 3627 | ew32(PBA, E1000_PBA_8K); |
| 3628 | /* Set Packet Buffer Size to 16k. */ |
| 3629 | ew32(PBS, E1000_PBS_16K); |
| 3630 | } |
| 3631 | |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 3632 | if (hw->mac.type == e1000_pchlan) { |
Bruce Allan | 62bc813 | 2012-03-20 03:47:57 +0000 | [diff] [blame] | 3633 | /* Save the NVM K1 bit setting */ |
| 3634 | ret_val = e1000_read_nvm(hw, E1000_NVM_K1_CONFIG, 1, &kum_cfg); |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 3635 | if (ret_val) |
| 3636 | return ret_val; |
| 3637 | |
Bruce Allan | 62bc813 | 2012-03-20 03:47:57 +0000 | [diff] [blame] | 3638 | if (kum_cfg & E1000_NVM_K1_ENABLE) |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 3639 | dev_spec->nvm_k1_enabled = true; |
| 3640 | else |
| 3641 | dev_spec->nvm_k1_enabled = false; |
| 3642 | } |
| 3643 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3644 | ctrl = er32(CTRL); |
| 3645 | |
Bruce Allan | 44abd5c | 2012-02-22 09:02:37 +0000 | [diff] [blame] | 3646 | if (!hw->phy.ops.check_reset_block(hw)) { |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 3647 | /* Full-chip reset requires MAC and PHY reset at the same |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3648 | * time to make sure the interface between MAC and the |
| 3649 | * external PHY is reset. |
| 3650 | */ |
| 3651 | ctrl |= E1000_CTRL_PHY_RST; |
Bruce Allan | 605c82b | 2010-09-22 17:17:01 +0000 | [diff] [blame] | 3652 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 3653 | /* Gate automatic PHY configuration by hardware on |
Bruce Allan | 605c82b | 2010-09-22 17:17:01 +0000 | [diff] [blame] | 3654 | * non-managed 82579 |
| 3655 | */ |
| 3656 | if ((hw->mac.type == e1000_pch2lan) && |
| 3657 | !(er32(FWSM) & E1000_ICH_FWSM_FW_VALID)) |
| 3658 | e1000_gate_hw_phy_config_ich8lan(hw, true); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3659 | } |
| 3660 | ret_val = e1000_acquire_swflag_ich8lan(hw); |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 3661 | e_dbg("Issuing a global reset to ich8lan\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3662 | ew32(CTRL, (ctrl | E1000_CTRL_RST)); |
Jesse Brandeburg | 945a515 | 2011-07-20 00:56:21 +0000 | [diff] [blame] | 3663 | /* cannot issue a flush here because it hangs the hardware */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3664 | msleep(20); |
| 3665 | |
Bruce Allan | 62bc813 | 2012-03-20 03:47:57 +0000 | [diff] [blame] | 3666 | /* Set Phy Config Counter to 50msec */ |
| 3667 | if (hw->mac.type == e1000_pch2lan) { |
| 3668 | reg = er32(FEXTNVM3); |
| 3669 | reg &= ~E1000_FEXTNVM3_PHY_CFG_COUNTER_MASK; |
| 3670 | reg |= E1000_FEXTNVM3_PHY_CFG_COUNTER_50MSEC; |
| 3671 | ew32(FEXTNVM3, reg); |
| 3672 | } |
| 3673 | |
Bruce Allan | fc0c776 | 2009-07-01 13:27:55 +0000 | [diff] [blame] | 3674 | if (!ret_val) |
Bruce Allan | a90b412 | 2011-10-07 03:50:38 +0000 | [diff] [blame] | 3675 | clear_bit(__E1000_ACCESS_SHARED_RESOURCE, &hw->adapter->state); |
Jesse Brandeburg | 37f4023 | 2008-10-02 16:33:20 -0700 | [diff] [blame] | 3676 | |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 3677 | if (ctrl & E1000_CTRL_PHY_RST) { |
Bruce Allan | fc0c776 | 2009-07-01 13:27:55 +0000 | [diff] [blame] | 3678 | ret_val = hw->phy.ops.get_cfg_done(hw); |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 3679 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 3680 | return ret_val; |
Bruce Allan | fc0c776 | 2009-07-01 13:27:55 +0000 | [diff] [blame] | 3681 | |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 3682 | ret_val = e1000_post_phy_reset_ich8lan(hw); |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 3683 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 3684 | return ret_val; |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 3685 | } |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 3686 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 3687 | /* For PCH, this write will make sure that any noise |
Bruce Allan | 7d3cabb | 2009-07-01 13:29:08 +0000 | [diff] [blame] | 3688 | * will be detected as a CRC error and be dropped rather than show up |
| 3689 | * as a bad packet to the DMA engine. |
| 3690 | */ |
| 3691 | if (hw->mac.type == e1000_pchlan) |
| 3692 | ew32(CRC_OFFSET, 0x65656565); |
| 3693 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3694 | ew32(IMC, 0xffffffff); |
Bruce Allan | dd93f95 | 2011-01-06 14:29:48 +0000 | [diff] [blame] | 3695 | er32(ICR); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3696 | |
Bruce Allan | 62bc813 | 2012-03-20 03:47:57 +0000 | [diff] [blame] | 3697 | reg = er32(KABGTXD); |
| 3698 | reg |= E1000_KABGTXD_BGSQLBIAS; |
| 3699 | ew32(KABGTXD, reg); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3700 | |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 3701 | return 0; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3702 | } |
| 3703 | |
| 3704 | /** |
| 3705 | * e1000_init_hw_ich8lan - Initialize the hardware |
| 3706 | * @hw: pointer to the HW structure |
| 3707 | * |
| 3708 | * Prepares the hardware for transmit and receive by doing the following: |
| 3709 | * - initialize hardware bits |
| 3710 | * - initialize LED identification |
| 3711 | * - setup receive address registers |
| 3712 | * - setup flow control |
Auke Kok | 489815c | 2008-02-21 15:11:07 -0800 | [diff] [blame] | 3713 | * - setup transmit descriptors |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3714 | * - clear statistics |
| 3715 | **/ |
| 3716 | static s32 e1000_init_hw_ich8lan(struct e1000_hw *hw) |
| 3717 | { |
| 3718 | struct e1000_mac_info *mac = &hw->mac; |
| 3719 | u32 ctrl_ext, txdctl, snoop; |
| 3720 | s32 ret_val; |
| 3721 | u16 i; |
| 3722 | |
| 3723 | e1000_initialize_hw_bits_ich8lan(hw); |
| 3724 | |
| 3725 | /* Initialize identification LED */ |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3726 | ret_val = mac->ops.id_led_init(hw); |
Bruce Allan | 33550ce | 2013-02-20 04:06:16 +0000 | [diff] [blame] | 3727 | /* An error is not fatal and we should not stop init due to this */ |
Bruce Allan | de39b75 | 2009-11-20 23:27:59 +0000 | [diff] [blame] | 3728 | if (ret_val) |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 3729 | e_dbg("Error initializing identification LED\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3730 | |
| 3731 | /* Setup the receive address. */ |
| 3732 | e1000e_init_rx_addrs(hw, mac->rar_entry_count); |
| 3733 | |
| 3734 | /* Zero out the Multicast HASH table */ |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 3735 | e_dbg("Zeroing the MTA\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3736 | for (i = 0; i < mac->mta_reg_count; i++) |
| 3737 | E1000_WRITE_REG_ARRAY(hw, E1000_MTA, i, 0); |
| 3738 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 3739 | /* The 82578 Rx buffer will stall if wakeup is enabled in host and |
Bruce Allan | 3ebfc7c | 2011-05-13 07:20:14 +0000 | [diff] [blame] | 3740 | * the ME. Disable wakeup by clearing the host wakeup bit. |
Bruce Allan | fc0c776 | 2009-07-01 13:27:55 +0000 | [diff] [blame] | 3741 | * Reset the phy after disabling host wakeup to reset the Rx buffer. |
| 3742 | */ |
| 3743 | if (hw->phy.type == e1000_phy_82578) { |
Bruce Allan | 3ebfc7c | 2011-05-13 07:20:14 +0000 | [diff] [blame] | 3744 | e1e_rphy(hw, BM_PORT_GEN_CFG, &i); |
| 3745 | i &= ~BM_WUC_HOST_WU_BIT; |
| 3746 | e1e_wphy(hw, BM_PORT_GEN_CFG, i); |
Bruce Allan | fc0c776 | 2009-07-01 13:27:55 +0000 | [diff] [blame] | 3747 | ret_val = e1000_phy_hw_reset_ich8lan(hw); |
| 3748 | if (ret_val) |
| 3749 | return ret_val; |
| 3750 | } |
| 3751 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3752 | /* Setup link and flow control */ |
Bruce Allan | 1a46b40 | 2012-02-22 09:02:26 +0000 | [diff] [blame] | 3753 | ret_val = mac->ops.setup_link(hw); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3754 | |
| 3755 | /* Set the transmit descriptor write-back policy for both queues */ |
Jeff Kirsher | e9ec2c0 | 2008-04-02 13:48:13 -0700 | [diff] [blame] | 3756 | txdctl = er32(TXDCTL(0)); |
Bruce Allan | f0ff439 | 2013-02-20 04:05:39 +0000 | [diff] [blame] | 3757 | txdctl = ((txdctl & ~E1000_TXDCTL_WTHRESH) | |
| 3758 | E1000_TXDCTL_FULL_TX_DESC_WB); |
| 3759 | txdctl = ((txdctl & ~E1000_TXDCTL_PTHRESH) | |
| 3760 | E1000_TXDCTL_MAX_TX_DESC_PREFETCH); |
Jeff Kirsher | e9ec2c0 | 2008-04-02 13:48:13 -0700 | [diff] [blame] | 3761 | ew32(TXDCTL(0), txdctl); |
| 3762 | txdctl = er32(TXDCTL(1)); |
Bruce Allan | f0ff439 | 2013-02-20 04:05:39 +0000 | [diff] [blame] | 3763 | txdctl = ((txdctl & ~E1000_TXDCTL_WTHRESH) | |
| 3764 | E1000_TXDCTL_FULL_TX_DESC_WB); |
| 3765 | txdctl = ((txdctl & ~E1000_TXDCTL_PTHRESH) | |
| 3766 | E1000_TXDCTL_MAX_TX_DESC_PREFETCH); |
Jeff Kirsher | e9ec2c0 | 2008-04-02 13:48:13 -0700 | [diff] [blame] | 3767 | ew32(TXDCTL(1), txdctl); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3768 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 3769 | /* ICH8 has opposite polarity of no_snoop bits. |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 3770 | * By default, we should use snoop behavior. |
| 3771 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3772 | if (mac->type == e1000_ich8lan) |
| 3773 | snoop = PCIE_ICH8_SNOOP_ALL; |
| 3774 | else |
Bruce Allan | 53aa82d | 2013-02-20 04:06:06 +0000 | [diff] [blame] | 3775 | snoop = (u32)~(PCIE_NO_SNOOP_ALL); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3776 | e1000e_set_pcie_no_snoop(hw, snoop); |
| 3777 | |
| 3778 | ctrl_ext = er32(CTRL_EXT); |
| 3779 | ctrl_ext |= E1000_CTRL_EXT_RO_DIS; |
| 3780 | ew32(CTRL_EXT, ctrl_ext); |
| 3781 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 3782 | /* Clear all of the statistics registers (clear on read). It is |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3783 | * important that we do this after we have tried to establish link |
| 3784 | * because the symbol error count will increment wildly if there |
| 3785 | * is no link. |
| 3786 | */ |
| 3787 | e1000_clear_hw_cntrs_ich8lan(hw); |
| 3788 | |
Bruce Allan | e561a70 | 2012-02-08 02:55:46 +0000 | [diff] [blame] | 3789 | return ret_val; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3790 | } |
Bruce Allan | fc830b7 | 2013-02-20 04:06:11 +0000 | [diff] [blame] | 3791 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3792 | /** |
| 3793 | * e1000_initialize_hw_bits_ich8lan - Initialize required hardware bits |
| 3794 | * @hw: pointer to the HW structure |
| 3795 | * |
| 3796 | * Sets/Clears required hardware bits necessary for correctly setting up the |
| 3797 | * hardware for transmit and receive. |
| 3798 | **/ |
| 3799 | static void e1000_initialize_hw_bits_ich8lan(struct e1000_hw *hw) |
| 3800 | { |
| 3801 | u32 reg; |
| 3802 | |
| 3803 | /* Extended Device Control */ |
| 3804 | reg = er32(CTRL_EXT); |
| 3805 | reg |= (1 << 22); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3806 | /* Enable PHY low-power state when MAC is at D3 w/o WoL */ |
| 3807 | if (hw->mac.type >= e1000_pchlan) |
| 3808 | reg |= E1000_CTRL_EXT_PHYPDEN; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3809 | ew32(CTRL_EXT, reg); |
| 3810 | |
| 3811 | /* Transmit Descriptor Control 0 */ |
Jeff Kirsher | e9ec2c0 | 2008-04-02 13:48:13 -0700 | [diff] [blame] | 3812 | reg = er32(TXDCTL(0)); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3813 | reg |= (1 << 22); |
Jeff Kirsher | e9ec2c0 | 2008-04-02 13:48:13 -0700 | [diff] [blame] | 3814 | ew32(TXDCTL(0), reg); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3815 | |
| 3816 | /* Transmit Descriptor Control 1 */ |
Jeff Kirsher | e9ec2c0 | 2008-04-02 13:48:13 -0700 | [diff] [blame] | 3817 | reg = er32(TXDCTL(1)); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3818 | reg |= (1 << 22); |
Jeff Kirsher | e9ec2c0 | 2008-04-02 13:48:13 -0700 | [diff] [blame] | 3819 | ew32(TXDCTL(1), reg); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3820 | |
| 3821 | /* Transmit Arbitration Control 0 */ |
Jeff Kirsher | e9ec2c0 | 2008-04-02 13:48:13 -0700 | [diff] [blame] | 3822 | reg = er32(TARC(0)); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3823 | if (hw->mac.type == e1000_ich8lan) |
| 3824 | reg |= (1 << 28) | (1 << 29); |
| 3825 | reg |= (1 << 23) | (1 << 24) | (1 << 26) | (1 << 27); |
Jeff Kirsher | e9ec2c0 | 2008-04-02 13:48:13 -0700 | [diff] [blame] | 3826 | ew32(TARC(0), reg); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3827 | |
| 3828 | /* Transmit Arbitration Control 1 */ |
Jeff Kirsher | e9ec2c0 | 2008-04-02 13:48:13 -0700 | [diff] [blame] | 3829 | reg = er32(TARC(1)); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3830 | if (er32(TCTL) & E1000_TCTL_MULR) |
| 3831 | reg &= ~(1 << 28); |
| 3832 | else |
| 3833 | reg |= (1 << 28); |
| 3834 | reg |= (1 << 24) | (1 << 26) | (1 << 30); |
Jeff Kirsher | e9ec2c0 | 2008-04-02 13:48:13 -0700 | [diff] [blame] | 3835 | ew32(TARC(1), reg); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3836 | |
| 3837 | /* Device Status */ |
| 3838 | if (hw->mac.type == e1000_ich8lan) { |
| 3839 | reg = er32(STATUS); |
| 3840 | reg &= ~(1 << 31); |
| 3841 | ew32(STATUS, reg); |
| 3842 | } |
Jesse Brandeburg | a80483d | 2010-03-05 02:21:44 +0000 | [diff] [blame] | 3843 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 3844 | /* work-around descriptor data corruption issue during nfs v2 udp |
Jesse Brandeburg | a80483d | 2010-03-05 02:21:44 +0000 | [diff] [blame] | 3845 | * traffic, just disable the nfs filtering capability |
| 3846 | */ |
| 3847 | reg = er32(RFCTL); |
| 3848 | reg |= (E1000_RFCTL_NFSW_DIS | E1000_RFCTL_NFSR_DIS); |
Matthew Vick | f6bd557 | 2012-04-25 08:01:05 +0000 | [diff] [blame] | 3849 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 3850 | /* Disable IPv6 extension header parsing because some malformed |
Matthew Vick | f6bd557 | 2012-04-25 08:01:05 +0000 | [diff] [blame] | 3851 | * IPv6 headers can hang the Rx. |
| 3852 | */ |
| 3853 | if (hw->mac.type == e1000_ich8lan) |
| 3854 | reg |= (E1000_RFCTL_IPV6_EX_DIS | E1000_RFCTL_NEW_IPV6_EXT_DIS); |
Jesse Brandeburg | a80483d | 2010-03-05 02:21:44 +0000 | [diff] [blame] | 3855 | ew32(RFCTL, reg); |
Bruce Allan | 94fb848 | 2013-01-23 09:00:03 +0000 | [diff] [blame] | 3856 | |
| 3857 | /* Enable ECC on Lynxpoint */ |
| 3858 | if (hw->mac.type == e1000_pch_lpt) { |
| 3859 | reg = er32(PBECCSTS); |
| 3860 | reg |= E1000_PBECCSTS_ECC_ENABLE; |
| 3861 | ew32(PBECCSTS, reg); |
| 3862 | |
| 3863 | reg = er32(CTRL); |
| 3864 | reg |= E1000_CTRL_MEHE; |
| 3865 | ew32(CTRL, reg); |
| 3866 | } |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3867 | } |
| 3868 | |
| 3869 | /** |
| 3870 | * e1000_setup_link_ich8lan - Setup flow control and link settings |
| 3871 | * @hw: pointer to the HW structure |
| 3872 | * |
| 3873 | * Determines which flow control settings to use, then configures flow |
| 3874 | * control. Calls the appropriate media-specific link configuration |
| 3875 | * function. Assuming the adapter has a valid link partner, a valid link |
| 3876 | * should be established. Assumes the hardware has previously been reset |
| 3877 | * and the transmitter and receiver are not enabled. |
| 3878 | **/ |
| 3879 | static s32 e1000_setup_link_ich8lan(struct e1000_hw *hw) |
| 3880 | { |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3881 | s32 ret_val; |
| 3882 | |
Bruce Allan | 44abd5c | 2012-02-22 09:02:37 +0000 | [diff] [blame] | 3883 | if (hw->phy.ops.check_reset_block(hw)) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3884 | return 0; |
| 3885 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 3886 | /* ICH parts do not have a word in the NVM to determine |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3887 | * the default flow control setting, so we explicitly |
| 3888 | * set it to full. |
| 3889 | */ |
Bruce Allan | 37289d9 | 2009-06-02 11:29:37 +0000 | [diff] [blame] | 3890 | if (hw->fc.requested_mode == e1000_fc_default) { |
| 3891 | /* Workaround h/w hang when Tx flow control enabled */ |
| 3892 | if (hw->mac.type == e1000_pchlan) |
| 3893 | hw->fc.requested_mode = e1000_fc_rx_pause; |
| 3894 | else |
| 3895 | hw->fc.requested_mode = e1000_fc_full; |
| 3896 | } |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3897 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 3898 | /* Save off the requested flow control mode for use later. Depending |
Bruce Allan | 5c48ef3e2 | 2008-11-21 16:57:36 -0800 | [diff] [blame] | 3899 | * on the link partner's capabilities, we may or may not use this mode. |
| 3900 | */ |
| 3901 | hw->fc.current_mode = hw->fc.requested_mode; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3902 | |
Bruce Allan | 17e813e | 2013-02-20 04:06:01 +0000 | [diff] [blame] | 3903 | e_dbg("After fix-ups FlowControl is now = %x\n", hw->fc.current_mode); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3904 | |
| 3905 | /* Continue to configure the copper link. */ |
Bruce Allan | 944ce01 | 2012-02-22 09:02:42 +0000 | [diff] [blame] | 3906 | ret_val = hw->mac.ops.setup_physical_interface(hw); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3907 | if (ret_val) |
| 3908 | return ret_val; |
| 3909 | |
Jeff Kirsher | 318a94d | 2008-03-28 09:15:16 -0700 | [diff] [blame] | 3910 | ew32(FCTTV, hw->fc.pause_time); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3911 | if ((hw->phy.type == e1000_phy_82578) || |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 3912 | (hw->phy.type == e1000_phy_82579) || |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 3913 | (hw->phy.type == e1000_phy_i217) || |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3914 | (hw->phy.type == e1000_phy_82577)) { |
Bruce Allan | a305595 | 2010-05-10 15:02:12 +0000 | [diff] [blame] | 3915 | ew32(FCRTV_PCH, hw->fc.refresh_time); |
| 3916 | |
Bruce Allan | 482fed8 | 2011-01-06 14:29:49 +0000 | [diff] [blame] | 3917 | ret_val = e1e_wphy(hw, PHY_REG(BM_PORT_CTRL_PAGE, 27), |
| 3918 | hw->fc.pause_time); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3919 | if (ret_val) |
| 3920 | return ret_val; |
| 3921 | } |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3922 | |
| 3923 | return e1000e_set_fc_watermarks(hw); |
| 3924 | } |
| 3925 | |
| 3926 | /** |
| 3927 | * e1000_setup_copper_link_ich8lan - Configure MAC/PHY interface |
| 3928 | * @hw: pointer to the HW structure |
| 3929 | * |
| 3930 | * Configures the kumeran interface to the PHY to wait the appropriate time |
| 3931 | * when polling the PHY, then call the generic setup_copper_link to finish |
| 3932 | * configuring the copper link. |
| 3933 | **/ |
| 3934 | static s32 e1000_setup_copper_link_ich8lan(struct e1000_hw *hw) |
| 3935 | { |
| 3936 | u32 ctrl; |
| 3937 | s32 ret_val; |
| 3938 | u16 reg_data; |
| 3939 | |
| 3940 | ctrl = er32(CTRL); |
| 3941 | ctrl |= E1000_CTRL_SLU; |
| 3942 | ctrl &= ~(E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX); |
| 3943 | ew32(CTRL, ctrl); |
| 3944 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 3945 | /* Set the mac to wait the maximum time between each iteration |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3946 | * and increase the max iterations when polling the phy; |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 3947 | * this fixes erroneous timeouts at 10Mbps. |
| 3948 | */ |
Bruce Allan | 0781895 | 2009-12-08 07:28:01 +0000 | [diff] [blame] | 3949 | ret_val = e1000e_write_kmrn_reg(hw, E1000_KMRNCTRLSTA_TIMEOUTS, 0xFFFF); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3950 | if (ret_val) |
| 3951 | return ret_val; |
Bruce Allan | 0781895 | 2009-12-08 07:28:01 +0000 | [diff] [blame] | 3952 | ret_val = e1000e_read_kmrn_reg(hw, E1000_KMRNCTRLSTA_INBAND_PARAM, |
Bruce Allan | f0ff439 | 2013-02-20 04:05:39 +0000 | [diff] [blame] | 3953 | ®_data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3954 | if (ret_val) |
| 3955 | return ret_val; |
| 3956 | reg_data |= 0x3F; |
Bruce Allan | 0781895 | 2009-12-08 07:28:01 +0000 | [diff] [blame] | 3957 | ret_val = e1000e_write_kmrn_reg(hw, E1000_KMRNCTRLSTA_INBAND_PARAM, |
Bruce Allan | f0ff439 | 2013-02-20 04:05:39 +0000 | [diff] [blame] | 3958 | reg_data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3959 | if (ret_val) |
| 3960 | return ret_val; |
| 3961 | |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3962 | switch (hw->phy.type) { |
| 3963 | case e1000_phy_igp_3: |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3964 | ret_val = e1000e_copper_link_setup_igp(hw); |
| 3965 | if (ret_val) |
| 3966 | return ret_val; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3967 | break; |
| 3968 | case e1000_phy_bm: |
| 3969 | case e1000_phy_82578: |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 3970 | ret_val = e1000e_copper_link_setup_m88(hw); |
| 3971 | if (ret_val) |
| 3972 | return ret_val; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3973 | break; |
| 3974 | case e1000_phy_82577: |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 3975 | case e1000_phy_82579: |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3976 | ret_val = e1000_copper_link_setup_82577(hw); |
| 3977 | if (ret_val) |
| 3978 | return ret_val; |
| 3979 | break; |
| 3980 | case e1000_phy_ife: |
Bruce Allan | 482fed8 | 2011-01-06 14:29:49 +0000 | [diff] [blame] | 3981 | ret_val = e1e_rphy(hw, IFE_PHY_MDIX_CONTROL, ®_data); |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 3982 | if (ret_val) |
| 3983 | return ret_val; |
| 3984 | |
| 3985 | reg_data &= ~IFE_PMC_AUTO_MDIX; |
| 3986 | |
| 3987 | switch (hw->phy.mdix) { |
| 3988 | case 1: |
| 3989 | reg_data &= ~IFE_PMC_FORCE_MDIX; |
| 3990 | break; |
| 3991 | case 2: |
| 3992 | reg_data |= IFE_PMC_FORCE_MDIX; |
| 3993 | break; |
| 3994 | case 0: |
| 3995 | default: |
| 3996 | reg_data |= IFE_PMC_AUTO_MDIX; |
| 3997 | break; |
| 3998 | } |
Bruce Allan | 482fed8 | 2011-01-06 14:29:49 +0000 | [diff] [blame] | 3999 | ret_val = e1e_wphy(hw, IFE_PHY_MDIX_CONTROL, reg_data); |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 4000 | if (ret_val) |
| 4001 | return ret_val; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 4002 | break; |
| 4003 | default: |
| 4004 | break; |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 4005 | } |
Bruce Allan | 3fa829363 | 2012-02-08 02:55:40 +0000 | [diff] [blame] | 4006 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4007 | return e1000e_setup_copper_link(hw); |
| 4008 | } |
| 4009 | |
| 4010 | /** |
Bruce Allan | ea8179a | 2013-03-06 09:02:47 +0000 | [diff] [blame] | 4011 | * e1000_setup_copper_link_pch_lpt - Configure MAC/PHY interface |
| 4012 | * @hw: pointer to the HW structure |
| 4013 | * |
| 4014 | * Calls the PHY specific link setup function and then calls the |
| 4015 | * generic setup_copper_link to finish configuring the link for |
| 4016 | * Lynxpoint PCH devices |
| 4017 | **/ |
| 4018 | static s32 e1000_setup_copper_link_pch_lpt(struct e1000_hw *hw) |
| 4019 | { |
| 4020 | u32 ctrl; |
| 4021 | s32 ret_val; |
| 4022 | |
| 4023 | ctrl = er32(CTRL); |
| 4024 | ctrl |= E1000_CTRL_SLU; |
| 4025 | ctrl &= ~(E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX); |
| 4026 | ew32(CTRL, ctrl); |
| 4027 | |
| 4028 | ret_val = e1000_copper_link_setup_82577(hw); |
| 4029 | if (ret_val) |
| 4030 | return ret_val; |
| 4031 | |
| 4032 | return e1000e_setup_copper_link(hw); |
| 4033 | } |
| 4034 | |
| 4035 | /** |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4036 | * e1000_get_link_up_info_ich8lan - Get current link speed and duplex |
| 4037 | * @hw: pointer to the HW structure |
| 4038 | * @speed: pointer to store current link speed |
| 4039 | * @duplex: pointer to store the current link duplex |
| 4040 | * |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 4041 | * Calls the generic get_speed_and_duplex to retrieve the current link |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4042 | * information and then calls the Kumeran lock loss workaround for links at |
| 4043 | * gigabit speeds. |
| 4044 | **/ |
| 4045 | static s32 e1000_get_link_up_info_ich8lan(struct e1000_hw *hw, u16 *speed, |
| 4046 | u16 *duplex) |
| 4047 | { |
| 4048 | s32 ret_val; |
| 4049 | |
| 4050 | ret_val = e1000e_get_speed_and_duplex_copper(hw, speed, duplex); |
| 4051 | if (ret_val) |
| 4052 | return ret_val; |
| 4053 | |
| 4054 | if ((hw->mac.type == e1000_ich8lan) && |
Bruce Allan | e5fe254 | 2013-02-20 04:06:27 +0000 | [diff] [blame] | 4055 | (hw->phy.type == e1000_phy_igp_3) && (*speed == SPEED_1000)) { |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4056 | ret_val = e1000_kmrn_lock_loss_workaround_ich8lan(hw); |
| 4057 | } |
| 4058 | |
| 4059 | return ret_val; |
| 4060 | } |
| 4061 | |
| 4062 | /** |
| 4063 | * e1000_kmrn_lock_loss_workaround_ich8lan - Kumeran workaround |
| 4064 | * @hw: pointer to the HW structure |
| 4065 | * |
| 4066 | * Work-around for 82566 Kumeran PCS lock loss: |
| 4067 | * On link status change (i.e. PCI reset, speed change) and link is up and |
| 4068 | * speed is gigabit- |
| 4069 | * 0) if workaround is optionally disabled do nothing |
| 4070 | * 1) wait 1ms for Kumeran link to come up |
| 4071 | * 2) check Kumeran Diagnostic register PCS lock loss bit |
| 4072 | * 3) if not set the link is locked (all is good), otherwise... |
| 4073 | * 4) reset the PHY |
| 4074 | * 5) repeat up to 10 times |
| 4075 | * Note: this is only called for IGP3 copper when speed is 1gb. |
| 4076 | **/ |
| 4077 | static s32 e1000_kmrn_lock_loss_workaround_ich8lan(struct e1000_hw *hw) |
| 4078 | { |
| 4079 | struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan; |
| 4080 | u32 phy_ctrl; |
| 4081 | s32 ret_val; |
| 4082 | u16 i, data; |
| 4083 | bool link; |
| 4084 | |
| 4085 | if (!dev_spec->kmrn_lock_loss_workaround_enabled) |
| 4086 | return 0; |
| 4087 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 4088 | /* Make sure link is up before proceeding. If not just return. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4089 | * Attempting this while link is negotiating fouled up link |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 4090 | * stability |
| 4091 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4092 | ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link); |
| 4093 | if (!link) |
| 4094 | return 0; |
| 4095 | |
| 4096 | for (i = 0; i < 10; i++) { |
| 4097 | /* read once to clear */ |
| 4098 | ret_val = e1e_rphy(hw, IGP3_KMRN_DIAG, &data); |
| 4099 | if (ret_val) |
| 4100 | return ret_val; |
| 4101 | /* and again to get new status */ |
| 4102 | ret_val = e1e_rphy(hw, IGP3_KMRN_DIAG, &data); |
| 4103 | if (ret_val) |
| 4104 | return ret_val; |
| 4105 | |
| 4106 | /* check for PCS lock */ |
| 4107 | if (!(data & IGP3_KMRN_DIAG_PCS_LOCK_LOSS)) |
| 4108 | return 0; |
| 4109 | |
| 4110 | /* Issue PHY reset */ |
| 4111 | e1000_phy_hw_reset(hw); |
| 4112 | mdelay(5); |
| 4113 | } |
| 4114 | /* Disable GigE link negotiation */ |
| 4115 | phy_ctrl = er32(PHY_CTRL); |
| 4116 | phy_ctrl |= (E1000_PHY_CTRL_GBE_DISABLE | |
| 4117 | E1000_PHY_CTRL_NOND0A_GBE_DISABLE); |
| 4118 | ew32(PHY_CTRL, phy_ctrl); |
| 4119 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 4120 | /* Call gig speed drop workaround on Gig disable before accessing |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 4121 | * any PHY registers |
| 4122 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4123 | e1000e_gig_downshift_workaround_ich8lan(hw); |
| 4124 | |
| 4125 | /* unable to acquire PCS lock */ |
| 4126 | return -E1000_ERR_PHY; |
| 4127 | } |
| 4128 | |
| 4129 | /** |
Bruce Allan | 6e3c807 | 2012-02-22 09:02:47 +0000 | [diff] [blame] | 4130 | * e1000e_set_kmrn_lock_loss_workaround_ich8lan - Set Kumeran workaround state |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4131 | * @hw: pointer to the HW structure |
Auke Kok | 489815c | 2008-02-21 15:11:07 -0800 | [diff] [blame] | 4132 | * @state: boolean value used to set the current Kumeran workaround state |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4133 | * |
Bruce Allan | 564ea9b | 2009-11-20 23:26:44 +0000 | [diff] [blame] | 4134 | * If ICH8, set the current Kumeran workaround state (enabled - true |
| 4135 | * /disabled - false). |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4136 | **/ |
| 4137 | void e1000e_set_kmrn_lock_loss_workaround_ich8lan(struct e1000_hw *hw, |
Bruce Allan | 17e813e | 2013-02-20 04:06:01 +0000 | [diff] [blame] | 4138 | bool state) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4139 | { |
| 4140 | struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan; |
| 4141 | |
| 4142 | if (hw->mac.type != e1000_ich8lan) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 4143 | e_dbg("Workaround applies to ICH8 only.\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4144 | return; |
| 4145 | } |
| 4146 | |
| 4147 | dev_spec->kmrn_lock_loss_workaround_enabled = state; |
| 4148 | } |
| 4149 | |
| 4150 | /** |
| 4151 | * e1000_ipg3_phy_powerdown_workaround_ich8lan - Power down workaround on D3 |
| 4152 | * @hw: pointer to the HW structure |
| 4153 | * |
| 4154 | * Workaround for 82566 power-down on D3 entry: |
| 4155 | * 1) disable gigabit link |
| 4156 | * 2) write VR power-down enable |
| 4157 | * 3) read it back |
| 4158 | * Continue if successful, else issue LCD reset and repeat |
| 4159 | **/ |
| 4160 | void e1000e_igp3_phy_powerdown_workaround_ich8lan(struct e1000_hw *hw) |
| 4161 | { |
| 4162 | u32 reg; |
| 4163 | u16 data; |
Bruce Allan | e80bd1d | 2013-05-01 01:19:46 +0000 | [diff] [blame] | 4164 | u8 retry = 0; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4165 | |
| 4166 | if (hw->phy.type != e1000_phy_igp_3) |
| 4167 | return; |
| 4168 | |
| 4169 | /* Try the workaround twice (if needed) */ |
| 4170 | do { |
| 4171 | /* Disable link */ |
| 4172 | reg = er32(PHY_CTRL); |
| 4173 | reg |= (E1000_PHY_CTRL_GBE_DISABLE | |
| 4174 | E1000_PHY_CTRL_NOND0A_GBE_DISABLE); |
| 4175 | ew32(PHY_CTRL, reg); |
| 4176 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 4177 | /* Call gig speed drop workaround on Gig disable before |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 4178 | * accessing any PHY registers |
| 4179 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4180 | if (hw->mac.type == e1000_ich8lan) |
| 4181 | e1000e_gig_downshift_workaround_ich8lan(hw); |
| 4182 | |
| 4183 | /* Write VR power-down enable */ |
| 4184 | e1e_rphy(hw, IGP3_VR_CTRL, &data); |
| 4185 | data &= ~IGP3_VR_CTRL_DEV_POWERDOWN_MODE_MASK; |
| 4186 | e1e_wphy(hw, IGP3_VR_CTRL, data | IGP3_VR_CTRL_MODE_SHUTDOWN); |
| 4187 | |
| 4188 | /* Read it back and test */ |
| 4189 | e1e_rphy(hw, IGP3_VR_CTRL, &data); |
| 4190 | data &= IGP3_VR_CTRL_DEV_POWERDOWN_MODE_MASK; |
| 4191 | if ((data == IGP3_VR_CTRL_MODE_SHUTDOWN) || retry) |
| 4192 | break; |
| 4193 | |
| 4194 | /* Issue PHY reset and repeat at most one more time */ |
| 4195 | reg = er32(CTRL); |
| 4196 | ew32(CTRL, reg | E1000_CTRL_PHY_RST); |
| 4197 | retry++; |
| 4198 | } while (retry); |
| 4199 | } |
| 4200 | |
| 4201 | /** |
| 4202 | * e1000e_gig_downshift_workaround_ich8lan - WoL from S5 stops working |
| 4203 | * @hw: pointer to the HW structure |
| 4204 | * |
| 4205 | * Steps to take when dropping from 1Gb/s (eg. link cable removal (LSC), |
Auke Kok | 489815c | 2008-02-21 15:11:07 -0800 | [diff] [blame] | 4206 | * LPLU, Gig disable, MDIC PHY reset): |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4207 | * 1) Set Kumeran Near-end loopback |
| 4208 | * 2) Clear Kumeran Near-end loopback |
Bruce Allan | 462d599 | 2011-09-30 08:07:11 +0000 | [diff] [blame] | 4209 | * Should only be called for ICH8[m] devices with any 1G Phy. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4210 | **/ |
| 4211 | void e1000e_gig_downshift_workaround_ich8lan(struct e1000_hw *hw) |
| 4212 | { |
| 4213 | s32 ret_val; |
| 4214 | u16 reg_data; |
| 4215 | |
Bruce Allan | 462d599 | 2011-09-30 08:07:11 +0000 | [diff] [blame] | 4216 | if ((hw->mac.type != e1000_ich8lan) || (hw->phy.type == e1000_phy_ife)) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4217 | return; |
| 4218 | |
| 4219 | ret_val = e1000e_read_kmrn_reg(hw, E1000_KMRNCTRLSTA_DIAG_OFFSET, |
Bruce Allan | 17e813e | 2013-02-20 04:06:01 +0000 | [diff] [blame] | 4220 | ®_data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4221 | if (ret_val) |
| 4222 | return; |
| 4223 | reg_data |= E1000_KMRNCTRLSTA_DIAG_NELPBK; |
| 4224 | ret_val = e1000e_write_kmrn_reg(hw, E1000_KMRNCTRLSTA_DIAG_OFFSET, |
Bruce Allan | 17e813e | 2013-02-20 04:06:01 +0000 | [diff] [blame] | 4225 | reg_data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4226 | if (ret_val) |
| 4227 | return; |
| 4228 | reg_data &= ~E1000_KMRNCTRLSTA_DIAG_NELPBK; |
Bruce Allan | 7dbbe5d | 2013-01-05 05:08:31 +0000 | [diff] [blame] | 4229 | e1000e_write_kmrn_reg(hw, E1000_KMRNCTRLSTA_DIAG_OFFSET, reg_data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4230 | } |
| 4231 | |
| 4232 | /** |
Bruce Allan | 99730e4 | 2011-05-13 07:19:48 +0000 | [diff] [blame] | 4233 | * e1000_suspend_workarounds_ich8lan - workarounds needed during S0->Sx |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 4234 | * @hw: pointer to the HW structure |
| 4235 | * |
| 4236 | * During S0 to Sx transition, it is possible the link remains at gig |
| 4237 | * instead of negotiating to a lower speed. Before going to Sx, set |
Bruce Allan | c077a90 | 2011-12-16 00:46:38 +0000 | [diff] [blame] | 4238 | * 'Gig Disable' to force link speed negotiation to a lower speed based on |
| 4239 | * the LPLU setting in the NVM or custom setting. For PCH and newer parts, |
| 4240 | * the OEM bits PHY register (LED, GbE disable and LPLU configurations) also |
| 4241 | * needs to be written. |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 4242 | * Parts that support (and are linked to a partner which support) EEE in |
| 4243 | * 100Mbps should disable LPLU since 100Mbps w/ EEE requires less power |
| 4244 | * than 10Mbps w/o EEE. |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 4245 | **/ |
Bruce Allan | 99730e4 | 2011-05-13 07:19:48 +0000 | [diff] [blame] | 4246 | void e1000_suspend_workarounds_ich8lan(struct e1000_hw *hw) |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 4247 | { |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 4248 | struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan; |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 4249 | u32 phy_ctrl; |
Bruce Allan | 8395ae8 | 2010-09-22 17:15:08 +0000 | [diff] [blame] | 4250 | s32 ret_val; |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 4251 | |
Bruce Allan | 17f085d | 2010-06-17 18:59:48 +0000 | [diff] [blame] | 4252 | phy_ctrl = er32(PHY_CTRL); |
Bruce Allan | c077a90 | 2011-12-16 00:46:38 +0000 | [diff] [blame] | 4253 | phy_ctrl |= E1000_PHY_CTRL_GBE_DISABLE; |
Bruce Allan | e08f626 | 2013-02-20 03:06:34 +0000 | [diff] [blame] | 4254 | |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 4255 | if (hw->phy.type == e1000_phy_i217) { |
Bruce Allan | e08f626 | 2013-02-20 03:06:34 +0000 | [diff] [blame] | 4256 | u16 phy_reg, device_id = hw->adapter->pdev->device; |
| 4257 | |
| 4258 | if ((device_id == E1000_DEV_ID_PCH_LPTLP_I218_LM) || |
Bruce Allan | 91a3d82 | 2013-06-29 01:15:16 +0000 | [diff] [blame] | 4259 | (device_id == E1000_DEV_ID_PCH_LPTLP_I218_V) || |
| 4260 | (device_id == E1000_DEV_ID_PCH_I218_LM3) || |
| 4261 | (device_id == E1000_DEV_ID_PCH_I218_V3)) { |
Bruce Allan | e08f626 | 2013-02-20 03:06:34 +0000 | [diff] [blame] | 4262 | u32 fextnvm6 = er32(FEXTNVM6); |
| 4263 | |
| 4264 | ew32(FEXTNVM6, fextnvm6 & ~E1000_FEXTNVM6_REQ_PLL_CLK); |
| 4265 | } |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 4266 | |
| 4267 | ret_val = hw->phy.ops.acquire(hw); |
| 4268 | if (ret_val) |
| 4269 | goto out; |
| 4270 | |
| 4271 | if (!dev_spec->eee_disable) { |
| 4272 | u16 eee_advert; |
| 4273 | |
Bruce Allan | 4ddc48a | 2012-12-05 06:25:58 +0000 | [diff] [blame] | 4274 | ret_val = |
| 4275 | e1000_read_emi_reg_locked(hw, |
| 4276 | I217_EEE_ADVERTISEMENT, |
| 4277 | &eee_advert); |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 4278 | if (ret_val) |
| 4279 | goto release; |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 4280 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 4281 | /* Disable LPLU if both link partners support 100BaseT |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 4282 | * EEE and 100Full is advertised on both ends of the |
| 4283 | * link. |
| 4284 | */ |
Bruce Allan | 3d4d575 | 2012-12-05 06:26:08 +0000 | [diff] [blame] | 4285 | if ((eee_advert & I82579_EEE_100_SUPPORTED) && |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 4286 | (dev_spec->eee_lp_ability & |
Bruce Allan | 3d4d575 | 2012-12-05 06:26:08 +0000 | [diff] [blame] | 4287 | I82579_EEE_100_SUPPORTED) && |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 4288 | (hw->phy.autoneg_advertised & ADVERTISE_100_FULL)) |
| 4289 | phy_ctrl &= ~(E1000_PHY_CTRL_D0A_LPLU | |
| 4290 | E1000_PHY_CTRL_NOND0A_LPLU); |
| 4291 | } |
| 4292 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 4293 | /* For i217 Intel Rapid Start Technology support, |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 4294 | * when the system is going into Sx and no manageability engine |
| 4295 | * is present, the driver must configure proxy to reset only on |
| 4296 | * power good. LPI (Low Power Idle) state must also reset only |
| 4297 | * on power good, as well as the MTA (Multicast table array). |
| 4298 | * The SMBus release must also be disabled on LCD reset. |
| 4299 | */ |
| 4300 | if (!(er32(FWSM) & E1000_ICH_FWSM_FW_VALID)) { |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 4301 | /* Enable proxy to reset only on power good. */ |
| 4302 | e1e_rphy_locked(hw, I217_PROXY_CTRL, &phy_reg); |
| 4303 | phy_reg |= I217_PROXY_CTRL_AUTO_DISABLE; |
| 4304 | e1e_wphy_locked(hw, I217_PROXY_CTRL, phy_reg); |
| 4305 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 4306 | /* Set bit enable LPI (EEE) to reset only on |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 4307 | * power good. |
| 4308 | */ |
| 4309 | e1e_rphy_locked(hw, I217_SxCTRL, &phy_reg); |
Bruce Allan | 6d7407b | 2012-05-10 02:51:17 +0000 | [diff] [blame] | 4310 | phy_reg |= I217_SxCTRL_ENABLE_LPI_RESET; |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 4311 | e1e_wphy_locked(hw, I217_SxCTRL, phy_reg); |
| 4312 | |
| 4313 | /* Disable the SMB release on LCD reset. */ |
| 4314 | e1e_rphy_locked(hw, I217_MEMPWR, &phy_reg); |
Bruce Allan | 6d7407b | 2012-05-10 02:51:17 +0000 | [diff] [blame] | 4315 | phy_reg &= ~I217_MEMPWR_DISABLE_SMB_RELEASE; |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 4316 | e1e_wphy_locked(hw, I217_MEMPWR, phy_reg); |
| 4317 | } |
| 4318 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 4319 | /* Enable MTA to reset for Intel Rapid Start Technology |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 4320 | * Support |
| 4321 | */ |
| 4322 | e1e_rphy_locked(hw, I217_CGFREG, &phy_reg); |
Bruce Allan | 6d7407b | 2012-05-10 02:51:17 +0000 | [diff] [blame] | 4323 | phy_reg |= I217_CGFREG_ENABLE_MTA_RESET; |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 4324 | e1e_wphy_locked(hw, I217_CGFREG, phy_reg); |
| 4325 | |
| 4326 | release: |
| 4327 | hw->phy.ops.release(hw); |
| 4328 | } |
| 4329 | out: |
Bruce Allan | 17f085d | 2010-06-17 18:59:48 +0000 | [diff] [blame] | 4330 | ew32(PHY_CTRL, phy_ctrl); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 4331 | |
Bruce Allan | 462d599 | 2011-09-30 08:07:11 +0000 | [diff] [blame] | 4332 | if (hw->mac.type == e1000_ich8lan) |
| 4333 | e1000e_gig_downshift_workaround_ich8lan(hw); |
| 4334 | |
Bruce Allan | 8395ae8 | 2010-09-22 17:15:08 +0000 | [diff] [blame] | 4335 | if (hw->mac.type >= e1000_pchlan) { |
Bruce Allan | ce54afd | 2010-11-24 06:01:41 +0000 | [diff] [blame] | 4336 | e1000_oem_bits_config_ich8lan(hw, false); |
Bruce Allan | 92fe173 | 2012-04-12 06:27:03 +0000 | [diff] [blame] | 4337 | |
| 4338 | /* Reset PHY to activate OEM bits on 82577/8 */ |
| 4339 | if (hw->mac.type == e1000_pchlan) |
| 4340 | e1000e_phy_hw_reset_generic(hw); |
| 4341 | |
Bruce Allan | 8395ae8 | 2010-09-22 17:15:08 +0000 | [diff] [blame] | 4342 | ret_val = hw->phy.ops.acquire(hw); |
| 4343 | if (ret_val) |
| 4344 | return; |
| 4345 | e1000_write_smbus_addr(hw); |
| 4346 | hw->phy.ops.release(hw); |
| 4347 | } |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 4348 | } |
| 4349 | |
| 4350 | /** |
Bruce Allan | 99730e4 | 2011-05-13 07:19:48 +0000 | [diff] [blame] | 4351 | * e1000_resume_workarounds_pchlan - workarounds needed during Sx->S0 |
| 4352 | * @hw: pointer to the HW structure |
| 4353 | * |
| 4354 | * During Sx to S0 transitions on non-managed devices or managed devices |
| 4355 | * on which PHY resets are not blocked, if the PHY registers cannot be |
| 4356 | * accessed properly by the s/w toggle the LANPHYPC value to power cycle |
| 4357 | * the PHY. |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 4358 | * On i217, setup Intel Rapid Start Technology. |
Bruce Allan | 99730e4 | 2011-05-13 07:19:48 +0000 | [diff] [blame] | 4359 | **/ |
| 4360 | void e1000_resume_workarounds_pchlan(struct e1000_hw *hw) |
| 4361 | { |
Bruce Allan | 90b8298 | 2011-12-16 00:46:33 +0000 | [diff] [blame] | 4362 | s32 ret_val; |
Bruce Allan | 99730e4 | 2011-05-13 07:19:48 +0000 | [diff] [blame] | 4363 | |
Bruce Allan | cb17aab | 2012-04-13 03:16:22 +0000 | [diff] [blame] | 4364 | if (hw->mac.type < e1000_pch2lan) |
Bruce Allan | 99730e4 | 2011-05-13 07:19:48 +0000 | [diff] [blame] | 4365 | return; |
| 4366 | |
Bruce Allan | cb17aab | 2012-04-13 03:16:22 +0000 | [diff] [blame] | 4367 | ret_val = e1000_init_phy_workarounds_pchlan(hw); |
Bruce Allan | 90b8298 | 2011-12-16 00:46:33 +0000 | [diff] [blame] | 4368 | if (ret_val) { |
Bruce Allan | cb17aab | 2012-04-13 03:16:22 +0000 | [diff] [blame] | 4369 | e_dbg("Failed to init PHY flow ret_val=%d\n", ret_val); |
Bruce Allan | 99730e4 | 2011-05-13 07:19:48 +0000 | [diff] [blame] | 4370 | return; |
| 4371 | } |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 4372 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 4373 | /* For i217 Intel Rapid Start Technology support when the system |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 4374 | * is transitioning from Sx and no manageability engine is present |
| 4375 | * configure SMBus to restore on reset, disable proxy, and enable |
| 4376 | * the reset on MTA (Multicast table array). |
| 4377 | */ |
| 4378 | if (hw->phy.type == e1000_phy_i217) { |
| 4379 | u16 phy_reg; |
| 4380 | |
| 4381 | ret_val = hw->phy.ops.acquire(hw); |
| 4382 | if (ret_val) { |
| 4383 | e_dbg("Failed to setup iRST\n"); |
| 4384 | return; |
| 4385 | } |
| 4386 | |
| 4387 | if (!(er32(FWSM) & E1000_ICH_FWSM_FW_VALID)) { |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 4388 | /* Restore clear on SMB if no manageability engine |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 4389 | * is present |
| 4390 | */ |
| 4391 | ret_val = e1e_rphy_locked(hw, I217_MEMPWR, &phy_reg); |
| 4392 | if (ret_val) |
| 4393 | goto release; |
Bruce Allan | 6d7407b | 2012-05-10 02:51:17 +0000 | [diff] [blame] | 4394 | phy_reg |= I217_MEMPWR_DISABLE_SMB_RELEASE; |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 4395 | e1e_wphy_locked(hw, I217_MEMPWR, phy_reg); |
| 4396 | |
| 4397 | /* Disable Proxy */ |
| 4398 | e1e_wphy_locked(hw, I217_PROXY_CTRL, 0); |
| 4399 | } |
| 4400 | /* Enable reset on MTA */ |
| 4401 | ret_val = e1e_rphy_locked(hw, I217_CGFREG, &phy_reg); |
| 4402 | if (ret_val) |
| 4403 | goto release; |
Bruce Allan | 6d7407b | 2012-05-10 02:51:17 +0000 | [diff] [blame] | 4404 | phy_reg &= ~I217_CGFREG_ENABLE_MTA_RESET; |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 4405 | e1e_wphy_locked(hw, I217_CGFREG, phy_reg); |
| 4406 | release: |
| 4407 | if (ret_val) |
| 4408 | e_dbg("Error %d in resume workarounds\n", ret_val); |
| 4409 | hw->phy.ops.release(hw); |
| 4410 | } |
Bruce Allan | 99730e4 | 2011-05-13 07:19:48 +0000 | [diff] [blame] | 4411 | } |
| 4412 | |
| 4413 | /** |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4414 | * e1000_cleanup_led_ich8lan - Restore the default LED operation |
| 4415 | * @hw: pointer to the HW structure |
| 4416 | * |
| 4417 | * Return the LED back to the default configuration. |
| 4418 | **/ |
| 4419 | static s32 e1000_cleanup_led_ich8lan(struct e1000_hw *hw) |
| 4420 | { |
| 4421 | if (hw->phy.type == e1000_phy_ife) |
| 4422 | return e1e_wphy(hw, IFE_PHY_SPECIAL_CONTROL_LED, 0); |
| 4423 | |
| 4424 | ew32(LEDCTL, hw->mac.ledctl_default); |
| 4425 | return 0; |
| 4426 | } |
| 4427 | |
| 4428 | /** |
Auke Kok | 489815c | 2008-02-21 15:11:07 -0800 | [diff] [blame] | 4429 | * e1000_led_on_ich8lan - Turn LEDs on |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4430 | * @hw: pointer to the HW structure |
| 4431 | * |
Auke Kok | 489815c | 2008-02-21 15:11:07 -0800 | [diff] [blame] | 4432 | * Turn on the LEDs. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4433 | **/ |
| 4434 | static s32 e1000_led_on_ich8lan(struct e1000_hw *hw) |
| 4435 | { |
| 4436 | if (hw->phy.type == e1000_phy_ife) |
| 4437 | return e1e_wphy(hw, IFE_PHY_SPECIAL_CONTROL_LED, |
| 4438 | (IFE_PSCL_PROBE_MODE | IFE_PSCL_PROBE_LEDS_ON)); |
| 4439 | |
| 4440 | ew32(LEDCTL, hw->mac.ledctl_mode2); |
| 4441 | return 0; |
| 4442 | } |
| 4443 | |
| 4444 | /** |
Auke Kok | 489815c | 2008-02-21 15:11:07 -0800 | [diff] [blame] | 4445 | * e1000_led_off_ich8lan - Turn LEDs off |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4446 | * @hw: pointer to the HW structure |
| 4447 | * |
Auke Kok | 489815c | 2008-02-21 15:11:07 -0800 | [diff] [blame] | 4448 | * Turn off the LEDs. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4449 | **/ |
| 4450 | static s32 e1000_led_off_ich8lan(struct e1000_hw *hw) |
| 4451 | { |
| 4452 | if (hw->phy.type == e1000_phy_ife) |
| 4453 | return e1e_wphy(hw, IFE_PHY_SPECIAL_CONTROL_LED, |
Bruce Allan | 482fed8 | 2011-01-06 14:29:49 +0000 | [diff] [blame] | 4454 | (IFE_PSCL_PROBE_MODE | |
| 4455 | IFE_PSCL_PROBE_LEDS_OFF)); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4456 | |
| 4457 | ew32(LEDCTL, hw->mac.ledctl_mode1); |
| 4458 | return 0; |
| 4459 | } |
| 4460 | |
| 4461 | /** |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 4462 | * e1000_setup_led_pchlan - Configures SW controllable LED |
| 4463 | * @hw: pointer to the HW structure |
| 4464 | * |
| 4465 | * This prepares the SW controllable LED for use. |
| 4466 | **/ |
| 4467 | static s32 e1000_setup_led_pchlan(struct e1000_hw *hw) |
| 4468 | { |
Bruce Allan | 482fed8 | 2011-01-06 14:29:49 +0000 | [diff] [blame] | 4469 | return e1e_wphy(hw, HV_LED_CONFIG, (u16)hw->mac.ledctl_mode1); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 4470 | } |
| 4471 | |
| 4472 | /** |
| 4473 | * e1000_cleanup_led_pchlan - Restore the default LED operation |
| 4474 | * @hw: pointer to the HW structure |
| 4475 | * |
| 4476 | * Return the LED back to the default configuration. |
| 4477 | **/ |
| 4478 | static s32 e1000_cleanup_led_pchlan(struct e1000_hw *hw) |
| 4479 | { |
Bruce Allan | 482fed8 | 2011-01-06 14:29:49 +0000 | [diff] [blame] | 4480 | return e1e_wphy(hw, HV_LED_CONFIG, (u16)hw->mac.ledctl_default); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 4481 | } |
| 4482 | |
| 4483 | /** |
| 4484 | * e1000_led_on_pchlan - Turn LEDs on |
| 4485 | * @hw: pointer to the HW structure |
| 4486 | * |
| 4487 | * Turn on the LEDs. |
| 4488 | **/ |
| 4489 | static s32 e1000_led_on_pchlan(struct e1000_hw *hw) |
| 4490 | { |
| 4491 | u16 data = (u16)hw->mac.ledctl_mode2; |
| 4492 | u32 i, led; |
| 4493 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 4494 | /* If no link, then turn LED on by setting the invert bit |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 4495 | * for each LED that's mode is "link_up" in ledctl_mode2. |
| 4496 | */ |
| 4497 | if (!(er32(STATUS) & E1000_STATUS_LU)) { |
| 4498 | for (i = 0; i < 3; i++) { |
| 4499 | led = (data >> (i * 5)) & E1000_PHY_LED0_MASK; |
| 4500 | if ((led & E1000_PHY_LED0_MODE_MASK) != |
| 4501 | E1000_LEDCTL_MODE_LINK_UP) |
| 4502 | continue; |
| 4503 | if (led & E1000_PHY_LED0_IVRT) |
| 4504 | data &= ~(E1000_PHY_LED0_IVRT << (i * 5)); |
| 4505 | else |
| 4506 | data |= (E1000_PHY_LED0_IVRT << (i * 5)); |
| 4507 | } |
| 4508 | } |
| 4509 | |
Bruce Allan | 482fed8 | 2011-01-06 14:29:49 +0000 | [diff] [blame] | 4510 | return e1e_wphy(hw, HV_LED_CONFIG, data); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 4511 | } |
| 4512 | |
| 4513 | /** |
| 4514 | * e1000_led_off_pchlan - Turn LEDs off |
| 4515 | * @hw: pointer to the HW structure |
| 4516 | * |
| 4517 | * Turn off the LEDs. |
| 4518 | **/ |
| 4519 | static s32 e1000_led_off_pchlan(struct e1000_hw *hw) |
| 4520 | { |
| 4521 | u16 data = (u16)hw->mac.ledctl_mode1; |
| 4522 | u32 i, led; |
| 4523 | |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 4524 | /* If no link, then turn LED off by clearing the invert bit |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 4525 | * for each LED that's mode is "link_up" in ledctl_mode1. |
| 4526 | */ |
| 4527 | if (!(er32(STATUS) & E1000_STATUS_LU)) { |
| 4528 | for (i = 0; i < 3; i++) { |
| 4529 | led = (data >> (i * 5)) & E1000_PHY_LED0_MASK; |
| 4530 | if ((led & E1000_PHY_LED0_MODE_MASK) != |
| 4531 | E1000_LEDCTL_MODE_LINK_UP) |
| 4532 | continue; |
| 4533 | if (led & E1000_PHY_LED0_IVRT) |
| 4534 | data &= ~(E1000_PHY_LED0_IVRT << (i * 5)); |
| 4535 | else |
| 4536 | data |= (E1000_PHY_LED0_IVRT << (i * 5)); |
| 4537 | } |
| 4538 | } |
| 4539 | |
Bruce Allan | 482fed8 | 2011-01-06 14:29:49 +0000 | [diff] [blame] | 4540 | return e1e_wphy(hw, HV_LED_CONFIG, data); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 4541 | } |
| 4542 | |
| 4543 | /** |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 4544 | * e1000_get_cfg_done_ich8lan - Read config done bit after Full or PHY reset |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 4545 | * @hw: pointer to the HW structure |
| 4546 | * |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 4547 | * Read appropriate register for the config done bit for completion status |
| 4548 | * and configure the PHY through s/w for EEPROM-less parts. |
| 4549 | * |
| 4550 | * NOTE: some silicon which is EEPROM-less will fail trying to read the |
| 4551 | * config done bit, so only an error is logged and continues. If we were |
| 4552 | * to return with error, EEPROM-less silicon would not be able to be reset |
| 4553 | * or change link. |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 4554 | **/ |
| 4555 | static s32 e1000_get_cfg_done_ich8lan(struct e1000_hw *hw) |
| 4556 | { |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 4557 | s32 ret_val = 0; |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 4558 | u32 bank = 0; |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 4559 | u32 status; |
Bruce Allan | fc0c776 | 2009-07-01 13:27:55 +0000 | [diff] [blame] | 4560 | |
Bruce Allan | fe90849 | 2013-01-05 08:06:14 +0000 | [diff] [blame] | 4561 | e1000e_get_cfg_done_generic(hw); |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 4562 | |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 4563 | /* Wait for indication from h/w that it has completed basic config */ |
| 4564 | if (hw->mac.type >= e1000_ich10lan) { |
| 4565 | e1000_lan_init_done_ich8lan(hw); |
| 4566 | } else { |
| 4567 | ret_val = e1000e_get_auto_rd_done(hw); |
| 4568 | if (ret_val) { |
Bruce Allan | e921eb1 | 2012-11-28 09:28:37 +0000 | [diff] [blame] | 4569 | /* When auto config read does not complete, do not |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 4570 | * return with an error. This can happen in situations |
| 4571 | * where there is no eeprom and prevents getting link. |
| 4572 | */ |
| 4573 | e_dbg("Auto Read Done did not complete\n"); |
| 4574 | ret_val = 0; |
| 4575 | } |
| 4576 | } |
| 4577 | |
| 4578 | /* Clear PHY Reset Asserted bit */ |
| 4579 | status = er32(STATUS); |
| 4580 | if (status & E1000_STATUS_PHYRA) |
| 4581 | ew32(STATUS, status & ~E1000_STATUS_PHYRA); |
| 4582 | else |
| 4583 | e_dbg("PHY Reset Asserted not set - needs delay\n"); |
| 4584 | |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 4585 | /* If EEPROM is not marked present, init the IGP 3 PHY manually */ |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 4586 | if (hw->mac.type <= e1000_ich9lan) { |
Bruce Allan | 04499ec | 2012-04-13 00:08:31 +0000 | [diff] [blame] | 4587 | if (!(er32(EECD) & E1000_EECD_PRES) && |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 4588 | (hw->phy.type == e1000_phy_igp_3)) { |
| 4589 | e1000e_phy_init_script_igp3(hw); |
| 4590 | } |
| 4591 | } else { |
| 4592 | if (e1000_valid_nvm_bank_detect_ich8lan(hw, &bank)) { |
| 4593 | /* Maybe we should do a basic PHY config */ |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 4594 | e_dbg("EEPROM not present\n"); |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 4595 | ret_val = -E1000_ERR_CONFIG; |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 4596 | } |
| 4597 | } |
| 4598 | |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 4599 | return ret_val; |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 4600 | } |
| 4601 | |
| 4602 | /** |
Bruce Allan | 17f208d | 2009-12-01 15:47:22 +0000 | [diff] [blame] | 4603 | * e1000_power_down_phy_copper_ich8lan - Remove link during PHY power down |
| 4604 | * @hw: pointer to the HW structure |
| 4605 | * |
| 4606 | * In the case of a PHY power down to save power, or to turn off link during a |
| 4607 | * driver unload, or wake on lan is not enabled, remove the link. |
| 4608 | **/ |
| 4609 | static void e1000_power_down_phy_copper_ich8lan(struct e1000_hw *hw) |
| 4610 | { |
| 4611 | /* If the management interface is not enabled, then power down */ |
| 4612 | if (!(hw->mac.ops.check_mng_mode(hw) || |
| 4613 | hw->phy.ops.check_reset_block(hw))) |
| 4614 | e1000_power_down_phy_copper(hw); |
Bruce Allan | 17f208d | 2009-12-01 15:47:22 +0000 | [diff] [blame] | 4615 | } |
| 4616 | |
| 4617 | /** |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4618 | * e1000_clear_hw_cntrs_ich8lan - Clear statistical counters |
| 4619 | * @hw: pointer to the HW structure |
| 4620 | * |
| 4621 | * Clears hardware counters specific to the silicon family and calls |
| 4622 | * clear_hw_cntrs_generic to clear all general purpose counters. |
| 4623 | **/ |
| 4624 | static void e1000_clear_hw_cntrs_ich8lan(struct e1000_hw *hw) |
| 4625 | { |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 4626 | u16 phy_data; |
Bruce Allan | 2b6b168 | 2011-05-13 07:20:09 +0000 | [diff] [blame] | 4627 | s32 ret_val; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4628 | |
| 4629 | e1000e_clear_hw_cntrs_base(hw); |
| 4630 | |
Bruce Allan | 99673d9 | 2009-11-20 23:27:21 +0000 | [diff] [blame] | 4631 | er32(ALGNERRC); |
| 4632 | er32(RXERRC); |
| 4633 | er32(TNCRS); |
| 4634 | er32(CEXTERR); |
| 4635 | er32(TSCTC); |
| 4636 | er32(TSCTFC); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4637 | |
Bruce Allan | 99673d9 | 2009-11-20 23:27:21 +0000 | [diff] [blame] | 4638 | er32(MGTPRC); |
| 4639 | er32(MGTPDC); |
| 4640 | er32(MGTPTC); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4641 | |
Bruce Allan | 99673d9 | 2009-11-20 23:27:21 +0000 | [diff] [blame] | 4642 | er32(IAC); |
| 4643 | er32(ICRXOC); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4644 | |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 4645 | /* Clear PHY statistics registers */ |
| 4646 | if ((hw->phy.type == e1000_phy_82578) || |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 4647 | (hw->phy.type == e1000_phy_82579) || |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 4648 | (hw->phy.type == e1000_phy_i217) || |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 4649 | (hw->phy.type == e1000_phy_82577)) { |
Bruce Allan | 2b6b168 | 2011-05-13 07:20:09 +0000 | [diff] [blame] | 4650 | ret_val = hw->phy.ops.acquire(hw); |
| 4651 | if (ret_val) |
| 4652 | return; |
| 4653 | ret_val = hw->phy.ops.set_page(hw, |
| 4654 | HV_STATS_PAGE << IGP_PAGE_SHIFT); |
| 4655 | if (ret_val) |
| 4656 | goto release; |
| 4657 | hw->phy.ops.read_reg_page(hw, HV_SCC_UPPER, &phy_data); |
| 4658 | hw->phy.ops.read_reg_page(hw, HV_SCC_LOWER, &phy_data); |
| 4659 | hw->phy.ops.read_reg_page(hw, HV_ECOL_UPPER, &phy_data); |
| 4660 | hw->phy.ops.read_reg_page(hw, HV_ECOL_LOWER, &phy_data); |
| 4661 | hw->phy.ops.read_reg_page(hw, HV_MCC_UPPER, &phy_data); |
| 4662 | hw->phy.ops.read_reg_page(hw, HV_MCC_LOWER, &phy_data); |
| 4663 | hw->phy.ops.read_reg_page(hw, HV_LATECOL_UPPER, &phy_data); |
| 4664 | hw->phy.ops.read_reg_page(hw, HV_LATECOL_LOWER, &phy_data); |
| 4665 | hw->phy.ops.read_reg_page(hw, HV_COLC_UPPER, &phy_data); |
| 4666 | hw->phy.ops.read_reg_page(hw, HV_COLC_LOWER, &phy_data); |
| 4667 | hw->phy.ops.read_reg_page(hw, HV_DC_UPPER, &phy_data); |
| 4668 | hw->phy.ops.read_reg_page(hw, HV_DC_LOWER, &phy_data); |
| 4669 | hw->phy.ops.read_reg_page(hw, HV_TNCRS_UPPER, &phy_data); |
| 4670 | hw->phy.ops.read_reg_page(hw, HV_TNCRS_LOWER, &phy_data); |
| 4671 | release: |
| 4672 | hw->phy.ops.release(hw); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 4673 | } |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4674 | } |
| 4675 | |
Jeff Kirsher | 8ce9d6c | 2011-09-24 13:23:52 +0000 | [diff] [blame] | 4676 | static const struct e1000_mac_operations ich8_mac_ops = { |
Bruce Allan | eb7700d | 2010-06-16 13:27:05 +0000 | [diff] [blame] | 4677 | /* check_mng_mode dependent on mac type */ |
Bruce Allan | 7d3cabb | 2009-07-01 13:29:08 +0000 | [diff] [blame] | 4678 | .check_for_link = e1000_check_for_copper_link_ich8lan, |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 4679 | /* cleanup_led dependent on mac type */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4680 | .clear_hw_cntrs = e1000_clear_hw_cntrs_ich8lan, |
| 4681 | .get_bus_info = e1000_get_bus_info_ich8lan, |
Bruce Allan | f4d2dd4 | 2010-01-13 02:05:18 +0000 | [diff] [blame] | 4682 | .set_lan_id = e1000_set_lan_id_single_port, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4683 | .get_link_up_info = e1000_get_link_up_info_ich8lan, |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 4684 | /* led_on dependent on mac type */ |
| 4685 | /* led_off dependent on mac type */ |
Jeff Kirsher | e2de3eb | 2008-03-28 09:15:11 -0700 | [diff] [blame] | 4686 | .update_mc_addr_list = e1000e_update_mc_addr_list_generic, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4687 | .reset_hw = e1000_reset_hw_ich8lan, |
| 4688 | .init_hw = e1000_init_hw_ich8lan, |
| 4689 | .setup_link = e1000_setup_link_ich8lan, |
Bruce Allan | 55c5f55 | 2013-01-12 07:28:24 +0000 | [diff] [blame] | 4690 | .setup_physical_interface = e1000_setup_copper_link_ich8lan, |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 4691 | /* id_led_init dependent on mac type */ |
Bruce Allan | 57cde76 | 2012-02-22 09:02:58 +0000 | [diff] [blame] | 4692 | .config_collision_dist = e1000e_config_collision_dist_generic, |
Bruce Allan | 69e1e01 | 2012-04-14 03:28:50 +0000 | [diff] [blame] | 4693 | .rar_set = e1000e_rar_set_generic, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4694 | }; |
| 4695 | |
Jeff Kirsher | 8ce9d6c | 2011-09-24 13:23:52 +0000 | [diff] [blame] | 4696 | static const struct e1000_phy_operations ich8_phy_ops = { |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 4697 | .acquire = e1000_acquire_swflag_ich8lan, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4698 | .check_reset_block = e1000_check_reset_block_ich8lan, |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 4699 | .commit = NULL, |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 4700 | .get_cfg_done = e1000_get_cfg_done_ich8lan, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4701 | .get_cable_length = e1000e_get_cable_length_igp_2, |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 4702 | .read_reg = e1000e_read_phy_reg_igp, |
| 4703 | .release = e1000_release_swflag_ich8lan, |
| 4704 | .reset = e1000_phy_hw_reset_ich8lan, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4705 | .set_d0_lplu_state = e1000_set_d0_lplu_state_ich8lan, |
| 4706 | .set_d3_lplu_state = e1000_set_d3_lplu_state_ich8lan, |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 4707 | .write_reg = e1000e_write_phy_reg_igp, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4708 | }; |
| 4709 | |
Jeff Kirsher | 8ce9d6c | 2011-09-24 13:23:52 +0000 | [diff] [blame] | 4710 | static const struct e1000_nvm_operations ich8_nvm_ops = { |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 4711 | .acquire = e1000_acquire_nvm_ich8lan, |
Bruce Allan | 55c5f55 | 2013-01-12 07:28:24 +0000 | [diff] [blame] | 4712 | .read = e1000_read_nvm_ich8lan, |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 4713 | .release = e1000_release_nvm_ich8lan, |
Bruce Allan | e85e363 | 2012-02-22 09:03:14 +0000 | [diff] [blame] | 4714 | .reload = e1000e_reload_nvm_generic, |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 4715 | .update = e1000_update_nvm_checksum_ich8lan, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4716 | .valid_led_default = e1000_valid_led_default_ich8lan, |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 4717 | .validate = e1000_validate_nvm_checksum_ich8lan, |
| 4718 | .write = e1000_write_nvm_ich8lan, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4719 | }; |
| 4720 | |
Jeff Kirsher | 8ce9d6c | 2011-09-24 13:23:52 +0000 | [diff] [blame] | 4721 | const struct e1000_info e1000_ich8_info = { |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4722 | .mac = e1000_ich8lan, |
| 4723 | .flags = FLAG_HAS_WOL |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 4724 | | FLAG_IS_ICH |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4725 | | FLAG_HAS_CTRLEXT_ON_LOAD |
| 4726 | | FLAG_HAS_AMT |
| 4727 | | FLAG_HAS_FLASH |
| 4728 | | FLAG_APME_IN_WUC, |
| 4729 | .pba = 8, |
Bruce Allan | 2adc55c | 2009-06-02 11:28:58 +0000 | [diff] [blame] | 4730 | .max_hw_frame_size = ETH_FRAME_LEN + ETH_FCS_LEN, |
Jeff Kirsher | 69e3fd8 | 2008-04-02 13:48:18 -0700 | [diff] [blame] | 4731 | .get_variants = e1000_get_variants_ich8lan, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4732 | .mac_ops = &ich8_mac_ops, |
| 4733 | .phy_ops = &ich8_phy_ops, |
| 4734 | .nvm_ops = &ich8_nvm_ops, |
| 4735 | }; |
| 4736 | |
Jeff Kirsher | 8ce9d6c | 2011-09-24 13:23:52 +0000 | [diff] [blame] | 4737 | const struct e1000_info e1000_ich9_info = { |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4738 | .mac = e1000_ich9lan, |
| 4739 | .flags = FLAG_HAS_JUMBO_FRAMES |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 4740 | | FLAG_IS_ICH |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4741 | | FLAG_HAS_WOL |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4742 | | FLAG_HAS_CTRLEXT_ON_LOAD |
| 4743 | | FLAG_HAS_AMT |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4744 | | FLAG_HAS_FLASH |
| 4745 | | FLAG_APME_IN_WUC, |
Bruce Allan | 7f1557e | 2011-12-16 00:46:43 +0000 | [diff] [blame] | 4746 | .pba = 18, |
Bruce Allan | 2adc55c | 2009-06-02 11:28:58 +0000 | [diff] [blame] | 4747 | .max_hw_frame_size = DEFAULT_JUMBO, |
Jeff Kirsher | 69e3fd8 | 2008-04-02 13:48:18 -0700 | [diff] [blame] | 4748 | .get_variants = e1000_get_variants_ich8lan, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4749 | .mac_ops = &ich8_mac_ops, |
| 4750 | .phy_ops = &ich8_phy_ops, |
| 4751 | .nvm_ops = &ich8_nvm_ops, |
| 4752 | }; |
| 4753 | |
Jeff Kirsher | 8ce9d6c | 2011-09-24 13:23:52 +0000 | [diff] [blame] | 4754 | const struct e1000_info e1000_ich10_info = { |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 4755 | .mac = e1000_ich10lan, |
| 4756 | .flags = FLAG_HAS_JUMBO_FRAMES |
| 4757 | | FLAG_IS_ICH |
| 4758 | | FLAG_HAS_WOL |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 4759 | | FLAG_HAS_CTRLEXT_ON_LOAD |
| 4760 | | FLAG_HAS_AMT |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 4761 | | FLAG_HAS_FLASH |
| 4762 | | FLAG_APME_IN_WUC, |
Bruce Allan | 7f1557e | 2011-12-16 00:46:43 +0000 | [diff] [blame] | 4763 | .pba = 18, |
Bruce Allan | 2adc55c | 2009-06-02 11:28:58 +0000 | [diff] [blame] | 4764 | .max_hw_frame_size = DEFAULT_JUMBO, |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 4765 | .get_variants = e1000_get_variants_ich8lan, |
| 4766 | .mac_ops = &ich8_mac_ops, |
| 4767 | .phy_ops = &ich8_phy_ops, |
| 4768 | .nvm_ops = &ich8_nvm_ops, |
| 4769 | }; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 4770 | |
Jeff Kirsher | 8ce9d6c | 2011-09-24 13:23:52 +0000 | [diff] [blame] | 4771 | const struct e1000_info e1000_pch_info = { |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 4772 | .mac = e1000_pchlan, |
| 4773 | .flags = FLAG_IS_ICH |
| 4774 | | FLAG_HAS_WOL |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 4775 | | FLAG_HAS_CTRLEXT_ON_LOAD |
| 4776 | | FLAG_HAS_AMT |
| 4777 | | FLAG_HAS_FLASH |
| 4778 | | FLAG_HAS_JUMBO_FRAMES |
Bruce Allan | 38eb394 | 2009-11-19 12:34:20 +0000 | [diff] [blame] | 4779 | | FLAG_DISABLE_FC_PAUSE_TIME /* errata */ |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 4780 | | FLAG_APME_IN_WUC, |
Bruce Allan | 8c7bbb9 | 2010-06-16 13:26:41 +0000 | [diff] [blame] | 4781 | .flags2 = FLAG2_HAS_PHY_STATS, |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 4782 | .pba = 26, |
| 4783 | .max_hw_frame_size = 4096, |
| 4784 | .get_variants = e1000_get_variants_ich8lan, |
| 4785 | .mac_ops = &ich8_mac_ops, |
| 4786 | .phy_ops = &ich8_phy_ops, |
| 4787 | .nvm_ops = &ich8_nvm_ops, |
| 4788 | }; |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 4789 | |
Jeff Kirsher | 8ce9d6c | 2011-09-24 13:23:52 +0000 | [diff] [blame] | 4790 | const struct e1000_info e1000_pch2_info = { |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 4791 | .mac = e1000_pch2lan, |
| 4792 | .flags = FLAG_IS_ICH |
| 4793 | | FLAG_HAS_WOL |
Bruce Allan | b67e191 | 2012-12-27 08:32:33 +0000 | [diff] [blame] | 4794 | | FLAG_HAS_HW_TIMESTAMP |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 4795 | | FLAG_HAS_CTRLEXT_ON_LOAD |
| 4796 | | FLAG_HAS_AMT |
| 4797 | | FLAG_HAS_FLASH |
| 4798 | | FLAG_HAS_JUMBO_FRAMES |
| 4799 | | FLAG_APME_IN_WUC, |
Bruce Allan | e52997f | 2010-06-16 13:27:49 +0000 | [diff] [blame] | 4800 | .flags2 = FLAG2_HAS_PHY_STATS |
| 4801 | | FLAG2_HAS_EEE, |
Bruce Allan | 828bac8 | 2010-09-29 21:39:37 +0000 | [diff] [blame] | 4802 | .pba = 26, |
Bruce Allan | c3d2dbf | 2013-01-09 01:20:46 +0000 | [diff] [blame] | 4803 | .max_hw_frame_size = 9018, |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 4804 | .get_variants = e1000_get_variants_ich8lan, |
| 4805 | .mac_ops = &ich8_mac_ops, |
| 4806 | .phy_ops = &ich8_phy_ops, |
| 4807 | .nvm_ops = &ich8_nvm_ops, |
| 4808 | }; |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 4809 | |
| 4810 | const struct e1000_info e1000_pch_lpt_info = { |
| 4811 | .mac = e1000_pch_lpt, |
| 4812 | .flags = FLAG_IS_ICH |
| 4813 | | FLAG_HAS_WOL |
Bruce Allan | b67e191 | 2012-12-27 08:32:33 +0000 | [diff] [blame] | 4814 | | FLAG_HAS_HW_TIMESTAMP |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 4815 | | FLAG_HAS_CTRLEXT_ON_LOAD |
| 4816 | | FLAG_HAS_AMT |
| 4817 | | FLAG_HAS_FLASH |
| 4818 | | FLAG_HAS_JUMBO_FRAMES |
| 4819 | | FLAG_APME_IN_WUC, |
| 4820 | .flags2 = FLAG2_HAS_PHY_STATS |
| 4821 | | FLAG2_HAS_EEE, |
| 4822 | .pba = 26, |
Bruce Allan | ed1a426 | 2013-01-04 09:51:36 +0000 | [diff] [blame] | 4823 | .max_hw_frame_size = 9018, |
Bruce Allan | 2fbe452 | 2012-04-19 03:21:47 +0000 | [diff] [blame] | 4824 | .get_variants = e1000_get_variants_ich8lan, |
| 4825 | .mac_ops = &ich8_mac_ops, |
| 4826 | .phy_ops = &ich8_phy_ops, |
| 4827 | .nvm_ops = &ich8_nvm_ops, |
| 4828 | }; |