blob: 42f0f6717511c21bb0f16edbeee050cc4878db96 [file] [log] [blame]
Auke Kokbc7f75f2007-09-17 12:30:59 -07001/*******************************************************************************
2
3 Intel PRO/1000 Linux driver
Bruce Allanbf670442013-01-01 16:00:01 +00004 Copyright(c) 1999 - 2013 Intel Corporation.
Auke Kokbc7f75f2007-09-17 12:30:59 -07005
6 This program is free software; you can redistribute it and/or modify it
7 under the terms and conditions of the GNU General Public License,
8 version 2, as published by the Free Software Foundation.
9
10 This program is distributed in the hope it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 more details.
14
15 You should have received a copy of the GNU General Public License along with
16 this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
21
22 Contact Information:
23 Linux NICS <linux.nics@intel.com>
24 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
25 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
26
27*******************************************************************************/
28
Bruce Allane921eb12012-11-28 09:28:37 +000029/* 82562G 10/100 Network Connection
Auke Kokbc7f75f2007-09-17 12:30:59 -070030 * 82562G-2 10/100 Network Connection
31 * 82562GT 10/100 Network Connection
32 * 82562GT-2 10/100 Network Connection
33 * 82562V 10/100 Network Connection
34 * 82562V-2 10/100 Network Connection
35 * 82566DC-2 Gigabit Network Connection
36 * 82566DC Gigabit Network Connection
37 * 82566DM-2 Gigabit Network Connection
38 * 82566DM Gigabit Network Connection
39 * 82566MC Gigabit Network Connection
40 * 82566MM Gigabit Network Connection
Bruce Allan97ac8ca2008-04-29 09:16:05 -070041 * 82567LM Gigabit Network Connection
42 * 82567LF Gigabit Network Connection
Bruce Allan16059272008-11-21 16:51:06 -080043 * 82567V Gigabit Network Connection
Bruce Allan97ac8ca2008-04-29 09:16:05 -070044 * 82567LM-2 Gigabit Network Connection
45 * 82567LF-2 Gigabit Network Connection
46 * 82567V-2 Gigabit Network Connection
Bruce Allanf4187b52008-08-26 18:36:50 -070047 * 82567LF-3 Gigabit Network Connection
48 * 82567LM-3 Gigabit Network Connection
Bruce Allan2f15f9d2008-08-26 18:36:36 -070049 * 82567LM-4 Gigabit Network Connection
Bruce Allana4f58f52009-06-02 11:29:18 +000050 * 82577LM Gigabit Network Connection
51 * 82577LC Gigabit Network Connection
52 * 82578DM Gigabit Network Connection
53 * 82578DC Gigabit Network Connection
Bruce Alland3738bb2010-06-16 13:27:28 +000054 * 82579LM Gigabit Network Connection
55 * 82579V Gigabit Network Connection
Auke Kokbc7f75f2007-09-17 12:30:59 -070056 */
57
Auke Kokbc7f75f2007-09-17 12:30:59 -070058#include "e1000.h"
59
Auke Kokbc7f75f2007-09-17 12:30:59 -070060/* ICH GbE Flash Hardware Sequencing Flash Status Register bit breakdown */
61/* Offset 04h HSFSTS */
62union ich8_hws_flash_status {
63 struct ich8_hsfsts {
Bruce Allan362e20c2013-02-20 04:05:45 +000064 u16 flcdone:1; /* bit 0 Flash Cycle Done */
65 u16 flcerr:1; /* bit 1 Flash Cycle Error */
66 u16 dael:1; /* bit 2 Direct Access error Log */
67 u16 berasesz:2; /* bit 4:3 Sector Erase Size */
68 u16 flcinprog:1; /* bit 5 flash cycle in Progress */
69 u16 reserved1:2; /* bit 13:6 Reserved */
70 u16 reserved2:6; /* bit 13:6 Reserved */
71 u16 fldesvalid:1; /* bit 14 Flash Descriptor Valid */
72 u16 flockdn:1; /* bit 15 Flash Config Lock-Down */
Auke Kokbc7f75f2007-09-17 12:30:59 -070073 } hsf_status;
74 u16 regval;
75};
76
77/* ICH GbE Flash Hardware Sequencing Flash control Register bit breakdown */
78/* Offset 06h FLCTL */
79union ich8_hws_flash_ctrl {
80 struct ich8_hsflctl {
Bruce Allan362e20c2013-02-20 04:05:45 +000081 u16 flcgo:1; /* 0 Flash Cycle Go */
82 u16 flcycle:2; /* 2:1 Flash Cycle */
83 u16 reserved:5; /* 7:3 Reserved */
84 u16 fldbcount:2; /* 9:8 Flash Data Byte Count */
85 u16 flockdn:6; /* 15:10 Reserved */
Auke Kokbc7f75f2007-09-17 12:30:59 -070086 } hsf_ctrl;
87 u16 regval;
88};
89
90/* ICH Flash Region Access Permissions */
91union ich8_hws_flash_regacc {
92 struct ich8_flracc {
Bruce Allan362e20c2013-02-20 04:05:45 +000093 u32 grra:8; /* 0:7 GbE region Read Access */
94 u32 grwa:8; /* 8:15 GbE region Write Access */
95 u32 gmrag:8; /* 23:16 GbE Master Read Access Grant */
96 u32 gmwag:8; /* 31:24 GbE Master Write Access Grant */
Auke Kokbc7f75f2007-09-17 12:30:59 -070097 } hsf_flregacc;
98 u16 regval;
99};
100
Bruce Allan4a770352008-10-01 17:18:35 -0700101/* ICH Flash Protected Region */
102union ich8_flash_protected_range {
103 struct ich8_pr {
Bruce Allane80bd1d2013-05-01 01:19:46 +0000104 u32 base:13; /* 0:12 Protected Range Base */
105 u32 reserved1:2; /* 13:14 Reserved */
106 u32 rpe:1; /* 15 Read Protection Enable */
107 u32 limit:13; /* 16:28 Protected Range Limit */
108 u32 reserved2:2; /* 29:30 Reserved */
109 u32 wpe:1; /* 31 Write Protection Enable */
Bruce Allan4a770352008-10-01 17:18:35 -0700110 } range;
111 u32 regval;
112};
113
Auke Kokbc7f75f2007-09-17 12:30:59 -0700114static void e1000_clear_hw_cntrs_ich8lan(struct e1000_hw *hw);
115static void e1000_initialize_hw_bits_ich8lan(struct e1000_hw *hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700116static s32 e1000_erase_flash_bank_ich8lan(struct e1000_hw *hw, u32 bank);
117static s32 e1000_retry_write_flash_byte_ich8lan(struct e1000_hw *hw,
118 u32 offset, u8 byte);
Bruce Allanf4187b52008-08-26 18:36:50 -0700119static s32 e1000_read_flash_byte_ich8lan(struct e1000_hw *hw, u32 offset,
120 u8 *data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700121static s32 e1000_read_flash_word_ich8lan(struct e1000_hw *hw, u32 offset,
122 u16 *data);
123static s32 e1000_read_flash_data_ich8lan(struct e1000_hw *hw, u32 offset,
124 u8 size, u16 *data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700125static s32 e1000_kmrn_lock_loss_workaround_ich8lan(struct e1000_hw *hw);
Bruce Allana4f58f52009-06-02 11:29:18 +0000126static s32 e1000_cleanup_led_ich8lan(struct e1000_hw *hw);
127static s32 e1000_led_on_ich8lan(struct e1000_hw *hw);
128static s32 e1000_led_off_ich8lan(struct e1000_hw *hw);
129static s32 e1000_id_led_init_pchlan(struct e1000_hw *hw);
130static s32 e1000_setup_led_pchlan(struct e1000_hw *hw);
131static s32 e1000_cleanup_led_pchlan(struct e1000_hw *hw);
132static s32 e1000_led_on_pchlan(struct e1000_hw *hw);
133static s32 e1000_led_off_pchlan(struct e1000_hw *hw);
Bruce Allanfa2ce132009-10-26 11:23:25 +0000134static s32 e1000_set_lplu_state_pchlan(struct e1000_hw *hw, bool active);
Bruce Allan17f208d2009-12-01 15:47:22 +0000135static void e1000_power_down_phy_copper_ich8lan(struct e1000_hw *hw);
Bruce Allanf523d212009-10-29 13:45:45 +0000136static void e1000_lan_init_done_ich8lan(struct e1000_hw *hw);
Bruce Allan1f96012d2013-01-05 03:06:54 +0000137static s32 e1000_k1_gig_workaround_hv(struct e1000_hw *hw, bool link);
Bruce Allanfddaa1a2010-01-13 01:52:49 +0000138static s32 e1000_set_mdio_slow_mode_hv(struct e1000_hw *hw);
Bruce Allaneb7700d2010-06-16 13:27:05 +0000139static bool e1000_check_mng_mode_ich8lan(struct e1000_hw *hw);
140static bool e1000_check_mng_mode_pchlan(struct e1000_hw *hw);
Bruce Allan69e1e012012-04-14 03:28:50 +0000141static void e1000_rar_set_pch2lan(struct e1000_hw *hw, u8 *addr, u32 index);
Bruce Allan2fbe4522012-04-19 03:21:47 +0000142static void e1000_rar_set_pch_lpt(struct e1000_hw *hw, u8 *addr, u32 index);
Bruce Allan831bd2e2010-09-22 17:16:18 +0000143static s32 e1000_k1_workaround_lv(struct e1000_hw *hw);
Bruce Allan605c82b2010-09-22 17:17:01 +0000144static void e1000_gate_hw_phy_config_ich8lan(struct e1000_hw *hw, bool gate);
Bruce Allanea8179a2013-03-06 09:02:47 +0000145static s32 e1000_setup_copper_link_pch_lpt(struct e1000_hw *hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700146
147static inline u16 __er16flash(struct e1000_hw *hw, unsigned long reg)
148{
149 return readw(hw->flash_address + reg);
150}
151
152static inline u32 __er32flash(struct e1000_hw *hw, unsigned long reg)
153{
154 return readl(hw->flash_address + reg);
155}
156
157static inline void __ew16flash(struct e1000_hw *hw, unsigned long reg, u16 val)
158{
159 writew(val, hw->flash_address + reg);
160}
161
162static inline void __ew32flash(struct e1000_hw *hw, unsigned long reg, u32 val)
163{
164 writel(val, hw->flash_address + reg);
165}
166
167#define er16flash(reg) __er16flash(hw, (reg))
168#define er32flash(reg) __er32flash(hw, (reg))
Bruce Allan0e15df42012-01-31 06:37:11 +0000169#define ew16flash(reg, val) __ew16flash(hw, (reg), (val))
170#define ew32flash(reg, val) __ew32flash(hw, (reg), (val))
Auke Kokbc7f75f2007-09-17 12:30:59 -0700171
Bruce Allancb17aab2012-04-13 03:16:22 +0000172/**
173 * e1000_phy_is_accessible_pchlan - Check if able to access PHY registers
174 * @hw: pointer to the HW structure
175 *
176 * Test access to the PHY registers by reading the PHY ID registers. If
177 * the PHY ID is already known (e.g. resume path) compare it with known ID,
178 * otherwise assume the read PHY ID is correct if it is valid.
179 *
180 * Assumes the sw/fw/hw semaphore is already acquired.
181 **/
182static bool e1000_phy_is_accessible_pchlan(struct e1000_hw *hw)
Bruce Allan99730e42011-05-13 07:19:48 +0000183{
Bruce Allana52359b2012-07-14 04:23:58 +0000184 u16 phy_reg = 0;
185 u32 phy_id = 0;
186 s32 ret_val;
187 u16 retry_count;
Bruce Allan16b095a2013-06-29 07:42:39 +0000188 u32 mac_reg = 0;
Bruce Allan99730e42011-05-13 07:19:48 +0000189
Bruce Allana52359b2012-07-14 04:23:58 +0000190 for (retry_count = 0; retry_count < 2; retry_count++) {
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000191 ret_val = e1e_rphy_locked(hw, MII_PHYSID1, &phy_reg);
Bruce Allana52359b2012-07-14 04:23:58 +0000192 if (ret_val || (phy_reg == 0xFFFF))
193 continue;
194 phy_id = (u32)(phy_reg << 16);
195
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000196 ret_val = e1e_rphy_locked(hw, MII_PHYSID2, &phy_reg);
Bruce Allana52359b2012-07-14 04:23:58 +0000197 if (ret_val || (phy_reg == 0xFFFF)) {
198 phy_id = 0;
199 continue;
200 }
201 phy_id |= (u32)(phy_reg & PHY_REVISION_MASK);
202 break;
203 }
Bruce Allan62bc8132012-03-20 03:47:57 +0000204
Bruce Allancb17aab2012-04-13 03:16:22 +0000205 if (hw->phy.id) {
206 if (hw->phy.id == phy_id)
Bruce Allan16b095a2013-06-29 07:42:39 +0000207 goto out;
Bruce Allana52359b2012-07-14 04:23:58 +0000208 } else if (phy_id) {
209 hw->phy.id = phy_id;
210 hw->phy.revision = (u32)(phy_reg & ~PHY_REVISION_MASK);
Bruce Allan16b095a2013-06-29 07:42:39 +0000211 goto out;
Bruce Allancb17aab2012-04-13 03:16:22 +0000212 }
213
Bruce Allane921eb12012-11-28 09:28:37 +0000214 /* In case the PHY needs to be in mdio slow mode,
Bruce Allana52359b2012-07-14 04:23:58 +0000215 * set slow mode and try to get the PHY id again.
216 */
217 hw->phy.ops.release(hw);
218 ret_val = e1000_set_mdio_slow_mode_hv(hw);
219 if (!ret_val)
220 ret_val = e1000e_get_phy_id(hw);
221 hw->phy.ops.acquire(hw);
222
Bruce Allan16b095a2013-06-29 07:42:39 +0000223 if (ret_val)
224 return false;
225out:
226 if (hw->mac.type == e1000_pch_lpt) {
227 /* Unforce SMBus mode in PHY */
228 e1e_rphy_locked(hw, CV_SMB_CTRL, &phy_reg);
229 phy_reg &= ~CV_SMB_CTRL_FORCE_SMBUS;
230 e1e_wphy_locked(hw, CV_SMB_CTRL, phy_reg);
231
232 /* Unforce SMBus mode in MAC */
233 mac_reg = er32(CTRL_EXT);
234 mac_reg &= ~E1000_CTRL_EXT_FORCE_SMBUS;
235 ew32(CTRL_EXT, mac_reg);
236 }
237
238 return true;
Bruce Allancb17aab2012-04-13 03:16:22 +0000239}
240
241/**
242 * e1000_init_phy_workarounds_pchlan - PHY initialization workarounds
243 * @hw: pointer to the HW structure
244 *
245 * Workarounds/flow necessary for PHY initialization during driver load
246 * and resume paths.
247 **/
248static s32 e1000_init_phy_workarounds_pchlan(struct e1000_hw *hw)
249{
250 u32 mac_reg, fwsm = er32(FWSM);
251 s32 ret_val;
252
Bruce Allan6e928b72012-12-12 04:45:51 +0000253 /* Gate automatic PHY configuration by hardware on managed and
254 * non-managed 82579 and newer adapters.
255 */
256 e1000_gate_hw_phy_config_ich8lan(hw, true);
257
Bruce Allancb17aab2012-04-13 03:16:22 +0000258 ret_val = hw->phy.ops.acquire(hw);
259 if (ret_val) {
260 e_dbg("Failed to initialize PHY flow\n");
Bruce Allan6e928b72012-12-12 04:45:51 +0000261 goto out;
Bruce Allancb17aab2012-04-13 03:16:22 +0000262 }
263
Bruce Allane921eb12012-11-28 09:28:37 +0000264 /* The MAC-PHY interconnect may be in SMBus mode. If the PHY is
Bruce Allancb17aab2012-04-13 03:16:22 +0000265 * inaccessible and resetting the PHY is not blocked, toggle the
266 * LANPHYPC Value bit to force the interconnect to PCIe mode.
267 */
268 switch (hw->mac.type) {
Bruce Allan2fbe4522012-04-19 03:21:47 +0000269 case e1000_pch_lpt:
270 if (e1000_phy_is_accessible_pchlan(hw))
271 break;
272
Bruce Allane921eb12012-11-28 09:28:37 +0000273 /* Before toggling LANPHYPC, see if PHY is accessible by
Bruce Allan2fbe4522012-04-19 03:21:47 +0000274 * forcing MAC to SMBus mode first.
275 */
276 mac_reg = er32(CTRL_EXT);
277 mac_reg |= E1000_CTRL_EXT_FORCE_SMBUS;
278 ew32(CTRL_EXT, mac_reg);
279
Bruce Allan16b095a2013-06-29 07:42:39 +0000280 /* Wait 50 milliseconds for MAC to finish any retries
281 * that it might be trying to perform from previous
282 * attempts to acknowledge any phy read requests.
283 */
284 msleep(50);
285
Bruce Allan2fbe4522012-04-19 03:21:47 +0000286 /* fall-through */
Bruce Allancb17aab2012-04-13 03:16:22 +0000287 case e1000_pch2lan:
Bruce Allan16b095a2013-06-29 07:42:39 +0000288 if (e1000_phy_is_accessible_pchlan(hw))
Bruce Allancb17aab2012-04-13 03:16:22 +0000289 break;
290
291 /* fall-through */
292 case e1000_pchlan:
293 if ((hw->mac.type == e1000_pchlan) &&
294 (fwsm & E1000_ICH_FWSM_FW_VALID))
295 break;
296
297 if (hw->phy.ops.check_reset_block(hw)) {
298 e_dbg("Required LANPHYPC toggle blocked by ME\n");
Bruce Allan16b095a2013-06-29 07:42:39 +0000299 ret_val = -E1000_ERR_PHY;
Bruce Allancb17aab2012-04-13 03:16:22 +0000300 break;
301 }
302
303 e_dbg("Toggling LANPHYPC\n");
304
305 /* Set Phy Config Counter to 50msec */
306 mac_reg = er32(FEXTNVM3);
307 mac_reg &= ~E1000_FEXTNVM3_PHY_CFG_COUNTER_MASK;
308 mac_reg |= E1000_FEXTNVM3_PHY_CFG_COUNTER_50MSEC;
309 ew32(FEXTNVM3, mac_reg);
310
311 /* Toggle LANPHYPC Value bit */
312 mac_reg = er32(CTRL);
313 mac_reg |= E1000_CTRL_LANPHYPC_OVERRIDE;
314 mac_reg &= ~E1000_CTRL_LANPHYPC_VALUE;
315 ew32(CTRL, mac_reg);
316 e1e_flush();
Bruce Allance43a212013-02-20 04:06:32 +0000317 usleep_range(10, 20);
Bruce Allancb17aab2012-04-13 03:16:22 +0000318 mac_reg &= ~E1000_CTRL_LANPHYPC_OVERRIDE;
319 ew32(CTRL, mac_reg);
320 e1e_flush();
Bruce Allan2fbe4522012-04-19 03:21:47 +0000321 if (hw->mac.type < e1000_pch_lpt) {
322 msleep(50);
323 } else {
324 u16 count = 20;
325 do {
326 usleep_range(5000, 10000);
327 } while (!(er32(CTRL_EXT) &
328 E1000_CTRL_EXT_LPCD) && count--);
Bruce Allan16b095a2013-06-29 07:42:39 +0000329 usleep_range(30000, 60000);
330 if (e1000_phy_is_accessible_pchlan(hw))
331 break;
332
333 /* Toggling LANPHYPC brings the PHY out of SMBus mode
334 * so ensure that the MAC is also out of SMBus mode
335 */
336 mac_reg = er32(CTRL_EXT);
337 mac_reg &= ~E1000_CTRL_EXT_FORCE_SMBUS;
338 ew32(CTRL_EXT, mac_reg);
339
340 if (e1000_phy_is_accessible_pchlan(hw))
341 break;
342
343 ret_val = -E1000_ERR_PHY;
Bruce Allan2fbe4522012-04-19 03:21:47 +0000344 }
Bruce Allancb17aab2012-04-13 03:16:22 +0000345 break;
346 default:
347 break;
348 }
349
350 hw->phy.ops.release(hw);
Bruce Allan16b095a2013-06-29 07:42:39 +0000351 if (!ret_val) {
352 /* Reset the PHY before any access to it. Doing so, ensures
353 * that the PHY is in a known good state before we read/write
354 * PHY registers. The generic reset is sufficient here,
355 * because we haven't determined the PHY type yet.
356 */
357 ret_val = e1000e_phy_hw_reset_generic(hw);
358 }
Bruce Allancb17aab2012-04-13 03:16:22 +0000359
Bruce Allan6e928b72012-12-12 04:45:51 +0000360out:
Bruce Allancb17aab2012-04-13 03:16:22 +0000361 /* Ungate automatic PHY configuration on non-managed 82579 */
362 if ((hw->mac.type == e1000_pch2lan) &&
363 !(fwsm & E1000_ICH_FWSM_FW_VALID)) {
364 usleep_range(10000, 20000);
365 e1000_gate_hw_phy_config_ich8lan(hw, false);
366 }
367
368 return ret_val;
Bruce Allan99730e42011-05-13 07:19:48 +0000369}
370
Auke Kokbc7f75f2007-09-17 12:30:59 -0700371/**
Bruce Allana4f58f52009-06-02 11:29:18 +0000372 * e1000_init_phy_params_pchlan - Initialize PHY function pointers
373 * @hw: pointer to the HW structure
374 *
375 * Initialize family-specific PHY parameters and function pointers.
376 **/
377static s32 e1000_init_phy_params_pchlan(struct e1000_hw *hw)
378{
379 struct e1000_phy_info *phy = &hw->phy;
Bruce Allan70806a72013-01-05 05:08:37 +0000380 s32 ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +0000381
Bruce Allane80bd1d2013-05-01 01:19:46 +0000382 phy->addr = 1;
383 phy->reset_delay_us = 100;
Bruce Allana4f58f52009-06-02 11:29:18 +0000384
Bruce Allane80bd1d2013-05-01 01:19:46 +0000385 phy->ops.set_page = e1000_set_page_igp;
386 phy->ops.read_reg = e1000_read_phy_reg_hv;
387 phy->ops.read_reg_locked = e1000_read_phy_reg_hv_locked;
388 phy->ops.read_reg_page = e1000_read_phy_reg_page_hv;
389 phy->ops.set_d0_lplu_state = e1000_set_lplu_state_pchlan;
390 phy->ops.set_d3_lplu_state = e1000_set_lplu_state_pchlan;
391 phy->ops.write_reg = e1000_write_phy_reg_hv;
392 phy->ops.write_reg_locked = e1000_write_phy_reg_hv_locked;
393 phy->ops.write_reg_page = e1000_write_phy_reg_page_hv;
394 phy->ops.power_up = e1000_power_up_phy_copper;
395 phy->ops.power_down = e1000_power_down_phy_copper_ich8lan;
396 phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT;
Bruce Allana4f58f52009-06-02 11:29:18 +0000397
398 phy->id = e1000_phy_unknown;
Bruce Allancb17aab2012-04-13 03:16:22 +0000399
400 ret_val = e1000_init_phy_workarounds_pchlan(hw);
401 if (ret_val)
402 return ret_val;
403
404 if (phy->id == e1000_phy_unknown)
405 switch (hw->mac.type) {
406 default:
407 ret_val = e1000e_get_phy_id(hw);
408 if (ret_val)
409 return ret_val;
410 if ((phy->id != 0) && (phy->id != PHY_REVISION_MASK))
411 break;
412 /* fall-through */
413 case e1000_pch2lan:
Bruce Allan2fbe4522012-04-19 03:21:47 +0000414 case e1000_pch_lpt:
Bruce Allane921eb12012-11-28 09:28:37 +0000415 /* In case the PHY needs to be in mdio slow mode,
Bruce Allancb17aab2012-04-13 03:16:22 +0000416 * set slow mode and try to get the PHY id again.
417 */
418 ret_val = e1000_set_mdio_slow_mode_hv(hw);
419 if (ret_val)
420 return ret_val;
421 ret_val = e1000e_get_phy_id(hw);
422 if (ret_val)
423 return ret_val;
Bruce Allan664dc872010-11-24 06:01:46 +0000424 break;
Bruce Allancb17aab2012-04-13 03:16:22 +0000425 }
Bruce Allana4f58f52009-06-02 11:29:18 +0000426 phy->type = e1000e_get_phy_type_from_id(phy->id);
427
Bruce Allan0be84012009-12-02 17:03:18 +0000428 switch (phy->type) {
429 case e1000_phy_82577:
Bruce Alland3738bb2010-06-16 13:27:28 +0000430 case e1000_phy_82579:
Bruce Allan2fbe4522012-04-19 03:21:47 +0000431 case e1000_phy_i217:
Bruce Allana4f58f52009-06-02 11:29:18 +0000432 phy->ops.check_polarity = e1000_check_polarity_82577;
433 phy->ops.force_speed_duplex =
Bruce Allan6cc7aae2011-02-25 06:25:18 +0000434 e1000_phy_force_speed_duplex_82577;
Bruce Allan0be84012009-12-02 17:03:18 +0000435 phy->ops.get_cable_length = e1000_get_cable_length_82577;
Bruce Allan94d81862009-11-20 23:25:26 +0000436 phy->ops.get_info = e1000_get_phy_info_82577;
437 phy->ops.commit = e1000e_phy_sw_reset;
Bruce Allaneab50ff2010-05-10 15:01:30 +0000438 break;
Bruce Allan0be84012009-12-02 17:03:18 +0000439 case e1000_phy_82578:
440 phy->ops.check_polarity = e1000_check_polarity_m88;
441 phy->ops.force_speed_duplex = e1000e_phy_force_speed_duplex_m88;
442 phy->ops.get_cable_length = e1000e_get_cable_length_m88;
443 phy->ops.get_info = e1000e_get_phy_info_m88;
444 break;
445 default:
446 ret_val = -E1000_ERR_PHY;
447 break;
Bruce Allana4f58f52009-06-02 11:29:18 +0000448 }
449
450 return ret_val;
451}
452
453/**
Auke Kokbc7f75f2007-09-17 12:30:59 -0700454 * e1000_init_phy_params_ich8lan - Initialize PHY function pointers
455 * @hw: pointer to the HW structure
456 *
457 * Initialize family-specific PHY parameters and function pointers.
458 **/
459static s32 e1000_init_phy_params_ich8lan(struct e1000_hw *hw)
460{
461 struct e1000_phy_info *phy = &hw->phy;
462 s32 ret_val;
463 u16 i = 0;
464
Bruce Allane80bd1d2013-05-01 01:19:46 +0000465 phy->addr = 1;
466 phy->reset_delay_us = 100;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700467
Bruce Allane80bd1d2013-05-01 01:19:46 +0000468 phy->ops.power_up = e1000_power_up_phy_copper;
469 phy->ops.power_down = e1000_power_down_phy_copper_ich8lan;
Bruce Allan17f208d2009-12-01 15:47:22 +0000470
Bruce Allane921eb12012-11-28 09:28:37 +0000471 /* We may need to do this twice - once for IGP and if that fails,
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700472 * we'll set BM func pointers and try again
473 */
474 ret_val = e1000e_determine_phy_address(hw);
475 if (ret_val) {
Bruce Allan94d81862009-11-20 23:25:26 +0000476 phy->ops.write_reg = e1000e_write_phy_reg_bm;
Bruce Allane80bd1d2013-05-01 01:19:46 +0000477 phy->ops.read_reg = e1000e_read_phy_reg_bm;
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700478 ret_val = e1000e_determine_phy_address(hw);
Bruce Allan9b71b412009-12-01 15:53:07 +0000479 if (ret_val) {
480 e_dbg("Cannot determine PHY addr. Erroring out\n");
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700481 return ret_val;
Bruce Allan9b71b412009-12-01 15:53:07 +0000482 }
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700483 }
484
Auke Kokbc7f75f2007-09-17 12:30:59 -0700485 phy->id = 0;
486 while ((e1000_phy_unknown == e1000e_get_phy_type_from_id(phy->id)) &&
487 (i++ < 100)) {
Bruce Allan1bba4382011-03-19 00:27:20 +0000488 usleep_range(1000, 2000);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700489 ret_val = e1000e_get_phy_id(hw);
490 if (ret_val)
491 return ret_val;
492 }
493
494 /* Verify phy id */
495 switch (phy->id) {
496 case IGP03E1000_E_PHY_ID:
497 phy->type = e1000_phy_igp_3;
498 phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT;
Bruce Allan94d81862009-11-20 23:25:26 +0000499 phy->ops.read_reg_locked = e1000e_read_phy_reg_igp_locked;
500 phy->ops.write_reg_locked = e1000e_write_phy_reg_igp_locked;
Bruce Allan0be84012009-12-02 17:03:18 +0000501 phy->ops.get_info = e1000e_get_phy_info_igp;
502 phy->ops.check_polarity = e1000_check_polarity_igp;
503 phy->ops.force_speed_duplex = e1000e_phy_force_speed_duplex_igp;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700504 break;
505 case IFE_E_PHY_ID:
506 case IFE_PLUS_E_PHY_ID:
507 case IFE_C_E_PHY_ID:
508 phy->type = e1000_phy_ife;
509 phy->autoneg_mask = E1000_ALL_NOT_GIG;
Bruce Allan0be84012009-12-02 17:03:18 +0000510 phy->ops.get_info = e1000_get_phy_info_ife;
511 phy->ops.check_polarity = e1000_check_polarity_ife;
512 phy->ops.force_speed_duplex = e1000_phy_force_speed_duplex_ife;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700513 break;
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700514 case BME1000_E_PHY_ID:
515 phy->type = e1000_phy_bm;
516 phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT;
Bruce Allan94d81862009-11-20 23:25:26 +0000517 phy->ops.read_reg = e1000e_read_phy_reg_bm;
518 phy->ops.write_reg = e1000e_write_phy_reg_bm;
519 phy->ops.commit = e1000e_phy_sw_reset;
Bruce Allan0be84012009-12-02 17:03:18 +0000520 phy->ops.get_info = e1000e_get_phy_info_m88;
521 phy->ops.check_polarity = e1000_check_polarity_m88;
522 phy->ops.force_speed_duplex = e1000e_phy_force_speed_duplex_m88;
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700523 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700524 default:
525 return -E1000_ERR_PHY;
526 break;
527 }
528
529 return 0;
530}
531
532/**
533 * e1000_init_nvm_params_ich8lan - Initialize NVM function pointers
534 * @hw: pointer to the HW structure
535 *
536 * Initialize family-specific NVM parameters and function
537 * pointers.
538 **/
539static s32 e1000_init_nvm_params_ich8lan(struct e1000_hw *hw)
540{
541 struct e1000_nvm_info *nvm = &hw->nvm;
542 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
Bruce Allan148675a2009-08-07 07:41:56 +0000543 u32 gfpreg, sector_base_addr, sector_end_addr;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700544 u16 i;
545
Bruce Allanad680762008-03-28 09:15:03 -0700546 /* Can't read flash registers if the register set isn't mapped. */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700547 if (!hw->flash_address) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000548 e_dbg("ERROR: Flash registers not mapped\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700549 return -E1000_ERR_CONFIG;
550 }
551
552 nvm->type = e1000_nvm_flash_sw;
553
554 gfpreg = er32flash(ICH_FLASH_GFPREG);
555
Bruce Allane921eb12012-11-28 09:28:37 +0000556 /* sector_X_addr is a "sector"-aligned address (4096 bytes)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700557 * Add 1 to sector_end_addr since this sector is included in
Bruce Allanad680762008-03-28 09:15:03 -0700558 * the overall size.
559 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700560 sector_base_addr = gfpreg & FLASH_GFPREG_BASE_MASK;
561 sector_end_addr = ((gfpreg >> 16) & FLASH_GFPREG_BASE_MASK) + 1;
562
563 /* flash_base_addr is byte-aligned */
564 nvm->flash_base_addr = sector_base_addr << FLASH_SECTOR_ADDR_SHIFT;
565
Bruce Allane921eb12012-11-28 09:28:37 +0000566 /* find total size of the NVM, then cut in half since the total
Bruce Allanad680762008-03-28 09:15:03 -0700567 * size represents two separate NVM banks.
568 */
Bruce Allanf0ff4392013-02-20 04:05:39 +0000569 nvm->flash_bank_size = ((sector_end_addr - sector_base_addr)
570 << FLASH_SECTOR_ADDR_SHIFT);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700571 nvm->flash_bank_size /= 2;
572 /* Adjust to word count */
573 nvm->flash_bank_size /= sizeof(u16);
574
575 nvm->word_size = E1000_ICH8_SHADOW_RAM_WORDS;
576
577 /* Clear shadow ram */
578 for (i = 0; i < nvm->word_size; i++) {
Bruce Allan564ea9b2009-11-20 23:26:44 +0000579 dev_spec->shadow_ram[i].modified = false;
Bruce Allane80bd1d2013-05-01 01:19:46 +0000580 dev_spec->shadow_ram[i].value = 0xFFFF;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700581 }
582
583 return 0;
584}
585
586/**
587 * e1000_init_mac_params_ich8lan - Initialize MAC function pointers
588 * @hw: pointer to the HW structure
589 *
590 * Initialize family-specific MAC parameters and function
591 * pointers.
592 **/
Bruce Allanec34c172012-02-01 10:53:05 +0000593static s32 e1000_init_mac_params_ich8lan(struct e1000_hw *hw)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700594{
Auke Kokbc7f75f2007-09-17 12:30:59 -0700595 struct e1000_mac_info *mac = &hw->mac;
596
597 /* Set media type function pointer */
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700598 hw->phy.media_type = e1000_media_type_copper;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700599
600 /* Set mta register count */
601 mac->mta_reg_count = 32;
602 /* Set rar entry count */
603 mac->rar_entry_count = E1000_ICH_RAR_ENTRIES;
604 if (mac->type == e1000_ich8lan)
605 mac->rar_entry_count--;
Bruce Allana65a4a02010-05-10 15:01:51 +0000606 /* FWSM register */
607 mac->has_fwsm = true;
608 /* ARC subsystem not supported */
609 mac->arc_subsystem_valid = false;
Bruce Allanf464ba82010-01-07 16:31:35 +0000610 /* Adaptive IFS supported */
611 mac->adaptive_ifs = true;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700612
Bruce Allan2fbe4522012-04-19 03:21:47 +0000613 /* LED and other operations */
Bruce Allana4f58f52009-06-02 11:29:18 +0000614 switch (mac->type) {
615 case e1000_ich8lan:
616 case e1000_ich9lan:
617 case e1000_ich10lan:
Bruce Allaneb7700d2010-06-16 13:27:05 +0000618 /* check management mode */
619 mac->ops.check_mng_mode = e1000_check_mng_mode_ich8lan;
Bruce Allana4f58f52009-06-02 11:29:18 +0000620 /* ID LED init */
Bruce Alland1964eb2012-02-22 09:02:21 +0000621 mac->ops.id_led_init = e1000e_id_led_init_generic;
Bruce Allandbf80dc2011-04-16 00:34:40 +0000622 /* blink LED */
623 mac->ops.blink_led = e1000e_blink_led_generic;
Bruce Allana4f58f52009-06-02 11:29:18 +0000624 /* setup LED */
625 mac->ops.setup_led = e1000e_setup_led_generic;
626 /* cleanup LED */
627 mac->ops.cleanup_led = e1000_cleanup_led_ich8lan;
628 /* turn on/off LED */
629 mac->ops.led_on = e1000_led_on_ich8lan;
630 mac->ops.led_off = e1000_led_off_ich8lan;
631 break;
Bruce Alland3738bb2010-06-16 13:27:28 +0000632 case e1000_pch2lan:
Bruce Allan69e1e012012-04-14 03:28:50 +0000633 mac->rar_entry_count = E1000_PCH2_RAR_ENTRIES;
634 mac->ops.rar_set = e1000_rar_set_pch2lan;
635 /* fall-through */
Bruce Allan2fbe4522012-04-19 03:21:47 +0000636 case e1000_pch_lpt:
Bruce Allan69e1e012012-04-14 03:28:50 +0000637 case e1000_pchlan:
Bruce Allaneb7700d2010-06-16 13:27:05 +0000638 /* check management mode */
639 mac->ops.check_mng_mode = e1000_check_mng_mode_pchlan;
Bruce Allana4f58f52009-06-02 11:29:18 +0000640 /* ID LED init */
641 mac->ops.id_led_init = e1000_id_led_init_pchlan;
642 /* setup LED */
643 mac->ops.setup_led = e1000_setup_led_pchlan;
644 /* cleanup LED */
645 mac->ops.cleanup_led = e1000_cleanup_led_pchlan;
646 /* turn on/off LED */
647 mac->ops.led_on = e1000_led_on_pchlan;
648 mac->ops.led_off = e1000_led_off_pchlan;
649 break;
650 default:
651 break;
652 }
653
Bruce Allan2fbe4522012-04-19 03:21:47 +0000654 if (mac->type == e1000_pch_lpt) {
655 mac->rar_entry_count = E1000_PCH_LPT_RAR_ENTRIES;
656 mac->ops.rar_set = e1000_rar_set_pch_lpt;
Bruce Allanea8179a2013-03-06 09:02:47 +0000657 mac->ops.setup_physical_interface =
658 e1000_setup_copper_link_pch_lpt;
Bruce Allan2fbe4522012-04-19 03:21:47 +0000659 }
660
Auke Kokbc7f75f2007-09-17 12:30:59 -0700661 /* Enable PCS Lock-loss workaround for ICH8 */
662 if (mac->type == e1000_ich8lan)
Bruce Allan564ea9b2009-11-20 23:26:44 +0000663 e1000e_set_kmrn_lock_loss_workaround_ich8lan(hw, true);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700664
665 return 0;
666}
667
Bruce Allan7d3cabb2009-07-01 13:29:08 +0000668/**
Bruce Allan4ddc48a2012-12-05 06:25:58 +0000669 * __e1000_access_emi_reg_locked - Read/write EMI register
670 * @hw: pointer to the HW structure
671 * @addr: EMI address to program
672 * @data: pointer to value to read/write from/to the EMI address
673 * @read: boolean flag to indicate read or write
674 *
675 * This helper function assumes the SW/FW/HW Semaphore is already acquired.
676 **/
677static s32 __e1000_access_emi_reg_locked(struct e1000_hw *hw, u16 address,
678 u16 *data, bool read)
679{
Bruce Allan70806a72013-01-05 05:08:37 +0000680 s32 ret_val;
Bruce Allan4ddc48a2012-12-05 06:25:58 +0000681
682 ret_val = e1e_wphy_locked(hw, I82579_EMI_ADDR, address);
683 if (ret_val)
684 return ret_val;
685
686 if (read)
687 ret_val = e1e_rphy_locked(hw, I82579_EMI_DATA, data);
688 else
689 ret_val = e1e_wphy_locked(hw, I82579_EMI_DATA, *data);
690
691 return ret_val;
692}
693
694/**
695 * e1000_read_emi_reg_locked - Read Extended Management Interface register
696 * @hw: pointer to the HW structure
697 * @addr: EMI address to program
698 * @data: value to be read from the EMI address
699 *
700 * Assumes the SW/FW/HW Semaphore is already acquired.
701 **/
Bruce Allan203e4152012-12-05 08:40:59 +0000702s32 e1000_read_emi_reg_locked(struct e1000_hw *hw, u16 addr, u16 *data)
Bruce Allan4ddc48a2012-12-05 06:25:58 +0000703{
704 return __e1000_access_emi_reg_locked(hw, addr, data, true);
705}
706
707/**
708 * e1000_write_emi_reg_locked - Write Extended Management Interface register
709 * @hw: pointer to the HW structure
710 * @addr: EMI address to program
711 * @data: value to be written to the EMI address
712 *
713 * Assumes the SW/FW/HW Semaphore is already acquired.
714 **/
Bruce Alland495bcb2013-03-20 07:23:11 +0000715s32 e1000_write_emi_reg_locked(struct e1000_hw *hw, u16 addr, u16 data)
Bruce Allan4ddc48a2012-12-05 06:25:58 +0000716{
717 return __e1000_access_emi_reg_locked(hw, addr, &data, false);
718}
719
720/**
Bruce Allane52997f2010-06-16 13:27:49 +0000721 * e1000_set_eee_pchlan - Enable/disable EEE support
722 * @hw: pointer to the HW structure
723 *
Bruce Allan3d4d5752012-12-05 06:26:08 +0000724 * Enable/disable EEE based on setting in dev_spec structure, the duplex of
725 * the link and the EEE capabilities of the link partner. The LPI Control
726 * register bits will remain set only if/when link is up.
Bruce Allane52997f2010-06-16 13:27:49 +0000727 **/
728static s32 e1000_set_eee_pchlan(struct e1000_hw *hw)
729{
Bruce Allan2fbe4522012-04-19 03:21:47 +0000730 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
Bruce Allan3d4d5752012-12-05 06:26:08 +0000731 s32 ret_val;
Bruce Alland495bcb2013-03-20 07:23:11 +0000732 u16 lpa, pcs_status, adv, adv_addr, lpi_ctrl, data;
Bruce Allane52997f2010-06-16 13:27:49 +0000733
Bruce Alland495bcb2013-03-20 07:23:11 +0000734 switch (hw->phy.type) {
735 case e1000_phy_82579:
736 lpa = I82579_EEE_LP_ABILITY;
737 pcs_status = I82579_EEE_PCS_STATUS;
738 adv_addr = I82579_EEE_ADVERTISEMENT;
739 break;
740 case e1000_phy_i217:
741 lpa = I217_EEE_LP_ABILITY;
742 pcs_status = I217_EEE_PCS_STATUS;
743 adv_addr = I217_EEE_ADVERTISEMENT;
744 break;
745 default:
Bruce Allan5015e532012-02-08 02:55:56 +0000746 return 0;
Bruce Alland495bcb2013-03-20 07:23:11 +0000747 }
Bruce Allane52997f2010-06-16 13:27:49 +0000748
Bruce Allan3d4d5752012-12-05 06:26:08 +0000749 ret_val = hw->phy.ops.acquire(hw);
Bruce Allane52997f2010-06-16 13:27:49 +0000750 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +0000751 return ret_val;
Bruce Allane52997f2010-06-16 13:27:49 +0000752
Bruce Allan3d4d5752012-12-05 06:26:08 +0000753 ret_val = e1e_rphy_locked(hw, I82579_LPI_CTRL, &lpi_ctrl);
Bruce Allan2fbe4522012-04-19 03:21:47 +0000754 if (ret_val)
Bruce Allan3d4d5752012-12-05 06:26:08 +0000755 goto release;
Bruce Allan2fbe4522012-04-19 03:21:47 +0000756
Bruce Allan3d4d5752012-12-05 06:26:08 +0000757 /* Clear bits that enable EEE in various speeds */
758 lpi_ctrl &= ~I82579_LPI_CTRL_ENABLE_MASK;
759
760 /* Enable EEE if not disabled by user */
761 if (!dev_spec->eee_disable) {
Bruce Allan2fbe4522012-04-19 03:21:47 +0000762 /* Save off link partner's EEE ability */
Bruce Allan3d4d5752012-12-05 06:26:08 +0000763 ret_val = e1000_read_emi_reg_locked(hw, lpa,
Bruce Allan4ddc48a2012-12-05 06:25:58 +0000764 &dev_spec->eee_lp_ability);
Bruce Allan2fbe4522012-04-19 03:21:47 +0000765 if (ret_val)
766 goto release;
Bruce Allan2fbe4522012-04-19 03:21:47 +0000767
Bruce Alland495bcb2013-03-20 07:23:11 +0000768 /* Read EEE advertisement */
769 ret_val = e1000_read_emi_reg_locked(hw, adv_addr, &adv);
770 if (ret_val)
771 goto release;
772
Bruce Allan3d4d5752012-12-05 06:26:08 +0000773 /* Enable EEE only for speeds in which the link partner is
Bruce Alland495bcb2013-03-20 07:23:11 +0000774 * EEE capable and for which we advertise EEE.
Bruce Allan2fbe4522012-04-19 03:21:47 +0000775 */
Bruce Alland495bcb2013-03-20 07:23:11 +0000776 if (adv & dev_spec->eee_lp_ability & I82579_EEE_1000_SUPPORTED)
Bruce Allan3d4d5752012-12-05 06:26:08 +0000777 lpi_ctrl |= I82579_LPI_CTRL_1000_ENABLE;
778
Bruce Alland495bcb2013-03-20 07:23:11 +0000779 if (adv & dev_spec->eee_lp_ability & I82579_EEE_100_SUPPORTED) {
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000780 e1e_rphy_locked(hw, MII_LPA, &data);
781 if (data & LPA_100FULL)
Bruce Allan3d4d5752012-12-05 06:26:08 +0000782 lpi_ctrl |= I82579_LPI_CTRL_100_ENABLE;
783 else
784 /* EEE is not supported in 100Half, so ignore
785 * partner's EEE in 100 ability if full-duplex
786 * is not advertised.
787 */
788 dev_spec->eee_lp_ability &=
789 ~I82579_EEE_100_SUPPORTED;
790 }
Bruce Allan2fbe4522012-04-19 03:21:47 +0000791 }
792
Bruce Alland495bcb2013-03-20 07:23:11 +0000793 /* R/Clr IEEE MMD 3.1 bits 11:10 - Tx/Rx LPI Received */
794 ret_val = e1000_read_emi_reg_locked(hw, pcs_status, &data);
795 if (ret_val)
796 goto release;
797
Bruce Allan3d4d5752012-12-05 06:26:08 +0000798 ret_val = e1e_wphy_locked(hw, I82579_LPI_CTRL, lpi_ctrl);
799release:
800 hw->phy.ops.release(hw);
801
802 return ret_val;
Bruce Allane52997f2010-06-16 13:27:49 +0000803}
804
805/**
Bruce Allane08f6262013-02-20 03:06:34 +0000806 * e1000_k1_workaround_lpt_lp - K1 workaround on Lynxpoint-LP
807 * @hw: pointer to the HW structure
808 * @link: link up bool flag
809 *
810 * When K1 is enabled for 1Gbps, the MAC can miss 2 DMA completion indications
811 * preventing further DMA write requests. Workaround the issue by disabling
812 * the de-assertion of the clock request when in 1Gpbs mode.
Bruce Allane0236ad2013-06-21 09:07:13 +0000813 * Also, set appropriate Tx re-transmission timeouts for 10 and 100Half link
814 * speeds in order to avoid Tx hangs.
Bruce Allane08f6262013-02-20 03:06:34 +0000815 **/
816static s32 e1000_k1_workaround_lpt_lp(struct e1000_hw *hw, bool link)
817{
818 u32 fextnvm6 = er32(FEXTNVM6);
Bruce Allane0236ad2013-06-21 09:07:13 +0000819 u32 status = er32(STATUS);
Bruce Allane08f6262013-02-20 03:06:34 +0000820 s32 ret_val = 0;
Bruce Allane0236ad2013-06-21 09:07:13 +0000821 u16 reg;
Bruce Allane08f6262013-02-20 03:06:34 +0000822
Bruce Allane0236ad2013-06-21 09:07:13 +0000823 if (link && (status & E1000_STATUS_SPEED_1000)) {
Bruce Allane08f6262013-02-20 03:06:34 +0000824 ret_val = hw->phy.ops.acquire(hw);
825 if (ret_val)
826 return ret_val;
827
828 ret_val =
829 e1000e_read_kmrn_reg_locked(hw, E1000_KMRNCTRLSTA_K1_CONFIG,
Bruce Allane0236ad2013-06-21 09:07:13 +0000830 &reg);
Bruce Allane08f6262013-02-20 03:06:34 +0000831 if (ret_val)
832 goto release;
833
834 ret_val =
835 e1000e_write_kmrn_reg_locked(hw,
836 E1000_KMRNCTRLSTA_K1_CONFIG,
Bruce Allane0236ad2013-06-21 09:07:13 +0000837 reg &
Bruce Allane08f6262013-02-20 03:06:34 +0000838 ~E1000_KMRNCTRLSTA_K1_ENABLE);
839 if (ret_val)
840 goto release;
841
842 usleep_range(10, 20);
843
844 ew32(FEXTNVM6, fextnvm6 | E1000_FEXTNVM6_REQ_PLL_CLK);
845
846 ret_val =
847 e1000e_write_kmrn_reg_locked(hw,
848 E1000_KMRNCTRLSTA_K1_CONFIG,
Bruce Allane0236ad2013-06-21 09:07:13 +0000849 reg);
Bruce Allane08f6262013-02-20 03:06:34 +0000850release:
851 hw->phy.ops.release(hw);
852 } else {
853 /* clear FEXTNVM6 bit 8 on link down or 10/100 */
Bruce Allane0236ad2013-06-21 09:07:13 +0000854 fextnvm6 &= ~E1000_FEXTNVM6_REQ_PLL_CLK;
855
856 if (!link || ((status & E1000_STATUS_SPEED_100) &&
857 (status & E1000_STATUS_FD)))
858 goto update_fextnvm6;
859
860 ret_val = e1e_rphy(hw, I217_INBAND_CTRL, &reg);
861 if (ret_val)
862 return ret_val;
863
864 /* Clear link status transmit timeout */
865 reg &= ~I217_INBAND_CTRL_LINK_STAT_TX_TIMEOUT_MASK;
866
867 if (status & E1000_STATUS_SPEED_100) {
868 /* Set inband Tx timeout to 5x10us for 100Half */
869 reg |= 5 << I217_INBAND_CTRL_LINK_STAT_TX_TIMEOUT_SHIFT;
870
871 /* Do not extend the K1 entry latency for 100Half */
872 fextnvm6 &= ~E1000_FEXTNVM6_ENABLE_K1_ENTRY_CONDITION;
873 } else {
874 /* Set inband Tx timeout to 50x10us for 10Full/Half */
875 reg |= 50 <<
876 I217_INBAND_CTRL_LINK_STAT_TX_TIMEOUT_SHIFT;
877
878 /* Extend the K1 entry latency for 10 Mbps */
879 fextnvm6 |= E1000_FEXTNVM6_ENABLE_K1_ENTRY_CONDITION;
880 }
881
882 ret_val = e1e_wphy(hw, I217_INBAND_CTRL, reg);
883 if (ret_val)
884 return ret_val;
885
886update_fextnvm6:
887 ew32(FEXTNVM6, fextnvm6);
Bruce Allane08f6262013-02-20 03:06:34 +0000888 }
889
890 return ret_val;
891}
892
893/**
Bruce Allancf8fb732013-03-06 09:03:02 +0000894 * e1000_platform_pm_pch_lpt - Set platform power management values
895 * @hw: pointer to the HW structure
896 * @link: bool indicating link status
897 *
898 * Set the Latency Tolerance Reporting (LTR) values for the "PCIe-like"
899 * GbE MAC in the Lynx Point PCH based on Rx buffer size and link speed
900 * when link is up (which must not exceed the maximum latency supported
901 * by the platform), otherwise specify there is no LTR requirement.
902 * Unlike true-PCIe devices which set the LTR maximum snoop/no-snoop
903 * latencies in the LTR Extended Capability Structure in the PCIe Extended
904 * Capability register set, on this device LTR is set by writing the
905 * equivalent snoop/no-snoop latencies in the LTRV register in the MAC and
906 * set the SEND bit to send an Intel On-chip System Fabric sideband (IOSF-SB)
907 * message to the PMC.
908 **/
909static s32 e1000_platform_pm_pch_lpt(struct e1000_hw *hw, bool link)
910{
911 u32 reg = link << (E1000_LTRV_REQ_SHIFT + E1000_LTRV_NOSNOOP_SHIFT) |
912 link << E1000_LTRV_REQ_SHIFT | E1000_LTRV_SEND;
913 u16 lat_enc = 0; /* latency encoded */
914
915 if (link) {
916 u16 speed, duplex, scale = 0;
917 u16 max_snoop, max_nosnoop;
918 u16 max_ltr_enc; /* max LTR latency encoded */
919 s64 lat_ns; /* latency (ns) */
920 s64 value;
921 u32 rxa;
922
923 if (!hw->adapter->max_frame_size) {
924 e_dbg("max_frame_size not set.\n");
925 return -E1000_ERR_CONFIG;
926 }
927
928 hw->mac.ops.get_link_up_info(hw, &speed, &duplex);
929 if (!speed) {
930 e_dbg("Speed not set.\n");
931 return -E1000_ERR_CONFIG;
932 }
933
934 /* Rx Packet Buffer Allocation size (KB) */
935 rxa = er32(PBA) & E1000_PBA_RXA_MASK;
936
937 /* Determine the maximum latency tolerated by the device.
938 *
939 * Per the PCIe spec, the tolerated latencies are encoded as
940 * a 3-bit encoded scale (only 0-5 are valid) multiplied by
941 * a 10-bit value (0-1023) to provide a range from 1 ns to
942 * 2^25*(2^10-1) ns. The scale is encoded as 0=2^0ns,
943 * 1=2^5ns, 2=2^10ns,...5=2^25ns.
944 */
945 lat_ns = ((s64)rxa * 1024 -
946 (2 * (s64)hw->adapter->max_frame_size)) * 8 * 1000;
947 if (lat_ns < 0)
948 lat_ns = 0;
949 else
950 do_div(lat_ns, speed);
951
952 value = lat_ns;
953 while (value > PCI_LTR_VALUE_MASK) {
954 scale++;
955 value = DIV_ROUND_UP(value, (1 << 5));
956 }
957 if (scale > E1000_LTRV_SCALE_MAX) {
958 e_dbg("Invalid LTR latency scale %d\n", scale);
959 return -E1000_ERR_CONFIG;
960 }
961 lat_enc = (u16)((scale << PCI_LTR_SCALE_SHIFT) | value);
962
963 /* Determine the maximum latency tolerated by the platform */
964 pci_read_config_word(hw->adapter->pdev, E1000_PCI_LTR_CAP_LPT,
965 &max_snoop);
966 pci_read_config_word(hw->adapter->pdev,
967 E1000_PCI_LTR_CAP_LPT + 2, &max_nosnoop);
968 max_ltr_enc = max_t(u16, max_snoop, max_nosnoop);
969
970 if (lat_enc > max_ltr_enc)
971 lat_enc = max_ltr_enc;
972 }
973
974 /* Set Snoop and No-Snoop latencies the same */
975 reg |= lat_enc | (lat_enc << E1000_LTRV_NOSNOOP_SHIFT);
976 ew32(LTRV, reg);
977
978 return 0;
979}
980
981/**
Bruce Allan7d3cabb2009-07-01 13:29:08 +0000982 * e1000_check_for_copper_link_ich8lan - Check for link (Copper)
983 * @hw: pointer to the HW structure
984 *
985 * Checks to see of the link status of the hardware has changed. If a
986 * change in link status has been detected, then we read the PHY registers
987 * to get the current speed/duplex if link exists.
988 **/
989static s32 e1000_check_for_copper_link_ich8lan(struct e1000_hw *hw)
990{
991 struct e1000_mac_info *mac = &hw->mac;
992 s32 ret_val;
993 bool link;
Bruce Allan1d2101a72011-07-22 06:21:56 +0000994 u16 phy_reg;
Bruce Allan7d3cabb2009-07-01 13:29:08 +0000995
Bruce Allane921eb12012-11-28 09:28:37 +0000996 /* We only want to go out to the PHY registers to see if Auto-Neg
Bruce Allan7d3cabb2009-07-01 13:29:08 +0000997 * has completed and/or if our link status has changed. The
998 * get_link_status flag is set upon receiving a Link Status
999 * Change or Rx Sequence Error interrupt.
1000 */
Bruce Allan5015e532012-02-08 02:55:56 +00001001 if (!mac->get_link_status)
1002 return 0;
Bruce Allan7d3cabb2009-07-01 13:29:08 +00001003
Bruce Allane921eb12012-11-28 09:28:37 +00001004 /* First we want to see if the MII Status Register reports
Bruce Allan7d3cabb2009-07-01 13:29:08 +00001005 * link. If so, then we want to get the current speed/duplex
1006 * of the PHY.
1007 */
1008 ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link);
1009 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001010 return ret_val;
Bruce Allan7d3cabb2009-07-01 13:29:08 +00001011
Bruce Allan1d5846b2009-10-29 13:46:05 +00001012 if (hw->mac.type == e1000_pchlan) {
1013 ret_val = e1000_k1_gig_workaround_hv(hw, link);
1014 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001015 return ret_val;
Bruce Allan1d5846b2009-10-29 13:46:05 +00001016 }
1017
Bruce Allan772d05c2013-03-06 09:02:36 +00001018 /* When connected at 10Mbps half-duplex, 82579 parts are excessively
1019 * aggressive resulting in many collisions. To avoid this, increase
1020 * the IPG and reduce Rx latency in the PHY.
1021 */
1022 if ((hw->mac.type == e1000_pch2lan) && link) {
1023 u32 reg;
1024 reg = er32(STATUS);
1025 if (!(reg & (E1000_STATUS_FD | E1000_STATUS_SPEED_MASK))) {
1026 reg = er32(TIPG);
1027 reg &= ~E1000_TIPG_IPGT_MASK;
1028 reg |= 0xFF;
1029 ew32(TIPG, reg);
1030
1031 /* Reduce Rx latency in analog PHY */
1032 ret_val = hw->phy.ops.acquire(hw);
1033 if (ret_val)
1034 return ret_val;
1035
1036 ret_val =
1037 e1000_write_emi_reg_locked(hw, I82579_RX_CONFIG, 0);
1038
1039 hw->phy.ops.release(hw);
1040
1041 if (ret_val)
1042 return ret_val;
1043 }
1044 }
1045
Bruce Allane08f6262013-02-20 03:06:34 +00001046 /* Work-around I218 hang issue */
1047 if ((hw->adapter->pdev->device == E1000_DEV_ID_PCH_LPTLP_I218_LM) ||
Bruce Allan91a3d822013-06-29 01:15:16 +00001048 (hw->adapter->pdev->device == E1000_DEV_ID_PCH_LPTLP_I218_V) ||
1049 (hw->adapter->pdev->device == E1000_DEV_ID_PCH_I218_LM3) ||
1050 (hw->adapter->pdev->device == E1000_DEV_ID_PCH_I218_V3)) {
Bruce Allane08f6262013-02-20 03:06:34 +00001051 ret_val = e1000_k1_workaround_lpt_lp(hw, link);
1052 if (ret_val)
1053 return ret_val;
1054 }
1055
Bruce Allancf8fb732013-03-06 09:03:02 +00001056 if (hw->mac.type == e1000_pch_lpt) {
1057 /* Set platform power management values for
1058 * Latency Tolerance Reporting (LTR)
1059 */
1060 ret_val = e1000_platform_pm_pch_lpt(hw, link);
1061 if (ret_val)
1062 return ret_val;
1063 }
1064
Bruce Allan2fbe4522012-04-19 03:21:47 +00001065 /* Clear link partner's EEE ability */
1066 hw->dev_spec.ich8lan.eee_lp_ability = 0;
1067
Bruce Allan7d3cabb2009-07-01 13:29:08 +00001068 if (!link)
Bruce Allane80bd1d2013-05-01 01:19:46 +00001069 return 0; /* No link detected */
Bruce Allan7d3cabb2009-07-01 13:29:08 +00001070
1071 mac->get_link_status = false;
1072
Bruce Allan1d2101a72011-07-22 06:21:56 +00001073 switch (hw->mac.type) {
1074 case e1000_pch2lan:
Bruce Allan831bd2e2010-09-22 17:16:18 +00001075 ret_val = e1000_k1_workaround_lv(hw);
1076 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001077 return ret_val;
Bruce Allan1d2101a72011-07-22 06:21:56 +00001078 /* fall-thru */
1079 case e1000_pchlan:
1080 if (hw->phy.type == e1000_phy_82578) {
1081 ret_val = e1000_link_stall_workaround_hv(hw);
1082 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001083 return ret_val;
Bruce Allan1d2101a72011-07-22 06:21:56 +00001084 }
1085
Bruce Allane921eb12012-11-28 09:28:37 +00001086 /* Workaround for PCHx parts in half-duplex:
Bruce Allan1d2101a72011-07-22 06:21:56 +00001087 * Set the number of preambles removed from the packet
1088 * when it is passed from the PHY to the MAC to prevent
1089 * the MAC from misinterpreting the packet type.
1090 */
1091 e1e_rphy(hw, HV_KMRN_FIFO_CTRLSTA, &phy_reg);
1092 phy_reg &= ~HV_KMRN_FIFO_CTRLSTA_PREAMBLE_MASK;
1093
1094 if ((er32(STATUS) & E1000_STATUS_FD) != E1000_STATUS_FD)
1095 phy_reg |= (1 << HV_KMRN_FIFO_CTRLSTA_PREAMBLE_SHIFT);
1096
1097 e1e_wphy(hw, HV_KMRN_FIFO_CTRLSTA, phy_reg);
1098 break;
1099 default:
1100 break;
Bruce Allan831bd2e2010-09-22 17:16:18 +00001101 }
1102
Bruce Allane921eb12012-11-28 09:28:37 +00001103 /* Check if there was DownShift, must be checked
Bruce Allan7d3cabb2009-07-01 13:29:08 +00001104 * immediately after link-up
1105 */
1106 e1000e_check_downshift(hw);
1107
Bruce Allane52997f2010-06-16 13:27:49 +00001108 /* Enable/Disable EEE after link up */
1109 ret_val = e1000_set_eee_pchlan(hw);
1110 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001111 return ret_val;
Bruce Allane52997f2010-06-16 13:27:49 +00001112
Bruce Allane921eb12012-11-28 09:28:37 +00001113 /* If we are forcing speed/duplex, then we simply return since
Bruce Allan7d3cabb2009-07-01 13:29:08 +00001114 * we have already determined whether we have link or not.
1115 */
Bruce Allan5015e532012-02-08 02:55:56 +00001116 if (!mac->autoneg)
1117 return -E1000_ERR_CONFIG;
Bruce Allan7d3cabb2009-07-01 13:29:08 +00001118
Bruce Allane921eb12012-11-28 09:28:37 +00001119 /* Auto-Neg is enabled. Auto Speed Detection takes care
Bruce Allan7d3cabb2009-07-01 13:29:08 +00001120 * of MAC speed/duplex configuration. So we only need to
1121 * configure Collision Distance in the MAC.
1122 */
Bruce Allan57cde762012-02-22 09:02:58 +00001123 mac->ops.config_collision_dist(hw);
Bruce Allan7d3cabb2009-07-01 13:29:08 +00001124
Bruce Allane921eb12012-11-28 09:28:37 +00001125 /* Configure Flow Control now that Auto-Neg has completed.
Bruce Allan7d3cabb2009-07-01 13:29:08 +00001126 * First, we need to restore the desired flow control
1127 * settings because we may have had to re-autoneg with a
1128 * different link partner.
1129 */
1130 ret_val = e1000e_config_fc_after_link_up(hw);
1131 if (ret_val)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001132 e_dbg("Error configuring flow control\n");
Bruce Allan7d3cabb2009-07-01 13:29:08 +00001133
Bruce Allan7d3cabb2009-07-01 13:29:08 +00001134 return ret_val;
1135}
1136
Jeff Kirsher69e3fd82008-04-02 13:48:18 -07001137static s32 e1000_get_variants_ich8lan(struct e1000_adapter *adapter)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001138{
1139 struct e1000_hw *hw = &adapter->hw;
1140 s32 rc;
1141
Bruce Allanec34c172012-02-01 10:53:05 +00001142 rc = e1000_init_mac_params_ich8lan(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001143 if (rc)
1144 return rc;
1145
1146 rc = e1000_init_nvm_params_ich8lan(hw);
1147 if (rc)
1148 return rc;
1149
Bruce Alland3738bb2010-06-16 13:27:28 +00001150 switch (hw->mac.type) {
1151 case e1000_ich8lan:
1152 case e1000_ich9lan:
1153 case e1000_ich10lan:
Bruce Allana4f58f52009-06-02 11:29:18 +00001154 rc = e1000_init_phy_params_ich8lan(hw);
Bruce Alland3738bb2010-06-16 13:27:28 +00001155 break;
1156 case e1000_pchlan:
1157 case e1000_pch2lan:
Bruce Allan2fbe4522012-04-19 03:21:47 +00001158 case e1000_pch_lpt:
Bruce Alland3738bb2010-06-16 13:27:28 +00001159 rc = e1000_init_phy_params_pchlan(hw);
1160 break;
1161 default:
1162 break;
1163 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001164 if (rc)
1165 return rc;
1166
Bruce Allane921eb12012-11-28 09:28:37 +00001167 /* Disable Jumbo Frame support on parts with Intel 10/100 PHY or
Bruce Allan23e4f062011-02-25 07:44:51 +00001168 * on parts with MACsec enabled in NVM (reflected in CTRL_EXT).
1169 */
1170 if ((adapter->hw.phy.type == e1000_phy_ife) ||
1171 ((adapter->hw.mac.type >= e1000_pch2lan) &&
1172 (!(er32(CTRL_EXT) & E1000_CTRL_EXT_LSECCK)))) {
Bruce Allan2adc55c2009-06-02 11:28:58 +00001173 adapter->flags &= ~FLAG_HAS_JUMBO_FRAMES;
1174 adapter->max_hw_frame_size = ETH_FRAME_LEN + ETH_FCS_LEN;
Bruce Allandbf80dc2011-04-16 00:34:40 +00001175
1176 hw->mac.ops.blink_led = NULL;
Bruce Allan2adc55c2009-06-02 11:28:58 +00001177 }
1178
Auke Kokbc7f75f2007-09-17 12:30:59 -07001179 if ((adapter->hw.mac.type == e1000_ich8lan) &&
Bruce Allan462d5992011-09-30 08:07:11 +00001180 (adapter->hw.phy.type != e1000_phy_ife))
Auke Kokbc7f75f2007-09-17 12:30:59 -07001181 adapter->flags |= FLAG_LSC_GIG_SPEED_DROP;
1182
Bruce Allanc6e7f512011-07-29 05:53:02 +00001183 /* Enable workaround for 82579 w/ ME enabled */
1184 if ((adapter->hw.mac.type == e1000_pch2lan) &&
1185 (er32(FWSM) & E1000_ICH_FWSM_FW_VALID))
1186 adapter->flags2 |= FLAG2_PCIM2PCI_ARBITER_WA;
1187
Auke Kokbc7f75f2007-09-17 12:30:59 -07001188 return 0;
1189}
1190
Thomas Gleixner717d4382008-10-02 16:33:40 -07001191static DEFINE_MUTEX(nvm_mutex);
Thomas Gleixner717d4382008-10-02 16:33:40 -07001192
Auke Kokbc7f75f2007-09-17 12:30:59 -07001193/**
Bruce Allanca15df52009-10-26 11:23:43 +00001194 * e1000_acquire_nvm_ich8lan - Acquire NVM mutex
1195 * @hw: pointer to the HW structure
1196 *
1197 * Acquires the mutex for performing NVM operations.
1198 **/
Bruce Allan8bb62862013-01-16 08:46:49 +00001199static s32 e1000_acquire_nvm_ich8lan(struct e1000_hw __always_unused *hw)
Bruce Allanca15df52009-10-26 11:23:43 +00001200{
1201 mutex_lock(&nvm_mutex);
1202
1203 return 0;
1204}
1205
1206/**
1207 * e1000_release_nvm_ich8lan - Release NVM mutex
1208 * @hw: pointer to the HW structure
1209 *
1210 * Releases the mutex used while performing NVM operations.
1211 **/
Bruce Allan8bb62862013-01-16 08:46:49 +00001212static void e1000_release_nvm_ich8lan(struct e1000_hw __always_unused *hw)
Bruce Allanca15df52009-10-26 11:23:43 +00001213{
1214 mutex_unlock(&nvm_mutex);
Bruce Allanca15df52009-10-26 11:23:43 +00001215}
1216
Bruce Allanca15df52009-10-26 11:23:43 +00001217/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001218 * e1000_acquire_swflag_ich8lan - Acquire software control flag
1219 * @hw: pointer to the HW structure
1220 *
Bruce Allanca15df52009-10-26 11:23:43 +00001221 * Acquires the software control flag for performing PHY and select
1222 * MAC CSR accesses.
Auke Kokbc7f75f2007-09-17 12:30:59 -07001223 **/
1224static s32 e1000_acquire_swflag_ich8lan(struct e1000_hw *hw)
1225{
Bruce Allan373a88d2009-08-07 07:41:37 +00001226 u32 extcnf_ctrl, timeout = PHY_CFG_TIMEOUT;
1227 s32 ret_val = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001228
Bruce Allana90b4122011-10-07 03:50:38 +00001229 if (test_and_set_bit(__E1000_ACCESS_SHARED_RESOURCE,
1230 &hw->adapter->state)) {
Bruce Allan34c9ef82011-10-21 04:33:47 +00001231 e_dbg("contention for Phy access\n");
Bruce Allana90b4122011-10-07 03:50:38 +00001232 return -E1000_ERR_PHY;
1233 }
Thomas Gleixner717d4382008-10-02 16:33:40 -07001234
Auke Kokbc7f75f2007-09-17 12:30:59 -07001235 while (timeout) {
1236 extcnf_ctrl = er32(EXTCNF_CTRL);
Bruce Allan373a88d2009-08-07 07:41:37 +00001237 if (!(extcnf_ctrl & E1000_EXTCNF_CTRL_SWFLAG))
1238 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001239
Auke Kokbc7f75f2007-09-17 12:30:59 -07001240 mdelay(1);
1241 timeout--;
1242 }
1243
1244 if (!timeout) {
Bruce Allana90b4122011-10-07 03:50:38 +00001245 e_dbg("SW has already locked the resource.\n");
Bruce Allan373a88d2009-08-07 07:41:37 +00001246 ret_val = -E1000_ERR_CONFIG;
1247 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001248 }
1249
Bruce Allan53ac5a82009-10-26 11:23:06 +00001250 timeout = SW_FLAG_TIMEOUT;
Bruce Allan373a88d2009-08-07 07:41:37 +00001251
1252 extcnf_ctrl |= E1000_EXTCNF_CTRL_SWFLAG;
1253 ew32(EXTCNF_CTRL, extcnf_ctrl);
1254
1255 while (timeout) {
1256 extcnf_ctrl = er32(EXTCNF_CTRL);
1257 if (extcnf_ctrl & E1000_EXTCNF_CTRL_SWFLAG)
1258 break;
1259
1260 mdelay(1);
1261 timeout--;
1262 }
1263
1264 if (!timeout) {
Bruce Allan434f1392011-12-16 00:46:54 +00001265 e_dbg("Failed to acquire the semaphore, FW or HW has it: FWSM=0x%8.8x EXTCNF_CTRL=0x%8.8x)\n",
Bruce Allana90b4122011-10-07 03:50:38 +00001266 er32(FWSM), extcnf_ctrl);
Bruce Allan373a88d2009-08-07 07:41:37 +00001267 extcnf_ctrl &= ~E1000_EXTCNF_CTRL_SWFLAG;
1268 ew32(EXTCNF_CTRL, extcnf_ctrl);
1269 ret_val = -E1000_ERR_CONFIG;
1270 goto out;
1271 }
1272
1273out:
1274 if (ret_val)
Bruce Allana90b4122011-10-07 03:50:38 +00001275 clear_bit(__E1000_ACCESS_SHARED_RESOURCE, &hw->adapter->state);
Bruce Allan373a88d2009-08-07 07:41:37 +00001276
1277 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001278}
1279
1280/**
1281 * e1000_release_swflag_ich8lan - Release software control flag
1282 * @hw: pointer to the HW structure
1283 *
Bruce Allanca15df52009-10-26 11:23:43 +00001284 * Releases the software control flag for performing PHY and select
1285 * MAC CSR accesses.
Auke Kokbc7f75f2007-09-17 12:30:59 -07001286 **/
1287static void e1000_release_swflag_ich8lan(struct e1000_hw *hw)
1288{
1289 u32 extcnf_ctrl;
1290
1291 extcnf_ctrl = er32(EXTCNF_CTRL);
Bruce Allanc5caf482011-05-13 07:19:53 +00001292
1293 if (extcnf_ctrl & E1000_EXTCNF_CTRL_SWFLAG) {
1294 extcnf_ctrl &= ~E1000_EXTCNF_CTRL_SWFLAG;
1295 ew32(EXTCNF_CTRL, extcnf_ctrl);
1296 } else {
1297 e_dbg("Semaphore unexpectedly released by sw/fw/hw\n");
1298 }
Thomas Gleixner717d4382008-10-02 16:33:40 -07001299
Bruce Allana90b4122011-10-07 03:50:38 +00001300 clear_bit(__E1000_ACCESS_SHARED_RESOURCE, &hw->adapter->state);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001301}
1302
1303/**
Bruce Allan4662e822008-08-26 18:37:06 -07001304 * e1000_check_mng_mode_ich8lan - Checks management mode
1305 * @hw: pointer to the HW structure
1306 *
Bruce Allaneb7700d2010-06-16 13:27:05 +00001307 * This checks if the adapter has any manageability enabled.
Bruce Allan4662e822008-08-26 18:37:06 -07001308 * This is a function pointer entry point only called by read/write
1309 * routines for the PHY and NVM parts.
1310 **/
1311static bool e1000_check_mng_mode_ich8lan(struct e1000_hw *hw)
1312{
Bruce Allana708dd82009-11-20 23:28:37 +00001313 u32 fwsm;
1314
1315 fwsm = er32(FWSM);
Bruce Allanf0ff4392013-02-20 04:05:39 +00001316 return ((fwsm & E1000_ICH_FWSM_FW_VALID) &&
1317 ((fwsm & E1000_FWSM_MODE_MASK) ==
1318 (E1000_ICH_MNG_IAMT_MODE << E1000_FWSM_MODE_SHIFT)));
Bruce Allaneb7700d2010-06-16 13:27:05 +00001319}
Bruce Allan4662e822008-08-26 18:37:06 -07001320
Bruce Allaneb7700d2010-06-16 13:27:05 +00001321/**
1322 * e1000_check_mng_mode_pchlan - Checks management mode
1323 * @hw: pointer to the HW structure
1324 *
1325 * This checks if the adapter has iAMT enabled.
1326 * This is a function pointer entry point only called by read/write
1327 * routines for the PHY and NVM parts.
1328 **/
1329static bool e1000_check_mng_mode_pchlan(struct e1000_hw *hw)
1330{
1331 u32 fwsm;
1332
1333 fwsm = er32(FWSM);
1334 return (fwsm & E1000_ICH_FWSM_FW_VALID) &&
Bruce Allanf0ff4392013-02-20 04:05:39 +00001335 (fwsm & (E1000_ICH_MNG_IAMT_MODE << E1000_FWSM_MODE_SHIFT));
Bruce Allan4662e822008-08-26 18:37:06 -07001336}
1337
1338/**
Bruce Allan69e1e012012-04-14 03:28:50 +00001339 * e1000_rar_set_pch2lan - Set receive address register
1340 * @hw: pointer to the HW structure
1341 * @addr: pointer to the receive address
1342 * @index: receive address array register
1343 *
1344 * Sets the receive address array register at index to the address passed
1345 * in by addr. For 82579, RAR[0] is the base address register that is to
1346 * contain the MAC address but RAR[1-6] are reserved for manageability (ME).
1347 * Use SHRA[0-3] in place of those reserved for ME.
1348 **/
1349static void e1000_rar_set_pch2lan(struct e1000_hw *hw, u8 *addr, u32 index)
1350{
1351 u32 rar_low, rar_high;
1352
Bruce Allane921eb12012-11-28 09:28:37 +00001353 /* HW expects these in little endian so we reverse the byte order
Bruce Allan69e1e012012-04-14 03:28:50 +00001354 * from network order (big endian) to little endian
1355 */
1356 rar_low = ((u32)addr[0] |
1357 ((u32)addr[1] << 8) |
1358 ((u32)addr[2] << 16) | ((u32)addr[3] << 24));
1359
1360 rar_high = ((u32)addr[4] | ((u32)addr[5] << 8));
1361
1362 /* If MAC address zero, no need to set the AV bit */
1363 if (rar_low || rar_high)
1364 rar_high |= E1000_RAH_AV;
1365
1366 if (index == 0) {
1367 ew32(RAL(index), rar_low);
1368 e1e_flush();
1369 ew32(RAH(index), rar_high);
1370 e1e_flush();
1371 return;
1372 }
1373
David Ertmanc3a0dce2013-09-05 04:24:25 +00001374 /* RAR[1-6] are owned by manageability. Skip those and program the
1375 * next address into the SHRA register array.
1376 */
1377 if (index < (u32)(hw->mac.rar_entry_count - 6)) {
Bruce Allan69e1e012012-04-14 03:28:50 +00001378 s32 ret_val;
1379
1380 ret_val = e1000_acquire_swflag_ich8lan(hw);
1381 if (ret_val)
1382 goto out;
1383
1384 ew32(SHRAL(index - 1), rar_low);
1385 e1e_flush();
1386 ew32(SHRAH(index - 1), rar_high);
1387 e1e_flush();
1388
1389 e1000_release_swflag_ich8lan(hw);
1390
1391 /* verify the register updates */
1392 if ((er32(SHRAL(index - 1)) == rar_low) &&
1393 (er32(SHRAH(index - 1)) == rar_high))
1394 return;
1395
1396 e_dbg("SHRA[%d] might be locked by ME - FWSM=0x%8.8x\n",
1397 (index - 1), er32(FWSM));
1398 }
1399
1400out:
1401 e_dbg("Failed to write receive address at index %d\n", index);
1402}
1403
1404/**
Bruce Allan2fbe4522012-04-19 03:21:47 +00001405 * e1000_rar_set_pch_lpt - Set receive address registers
1406 * @hw: pointer to the HW structure
1407 * @addr: pointer to the receive address
1408 * @index: receive address array register
1409 *
1410 * Sets the receive address register array at index to the address passed
1411 * in by addr. For LPT, RAR[0] is the base address register that is to
1412 * contain the MAC address. SHRA[0-10] are the shared receive address
1413 * registers that are shared between the Host and manageability engine (ME).
1414 **/
1415static void e1000_rar_set_pch_lpt(struct e1000_hw *hw, u8 *addr, u32 index)
1416{
1417 u32 rar_low, rar_high;
1418 u32 wlock_mac;
1419
Bruce Allane921eb12012-11-28 09:28:37 +00001420 /* HW expects these in little endian so we reverse the byte order
Bruce Allan2fbe4522012-04-19 03:21:47 +00001421 * from network order (big endian) to little endian
1422 */
1423 rar_low = ((u32)addr[0] | ((u32)addr[1] << 8) |
1424 ((u32)addr[2] << 16) | ((u32)addr[3] << 24));
1425
1426 rar_high = ((u32)addr[4] | ((u32)addr[5] << 8));
1427
1428 /* If MAC address zero, no need to set the AV bit */
1429 if (rar_low || rar_high)
1430 rar_high |= E1000_RAH_AV;
1431
1432 if (index == 0) {
1433 ew32(RAL(index), rar_low);
1434 e1e_flush();
1435 ew32(RAH(index), rar_high);
1436 e1e_flush();
1437 return;
1438 }
1439
Bruce Allane921eb12012-11-28 09:28:37 +00001440 /* The manageability engine (ME) can lock certain SHRAR registers that
Bruce Allan2fbe4522012-04-19 03:21:47 +00001441 * it is using - those registers are unavailable for use.
1442 */
1443 if (index < hw->mac.rar_entry_count) {
1444 wlock_mac = er32(FWSM) & E1000_FWSM_WLOCK_MAC_MASK;
1445 wlock_mac >>= E1000_FWSM_WLOCK_MAC_SHIFT;
1446
1447 /* Check if all SHRAR registers are locked */
1448 if (wlock_mac == 1)
1449 goto out;
1450
1451 if ((wlock_mac == 0) || (index <= wlock_mac)) {
1452 s32 ret_val;
1453
1454 ret_val = e1000_acquire_swflag_ich8lan(hw);
1455
1456 if (ret_val)
1457 goto out;
1458
1459 ew32(SHRAL_PCH_LPT(index - 1), rar_low);
1460 e1e_flush();
1461 ew32(SHRAH_PCH_LPT(index - 1), rar_high);
1462 e1e_flush();
1463
1464 e1000_release_swflag_ich8lan(hw);
1465
1466 /* verify the register updates */
1467 if ((er32(SHRAL_PCH_LPT(index - 1)) == rar_low) &&
1468 (er32(SHRAH_PCH_LPT(index - 1)) == rar_high))
1469 return;
1470 }
1471 }
1472
1473out:
1474 e_dbg("Failed to write receive address at index %d\n", index);
1475}
1476
1477/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001478 * e1000_check_reset_block_ich8lan - Check if PHY reset is blocked
1479 * @hw: pointer to the HW structure
1480 *
1481 * Checks if firmware is blocking the reset of the PHY.
1482 * This is a function pointer entry point only called by
1483 * reset routines.
1484 **/
1485static s32 e1000_check_reset_block_ich8lan(struct e1000_hw *hw)
1486{
1487 u32 fwsm;
1488
1489 fwsm = er32(FWSM);
1490
1491 return (fwsm & E1000_ICH_FWSM_RSPCIPHY) ? 0 : E1000_BLK_PHY_RESET;
1492}
1493
1494/**
Bruce Allan8395ae82010-09-22 17:15:08 +00001495 * e1000_write_smbus_addr - Write SMBus address to PHY needed during Sx states
1496 * @hw: pointer to the HW structure
1497 *
1498 * Assumes semaphore already acquired.
1499 *
1500 **/
1501static s32 e1000_write_smbus_addr(struct e1000_hw *hw)
1502{
1503 u16 phy_data;
1504 u32 strap = er32(STRAP);
Bruce Allan2fbe4522012-04-19 03:21:47 +00001505 u32 freq = (strap & E1000_STRAP_SMT_FREQ_MASK) >>
1506 E1000_STRAP_SMT_FREQ_SHIFT;
Bruce Allan70806a72013-01-05 05:08:37 +00001507 s32 ret_val;
Bruce Allan8395ae82010-09-22 17:15:08 +00001508
1509 strap &= E1000_STRAP_SMBUS_ADDRESS_MASK;
1510
1511 ret_val = e1000_read_phy_reg_hv_locked(hw, HV_SMB_ADDR, &phy_data);
1512 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001513 return ret_val;
Bruce Allan8395ae82010-09-22 17:15:08 +00001514
1515 phy_data &= ~HV_SMB_ADDR_MASK;
1516 phy_data |= (strap >> E1000_STRAP_SMBUS_ADDRESS_SHIFT);
1517 phy_data |= HV_SMB_ADDR_PEC_EN | HV_SMB_ADDR_VALID;
Bruce Allan8395ae82010-09-22 17:15:08 +00001518
Bruce Allan2fbe4522012-04-19 03:21:47 +00001519 if (hw->phy.type == e1000_phy_i217) {
1520 /* Restore SMBus frequency */
1521 if (freq--) {
1522 phy_data &= ~HV_SMB_ADDR_FREQ_MASK;
1523 phy_data |= (freq & (1 << 0)) <<
1524 HV_SMB_ADDR_FREQ_LOW_SHIFT;
1525 phy_data |= (freq & (1 << 1)) <<
1526 (HV_SMB_ADDR_FREQ_HIGH_SHIFT - 1);
1527 } else {
1528 e_dbg("Unsupported SMB frequency in PHY\n");
1529 }
1530 }
1531
Bruce Allan5015e532012-02-08 02:55:56 +00001532 return e1000_write_phy_reg_hv_locked(hw, HV_SMB_ADDR, phy_data);
Bruce Allan8395ae82010-09-22 17:15:08 +00001533}
1534
1535/**
Bruce Allanf523d212009-10-29 13:45:45 +00001536 * e1000_sw_lcd_config_ich8lan - SW-based LCD Configuration
1537 * @hw: pointer to the HW structure
1538 *
1539 * SW should configure the LCD from the NVM extended configuration region
1540 * as a workaround for certain parts.
1541 **/
1542static s32 e1000_sw_lcd_config_ich8lan(struct e1000_hw *hw)
1543{
1544 struct e1000_phy_info *phy = &hw->phy;
1545 u32 i, data, cnf_size, cnf_base_addr, sw_cfg_mask;
Bruce Allan8b802a72010-05-10 15:01:10 +00001546 s32 ret_val = 0;
Bruce Allanf523d212009-10-29 13:45:45 +00001547 u16 word_addr, reg_data, reg_addr, phy_page = 0;
1548
Bruce Allane921eb12012-11-28 09:28:37 +00001549 /* Initialize the PHY from the NVM on ICH platforms. This
Bruce Allanf523d212009-10-29 13:45:45 +00001550 * is needed due to an issue where the NVM configuration is
1551 * not properly autoloaded after power transitions.
1552 * Therefore, after each PHY reset, we will load the
1553 * configuration data out of the NVM manually.
1554 */
Bruce Allan3f0c16e2010-06-16 13:26:17 +00001555 switch (hw->mac.type) {
1556 case e1000_ich8lan:
1557 if (phy->type != e1000_phy_igp_3)
1558 return ret_val;
1559
Bruce Allan5f3eed62010-09-22 17:15:54 +00001560 if ((hw->adapter->pdev->device == E1000_DEV_ID_ICH8_IGP_AMT) ||
1561 (hw->adapter->pdev->device == E1000_DEV_ID_ICH8_IGP_C)) {
Bruce Allan3f0c16e2010-06-16 13:26:17 +00001562 sw_cfg_mask = E1000_FEXTNVM_SW_CONFIG;
1563 break;
1564 }
1565 /* Fall-thru */
1566 case e1000_pchlan:
Bruce Alland3738bb2010-06-16 13:27:28 +00001567 case e1000_pch2lan:
Bruce Allan2fbe4522012-04-19 03:21:47 +00001568 case e1000_pch_lpt:
Bruce Allan8b802a72010-05-10 15:01:10 +00001569 sw_cfg_mask = E1000_FEXTNVM_SW_CONFIG_ICH8M;
Bruce Allan3f0c16e2010-06-16 13:26:17 +00001570 break;
1571 default:
1572 return ret_val;
1573 }
1574
1575 ret_val = hw->phy.ops.acquire(hw);
1576 if (ret_val)
1577 return ret_val;
Bruce Allanf523d212009-10-29 13:45:45 +00001578
Bruce Allan8b802a72010-05-10 15:01:10 +00001579 data = er32(FEXTNVM);
1580 if (!(data & sw_cfg_mask))
Bruce Allan75ce1532012-02-08 02:54:48 +00001581 goto release;
Bruce Allanf523d212009-10-29 13:45:45 +00001582
Bruce Allane921eb12012-11-28 09:28:37 +00001583 /* Make sure HW does not configure LCD from PHY
Bruce Allan8b802a72010-05-10 15:01:10 +00001584 * extended configuration before SW configuration
1585 */
1586 data = er32(EXTCNF_CTRL);
Bruce Allan2fbe4522012-04-19 03:21:47 +00001587 if ((hw->mac.type < e1000_pch2lan) &&
1588 (data & E1000_EXTCNF_CTRL_LCD_WRITE_ENABLE))
1589 goto release;
Bruce Allanf523d212009-10-29 13:45:45 +00001590
Bruce Allan8b802a72010-05-10 15:01:10 +00001591 cnf_size = er32(EXTCNF_SIZE);
1592 cnf_size &= E1000_EXTCNF_SIZE_EXT_PCIE_LENGTH_MASK;
1593 cnf_size >>= E1000_EXTCNF_SIZE_EXT_PCIE_LENGTH_SHIFT;
1594 if (!cnf_size)
Bruce Allan75ce1532012-02-08 02:54:48 +00001595 goto release;
Bruce Allan8b802a72010-05-10 15:01:10 +00001596
1597 cnf_base_addr = data & E1000_EXTCNF_CTRL_EXT_CNF_POINTER_MASK;
1598 cnf_base_addr >>= E1000_EXTCNF_CTRL_EXT_CNF_POINTER_SHIFT;
1599
Bruce Allan2fbe4522012-04-19 03:21:47 +00001600 if (((hw->mac.type == e1000_pchlan) &&
1601 !(data & E1000_EXTCNF_CTRL_OEM_WRITE_ENABLE)) ||
1602 (hw->mac.type > e1000_pchlan)) {
Bruce Allane921eb12012-11-28 09:28:37 +00001603 /* HW configures the SMBus address and LEDs when the
Bruce Allan8b802a72010-05-10 15:01:10 +00001604 * OEM and LCD Write Enable bits are set in the NVM.
1605 * When both NVM bits are cleared, SW will configure
1606 * them instead.
Bruce Allanf523d212009-10-29 13:45:45 +00001607 */
Bruce Allan8395ae82010-09-22 17:15:08 +00001608 ret_val = e1000_write_smbus_addr(hw);
Bruce Allan8b802a72010-05-10 15:01:10 +00001609 if (ret_val)
Bruce Allan75ce1532012-02-08 02:54:48 +00001610 goto release;
Bruce Allanf523d212009-10-29 13:45:45 +00001611
Bruce Allan8b802a72010-05-10 15:01:10 +00001612 data = er32(LEDCTL);
1613 ret_val = e1000_write_phy_reg_hv_locked(hw, HV_LED_CONFIG,
1614 (u16)data);
1615 if (ret_val)
Bruce Allan75ce1532012-02-08 02:54:48 +00001616 goto release;
Bruce Allan8b802a72010-05-10 15:01:10 +00001617 }
1618
1619 /* Configure LCD from extended configuration region. */
1620
1621 /* cnf_base_addr is in DWORD */
1622 word_addr = (u16)(cnf_base_addr << 1);
1623
1624 for (i = 0; i < cnf_size; i++) {
Bruce Allane5fe2542013-02-20 04:06:27 +00001625 ret_val = e1000_read_nvm(hw, (word_addr + i * 2), 1, &reg_data);
Bruce Allan8b802a72010-05-10 15:01:10 +00001626 if (ret_val)
Bruce Allan75ce1532012-02-08 02:54:48 +00001627 goto release;
Bruce Allanf523d212009-10-29 13:45:45 +00001628
Bruce Allan8b802a72010-05-10 15:01:10 +00001629 ret_val = e1000_read_nvm(hw, (word_addr + i * 2 + 1),
1630 1, &reg_addr);
1631 if (ret_val)
Bruce Allan75ce1532012-02-08 02:54:48 +00001632 goto release;
Bruce Allanf523d212009-10-29 13:45:45 +00001633
Bruce Allan8b802a72010-05-10 15:01:10 +00001634 /* Save off the PHY page for future writes. */
1635 if (reg_addr == IGP01E1000_PHY_PAGE_SELECT) {
1636 phy_page = reg_data;
1637 continue;
Bruce Allanf523d212009-10-29 13:45:45 +00001638 }
Bruce Allanf523d212009-10-29 13:45:45 +00001639
Bruce Allan8b802a72010-05-10 15:01:10 +00001640 reg_addr &= PHY_REG_MASK;
1641 reg_addr |= phy_page;
Bruce Allanf523d212009-10-29 13:45:45 +00001642
Bruce Allanf1430d62012-04-14 04:21:52 +00001643 ret_val = e1e_wphy_locked(hw, (u32)reg_addr, reg_data);
Bruce Allan8b802a72010-05-10 15:01:10 +00001644 if (ret_val)
Bruce Allan75ce1532012-02-08 02:54:48 +00001645 goto release;
Bruce Allanf523d212009-10-29 13:45:45 +00001646 }
1647
Bruce Allan75ce1532012-02-08 02:54:48 +00001648release:
Bruce Allan94d81862009-11-20 23:25:26 +00001649 hw->phy.ops.release(hw);
Bruce Allanf523d212009-10-29 13:45:45 +00001650 return ret_val;
1651}
1652
1653/**
Bruce Allan1d5846b2009-10-29 13:46:05 +00001654 * e1000_k1_gig_workaround_hv - K1 Si workaround
1655 * @hw: pointer to the HW structure
1656 * @link: link up bool flag
1657 *
1658 * If K1 is enabled for 1Gbps, the MAC might stall when transitioning
1659 * from a lower speed. This workaround disables K1 whenever link is at 1Gig
1660 * If link is down, the function will restore the default K1 setting located
1661 * in the NVM.
1662 **/
1663static s32 e1000_k1_gig_workaround_hv(struct e1000_hw *hw, bool link)
1664{
1665 s32 ret_val = 0;
1666 u16 status_reg = 0;
1667 bool k1_enable = hw->dev_spec.ich8lan.nvm_k1_enabled;
1668
1669 if (hw->mac.type != e1000_pchlan)
Bruce Allan5015e532012-02-08 02:55:56 +00001670 return 0;
Bruce Allan1d5846b2009-10-29 13:46:05 +00001671
1672 /* Wrap the whole flow with the sw flag */
Bruce Allan94d81862009-11-20 23:25:26 +00001673 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan1d5846b2009-10-29 13:46:05 +00001674 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001675 return ret_val;
Bruce Allan1d5846b2009-10-29 13:46:05 +00001676
1677 /* Disable K1 when link is 1Gbps, otherwise use the NVM setting */
1678 if (link) {
1679 if (hw->phy.type == e1000_phy_82578) {
Bruce Allanf1430d62012-04-14 04:21:52 +00001680 ret_val = e1e_rphy_locked(hw, BM_CS_STATUS,
1681 &status_reg);
Bruce Allan1d5846b2009-10-29 13:46:05 +00001682 if (ret_val)
1683 goto release;
1684
Bruce Allanf0ff4392013-02-20 04:05:39 +00001685 status_reg &= (BM_CS_STATUS_LINK_UP |
1686 BM_CS_STATUS_RESOLVED |
1687 BM_CS_STATUS_SPEED_MASK);
Bruce Allan1d5846b2009-10-29 13:46:05 +00001688
1689 if (status_reg == (BM_CS_STATUS_LINK_UP |
Bruce Allanf0ff4392013-02-20 04:05:39 +00001690 BM_CS_STATUS_RESOLVED |
1691 BM_CS_STATUS_SPEED_1000))
Bruce Allan1d5846b2009-10-29 13:46:05 +00001692 k1_enable = false;
1693 }
1694
1695 if (hw->phy.type == e1000_phy_82577) {
Bruce Allanf1430d62012-04-14 04:21:52 +00001696 ret_val = e1e_rphy_locked(hw, HV_M_STATUS, &status_reg);
Bruce Allan1d5846b2009-10-29 13:46:05 +00001697 if (ret_val)
1698 goto release;
1699
Bruce Allanf0ff4392013-02-20 04:05:39 +00001700 status_reg &= (HV_M_STATUS_LINK_UP |
1701 HV_M_STATUS_AUTONEG_COMPLETE |
1702 HV_M_STATUS_SPEED_MASK);
Bruce Allan1d5846b2009-10-29 13:46:05 +00001703
1704 if (status_reg == (HV_M_STATUS_LINK_UP |
Bruce Allanf0ff4392013-02-20 04:05:39 +00001705 HV_M_STATUS_AUTONEG_COMPLETE |
1706 HV_M_STATUS_SPEED_1000))
Bruce Allan1d5846b2009-10-29 13:46:05 +00001707 k1_enable = false;
1708 }
1709
1710 /* Link stall fix for link up */
Bruce Allanf1430d62012-04-14 04:21:52 +00001711 ret_val = e1e_wphy_locked(hw, PHY_REG(770, 19), 0x0100);
Bruce Allan1d5846b2009-10-29 13:46:05 +00001712 if (ret_val)
1713 goto release;
1714
1715 } else {
1716 /* Link stall fix for link down */
Bruce Allanf1430d62012-04-14 04:21:52 +00001717 ret_val = e1e_wphy_locked(hw, PHY_REG(770, 19), 0x4100);
Bruce Allan1d5846b2009-10-29 13:46:05 +00001718 if (ret_val)
1719 goto release;
1720 }
1721
1722 ret_val = e1000_configure_k1_ich8lan(hw, k1_enable);
1723
1724release:
Bruce Allan94d81862009-11-20 23:25:26 +00001725 hw->phy.ops.release(hw);
Bruce Allan5015e532012-02-08 02:55:56 +00001726
Bruce Allan1d5846b2009-10-29 13:46:05 +00001727 return ret_val;
1728}
1729
1730/**
1731 * e1000_configure_k1_ich8lan - Configure K1 power state
1732 * @hw: pointer to the HW structure
1733 * @enable: K1 state to configure
1734 *
1735 * Configure the K1 power state based on the provided parameter.
1736 * Assumes semaphore already acquired.
1737 *
1738 * Success returns 0, Failure returns -E1000_ERR_PHY (-2)
1739 **/
Bruce Allanbb436b22009-11-20 23:24:11 +00001740s32 e1000_configure_k1_ich8lan(struct e1000_hw *hw, bool k1_enable)
Bruce Allan1d5846b2009-10-29 13:46:05 +00001741{
Bruce Allan70806a72013-01-05 05:08:37 +00001742 s32 ret_val;
Bruce Allan1d5846b2009-10-29 13:46:05 +00001743 u32 ctrl_reg = 0;
1744 u32 ctrl_ext = 0;
1745 u32 reg = 0;
1746 u16 kmrn_reg = 0;
1747
Bruce Allan3d3a1672012-02-23 03:13:18 +00001748 ret_val = e1000e_read_kmrn_reg_locked(hw, E1000_KMRNCTRLSTA_K1_CONFIG,
1749 &kmrn_reg);
Bruce Allan1d5846b2009-10-29 13:46:05 +00001750 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001751 return ret_val;
Bruce Allan1d5846b2009-10-29 13:46:05 +00001752
1753 if (k1_enable)
1754 kmrn_reg |= E1000_KMRNCTRLSTA_K1_ENABLE;
1755 else
1756 kmrn_reg &= ~E1000_KMRNCTRLSTA_K1_ENABLE;
1757
Bruce Allan3d3a1672012-02-23 03:13:18 +00001758 ret_val = e1000e_write_kmrn_reg_locked(hw, E1000_KMRNCTRLSTA_K1_CONFIG,
1759 kmrn_reg);
Bruce Allan1d5846b2009-10-29 13:46:05 +00001760 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001761 return ret_val;
Bruce Allan1d5846b2009-10-29 13:46:05 +00001762
Bruce Allance43a212013-02-20 04:06:32 +00001763 usleep_range(20, 40);
Bruce Allan1d5846b2009-10-29 13:46:05 +00001764 ctrl_ext = er32(CTRL_EXT);
1765 ctrl_reg = er32(CTRL);
1766
1767 reg = ctrl_reg & ~(E1000_CTRL_SPD_1000 | E1000_CTRL_SPD_100);
1768 reg |= E1000_CTRL_FRCSPD;
1769 ew32(CTRL, reg);
1770
1771 ew32(CTRL_EXT, ctrl_ext | E1000_CTRL_EXT_SPD_BYPS);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001772 e1e_flush();
Bruce Allance43a212013-02-20 04:06:32 +00001773 usleep_range(20, 40);
Bruce Allan1d5846b2009-10-29 13:46:05 +00001774 ew32(CTRL, ctrl_reg);
1775 ew32(CTRL_EXT, ctrl_ext);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001776 e1e_flush();
Bruce Allance43a212013-02-20 04:06:32 +00001777 usleep_range(20, 40);
Bruce Allan1d5846b2009-10-29 13:46:05 +00001778
Bruce Allan5015e532012-02-08 02:55:56 +00001779 return 0;
Bruce Allan1d5846b2009-10-29 13:46:05 +00001780}
1781
1782/**
Bruce Allanf523d212009-10-29 13:45:45 +00001783 * e1000_oem_bits_config_ich8lan - SW-based LCD Configuration
1784 * @hw: pointer to the HW structure
1785 * @d0_state: boolean if entering d0 or d3 device state
1786 *
1787 * SW will configure Gbe Disable and LPLU based on the NVM. The four bits are
1788 * collectively called OEM bits. The OEM Write Enable bit and SW Config bit
1789 * in NVM determines whether HW should configure LPLU and Gbe Disable.
1790 **/
1791static s32 e1000_oem_bits_config_ich8lan(struct e1000_hw *hw, bool d0_state)
1792{
1793 s32 ret_val = 0;
1794 u32 mac_reg;
1795 u16 oem_reg;
1796
Bruce Allan2fbe4522012-04-19 03:21:47 +00001797 if (hw->mac.type < e1000_pchlan)
Bruce Allanf523d212009-10-29 13:45:45 +00001798 return ret_val;
1799
Bruce Allan94d81862009-11-20 23:25:26 +00001800 ret_val = hw->phy.ops.acquire(hw);
Bruce Allanf523d212009-10-29 13:45:45 +00001801 if (ret_val)
1802 return ret_val;
1803
Bruce Allan2fbe4522012-04-19 03:21:47 +00001804 if (hw->mac.type == e1000_pchlan) {
Bruce Alland3738bb2010-06-16 13:27:28 +00001805 mac_reg = er32(EXTCNF_CTRL);
1806 if (mac_reg & E1000_EXTCNF_CTRL_OEM_WRITE_ENABLE)
Bruce Allan75ce1532012-02-08 02:54:48 +00001807 goto release;
Bruce Alland3738bb2010-06-16 13:27:28 +00001808 }
Bruce Allanf523d212009-10-29 13:45:45 +00001809
1810 mac_reg = er32(FEXTNVM);
1811 if (!(mac_reg & E1000_FEXTNVM_SW_CONFIG_ICH8M))
Bruce Allan75ce1532012-02-08 02:54:48 +00001812 goto release;
Bruce Allanf523d212009-10-29 13:45:45 +00001813
1814 mac_reg = er32(PHY_CTRL);
1815
Bruce Allanf1430d62012-04-14 04:21:52 +00001816 ret_val = e1e_rphy_locked(hw, HV_OEM_BITS, &oem_reg);
Bruce Allanf523d212009-10-29 13:45:45 +00001817 if (ret_val)
Bruce Allan75ce1532012-02-08 02:54:48 +00001818 goto release;
Bruce Allanf523d212009-10-29 13:45:45 +00001819
1820 oem_reg &= ~(HV_OEM_BITS_GBE_DIS | HV_OEM_BITS_LPLU);
1821
1822 if (d0_state) {
1823 if (mac_reg & E1000_PHY_CTRL_GBE_DISABLE)
1824 oem_reg |= HV_OEM_BITS_GBE_DIS;
1825
1826 if (mac_reg & E1000_PHY_CTRL_D0A_LPLU)
1827 oem_reg |= HV_OEM_BITS_LPLU;
1828 } else {
Bruce Allan03299e42011-09-30 08:07:05 +00001829 if (mac_reg & (E1000_PHY_CTRL_GBE_DISABLE |
1830 E1000_PHY_CTRL_NOND0A_GBE_DISABLE))
Bruce Allanf523d212009-10-29 13:45:45 +00001831 oem_reg |= HV_OEM_BITS_GBE_DIS;
1832
Bruce Allan03299e42011-09-30 08:07:05 +00001833 if (mac_reg & (E1000_PHY_CTRL_D0A_LPLU |
1834 E1000_PHY_CTRL_NOND0A_LPLU))
Bruce Allanf523d212009-10-29 13:45:45 +00001835 oem_reg |= HV_OEM_BITS_LPLU;
1836 }
Bruce Allan03299e42011-09-30 08:07:05 +00001837
Bruce Allan92fe1732012-04-12 06:27:03 +00001838 /* Set Restart auto-neg to activate the bits */
1839 if ((d0_state || (hw->mac.type != e1000_pchlan)) &&
1840 !hw->phy.ops.check_reset_block(hw))
1841 oem_reg |= HV_OEM_BITS_RESTART_AN;
1842
Bruce Allanf1430d62012-04-14 04:21:52 +00001843 ret_val = e1e_wphy_locked(hw, HV_OEM_BITS, oem_reg);
Bruce Allanf523d212009-10-29 13:45:45 +00001844
Bruce Allan75ce1532012-02-08 02:54:48 +00001845release:
Bruce Allan94d81862009-11-20 23:25:26 +00001846 hw->phy.ops.release(hw);
Bruce Allanf523d212009-10-29 13:45:45 +00001847
1848 return ret_val;
1849}
1850
Bruce Allanf523d212009-10-29 13:45:45 +00001851/**
Bruce Allanfddaa1a2010-01-13 01:52:49 +00001852 * e1000_set_mdio_slow_mode_hv - Set slow MDIO access mode
1853 * @hw: pointer to the HW structure
1854 **/
1855static s32 e1000_set_mdio_slow_mode_hv(struct e1000_hw *hw)
1856{
1857 s32 ret_val;
1858 u16 data;
1859
1860 ret_val = e1e_rphy(hw, HV_KMRN_MODE_CTRL, &data);
1861 if (ret_val)
1862 return ret_val;
1863
1864 data |= HV_KMRN_MDIO_SLOW;
1865
1866 ret_val = e1e_wphy(hw, HV_KMRN_MODE_CTRL, data);
1867
1868 return ret_val;
1869}
1870
1871/**
Bruce Allana4f58f52009-06-02 11:29:18 +00001872 * e1000_hv_phy_workarounds_ich8lan - A series of Phy workarounds to be
1873 * done after every PHY reset.
1874 **/
1875static s32 e1000_hv_phy_workarounds_ich8lan(struct e1000_hw *hw)
1876{
1877 s32 ret_val = 0;
Bruce Allanbaf86c92010-01-13 01:53:08 +00001878 u16 phy_data;
Bruce Allana4f58f52009-06-02 11:29:18 +00001879
1880 if (hw->mac.type != e1000_pchlan)
Bruce Allan5015e532012-02-08 02:55:56 +00001881 return 0;
Bruce Allana4f58f52009-06-02 11:29:18 +00001882
Bruce Allanfddaa1a2010-01-13 01:52:49 +00001883 /* Set MDIO slow mode before any other MDIO access */
1884 if (hw->phy.type == e1000_phy_82577) {
1885 ret_val = e1000_set_mdio_slow_mode_hv(hw);
1886 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001887 return ret_val;
Bruce Allanfddaa1a2010-01-13 01:52:49 +00001888 }
1889
Bruce Allana4f58f52009-06-02 11:29:18 +00001890 if (((hw->phy.type == e1000_phy_82577) &&
1891 ((hw->phy.revision == 1) || (hw->phy.revision == 2))) ||
1892 ((hw->phy.type == e1000_phy_82578) && (hw->phy.revision == 1))) {
1893 /* Disable generation of early preamble */
1894 ret_val = e1e_wphy(hw, PHY_REG(769, 25), 0x4431);
1895 if (ret_val)
1896 return ret_val;
1897
1898 /* Preamble tuning for SSC */
Bruce Allan1d2101a72011-07-22 06:21:56 +00001899 ret_val = e1e_wphy(hw, HV_KMRN_FIFO_CTRLSTA, 0xA204);
Bruce Allana4f58f52009-06-02 11:29:18 +00001900 if (ret_val)
1901 return ret_val;
1902 }
1903
1904 if (hw->phy.type == e1000_phy_82578) {
Bruce Allane921eb12012-11-28 09:28:37 +00001905 /* Return registers to default by doing a soft reset then
Bruce Allana4f58f52009-06-02 11:29:18 +00001906 * writing 0x3140 to the control register.
1907 */
1908 if (hw->phy.revision < 2) {
1909 e1000e_phy_sw_reset(hw);
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001910 ret_val = e1e_wphy(hw, MII_BMCR, 0x3140);
Bruce Allana4f58f52009-06-02 11:29:18 +00001911 }
1912 }
1913
1914 /* Select page 0 */
Bruce Allan94d81862009-11-20 23:25:26 +00001915 ret_val = hw->phy.ops.acquire(hw);
Bruce Allana4f58f52009-06-02 11:29:18 +00001916 if (ret_val)
1917 return ret_val;
Bruce Allan1d5846b2009-10-29 13:46:05 +00001918
Bruce Allana4f58f52009-06-02 11:29:18 +00001919 hw->phy.addr = 1;
Bruce Allan1d5846b2009-10-29 13:46:05 +00001920 ret_val = e1000e_write_phy_reg_mdic(hw, IGP01E1000_PHY_PAGE_SELECT, 0);
Bruce Allanbaf86c92010-01-13 01:53:08 +00001921 hw->phy.ops.release(hw);
Bruce Allan1d5846b2009-10-29 13:46:05 +00001922 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001923 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00001924
Bruce Allane921eb12012-11-28 09:28:37 +00001925 /* Configure the K1 Si workaround during phy reset assuming there is
Bruce Allan1d5846b2009-10-29 13:46:05 +00001926 * link so that it disables K1 if link is in 1Gbps.
1927 */
1928 ret_val = e1000_k1_gig_workaround_hv(hw, true);
Bruce Allanbaf86c92010-01-13 01:53:08 +00001929 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001930 return ret_val;
Bruce Allan1d5846b2009-10-29 13:46:05 +00001931
Bruce Allanbaf86c92010-01-13 01:53:08 +00001932 /* Workaround for link disconnects on a busy hub in half duplex */
1933 ret_val = hw->phy.ops.acquire(hw);
1934 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001935 return ret_val;
Bruce Allanf1430d62012-04-14 04:21:52 +00001936 ret_val = e1e_rphy_locked(hw, BM_PORT_GEN_CFG, &phy_data);
Bruce Allanbaf86c92010-01-13 01:53:08 +00001937 if (ret_val)
1938 goto release;
Bruce Allanf1430d62012-04-14 04:21:52 +00001939 ret_val = e1e_wphy_locked(hw, BM_PORT_GEN_CFG, phy_data & 0x00FF);
Bruce Allan651fb102012-12-05 06:26:03 +00001940 if (ret_val)
1941 goto release;
1942
1943 /* set MSE higher to enable link to stay up when noise is high */
1944 ret_val = e1000_write_emi_reg_locked(hw, I82577_MSE_THRESHOLD, 0x0034);
Bruce Allanbaf86c92010-01-13 01:53:08 +00001945release:
1946 hw->phy.ops.release(hw);
Bruce Allan5015e532012-02-08 02:55:56 +00001947
Bruce Allana4f58f52009-06-02 11:29:18 +00001948 return ret_val;
1949}
1950
1951/**
Bruce Alland3738bb2010-06-16 13:27:28 +00001952 * e1000_copy_rx_addrs_to_phy_ich8lan - Copy Rx addresses from MAC to PHY
1953 * @hw: pointer to the HW structure
1954 **/
1955void e1000_copy_rx_addrs_to_phy_ich8lan(struct e1000_hw *hw)
1956{
1957 u32 mac_reg;
Bruce Allan2b6b1682011-05-13 07:20:09 +00001958 u16 i, phy_reg = 0;
1959 s32 ret_val;
1960
1961 ret_val = hw->phy.ops.acquire(hw);
1962 if (ret_val)
1963 return;
1964 ret_val = e1000_enable_phy_wakeup_reg_access_bm(hw, &phy_reg);
1965 if (ret_val)
1966 goto release;
Bruce Alland3738bb2010-06-16 13:27:28 +00001967
David Ertmanc3a0dce2013-09-05 04:24:25 +00001968 /* Copy both RAL/H (rar_entry_count) and SHRAL/H to PHY */
1969 for (i = 0; i < (hw->mac.rar_entry_count); i++) {
Bruce Alland3738bb2010-06-16 13:27:28 +00001970 mac_reg = er32(RAL(i));
Bruce Allan2b6b1682011-05-13 07:20:09 +00001971 hw->phy.ops.write_reg_page(hw, BM_RAR_L(i),
1972 (u16)(mac_reg & 0xFFFF));
1973 hw->phy.ops.write_reg_page(hw, BM_RAR_M(i),
1974 (u16)((mac_reg >> 16) & 0xFFFF));
1975
Bruce Alland3738bb2010-06-16 13:27:28 +00001976 mac_reg = er32(RAH(i));
Bruce Allan2b6b1682011-05-13 07:20:09 +00001977 hw->phy.ops.write_reg_page(hw, BM_RAR_H(i),
1978 (u16)(mac_reg & 0xFFFF));
1979 hw->phy.ops.write_reg_page(hw, BM_RAR_CTRL(i),
1980 (u16)((mac_reg & E1000_RAH_AV)
1981 >> 16));
Bruce Alland3738bb2010-06-16 13:27:28 +00001982 }
Bruce Allan2b6b1682011-05-13 07:20:09 +00001983
1984 e1000_disable_phy_wakeup_reg_access_bm(hw, &phy_reg);
1985
1986release:
1987 hw->phy.ops.release(hw);
Bruce Alland3738bb2010-06-16 13:27:28 +00001988}
1989
Bruce Alland3738bb2010-06-16 13:27:28 +00001990/**
1991 * e1000_lv_jumbo_workaround_ich8lan - required for jumbo frame operation
1992 * with 82579 PHY
1993 * @hw: pointer to the HW structure
1994 * @enable: flag to enable/disable workaround when enabling/disabling jumbos
1995 **/
1996s32 e1000_lv_jumbo_workaround_ich8lan(struct e1000_hw *hw, bool enable)
1997{
1998 s32 ret_val = 0;
1999 u16 phy_reg, data;
2000 u32 mac_reg;
2001 u16 i;
2002
Bruce Allan2fbe4522012-04-19 03:21:47 +00002003 if (hw->mac.type < e1000_pch2lan)
Bruce Allan5015e532012-02-08 02:55:56 +00002004 return 0;
Bruce Alland3738bb2010-06-16 13:27:28 +00002005
2006 /* disable Rx path while enabling/disabling workaround */
2007 e1e_rphy(hw, PHY_REG(769, 20), &phy_reg);
2008 ret_val = e1e_wphy(hw, PHY_REG(769, 20), phy_reg | (1 << 14));
2009 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002010 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002011
2012 if (enable) {
David Ertmanc3a0dce2013-09-05 04:24:25 +00002013 /* Write Rx addresses (rar_entry_count for RAL/H, and
Bruce Alland3738bb2010-06-16 13:27:28 +00002014 * SHRAL/H) and initial CRC values to the MAC
2015 */
David Ertmanc3a0dce2013-09-05 04:24:25 +00002016 for (i = 0; i < hw->mac.rar_entry_count; i++) {
Bruce Allan362e20c2013-02-20 04:05:45 +00002017 u8 mac_addr[ETH_ALEN] = { 0 };
Bruce Alland3738bb2010-06-16 13:27:28 +00002018 u32 addr_high, addr_low;
2019
2020 addr_high = er32(RAH(i));
2021 if (!(addr_high & E1000_RAH_AV))
2022 continue;
2023 addr_low = er32(RAL(i));
2024 mac_addr[0] = (addr_low & 0xFF);
2025 mac_addr[1] = ((addr_low >> 8) & 0xFF);
2026 mac_addr[2] = ((addr_low >> 16) & 0xFF);
2027 mac_addr[3] = ((addr_low >> 24) & 0xFF);
2028 mac_addr[4] = (addr_high & 0xFF);
2029 mac_addr[5] = ((addr_high >> 8) & 0xFF);
2030
Bruce Allanfe46f582011-01-06 14:29:51 +00002031 ew32(PCH_RAICC(i), ~ether_crc_le(ETH_ALEN, mac_addr));
Bruce Alland3738bb2010-06-16 13:27:28 +00002032 }
2033
2034 /* Write Rx addresses to the PHY */
2035 e1000_copy_rx_addrs_to_phy_ich8lan(hw);
2036
2037 /* Enable jumbo frame workaround in the MAC */
2038 mac_reg = er32(FFLT_DBG);
2039 mac_reg &= ~(1 << 14);
2040 mac_reg |= (7 << 15);
2041 ew32(FFLT_DBG, mac_reg);
2042
2043 mac_reg = er32(RCTL);
2044 mac_reg |= E1000_RCTL_SECRC;
2045 ew32(RCTL, mac_reg);
2046
2047 ret_val = e1000e_read_kmrn_reg(hw,
Bruce Allan17e813e2013-02-20 04:06:01 +00002048 E1000_KMRNCTRLSTA_CTRL_OFFSET,
2049 &data);
Bruce Alland3738bb2010-06-16 13:27:28 +00002050 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002051 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002052 ret_val = e1000e_write_kmrn_reg(hw,
2053 E1000_KMRNCTRLSTA_CTRL_OFFSET,
2054 data | (1 << 0));
2055 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002056 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002057 ret_val = e1000e_read_kmrn_reg(hw,
Bruce Allan17e813e2013-02-20 04:06:01 +00002058 E1000_KMRNCTRLSTA_HD_CTRL,
2059 &data);
Bruce Alland3738bb2010-06-16 13:27:28 +00002060 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002061 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002062 data &= ~(0xF << 8);
2063 data |= (0xB << 8);
2064 ret_val = e1000e_write_kmrn_reg(hw,
2065 E1000_KMRNCTRLSTA_HD_CTRL,
2066 data);
2067 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002068 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002069
2070 /* Enable jumbo frame workaround in the PHY */
Bruce Alland3738bb2010-06-16 13:27:28 +00002071 e1e_rphy(hw, PHY_REG(769, 23), &data);
2072 data &= ~(0x7F << 5);
2073 data |= (0x37 << 5);
2074 ret_val = e1e_wphy(hw, PHY_REG(769, 23), data);
2075 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002076 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002077 e1e_rphy(hw, PHY_REG(769, 16), &data);
2078 data &= ~(1 << 13);
Bruce Alland3738bb2010-06-16 13:27:28 +00002079 ret_val = e1e_wphy(hw, PHY_REG(769, 16), data);
2080 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002081 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002082 e1e_rphy(hw, PHY_REG(776, 20), &data);
2083 data &= ~(0x3FF << 2);
2084 data |= (0x1A << 2);
2085 ret_val = e1e_wphy(hw, PHY_REG(776, 20), data);
2086 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002087 return ret_val;
Bruce Allanb64e9dd2011-09-30 08:07:00 +00002088 ret_val = e1e_wphy(hw, PHY_REG(776, 23), 0xF100);
Bruce Alland3738bb2010-06-16 13:27:28 +00002089 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002090 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002091 e1e_rphy(hw, HV_PM_CTRL, &data);
2092 ret_val = e1e_wphy(hw, HV_PM_CTRL, data | (1 << 10));
2093 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002094 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002095 } else {
2096 /* Write MAC register values back to h/w defaults */
2097 mac_reg = er32(FFLT_DBG);
2098 mac_reg &= ~(0xF << 14);
2099 ew32(FFLT_DBG, mac_reg);
2100
2101 mac_reg = er32(RCTL);
2102 mac_reg &= ~E1000_RCTL_SECRC;
Bruce Allana1ce6472010-09-22 17:16:40 +00002103 ew32(RCTL, mac_reg);
Bruce Alland3738bb2010-06-16 13:27:28 +00002104
2105 ret_val = e1000e_read_kmrn_reg(hw,
Bruce Allan17e813e2013-02-20 04:06:01 +00002106 E1000_KMRNCTRLSTA_CTRL_OFFSET,
2107 &data);
Bruce Alland3738bb2010-06-16 13:27:28 +00002108 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002109 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002110 ret_val = e1000e_write_kmrn_reg(hw,
2111 E1000_KMRNCTRLSTA_CTRL_OFFSET,
2112 data & ~(1 << 0));
2113 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002114 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002115 ret_val = e1000e_read_kmrn_reg(hw,
Bruce Allan17e813e2013-02-20 04:06:01 +00002116 E1000_KMRNCTRLSTA_HD_CTRL,
2117 &data);
Bruce Alland3738bb2010-06-16 13:27:28 +00002118 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002119 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002120 data &= ~(0xF << 8);
2121 data |= (0xB << 8);
2122 ret_val = e1000e_write_kmrn_reg(hw,
2123 E1000_KMRNCTRLSTA_HD_CTRL,
2124 data);
2125 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002126 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002127
2128 /* Write PHY register values back to h/w defaults */
Bruce Alland3738bb2010-06-16 13:27:28 +00002129 e1e_rphy(hw, PHY_REG(769, 23), &data);
2130 data &= ~(0x7F << 5);
2131 ret_val = e1e_wphy(hw, PHY_REG(769, 23), data);
2132 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002133 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002134 e1e_rphy(hw, PHY_REG(769, 16), &data);
Bruce Alland3738bb2010-06-16 13:27:28 +00002135 data |= (1 << 13);
2136 ret_val = e1e_wphy(hw, PHY_REG(769, 16), data);
2137 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002138 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002139 e1e_rphy(hw, PHY_REG(776, 20), &data);
2140 data &= ~(0x3FF << 2);
2141 data |= (0x8 << 2);
2142 ret_val = e1e_wphy(hw, PHY_REG(776, 20), data);
2143 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002144 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002145 ret_val = e1e_wphy(hw, PHY_REG(776, 23), 0x7E00);
2146 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002147 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002148 e1e_rphy(hw, HV_PM_CTRL, &data);
2149 ret_val = e1e_wphy(hw, HV_PM_CTRL, data & ~(1 << 10));
2150 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002151 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002152 }
2153
2154 /* re-enable Rx path after enabling/disabling workaround */
Bruce Allan5015e532012-02-08 02:55:56 +00002155 return e1e_wphy(hw, PHY_REG(769, 20), phy_reg & ~(1 << 14));
Bruce Alland3738bb2010-06-16 13:27:28 +00002156}
2157
2158/**
2159 * e1000_lv_phy_workarounds_ich8lan - A series of Phy workarounds to be
2160 * done after every PHY reset.
2161 **/
2162static s32 e1000_lv_phy_workarounds_ich8lan(struct e1000_hw *hw)
2163{
2164 s32 ret_val = 0;
2165
2166 if (hw->mac.type != e1000_pch2lan)
Bruce Allan5015e532012-02-08 02:55:56 +00002167 return 0;
Bruce Alland3738bb2010-06-16 13:27:28 +00002168
2169 /* Set MDIO slow mode before any other MDIO access */
2170 ret_val = e1000_set_mdio_slow_mode_hv(hw);
Bruce Allan8e5ab422012-12-05 06:26:19 +00002171 if (ret_val)
2172 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002173
Bruce Allan4d241362011-12-16 00:46:06 +00002174 ret_val = hw->phy.ops.acquire(hw);
2175 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002176 return ret_val;
Bruce Allan4d241362011-12-16 00:46:06 +00002177 /* set MSE higher to enable link to stay up when noise is high */
Bruce Allan4ddc48a2012-12-05 06:25:58 +00002178 ret_val = e1000_write_emi_reg_locked(hw, I82579_MSE_THRESHOLD, 0x0034);
Bruce Allan4d241362011-12-16 00:46:06 +00002179 if (ret_val)
2180 goto release;
2181 /* drop link after 5 times MSE threshold was reached */
Bruce Allan4ddc48a2012-12-05 06:25:58 +00002182 ret_val = e1000_write_emi_reg_locked(hw, I82579_MSE_LINK_DOWN, 0x0005);
Bruce Allan4d241362011-12-16 00:46:06 +00002183release:
2184 hw->phy.ops.release(hw);
2185
Bruce Alland3738bb2010-06-16 13:27:28 +00002186 return ret_val;
2187}
2188
2189/**
Bruce Allan831bd2e2010-09-22 17:16:18 +00002190 * e1000_k1_gig_workaround_lv - K1 Si workaround
2191 * @hw: pointer to the HW structure
2192 *
2193 * Workaround to set the K1 beacon duration for 82579 parts
2194 **/
2195static s32 e1000_k1_workaround_lv(struct e1000_hw *hw)
2196{
2197 s32 ret_val = 0;
2198 u16 status_reg = 0;
2199 u32 mac_reg;
Bruce Allan0ed013e2011-07-29 05:52:56 +00002200 u16 phy_reg;
Bruce Allan831bd2e2010-09-22 17:16:18 +00002201
2202 if (hw->mac.type != e1000_pch2lan)
Bruce Allan5015e532012-02-08 02:55:56 +00002203 return 0;
Bruce Allan831bd2e2010-09-22 17:16:18 +00002204
2205 /* Set K1 beacon duration based on 1Gbps speed or otherwise */
2206 ret_val = e1e_rphy(hw, HV_M_STATUS, &status_reg);
2207 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002208 return ret_val;
Bruce Allan831bd2e2010-09-22 17:16:18 +00002209
2210 if ((status_reg & (HV_M_STATUS_LINK_UP | HV_M_STATUS_AUTONEG_COMPLETE))
2211 == (HV_M_STATUS_LINK_UP | HV_M_STATUS_AUTONEG_COMPLETE)) {
2212 mac_reg = er32(FEXTNVM4);
2213 mac_reg &= ~E1000_FEXTNVM4_BEACON_DURATION_MASK;
2214
Bruce Allan0ed013e2011-07-29 05:52:56 +00002215 ret_val = e1e_rphy(hw, I82579_LPI_CTRL, &phy_reg);
2216 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002217 return ret_val;
Bruce Allan831bd2e2010-09-22 17:16:18 +00002218
Bruce Allan0ed013e2011-07-29 05:52:56 +00002219 if (status_reg & HV_M_STATUS_SPEED_1000) {
Bruce Allan36ceeb42012-03-20 03:47:47 +00002220 u16 pm_phy_reg;
2221
Bruce Allan0ed013e2011-07-29 05:52:56 +00002222 mac_reg |= E1000_FEXTNVM4_BEACON_DURATION_8USEC;
2223 phy_reg &= ~I82579_LPI_CTRL_FORCE_PLL_LOCK_COUNT;
Bruce Allan36ceeb42012-03-20 03:47:47 +00002224 /* LV 1G Packet drop issue wa */
2225 ret_val = e1e_rphy(hw, HV_PM_CTRL, &pm_phy_reg);
2226 if (ret_val)
2227 return ret_val;
2228 pm_phy_reg &= ~HV_PM_CTRL_PLL_STOP_IN_K1_GIGA;
2229 ret_val = e1e_wphy(hw, HV_PM_CTRL, pm_phy_reg);
2230 if (ret_val)
2231 return ret_val;
Bruce Allan0ed013e2011-07-29 05:52:56 +00002232 } else {
2233 mac_reg |= E1000_FEXTNVM4_BEACON_DURATION_16USEC;
2234 phy_reg |= I82579_LPI_CTRL_FORCE_PLL_LOCK_COUNT;
2235 }
Bruce Allan831bd2e2010-09-22 17:16:18 +00002236 ew32(FEXTNVM4, mac_reg);
Bruce Allan0ed013e2011-07-29 05:52:56 +00002237 ret_val = e1e_wphy(hw, I82579_LPI_CTRL, phy_reg);
Bruce Allan831bd2e2010-09-22 17:16:18 +00002238 }
2239
Bruce Allan831bd2e2010-09-22 17:16:18 +00002240 return ret_val;
2241}
2242
2243/**
Bruce Allan605c82b2010-09-22 17:17:01 +00002244 * e1000_gate_hw_phy_config_ich8lan - disable PHY config via hardware
2245 * @hw: pointer to the HW structure
2246 * @gate: boolean set to true to gate, false to ungate
2247 *
2248 * Gate/ungate the automatic PHY configuration via hardware; perform
2249 * the configuration via software instead.
2250 **/
2251static void e1000_gate_hw_phy_config_ich8lan(struct e1000_hw *hw, bool gate)
2252{
2253 u32 extcnf_ctrl;
2254
Bruce Allan2fbe4522012-04-19 03:21:47 +00002255 if (hw->mac.type < e1000_pch2lan)
Bruce Allan605c82b2010-09-22 17:17:01 +00002256 return;
2257
2258 extcnf_ctrl = er32(EXTCNF_CTRL);
2259
2260 if (gate)
2261 extcnf_ctrl |= E1000_EXTCNF_CTRL_GATE_PHY_CFG;
2262 else
2263 extcnf_ctrl &= ~E1000_EXTCNF_CTRL_GATE_PHY_CFG;
2264
2265 ew32(EXTCNF_CTRL, extcnf_ctrl);
Bruce Allan605c82b2010-09-22 17:17:01 +00002266}
2267
2268/**
Bruce Allanfc0c7762009-07-01 13:27:55 +00002269 * e1000_lan_init_done_ich8lan - Check for PHY config completion
2270 * @hw: pointer to the HW structure
2271 *
2272 * Check the appropriate indication the MAC has finished configuring the
2273 * PHY after a software reset.
2274 **/
2275static void e1000_lan_init_done_ich8lan(struct e1000_hw *hw)
2276{
2277 u32 data, loop = E1000_ICH8_LAN_INIT_TIMEOUT;
2278
2279 /* Wait for basic configuration completes before proceeding */
2280 do {
2281 data = er32(STATUS);
2282 data &= E1000_STATUS_LAN_INIT_DONE;
Bruce Allance43a212013-02-20 04:06:32 +00002283 usleep_range(100, 200);
Bruce Allanfc0c7762009-07-01 13:27:55 +00002284 } while ((!data) && --loop);
2285
Bruce Allane921eb12012-11-28 09:28:37 +00002286 /* If basic configuration is incomplete before the above loop
Bruce Allanfc0c7762009-07-01 13:27:55 +00002287 * count reaches 0, loading the configuration from NVM will
2288 * leave the PHY in a bad state possibly resulting in no link.
2289 */
2290 if (loop == 0)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002291 e_dbg("LAN_INIT_DONE not set, increase timeout\n");
Bruce Allanfc0c7762009-07-01 13:27:55 +00002292
2293 /* Clear the Init Done bit for the next init event */
2294 data = er32(STATUS);
2295 data &= ~E1000_STATUS_LAN_INIT_DONE;
2296 ew32(STATUS, data);
2297}
2298
2299/**
Bruce Allane98cac42010-05-10 15:02:32 +00002300 * e1000_post_phy_reset_ich8lan - Perform steps required after a PHY reset
Auke Kokbc7f75f2007-09-17 12:30:59 -07002301 * @hw: pointer to the HW structure
Auke Kokbc7f75f2007-09-17 12:30:59 -07002302 **/
Bruce Allane98cac42010-05-10 15:02:32 +00002303static s32 e1000_post_phy_reset_ich8lan(struct e1000_hw *hw)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002304{
Bruce Allanf523d212009-10-29 13:45:45 +00002305 s32 ret_val = 0;
2306 u16 reg;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002307
Bruce Allan44abd5c2012-02-22 09:02:37 +00002308 if (hw->phy.ops.check_reset_block(hw))
Bruce Allan5015e532012-02-08 02:55:56 +00002309 return 0;
Bruce Allanfc0c7762009-07-01 13:27:55 +00002310
Bruce Allan5f3eed62010-09-22 17:15:54 +00002311 /* Allow time for h/w to get to quiescent state after reset */
Bruce Allan1bba4382011-03-19 00:27:20 +00002312 usleep_range(10000, 20000);
Bruce Allan5f3eed62010-09-22 17:15:54 +00002313
Bruce Allanfddaa1a2010-01-13 01:52:49 +00002314 /* Perform any necessary post-reset workarounds */
Bruce Allane98cac42010-05-10 15:02:32 +00002315 switch (hw->mac.type) {
2316 case e1000_pchlan:
Bruce Allana4f58f52009-06-02 11:29:18 +00002317 ret_val = e1000_hv_phy_workarounds_ich8lan(hw);
2318 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002319 return ret_val;
Bruce Allane98cac42010-05-10 15:02:32 +00002320 break;
Bruce Alland3738bb2010-06-16 13:27:28 +00002321 case e1000_pch2lan:
2322 ret_val = e1000_lv_phy_workarounds_ich8lan(hw);
2323 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002324 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002325 break;
Bruce Allane98cac42010-05-10 15:02:32 +00002326 default:
2327 break;
Bruce Allana4f58f52009-06-02 11:29:18 +00002328 }
2329
Bruce Allan3ebfc7c2011-05-13 07:20:14 +00002330 /* Clear the host wakeup bit after lcd reset */
2331 if (hw->mac.type >= e1000_pchlan) {
2332 e1e_rphy(hw, BM_PORT_GEN_CFG, &reg);
2333 reg &= ~BM_WUC_HOST_WU_BIT;
2334 e1e_wphy(hw, BM_PORT_GEN_CFG, reg);
2335 }
Bruce Allandb2932e2009-10-26 11:22:47 +00002336
Bruce Allanf523d212009-10-29 13:45:45 +00002337 /* Configure the LCD with the extended configuration region in NVM */
2338 ret_val = e1000_sw_lcd_config_ich8lan(hw);
2339 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002340 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002341
Bruce Allanf523d212009-10-29 13:45:45 +00002342 /* Configure the LCD with the OEM bits in NVM */
Bruce Allane98cac42010-05-10 15:02:32 +00002343 ret_val = e1000_oem_bits_config_ich8lan(hw, true);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002344
Bruce Allan1effb452011-02-25 06:58:03 +00002345 if (hw->mac.type == e1000_pch2lan) {
2346 /* Ungate automatic PHY configuration on non-managed 82579 */
2347 if (!(er32(FWSM) & E1000_ICH_FWSM_FW_VALID)) {
Bruce Allan1bba4382011-03-19 00:27:20 +00002348 usleep_range(10000, 20000);
Bruce Allan1effb452011-02-25 06:58:03 +00002349 e1000_gate_hw_phy_config_ich8lan(hw, false);
2350 }
2351
2352 /* Set EEE LPI Update Timer to 200usec */
2353 ret_val = hw->phy.ops.acquire(hw);
2354 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002355 return ret_val;
Bruce Allan4ddc48a2012-12-05 06:25:58 +00002356 ret_val = e1000_write_emi_reg_locked(hw,
2357 I82579_LPI_UPDATE_TIMER,
2358 0x1387);
Bruce Allan1effb452011-02-25 06:58:03 +00002359 hw->phy.ops.release(hw);
Bruce Allan605c82b2010-09-22 17:17:01 +00002360 }
2361
Bruce Allane98cac42010-05-10 15:02:32 +00002362 return ret_val;
2363}
2364
2365/**
2366 * e1000_phy_hw_reset_ich8lan - Performs a PHY reset
2367 * @hw: pointer to the HW structure
2368 *
2369 * Resets the PHY
2370 * This is a function pointer entry point called by drivers
2371 * or other shared routines.
2372 **/
2373static s32 e1000_phy_hw_reset_ich8lan(struct e1000_hw *hw)
2374{
2375 s32 ret_val = 0;
2376
Bruce Allan605c82b2010-09-22 17:17:01 +00002377 /* Gate automatic PHY configuration by hardware on non-managed 82579 */
2378 if ((hw->mac.type == e1000_pch2lan) &&
2379 !(er32(FWSM) & E1000_ICH_FWSM_FW_VALID))
2380 e1000_gate_hw_phy_config_ich8lan(hw, true);
2381
Bruce Allane98cac42010-05-10 15:02:32 +00002382 ret_val = e1000e_phy_hw_reset_generic(hw);
2383 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002384 return ret_val;
Bruce Allane98cac42010-05-10 15:02:32 +00002385
Bruce Allan5015e532012-02-08 02:55:56 +00002386 return e1000_post_phy_reset_ich8lan(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002387}
2388
2389/**
Bruce Allanfa2ce132009-10-26 11:23:25 +00002390 * e1000_set_lplu_state_pchlan - Set Low Power Link Up state
2391 * @hw: pointer to the HW structure
2392 * @active: true to enable LPLU, false to disable
2393 *
2394 * Sets the LPLU state according to the active flag. For PCH, if OEM write
2395 * bit are disabled in the NVM, writing the LPLU bits in the MAC will not set
2396 * the phy speed. This function will manually set the LPLU bit and restart
2397 * auto-neg as hw would do. D3 and D0 LPLU will call the same function
2398 * since it configures the same bit.
2399 **/
2400static s32 e1000_set_lplu_state_pchlan(struct e1000_hw *hw, bool active)
2401{
Bruce Allan70806a72013-01-05 05:08:37 +00002402 s32 ret_val;
Bruce Allanfa2ce132009-10-26 11:23:25 +00002403 u16 oem_reg;
2404
2405 ret_val = e1e_rphy(hw, HV_OEM_BITS, &oem_reg);
2406 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002407 return ret_val;
Bruce Allanfa2ce132009-10-26 11:23:25 +00002408
2409 if (active)
2410 oem_reg |= HV_OEM_BITS_LPLU;
2411 else
2412 oem_reg &= ~HV_OEM_BITS_LPLU;
2413
Bruce Allan44abd5c2012-02-22 09:02:37 +00002414 if (!hw->phy.ops.check_reset_block(hw))
Bruce Allan464c85e2011-12-16 00:46:49 +00002415 oem_reg |= HV_OEM_BITS_RESTART_AN;
2416
Bruce Allan5015e532012-02-08 02:55:56 +00002417 return e1e_wphy(hw, HV_OEM_BITS, oem_reg);
Bruce Allanfa2ce132009-10-26 11:23:25 +00002418}
2419
2420/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07002421 * e1000_set_d0_lplu_state_ich8lan - Set Low Power Linkup D0 state
2422 * @hw: pointer to the HW structure
Bruce Allan564ea9b2009-11-20 23:26:44 +00002423 * @active: true to enable LPLU, false to disable
Auke Kokbc7f75f2007-09-17 12:30:59 -07002424 *
2425 * Sets the LPLU D0 state according to the active flag. When
2426 * activating LPLU this function also disables smart speed
2427 * and vice versa. LPLU will not be activated unless the
2428 * device autonegotiation advertisement meets standards of
2429 * either 10 or 10/100 or 10/100/1000 at all duplexes.
2430 * This is a function pointer entry point only called by
2431 * PHY setup routines.
2432 **/
2433static s32 e1000_set_d0_lplu_state_ich8lan(struct e1000_hw *hw, bool active)
2434{
2435 struct e1000_phy_info *phy = &hw->phy;
2436 u32 phy_ctrl;
2437 s32 ret_val = 0;
2438 u16 data;
2439
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002440 if (phy->type == e1000_phy_ife)
Bruce Allan82607252012-02-08 02:55:09 +00002441 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002442
2443 phy_ctrl = er32(PHY_CTRL);
2444
2445 if (active) {
2446 phy_ctrl |= E1000_PHY_CTRL_D0A_LPLU;
2447 ew32(PHY_CTRL, phy_ctrl);
2448
Bruce Allan60f12922009-07-01 13:28:14 +00002449 if (phy->type != e1000_phy_igp_3)
2450 return 0;
2451
Bruce Allane921eb12012-11-28 09:28:37 +00002452 /* Call gig speed drop workaround on LPLU before accessing
Bruce Allanad680762008-03-28 09:15:03 -07002453 * any PHY registers
2454 */
Bruce Allan60f12922009-07-01 13:28:14 +00002455 if (hw->mac.type == e1000_ich8lan)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002456 e1000e_gig_downshift_workaround_ich8lan(hw);
2457
2458 /* When LPLU is enabled, we should disable SmartSpeed */
2459 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG, &data);
Bruce Allan7dbbe5d2013-01-05 05:08:31 +00002460 if (ret_val)
2461 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002462 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
2463 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG, data);
2464 if (ret_val)
2465 return ret_val;
2466 } else {
2467 phy_ctrl &= ~E1000_PHY_CTRL_D0A_LPLU;
2468 ew32(PHY_CTRL, phy_ctrl);
2469
Bruce Allan60f12922009-07-01 13:28:14 +00002470 if (phy->type != e1000_phy_igp_3)
2471 return 0;
2472
Bruce Allane921eb12012-11-28 09:28:37 +00002473 /* LPLU and SmartSpeed are mutually exclusive. LPLU is used
Auke Kokbc7f75f2007-09-17 12:30:59 -07002474 * during Dx states where the power conservation is most
2475 * important. During driver activity we should enable
Bruce Allanad680762008-03-28 09:15:03 -07002476 * SmartSpeed, so performance is maintained.
2477 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002478 if (phy->smart_speed == e1000_smart_speed_on) {
2479 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -07002480 &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002481 if (ret_val)
2482 return ret_val;
2483
2484 data |= IGP01E1000_PSCFR_SMART_SPEED;
2485 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -07002486 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002487 if (ret_val)
2488 return ret_val;
2489 } else if (phy->smart_speed == e1000_smart_speed_off) {
2490 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -07002491 &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002492 if (ret_val)
2493 return ret_val;
2494
2495 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
2496 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -07002497 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002498 if (ret_val)
2499 return ret_val;
2500 }
2501 }
2502
2503 return 0;
2504}
2505
2506/**
2507 * e1000_set_d3_lplu_state_ich8lan - Set Low Power Linkup D3 state
2508 * @hw: pointer to the HW structure
Bruce Allan564ea9b2009-11-20 23:26:44 +00002509 * @active: true to enable LPLU, false to disable
Auke Kokbc7f75f2007-09-17 12:30:59 -07002510 *
2511 * Sets the LPLU D3 state according to the active flag. When
2512 * activating LPLU this function also disables smart speed
2513 * and vice versa. LPLU will not be activated unless the
2514 * device autonegotiation advertisement meets standards of
2515 * either 10 or 10/100 or 10/100/1000 at all duplexes.
2516 * This is a function pointer entry point only called by
2517 * PHY setup routines.
2518 **/
2519static s32 e1000_set_d3_lplu_state_ich8lan(struct e1000_hw *hw, bool active)
2520{
2521 struct e1000_phy_info *phy = &hw->phy;
2522 u32 phy_ctrl;
Bruce Alland7eb3382012-02-08 02:55:14 +00002523 s32 ret_val = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002524 u16 data;
2525
2526 phy_ctrl = er32(PHY_CTRL);
2527
2528 if (!active) {
2529 phy_ctrl &= ~E1000_PHY_CTRL_NOND0A_LPLU;
2530 ew32(PHY_CTRL, phy_ctrl);
Bruce Allan60f12922009-07-01 13:28:14 +00002531
2532 if (phy->type != e1000_phy_igp_3)
2533 return 0;
2534
Bruce Allane921eb12012-11-28 09:28:37 +00002535 /* LPLU and SmartSpeed are mutually exclusive. LPLU is used
Auke Kokbc7f75f2007-09-17 12:30:59 -07002536 * during Dx states where the power conservation is most
2537 * important. During driver activity we should enable
Bruce Allanad680762008-03-28 09:15:03 -07002538 * SmartSpeed, so performance is maintained.
2539 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002540 if (phy->smart_speed == e1000_smart_speed_on) {
Bruce Allanad680762008-03-28 09:15:03 -07002541 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG,
2542 &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002543 if (ret_val)
2544 return ret_val;
2545
2546 data |= IGP01E1000_PSCFR_SMART_SPEED;
Bruce Allanad680762008-03-28 09:15:03 -07002547 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
2548 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002549 if (ret_val)
2550 return ret_val;
2551 } else if (phy->smart_speed == e1000_smart_speed_off) {
Bruce Allanad680762008-03-28 09:15:03 -07002552 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG,
2553 &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002554 if (ret_val)
2555 return ret_val;
2556
2557 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
Bruce Allanad680762008-03-28 09:15:03 -07002558 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
2559 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002560 if (ret_val)
2561 return ret_val;
2562 }
2563 } else if ((phy->autoneg_advertised == E1000_ALL_SPEED_DUPLEX) ||
2564 (phy->autoneg_advertised == E1000_ALL_NOT_GIG) ||
2565 (phy->autoneg_advertised == E1000_ALL_10_SPEED)) {
2566 phy_ctrl |= E1000_PHY_CTRL_NOND0A_LPLU;
2567 ew32(PHY_CTRL, phy_ctrl);
2568
Bruce Allan60f12922009-07-01 13:28:14 +00002569 if (phy->type != e1000_phy_igp_3)
2570 return 0;
2571
Bruce Allane921eb12012-11-28 09:28:37 +00002572 /* Call gig speed drop workaround on LPLU before accessing
Bruce Allanad680762008-03-28 09:15:03 -07002573 * any PHY registers
2574 */
Bruce Allan60f12922009-07-01 13:28:14 +00002575 if (hw->mac.type == e1000_ich8lan)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002576 e1000e_gig_downshift_workaround_ich8lan(hw);
2577
2578 /* When LPLU is enabled, we should disable SmartSpeed */
Bruce Allanad680762008-03-28 09:15:03 -07002579 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG, &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002580 if (ret_val)
2581 return ret_val;
2582
2583 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
Bruce Allanad680762008-03-28 09:15:03 -07002584 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG, data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002585 }
2586
Bruce Alland7eb3382012-02-08 02:55:14 +00002587 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002588}
2589
2590/**
Bruce Allanf4187b52008-08-26 18:36:50 -07002591 * e1000_valid_nvm_bank_detect_ich8lan - finds out the valid bank 0 or 1
2592 * @hw: pointer to the HW structure
2593 * @bank: pointer to the variable that returns the active bank
2594 *
2595 * Reads signature byte from the NVM using the flash access registers.
Bruce Allane2434552008-11-21 17:02:41 -08002596 * Word 0x13 bits 15:14 = 10b indicate a valid signature for that bank.
Bruce Allanf4187b52008-08-26 18:36:50 -07002597 **/
2598static s32 e1000_valid_nvm_bank_detect_ich8lan(struct e1000_hw *hw, u32 *bank)
2599{
Bruce Allane2434552008-11-21 17:02:41 -08002600 u32 eecd;
Bruce Allanf4187b52008-08-26 18:36:50 -07002601 struct e1000_nvm_info *nvm = &hw->nvm;
Bruce Allanf4187b52008-08-26 18:36:50 -07002602 u32 bank1_offset = nvm->flash_bank_size * sizeof(u16);
2603 u32 act_offset = E1000_ICH_NVM_SIG_WORD * 2 + 1;
Bruce Allane2434552008-11-21 17:02:41 -08002604 u8 sig_byte = 0;
Bruce Allanf71dde62012-02-08 02:55:35 +00002605 s32 ret_val;
Bruce Allanf4187b52008-08-26 18:36:50 -07002606
Bruce Allane2434552008-11-21 17:02:41 -08002607 switch (hw->mac.type) {
2608 case e1000_ich8lan:
2609 case e1000_ich9lan:
2610 eecd = er32(EECD);
2611 if ((eecd & E1000_EECD_SEC1VAL_VALID_MASK) ==
2612 E1000_EECD_SEC1VAL_VALID_MASK) {
2613 if (eecd & E1000_EECD_SEC1VAL)
Bruce Allanf4187b52008-08-26 18:36:50 -07002614 *bank = 1;
Bruce Allane2434552008-11-21 17:02:41 -08002615 else
2616 *bank = 0;
2617
2618 return 0;
Bruce Allanf4187b52008-08-26 18:36:50 -07002619 }
Bruce Allan434f1392011-12-16 00:46:54 +00002620 e_dbg("Unable to determine valid NVM bank via EEC - reading flash signature\n");
Bruce Allane2434552008-11-21 17:02:41 -08002621 /* fall-thru */
2622 default:
2623 /* set bank to 0 in case flash read fails */
2624 *bank = 0;
2625
2626 /* Check bank 0 */
2627 ret_val = e1000_read_flash_byte_ich8lan(hw, act_offset,
Bruce Allanf0ff4392013-02-20 04:05:39 +00002628 &sig_byte);
Bruce Allane2434552008-11-21 17:02:41 -08002629 if (ret_val)
2630 return ret_val;
2631 if ((sig_byte & E1000_ICH_NVM_VALID_SIG_MASK) ==
2632 E1000_ICH_NVM_SIG_VALUE) {
2633 *bank = 0;
2634 return 0;
2635 }
2636
2637 /* Check bank 1 */
2638 ret_val = e1000_read_flash_byte_ich8lan(hw, act_offset +
Bruce Allanf0ff4392013-02-20 04:05:39 +00002639 bank1_offset,
2640 &sig_byte);
Bruce Allane2434552008-11-21 17:02:41 -08002641 if (ret_val)
2642 return ret_val;
2643 if ((sig_byte & E1000_ICH_NVM_VALID_SIG_MASK) ==
2644 E1000_ICH_NVM_SIG_VALUE) {
2645 *bank = 1;
2646 return 0;
2647 }
2648
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002649 e_dbg("ERROR: No valid NVM bank present\n");
Bruce Allane2434552008-11-21 17:02:41 -08002650 return -E1000_ERR_NVM;
Bruce Allanf4187b52008-08-26 18:36:50 -07002651 }
Bruce Allanf4187b52008-08-26 18:36:50 -07002652}
2653
2654/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07002655 * e1000_read_nvm_ich8lan - Read word(s) from the NVM
2656 * @hw: pointer to the HW structure
2657 * @offset: The offset (in bytes) of the word(s) to read.
2658 * @words: Size of data to read in words
2659 * @data: Pointer to the word(s) to read at offset.
2660 *
2661 * Reads a word(s) from the NVM using the flash access registers.
2662 **/
2663static s32 e1000_read_nvm_ich8lan(struct e1000_hw *hw, u16 offset, u16 words,
2664 u16 *data)
2665{
2666 struct e1000_nvm_info *nvm = &hw->nvm;
2667 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
2668 u32 act_offset;
Bruce Allan148675a2009-08-07 07:41:56 +00002669 s32 ret_val = 0;
Bruce Allanf4187b52008-08-26 18:36:50 -07002670 u32 bank = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002671 u16 i, word;
2672
2673 if ((offset >= nvm->word_size) || (words > nvm->word_size - offset) ||
2674 (words == 0)) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002675 e_dbg("nvm parameter(s) out of bounds\n");
Bruce Allanca15df52009-10-26 11:23:43 +00002676 ret_val = -E1000_ERR_NVM;
2677 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002678 }
2679
Bruce Allan94d81862009-11-20 23:25:26 +00002680 nvm->ops.acquire(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002681
Bruce Allanf4187b52008-08-26 18:36:50 -07002682 ret_val = e1000_valid_nvm_bank_detect_ich8lan(hw, &bank);
Bruce Allan148675a2009-08-07 07:41:56 +00002683 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002684 e_dbg("Could not detect valid bank, assuming bank 0\n");
Bruce Allan148675a2009-08-07 07:41:56 +00002685 bank = 0;
2686 }
Bruce Allanf4187b52008-08-26 18:36:50 -07002687
2688 act_offset = (bank) ? nvm->flash_bank_size : 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002689 act_offset += offset;
2690
Bruce Allan148675a2009-08-07 07:41:56 +00002691 ret_val = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002692 for (i = 0; i < words; i++) {
Bruce Allan362e20c2013-02-20 04:05:45 +00002693 if (dev_spec->shadow_ram[offset + i].modified) {
2694 data[i] = dev_spec->shadow_ram[offset + i].value;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002695 } else {
2696 ret_val = e1000_read_flash_word_ich8lan(hw,
2697 act_offset + i,
2698 &word);
2699 if (ret_val)
2700 break;
2701 data[i] = word;
2702 }
2703 }
2704
Bruce Allan94d81862009-11-20 23:25:26 +00002705 nvm->ops.release(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002706
Bruce Allane2434552008-11-21 17:02:41 -08002707out:
2708 if (ret_val)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002709 e_dbg("NVM read error: %d\n", ret_val);
Bruce Allane2434552008-11-21 17:02:41 -08002710
Auke Kokbc7f75f2007-09-17 12:30:59 -07002711 return ret_val;
2712}
2713
2714/**
2715 * e1000_flash_cycle_init_ich8lan - Initialize flash
2716 * @hw: pointer to the HW structure
2717 *
2718 * This function does initial flash setup so that a new read/write/erase cycle
2719 * can be started.
2720 **/
2721static s32 e1000_flash_cycle_init_ich8lan(struct e1000_hw *hw)
2722{
2723 union ich8_hws_flash_status hsfsts;
2724 s32 ret_val = -E1000_ERR_NVM;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002725
2726 hsfsts.regval = er16flash(ICH_FLASH_HSFSTS);
2727
2728 /* Check if the flash descriptor is valid */
Bruce Allan04499ec2012-04-13 00:08:31 +00002729 if (!hsfsts.hsf_status.fldesvalid) {
Bruce Allan434f1392011-12-16 00:46:54 +00002730 e_dbg("Flash descriptor invalid. SW Sequencing must be used.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07002731 return -E1000_ERR_NVM;
2732 }
2733
2734 /* Clear FCERR and DAEL in hw status by writing 1 */
2735 hsfsts.hsf_status.flcerr = 1;
2736 hsfsts.hsf_status.dael = 1;
2737
2738 ew16flash(ICH_FLASH_HSFSTS, hsfsts.regval);
2739
Bruce Allane921eb12012-11-28 09:28:37 +00002740 /* Either we should have a hardware SPI cycle in progress
Auke Kokbc7f75f2007-09-17 12:30:59 -07002741 * bit to check against, in order to start a new cycle or
2742 * FDONE bit should be changed in the hardware so that it
Auke Kok489815c2008-02-21 15:11:07 -08002743 * is 1 after hardware reset, which can then be used as an
Auke Kokbc7f75f2007-09-17 12:30:59 -07002744 * indication whether a cycle is in progress or has been
2745 * completed.
2746 */
2747
Bruce Allan04499ec2012-04-13 00:08:31 +00002748 if (!hsfsts.hsf_status.flcinprog) {
Bruce Allane921eb12012-11-28 09:28:37 +00002749 /* There is no cycle running at present,
Bruce Allan5ff5b662009-12-01 15:51:11 +00002750 * so we can start a cycle.
Bruce Allanad680762008-03-28 09:15:03 -07002751 * Begin by setting Flash Cycle Done.
2752 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002753 hsfsts.hsf_status.flcdone = 1;
2754 ew16flash(ICH_FLASH_HSFSTS, hsfsts.regval);
2755 ret_val = 0;
2756 } else {
Bruce Allanf71dde62012-02-08 02:55:35 +00002757 s32 i;
Bruce Allan90da0662011-01-06 07:02:53 +00002758
Bruce Allane921eb12012-11-28 09:28:37 +00002759 /* Otherwise poll for sometime so the current
Bruce Allanad680762008-03-28 09:15:03 -07002760 * cycle has a chance to end before giving up.
2761 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002762 for (i = 0; i < ICH_FLASH_READ_COMMAND_TIMEOUT; i++) {
Bruce Allanc8243ee2011-12-17 08:32:57 +00002763 hsfsts.regval = er16flash(ICH_FLASH_HSFSTS);
Bruce Allan04499ec2012-04-13 00:08:31 +00002764 if (!hsfsts.hsf_status.flcinprog) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07002765 ret_val = 0;
2766 break;
2767 }
2768 udelay(1);
2769 }
Bruce Allan9e2d7652012-01-31 06:37:27 +00002770 if (!ret_val) {
Bruce Allane921eb12012-11-28 09:28:37 +00002771 /* Successful in waiting for previous cycle to timeout,
Bruce Allanad680762008-03-28 09:15:03 -07002772 * now set the Flash Cycle Done.
2773 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002774 hsfsts.hsf_status.flcdone = 1;
2775 ew16flash(ICH_FLASH_HSFSTS, hsfsts.regval);
2776 } else {
Joe Perches2c73e1f2010-03-26 20:16:59 +00002777 e_dbg("Flash controller busy, cannot get access\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07002778 }
2779 }
2780
2781 return ret_val;
2782}
2783
2784/**
2785 * e1000_flash_cycle_ich8lan - Starts flash cycle (read/write/erase)
2786 * @hw: pointer to the HW structure
2787 * @timeout: maximum time to wait for completion
2788 *
2789 * This function starts a flash cycle and waits for its completion.
2790 **/
2791static s32 e1000_flash_cycle_ich8lan(struct e1000_hw *hw, u32 timeout)
2792{
2793 union ich8_hws_flash_ctrl hsflctl;
2794 union ich8_hws_flash_status hsfsts;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002795 u32 i = 0;
2796
2797 /* Start a cycle by writing 1 in Flash Cycle Go in Hw Flash Control */
2798 hsflctl.regval = er16flash(ICH_FLASH_HSFCTL);
2799 hsflctl.hsf_ctrl.flcgo = 1;
2800 ew16flash(ICH_FLASH_HSFCTL, hsflctl.regval);
2801
2802 /* wait till FDONE bit is set to 1 */
2803 do {
2804 hsfsts.regval = er16flash(ICH_FLASH_HSFSTS);
Bruce Allan04499ec2012-04-13 00:08:31 +00002805 if (hsfsts.hsf_status.flcdone)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002806 break;
2807 udelay(1);
2808 } while (i++ < timeout);
2809
Bruce Allan04499ec2012-04-13 00:08:31 +00002810 if (hsfsts.hsf_status.flcdone && !hsfsts.hsf_status.flcerr)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002811 return 0;
2812
Bruce Allan55920b52012-02-08 02:55:25 +00002813 return -E1000_ERR_NVM;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002814}
2815
2816/**
2817 * e1000_read_flash_word_ich8lan - Read word from flash
2818 * @hw: pointer to the HW structure
2819 * @offset: offset to data location
2820 * @data: pointer to the location for storing the data
2821 *
2822 * Reads the flash word at offset into data. Offset is converted
2823 * to bytes before read.
2824 **/
2825static s32 e1000_read_flash_word_ich8lan(struct e1000_hw *hw, u32 offset,
2826 u16 *data)
2827{
2828 /* Must convert offset into bytes. */
2829 offset <<= 1;
2830
2831 return e1000_read_flash_data_ich8lan(hw, offset, 2, data);
2832}
2833
2834/**
Bruce Allanf4187b52008-08-26 18:36:50 -07002835 * e1000_read_flash_byte_ich8lan - Read byte from flash
2836 * @hw: pointer to the HW structure
2837 * @offset: The offset of the byte to read.
2838 * @data: Pointer to a byte to store the value read.
2839 *
2840 * Reads a single byte from the NVM using the flash access registers.
2841 **/
2842static s32 e1000_read_flash_byte_ich8lan(struct e1000_hw *hw, u32 offset,
2843 u8 *data)
2844{
2845 s32 ret_val;
2846 u16 word = 0;
2847
2848 ret_val = e1000_read_flash_data_ich8lan(hw, offset, 1, &word);
2849 if (ret_val)
2850 return ret_val;
2851
2852 *data = (u8)word;
2853
2854 return 0;
2855}
2856
2857/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07002858 * e1000_read_flash_data_ich8lan - Read byte or word from NVM
2859 * @hw: pointer to the HW structure
2860 * @offset: The offset (in bytes) of the byte or word to read.
2861 * @size: Size of data to read, 1=byte 2=word
2862 * @data: Pointer to the word to store the value read.
2863 *
2864 * Reads a byte or word from the NVM using the flash access registers.
2865 **/
2866static s32 e1000_read_flash_data_ich8lan(struct e1000_hw *hw, u32 offset,
2867 u8 size, u16 *data)
2868{
2869 union ich8_hws_flash_status hsfsts;
2870 union ich8_hws_flash_ctrl hsflctl;
2871 u32 flash_linear_addr;
2872 u32 flash_data = 0;
2873 s32 ret_val = -E1000_ERR_NVM;
2874 u8 count = 0;
2875
Bruce Allane80bd1d2013-05-01 01:19:46 +00002876 if (size < 1 || size > 2 || offset > ICH_FLASH_LINEAR_ADDR_MASK)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002877 return -E1000_ERR_NVM;
2878
Bruce Allanf0ff4392013-02-20 04:05:39 +00002879 flash_linear_addr = ((ICH_FLASH_LINEAR_ADDR_MASK & offset) +
2880 hw->nvm.flash_base_addr);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002881
2882 do {
2883 udelay(1);
2884 /* Steps */
2885 ret_val = e1000_flash_cycle_init_ich8lan(hw);
Bruce Allan9e2d7652012-01-31 06:37:27 +00002886 if (ret_val)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002887 break;
2888
2889 hsflctl.regval = er16flash(ICH_FLASH_HSFCTL);
2890 /* 0b/1b corresponds to 1 or 2 byte size, respectively. */
2891 hsflctl.hsf_ctrl.fldbcount = size - 1;
2892 hsflctl.hsf_ctrl.flcycle = ICH_CYCLE_READ;
2893 ew16flash(ICH_FLASH_HSFCTL, hsflctl.regval);
2894
2895 ew32flash(ICH_FLASH_FADDR, flash_linear_addr);
2896
Bruce Allan17e813e2013-02-20 04:06:01 +00002897 ret_val =
2898 e1000_flash_cycle_ich8lan(hw,
2899 ICH_FLASH_READ_COMMAND_TIMEOUT);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002900
Bruce Allane921eb12012-11-28 09:28:37 +00002901 /* Check if FCERR is set to 1, if set to 1, clear it
Auke Kokbc7f75f2007-09-17 12:30:59 -07002902 * and try the whole sequence a few more times, else
2903 * read in (shift in) the Flash Data0, the order is
Bruce Allanad680762008-03-28 09:15:03 -07002904 * least significant byte first msb to lsb
2905 */
Bruce Allan9e2d7652012-01-31 06:37:27 +00002906 if (!ret_val) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07002907 flash_data = er32flash(ICH_FLASH_FDATA0);
Bruce Allanb1cdfea2010-12-11 05:53:47 +00002908 if (size == 1)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002909 *data = (u8)(flash_data & 0x000000FF);
Bruce Allanb1cdfea2010-12-11 05:53:47 +00002910 else if (size == 2)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002911 *data = (u16)(flash_data & 0x0000FFFF);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002912 break;
2913 } else {
Bruce Allane921eb12012-11-28 09:28:37 +00002914 /* If we've gotten here, then things are probably
Auke Kokbc7f75f2007-09-17 12:30:59 -07002915 * completely hosed, but if the error condition is
2916 * detected, it won't hurt to give it another try...
2917 * ICH_FLASH_CYCLE_REPEAT_COUNT times.
2918 */
2919 hsfsts.regval = er16flash(ICH_FLASH_HSFSTS);
Bruce Allan04499ec2012-04-13 00:08:31 +00002920 if (hsfsts.hsf_status.flcerr) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07002921 /* Repeat for some time before giving up. */
2922 continue;
Bruce Allan04499ec2012-04-13 00:08:31 +00002923 } else if (!hsfsts.hsf_status.flcdone) {
Bruce Allan434f1392011-12-16 00:46:54 +00002924 e_dbg("Timeout error - flash cycle did not complete.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07002925 break;
2926 }
2927 }
2928 } while (count++ < ICH_FLASH_CYCLE_REPEAT_COUNT);
2929
2930 return ret_val;
2931}
2932
2933/**
2934 * e1000_write_nvm_ich8lan - Write word(s) to the NVM
2935 * @hw: pointer to the HW structure
2936 * @offset: The offset (in bytes) of the word(s) to write.
2937 * @words: Size of data to write in words
2938 * @data: Pointer to the word(s) to write at offset.
2939 *
2940 * Writes a byte or word to the NVM using the flash access registers.
2941 **/
2942static s32 e1000_write_nvm_ich8lan(struct e1000_hw *hw, u16 offset, u16 words,
2943 u16 *data)
2944{
2945 struct e1000_nvm_info *nvm = &hw->nvm;
2946 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002947 u16 i;
2948
2949 if ((offset >= nvm->word_size) || (words > nvm->word_size - offset) ||
2950 (words == 0)) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002951 e_dbg("nvm parameter(s) out of bounds\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07002952 return -E1000_ERR_NVM;
2953 }
2954
Bruce Allan94d81862009-11-20 23:25:26 +00002955 nvm->ops.acquire(hw);
Bruce Allanca15df52009-10-26 11:23:43 +00002956
Auke Kokbc7f75f2007-09-17 12:30:59 -07002957 for (i = 0; i < words; i++) {
Bruce Allan362e20c2013-02-20 04:05:45 +00002958 dev_spec->shadow_ram[offset + i].modified = true;
2959 dev_spec->shadow_ram[offset + i].value = data[i];
Auke Kokbc7f75f2007-09-17 12:30:59 -07002960 }
2961
Bruce Allan94d81862009-11-20 23:25:26 +00002962 nvm->ops.release(hw);
Bruce Allanca15df52009-10-26 11:23:43 +00002963
Auke Kokbc7f75f2007-09-17 12:30:59 -07002964 return 0;
2965}
2966
2967/**
2968 * e1000_update_nvm_checksum_ich8lan - Update the checksum for NVM
2969 * @hw: pointer to the HW structure
2970 *
2971 * The NVM checksum is updated by calling the generic update_nvm_checksum,
2972 * which writes the checksum to the shadow ram. The changes in the shadow
2973 * ram are then committed to the EEPROM by processing each bank at a time
2974 * checking for the modified bit and writing only the pending changes.
Auke Kok489815c2008-02-21 15:11:07 -08002975 * After a successful commit, the shadow ram is cleared and is ready for
Auke Kokbc7f75f2007-09-17 12:30:59 -07002976 * future writes.
2977 **/
2978static s32 e1000_update_nvm_checksum_ich8lan(struct e1000_hw *hw)
2979{
2980 struct e1000_nvm_info *nvm = &hw->nvm;
2981 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
Bruce Allanf4187b52008-08-26 18:36:50 -07002982 u32 i, act_offset, new_bank_offset, old_bank_offset, bank;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002983 s32 ret_val;
2984 u16 data;
2985
2986 ret_val = e1000e_update_nvm_checksum_generic(hw);
2987 if (ret_val)
Bruce Allane2434552008-11-21 17:02:41 -08002988 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002989
2990 if (nvm->type != e1000_nvm_flash_sw)
Bruce Allane2434552008-11-21 17:02:41 -08002991 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002992
Bruce Allan94d81862009-11-20 23:25:26 +00002993 nvm->ops.acquire(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002994
Bruce Allane921eb12012-11-28 09:28:37 +00002995 /* We're writing to the opposite bank so if we're on bank 1,
Auke Kokbc7f75f2007-09-17 12:30:59 -07002996 * write to bank 0 etc. We also need to erase the segment that
Bruce Allanad680762008-03-28 09:15:03 -07002997 * is going to be written
2998 */
Bruce Allane80bd1d2013-05-01 01:19:46 +00002999 ret_val = e1000_valid_nvm_bank_detect_ich8lan(hw, &bank);
Bruce Allane2434552008-11-21 17:02:41 -08003000 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003001 e_dbg("Could not detect valid bank, assuming bank 0\n");
Bruce Allan148675a2009-08-07 07:41:56 +00003002 bank = 0;
Bruce Allane2434552008-11-21 17:02:41 -08003003 }
Bruce Allanf4187b52008-08-26 18:36:50 -07003004
3005 if (bank == 0) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07003006 new_bank_offset = nvm->flash_bank_size;
3007 old_bank_offset = 0;
Bruce Allane2434552008-11-21 17:02:41 -08003008 ret_val = e1000_erase_flash_bank_ich8lan(hw, 1);
Bruce Allan9c5e2092010-05-10 15:00:31 +00003009 if (ret_val)
3010 goto release;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003011 } else {
3012 old_bank_offset = nvm->flash_bank_size;
3013 new_bank_offset = 0;
Bruce Allane2434552008-11-21 17:02:41 -08003014 ret_val = e1000_erase_flash_bank_ich8lan(hw, 0);
Bruce Allan9c5e2092010-05-10 15:00:31 +00003015 if (ret_val)
3016 goto release;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003017 }
3018
3019 for (i = 0; i < E1000_ICH8_SHADOW_RAM_WORDS; i++) {
Bruce Allane921eb12012-11-28 09:28:37 +00003020 /* Determine whether to write the value stored
Auke Kokbc7f75f2007-09-17 12:30:59 -07003021 * in the other NVM bank or a modified value stored
Bruce Allanad680762008-03-28 09:15:03 -07003022 * in the shadow RAM
3023 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003024 if (dev_spec->shadow_ram[i].modified) {
3025 data = dev_spec->shadow_ram[i].value;
3026 } else {
Bruce Allane2434552008-11-21 17:02:41 -08003027 ret_val = e1000_read_flash_word_ich8lan(hw, i +
Bruce Allanf0ff4392013-02-20 04:05:39 +00003028 old_bank_offset,
3029 &data);
Bruce Allane2434552008-11-21 17:02:41 -08003030 if (ret_val)
3031 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003032 }
3033
Bruce Allane921eb12012-11-28 09:28:37 +00003034 /* If the word is 0x13, then make sure the signature bits
Auke Kokbc7f75f2007-09-17 12:30:59 -07003035 * (15:14) are 11b until the commit has completed.
3036 * This will allow us to write 10b which indicates the
3037 * signature is valid. We want to do this after the write
3038 * has completed so that we don't mark the segment valid
Bruce Allanad680762008-03-28 09:15:03 -07003039 * while the write is still in progress
3040 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003041 if (i == E1000_ICH_NVM_SIG_WORD)
3042 data |= E1000_ICH_NVM_SIG_MASK;
3043
3044 /* Convert offset to bytes. */
3045 act_offset = (i + new_bank_offset) << 1;
3046
Bruce Allance43a212013-02-20 04:06:32 +00003047 usleep_range(100, 200);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003048 /* Write the bytes to the new bank. */
3049 ret_val = e1000_retry_write_flash_byte_ich8lan(hw,
3050 act_offset,
3051 (u8)data);
3052 if (ret_val)
3053 break;
3054
Bruce Allance43a212013-02-20 04:06:32 +00003055 usleep_range(100, 200);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003056 ret_val = e1000_retry_write_flash_byte_ich8lan(hw,
Bruce Allanf0ff4392013-02-20 04:05:39 +00003057 act_offset + 1,
3058 (u8)(data >> 8));
Auke Kokbc7f75f2007-09-17 12:30:59 -07003059 if (ret_val)
3060 break;
3061 }
3062
Bruce Allane921eb12012-11-28 09:28:37 +00003063 /* Don't bother writing the segment valid bits if sector
Bruce Allanad680762008-03-28 09:15:03 -07003064 * programming failed.
3065 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003066 if (ret_val) {
Bruce Allan4a770352008-10-01 17:18:35 -07003067 /* Possibly read-only, see e1000e_write_protect_nvm_ich8lan() */
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003068 e_dbg("Flash commit failed.\n");
Bruce Allan9c5e2092010-05-10 15:00:31 +00003069 goto release;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003070 }
3071
Bruce Allane921eb12012-11-28 09:28:37 +00003072 /* Finally validate the new segment by setting bit 15:14
Auke Kokbc7f75f2007-09-17 12:30:59 -07003073 * to 10b in word 0x13 , this can be done without an
3074 * erase as well since these bits are 11 to start with
Bruce Allanad680762008-03-28 09:15:03 -07003075 * and we need to change bit 14 to 0b
3076 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003077 act_offset = new_bank_offset + E1000_ICH_NVM_SIG_WORD;
Bruce Allane2434552008-11-21 17:02:41 -08003078 ret_val = e1000_read_flash_word_ich8lan(hw, act_offset, &data);
Bruce Allan9c5e2092010-05-10 15:00:31 +00003079 if (ret_val)
3080 goto release;
3081
Auke Kokbc7f75f2007-09-17 12:30:59 -07003082 data &= 0xBFFF;
3083 ret_val = e1000_retry_write_flash_byte_ich8lan(hw,
3084 act_offset * 2 + 1,
3085 (u8)(data >> 8));
Bruce Allan9c5e2092010-05-10 15:00:31 +00003086 if (ret_val)
3087 goto release;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003088
Bruce Allane921eb12012-11-28 09:28:37 +00003089 /* And invalidate the previously valid segment by setting
Auke Kokbc7f75f2007-09-17 12:30:59 -07003090 * its signature word (0x13) high_byte to 0b. This can be
3091 * done without an erase because flash erase sets all bits
Bruce Allanad680762008-03-28 09:15:03 -07003092 * to 1's. We can write 1's to 0's without an erase
3093 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003094 act_offset = (old_bank_offset + E1000_ICH_NVM_SIG_WORD) * 2 + 1;
3095 ret_val = e1000_retry_write_flash_byte_ich8lan(hw, act_offset, 0);
Bruce Allan9c5e2092010-05-10 15:00:31 +00003096 if (ret_val)
3097 goto release;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003098
3099 /* Great! Everything worked, we can now clear the cached entries. */
3100 for (i = 0; i < E1000_ICH8_SHADOW_RAM_WORDS; i++) {
Bruce Allan564ea9b2009-11-20 23:26:44 +00003101 dev_spec->shadow_ram[i].modified = false;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003102 dev_spec->shadow_ram[i].value = 0xFFFF;
3103 }
3104
Bruce Allan9c5e2092010-05-10 15:00:31 +00003105release:
Bruce Allan94d81862009-11-20 23:25:26 +00003106 nvm->ops.release(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003107
Bruce Allane921eb12012-11-28 09:28:37 +00003108 /* Reload the EEPROM, or else modifications will not appear
Auke Kokbc7f75f2007-09-17 12:30:59 -07003109 * until after the next adapter reset.
3110 */
Bruce Allan9c5e2092010-05-10 15:00:31 +00003111 if (!ret_val) {
Bruce Allane85e3632012-02-22 09:03:14 +00003112 nvm->ops.reload(hw);
Bruce Allan1bba4382011-03-19 00:27:20 +00003113 usleep_range(10000, 20000);
Bruce Allan9c5e2092010-05-10 15:00:31 +00003114 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07003115
Bruce Allane2434552008-11-21 17:02:41 -08003116out:
3117 if (ret_val)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003118 e_dbg("NVM update error: %d\n", ret_val);
Bruce Allane2434552008-11-21 17:02:41 -08003119
Auke Kokbc7f75f2007-09-17 12:30:59 -07003120 return ret_val;
3121}
3122
3123/**
3124 * e1000_validate_nvm_checksum_ich8lan - Validate EEPROM checksum
3125 * @hw: pointer to the HW structure
3126 *
3127 * Check to see if checksum needs to be fixed by reading bit 6 in word 0x19.
3128 * If the bit is 0, that the EEPROM had been modified, but the checksum was not
3129 * calculated, in which case we need to calculate the checksum and set bit 6.
3130 **/
3131static s32 e1000_validate_nvm_checksum_ich8lan(struct e1000_hw *hw)
3132{
3133 s32 ret_val;
3134 u16 data;
Bruce Allan1cc7a3a2013-01-09 08:15:42 +00003135 u16 word;
3136 u16 valid_csum_mask;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003137
Bruce Allan1cc7a3a2013-01-09 08:15:42 +00003138 /* Read NVM and check Invalid Image CSUM bit. If this bit is 0,
3139 * the checksum needs to be fixed. This bit is an indication that
3140 * the NVM was prepared by OEM software and did not calculate
3141 * the checksum...a likely scenario.
Auke Kokbc7f75f2007-09-17 12:30:59 -07003142 */
Bruce Allan1cc7a3a2013-01-09 08:15:42 +00003143 switch (hw->mac.type) {
3144 case e1000_pch_lpt:
3145 word = NVM_COMPAT;
3146 valid_csum_mask = NVM_COMPAT_VALID_CSUM;
3147 break;
3148 default:
3149 word = NVM_FUTURE_INIT_WORD1;
3150 valid_csum_mask = NVM_FUTURE_INIT_WORD1_VALID_CSUM;
3151 break;
3152 }
3153
3154 ret_val = e1000_read_nvm(hw, word, 1, &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003155 if (ret_val)
3156 return ret_val;
3157
Bruce Allan1cc7a3a2013-01-09 08:15:42 +00003158 if (!(data & valid_csum_mask)) {
3159 data |= valid_csum_mask;
3160 ret_val = e1000_write_nvm(hw, word, 1, &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003161 if (ret_val)
3162 return ret_val;
3163 ret_val = e1000e_update_nvm_checksum(hw);
3164 if (ret_val)
3165 return ret_val;
3166 }
3167
3168 return e1000e_validate_nvm_checksum_generic(hw);
3169}
3170
3171/**
Bruce Allan4a770352008-10-01 17:18:35 -07003172 * e1000e_write_protect_nvm_ich8lan - Make the NVM read-only
3173 * @hw: pointer to the HW structure
3174 *
3175 * To prevent malicious write/erase of the NVM, set it to be read-only
3176 * so that the hardware ignores all write/erase cycles of the NVM via
3177 * the flash control registers. The shadow-ram copy of the NVM will
3178 * still be updated, however any updates to this copy will not stick
3179 * across driver reloads.
3180 **/
3181void e1000e_write_protect_nvm_ich8lan(struct e1000_hw *hw)
3182{
Bruce Allanca15df52009-10-26 11:23:43 +00003183 struct e1000_nvm_info *nvm = &hw->nvm;
Bruce Allan4a770352008-10-01 17:18:35 -07003184 union ich8_flash_protected_range pr0;
3185 union ich8_hws_flash_status hsfsts;
3186 u32 gfpreg;
Bruce Allan4a770352008-10-01 17:18:35 -07003187
Bruce Allan94d81862009-11-20 23:25:26 +00003188 nvm->ops.acquire(hw);
Bruce Allan4a770352008-10-01 17:18:35 -07003189
3190 gfpreg = er32flash(ICH_FLASH_GFPREG);
3191
3192 /* Write-protect GbE Sector of NVM */
3193 pr0.regval = er32flash(ICH_FLASH_PR0);
3194 pr0.range.base = gfpreg & FLASH_GFPREG_BASE_MASK;
3195 pr0.range.limit = ((gfpreg >> 16) & FLASH_GFPREG_BASE_MASK);
3196 pr0.range.wpe = true;
3197 ew32flash(ICH_FLASH_PR0, pr0.regval);
3198
Bruce Allane921eb12012-11-28 09:28:37 +00003199 /* Lock down a subset of GbE Flash Control Registers, e.g.
Bruce Allan4a770352008-10-01 17:18:35 -07003200 * PR0 to prevent the write-protection from being lifted.
3201 * Once FLOCKDN is set, the registers protected by it cannot
3202 * be written until FLOCKDN is cleared by a hardware reset.
3203 */
3204 hsfsts.regval = er16flash(ICH_FLASH_HSFSTS);
3205 hsfsts.hsf_status.flockdn = true;
3206 ew32flash(ICH_FLASH_HSFSTS, hsfsts.regval);
3207
Bruce Allan94d81862009-11-20 23:25:26 +00003208 nvm->ops.release(hw);
Bruce Allan4a770352008-10-01 17:18:35 -07003209}
3210
3211/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07003212 * e1000_write_flash_data_ich8lan - Writes bytes to the NVM
3213 * @hw: pointer to the HW structure
3214 * @offset: The offset (in bytes) of the byte/word to read.
3215 * @size: Size of data to read, 1=byte 2=word
3216 * @data: The byte(s) to write to the NVM.
3217 *
3218 * Writes one/two bytes to the NVM using the flash access registers.
3219 **/
3220static s32 e1000_write_flash_data_ich8lan(struct e1000_hw *hw, u32 offset,
3221 u8 size, u16 data)
3222{
3223 union ich8_hws_flash_status hsfsts;
3224 union ich8_hws_flash_ctrl hsflctl;
3225 u32 flash_linear_addr;
3226 u32 flash_data = 0;
3227 s32 ret_val;
3228 u8 count = 0;
3229
3230 if (size < 1 || size > 2 || data > size * 0xff ||
3231 offset > ICH_FLASH_LINEAR_ADDR_MASK)
3232 return -E1000_ERR_NVM;
3233
Bruce Allanf0ff4392013-02-20 04:05:39 +00003234 flash_linear_addr = ((ICH_FLASH_LINEAR_ADDR_MASK & offset) +
3235 hw->nvm.flash_base_addr);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003236
3237 do {
3238 udelay(1);
3239 /* Steps */
3240 ret_val = e1000_flash_cycle_init_ich8lan(hw);
3241 if (ret_val)
3242 break;
3243
3244 hsflctl.regval = er16flash(ICH_FLASH_HSFCTL);
3245 /* 0b/1b corresponds to 1 or 2 byte size, respectively. */
Bruce Allan362e20c2013-02-20 04:05:45 +00003246 hsflctl.hsf_ctrl.fldbcount = size - 1;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003247 hsflctl.hsf_ctrl.flcycle = ICH_CYCLE_WRITE;
3248 ew16flash(ICH_FLASH_HSFCTL, hsflctl.regval);
3249
3250 ew32flash(ICH_FLASH_FADDR, flash_linear_addr);
3251
3252 if (size == 1)
3253 flash_data = (u32)data & 0x00FF;
3254 else
3255 flash_data = (u32)data;
3256
3257 ew32flash(ICH_FLASH_FDATA0, flash_data);
3258
Bruce Allane921eb12012-11-28 09:28:37 +00003259 /* check if FCERR is set to 1 , if set to 1, clear it
Bruce Allanad680762008-03-28 09:15:03 -07003260 * and try the whole sequence a few more times else done
3261 */
Bruce Allan17e813e2013-02-20 04:06:01 +00003262 ret_val =
3263 e1000_flash_cycle_ich8lan(hw,
3264 ICH_FLASH_WRITE_COMMAND_TIMEOUT);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003265 if (!ret_val)
3266 break;
3267
Bruce Allane921eb12012-11-28 09:28:37 +00003268 /* If we're here, then things are most likely
Auke Kokbc7f75f2007-09-17 12:30:59 -07003269 * completely hosed, but if the error condition
3270 * is detected, it won't hurt to give it another
3271 * try...ICH_FLASH_CYCLE_REPEAT_COUNT times.
3272 */
3273 hsfsts.regval = er16flash(ICH_FLASH_HSFSTS);
Bruce Allan04499ec2012-04-13 00:08:31 +00003274 if (hsfsts.hsf_status.flcerr)
Auke Kokbc7f75f2007-09-17 12:30:59 -07003275 /* Repeat for some time before giving up. */
3276 continue;
Bruce Allan04499ec2012-04-13 00:08:31 +00003277 if (!hsfsts.hsf_status.flcdone) {
Bruce Allan434f1392011-12-16 00:46:54 +00003278 e_dbg("Timeout error - flash cycle did not complete.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07003279 break;
3280 }
3281 } while (count++ < ICH_FLASH_CYCLE_REPEAT_COUNT);
3282
3283 return ret_val;
3284}
3285
3286/**
3287 * e1000_write_flash_byte_ich8lan - Write a single byte to NVM
3288 * @hw: pointer to the HW structure
3289 * @offset: The index of the byte to read.
3290 * @data: The byte to write to the NVM.
3291 *
3292 * Writes a single byte to the NVM using the flash access registers.
3293 **/
3294static s32 e1000_write_flash_byte_ich8lan(struct e1000_hw *hw, u32 offset,
3295 u8 data)
3296{
3297 u16 word = (u16)data;
3298
3299 return e1000_write_flash_data_ich8lan(hw, offset, 1, word);
3300}
3301
3302/**
3303 * e1000_retry_write_flash_byte_ich8lan - Writes a single byte to NVM
3304 * @hw: pointer to the HW structure
3305 * @offset: The offset of the byte to write.
3306 * @byte: The byte to write to the NVM.
3307 *
3308 * Writes a single byte to the NVM using the flash access registers.
3309 * Goes through a retry algorithm before giving up.
3310 **/
3311static s32 e1000_retry_write_flash_byte_ich8lan(struct e1000_hw *hw,
3312 u32 offset, u8 byte)
3313{
3314 s32 ret_val;
3315 u16 program_retries;
3316
3317 ret_val = e1000_write_flash_byte_ich8lan(hw, offset, byte);
3318 if (!ret_val)
3319 return ret_val;
3320
3321 for (program_retries = 0; program_retries < 100; program_retries++) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003322 e_dbg("Retrying Byte %2.2X at offset %u\n", byte, offset);
Bruce Allance43a212013-02-20 04:06:32 +00003323 usleep_range(100, 200);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003324 ret_val = e1000_write_flash_byte_ich8lan(hw, offset, byte);
3325 if (!ret_val)
3326 break;
3327 }
3328 if (program_retries == 100)
3329 return -E1000_ERR_NVM;
3330
3331 return 0;
3332}
3333
3334/**
3335 * e1000_erase_flash_bank_ich8lan - Erase a bank (4k) from NVM
3336 * @hw: pointer to the HW structure
3337 * @bank: 0 for first bank, 1 for second bank, etc.
3338 *
3339 * Erases the bank specified. Each bank is a 4k block. Banks are 0 based.
3340 * bank N is 4096 * N + flash_reg_addr.
3341 **/
3342static s32 e1000_erase_flash_bank_ich8lan(struct e1000_hw *hw, u32 bank)
3343{
3344 struct e1000_nvm_info *nvm = &hw->nvm;
3345 union ich8_hws_flash_status hsfsts;
3346 union ich8_hws_flash_ctrl hsflctl;
3347 u32 flash_linear_addr;
3348 /* bank size is in 16bit words - adjust to bytes */
3349 u32 flash_bank_size = nvm->flash_bank_size * 2;
3350 s32 ret_val;
3351 s32 count = 0;
Bruce Allana708dd82009-11-20 23:28:37 +00003352 s32 j, iteration, sector_size;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003353
3354 hsfsts.regval = er16flash(ICH_FLASH_HSFSTS);
3355
Bruce Allane921eb12012-11-28 09:28:37 +00003356 /* Determine HW Sector size: Read BERASE bits of hw flash status
Bruce Allanad680762008-03-28 09:15:03 -07003357 * register
3358 * 00: The Hw sector is 256 bytes, hence we need to erase 16
Auke Kokbc7f75f2007-09-17 12:30:59 -07003359 * consecutive sectors. The start index for the nth Hw sector
3360 * can be calculated as = bank * 4096 + n * 256
3361 * 01: The Hw sector is 4K bytes, hence we need to erase 1 sector.
3362 * The start index for the nth Hw sector can be calculated
3363 * as = bank * 4096
3364 * 10: The Hw sector is 8K bytes, nth sector = bank * 8192
3365 * (ich9 only, otherwise error condition)
3366 * 11: The Hw sector is 64K bytes, nth sector = bank * 65536
3367 */
3368 switch (hsfsts.hsf_status.berasesz) {
3369 case 0:
3370 /* Hw sector size 256 */
3371 sector_size = ICH_FLASH_SEG_SIZE_256;
3372 iteration = flash_bank_size / ICH_FLASH_SEG_SIZE_256;
3373 break;
3374 case 1:
3375 sector_size = ICH_FLASH_SEG_SIZE_4K;
Bruce Allan28c91952009-07-01 13:28:32 +00003376 iteration = 1;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003377 break;
3378 case 2:
Bruce Allan148675a2009-08-07 07:41:56 +00003379 sector_size = ICH_FLASH_SEG_SIZE_8K;
3380 iteration = 1;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003381 break;
3382 case 3:
3383 sector_size = ICH_FLASH_SEG_SIZE_64K;
Bruce Allan28c91952009-07-01 13:28:32 +00003384 iteration = 1;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003385 break;
3386 default:
3387 return -E1000_ERR_NVM;
3388 }
3389
3390 /* Start with the base address, then add the sector offset. */
3391 flash_linear_addr = hw->nvm.flash_base_addr;
Bruce Allan148675a2009-08-07 07:41:56 +00003392 flash_linear_addr += (bank) ? flash_bank_size : 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003393
Bruce Allan53aa82d2013-02-20 04:06:06 +00003394 for (j = 0; j < iteration; j++) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07003395 do {
Bruce Allan17e813e2013-02-20 04:06:01 +00003396 u32 timeout = ICH_FLASH_ERASE_COMMAND_TIMEOUT;
3397
Auke Kokbc7f75f2007-09-17 12:30:59 -07003398 /* Steps */
3399 ret_val = e1000_flash_cycle_init_ich8lan(hw);
3400 if (ret_val)
3401 return ret_val;
3402
Bruce Allane921eb12012-11-28 09:28:37 +00003403 /* Write a value 11 (block Erase) in Flash
Bruce Allanad680762008-03-28 09:15:03 -07003404 * Cycle field in hw flash control
3405 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003406 hsflctl.regval = er16flash(ICH_FLASH_HSFCTL);
3407 hsflctl.hsf_ctrl.flcycle = ICH_CYCLE_ERASE;
3408 ew16flash(ICH_FLASH_HSFCTL, hsflctl.regval);
3409
Bruce Allane921eb12012-11-28 09:28:37 +00003410 /* Write the last 24 bits of an index within the
Auke Kokbc7f75f2007-09-17 12:30:59 -07003411 * block into Flash Linear address field in Flash
3412 * Address.
3413 */
3414 flash_linear_addr += (j * sector_size);
3415 ew32flash(ICH_FLASH_FADDR, flash_linear_addr);
3416
Bruce Allan17e813e2013-02-20 04:06:01 +00003417 ret_val = e1000_flash_cycle_ich8lan(hw, timeout);
Bruce Allan9e2d7652012-01-31 06:37:27 +00003418 if (!ret_val)
Auke Kokbc7f75f2007-09-17 12:30:59 -07003419 break;
3420
Bruce Allane921eb12012-11-28 09:28:37 +00003421 /* Check if FCERR is set to 1. If 1,
Auke Kokbc7f75f2007-09-17 12:30:59 -07003422 * clear it and try the whole sequence
Bruce Allanad680762008-03-28 09:15:03 -07003423 * a few more times else Done
3424 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003425 hsfsts.regval = er16flash(ICH_FLASH_HSFSTS);
Bruce Allan04499ec2012-04-13 00:08:31 +00003426 if (hsfsts.hsf_status.flcerr)
Bruce Allanad680762008-03-28 09:15:03 -07003427 /* repeat for some time before giving up */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003428 continue;
Bruce Allan04499ec2012-04-13 00:08:31 +00003429 else if (!hsfsts.hsf_status.flcdone)
Auke Kokbc7f75f2007-09-17 12:30:59 -07003430 return ret_val;
3431 } while (++count < ICH_FLASH_CYCLE_REPEAT_COUNT);
3432 }
3433
3434 return 0;
3435}
3436
3437/**
3438 * e1000_valid_led_default_ich8lan - Set the default LED settings
3439 * @hw: pointer to the HW structure
3440 * @data: Pointer to the LED settings
3441 *
3442 * Reads the LED default settings from the NVM to data. If the NVM LED
3443 * settings is all 0's or F's, set the LED default to a valid LED default
3444 * setting.
3445 **/
3446static s32 e1000_valid_led_default_ich8lan(struct e1000_hw *hw, u16 *data)
3447{
3448 s32 ret_val;
3449
3450 ret_val = e1000_read_nvm(hw, NVM_ID_LED_SETTINGS, 1, data);
3451 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003452 e_dbg("NVM Read Error\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07003453 return ret_val;
3454 }
3455
Bruce Allane5fe2542013-02-20 04:06:27 +00003456 if (*data == ID_LED_RESERVED_0000 || *data == ID_LED_RESERVED_FFFF)
Auke Kokbc7f75f2007-09-17 12:30:59 -07003457 *data = ID_LED_DEFAULT_ICH8LAN;
3458
3459 return 0;
3460}
3461
3462/**
Bruce Allana4f58f52009-06-02 11:29:18 +00003463 * e1000_id_led_init_pchlan - store LED configurations
3464 * @hw: pointer to the HW structure
3465 *
3466 * PCH does not control LEDs via the LEDCTL register, rather it uses
3467 * the PHY LED configuration register.
3468 *
3469 * PCH also does not have an "always on" or "always off" mode which
3470 * complicates the ID feature. Instead of using the "on" mode to indicate
Bruce Alland1964eb2012-02-22 09:02:21 +00003471 * in ledctl_mode2 the LEDs to use for ID (see e1000e_id_led_init_generic()),
Bruce Allana4f58f52009-06-02 11:29:18 +00003472 * use "link_up" mode. The LEDs will still ID on request if there is no
3473 * link based on logic in e1000_led_[on|off]_pchlan().
3474 **/
3475static s32 e1000_id_led_init_pchlan(struct e1000_hw *hw)
3476{
3477 struct e1000_mac_info *mac = &hw->mac;
3478 s32 ret_val;
3479 const u32 ledctl_on = E1000_LEDCTL_MODE_LINK_UP;
3480 const u32 ledctl_off = E1000_LEDCTL_MODE_LINK_UP | E1000_PHY_LED0_IVRT;
3481 u16 data, i, temp, shift;
3482
3483 /* Get default ID LED modes */
3484 ret_val = hw->nvm.ops.valid_led_default(hw, &data);
3485 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003486 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003487
3488 mac->ledctl_default = er32(LEDCTL);
3489 mac->ledctl_mode1 = mac->ledctl_default;
3490 mac->ledctl_mode2 = mac->ledctl_default;
3491
3492 for (i = 0; i < 4; i++) {
3493 temp = (data >> (i << 2)) & E1000_LEDCTL_LED0_MODE_MASK;
3494 shift = (i * 5);
3495 switch (temp) {
3496 case ID_LED_ON1_DEF2:
3497 case ID_LED_ON1_ON2:
3498 case ID_LED_ON1_OFF2:
3499 mac->ledctl_mode1 &= ~(E1000_PHY_LED0_MASK << shift);
3500 mac->ledctl_mode1 |= (ledctl_on << shift);
3501 break;
3502 case ID_LED_OFF1_DEF2:
3503 case ID_LED_OFF1_ON2:
3504 case ID_LED_OFF1_OFF2:
3505 mac->ledctl_mode1 &= ~(E1000_PHY_LED0_MASK << shift);
3506 mac->ledctl_mode1 |= (ledctl_off << shift);
3507 break;
3508 default:
3509 /* Do nothing */
3510 break;
3511 }
3512 switch (temp) {
3513 case ID_LED_DEF1_ON2:
3514 case ID_LED_ON1_ON2:
3515 case ID_LED_OFF1_ON2:
3516 mac->ledctl_mode2 &= ~(E1000_PHY_LED0_MASK << shift);
3517 mac->ledctl_mode2 |= (ledctl_on << shift);
3518 break;
3519 case ID_LED_DEF1_OFF2:
3520 case ID_LED_ON1_OFF2:
3521 case ID_LED_OFF1_OFF2:
3522 mac->ledctl_mode2 &= ~(E1000_PHY_LED0_MASK << shift);
3523 mac->ledctl_mode2 |= (ledctl_off << shift);
3524 break;
3525 default:
3526 /* Do nothing */
3527 break;
3528 }
3529 }
3530
Bruce Allan5015e532012-02-08 02:55:56 +00003531 return 0;
Bruce Allana4f58f52009-06-02 11:29:18 +00003532}
3533
3534/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07003535 * e1000_get_bus_info_ich8lan - Get/Set the bus type and width
3536 * @hw: pointer to the HW structure
3537 *
3538 * ICH8 use the PCI Express bus, but does not contain a PCI Express Capability
3539 * register, so the the bus width is hard coded.
3540 **/
3541static s32 e1000_get_bus_info_ich8lan(struct e1000_hw *hw)
3542{
3543 struct e1000_bus_info *bus = &hw->bus;
3544 s32 ret_val;
3545
3546 ret_val = e1000e_get_bus_info_pcie(hw);
3547
Bruce Allane921eb12012-11-28 09:28:37 +00003548 /* ICH devices are "PCI Express"-ish. They have
Auke Kokbc7f75f2007-09-17 12:30:59 -07003549 * a configuration space, but do not contain
3550 * PCI Express Capability registers, so bus width
3551 * must be hardcoded.
3552 */
3553 if (bus->width == e1000_bus_width_unknown)
3554 bus->width = e1000_bus_width_pcie_x1;
3555
3556 return ret_val;
3557}
3558
3559/**
3560 * e1000_reset_hw_ich8lan - Reset the hardware
3561 * @hw: pointer to the HW structure
3562 *
3563 * Does a full reset of the hardware which includes a reset of the PHY and
3564 * MAC.
3565 **/
3566static s32 e1000_reset_hw_ich8lan(struct e1000_hw *hw)
3567{
Bruce Allan1d5846b2009-10-29 13:46:05 +00003568 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
Bruce Allan62bc8132012-03-20 03:47:57 +00003569 u16 kum_cfg;
3570 u32 ctrl, reg;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003571 s32 ret_val;
3572
Bruce Allane921eb12012-11-28 09:28:37 +00003573 /* Prevent the PCI-E bus from sticking if there is no TLP connection
Auke Kokbc7f75f2007-09-17 12:30:59 -07003574 * on the last TLP read/write transaction when MAC is reset.
3575 */
3576 ret_val = e1000e_disable_pcie_master(hw);
Bruce Allane98cac42010-05-10 15:02:32 +00003577 if (ret_val)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003578 e_dbg("PCI-E Master disable polling has failed.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07003579
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003580 e_dbg("Masking off all interrupts\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07003581 ew32(IMC, 0xffffffff);
3582
Bruce Allane921eb12012-11-28 09:28:37 +00003583 /* Disable the Transmit and Receive units. Then delay to allow
Auke Kokbc7f75f2007-09-17 12:30:59 -07003584 * any pending transactions to complete before we hit the MAC
3585 * with the global reset.
3586 */
3587 ew32(RCTL, 0);
3588 ew32(TCTL, E1000_TCTL_PSP);
3589 e1e_flush();
3590
Bruce Allan1bba4382011-03-19 00:27:20 +00003591 usleep_range(10000, 20000);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003592
3593 /* Workaround for ICH8 bit corruption issue in FIFO memory */
3594 if (hw->mac.type == e1000_ich8lan) {
3595 /* Set Tx and Rx buffer allocation to 8k apiece. */
3596 ew32(PBA, E1000_PBA_8K);
3597 /* Set Packet Buffer Size to 16k. */
3598 ew32(PBS, E1000_PBS_16K);
3599 }
3600
Bruce Allan1d5846b2009-10-29 13:46:05 +00003601 if (hw->mac.type == e1000_pchlan) {
Bruce Allan62bc8132012-03-20 03:47:57 +00003602 /* Save the NVM K1 bit setting */
3603 ret_val = e1000_read_nvm(hw, E1000_NVM_K1_CONFIG, 1, &kum_cfg);
Bruce Allan1d5846b2009-10-29 13:46:05 +00003604 if (ret_val)
3605 return ret_val;
3606
Bruce Allan62bc8132012-03-20 03:47:57 +00003607 if (kum_cfg & E1000_NVM_K1_ENABLE)
Bruce Allan1d5846b2009-10-29 13:46:05 +00003608 dev_spec->nvm_k1_enabled = true;
3609 else
3610 dev_spec->nvm_k1_enabled = false;
3611 }
3612
Auke Kokbc7f75f2007-09-17 12:30:59 -07003613 ctrl = er32(CTRL);
3614
Bruce Allan44abd5c2012-02-22 09:02:37 +00003615 if (!hw->phy.ops.check_reset_block(hw)) {
Bruce Allane921eb12012-11-28 09:28:37 +00003616 /* Full-chip reset requires MAC and PHY reset at the same
Auke Kokbc7f75f2007-09-17 12:30:59 -07003617 * time to make sure the interface between MAC and the
3618 * external PHY is reset.
3619 */
3620 ctrl |= E1000_CTRL_PHY_RST;
Bruce Allan605c82b2010-09-22 17:17:01 +00003621
Bruce Allane921eb12012-11-28 09:28:37 +00003622 /* Gate automatic PHY configuration by hardware on
Bruce Allan605c82b2010-09-22 17:17:01 +00003623 * non-managed 82579
3624 */
3625 if ((hw->mac.type == e1000_pch2lan) &&
3626 !(er32(FWSM) & E1000_ICH_FWSM_FW_VALID))
3627 e1000_gate_hw_phy_config_ich8lan(hw, true);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003628 }
3629 ret_val = e1000_acquire_swflag_ich8lan(hw);
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003630 e_dbg("Issuing a global reset to ich8lan\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07003631 ew32(CTRL, (ctrl | E1000_CTRL_RST));
Jesse Brandeburg945a5152011-07-20 00:56:21 +00003632 /* cannot issue a flush here because it hangs the hardware */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003633 msleep(20);
3634
Bruce Allan62bc8132012-03-20 03:47:57 +00003635 /* Set Phy Config Counter to 50msec */
3636 if (hw->mac.type == e1000_pch2lan) {
3637 reg = er32(FEXTNVM3);
3638 reg &= ~E1000_FEXTNVM3_PHY_CFG_COUNTER_MASK;
3639 reg |= E1000_FEXTNVM3_PHY_CFG_COUNTER_50MSEC;
3640 ew32(FEXTNVM3, reg);
3641 }
3642
Bruce Allanfc0c7762009-07-01 13:27:55 +00003643 if (!ret_val)
Bruce Allana90b4122011-10-07 03:50:38 +00003644 clear_bit(__E1000_ACCESS_SHARED_RESOURCE, &hw->adapter->state);
Jesse Brandeburg37f40232008-10-02 16:33:20 -07003645
Bruce Allane98cac42010-05-10 15:02:32 +00003646 if (ctrl & E1000_CTRL_PHY_RST) {
Bruce Allanfc0c7762009-07-01 13:27:55 +00003647 ret_val = hw->phy.ops.get_cfg_done(hw);
Bruce Allane98cac42010-05-10 15:02:32 +00003648 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003649 return ret_val;
Bruce Allanfc0c7762009-07-01 13:27:55 +00003650
Bruce Allane98cac42010-05-10 15:02:32 +00003651 ret_val = e1000_post_phy_reset_ich8lan(hw);
Bruce Allanf523d212009-10-29 13:45:45 +00003652 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003653 return ret_val;
Bruce Allanf523d212009-10-29 13:45:45 +00003654 }
Bruce Allane98cac42010-05-10 15:02:32 +00003655
Bruce Allane921eb12012-11-28 09:28:37 +00003656 /* For PCH, this write will make sure that any noise
Bruce Allan7d3cabb2009-07-01 13:29:08 +00003657 * will be detected as a CRC error and be dropped rather than show up
3658 * as a bad packet to the DMA engine.
3659 */
3660 if (hw->mac.type == e1000_pchlan)
3661 ew32(CRC_OFFSET, 0x65656565);
3662
Auke Kokbc7f75f2007-09-17 12:30:59 -07003663 ew32(IMC, 0xffffffff);
Bruce Allandd93f952011-01-06 14:29:48 +00003664 er32(ICR);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003665
Bruce Allan62bc8132012-03-20 03:47:57 +00003666 reg = er32(KABGTXD);
3667 reg |= E1000_KABGTXD_BGSQLBIAS;
3668 ew32(KABGTXD, reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003669
Bruce Allan5015e532012-02-08 02:55:56 +00003670 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003671}
3672
3673/**
3674 * e1000_init_hw_ich8lan - Initialize the hardware
3675 * @hw: pointer to the HW structure
3676 *
3677 * Prepares the hardware for transmit and receive by doing the following:
3678 * - initialize hardware bits
3679 * - initialize LED identification
3680 * - setup receive address registers
3681 * - setup flow control
Auke Kok489815c2008-02-21 15:11:07 -08003682 * - setup transmit descriptors
Auke Kokbc7f75f2007-09-17 12:30:59 -07003683 * - clear statistics
3684 **/
3685static s32 e1000_init_hw_ich8lan(struct e1000_hw *hw)
3686{
3687 struct e1000_mac_info *mac = &hw->mac;
3688 u32 ctrl_ext, txdctl, snoop;
3689 s32 ret_val;
3690 u16 i;
3691
3692 e1000_initialize_hw_bits_ich8lan(hw);
3693
3694 /* Initialize identification LED */
Bruce Allana4f58f52009-06-02 11:29:18 +00003695 ret_val = mac->ops.id_led_init(hw);
Bruce Allan33550ce2013-02-20 04:06:16 +00003696 /* An error is not fatal and we should not stop init due to this */
Bruce Allande39b752009-11-20 23:27:59 +00003697 if (ret_val)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003698 e_dbg("Error initializing identification LED\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07003699
3700 /* Setup the receive address. */
3701 e1000e_init_rx_addrs(hw, mac->rar_entry_count);
3702
3703 /* Zero out the Multicast HASH table */
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003704 e_dbg("Zeroing the MTA\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07003705 for (i = 0; i < mac->mta_reg_count; i++)
3706 E1000_WRITE_REG_ARRAY(hw, E1000_MTA, i, 0);
3707
Bruce Allane921eb12012-11-28 09:28:37 +00003708 /* The 82578 Rx buffer will stall if wakeup is enabled in host and
Bruce Allan3ebfc7c2011-05-13 07:20:14 +00003709 * the ME. Disable wakeup by clearing the host wakeup bit.
Bruce Allanfc0c7762009-07-01 13:27:55 +00003710 * Reset the phy after disabling host wakeup to reset the Rx buffer.
3711 */
3712 if (hw->phy.type == e1000_phy_82578) {
Bruce Allan3ebfc7c2011-05-13 07:20:14 +00003713 e1e_rphy(hw, BM_PORT_GEN_CFG, &i);
3714 i &= ~BM_WUC_HOST_WU_BIT;
3715 e1e_wphy(hw, BM_PORT_GEN_CFG, i);
Bruce Allanfc0c7762009-07-01 13:27:55 +00003716 ret_val = e1000_phy_hw_reset_ich8lan(hw);
3717 if (ret_val)
3718 return ret_val;
3719 }
3720
Auke Kokbc7f75f2007-09-17 12:30:59 -07003721 /* Setup link and flow control */
Bruce Allan1a46b402012-02-22 09:02:26 +00003722 ret_val = mac->ops.setup_link(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003723
3724 /* Set the transmit descriptor write-back policy for both queues */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07003725 txdctl = er32(TXDCTL(0));
Bruce Allanf0ff4392013-02-20 04:05:39 +00003726 txdctl = ((txdctl & ~E1000_TXDCTL_WTHRESH) |
3727 E1000_TXDCTL_FULL_TX_DESC_WB);
3728 txdctl = ((txdctl & ~E1000_TXDCTL_PTHRESH) |
3729 E1000_TXDCTL_MAX_TX_DESC_PREFETCH);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07003730 ew32(TXDCTL(0), txdctl);
3731 txdctl = er32(TXDCTL(1));
Bruce Allanf0ff4392013-02-20 04:05:39 +00003732 txdctl = ((txdctl & ~E1000_TXDCTL_WTHRESH) |
3733 E1000_TXDCTL_FULL_TX_DESC_WB);
3734 txdctl = ((txdctl & ~E1000_TXDCTL_PTHRESH) |
3735 E1000_TXDCTL_MAX_TX_DESC_PREFETCH);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07003736 ew32(TXDCTL(1), txdctl);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003737
Bruce Allane921eb12012-11-28 09:28:37 +00003738 /* ICH8 has opposite polarity of no_snoop bits.
Bruce Allanad680762008-03-28 09:15:03 -07003739 * By default, we should use snoop behavior.
3740 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003741 if (mac->type == e1000_ich8lan)
3742 snoop = PCIE_ICH8_SNOOP_ALL;
3743 else
Bruce Allan53aa82d2013-02-20 04:06:06 +00003744 snoop = (u32)~(PCIE_NO_SNOOP_ALL);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003745 e1000e_set_pcie_no_snoop(hw, snoop);
3746
3747 ctrl_ext = er32(CTRL_EXT);
3748 ctrl_ext |= E1000_CTRL_EXT_RO_DIS;
3749 ew32(CTRL_EXT, ctrl_ext);
3750
Bruce Allane921eb12012-11-28 09:28:37 +00003751 /* Clear all of the statistics registers (clear on read). It is
Auke Kokbc7f75f2007-09-17 12:30:59 -07003752 * important that we do this after we have tried to establish link
3753 * because the symbol error count will increment wildly if there
3754 * is no link.
3755 */
3756 e1000_clear_hw_cntrs_ich8lan(hw);
3757
Bruce Allane561a702012-02-08 02:55:46 +00003758 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003759}
Bruce Allanfc830b72013-02-20 04:06:11 +00003760
Auke Kokbc7f75f2007-09-17 12:30:59 -07003761/**
3762 * e1000_initialize_hw_bits_ich8lan - Initialize required hardware bits
3763 * @hw: pointer to the HW structure
3764 *
3765 * Sets/Clears required hardware bits necessary for correctly setting up the
3766 * hardware for transmit and receive.
3767 **/
3768static void e1000_initialize_hw_bits_ich8lan(struct e1000_hw *hw)
3769{
3770 u32 reg;
3771
3772 /* Extended Device Control */
3773 reg = er32(CTRL_EXT);
3774 reg |= (1 << 22);
Bruce Allana4f58f52009-06-02 11:29:18 +00003775 /* Enable PHY low-power state when MAC is at D3 w/o WoL */
3776 if (hw->mac.type >= e1000_pchlan)
3777 reg |= E1000_CTRL_EXT_PHYPDEN;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003778 ew32(CTRL_EXT, reg);
3779
3780 /* Transmit Descriptor Control 0 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07003781 reg = er32(TXDCTL(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -07003782 reg |= (1 << 22);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07003783 ew32(TXDCTL(0), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003784
3785 /* Transmit Descriptor Control 1 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07003786 reg = er32(TXDCTL(1));
Auke Kokbc7f75f2007-09-17 12:30:59 -07003787 reg |= (1 << 22);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07003788 ew32(TXDCTL(1), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003789
3790 /* Transmit Arbitration Control 0 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07003791 reg = er32(TARC(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -07003792 if (hw->mac.type == e1000_ich8lan)
3793 reg |= (1 << 28) | (1 << 29);
3794 reg |= (1 << 23) | (1 << 24) | (1 << 26) | (1 << 27);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07003795 ew32(TARC(0), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003796
3797 /* Transmit Arbitration Control 1 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07003798 reg = er32(TARC(1));
Auke Kokbc7f75f2007-09-17 12:30:59 -07003799 if (er32(TCTL) & E1000_TCTL_MULR)
3800 reg &= ~(1 << 28);
3801 else
3802 reg |= (1 << 28);
3803 reg |= (1 << 24) | (1 << 26) | (1 << 30);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07003804 ew32(TARC(1), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003805
3806 /* Device Status */
3807 if (hw->mac.type == e1000_ich8lan) {
3808 reg = er32(STATUS);
3809 reg &= ~(1 << 31);
3810 ew32(STATUS, reg);
3811 }
Jesse Brandeburga80483d2010-03-05 02:21:44 +00003812
Bruce Allane921eb12012-11-28 09:28:37 +00003813 /* work-around descriptor data corruption issue during nfs v2 udp
Jesse Brandeburga80483d2010-03-05 02:21:44 +00003814 * traffic, just disable the nfs filtering capability
3815 */
3816 reg = er32(RFCTL);
3817 reg |= (E1000_RFCTL_NFSW_DIS | E1000_RFCTL_NFSR_DIS);
Matthew Vickf6bd5572012-04-25 08:01:05 +00003818
Bruce Allane921eb12012-11-28 09:28:37 +00003819 /* Disable IPv6 extension header parsing because some malformed
Matthew Vickf6bd5572012-04-25 08:01:05 +00003820 * IPv6 headers can hang the Rx.
3821 */
3822 if (hw->mac.type == e1000_ich8lan)
3823 reg |= (E1000_RFCTL_IPV6_EX_DIS | E1000_RFCTL_NEW_IPV6_EXT_DIS);
Jesse Brandeburga80483d2010-03-05 02:21:44 +00003824 ew32(RFCTL, reg);
Bruce Allan94fb8482013-01-23 09:00:03 +00003825
3826 /* Enable ECC on Lynxpoint */
3827 if (hw->mac.type == e1000_pch_lpt) {
3828 reg = er32(PBECCSTS);
3829 reg |= E1000_PBECCSTS_ECC_ENABLE;
3830 ew32(PBECCSTS, reg);
3831
3832 reg = er32(CTRL);
3833 reg |= E1000_CTRL_MEHE;
3834 ew32(CTRL, reg);
3835 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07003836}
3837
3838/**
3839 * e1000_setup_link_ich8lan - Setup flow control and link settings
3840 * @hw: pointer to the HW structure
3841 *
3842 * Determines which flow control settings to use, then configures flow
3843 * control. Calls the appropriate media-specific link configuration
3844 * function. Assuming the adapter has a valid link partner, a valid link
3845 * should be established. Assumes the hardware has previously been reset
3846 * and the transmitter and receiver are not enabled.
3847 **/
3848static s32 e1000_setup_link_ich8lan(struct e1000_hw *hw)
3849{
Auke Kokbc7f75f2007-09-17 12:30:59 -07003850 s32 ret_val;
3851
Bruce Allan44abd5c2012-02-22 09:02:37 +00003852 if (hw->phy.ops.check_reset_block(hw))
Auke Kokbc7f75f2007-09-17 12:30:59 -07003853 return 0;
3854
Bruce Allane921eb12012-11-28 09:28:37 +00003855 /* ICH parts do not have a word in the NVM to determine
Auke Kokbc7f75f2007-09-17 12:30:59 -07003856 * the default flow control setting, so we explicitly
3857 * set it to full.
3858 */
Bruce Allan37289d92009-06-02 11:29:37 +00003859 if (hw->fc.requested_mode == e1000_fc_default) {
3860 /* Workaround h/w hang when Tx flow control enabled */
3861 if (hw->mac.type == e1000_pchlan)
3862 hw->fc.requested_mode = e1000_fc_rx_pause;
3863 else
3864 hw->fc.requested_mode = e1000_fc_full;
3865 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07003866
Bruce Allane921eb12012-11-28 09:28:37 +00003867 /* Save off the requested flow control mode for use later. Depending
Bruce Allan5c48ef3e22008-11-21 16:57:36 -08003868 * on the link partner's capabilities, we may or may not use this mode.
3869 */
3870 hw->fc.current_mode = hw->fc.requested_mode;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003871
Bruce Allan17e813e2013-02-20 04:06:01 +00003872 e_dbg("After fix-ups FlowControl is now = %x\n", hw->fc.current_mode);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003873
3874 /* Continue to configure the copper link. */
Bruce Allan944ce012012-02-22 09:02:42 +00003875 ret_val = hw->mac.ops.setup_physical_interface(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003876 if (ret_val)
3877 return ret_val;
3878
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003879 ew32(FCTTV, hw->fc.pause_time);
Bruce Allana4f58f52009-06-02 11:29:18 +00003880 if ((hw->phy.type == e1000_phy_82578) ||
Bruce Alland3738bb2010-06-16 13:27:28 +00003881 (hw->phy.type == e1000_phy_82579) ||
Bruce Allan2fbe4522012-04-19 03:21:47 +00003882 (hw->phy.type == e1000_phy_i217) ||
Bruce Allana4f58f52009-06-02 11:29:18 +00003883 (hw->phy.type == e1000_phy_82577)) {
Bruce Allana3055952010-05-10 15:02:12 +00003884 ew32(FCRTV_PCH, hw->fc.refresh_time);
3885
Bruce Allan482fed82011-01-06 14:29:49 +00003886 ret_val = e1e_wphy(hw, PHY_REG(BM_PORT_CTRL_PAGE, 27),
3887 hw->fc.pause_time);
Bruce Allana4f58f52009-06-02 11:29:18 +00003888 if (ret_val)
3889 return ret_val;
3890 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07003891
3892 return e1000e_set_fc_watermarks(hw);
3893}
3894
3895/**
3896 * e1000_setup_copper_link_ich8lan - Configure MAC/PHY interface
3897 * @hw: pointer to the HW structure
3898 *
3899 * Configures the kumeran interface to the PHY to wait the appropriate time
3900 * when polling the PHY, then call the generic setup_copper_link to finish
3901 * configuring the copper link.
3902 **/
3903static s32 e1000_setup_copper_link_ich8lan(struct e1000_hw *hw)
3904{
3905 u32 ctrl;
3906 s32 ret_val;
3907 u16 reg_data;
3908
3909 ctrl = er32(CTRL);
3910 ctrl |= E1000_CTRL_SLU;
3911 ctrl &= ~(E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX);
3912 ew32(CTRL, ctrl);
3913
Bruce Allane921eb12012-11-28 09:28:37 +00003914 /* Set the mac to wait the maximum time between each iteration
Auke Kokbc7f75f2007-09-17 12:30:59 -07003915 * and increase the max iterations when polling the phy;
Bruce Allanad680762008-03-28 09:15:03 -07003916 * this fixes erroneous timeouts at 10Mbps.
3917 */
Bruce Allan07818952009-12-08 07:28:01 +00003918 ret_val = e1000e_write_kmrn_reg(hw, E1000_KMRNCTRLSTA_TIMEOUTS, 0xFFFF);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003919 if (ret_val)
3920 return ret_val;
Bruce Allan07818952009-12-08 07:28:01 +00003921 ret_val = e1000e_read_kmrn_reg(hw, E1000_KMRNCTRLSTA_INBAND_PARAM,
Bruce Allanf0ff4392013-02-20 04:05:39 +00003922 &reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003923 if (ret_val)
3924 return ret_val;
3925 reg_data |= 0x3F;
Bruce Allan07818952009-12-08 07:28:01 +00003926 ret_val = e1000e_write_kmrn_reg(hw, E1000_KMRNCTRLSTA_INBAND_PARAM,
Bruce Allanf0ff4392013-02-20 04:05:39 +00003927 reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003928 if (ret_val)
3929 return ret_val;
3930
Bruce Allana4f58f52009-06-02 11:29:18 +00003931 switch (hw->phy.type) {
3932 case e1000_phy_igp_3:
Auke Kokbc7f75f2007-09-17 12:30:59 -07003933 ret_val = e1000e_copper_link_setup_igp(hw);
3934 if (ret_val)
3935 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003936 break;
3937 case e1000_phy_bm:
3938 case e1000_phy_82578:
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003939 ret_val = e1000e_copper_link_setup_m88(hw);
3940 if (ret_val)
3941 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003942 break;
3943 case e1000_phy_82577:
Bruce Alland3738bb2010-06-16 13:27:28 +00003944 case e1000_phy_82579:
Bruce Allana4f58f52009-06-02 11:29:18 +00003945 ret_val = e1000_copper_link_setup_82577(hw);
3946 if (ret_val)
3947 return ret_val;
3948 break;
3949 case e1000_phy_ife:
Bruce Allan482fed82011-01-06 14:29:49 +00003950 ret_val = e1e_rphy(hw, IFE_PHY_MDIX_CONTROL, &reg_data);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003951 if (ret_val)
3952 return ret_val;
3953
3954 reg_data &= ~IFE_PMC_AUTO_MDIX;
3955
3956 switch (hw->phy.mdix) {
3957 case 1:
3958 reg_data &= ~IFE_PMC_FORCE_MDIX;
3959 break;
3960 case 2:
3961 reg_data |= IFE_PMC_FORCE_MDIX;
3962 break;
3963 case 0:
3964 default:
3965 reg_data |= IFE_PMC_AUTO_MDIX;
3966 break;
3967 }
Bruce Allan482fed82011-01-06 14:29:49 +00003968 ret_val = e1e_wphy(hw, IFE_PHY_MDIX_CONTROL, reg_data);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003969 if (ret_val)
3970 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003971 break;
3972 default:
3973 break;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003974 }
Bruce Allan3fa8293632012-02-08 02:55:40 +00003975
Auke Kokbc7f75f2007-09-17 12:30:59 -07003976 return e1000e_setup_copper_link(hw);
3977}
3978
3979/**
Bruce Allanea8179a2013-03-06 09:02:47 +00003980 * e1000_setup_copper_link_pch_lpt - Configure MAC/PHY interface
3981 * @hw: pointer to the HW structure
3982 *
3983 * Calls the PHY specific link setup function and then calls the
3984 * generic setup_copper_link to finish configuring the link for
3985 * Lynxpoint PCH devices
3986 **/
3987static s32 e1000_setup_copper_link_pch_lpt(struct e1000_hw *hw)
3988{
3989 u32 ctrl;
3990 s32 ret_val;
3991
3992 ctrl = er32(CTRL);
3993 ctrl |= E1000_CTRL_SLU;
3994 ctrl &= ~(E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX);
3995 ew32(CTRL, ctrl);
3996
3997 ret_val = e1000_copper_link_setup_82577(hw);
3998 if (ret_val)
3999 return ret_val;
4000
4001 return e1000e_setup_copper_link(hw);
4002}
4003
4004/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07004005 * e1000_get_link_up_info_ich8lan - Get current link speed and duplex
4006 * @hw: pointer to the HW structure
4007 * @speed: pointer to store current link speed
4008 * @duplex: pointer to store the current link duplex
4009 *
Bruce Allanad680762008-03-28 09:15:03 -07004010 * Calls the generic get_speed_and_duplex to retrieve the current link
Auke Kokbc7f75f2007-09-17 12:30:59 -07004011 * information and then calls the Kumeran lock loss workaround for links at
4012 * gigabit speeds.
4013 **/
4014static s32 e1000_get_link_up_info_ich8lan(struct e1000_hw *hw, u16 *speed,
4015 u16 *duplex)
4016{
4017 s32 ret_val;
4018
4019 ret_val = e1000e_get_speed_and_duplex_copper(hw, speed, duplex);
4020 if (ret_val)
4021 return ret_val;
4022
4023 if ((hw->mac.type == e1000_ich8lan) &&
Bruce Allane5fe2542013-02-20 04:06:27 +00004024 (hw->phy.type == e1000_phy_igp_3) && (*speed == SPEED_1000)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07004025 ret_val = e1000_kmrn_lock_loss_workaround_ich8lan(hw);
4026 }
4027
4028 return ret_val;
4029}
4030
4031/**
4032 * e1000_kmrn_lock_loss_workaround_ich8lan - Kumeran workaround
4033 * @hw: pointer to the HW structure
4034 *
4035 * Work-around for 82566 Kumeran PCS lock loss:
4036 * On link status change (i.e. PCI reset, speed change) and link is up and
4037 * speed is gigabit-
4038 * 0) if workaround is optionally disabled do nothing
4039 * 1) wait 1ms for Kumeran link to come up
4040 * 2) check Kumeran Diagnostic register PCS lock loss bit
4041 * 3) if not set the link is locked (all is good), otherwise...
4042 * 4) reset the PHY
4043 * 5) repeat up to 10 times
4044 * Note: this is only called for IGP3 copper when speed is 1gb.
4045 **/
4046static s32 e1000_kmrn_lock_loss_workaround_ich8lan(struct e1000_hw *hw)
4047{
4048 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
4049 u32 phy_ctrl;
4050 s32 ret_val;
4051 u16 i, data;
4052 bool link;
4053
4054 if (!dev_spec->kmrn_lock_loss_workaround_enabled)
4055 return 0;
4056
Bruce Allane921eb12012-11-28 09:28:37 +00004057 /* Make sure link is up before proceeding. If not just return.
Auke Kokbc7f75f2007-09-17 12:30:59 -07004058 * Attempting this while link is negotiating fouled up link
Bruce Allanad680762008-03-28 09:15:03 -07004059 * stability
4060 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004061 ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link);
4062 if (!link)
4063 return 0;
4064
4065 for (i = 0; i < 10; i++) {
4066 /* read once to clear */
4067 ret_val = e1e_rphy(hw, IGP3_KMRN_DIAG, &data);
4068 if (ret_val)
4069 return ret_val;
4070 /* and again to get new status */
4071 ret_val = e1e_rphy(hw, IGP3_KMRN_DIAG, &data);
4072 if (ret_val)
4073 return ret_val;
4074
4075 /* check for PCS lock */
4076 if (!(data & IGP3_KMRN_DIAG_PCS_LOCK_LOSS))
4077 return 0;
4078
4079 /* Issue PHY reset */
4080 e1000_phy_hw_reset(hw);
4081 mdelay(5);
4082 }
4083 /* Disable GigE link negotiation */
4084 phy_ctrl = er32(PHY_CTRL);
4085 phy_ctrl |= (E1000_PHY_CTRL_GBE_DISABLE |
4086 E1000_PHY_CTRL_NOND0A_GBE_DISABLE);
4087 ew32(PHY_CTRL, phy_ctrl);
4088
Bruce Allane921eb12012-11-28 09:28:37 +00004089 /* Call gig speed drop workaround on Gig disable before accessing
Bruce Allanad680762008-03-28 09:15:03 -07004090 * any PHY registers
4091 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004092 e1000e_gig_downshift_workaround_ich8lan(hw);
4093
4094 /* unable to acquire PCS lock */
4095 return -E1000_ERR_PHY;
4096}
4097
4098/**
Bruce Allan6e3c8072012-02-22 09:02:47 +00004099 * e1000e_set_kmrn_lock_loss_workaround_ich8lan - Set Kumeran workaround state
Auke Kokbc7f75f2007-09-17 12:30:59 -07004100 * @hw: pointer to the HW structure
Auke Kok489815c2008-02-21 15:11:07 -08004101 * @state: boolean value used to set the current Kumeran workaround state
Auke Kokbc7f75f2007-09-17 12:30:59 -07004102 *
Bruce Allan564ea9b2009-11-20 23:26:44 +00004103 * If ICH8, set the current Kumeran workaround state (enabled - true
4104 * /disabled - false).
Auke Kokbc7f75f2007-09-17 12:30:59 -07004105 **/
4106void e1000e_set_kmrn_lock_loss_workaround_ich8lan(struct e1000_hw *hw,
Bruce Allan17e813e2013-02-20 04:06:01 +00004107 bool state)
Auke Kokbc7f75f2007-09-17 12:30:59 -07004108{
4109 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
4110
4111 if (hw->mac.type != e1000_ich8lan) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00004112 e_dbg("Workaround applies to ICH8 only.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07004113 return;
4114 }
4115
4116 dev_spec->kmrn_lock_loss_workaround_enabled = state;
4117}
4118
4119/**
4120 * e1000_ipg3_phy_powerdown_workaround_ich8lan - Power down workaround on D3
4121 * @hw: pointer to the HW structure
4122 *
4123 * Workaround for 82566 power-down on D3 entry:
4124 * 1) disable gigabit link
4125 * 2) write VR power-down enable
4126 * 3) read it back
4127 * Continue if successful, else issue LCD reset and repeat
4128 **/
4129void e1000e_igp3_phy_powerdown_workaround_ich8lan(struct e1000_hw *hw)
4130{
4131 u32 reg;
4132 u16 data;
Bruce Allane80bd1d2013-05-01 01:19:46 +00004133 u8 retry = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004134
4135 if (hw->phy.type != e1000_phy_igp_3)
4136 return;
4137
4138 /* Try the workaround twice (if needed) */
4139 do {
4140 /* Disable link */
4141 reg = er32(PHY_CTRL);
4142 reg |= (E1000_PHY_CTRL_GBE_DISABLE |
4143 E1000_PHY_CTRL_NOND0A_GBE_DISABLE);
4144 ew32(PHY_CTRL, reg);
4145
Bruce Allane921eb12012-11-28 09:28:37 +00004146 /* Call gig speed drop workaround on Gig disable before
Bruce Allanad680762008-03-28 09:15:03 -07004147 * accessing any PHY registers
4148 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004149 if (hw->mac.type == e1000_ich8lan)
4150 e1000e_gig_downshift_workaround_ich8lan(hw);
4151
4152 /* Write VR power-down enable */
4153 e1e_rphy(hw, IGP3_VR_CTRL, &data);
4154 data &= ~IGP3_VR_CTRL_DEV_POWERDOWN_MODE_MASK;
4155 e1e_wphy(hw, IGP3_VR_CTRL, data | IGP3_VR_CTRL_MODE_SHUTDOWN);
4156
4157 /* Read it back and test */
4158 e1e_rphy(hw, IGP3_VR_CTRL, &data);
4159 data &= IGP3_VR_CTRL_DEV_POWERDOWN_MODE_MASK;
4160 if ((data == IGP3_VR_CTRL_MODE_SHUTDOWN) || retry)
4161 break;
4162
4163 /* Issue PHY reset and repeat at most one more time */
4164 reg = er32(CTRL);
4165 ew32(CTRL, reg | E1000_CTRL_PHY_RST);
4166 retry++;
4167 } while (retry);
4168}
4169
4170/**
4171 * e1000e_gig_downshift_workaround_ich8lan - WoL from S5 stops working
4172 * @hw: pointer to the HW structure
4173 *
4174 * Steps to take when dropping from 1Gb/s (eg. link cable removal (LSC),
Auke Kok489815c2008-02-21 15:11:07 -08004175 * LPLU, Gig disable, MDIC PHY reset):
Auke Kokbc7f75f2007-09-17 12:30:59 -07004176 * 1) Set Kumeran Near-end loopback
4177 * 2) Clear Kumeran Near-end loopback
Bruce Allan462d5992011-09-30 08:07:11 +00004178 * Should only be called for ICH8[m] devices with any 1G Phy.
Auke Kokbc7f75f2007-09-17 12:30:59 -07004179 **/
4180void e1000e_gig_downshift_workaround_ich8lan(struct e1000_hw *hw)
4181{
4182 s32 ret_val;
4183 u16 reg_data;
4184
Bruce Allan462d5992011-09-30 08:07:11 +00004185 if ((hw->mac.type != e1000_ich8lan) || (hw->phy.type == e1000_phy_ife))
Auke Kokbc7f75f2007-09-17 12:30:59 -07004186 return;
4187
4188 ret_val = e1000e_read_kmrn_reg(hw, E1000_KMRNCTRLSTA_DIAG_OFFSET,
Bruce Allan17e813e2013-02-20 04:06:01 +00004189 &reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004190 if (ret_val)
4191 return;
4192 reg_data |= E1000_KMRNCTRLSTA_DIAG_NELPBK;
4193 ret_val = e1000e_write_kmrn_reg(hw, E1000_KMRNCTRLSTA_DIAG_OFFSET,
Bruce Allan17e813e2013-02-20 04:06:01 +00004194 reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004195 if (ret_val)
4196 return;
4197 reg_data &= ~E1000_KMRNCTRLSTA_DIAG_NELPBK;
Bruce Allan7dbbe5d2013-01-05 05:08:31 +00004198 e1000e_write_kmrn_reg(hw, E1000_KMRNCTRLSTA_DIAG_OFFSET, reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004199}
4200
4201/**
Bruce Allan99730e42011-05-13 07:19:48 +00004202 * e1000_suspend_workarounds_ich8lan - workarounds needed during S0->Sx
Bruce Allan97ac8ca2008-04-29 09:16:05 -07004203 * @hw: pointer to the HW structure
4204 *
4205 * During S0 to Sx transition, it is possible the link remains at gig
4206 * instead of negotiating to a lower speed. Before going to Sx, set
Bruce Allanc077a902011-12-16 00:46:38 +00004207 * 'Gig Disable' to force link speed negotiation to a lower speed based on
4208 * the LPLU setting in the NVM or custom setting. For PCH and newer parts,
4209 * the OEM bits PHY register (LED, GbE disable and LPLU configurations) also
4210 * needs to be written.
Bruce Allan2fbe4522012-04-19 03:21:47 +00004211 * Parts that support (and are linked to a partner which support) EEE in
4212 * 100Mbps should disable LPLU since 100Mbps w/ EEE requires less power
4213 * than 10Mbps w/o EEE.
Bruce Allan97ac8ca2008-04-29 09:16:05 -07004214 **/
Bruce Allan99730e42011-05-13 07:19:48 +00004215void e1000_suspend_workarounds_ich8lan(struct e1000_hw *hw)
Bruce Allan97ac8ca2008-04-29 09:16:05 -07004216{
Bruce Allan2fbe4522012-04-19 03:21:47 +00004217 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07004218 u32 phy_ctrl;
Bruce Allan8395ae82010-09-22 17:15:08 +00004219 s32 ret_val;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07004220
Bruce Allan17f085d2010-06-17 18:59:48 +00004221 phy_ctrl = er32(PHY_CTRL);
Bruce Allanc077a902011-12-16 00:46:38 +00004222 phy_ctrl |= E1000_PHY_CTRL_GBE_DISABLE;
Bruce Allane08f6262013-02-20 03:06:34 +00004223
Bruce Allan2fbe4522012-04-19 03:21:47 +00004224 if (hw->phy.type == e1000_phy_i217) {
Bruce Allane08f6262013-02-20 03:06:34 +00004225 u16 phy_reg, device_id = hw->adapter->pdev->device;
4226
4227 if ((device_id == E1000_DEV_ID_PCH_LPTLP_I218_LM) ||
Bruce Allan91a3d822013-06-29 01:15:16 +00004228 (device_id == E1000_DEV_ID_PCH_LPTLP_I218_V) ||
4229 (device_id == E1000_DEV_ID_PCH_I218_LM3) ||
4230 (device_id == E1000_DEV_ID_PCH_I218_V3)) {
Bruce Allane08f6262013-02-20 03:06:34 +00004231 u32 fextnvm6 = er32(FEXTNVM6);
4232
4233 ew32(FEXTNVM6, fextnvm6 & ~E1000_FEXTNVM6_REQ_PLL_CLK);
4234 }
Bruce Allan2fbe4522012-04-19 03:21:47 +00004235
4236 ret_val = hw->phy.ops.acquire(hw);
4237 if (ret_val)
4238 goto out;
4239
4240 if (!dev_spec->eee_disable) {
4241 u16 eee_advert;
4242
Bruce Allan4ddc48a2012-12-05 06:25:58 +00004243 ret_val =
4244 e1000_read_emi_reg_locked(hw,
4245 I217_EEE_ADVERTISEMENT,
4246 &eee_advert);
Bruce Allan2fbe4522012-04-19 03:21:47 +00004247 if (ret_val)
4248 goto release;
Bruce Allan2fbe4522012-04-19 03:21:47 +00004249
Bruce Allane921eb12012-11-28 09:28:37 +00004250 /* Disable LPLU if both link partners support 100BaseT
Bruce Allan2fbe4522012-04-19 03:21:47 +00004251 * EEE and 100Full is advertised on both ends of the
4252 * link.
4253 */
Bruce Allan3d4d5752012-12-05 06:26:08 +00004254 if ((eee_advert & I82579_EEE_100_SUPPORTED) &&
Bruce Allan2fbe4522012-04-19 03:21:47 +00004255 (dev_spec->eee_lp_ability &
Bruce Allan3d4d5752012-12-05 06:26:08 +00004256 I82579_EEE_100_SUPPORTED) &&
Bruce Allan2fbe4522012-04-19 03:21:47 +00004257 (hw->phy.autoneg_advertised & ADVERTISE_100_FULL))
4258 phy_ctrl &= ~(E1000_PHY_CTRL_D0A_LPLU |
4259 E1000_PHY_CTRL_NOND0A_LPLU);
4260 }
4261
Bruce Allane921eb12012-11-28 09:28:37 +00004262 /* For i217 Intel Rapid Start Technology support,
Bruce Allan2fbe4522012-04-19 03:21:47 +00004263 * when the system is going into Sx and no manageability engine
4264 * is present, the driver must configure proxy to reset only on
4265 * power good. LPI (Low Power Idle) state must also reset only
4266 * on power good, as well as the MTA (Multicast table array).
4267 * The SMBus release must also be disabled on LCD reset.
4268 */
4269 if (!(er32(FWSM) & E1000_ICH_FWSM_FW_VALID)) {
Bruce Allan2fbe4522012-04-19 03:21:47 +00004270 /* Enable proxy to reset only on power good. */
4271 e1e_rphy_locked(hw, I217_PROXY_CTRL, &phy_reg);
4272 phy_reg |= I217_PROXY_CTRL_AUTO_DISABLE;
4273 e1e_wphy_locked(hw, I217_PROXY_CTRL, phy_reg);
4274
Bruce Allane921eb12012-11-28 09:28:37 +00004275 /* Set bit enable LPI (EEE) to reset only on
Bruce Allan2fbe4522012-04-19 03:21:47 +00004276 * power good.
4277 */
4278 e1e_rphy_locked(hw, I217_SxCTRL, &phy_reg);
Bruce Allan6d7407b2012-05-10 02:51:17 +00004279 phy_reg |= I217_SxCTRL_ENABLE_LPI_RESET;
Bruce Allan2fbe4522012-04-19 03:21:47 +00004280 e1e_wphy_locked(hw, I217_SxCTRL, phy_reg);
4281
4282 /* Disable the SMB release on LCD reset. */
4283 e1e_rphy_locked(hw, I217_MEMPWR, &phy_reg);
Bruce Allan6d7407b2012-05-10 02:51:17 +00004284 phy_reg &= ~I217_MEMPWR_DISABLE_SMB_RELEASE;
Bruce Allan2fbe4522012-04-19 03:21:47 +00004285 e1e_wphy_locked(hw, I217_MEMPWR, phy_reg);
4286 }
4287
Bruce Allane921eb12012-11-28 09:28:37 +00004288 /* Enable MTA to reset for Intel Rapid Start Technology
Bruce Allan2fbe4522012-04-19 03:21:47 +00004289 * Support
4290 */
4291 e1e_rphy_locked(hw, I217_CGFREG, &phy_reg);
Bruce Allan6d7407b2012-05-10 02:51:17 +00004292 phy_reg |= I217_CGFREG_ENABLE_MTA_RESET;
Bruce Allan2fbe4522012-04-19 03:21:47 +00004293 e1e_wphy_locked(hw, I217_CGFREG, phy_reg);
4294
4295release:
4296 hw->phy.ops.release(hw);
4297 }
4298out:
Bruce Allan17f085d2010-06-17 18:59:48 +00004299 ew32(PHY_CTRL, phy_ctrl);
Bruce Allana4f58f52009-06-02 11:29:18 +00004300
Bruce Allan462d5992011-09-30 08:07:11 +00004301 if (hw->mac.type == e1000_ich8lan)
4302 e1000e_gig_downshift_workaround_ich8lan(hw);
4303
Bruce Allan8395ae82010-09-22 17:15:08 +00004304 if (hw->mac.type >= e1000_pchlan) {
Bruce Allance54afd2010-11-24 06:01:41 +00004305 e1000_oem_bits_config_ich8lan(hw, false);
Bruce Allan92fe1732012-04-12 06:27:03 +00004306
4307 /* Reset PHY to activate OEM bits on 82577/8 */
4308 if (hw->mac.type == e1000_pchlan)
4309 e1000e_phy_hw_reset_generic(hw);
4310
Bruce Allan8395ae82010-09-22 17:15:08 +00004311 ret_val = hw->phy.ops.acquire(hw);
4312 if (ret_val)
4313 return;
4314 e1000_write_smbus_addr(hw);
4315 hw->phy.ops.release(hw);
4316 }
Bruce Allan97ac8ca2008-04-29 09:16:05 -07004317}
4318
4319/**
Bruce Allan99730e42011-05-13 07:19:48 +00004320 * e1000_resume_workarounds_pchlan - workarounds needed during Sx->S0
4321 * @hw: pointer to the HW structure
4322 *
4323 * During Sx to S0 transitions on non-managed devices or managed devices
4324 * on which PHY resets are not blocked, if the PHY registers cannot be
4325 * accessed properly by the s/w toggle the LANPHYPC value to power cycle
4326 * the PHY.
Bruce Allan2fbe4522012-04-19 03:21:47 +00004327 * On i217, setup Intel Rapid Start Technology.
Bruce Allan99730e42011-05-13 07:19:48 +00004328 **/
4329void e1000_resume_workarounds_pchlan(struct e1000_hw *hw)
4330{
Bruce Allan90b82982011-12-16 00:46:33 +00004331 s32 ret_val;
Bruce Allan99730e42011-05-13 07:19:48 +00004332
Bruce Allancb17aab2012-04-13 03:16:22 +00004333 if (hw->mac.type < e1000_pch2lan)
Bruce Allan99730e42011-05-13 07:19:48 +00004334 return;
4335
Bruce Allancb17aab2012-04-13 03:16:22 +00004336 ret_val = e1000_init_phy_workarounds_pchlan(hw);
Bruce Allan90b82982011-12-16 00:46:33 +00004337 if (ret_val) {
Bruce Allancb17aab2012-04-13 03:16:22 +00004338 e_dbg("Failed to init PHY flow ret_val=%d\n", ret_val);
Bruce Allan99730e42011-05-13 07:19:48 +00004339 return;
4340 }
Bruce Allan2fbe4522012-04-19 03:21:47 +00004341
Bruce Allane921eb12012-11-28 09:28:37 +00004342 /* For i217 Intel Rapid Start Technology support when the system
Bruce Allan2fbe4522012-04-19 03:21:47 +00004343 * is transitioning from Sx and no manageability engine is present
4344 * configure SMBus to restore on reset, disable proxy, and enable
4345 * the reset on MTA (Multicast table array).
4346 */
4347 if (hw->phy.type == e1000_phy_i217) {
4348 u16 phy_reg;
4349
4350 ret_val = hw->phy.ops.acquire(hw);
4351 if (ret_val) {
4352 e_dbg("Failed to setup iRST\n");
4353 return;
4354 }
4355
4356 if (!(er32(FWSM) & E1000_ICH_FWSM_FW_VALID)) {
Bruce Allane921eb12012-11-28 09:28:37 +00004357 /* Restore clear on SMB if no manageability engine
Bruce Allan2fbe4522012-04-19 03:21:47 +00004358 * is present
4359 */
4360 ret_val = e1e_rphy_locked(hw, I217_MEMPWR, &phy_reg);
4361 if (ret_val)
4362 goto release;
Bruce Allan6d7407b2012-05-10 02:51:17 +00004363 phy_reg |= I217_MEMPWR_DISABLE_SMB_RELEASE;
Bruce Allan2fbe4522012-04-19 03:21:47 +00004364 e1e_wphy_locked(hw, I217_MEMPWR, phy_reg);
4365
4366 /* Disable Proxy */
4367 e1e_wphy_locked(hw, I217_PROXY_CTRL, 0);
4368 }
4369 /* Enable reset on MTA */
4370 ret_val = e1e_rphy_locked(hw, I217_CGFREG, &phy_reg);
4371 if (ret_val)
4372 goto release;
Bruce Allan6d7407b2012-05-10 02:51:17 +00004373 phy_reg &= ~I217_CGFREG_ENABLE_MTA_RESET;
Bruce Allan2fbe4522012-04-19 03:21:47 +00004374 e1e_wphy_locked(hw, I217_CGFREG, phy_reg);
4375release:
4376 if (ret_val)
4377 e_dbg("Error %d in resume workarounds\n", ret_val);
4378 hw->phy.ops.release(hw);
4379 }
Bruce Allan99730e42011-05-13 07:19:48 +00004380}
4381
4382/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07004383 * e1000_cleanup_led_ich8lan - Restore the default LED operation
4384 * @hw: pointer to the HW structure
4385 *
4386 * Return the LED back to the default configuration.
4387 **/
4388static s32 e1000_cleanup_led_ich8lan(struct e1000_hw *hw)
4389{
4390 if (hw->phy.type == e1000_phy_ife)
4391 return e1e_wphy(hw, IFE_PHY_SPECIAL_CONTROL_LED, 0);
4392
4393 ew32(LEDCTL, hw->mac.ledctl_default);
4394 return 0;
4395}
4396
4397/**
Auke Kok489815c2008-02-21 15:11:07 -08004398 * e1000_led_on_ich8lan - Turn LEDs on
Auke Kokbc7f75f2007-09-17 12:30:59 -07004399 * @hw: pointer to the HW structure
4400 *
Auke Kok489815c2008-02-21 15:11:07 -08004401 * Turn on the LEDs.
Auke Kokbc7f75f2007-09-17 12:30:59 -07004402 **/
4403static s32 e1000_led_on_ich8lan(struct e1000_hw *hw)
4404{
4405 if (hw->phy.type == e1000_phy_ife)
4406 return e1e_wphy(hw, IFE_PHY_SPECIAL_CONTROL_LED,
4407 (IFE_PSCL_PROBE_MODE | IFE_PSCL_PROBE_LEDS_ON));
4408
4409 ew32(LEDCTL, hw->mac.ledctl_mode2);
4410 return 0;
4411}
4412
4413/**
Auke Kok489815c2008-02-21 15:11:07 -08004414 * e1000_led_off_ich8lan - Turn LEDs off
Auke Kokbc7f75f2007-09-17 12:30:59 -07004415 * @hw: pointer to the HW structure
4416 *
Auke Kok489815c2008-02-21 15:11:07 -08004417 * Turn off the LEDs.
Auke Kokbc7f75f2007-09-17 12:30:59 -07004418 **/
4419static s32 e1000_led_off_ich8lan(struct e1000_hw *hw)
4420{
4421 if (hw->phy.type == e1000_phy_ife)
4422 return e1e_wphy(hw, IFE_PHY_SPECIAL_CONTROL_LED,
Bruce Allan482fed82011-01-06 14:29:49 +00004423 (IFE_PSCL_PROBE_MODE |
4424 IFE_PSCL_PROBE_LEDS_OFF));
Auke Kokbc7f75f2007-09-17 12:30:59 -07004425
4426 ew32(LEDCTL, hw->mac.ledctl_mode1);
4427 return 0;
4428}
4429
4430/**
Bruce Allana4f58f52009-06-02 11:29:18 +00004431 * e1000_setup_led_pchlan - Configures SW controllable LED
4432 * @hw: pointer to the HW structure
4433 *
4434 * This prepares the SW controllable LED for use.
4435 **/
4436static s32 e1000_setup_led_pchlan(struct e1000_hw *hw)
4437{
Bruce Allan482fed82011-01-06 14:29:49 +00004438 return e1e_wphy(hw, HV_LED_CONFIG, (u16)hw->mac.ledctl_mode1);
Bruce Allana4f58f52009-06-02 11:29:18 +00004439}
4440
4441/**
4442 * e1000_cleanup_led_pchlan - Restore the default LED operation
4443 * @hw: pointer to the HW structure
4444 *
4445 * Return the LED back to the default configuration.
4446 **/
4447static s32 e1000_cleanup_led_pchlan(struct e1000_hw *hw)
4448{
Bruce Allan482fed82011-01-06 14:29:49 +00004449 return e1e_wphy(hw, HV_LED_CONFIG, (u16)hw->mac.ledctl_default);
Bruce Allana4f58f52009-06-02 11:29:18 +00004450}
4451
4452/**
4453 * e1000_led_on_pchlan - Turn LEDs on
4454 * @hw: pointer to the HW structure
4455 *
4456 * Turn on the LEDs.
4457 **/
4458static s32 e1000_led_on_pchlan(struct e1000_hw *hw)
4459{
4460 u16 data = (u16)hw->mac.ledctl_mode2;
4461 u32 i, led;
4462
Bruce Allane921eb12012-11-28 09:28:37 +00004463 /* If no link, then turn LED on by setting the invert bit
Bruce Allana4f58f52009-06-02 11:29:18 +00004464 * for each LED that's mode is "link_up" in ledctl_mode2.
4465 */
4466 if (!(er32(STATUS) & E1000_STATUS_LU)) {
4467 for (i = 0; i < 3; i++) {
4468 led = (data >> (i * 5)) & E1000_PHY_LED0_MASK;
4469 if ((led & E1000_PHY_LED0_MODE_MASK) !=
4470 E1000_LEDCTL_MODE_LINK_UP)
4471 continue;
4472 if (led & E1000_PHY_LED0_IVRT)
4473 data &= ~(E1000_PHY_LED0_IVRT << (i * 5));
4474 else
4475 data |= (E1000_PHY_LED0_IVRT << (i * 5));
4476 }
4477 }
4478
Bruce Allan482fed82011-01-06 14:29:49 +00004479 return e1e_wphy(hw, HV_LED_CONFIG, data);
Bruce Allana4f58f52009-06-02 11:29:18 +00004480}
4481
4482/**
4483 * e1000_led_off_pchlan - Turn LEDs off
4484 * @hw: pointer to the HW structure
4485 *
4486 * Turn off the LEDs.
4487 **/
4488static s32 e1000_led_off_pchlan(struct e1000_hw *hw)
4489{
4490 u16 data = (u16)hw->mac.ledctl_mode1;
4491 u32 i, led;
4492
Bruce Allane921eb12012-11-28 09:28:37 +00004493 /* If no link, then turn LED off by clearing the invert bit
Bruce Allana4f58f52009-06-02 11:29:18 +00004494 * for each LED that's mode is "link_up" in ledctl_mode1.
4495 */
4496 if (!(er32(STATUS) & E1000_STATUS_LU)) {
4497 for (i = 0; i < 3; i++) {
4498 led = (data >> (i * 5)) & E1000_PHY_LED0_MASK;
4499 if ((led & E1000_PHY_LED0_MODE_MASK) !=
4500 E1000_LEDCTL_MODE_LINK_UP)
4501 continue;
4502 if (led & E1000_PHY_LED0_IVRT)
4503 data &= ~(E1000_PHY_LED0_IVRT << (i * 5));
4504 else
4505 data |= (E1000_PHY_LED0_IVRT << (i * 5));
4506 }
4507 }
4508
Bruce Allan482fed82011-01-06 14:29:49 +00004509 return e1e_wphy(hw, HV_LED_CONFIG, data);
Bruce Allana4f58f52009-06-02 11:29:18 +00004510}
4511
4512/**
Bruce Allane98cac42010-05-10 15:02:32 +00004513 * e1000_get_cfg_done_ich8lan - Read config done bit after Full or PHY reset
Bruce Allanf4187b52008-08-26 18:36:50 -07004514 * @hw: pointer to the HW structure
4515 *
Bruce Allane98cac42010-05-10 15:02:32 +00004516 * Read appropriate register for the config done bit for completion status
4517 * and configure the PHY through s/w for EEPROM-less parts.
4518 *
4519 * NOTE: some silicon which is EEPROM-less will fail trying to read the
4520 * config done bit, so only an error is logged and continues. If we were
4521 * to return with error, EEPROM-less silicon would not be able to be reset
4522 * or change link.
Bruce Allanf4187b52008-08-26 18:36:50 -07004523 **/
4524static s32 e1000_get_cfg_done_ich8lan(struct e1000_hw *hw)
4525{
Bruce Allane98cac42010-05-10 15:02:32 +00004526 s32 ret_val = 0;
Bruce Allanf4187b52008-08-26 18:36:50 -07004527 u32 bank = 0;
Bruce Allane98cac42010-05-10 15:02:32 +00004528 u32 status;
Bruce Allanfc0c7762009-07-01 13:27:55 +00004529
Bruce Allanfe908492013-01-05 08:06:14 +00004530 e1000e_get_cfg_done_generic(hw);
Bruce Allanf4187b52008-08-26 18:36:50 -07004531
Bruce Allane98cac42010-05-10 15:02:32 +00004532 /* Wait for indication from h/w that it has completed basic config */
4533 if (hw->mac.type >= e1000_ich10lan) {
4534 e1000_lan_init_done_ich8lan(hw);
4535 } else {
4536 ret_val = e1000e_get_auto_rd_done(hw);
4537 if (ret_val) {
Bruce Allane921eb12012-11-28 09:28:37 +00004538 /* When auto config read does not complete, do not
Bruce Allane98cac42010-05-10 15:02:32 +00004539 * return with an error. This can happen in situations
4540 * where there is no eeprom and prevents getting link.
4541 */
4542 e_dbg("Auto Read Done did not complete\n");
4543 ret_val = 0;
4544 }
4545 }
4546
4547 /* Clear PHY Reset Asserted bit */
4548 status = er32(STATUS);
4549 if (status & E1000_STATUS_PHYRA)
4550 ew32(STATUS, status & ~E1000_STATUS_PHYRA);
4551 else
4552 e_dbg("PHY Reset Asserted not set - needs delay\n");
4553
Bruce Allanf4187b52008-08-26 18:36:50 -07004554 /* If EEPROM is not marked present, init the IGP 3 PHY manually */
Bruce Allane98cac42010-05-10 15:02:32 +00004555 if (hw->mac.type <= e1000_ich9lan) {
Bruce Allan04499ec2012-04-13 00:08:31 +00004556 if (!(er32(EECD) & E1000_EECD_PRES) &&
Bruce Allanf4187b52008-08-26 18:36:50 -07004557 (hw->phy.type == e1000_phy_igp_3)) {
4558 e1000e_phy_init_script_igp3(hw);
4559 }
4560 } else {
4561 if (e1000_valid_nvm_bank_detect_ich8lan(hw, &bank)) {
4562 /* Maybe we should do a basic PHY config */
Bruce Allan3bb99fe2009-11-20 23:25:07 +00004563 e_dbg("EEPROM not present\n");
Bruce Allane98cac42010-05-10 15:02:32 +00004564 ret_val = -E1000_ERR_CONFIG;
Bruce Allanf4187b52008-08-26 18:36:50 -07004565 }
4566 }
4567
Bruce Allane98cac42010-05-10 15:02:32 +00004568 return ret_val;
Bruce Allanf4187b52008-08-26 18:36:50 -07004569}
4570
4571/**
Bruce Allan17f208d2009-12-01 15:47:22 +00004572 * e1000_power_down_phy_copper_ich8lan - Remove link during PHY power down
4573 * @hw: pointer to the HW structure
4574 *
4575 * In the case of a PHY power down to save power, or to turn off link during a
4576 * driver unload, or wake on lan is not enabled, remove the link.
4577 **/
4578static void e1000_power_down_phy_copper_ich8lan(struct e1000_hw *hw)
4579{
4580 /* If the management interface is not enabled, then power down */
4581 if (!(hw->mac.ops.check_mng_mode(hw) ||
4582 hw->phy.ops.check_reset_block(hw)))
4583 e1000_power_down_phy_copper(hw);
Bruce Allan17f208d2009-12-01 15:47:22 +00004584}
4585
4586/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07004587 * e1000_clear_hw_cntrs_ich8lan - Clear statistical counters
4588 * @hw: pointer to the HW structure
4589 *
4590 * Clears hardware counters specific to the silicon family and calls
4591 * clear_hw_cntrs_generic to clear all general purpose counters.
4592 **/
4593static void e1000_clear_hw_cntrs_ich8lan(struct e1000_hw *hw)
4594{
Bruce Allana4f58f52009-06-02 11:29:18 +00004595 u16 phy_data;
Bruce Allan2b6b1682011-05-13 07:20:09 +00004596 s32 ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004597
4598 e1000e_clear_hw_cntrs_base(hw);
4599
Bruce Allan99673d92009-11-20 23:27:21 +00004600 er32(ALGNERRC);
4601 er32(RXERRC);
4602 er32(TNCRS);
4603 er32(CEXTERR);
4604 er32(TSCTC);
4605 er32(TSCTFC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004606
Bruce Allan99673d92009-11-20 23:27:21 +00004607 er32(MGTPRC);
4608 er32(MGTPDC);
4609 er32(MGTPTC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004610
Bruce Allan99673d92009-11-20 23:27:21 +00004611 er32(IAC);
4612 er32(ICRXOC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004613
Bruce Allana4f58f52009-06-02 11:29:18 +00004614 /* Clear PHY statistics registers */
4615 if ((hw->phy.type == e1000_phy_82578) ||
Bruce Alland3738bb2010-06-16 13:27:28 +00004616 (hw->phy.type == e1000_phy_82579) ||
Bruce Allan2fbe4522012-04-19 03:21:47 +00004617 (hw->phy.type == e1000_phy_i217) ||
Bruce Allana4f58f52009-06-02 11:29:18 +00004618 (hw->phy.type == e1000_phy_82577)) {
Bruce Allan2b6b1682011-05-13 07:20:09 +00004619 ret_val = hw->phy.ops.acquire(hw);
4620 if (ret_val)
4621 return;
4622 ret_val = hw->phy.ops.set_page(hw,
4623 HV_STATS_PAGE << IGP_PAGE_SHIFT);
4624 if (ret_val)
4625 goto release;
4626 hw->phy.ops.read_reg_page(hw, HV_SCC_UPPER, &phy_data);
4627 hw->phy.ops.read_reg_page(hw, HV_SCC_LOWER, &phy_data);
4628 hw->phy.ops.read_reg_page(hw, HV_ECOL_UPPER, &phy_data);
4629 hw->phy.ops.read_reg_page(hw, HV_ECOL_LOWER, &phy_data);
4630 hw->phy.ops.read_reg_page(hw, HV_MCC_UPPER, &phy_data);
4631 hw->phy.ops.read_reg_page(hw, HV_MCC_LOWER, &phy_data);
4632 hw->phy.ops.read_reg_page(hw, HV_LATECOL_UPPER, &phy_data);
4633 hw->phy.ops.read_reg_page(hw, HV_LATECOL_LOWER, &phy_data);
4634 hw->phy.ops.read_reg_page(hw, HV_COLC_UPPER, &phy_data);
4635 hw->phy.ops.read_reg_page(hw, HV_COLC_LOWER, &phy_data);
4636 hw->phy.ops.read_reg_page(hw, HV_DC_UPPER, &phy_data);
4637 hw->phy.ops.read_reg_page(hw, HV_DC_LOWER, &phy_data);
4638 hw->phy.ops.read_reg_page(hw, HV_TNCRS_UPPER, &phy_data);
4639 hw->phy.ops.read_reg_page(hw, HV_TNCRS_LOWER, &phy_data);
4640release:
4641 hw->phy.ops.release(hw);
Bruce Allana4f58f52009-06-02 11:29:18 +00004642 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07004643}
4644
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00004645static const struct e1000_mac_operations ich8_mac_ops = {
Bruce Allaneb7700d2010-06-16 13:27:05 +00004646 /* check_mng_mode dependent on mac type */
Bruce Allan7d3cabb2009-07-01 13:29:08 +00004647 .check_for_link = e1000_check_for_copper_link_ich8lan,
Bruce Allana4f58f52009-06-02 11:29:18 +00004648 /* cleanup_led dependent on mac type */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004649 .clear_hw_cntrs = e1000_clear_hw_cntrs_ich8lan,
4650 .get_bus_info = e1000_get_bus_info_ich8lan,
Bruce Allanf4d2dd42010-01-13 02:05:18 +00004651 .set_lan_id = e1000_set_lan_id_single_port,
Auke Kokbc7f75f2007-09-17 12:30:59 -07004652 .get_link_up_info = e1000_get_link_up_info_ich8lan,
Bruce Allana4f58f52009-06-02 11:29:18 +00004653 /* led_on dependent on mac type */
4654 /* led_off dependent on mac type */
Jeff Kirshere2de3eb2008-03-28 09:15:11 -07004655 .update_mc_addr_list = e1000e_update_mc_addr_list_generic,
Auke Kokbc7f75f2007-09-17 12:30:59 -07004656 .reset_hw = e1000_reset_hw_ich8lan,
4657 .init_hw = e1000_init_hw_ich8lan,
4658 .setup_link = e1000_setup_link_ich8lan,
Bruce Allan55c5f552013-01-12 07:28:24 +00004659 .setup_physical_interface = e1000_setup_copper_link_ich8lan,
Bruce Allana4f58f52009-06-02 11:29:18 +00004660 /* id_led_init dependent on mac type */
Bruce Allan57cde762012-02-22 09:02:58 +00004661 .config_collision_dist = e1000e_config_collision_dist_generic,
Bruce Allan69e1e012012-04-14 03:28:50 +00004662 .rar_set = e1000e_rar_set_generic,
Auke Kokbc7f75f2007-09-17 12:30:59 -07004663};
4664
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00004665static const struct e1000_phy_operations ich8_phy_ops = {
Bruce Allan94d81862009-11-20 23:25:26 +00004666 .acquire = e1000_acquire_swflag_ich8lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07004667 .check_reset_block = e1000_check_reset_block_ich8lan,
Bruce Allan94d81862009-11-20 23:25:26 +00004668 .commit = NULL,
Bruce Allanf4187b52008-08-26 18:36:50 -07004669 .get_cfg_done = e1000_get_cfg_done_ich8lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07004670 .get_cable_length = e1000e_get_cable_length_igp_2,
Bruce Allan94d81862009-11-20 23:25:26 +00004671 .read_reg = e1000e_read_phy_reg_igp,
4672 .release = e1000_release_swflag_ich8lan,
4673 .reset = e1000_phy_hw_reset_ich8lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07004674 .set_d0_lplu_state = e1000_set_d0_lplu_state_ich8lan,
4675 .set_d3_lplu_state = e1000_set_d3_lplu_state_ich8lan,
Bruce Allan94d81862009-11-20 23:25:26 +00004676 .write_reg = e1000e_write_phy_reg_igp,
Auke Kokbc7f75f2007-09-17 12:30:59 -07004677};
4678
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00004679static const struct e1000_nvm_operations ich8_nvm_ops = {
Bruce Allan94d81862009-11-20 23:25:26 +00004680 .acquire = e1000_acquire_nvm_ich8lan,
Bruce Allan55c5f552013-01-12 07:28:24 +00004681 .read = e1000_read_nvm_ich8lan,
Bruce Allan94d81862009-11-20 23:25:26 +00004682 .release = e1000_release_nvm_ich8lan,
Bruce Allane85e3632012-02-22 09:03:14 +00004683 .reload = e1000e_reload_nvm_generic,
Bruce Allan94d81862009-11-20 23:25:26 +00004684 .update = e1000_update_nvm_checksum_ich8lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07004685 .valid_led_default = e1000_valid_led_default_ich8lan,
Bruce Allan94d81862009-11-20 23:25:26 +00004686 .validate = e1000_validate_nvm_checksum_ich8lan,
4687 .write = e1000_write_nvm_ich8lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07004688};
4689
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00004690const struct e1000_info e1000_ich8_info = {
Auke Kokbc7f75f2007-09-17 12:30:59 -07004691 .mac = e1000_ich8lan,
4692 .flags = FLAG_HAS_WOL
Bruce Allan97ac8ca2008-04-29 09:16:05 -07004693 | FLAG_IS_ICH
Auke Kokbc7f75f2007-09-17 12:30:59 -07004694 | FLAG_HAS_CTRLEXT_ON_LOAD
4695 | FLAG_HAS_AMT
4696 | FLAG_HAS_FLASH
4697 | FLAG_APME_IN_WUC,
4698 .pba = 8,
Bruce Allan2adc55c2009-06-02 11:28:58 +00004699 .max_hw_frame_size = ETH_FRAME_LEN + ETH_FCS_LEN,
Jeff Kirsher69e3fd82008-04-02 13:48:18 -07004700 .get_variants = e1000_get_variants_ich8lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07004701 .mac_ops = &ich8_mac_ops,
4702 .phy_ops = &ich8_phy_ops,
4703 .nvm_ops = &ich8_nvm_ops,
4704};
4705
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00004706const struct e1000_info e1000_ich9_info = {
Auke Kokbc7f75f2007-09-17 12:30:59 -07004707 .mac = e1000_ich9lan,
4708 .flags = FLAG_HAS_JUMBO_FRAMES
Bruce Allan97ac8ca2008-04-29 09:16:05 -07004709 | FLAG_IS_ICH
Auke Kokbc7f75f2007-09-17 12:30:59 -07004710 | FLAG_HAS_WOL
Auke Kokbc7f75f2007-09-17 12:30:59 -07004711 | FLAG_HAS_CTRLEXT_ON_LOAD
4712 | FLAG_HAS_AMT
Auke Kokbc7f75f2007-09-17 12:30:59 -07004713 | FLAG_HAS_FLASH
4714 | FLAG_APME_IN_WUC,
Bruce Allan7f1557e2011-12-16 00:46:43 +00004715 .pba = 18,
Bruce Allan2adc55c2009-06-02 11:28:58 +00004716 .max_hw_frame_size = DEFAULT_JUMBO,
Jeff Kirsher69e3fd82008-04-02 13:48:18 -07004717 .get_variants = e1000_get_variants_ich8lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07004718 .mac_ops = &ich8_mac_ops,
4719 .phy_ops = &ich8_phy_ops,
4720 .nvm_ops = &ich8_nvm_ops,
4721};
4722
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00004723const struct e1000_info e1000_ich10_info = {
Bruce Allanf4187b52008-08-26 18:36:50 -07004724 .mac = e1000_ich10lan,
4725 .flags = FLAG_HAS_JUMBO_FRAMES
4726 | FLAG_IS_ICH
4727 | FLAG_HAS_WOL
Bruce Allanf4187b52008-08-26 18:36:50 -07004728 | FLAG_HAS_CTRLEXT_ON_LOAD
4729 | FLAG_HAS_AMT
Bruce Allanf4187b52008-08-26 18:36:50 -07004730 | FLAG_HAS_FLASH
4731 | FLAG_APME_IN_WUC,
Bruce Allan7f1557e2011-12-16 00:46:43 +00004732 .pba = 18,
Bruce Allan2adc55c2009-06-02 11:28:58 +00004733 .max_hw_frame_size = DEFAULT_JUMBO,
Bruce Allanf4187b52008-08-26 18:36:50 -07004734 .get_variants = e1000_get_variants_ich8lan,
4735 .mac_ops = &ich8_mac_ops,
4736 .phy_ops = &ich8_phy_ops,
4737 .nvm_ops = &ich8_nvm_ops,
4738};
Bruce Allana4f58f52009-06-02 11:29:18 +00004739
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00004740const struct e1000_info e1000_pch_info = {
Bruce Allana4f58f52009-06-02 11:29:18 +00004741 .mac = e1000_pchlan,
4742 .flags = FLAG_IS_ICH
4743 | FLAG_HAS_WOL
Bruce Allana4f58f52009-06-02 11:29:18 +00004744 | FLAG_HAS_CTRLEXT_ON_LOAD
4745 | FLAG_HAS_AMT
4746 | FLAG_HAS_FLASH
4747 | FLAG_HAS_JUMBO_FRAMES
Bruce Allan38eb3942009-11-19 12:34:20 +00004748 | FLAG_DISABLE_FC_PAUSE_TIME /* errata */
Bruce Allana4f58f52009-06-02 11:29:18 +00004749 | FLAG_APME_IN_WUC,
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004750 .flags2 = FLAG2_HAS_PHY_STATS,
Bruce Allana4f58f52009-06-02 11:29:18 +00004751 .pba = 26,
4752 .max_hw_frame_size = 4096,
4753 .get_variants = e1000_get_variants_ich8lan,
4754 .mac_ops = &ich8_mac_ops,
4755 .phy_ops = &ich8_phy_ops,
4756 .nvm_ops = &ich8_nvm_ops,
4757};
Bruce Alland3738bb2010-06-16 13:27:28 +00004758
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00004759const struct e1000_info e1000_pch2_info = {
Bruce Alland3738bb2010-06-16 13:27:28 +00004760 .mac = e1000_pch2lan,
4761 .flags = FLAG_IS_ICH
4762 | FLAG_HAS_WOL
Bruce Allanb67e1912012-12-27 08:32:33 +00004763 | FLAG_HAS_HW_TIMESTAMP
Bruce Alland3738bb2010-06-16 13:27:28 +00004764 | FLAG_HAS_CTRLEXT_ON_LOAD
4765 | FLAG_HAS_AMT
4766 | FLAG_HAS_FLASH
4767 | FLAG_HAS_JUMBO_FRAMES
4768 | FLAG_APME_IN_WUC,
Bruce Allane52997f2010-06-16 13:27:49 +00004769 .flags2 = FLAG2_HAS_PHY_STATS
4770 | FLAG2_HAS_EEE,
Bruce Allan828bac82010-09-29 21:39:37 +00004771 .pba = 26,
Bruce Allanc3d2dbf2013-01-09 01:20:46 +00004772 .max_hw_frame_size = 9018,
Bruce Alland3738bb2010-06-16 13:27:28 +00004773 .get_variants = e1000_get_variants_ich8lan,
4774 .mac_ops = &ich8_mac_ops,
4775 .phy_ops = &ich8_phy_ops,
4776 .nvm_ops = &ich8_nvm_ops,
4777};
Bruce Allan2fbe4522012-04-19 03:21:47 +00004778
4779const struct e1000_info e1000_pch_lpt_info = {
4780 .mac = e1000_pch_lpt,
4781 .flags = FLAG_IS_ICH
4782 | FLAG_HAS_WOL
Bruce Allanb67e1912012-12-27 08:32:33 +00004783 | FLAG_HAS_HW_TIMESTAMP
Bruce Allan2fbe4522012-04-19 03:21:47 +00004784 | FLAG_HAS_CTRLEXT_ON_LOAD
4785 | FLAG_HAS_AMT
4786 | FLAG_HAS_FLASH
4787 | FLAG_HAS_JUMBO_FRAMES
4788 | FLAG_APME_IN_WUC,
4789 .flags2 = FLAG2_HAS_PHY_STATS
4790 | FLAG2_HAS_EEE,
4791 .pba = 26,
Bruce Allaned1a4262013-01-04 09:51:36 +00004792 .max_hw_frame_size = 9018,
Bruce Allan2fbe4522012-04-19 03:21:47 +00004793 .get_variants = e1000_get_variants_ich8lan,
4794 .mac_ops = &ich8_mac_ops,
4795 .phy_ops = &ich8_phy_ops,
4796 .nvm_ops = &ich8_nvm_ops,
4797};