blob: e8587b94b13803ac6072f6521e488c3cd3e95370 [file] [log] [blame]
David Ertmane78b80b2014-02-04 01:56:06 +00001/* Intel PRO/1000 Linux driver
2 * Copyright(c) 1999 - 2014 Intel Corporation.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * The full GNU General Public License is included in this distribution in
14 * the file called "COPYING".
15 *
16 * Contact Information:
17 * Linux NICS <linux.nics@intel.com>
18 * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
19 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
20 */
Auke Kokbc7f75f2007-09-17 12:30:59 -070021
Bruce Allane921eb12012-11-28 09:28:37 +000022/* 82562G 10/100 Network Connection
Auke Kokbc7f75f2007-09-17 12:30:59 -070023 * 82562G-2 10/100 Network Connection
24 * 82562GT 10/100 Network Connection
25 * 82562GT-2 10/100 Network Connection
26 * 82562V 10/100 Network Connection
27 * 82562V-2 10/100 Network Connection
28 * 82566DC-2 Gigabit Network Connection
29 * 82566DC Gigabit Network Connection
30 * 82566DM-2 Gigabit Network Connection
31 * 82566DM Gigabit Network Connection
32 * 82566MC Gigabit Network Connection
33 * 82566MM Gigabit Network Connection
Bruce Allan97ac8ca2008-04-29 09:16:05 -070034 * 82567LM Gigabit Network Connection
35 * 82567LF Gigabit Network Connection
Bruce Allan16059272008-11-21 16:51:06 -080036 * 82567V Gigabit Network Connection
Bruce Allan97ac8ca2008-04-29 09:16:05 -070037 * 82567LM-2 Gigabit Network Connection
38 * 82567LF-2 Gigabit Network Connection
39 * 82567V-2 Gigabit Network Connection
Bruce Allanf4187b52008-08-26 18:36:50 -070040 * 82567LF-3 Gigabit Network Connection
41 * 82567LM-3 Gigabit Network Connection
Bruce Allan2f15f9d2008-08-26 18:36:36 -070042 * 82567LM-4 Gigabit Network Connection
Bruce Allana4f58f52009-06-02 11:29:18 +000043 * 82577LM Gigabit Network Connection
44 * 82577LC Gigabit Network Connection
45 * 82578DM Gigabit Network Connection
46 * 82578DC Gigabit Network Connection
Bruce Alland3738bb2010-06-16 13:27:28 +000047 * 82579LM Gigabit Network Connection
48 * 82579V Gigabit Network Connection
David Ertman3b70d4f2014-02-05 01:09:54 +000049 * Ethernet Connection I217-LM
50 * Ethernet Connection I217-V
51 * Ethernet Connection I218-V
52 * Ethernet Connection I218-LM
53 * Ethernet Connection (2) I218-LM
54 * Ethernet Connection (2) I218-V
55 * Ethernet Connection (3) I218-LM
56 * Ethernet Connection (3) I218-V
Auke Kokbc7f75f2007-09-17 12:30:59 -070057 */
58
Auke Kokbc7f75f2007-09-17 12:30:59 -070059#include "e1000.h"
60
Auke Kokbc7f75f2007-09-17 12:30:59 -070061/* ICH GbE Flash Hardware Sequencing Flash Status Register bit breakdown */
62/* Offset 04h HSFSTS */
63union ich8_hws_flash_status {
64 struct ich8_hsfsts {
Bruce Allan362e20c2013-02-20 04:05:45 +000065 u16 flcdone:1; /* bit 0 Flash Cycle Done */
66 u16 flcerr:1; /* bit 1 Flash Cycle Error */
67 u16 dael:1; /* bit 2 Direct Access error Log */
68 u16 berasesz:2; /* bit 4:3 Sector Erase Size */
69 u16 flcinprog:1; /* bit 5 flash cycle in Progress */
70 u16 reserved1:2; /* bit 13:6 Reserved */
71 u16 reserved2:6; /* bit 13:6 Reserved */
72 u16 fldesvalid:1; /* bit 14 Flash Descriptor Valid */
73 u16 flockdn:1; /* bit 15 Flash Config Lock-Down */
Auke Kokbc7f75f2007-09-17 12:30:59 -070074 } hsf_status;
75 u16 regval;
76};
77
78/* ICH GbE Flash Hardware Sequencing Flash control Register bit breakdown */
79/* Offset 06h FLCTL */
80union ich8_hws_flash_ctrl {
81 struct ich8_hsflctl {
Bruce Allan362e20c2013-02-20 04:05:45 +000082 u16 flcgo:1; /* 0 Flash Cycle Go */
83 u16 flcycle:2; /* 2:1 Flash Cycle */
84 u16 reserved:5; /* 7:3 Reserved */
85 u16 fldbcount:2; /* 9:8 Flash Data Byte Count */
86 u16 flockdn:6; /* 15:10 Reserved */
Auke Kokbc7f75f2007-09-17 12:30:59 -070087 } hsf_ctrl;
88 u16 regval;
89};
90
91/* ICH Flash Region Access Permissions */
92union ich8_hws_flash_regacc {
93 struct ich8_flracc {
Bruce Allan362e20c2013-02-20 04:05:45 +000094 u32 grra:8; /* 0:7 GbE region Read Access */
95 u32 grwa:8; /* 8:15 GbE region Write Access */
96 u32 gmrag:8; /* 23:16 GbE Master Read Access Grant */
97 u32 gmwag:8; /* 31:24 GbE Master Write Access Grant */
Auke Kokbc7f75f2007-09-17 12:30:59 -070098 } hsf_flregacc;
99 u16 regval;
100};
101
Bruce Allan4a770352008-10-01 17:18:35 -0700102/* ICH Flash Protected Region */
103union ich8_flash_protected_range {
104 struct ich8_pr {
Bruce Allane80bd1d2013-05-01 01:19:46 +0000105 u32 base:13; /* 0:12 Protected Range Base */
106 u32 reserved1:2; /* 13:14 Reserved */
107 u32 rpe:1; /* 15 Read Protection Enable */
108 u32 limit:13; /* 16:28 Protected Range Limit */
109 u32 reserved2:2; /* 29:30 Reserved */
110 u32 wpe:1; /* 31 Write Protection Enable */
Bruce Allan4a770352008-10-01 17:18:35 -0700111 } range;
112 u32 regval;
113};
114
Auke Kokbc7f75f2007-09-17 12:30:59 -0700115static void e1000_clear_hw_cntrs_ich8lan(struct e1000_hw *hw);
116static void e1000_initialize_hw_bits_ich8lan(struct e1000_hw *hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700117static s32 e1000_erase_flash_bank_ich8lan(struct e1000_hw *hw, u32 bank);
118static s32 e1000_retry_write_flash_byte_ich8lan(struct e1000_hw *hw,
119 u32 offset, u8 byte);
Bruce Allanf4187b52008-08-26 18:36:50 -0700120static s32 e1000_read_flash_byte_ich8lan(struct e1000_hw *hw, u32 offset,
121 u8 *data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700122static s32 e1000_read_flash_word_ich8lan(struct e1000_hw *hw, u32 offset,
123 u16 *data);
124static s32 e1000_read_flash_data_ich8lan(struct e1000_hw *hw, u32 offset,
125 u8 size, u16 *data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700126static s32 e1000_kmrn_lock_loss_workaround_ich8lan(struct e1000_hw *hw);
Bruce Allana4f58f52009-06-02 11:29:18 +0000127static s32 e1000_cleanup_led_ich8lan(struct e1000_hw *hw);
128static s32 e1000_led_on_ich8lan(struct e1000_hw *hw);
129static s32 e1000_led_off_ich8lan(struct e1000_hw *hw);
130static s32 e1000_id_led_init_pchlan(struct e1000_hw *hw);
131static s32 e1000_setup_led_pchlan(struct e1000_hw *hw);
132static s32 e1000_cleanup_led_pchlan(struct e1000_hw *hw);
133static s32 e1000_led_on_pchlan(struct e1000_hw *hw);
134static s32 e1000_led_off_pchlan(struct e1000_hw *hw);
Bruce Allanfa2ce132009-10-26 11:23:25 +0000135static s32 e1000_set_lplu_state_pchlan(struct e1000_hw *hw, bool active);
Bruce Allan17f208d2009-12-01 15:47:22 +0000136static void e1000_power_down_phy_copper_ich8lan(struct e1000_hw *hw);
Bruce Allanf523d212009-10-29 13:45:45 +0000137static void e1000_lan_init_done_ich8lan(struct e1000_hw *hw);
Bruce Allan1f96012d2013-01-05 03:06:54 +0000138static s32 e1000_k1_gig_workaround_hv(struct e1000_hw *hw, bool link);
Bruce Allanfddaa1a2010-01-13 01:52:49 +0000139static s32 e1000_set_mdio_slow_mode_hv(struct e1000_hw *hw);
Bruce Allaneb7700d2010-06-16 13:27:05 +0000140static bool e1000_check_mng_mode_ich8lan(struct e1000_hw *hw);
141static bool e1000_check_mng_mode_pchlan(struct e1000_hw *hw);
Bruce Allan69e1e012012-04-14 03:28:50 +0000142static void e1000_rar_set_pch2lan(struct e1000_hw *hw, u8 *addr, u32 index);
Bruce Allan2fbe4522012-04-19 03:21:47 +0000143static void e1000_rar_set_pch_lpt(struct e1000_hw *hw, u8 *addr, u32 index);
Bruce Allan831bd2e2010-09-22 17:16:18 +0000144static s32 e1000_k1_workaround_lv(struct e1000_hw *hw);
Bruce Allan605c82b2010-09-22 17:17:01 +0000145static void e1000_gate_hw_phy_config_ich8lan(struct e1000_hw *hw, bool gate);
David Ertman74f350e2014-02-22 03:15:17 +0000146static s32 e1000_disable_ulp_lpt_lp(struct e1000_hw *hw, bool force);
Bruce Allanea8179a2013-03-06 09:02:47 +0000147static s32 e1000_setup_copper_link_pch_lpt(struct e1000_hw *hw);
David Ertman74f350e2014-02-22 03:15:17 +0000148static s32 e1000_oem_bits_config_ich8lan(struct e1000_hw *hw, bool d0_state);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700149
150static inline u16 __er16flash(struct e1000_hw *hw, unsigned long reg)
151{
152 return readw(hw->flash_address + reg);
153}
154
155static inline u32 __er32flash(struct e1000_hw *hw, unsigned long reg)
156{
157 return readl(hw->flash_address + reg);
158}
159
160static inline void __ew16flash(struct e1000_hw *hw, unsigned long reg, u16 val)
161{
162 writew(val, hw->flash_address + reg);
163}
164
165static inline void __ew32flash(struct e1000_hw *hw, unsigned long reg, u32 val)
166{
167 writel(val, hw->flash_address + reg);
168}
169
170#define er16flash(reg) __er16flash(hw, (reg))
171#define er32flash(reg) __er32flash(hw, (reg))
Bruce Allan0e15df42012-01-31 06:37:11 +0000172#define ew16flash(reg, val) __ew16flash(hw, (reg), (val))
173#define ew32flash(reg, val) __ew32flash(hw, (reg), (val))
Auke Kokbc7f75f2007-09-17 12:30:59 -0700174
Bruce Allancb17aab2012-04-13 03:16:22 +0000175/**
176 * e1000_phy_is_accessible_pchlan - Check if able to access PHY registers
177 * @hw: pointer to the HW structure
178 *
179 * Test access to the PHY registers by reading the PHY ID registers. If
180 * the PHY ID is already known (e.g. resume path) compare it with known ID,
181 * otherwise assume the read PHY ID is correct if it is valid.
182 *
183 * Assumes the sw/fw/hw semaphore is already acquired.
184 **/
185static bool e1000_phy_is_accessible_pchlan(struct e1000_hw *hw)
Bruce Allan99730e42011-05-13 07:19:48 +0000186{
Bruce Allana52359b2012-07-14 04:23:58 +0000187 u16 phy_reg = 0;
188 u32 phy_id = 0;
189 s32 ret_val;
190 u16 retry_count;
Bruce Allan16b095a2013-06-29 07:42:39 +0000191 u32 mac_reg = 0;
Bruce Allan99730e42011-05-13 07:19:48 +0000192
Bruce Allana52359b2012-07-14 04:23:58 +0000193 for (retry_count = 0; retry_count < 2; retry_count++) {
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000194 ret_val = e1e_rphy_locked(hw, MII_PHYSID1, &phy_reg);
Bruce Allana52359b2012-07-14 04:23:58 +0000195 if (ret_val || (phy_reg == 0xFFFF))
196 continue;
197 phy_id = (u32)(phy_reg << 16);
198
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000199 ret_val = e1e_rphy_locked(hw, MII_PHYSID2, &phy_reg);
Bruce Allana52359b2012-07-14 04:23:58 +0000200 if (ret_val || (phy_reg == 0xFFFF)) {
201 phy_id = 0;
202 continue;
203 }
204 phy_id |= (u32)(phy_reg & PHY_REVISION_MASK);
205 break;
206 }
Bruce Allan62bc8132012-03-20 03:47:57 +0000207
Bruce Allancb17aab2012-04-13 03:16:22 +0000208 if (hw->phy.id) {
209 if (hw->phy.id == phy_id)
Bruce Allan16b095a2013-06-29 07:42:39 +0000210 goto out;
Bruce Allana52359b2012-07-14 04:23:58 +0000211 } else if (phy_id) {
212 hw->phy.id = phy_id;
213 hw->phy.revision = (u32)(phy_reg & ~PHY_REVISION_MASK);
Bruce Allan16b095a2013-06-29 07:42:39 +0000214 goto out;
Bruce Allancb17aab2012-04-13 03:16:22 +0000215 }
216
Bruce Allane921eb12012-11-28 09:28:37 +0000217 /* In case the PHY needs to be in mdio slow mode,
Bruce Allana52359b2012-07-14 04:23:58 +0000218 * set slow mode and try to get the PHY id again.
219 */
220 hw->phy.ops.release(hw);
221 ret_val = e1000_set_mdio_slow_mode_hv(hw);
222 if (!ret_val)
223 ret_val = e1000e_get_phy_id(hw);
224 hw->phy.ops.acquire(hw);
225
Bruce Allan16b095a2013-06-29 07:42:39 +0000226 if (ret_val)
227 return false;
228out:
229 if (hw->mac.type == e1000_pch_lpt) {
230 /* Unforce SMBus mode in PHY */
231 e1e_rphy_locked(hw, CV_SMB_CTRL, &phy_reg);
232 phy_reg &= ~CV_SMB_CTRL_FORCE_SMBUS;
233 e1e_wphy_locked(hw, CV_SMB_CTRL, phy_reg);
234
235 /* Unforce SMBus mode in MAC */
236 mac_reg = er32(CTRL_EXT);
237 mac_reg &= ~E1000_CTRL_EXT_FORCE_SMBUS;
238 ew32(CTRL_EXT, mac_reg);
239 }
240
241 return true;
Bruce Allancb17aab2012-04-13 03:16:22 +0000242}
243
244/**
David Ertman74f350e2014-02-22 03:15:17 +0000245 * e1000_toggle_lanphypc_pch_lpt - toggle the LANPHYPC pin value
246 * @hw: pointer to the HW structure
247 *
248 * Toggling the LANPHYPC pin value fully power-cycles the PHY and is
249 * used to reset the PHY to a quiescent state when necessary.
250 **/
251static void e1000_toggle_lanphypc_pch_lpt(struct e1000_hw *hw)
252{
253 u32 mac_reg;
254
255 /* Set Phy Config Counter to 50msec */
256 mac_reg = er32(FEXTNVM3);
257 mac_reg &= ~E1000_FEXTNVM3_PHY_CFG_COUNTER_MASK;
258 mac_reg |= E1000_FEXTNVM3_PHY_CFG_COUNTER_50MSEC;
259 ew32(FEXTNVM3, mac_reg);
260
261 /* Toggle LANPHYPC Value bit */
262 mac_reg = er32(CTRL);
263 mac_reg |= E1000_CTRL_LANPHYPC_OVERRIDE;
264 mac_reg &= ~E1000_CTRL_LANPHYPC_VALUE;
265 ew32(CTRL, mac_reg);
266 e1e_flush();
267 usleep_range(10, 20);
268 mac_reg &= ~E1000_CTRL_LANPHYPC_OVERRIDE;
269 ew32(CTRL, mac_reg);
270 e1e_flush();
271
272 if (hw->mac.type < e1000_pch_lpt) {
273 msleep(50);
274 } else {
275 u16 count = 20;
276
277 do {
278 usleep_range(5000, 10000);
279 } while (!(er32(CTRL_EXT) & E1000_CTRL_EXT_LPCD) && count--);
280
281 msleep(30);
282 }
283}
284
285/**
Bruce Allancb17aab2012-04-13 03:16:22 +0000286 * e1000_init_phy_workarounds_pchlan - PHY initialization workarounds
287 * @hw: pointer to the HW structure
288 *
289 * Workarounds/flow necessary for PHY initialization during driver load
290 * and resume paths.
291 **/
292static s32 e1000_init_phy_workarounds_pchlan(struct e1000_hw *hw)
293{
David Ertmanf7235ef2014-01-23 06:29:13 +0000294 struct e1000_adapter *adapter = hw->adapter;
Bruce Allancb17aab2012-04-13 03:16:22 +0000295 u32 mac_reg, fwsm = er32(FWSM);
296 s32 ret_val;
297
Bruce Allan6e928b72012-12-12 04:45:51 +0000298 /* Gate automatic PHY configuration by hardware on managed and
299 * non-managed 82579 and newer adapters.
300 */
301 e1000_gate_hw_phy_config_ich8lan(hw, true);
302
David Ertman74f350e2014-02-22 03:15:17 +0000303 /* It is not possible to be certain of the current state of ULP
304 * so forcibly disable it.
305 */
306 hw->dev_spec.ich8lan.ulp_state = e1000_ulp_state_unknown;
307 e1000_disable_ulp_lpt_lp(hw, true);
308
Bruce Allancb17aab2012-04-13 03:16:22 +0000309 ret_val = hw->phy.ops.acquire(hw);
310 if (ret_val) {
311 e_dbg("Failed to initialize PHY flow\n");
Bruce Allan6e928b72012-12-12 04:45:51 +0000312 goto out;
Bruce Allancb17aab2012-04-13 03:16:22 +0000313 }
314
Bruce Allane921eb12012-11-28 09:28:37 +0000315 /* The MAC-PHY interconnect may be in SMBus mode. If the PHY is
Bruce Allancb17aab2012-04-13 03:16:22 +0000316 * inaccessible and resetting the PHY is not blocked, toggle the
317 * LANPHYPC Value bit to force the interconnect to PCIe mode.
318 */
319 switch (hw->mac.type) {
Bruce Allan2fbe4522012-04-19 03:21:47 +0000320 case e1000_pch_lpt:
321 if (e1000_phy_is_accessible_pchlan(hw))
322 break;
323
Bruce Allane921eb12012-11-28 09:28:37 +0000324 /* Before toggling LANPHYPC, see if PHY is accessible by
Bruce Allan2fbe4522012-04-19 03:21:47 +0000325 * forcing MAC to SMBus mode first.
326 */
327 mac_reg = er32(CTRL_EXT);
328 mac_reg |= E1000_CTRL_EXT_FORCE_SMBUS;
329 ew32(CTRL_EXT, mac_reg);
330
Bruce Allan16b095a2013-06-29 07:42:39 +0000331 /* Wait 50 milliseconds for MAC to finish any retries
332 * that it might be trying to perform from previous
333 * attempts to acknowledge any phy read requests.
334 */
335 msleep(50);
336
Bruce Allan2fbe4522012-04-19 03:21:47 +0000337 /* fall-through */
Bruce Allancb17aab2012-04-13 03:16:22 +0000338 case e1000_pch2lan:
Bruce Allan16b095a2013-06-29 07:42:39 +0000339 if (e1000_phy_is_accessible_pchlan(hw))
Bruce Allancb17aab2012-04-13 03:16:22 +0000340 break;
341
342 /* fall-through */
343 case e1000_pchlan:
344 if ((hw->mac.type == e1000_pchlan) &&
345 (fwsm & E1000_ICH_FWSM_FW_VALID))
346 break;
347
348 if (hw->phy.ops.check_reset_block(hw)) {
349 e_dbg("Required LANPHYPC toggle blocked by ME\n");
Bruce Allan16b095a2013-06-29 07:42:39 +0000350 ret_val = -E1000_ERR_PHY;
Bruce Allancb17aab2012-04-13 03:16:22 +0000351 break;
352 }
353
Bruce Allancb17aab2012-04-13 03:16:22 +0000354 /* Toggle LANPHYPC Value bit */
David Ertman74f350e2014-02-22 03:15:17 +0000355 e1000_toggle_lanphypc_pch_lpt(hw);
356 if (hw->mac.type >= e1000_pch_lpt) {
Bruce Allan16b095a2013-06-29 07:42:39 +0000357 if (e1000_phy_is_accessible_pchlan(hw))
358 break;
359
360 /* Toggling LANPHYPC brings the PHY out of SMBus mode
361 * so ensure that the MAC is also out of SMBus mode
362 */
363 mac_reg = er32(CTRL_EXT);
364 mac_reg &= ~E1000_CTRL_EXT_FORCE_SMBUS;
365 ew32(CTRL_EXT, mac_reg);
366
367 if (e1000_phy_is_accessible_pchlan(hw))
368 break;
369
370 ret_val = -E1000_ERR_PHY;
Bruce Allan2fbe4522012-04-19 03:21:47 +0000371 }
Bruce Allancb17aab2012-04-13 03:16:22 +0000372 break;
373 default:
374 break;
375 }
376
377 hw->phy.ops.release(hw);
Bruce Allan16b095a2013-06-29 07:42:39 +0000378 if (!ret_val) {
David Ertmanf7235ef2014-01-23 06:29:13 +0000379
380 /* Check to see if able to reset PHY. Print error if not */
381 if (hw->phy.ops.check_reset_block(hw)) {
382 e_err("Reset blocked by ME\n");
383 goto out;
384 }
385
Bruce Allan16b095a2013-06-29 07:42:39 +0000386 /* Reset the PHY before any access to it. Doing so, ensures
387 * that the PHY is in a known good state before we read/write
388 * PHY registers. The generic reset is sufficient here,
389 * because we haven't determined the PHY type yet.
390 */
391 ret_val = e1000e_phy_hw_reset_generic(hw);
David Ertmanf7235ef2014-01-23 06:29:13 +0000392 if (ret_val)
393 goto out;
394
395 /* On a successful reset, possibly need to wait for the PHY
396 * to quiesce to an accessible state before returning control
397 * to the calling function. If the PHY does not quiesce, then
398 * return E1000E_BLK_PHY_RESET, as this is the condition that
399 * the PHY is in.
400 */
401 ret_val = hw->phy.ops.check_reset_block(hw);
402 if (ret_val)
403 e_err("ME blocked access to PHY after reset\n");
Bruce Allan16b095a2013-06-29 07:42:39 +0000404 }
Bruce Allancb17aab2012-04-13 03:16:22 +0000405
Bruce Allan6e928b72012-12-12 04:45:51 +0000406out:
Bruce Allancb17aab2012-04-13 03:16:22 +0000407 /* Ungate automatic PHY configuration on non-managed 82579 */
408 if ((hw->mac.type == e1000_pch2lan) &&
409 !(fwsm & E1000_ICH_FWSM_FW_VALID)) {
410 usleep_range(10000, 20000);
411 e1000_gate_hw_phy_config_ich8lan(hw, false);
412 }
413
414 return ret_val;
Bruce Allan99730e42011-05-13 07:19:48 +0000415}
416
Auke Kokbc7f75f2007-09-17 12:30:59 -0700417/**
Bruce Allana4f58f52009-06-02 11:29:18 +0000418 * e1000_init_phy_params_pchlan - Initialize PHY function pointers
419 * @hw: pointer to the HW structure
420 *
421 * Initialize family-specific PHY parameters and function pointers.
422 **/
423static s32 e1000_init_phy_params_pchlan(struct e1000_hw *hw)
424{
425 struct e1000_phy_info *phy = &hw->phy;
Bruce Allan70806a72013-01-05 05:08:37 +0000426 s32 ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +0000427
Bruce Allane80bd1d2013-05-01 01:19:46 +0000428 phy->addr = 1;
429 phy->reset_delay_us = 100;
Bruce Allana4f58f52009-06-02 11:29:18 +0000430
Bruce Allane80bd1d2013-05-01 01:19:46 +0000431 phy->ops.set_page = e1000_set_page_igp;
432 phy->ops.read_reg = e1000_read_phy_reg_hv;
433 phy->ops.read_reg_locked = e1000_read_phy_reg_hv_locked;
434 phy->ops.read_reg_page = e1000_read_phy_reg_page_hv;
435 phy->ops.set_d0_lplu_state = e1000_set_lplu_state_pchlan;
436 phy->ops.set_d3_lplu_state = e1000_set_lplu_state_pchlan;
437 phy->ops.write_reg = e1000_write_phy_reg_hv;
438 phy->ops.write_reg_locked = e1000_write_phy_reg_hv_locked;
439 phy->ops.write_reg_page = e1000_write_phy_reg_page_hv;
440 phy->ops.power_up = e1000_power_up_phy_copper;
441 phy->ops.power_down = e1000_power_down_phy_copper_ich8lan;
442 phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT;
Bruce Allana4f58f52009-06-02 11:29:18 +0000443
444 phy->id = e1000_phy_unknown;
Bruce Allancb17aab2012-04-13 03:16:22 +0000445
446 ret_val = e1000_init_phy_workarounds_pchlan(hw);
447 if (ret_val)
448 return ret_val;
449
450 if (phy->id == e1000_phy_unknown)
451 switch (hw->mac.type) {
452 default:
453 ret_val = e1000e_get_phy_id(hw);
454 if (ret_val)
455 return ret_val;
456 if ((phy->id != 0) && (phy->id != PHY_REVISION_MASK))
457 break;
458 /* fall-through */
459 case e1000_pch2lan:
Bruce Allan2fbe4522012-04-19 03:21:47 +0000460 case e1000_pch_lpt:
Bruce Allane921eb12012-11-28 09:28:37 +0000461 /* In case the PHY needs to be in mdio slow mode,
Bruce Allancb17aab2012-04-13 03:16:22 +0000462 * set slow mode and try to get the PHY id again.
463 */
464 ret_val = e1000_set_mdio_slow_mode_hv(hw);
465 if (ret_val)
466 return ret_val;
467 ret_val = e1000e_get_phy_id(hw);
468 if (ret_val)
469 return ret_val;
Bruce Allan664dc872010-11-24 06:01:46 +0000470 break;
Bruce Allancb17aab2012-04-13 03:16:22 +0000471 }
Bruce Allana4f58f52009-06-02 11:29:18 +0000472 phy->type = e1000e_get_phy_type_from_id(phy->id);
473
Bruce Allan0be84012009-12-02 17:03:18 +0000474 switch (phy->type) {
475 case e1000_phy_82577:
Bruce Alland3738bb2010-06-16 13:27:28 +0000476 case e1000_phy_82579:
Bruce Allan2fbe4522012-04-19 03:21:47 +0000477 case e1000_phy_i217:
Bruce Allana4f58f52009-06-02 11:29:18 +0000478 phy->ops.check_polarity = e1000_check_polarity_82577;
479 phy->ops.force_speed_duplex =
Bruce Allan6cc7aae2011-02-25 06:25:18 +0000480 e1000_phy_force_speed_duplex_82577;
Bruce Allan0be84012009-12-02 17:03:18 +0000481 phy->ops.get_cable_length = e1000_get_cable_length_82577;
Bruce Allan94d81862009-11-20 23:25:26 +0000482 phy->ops.get_info = e1000_get_phy_info_82577;
483 phy->ops.commit = e1000e_phy_sw_reset;
Bruce Allaneab50ff2010-05-10 15:01:30 +0000484 break;
Bruce Allan0be84012009-12-02 17:03:18 +0000485 case e1000_phy_82578:
486 phy->ops.check_polarity = e1000_check_polarity_m88;
487 phy->ops.force_speed_duplex = e1000e_phy_force_speed_duplex_m88;
488 phy->ops.get_cable_length = e1000e_get_cable_length_m88;
489 phy->ops.get_info = e1000e_get_phy_info_m88;
490 break;
491 default:
492 ret_val = -E1000_ERR_PHY;
493 break;
Bruce Allana4f58f52009-06-02 11:29:18 +0000494 }
495
496 return ret_val;
497}
498
499/**
Auke Kokbc7f75f2007-09-17 12:30:59 -0700500 * e1000_init_phy_params_ich8lan - Initialize PHY function pointers
501 * @hw: pointer to the HW structure
502 *
503 * Initialize family-specific PHY parameters and function pointers.
504 **/
505static s32 e1000_init_phy_params_ich8lan(struct e1000_hw *hw)
506{
507 struct e1000_phy_info *phy = &hw->phy;
508 s32 ret_val;
509 u16 i = 0;
510
Bruce Allane80bd1d2013-05-01 01:19:46 +0000511 phy->addr = 1;
512 phy->reset_delay_us = 100;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700513
Bruce Allane80bd1d2013-05-01 01:19:46 +0000514 phy->ops.power_up = e1000_power_up_phy_copper;
515 phy->ops.power_down = e1000_power_down_phy_copper_ich8lan;
Bruce Allan17f208d2009-12-01 15:47:22 +0000516
Bruce Allane921eb12012-11-28 09:28:37 +0000517 /* We may need to do this twice - once for IGP and if that fails,
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700518 * we'll set BM func pointers and try again
519 */
520 ret_val = e1000e_determine_phy_address(hw);
521 if (ret_val) {
Bruce Allan94d81862009-11-20 23:25:26 +0000522 phy->ops.write_reg = e1000e_write_phy_reg_bm;
Bruce Allane80bd1d2013-05-01 01:19:46 +0000523 phy->ops.read_reg = e1000e_read_phy_reg_bm;
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700524 ret_val = e1000e_determine_phy_address(hw);
Bruce Allan9b71b412009-12-01 15:53:07 +0000525 if (ret_val) {
526 e_dbg("Cannot determine PHY addr. Erroring out\n");
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700527 return ret_val;
Bruce Allan9b71b412009-12-01 15:53:07 +0000528 }
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700529 }
530
Auke Kokbc7f75f2007-09-17 12:30:59 -0700531 phy->id = 0;
532 while ((e1000_phy_unknown == e1000e_get_phy_type_from_id(phy->id)) &&
533 (i++ < 100)) {
Bruce Allan1bba4382011-03-19 00:27:20 +0000534 usleep_range(1000, 2000);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700535 ret_val = e1000e_get_phy_id(hw);
536 if (ret_val)
537 return ret_val;
538 }
539
540 /* Verify phy id */
541 switch (phy->id) {
542 case IGP03E1000_E_PHY_ID:
543 phy->type = e1000_phy_igp_3;
544 phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT;
Bruce Allan94d81862009-11-20 23:25:26 +0000545 phy->ops.read_reg_locked = e1000e_read_phy_reg_igp_locked;
546 phy->ops.write_reg_locked = e1000e_write_phy_reg_igp_locked;
Bruce Allan0be84012009-12-02 17:03:18 +0000547 phy->ops.get_info = e1000e_get_phy_info_igp;
548 phy->ops.check_polarity = e1000_check_polarity_igp;
549 phy->ops.force_speed_duplex = e1000e_phy_force_speed_duplex_igp;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700550 break;
551 case IFE_E_PHY_ID:
552 case IFE_PLUS_E_PHY_ID:
553 case IFE_C_E_PHY_ID:
554 phy->type = e1000_phy_ife;
555 phy->autoneg_mask = E1000_ALL_NOT_GIG;
Bruce Allan0be84012009-12-02 17:03:18 +0000556 phy->ops.get_info = e1000_get_phy_info_ife;
557 phy->ops.check_polarity = e1000_check_polarity_ife;
558 phy->ops.force_speed_duplex = e1000_phy_force_speed_duplex_ife;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700559 break;
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700560 case BME1000_E_PHY_ID:
561 phy->type = e1000_phy_bm;
562 phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT;
Bruce Allan94d81862009-11-20 23:25:26 +0000563 phy->ops.read_reg = e1000e_read_phy_reg_bm;
564 phy->ops.write_reg = e1000e_write_phy_reg_bm;
565 phy->ops.commit = e1000e_phy_sw_reset;
Bruce Allan0be84012009-12-02 17:03:18 +0000566 phy->ops.get_info = e1000e_get_phy_info_m88;
567 phy->ops.check_polarity = e1000_check_polarity_m88;
568 phy->ops.force_speed_duplex = e1000e_phy_force_speed_duplex_m88;
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700569 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700570 default:
571 return -E1000_ERR_PHY;
572 break;
573 }
574
575 return 0;
576}
577
578/**
579 * e1000_init_nvm_params_ich8lan - Initialize NVM function pointers
580 * @hw: pointer to the HW structure
581 *
582 * Initialize family-specific NVM parameters and function
583 * pointers.
584 **/
585static s32 e1000_init_nvm_params_ich8lan(struct e1000_hw *hw)
586{
587 struct e1000_nvm_info *nvm = &hw->nvm;
588 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
Bruce Allan148675a2009-08-07 07:41:56 +0000589 u32 gfpreg, sector_base_addr, sector_end_addr;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700590 u16 i;
591
Bruce Allanad680762008-03-28 09:15:03 -0700592 /* Can't read flash registers if the register set isn't mapped. */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700593 if (!hw->flash_address) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000594 e_dbg("ERROR: Flash registers not mapped\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700595 return -E1000_ERR_CONFIG;
596 }
597
598 nvm->type = e1000_nvm_flash_sw;
599
600 gfpreg = er32flash(ICH_FLASH_GFPREG);
601
Bruce Allane921eb12012-11-28 09:28:37 +0000602 /* sector_X_addr is a "sector"-aligned address (4096 bytes)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700603 * Add 1 to sector_end_addr since this sector is included in
Bruce Allanad680762008-03-28 09:15:03 -0700604 * the overall size.
605 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700606 sector_base_addr = gfpreg & FLASH_GFPREG_BASE_MASK;
607 sector_end_addr = ((gfpreg >> 16) & FLASH_GFPREG_BASE_MASK) + 1;
608
609 /* flash_base_addr is byte-aligned */
610 nvm->flash_base_addr = sector_base_addr << FLASH_SECTOR_ADDR_SHIFT;
611
Bruce Allane921eb12012-11-28 09:28:37 +0000612 /* find total size of the NVM, then cut in half since the total
Bruce Allanad680762008-03-28 09:15:03 -0700613 * size represents two separate NVM banks.
614 */
Bruce Allanf0ff4392013-02-20 04:05:39 +0000615 nvm->flash_bank_size = ((sector_end_addr - sector_base_addr)
616 << FLASH_SECTOR_ADDR_SHIFT);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700617 nvm->flash_bank_size /= 2;
618 /* Adjust to word count */
619 nvm->flash_bank_size /= sizeof(u16);
620
621 nvm->word_size = E1000_ICH8_SHADOW_RAM_WORDS;
622
623 /* Clear shadow ram */
624 for (i = 0; i < nvm->word_size; i++) {
Bruce Allan564ea9b2009-11-20 23:26:44 +0000625 dev_spec->shadow_ram[i].modified = false;
Bruce Allane80bd1d2013-05-01 01:19:46 +0000626 dev_spec->shadow_ram[i].value = 0xFFFF;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700627 }
628
629 return 0;
630}
631
632/**
633 * e1000_init_mac_params_ich8lan - Initialize MAC function pointers
634 * @hw: pointer to the HW structure
635 *
636 * Initialize family-specific MAC parameters and function
637 * pointers.
638 **/
Bruce Allanec34c172012-02-01 10:53:05 +0000639static s32 e1000_init_mac_params_ich8lan(struct e1000_hw *hw)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700640{
Auke Kokbc7f75f2007-09-17 12:30:59 -0700641 struct e1000_mac_info *mac = &hw->mac;
642
643 /* Set media type function pointer */
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700644 hw->phy.media_type = e1000_media_type_copper;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700645
646 /* Set mta register count */
647 mac->mta_reg_count = 32;
648 /* Set rar entry count */
649 mac->rar_entry_count = E1000_ICH_RAR_ENTRIES;
650 if (mac->type == e1000_ich8lan)
651 mac->rar_entry_count--;
Bruce Allana65a4a02010-05-10 15:01:51 +0000652 /* FWSM register */
653 mac->has_fwsm = true;
654 /* ARC subsystem not supported */
655 mac->arc_subsystem_valid = false;
Bruce Allanf464ba82010-01-07 16:31:35 +0000656 /* Adaptive IFS supported */
657 mac->adaptive_ifs = true;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700658
Bruce Allan2fbe4522012-04-19 03:21:47 +0000659 /* LED and other operations */
Bruce Allana4f58f52009-06-02 11:29:18 +0000660 switch (mac->type) {
661 case e1000_ich8lan:
662 case e1000_ich9lan:
663 case e1000_ich10lan:
Bruce Allaneb7700d2010-06-16 13:27:05 +0000664 /* check management mode */
665 mac->ops.check_mng_mode = e1000_check_mng_mode_ich8lan;
Bruce Allana4f58f52009-06-02 11:29:18 +0000666 /* ID LED init */
Bruce Alland1964eb2012-02-22 09:02:21 +0000667 mac->ops.id_led_init = e1000e_id_led_init_generic;
Bruce Allandbf80dc2011-04-16 00:34:40 +0000668 /* blink LED */
669 mac->ops.blink_led = e1000e_blink_led_generic;
Bruce Allana4f58f52009-06-02 11:29:18 +0000670 /* setup LED */
671 mac->ops.setup_led = e1000e_setup_led_generic;
672 /* cleanup LED */
673 mac->ops.cleanup_led = e1000_cleanup_led_ich8lan;
674 /* turn on/off LED */
675 mac->ops.led_on = e1000_led_on_ich8lan;
676 mac->ops.led_off = e1000_led_off_ich8lan;
677 break;
Bruce Alland3738bb2010-06-16 13:27:28 +0000678 case e1000_pch2lan:
Bruce Allan69e1e012012-04-14 03:28:50 +0000679 mac->rar_entry_count = E1000_PCH2_RAR_ENTRIES;
680 mac->ops.rar_set = e1000_rar_set_pch2lan;
681 /* fall-through */
Bruce Allan2fbe4522012-04-19 03:21:47 +0000682 case e1000_pch_lpt:
Bruce Allan69e1e012012-04-14 03:28:50 +0000683 case e1000_pchlan:
Bruce Allaneb7700d2010-06-16 13:27:05 +0000684 /* check management mode */
685 mac->ops.check_mng_mode = e1000_check_mng_mode_pchlan;
Bruce Allana4f58f52009-06-02 11:29:18 +0000686 /* ID LED init */
687 mac->ops.id_led_init = e1000_id_led_init_pchlan;
688 /* setup LED */
689 mac->ops.setup_led = e1000_setup_led_pchlan;
690 /* cleanup LED */
691 mac->ops.cleanup_led = e1000_cleanup_led_pchlan;
692 /* turn on/off LED */
693 mac->ops.led_on = e1000_led_on_pchlan;
694 mac->ops.led_off = e1000_led_off_pchlan;
695 break;
696 default:
697 break;
698 }
699
Bruce Allan2fbe4522012-04-19 03:21:47 +0000700 if (mac->type == e1000_pch_lpt) {
701 mac->rar_entry_count = E1000_PCH_LPT_RAR_ENTRIES;
702 mac->ops.rar_set = e1000_rar_set_pch_lpt;
Bruce Allanea8179a2013-03-06 09:02:47 +0000703 mac->ops.setup_physical_interface =
704 e1000_setup_copper_link_pch_lpt;
Bruce Allan2fbe4522012-04-19 03:21:47 +0000705 }
706
Auke Kokbc7f75f2007-09-17 12:30:59 -0700707 /* Enable PCS Lock-loss workaround for ICH8 */
708 if (mac->type == e1000_ich8lan)
Bruce Allan564ea9b2009-11-20 23:26:44 +0000709 e1000e_set_kmrn_lock_loss_workaround_ich8lan(hw, true);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700710
711 return 0;
712}
713
Bruce Allan7d3cabb2009-07-01 13:29:08 +0000714/**
Bruce Allan4ddc48a2012-12-05 06:25:58 +0000715 * __e1000_access_emi_reg_locked - Read/write EMI register
716 * @hw: pointer to the HW structure
717 * @addr: EMI address to program
718 * @data: pointer to value to read/write from/to the EMI address
719 * @read: boolean flag to indicate read or write
720 *
721 * This helper function assumes the SW/FW/HW Semaphore is already acquired.
722 **/
723static s32 __e1000_access_emi_reg_locked(struct e1000_hw *hw, u16 address,
724 u16 *data, bool read)
725{
Bruce Allan70806a72013-01-05 05:08:37 +0000726 s32 ret_val;
Bruce Allan4ddc48a2012-12-05 06:25:58 +0000727
728 ret_val = e1e_wphy_locked(hw, I82579_EMI_ADDR, address);
729 if (ret_val)
730 return ret_val;
731
732 if (read)
733 ret_val = e1e_rphy_locked(hw, I82579_EMI_DATA, data);
734 else
735 ret_val = e1e_wphy_locked(hw, I82579_EMI_DATA, *data);
736
737 return ret_val;
738}
739
740/**
741 * e1000_read_emi_reg_locked - Read Extended Management Interface register
742 * @hw: pointer to the HW structure
743 * @addr: EMI address to program
744 * @data: value to be read from the EMI address
745 *
746 * Assumes the SW/FW/HW Semaphore is already acquired.
747 **/
Bruce Allan203e4152012-12-05 08:40:59 +0000748s32 e1000_read_emi_reg_locked(struct e1000_hw *hw, u16 addr, u16 *data)
Bruce Allan4ddc48a2012-12-05 06:25:58 +0000749{
750 return __e1000_access_emi_reg_locked(hw, addr, data, true);
751}
752
753/**
754 * e1000_write_emi_reg_locked - Write Extended Management Interface register
755 * @hw: pointer to the HW structure
756 * @addr: EMI address to program
757 * @data: value to be written to the EMI address
758 *
759 * Assumes the SW/FW/HW Semaphore is already acquired.
760 **/
Bruce Alland495bcb2013-03-20 07:23:11 +0000761s32 e1000_write_emi_reg_locked(struct e1000_hw *hw, u16 addr, u16 data)
Bruce Allan4ddc48a2012-12-05 06:25:58 +0000762{
763 return __e1000_access_emi_reg_locked(hw, addr, &data, false);
764}
765
766/**
Bruce Allane52997f2010-06-16 13:27:49 +0000767 * e1000_set_eee_pchlan - Enable/disable EEE support
768 * @hw: pointer to the HW structure
769 *
Bruce Allan3d4d5752012-12-05 06:26:08 +0000770 * Enable/disable EEE based on setting in dev_spec structure, the duplex of
771 * the link and the EEE capabilities of the link partner. The LPI Control
772 * register bits will remain set only if/when link is up.
David Ertmana03206e2014-01-24 23:07:48 +0000773 *
774 * EEE LPI must not be asserted earlier than one second after link is up.
775 * On 82579, EEE LPI should not be enabled until such time otherwise there
776 * can be link issues with some switches. Other devices can have EEE LPI
777 * enabled immediately upon link up since they have a timer in hardware which
778 * prevents LPI from being asserted too early.
Bruce Allane52997f2010-06-16 13:27:49 +0000779 **/
David Ertmana03206e2014-01-24 23:07:48 +0000780s32 e1000_set_eee_pchlan(struct e1000_hw *hw)
Bruce Allane52997f2010-06-16 13:27:49 +0000781{
Bruce Allan2fbe4522012-04-19 03:21:47 +0000782 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
Bruce Allan3d4d5752012-12-05 06:26:08 +0000783 s32 ret_val;
Bruce Alland495bcb2013-03-20 07:23:11 +0000784 u16 lpa, pcs_status, adv, adv_addr, lpi_ctrl, data;
Bruce Allane52997f2010-06-16 13:27:49 +0000785
Bruce Alland495bcb2013-03-20 07:23:11 +0000786 switch (hw->phy.type) {
787 case e1000_phy_82579:
788 lpa = I82579_EEE_LP_ABILITY;
789 pcs_status = I82579_EEE_PCS_STATUS;
790 adv_addr = I82579_EEE_ADVERTISEMENT;
791 break;
792 case e1000_phy_i217:
793 lpa = I217_EEE_LP_ABILITY;
794 pcs_status = I217_EEE_PCS_STATUS;
795 adv_addr = I217_EEE_ADVERTISEMENT;
796 break;
797 default:
Bruce Allan5015e532012-02-08 02:55:56 +0000798 return 0;
Bruce Alland495bcb2013-03-20 07:23:11 +0000799 }
Bruce Allane52997f2010-06-16 13:27:49 +0000800
Bruce Allan3d4d5752012-12-05 06:26:08 +0000801 ret_val = hw->phy.ops.acquire(hw);
Bruce Allane52997f2010-06-16 13:27:49 +0000802 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +0000803 return ret_val;
Bruce Allane52997f2010-06-16 13:27:49 +0000804
Bruce Allan3d4d5752012-12-05 06:26:08 +0000805 ret_val = e1e_rphy_locked(hw, I82579_LPI_CTRL, &lpi_ctrl);
Bruce Allan2fbe4522012-04-19 03:21:47 +0000806 if (ret_val)
Bruce Allan3d4d5752012-12-05 06:26:08 +0000807 goto release;
Bruce Allan2fbe4522012-04-19 03:21:47 +0000808
Bruce Allan3d4d5752012-12-05 06:26:08 +0000809 /* Clear bits that enable EEE in various speeds */
810 lpi_ctrl &= ~I82579_LPI_CTRL_ENABLE_MASK;
811
812 /* Enable EEE if not disabled by user */
813 if (!dev_spec->eee_disable) {
Bruce Allan2fbe4522012-04-19 03:21:47 +0000814 /* Save off link partner's EEE ability */
Bruce Allan3d4d5752012-12-05 06:26:08 +0000815 ret_val = e1000_read_emi_reg_locked(hw, lpa,
Bruce Allan4ddc48a2012-12-05 06:25:58 +0000816 &dev_spec->eee_lp_ability);
Bruce Allan2fbe4522012-04-19 03:21:47 +0000817 if (ret_val)
818 goto release;
Bruce Allan2fbe4522012-04-19 03:21:47 +0000819
Bruce Alland495bcb2013-03-20 07:23:11 +0000820 /* Read EEE advertisement */
821 ret_val = e1000_read_emi_reg_locked(hw, adv_addr, &adv);
822 if (ret_val)
823 goto release;
824
Bruce Allan3d4d5752012-12-05 06:26:08 +0000825 /* Enable EEE only for speeds in which the link partner is
Bruce Alland495bcb2013-03-20 07:23:11 +0000826 * EEE capable and for which we advertise EEE.
Bruce Allan2fbe4522012-04-19 03:21:47 +0000827 */
Bruce Alland495bcb2013-03-20 07:23:11 +0000828 if (adv & dev_spec->eee_lp_ability & I82579_EEE_1000_SUPPORTED)
Bruce Allan3d4d5752012-12-05 06:26:08 +0000829 lpi_ctrl |= I82579_LPI_CTRL_1000_ENABLE;
830
Bruce Alland495bcb2013-03-20 07:23:11 +0000831 if (adv & dev_spec->eee_lp_ability & I82579_EEE_100_SUPPORTED) {
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000832 e1e_rphy_locked(hw, MII_LPA, &data);
833 if (data & LPA_100FULL)
Bruce Allan3d4d5752012-12-05 06:26:08 +0000834 lpi_ctrl |= I82579_LPI_CTRL_100_ENABLE;
835 else
836 /* EEE is not supported in 100Half, so ignore
837 * partner's EEE in 100 ability if full-duplex
838 * is not advertised.
839 */
840 dev_spec->eee_lp_ability &=
841 ~I82579_EEE_100_SUPPORTED;
842 }
Bruce Allan2fbe4522012-04-19 03:21:47 +0000843 }
844
David Ertman7142a552014-05-01 01:22:26 +0000845 if (hw->phy.type == e1000_phy_82579) {
846 ret_val = e1000_read_emi_reg_locked(hw, I82579_LPI_PLL_SHUT,
847 &data);
848 if (ret_val)
849 goto release;
850
851 data &= ~I82579_LPI_100_PLL_SHUT;
852 ret_val = e1000_write_emi_reg_locked(hw, I82579_LPI_PLL_SHUT,
853 data);
854 }
855
Bruce Alland495bcb2013-03-20 07:23:11 +0000856 /* R/Clr IEEE MMD 3.1 bits 11:10 - Tx/Rx LPI Received */
857 ret_val = e1000_read_emi_reg_locked(hw, pcs_status, &data);
858 if (ret_val)
859 goto release;
860
Bruce Allan3d4d5752012-12-05 06:26:08 +0000861 ret_val = e1e_wphy_locked(hw, I82579_LPI_CTRL, lpi_ctrl);
862release:
863 hw->phy.ops.release(hw);
864
865 return ret_val;
Bruce Allane52997f2010-06-16 13:27:49 +0000866}
867
868/**
Bruce Allane08f6262013-02-20 03:06:34 +0000869 * e1000_k1_workaround_lpt_lp - K1 workaround on Lynxpoint-LP
870 * @hw: pointer to the HW structure
871 * @link: link up bool flag
872 *
873 * When K1 is enabled for 1Gbps, the MAC can miss 2 DMA completion indications
874 * preventing further DMA write requests. Workaround the issue by disabling
875 * the de-assertion of the clock request when in 1Gpbs mode.
Bruce Allane0236ad2013-06-21 09:07:13 +0000876 * Also, set appropriate Tx re-transmission timeouts for 10 and 100Half link
877 * speeds in order to avoid Tx hangs.
Bruce Allane08f6262013-02-20 03:06:34 +0000878 **/
879static s32 e1000_k1_workaround_lpt_lp(struct e1000_hw *hw, bool link)
880{
881 u32 fextnvm6 = er32(FEXTNVM6);
Bruce Allane0236ad2013-06-21 09:07:13 +0000882 u32 status = er32(STATUS);
Bruce Allane08f6262013-02-20 03:06:34 +0000883 s32 ret_val = 0;
Bruce Allane0236ad2013-06-21 09:07:13 +0000884 u16 reg;
Bruce Allane08f6262013-02-20 03:06:34 +0000885
Bruce Allane0236ad2013-06-21 09:07:13 +0000886 if (link && (status & E1000_STATUS_SPEED_1000)) {
Bruce Allane08f6262013-02-20 03:06:34 +0000887 ret_val = hw->phy.ops.acquire(hw);
888 if (ret_val)
889 return ret_val;
890
891 ret_val =
892 e1000e_read_kmrn_reg_locked(hw, E1000_KMRNCTRLSTA_K1_CONFIG,
Bruce Allane0236ad2013-06-21 09:07:13 +0000893 &reg);
Bruce Allane08f6262013-02-20 03:06:34 +0000894 if (ret_val)
895 goto release;
896
897 ret_val =
898 e1000e_write_kmrn_reg_locked(hw,
899 E1000_KMRNCTRLSTA_K1_CONFIG,
Bruce Allane0236ad2013-06-21 09:07:13 +0000900 reg &
Bruce Allane08f6262013-02-20 03:06:34 +0000901 ~E1000_KMRNCTRLSTA_K1_ENABLE);
902 if (ret_val)
903 goto release;
904
905 usleep_range(10, 20);
906
907 ew32(FEXTNVM6, fextnvm6 | E1000_FEXTNVM6_REQ_PLL_CLK);
908
909 ret_val =
910 e1000e_write_kmrn_reg_locked(hw,
911 E1000_KMRNCTRLSTA_K1_CONFIG,
Bruce Allane0236ad2013-06-21 09:07:13 +0000912 reg);
Bruce Allane08f6262013-02-20 03:06:34 +0000913release:
914 hw->phy.ops.release(hw);
915 } else {
916 /* clear FEXTNVM6 bit 8 on link down or 10/100 */
Bruce Allane0236ad2013-06-21 09:07:13 +0000917 fextnvm6 &= ~E1000_FEXTNVM6_REQ_PLL_CLK;
918
919 if (!link || ((status & E1000_STATUS_SPEED_100) &&
920 (status & E1000_STATUS_FD)))
921 goto update_fextnvm6;
922
923 ret_val = e1e_rphy(hw, I217_INBAND_CTRL, &reg);
924 if (ret_val)
925 return ret_val;
926
927 /* Clear link status transmit timeout */
928 reg &= ~I217_INBAND_CTRL_LINK_STAT_TX_TIMEOUT_MASK;
929
930 if (status & E1000_STATUS_SPEED_100) {
931 /* Set inband Tx timeout to 5x10us for 100Half */
932 reg |= 5 << I217_INBAND_CTRL_LINK_STAT_TX_TIMEOUT_SHIFT;
933
934 /* Do not extend the K1 entry latency for 100Half */
935 fextnvm6 &= ~E1000_FEXTNVM6_ENABLE_K1_ENTRY_CONDITION;
936 } else {
937 /* Set inband Tx timeout to 50x10us for 10Full/Half */
938 reg |= 50 <<
939 I217_INBAND_CTRL_LINK_STAT_TX_TIMEOUT_SHIFT;
940
941 /* Extend the K1 entry latency for 10 Mbps */
942 fextnvm6 |= E1000_FEXTNVM6_ENABLE_K1_ENTRY_CONDITION;
943 }
944
945 ret_val = e1e_wphy(hw, I217_INBAND_CTRL, reg);
946 if (ret_val)
947 return ret_val;
948
949update_fextnvm6:
950 ew32(FEXTNVM6, fextnvm6);
Bruce Allane08f6262013-02-20 03:06:34 +0000951 }
952
953 return ret_val;
954}
955
956/**
Bruce Allancf8fb732013-03-06 09:03:02 +0000957 * e1000_platform_pm_pch_lpt - Set platform power management values
958 * @hw: pointer to the HW structure
959 * @link: bool indicating link status
960 *
961 * Set the Latency Tolerance Reporting (LTR) values for the "PCIe-like"
962 * GbE MAC in the Lynx Point PCH based on Rx buffer size and link speed
963 * when link is up (which must not exceed the maximum latency supported
964 * by the platform), otherwise specify there is no LTR requirement.
965 * Unlike true-PCIe devices which set the LTR maximum snoop/no-snoop
966 * latencies in the LTR Extended Capability Structure in the PCIe Extended
967 * Capability register set, on this device LTR is set by writing the
968 * equivalent snoop/no-snoop latencies in the LTRV register in the MAC and
969 * set the SEND bit to send an Intel On-chip System Fabric sideband (IOSF-SB)
970 * message to the PMC.
971 **/
972static s32 e1000_platform_pm_pch_lpt(struct e1000_hw *hw, bool link)
973{
974 u32 reg = link << (E1000_LTRV_REQ_SHIFT + E1000_LTRV_NOSNOOP_SHIFT) |
975 link << E1000_LTRV_REQ_SHIFT | E1000_LTRV_SEND;
976 u16 lat_enc = 0; /* latency encoded */
977
978 if (link) {
979 u16 speed, duplex, scale = 0;
980 u16 max_snoop, max_nosnoop;
981 u16 max_ltr_enc; /* max LTR latency encoded */
982 s64 lat_ns; /* latency (ns) */
983 s64 value;
984 u32 rxa;
985
986 if (!hw->adapter->max_frame_size) {
987 e_dbg("max_frame_size not set.\n");
988 return -E1000_ERR_CONFIG;
989 }
990
991 hw->mac.ops.get_link_up_info(hw, &speed, &duplex);
992 if (!speed) {
993 e_dbg("Speed not set.\n");
994 return -E1000_ERR_CONFIG;
995 }
996
997 /* Rx Packet Buffer Allocation size (KB) */
998 rxa = er32(PBA) & E1000_PBA_RXA_MASK;
999
1000 /* Determine the maximum latency tolerated by the device.
1001 *
1002 * Per the PCIe spec, the tolerated latencies are encoded as
1003 * a 3-bit encoded scale (only 0-5 are valid) multiplied by
1004 * a 10-bit value (0-1023) to provide a range from 1 ns to
1005 * 2^25*(2^10-1) ns. The scale is encoded as 0=2^0ns,
1006 * 1=2^5ns, 2=2^10ns,...5=2^25ns.
1007 */
1008 lat_ns = ((s64)rxa * 1024 -
1009 (2 * (s64)hw->adapter->max_frame_size)) * 8 * 1000;
1010 if (lat_ns < 0)
1011 lat_ns = 0;
1012 else
1013 do_div(lat_ns, speed);
1014
1015 value = lat_ns;
1016 while (value > PCI_LTR_VALUE_MASK) {
1017 scale++;
1018 value = DIV_ROUND_UP(value, (1 << 5));
1019 }
1020 if (scale > E1000_LTRV_SCALE_MAX) {
1021 e_dbg("Invalid LTR latency scale %d\n", scale);
1022 return -E1000_ERR_CONFIG;
1023 }
1024 lat_enc = (u16)((scale << PCI_LTR_SCALE_SHIFT) | value);
1025
1026 /* Determine the maximum latency tolerated by the platform */
1027 pci_read_config_word(hw->adapter->pdev, E1000_PCI_LTR_CAP_LPT,
1028 &max_snoop);
1029 pci_read_config_word(hw->adapter->pdev,
1030 E1000_PCI_LTR_CAP_LPT + 2, &max_nosnoop);
1031 max_ltr_enc = max_t(u16, max_snoop, max_nosnoop);
1032
1033 if (lat_enc > max_ltr_enc)
1034 lat_enc = max_ltr_enc;
1035 }
1036
1037 /* Set Snoop and No-Snoop latencies the same */
1038 reg |= lat_enc | (lat_enc << E1000_LTRV_NOSNOOP_SHIFT);
1039 ew32(LTRV, reg);
1040
1041 return 0;
1042}
1043
1044/**
David Ertman74f350e2014-02-22 03:15:17 +00001045 * e1000_enable_ulp_lpt_lp - configure Ultra Low Power mode for LynxPoint-LP
1046 * @hw: pointer to the HW structure
1047 * @to_sx: boolean indicating a system power state transition to Sx
1048 *
1049 * When link is down, configure ULP mode to significantly reduce the power
1050 * to the PHY. If on a Manageability Engine (ME) enabled system, tell the
1051 * ME firmware to start the ULP configuration. If not on an ME enabled
1052 * system, configure the ULP mode by software.
1053 */
1054s32 e1000_enable_ulp_lpt_lp(struct e1000_hw *hw, bool to_sx)
1055{
1056 u32 mac_reg;
1057 s32 ret_val = 0;
1058 u16 phy_reg;
1059
1060 if ((hw->mac.type < e1000_pch_lpt) ||
1061 (hw->adapter->pdev->device == E1000_DEV_ID_PCH_LPT_I217_LM) ||
1062 (hw->adapter->pdev->device == E1000_DEV_ID_PCH_LPT_I217_V) ||
1063 (hw->adapter->pdev->device == E1000_DEV_ID_PCH_I218_LM2) ||
1064 (hw->adapter->pdev->device == E1000_DEV_ID_PCH_I218_V2) ||
1065 (hw->dev_spec.ich8lan.ulp_state == e1000_ulp_state_on))
1066 return 0;
1067
1068 if (er32(FWSM) & E1000_ICH_FWSM_FW_VALID) {
1069 /* Request ME configure ULP mode in the PHY */
1070 mac_reg = er32(H2ME);
1071 mac_reg |= E1000_H2ME_ULP | E1000_H2ME_ENFORCE_SETTINGS;
1072 ew32(H2ME, mac_reg);
1073
1074 goto out;
1075 }
1076
1077 if (!to_sx) {
1078 int i = 0;
1079
1080 /* Poll up to 5 seconds for Cable Disconnected indication */
1081 while (!(er32(FEXT) & E1000_FEXT_PHY_CABLE_DISCONNECTED)) {
1082 /* Bail if link is re-acquired */
1083 if (er32(STATUS) & E1000_STATUS_LU)
1084 return -E1000_ERR_PHY;
1085
1086 if (i++ == 100)
1087 break;
1088
1089 msleep(50);
1090 }
1091 e_dbg("CABLE_DISCONNECTED %s set after %dmsec\n",
1092 (er32(FEXT) &
1093 E1000_FEXT_PHY_CABLE_DISCONNECTED) ? "" : "not", i * 50);
1094 }
1095
1096 ret_val = hw->phy.ops.acquire(hw);
1097 if (ret_val)
1098 goto out;
1099
1100 /* Force SMBus mode in PHY */
1101 ret_val = e1000_read_phy_reg_hv_locked(hw, CV_SMB_CTRL, &phy_reg);
1102 if (ret_val)
1103 goto release;
1104 phy_reg |= CV_SMB_CTRL_FORCE_SMBUS;
1105 e1000_write_phy_reg_hv_locked(hw, CV_SMB_CTRL, phy_reg);
1106
1107 /* Force SMBus mode in MAC */
1108 mac_reg = er32(CTRL_EXT);
1109 mac_reg |= E1000_CTRL_EXT_FORCE_SMBUS;
1110 ew32(CTRL_EXT, mac_reg);
1111
1112 /* Set Inband ULP Exit, Reset to SMBus mode and
1113 * Disable SMBus Release on PERST# in PHY
1114 */
1115 ret_val = e1000_read_phy_reg_hv_locked(hw, I218_ULP_CONFIG1, &phy_reg);
1116 if (ret_val)
1117 goto release;
1118 phy_reg |= (I218_ULP_CONFIG1_RESET_TO_SMBUS |
1119 I218_ULP_CONFIG1_DISABLE_SMB_PERST);
1120 if (to_sx) {
1121 if (er32(WUFC) & E1000_WUFC_LNKC)
1122 phy_reg |= I218_ULP_CONFIG1_WOL_HOST;
1123
1124 phy_reg |= I218_ULP_CONFIG1_STICKY_ULP;
1125 } else {
1126 phy_reg |= I218_ULP_CONFIG1_INBAND_EXIT;
1127 }
1128 e1000_write_phy_reg_hv_locked(hw, I218_ULP_CONFIG1, phy_reg);
1129
1130 /* Set Disable SMBus Release on PERST# in MAC */
1131 mac_reg = er32(FEXTNVM7);
1132 mac_reg |= E1000_FEXTNVM7_DISABLE_SMB_PERST;
1133 ew32(FEXTNVM7, mac_reg);
1134
1135 /* Commit ULP changes in PHY by starting auto ULP configuration */
1136 phy_reg |= I218_ULP_CONFIG1_START;
1137 e1000_write_phy_reg_hv_locked(hw, I218_ULP_CONFIG1, phy_reg);
1138release:
1139 hw->phy.ops.release(hw);
1140out:
1141 if (ret_val)
1142 e_dbg("Error in ULP enable flow: %d\n", ret_val);
1143 else
1144 hw->dev_spec.ich8lan.ulp_state = e1000_ulp_state_on;
1145
1146 return ret_val;
1147}
1148
1149/**
1150 * e1000_disable_ulp_lpt_lp - unconfigure Ultra Low Power mode for LynxPoint-LP
1151 * @hw: pointer to the HW structure
1152 * @force: boolean indicating whether or not to force disabling ULP
1153 *
1154 * Un-configure ULP mode when link is up, the system is transitioned from
1155 * Sx or the driver is unloaded. If on a Manageability Engine (ME) enabled
1156 * system, poll for an indication from ME that ULP has been un-configured.
1157 * If not on an ME enabled system, un-configure the ULP mode by software.
1158 *
1159 * During nominal operation, this function is called when link is acquired
1160 * to disable ULP mode (force=false); otherwise, for example when unloading
1161 * the driver or during Sx->S0 transitions, this is called with force=true
1162 * to forcibly disable ULP.
1163 */
1164static s32 e1000_disable_ulp_lpt_lp(struct e1000_hw *hw, bool force)
1165{
1166 s32 ret_val = 0;
1167 u32 mac_reg;
1168 u16 phy_reg;
1169 int i = 0;
1170
1171 if ((hw->mac.type < e1000_pch_lpt) ||
1172 (hw->adapter->pdev->device == E1000_DEV_ID_PCH_LPT_I217_LM) ||
1173 (hw->adapter->pdev->device == E1000_DEV_ID_PCH_LPT_I217_V) ||
1174 (hw->adapter->pdev->device == E1000_DEV_ID_PCH_I218_LM2) ||
1175 (hw->adapter->pdev->device == E1000_DEV_ID_PCH_I218_V2) ||
1176 (hw->dev_spec.ich8lan.ulp_state == e1000_ulp_state_off))
1177 return 0;
1178
1179 if (er32(FWSM) & E1000_ICH_FWSM_FW_VALID) {
1180 if (force) {
1181 /* Request ME un-configure ULP mode in the PHY */
1182 mac_reg = er32(H2ME);
1183 mac_reg &= ~E1000_H2ME_ULP;
1184 mac_reg |= E1000_H2ME_ENFORCE_SETTINGS;
1185 ew32(H2ME, mac_reg);
1186 }
1187
1188 /* Poll up to 100msec for ME to clear ULP_CFG_DONE */
1189 while (er32(FWSM) & E1000_FWSM_ULP_CFG_DONE) {
1190 if (i++ == 10) {
1191 ret_val = -E1000_ERR_PHY;
1192 goto out;
1193 }
1194
1195 usleep_range(10000, 20000);
1196 }
1197 e_dbg("ULP_CONFIG_DONE cleared after %dmsec\n", i * 10);
1198
1199 if (force) {
1200 mac_reg = er32(H2ME);
1201 mac_reg &= ~E1000_H2ME_ENFORCE_SETTINGS;
1202 ew32(H2ME, mac_reg);
1203 } else {
1204 /* Clear H2ME.ULP after ME ULP configuration */
1205 mac_reg = er32(H2ME);
1206 mac_reg &= ~E1000_H2ME_ULP;
1207 ew32(H2ME, mac_reg);
1208 }
1209
1210 goto out;
1211 }
1212
1213 ret_val = hw->phy.ops.acquire(hw);
1214 if (ret_val)
1215 goto out;
1216
1217 if (force)
1218 /* Toggle LANPHYPC Value bit */
1219 e1000_toggle_lanphypc_pch_lpt(hw);
1220
1221 /* Unforce SMBus mode in PHY */
1222 ret_val = e1000_read_phy_reg_hv_locked(hw, CV_SMB_CTRL, &phy_reg);
1223 if (ret_val) {
1224 /* The MAC might be in PCIe mode, so temporarily force to
1225 * SMBus mode in order to access the PHY.
1226 */
1227 mac_reg = er32(CTRL_EXT);
1228 mac_reg |= E1000_CTRL_EXT_FORCE_SMBUS;
1229 ew32(CTRL_EXT, mac_reg);
1230
1231 msleep(50);
1232
1233 ret_val = e1000_read_phy_reg_hv_locked(hw, CV_SMB_CTRL,
1234 &phy_reg);
1235 if (ret_val)
1236 goto release;
1237 }
1238 phy_reg &= ~CV_SMB_CTRL_FORCE_SMBUS;
1239 e1000_write_phy_reg_hv_locked(hw, CV_SMB_CTRL, phy_reg);
1240
1241 /* Unforce SMBus mode in MAC */
1242 mac_reg = er32(CTRL_EXT);
1243 mac_reg &= ~E1000_CTRL_EXT_FORCE_SMBUS;
1244 ew32(CTRL_EXT, mac_reg);
1245
1246 /* When ULP mode was previously entered, K1 was disabled by the
1247 * hardware. Re-Enable K1 in the PHY when exiting ULP.
1248 */
1249 ret_val = e1000_read_phy_reg_hv_locked(hw, HV_PM_CTRL, &phy_reg);
1250 if (ret_val)
1251 goto release;
1252 phy_reg |= HV_PM_CTRL_K1_ENABLE;
1253 e1000_write_phy_reg_hv_locked(hw, HV_PM_CTRL, phy_reg);
1254
1255 /* Clear ULP enabled configuration */
1256 ret_val = e1000_read_phy_reg_hv_locked(hw, I218_ULP_CONFIG1, &phy_reg);
1257 if (ret_val)
1258 goto release;
1259 phy_reg &= ~(I218_ULP_CONFIG1_IND |
1260 I218_ULP_CONFIG1_STICKY_ULP |
1261 I218_ULP_CONFIG1_RESET_TO_SMBUS |
1262 I218_ULP_CONFIG1_WOL_HOST |
1263 I218_ULP_CONFIG1_INBAND_EXIT |
1264 I218_ULP_CONFIG1_DISABLE_SMB_PERST);
1265 e1000_write_phy_reg_hv_locked(hw, I218_ULP_CONFIG1, phy_reg);
1266
1267 /* Commit ULP changes by starting auto ULP configuration */
1268 phy_reg |= I218_ULP_CONFIG1_START;
1269 e1000_write_phy_reg_hv_locked(hw, I218_ULP_CONFIG1, phy_reg);
1270
1271 /* Clear Disable SMBus Release on PERST# in MAC */
1272 mac_reg = er32(FEXTNVM7);
1273 mac_reg &= ~E1000_FEXTNVM7_DISABLE_SMB_PERST;
1274 ew32(FEXTNVM7, mac_reg);
1275
1276release:
1277 hw->phy.ops.release(hw);
1278 if (force) {
1279 e1000_phy_hw_reset(hw);
1280 msleep(50);
1281 }
1282out:
1283 if (ret_val)
1284 e_dbg("Error in ULP disable flow: %d\n", ret_val);
1285 else
1286 hw->dev_spec.ich8lan.ulp_state = e1000_ulp_state_off;
1287
1288 return ret_val;
1289}
1290
1291/**
Bruce Allan7d3cabb2009-07-01 13:29:08 +00001292 * e1000_check_for_copper_link_ich8lan - Check for link (Copper)
1293 * @hw: pointer to the HW structure
1294 *
1295 * Checks to see of the link status of the hardware has changed. If a
1296 * change in link status has been detected, then we read the PHY registers
1297 * to get the current speed/duplex if link exists.
1298 **/
1299static s32 e1000_check_for_copper_link_ich8lan(struct e1000_hw *hw)
1300{
1301 struct e1000_mac_info *mac = &hw->mac;
1302 s32 ret_val;
1303 bool link;
Bruce Allan1d2101a72011-07-22 06:21:56 +00001304 u16 phy_reg;
Bruce Allan7d3cabb2009-07-01 13:29:08 +00001305
Bruce Allane921eb12012-11-28 09:28:37 +00001306 /* We only want to go out to the PHY registers to see if Auto-Neg
Bruce Allan7d3cabb2009-07-01 13:29:08 +00001307 * has completed and/or if our link status has changed. The
1308 * get_link_status flag is set upon receiving a Link Status
1309 * Change or Rx Sequence Error interrupt.
1310 */
Bruce Allan5015e532012-02-08 02:55:56 +00001311 if (!mac->get_link_status)
1312 return 0;
Bruce Allan7d3cabb2009-07-01 13:29:08 +00001313
Bruce Allane921eb12012-11-28 09:28:37 +00001314 /* First we want to see if the MII Status Register reports
Bruce Allan7d3cabb2009-07-01 13:29:08 +00001315 * link. If so, then we want to get the current speed/duplex
1316 * of the PHY.
1317 */
1318 ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link);
1319 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001320 return ret_val;
Bruce Allan7d3cabb2009-07-01 13:29:08 +00001321
Bruce Allan1d5846b2009-10-29 13:46:05 +00001322 if (hw->mac.type == e1000_pchlan) {
1323 ret_val = e1000_k1_gig_workaround_hv(hw, link);
1324 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001325 return ret_val;
Bruce Allan1d5846b2009-10-29 13:46:05 +00001326 }
1327
David Ertmanfbb9ab12014-04-22 05:48:54 +00001328 /* When connected at 10Mbps half-duplex, some parts are excessively
Bruce Allan772d05c2013-03-06 09:02:36 +00001329 * aggressive resulting in many collisions. To avoid this, increase
1330 * the IPG and reduce Rx latency in the PHY.
1331 */
David Ertmanfbb9ab12014-04-22 05:48:54 +00001332 if (((hw->mac.type == e1000_pch2lan) ||
1333 (hw->mac.type == e1000_pch_lpt)) && link) {
Bruce Allan772d05c2013-03-06 09:02:36 +00001334 u32 reg;
1335 reg = er32(STATUS);
1336 if (!(reg & (E1000_STATUS_FD | E1000_STATUS_SPEED_MASK))) {
David Ertmanfbb9ab12014-04-22 05:48:54 +00001337 u16 emi_addr;
1338
Bruce Allan772d05c2013-03-06 09:02:36 +00001339 reg = er32(TIPG);
1340 reg &= ~E1000_TIPG_IPGT_MASK;
1341 reg |= 0xFF;
1342 ew32(TIPG, reg);
1343
1344 /* Reduce Rx latency in analog PHY */
1345 ret_val = hw->phy.ops.acquire(hw);
1346 if (ret_val)
1347 return ret_val;
1348
David Ertmanfbb9ab12014-04-22 05:48:54 +00001349 if (hw->mac.type == e1000_pch2lan)
1350 emi_addr = I82579_RX_CONFIG;
1351 else
1352 emi_addr = I217_RX_CONFIG;
1353
1354 ret_val = e1000_write_emi_reg_locked(hw, emi_addr, 0);
Bruce Allan772d05c2013-03-06 09:02:36 +00001355
1356 hw->phy.ops.release(hw);
1357
1358 if (ret_val)
1359 return ret_val;
1360 }
1361 }
1362
Bruce Allane08f6262013-02-20 03:06:34 +00001363 /* Work-around I218 hang issue */
1364 if ((hw->adapter->pdev->device == E1000_DEV_ID_PCH_LPTLP_I218_LM) ||
Bruce Allan91a3d822013-06-29 01:15:16 +00001365 (hw->adapter->pdev->device == E1000_DEV_ID_PCH_LPTLP_I218_V) ||
1366 (hw->adapter->pdev->device == E1000_DEV_ID_PCH_I218_LM3) ||
1367 (hw->adapter->pdev->device == E1000_DEV_ID_PCH_I218_V3)) {
Bruce Allane08f6262013-02-20 03:06:34 +00001368 ret_val = e1000_k1_workaround_lpt_lp(hw, link);
1369 if (ret_val)
1370 return ret_val;
1371 }
1372
Bruce Allancf8fb732013-03-06 09:03:02 +00001373 if (hw->mac.type == e1000_pch_lpt) {
1374 /* Set platform power management values for
1375 * Latency Tolerance Reporting (LTR)
1376 */
1377 ret_val = e1000_platform_pm_pch_lpt(hw, link);
1378 if (ret_val)
1379 return ret_val;
1380 }
1381
Bruce Allan2fbe4522012-04-19 03:21:47 +00001382 /* Clear link partner's EEE ability */
1383 hw->dev_spec.ich8lan.eee_lp_ability = 0;
1384
Bruce Allan7d3cabb2009-07-01 13:29:08 +00001385 if (!link)
Bruce Allane80bd1d2013-05-01 01:19:46 +00001386 return 0; /* No link detected */
Bruce Allan7d3cabb2009-07-01 13:29:08 +00001387
1388 mac->get_link_status = false;
1389
Bruce Allan1d2101a72011-07-22 06:21:56 +00001390 switch (hw->mac.type) {
1391 case e1000_pch2lan:
Bruce Allan831bd2e2010-09-22 17:16:18 +00001392 ret_val = e1000_k1_workaround_lv(hw);
1393 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001394 return ret_val;
Bruce Allan1d2101a72011-07-22 06:21:56 +00001395 /* fall-thru */
1396 case e1000_pchlan:
1397 if (hw->phy.type == e1000_phy_82578) {
1398 ret_val = e1000_link_stall_workaround_hv(hw);
1399 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001400 return ret_val;
Bruce Allan1d2101a72011-07-22 06:21:56 +00001401 }
1402
Bruce Allane921eb12012-11-28 09:28:37 +00001403 /* Workaround for PCHx parts in half-duplex:
Bruce Allan1d2101a72011-07-22 06:21:56 +00001404 * Set the number of preambles removed from the packet
1405 * when it is passed from the PHY to the MAC to prevent
1406 * the MAC from misinterpreting the packet type.
1407 */
1408 e1e_rphy(hw, HV_KMRN_FIFO_CTRLSTA, &phy_reg);
1409 phy_reg &= ~HV_KMRN_FIFO_CTRLSTA_PREAMBLE_MASK;
1410
1411 if ((er32(STATUS) & E1000_STATUS_FD) != E1000_STATUS_FD)
1412 phy_reg |= (1 << HV_KMRN_FIFO_CTRLSTA_PREAMBLE_SHIFT);
1413
1414 e1e_wphy(hw, HV_KMRN_FIFO_CTRLSTA, phy_reg);
1415 break;
1416 default:
1417 break;
Bruce Allan831bd2e2010-09-22 17:16:18 +00001418 }
1419
Bruce Allane921eb12012-11-28 09:28:37 +00001420 /* Check if there was DownShift, must be checked
Bruce Allan7d3cabb2009-07-01 13:29:08 +00001421 * immediately after link-up
1422 */
1423 e1000e_check_downshift(hw);
1424
Bruce Allane52997f2010-06-16 13:27:49 +00001425 /* Enable/Disable EEE after link up */
David Ertmana03206e2014-01-24 23:07:48 +00001426 if (hw->phy.type > e1000_phy_82579) {
1427 ret_val = e1000_set_eee_pchlan(hw);
1428 if (ret_val)
1429 return ret_val;
1430 }
Bruce Allane52997f2010-06-16 13:27:49 +00001431
Bruce Allane921eb12012-11-28 09:28:37 +00001432 /* If we are forcing speed/duplex, then we simply return since
Bruce Allan7d3cabb2009-07-01 13:29:08 +00001433 * we have already determined whether we have link or not.
1434 */
Bruce Allan5015e532012-02-08 02:55:56 +00001435 if (!mac->autoneg)
1436 return -E1000_ERR_CONFIG;
Bruce Allan7d3cabb2009-07-01 13:29:08 +00001437
Bruce Allane921eb12012-11-28 09:28:37 +00001438 /* Auto-Neg is enabled. Auto Speed Detection takes care
Bruce Allan7d3cabb2009-07-01 13:29:08 +00001439 * of MAC speed/duplex configuration. So we only need to
1440 * configure Collision Distance in the MAC.
1441 */
Bruce Allan57cde762012-02-22 09:02:58 +00001442 mac->ops.config_collision_dist(hw);
Bruce Allan7d3cabb2009-07-01 13:29:08 +00001443
Bruce Allane921eb12012-11-28 09:28:37 +00001444 /* Configure Flow Control now that Auto-Neg has completed.
Bruce Allan7d3cabb2009-07-01 13:29:08 +00001445 * First, we need to restore the desired flow control
1446 * settings because we may have had to re-autoneg with a
1447 * different link partner.
1448 */
1449 ret_val = e1000e_config_fc_after_link_up(hw);
1450 if (ret_val)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001451 e_dbg("Error configuring flow control\n");
Bruce Allan7d3cabb2009-07-01 13:29:08 +00001452
Bruce Allan7d3cabb2009-07-01 13:29:08 +00001453 return ret_val;
1454}
1455
Jeff Kirsher69e3fd82008-04-02 13:48:18 -07001456static s32 e1000_get_variants_ich8lan(struct e1000_adapter *adapter)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001457{
1458 struct e1000_hw *hw = &adapter->hw;
1459 s32 rc;
1460
Bruce Allanec34c172012-02-01 10:53:05 +00001461 rc = e1000_init_mac_params_ich8lan(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001462 if (rc)
1463 return rc;
1464
1465 rc = e1000_init_nvm_params_ich8lan(hw);
1466 if (rc)
1467 return rc;
1468
Bruce Alland3738bb2010-06-16 13:27:28 +00001469 switch (hw->mac.type) {
1470 case e1000_ich8lan:
1471 case e1000_ich9lan:
1472 case e1000_ich10lan:
Bruce Allana4f58f52009-06-02 11:29:18 +00001473 rc = e1000_init_phy_params_ich8lan(hw);
Bruce Alland3738bb2010-06-16 13:27:28 +00001474 break;
1475 case e1000_pchlan:
1476 case e1000_pch2lan:
Bruce Allan2fbe4522012-04-19 03:21:47 +00001477 case e1000_pch_lpt:
Bruce Alland3738bb2010-06-16 13:27:28 +00001478 rc = e1000_init_phy_params_pchlan(hw);
1479 break;
1480 default:
1481 break;
1482 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001483 if (rc)
1484 return rc;
1485
Bruce Allane921eb12012-11-28 09:28:37 +00001486 /* Disable Jumbo Frame support on parts with Intel 10/100 PHY or
Bruce Allan23e4f062011-02-25 07:44:51 +00001487 * on parts with MACsec enabled in NVM (reflected in CTRL_EXT).
1488 */
1489 if ((adapter->hw.phy.type == e1000_phy_ife) ||
1490 ((adapter->hw.mac.type >= e1000_pch2lan) &&
1491 (!(er32(CTRL_EXT) & E1000_CTRL_EXT_LSECCK)))) {
Bruce Allan2adc55c2009-06-02 11:28:58 +00001492 adapter->flags &= ~FLAG_HAS_JUMBO_FRAMES;
1493 adapter->max_hw_frame_size = ETH_FRAME_LEN + ETH_FCS_LEN;
Bruce Allandbf80dc2011-04-16 00:34:40 +00001494
1495 hw->mac.ops.blink_led = NULL;
Bruce Allan2adc55c2009-06-02 11:28:58 +00001496 }
1497
Auke Kokbc7f75f2007-09-17 12:30:59 -07001498 if ((adapter->hw.mac.type == e1000_ich8lan) &&
Bruce Allan462d5992011-09-30 08:07:11 +00001499 (adapter->hw.phy.type != e1000_phy_ife))
Auke Kokbc7f75f2007-09-17 12:30:59 -07001500 adapter->flags |= FLAG_LSC_GIG_SPEED_DROP;
1501
Bruce Allanc6e7f512011-07-29 05:53:02 +00001502 /* Enable workaround for 82579 w/ ME enabled */
1503 if ((adapter->hw.mac.type == e1000_pch2lan) &&
1504 (er32(FWSM) & E1000_ICH_FWSM_FW_VALID))
1505 adapter->flags2 |= FLAG2_PCIM2PCI_ARBITER_WA;
1506
Auke Kokbc7f75f2007-09-17 12:30:59 -07001507 return 0;
1508}
1509
Thomas Gleixner717d4382008-10-02 16:33:40 -07001510static DEFINE_MUTEX(nvm_mutex);
Thomas Gleixner717d4382008-10-02 16:33:40 -07001511
Auke Kokbc7f75f2007-09-17 12:30:59 -07001512/**
Bruce Allanca15df52009-10-26 11:23:43 +00001513 * e1000_acquire_nvm_ich8lan - Acquire NVM mutex
1514 * @hw: pointer to the HW structure
1515 *
1516 * Acquires the mutex for performing NVM operations.
1517 **/
Bruce Allan8bb62862013-01-16 08:46:49 +00001518static s32 e1000_acquire_nvm_ich8lan(struct e1000_hw __always_unused *hw)
Bruce Allanca15df52009-10-26 11:23:43 +00001519{
1520 mutex_lock(&nvm_mutex);
1521
1522 return 0;
1523}
1524
1525/**
1526 * e1000_release_nvm_ich8lan - Release NVM mutex
1527 * @hw: pointer to the HW structure
1528 *
1529 * Releases the mutex used while performing NVM operations.
1530 **/
Bruce Allan8bb62862013-01-16 08:46:49 +00001531static void e1000_release_nvm_ich8lan(struct e1000_hw __always_unused *hw)
Bruce Allanca15df52009-10-26 11:23:43 +00001532{
1533 mutex_unlock(&nvm_mutex);
Bruce Allanca15df52009-10-26 11:23:43 +00001534}
1535
Bruce Allanca15df52009-10-26 11:23:43 +00001536/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001537 * e1000_acquire_swflag_ich8lan - Acquire software control flag
1538 * @hw: pointer to the HW structure
1539 *
Bruce Allanca15df52009-10-26 11:23:43 +00001540 * Acquires the software control flag for performing PHY and select
1541 * MAC CSR accesses.
Auke Kokbc7f75f2007-09-17 12:30:59 -07001542 **/
1543static s32 e1000_acquire_swflag_ich8lan(struct e1000_hw *hw)
1544{
Bruce Allan373a88d2009-08-07 07:41:37 +00001545 u32 extcnf_ctrl, timeout = PHY_CFG_TIMEOUT;
1546 s32 ret_val = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001547
Bruce Allana90b4122011-10-07 03:50:38 +00001548 if (test_and_set_bit(__E1000_ACCESS_SHARED_RESOURCE,
1549 &hw->adapter->state)) {
Bruce Allan34c9ef82011-10-21 04:33:47 +00001550 e_dbg("contention for Phy access\n");
Bruce Allana90b4122011-10-07 03:50:38 +00001551 return -E1000_ERR_PHY;
1552 }
Thomas Gleixner717d4382008-10-02 16:33:40 -07001553
Auke Kokbc7f75f2007-09-17 12:30:59 -07001554 while (timeout) {
1555 extcnf_ctrl = er32(EXTCNF_CTRL);
Bruce Allan373a88d2009-08-07 07:41:37 +00001556 if (!(extcnf_ctrl & E1000_EXTCNF_CTRL_SWFLAG))
1557 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001558
Auke Kokbc7f75f2007-09-17 12:30:59 -07001559 mdelay(1);
1560 timeout--;
1561 }
1562
1563 if (!timeout) {
Bruce Allana90b4122011-10-07 03:50:38 +00001564 e_dbg("SW has already locked the resource.\n");
Bruce Allan373a88d2009-08-07 07:41:37 +00001565 ret_val = -E1000_ERR_CONFIG;
1566 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001567 }
1568
Bruce Allan53ac5a82009-10-26 11:23:06 +00001569 timeout = SW_FLAG_TIMEOUT;
Bruce Allan373a88d2009-08-07 07:41:37 +00001570
1571 extcnf_ctrl |= E1000_EXTCNF_CTRL_SWFLAG;
1572 ew32(EXTCNF_CTRL, extcnf_ctrl);
1573
1574 while (timeout) {
1575 extcnf_ctrl = er32(EXTCNF_CTRL);
1576 if (extcnf_ctrl & E1000_EXTCNF_CTRL_SWFLAG)
1577 break;
1578
1579 mdelay(1);
1580 timeout--;
1581 }
1582
1583 if (!timeout) {
Bruce Allan434f1392011-12-16 00:46:54 +00001584 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 +00001585 er32(FWSM), extcnf_ctrl);
Bruce Allan373a88d2009-08-07 07:41:37 +00001586 extcnf_ctrl &= ~E1000_EXTCNF_CTRL_SWFLAG;
1587 ew32(EXTCNF_CTRL, extcnf_ctrl);
1588 ret_val = -E1000_ERR_CONFIG;
1589 goto out;
1590 }
1591
1592out:
1593 if (ret_val)
Bruce Allana90b4122011-10-07 03:50:38 +00001594 clear_bit(__E1000_ACCESS_SHARED_RESOURCE, &hw->adapter->state);
Bruce Allan373a88d2009-08-07 07:41:37 +00001595
1596 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001597}
1598
1599/**
1600 * e1000_release_swflag_ich8lan - Release software control flag
1601 * @hw: pointer to the HW structure
1602 *
Bruce Allanca15df52009-10-26 11:23:43 +00001603 * Releases the software control flag for performing PHY and select
1604 * MAC CSR accesses.
Auke Kokbc7f75f2007-09-17 12:30:59 -07001605 **/
1606static void e1000_release_swflag_ich8lan(struct e1000_hw *hw)
1607{
1608 u32 extcnf_ctrl;
1609
1610 extcnf_ctrl = er32(EXTCNF_CTRL);
Bruce Allanc5caf482011-05-13 07:19:53 +00001611
1612 if (extcnf_ctrl & E1000_EXTCNF_CTRL_SWFLAG) {
1613 extcnf_ctrl &= ~E1000_EXTCNF_CTRL_SWFLAG;
1614 ew32(EXTCNF_CTRL, extcnf_ctrl);
1615 } else {
1616 e_dbg("Semaphore unexpectedly released by sw/fw/hw\n");
1617 }
Thomas Gleixner717d4382008-10-02 16:33:40 -07001618
Bruce Allana90b4122011-10-07 03:50:38 +00001619 clear_bit(__E1000_ACCESS_SHARED_RESOURCE, &hw->adapter->state);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001620}
1621
1622/**
Bruce Allan4662e822008-08-26 18:37:06 -07001623 * e1000_check_mng_mode_ich8lan - Checks management mode
1624 * @hw: pointer to the HW structure
1625 *
Bruce Allaneb7700d2010-06-16 13:27:05 +00001626 * This checks if the adapter has any manageability enabled.
Bruce Allan4662e822008-08-26 18:37:06 -07001627 * This is a function pointer entry point only called by read/write
1628 * routines for the PHY and NVM parts.
1629 **/
1630static bool e1000_check_mng_mode_ich8lan(struct e1000_hw *hw)
1631{
Bruce Allana708dd82009-11-20 23:28:37 +00001632 u32 fwsm;
1633
1634 fwsm = er32(FWSM);
Bruce Allanf0ff4392013-02-20 04:05:39 +00001635 return ((fwsm & E1000_ICH_FWSM_FW_VALID) &&
1636 ((fwsm & E1000_FWSM_MODE_MASK) ==
1637 (E1000_ICH_MNG_IAMT_MODE << E1000_FWSM_MODE_SHIFT)));
Bruce Allaneb7700d2010-06-16 13:27:05 +00001638}
Bruce Allan4662e822008-08-26 18:37:06 -07001639
Bruce Allaneb7700d2010-06-16 13:27:05 +00001640/**
1641 * e1000_check_mng_mode_pchlan - Checks management mode
1642 * @hw: pointer to the HW structure
1643 *
1644 * This checks if the adapter has iAMT enabled.
1645 * This is a function pointer entry point only called by read/write
1646 * routines for the PHY and NVM parts.
1647 **/
1648static bool e1000_check_mng_mode_pchlan(struct e1000_hw *hw)
1649{
1650 u32 fwsm;
1651
1652 fwsm = er32(FWSM);
1653 return (fwsm & E1000_ICH_FWSM_FW_VALID) &&
Bruce Allanf0ff4392013-02-20 04:05:39 +00001654 (fwsm & (E1000_ICH_MNG_IAMT_MODE << E1000_FWSM_MODE_SHIFT));
Bruce Allan4662e822008-08-26 18:37:06 -07001655}
1656
1657/**
Bruce Allan69e1e012012-04-14 03:28:50 +00001658 * e1000_rar_set_pch2lan - Set receive address register
1659 * @hw: pointer to the HW structure
1660 * @addr: pointer to the receive address
1661 * @index: receive address array register
1662 *
1663 * Sets the receive address array register at index to the address passed
1664 * in by addr. For 82579, RAR[0] is the base address register that is to
1665 * contain the MAC address but RAR[1-6] are reserved for manageability (ME).
1666 * Use SHRA[0-3] in place of those reserved for ME.
1667 **/
1668static void e1000_rar_set_pch2lan(struct e1000_hw *hw, u8 *addr, u32 index)
1669{
1670 u32 rar_low, rar_high;
1671
Bruce Allane921eb12012-11-28 09:28:37 +00001672 /* HW expects these in little endian so we reverse the byte order
Bruce Allan69e1e012012-04-14 03:28:50 +00001673 * from network order (big endian) to little endian
1674 */
1675 rar_low = ((u32)addr[0] |
1676 ((u32)addr[1] << 8) |
1677 ((u32)addr[2] << 16) | ((u32)addr[3] << 24));
1678
1679 rar_high = ((u32)addr[4] | ((u32)addr[5] << 8));
1680
1681 /* If MAC address zero, no need to set the AV bit */
1682 if (rar_low || rar_high)
1683 rar_high |= E1000_RAH_AV;
1684
1685 if (index == 0) {
1686 ew32(RAL(index), rar_low);
1687 e1e_flush();
1688 ew32(RAH(index), rar_high);
1689 e1e_flush();
1690 return;
1691 }
1692
David Ertmanc3a0dce2013-09-05 04:24:25 +00001693 /* RAR[1-6] are owned by manageability. Skip those and program the
1694 * next address into the SHRA register array.
1695 */
David Ertman96dee022014-03-05 07:50:46 +00001696 if (index < (u32)(hw->mac.rar_entry_count)) {
Bruce Allan69e1e012012-04-14 03:28:50 +00001697 s32 ret_val;
1698
1699 ret_val = e1000_acquire_swflag_ich8lan(hw);
1700 if (ret_val)
1701 goto out;
1702
1703 ew32(SHRAL(index - 1), rar_low);
1704 e1e_flush();
1705 ew32(SHRAH(index - 1), rar_high);
1706 e1e_flush();
1707
1708 e1000_release_swflag_ich8lan(hw);
1709
1710 /* verify the register updates */
1711 if ((er32(SHRAL(index - 1)) == rar_low) &&
1712 (er32(SHRAH(index - 1)) == rar_high))
1713 return;
1714
1715 e_dbg("SHRA[%d] might be locked by ME - FWSM=0x%8.8x\n",
1716 (index - 1), er32(FWSM));
1717 }
1718
1719out:
1720 e_dbg("Failed to write receive address at index %d\n", index);
1721}
1722
1723/**
Bruce Allan2fbe4522012-04-19 03:21:47 +00001724 * e1000_rar_set_pch_lpt - Set receive address registers
1725 * @hw: pointer to the HW structure
1726 * @addr: pointer to the receive address
1727 * @index: receive address array register
1728 *
1729 * Sets the receive address register array at index to the address passed
1730 * in by addr. For LPT, RAR[0] is the base address register that is to
1731 * contain the MAC address. SHRA[0-10] are the shared receive address
1732 * registers that are shared between the Host and manageability engine (ME).
1733 **/
1734static void e1000_rar_set_pch_lpt(struct e1000_hw *hw, u8 *addr, u32 index)
1735{
1736 u32 rar_low, rar_high;
1737 u32 wlock_mac;
1738
Bruce Allane921eb12012-11-28 09:28:37 +00001739 /* HW expects these in little endian so we reverse the byte order
Bruce Allan2fbe4522012-04-19 03:21:47 +00001740 * from network order (big endian) to little endian
1741 */
1742 rar_low = ((u32)addr[0] | ((u32)addr[1] << 8) |
1743 ((u32)addr[2] << 16) | ((u32)addr[3] << 24));
1744
1745 rar_high = ((u32)addr[4] | ((u32)addr[5] << 8));
1746
1747 /* If MAC address zero, no need to set the AV bit */
1748 if (rar_low || rar_high)
1749 rar_high |= E1000_RAH_AV;
1750
1751 if (index == 0) {
1752 ew32(RAL(index), rar_low);
1753 e1e_flush();
1754 ew32(RAH(index), rar_high);
1755 e1e_flush();
1756 return;
1757 }
1758
Bruce Allane921eb12012-11-28 09:28:37 +00001759 /* The manageability engine (ME) can lock certain SHRAR registers that
Bruce Allan2fbe4522012-04-19 03:21:47 +00001760 * it is using - those registers are unavailable for use.
1761 */
1762 if (index < hw->mac.rar_entry_count) {
1763 wlock_mac = er32(FWSM) & E1000_FWSM_WLOCK_MAC_MASK;
1764 wlock_mac >>= E1000_FWSM_WLOCK_MAC_SHIFT;
1765
1766 /* Check if all SHRAR registers are locked */
1767 if (wlock_mac == 1)
1768 goto out;
1769
1770 if ((wlock_mac == 0) || (index <= wlock_mac)) {
1771 s32 ret_val;
1772
1773 ret_val = e1000_acquire_swflag_ich8lan(hw);
1774
1775 if (ret_val)
1776 goto out;
1777
1778 ew32(SHRAL_PCH_LPT(index - 1), rar_low);
1779 e1e_flush();
1780 ew32(SHRAH_PCH_LPT(index - 1), rar_high);
1781 e1e_flush();
1782
1783 e1000_release_swflag_ich8lan(hw);
1784
1785 /* verify the register updates */
1786 if ((er32(SHRAL_PCH_LPT(index - 1)) == rar_low) &&
1787 (er32(SHRAH_PCH_LPT(index - 1)) == rar_high))
1788 return;
1789 }
1790 }
1791
1792out:
1793 e_dbg("Failed to write receive address at index %d\n", index);
1794}
1795
1796/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001797 * e1000_check_reset_block_ich8lan - Check if PHY reset is blocked
1798 * @hw: pointer to the HW structure
1799 *
1800 * Checks if firmware is blocking the reset of the PHY.
1801 * This is a function pointer entry point only called by
1802 * reset routines.
1803 **/
1804static s32 e1000_check_reset_block_ich8lan(struct e1000_hw *hw)
1805{
David Ertmanf7235ef2014-01-23 06:29:13 +00001806 bool blocked = false;
1807 int i = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001808
David Ertmanf7235ef2014-01-23 06:29:13 +00001809 while ((blocked = !(er32(FWSM) & E1000_ICH_FWSM_RSPCIPHY)) &&
1810 (i++ < 10))
1811 usleep_range(10000, 20000);
1812 return blocked ? E1000_BLK_PHY_RESET : 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001813}
1814
1815/**
Bruce Allan8395ae82010-09-22 17:15:08 +00001816 * e1000_write_smbus_addr - Write SMBus address to PHY needed during Sx states
1817 * @hw: pointer to the HW structure
1818 *
1819 * Assumes semaphore already acquired.
1820 *
1821 **/
1822static s32 e1000_write_smbus_addr(struct e1000_hw *hw)
1823{
1824 u16 phy_data;
1825 u32 strap = er32(STRAP);
Bruce Allan2fbe4522012-04-19 03:21:47 +00001826 u32 freq = (strap & E1000_STRAP_SMT_FREQ_MASK) >>
1827 E1000_STRAP_SMT_FREQ_SHIFT;
Bruce Allan70806a72013-01-05 05:08:37 +00001828 s32 ret_val;
Bruce Allan8395ae82010-09-22 17:15:08 +00001829
1830 strap &= E1000_STRAP_SMBUS_ADDRESS_MASK;
1831
1832 ret_val = e1000_read_phy_reg_hv_locked(hw, HV_SMB_ADDR, &phy_data);
1833 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001834 return ret_val;
Bruce Allan8395ae82010-09-22 17:15:08 +00001835
1836 phy_data &= ~HV_SMB_ADDR_MASK;
1837 phy_data |= (strap >> E1000_STRAP_SMBUS_ADDRESS_SHIFT);
1838 phy_data |= HV_SMB_ADDR_PEC_EN | HV_SMB_ADDR_VALID;
Bruce Allan8395ae82010-09-22 17:15:08 +00001839
Bruce Allan2fbe4522012-04-19 03:21:47 +00001840 if (hw->phy.type == e1000_phy_i217) {
1841 /* Restore SMBus frequency */
1842 if (freq--) {
1843 phy_data &= ~HV_SMB_ADDR_FREQ_MASK;
1844 phy_data |= (freq & (1 << 0)) <<
1845 HV_SMB_ADDR_FREQ_LOW_SHIFT;
1846 phy_data |= (freq & (1 << 1)) <<
1847 (HV_SMB_ADDR_FREQ_HIGH_SHIFT - 1);
1848 } else {
1849 e_dbg("Unsupported SMB frequency in PHY\n");
1850 }
1851 }
1852
Bruce Allan5015e532012-02-08 02:55:56 +00001853 return e1000_write_phy_reg_hv_locked(hw, HV_SMB_ADDR, phy_data);
Bruce Allan8395ae82010-09-22 17:15:08 +00001854}
1855
1856/**
Bruce Allanf523d212009-10-29 13:45:45 +00001857 * e1000_sw_lcd_config_ich8lan - SW-based LCD Configuration
1858 * @hw: pointer to the HW structure
1859 *
1860 * SW should configure the LCD from the NVM extended configuration region
1861 * as a workaround for certain parts.
1862 **/
1863static s32 e1000_sw_lcd_config_ich8lan(struct e1000_hw *hw)
1864{
1865 struct e1000_phy_info *phy = &hw->phy;
1866 u32 i, data, cnf_size, cnf_base_addr, sw_cfg_mask;
Bruce Allan8b802a72010-05-10 15:01:10 +00001867 s32 ret_val = 0;
Bruce Allanf523d212009-10-29 13:45:45 +00001868 u16 word_addr, reg_data, reg_addr, phy_page = 0;
1869
Bruce Allane921eb12012-11-28 09:28:37 +00001870 /* Initialize the PHY from the NVM on ICH platforms. This
Bruce Allanf523d212009-10-29 13:45:45 +00001871 * is needed due to an issue where the NVM configuration is
1872 * not properly autoloaded after power transitions.
1873 * Therefore, after each PHY reset, we will load the
1874 * configuration data out of the NVM manually.
1875 */
Bruce Allan3f0c16e2010-06-16 13:26:17 +00001876 switch (hw->mac.type) {
1877 case e1000_ich8lan:
1878 if (phy->type != e1000_phy_igp_3)
1879 return ret_val;
1880
Bruce Allan5f3eed62010-09-22 17:15:54 +00001881 if ((hw->adapter->pdev->device == E1000_DEV_ID_ICH8_IGP_AMT) ||
1882 (hw->adapter->pdev->device == E1000_DEV_ID_ICH8_IGP_C)) {
Bruce Allan3f0c16e2010-06-16 13:26:17 +00001883 sw_cfg_mask = E1000_FEXTNVM_SW_CONFIG;
1884 break;
1885 }
1886 /* Fall-thru */
1887 case e1000_pchlan:
Bruce Alland3738bb2010-06-16 13:27:28 +00001888 case e1000_pch2lan:
Bruce Allan2fbe4522012-04-19 03:21:47 +00001889 case e1000_pch_lpt:
Bruce Allan8b802a72010-05-10 15:01:10 +00001890 sw_cfg_mask = E1000_FEXTNVM_SW_CONFIG_ICH8M;
Bruce Allan3f0c16e2010-06-16 13:26:17 +00001891 break;
1892 default:
1893 return ret_val;
1894 }
1895
1896 ret_val = hw->phy.ops.acquire(hw);
1897 if (ret_val)
1898 return ret_val;
Bruce Allanf523d212009-10-29 13:45:45 +00001899
Bruce Allan8b802a72010-05-10 15:01:10 +00001900 data = er32(FEXTNVM);
1901 if (!(data & sw_cfg_mask))
Bruce Allan75ce1532012-02-08 02:54:48 +00001902 goto release;
Bruce Allanf523d212009-10-29 13:45:45 +00001903
Bruce Allane921eb12012-11-28 09:28:37 +00001904 /* Make sure HW does not configure LCD from PHY
Bruce Allan8b802a72010-05-10 15:01:10 +00001905 * extended configuration before SW configuration
1906 */
1907 data = er32(EXTCNF_CTRL);
Bruce Allan2fbe4522012-04-19 03:21:47 +00001908 if ((hw->mac.type < e1000_pch2lan) &&
1909 (data & E1000_EXTCNF_CTRL_LCD_WRITE_ENABLE))
1910 goto release;
Bruce Allanf523d212009-10-29 13:45:45 +00001911
Bruce Allan8b802a72010-05-10 15:01:10 +00001912 cnf_size = er32(EXTCNF_SIZE);
1913 cnf_size &= E1000_EXTCNF_SIZE_EXT_PCIE_LENGTH_MASK;
1914 cnf_size >>= E1000_EXTCNF_SIZE_EXT_PCIE_LENGTH_SHIFT;
1915 if (!cnf_size)
Bruce Allan75ce1532012-02-08 02:54:48 +00001916 goto release;
Bruce Allan8b802a72010-05-10 15:01:10 +00001917
1918 cnf_base_addr = data & E1000_EXTCNF_CTRL_EXT_CNF_POINTER_MASK;
1919 cnf_base_addr >>= E1000_EXTCNF_CTRL_EXT_CNF_POINTER_SHIFT;
1920
Bruce Allan2fbe4522012-04-19 03:21:47 +00001921 if (((hw->mac.type == e1000_pchlan) &&
1922 !(data & E1000_EXTCNF_CTRL_OEM_WRITE_ENABLE)) ||
1923 (hw->mac.type > e1000_pchlan)) {
Bruce Allane921eb12012-11-28 09:28:37 +00001924 /* HW configures the SMBus address and LEDs when the
Bruce Allan8b802a72010-05-10 15:01:10 +00001925 * OEM and LCD Write Enable bits are set in the NVM.
1926 * When both NVM bits are cleared, SW will configure
1927 * them instead.
Bruce Allanf523d212009-10-29 13:45:45 +00001928 */
Bruce Allan8395ae82010-09-22 17:15:08 +00001929 ret_val = e1000_write_smbus_addr(hw);
Bruce Allan8b802a72010-05-10 15:01:10 +00001930 if (ret_val)
Bruce Allan75ce1532012-02-08 02:54:48 +00001931 goto release;
Bruce Allanf523d212009-10-29 13:45:45 +00001932
Bruce Allan8b802a72010-05-10 15:01:10 +00001933 data = er32(LEDCTL);
1934 ret_val = e1000_write_phy_reg_hv_locked(hw, HV_LED_CONFIG,
1935 (u16)data);
1936 if (ret_val)
Bruce Allan75ce1532012-02-08 02:54:48 +00001937 goto release;
Bruce Allan8b802a72010-05-10 15:01:10 +00001938 }
1939
1940 /* Configure LCD from extended configuration region. */
1941
1942 /* cnf_base_addr is in DWORD */
1943 word_addr = (u16)(cnf_base_addr << 1);
1944
1945 for (i = 0; i < cnf_size; i++) {
Bruce Allane5fe2542013-02-20 04:06:27 +00001946 ret_val = e1000_read_nvm(hw, (word_addr + i * 2), 1, &reg_data);
Bruce Allan8b802a72010-05-10 15:01:10 +00001947 if (ret_val)
Bruce Allan75ce1532012-02-08 02:54:48 +00001948 goto release;
Bruce Allanf523d212009-10-29 13:45:45 +00001949
Bruce Allan8b802a72010-05-10 15:01:10 +00001950 ret_val = e1000_read_nvm(hw, (word_addr + i * 2 + 1),
1951 1, &reg_addr);
1952 if (ret_val)
Bruce Allan75ce1532012-02-08 02:54:48 +00001953 goto release;
Bruce Allanf523d212009-10-29 13:45:45 +00001954
Bruce Allan8b802a72010-05-10 15:01:10 +00001955 /* Save off the PHY page for future writes. */
1956 if (reg_addr == IGP01E1000_PHY_PAGE_SELECT) {
1957 phy_page = reg_data;
1958 continue;
Bruce Allanf523d212009-10-29 13:45:45 +00001959 }
Bruce Allanf523d212009-10-29 13:45:45 +00001960
Bruce Allan8b802a72010-05-10 15:01:10 +00001961 reg_addr &= PHY_REG_MASK;
1962 reg_addr |= phy_page;
Bruce Allanf523d212009-10-29 13:45:45 +00001963
Bruce Allanf1430d62012-04-14 04:21:52 +00001964 ret_val = e1e_wphy_locked(hw, (u32)reg_addr, reg_data);
Bruce Allan8b802a72010-05-10 15:01:10 +00001965 if (ret_val)
Bruce Allan75ce1532012-02-08 02:54:48 +00001966 goto release;
Bruce Allanf523d212009-10-29 13:45:45 +00001967 }
1968
Bruce Allan75ce1532012-02-08 02:54:48 +00001969release:
Bruce Allan94d81862009-11-20 23:25:26 +00001970 hw->phy.ops.release(hw);
Bruce Allanf523d212009-10-29 13:45:45 +00001971 return ret_val;
1972}
1973
1974/**
Bruce Allan1d5846b2009-10-29 13:46:05 +00001975 * e1000_k1_gig_workaround_hv - K1 Si workaround
1976 * @hw: pointer to the HW structure
1977 * @link: link up bool flag
1978 *
1979 * If K1 is enabled for 1Gbps, the MAC might stall when transitioning
1980 * from a lower speed. This workaround disables K1 whenever link is at 1Gig
1981 * If link is down, the function will restore the default K1 setting located
1982 * in the NVM.
1983 **/
1984static s32 e1000_k1_gig_workaround_hv(struct e1000_hw *hw, bool link)
1985{
1986 s32 ret_val = 0;
1987 u16 status_reg = 0;
1988 bool k1_enable = hw->dev_spec.ich8lan.nvm_k1_enabled;
1989
1990 if (hw->mac.type != e1000_pchlan)
Bruce Allan5015e532012-02-08 02:55:56 +00001991 return 0;
Bruce Allan1d5846b2009-10-29 13:46:05 +00001992
1993 /* Wrap the whole flow with the sw flag */
Bruce Allan94d81862009-11-20 23:25:26 +00001994 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan1d5846b2009-10-29 13:46:05 +00001995 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001996 return ret_val;
Bruce Allan1d5846b2009-10-29 13:46:05 +00001997
1998 /* Disable K1 when link is 1Gbps, otherwise use the NVM setting */
1999 if (link) {
2000 if (hw->phy.type == e1000_phy_82578) {
Bruce Allanf1430d62012-04-14 04:21:52 +00002001 ret_val = e1e_rphy_locked(hw, BM_CS_STATUS,
2002 &status_reg);
Bruce Allan1d5846b2009-10-29 13:46:05 +00002003 if (ret_val)
2004 goto release;
2005
Bruce Allanf0ff4392013-02-20 04:05:39 +00002006 status_reg &= (BM_CS_STATUS_LINK_UP |
2007 BM_CS_STATUS_RESOLVED |
2008 BM_CS_STATUS_SPEED_MASK);
Bruce Allan1d5846b2009-10-29 13:46:05 +00002009
2010 if (status_reg == (BM_CS_STATUS_LINK_UP |
Bruce Allanf0ff4392013-02-20 04:05:39 +00002011 BM_CS_STATUS_RESOLVED |
2012 BM_CS_STATUS_SPEED_1000))
Bruce Allan1d5846b2009-10-29 13:46:05 +00002013 k1_enable = false;
2014 }
2015
2016 if (hw->phy.type == e1000_phy_82577) {
Bruce Allanf1430d62012-04-14 04:21:52 +00002017 ret_val = e1e_rphy_locked(hw, HV_M_STATUS, &status_reg);
Bruce Allan1d5846b2009-10-29 13:46:05 +00002018 if (ret_val)
2019 goto release;
2020
Bruce Allanf0ff4392013-02-20 04:05:39 +00002021 status_reg &= (HV_M_STATUS_LINK_UP |
2022 HV_M_STATUS_AUTONEG_COMPLETE |
2023 HV_M_STATUS_SPEED_MASK);
Bruce Allan1d5846b2009-10-29 13:46:05 +00002024
2025 if (status_reg == (HV_M_STATUS_LINK_UP |
Bruce Allanf0ff4392013-02-20 04:05:39 +00002026 HV_M_STATUS_AUTONEG_COMPLETE |
2027 HV_M_STATUS_SPEED_1000))
Bruce Allan1d5846b2009-10-29 13:46:05 +00002028 k1_enable = false;
2029 }
2030
2031 /* Link stall fix for link up */
Bruce Allanf1430d62012-04-14 04:21:52 +00002032 ret_val = e1e_wphy_locked(hw, PHY_REG(770, 19), 0x0100);
Bruce Allan1d5846b2009-10-29 13:46:05 +00002033 if (ret_val)
2034 goto release;
2035
2036 } else {
2037 /* Link stall fix for link down */
Bruce Allanf1430d62012-04-14 04:21:52 +00002038 ret_val = e1e_wphy_locked(hw, PHY_REG(770, 19), 0x4100);
Bruce Allan1d5846b2009-10-29 13:46:05 +00002039 if (ret_val)
2040 goto release;
2041 }
2042
2043 ret_val = e1000_configure_k1_ich8lan(hw, k1_enable);
2044
2045release:
Bruce Allan94d81862009-11-20 23:25:26 +00002046 hw->phy.ops.release(hw);
Bruce Allan5015e532012-02-08 02:55:56 +00002047
Bruce Allan1d5846b2009-10-29 13:46:05 +00002048 return ret_val;
2049}
2050
2051/**
2052 * e1000_configure_k1_ich8lan - Configure K1 power state
2053 * @hw: pointer to the HW structure
2054 * @enable: K1 state to configure
2055 *
2056 * Configure the K1 power state based on the provided parameter.
2057 * Assumes semaphore already acquired.
2058 *
2059 * Success returns 0, Failure returns -E1000_ERR_PHY (-2)
2060 **/
Bruce Allanbb436b22009-11-20 23:24:11 +00002061s32 e1000_configure_k1_ich8lan(struct e1000_hw *hw, bool k1_enable)
Bruce Allan1d5846b2009-10-29 13:46:05 +00002062{
Bruce Allan70806a72013-01-05 05:08:37 +00002063 s32 ret_val;
Bruce Allan1d5846b2009-10-29 13:46:05 +00002064 u32 ctrl_reg = 0;
2065 u32 ctrl_ext = 0;
2066 u32 reg = 0;
2067 u16 kmrn_reg = 0;
2068
Bruce Allan3d3a1672012-02-23 03:13:18 +00002069 ret_val = e1000e_read_kmrn_reg_locked(hw, E1000_KMRNCTRLSTA_K1_CONFIG,
2070 &kmrn_reg);
Bruce Allan1d5846b2009-10-29 13:46:05 +00002071 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002072 return ret_val;
Bruce Allan1d5846b2009-10-29 13:46:05 +00002073
2074 if (k1_enable)
2075 kmrn_reg |= E1000_KMRNCTRLSTA_K1_ENABLE;
2076 else
2077 kmrn_reg &= ~E1000_KMRNCTRLSTA_K1_ENABLE;
2078
Bruce Allan3d3a1672012-02-23 03:13:18 +00002079 ret_val = e1000e_write_kmrn_reg_locked(hw, E1000_KMRNCTRLSTA_K1_CONFIG,
2080 kmrn_reg);
Bruce Allan1d5846b2009-10-29 13:46:05 +00002081 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002082 return ret_val;
Bruce Allan1d5846b2009-10-29 13:46:05 +00002083
Bruce Allance43a212013-02-20 04:06:32 +00002084 usleep_range(20, 40);
Bruce Allan1d5846b2009-10-29 13:46:05 +00002085 ctrl_ext = er32(CTRL_EXT);
2086 ctrl_reg = er32(CTRL);
2087
2088 reg = ctrl_reg & ~(E1000_CTRL_SPD_1000 | E1000_CTRL_SPD_100);
2089 reg |= E1000_CTRL_FRCSPD;
2090 ew32(CTRL, reg);
2091
2092 ew32(CTRL_EXT, ctrl_ext | E1000_CTRL_EXT_SPD_BYPS);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00002093 e1e_flush();
Bruce Allance43a212013-02-20 04:06:32 +00002094 usleep_range(20, 40);
Bruce Allan1d5846b2009-10-29 13:46:05 +00002095 ew32(CTRL, ctrl_reg);
2096 ew32(CTRL_EXT, ctrl_ext);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00002097 e1e_flush();
Bruce Allance43a212013-02-20 04:06:32 +00002098 usleep_range(20, 40);
Bruce Allan1d5846b2009-10-29 13:46:05 +00002099
Bruce Allan5015e532012-02-08 02:55:56 +00002100 return 0;
Bruce Allan1d5846b2009-10-29 13:46:05 +00002101}
2102
2103/**
Bruce Allanf523d212009-10-29 13:45:45 +00002104 * e1000_oem_bits_config_ich8lan - SW-based LCD Configuration
2105 * @hw: pointer to the HW structure
2106 * @d0_state: boolean if entering d0 or d3 device state
2107 *
2108 * SW will configure Gbe Disable and LPLU based on the NVM. The four bits are
2109 * collectively called OEM bits. The OEM Write Enable bit and SW Config bit
2110 * in NVM determines whether HW should configure LPLU and Gbe Disable.
2111 **/
2112static s32 e1000_oem_bits_config_ich8lan(struct e1000_hw *hw, bool d0_state)
2113{
2114 s32 ret_val = 0;
2115 u32 mac_reg;
2116 u16 oem_reg;
2117
Bruce Allan2fbe4522012-04-19 03:21:47 +00002118 if (hw->mac.type < e1000_pchlan)
Bruce Allanf523d212009-10-29 13:45:45 +00002119 return ret_val;
2120
Bruce Allan94d81862009-11-20 23:25:26 +00002121 ret_val = hw->phy.ops.acquire(hw);
Bruce Allanf523d212009-10-29 13:45:45 +00002122 if (ret_val)
2123 return ret_val;
2124
Bruce Allan2fbe4522012-04-19 03:21:47 +00002125 if (hw->mac.type == e1000_pchlan) {
Bruce Alland3738bb2010-06-16 13:27:28 +00002126 mac_reg = er32(EXTCNF_CTRL);
2127 if (mac_reg & E1000_EXTCNF_CTRL_OEM_WRITE_ENABLE)
Bruce Allan75ce1532012-02-08 02:54:48 +00002128 goto release;
Bruce Alland3738bb2010-06-16 13:27:28 +00002129 }
Bruce Allanf523d212009-10-29 13:45:45 +00002130
2131 mac_reg = er32(FEXTNVM);
2132 if (!(mac_reg & E1000_FEXTNVM_SW_CONFIG_ICH8M))
Bruce Allan75ce1532012-02-08 02:54:48 +00002133 goto release;
Bruce Allanf523d212009-10-29 13:45:45 +00002134
2135 mac_reg = er32(PHY_CTRL);
2136
Bruce Allanf1430d62012-04-14 04:21:52 +00002137 ret_val = e1e_rphy_locked(hw, HV_OEM_BITS, &oem_reg);
Bruce Allanf523d212009-10-29 13:45:45 +00002138 if (ret_val)
Bruce Allan75ce1532012-02-08 02:54:48 +00002139 goto release;
Bruce Allanf523d212009-10-29 13:45:45 +00002140
2141 oem_reg &= ~(HV_OEM_BITS_GBE_DIS | HV_OEM_BITS_LPLU);
2142
2143 if (d0_state) {
2144 if (mac_reg & E1000_PHY_CTRL_GBE_DISABLE)
2145 oem_reg |= HV_OEM_BITS_GBE_DIS;
2146
2147 if (mac_reg & E1000_PHY_CTRL_D0A_LPLU)
2148 oem_reg |= HV_OEM_BITS_LPLU;
2149 } else {
Bruce Allan03299e42011-09-30 08:07:05 +00002150 if (mac_reg & (E1000_PHY_CTRL_GBE_DISABLE |
2151 E1000_PHY_CTRL_NOND0A_GBE_DISABLE))
Bruce Allanf523d212009-10-29 13:45:45 +00002152 oem_reg |= HV_OEM_BITS_GBE_DIS;
2153
Bruce Allan03299e42011-09-30 08:07:05 +00002154 if (mac_reg & (E1000_PHY_CTRL_D0A_LPLU |
2155 E1000_PHY_CTRL_NOND0A_LPLU))
Bruce Allanf523d212009-10-29 13:45:45 +00002156 oem_reg |= HV_OEM_BITS_LPLU;
2157 }
Bruce Allan03299e42011-09-30 08:07:05 +00002158
Bruce Allan92fe1732012-04-12 06:27:03 +00002159 /* Set Restart auto-neg to activate the bits */
2160 if ((d0_state || (hw->mac.type != e1000_pchlan)) &&
2161 !hw->phy.ops.check_reset_block(hw))
2162 oem_reg |= HV_OEM_BITS_RESTART_AN;
2163
Bruce Allanf1430d62012-04-14 04:21:52 +00002164 ret_val = e1e_wphy_locked(hw, HV_OEM_BITS, oem_reg);
Bruce Allanf523d212009-10-29 13:45:45 +00002165
Bruce Allan75ce1532012-02-08 02:54:48 +00002166release:
Bruce Allan94d81862009-11-20 23:25:26 +00002167 hw->phy.ops.release(hw);
Bruce Allanf523d212009-10-29 13:45:45 +00002168
2169 return ret_val;
2170}
2171
Bruce Allanf523d212009-10-29 13:45:45 +00002172/**
Bruce Allanfddaa1a2010-01-13 01:52:49 +00002173 * e1000_set_mdio_slow_mode_hv - Set slow MDIO access mode
2174 * @hw: pointer to the HW structure
2175 **/
2176static s32 e1000_set_mdio_slow_mode_hv(struct e1000_hw *hw)
2177{
2178 s32 ret_val;
2179 u16 data;
2180
2181 ret_val = e1e_rphy(hw, HV_KMRN_MODE_CTRL, &data);
2182 if (ret_val)
2183 return ret_val;
2184
2185 data |= HV_KMRN_MDIO_SLOW;
2186
2187 ret_val = e1e_wphy(hw, HV_KMRN_MODE_CTRL, data);
2188
2189 return ret_val;
2190}
2191
2192/**
Bruce Allana4f58f52009-06-02 11:29:18 +00002193 * e1000_hv_phy_workarounds_ich8lan - A series of Phy workarounds to be
2194 * done after every PHY reset.
2195 **/
2196static s32 e1000_hv_phy_workarounds_ich8lan(struct e1000_hw *hw)
2197{
2198 s32 ret_val = 0;
Bruce Allanbaf86c92010-01-13 01:53:08 +00002199 u16 phy_data;
Bruce Allana4f58f52009-06-02 11:29:18 +00002200
2201 if (hw->mac.type != e1000_pchlan)
Bruce Allan5015e532012-02-08 02:55:56 +00002202 return 0;
Bruce Allana4f58f52009-06-02 11:29:18 +00002203
Bruce Allanfddaa1a2010-01-13 01:52:49 +00002204 /* Set MDIO slow mode before any other MDIO access */
2205 if (hw->phy.type == e1000_phy_82577) {
2206 ret_val = e1000_set_mdio_slow_mode_hv(hw);
2207 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002208 return ret_val;
Bruce Allanfddaa1a2010-01-13 01:52:49 +00002209 }
2210
Bruce Allana4f58f52009-06-02 11:29:18 +00002211 if (((hw->phy.type == e1000_phy_82577) &&
2212 ((hw->phy.revision == 1) || (hw->phy.revision == 2))) ||
2213 ((hw->phy.type == e1000_phy_82578) && (hw->phy.revision == 1))) {
2214 /* Disable generation of early preamble */
2215 ret_val = e1e_wphy(hw, PHY_REG(769, 25), 0x4431);
2216 if (ret_val)
2217 return ret_val;
2218
2219 /* Preamble tuning for SSC */
Bruce Allan1d2101a72011-07-22 06:21:56 +00002220 ret_val = e1e_wphy(hw, HV_KMRN_FIFO_CTRLSTA, 0xA204);
Bruce Allana4f58f52009-06-02 11:29:18 +00002221 if (ret_val)
2222 return ret_val;
2223 }
2224
2225 if (hw->phy.type == e1000_phy_82578) {
Bruce Allane921eb12012-11-28 09:28:37 +00002226 /* Return registers to default by doing a soft reset then
Bruce Allana4f58f52009-06-02 11:29:18 +00002227 * writing 0x3140 to the control register.
2228 */
2229 if (hw->phy.revision < 2) {
2230 e1000e_phy_sw_reset(hw);
Bruce Allanc2ade1a2013-01-16 08:54:35 +00002231 ret_val = e1e_wphy(hw, MII_BMCR, 0x3140);
Bruce Allana4f58f52009-06-02 11:29:18 +00002232 }
2233 }
2234
2235 /* Select page 0 */
Bruce Allan94d81862009-11-20 23:25:26 +00002236 ret_val = hw->phy.ops.acquire(hw);
Bruce Allana4f58f52009-06-02 11:29:18 +00002237 if (ret_val)
2238 return ret_val;
Bruce Allan1d5846b2009-10-29 13:46:05 +00002239
Bruce Allana4f58f52009-06-02 11:29:18 +00002240 hw->phy.addr = 1;
Bruce Allan1d5846b2009-10-29 13:46:05 +00002241 ret_val = e1000e_write_phy_reg_mdic(hw, IGP01E1000_PHY_PAGE_SELECT, 0);
Bruce Allanbaf86c92010-01-13 01:53:08 +00002242 hw->phy.ops.release(hw);
Bruce Allan1d5846b2009-10-29 13:46:05 +00002243 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002244 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00002245
Bruce Allane921eb12012-11-28 09:28:37 +00002246 /* Configure the K1 Si workaround during phy reset assuming there is
Bruce Allan1d5846b2009-10-29 13:46:05 +00002247 * link so that it disables K1 if link is in 1Gbps.
2248 */
2249 ret_val = e1000_k1_gig_workaround_hv(hw, true);
Bruce Allanbaf86c92010-01-13 01:53:08 +00002250 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002251 return ret_val;
Bruce Allan1d5846b2009-10-29 13:46:05 +00002252
Bruce Allanbaf86c92010-01-13 01:53:08 +00002253 /* Workaround for link disconnects on a busy hub in half duplex */
2254 ret_val = hw->phy.ops.acquire(hw);
2255 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002256 return ret_val;
Bruce Allanf1430d62012-04-14 04:21:52 +00002257 ret_val = e1e_rphy_locked(hw, BM_PORT_GEN_CFG, &phy_data);
Bruce Allanbaf86c92010-01-13 01:53:08 +00002258 if (ret_val)
2259 goto release;
Bruce Allanf1430d62012-04-14 04:21:52 +00002260 ret_val = e1e_wphy_locked(hw, BM_PORT_GEN_CFG, phy_data & 0x00FF);
Bruce Allan651fb102012-12-05 06:26:03 +00002261 if (ret_val)
2262 goto release;
2263
2264 /* set MSE higher to enable link to stay up when noise is high */
2265 ret_val = e1000_write_emi_reg_locked(hw, I82577_MSE_THRESHOLD, 0x0034);
Bruce Allanbaf86c92010-01-13 01:53:08 +00002266release:
2267 hw->phy.ops.release(hw);
Bruce Allan5015e532012-02-08 02:55:56 +00002268
Bruce Allana4f58f52009-06-02 11:29:18 +00002269 return ret_val;
2270}
2271
2272/**
Bruce Alland3738bb2010-06-16 13:27:28 +00002273 * e1000_copy_rx_addrs_to_phy_ich8lan - Copy Rx addresses from MAC to PHY
2274 * @hw: pointer to the HW structure
2275 **/
2276void e1000_copy_rx_addrs_to_phy_ich8lan(struct e1000_hw *hw)
2277{
2278 u32 mac_reg;
Bruce Allan2b6b1682011-05-13 07:20:09 +00002279 u16 i, phy_reg = 0;
2280 s32 ret_val;
2281
2282 ret_val = hw->phy.ops.acquire(hw);
2283 if (ret_val)
2284 return;
2285 ret_val = e1000_enable_phy_wakeup_reg_access_bm(hw, &phy_reg);
2286 if (ret_val)
2287 goto release;
Bruce Alland3738bb2010-06-16 13:27:28 +00002288
David Ertmanc3a0dce2013-09-05 04:24:25 +00002289 /* Copy both RAL/H (rar_entry_count) and SHRAL/H to PHY */
2290 for (i = 0; i < (hw->mac.rar_entry_count); i++) {
Bruce Alland3738bb2010-06-16 13:27:28 +00002291 mac_reg = er32(RAL(i));
Bruce Allan2b6b1682011-05-13 07:20:09 +00002292 hw->phy.ops.write_reg_page(hw, BM_RAR_L(i),
2293 (u16)(mac_reg & 0xFFFF));
2294 hw->phy.ops.write_reg_page(hw, BM_RAR_M(i),
2295 (u16)((mac_reg >> 16) & 0xFFFF));
2296
Bruce Alland3738bb2010-06-16 13:27:28 +00002297 mac_reg = er32(RAH(i));
Bruce Allan2b6b1682011-05-13 07:20:09 +00002298 hw->phy.ops.write_reg_page(hw, BM_RAR_H(i),
2299 (u16)(mac_reg & 0xFFFF));
2300 hw->phy.ops.write_reg_page(hw, BM_RAR_CTRL(i),
2301 (u16)((mac_reg & E1000_RAH_AV)
2302 >> 16));
Bruce Alland3738bb2010-06-16 13:27:28 +00002303 }
Bruce Allan2b6b1682011-05-13 07:20:09 +00002304
2305 e1000_disable_phy_wakeup_reg_access_bm(hw, &phy_reg);
2306
2307release:
2308 hw->phy.ops.release(hw);
Bruce Alland3738bb2010-06-16 13:27:28 +00002309}
2310
Bruce Alland3738bb2010-06-16 13:27:28 +00002311/**
2312 * e1000_lv_jumbo_workaround_ich8lan - required for jumbo frame operation
2313 * with 82579 PHY
2314 * @hw: pointer to the HW structure
2315 * @enable: flag to enable/disable workaround when enabling/disabling jumbos
2316 **/
2317s32 e1000_lv_jumbo_workaround_ich8lan(struct e1000_hw *hw, bool enable)
2318{
2319 s32 ret_val = 0;
2320 u16 phy_reg, data;
2321 u32 mac_reg;
2322 u16 i;
2323
Bruce Allan2fbe4522012-04-19 03:21:47 +00002324 if (hw->mac.type < e1000_pch2lan)
Bruce Allan5015e532012-02-08 02:55:56 +00002325 return 0;
Bruce Alland3738bb2010-06-16 13:27:28 +00002326
2327 /* disable Rx path while enabling/disabling workaround */
2328 e1e_rphy(hw, PHY_REG(769, 20), &phy_reg);
2329 ret_val = e1e_wphy(hw, PHY_REG(769, 20), phy_reg | (1 << 14));
2330 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002331 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002332
2333 if (enable) {
David Ertmanc3a0dce2013-09-05 04:24:25 +00002334 /* Write Rx addresses (rar_entry_count for RAL/H, and
Bruce Alland3738bb2010-06-16 13:27:28 +00002335 * SHRAL/H) and initial CRC values to the MAC
2336 */
David Ertmanc3a0dce2013-09-05 04:24:25 +00002337 for (i = 0; i < hw->mac.rar_entry_count; i++) {
Bruce Allan362e20c2013-02-20 04:05:45 +00002338 u8 mac_addr[ETH_ALEN] = { 0 };
Bruce Alland3738bb2010-06-16 13:27:28 +00002339 u32 addr_high, addr_low;
2340
2341 addr_high = er32(RAH(i));
2342 if (!(addr_high & E1000_RAH_AV))
2343 continue;
2344 addr_low = er32(RAL(i));
2345 mac_addr[0] = (addr_low & 0xFF);
2346 mac_addr[1] = ((addr_low >> 8) & 0xFF);
2347 mac_addr[2] = ((addr_low >> 16) & 0xFF);
2348 mac_addr[3] = ((addr_low >> 24) & 0xFF);
2349 mac_addr[4] = (addr_high & 0xFF);
2350 mac_addr[5] = ((addr_high >> 8) & 0xFF);
2351
Bruce Allanfe46f582011-01-06 14:29:51 +00002352 ew32(PCH_RAICC(i), ~ether_crc_le(ETH_ALEN, mac_addr));
Bruce Alland3738bb2010-06-16 13:27:28 +00002353 }
2354
2355 /* Write Rx addresses to the PHY */
2356 e1000_copy_rx_addrs_to_phy_ich8lan(hw);
2357
2358 /* Enable jumbo frame workaround in the MAC */
2359 mac_reg = er32(FFLT_DBG);
2360 mac_reg &= ~(1 << 14);
2361 mac_reg |= (7 << 15);
2362 ew32(FFLT_DBG, mac_reg);
2363
2364 mac_reg = er32(RCTL);
2365 mac_reg |= E1000_RCTL_SECRC;
2366 ew32(RCTL, mac_reg);
2367
2368 ret_val = e1000e_read_kmrn_reg(hw,
Bruce Allan17e813e2013-02-20 04:06:01 +00002369 E1000_KMRNCTRLSTA_CTRL_OFFSET,
2370 &data);
Bruce Alland3738bb2010-06-16 13:27:28 +00002371 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002372 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002373 ret_val = e1000e_write_kmrn_reg(hw,
2374 E1000_KMRNCTRLSTA_CTRL_OFFSET,
2375 data | (1 << 0));
2376 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002377 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002378 ret_val = e1000e_read_kmrn_reg(hw,
Bruce Allan17e813e2013-02-20 04:06:01 +00002379 E1000_KMRNCTRLSTA_HD_CTRL,
2380 &data);
Bruce Alland3738bb2010-06-16 13:27:28 +00002381 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002382 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002383 data &= ~(0xF << 8);
2384 data |= (0xB << 8);
2385 ret_val = e1000e_write_kmrn_reg(hw,
2386 E1000_KMRNCTRLSTA_HD_CTRL,
2387 data);
2388 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002389 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002390
2391 /* Enable jumbo frame workaround in the PHY */
Bruce Alland3738bb2010-06-16 13:27:28 +00002392 e1e_rphy(hw, PHY_REG(769, 23), &data);
2393 data &= ~(0x7F << 5);
2394 data |= (0x37 << 5);
2395 ret_val = e1e_wphy(hw, PHY_REG(769, 23), data);
2396 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002397 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002398 e1e_rphy(hw, PHY_REG(769, 16), &data);
2399 data &= ~(1 << 13);
Bruce Alland3738bb2010-06-16 13:27:28 +00002400 ret_val = e1e_wphy(hw, PHY_REG(769, 16), data);
2401 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002402 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002403 e1e_rphy(hw, PHY_REG(776, 20), &data);
2404 data &= ~(0x3FF << 2);
2405 data |= (0x1A << 2);
2406 ret_val = e1e_wphy(hw, PHY_REG(776, 20), data);
2407 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002408 return ret_val;
Bruce Allanb64e9dd2011-09-30 08:07:00 +00002409 ret_val = e1e_wphy(hw, PHY_REG(776, 23), 0xF100);
Bruce Alland3738bb2010-06-16 13:27:28 +00002410 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002411 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002412 e1e_rphy(hw, HV_PM_CTRL, &data);
2413 ret_val = e1e_wphy(hw, HV_PM_CTRL, data | (1 << 10));
2414 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002415 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002416 } else {
2417 /* Write MAC register values back to h/w defaults */
2418 mac_reg = er32(FFLT_DBG);
2419 mac_reg &= ~(0xF << 14);
2420 ew32(FFLT_DBG, mac_reg);
2421
2422 mac_reg = er32(RCTL);
2423 mac_reg &= ~E1000_RCTL_SECRC;
Bruce Allana1ce6472010-09-22 17:16:40 +00002424 ew32(RCTL, mac_reg);
Bruce Alland3738bb2010-06-16 13:27:28 +00002425
2426 ret_val = e1000e_read_kmrn_reg(hw,
Bruce Allan17e813e2013-02-20 04:06:01 +00002427 E1000_KMRNCTRLSTA_CTRL_OFFSET,
2428 &data);
Bruce Alland3738bb2010-06-16 13:27:28 +00002429 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002430 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002431 ret_val = e1000e_write_kmrn_reg(hw,
2432 E1000_KMRNCTRLSTA_CTRL_OFFSET,
2433 data & ~(1 << 0));
2434 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002435 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002436 ret_val = e1000e_read_kmrn_reg(hw,
Bruce Allan17e813e2013-02-20 04:06:01 +00002437 E1000_KMRNCTRLSTA_HD_CTRL,
2438 &data);
Bruce Alland3738bb2010-06-16 13:27:28 +00002439 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002440 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002441 data &= ~(0xF << 8);
2442 data |= (0xB << 8);
2443 ret_val = e1000e_write_kmrn_reg(hw,
2444 E1000_KMRNCTRLSTA_HD_CTRL,
2445 data);
2446 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002447 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002448
2449 /* Write PHY register values back to h/w defaults */
Bruce Alland3738bb2010-06-16 13:27:28 +00002450 e1e_rphy(hw, PHY_REG(769, 23), &data);
2451 data &= ~(0x7F << 5);
2452 ret_val = e1e_wphy(hw, PHY_REG(769, 23), data);
2453 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002454 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002455 e1e_rphy(hw, PHY_REG(769, 16), &data);
Bruce Alland3738bb2010-06-16 13:27:28 +00002456 data |= (1 << 13);
2457 ret_val = e1e_wphy(hw, PHY_REG(769, 16), data);
2458 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002459 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002460 e1e_rphy(hw, PHY_REG(776, 20), &data);
2461 data &= ~(0x3FF << 2);
2462 data |= (0x8 << 2);
2463 ret_val = e1e_wphy(hw, PHY_REG(776, 20), data);
2464 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002465 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002466 ret_val = e1e_wphy(hw, PHY_REG(776, 23), 0x7E00);
2467 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002468 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002469 e1e_rphy(hw, HV_PM_CTRL, &data);
2470 ret_val = e1e_wphy(hw, HV_PM_CTRL, data & ~(1 << 10));
2471 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002472 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002473 }
2474
2475 /* re-enable Rx path after enabling/disabling workaround */
Bruce Allan5015e532012-02-08 02:55:56 +00002476 return e1e_wphy(hw, PHY_REG(769, 20), phy_reg & ~(1 << 14));
Bruce Alland3738bb2010-06-16 13:27:28 +00002477}
2478
2479/**
2480 * e1000_lv_phy_workarounds_ich8lan - A series of Phy workarounds to be
2481 * done after every PHY reset.
2482 **/
2483static s32 e1000_lv_phy_workarounds_ich8lan(struct e1000_hw *hw)
2484{
2485 s32 ret_val = 0;
2486
2487 if (hw->mac.type != e1000_pch2lan)
Bruce Allan5015e532012-02-08 02:55:56 +00002488 return 0;
Bruce Alland3738bb2010-06-16 13:27:28 +00002489
2490 /* Set MDIO slow mode before any other MDIO access */
2491 ret_val = e1000_set_mdio_slow_mode_hv(hw);
Bruce Allan8e5ab422012-12-05 06:26:19 +00002492 if (ret_val)
2493 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002494
Bruce Allan4d241362011-12-16 00:46:06 +00002495 ret_val = hw->phy.ops.acquire(hw);
2496 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002497 return ret_val;
Bruce Allan4d241362011-12-16 00:46:06 +00002498 /* set MSE higher to enable link to stay up when noise is high */
Bruce Allan4ddc48a2012-12-05 06:25:58 +00002499 ret_val = e1000_write_emi_reg_locked(hw, I82579_MSE_THRESHOLD, 0x0034);
Bruce Allan4d241362011-12-16 00:46:06 +00002500 if (ret_val)
2501 goto release;
2502 /* drop link after 5 times MSE threshold was reached */
Bruce Allan4ddc48a2012-12-05 06:25:58 +00002503 ret_val = e1000_write_emi_reg_locked(hw, I82579_MSE_LINK_DOWN, 0x0005);
Bruce Allan4d241362011-12-16 00:46:06 +00002504release:
2505 hw->phy.ops.release(hw);
2506
Bruce Alland3738bb2010-06-16 13:27:28 +00002507 return ret_val;
2508}
2509
2510/**
Bruce Allan831bd2e2010-09-22 17:16:18 +00002511 * e1000_k1_gig_workaround_lv - K1 Si workaround
2512 * @hw: pointer to the HW structure
2513 *
David Ertman77e61142014-04-22 05:25:53 +00002514 * Workaround to set the K1 beacon duration for 82579 parts in 10Mbps
2515 * Disable K1 in 1000Mbps and 100Mbps
Bruce Allan831bd2e2010-09-22 17:16:18 +00002516 **/
2517static s32 e1000_k1_workaround_lv(struct e1000_hw *hw)
2518{
2519 s32 ret_val = 0;
2520 u16 status_reg = 0;
Bruce Allan831bd2e2010-09-22 17:16:18 +00002521
2522 if (hw->mac.type != e1000_pch2lan)
Bruce Allan5015e532012-02-08 02:55:56 +00002523 return 0;
Bruce Allan831bd2e2010-09-22 17:16:18 +00002524
David Ertman77e61142014-04-22 05:25:53 +00002525 /* Set K1 beacon duration based on 10Mbs speed */
Bruce Allan831bd2e2010-09-22 17:16:18 +00002526 ret_val = e1e_rphy(hw, HV_M_STATUS, &status_reg);
2527 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002528 return ret_val;
Bruce Allan831bd2e2010-09-22 17:16:18 +00002529
2530 if ((status_reg & (HV_M_STATUS_LINK_UP | HV_M_STATUS_AUTONEG_COMPLETE))
2531 == (HV_M_STATUS_LINK_UP | HV_M_STATUS_AUTONEG_COMPLETE)) {
David Ertman77e61142014-04-22 05:25:53 +00002532 if (status_reg &
2533 (HV_M_STATUS_SPEED_1000 | HV_M_STATUS_SPEED_100)) {
Bruce Allan36ceeb42012-03-20 03:47:47 +00002534 u16 pm_phy_reg;
2535
David Ertman77e61142014-04-22 05:25:53 +00002536 /* LV 1G/100 Packet drop issue wa */
Bruce Allan36ceeb42012-03-20 03:47:47 +00002537 ret_val = e1e_rphy(hw, HV_PM_CTRL, &pm_phy_reg);
2538 if (ret_val)
2539 return ret_val;
David Ertman77e61142014-04-22 05:25:53 +00002540 pm_phy_reg &= ~HV_PM_CTRL_K1_ENABLE;
Bruce Allan36ceeb42012-03-20 03:47:47 +00002541 ret_val = e1e_wphy(hw, HV_PM_CTRL, pm_phy_reg);
2542 if (ret_val)
2543 return ret_val;
Bruce Allan0ed013e2011-07-29 05:52:56 +00002544 } else {
David Ertman77e61142014-04-22 05:25:53 +00002545 u32 mac_reg;
2546
2547 mac_reg = er32(FEXTNVM4);
2548 mac_reg &= ~E1000_FEXTNVM4_BEACON_DURATION_MASK;
Bruce Allan0ed013e2011-07-29 05:52:56 +00002549 mac_reg |= E1000_FEXTNVM4_BEACON_DURATION_16USEC;
David Ertman77e61142014-04-22 05:25:53 +00002550 ew32(FEXTNVM4, mac_reg);
Bruce Allan0ed013e2011-07-29 05:52:56 +00002551 }
Bruce Allan831bd2e2010-09-22 17:16:18 +00002552 }
2553
Bruce Allan831bd2e2010-09-22 17:16:18 +00002554 return ret_val;
2555}
2556
2557/**
Bruce Allan605c82b2010-09-22 17:17:01 +00002558 * e1000_gate_hw_phy_config_ich8lan - disable PHY config via hardware
2559 * @hw: pointer to the HW structure
2560 * @gate: boolean set to true to gate, false to ungate
2561 *
2562 * Gate/ungate the automatic PHY configuration via hardware; perform
2563 * the configuration via software instead.
2564 **/
2565static void e1000_gate_hw_phy_config_ich8lan(struct e1000_hw *hw, bool gate)
2566{
2567 u32 extcnf_ctrl;
2568
Bruce Allan2fbe4522012-04-19 03:21:47 +00002569 if (hw->mac.type < e1000_pch2lan)
Bruce Allan605c82b2010-09-22 17:17:01 +00002570 return;
2571
2572 extcnf_ctrl = er32(EXTCNF_CTRL);
2573
2574 if (gate)
2575 extcnf_ctrl |= E1000_EXTCNF_CTRL_GATE_PHY_CFG;
2576 else
2577 extcnf_ctrl &= ~E1000_EXTCNF_CTRL_GATE_PHY_CFG;
2578
2579 ew32(EXTCNF_CTRL, extcnf_ctrl);
Bruce Allan605c82b2010-09-22 17:17:01 +00002580}
2581
2582/**
Bruce Allanfc0c7762009-07-01 13:27:55 +00002583 * e1000_lan_init_done_ich8lan - Check for PHY config completion
2584 * @hw: pointer to the HW structure
2585 *
2586 * Check the appropriate indication the MAC has finished configuring the
2587 * PHY after a software reset.
2588 **/
2589static void e1000_lan_init_done_ich8lan(struct e1000_hw *hw)
2590{
2591 u32 data, loop = E1000_ICH8_LAN_INIT_TIMEOUT;
2592
2593 /* Wait for basic configuration completes before proceeding */
2594 do {
2595 data = er32(STATUS);
2596 data &= E1000_STATUS_LAN_INIT_DONE;
Bruce Allance43a212013-02-20 04:06:32 +00002597 usleep_range(100, 200);
Bruce Allanfc0c7762009-07-01 13:27:55 +00002598 } while ((!data) && --loop);
2599
Bruce Allane921eb12012-11-28 09:28:37 +00002600 /* If basic configuration is incomplete before the above loop
Bruce Allanfc0c7762009-07-01 13:27:55 +00002601 * count reaches 0, loading the configuration from NVM will
2602 * leave the PHY in a bad state possibly resulting in no link.
2603 */
2604 if (loop == 0)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002605 e_dbg("LAN_INIT_DONE not set, increase timeout\n");
Bruce Allanfc0c7762009-07-01 13:27:55 +00002606
2607 /* Clear the Init Done bit for the next init event */
2608 data = er32(STATUS);
2609 data &= ~E1000_STATUS_LAN_INIT_DONE;
2610 ew32(STATUS, data);
2611}
2612
2613/**
Bruce Allane98cac42010-05-10 15:02:32 +00002614 * e1000_post_phy_reset_ich8lan - Perform steps required after a PHY reset
Auke Kokbc7f75f2007-09-17 12:30:59 -07002615 * @hw: pointer to the HW structure
Auke Kokbc7f75f2007-09-17 12:30:59 -07002616 **/
Bruce Allane98cac42010-05-10 15:02:32 +00002617static s32 e1000_post_phy_reset_ich8lan(struct e1000_hw *hw)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002618{
Bruce Allanf523d212009-10-29 13:45:45 +00002619 s32 ret_val = 0;
2620 u16 reg;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002621
Bruce Allan44abd5c2012-02-22 09:02:37 +00002622 if (hw->phy.ops.check_reset_block(hw))
Bruce Allan5015e532012-02-08 02:55:56 +00002623 return 0;
Bruce Allanfc0c7762009-07-01 13:27:55 +00002624
Bruce Allan5f3eed62010-09-22 17:15:54 +00002625 /* Allow time for h/w to get to quiescent state after reset */
Bruce Allan1bba4382011-03-19 00:27:20 +00002626 usleep_range(10000, 20000);
Bruce Allan5f3eed62010-09-22 17:15:54 +00002627
Bruce Allanfddaa1a2010-01-13 01:52:49 +00002628 /* Perform any necessary post-reset workarounds */
Bruce Allane98cac42010-05-10 15:02:32 +00002629 switch (hw->mac.type) {
2630 case e1000_pchlan:
Bruce Allana4f58f52009-06-02 11:29:18 +00002631 ret_val = e1000_hv_phy_workarounds_ich8lan(hw);
2632 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002633 return ret_val;
Bruce Allane98cac42010-05-10 15:02:32 +00002634 break;
Bruce Alland3738bb2010-06-16 13:27:28 +00002635 case e1000_pch2lan:
2636 ret_val = e1000_lv_phy_workarounds_ich8lan(hw);
2637 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002638 return ret_val;
Bruce Alland3738bb2010-06-16 13:27:28 +00002639 break;
Bruce Allane98cac42010-05-10 15:02:32 +00002640 default:
2641 break;
Bruce Allana4f58f52009-06-02 11:29:18 +00002642 }
2643
Bruce Allan3ebfc7c2011-05-13 07:20:14 +00002644 /* Clear the host wakeup bit after lcd reset */
2645 if (hw->mac.type >= e1000_pchlan) {
2646 e1e_rphy(hw, BM_PORT_GEN_CFG, &reg);
2647 reg &= ~BM_WUC_HOST_WU_BIT;
2648 e1e_wphy(hw, BM_PORT_GEN_CFG, reg);
2649 }
Bruce Allandb2932e2009-10-26 11:22:47 +00002650
Bruce Allanf523d212009-10-29 13:45:45 +00002651 /* Configure the LCD with the extended configuration region in NVM */
2652 ret_val = e1000_sw_lcd_config_ich8lan(hw);
2653 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002654 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002655
Bruce Allanf523d212009-10-29 13:45:45 +00002656 /* Configure the LCD with the OEM bits in NVM */
Bruce Allane98cac42010-05-10 15:02:32 +00002657 ret_val = e1000_oem_bits_config_ich8lan(hw, true);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002658
Bruce Allan1effb452011-02-25 06:58:03 +00002659 if (hw->mac.type == e1000_pch2lan) {
2660 /* Ungate automatic PHY configuration on non-managed 82579 */
2661 if (!(er32(FWSM) & E1000_ICH_FWSM_FW_VALID)) {
Bruce Allan1bba4382011-03-19 00:27:20 +00002662 usleep_range(10000, 20000);
Bruce Allan1effb452011-02-25 06:58:03 +00002663 e1000_gate_hw_phy_config_ich8lan(hw, false);
2664 }
2665
2666 /* Set EEE LPI Update Timer to 200usec */
2667 ret_val = hw->phy.ops.acquire(hw);
2668 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002669 return ret_val;
Bruce Allan4ddc48a2012-12-05 06:25:58 +00002670 ret_val = e1000_write_emi_reg_locked(hw,
2671 I82579_LPI_UPDATE_TIMER,
2672 0x1387);
Bruce Allan1effb452011-02-25 06:58:03 +00002673 hw->phy.ops.release(hw);
Bruce Allan605c82b2010-09-22 17:17:01 +00002674 }
2675
Bruce Allane98cac42010-05-10 15:02:32 +00002676 return ret_val;
2677}
2678
2679/**
2680 * e1000_phy_hw_reset_ich8lan - Performs a PHY reset
2681 * @hw: pointer to the HW structure
2682 *
2683 * Resets the PHY
2684 * This is a function pointer entry point called by drivers
2685 * or other shared routines.
2686 **/
2687static s32 e1000_phy_hw_reset_ich8lan(struct e1000_hw *hw)
2688{
2689 s32 ret_val = 0;
2690
Bruce Allan605c82b2010-09-22 17:17:01 +00002691 /* Gate automatic PHY configuration by hardware on non-managed 82579 */
2692 if ((hw->mac.type == e1000_pch2lan) &&
2693 !(er32(FWSM) & E1000_ICH_FWSM_FW_VALID))
2694 e1000_gate_hw_phy_config_ich8lan(hw, true);
2695
Bruce Allane98cac42010-05-10 15:02:32 +00002696 ret_val = e1000e_phy_hw_reset_generic(hw);
2697 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002698 return ret_val;
Bruce Allane98cac42010-05-10 15:02:32 +00002699
Bruce Allan5015e532012-02-08 02:55:56 +00002700 return e1000_post_phy_reset_ich8lan(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002701}
2702
2703/**
Bruce Allanfa2ce132009-10-26 11:23:25 +00002704 * e1000_set_lplu_state_pchlan - Set Low Power Link Up state
2705 * @hw: pointer to the HW structure
2706 * @active: true to enable LPLU, false to disable
2707 *
2708 * Sets the LPLU state according to the active flag. For PCH, if OEM write
2709 * bit are disabled in the NVM, writing the LPLU bits in the MAC will not set
2710 * the phy speed. This function will manually set the LPLU bit and restart
2711 * auto-neg as hw would do. D3 and D0 LPLU will call the same function
2712 * since it configures the same bit.
2713 **/
2714static s32 e1000_set_lplu_state_pchlan(struct e1000_hw *hw, bool active)
2715{
Bruce Allan70806a72013-01-05 05:08:37 +00002716 s32 ret_val;
Bruce Allanfa2ce132009-10-26 11:23:25 +00002717 u16 oem_reg;
2718
2719 ret_val = e1e_rphy(hw, HV_OEM_BITS, &oem_reg);
2720 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002721 return ret_val;
Bruce Allanfa2ce132009-10-26 11:23:25 +00002722
2723 if (active)
2724 oem_reg |= HV_OEM_BITS_LPLU;
2725 else
2726 oem_reg &= ~HV_OEM_BITS_LPLU;
2727
Bruce Allan44abd5c2012-02-22 09:02:37 +00002728 if (!hw->phy.ops.check_reset_block(hw))
Bruce Allan464c85e2011-12-16 00:46:49 +00002729 oem_reg |= HV_OEM_BITS_RESTART_AN;
2730
Bruce Allan5015e532012-02-08 02:55:56 +00002731 return e1e_wphy(hw, HV_OEM_BITS, oem_reg);
Bruce Allanfa2ce132009-10-26 11:23:25 +00002732}
2733
2734/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07002735 * e1000_set_d0_lplu_state_ich8lan - Set Low Power Linkup D0 state
2736 * @hw: pointer to the HW structure
Bruce Allan564ea9b2009-11-20 23:26:44 +00002737 * @active: true to enable LPLU, false to disable
Auke Kokbc7f75f2007-09-17 12:30:59 -07002738 *
2739 * Sets the LPLU D0 state according to the active flag. When
2740 * activating LPLU this function also disables smart speed
2741 * and vice versa. LPLU will not be activated unless the
2742 * device autonegotiation advertisement meets standards of
2743 * either 10 or 10/100 or 10/100/1000 at all duplexes.
2744 * This is a function pointer entry point only called by
2745 * PHY setup routines.
2746 **/
2747static s32 e1000_set_d0_lplu_state_ich8lan(struct e1000_hw *hw, bool active)
2748{
2749 struct e1000_phy_info *phy = &hw->phy;
2750 u32 phy_ctrl;
2751 s32 ret_val = 0;
2752 u16 data;
2753
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002754 if (phy->type == e1000_phy_ife)
Bruce Allan82607252012-02-08 02:55:09 +00002755 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002756
2757 phy_ctrl = er32(PHY_CTRL);
2758
2759 if (active) {
2760 phy_ctrl |= E1000_PHY_CTRL_D0A_LPLU;
2761 ew32(PHY_CTRL, phy_ctrl);
2762
Bruce Allan60f12922009-07-01 13:28:14 +00002763 if (phy->type != e1000_phy_igp_3)
2764 return 0;
2765
Bruce Allane921eb12012-11-28 09:28:37 +00002766 /* Call gig speed drop workaround on LPLU before accessing
Bruce Allanad680762008-03-28 09:15:03 -07002767 * any PHY registers
2768 */
Bruce Allan60f12922009-07-01 13:28:14 +00002769 if (hw->mac.type == e1000_ich8lan)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002770 e1000e_gig_downshift_workaround_ich8lan(hw);
2771
2772 /* When LPLU is enabled, we should disable SmartSpeed */
2773 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG, &data);
Bruce Allan7dbbe5d2013-01-05 05:08:31 +00002774 if (ret_val)
2775 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002776 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
2777 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG, data);
2778 if (ret_val)
2779 return ret_val;
2780 } else {
2781 phy_ctrl &= ~E1000_PHY_CTRL_D0A_LPLU;
2782 ew32(PHY_CTRL, phy_ctrl);
2783
Bruce Allan60f12922009-07-01 13:28:14 +00002784 if (phy->type != e1000_phy_igp_3)
2785 return 0;
2786
Bruce Allane921eb12012-11-28 09:28:37 +00002787 /* LPLU and SmartSpeed are mutually exclusive. LPLU is used
Auke Kokbc7f75f2007-09-17 12:30:59 -07002788 * during Dx states where the power conservation is most
2789 * important. During driver activity we should enable
Bruce Allanad680762008-03-28 09:15:03 -07002790 * SmartSpeed, so performance is maintained.
2791 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002792 if (phy->smart_speed == e1000_smart_speed_on) {
2793 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -07002794 &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002795 if (ret_val)
2796 return ret_val;
2797
2798 data |= IGP01E1000_PSCFR_SMART_SPEED;
2799 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -07002800 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002801 if (ret_val)
2802 return ret_val;
2803 } else if (phy->smart_speed == e1000_smart_speed_off) {
2804 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -07002805 &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002806 if (ret_val)
2807 return ret_val;
2808
2809 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
2810 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -07002811 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002812 if (ret_val)
2813 return ret_val;
2814 }
2815 }
2816
2817 return 0;
2818}
2819
2820/**
2821 * e1000_set_d3_lplu_state_ich8lan - Set Low Power Linkup D3 state
2822 * @hw: pointer to the HW structure
Bruce Allan564ea9b2009-11-20 23:26:44 +00002823 * @active: true to enable LPLU, false to disable
Auke Kokbc7f75f2007-09-17 12:30:59 -07002824 *
2825 * Sets the LPLU D3 state according to the active flag. When
2826 * activating LPLU this function also disables smart speed
2827 * and vice versa. LPLU will not be activated unless the
2828 * device autonegotiation advertisement meets standards of
2829 * either 10 or 10/100 or 10/100/1000 at all duplexes.
2830 * This is a function pointer entry point only called by
2831 * PHY setup routines.
2832 **/
2833static s32 e1000_set_d3_lplu_state_ich8lan(struct e1000_hw *hw, bool active)
2834{
2835 struct e1000_phy_info *phy = &hw->phy;
2836 u32 phy_ctrl;
Bruce Alland7eb3382012-02-08 02:55:14 +00002837 s32 ret_val = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002838 u16 data;
2839
2840 phy_ctrl = er32(PHY_CTRL);
2841
2842 if (!active) {
2843 phy_ctrl &= ~E1000_PHY_CTRL_NOND0A_LPLU;
2844 ew32(PHY_CTRL, phy_ctrl);
Bruce Allan60f12922009-07-01 13:28:14 +00002845
2846 if (phy->type != e1000_phy_igp_3)
2847 return 0;
2848
Bruce Allane921eb12012-11-28 09:28:37 +00002849 /* LPLU and SmartSpeed are mutually exclusive. LPLU is used
Auke Kokbc7f75f2007-09-17 12:30:59 -07002850 * during Dx states where the power conservation is most
2851 * important. During driver activity we should enable
Bruce Allanad680762008-03-28 09:15:03 -07002852 * SmartSpeed, so performance is maintained.
2853 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002854 if (phy->smart_speed == e1000_smart_speed_on) {
Bruce Allanad680762008-03-28 09:15:03 -07002855 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG,
2856 &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002857 if (ret_val)
2858 return ret_val;
2859
2860 data |= IGP01E1000_PSCFR_SMART_SPEED;
Bruce Allanad680762008-03-28 09:15:03 -07002861 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
2862 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002863 if (ret_val)
2864 return ret_val;
2865 } else if (phy->smart_speed == e1000_smart_speed_off) {
Bruce Allanad680762008-03-28 09:15:03 -07002866 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG,
2867 &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002868 if (ret_val)
2869 return ret_val;
2870
2871 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
Bruce Allanad680762008-03-28 09:15:03 -07002872 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
2873 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002874 if (ret_val)
2875 return ret_val;
2876 }
2877 } else if ((phy->autoneg_advertised == E1000_ALL_SPEED_DUPLEX) ||
2878 (phy->autoneg_advertised == E1000_ALL_NOT_GIG) ||
2879 (phy->autoneg_advertised == E1000_ALL_10_SPEED)) {
2880 phy_ctrl |= E1000_PHY_CTRL_NOND0A_LPLU;
2881 ew32(PHY_CTRL, phy_ctrl);
2882
Bruce Allan60f12922009-07-01 13:28:14 +00002883 if (phy->type != e1000_phy_igp_3)
2884 return 0;
2885
Bruce Allane921eb12012-11-28 09:28:37 +00002886 /* Call gig speed drop workaround on LPLU before accessing
Bruce Allanad680762008-03-28 09:15:03 -07002887 * any PHY registers
2888 */
Bruce Allan60f12922009-07-01 13:28:14 +00002889 if (hw->mac.type == e1000_ich8lan)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002890 e1000e_gig_downshift_workaround_ich8lan(hw);
2891
2892 /* When LPLU is enabled, we should disable SmartSpeed */
Bruce Allanad680762008-03-28 09:15:03 -07002893 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG, &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002894 if (ret_val)
2895 return ret_val;
2896
2897 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
Bruce Allanad680762008-03-28 09:15:03 -07002898 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG, data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002899 }
2900
Bruce Alland7eb3382012-02-08 02:55:14 +00002901 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002902}
2903
2904/**
Bruce Allanf4187b52008-08-26 18:36:50 -07002905 * e1000_valid_nvm_bank_detect_ich8lan - finds out the valid bank 0 or 1
2906 * @hw: pointer to the HW structure
2907 * @bank: pointer to the variable that returns the active bank
2908 *
2909 * Reads signature byte from the NVM using the flash access registers.
Bruce Allane2434552008-11-21 17:02:41 -08002910 * Word 0x13 bits 15:14 = 10b indicate a valid signature for that bank.
Bruce Allanf4187b52008-08-26 18:36:50 -07002911 **/
2912static s32 e1000_valid_nvm_bank_detect_ich8lan(struct e1000_hw *hw, u32 *bank)
2913{
Bruce Allane2434552008-11-21 17:02:41 -08002914 u32 eecd;
Bruce Allanf4187b52008-08-26 18:36:50 -07002915 struct e1000_nvm_info *nvm = &hw->nvm;
Bruce Allanf4187b52008-08-26 18:36:50 -07002916 u32 bank1_offset = nvm->flash_bank_size * sizeof(u16);
2917 u32 act_offset = E1000_ICH_NVM_SIG_WORD * 2 + 1;
Bruce Allane2434552008-11-21 17:02:41 -08002918 u8 sig_byte = 0;
Bruce Allanf71dde62012-02-08 02:55:35 +00002919 s32 ret_val;
Bruce Allanf4187b52008-08-26 18:36:50 -07002920
Bruce Allane2434552008-11-21 17:02:41 -08002921 switch (hw->mac.type) {
2922 case e1000_ich8lan:
2923 case e1000_ich9lan:
2924 eecd = er32(EECD);
2925 if ((eecd & E1000_EECD_SEC1VAL_VALID_MASK) ==
2926 E1000_EECD_SEC1VAL_VALID_MASK) {
2927 if (eecd & E1000_EECD_SEC1VAL)
Bruce Allanf4187b52008-08-26 18:36:50 -07002928 *bank = 1;
Bruce Allane2434552008-11-21 17:02:41 -08002929 else
2930 *bank = 0;
2931
2932 return 0;
Bruce Allanf4187b52008-08-26 18:36:50 -07002933 }
Bruce Allan434f1392011-12-16 00:46:54 +00002934 e_dbg("Unable to determine valid NVM bank via EEC - reading flash signature\n");
Bruce Allane2434552008-11-21 17:02:41 -08002935 /* fall-thru */
2936 default:
2937 /* set bank to 0 in case flash read fails */
2938 *bank = 0;
2939
2940 /* Check bank 0 */
2941 ret_val = e1000_read_flash_byte_ich8lan(hw, act_offset,
Bruce Allanf0ff4392013-02-20 04:05:39 +00002942 &sig_byte);
Bruce Allane2434552008-11-21 17:02:41 -08002943 if (ret_val)
2944 return ret_val;
2945 if ((sig_byte & E1000_ICH_NVM_VALID_SIG_MASK) ==
2946 E1000_ICH_NVM_SIG_VALUE) {
2947 *bank = 0;
2948 return 0;
2949 }
2950
2951 /* Check bank 1 */
2952 ret_val = e1000_read_flash_byte_ich8lan(hw, act_offset +
Bruce Allanf0ff4392013-02-20 04:05:39 +00002953 bank1_offset,
2954 &sig_byte);
Bruce Allane2434552008-11-21 17:02:41 -08002955 if (ret_val)
2956 return ret_val;
2957 if ((sig_byte & E1000_ICH_NVM_VALID_SIG_MASK) ==
2958 E1000_ICH_NVM_SIG_VALUE) {
2959 *bank = 1;
2960 return 0;
2961 }
2962
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002963 e_dbg("ERROR: No valid NVM bank present\n");
Bruce Allane2434552008-11-21 17:02:41 -08002964 return -E1000_ERR_NVM;
Bruce Allanf4187b52008-08-26 18:36:50 -07002965 }
Bruce Allanf4187b52008-08-26 18:36:50 -07002966}
2967
2968/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07002969 * e1000_read_nvm_ich8lan - Read word(s) from the NVM
2970 * @hw: pointer to the HW structure
2971 * @offset: The offset (in bytes) of the word(s) to read.
2972 * @words: Size of data to read in words
2973 * @data: Pointer to the word(s) to read at offset.
2974 *
2975 * Reads a word(s) from the NVM using the flash access registers.
2976 **/
2977static s32 e1000_read_nvm_ich8lan(struct e1000_hw *hw, u16 offset, u16 words,
2978 u16 *data)
2979{
2980 struct e1000_nvm_info *nvm = &hw->nvm;
2981 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
2982 u32 act_offset;
Bruce Allan148675a2009-08-07 07:41:56 +00002983 s32 ret_val = 0;
Bruce Allanf4187b52008-08-26 18:36:50 -07002984 u32 bank = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002985 u16 i, word;
2986
2987 if ((offset >= nvm->word_size) || (words > nvm->word_size - offset) ||
2988 (words == 0)) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002989 e_dbg("nvm parameter(s) out of bounds\n");
Bruce Allanca15df52009-10-26 11:23:43 +00002990 ret_val = -E1000_ERR_NVM;
2991 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002992 }
2993
Bruce Allan94d81862009-11-20 23:25:26 +00002994 nvm->ops.acquire(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002995
Bruce Allanf4187b52008-08-26 18:36:50 -07002996 ret_val = e1000_valid_nvm_bank_detect_ich8lan(hw, &bank);
Bruce Allan148675a2009-08-07 07:41:56 +00002997 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002998 e_dbg("Could not detect valid bank, assuming bank 0\n");
Bruce Allan148675a2009-08-07 07:41:56 +00002999 bank = 0;
3000 }
Bruce Allanf4187b52008-08-26 18:36:50 -07003001
3002 act_offset = (bank) ? nvm->flash_bank_size : 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003003 act_offset += offset;
3004
Bruce Allan148675a2009-08-07 07:41:56 +00003005 ret_val = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003006 for (i = 0; i < words; i++) {
Bruce Allan362e20c2013-02-20 04:05:45 +00003007 if (dev_spec->shadow_ram[offset + i].modified) {
3008 data[i] = dev_spec->shadow_ram[offset + i].value;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003009 } else {
3010 ret_val = e1000_read_flash_word_ich8lan(hw,
3011 act_offset + i,
3012 &word);
3013 if (ret_val)
3014 break;
3015 data[i] = word;
3016 }
3017 }
3018
Bruce Allan94d81862009-11-20 23:25:26 +00003019 nvm->ops.release(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003020
Bruce Allane2434552008-11-21 17:02:41 -08003021out:
3022 if (ret_val)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003023 e_dbg("NVM read error: %d\n", ret_val);
Bruce Allane2434552008-11-21 17:02:41 -08003024
Auke Kokbc7f75f2007-09-17 12:30:59 -07003025 return ret_val;
3026}
3027
3028/**
3029 * e1000_flash_cycle_init_ich8lan - Initialize flash
3030 * @hw: pointer to the HW structure
3031 *
3032 * This function does initial flash setup so that a new read/write/erase cycle
3033 * can be started.
3034 **/
3035static s32 e1000_flash_cycle_init_ich8lan(struct e1000_hw *hw)
3036{
3037 union ich8_hws_flash_status hsfsts;
3038 s32 ret_val = -E1000_ERR_NVM;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003039
3040 hsfsts.regval = er16flash(ICH_FLASH_HSFSTS);
3041
3042 /* Check if the flash descriptor is valid */
Bruce Allan04499ec2012-04-13 00:08:31 +00003043 if (!hsfsts.hsf_status.fldesvalid) {
Bruce Allan434f1392011-12-16 00:46:54 +00003044 e_dbg("Flash descriptor invalid. SW Sequencing must be used.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07003045 return -E1000_ERR_NVM;
3046 }
3047
3048 /* Clear FCERR and DAEL in hw status by writing 1 */
3049 hsfsts.hsf_status.flcerr = 1;
3050 hsfsts.hsf_status.dael = 1;
3051
3052 ew16flash(ICH_FLASH_HSFSTS, hsfsts.regval);
3053
Bruce Allane921eb12012-11-28 09:28:37 +00003054 /* Either we should have a hardware SPI cycle in progress
Auke Kokbc7f75f2007-09-17 12:30:59 -07003055 * bit to check against, in order to start a new cycle or
3056 * FDONE bit should be changed in the hardware so that it
Auke Kok489815c2008-02-21 15:11:07 -08003057 * is 1 after hardware reset, which can then be used as an
Auke Kokbc7f75f2007-09-17 12:30:59 -07003058 * indication whether a cycle is in progress or has been
3059 * completed.
3060 */
3061
Bruce Allan04499ec2012-04-13 00:08:31 +00003062 if (!hsfsts.hsf_status.flcinprog) {
Bruce Allane921eb12012-11-28 09:28:37 +00003063 /* There is no cycle running at present,
Bruce Allan5ff5b662009-12-01 15:51:11 +00003064 * so we can start a cycle.
Bruce Allanad680762008-03-28 09:15:03 -07003065 * Begin by setting Flash Cycle Done.
3066 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003067 hsfsts.hsf_status.flcdone = 1;
3068 ew16flash(ICH_FLASH_HSFSTS, hsfsts.regval);
3069 ret_val = 0;
3070 } else {
Bruce Allanf71dde62012-02-08 02:55:35 +00003071 s32 i;
Bruce Allan90da0662011-01-06 07:02:53 +00003072
Bruce Allane921eb12012-11-28 09:28:37 +00003073 /* Otherwise poll for sometime so the current
Bruce Allanad680762008-03-28 09:15:03 -07003074 * cycle has a chance to end before giving up.
3075 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003076 for (i = 0; i < ICH_FLASH_READ_COMMAND_TIMEOUT; i++) {
Bruce Allanc8243ee2011-12-17 08:32:57 +00003077 hsfsts.regval = er16flash(ICH_FLASH_HSFSTS);
Bruce Allan04499ec2012-04-13 00:08:31 +00003078 if (!hsfsts.hsf_status.flcinprog) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07003079 ret_val = 0;
3080 break;
3081 }
3082 udelay(1);
3083 }
Bruce Allan9e2d7652012-01-31 06:37:27 +00003084 if (!ret_val) {
Bruce Allane921eb12012-11-28 09:28:37 +00003085 /* Successful in waiting for previous cycle to timeout,
Bruce Allanad680762008-03-28 09:15:03 -07003086 * now set the Flash Cycle Done.
3087 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003088 hsfsts.hsf_status.flcdone = 1;
3089 ew16flash(ICH_FLASH_HSFSTS, hsfsts.regval);
3090 } else {
Joe Perches2c73e1f2010-03-26 20:16:59 +00003091 e_dbg("Flash controller busy, cannot get access\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07003092 }
3093 }
3094
3095 return ret_val;
3096}
3097
3098/**
3099 * e1000_flash_cycle_ich8lan - Starts flash cycle (read/write/erase)
3100 * @hw: pointer to the HW structure
3101 * @timeout: maximum time to wait for completion
3102 *
3103 * This function starts a flash cycle and waits for its completion.
3104 **/
3105static s32 e1000_flash_cycle_ich8lan(struct e1000_hw *hw, u32 timeout)
3106{
3107 union ich8_hws_flash_ctrl hsflctl;
3108 union ich8_hws_flash_status hsfsts;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003109 u32 i = 0;
3110
3111 /* Start a cycle by writing 1 in Flash Cycle Go in Hw Flash Control */
3112 hsflctl.regval = er16flash(ICH_FLASH_HSFCTL);
3113 hsflctl.hsf_ctrl.flcgo = 1;
3114 ew16flash(ICH_FLASH_HSFCTL, hsflctl.regval);
3115
3116 /* wait till FDONE bit is set to 1 */
3117 do {
3118 hsfsts.regval = er16flash(ICH_FLASH_HSFSTS);
Bruce Allan04499ec2012-04-13 00:08:31 +00003119 if (hsfsts.hsf_status.flcdone)
Auke Kokbc7f75f2007-09-17 12:30:59 -07003120 break;
3121 udelay(1);
3122 } while (i++ < timeout);
3123
Bruce Allan04499ec2012-04-13 00:08:31 +00003124 if (hsfsts.hsf_status.flcdone && !hsfsts.hsf_status.flcerr)
Auke Kokbc7f75f2007-09-17 12:30:59 -07003125 return 0;
3126
Bruce Allan55920b52012-02-08 02:55:25 +00003127 return -E1000_ERR_NVM;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003128}
3129
3130/**
3131 * e1000_read_flash_word_ich8lan - Read word from flash
3132 * @hw: pointer to the HW structure
3133 * @offset: offset to data location
3134 * @data: pointer to the location for storing the data
3135 *
3136 * Reads the flash word at offset into data. Offset is converted
3137 * to bytes before read.
3138 **/
3139static s32 e1000_read_flash_word_ich8lan(struct e1000_hw *hw, u32 offset,
3140 u16 *data)
3141{
3142 /* Must convert offset into bytes. */
3143 offset <<= 1;
3144
3145 return e1000_read_flash_data_ich8lan(hw, offset, 2, data);
3146}
3147
3148/**
Bruce Allanf4187b52008-08-26 18:36:50 -07003149 * e1000_read_flash_byte_ich8lan - Read byte from flash
3150 * @hw: pointer to the HW structure
3151 * @offset: The offset of the byte to read.
3152 * @data: Pointer to a byte to store the value read.
3153 *
3154 * Reads a single byte from the NVM using the flash access registers.
3155 **/
3156static s32 e1000_read_flash_byte_ich8lan(struct e1000_hw *hw, u32 offset,
3157 u8 *data)
3158{
3159 s32 ret_val;
3160 u16 word = 0;
3161
3162 ret_val = e1000_read_flash_data_ich8lan(hw, offset, 1, &word);
3163 if (ret_val)
3164 return ret_val;
3165
3166 *data = (u8)word;
3167
3168 return 0;
3169}
3170
3171/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07003172 * e1000_read_flash_data_ich8lan - Read byte or word from NVM
3173 * @hw: pointer to the HW structure
3174 * @offset: The offset (in bytes) of the byte or word to read.
3175 * @size: Size of data to read, 1=byte 2=word
3176 * @data: Pointer to the word to store the value read.
3177 *
3178 * Reads a byte or word from the NVM using the flash access registers.
3179 **/
3180static s32 e1000_read_flash_data_ich8lan(struct e1000_hw *hw, u32 offset,
3181 u8 size, u16 *data)
3182{
3183 union ich8_hws_flash_status hsfsts;
3184 union ich8_hws_flash_ctrl hsflctl;
3185 u32 flash_linear_addr;
3186 u32 flash_data = 0;
3187 s32 ret_val = -E1000_ERR_NVM;
3188 u8 count = 0;
3189
Bruce Allane80bd1d2013-05-01 01:19:46 +00003190 if (size < 1 || size > 2 || offset > ICH_FLASH_LINEAR_ADDR_MASK)
Auke Kokbc7f75f2007-09-17 12:30:59 -07003191 return -E1000_ERR_NVM;
3192
Bruce Allanf0ff4392013-02-20 04:05:39 +00003193 flash_linear_addr = ((ICH_FLASH_LINEAR_ADDR_MASK & offset) +
3194 hw->nvm.flash_base_addr);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003195
3196 do {
3197 udelay(1);
3198 /* Steps */
3199 ret_val = e1000_flash_cycle_init_ich8lan(hw);
Bruce Allan9e2d7652012-01-31 06:37:27 +00003200 if (ret_val)
Auke Kokbc7f75f2007-09-17 12:30:59 -07003201 break;
3202
3203 hsflctl.regval = er16flash(ICH_FLASH_HSFCTL);
3204 /* 0b/1b corresponds to 1 or 2 byte size, respectively. */
3205 hsflctl.hsf_ctrl.fldbcount = size - 1;
3206 hsflctl.hsf_ctrl.flcycle = ICH_CYCLE_READ;
3207 ew16flash(ICH_FLASH_HSFCTL, hsflctl.regval);
3208
3209 ew32flash(ICH_FLASH_FADDR, flash_linear_addr);
3210
Bruce Allan17e813e2013-02-20 04:06:01 +00003211 ret_val =
3212 e1000_flash_cycle_ich8lan(hw,
3213 ICH_FLASH_READ_COMMAND_TIMEOUT);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003214
Bruce Allane921eb12012-11-28 09:28:37 +00003215 /* Check if FCERR is set to 1, if set to 1, clear it
Auke Kokbc7f75f2007-09-17 12:30:59 -07003216 * and try the whole sequence a few more times, else
3217 * read in (shift in) the Flash Data0, the order is
Bruce Allanad680762008-03-28 09:15:03 -07003218 * least significant byte first msb to lsb
3219 */
Bruce Allan9e2d7652012-01-31 06:37:27 +00003220 if (!ret_val) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07003221 flash_data = er32flash(ICH_FLASH_FDATA0);
Bruce Allanb1cdfea2010-12-11 05:53:47 +00003222 if (size == 1)
Auke Kokbc7f75f2007-09-17 12:30:59 -07003223 *data = (u8)(flash_data & 0x000000FF);
Bruce Allanb1cdfea2010-12-11 05:53:47 +00003224 else if (size == 2)
Auke Kokbc7f75f2007-09-17 12:30:59 -07003225 *data = (u16)(flash_data & 0x0000FFFF);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003226 break;
3227 } else {
Bruce Allane921eb12012-11-28 09:28:37 +00003228 /* If we've gotten here, then things are probably
Auke Kokbc7f75f2007-09-17 12:30:59 -07003229 * completely hosed, but if the error condition is
3230 * detected, it won't hurt to give it another try...
3231 * ICH_FLASH_CYCLE_REPEAT_COUNT times.
3232 */
3233 hsfsts.regval = er16flash(ICH_FLASH_HSFSTS);
Bruce Allan04499ec2012-04-13 00:08:31 +00003234 if (hsfsts.hsf_status.flcerr) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07003235 /* Repeat for some time before giving up. */
3236 continue;
Bruce Allan04499ec2012-04-13 00:08:31 +00003237 } else if (!hsfsts.hsf_status.flcdone) {
Bruce Allan434f1392011-12-16 00:46:54 +00003238 e_dbg("Timeout error - flash cycle did not complete.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07003239 break;
3240 }
3241 }
3242 } while (count++ < ICH_FLASH_CYCLE_REPEAT_COUNT);
3243
3244 return ret_val;
3245}
3246
3247/**
3248 * e1000_write_nvm_ich8lan - Write word(s) to the NVM
3249 * @hw: pointer to the HW structure
3250 * @offset: The offset (in bytes) of the word(s) to write.
3251 * @words: Size of data to write in words
3252 * @data: Pointer to the word(s) to write at offset.
3253 *
3254 * Writes a byte or word to the NVM using the flash access registers.
3255 **/
3256static s32 e1000_write_nvm_ich8lan(struct e1000_hw *hw, u16 offset, u16 words,
3257 u16 *data)
3258{
3259 struct e1000_nvm_info *nvm = &hw->nvm;
3260 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003261 u16 i;
3262
3263 if ((offset >= nvm->word_size) || (words > nvm->word_size - offset) ||
3264 (words == 0)) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003265 e_dbg("nvm parameter(s) out of bounds\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07003266 return -E1000_ERR_NVM;
3267 }
3268
Bruce Allan94d81862009-11-20 23:25:26 +00003269 nvm->ops.acquire(hw);
Bruce Allanca15df52009-10-26 11:23:43 +00003270
Auke Kokbc7f75f2007-09-17 12:30:59 -07003271 for (i = 0; i < words; i++) {
Bruce Allan362e20c2013-02-20 04:05:45 +00003272 dev_spec->shadow_ram[offset + i].modified = true;
3273 dev_spec->shadow_ram[offset + i].value = data[i];
Auke Kokbc7f75f2007-09-17 12:30:59 -07003274 }
3275
Bruce Allan94d81862009-11-20 23:25:26 +00003276 nvm->ops.release(hw);
Bruce Allanca15df52009-10-26 11:23:43 +00003277
Auke Kokbc7f75f2007-09-17 12:30:59 -07003278 return 0;
3279}
3280
3281/**
3282 * e1000_update_nvm_checksum_ich8lan - Update the checksum for NVM
3283 * @hw: pointer to the HW structure
3284 *
3285 * The NVM checksum is updated by calling the generic update_nvm_checksum,
3286 * which writes the checksum to the shadow ram. The changes in the shadow
3287 * ram are then committed to the EEPROM by processing each bank at a time
3288 * checking for the modified bit and writing only the pending changes.
Auke Kok489815c2008-02-21 15:11:07 -08003289 * After a successful commit, the shadow ram is cleared and is ready for
Auke Kokbc7f75f2007-09-17 12:30:59 -07003290 * future writes.
3291 **/
3292static s32 e1000_update_nvm_checksum_ich8lan(struct e1000_hw *hw)
3293{
3294 struct e1000_nvm_info *nvm = &hw->nvm;
3295 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
Bruce Allanf4187b52008-08-26 18:36:50 -07003296 u32 i, act_offset, new_bank_offset, old_bank_offset, bank;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003297 s32 ret_val;
3298 u16 data;
3299
3300 ret_val = e1000e_update_nvm_checksum_generic(hw);
3301 if (ret_val)
Bruce Allane2434552008-11-21 17:02:41 -08003302 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003303
3304 if (nvm->type != e1000_nvm_flash_sw)
Bruce Allane2434552008-11-21 17:02:41 -08003305 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003306
Bruce Allan94d81862009-11-20 23:25:26 +00003307 nvm->ops.acquire(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003308
Bruce Allane921eb12012-11-28 09:28:37 +00003309 /* We're writing to the opposite bank so if we're on bank 1,
Auke Kokbc7f75f2007-09-17 12:30:59 -07003310 * write to bank 0 etc. We also need to erase the segment that
Bruce Allanad680762008-03-28 09:15:03 -07003311 * is going to be written
3312 */
Bruce Allane80bd1d2013-05-01 01:19:46 +00003313 ret_val = e1000_valid_nvm_bank_detect_ich8lan(hw, &bank);
Bruce Allane2434552008-11-21 17:02:41 -08003314 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003315 e_dbg("Could not detect valid bank, assuming bank 0\n");
Bruce Allan148675a2009-08-07 07:41:56 +00003316 bank = 0;
Bruce Allane2434552008-11-21 17:02:41 -08003317 }
Bruce Allanf4187b52008-08-26 18:36:50 -07003318
3319 if (bank == 0) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07003320 new_bank_offset = nvm->flash_bank_size;
3321 old_bank_offset = 0;
Bruce Allane2434552008-11-21 17:02:41 -08003322 ret_val = e1000_erase_flash_bank_ich8lan(hw, 1);
Bruce Allan9c5e2092010-05-10 15:00:31 +00003323 if (ret_val)
3324 goto release;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003325 } else {
3326 old_bank_offset = nvm->flash_bank_size;
3327 new_bank_offset = 0;
Bruce Allane2434552008-11-21 17:02:41 -08003328 ret_val = e1000_erase_flash_bank_ich8lan(hw, 0);
Bruce Allan9c5e2092010-05-10 15:00:31 +00003329 if (ret_val)
3330 goto release;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003331 }
3332
3333 for (i = 0; i < E1000_ICH8_SHADOW_RAM_WORDS; i++) {
Bruce Allane921eb12012-11-28 09:28:37 +00003334 /* Determine whether to write the value stored
Auke Kokbc7f75f2007-09-17 12:30:59 -07003335 * in the other NVM bank or a modified value stored
Bruce Allanad680762008-03-28 09:15:03 -07003336 * in the shadow RAM
3337 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003338 if (dev_spec->shadow_ram[i].modified) {
3339 data = dev_spec->shadow_ram[i].value;
3340 } else {
Bruce Allane2434552008-11-21 17:02:41 -08003341 ret_val = e1000_read_flash_word_ich8lan(hw, i +
Bruce Allanf0ff4392013-02-20 04:05:39 +00003342 old_bank_offset,
3343 &data);
Bruce Allane2434552008-11-21 17:02:41 -08003344 if (ret_val)
3345 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003346 }
3347
Bruce Allane921eb12012-11-28 09:28:37 +00003348 /* If the word is 0x13, then make sure the signature bits
Auke Kokbc7f75f2007-09-17 12:30:59 -07003349 * (15:14) are 11b until the commit has completed.
3350 * This will allow us to write 10b which indicates the
3351 * signature is valid. We want to do this after the write
3352 * has completed so that we don't mark the segment valid
Bruce Allanad680762008-03-28 09:15:03 -07003353 * while the write is still in progress
3354 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003355 if (i == E1000_ICH_NVM_SIG_WORD)
3356 data |= E1000_ICH_NVM_SIG_MASK;
3357
3358 /* Convert offset to bytes. */
3359 act_offset = (i + new_bank_offset) << 1;
3360
Bruce Allance43a212013-02-20 04:06:32 +00003361 usleep_range(100, 200);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003362 /* Write the bytes to the new bank. */
3363 ret_val = e1000_retry_write_flash_byte_ich8lan(hw,
3364 act_offset,
3365 (u8)data);
3366 if (ret_val)
3367 break;
3368
Bruce Allance43a212013-02-20 04:06:32 +00003369 usleep_range(100, 200);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003370 ret_val = e1000_retry_write_flash_byte_ich8lan(hw,
Bruce Allanf0ff4392013-02-20 04:05:39 +00003371 act_offset + 1,
3372 (u8)(data >> 8));
Auke Kokbc7f75f2007-09-17 12:30:59 -07003373 if (ret_val)
3374 break;
3375 }
3376
Bruce Allane921eb12012-11-28 09:28:37 +00003377 /* Don't bother writing the segment valid bits if sector
Bruce Allanad680762008-03-28 09:15:03 -07003378 * programming failed.
3379 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003380 if (ret_val) {
Bruce Allan4a770352008-10-01 17:18:35 -07003381 /* Possibly read-only, see e1000e_write_protect_nvm_ich8lan() */
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003382 e_dbg("Flash commit failed.\n");
Bruce Allan9c5e2092010-05-10 15:00:31 +00003383 goto release;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003384 }
3385
Bruce Allane921eb12012-11-28 09:28:37 +00003386 /* Finally validate the new segment by setting bit 15:14
Auke Kokbc7f75f2007-09-17 12:30:59 -07003387 * to 10b in word 0x13 , this can be done without an
3388 * erase as well since these bits are 11 to start with
Bruce Allanad680762008-03-28 09:15:03 -07003389 * and we need to change bit 14 to 0b
3390 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003391 act_offset = new_bank_offset + E1000_ICH_NVM_SIG_WORD;
Bruce Allane2434552008-11-21 17:02:41 -08003392 ret_val = e1000_read_flash_word_ich8lan(hw, act_offset, &data);
Bruce Allan9c5e2092010-05-10 15:00:31 +00003393 if (ret_val)
3394 goto release;
3395
Auke Kokbc7f75f2007-09-17 12:30:59 -07003396 data &= 0xBFFF;
3397 ret_val = e1000_retry_write_flash_byte_ich8lan(hw,
3398 act_offset * 2 + 1,
3399 (u8)(data >> 8));
Bruce Allan9c5e2092010-05-10 15:00:31 +00003400 if (ret_val)
3401 goto release;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003402
Bruce Allane921eb12012-11-28 09:28:37 +00003403 /* And invalidate the previously valid segment by setting
Auke Kokbc7f75f2007-09-17 12:30:59 -07003404 * its signature word (0x13) high_byte to 0b. This can be
3405 * done without an erase because flash erase sets all bits
Bruce Allanad680762008-03-28 09:15:03 -07003406 * to 1's. We can write 1's to 0's without an erase
3407 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003408 act_offset = (old_bank_offset + E1000_ICH_NVM_SIG_WORD) * 2 + 1;
3409 ret_val = e1000_retry_write_flash_byte_ich8lan(hw, act_offset, 0);
Bruce Allan9c5e2092010-05-10 15:00:31 +00003410 if (ret_val)
3411 goto release;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003412
3413 /* Great! Everything worked, we can now clear the cached entries. */
3414 for (i = 0; i < E1000_ICH8_SHADOW_RAM_WORDS; i++) {
Bruce Allan564ea9b2009-11-20 23:26:44 +00003415 dev_spec->shadow_ram[i].modified = false;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003416 dev_spec->shadow_ram[i].value = 0xFFFF;
3417 }
3418
Bruce Allan9c5e2092010-05-10 15:00:31 +00003419release:
Bruce Allan94d81862009-11-20 23:25:26 +00003420 nvm->ops.release(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003421
Bruce Allane921eb12012-11-28 09:28:37 +00003422 /* Reload the EEPROM, or else modifications will not appear
Auke Kokbc7f75f2007-09-17 12:30:59 -07003423 * until after the next adapter reset.
3424 */
Bruce Allan9c5e2092010-05-10 15:00:31 +00003425 if (!ret_val) {
Bruce Allane85e3632012-02-22 09:03:14 +00003426 nvm->ops.reload(hw);
Bruce Allan1bba4382011-03-19 00:27:20 +00003427 usleep_range(10000, 20000);
Bruce Allan9c5e2092010-05-10 15:00:31 +00003428 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07003429
Bruce Allane2434552008-11-21 17:02:41 -08003430out:
3431 if (ret_val)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003432 e_dbg("NVM update error: %d\n", ret_val);
Bruce Allane2434552008-11-21 17:02:41 -08003433
Auke Kokbc7f75f2007-09-17 12:30:59 -07003434 return ret_val;
3435}
3436
3437/**
3438 * e1000_validate_nvm_checksum_ich8lan - Validate EEPROM checksum
3439 * @hw: pointer to the HW structure
3440 *
3441 * Check to see if checksum needs to be fixed by reading bit 6 in word 0x19.
3442 * If the bit is 0, that the EEPROM had been modified, but the checksum was not
3443 * calculated, in which case we need to calculate the checksum and set bit 6.
3444 **/
3445static s32 e1000_validate_nvm_checksum_ich8lan(struct e1000_hw *hw)
3446{
3447 s32 ret_val;
3448 u16 data;
Bruce Allan1cc7a3a2013-01-09 08:15:42 +00003449 u16 word;
3450 u16 valid_csum_mask;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003451
Bruce Allan1cc7a3a2013-01-09 08:15:42 +00003452 /* Read NVM and check Invalid Image CSUM bit. If this bit is 0,
3453 * the checksum needs to be fixed. This bit is an indication that
3454 * the NVM was prepared by OEM software and did not calculate
3455 * the checksum...a likely scenario.
Auke Kokbc7f75f2007-09-17 12:30:59 -07003456 */
Bruce Allan1cc7a3a2013-01-09 08:15:42 +00003457 switch (hw->mac.type) {
3458 case e1000_pch_lpt:
3459 word = NVM_COMPAT;
3460 valid_csum_mask = NVM_COMPAT_VALID_CSUM;
3461 break;
3462 default:
3463 word = NVM_FUTURE_INIT_WORD1;
3464 valid_csum_mask = NVM_FUTURE_INIT_WORD1_VALID_CSUM;
3465 break;
3466 }
3467
3468 ret_val = e1000_read_nvm(hw, word, 1, &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003469 if (ret_val)
3470 return ret_val;
3471
Bruce Allan1cc7a3a2013-01-09 08:15:42 +00003472 if (!(data & valid_csum_mask)) {
3473 data |= valid_csum_mask;
3474 ret_val = e1000_write_nvm(hw, word, 1, &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003475 if (ret_val)
3476 return ret_val;
3477 ret_val = e1000e_update_nvm_checksum(hw);
3478 if (ret_val)
3479 return ret_val;
3480 }
3481
3482 return e1000e_validate_nvm_checksum_generic(hw);
3483}
3484
3485/**
Bruce Allan4a770352008-10-01 17:18:35 -07003486 * e1000e_write_protect_nvm_ich8lan - Make the NVM read-only
3487 * @hw: pointer to the HW structure
3488 *
3489 * To prevent malicious write/erase of the NVM, set it to be read-only
3490 * so that the hardware ignores all write/erase cycles of the NVM via
3491 * the flash control registers. The shadow-ram copy of the NVM will
3492 * still be updated, however any updates to this copy will not stick
3493 * across driver reloads.
3494 **/
3495void e1000e_write_protect_nvm_ich8lan(struct e1000_hw *hw)
3496{
Bruce Allanca15df52009-10-26 11:23:43 +00003497 struct e1000_nvm_info *nvm = &hw->nvm;
Bruce Allan4a770352008-10-01 17:18:35 -07003498 union ich8_flash_protected_range pr0;
3499 union ich8_hws_flash_status hsfsts;
3500 u32 gfpreg;
Bruce Allan4a770352008-10-01 17:18:35 -07003501
Bruce Allan94d81862009-11-20 23:25:26 +00003502 nvm->ops.acquire(hw);
Bruce Allan4a770352008-10-01 17:18:35 -07003503
3504 gfpreg = er32flash(ICH_FLASH_GFPREG);
3505
3506 /* Write-protect GbE Sector of NVM */
3507 pr0.regval = er32flash(ICH_FLASH_PR0);
3508 pr0.range.base = gfpreg & FLASH_GFPREG_BASE_MASK;
3509 pr0.range.limit = ((gfpreg >> 16) & FLASH_GFPREG_BASE_MASK);
3510 pr0.range.wpe = true;
3511 ew32flash(ICH_FLASH_PR0, pr0.regval);
3512
Bruce Allane921eb12012-11-28 09:28:37 +00003513 /* Lock down a subset of GbE Flash Control Registers, e.g.
Bruce Allan4a770352008-10-01 17:18:35 -07003514 * PR0 to prevent the write-protection from being lifted.
3515 * Once FLOCKDN is set, the registers protected by it cannot
3516 * be written until FLOCKDN is cleared by a hardware reset.
3517 */
3518 hsfsts.regval = er16flash(ICH_FLASH_HSFSTS);
3519 hsfsts.hsf_status.flockdn = true;
3520 ew32flash(ICH_FLASH_HSFSTS, hsfsts.regval);
3521
Bruce Allan94d81862009-11-20 23:25:26 +00003522 nvm->ops.release(hw);
Bruce Allan4a770352008-10-01 17:18:35 -07003523}
3524
3525/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07003526 * e1000_write_flash_data_ich8lan - Writes bytes to the NVM
3527 * @hw: pointer to the HW structure
3528 * @offset: The offset (in bytes) of the byte/word to read.
3529 * @size: Size of data to read, 1=byte 2=word
3530 * @data: The byte(s) to write to the NVM.
3531 *
3532 * Writes one/two bytes to the NVM using the flash access registers.
3533 **/
3534static s32 e1000_write_flash_data_ich8lan(struct e1000_hw *hw, u32 offset,
3535 u8 size, u16 data)
3536{
3537 union ich8_hws_flash_status hsfsts;
3538 union ich8_hws_flash_ctrl hsflctl;
3539 u32 flash_linear_addr;
3540 u32 flash_data = 0;
3541 s32 ret_val;
3542 u8 count = 0;
3543
3544 if (size < 1 || size > 2 || data > size * 0xff ||
3545 offset > ICH_FLASH_LINEAR_ADDR_MASK)
3546 return -E1000_ERR_NVM;
3547
Bruce Allanf0ff4392013-02-20 04:05:39 +00003548 flash_linear_addr = ((ICH_FLASH_LINEAR_ADDR_MASK & offset) +
3549 hw->nvm.flash_base_addr);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003550
3551 do {
3552 udelay(1);
3553 /* Steps */
3554 ret_val = e1000_flash_cycle_init_ich8lan(hw);
3555 if (ret_val)
3556 break;
3557
3558 hsflctl.regval = er16flash(ICH_FLASH_HSFCTL);
3559 /* 0b/1b corresponds to 1 or 2 byte size, respectively. */
Bruce Allan362e20c2013-02-20 04:05:45 +00003560 hsflctl.hsf_ctrl.fldbcount = size - 1;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003561 hsflctl.hsf_ctrl.flcycle = ICH_CYCLE_WRITE;
3562 ew16flash(ICH_FLASH_HSFCTL, hsflctl.regval);
3563
3564 ew32flash(ICH_FLASH_FADDR, flash_linear_addr);
3565
3566 if (size == 1)
3567 flash_data = (u32)data & 0x00FF;
3568 else
3569 flash_data = (u32)data;
3570
3571 ew32flash(ICH_FLASH_FDATA0, flash_data);
3572
Bruce Allane921eb12012-11-28 09:28:37 +00003573 /* check if FCERR is set to 1 , if set to 1, clear it
Bruce Allanad680762008-03-28 09:15:03 -07003574 * and try the whole sequence a few more times else done
3575 */
Bruce Allan17e813e2013-02-20 04:06:01 +00003576 ret_val =
3577 e1000_flash_cycle_ich8lan(hw,
3578 ICH_FLASH_WRITE_COMMAND_TIMEOUT);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003579 if (!ret_val)
3580 break;
3581
Bruce Allane921eb12012-11-28 09:28:37 +00003582 /* If we're here, then things are most likely
Auke Kokbc7f75f2007-09-17 12:30:59 -07003583 * completely hosed, but if the error condition
3584 * is detected, it won't hurt to give it another
3585 * try...ICH_FLASH_CYCLE_REPEAT_COUNT times.
3586 */
3587 hsfsts.regval = er16flash(ICH_FLASH_HSFSTS);
Bruce Allan04499ec2012-04-13 00:08:31 +00003588 if (hsfsts.hsf_status.flcerr)
Auke Kokbc7f75f2007-09-17 12:30:59 -07003589 /* Repeat for some time before giving up. */
3590 continue;
Bruce Allan04499ec2012-04-13 00:08:31 +00003591 if (!hsfsts.hsf_status.flcdone) {
Bruce Allan434f1392011-12-16 00:46:54 +00003592 e_dbg("Timeout error - flash cycle did not complete.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07003593 break;
3594 }
3595 } while (count++ < ICH_FLASH_CYCLE_REPEAT_COUNT);
3596
3597 return ret_val;
3598}
3599
3600/**
3601 * e1000_write_flash_byte_ich8lan - Write a single byte to NVM
3602 * @hw: pointer to the HW structure
3603 * @offset: The index of the byte to read.
3604 * @data: The byte to write to the NVM.
3605 *
3606 * Writes a single byte to the NVM using the flash access registers.
3607 **/
3608static s32 e1000_write_flash_byte_ich8lan(struct e1000_hw *hw, u32 offset,
3609 u8 data)
3610{
3611 u16 word = (u16)data;
3612
3613 return e1000_write_flash_data_ich8lan(hw, offset, 1, word);
3614}
3615
3616/**
3617 * e1000_retry_write_flash_byte_ich8lan - Writes a single byte to NVM
3618 * @hw: pointer to the HW structure
3619 * @offset: The offset of the byte to write.
3620 * @byte: The byte to write to the NVM.
3621 *
3622 * Writes a single byte to the NVM using the flash access registers.
3623 * Goes through a retry algorithm before giving up.
3624 **/
3625static s32 e1000_retry_write_flash_byte_ich8lan(struct e1000_hw *hw,
3626 u32 offset, u8 byte)
3627{
3628 s32 ret_val;
3629 u16 program_retries;
3630
3631 ret_val = e1000_write_flash_byte_ich8lan(hw, offset, byte);
3632 if (!ret_val)
3633 return ret_val;
3634
3635 for (program_retries = 0; program_retries < 100; program_retries++) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003636 e_dbg("Retrying Byte %2.2X at offset %u\n", byte, offset);
Bruce Allance43a212013-02-20 04:06:32 +00003637 usleep_range(100, 200);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003638 ret_val = e1000_write_flash_byte_ich8lan(hw, offset, byte);
3639 if (!ret_val)
3640 break;
3641 }
3642 if (program_retries == 100)
3643 return -E1000_ERR_NVM;
3644
3645 return 0;
3646}
3647
3648/**
3649 * e1000_erase_flash_bank_ich8lan - Erase a bank (4k) from NVM
3650 * @hw: pointer to the HW structure
3651 * @bank: 0 for first bank, 1 for second bank, etc.
3652 *
3653 * Erases the bank specified. Each bank is a 4k block. Banks are 0 based.
3654 * bank N is 4096 * N + flash_reg_addr.
3655 **/
3656static s32 e1000_erase_flash_bank_ich8lan(struct e1000_hw *hw, u32 bank)
3657{
3658 struct e1000_nvm_info *nvm = &hw->nvm;
3659 union ich8_hws_flash_status hsfsts;
3660 union ich8_hws_flash_ctrl hsflctl;
3661 u32 flash_linear_addr;
3662 /* bank size is in 16bit words - adjust to bytes */
3663 u32 flash_bank_size = nvm->flash_bank_size * 2;
3664 s32 ret_val;
3665 s32 count = 0;
Bruce Allana708dd82009-11-20 23:28:37 +00003666 s32 j, iteration, sector_size;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003667
3668 hsfsts.regval = er16flash(ICH_FLASH_HSFSTS);
3669
Bruce Allane921eb12012-11-28 09:28:37 +00003670 /* Determine HW Sector size: Read BERASE bits of hw flash status
Bruce Allanad680762008-03-28 09:15:03 -07003671 * register
3672 * 00: The Hw sector is 256 bytes, hence we need to erase 16
Auke Kokbc7f75f2007-09-17 12:30:59 -07003673 * consecutive sectors. The start index for the nth Hw sector
3674 * can be calculated as = bank * 4096 + n * 256
3675 * 01: The Hw sector is 4K bytes, hence we need to erase 1 sector.
3676 * The start index for the nth Hw sector can be calculated
3677 * as = bank * 4096
3678 * 10: The Hw sector is 8K bytes, nth sector = bank * 8192
3679 * (ich9 only, otherwise error condition)
3680 * 11: The Hw sector is 64K bytes, nth sector = bank * 65536
3681 */
3682 switch (hsfsts.hsf_status.berasesz) {
3683 case 0:
3684 /* Hw sector size 256 */
3685 sector_size = ICH_FLASH_SEG_SIZE_256;
3686 iteration = flash_bank_size / ICH_FLASH_SEG_SIZE_256;
3687 break;
3688 case 1:
3689 sector_size = ICH_FLASH_SEG_SIZE_4K;
Bruce Allan28c91952009-07-01 13:28:32 +00003690 iteration = 1;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003691 break;
3692 case 2:
Bruce Allan148675a2009-08-07 07:41:56 +00003693 sector_size = ICH_FLASH_SEG_SIZE_8K;
3694 iteration = 1;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003695 break;
3696 case 3:
3697 sector_size = ICH_FLASH_SEG_SIZE_64K;
Bruce Allan28c91952009-07-01 13:28:32 +00003698 iteration = 1;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003699 break;
3700 default:
3701 return -E1000_ERR_NVM;
3702 }
3703
3704 /* Start with the base address, then add the sector offset. */
3705 flash_linear_addr = hw->nvm.flash_base_addr;
Bruce Allan148675a2009-08-07 07:41:56 +00003706 flash_linear_addr += (bank) ? flash_bank_size : 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003707
Bruce Allan53aa82d2013-02-20 04:06:06 +00003708 for (j = 0; j < iteration; j++) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07003709 do {
Bruce Allan17e813e2013-02-20 04:06:01 +00003710 u32 timeout = ICH_FLASH_ERASE_COMMAND_TIMEOUT;
3711
Auke Kokbc7f75f2007-09-17 12:30:59 -07003712 /* Steps */
3713 ret_val = e1000_flash_cycle_init_ich8lan(hw);
3714 if (ret_val)
3715 return ret_val;
3716
Bruce Allane921eb12012-11-28 09:28:37 +00003717 /* Write a value 11 (block Erase) in Flash
Bruce Allanad680762008-03-28 09:15:03 -07003718 * Cycle field in hw flash control
3719 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003720 hsflctl.regval = er16flash(ICH_FLASH_HSFCTL);
3721 hsflctl.hsf_ctrl.flcycle = ICH_CYCLE_ERASE;
3722 ew16flash(ICH_FLASH_HSFCTL, hsflctl.regval);
3723
Bruce Allane921eb12012-11-28 09:28:37 +00003724 /* Write the last 24 bits of an index within the
Auke Kokbc7f75f2007-09-17 12:30:59 -07003725 * block into Flash Linear address field in Flash
3726 * Address.
3727 */
3728 flash_linear_addr += (j * sector_size);
3729 ew32flash(ICH_FLASH_FADDR, flash_linear_addr);
3730
Bruce Allan17e813e2013-02-20 04:06:01 +00003731 ret_val = e1000_flash_cycle_ich8lan(hw, timeout);
Bruce Allan9e2d7652012-01-31 06:37:27 +00003732 if (!ret_val)
Auke Kokbc7f75f2007-09-17 12:30:59 -07003733 break;
3734
Bruce Allane921eb12012-11-28 09:28:37 +00003735 /* Check if FCERR is set to 1. If 1,
Auke Kokbc7f75f2007-09-17 12:30:59 -07003736 * clear it and try the whole sequence
Bruce Allanad680762008-03-28 09:15:03 -07003737 * a few more times else Done
3738 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003739 hsfsts.regval = er16flash(ICH_FLASH_HSFSTS);
Bruce Allan04499ec2012-04-13 00:08:31 +00003740 if (hsfsts.hsf_status.flcerr)
Bruce Allanad680762008-03-28 09:15:03 -07003741 /* repeat for some time before giving up */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003742 continue;
Bruce Allan04499ec2012-04-13 00:08:31 +00003743 else if (!hsfsts.hsf_status.flcdone)
Auke Kokbc7f75f2007-09-17 12:30:59 -07003744 return ret_val;
3745 } while (++count < ICH_FLASH_CYCLE_REPEAT_COUNT);
3746 }
3747
3748 return 0;
3749}
3750
3751/**
3752 * e1000_valid_led_default_ich8lan - Set the default LED settings
3753 * @hw: pointer to the HW structure
3754 * @data: Pointer to the LED settings
3755 *
3756 * Reads the LED default settings from the NVM to data. If the NVM LED
3757 * settings is all 0's or F's, set the LED default to a valid LED default
3758 * setting.
3759 **/
3760static s32 e1000_valid_led_default_ich8lan(struct e1000_hw *hw, u16 *data)
3761{
3762 s32 ret_val;
3763
3764 ret_val = e1000_read_nvm(hw, NVM_ID_LED_SETTINGS, 1, data);
3765 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003766 e_dbg("NVM Read Error\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07003767 return ret_val;
3768 }
3769
Bruce Allane5fe2542013-02-20 04:06:27 +00003770 if (*data == ID_LED_RESERVED_0000 || *data == ID_LED_RESERVED_FFFF)
Auke Kokbc7f75f2007-09-17 12:30:59 -07003771 *data = ID_LED_DEFAULT_ICH8LAN;
3772
3773 return 0;
3774}
3775
3776/**
Bruce Allana4f58f52009-06-02 11:29:18 +00003777 * e1000_id_led_init_pchlan - store LED configurations
3778 * @hw: pointer to the HW structure
3779 *
3780 * PCH does not control LEDs via the LEDCTL register, rather it uses
3781 * the PHY LED configuration register.
3782 *
3783 * PCH also does not have an "always on" or "always off" mode which
3784 * complicates the ID feature. Instead of using the "on" mode to indicate
Bruce Alland1964eb2012-02-22 09:02:21 +00003785 * in ledctl_mode2 the LEDs to use for ID (see e1000e_id_led_init_generic()),
Bruce Allana4f58f52009-06-02 11:29:18 +00003786 * use "link_up" mode. The LEDs will still ID on request if there is no
3787 * link based on logic in e1000_led_[on|off]_pchlan().
3788 **/
3789static s32 e1000_id_led_init_pchlan(struct e1000_hw *hw)
3790{
3791 struct e1000_mac_info *mac = &hw->mac;
3792 s32 ret_val;
3793 const u32 ledctl_on = E1000_LEDCTL_MODE_LINK_UP;
3794 const u32 ledctl_off = E1000_LEDCTL_MODE_LINK_UP | E1000_PHY_LED0_IVRT;
3795 u16 data, i, temp, shift;
3796
3797 /* Get default ID LED modes */
3798 ret_val = hw->nvm.ops.valid_led_default(hw, &data);
3799 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003800 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003801
3802 mac->ledctl_default = er32(LEDCTL);
3803 mac->ledctl_mode1 = mac->ledctl_default;
3804 mac->ledctl_mode2 = mac->ledctl_default;
3805
3806 for (i = 0; i < 4; i++) {
3807 temp = (data >> (i << 2)) & E1000_LEDCTL_LED0_MODE_MASK;
3808 shift = (i * 5);
3809 switch (temp) {
3810 case ID_LED_ON1_DEF2:
3811 case ID_LED_ON1_ON2:
3812 case ID_LED_ON1_OFF2:
3813 mac->ledctl_mode1 &= ~(E1000_PHY_LED0_MASK << shift);
3814 mac->ledctl_mode1 |= (ledctl_on << shift);
3815 break;
3816 case ID_LED_OFF1_DEF2:
3817 case ID_LED_OFF1_ON2:
3818 case ID_LED_OFF1_OFF2:
3819 mac->ledctl_mode1 &= ~(E1000_PHY_LED0_MASK << shift);
3820 mac->ledctl_mode1 |= (ledctl_off << shift);
3821 break;
3822 default:
3823 /* Do nothing */
3824 break;
3825 }
3826 switch (temp) {
3827 case ID_LED_DEF1_ON2:
3828 case ID_LED_ON1_ON2:
3829 case ID_LED_OFF1_ON2:
3830 mac->ledctl_mode2 &= ~(E1000_PHY_LED0_MASK << shift);
3831 mac->ledctl_mode2 |= (ledctl_on << shift);
3832 break;
3833 case ID_LED_DEF1_OFF2:
3834 case ID_LED_ON1_OFF2:
3835 case ID_LED_OFF1_OFF2:
3836 mac->ledctl_mode2 &= ~(E1000_PHY_LED0_MASK << shift);
3837 mac->ledctl_mode2 |= (ledctl_off << shift);
3838 break;
3839 default:
3840 /* Do nothing */
3841 break;
3842 }
3843 }
3844
Bruce Allan5015e532012-02-08 02:55:56 +00003845 return 0;
Bruce Allana4f58f52009-06-02 11:29:18 +00003846}
3847
3848/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07003849 * e1000_get_bus_info_ich8lan - Get/Set the bus type and width
3850 * @hw: pointer to the HW structure
3851 *
3852 * ICH8 use the PCI Express bus, but does not contain a PCI Express Capability
3853 * register, so the the bus width is hard coded.
3854 **/
3855static s32 e1000_get_bus_info_ich8lan(struct e1000_hw *hw)
3856{
3857 struct e1000_bus_info *bus = &hw->bus;
3858 s32 ret_val;
3859
3860 ret_val = e1000e_get_bus_info_pcie(hw);
3861
Bruce Allane921eb12012-11-28 09:28:37 +00003862 /* ICH devices are "PCI Express"-ish. They have
Auke Kokbc7f75f2007-09-17 12:30:59 -07003863 * a configuration space, but do not contain
3864 * PCI Express Capability registers, so bus width
3865 * must be hardcoded.
3866 */
3867 if (bus->width == e1000_bus_width_unknown)
3868 bus->width = e1000_bus_width_pcie_x1;
3869
3870 return ret_val;
3871}
3872
3873/**
3874 * e1000_reset_hw_ich8lan - Reset the hardware
3875 * @hw: pointer to the HW structure
3876 *
3877 * Does a full reset of the hardware which includes a reset of the PHY and
3878 * MAC.
3879 **/
3880static s32 e1000_reset_hw_ich8lan(struct e1000_hw *hw)
3881{
Bruce Allan1d5846b2009-10-29 13:46:05 +00003882 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
Bruce Allan62bc8132012-03-20 03:47:57 +00003883 u16 kum_cfg;
3884 u32 ctrl, reg;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003885 s32 ret_val;
3886
Bruce Allane921eb12012-11-28 09:28:37 +00003887 /* Prevent the PCI-E bus from sticking if there is no TLP connection
Auke Kokbc7f75f2007-09-17 12:30:59 -07003888 * on the last TLP read/write transaction when MAC is reset.
3889 */
3890 ret_val = e1000e_disable_pcie_master(hw);
Bruce Allane98cac42010-05-10 15:02:32 +00003891 if (ret_val)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003892 e_dbg("PCI-E Master disable polling has failed.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07003893
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003894 e_dbg("Masking off all interrupts\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07003895 ew32(IMC, 0xffffffff);
3896
Bruce Allane921eb12012-11-28 09:28:37 +00003897 /* Disable the Transmit and Receive units. Then delay to allow
Auke Kokbc7f75f2007-09-17 12:30:59 -07003898 * any pending transactions to complete before we hit the MAC
3899 * with the global reset.
3900 */
3901 ew32(RCTL, 0);
3902 ew32(TCTL, E1000_TCTL_PSP);
3903 e1e_flush();
3904
Bruce Allan1bba4382011-03-19 00:27:20 +00003905 usleep_range(10000, 20000);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003906
3907 /* Workaround for ICH8 bit corruption issue in FIFO memory */
3908 if (hw->mac.type == e1000_ich8lan) {
3909 /* Set Tx and Rx buffer allocation to 8k apiece. */
3910 ew32(PBA, E1000_PBA_8K);
3911 /* Set Packet Buffer Size to 16k. */
3912 ew32(PBS, E1000_PBS_16K);
3913 }
3914
Bruce Allan1d5846b2009-10-29 13:46:05 +00003915 if (hw->mac.type == e1000_pchlan) {
Bruce Allan62bc8132012-03-20 03:47:57 +00003916 /* Save the NVM K1 bit setting */
3917 ret_val = e1000_read_nvm(hw, E1000_NVM_K1_CONFIG, 1, &kum_cfg);
Bruce Allan1d5846b2009-10-29 13:46:05 +00003918 if (ret_val)
3919 return ret_val;
3920
Bruce Allan62bc8132012-03-20 03:47:57 +00003921 if (kum_cfg & E1000_NVM_K1_ENABLE)
Bruce Allan1d5846b2009-10-29 13:46:05 +00003922 dev_spec->nvm_k1_enabled = true;
3923 else
3924 dev_spec->nvm_k1_enabled = false;
3925 }
3926
Auke Kokbc7f75f2007-09-17 12:30:59 -07003927 ctrl = er32(CTRL);
3928
Bruce Allan44abd5c2012-02-22 09:02:37 +00003929 if (!hw->phy.ops.check_reset_block(hw)) {
Bruce Allane921eb12012-11-28 09:28:37 +00003930 /* Full-chip reset requires MAC and PHY reset at the same
Auke Kokbc7f75f2007-09-17 12:30:59 -07003931 * time to make sure the interface between MAC and the
3932 * external PHY is reset.
3933 */
3934 ctrl |= E1000_CTRL_PHY_RST;
Bruce Allan605c82b2010-09-22 17:17:01 +00003935
Bruce Allane921eb12012-11-28 09:28:37 +00003936 /* Gate automatic PHY configuration by hardware on
Bruce Allan605c82b2010-09-22 17:17:01 +00003937 * non-managed 82579
3938 */
3939 if ((hw->mac.type == e1000_pch2lan) &&
3940 !(er32(FWSM) & E1000_ICH_FWSM_FW_VALID))
3941 e1000_gate_hw_phy_config_ich8lan(hw, true);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003942 }
3943 ret_val = e1000_acquire_swflag_ich8lan(hw);
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003944 e_dbg("Issuing a global reset to ich8lan\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07003945 ew32(CTRL, (ctrl | E1000_CTRL_RST));
Jesse Brandeburg945a5152011-07-20 00:56:21 +00003946 /* cannot issue a flush here because it hangs the hardware */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003947 msleep(20);
3948
Bruce Allan62bc8132012-03-20 03:47:57 +00003949 /* Set Phy Config Counter to 50msec */
3950 if (hw->mac.type == e1000_pch2lan) {
3951 reg = er32(FEXTNVM3);
3952 reg &= ~E1000_FEXTNVM3_PHY_CFG_COUNTER_MASK;
3953 reg |= E1000_FEXTNVM3_PHY_CFG_COUNTER_50MSEC;
3954 ew32(FEXTNVM3, reg);
3955 }
3956
Bruce Allanfc0c7762009-07-01 13:27:55 +00003957 if (!ret_val)
Bruce Allana90b4122011-10-07 03:50:38 +00003958 clear_bit(__E1000_ACCESS_SHARED_RESOURCE, &hw->adapter->state);
Jesse Brandeburg37f40232008-10-02 16:33:20 -07003959
Bruce Allane98cac42010-05-10 15:02:32 +00003960 if (ctrl & E1000_CTRL_PHY_RST) {
Bruce Allanfc0c7762009-07-01 13:27:55 +00003961 ret_val = hw->phy.ops.get_cfg_done(hw);
Bruce Allane98cac42010-05-10 15:02:32 +00003962 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003963 return ret_val;
Bruce Allanfc0c7762009-07-01 13:27:55 +00003964
Bruce Allane98cac42010-05-10 15:02:32 +00003965 ret_val = e1000_post_phy_reset_ich8lan(hw);
Bruce Allanf523d212009-10-29 13:45:45 +00003966 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003967 return ret_val;
Bruce Allanf523d212009-10-29 13:45:45 +00003968 }
Bruce Allane98cac42010-05-10 15:02:32 +00003969
Bruce Allane921eb12012-11-28 09:28:37 +00003970 /* For PCH, this write will make sure that any noise
Bruce Allan7d3cabb2009-07-01 13:29:08 +00003971 * will be detected as a CRC error and be dropped rather than show up
3972 * as a bad packet to the DMA engine.
3973 */
3974 if (hw->mac.type == e1000_pchlan)
3975 ew32(CRC_OFFSET, 0x65656565);
3976
Auke Kokbc7f75f2007-09-17 12:30:59 -07003977 ew32(IMC, 0xffffffff);
Bruce Allandd93f952011-01-06 14:29:48 +00003978 er32(ICR);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003979
Bruce Allan62bc8132012-03-20 03:47:57 +00003980 reg = er32(KABGTXD);
3981 reg |= E1000_KABGTXD_BGSQLBIAS;
3982 ew32(KABGTXD, reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003983
Bruce Allan5015e532012-02-08 02:55:56 +00003984 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003985}
3986
3987/**
3988 * e1000_init_hw_ich8lan - Initialize the hardware
3989 * @hw: pointer to the HW structure
3990 *
3991 * Prepares the hardware for transmit and receive by doing the following:
3992 * - initialize hardware bits
3993 * - initialize LED identification
3994 * - setup receive address registers
3995 * - setup flow control
Auke Kok489815c2008-02-21 15:11:07 -08003996 * - setup transmit descriptors
Auke Kokbc7f75f2007-09-17 12:30:59 -07003997 * - clear statistics
3998 **/
3999static s32 e1000_init_hw_ich8lan(struct e1000_hw *hw)
4000{
4001 struct e1000_mac_info *mac = &hw->mac;
4002 u32 ctrl_ext, txdctl, snoop;
4003 s32 ret_val;
4004 u16 i;
4005
4006 e1000_initialize_hw_bits_ich8lan(hw);
4007
4008 /* Initialize identification LED */
Bruce Allana4f58f52009-06-02 11:29:18 +00004009 ret_val = mac->ops.id_led_init(hw);
Bruce Allan33550ce2013-02-20 04:06:16 +00004010 /* An error is not fatal and we should not stop init due to this */
Bruce Allande39b752009-11-20 23:27:59 +00004011 if (ret_val)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00004012 e_dbg("Error initializing identification LED\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07004013
4014 /* Setup the receive address. */
4015 e1000e_init_rx_addrs(hw, mac->rar_entry_count);
4016
4017 /* Zero out the Multicast HASH table */
Bruce Allan3bb99fe2009-11-20 23:25:07 +00004018 e_dbg("Zeroing the MTA\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07004019 for (i = 0; i < mac->mta_reg_count; i++)
4020 E1000_WRITE_REG_ARRAY(hw, E1000_MTA, i, 0);
4021
Bruce Allane921eb12012-11-28 09:28:37 +00004022 /* The 82578 Rx buffer will stall if wakeup is enabled in host and
Bruce Allan3ebfc7c2011-05-13 07:20:14 +00004023 * the ME. Disable wakeup by clearing the host wakeup bit.
Bruce Allanfc0c7762009-07-01 13:27:55 +00004024 * Reset the phy after disabling host wakeup to reset the Rx buffer.
4025 */
4026 if (hw->phy.type == e1000_phy_82578) {
Bruce Allan3ebfc7c2011-05-13 07:20:14 +00004027 e1e_rphy(hw, BM_PORT_GEN_CFG, &i);
4028 i &= ~BM_WUC_HOST_WU_BIT;
4029 e1e_wphy(hw, BM_PORT_GEN_CFG, i);
Bruce Allanfc0c7762009-07-01 13:27:55 +00004030 ret_val = e1000_phy_hw_reset_ich8lan(hw);
4031 if (ret_val)
4032 return ret_val;
4033 }
4034
Auke Kokbc7f75f2007-09-17 12:30:59 -07004035 /* Setup link and flow control */
Bruce Allan1a46b402012-02-22 09:02:26 +00004036 ret_val = mac->ops.setup_link(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004037
4038 /* Set the transmit descriptor write-back policy for both queues */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07004039 txdctl = er32(TXDCTL(0));
Bruce Allanf0ff4392013-02-20 04:05:39 +00004040 txdctl = ((txdctl & ~E1000_TXDCTL_WTHRESH) |
4041 E1000_TXDCTL_FULL_TX_DESC_WB);
4042 txdctl = ((txdctl & ~E1000_TXDCTL_PTHRESH) |
4043 E1000_TXDCTL_MAX_TX_DESC_PREFETCH);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07004044 ew32(TXDCTL(0), txdctl);
4045 txdctl = er32(TXDCTL(1));
Bruce Allanf0ff4392013-02-20 04:05:39 +00004046 txdctl = ((txdctl & ~E1000_TXDCTL_WTHRESH) |
4047 E1000_TXDCTL_FULL_TX_DESC_WB);
4048 txdctl = ((txdctl & ~E1000_TXDCTL_PTHRESH) |
4049 E1000_TXDCTL_MAX_TX_DESC_PREFETCH);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07004050 ew32(TXDCTL(1), txdctl);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004051
Bruce Allane921eb12012-11-28 09:28:37 +00004052 /* ICH8 has opposite polarity of no_snoop bits.
Bruce Allanad680762008-03-28 09:15:03 -07004053 * By default, we should use snoop behavior.
4054 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004055 if (mac->type == e1000_ich8lan)
4056 snoop = PCIE_ICH8_SNOOP_ALL;
4057 else
Bruce Allan53aa82d2013-02-20 04:06:06 +00004058 snoop = (u32)~(PCIE_NO_SNOOP_ALL);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004059 e1000e_set_pcie_no_snoop(hw, snoop);
4060
4061 ctrl_ext = er32(CTRL_EXT);
4062 ctrl_ext |= E1000_CTRL_EXT_RO_DIS;
4063 ew32(CTRL_EXT, ctrl_ext);
4064
Bruce Allane921eb12012-11-28 09:28:37 +00004065 /* Clear all of the statistics registers (clear on read). It is
Auke Kokbc7f75f2007-09-17 12:30:59 -07004066 * important that we do this after we have tried to establish link
4067 * because the symbol error count will increment wildly if there
4068 * is no link.
4069 */
4070 e1000_clear_hw_cntrs_ich8lan(hw);
4071
Bruce Allane561a702012-02-08 02:55:46 +00004072 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004073}
Bruce Allanfc830b72013-02-20 04:06:11 +00004074
Auke Kokbc7f75f2007-09-17 12:30:59 -07004075/**
4076 * e1000_initialize_hw_bits_ich8lan - Initialize required hardware bits
4077 * @hw: pointer to the HW structure
4078 *
4079 * Sets/Clears required hardware bits necessary for correctly setting up the
4080 * hardware for transmit and receive.
4081 **/
4082static void e1000_initialize_hw_bits_ich8lan(struct e1000_hw *hw)
4083{
4084 u32 reg;
4085
4086 /* Extended Device Control */
4087 reg = er32(CTRL_EXT);
4088 reg |= (1 << 22);
Bruce Allana4f58f52009-06-02 11:29:18 +00004089 /* Enable PHY low-power state when MAC is at D3 w/o WoL */
4090 if (hw->mac.type >= e1000_pchlan)
4091 reg |= E1000_CTRL_EXT_PHYPDEN;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004092 ew32(CTRL_EXT, reg);
4093
4094 /* Transmit Descriptor Control 0 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07004095 reg = er32(TXDCTL(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -07004096 reg |= (1 << 22);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07004097 ew32(TXDCTL(0), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004098
4099 /* Transmit Descriptor Control 1 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07004100 reg = er32(TXDCTL(1));
Auke Kokbc7f75f2007-09-17 12:30:59 -07004101 reg |= (1 << 22);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07004102 ew32(TXDCTL(1), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004103
4104 /* Transmit Arbitration Control 0 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07004105 reg = er32(TARC(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -07004106 if (hw->mac.type == e1000_ich8lan)
4107 reg |= (1 << 28) | (1 << 29);
4108 reg |= (1 << 23) | (1 << 24) | (1 << 26) | (1 << 27);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07004109 ew32(TARC(0), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004110
4111 /* Transmit Arbitration Control 1 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07004112 reg = er32(TARC(1));
Auke Kokbc7f75f2007-09-17 12:30:59 -07004113 if (er32(TCTL) & E1000_TCTL_MULR)
4114 reg &= ~(1 << 28);
4115 else
4116 reg |= (1 << 28);
4117 reg |= (1 << 24) | (1 << 26) | (1 << 30);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07004118 ew32(TARC(1), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004119
4120 /* Device Status */
4121 if (hw->mac.type == e1000_ich8lan) {
4122 reg = er32(STATUS);
4123 reg &= ~(1 << 31);
4124 ew32(STATUS, reg);
4125 }
Jesse Brandeburga80483d2010-03-05 02:21:44 +00004126
Bruce Allane921eb12012-11-28 09:28:37 +00004127 /* work-around descriptor data corruption issue during nfs v2 udp
Jesse Brandeburga80483d2010-03-05 02:21:44 +00004128 * traffic, just disable the nfs filtering capability
4129 */
4130 reg = er32(RFCTL);
4131 reg |= (E1000_RFCTL_NFSW_DIS | E1000_RFCTL_NFSR_DIS);
Matthew Vickf6bd5572012-04-25 08:01:05 +00004132
Bruce Allane921eb12012-11-28 09:28:37 +00004133 /* Disable IPv6 extension header parsing because some malformed
Matthew Vickf6bd5572012-04-25 08:01:05 +00004134 * IPv6 headers can hang the Rx.
4135 */
4136 if (hw->mac.type == e1000_ich8lan)
4137 reg |= (E1000_RFCTL_IPV6_EX_DIS | E1000_RFCTL_NEW_IPV6_EXT_DIS);
Jesse Brandeburga80483d2010-03-05 02:21:44 +00004138 ew32(RFCTL, reg);
Bruce Allan94fb8482013-01-23 09:00:03 +00004139
4140 /* Enable ECC on Lynxpoint */
4141 if (hw->mac.type == e1000_pch_lpt) {
4142 reg = er32(PBECCSTS);
4143 reg |= E1000_PBECCSTS_ECC_ENABLE;
4144 ew32(PBECCSTS, reg);
4145
4146 reg = er32(CTRL);
4147 reg |= E1000_CTRL_MEHE;
4148 ew32(CTRL, reg);
4149 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07004150}
4151
4152/**
4153 * e1000_setup_link_ich8lan - Setup flow control and link settings
4154 * @hw: pointer to the HW structure
4155 *
4156 * Determines which flow control settings to use, then configures flow
4157 * control. Calls the appropriate media-specific link configuration
4158 * function. Assuming the adapter has a valid link partner, a valid link
4159 * should be established. Assumes the hardware has previously been reset
4160 * and the transmitter and receiver are not enabled.
4161 **/
4162static s32 e1000_setup_link_ich8lan(struct e1000_hw *hw)
4163{
Auke Kokbc7f75f2007-09-17 12:30:59 -07004164 s32 ret_val;
4165
Bruce Allan44abd5c2012-02-22 09:02:37 +00004166 if (hw->phy.ops.check_reset_block(hw))
Auke Kokbc7f75f2007-09-17 12:30:59 -07004167 return 0;
4168
Bruce Allane921eb12012-11-28 09:28:37 +00004169 /* ICH parts do not have a word in the NVM to determine
Auke Kokbc7f75f2007-09-17 12:30:59 -07004170 * the default flow control setting, so we explicitly
4171 * set it to full.
4172 */
Bruce Allan37289d92009-06-02 11:29:37 +00004173 if (hw->fc.requested_mode == e1000_fc_default) {
4174 /* Workaround h/w hang when Tx flow control enabled */
4175 if (hw->mac.type == e1000_pchlan)
4176 hw->fc.requested_mode = e1000_fc_rx_pause;
4177 else
4178 hw->fc.requested_mode = e1000_fc_full;
4179 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07004180
Bruce Allane921eb12012-11-28 09:28:37 +00004181 /* Save off the requested flow control mode for use later. Depending
Bruce Allan5c48ef3e22008-11-21 16:57:36 -08004182 * on the link partner's capabilities, we may or may not use this mode.
4183 */
4184 hw->fc.current_mode = hw->fc.requested_mode;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004185
Bruce Allan17e813e2013-02-20 04:06:01 +00004186 e_dbg("After fix-ups FlowControl is now = %x\n", hw->fc.current_mode);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004187
4188 /* Continue to configure the copper link. */
Bruce Allan944ce012012-02-22 09:02:42 +00004189 ret_val = hw->mac.ops.setup_physical_interface(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004190 if (ret_val)
4191 return ret_val;
4192
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004193 ew32(FCTTV, hw->fc.pause_time);
Bruce Allana4f58f52009-06-02 11:29:18 +00004194 if ((hw->phy.type == e1000_phy_82578) ||
Bruce Alland3738bb2010-06-16 13:27:28 +00004195 (hw->phy.type == e1000_phy_82579) ||
Bruce Allan2fbe4522012-04-19 03:21:47 +00004196 (hw->phy.type == e1000_phy_i217) ||
Bruce Allana4f58f52009-06-02 11:29:18 +00004197 (hw->phy.type == e1000_phy_82577)) {
Bruce Allana3055952010-05-10 15:02:12 +00004198 ew32(FCRTV_PCH, hw->fc.refresh_time);
4199
Bruce Allan482fed82011-01-06 14:29:49 +00004200 ret_val = e1e_wphy(hw, PHY_REG(BM_PORT_CTRL_PAGE, 27),
4201 hw->fc.pause_time);
Bruce Allana4f58f52009-06-02 11:29:18 +00004202 if (ret_val)
4203 return ret_val;
4204 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07004205
4206 return e1000e_set_fc_watermarks(hw);
4207}
4208
4209/**
4210 * e1000_setup_copper_link_ich8lan - Configure MAC/PHY interface
4211 * @hw: pointer to the HW structure
4212 *
4213 * Configures the kumeran interface to the PHY to wait the appropriate time
4214 * when polling the PHY, then call the generic setup_copper_link to finish
4215 * configuring the copper link.
4216 **/
4217static s32 e1000_setup_copper_link_ich8lan(struct e1000_hw *hw)
4218{
4219 u32 ctrl;
4220 s32 ret_val;
4221 u16 reg_data;
4222
4223 ctrl = er32(CTRL);
4224 ctrl |= E1000_CTRL_SLU;
4225 ctrl &= ~(E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX);
4226 ew32(CTRL, ctrl);
4227
Bruce Allane921eb12012-11-28 09:28:37 +00004228 /* Set the mac to wait the maximum time between each iteration
Auke Kokbc7f75f2007-09-17 12:30:59 -07004229 * and increase the max iterations when polling the phy;
Bruce Allanad680762008-03-28 09:15:03 -07004230 * this fixes erroneous timeouts at 10Mbps.
4231 */
Bruce Allan07818952009-12-08 07:28:01 +00004232 ret_val = e1000e_write_kmrn_reg(hw, E1000_KMRNCTRLSTA_TIMEOUTS, 0xFFFF);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004233 if (ret_val)
4234 return ret_val;
Bruce Allan07818952009-12-08 07:28:01 +00004235 ret_val = e1000e_read_kmrn_reg(hw, E1000_KMRNCTRLSTA_INBAND_PARAM,
Bruce Allanf0ff4392013-02-20 04:05:39 +00004236 &reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004237 if (ret_val)
4238 return ret_val;
4239 reg_data |= 0x3F;
Bruce Allan07818952009-12-08 07:28:01 +00004240 ret_val = e1000e_write_kmrn_reg(hw, E1000_KMRNCTRLSTA_INBAND_PARAM,
Bruce Allanf0ff4392013-02-20 04:05:39 +00004241 reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004242 if (ret_val)
4243 return ret_val;
4244
Bruce Allana4f58f52009-06-02 11:29:18 +00004245 switch (hw->phy.type) {
4246 case e1000_phy_igp_3:
Auke Kokbc7f75f2007-09-17 12:30:59 -07004247 ret_val = e1000e_copper_link_setup_igp(hw);
4248 if (ret_val)
4249 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00004250 break;
4251 case e1000_phy_bm:
4252 case e1000_phy_82578:
Bruce Allan97ac8ca2008-04-29 09:16:05 -07004253 ret_val = e1000e_copper_link_setup_m88(hw);
4254 if (ret_val)
4255 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00004256 break;
4257 case e1000_phy_82577:
Bruce Alland3738bb2010-06-16 13:27:28 +00004258 case e1000_phy_82579:
Bruce Allana4f58f52009-06-02 11:29:18 +00004259 ret_val = e1000_copper_link_setup_82577(hw);
4260 if (ret_val)
4261 return ret_val;
4262 break;
4263 case e1000_phy_ife:
Bruce Allan482fed82011-01-06 14:29:49 +00004264 ret_val = e1e_rphy(hw, IFE_PHY_MDIX_CONTROL, &reg_data);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07004265 if (ret_val)
4266 return ret_val;
4267
4268 reg_data &= ~IFE_PMC_AUTO_MDIX;
4269
4270 switch (hw->phy.mdix) {
4271 case 1:
4272 reg_data &= ~IFE_PMC_FORCE_MDIX;
4273 break;
4274 case 2:
4275 reg_data |= IFE_PMC_FORCE_MDIX;
4276 break;
4277 case 0:
4278 default:
4279 reg_data |= IFE_PMC_AUTO_MDIX;
4280 break;
4281 }
Bruce Allan482fed82011-01-06 14:29:49 +00004282 ret_val = e1e_wphy(hw, IFE_PHY_MDIX_CONTROL, reg_data);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07004283 if (ret_val)
4284 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00004285 break;
4286 default:
4287 break;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07004288 }
Bruce Allan3fa8293632012-02-08 02:55:40 +00004289
Auke Kokbc7f75f2007-09-17 12:30:59 -07004290 return e1000e_setup_copper_link(hw);
4291}
4292
4293/**
Bruce Allanea8179a2013-03-06 09:02:47 +00004294 * e1000_setup_copper_link_pch_lpt - Configure MAC/PHY interface
4295 * @hw: pointer to the HW structure
4296 *
4297 * Calls the PHY specific link setup function and then calls the
4298 * generic setup_copper_link to finish configuring the link for
4299 * Lynxpoint PCH devices
4300 **/
4301static s32 e1000_setup_copper_link_pch_lpt(struct e1000_hw *hw)
4302{
4303 u32 ctrl;
4304 s32 ret_val;
4305
4306 ctrl = er32(CTRL);
4307 ctrl |= E1000_CTRL_SLU;
4308 ctrl &= ~(E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX);
4309 ew32(CTRL, ctrl);
4310
4311 ret_val = e1000_copper_link_setup_82577(hw);
4312 if (ret_val)
4313 return ret_val;
4314
4315 return e1000e_setup_copper_link(hw);
4316}
4317
4318/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07004319 * e1000_get_link_up_info_ich8lan - Get current link speed and duplex
4320 * @hw: pointer to the HW structure
4321 * @speed: pointer to store current link speed
4322 * @duplex: pointer to store the current link duplex
4323 *
Bruce Allanad680762008-03-28 09:15:03 -07004324 * Calls the generic get_speed_and_duplex to retrieve the current link
Auke Kokbc7f75f2007-09-17 12:30:59 -07004325 * information and then calls the Kumeran lock loss workaround for links at
4326 * gigabit speeds.
4327 **/
4328static s32 e1000_get_link_up_info_ich8lan(struct e1000_hw *hw, u16 *speed,
4329 u16 *duplex)
4330{
4331 s32 ret_val;
4332
4333 ret_val = e1000e_get_speed_and_duplex_copper(hw, speed, duplex);
4334 if (ret_val)
4335 return ret_val;
4336
4337 if ((hw->mac.type == e1000_ich8lan) &&
Bruce Allane5fe2542013-02-20 04:06:27 +00004338 (hw->phy.type == e1000_phy_igp_3) && (*speed == SPEED_1000)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07004339 ret_val = e1000_kmrn_lock_loss_workaround_ich8lan(hw);
4340 }
4341
4342 return ret_val;
4343}
4344
4345/**
4346 * e1000_kmrn_lock_loss_workaround_ich8lan - Kumeran workaround
4347 * @hw: pointer to the HW structure
4348 *
4349 * Work-around for 82566 Kumeran PCS lock loss:
4350 * On link status change (i.e. PCI reset, speed change) and link is up and
4351 * speed is gigabit-
4352 * 0) if workaround is optionally disabled do nothing
4353 * 1) wait 1ms for Kumeran link to come up
4354 * 2) check Kumeran Diagnostic register PCS lock loss bit
4355 * 3) if not set the link is locked (all is good), otherwise...
4356 * 4) reset the PHY
4357 * 5) repeat up to 10 times
4358 * Note: this is only called for IGP3 copper when speed is 1gb.
4359 **/
4360static s32 e1000_kmrn_lock_loss_workaround_ich8lan(struct e1000_hw *hw)
4361{
4362 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
4363 u32 phy_ctrl;
4364 s32 ret_val;
4365 u16 i, data;
4366 bool link;
4367
4368 if (!dev_spec->kmrn_lock_loss_workaround_enabled)
4369 return 0;
4370
Bruce Allane921eb12012-11-28 09:28:37 +00004371 /* Make sure link is up before proceeding. If not just return.
Auke Kokbc7f75f2007-09-17 12:30:59 -07004372 * Attempting this while link is negotiating fouled up link
Bruce Allanad680762008-03-28 09:15:03 -07004373 * stability
4374 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004375 ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link);
4376 if (!link)
4377 return 0;
4378
4379 for (i = 0; i < 10; i++) {
4380 /* read once to clear */
4381 ret_val = e1e_rphy(hw, IGP3_KMRN_DIAG, &data);
4382 if (ret_val)
4383 return ret_val;
4384 /* and again to get new status */
4385 ret_val = e1e_rphy(hw, IGP3_KMRN_DIAG, &data);
4386 if (ret_val)
4387 return ret_val;
4388
4389 /* check for PCS lock */
4390 if (!(data & IGP3_KMRN_DIAG_PCS_LOCK_LOSS))
4391 return 0;
4392
4393 /* Issue PHY reset */
4394 e1000_phy_hw_reset(hw);
4395 mdelay(5);
4396 }
4397 /* Disable GigE link negotiation */
4398 phy_ctrl = er32(PHY_CTRL);
4399 phy_ctrl |= (E1000_PHY_CTRL_GBE_DISABLE |
4400 E1000_PHY_CTRL_NOND0A_GBE_DISABLE);
4401 ew32(PHY_CTRL, phy_ctrl);
4402
Bruce Allane921eb12012-11-28 09:28:37 +00004403 /* Call gig speed drop workaround on Gig disable before accessing
Bruce Allanad680762008-03-28 09:15:03 -07004404 * any PHY registers
4405 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004406 e1000e_gig_downshift_workaround_ich8lan(hw);
4407
4408 /* unable to acquire PCS lock */
4409 return -E1000_ERR_PHY;
4410}
4411
4412/**
Bruce Allan6e3c8072012-02-22 09:02:47 +00004413 * e1000e_set_kmrn_lock_loss_workaround_ich8lan - Set Kumeran workaround state
Auke Kokbc7f75f2007-09-17 12:30:59 -07004414 * @hw: pointer to the HW structure
Auke Kok489815c2008-02-21 15:11:07 -08004415 * @state: boolean value used to set the current Kumeran workaround state
Auke Kokbc7f75f2007-09-17 12:30:59 -07004416 *
Bruce Allan564ea9b2009-11-20 23:26:44 +00004417 * If ICH8, set the current Kumeran workaround state (enabled - true
4418 * /disabled - false).
Auke Kokbc7f75f2007-09-17 12:30:59 -07004419 **/
4420void e1000e_set_kmrn_lock_loss_workaround_ich8lan(struct e1000_hw *hw,
Bruce Allan17e813e2013-02-20 04:06:01 +00004421 bool state)
Auke Kokbc7f75f2007-09-17 12:30:59 -07004422{
4423 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
4424
4425 if (hw->mac.type != e1000_ich8lan) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00004426 e_dbg("Workaround applies to ICH8 only.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07004427 return;
4428 }
4429
4430 dev_spec->kmrn_lock_loss_workaround_enabled = state;
4431}
4432
4433/**
4434 * e1000_ipg3_phy_powerdown_workaround_ich8lan - Power down workaround on D3
4435 * @hw: pointer to the HW structure
4436 *
4437 * Workaround for 82566 power-down on D3 entry:
4438 * 1) disable gigabit link
4439 * 2) write VR power-down enable
4440 * 3) read it back
4441 * Continue if successful, else issue LCD reset and repeat
4442 **/
4443void e1000e_igp3_phy_powerdown_workaround_ich8lan(struct e1000_hw *hw)
4444{
4445 u32 reg;
4446 u16 data;
Bruce Allane80bd1d2013-05-01 01:19:46 +00004447 u8 retry = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004448
4449 if (hw->phy.type != e1000_phy_igp_3)
4450 return;
4451
4452 /* Try the workaround twice (if needed) */
4453 do {
4454 /* Disable link */
4455 reg = er32(PHY_CTRL);
4456 reg |= (E1000_PHY_CTRL_GBE_DISABLE |
4457 E1000_PHY_CTRL_NOND0A_GBE_DISABLE);
4458 ew32(PHY_CTRL, reg);
4459
Bruce Allane921eb12012-11-28 09:28:37 +00004460 /* Call gig speed drop workaround on Gig disable before
Bruce Allanad680762008-03-28 09:15:03 -07004461 * accessing any PHY registers
4462 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004463 if (hw->mac.type == e1000_ich8lan)
4464 e1000e_gig_downshift_workaround_ich8lan(hw);
4465
4466 /* Write VR power-down enable */
4467 e1e_rphy(hw, IGP3_VR_CTRL, &data);
4468 data &= ~IGP3_VR_CTRL_DEV_POWERDOWN_MODE_MASK;
4469 e1e_wphy(hw, IGP3_VR_CTRL, data | IGP3_VR_CTRL_MODE_SHUTDOWN);
4470
4471 /* Read it back and test */
4472 e1e_rphy(hw, IGP3_VR_CTRL, &data);
4473 data &= IGP3_VR_CTRL_DEV_POWERDOWN_MODE_MASK;
4474 if ((data == IGP3_VR_CTRL_MODE_SHUTDOWN) || retry)
4475 break;
4476
4477 /* Issue PHY reset and repeat at most one more time */
4478 reg = er32(CTRL);
4479 ew32(CTRL, reg | E1000_CTRL_PHY_RST);
4480 retry++;
4481 } while (retry);
4482}
4483
4484/**
4485 * e1000e_gig_downshift_workaround_ich8lan - WoL from S5 stops working
4486 * @hw: pointer to the HW structure
4487 *
4488 * Steps to take when dropping from 1Gb/s (eg. link cable removal (LSC),
Auke Kok489815c2008-02-21 15:11:07 -08004489 * LPLU, Gig disable, MDIC PHY reset):
Auke Kokbc7f75f2007-09-17 12:30:59 -07004490 * 1) Set Kumeran Near-end loopback
4491 * 2) Clear Kumeran Near-end loopback
Bruce Allan462d5992011-09-30 08:07:11 +00004492 * Should only be called for ICH8[m] devices with any 1G Phy.
Auke Kokbc7f75f2007-09-17 12:30:59 -07004493 **/
4494void e1000e_gig_downshift_workaround_ich8lan(struct e1000_hw *hw)
4495{
4496 s32 ret_val;
4497 u16 reg_data;
4498
Bruce Allan462d5992011-09-30 08:07:11 +00004499 if ((hw->mac.type != e1000_ich8lan) || (hw->phy.type == e1000_phy_ife))
Auke Kokbc7f75f2007-09-17 12:30:59 -07004500 return;
4501
4502 ret_val = e1000e_read_kmrn_reg(hw, E1000_KMRNCTRLSTA_DIAG_OFFSET,
Bruce Allan17e813e2013-02-20 04:06:01 +00004503 &reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004504 if (ret_val)
4505 return;
4506 reg_data |= E1000_KMRNCTRLSTA_DIAG_NELPBK;
4507 ret_val = e1000e_write_kmrn_reg(hw, E1000_KMRNCTRLSTA_DIAG_OFFSET,
Bruce Allan17e813e2013-02-20 04:06:01 +00004508 reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004509 if (ret_val)
4510 return;
4511 reg_data &= ~E1000_KMRNCTRLSTA_DIAG_NELPBK;
Bruce Allan7dbbe5d2013-01-05 05:08:31 +00004512 e1000e_write_kmrn_reg(hw, E1000_KMRNCTRLSTA_DIAG_OFFSET, reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004513}
4514
4515/**
Bruce Allan99730e42011-05-13 07:19:48 +00004516 * e1000_suspend_workarounds_ich8lan - workarounds needed during S0->Sx
Bruce Allan97ac8ca2008-04-29 09:16:05 -07004517 * @hw: pointer to the HW structure
4518 *
4519 * During S0 to Sx transition, it is possible the link remains at gig
4520 * instead of negotiating to a lower speed. Before going to Sx, set
Bruce Allanc077a902011-12-16 00:46:38 +00004521 * 'Gig Disable' to force link speed negotiation to a lower speed based on
4522 * the LPLU setting in the NVM or custom setting. For PCH and newer parts,
4523 * the OEM bits PHY register (LED, GbE disable and LPLU configurations) also
4524 * needs to be written.
Bruce Allan2fbe4522012-04-19 03:21:47 +00004525 * Parts that support (and are linked to a partner which support) EEE in
4526 * 100Mbps should disable LPLU since 100Mbps w/ EEE requires less power
4527 * than 10Mbps w/o EEE.
Bruce Allan97ac8ca2008-04-29 09:16:05 -07004528 **/
Bruce Allan99730e42011-05-13 07:19:48 +00004529void e1000_suspend_workarounds_ich8lan(struct e1000_hw *hw)
Bruce Allan97ac8ca2008-04-29 09:16:05 -07004530{
Bruce Allan2fbe4522012-04-19 03:21:47 +00004531 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07004532 u32 phy_ctrl;
Bruce Allan8395ae82010-09-22 17:15:08 +00004533 s32 ret_val;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07004534
Bruce Allan17f085d2010-06-17 18:59:48 +00004535 phy_ctrl = er32(PHY_CTRL);
Bruce Allanc077a902011-12-16 00:46:38 +00004536 phy_ctrl |= E1000_PHY_CTRL_GBE_DISABLE;
Bruce Allane08f6262013-02-20 03:06:34 +00004537
Bruce Allan2fbe4522012-04-19 03:21:47 +00004538 if (hw->phy.type == e1000_phy_i217) {
Bruce Allane08f6262013-02-20 03:06:34 +00004539 u16 phy_reg, device_id = hw->adapter->pdev->device;
4540
4541 if ((device_id == E1000_DEV_ID_PCH_LPTLP_I218_LM) ||
Bruce Allan91a3d822013-06-29 01:15:16 +00004542 (device_id == E1000_DEV_ID_PCH_LPTLP_I218_V) ||
4543 (device_id == E1000_DEV_ID_PCH_I218_LM3) ||
4544 (device_id == E1000_DEV_ID_PCH_I218_V3)) {
Bruce Allane08f6262013-02-20 03:06:34 +00004545 u32 fextnvm6 = er32(FEXTNVM6);
4546
4547 ew32(FEXTNVM6, fextnvm6 & ~E1000_FEXTNVM6_REQ_PLL_CLK);
4548 }
Bruce Allan2fbe4522012-04-19 03:21:47 +00004549
4550 ret_val = hw->phy.ops.acquire(hw);
4551 if (ret_val)
4552 goto out;
4553
4554 if (!dev_spec->eee_disable) {
4555 u16 eee_advert;
4556
Bruce Allan4ddc48a2012-12-05 06:25:58 +00004557 ret_val =
4558 e1000_read_emi_reg_locked(hw,
4559 I217_EEE_ADVERTISEMENT,
4560 &eee_advert);
Bruce Allan2fbe4522012-04-19 03:21:47 +00004561 if (ret_val)
4562 goto release;
Bruce Allan2fbe4522012-04-19 03:21:47 +00004563
Bruce Allane921eb12012-11-28 09:28:37 +00004564 /* Disable LPLU if both link partners support 100BaseT
Bruce Allan2fbe4522012-04-19 03:21:47 +00004565 * EEE and 100Full is advertised on both ends of the
4566 * link.
4567 */
Bruce Allan3d4d5752012-12-05 06:26:08 +00004568 if ((eee_advert & I82579_EEE_100_SUPPORTED) &&
Bruce Allan2fbe4522012-04-19 03:21:47 +00004569 (dev_spec->eee_lp_ability &
Bruce Allan3d4d5752012-12-05 06:26:08 +00004570 I82579_EEE_100_SUPPORTED) &&
Bruce Allan2fbe4522012-04-19 03:21:47 +00004571 (hw->phy.autoneg_advertised & ADVERTISE_100_FULL))
4572 phy_ctrl &= ~(E1000_PHY_CTRL_D0A_LPLU |
4573 E1000_PHY_CTRL_NOND0A_LPLU);
4574 }
4575
Bruce Allane921eb12012-11-28 09:28:37 +00004576 /* For i217 Intel Rapid Start Technology support,
Bruce Allan2fbe4522012-04-19 03:21:47 +00004577 * when the system is going into Sx and no manageability engine
4578 * is present, the driver must configure proxy to reset only on
4579 * power good. LPI (Low Power Idle) state must also reset only
4580 * on power good, as well as the MTA (Multicast table array).
4581 * The SMBus release must also be disabled on LCD reset.
4582 */
4583 if (!(er32(FWSM) & E1000_ICH_FWSM_FW_VALID)) {
Bruce Allan2fbe4522012-04-19 03:21:47 +00004584 /* Enable proxy to reset only on power good. */
4585 e1e_rphy_locked(hw, I217_PROXY_CTRL, &phy_reg);
4586 phy_reg |= I217_PROXY_CTRL_AUTO_DISABLE;
4587 e1e_wphy_locked(hw, I217_PROXY_CTRL, phy_reg);
4588
Bruce Allane921eb12012-11-28 09:28:37 +00004589 /* Set bit enable LPI (EEE) to reset only on
Bruce Allan2fbe4522012-04-19 03:21:47 +00004590 * power good.
4591 */
4592 e1e_rphy_locked(hw, I217_SxCTRL, &phy_reg);
Bruce Allan6d7407b2012-05-10 02:51:17 +00004593 phy_reg |= I217_SxCTRL_ENABLE_LPI_RESET;
Bruce Allan2fbe4522012-04-19 03:21:47 +00004594 e1e_wphy_locked(hw, I217_SxCTRL, phy_reg);
4595
4596 /* Disable the SMB release on LCD reset. */
4597 e1e_rphy_locked(hw, I217_MEMPWR, &phy_reg);
Bruce Allan6d7407b2012-05-10 02:51:17 +00004598 phy_reg &= ~I217_MEMPWR_DISABLE_SMB_RELEASE;
Bruce Allan2fbe4522012-04-19 03:21:47 +00004599 e1e_wphy_locked(hw, I217_MEMPWR, phy_reg);
4600 }
4601
Bruce Allane921eb12012-11-28 09:28:37 +00004602 /* Enable MTA to reset for Intel Rapid Start Technology
Bruce Allan2fbe4522012-04-19 03:21:47 +00004603 * Support
4604 */
4605 e1e_rphy_locked(hw, I217_CGFREG, &phy_reg);
Bruce Allan6d7407b2012-05-10 02:51:17 +00004606 phy_reg |= I217_CGFREG_ENABLE_MTA_RESET;
Bruce Allan2fbe4522012-04-19 03:21:47 +00004607 e1e_wphy_locked(hw, I217_CGFREG, phy_reg);
4608
4609release:
4610 hw->phy.ops.release(hw);
4611 }
4612out:
Bruce Allan17f085d2010-06-17 18:59:48 +00004613 ew32(PHY_CTRL, phy_ctrl);
Bruce Allana4f58f52009-06-02 11:29:18 +00004614
Bruce Allan462d5992011-09-30 08:07:11 +00004615 if (hw->mac.type == e1000_ich8lan)
4616 e1000e_gig_downshift_workaround_ich8lan(hw);
4617
Bruce Allan8395ae82010-09-22 17:15:08 +00004618 if (hw->mac.type >= e1000_pchlan) {
Bruce Allance54afd2010-11-24 06:01:41 +00004619 e1000_oem_bits_config_ich8lan(hw, false);
Bruce Allan92fe1732012-04-12 06:27:03 +00004620
4621 /* Reset PHY to activate OEM bits on 82577/8 */
4622 if (hw->mac.type == e1000_pchlan)
4623 e1000e_phy_hw_reset_generic(hw);
4624
Bruce Allan8395ae82010-09-22 17:15:08 +00004625 ret_val = hw->phy.ops.acquire(hw);
4626 if (ret_val)
4627 return;
4628 e1000_write_smbus_addr(hw);
4629 hw->phy.ops.release(hw);
4630 }
Bruce Allan97ac8ca2008-04-29 09:16:05 -07004631}
4632
4633/**
Bruce Allan99730e42011-05-13 07:19:48 +00004634 * e1000_resume_workarounds_pchlan - workarounds needed during Sx->S0
4635 * @hw: pointer to the HW structure
4636 *
4637 * During Sx to S0 transitions on non-managed devices or managed devices
4638 * on which PHY resets are not blocked, if the PHY registers cannot be
4639 * accessed properly by the s/w toggle the LANPHYPC value to power cycle
4640 * the PHY.
Bruce Allan2fbe4522012-04-19 03:21:47 +00004641 * On i217, setup Intel Rapid Start Technology.
Bruce Allan99730e42011-05-13 07:19:48 +00004642 **/
4643void e1000_resume_workarounds_pchlan(struct e1000_hw *hw)
4644{
Bruce Allan90b82982011-12-16 00:46:33 +00004645 s32 ret_val;
Bruce Allan99730e42011-05-13 07:19:48 +00004646
Bruce Allancb17aab2012-04-13 03:16:22 +00004647 if (hw->mac.type < e1000_pch2lan)
Bruce Allan99730e42011-05-13 07:19:48 +00004648 return;
4649
Bruce Allancb17aab2012-04-13 03:16:22 +00004650 ret_val = e1000_init_phy_workarounds_pchlan(hw);
Bruce Allan90b82982011-12-16 00:46:33 +00004651 if (ret_val) {
Bruce Allancb17aab2012-04-13 03:16:22 +00004652 e_dbg("Failed to init PHY flow ret_val=%d\n", ret_val);
Bruce Allan99730e42011-05-13 07:19:48 +00004653 return;
4654 }
Bruce Allan2fbe4522012-04-19 03:21:47 +00004655
Bruce Allane921eb12012-11-28 09:28:37 +00004656 /* For i217 Intel Rapid Start Technology support when the system
Bruce Allan2fbe4522012-04-19 03:21:47 +00004657 * is transitioning from Sx and no manageability engine is present
4658 * configure SMBus to restore on reset, disable proxy, and enable
4659 * the reset on MTA (Multicast table array).
4660 */
4661 if (hw->phy.type == e1000_phy_i217) {
4662 u16 phy_reg;
4663
4664 ret_val = hw->phy.ops.acquire(hw);
4665 if (ret_val) {
4666 e_dbg("Failed to setup iRST\n");
4667 return;
4668 }
4669
4670 if (!(er32(FWSM) & E1000_ICH_FWSM_FW_VALID)) {
Bruce Allane921eb12012-11-28 09:28:37 +00004671 /* Restore clear on SMB if no manageability engine
Bruce Allan2fbe4522012-04-19 03:21:47 +00004672 * is present
4673 */
4674 ret_val = e1e_rphy_locked(hw, I217_MEMPWR, &phy_reg);
4675 if (ret_val)
4676 goto release;
Bruce Allan6d7407b2012-05-10 02:51:17 +00004677 phy_reg |= I217_MEMPWR_DISABLE_SMB_RELEASE;
Bruce Allan2fbe4522012-04-19 03:21:47 +00004678 e1e_wphy_locked(hw, I217_MEMPWR, phy_reg);
4679
4680 /* Disable Proxy */
4681 e1e_wphy_locked(hw, I217_PROXY_CTRL, 0);
4682 }
4683 /* Enable reset on MTA */
4684 ret_val = e1e_rphy_locked(hw, I217_CGFREG, &phy_reg);
4685 if (ret_val)
4686 goto release;
Bruce Allan6d7407b2012-05-10 02:51:17 +00004687 phy_reg &= ~I217_CGFREG_ENABLE_MTA_RESET;
Bruce Allan2fbe4522012-04-19 03:21:47 +00004688 e1e_wphy_locked(hw, I217_CGFREG, phy_reg);
4689release:
4690 if (ret_val)
4691 e_dbg("Error %d in resume workarounds\n", ret_val);
4692 hw->phy.ops.release(hw);
4693 }
Bruce Allan99730e42011-05-13 07:19:48 +00004694}
4695
4696/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07004697 * e1000_cleanup_led_ich8lan - Restore the default LED operation
4698 * @hw: pointer to the HW structure
4699 *
4700 * Return the LED back to the default configuration.
4701 **/
4702static s32 e1000_cleanup_led_ich8lan(struct e1000_hw *hw)
4703{
4704 if (hw->phy.type == e1000_phy_ife)
4705 return e1e_wphy(hw, IFE_PHY_SPECIAL_CONTROL_LED, 0);
4706
4707 ew32(LEDCTL, hw->mac.ledctl_default);
4708 return 0;
4709}
4710
4711/**
Auke Kok489815c2008-02-21 15:11:07 -08004712 * e1000_led_on_ich8lan - Turn LEDs on
Auke Kokbc7f75f2007-09-17 12:30:59 -07004713 * @hw: pointer to the HW structure
4714 *
Auke Kok489815c2008-02-21 15:11:07 -08004715 * Turn on the LEDs.
Auke Kokbc7f75f2007-09-17 12:30:59 -07004716 **/
4717static s32 e1000_led_on_ich8lan(struct e1000_hw *hw)
4718{
4719 if (hw->phy.type == e1000_phy_ife)
4720 return e1e_wphy(hw, IFE_PHY_SPECIAL_CONTROL_LED,
4721 (IFE_PSCL_PROBE_MODE | IFE_PSCL_PROBE_LEDS_ON));
4722
4723 ew32(LEDCTL, hw->mac.ledctl_mode2);
4724 return 0;
4725}
4726
4727/**
Auke Kok489815c2008-02-21 15:11:07 -08004728 * e1000_led_off_ich8lan - Turn LEDs off
Auke Kokbc7f75f2007-09-17 12:30:59 -07004729 * @hw: pointer to the HW structure
4730 *
Auke Kok489815c2008-02-21 15:11:07 -08004731 * Turn off the LEDs.
Auke Kokbc7f75f2007-09-17 12:30:59 -07004732 **/
4733static s32 e1000_led_off_ich8lan(struct e1000_hw *hw)
4734{
4735 if (hw->phy.type == e1000_phy_ife)
4736 return e1e_wphy(hw, IFE_PHY_SPECIAL_CONTROL_LED,
Bruce Allan482fed82011-01-06 14:29:49 +00004737 (IFE_PSCL_PROBE_MODE |
4738 IFE_PSCL_PROBE_LEDS_OFF));
Auke Kokbc7f75f2007-09-17 12:30:59 -07004739
4740 ew32(LEDCTL, hw->mac.ledctl_mode1);
4741 return 0;
4742}
4743
4744/**
Bruce Allana4f58f52009-06-02 11:29:18 +00004745 * e1000_setup_led_pchlan - Configures SW controllable LED
4746 * @hw: pointer to the HW structure
4747 *
4748 * This prepares the SW controllable LED for use.
4749 **/
4750static s32 e1000_setup_led_pchlan(struct e1000_hw *hw)
4751{
Bruce Allan482fed82011-01-06 14:29:49 +00004752 return e1e_wphy(hw, HV_LED_CONFIG, (u16)hw->mac.ledctl_mode1);
Bruce Allana4f58f52009-06-02 11:29:18 +00004753}
4754
4755/**
4756 * e1000_cleanup_led_pchlan - Restore the default LED operation
4757 * @hw: pointer to the HW structure
4758 *
4759 * Return the LED back to the default configuration.
4760 **/
4761static s32 e1000_cleanup_led_pchlan(struct e1000_hw *hw)
4762{
Bruce Allan482fed82011-01-06 14:29:49 +00004763 return e1e_wphy(hw, HV_LED_CONFIG, (u16)hw->mac.ledctl_default);
Bruce Allana4f58f52009-06-02 11:29:18 +00004764}
4765
4766/**
4767 * e1000_led_on_pchlan - Turn LEDs on
4768 * @hw: pointer to the HW structure
4769 *
4770 * Turn on the LEDs.
4771 **/
4772static s32 e1000_led_on_pchlan(struct e1000_hw *hw)
4773{
4774 u16 data = (u16)hw->mac.ledctl_mode2;
4775 u32 i, led;
4776
Bruce Allane921eb12012-11-28 09:28:37 +00004777 /* If no link, then turn LED on by setting the invert bit
Bruce Allana4f58f52009-06-02 11:29:18 +00004778 * for each LED that's mode is "link_up" in ledctl_mode2.
4779 */
4780 if (!(er32(STATUS) & E1000_STATUS_LU)) {
4781 for (i = 0; i < 3; i++) {
4782 led = (data >> (i * 5)) & E1000_PHY_LED0_MASK;
4783 if ((led & E1000_PHY_LED0_MODE_MASK) !=
4784 E1000_LEDCTL_MODE_LINK_UP)
4785 continue;
4786 if (led & E1000_PHY_LED0_IVRT)
4787 data &= ~(E1000_PHY_LED0_IVRT << (i * 5));
4788 else
4789 data |= (E1000_PHY_LED0_IVRT << (i * 5));
4790 }
4791 }
4792
Bruce Allan482fed82011-01-06 14:29:49 +00004793 return e1e_wphy(hw, HV_LED_CONFIG, data);
Bruce Allana4f58f52009-06-02 11:29:18 +00004794}
4795
4796/**
4797 * e1000_led_off_pchlan - Turn LEDs off
4798 * @hw: pointer to the HW structure
4799 *
4800 * Turn off the LEDs.
4801 **/
4802static s32 e1000_led_off_pchlan(struct e1000_hw *hw)
4803{
4804 u16 data = (u16)hw->mac.ledctl_mode1;
4805 u32 i, led;
4806
Bruce Allane921eb12012-11-28 09:28:37 +00004807 /* If no link, then turn LED off by clearing the invert bit
Bruce Allana4f58f52009-06-02 11:29:18 +00004808 * for each LED that's mode is "link_up" in ledctl_mode1.
4809 */
4810 if (!(er32(STATUS) & E1000_STATUS_LU)) {
4811 for (i = 0; i < 3; i++) {
4812 led = (data >> (i * 5)) & E1000_PHY_LED0_MASK;
4813 if ((led & E1000_PHY_LED0_MODE_MASK) !=
4814 E1000_LEDCTL_MODE_LINK_UP)
4815 continue;
4816 if (led & E1000_PHY_LED0_IVRT)
4817 data &= ~(E1000_PHY_LED0_IVRT << (i * 5));
4818 else
4819 data |= (E1000_PHY_LED0_IVRT << (i * 5));
4820 }
4821 }
4822
Bruce Allan482fed82011-01-06 14:29:49 +00004823 return e1e_wphy(hw, HV_LED_CONFIG, data);
Bruce Allana4f58f52009-06-02 11:29:18 +00004824}
4825
4826/**
Bruce Allane98cac42010-05-10 15:02:32 +00004827 * e1000_get_cfg_done_ich8lan - Read config done bit after Full or PHY reset
Bruce Allanf4187b52008-08-26 18:36:50 -07004828 * @hw: pointer to the HW structure
4829 *
Bruce Allane98cac42010-05-10 15:02:32 +00004830 * Read appropriate register for the config done bit for completion status
4831 * and configure the PHY through s/w for EEPROM-less parts.
4832 *
4833 * NOTE: some silicon which is EEPROM-less will fail trying to read the
4834 * config done bit, so only an error is logged and continues. If we were
4835 * to return with error, EEPROM-less silicon would not be able to be reset
4836 * or change link.
Bruce Allanf4187b52008-08-26 18:36:50 -07004837 **/
4838static s32 e1000_get_cfg_done_ich8lan(struct e1000_hw *hw)
4839{
Bruce Allane98cac42010-05-10 15:02:32 +00004840 s32 ret_val = 0;
Bruce Allanf4187b52008-08-26 18:36:50 -07004841 u32 bank = 0;
Bruce Allane98cac42010-05-10 15:02:32 +00004842 u32 status;
Bruce Allanfc0c7762009-07-01 13:27:55 +00004843
Bruce Allanfe908492013-01-05 08:06:14 +00004844 e1000e_get_cfg_done_generic(hw);
Bruce Allanf4187b52008-08-26 18:36:50 -07004845
Bruce Allane98cac42010-05-10 15:02:32 +00004846 /* Wait for indication from h/w that it has completed basic config */
4847 if (hw->mac.type >= e1000_ich10lan) {
4848 e1000_lan_init_done_ich8lan(hw);
4849 } else {
4850 ret_val = e1000e_get_auto_rd_done(hw);
4851 if (ret_val) {
Bruce Allane921eb12012-11-28 09:28:37 +00004852 /* When auto config read does not complete, do not
Bruce Allane98cac42010-05-10 15:02:32 +00004853 * return with an error. This can happen in situations
4854 * where there is no eeprom and prevents getting link.
4855 */
4856 e_dbg("Auto Read Done did not complete\n");
4857 ret_val = 0;
4858 }
4859 }
4860
4861 /* Clear PHY Reset Asserted bit */
4862 status = er32(STATUS);
4863 if (status & E1000_STATUS_PHYRA)
4864 ew32(STATUS, status & ~E1000_STATUS_PHYRA);
4865 else
4866 e_dbg("PHY Reset Asserted not set - needs delay\n");
4867
Bruce Allanf4187b52008-08-26 18:36:50 -07004868 /* If EEPROM is not marked present, init the IGP 3 PHY manually */
Bruce Allane98cac42010-05-10 15:02:32 +00004869 if (hw->mac.type <= e1000_ich9lan) {
Bruce Allan04499ec2012-04-13 00:08:31 +00004870 if (!(er32(EECD) & E1000_EECD_PRES) &&
Bruce Allanf4187b52008-08-26 18:36:50 -07004871 (hw->phy.type == e1000_phy_igp_3)) {
4872 e1000e_phy_init_script_igp3(hw);
4873 }
4874 } else {
4875 if (e1000_valid_nvm_bank_detect_ich8lan(hw, &bank)) {
4876 /* Maybe we should do a basic PHY config */
Bruce Allan3bb99fe2009-11-20 23:25:07 +00004877 e_dbg("EEPROM not present\n");
Bruce Allane98cac42010-05-10 15:02:32 +00004878 ret_val = -E1000_ERR_CONFIG;
Bruce Allanf4187b52008-08-26 18:36:50 -07004879 }
4880 }
4881
Bruce Allane98cac42010-05-10 15:02:32 +00004882 return ret_val;
Bruce Allanf4187b52008-08-26 18:36:50 -07004883}
4884
4885/**
Bruce Allan17f208d2009-12-01 15:47:22 +00004886 * e1000_power_down_phy_copper_ich8lan - Remove link during PHY power down
4887 * @hw: pointer to the HW structure
4888 *
4889 * In the case of a PHY power down to save power, or to turn off link during a
4890 * driver unload, or wake on lan is not enabled, remove the link.
4891 **/
4892static void e1000_power_down_phy_copper_ich8lan(struct e1000_hw *hw)
4893{
4894 /* If the management interface is not enabled, then power down */
4895 if (!(hw->mac.ops.check_mng_mode(hw) ||
4896 hw->phy.ops.check_reset_block(hw)))
4897 e1000_power_down_phy_copper(hw);
Bruce Allan17f208d2009-12-01 15:47:22 +00004898}
4899
4900/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07004901 * e1000_clear_hw_cntrs_ich8lan - Clear statistical counters
4902 * @hw: pointer to the HW structure
4903 *
4904 * Clears hardware counters specific to the silicon family and calls
4905 * clear_hw_cntrs_generic to clear all general purpose counters.
4906 **/
4907static void e1000_clear_hw_cntrs_ich8lan(struct e1000_hw *hw)
4908{
Bruce Allana4f58f52009-06-02 11:29:18 +00004909 u16 phy_data;
Bruce Allan2b6b1682011-05-13 07:20:09 +00004910 s32 ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004911
4912 e1000e_clear_hw_cntrs_base(hw);
4913
Bruce Allan99673d92009-11-20 23:27:21 +00004914 er32(ALGNERRC);
4915 er32(RXERRC);
4916 er32(TNCRS);
4917 er32(CEXTERR);
4918 er32(TSCTC);
4919 er32(TSCTFC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004920
Bruce Allan99673d92009-11-20 23:27:21 +00004921 er32(MGTPRC);
4922 er32(MGTPDC);
4923 er32(MGTPTC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004924
Bruce Allan99673d92009-11-20 23:27:21 +00004925 er32(IAC);
4926 er32(ICRXOC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004927
Bruce Allana4f58f52009-06-02 11:29:18 +00004928 /* Clear PHY statistics registers */
4929 if ((hw->phy.type == e1000_phy_82578) ||
Bruce Alland3738bb2010-06-16 13:27:28 +00004930 (hw->phy.type == e1000_phy_82579) ||
Bruce Allan2fbe4522012-04-19 03:21:47 +00004931 (hw->phy.type == e1000_phy_i217) ||
Bruce Allana4f58f52009-06-02 11:29:18 +00004932 (hw->phy.type == e1000_phy_82577)) {
Bruce Allan2b6b1682011-05-13 07:20:09 +00004933 ret_val = hw->phy.ops.acquire(hw);
4934 if (ret_val)
4935 return;
4936 ret_val = hw->phy.ops.set_page(hw,
4937 HV_STATS_PAGE << IGP_PAGE_SHIFT);
4938 if (ret_val)
4939 goto release;
4940 hw->phy.ops.read_reg_page(hw, HV_SCC_UPPER, &phy_data);
4941 hw->phy.ops.read_reg_page(hw, HV_SCC_LOWER, &phy_data);
4942 hw->phy.ops.read_reg_page(hw, HV_ECOL_UPPER, &phy_data);
4943 hw->phy.ops.read_reg_page(hw, HV_ECOL_LOWER, &phy_data);
4944 hw->phy.ops.read_reg_page(hw, HV_MCC_UPPER, &phy_data);
4945 hw->phy.ops.read_reg_page(hw, HV_MCC_LOWER, &phy_data);
4946 hw->phy.ops.read_reg_page(hw, HV_LATECOL_UPPER, &phy_data);
4947 hw->phy.ops.read_reg_page(hw, HV_LATECOL_LOWER, &phy_data);
4948 hw->phy.ops.read_reg_page(hw, HV_COLC_UPPER, &phy_data);
4949 hw->phy.ops.read_reg_page(hw, HV_COLC_LOWER, &phy_data);
4950 hw->phy.ops.read_reg_page(hw, HV_DC_UPPER, &phy_data);
4951 hw->phy.ops.read_reg_page(hw, HV_DC_LOWER, &phy_data);
4952 hw->phy.ops.read_reg_page(hw, HV_TNCRS_UPPER, &phy_data);
4953 hw->phy.ops.read_reg_page(hw, HV_TNCRS_LOWER, &phy_data);
4954release:
4955 hw->phy.ops.release(hw);
Bruce Allana4f58f52009-06-02 11:29:18 +00004956 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07004957}
4958
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00004959static const struct e1000_mac_operations ich8_mac_ops = {
Bruce Allaneb7700d2010-06-16 13:27:05 +00004960 /* check_mng_mode dependent on mac type */
Bruce Allan7d3cabb2009-07-01 13:29:08 +00004961 .check_for_link = e1000_check_for_copper_link_ich8lan,
Bruce Allana4f58f52009-06-02 11:29:18 +00004962 /* cleanup_led dependent on mac type */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004963 .clear_hw_cntrs = e1000_clear_hw_cntrs_ich8lan,
4964 .get_bus_info = e1000_get_bus_info_ich8lan,
Bruce Allanf4d2dd42010-01-13 02:05:18 +00004965 .set_lan_id = e1000_set_lan_id_single_port,
Auke Kokbc7f75f2007-09-17 12:30:59 -07004966 .get_link_up_info = e1000_get_link_up_info_ich8lan,
Bruce Allana4f58f52009-06-02 11:29:18 +00004967 /* led_on dependent on mac type */
4968 /* led_off dependent on mac type */
Jeff Kirshere2de3eb2008-03-28 09:15:11 -07004969 .update_mc_addr_list = e1000e_update_mc_addr_list_generic,
Auke Kokbc7f75f2007-09-17 12:30:59 -07004970 .reset_hw = e1000_reset_hw_ich8lan,
4971 .init_hw = e1000_init_hw_ich8lan,
4972 .setup_link = e1000_setup_link_ich8lan,
Bruce Allan55c5f552013-01-12 07:28:24 +00004973 .setup_physical_interface = e1000_setup_copper_link_ich8lan,
Bruce Allana4f58f52009-06-02 11:29:18 +00004974 /* id_led_init dependent on mac type */
Bruce Allan57cde762012-02-22 09:02:58 +00004975 .config_collision_dist = e1000e_config_collision_dist_generic,
Bruce Allan69e1e012012-04-14 03:28:50 +00004976 .rar_set = e1000e_rar_set_generic,
Auke Kokbc7f75f2007-09-17 12:30:59 -07004977};
4978
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00004979static const struct e1000_phy_operations ich8_phy_ops = {
Bruce Allan94d81862009-11-20 23:25:26 +00004980 .acquire = e1000_acquire_swflag_ich8lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07004981 .check_reset_block = e1000_check_reset_block_ich8lan,
Bruce Allan94d81862009-11-20 23:25:26 +00004982 .commit = NULL,
Bruce Allanf4187b52008-08-26 18:36:50 -07004983 .get_cfg_done = e1000_get_cfg_done_ich8lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07004984 .get_cable_length = e1000e_get_cable_length_igp_2,
Bruce Allan94d81862009-11-20 23:25:26 +00004985 .read_reg = e1000e_read_phy_reg_igp,
4986 .release = e1000_release_swflag_ich8lan,
4987 .reset = e1000_phy_hw_reset_ich8lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07004988 .set_d0_lplu_state = e1000_set_d0_lplu_state_ich8lan,
4989 .set_d3_lplu_state = e1000_set_d3_lplu_state_ich8lan,
Bruce Allan94d81862009-11-20 23:25:26 +00004990 .write_reg = e1000e_write_phy_reg_igp,
Auke Kokbc7f75f2007-09-17 12:30:59 -07004991};
4992
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00004993static const struct e1000_nvm_operations ich8_nvm_ops = {
Bruce Allan94d81862009-11-20 23:25:26 +00004994 .acquire = e1000_acquire_nvm_ich8lan,
Bruce Allan55c5f552013-01-12 07:28:24 +00004995 .read = e1000_read_nvm_ich8lan,
Bruce Allan94d81862009-11-20 23:25:26 +00004996 .release = e1000_release_nvm_ich8lan,
Bruce Allane85e3632012-02-22 09:03:14 +00004997 .reload = e1000e_reload_nvm_generic,
Bruce Allan94d81862009-11-20 23:25:26 +00004998 .update = e1000_update_nvm_checksum_ich8lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07004999 .valid_led_default = e1000_valid_led_default_ich8lan,
Bruce Allan94d81862009-11-20 23:25:26 +00005000 .validate = e1000_validate_nvm_checksum_ich8lan,
5001 .write = e1000_write_nvm_ich8lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07005002};
5003
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00005004const struct e1000_info e1000_ich8_info = {
Auke Kokbc7f75f2007-09-17 12:30:59 -07005005 .mac = e1000_ich8lan,
5006 .flags = FLAG_HAS_WOL
Bruce Allan97ac8ca2008-04-29 09:16:05 -07005007 | FLAG_IS_ICH
Auke Kokbc7f75f2007-09-17 12:30:59 -07005008 | FLAG_HAS_CTRLEXT_ON_LOAD
5009 | FLAG_HAS_AMT
5010 | FLAG_HAS_FLASH
5011 | FLAG_APME_IN_WUC,
5012 .pba = 8,
Bruce Allan2adc55c2009-06-02 11:28:58 +00005013 .max_hw_frame_size = ETH_FRAME_LEN + ETH_FCS_LEN,
Jeff Kirsher69e3fd82008-04-02 13:48:18 -07005014 .get_variants = e1000_get_variants_ich8lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07005015 .mac_ops = &ich8_mac_ops,
5016 .phy_ops = &ich8_phy_ops,
5017 .nvm_ops = &ich8_nvm_ops,
5018};
5019
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00005020const struct e1000_info e1000_ich9_info = {
Auke Kokbc7f75f2007-09-17 12:30:59 -07005021 .mac = e1000_ich9lan,
5022 .flags = FLAG_HAS_JUMBO_FRAMES
Bruce Allan97ac8ca2008-04-29 09:16:05 -07005023 | FLAG_IS_ICH
Auke Kokbc7f75f2007-09-17 12:30:59 -07005024 | FLAG_HAS_WOL
Auke Kokbc7f75f2007-09-17 12:30:59 -07005025 | FLAG_HAS_CTRLEXT_ON_LOAD
5026 | FLAG_HAS_AMT
Auke Kokbc7f75f2007-09-17 12:30:59 -07005027 | FLAG_HAS_FLASH
5028 | FLAG_APME_IN_WUC,
Bruce Allan7f1557e2011-12-16 00:46:43 +00005029 .pba = 18,
Bruce Allan2adc55c2009-06-02 11:28:58 +00005030 .max_hw_frame_size = DEFAULT_JUMBO,
Jeff Kirsher69e3fd82008-04-02 13:48:18 -07005031 .get_variants = e1000_get_variants_ich8lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07005032 .mac_ops = &ich8_mac_ops,
5033 .phy_ops = &ich8_phy_ops,
5034 .nvm_ops = &ich8_nvm_ops,
5035};
5036
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00005037const struct e1000_info e1000_ich10_info = {
Bruce Allanf4187b52008-08-26 18:36:50 -07005038 .mac = e1000_ich10lan,
5039 .flags = FLAG_HAS_JUMBO_FRAMES
5040 | FLAG_IS_ICH
5041 | FLAG_HAS_WOL
Bruce Allanf4187b52008-08-26 18:36:50 -07005042 | FLAG_HAS_CTRLEXT_ON_LOAD
5043 | FLAG_HAS_AMT
Bruce Allanf4187b52008-08-26 18:36:50 -07005044 | FLAG_HAS_FLASH
5045 | FLAG_APME_IN_WUC,
Bruce Allan7f1557e2011-12-16 00:46:43 +00005046 .pba = 18,
Bruce Allan2adc55c2009-06-02 11:28:58 +00005047 .max_hw_frame_size = DEFAULT_JUMBO,
Bruce Allanf4187b52008-08-26 18:36:50 -07005048 .get_variants = e1000_get_variants_ich8lan,
5049 .mac_ops = &ich8_mac_ops,
5050 .phy_ops = &ich8_phy_ops,
5051 .nvm_ops = &ich8_nvm_ops,
5052};
Bruce Allana4f58f52009-06-02 11:29:18 +00005053
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00005054const struct e1000_info e1000_pch_info = {
Bruce Allana4f58f52009-06-02 11:29:18 +00005055 .mac = e1000_pchlan,
5056 .flags = FLAG_IS_ICH
5057 | FLAG_HAS_WOL
Bruce Allana4f58f52009-06-02 11:29:18 +00005058 | FLAG_HAS_CTRLEXT_ON_LOAD
5059 | FLAG_HAS_AMT
5060 | FLAG_HAS_FLASH
5061 | FLAG_HAS_JUMBO_FRAMES
Bruce Allan38eb3942009-11-19 12:34:20 +00005062 | FLAG_DISABLE_FC_PAUSE_TIME /* errata */
Bruce Allana4f58f52009-06-02 11:29:18 +00005063 | FLAG_APME_IN_WUC,
Bruce Allan8c7bbb92010-06-16 13:26:41 +00005064 .flags2 = FLAG2_HAS_PHY_STATS,
Bruce Allana4f58f52009-06-02 11:29:18 +00005065 .pba = 26,
5066 .max_hw_frame_size = 4096,
5067 .get_variants = e1000_get_variants_ich8lan,
5068 .mac_ops = &ich8_mac_ops,
5069 .phy_ops = &ich8_phy_ops,
5070 .nvm_ops = &ich8_nvm_ops,
5071};
Bruce Alland3738bb2010-06-16 13:27:28 +00005072
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00005073const struct e1000_info e1000_pch2_info = {
Bruce Alland3738bb2010-06-16 13:27:28 +00005074 .mac = e1000_pch2lan,
5075 .flags = FLAG_IS_ICH
5076 | FLAG_HAS_WOL
Bruce Allanb67e1912012-12-27 08:32:33 +00005077 | FLAG_HAS_HW_TIMESTAMP
Bruce Alland3738bb2010-06-16 13:27:28 +00005078 | FLAG_HAS_CTRLEXT_ON_LOAD
5079 | FLAG_HAS_AMT
5080 | FLAG_HAS_FLASH
5081 | FLAG_HAS_JUMBO_FRAMES
5082 | FLAG_APME_IN_WUC,
Bruce Allane52997f2010-06-16 13:27:49 +00005083 .flags2 = FLAG2_HAS_PHY_STATS
5084 | FLAG2_HAS_EEE,
Bruce Allan828bac82010-09-29 21:39:37 +00005085 .pba = 26,
Bruce Allanc3d2dbf2013-01-09 01:20:46 +00005086 .max_hw_frame_size = 9018,
Bruce Alland3738bb2010-06-16 13:27:28 +00005087 .get_variants = e1000_get_variants_ich8lan,
5088 .mac_ops = &ich8_mac_ops,
5089 .phy_ops = &ich8_phy_ops,
5090 .nvm_ops = &ich8_nvm_ops,
5091};
Bruce Allan2fbe4522012-04-19 03:21:47 +00005092
5093const struct e1000_info e1000_pch_lpt_info = {
5094 .mac = e1000_pch_lpt,
5095 .flags = FLAG_IS_ICH
5096 | FLAG_HAS_WOL
Bruce Allanb67e1912012-12-27 08:32:33 +00005097 | FLAG_HAS_HW_TIMESTAMP
Bruce Allan2fbe4522012-04-19 03:21:47 +00005098 | FLAG_HAS_CTRLEXT_ON_LOAD
5099 | FLAG_HAS_AMT
5100 | FLAG_HAS_FLASH
5101 | FLAG_HAS_JUMBO_FRAMES
5102 | FLAG_APME_IN_WUC,
5103 .flags2 = FLAG2_HAS_PHY_STATS
5104 | FLAG2_HAS_EEE,
5105 .pba = 26,
Bruce Allaned1a4262013-01-04 09:51:36 +00005106 .max_hw_frame_size = 9018,
Bruce Allan2fbe4522012-04-19 03:21:47 +00005107 .get_variants = e1000_get_variants_ich8lan,
5108 .mac_ops = &ich8_mac_ops,
5109 .phy_ops = &ich8_phy_ops,
5110 .nvm_ops = &ich8_nvm_ops,
5111};