blob: 0bfef8e16a7bf859587ea59c98662791d7bd47c0 [file] [log] [blame]
Auke Kokbc7f75f2007-09-17 12:30:59 -07001/*******************************************************************************
2
3 Intel PRO/1000 Linux driver
Bruce Allanc7e54b12009-11-20 23:25:45 +00004 Copyright(c) 1999 - 2009 Intel Corporation.
Auke Kokbc7f75f2007-09-17 12:30:59 -07005
6 This program is free software; you can redistribute it and/or modify it
7 under the terms and conditions of the GNU General Public License,
8 version 2, as published by the Free Software Foundation.
9
10 This program is distributed in the hope it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 more details.
14
15 You should have received a copy of the GNU General Public License along with
16 this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
21
22 Contact Information:
23 Linux NICS <linux.nics@intel.com>
24 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
25 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
26
27*******************************************************************************/
28
29/*
Bruce Allan16059272008-11-21 16:51:06 -080030 * 82562G 10/100 Network Connection
Auke Kokbc7f75f2007-09-17 12:30:59 -070031 * 82562G-2 10/100 Network Connection
32 * 82562GT 10/100 Network Connection
33 * 82562GT-2 10/100 Network Connection
34 * 82562V 10/100 Network Connection
35 * 82562V-2 10/100 Network Connection
36 * 82566DC-2 Gigabit Network Connection
37 * 82566DC Gigabit Network Connection
38 * 82566DM-2 Gigabit Network Connection
39 * 82566DM Gigabit Network Connection
40 * 82566MC Gigabit Network Connection
41 * 82566MM Gigabit Network Connection
Bruce Allan97ac8ca2008-04-29 09:16:05 -070042 * 82567LM Gigabit Network Connection
43 * 82567LF Gigabit Network Connection
Bruce Allan16059272008-11-21 16:51:06 -080044 * 82567V Gigabit Network Connection
Bruce Allan97ac8ca2008-04-29 09:16:05 -070045 * 82567LM-2 Gigabit Network Connection
46 * 82567LF-2 Gigabit Network Connection
47 * 82567V-2 Gigabit Network Connection
Bruce Allanf4187b52008-08-26 18:36:50 -070048 * 82567LF-3 Gigabit Network Connection
49 * 82567LM-3 Gigabit Network Connection
Bruce Allan2f15f9d2008-08-26 18:36:36 -070050 * 82567LM-4 Gigabit Network Connection
Bruce Allana4f58f52009-06-02 11:29:18 +000051 * 82577LM Gigabit Network Connection
52 * 82577LC Gigabit Network Connection
53 * 82578DM Gigabit Network Connection
54 * 82578DC Gigabit Network Connection
Auke Kokbc7f75f2007-09-17 12:30:59 -070055 */
56
Auke Kokbc7f75f2007-09-17 12:30:59 -070057#include "e1000.h"
58
59#define ICH_FLASH_GFPREG 0x0000
60#define ICH_FLASH_HSFSTS 0x0004
61#define ICH_FLASH_HSFCTL 0x0006
62#define ICH_FLASH_FADDR 0x0008
63#define ICH_FLASH_FDATA0 0x0010
Bruce Allan4a770352008-10-01 17:18:35 -070064#define ICH_FLASH_PR0 0x0074
Auke Kokbc7f75f2007-09-17 12:30:59 -070065
66#define ICH_FLASH_READ_COMMAND_TIMEOUT 500
67#define ICH_FLASH_WRITE_COMMAND_TIMEOUT 500
68#define ICH_FLASH_ERASE_COMMAND_TIMEOUT 3000000
69#define ICH_FLASH_LINEAR_ADDR_MASK 0x00FFFFFF
70#define ICH_FLASH_CYCLE_REPEAT_COUNT 10
71
72#define ICH_CYCLE_READ 0
73#define ICH_CYCLE_WRITE 2
74#define ICH_CYCLE_ERASE 3
75
76#define FLASH_GFPREG_BASE_MASK 0x1FFF
77#define FLASH_SECTOR_ADDR_SHIFT 12
78
79#define ICH_FLASH_SEG_SIZE_256 256
80#define ICH_FLASH_SEG_SIZE_4K 4096
81#define ICH_FLASH_SEG_SIZE_8K 8192
82#define ICH_FLASH_SEG_SIZE_64K 65536
83
84
85#define E1000_ICH_FWSM_RSPCIPHY 0x00000040 /* Reset PHY on PCI Reset */
Bruce Allan6dfaa762010-05-05 22:00:06 +000086/* FW established a valid mode */
87#define E1000_ICH_FWSM_FW_VALID 0x00008000
Auke Kokbc7f75f2007-09-17 12:30:59 -070088
89#define E1000_ICH_MNG_IAMT_MODE 0x2
90
91#define ID_LED_DEFAULT_ICH8LAN ((ID_LED_DEF1_DEF2 << 12) | \
92 (ID_LED_DEF1_OFF2 << 8) | \
93 (ID_LED_DEF1_ON2 << 4) | \
94 (ID_LED_DEF1_DEF2))
95
96#define E1000_ICH_NVM_SIG_WORD 0x13
97#define E1000_ICH_NVM_SIG_MASK 0xC000
Bruce Allane2434552008-11-21 17:02:41 -080098#define E1000_ICH_NVM_VALID_SIG_MASK 0xC0
99#define E1000_ICH_NVM_SIG_VALUE 0x80
Auke Kokbc7f75f2007-09-17 12:30:59 -0700100
101#define E1000_ICH8_LAN_INIT_TIMEOUT 1500
102
103#define E1000_FEXTNVM_SW_CONFIG 1
104#define E1000_FEXTNVM_SW_CONFIG_ICH8M (1 << 27) /* Bit redefined for ICH8M :/ */
105
106#define PCIE_ICH8_SNOOP_ALL PCIE_NO_SNOOP_ALL
107
108#define E1000_ICH_RAR_ENTRIES 7
109
110#define PHY_PAGE_SHIFT 5
111#define PHY_REG(page, reg) (((page) << PHY_PAGE_SHIFT) | \
112 ((reg) & MAX_PHY_REG_ADDRESS))
113#define IGP3_KMRN_DIAG PHY_REG(770, 19) /* KMRN Diagnostic */
114#define IGP3_VR_CTRL PHY_REG(776, 18) /* Voltage Regulator Control */
115
116#define IGP3_KMRN_DIAG_PCS_LOCK_LOSS 0x0002
117#define IGP3_VR_CTRL_DEV_POWERDOWN_MODE_MASK 0x0300
118#define IGP3_VR_CTRL_MODE_SHUTDOWN 0x0200
119
Bruce Allana4f58f52009-06-02 11:29:18 +0000120#define HV_LED_CONFIG PHY_REG(768, 30) /* LED Configuration */
121
Bruce Allan53ac5a82009-10-26 11:23:06 +0000122#define SW_FLAG_TIMEOUT 1000 /* SW Semaphore flag timeout in milliseconds */
123
Bruce Allanf523d212009-10-29 13:45:45 +0000124/* SMBus Address Phy Register */
125#define HV_SMB_ADDR PHY_REG(768, 26)
126#define HV_SMB_ADDR_PEC_EN 0x0200
127#define HV_SMB_ADDR_VALID 0x0080
128
129/* Strapping Option Register - RO */
130#define E1000_STRAP 0x0000C
131#define E1000_STRAP_SMBUS_ADDRESS_MASK 0x00FE0000
132#define E1000_STRAP_SMBUS_ADDRESS_SHIFT 17
133
Bruce Allanfa2ce132009-10-26 11:23:25 +0000134/* OEM Bits Phy Register */
135#define HV_OEM_BITS PHY_REG(768, 25)
136#define HV_OEM_BITS_LPLU 0x0004 /* Low Power Link Up */
Bruce Allanf523d212009-10-29 13:45:45 +0000137#define HV_OEM_BITS_GBE_DIS 0x0040 /* Gigabit Disable */
Bruce Allanfa2ce132009-10-26 11:23:25 +0000138#define HV_OEM_BITS_RESTART_AN 0x0400 /* Restart Auto-negotiation */
139
Bruce Allan1d5846b2009-10-29 13:46:05 +0000140#define E1000_NVM_K1_CONFIG 0x1B /* NVM K1 Config Word */
141#define E1000_NVM_K1_ENABLE 0x1 /* NVM Enable K1 bit */
142
Bruce Allanfddaa1a2010-01-13 01:52:49 +0000143/* KMRN Mode Control */
144#define HV_KMRN_MODE_CTRL PHY_REG(769, 16)
145#define HV_KMRN_MDIO_SLOW 0x0400
146
Auke Kokbc7f75f2007-09-17 12:30:59 -0700147/* ICH GbE Flash Hardware Sequencing Flash Status Register bit breakdown */
148/* Offset 04h HSFSTS */
149union ich8_hws_flash_status {
150 struct ich8_hsfsts {
151 u16 flcdone :1; /* bit 0 Flash Cycle Done */
152 u16 flcerr :1; /* bit 1 Flash Cycle Error */
153 u16 dael :1; /* bit 2 Direct Access error Log */
154 u16 berasesz :2; /* bit 4:3 Sector Erase Size */
155 u16 flcinprog :1; /* bit 5 flash cycle in Progress */
156 u16 reserved1 :2; /* bit 13:6 Reserved */
157 u16 reserved2 :6; /* bit 13:6 Reserved */
158 u16 fldesvalid :1; /* bit 14 Flash Descriptor Valid */
159 u16 flockdn :1; /* bit 15 Flash Config Lock-Down */
160 } hsf_status;
161 u16 regval;
162};
163
164/* ICH GbE Flash Hardware Sequencing Flash control Register bit breakdown */
165/* Offset 06h FLCTL */
166union ich8_hws_flash_ctrl {
167 struct ich8_hsflctl {
168 u16 flcgo :1; /* 0 Flash Cycle Go */
169 u16 flcycle :2; /* 2:1 Flash Cycle */
170 u16 reserved :5; /* 7:3 Reserved */
171 u16 fldbcount :2; /* 9:8 Flash Data Byte Count */
172 u16 flockdn :6; /* 15:10 Reserved */
173 } hsf_ctrl;
174 u16 regval;
175};
176
177/* ICH Flash Region Access Permissions */
178union ich8_hws_flash_regacc {
179 struct ich8_flracc {
180 u32 grra :8; /* 0:7 GbE region Read Access */
181 u32 grwa :8; /* 8:15 GbE region Write Access */
182 u32 gmrag :8; /* 23:16 GbE Master Read Access Grant */
183 u32 gmwag :8; /* 31:24 GbE Master Write Access Grant */
184 } hsf_flregacc;
185 u16 regval;
186};
187
Bruce Allan4a770352008-10-01 17:18:35 -0700188/* ICH Flash Protected Region */
189union ich8_flash_protected_range {
190 struct ich8_pr {
191 u32 base:13; /* 0:12 Protected Range Base */
192 u32 reserved1:2; /* 13:14 Reserved */
193 u32 rpe:1; /* 15 Read Protection Enable */
194 u32 limit:13; /* 16:28 Protected Range Limit */
195 u32 reserved2:2; /* 29:30 Reserved */
196 u32 wpe:1; /* 31 Write Protection Enable */
197 } range;
198 u32 regval;
199};
200
Auke Kokbc7f75f2007-09-17 12:30:59 -0700201static s32 e1000_setup_link_ich8lan(struct e1000_hw *hw);
202static void e1000_clear_hw_cntrs_ich8lan(struct e1000_hw *hw);
203static void e1000_initialize_hw_bits_ich8lan(struct e1000_hw *hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700204static s32 e1000_erase_flash_bank_ich8lan(struct e1000_hw *hw, u32 bank);
205static s32 e1000_retry_write_flash_byte_ich8lan(struct e1000_hw *hw,
206 u32 offset, u8 byte);
Bruce Allanf4187b52008-08-26 18:36:50 -0700207static s32 e1000_read_flash_byte_ich8lan(struct e1000_hw *hw, u32 offset,
208 u8 *data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700209static s32 e1000_read_flash_word_ich8lan(struct e1000_hw *hw, u32 offset,
210 u16 *data);
211static s32 e1000_read_flash_data_ich8lan(struct e1000_hw *hw, u32 offset,
212 u8 size, u16 *data);
213static s32 e1000_setup_copper_link_ich8lan(struct e1000_hw *hw);
214static s32 e1000_kmrn_lock_loss_workaround_ich8lan(struct e1000_hw *hw);
Bruce Allanf4187b52008-08-26 18:36:50 -0700215static s32 e1000_get_cfg_done_ich8lan(struct e1000_hw *hw);
Bruce Allana4f58f52009-06-02 11:29:18 +0000216static s32 e1000_cleanup_led_ich8lan(struct e1000_hw *hw);
217static s32 e1000_led_on_ich8lan(struct e1000_hw *hw);
218static s32 e1000_led_off_ich8lan(struct e1000_hw *hw);
219static s32 e1000_id_led_init_pchlan(struct e1000_hw *hw);
220static s32 e1000_setup_led_pchlan(struct e1000_hw *hw);
221static s32 e1000_cleanup_led_pchlan(struct e1000_hw *hw);
222static s32 e1000_led_on_pchlan(struct e1000_hw *hw);
223static s32 e1000_led_off_pchlan(struct e1000_hw *hw);
Bruce Allanfa2ce132009-10-26 11:23:25 +0000224static s32 e1000_set_lplu_state_pchlan(struct e1000_hw *hw, bool active);
Bruce Allan17f208d2009-12-01 15:47:22 +0000225static void e1000_power_down_phy_copper_ich8lan(struct e1000_hw *hw);
Bruce Allanf523d212009-10-29 13:45:45 +0000226static void e1000_lan_init_done_ich8lan(struct e1000_hw *hw);
Bruce Allan1d5846b2009-10-29 13:46:05 +0000227static s32 e1000_k1_gig_workaround_hv(struct e1000_hw *hw, bool link);
Bruce Allanfddaa1a2010-01-13 01:52:49 +0000228static s32 e1000_set_mdio_slow_mode_hv(struct e1000_hw *hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700229
230static inline u16 __er16flash(struct e1000_hw *hw, unsigned long reg)
231{
232 return readw(hw->flash_address + reg);
233}
234
235static inline u32 __er32flash(struct e1000_hw *hw, unsigned long reg)
236{
237 return readl(hw->flash_address + reg);
238}
239
240static inline void __ew16flash(struct e1000_hw *hw, unsigned long reg, u16 val)
241{
242 writew(val, hw->flash_address + reg);
243}
244
245static inline void __ew32flash(struct e1000_hw *hw, unsigned long reg, u32 val)
246{
247 writel(val, hw->flash_address + reg);
248}
249
250#define er16flash(reg) __er16flash(hw, (reg))
251#define er32flash(reg) __er32flash(hw, (reg))
252#define ew16flash(reg,val) __ew16flash(hw, (reg), (val))
253#define ew32flash(reg,val) __ew32flash(hw, (reg), (val))
254
255/**
Bruce Allana4f58f52009-06-02 11:29:18 +0000256 * e1000_init_phy_params_pchlan - Initialize PHY function pointers
257 * @hw: pointer to the HW structure
258 *
259 * Initialize family-specific PHY parameters and function pointers.
260 **/
261static s32 e1000_init_phy_params_pchlan(struct e1000_hw *hw)
262{
263 struct e1000_phy_info *phy = &hw->phy;
Bruce Allan6dfaa762010-05-05 22:00:06 +0000264 u32 ctrl;
Bruce Allana4f58f52009-06-02 11:29:18 +0000265 s32 ret_val = 0;
266
267 phy->addr = 1;
268 phy->reset_delay_us = 100;
269
Bruce Allan94d81862009-11-20 23:25:26 +0000270 phy->ops.read_reg = e1000_read_phy_reg_hv;
271 phy->ops.read_reg_locked = e1000_read_phy_reg_hv_locked;
Bruce Allanfa2ce132009-10-26 11:23:25 +0000272 phy->ops.set_d0_lplu_state = e1000_set_lplu_state_pchlan;
273 phy->ops.set_d3_lplu_state = e1000_set_lplu_state_pchlan;
Bruce Allan94d81862009-11-20 23:25:26 +0000274 phy->ops.write_reg = e1000_write_phy_reg_hv;
275 phy->ops.write_reg_locked = e1000_write_phy_reg_hv_locked;
Bruce Allan17f208d2009-12-01 15:47:22 +0000276 phy->ops.power_up = e1000_power_up_phy_copper;
277 phy->ops.power_down = e1000_power_down_phy_copper_ich8lan;
Bruce Allana4f58f52009-06-02 11:29:18 +0000278 phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT;
279
Bruce Allan6dfaa762010-05-05 22:00:06 +0000280 if (!(er32(FWSM) & E1000_ICH_FWSM_FW_VALID)) {
281 /*
282 * The MAC-PHY interconnect may still be in SMBus mode
283 * after Sx->S0. Toggle the LANPHYPC Value bit to force
284 * the interconnect to PCIe mode, but only if there is no
285 * firmware present otherwise firmware will have done it.
286 */
287 ctrl = er32(CTRL);
288 ctrl |= E1000_CTRL_LANPHYPC_OVERRIDE;
289 ctrl &= ~E1000_CTRL_LANPHYPC_VALUE;
290 ew32(CTRL, ctrl);
291 udelay(10);
292 ctrl &= ~E1000_CTRL_LANPHYPC_OVERRIDE;
293 ew32(CTRL, ctrl);
294 msleep(50);
295 }
296
Bruce Allana4f58f52009-06-02 11:29:18 +0000297 phy->id = e1000_phy_unknown;
Bruce Allanfddaa1a2010-01-13 01:52:49 +0000298 ret_val = e1000e_get_phy_id(hw);
299 if (ret_val)
300 goto out;
301 if ((phy->id == 0) || (phy->id == PHY_REVISION_MASK)) {
302 /*
303 * In case the PHY needs to be in mdio slow mode (eg. 82577),
304 * set slow mode and try to get the PHY id again.
305 */
306 ret_val = e1000_set_mdio_slow_mode_hv(hw);
307 if (ret_val)
308 goto out;
309 ret_val = e1000e_get_phy_id(hw);
310 if (ret_val)
311 goto out;
312 }
Bruce Allana4f58f52009-06-02 11:29:18 +0000313 phy->type = e1000e_get_phy_type_from_id(phy->id);
314
Bruce Allan0be84012009-12-02 17:03:18 +0000315 switch (phy->type) {
316 case e1000_phy_82577:
Bruce Allana4f58f52009-06-02 11:29:18 +0000317 phy->ops.check_polarity = e1000_check_polarity_82577;
318 phy->ops.force_speed_duplex =
319 e1000_phy_force_speed_duplex_82577;
Bruce Allan0be84012009-12-02 17:03:18 +0000320 phy->ops.get_cable_length = e1000_get_cable_length_82577;
Bruce Allan94d81862009-11-20 23:25:26 +0000321 phy->ops.get_info = e1000_get_phy_info_82577;
322 phy->ops.commit = e1000e_phy_sw_reset;
Bruce Allan0be84012009-12-02 17:03:18 +0000323 case e1000_phy_82578:
324 phy->ops.check_polarity = e1000_check_polarity_m88;
325 phy->ops.force_speed_duplex = e1000e_phy_force_speed_duplex_m88;
326 phy->ops.get_cable_length = e1000e_get_cable_length_m88;
327 phy->ops.get_info = e1000e_get_phy_info_m88;
328 break;
329 default:
330 ret_val = -E1000_ERR_PHY;
331 break;
Bruce Allana4f58f52009-06-02 11:29:18 +0000332 }
333
Bruce Allanfddaa1a2010-01-13 01:52:49 +0000334out:
Bruce Allana4f58f52009-06-02 11:29:18 +0000335 return ret_val;
336}
337
338/**
Auke Kokbc7f75f2007-09-17 12:30:59 -0700339 * e1000_init_phy_params_ich8lan - Initialize PHY function pointers
340 * @hw: pointer to the HW structure
341 *
342 * Initialize family-specific PHY parameters and function pointers.
343 **/
344static s32 e1000_init_phy_params_ich8lan(struct e1000_hw *hw)
345{
346 struct e1000_phy_info *phy = &hw->phy;
347 s32 ret_val;
348 u16 i = 0;
349
350 phy->addr = 1;
351 phy->reset_delay_us = 100;
352
Bruce Allan17f208d2009-12-01 15:47:22 +0000353 phy->ops.power_up = e1000_power_up_phy_copper;
354 phy->ops.power_down = e1000_power_down_phy_copper_ich8lan;
355
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700356 /*
357 * We may need to do this twice - once for IGP and if that fails,
358 * we'll set BM func pointers and try again
359 */
360 ret_val = e1000e_determine_phy_address(hw);
361 if (ret_val) {
Bruce Allan94d81862009-11-20 23:25:26 +0000362 phy->ops.write_reg = e1000e_write_phy_reg_bm;
363 phy->ops.read_reg = e1000e_read_phy_reg_bm;
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700364 ret_val = e1000e_determine_phy_address(hw);
Bruce Allan9b71b412009-12-01 15:53:07 +0000365 if (ret_val) {
366 e_dbg("Cannot determine PHY addr. Erroring out\n");
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700367 return ret_val;
Bruce Allan9b71b412009-12-01 15:53:07 +0000368 }
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700369 }
370
Auke Kokbc7f75f2007-09-17 12:30:59 -0700371 phy->id = 0;
372 while ((e1000_phy_unknown == e1000e_get_phy_type_from_id(phy->id)) &&
373 (i++ < 100)) {
374 msleep(1);
375 ret_val = e1000e_get_phy_id(hw);
376 if (ret_val)
377 return ret_val;
378 }
379
380 /* Verify phy id */
381 switch (phy->id) {
382 case IGP03E1000_E_PHY_ID:
383 phy->type = e1000_phy_igp_3;
384 phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT;
Bruce Allan94d81862009-11-20 23:25:26 +0000385 phy->ops.read_reg_locked = e1000e_read_phy_reg_igp_locked;
386 phy->ops.write_reg_locked = e1000e_write_phy_reg_igp_locked;
Bruce Allan0be84012009-12-02 17:03:18 +0000387 phy->ops.get_info = e1000e_get_phy_info_igp;
388 phy->ops.check_polarity = e1000_check_polarity_igp;
389 phy->ops.force_speed_duplex = e1000e_phy_force_speed_duplex_igp;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700390 break;
391 case IFE_E_PHY_ID:
392 case IFE_PLUS_E_PHY_ID:
393 case IFE_C_E_PHY_ID:
394 phy->type = e1000_phy_ife;
395 phy->autoneg_mask = E1000_ALL_NOT_GIG;
Bruce Allan0be84012009-12-02 17:03:18 +0000396 phy->ops.get_info = e1000_get_phy_info_ife;
397 phy->ops.check_polarity = e1000_check_polarity_ife;
398 phy->ops.force_speed_duplex = e1000_phy_force_speed_duplex_ife;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700399 break;
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700400 case BME1000_E_PHY_ID:
401 phy->type = e1000_phy_bm;
402 phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT;
Bruce Allan94d81862009-11-20 23:25:26 +0000403 phy->ops.read_reg = e1000e_read_phy_reg_bm;
404 phy->ops.write_reg = e1000e_write_phy_reg_bm;
405 phy->ops.commit = e1000e_phy_sw_reset;
Bruce Allan0be84012009-12-02 17:03:18 +0000406 phy->ops.get_info = e1000e_get_phy_info_m88;
407 phy->ops.check_polarity = e1000_check_polarity_m88;
408 phy->ops.force_speed_duplex = e1000e_phy_force_speed_duplex_m88;
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700409 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700410 default:
411 return -E1000_ERR_PHY;
412 break;
413 }
414
415 return 0;
416}
417
418/**
419 * e1000_init_nvm_params_ich8lan - Initialize NVM function pointers
420 * @hw: pointer to the HW structure
421 *
422 * Initialize family-specific NVM parameters and function
423 * pointers.
424 **/
425static s32 e1000_init_nvm_params_ich8lan(struct e1000_hw *hw)
426{
427 struct e1000_nvm_info *nvm = &hw->nvm;
428 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
Bruce Allan148675a2009-08-07 07:41:56 +0000429 u32 gfpreg, sector_base_addr, sector_end_addr;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700430 u16 i;
431
Bruce Allanad680762008-03-28 09:15:03 -0700432 /* Can't read flash registers if the register set isn't mapped. */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700433 if (!hw->flash_address) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000434 e_dbg("ERROR: Flash registers not mapped\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700435 return -E1000_ERR_CONFIG;
436 }
437
438 nvm->type = e1000_nvm_flash_sw;
439
440 gfpreg = er32flash(ICH_FLASH_GFPREG);
441
Bruce Allanad680762008-03-28 09:15:03 -0700442 /*
443 * sector_X_addr is a "sector"-aligned address (4096 bytes)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700444 * Add 1 to sector_end_addr since this sector is included in
Bruce Allanad680762008-03-28 09:15:03 -0700445 * the overall size.
446 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700447 sector_base_addr = gfpreg & FLASH_GFPREG_BASE_MASK;
448 sector_end_addr = ((gfpreg >> 16) & FLASH_GFPREG_BASE_MASK) + 1;
449
450 /* flash_base_addr is byte-aligned */
451 nvm->flash_base_addr = sector_base_addr << FLASH_SECTOR_ADDR_SHIFT;
452
Bruce Allanad680762008-03-28 09:15:03 -0700453 /*
454 * find total size of the NVM, then cut in half since the total
455 * size represents two separate NVM banks.
456 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700457 nvm->flash_bank_size = (sector_end_addr - sector_base_addr)
458 << FLASH_SECTOR_ADDR_SHIFT;
459 nvm->flash_bank_size /= 2;
460 /* Adjust to word count */
461 nvm->flash_bank_size /= sizeof(u16);
462
463 nvm->word_size = E1000_ICH8_SHADOW_RAM_WORDS;
464
465 /* Clear shadow ram */
466 for (i = 0; i < nvm->word_size; i++) {
Bruce Allan564ea9b2009-11-20 23:26:44 +0000467 dev_spec->shadow_ram[i].modified = false;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700468 dev_spec->shadow_ram[i].value = 0xFFFF;
469 }
470
471 return 0;
472}
473
474/**
475 * e1000_init_mac_params_ich8lan - Initialize MAC function pointers
476 * @hw: pointer to the HW structure
477 *
478 * Initialize family-specific MAC parameters and function
479 * pointers.
480 **/
481static s32 e1000_init_mac_params_ich8lan(struct e1000_adapter *adapter)
482{
483 struct e1000_hw *hw = &adapter->hw;
484 struct e1000_mac_info *mac = &hw->mac;
485
486 /* Set media type function pointer */
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700487 hw->phy.media_type = e1000_media_type_copper;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700488
489 /* Set mta register count */
490 mac->mta_reg_count = 32;
491 /* Set rar entry count */
492 mac->rar_entry_count = E1000_ICH_RAR_ENTRIES;
493 if (mac->type == e1000_ich8lan)
494 mac->rar_entry_count--;
495 /* Set if manageability features are enabled. */
Bruce Allan564ea9b2009-11-20 23:26:44 +0000496 mac->arc_subsystem_valid = true;
Bruce Allanf464ba82010-01-07 16:31:35 +0000497 /* Adaptive IFS supported */
498 mac->adaptive_ifs = true;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700499
Bruce Allana4f58f52009-06-02 11:29:18 +0000500 /* LED operations */
501 switch (mac->type) {
502 case e1000_ich8lan:
503 case e1000_ich9lan:
504 case e1000_ich10lan:
505 /* ID LED init */
506 mac->ops.id_led_init = e1000e_id_led_init;
507 /* setup LED */
508 mac->ops.setup_led = e1000e_setup_led_generic;
509 /* cleanup LED */
510 mac->ops.cleanup_led = e1000_cleanup_led_ich8lan;
511 /* turn on/off LED */
512 mac->ops.led_on = e1000_led_on_ich8lan;
513 mac->ops.led_off = e1000_led_off_ich8lan;
514 break;
515 case e1000_pchlan:
516 /* ID LED init */
517 mac->ops.id_led_init = e1000_id_led_init_pchlan;
518 /* setup LED */
519 mac->ops.setup_led = e1000_setup_led_pchlan;
520 /* cleanup LED */
521 mac->ops.cleanup_led = e1000_cleanup_led_pchlan;
522 /* turn on/off LED */
523 mac->ops.led_on = e1000_led_on_pchlan;
524 mac->ops.led_off = e1000_led_off_pchlan;
525 break;
526 default:
527 break;
528 }
529
Auke Kokbc7f75f2007-09-17 12:30:59 -0700530 /* Enable PCS Lock-loss workaround for ICH8 */
531 if (mac->type == e1000_ich8lan)
Bruce Allan564ea9b2009-11-20 23:26:44 +0000532 e1000e_set_kmrn_lock_loss_workaround_ich8lan(hw, true);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700533
534 return 0;
535}
536
Bruce Allan7d3cabb2009-07-01 13:29:08 +0000537/**
538 * e1000_check_for_copper_link_ich8lan - Check for link (Copper)
539 * @hw: pointer to the HW structure
540 *
541 * Checks to see of the link status of the hardware has changed. If a
542 * change in link status has been detected, then we read the PHY registers
543 * to get the current speed/duplex if link exists.
544 **/
545static s32 e1000_check_for_copper_link_ich8lan(struct e1000_hw *hw)
546{
547 struct e1000_mac_info *mac = &hw->mac;
548 s32 ret_val;
549 bool link;
550
551 /*
552 * We only want to go out to the PHY registers to see if Auto-Neg
553 * has completed and/or if our link status has changed. The
554 * get_link_status flag is set upon receiving a Link Status
555 * Change or Rx Sequence Error interrupt.
556 */
557 if (!mac->get_link_status) {
558 ret_val = 0;
559 goto out;
560 }
561
Bruce Allan7d3cabb2009-07-01 13:29:08 +0000562 /*
563 * First we want to see if the MII Status Register reports
564 * link. If so, then we want to get the current speed/duplex
565 * of the PHY.
566 */
567 ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link);
568 if (ret_val)
569 goto out;
570
Bruce Allan1d5846b2009-10-29 13:46:05 +0000571 if (hw->mac.type == e1000_pchlan) {
572 ret_val = e1000_k1_gig_workaround_hv(hw, link);
573 if (ret_val)
574 goto out;
575 }
576
Bruce Allan7d3cabb2009-07-01 13:29:08 +0000577 if (!link)
578 goto out; /* No link detected */
579
580 mac->get_link_status = false;
581
582 if (hw->phy.type == e1000_phy_82578) {
583 ret_val = e1000_link_stall_workaround_hv(hw);
584 if (ret_val)
585 goto out;
586 }
587
588 /*
589 * Check if there was DownShift, must be checked
590 * immediately after link-up
591 */
592 e1000e_check_downshift(hw);
593
594 /*
595 * If we are forcing speed/duplex, then we simply return since
596 * we have already determined whether we have link or not.
597 */
598 if (!mac->autoneg) {
599 ret_val = -E1000_ERR_CONFIG;
600 goto out;
601 }
602
603 /*
604 * Auto-Neg is enabled. Auto Speed Detection takes care
605 * of MAC speed/duplex configuration. So we only need to
606 * configure Collision Distance in the MAC.
607 */
608 e1000e_config_collision_dist(hw);
609
610 /*
611 * Configure Flow Control now that Auto-Neg has completed.
612 * First, we need to restore the desired flow control
613 * settings because we may have had to re-autoneg with a
614 * different link partner.
615 */
616 ret_val = e1000e_config_fc_after_link_up(hw);
617 if (ret_val)
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000618 e_dbg("Error configuring flow control\n");
Bruce Allan7d3cabb2009-07-01 13:29:08 +0000619
620out:
621 return ret_val;
622}
623
Jeff Kirsher69e3fd82008-04-02 13:48:18 -0700624static s32 e1000_get_variants_ich8lan(struct e1000_adapter *adapter)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700625{
626 struct e1000_hw *hw = &adapter->hw;
627 s32 rc;
628
629 rc = e1000_init_mac_params_ich8lan(adapter);
630 if (rc)
631 return rc;
632
633 rc = e1000_init_nvm_params_ich8lan(hw);
634 if (rc)
635 return rc;
636
Bruce Allana4f58f52009-06-02 11:29:18 +0000637 if (hw->mac.type == e1000_pchlan)
638 rc = e1000_init_phy_params_pchlan(hw);
639 else
640 rc = e1000_init_phy_params_ich8lan(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700641 if (rc)
642 return rc;
643
Bruce Allan2adc55c2009-06-02 11:28:58 +0000644 if (adapter->hw.phy.type == e1000_phy_ife) {
645 adapter->flags &= ~FLAG_HAS_JUMBO_FRAMES;
646 adapter->max_hw_frame_size = ETH_FRAME_LEN + ETH_FCS_LEN;
647 }
648
Auke Kokbc7f75f2007-09-17 12:30:59 -0700649 if ((adapter->hw.mac.type == e1000_ich8lan) &&
650 (adapter->hw.phy.type == e1000_phy_igp_3))
651 adapter->flags |= FLAG_LSC_GIG_SPEED_DROP;
652
653 return 0;
654}
655
Thomas Gleixner717d4382008-10-02 16:33:40 -0700656static DEFINE_MUTEX(nvm_mutex);
Thomas Gleixner717d4382008-10-02 16:33:40 -0700657
Auke Kokbc7f75f2007-09-17 12:30:59 -0700658/**
Bruce Allanca15df52009-10-26 11:23:43 +0000659 * e1000_acquire_nvm_ich8lan - Acquire NVM mutex
660 * @hw: pointer to the HW structure
661 *
662 * Acquires the mutex for performing NVM operations.
663 **/
664static s32 e1000_acquire_nvm_ich8lan(struct e1000_hw *hw)
665{
666 mutex_lock(&nvm_mutex);
667
668 return 0;
669}
670
671/**
672 * e1000_release_nvm_ich8lan - Release NVM mutex
673 * @hw: pointer to the HW structure
674 *
675 * Releases the mutex used while performing NVM operations.
676 **/
677static void e1000_release_nvm_ich8lan(struct e1000_hw *hw)
678{
679 mutex_unlock(&nvm_mutex);
680
681 return;
682}
683
684static DEFINE_MUTEX(swflag_mutex);
685
686/**
Auke Kokbc7f75f2007-09-17 12:30:59 -0700687 * e1000_acquire_swflag_ich8lan - Acquire software control flag
688 * @hw: pointer to the HW structure
689 *
Bruce Allanca15df52009-10-26 11:23:43 +0000690 * Acquires the software control flag for performing PHY and select
691 * MAC CSR accesses.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700692 **/
693static s32 e1000_acquire_swflag_ich8lan(struct e1000_hw *hw)
694{
Bruce Allan373a88d2009-08-07 07:41:37 +0000695 u32 extcnf_ctrl, timeout = PHY_CFG_TIMEOUT;
696 s32 ret_val = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700697
Bruce Allanca15df52009-10-26 11:23:43 +0000698 mutex_lock(&swflag_mutex);
Thomas Gleixner717d4382008-10-02 16:33:40 -0700699
Auke Kokbc7f75f2007-09-17 12:30:59 -0700700 while (timeout) {
701 extcnf_ctrl = er32(EXTCNF_CTRL);
Bruce Allan373a88d2009-08-07 07:41:37 +0000702 if (!(extcnf_ctrl & E1000_EXTCNF_CTRL_SWFLAG))
703 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700704
Auke Kokbc7f75f2007-09-17 12:30:59 -0700705 mdelay(1);
706 timeout--;
707 }
708
709 if (!timeout) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000710 e_dbg("SW/FW/HW has locked the resource for too long.\n");
Bruce Allan373a88d2009-08-07 07:41:37 +0000711 ret_val = -E1000_ERR_CONFIG;
712 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700713 }
714
Bruce Allan53ac5a82009-10-26 11:23:06 +0000715 timeout = SW_FLAG_TIMEOUT;
Bruce Allan373a88d2009-08-07 07:41:37 +0000716
717 extcnf_ctrl |= E1000_EXTCNF_CTRL_SWFLAG;
718 ew32(EXTCNF_CTRL, extcnf_ctrl);
719
720 while (timeout) {
721 extcnf_ctrl = er32(EXTCNF_CTRL);
722 if (extcnf_ctrl & E1000_EXTCNF_CTRL_SWFLAG)
723 break;
724
725 mdelay(1);
726 timeout--;
727 }
728
729 if (!timeout) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000730 e_dbg("Failed to acquire the semaphore.\n");
Bruce Allan373a88d2009-08-07 07:41:37 +0000731 extcnf_ctrl &= ~E1000_EXTCNF_CTRL_SWFLAG;
732 ew32(EXTCNF_CTRL, extcnf_ctrl);
733 ret_val = -E1000_ERR_CONFIG;
734 goto out;
735 }
736
737out:
738 if (ret_val)
Bruce Allanca15df52009-10-26 11:23:43 +0000739 mutex_unlock(&swflag_mutex);
Bruce Allan373a88d2009-08-07 07:41:37 +0000740
741 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700742}
743
744/**
745 * e1000_release_swflag_ich8lan - Release software control flag
746 * @hw: pointer to the HW structure
747 *
Bruce Allanca15df52009-10-26 11:23:43 +0000748 * Releases the software control flag for performing PHY and select
749 * MAC CSR accesses.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700750 **/
751static void e1000_release_swflag_ich8lan(struct e1000_hw *hw)
752{
753 u32 extcnf_ctrl;
754
755 extcnf_ctrl = er32(EXTCNF_CTRL);
756 extcnf_ctrl &= ~E1000_EXTCNF_CTRL_SWFLAG;
757 ew32(EXTCNF_CTRL, extcnf_ctrl);
Thomas Gleixner717d4382008-10-02 16:33:40 -0700758
Bruce Allanca15df52009-10-26 11:23:43 +0000759 mutex_unlock(&swflag_mutex);
760
761 return;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700762}
763
764/**
Bruce Allan4662e822008-08-26 18:37:06 -0700765 * e1000_check_mng_mode_ich8lan - Checks management mode
766 * @hw: pointer to the HW structure
767 *
768 * This checks if the adapter has manageability enabled.
769 * This is a function pointer entry point only called by read/write
770 * routines for the PHY and NVM parts.
771 **/
772static bool e1000_check_mng_mode_ich8lan(struct e1000_hw *hw)
773{
Bruce Allana708dd82009-11-20 23:28:37 +0000774 u32 fwsm;
775
776 fwsm = er32(FWSM);
Bruce Allan4662e822008-08-26 18:37:06 -0700777
778 return (fwsm & E1000_FWSM_MODE_MASK) ==
779 (E1000_ICH_MNG_IAMT_MODE << E1000_FWSM_MODE_SHIFT);
780}
781
782/**
Auke Kokbc7f75f2007-09-17 12:30:59 -0700783 * e1000_check_reset_block_ich8lan - Check if PHY reset is blocked
784 * @hw: pointer to the HW structure
785 *
786 * Checks if firmware is blocking the reset of the PHY.
787 * This is a function pointer entry point only called by
788 * reset routines.
789 **/
790static s32 e1000_check_reset_block_ich8lan(struct e1000_hw *hw)
791{
792 u32 fwsm;
793
794 fwsm = er32(FWSM);
795
796 return (fwsm & E1000_ICH_FWSM_RSPCIPHY) ? 0 : E1000_BLK_PHY_RESET;
797}
798
799/**
Bruce Allanf523d212009-10-29 13:45:45 +0000800 * e1000_sw_lcd_config_ich8lan - SW-based LCD Configuration
801 * @hw: pointer to the HW structure
802 *
803 * SW should configure the LCD from the NVM extended configuration region
804 * as a workaround for certain parts.
805 **/
806static s32 e1000_sw_lcd_config_ich8lan(struct e1000_hw *hw)
807{
808 struct e1000_phy_info *phy = &hw->phy;
809 u32 i, data, cnf_size, cnf_base_addr, sw_cfg_mask;
810 s32 ret_val;
811 u16 word_addr, reg_data, reg_addr, phy_page = 0;
812
Bruce Allan94d81862009-11-20 23:25:26 +0000813 ret_val = hw->phy.ops.acquire(hw);
Bruce Allanf523d212009-10-29 13:45:45 +0000814 if (ret_val)
815 return ret_val;
816
817 /*
818 * Initialize the PHY from the NVM on ICH platforms. This
819 * is needed due to an issue where the NVM configuration is
820 * not properly autoloaded after power transitions.
821 * Therefore, after each PHY reset, we will load the
822 * configuration data out of the NVM manually.
823 */
824 if ((hw->mac.type == e1000_ich8lan && phy->type == e1000_phy_igp_3) ||
825 (hw->mac.type == e1000_pchlan)) {
826 struct e1000_adapter *adapter = hw->adapter;
827
828 /* Check if SW needs to configure the PHY */
829 if ((adapter->pdev->device == E1000_DEV_ID_ICH8_IGP_M_AMT) ||
830 (adapter->pdev->device == E1000_DEV_ID_ICH8_IGP_M) ||
831 (hw->mac.type == e1000_pchlan))
832 sw_cfg_mask = E1000_FEXTNVM_SW_CONFIG_ICH8M;
833 else
834 sw_cfg_mask = E1000_FEXTNVM_SW_CONFIG;
835
836 data = er32(FEXTNVM);
837 if (!(data & sw_cfg_mask))
838 goto out;
839
840 /* Wait for basic configuration completes before proceeding */
841 e1000_lan_init_done_ich8lan(hw);
842
843 /*
844 * Make sure HW does not configure LCD from PHY
845 * extended configuration before SW configuration
846 */
847 data = er32(EXTCNF_CTRL);
848 if (data & E1000_EXTCNF_CTRL_LCD_WRITE_ENABLE)
849 goto out;
850
851 cnf_size = er32(EXTCNF_SIZE);
852 cnf_size &= E1000_EXTCNF_SIZE_EXT_PCIE_LENGTH_MASK;
853 cnf_size >>= E1000_EXTCNF_SIZE_EXT_PCIE_LENGTH_SHIFT;
854 if (!cnf_size)
855 goto out;
856
857 cnf_base_addr = data & E1000_EXTCNF_CTRL_EXT_CNF_POINTER_MASK;
858 cnf_base_addr >>= E1000_EXTCNF_CTRL_EXT_CNF_POINTER_SHIFT;
859
860 if (!(data & E1000_EXTCNF_CTRL_OEM_WRITE_ENABLE) &&
861 (hw->mac.type == e1000_pchlan)) {
862 /*
863 * HW configures the SMBus address and LEDs when the
864 * OEM and LCD Write Enable bits are set in the NVM.
865 * When both NVM bits are cleared, SW will configure
866 * them instead.
867 */
868 data = er32(STRAP);
869 data &= E1000_STRAP_SMBUS_ADDRESS_MASK;
870 reg_data = data >> E1000_STRAP_SMBUS_ADDRESS_SHIFT;
871 reg_data |= HV_SMB_ADDR_PEC_EN | HV_SMB_ADDR_VALID;
872 ret_val = e1000_write_phy_reg_hv_locked(hw, HV_SMB_ADDR,
873 reg_data);
874 if (ret_val)
875 goto out;
876
877 data = er32(LEDCTL);
878 ret_val = e1000_write_phy_reg_hv_locked(hw,
879 HV_LED_CONFIG,
880 (u16)data);
881 if (ret_val)
882 goto out;
883 }
884 /* Configure LCD from extended configuration region. */
885
886 /* cnf_base_addr is in DWORD */
887 word_addr = (u16)(cnf_base_addr << 1);
888
889 for (i = 0; i < cnf_size; i++) {
890 ret_val = e1000_read_nvm(hw, (word_addr + i * 2), 1,
891 &reg_data);
892 if (ret_val)
893 goto out;
894
895 ret_val = e1000_read_nvm(hw, (word_addr + i * 2 + 1),
896 1, &reg_addr);
897 if (ret_val)
898 goto out;
899
900 /* Save off the PHY page for future writes. */
901 if (reg_addr == IGP01E1000_PHY_PAGE_SELECT) {
902 phy_page = reg_data;
903 continue;
904 }
905
906 reg_addr &= PHY_REG_MASK;
907 reg_addr |= phy_page;
908
Bruce Allan94d81862009-11-20 23:25:26 +0000909 ret_val = phy->ops.write_reg_locked(hw,
Bruce Allanf523d212009-10-29 13:45:45 +0000910 (u32)reg_addr,
911 reg_data);
912 if (ret_val)
913 goto out;
914 }
915 }
916
917out:
Bruce Allan94d81862009-11-20 23:25:26 +0000918 hw->phy.ops.release(hw);
Bruce Allanf523d212009-10-29 13:45:45 +0000919 return ret_val;
920}
921
922/**
Bruce Allan1d5846b2009-10-29 13:46:05 +0000923 * e1000_k1_gig_workaround_hv - K1 Si workaround
924 * @hw: pointer to the HW structure
925 * @link: link up bool flag
926 *
927 * If K1 is enabled for 1Gbps, the MAC might stall when transitioning
928 * from a lower speed. This workaround disables K1 whenever link is at 1Gig
929 * If link is down, the function will restore the default K1 setting located
930 * in the NVM.
931 **/
932static s32 e1000_k1_gig_workaround_hv(struct e1000_hw *hw, bool link)
933{
934 s32 ret_val = 0;
935 u16 status_reg = 0;
936 bool k1_enable = hw->dev_spec.ich8lan.nvm_k1_enabled;
937
938 if (hw->mac.type != e1000_pchlan)
939 goto out;
940
941 /* Wrap the whole flow with the sw flag */
Bruce Allan94d81862009-11-20 23:25:26 +0000942 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan1d5846b2009-10-29 13:46:05 +0000943 if (ret_val)
944 goto out;
945
946 /* Disable K1 when link is 1Gbps, otherwise use the NVM setting */
947 if (link) {
948 if (hw->phy.type == e1000_phy_82578) {
Bruce Allan94d81862009-11-20 23:25:26 +0000949 ret_val = hw->phy.ops.read_reg_locked(hw, BM_CS_STATUS,
Bruce Allan1d5846b2009-10-29 13:46:05 +0000950 &status_reg);
951 if (ret_val)
952 goto release;
953
954 status_reg &= BM_CS_STATUS_LINK_UP |
955 BM_CS_STATUS_RESOLVED |
956 BM_CS_STATUS_SPEED_MASK;
957
958 if (status_reg == (BM_CS_STATUS_LINK_UP |
959 BM_CS_STATUS_RESOLVED |
960 BM_CS_STATUS_SPEED_1000))
961 k1_enable = false;
962 }
963
964 if (hw->phy.type == e1000_phy_82577) {
Bruce Allan94d81862009-11-20 23:25:26 +0000965 ret_val = hw->phy.ops.read_reg_locked(hw, HV_M_STATUS,
Bruce Allan1d5846b2009-10-29 13:46:05 +0000966 &status_reg);
967 if (ret_val)
968 goto release;
969
970 status_reg &= HV_M_STATUS_LINK_UP |
971 HV_M_STATUS_AUTONEG_COMPLETE |
972 HV_M_STATUS_SPEED_MASK;
973
974 if (status_reg == (HV_M_STATUS_LINK_UP |
975 HV_M_STATUS_AUTONEG_COMPLETE |
976 HV_M_STATUS_SPEED_1000))
977 k1_enable = false;
978 }
979
980 /* Link stall fix for link up */
Bruce Allan94d81862009-11-20 23:25:26 +0000981 ret_val = hw->phy.ops.write_reg_locked(hw, PHY_REG(770, 19),
Bruce Allan1d5846b2009-10-29 13:46:05 +0000982 0x0100);
983 if (ret_val)
984 goto release;
985
986 } else {
987 /* Link stall fix for link down */
Bruce Allan94d81862009-11-20 23:25:26 +0000988 ret_val = hw->phy.ops.write_reg_locked(hw, PHY_REG(770, 19),
Bruce Allan1d5846b2009-10-29 13:46:05 +0000989 0x4100);
990 if (ret_val)
991 goto release;
992 }
993
994 ret_val = e1000_configure_k1_ich8lan(hw, k1_enable);
995
996release:
Bruce Allan94d81862009-11-20 23:25:26 +0000997 hw->phy.ops.release(hw);
Bruce Allan1d5846b2009-10-29 13:46:05 +0000998out:
999 return ret_val;
1000}
1001
1002/**
1003 * e1000_configure_k1_ich8lan - Configure K1 power state
1004 * @hw: pointer to the HW structure
1005 * @enable: K1 state to configure
1006 *
1007 * Configure the K1 power state based on the provided parameter.
1008 * Assumes semaphore already acquired.
1009 *
1010 * Success returns 0, Failure returns -E1000_ERR_PHY (-2)
1011 **/
Bruce Allanbb436b22009-11-20 23:24:11 +00001012s32 e1000_configure_k1_ich8lan(struct e1000_hw *hw, bool k1_enable)
Bruce Allan1d5846b2009-10-29 13:46:05 +00001013{
1014 s32 ret_val = 0;
1015 u32 ctrl_reg = 0;
1016 u32 ctrl_ext = 0;
1017 u32 reg = 0;
1018 u16 kmrn_reg = 0;
1019
1020 ret_val = e1000e_read_kmrn_reg_locked(hw,
1021 E1000_KMRNCTRLSTA_K1_CONFIG,
1022 &kmrn_reg);
1023 if (ret_val)
1024 goto out;
1025
1026 if (k1_enable)
1027 kmrn_reg |= E1000_KMRNCTRLSTA_K1_ENABLE;
1028 else
1029 kmrn_reg &= ~E1000_KMRNCTRLSTA_K1_ENABLE;
1030
1031 ret_val = e1000e_write_kmrn_reg_locked(hw,
1032 E1000_KMRNCTRLSTA_K1_CONFIG,
1033 kmrn_reg);
1034 if (ret_val)
1035 goto out;
1036
1037 udelay(20);
1038 ctrl_ext = er32(CTRL_EXT);
1039 ctrl_reg = er32(CTRL);
1040
1041 reg = ctrl_reg & ~(E1000_CTRL_SPD_1000 | E1000_CTRL_SPD_100);
1042 reg |= E1000_CTRL_FRCSPD;
1043 ew32(CTRL, reg);
1044
1045 ew32(CTRL_EXT, ctrl_ext | E1000_CTRL_EXT_SPD_BYPS);
1046 udelay(20);
1047 ew32(CTRL, ctrl_reg);
1048 ew32(CTRL_EXT, ctrl_ext);
1049 udelay(20);
1050
1051out:
1052 return ret_val;
1053}
1054
1055/**
Bruce Allanf523d212009-10-29 13:45:45 +00001056 * e1000_oem_bits_config_ich8lan - SW-based LCD Configuration
1057 * @hw: pointer to the HW structure
1058 * @d0_state: boolean if entering d0 or d3 device state
1059 *
1060 * SW will configure Gbe Disable and LPLU based on the NVM. The four bits are
1061 * collectively called OEM bits. The OEM Write Enable bit and SW Config bit
1062 * in NVM determines whether HW should configure LPLU and Gbe Disable.
1063 **/
1064static s32 e1000_oem_bits_config_ich8lan(struct e1000_hw *hw, bool d0_state)
1065{
1066 s32 ret_val = 0;
1067 u32 mac_reg;
1068 u16 oem_reg;
1069
1070 if (hw->mac.type != e1000_pchlan)
1071 return ret_val;
1072
Bruce Allan94d81862009-11-20 23:25:26 +00001073 ret_val = hw->phy.ops.acquire(hw);
Bruce Allanf523d212009-10-29 13:45:45 +00001074 if (ret_val)
1075 return ret_val;
1076
1077 mac_reg = er32(EXTCNF_CTRL);
1078 if (mac_reg & E1000_EXTCNF_CTRL_OEM_WRITE_ENABLE)
1079 goto out;
1080
1081 mac_reg = er32(FEXTNVM);
1082 if (!(mac_reg & E1000_FEXTNVM_SW_CONFIG_ICH8M))
1083 goto out;
1084
1085 mac_reg = er32(PHY_CTRL);
1086
Bruce Allan94d81862009-11-20 23:25:26 +00001087 ret_val = hw->phy.ops.read_reg_locked(hw, HV_OEM_BITS, &oem_reg);
Bruce Allanf523d212009-10-29 13:45:45 +00001088 if (ret_val)
1089 goto out;
1090
1091 oem_reg &= ~(HV_OEM_BITS_GBE_DIS | HV_OEM_BITS_LPLU);
1092
1093 if (d0_state) {
1094 if (mac_reg & E1000_PHY_CTRL_GBE_DISABLE)
1095 oem_reg |= HV_OEM_BITS_GBE_DIS;
1096
1097 if (mac_reg & E1000_PHY_CTRL_D0A_LPLU)
1098 oem_reg |= HV_OEM_BITS_LPLU;
1099 } else {
1100 if (mac_reg & E1000_PHY_CTRL_NOND0A_GBE_DISABLE)
1101 oem_reg |= HV_OEM_BITS_GBE_DIS;
1102
1103 if (mac_reg & E1000_PHY_CTRL_NOND0A_LPLU)
1104 oem_reg |= HV_OEM_BITS_LPLU;
1105 }
1106 /* Restart auto-neg to activate the bits */
Bruce Allan818f3332009-11-19 14:17:30 +00001107 if (!e1000_check_reset_block(hw))
1108 oem_reg |= HV_OEM_BITS_RESTART_AN;
Bruce Allan94d81862009-11-20 23:25:26 +00001109 ret_val = hw->phy.ops.write_reg_locked(hw, HV_OEM_BITS, oem_reg);
Bruce Allanf523d212009-10-29 13:45:45 +00001110
1111out:
Bruce Allan94d81862009-11-20 23:25:26 +00001112 hw->phy.ops.release(hw);
Bruce Allanf523d212009-10-29 13:45:45 +00001113
1114 return ret_val;
1115}
1116
1117
1118/**
Bruce Allanfddaa1a2010-01-13 01:52:49 +00001119 * e1000_set_mdio_slow_mode_hv - Set slow MDIO access mode
1120 * @hw: pointer to the HW structure
1121 **/
1122static s32 e1000_set_mdio_slow_mode_hv(struct e1000_hw *hw)
1123{
1124 s32 ret_val;
1125 u16 data;
1126
1127 ret_val = e1e_rphy(hw, HV_KMRN_MODE_CTRL, &data);
1128 if (ret_val)
1129 return ret_val;
1130
1131 data |= HV_KMRN_MDIO_SLOW;
1132
1133 ret_val = e1e_wphy(hw, HV_KMRN_MODE_CTRL, data);
1134
1135 return ret_val;
1136}
1137
1138/**
Bruce Allana4f58f52009-06-02 11:29:18 +00001139 * e1000_hv_phy_workarounds_ich8lan - A series of Phy workarounds to be
1140 * done after every PHY reset.
1141 **/
1142static s32 e1000_hv_phy_workarounds_ich8lan(struct e1000_hw *hw)
1143{
1144 s32 ret_val = 0;
Bruce Allanbaf86c92010-01-13 01:53:08 +00001145 u16 phy_data;
Bruce Allana4f58f52009-06-02 11:29:18 +00001146
1147 if (hw->mac.type != e1000_pchlan)
1148 return ret_val;
1149
Bruce Allanfddaa1a2010-01-13 01:52:49 +00001150 /* Set MDIO slow mode before any other MDIO access */
1151 if (hw->phy.type == e1000_phy_82577) {
1152 ret_val = e1000_set_mdio_slow_mode_hv(hw);
1153 if (ret_val)
1154 goto out;
1155 }
1156
Bruce Allana4f58f52009-06-02 11:29:18 +00001157 if (((hw->phy.type == e1000_phy_82577) &&
1158 ((hw->phy.revision == 1) || (hw->phy.revision == 2))) ||
1159 ((hw->phy.type == e1000_phy_82578) && (hw->phy.revision == 1))) {
1160 /* Disable generation of early preamble */
1161 ret_val = e1e_wphy(hw, PHY_REG(769, 25), 0x4431);
1162 if (ret_val)
1163 return ret_val;
1164
1165 /* Preamble tuning for SSC */
1166 ret_val = e1e_wphy(hw, PHY_REG(770, 16), 0xA204);
1167 if (ret_val)
1168 return ret_val;
1169 }
1170
1171 if (hw->phy.type == e1000_phy_82578) {
1172 /*
1173 * Return registers to default by doing a soft reset then
1174 * writing 0x3140 to the control register.
1175 */
1176 if (hw->phy.revision < 2) {
1177 e1000e_phy_sw_reset(hw);
1178 ret_val = e1e_wphy(hw, PHY_CONTROL, 0x3140);
1179 }
1180 }
1181
1182 /* Select page 0 */
Bruce Allan94d81862009-11-20 23:25:26 +00001183 ret_val = hw->phy.ops.acquire(hw);
Bruce Allana4f58f52009-06-02 11:29:18 +00001184 if (ret_val)
1185 return ret_val;
Bruce Allan1d5846b2009-10-29 13:46:05 +00001186
Bruce Allana4f58f52009-06-02 11:29:18 +00001187 hw->phy.addr = 1;
Bruce Allan1d5846b2009-10-29 13:46:05 +00001188 ret_val = e1000e_write_phy_reg_mdic(hw, IGP01E1000_PHY_PAGE_SELECT, 0);
Bruce Allanbaf86c92010-01-13 01:53:08 +00001189 hw->phy.ops.release(hw);
Bruce Allan1d5846b2009-10-29 13:46:05 +00001190 if (ret_val)
1191 goto out;
Bruce Allana4f58f52009-06-02 11:29:18 +00001192
Bruce Allan1d5846b2009-10-29 13:46:05 +00001193 /*
1194 * Configure the K1 Si workaround during phy reset assuming there is
1195 * link so that it disables K1 if link is in 1Gbps.
1196 */
1197 ret_val = e1000_k1_gig_workaround_hv(hw, true);
Bruce Allanbaf86c92010-01-13 01:53:08 +00001198 if (ret_val)
1199 goto out;
Bruce Allan1d5846b2009-10-29 13:46:05 +00001200
Bruce Allanbaf86c92010-01-13 01:53:08 +00001201 /* Workaround for link disconnects on a busy hub in half duplex */
1202 ret_val = hw->phy.ops.acquire(hw);
1203 if (ret_val)
1204 goto out;
1205 ret_val = hw->phy.ops.read_reg_locked(hw,
1206 PHY_REG(BM_PORT_CTRL_PAGE, 17),
1207 &phy_data);
1208 if (ret_val)
1209 goto release;
1210 ret_val = hw->phy.ops.write_reg_locked(hw,
1211 PHY_REG(BM_PORT_CTRL_PAGE, 17),
1212 phy_data & 0x00FF);
1213release:
1214 hw->phy.ops.release(hw);
Bruce Allan1d5846b2009-10-29 13:46:05 +00001215out:
Bruce Allana4f58f52009-06-02 11:29:18 +00001216 return ret_val;
1217}
1218
1219/**
Bruce Allanfc0c7762009-07-01 13:27:55 +00001220 * e1000_lan_init_done_ich8lan - Check for PHY config completion
1221 * @hw: pointer to the HW structure
1222 *
1223 * Check the appropriate indication the MAC has finished configuring the
1224 * PHY after a software reset.
1225 **/
1226static void e1000_lan_init_done_ich8lan(struct e1000_hw *hw)
1227{
1228 u32 data, loop = E1000_ICH8_LAN_INIT_TIMEOUT;
1229
1230 /* Wait for basic configuration completes before proceeding */
1231 do {
1232 data = er32(STATUS);
1233 data &= E1000_STATUS_LAN_INIT_DONE;
1234 udelay(100);
1235 } while ((!data) && --loop);
1236
1237 /*
1238 * If basic configuration is incomplete before the above loop
1239 * count reaches 0, loading the configuration from NVM will
1240 * leave the PHY in a bad state possibly resulting in no link.
1241 */
1242 if (loop == 0)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001243 e_dbg("LAN_INIT_DONE not set, increase timeout\n");
Bruce Allanfc0c7762009-07-01 13:27:55 +00001244
1245 /* Clear the Init Done bit for the next init event */
1246 data = er32(STATUS);
1247 data &= ~E1000_STATUS_LAN_INIT_DONE;
1248 ew32(STATUS, data);
1249}
1250
1251/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001252 * e1000_phy_hw_reset_ich8lan - Performs a PHY reset
1253 * @hw: pointer to the HW structure
1254 *
1255 * Resets the PHY
1256 * This is a function pointer entry point called by drivers
1257 * or other shared routines.
1258 **/
1259static s32 e1000_phy_hw_reset_ich8lan(struct e1000_hw *hw)
1260{
Bruce Allanf523d212009-10-29 13:45:45 +00001261 s32 ret_val = 0;
1262 u16 reg;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001263
1264 ret_val = e1000e_phy_hw_reset_generic(hw);
1265 if (ret_val)
1266 return ret_val;
1267
Bruce Allanfc0c7762009-07-01 13:27:55 +00001268 /* Allow time for h/w to get to a quiescent state after reset */
1269 mdelay(10);
1270
Bruce Allanfddaa1a2010-01-13 01:52:49 +00001271 /* Perform any necessary post-reset workarounds */
Bruce Allana4f58f52009-06-02 11:29:18 +00001272 if (hw->mac.type == e1000_pchlan) {
1273 ret_val = e1000_hv_phy_workarounds_ich8lan(hw);
1274 if (ret_val)
1275 return ret_val;
1276 }
1277
Bruce Allandb2932e2009-10-26 11:22:47 +00001278 /* Dummy read to clear the phy wakeup bit after lcd reset */
1279 if (hw->mac.type == e1000_pchlan)
1280 e1e_rphy(hw, BM_WUC, &reg);
1281
Bruce Allanf523d212009-10-29 13:45:45 +00001282 /* Configure the LCD with the extended configuration region in NVM */
1283 ret_val = e1000_sw_lcd_config_ich8lan(hw);
1284 if (ret_val)
1285 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001286
Bruce Allanf523d212009-10-29 13:45:45 +00001287 /* Configure the LCD with the OEM bits in NVM */
1288 if (hw->mac.type == e1000_pchlan)
1289 ret_val = e1000_oem_bits_config_ich8lan(hw, true);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001290
Bruce Allanf523d212009-10-29 13:45:45 +00001291out:
Auke Kokbc7f75f2007-09-17 12:30:59 -07001292 return 0;
1293}
1294
1295/**
Bruce Allanfa2ce132009-10-26 11:23:25 +00001296 * e1000_set_lplu_state_pchlan - Set Low Power Link Up state
1297 * @hw: pointer to the HW structure
1298 * @active: true to enable LPLU, false to disable
1299 *
1300 * Sets the LPLU state according to the active flag. For PCH, if OEM write
1301 * bit are disabled in the NVM, writing the LPLU bits in the MAC will not set
1302 * the phy speed. This function will manually set the LPLU bit and restart
1303 * auto-neg as hw would do. D3 and D0 LPLU will call the same function
1304 * since it configures the same bit.
1305 **/
1306static s32 e1000_set_lplu_state_pchlan(struct e1000_hw *hw, bool active)
1307{
1308 s32 ret_val = 0;
1309 u16 oem_reg;
1310
1311 ret_val = e1e_rphy(hw, HV_OEM_BITS, &oem_reg);
1312 if (ret_val)
1313 goto out;
1314
1315 if (active)
1316 oem_reg |= HV_OEM_BITS_LPLU;
1317 else
1318 oem_reg &= ~HV_OEM_BITS_LPLU;
1319
1320 oem_reg |= HV_OEM_BITS_RESTART_AN;
1321 ret_val = e1e_wphy(hw, HV_OEM_BITS, oem_reg);
1322
1323out:
1324 return ret_val;
1325}
1326
1327/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001328 * e1000_set_d0_lplu_state_ich8lan - Set Low Power Linkup D0 state
1329 * @hw: pointer to the HW structure
Bruce Allan564ea9b2009-11-20 23:26:44 +00001330 * @active: true to enable LPLU, false to disable
Auke Kokbc7f75f2007-09-17 12:30:59 -07001331 *
1332 * Sets the LPLU D0 state according to the active flag. When
1333 * activating LPLU this function also disables smart speed
1334 * and vice versa. LPLU will not be activated unless the
1335 * device autonegotiation advertisement meets standards of
1336 * either 10 or 10/100 or 10/100/1000 at all duplexes.
1337 * This is a function pointer entry point only called by
1338 * PHY setup routines.
1339 **/
1340static s32 e1000_set_d0_lplu_state_ich8lan(struct e1000_hw *hw, bool active)
1341{
1342 struct e1000_phy_info *phy = &hw->phy;
1343 u32 phy_ctrl;
1344 s32 ret_val = 0;
1345 u16 data;
1346
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001347 if (phy->type == e1000_phy_ife)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001348 return ret_val;
1349
1350 phy_ctrl = er32(PHY_CTRL);
1351
1352 if (active) {
1353 phy_ctrl |= E1000_PHY_CTRL_D0A_LPLU;
1354 ew32(PHY_CTRL, phy_ctrl);
1355
Bruce Allan60f12922009-07-01 13:28:14 +00001356 if (phy->type != e1000_phy_igp_3)
1357 return 0;
1358
Bruce Allanad680762008-03-28 09:15:03 -07001359 /*
1360 * Call gig speed drop workaround on LPLU before accessing
1361 * any PHY registers
1362 */
Bruce Allan60f12922009-07-01 13:28:14 +00001363 if (hw->mac.type == e1000_ich8lan)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001364 e1000e_gig_downshift_workaround_ich8lan(hw);
1365
1366 /* When LPLU is enabled, we should disable SmartSpeed */
1367 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG, &data);
1368 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
1369 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG, data);
1370 if (ret_val)
1371 return ret_val;
1372 } else {
1373 phy_ctrl &= ~E1000_PHY_CTRL_D0A_LPLU;
1374 ew32(PHY_CTRL, phy_ctrl);
1375
Bruce Allan60f12922009-07-01 13:28:14 +00001376 if (phy->type != e1000_phy_igp_3)
1377 return 0;
1378
Bruce Allanad680762008-03-28 09:15:03 -07001379 /*
1380 * LPLU and SmartSpeed are mutually exclusive. LPLU is used
Auke Kokbc7f75f2007-09-17 12:30:59 -07001381 * during Dx states where the power conservation is most
1382 * important. During driver activity we should enable
Bruce Allanad680762008-03-28 09:15:03 -07001383 * SmartSpeed, so performance is maintained.
1384 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001385 if (phy->smart_speed == e1000_smart_speed_on) {
1386 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -07001387 &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001388 if (ret_val)
1389 return ret_val;
1390
1391 data |= IGP01E1000_PSCFR_SMART_SPEED;
1392 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -07001393 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001394 if (ret_val)
1395 return ret_val;
1396 } else if (phy->smart_speed == e1000_smart_speed_off) {
1397 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -07001398 &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001399 if (ret_val)
1400 return ret_val;
1401
1402 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
1403 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -07001404 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001405 if (ret_val)
1406 return ret_val;
1407 }
1408 }
1409
1410 return 0;
1411}
1412
1413/**
1414 * e1000_set_d3_lplu_state_ich8lan - Set Low Power Linkup D3 state
1415 * @hw: pointer to the HW structure
Bruce Allan564ea9b2009-11-20 23:26:44 +00001416 * @active: true to enable LPLU, false to disable
Auke Kokbc7f75f2007-09-17 12:30:59 -07001417 *
1418 * Sets the LPLU D3 state according to the active flag. When
1419 * activating LPLU this function also disables smart speed
1420 * and vice versa. LPLU will not be activated unless the
1421 * device autonegotiation advertisement meets standards of
1422 * either 10 or 10/100 or 10/100/1000 at all duplexes.
1423 * This is a function pointer entry point only called by
1424 * PHY setup routines.
1425 **/
1426static s32 e1000_set_d3_lplu_state_ich8lan(struct e1000_hw *hw, bool active)
1427{
1428 struct e1000_phy_info *phy = &hw->phy;
1429 u32 phy_ctrl;
1430 s32 ret_val;
1431 u16 data;
1432
1433 phy_ctrl = er32(PHY_CTRL);
1434
1435 if (!active) {
1436 phy_ctrl &= ~E1000_PHY_CTRL_NOND0A_LPLU;
1437 ew32(PHY_CTRL, phy_ctrl);
Bruce Allan60f12922009-07-01 13:28:14 +00001438
1439 if (phy->type != e1000_phy_igp_3)
1440 return 0;
1441
Bruce Allanad680762008-03-28 09:15:03 -07001442 /*
1443 * LPLU and SmartSpeed are mutually exclusive. LPLU is used
Auke Kokbc7f75f2007-09-17 12:30:59 -07001444 * during Dx states where the power conservation is most
1445 * important. During driver activity we should enable
Bruce Allanad680762008-03-28 09:15:03 -07001446 * SmartSpeed, so performance is maintained.
1447 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001448 if (phy->smart_speed == e1000_smart_speed_on) {
Bruce Allanad680762008-03-28 09:15:03 -07001449 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG,
1450 &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001451 if (ret_val)
1452 return ret_val;
1453
1454 data |= IGP01E1000_PSCFR_SMART_SPEED;
Bruce Allanad680762008-03-28 09:15:03 -07001455 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
1456 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001457 if (ret_val)
1458 return ret_val;
1459 } else if (phy->smart_speed == e1000_smart_speed_off) {
Bruce Allanad680762008-03-28 09:15:03 -07001460 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG,
1461 &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001462 if (ret_val)
1463 return ret_val;
1464
1465 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
Bruce Allanad680762008-03-28 09:15:03 -07001466 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
1467 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001468 if (ret_val)
1469 return ret_val;
1470 }
1471 } else if ((phy->autoneg_advertised == E1000_ALL_SPEED_DUPLEX) ||
1472 (phy->autoneg_advertised == E1000_ALL_NOT_GIG) ||
1473 (phy->autoneg_advertised == E1000_ALL_10_SPEED)) {
1474 phy_ctrl |= E1000_PHY_CTRL_NOND0A_LPLU;
1475 ew32(PHY_CTRL, phy_ctrl);
1476
Bruce Allan60f12922009-07-01 13:28:14 +00001477 if (phy->type != e1000_phy_igp_3)
1478 return 0;
1479
Bruce Allanad680762008-03-28 09:15:03 -07001480 /*
1481 * Call gig speed drop workaround on LPLU before accessing
1482 * any PHY registers
1483 */
Bruce Allan60f12922009-07-01 13:28:14 +00001484 if (hw->mac.type == e1000_ich8lan)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001485 e1000e_gig_downshift_workaround_ich8lan(hw);
1486
1487 /* When LPLU is enabled, we should disable SmartSpeed */
Bruce Allanad680762008-03-28 09:15:03 -07001488 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG, &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001489 if (ret_val)
1490 return ret_val;
1491
1492 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
Bruce Allanad680762008-03-28 09:15:03 -07001493 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG, data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001494 }
1495
1496 return 0;
1497}
1498
1499/**
Bruce Allanf4187b52008-08-26 18:36:50 -07001500 * e1000_valid_nvm_bank_detect_ich8lan - finds out the valid bank 0 or 1
1501 * @hw: pointer to the HW structure
1502 * @bank: pointer to the variable that returns the active bank
1503 *
1504 * Reads signature byte from the NVM using the flash access registers.
Bruce Allane2434552008-11-21 17:02:41 -08001505 * Word 0x13 bits 15:14 = 10b indicate a valid signature for that bank.
Bruce Allanf4187b52008-08-26 18:36:50 -07001506 **/
1507static s32 e1000_valid_nvm_bank_detect_ich8lan(struct e1000_hw *hw, u32 *bank)
1508{
Bruce Allane2434552008-11-21 17:02:41 -08001509 u32 eecd;
Bruce Allanf4187b52008-08-26 18:36:50 -07001510 struct e1000_nvm_info *nvm = &hw->nvm;
Bruce Allanf4187b52008-08-26 18:36:50 -07001511 u32 bank1_offset = nvm->flash_bank_size * sizeof(u16);
1512 u32 act_offset = E1000_ICH_NVM_SIG_WORD * 2 + 1;
Bruce Allane2434552008-11-21 17:02:41 -08001513 u8 sig_byte = 0;
1514 s32 ret_val = 0;
Bruce Allanf4187b52008-08-26 18:36:50 -07001515
Bruce Allane2434552008-11-21 17:02:41 -08001516 switch (hw->mac.type) {
1517 case e1000_ich8lan:
1518 case e1000_ich9lan:
1519 eecd = er32(EECD);
1520 if ((eecd & E1000_EECD_SEC1VAL_VALID_MASK) ==
1521 E1000_EECD_SEC1VAL_VALID_MASK) {
1522 if (eecd & E1000_EECD_SEC1VAL)
Bruce Allanf4187b52008-08-26 18:36:50 -07001523 *bank = 1;
Bruce Allane2434552008-11-21 17:02:41 -08001524 else
1525 *bank = 0;
1526
1527 return 0;
Bruce Allanf4187b52008-08-26 18:36:50 -07001528 }
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001529 e_dbg("Unable to determine valid NVM bank via EEC - "
Bruce Allane2434552008-11-21 17:02:41 -08001530 "reading flash signature\n");
1531 /* fall-thru */
1532 default:
1533 /* set bank to 0 in case flash read fails */
1534 *bank = 0;
1535
1536 /* Check bank 0 */
1537 ret_val = e1000_read_flash_byte_ich8lan(hw, act_offset,
1538 &sig_byte);
1539 if (ret_val)
1540 return ret_val;
1541 if ((sig_byte & E1000_ICH_NVM_VALID_SIG_MASK) ==
1542 E1000_ICH_NVM_SIG_VALUE) {
1543 *bank = 0;
1544 return 0;
1545 }
1546
1547 /* Check bank 1 */
1548 ret_val = e1000_read_flash_byte_ich8lan(hw, act_offset +
1549 bank1_offset,
1550 &sig_byte);
1551 if (ret_val)
1552 return ret_val;
1553 if ((sig_byte & E1000_ICH_NVM_VALID_SIG_MASK) ==
1554 E1000_ICH_NVM_SIG_VALUE) {
1555 *bank = 1;
1556 return 0;
1557 }
1558
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001559 e_dbg("ERROR: No valid NVM bank present\n");
Bruce Allane2434552008-11-21 17:02:41 -08001560 return -E1000_ERR_NVM;
Bruce Allanf4187b52008-08-26 18:36:50 -07001561 }
1562
1563 return 0;
1564}
1565
1566/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001567 * e1000_read_nvm_ich8lan - Read word(s) from the NVM
1568 * @hw: pointer to the HW structure
1569 * @offset: The offset (in bytes) of the word(s) to read.
1570 * @words: Size of data to read in words
1571 * @data: Pointer to the word(s) to read at offset.
1572 *
1573 * Reads a word(s) from the NVM using the flash access registers.
1574 **/
1575static s32 e1000_read_nvm_ich8lan(struct e1000_hw *hw, u16 offset, u16 words,
1576 u16 *data)
1577{
1578 struct e1000_nvm_info *nvm = &hw->nvm;
1579 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
1580 u32 act_offset;
Bruce Allan148675a2009-08-07 07:41:56 +00001581 s32 ret_val = 0;
Bruce Allanf4187b52008-08-26 18:36:50 -07001582 u32 bank = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001583 u16 i, word;
1584
1585 if ((offset >= nvm->word_size) || (words > nvm->word_size - offset) ||
1586 (words == 0)) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001587 e_dbg("nvm parameter(s) out of bounds\n");
Bruce Allanca15df52009-10-26 11:23:43 +00001588 ret_val = -E1000_ERR_NVM;
1589 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001590 }
1591
Bruce Allan94d81862009-11-20 23:25:26 +00001592 nvm->ops.acquire(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001593
Bruce Allanf4187b52008-08-26 18:36:50 -07001594 ret_val = e1000_valid_nvm_bank_detect_ich8lan(hw, &bank);
Bruce Allan148675a2009-08-07 07:41:56 +00001595 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001596 e_dbg("Could not detect valid bank, assuming bank 0\n");
Bruce Allan148675a2009-08-07 07:41:56 +00001597 bank = 0;
1598 }
Bruce Allanf4187b52008-08-26 18:36:50 -07001599
1600 act_offset = (bank) ? nvm->flash_bank_size : 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001601 act_offset += offset;
1602
Bruce Allan148675a2009-08-07 07:41:56 +00001603 ret_val = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001604 for (i = 0; i < words; i++) {
1605 if ((dev_spec->shadow_ram) &&
1606 (dev_spec->shadow_ram[offset+i].modified)) {
1607 data[i] = dev_spec->shadow_ram[offset+i].value;
1608 } else {
1609 ret_val = e1000_read_flash_word_ich8lan(hw,
1610 act_offset + i,
1611 &word);
1612 if (ret_val)
1613 break;
1614 data[i] = word;
1615 }
1616 }
1617
Bruce Allan94d81862009-11-20 23:25:26 +00001618 nvm->ops.release(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001619
Bruce Allane2434552008-11-21 17:02:41 -08001620out:
1621 if (ret_val)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001622 e_dbg("NVM read error: %d\n", ret_val);
Bruce Allane2434552008-11-21 17:02:41 -08001623
Auke Kokbc7f75f2007-09-17 12:30:59 -07001624 return ret_val;
1625}
1626
1627/**
1628 * e1000_flash_cycle_init_ich8lan - Initialize flash
1629 * @hw: pointer to the HW structure
1630 *
1631 * This function does initial flash setup so that a new read/write/erase cycle
1632 * can be started.
1633 **/
1634static s32 e1000_flash_cycle_init_ich8lan(struct e1000_hw *hw)
1635{
1636 union ich8_hws_flash_status hsfsts;
1637 s32 ret_val = -E1000_ERR_NVM;
1638 s32 i = 0;
1639
1640 hsfsts.regval = er16flash(ICH_FLASH_HSFSTS);
1641
1642 /* Check if the flash descriptor is valid */
1643 if (hsfsts.hsf_status.fldesvalid == 0) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001644 e_dbg("Flash descriptor invalid. "
Joe Perches2c73e1f2010-03-26 20:16:59 +00001645 "SW Sequencing must be used.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001646 return -E1000_ERR_NVM;
1647 }
1648
1649 /* Clear FCERR and DAEL in hw status by writing 1 */
1650 hsfsts.hsf_status.flcerr = 1;
1651 hsfsts.hsf_status.dael = 1;
1652
1653 ew16flash(ICH_FLASH_HSFSTS, hsfsts.regval);
1654
Bruce Allanad680762008-03-28 09:15:03 -07001655 /*
1656 * Either we should have a hardware SPI cycle in progress
Auke Kokbc7f75f2007-09-17 12:30:59 -07001657 * bit to check against, in order to start a new cycle or
1658 * FDONE bit should be changed in the hardware so that it
Auke Kok489815c2008-02-21 15:11:07 -08001659 * is 1 after hardware reset, which can then be used as an
Auke Kokbc7f75f2007-09-17 12:30:59 -07001660 * indication whether a cycle is in progress or has been
1661 * completed.
1662 */
1663
1664 if (hsfsts.hsf_status.flcinprog == 0) {
Bruce Allanad680762008-03-28 09:15:03 -07001665 /*
1666 * There is no cycle running at present,
Bruce Allan5ff5b662009-12-01 15:51:11 +00001667 * so we can start a cycle.
Bruce Allanad680762008-03-28 09:15:03 -07001668 * Begin by setting Flash Cycle Done.
1669 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001670 hsfsts.hsf_status.flcdone = 1;
1671 ew16flash(ICH_FLASH_HSFSTS, hsfsts.regval);
1672 ret_val = 0;
1673 } else {
Bruce Allanad680762008-03-28 09:15:03 -07001674 /*
Bruce Allan5ff5b662009-12-01 15:51:11 +00001675 * Otherwise poll for sometime so the current
Bruce Allanad680762008-03-28 09:15:03 -07001676 * cycle has a chance to end before giving up.
1677 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001678 for (i = 0; i < ICH_FLASH_READ_COMMAND_TIMEOUT; i++) {
1679 hsfsts.regval = __er16flash(hw, ICH_FLASH_HSFSTS);
1680 if (hsfsts.hsf_status.flcinprog == 0) {
1681 ret_val = 0;
1682 break;
1683 }
1684 udelay(1);
1685 }
1686 if (ret_val == 0) {
Bruce Allanad680762008-03-28 09:15:03 -07001687 /*
1688 * Successful in waiting for previous cycle to timeout,
1689 * now set the Flash Cycle Done.
1690 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001691 hsfsts.hsf_status.flcdone = 1;
1692 ew16flash(ICH_FLASH_HSFSTS, hsfsts.regval);
1693 } else {
Joe Perches2c73e1f2010-03-26 20:16:59 +00001694 e_dbg("Flash controller busy, cannot get access\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001695 }
1696 }
1697
1698 return ret_val;
1699}
1700
1701/**
1702 * e1000_flash_cycle_ich8lan - Starts flash cycle (read/write/erase)
1703 * @hw: pointer to the HW structure
1704 * @timeout: maximum time to wait for completion
1705 *
1706 * This function starts a flash cycle and waits for its completion.
1707 **/
1708static s32 e1000_flash_cycle_ich8lan(struct e1000_hw *hw, u32 timeout)
1709{
1710 union ich8_hws_flash_ctrl hsflctl;
1711 union ich8_hws_flash_status hsfsts;
1712 s32 ret_val = -E1000_ERR_NVM;
1713 u32 i = 0;
1714
1715 /* Start a cycle by writing 1 in Flash Cycle Go in Hw Flash Control */
1716 hsflctl.regval = er16flash(ICH_FLASH_HSFCTL);
1717 hsflctl.hsf_ctrl.flcgo = 1;
1718 ew16flash(ICH_FLASH_HSFCTL, hsflctl.regval);
1719
1720 /* wait till FDONE bit is set to 1 */
1721 do {
1722 hsfsts.regval = er16flash(ICH_FLASH_HSFSTS);
1723 if (hsfsts.hsf_status.flcdone == 1)
1724 break;
1725 udelay(1);
1726 } while (i++ < timeout);
1727
1728 if (hsfsts.hsf_status.flcdone == 1 && hsfsts.hsf_status.flcerr == 0)
1729 return 0;
1730
1731 return ret_val;
1732}
1733
1734/**
1735 * e1000_read_flash_word_ich8lan - Read word from flash
1736 * @hw: pointer to the HW structure
1737 * @offset: offset to data location
1738 * @data: pointer to the location for storing the data
1739 *
1740 * Reads the flash word at offset into data. Offset is converted
1741 * to bytes before read.
1742 **/
1743static s32 e1000_read_flash_word_ich8lan(struct e1000_hw *hw, u32 offset,
1744 u16 *data)
1745{
1746 /* Must convert offset into bytes. */
1747 offset <<= 1;
1748
1749 return e1000_read_flash_data_ich8lan(hw, offset, 2, data);
1750}
1751
1752/**
Bruce Allanf4187b52008-08-26 18:36:50 -07001753 * e1000_read_flash_byte_ich8lan - Read byte from flash
1754 * @hw: pointer to the HW structure
1755 * @offset: The offset of the byte to read.
1756 * @data: Pointer to a byte to store the value read.
1757 *
1758 * Reads a single byte from the NVM using the flash access registers.
1759 **/
1760static s32 e1000_read_flash_byte_ich8lan(struct e1000_hw *hw, u32 offset,
1761 u8 *data)
1762{
1763 s32 ret_val;
1764 u16 word = 0;
1765
1766 ret_val = e1000_read_flash_data_ich8lan(hw, offset, 1, &word);
1767 if (ret_val)
1768 return ret_val;
1769
1770 *data = (u8)word;
1771
1772 return 0;
1773}
1774
1775/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001776 * e1000_read_flash_data_ich8lan - Read byte or word from NVM
1777 * @hw: pointer to the HW structure
1778 * @offset: The offset (in bytes) of the byte or word to read.
1779 * @size: Size of data to read, 1=byte 2=word
1780 * @data: Pointer to the word to store the value read.
1781 *
1782 * Reads a byte or word from the NVM using the flash access registers.
1783 **/
1784static s32 e1000_read_flash_data_ich8lan(struct e1000_hw *hw, u32 offset,
1785 u8 size, u16 *data)
1786{
1787 union ich8_hws_flash_status hsfsts;
1788 union ich8_hws_flash_ctrl hsflctl;
1789 u32 flash_linear_addr;
1790 u32 flash_data = 0;
1791 s32 ret_val = -E1000_ERR_NVM;
1792 u8 count = 0;
1793
1794 if (size < 1 || size > 2 || offset > ICH_FLASH_LINEAR_ADDR_MASK)
1795 return -E1000_ERR_NVM;
1796
1797 flash_linear_addr = (ICH_FLASH_LINEAR_ADDR_MASK & offset) +
1798 hw->nvm.flash_base_addr;
1799
1800 do {
1801 udelay(1);
1802 /* Steps */
1803 ret_val = e1000_flash_cycle_init_ich8lan(hw);
1804 if (ret_val != 0)
1805 break;
1806
1807 hsflctl.regval = er16flash(ICH_FLASH_HSFCTL);
1808 /* 0b/1b corresponds to 1 or 2 byte size, respectively. */
1809 hsflctl.hsf_ctrl.fldbcount = size - 1;
1810 hsflctl.hsf_ctrl.flcycle = ICH_CYCLE_READ;
1811 ew16flash(ICH_FLASH_HSFCTL, hsflctl.regval);
1812
1813 ew32flash(ICH_FLASH_FADDR, flash_linear_addr);
1814
1815 ret_val = e1000_flash_cycle_ich8lan(hw,
1816 ICH_FLASH_READ_COMMAND_TIMEOUT);
1817
Bruce Allanad680762008-03-28 09:15:03 -07001818 /*
1819 * Check if FCERR is set to 1, if set to 1, clear it
Auke Kokbc7f75f2007-09-17 12:30:59 -07001820 * and try the whole sequence a few more times, else
1821 * read in (shift in) the Flash Data0, the order is
Bruce Allanad680762008-03-28 09:15:03 -07001822 * least significant byte first msb to lsb
1823 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001824 if (ret_val == 0) {
1825 flash_data = er32flash(ICH_FLASH_FDATA0);
1826 if (size == 1) {
1827 *data = (u8)(flash_data & 0x000000FF);
1828 } else if (size == 2) {
1829 *data = (u16)(flash_data & 0x0000FFFF);
1830 }
1831 break;
1832 } else {
Bruce Allanad680762008-03-28 09:15:03 -07001833 /*
1834 * If we've gotten here, then things are probably
Auke Kokbc7f75f2007-09-17 12:30:59 -07001835 * completely hosed, but if the error condition is
1836 * detected, it won't hurt to give it another try...
1837 * ICH_FLASH_CYCLE_REPEAT_COUNT times.
1838 */
1839 hsfsts.regval = er16flash(ICH_FLASH_HSFSTS);
1840 if (hsfsts.hsf_status.flcerr == 1) {
1841 /* Repeat for some time before giving up. */
1842 continue;
1843 } else if (hsfsts.hsf_status.flcdone == 0) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001844 e_dbg("Timeout error - flash cycle "
Joe Perches2c73e1f2010-03-26 20:16:59 +00001845 "did not complete.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001846 break;
1847 }
1848 }
1849 } while (count++ < ICH_FLASH_CYCLE_REPEAT_COUNT);
1850
1851 return ret_val;
1852}
1853
1854/**
1855 * e1000_write_nvm_ich8lan - Write word(s) to the NVM
1856 * @hw: pointer to the HW structure
1857 * @offset: The offset (in bytes) of the word(s) to write.
1858 * @words: Size of data to write in words
1859 * @data: Pointer to the word(s) to write at offset.
1860 *
1861 * Writes a byte or word to the NVM using the flash access registers.
1862 **/
1863static s32 e1000_write_nvm_ich8lan(struct e1000_hw *hw, u16 offset, u16 words,
1864 u16 *data)
1865{
1866 struct e1000_nvm_info *nvm = &hw->nvm;
1867 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001868 u16 i;
1869
1870 if ((offset >= nvm->word_size) || (words > nvm->word_size - offset) ||
1871 (words == 0)) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001872 e_dbg("nvm parameter(s) out of bounds\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001873 return -E1000_ERR_NVM;
1874 }
1875
Bruce Allan94d81862009-11-20 23:25:26 +00001876 nvm->ops.acquire(hw);
Bruce Allanca15df52009-10-26 11:23:43 +00001877
Auke Kokbc7f75f2007-09-17 12:30:59 -07001878 for (i = 0; i < words; i++) {
Bruce Allan564ea9b2009-11-20 23:26:44 +00001879 dev_spec->shadow_ram[offset+i].modified = true;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001880 dev_spec->shadow_ram[offset+i].value = data[i];
1881 }
1882
Bruce Allan94d81862009-11-20 23:25:26 +00001883 nvm->ops.release(hw);
Bruce Allanca15df52009-10-26 11:23:43 +00001884
Auke Kokbc7f75f2007-09-17 12:30:59 -07001885 return 0;
1886}
1887
1888/**
1889 * e1000_update_nvm_checksum_ich8lan - Update the checksum for NVM
1890 * @hw: pointer to the HW structure
1891 *
1892 * The NVM checksum is updated by calling the generic update_nvm_checksum,
1893 * which writes the checksum to the shadow ram. The changes in the shadow
1894 * ram are then committed to the EEPROM by processing each bank at a time
1895 * checking for the modified bit and writing only the pending changes.
Auke Kok489815c2008-02-21 15:11:07 -08001896 * After a successful commit, the shadow ram is cleared and is ready for
Auke Kokbc7f75f2007-09-17 12:30:59 -07001897 * future writes.
1898 **/
1899static s32 e1000_update_nvm_checksum_ich8lan(struct e1000_hw *hw)
1900{
1901 struct e1000_nvm_info *nvm = &hw->nvm;
1902 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
Bruce Allanf4187b52008-08-26 18:36:50 -07001903 u32 i, act_offset, new_bank_offset, old_bank_offset, bank;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001904 s32 ret_val;
1905 u16 data;
1906
1907 ret_val = e1000e_update_nvm_checksum_generic(hw);
1908 if (ret_val)
Bruce Allane2434552008-11-21 17:02:41 -08001909 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001910
1911 if (nvm->type != e1000_nvm_flash_sw)
Bruce Allane2434552008-11-21 17:02:41 -08001912 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001913
Bruce Allan94d81862009-11-20 23:25:26 +00001914 nvm->ops.acquire(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001915
Bruce Allanad680762008-03-28 09:15:03 -07001916 /*
1917 * We're writing to the opposite bank so if we're on bank 1,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001918 * write to bank 0 etc. We also need to erase the segment that
Bruce Allanad680762008-03-28 09:15:03 -07001919 * is going to be written
1920 */
Bruce Allanf4187b52008-08-26 18:36:50 -07001921 ret_val = e1000_valid_nvm_bank_detect_ich8lan(hw, &bank);
Bruce Allane2434552008-11-21 17:02:41 -08001922 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001923 e_dbg("Could not detect valid bank, assuming bank 0\n");
Bruce Allan148675a2009-08-07 07:41:56 +00001924 bank = 0;
Bruce Allane2434552008-11-21 17:02:41 -08001925 }
Bruce Allanf4187b52008-08-26 18:36:50 -07001926
1927 if (bank == 0) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001928 new_bank_offset = nvm->flash_bank_size;
1929 old_bank_offset = 0;
Bruce Allane2434552008-11-21 17:02:41 -08001930 ret_val = e1000_erase_flash_bank_ich8lan(hw, 1);
1931 if (ret_val) {
Bruce Allan94d81862009-11-20 23:25:26 +00001932 nvm->ops.release(hw);
Bruce Allane2434552008-11-21 17:02:41 -08001933 goto out;
1934 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001935 } else {
1936 old_bank_offset = nvm->flash_bank_size;
1937 new_bank_offset = 0;
Bruce Allane2434552008-11-21 17:02:41 -08001938 ret_val = e1000_erase_flash_bank_ich8lan(hw, 0);
1939 if (ret_val) {
Bruce Allan94d81862009-11-20 23:25:26 +00001940 nvm->ops.release(hw);
Bruce Allane2434552008-11-21 17:02:41 -08001941 goto out;
1942 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001943 }
1944
1945 for (i = 0; i < E1000_ICH8_SHADOW_RAM_WORDS; i++) {
Bruce Allanad680762008-03-28 09:15:03 -07001946 /*
1947 * Determine whether to write the value stored
Auke Kokbc7f75f2007-09-17 12:30:59 -07001948 * in the other NVM bank or a modified value stored
Bruce Allanad680762008-03-28 09:15:03 -07001949 * in the shadow RAM
1950 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001951 if (dev_spec->shadow_ram[i].modified) {
1952 data = dev_spec->shadow_ram[i].value;
1953 } else {
Bruce Allane2434552008-11-21 17:02:41 -08001954 ret_val = e1000_read_flash_word_ich8lan(hw, i +
1955 old_bank_offset,
1956 &data);
1957 if (ret_val)
1958 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001959 }
1960
Bruce Allanad680762008-03-28 09:15:03 -07001961 /*
1962 * If the word is 0x13, then make sure the signature bits
Auke Kokbc7f75f2007-09-17 12:30:59 -07001963 * (15:14) are 11b until the commit has completed.
1964 * This will allow us to write 10b which indicates the
1965 * signature is valid. We want to do this after the write
1966 * has completed so that we don't mark the segment valid
Bruce Allanad680762008-03-28 09:15:03 -07001967 * while the write is still in progress
1968 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001969 if (i == E1000_ICH_NVM_SIG_WORD)
1970 data |= E1000_ICH_NVM_SIG_MASK;
1971
1972 /* Convert offset to bytes. */
1973 act_offset = (i + new_bank_offset) << 1;
1974
1975 udelay(100);
1976 /* Write the bytes to the new bank. */
1977 ret_val = e1000_retry_write_flash_byte_ich8lan(hw,
1978 act_offset,
1979 (u8)data);
1980 if (ret_val)
1981 break;
1982
1983 udelay(100);
1984 ret_val = e1000_retry_write_flash_byte_ich8lan(hw,
1985 act_offset + 1,
1986 (u8)(data >> 8));
1987 if (ret_val)
1988 break;
1989 }
1990
Bruce Allanad680762008-03-28 09:15:03 -07001991 /*
1992 * Don't bother writing the segment valid bits if sector
1993 * programming failed.
1994 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001995 if (ret_val) {
Bruce Allan4a770352008-10-01 17:18:35 -07001996 /* Possibly read-only, see e1000e_write_protect_nvm_ich8lan() */
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001997 e_dbg("Flash commit failed.\n");
Bruce Allan94d81862009-11-20 23:25:26 +00001998 nvm->ops.release(hw);
Bruce Allane2434552008-11-21 17:02:41 -08001999 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002000 }
2001
Bruce Allanad680762008-03-28 09:15:03 -07002002 /*
2003 * Finally validate the new segment by setting bit 15:14
Auke Kokbc7f75f2007-09-17 12:30:59 -07002004 * to 10b in word 0x13 , this can be done without an
2005 * erase as well since these bits are 11 to start with
Bruce Allanad680762008-03-28 09:15:03 -07002006 * and we need to change bit 14 to 0b
2007 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002008 act_offset = new_bank_offset + E1000_ICH_NVM_SIG_WORD;
Bruce Allane2434552008-11-21 17:02:41 -08002009 ret_val = e1000_read_flash_word_ich8lan(hw, act_offset, &data);
2010 if (ret_val) {
Bruce Allan94d81862009-11-20 23:25:26 +00002011 nvm->ops.release(hw);
Bruce Allane2434552008-11-21 17:02:41 -08002012 goto out;
2013 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002014 data &= 0xBFFF;
2015 ret_val = e1000_retry_write_flash_byte_ich8lan(hw,
2016 act_offset * 2 + 1,
2017 (u8)(data >> 8));
2018 if (ret_val) {
Bruce Allan94d81862009-11-20 23:25:26 +00002019 nvm->ops.release(hw);
Bruce Allane2434552008-11-21 17:02:41 -08002020 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002021 }
2022
Bruce Allanad680762008-03-28 09:15:03 -07002023 /*
2024 * And invalidate the previously valid segment by setting
Auke Kokbc7f75f2007-09-17 12:30:59 -07002025 * its signature word (0x13) high_byte to 0b. This can be
2026 * done without an erase because flash erase sets all bits
Bruce Allanad680762008-03-28 09:15:03 -07002027 * to 1's. We can write 1's to 0's without an erase
2028 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002029 act_offset = (old_bank_offset + E1000_ICH_NVM_SIG_WORD) * 2 + 1;
2030 ret_val = e1000_retry_write_flash_byte_ich8lan(hw, act_offset, 0);
2031 if (ret_val) {
Bruce Allan94d81862009-11-20 23:25:26 +00002032 nvm->ops.release(hw);
Bruce Allane2434552008-11-21 17:02:41 -08002033 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002034 }
2035
2036 /* Great! Everything worked, we can now clear the cached entries. */
2037 for (i = 0; i < E1000_ICH8_SHADOW_RAM_WORDS; i++) {
Bruce Allan564ea9b2009-11-20 23:26:44 +00002038 dev_spec->shadow_ram[i].modified = false;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002039 dev_spec->shadow_ram[i].value = 0xFFFF;
2040 }
2041
Bruce Allan94d81862009-11-20 23:25:26 +00002042 nvm->ops.release(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002043
Bruce Allanad680762008-03-28 09:15:03 -07002044 /*
2045 * Reload the EEPROM, or else modifications will not appear
Auke Kokbc7f75f2007-09-17 12:30:59 -07002046 * until after the next adapter reset.
2047 */
2048 e1000e_reload_nvm(hw);
2049 msleep(10);
2050
Bruce Allane2434552008-11-21 17:02:41 -08002051out:
2052 if (ret_val)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002053 e_dbg("NVM update error: %d\n", ret_val);
Bruce Allane2434552008-11-21 17:02:41 -08002054
Auke Kokbc7f75f2007-09-17 12:30:59 -07002055 return ret_val;
2056}
2057
2058/**
2059 * e1000_validate_nvm_checksum_ich8lan - Validate EEPROM checksum
2060 * @hw: pointer to the HW structure
2061 *
2062 * Check to see if checksum needs to be fixed by reading bit 6 in word 0x19.
2063 * If the bit is 0, that the EEPROM had been modified, but the checksum was not
2064 * calculated, in which case we need to calculate the checksum and set bit 6.
2065 **/
2066static s32 e1000_validate_nvm_checksum_ich8lan(struct e1000_hw *hw)
2067{
2068 s32 ret_val;
2069 u16 data;
2070
Bruce Allanad680762008-03-28 09:15:03 -07002071 /*
2072 * Read 0x19 and check bit 6. If this bit is 0, the checksum
Auke Kokbc7f75f2007-09-17 12:30:59 -07002073 * needs to be fixed. This bit is an indication that the NVM
2074 * was prepared by OEM software and did not calculate the
2075 * checksum...a likely scenario.
2076 */
2077 ret_val = e1000_read_nvm(hw, 0x19, 1, &data);
2078 if (ret_val)
2079 return ret_val;
2080
2081 if ((data & 0x40) == 0) {
2082 data |= 0x40;
2083 ret_val = e1000_write_nvm(hw, 0x19, 1, &data);
2084 if (ret_val)
2085 return ret_val;
2086 ret_val = e1000e_update_nvm_checksum(hw);
2087 if (ret_val)
2088 return ret_val;
2089 }
2090
2091 return e1000e_validate_nvm_checksum_generic(hw);
2092}
2093
2094/**
Bruce Allan4a770352008-10-01 17:18:35 -07002095 * e1000e_write_protect_nvm_ich8lan - Make the NVM read-only
2096 * @hw: pointer to the HW structure
2097 *
2098 * To prevent malicious write/erase of the NVM, set it to be read-only
2099 * so that the hardware ignores all write/erase cycles of the NVM via
2100 * the flash control registers. The shadow-ram copy of the NVM will
2101 * still be updated, however any updates to this copy will not stick
2102 * across driver reloads.
2103 **/
2104void e1000e_write_protect_nvm_ich8lan(struct e1000_hw *hw)
2105{
Bruce Allanca15df52009-10-26 11:23:43 +00002106 struct e1000_nvm_info *nvm = &hw->nvm;
Bruce Allan4a770352008-10-01 17:18:35 -07002107 union ich8_flash_protected_range pr0;
2108 union ich8_hws_flash_status hsfsts;
2109 u32 gfpreg;
Bruce Allan4a770352008-10-01 17:18:35 -07002110
Bruce Allan94d81862009-11-20 23:25:26 +00002111 nvm->ops.acquire(hw);
Bruce Allan4a770352008-10-01 17:18:35 -07002112
2113 gfpreg = er32flash(ICH_FLASH_GFPREG);
2114
2115 /* Write-protect GbE Sector of NVM */
2116 pr0.regval = er32flash(ICH_FLASH_PR0);
2117 pr0.range.base = gfpreg & FLASH_GFPREG_BASE_MASK;
2118 pr0.range.limit = ((gfpreg >> 16) & FLASH_GFPREG_BASE_MASK);
2119 pr0.range.wpe = true;
2120 ew32flash(ICH_FLASH_PR0, pr0.regval);
2121
2122 /*
2123 * Lock down a subset of GbE Flash Control Registers, e.g.
2124 * PR0 to prevent the write-protection from being lifted.
2125 * Once FLOCKDN is set, the registers protected by it cannot
2126 * be written until FLOCKDN is cleared by a hardware reset.
2127 */
2128 hsfsts.regval = er16flash(ICH_FLASH_HSFSTS);
2129 hsfsts.hsf_status.flockdn = true;
2130 ew32flash(ICH_FLASH_HSFSTS, hsfsts.regval);
2131
Bruce Allan94d81862009-11-20 23:25:26 +00002132 nvm->ops.release(hw);
Bruce Allan4a770352008-10-01 17:18:35 -07002133}
2134
2135/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07002136 * e1000_write_flash_data_ich8lan - Writes bytes to the NVM
2137 * @hw: pointer to the HW structure
2138 * @offset: The offset (in bytes) of the byte/word to read.
2139 * @size: Size of data to read, 1=byte 2=word
2140 * @data: The byte(s) to write to the NVM.
2141 *
2142 * Writes one/two bytes to the NVM using the flash access registers.
2143 **/
2144static s32 e1000_write_flash_data_ich8lan(struct e1000_hw *hw, u32 offset,
2145 u8 size, u16 data)
2146{
2147 union ich8_hws_flash_status hsfsts;
2148 union ich8_hws_flash_ctrl hsflctl;
2149 u32 flash_linear_addr;
2150 u32 flash_data = 0;
2151 s32 ret_val;
2152 u8 count = 0;
2153
2154 if (size < 1 || size > 2 || data > size * 0xff ||
2155 offset > ICH_FLASH_LINEAR_ADDR_MASK)
2156 return -E1000_ERR_NVM;
2157
2158 flash_linear_addr = (ICH_FLASH_LINEAR_ADDR_MASK & offset) +
2159 hw->nvm.flash_base_addr;
2160
2161 do {
2162 udelay(1);
2163 /* Steps */
2164 ret_val = e1000_flash_cycle_init_ich8lan(hw);
2165 if (ret_val)
2166 break;
2167
2168 hsflctl.regval = er16flash(ICH_FLASH_HSFCTL);
2169 /* 0b/1b corresponds to 1 or 2 byte size, respectively. */
2170 hsflctl.hsf_ctrl.fldbcount = size -1;
2171 hsflctl.hsf_ctrl.flcycle = ICH_CYCLE_WRITE;
2172 ew16flash(ICH_FLASH_HSFCTL, hsflctl.regval);
2173
2174 ew32flash(ICH_FLASH_FADDR, flash_linear_addr);
2175
2176 if (size == 1)
2177 flash_data = (u32)data & 0x00FF;
2178 else
2179 flash_data = (u32)data;
2180
2181 ew32flash(ICH_FLASH_FDATA0, flash_data);
2182
Bruce Allanad680762008-03-28 09:15:03 -07002183 /*
2184 * check if FCERR is set to 1 , if set to 1, clear it
2185 * and try the whole sequence a few more times else done
2186 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002187 ret_val = e1000_flash_cycle_ich8lan(hw,
2188 ICH_FLASH_WRITE_COMMAND_TIMEOUT);
2189 if (!ret_val)
2190 break;
2191
Bruce Allanad680762008-03-28 09:15:03 -07002192 /*
2193 * If we're here, then things are most likely
Auke Kokbc7f75f2007-09-17 12:30:59 -07002194 * completely hosed, but if the error condition
2195 * is detected, it won't hurt to give it another
2196 * try...ICH_FLASH_CYCLE_REPEAT_COUNT times.
2197 */
2198 hsfsts.regval = er16flash(ICH_FLASH_HSFSTS);
2199 if (hsfsts.hsf_status.flcerr == 1)
2200 /* Repeat for some time before giving up. */
2201 continue;
2202 if (hsfsts.hsf_status.flcdone == 0) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002203 e_dbg("Timeout error - flash cycle "
Auke Kokbc7f75f2007-09-17 12:30:59 -07002204 "did not complete.");
2205 break;
2206 }
2207 } while (count++ < ICH_FLASH_CYCLE_REPEAT_COUNT);
2208
2209 return ret_val;
2210}
2211
2212/**
2213 * e1000_write_flash_byte_ich8lan - Write a single byte to NVM
2214 * @hw: pointer to the HW structure
2215 * @offset: The index of the byte to read.
2216 * @data: The byte to write to the NVM.
2217 *
2218 * Writes a single byte to the NVM using the flash access registers.
2219 **/
2220static s32 e1000_write_flash_byte_ich8lan(struct e1000_hw *hw, u32 offset,
2221 u8 data)
2222{
2223 u16 word = (u16)data;
2224
2225 return e1000_write_flash_data_ich8lan(hw, offset, 1, word);
2226}
2227
2228/**
2229 * e1000_retry_write_flash_byte_ich8lan - Writes a single byte to NVM
2230 * @hw: pointer to the HW structure
2231 * @offset: The offset of the byte to write.
2232 * @byte: The byte to write to the NVM.
2233 *
2234 * Writes a single byte to the NVM using the flash access registers.
2235 * Goes through a retry algorithm before giving up.
2236 **/
2237static s32 e1000_retry_write_flash_byte_ich8lan(struct e1000_hw *hw,
2238 u32 offset, u8 byte)
2239{
2240 s32 ret_val;
2241 u16 program_retries;
2242
2243 ret_val = e1000_write_flash_byte_ich8lan(hw, offset, byte);
2244 if (!ret_val)
2245 return ret_val;
2246
2247 for (program_retries = 0; program_retries < 100; program_retries++) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002248 e_dbg("Retrying Byte %2.2X at offset %u\n", byte, offset);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002249 udelay(100);
2250 ret_val = e1000_write_flash_byte_ich8lan(hw, offset, byte);
2251 if (!ret_val)
2252 break;
2253 }
2254 if (program_retries == 100)
2255 return -E1000_ERR_NVM;
2256
2257 return 0;
2258}
2259
2260/**
2261 * e1000_erase_flash_bank_ich8lan - Erase a bank (4k) from NVM
2262 * @hw: pointer to the HW structure
2263 * @bank: 0 for first bank, 1 for second bank, etc.
2264 *
2265 * Erases the bank specified. Each bank is a 4k block. Banks are 0 based.
2266 * bank N is 4096 * N + flash_reg_addr.
2267 **/
2268static s32 e1000_erase_flash_bank_ich8lan(struct e1000_hw *hw, u32 bank)
2269{
2270 struct e1000_nvm_info *nvm = &hw->nvm;
2271 union ich8_hws_flash_status hsfsts;
2272 union ich8_hws_flash_ctrl hsflctl;
2273 u32 flash_linear_addr;
2274 /* bank size is in 16bit words - adjust to bytes */
2275 u32 flash_bank_size = nvm->flash_bank_size * 2;
2276 s32 ret_val;
2277 s32 count = 0;
Bruce Allana708dd82009-11-20 23:28:37 +00002278 s32 j, iteration, sector_size;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002279
2280 hsfsts.regval = er16flash(ICH_FLASH_HSFSTS);
2281
Bruce Allanad680762008-03-28 09:15:03 -07002282 /*
2283 * Determine HW Sector size: Read BERASE bits of hw flash status
2284 * register
2285 * 00: The Hw sector is 256 bytes, hence we need to erase 16
Auke Kokbc7f75f2007-09-17 12:30:59 -07002286 * consecutive sectors. The start index for the nth Hw sector
2287 * can be calculated as = bank * 4096 + n * 256
2288 * 01: The Hw sector is 4K bytes, hence we need to erase 1 sector.
2289 * The start index for the nth Hw sector can be calculated
2290 * as = bank * 4096
2291 * 10: The Hw sector is 8K bytes, nth sector = bank * 8192
2292 * (ich9 only, otherwise error condition)
2293 * 11: The Hw sector is 64K bytes, nth sector = bank * 65536
2294 */
2295 switch (hsfsts.hsf_status.berasesz) {
2296 case 0:
2297 /* Hw sector size 256 */
2298 sector_size = ICH_FLASH_SEG_SIZE_256;
2299 iteration = flash_bank_size / ICH_FLASH_SEG_SIZE_256;
2300 break;
2301 case 1:
2302 sector_size = ICH_FLASH_SEG_SIZE_4K;
Bruce Allan28c91952009-07-01 13:28:32 +00002303 iteration = 1;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002304 break;
2305 case 2:
Bruce Allan148675a2009-08-07 07:41:56 +00002306 sector_size = ICH_FLASH_SEG_SIZE_8K;
2307 iteration = 1;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002308 break;
2309 case 3:
2310 sector_size = ICH_FLASH_SEG_SIZE_64K;
Bruce Allan28c91952009-07-01 13:28:32 +00002311 iteration = 1;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002312 break;
2313 default:
2314 return -E1000_ERR_NVM;
2315 }
2316
2317 /* Start with the base address, then add the sector offset. */
2318 flash_linear_addr = hw->nvm.flash_base_addr;
Bruce Allan148675a2009-08-07 07:41:56 +00002319 flash_linear_addr += (bank) ? flash_bank_size : 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002320
2321 for (j = 0; j < iteration ; j++) {
2322 do {
2323 /* Steps */
2324 ret_val = e1000_flash_cycle_init_ich8lan(hw);
2325 if (ret_val)
2326 return ret_val;
2327
Bruce Allanad680762008-03-28 09:15:03 -07002328 /*
2329 * Write a value 11 (block Erase) in Flash
2330 * Cycle field in hw flash control
2331 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002332 hsflctl.regval = er16flash(ICH_FLASH_HSFCTL);
2333 hsflctl.hsf_ctrl.flcycle = ICH_CYCLE_ERASE;
2334 ew16flash(ICH_FLASH_HSFCTL, hsflctl.regval);
2335
Bruce Allanad680762008-03-28 09:15:03 -07002336 /*
2337 * Write the last 24 bits of an index within the
Auke Kokbc7f75f2007-09-17 12:30:59 -07002338 * block into Flash Linear address field in Flash
2339 * Address.
2340 */
2341 flash_linear_addr += (j * sector_size);
2342 ew32flash(ICH_FLASH_FADDR, flash_linear_addr);
2343
2344 ret_val = e1000_flash_cycle_ich8lan(hw,
2345 ICH_FLASH_ERASE_COMMAND_TIMEOUT);
2346 if (ret_val == 0)
2347 break;
2348
Bruce Allanad680762008-03-28 09:15:03 -07002349 /*
2350 * Check if FCERR is set to 1. If 1,
Auke Kokbc7f75f2007-09-17 12:30:59 -07002351 * clear it and try the whole sequence
Bruce Allanad680762008-03-28 09:15:03 -07002352 * a few more times else Done
2353 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002354 hsfsts.regval = er16flash(ICH_FLASH_HSFSTS);
2355 if (hsfsts.hsf_status.flcerr == 1)
Bruce Allanad680762008-03-28 09:15:03 -07002356 /* repeat for some time before giving up */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002357 continue;
2358 else if (hsfsts.hsf_status.flcdone == 0)
2359 return ret_val;
2360 } while (++count < ICH_FLASH_CYCLE_REPEAT_COUNT);
2361 }
2362
2363 return 0;
2364}
2365
2366/**
2367 * e1000_valid_led_default_ich8lan - Set the default LED settings
2368 * @hw: pointer to the HW structure
2369 * @data: Pointer to the LED settings
2370 *
2371 * Reads the LED default settings from the NVM to data. If the NVM LED
2372 * settings is all 0's or F's, set the LED default to a valid LED default
2373 * setting.
2374 **/
2375static s32 e1000_valid_led_default_ich8lan(struct e1000_hw *hw, u16 *data)
2376{
2377 s32 ret_val;
2378
2379 ret_val = e1000_read_nvm(hw, NVM_ID_LED_SETTINGS, 1, data);
2380 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002381 e_dbg("NVM Read Error\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07002382 return ret_val;
2383 }
2384
2385 if (*data == ID_LED_RESERVED_0000 ||
2386 *data == ID_LED_RESERVED_FFFF)
2387 *data = ID_LED_DEFAULT_ICH8LAN;
2388
2389 return 0;
2390}
2391
2392/**
Bruce Allana4f58f52009-06-02 11:29:18 +00002393 * e1000_id_led_init_pchlan - store LED configurations
2394 * @hw: pointer to the HW structure
2395 *
2396 * PCH does not control LEDs via the LEDCTL register, rather it uses
2397 * the PHY LED configuration register.
2398 *
2399 * PCH also does not have an "always on" or "always off" mode which
2400 * complicates the ID feature. Instead of using the "on" mode to indicate
2401 * in ledctl_mode2 the LEDs to use for ID (see e1000e_id_led_init()),
2402 * use "link_up" mode. The LEDs will still ID on request if there is no
2403 * link based on logic in e1000_led_[on|off]_pchlan().
2404 **/
2405static s32 e1000_id_led_init_pchlan(struct e1000_hw *hw)
2406{
2407 struct e1000_mac_info *mac = &hw->mac;
2408 s32 ret_val;
2409 const u32 ledctl_on = E1000_LEDCTL_MODE_LINK_UP;
2410 const u32 ledctl_off = E1000_LEDCTL_MODE_LINK_UP | E1000_PHY_LED0_IVRT;
2411 u16 data, i, temp, shift;
2412
2413 /* Get default ID LED modes */
2414 ret_val = hw->nvm.ops.valid_led_default(hw, &data);
2415 if (ret_val)
2416 goto out;
2417
2418 mac->ledctl_default = er32(LEDCTL);
2419 mac->ledctl_mode1 = mac->ledctl_default;
2420 mac->ledctl_mode2 = mac->ledctl_default;
2421
2422 for (i = 0; i < 4; i++) {
2423 temp = (data >> (i << 2)) & E1000_LEDCTL_LED0_MODE_MASK;
2424 shift = (i * 5);
2425 switch (temp) {
2426 case ID_LED_ON1_DEF2:
2427 case ID_LED_ON1_ON2:
2428 case ID_LED_ON1_OFF2:
2429 mac->ledctl_mode1 &= ~(E1000_PHY_LED0_MASK << shift);
2430 mac->ledctl_mode1 |= (ledctl_on << shift);
2431 break;
2432 case ID_LED_OFF1_DEF2:
2433 case ID_LED_OFF1_ON2:
2434 case ID_LED_OFF1_OFF2:
2435 mac->ledctl_mode1 &= ~(E1000_PHY_LED0_MASK << shift);
2436 mac->ledctl_mode1 |= (ledctl_off << shift);
2437 break;
2438 default:
2439 /* Do nothing */
2440 break;
2441 }
2442 switch (temp) {
2443 case ID_LED_DEF1_ON2:
2444 case ID_LED_ON1_ON2:
2445 case ID_LED_OFF1_ON2:
2446 mac->ledctl_mode2 &= ~(E1000_PHY_LED0_MASK << shift);
2447 mac->ledctl_mode2 |= (ledctl_on << shift);
2448 break;
2449 case ID_LED_DEF1_OFF2:
2450 case ID_LED_ON1_OFF2:
2451 case ID_LED_OFF1_OFF2:
2452 mac->ledctl_mode2 &= ~(E1000_PHY_LED0_MASK << shift);
2453 mac->ledctl_mode2 |= (ledctl_off << shift);
2454 break;
2455 default:
2456 /* Do nothing */
2457 break;
2458 }
2459 }
2460
2461out:
2462 return ret_val;
2463}
2464
2465/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07002466 * e1000_get_bus_info_ich8lan - Get/Set the bus type and width
2467 * @hw: pointer to the HW structure
2468 *
2469 * ICH8 use the PCI Express bus, but does not contain a PCI Express Capability
2470 * register, so the the bus width is hard coded.
2471 **/
2472static s32 e1000_get_bus_info_ich8lan(struct e1000_hw *hw)
2473{
2474 struct e1000_bus_info *bus = &hw->bus;
2475 s32 ret_val;
2476
2477 ret_val = e1000e_get_bus_info_pcie(hw);
2478
Bruce Allanad680762008-03-28 09:15:03 -07002479 /*
2480 * ICH devices are "PCI Express"-ish. They have
Auke Kokbc7f75f2007-09-17 12:30:59 -07002481 * a configuration space, but do not contain
2482 * PCI Express Capability registers, so bus width
2483 * must be hardcoded.
2484 */
2485 if (bus->width == e1000_bus_width_unknown)
2486 bus->width = e1000_bus_width_pcie_x1;
2487
2488 return ret_val;
2489}
2490
2491/**
2492 * e1000_reset_hw_ich8lan - Reset the hardware
2493 * @hw: pointer to the HW structure
2494 *
2495 * Does a full reset of the hardware which includes a reset of the PHY and
2496 * MAC.
2497 **/
2498static s32 e1000_reset_hw_ich8lan(struct e1000_hw *hw)
2499{
Bruce Allan1d5846b2009-10-29 13:46:05 +00002500 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
Bruce Allandb2932e2009-10-26 11:22:47 +00002501 u16 reg;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002502 u32 ctrl, icr, kab;
2503 s32 ret_val;
2504
Bruce Allanad680762008-03-28 09:15:03 -07002505 /*
2506 * Prevent the PCI-E bus from sticking if there is no TLP connection
Auke Kokbc7f75f2007-09-17 12:30:59 -07002507 * on the last TLP read/write transaction when MAC is reset.
2508 */
2509 ret_val = e1000e_disable_pcie_master(hw);
2510 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002511 e_dbg("PCI-E Master disable polling has failed.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07002512 }
2513
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002514 e_dbg("Masking off all interrupts\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07002515 ew32(IMC, 0xffffffff);
2516
Bruce Allanad680762008-03-28 09:15:03 -07002517 /*
2518 * Disable the Transmit and Receive units. Then delay to allow
Auke Kokbc7f75f2007-09-17 12:30:59 -07002519 * any pending transactions to complete before we hit the MAC
2520 * with the global reset.
2521 */
2522 ew32(RCTL, 0);
2523 ew32(TCTL, E1000_TCTL_PSP);
2524 e1e_flush();
2525
2526 msleep(10);
2527
2528 /* Workaround for ICH8 bit corruption issue in FIFO memory */
2529 if (hw->mac.type == e1000_ich8lan) {
2530 /* Set Tx and Rx buffer allocation to 8k apiece. */
2531 ew32(PBA, E1000_PBA_8K);
2532 /* Set Packet Buffer Size to 16k. */
2533 ew32(PBS, E1000_PBS_16K);
2534 }
2535
Bruce Allan1d5846b2009-10-29 13:46:05 +00002536 if (hw->mac.type == e1000_pchlan) {
2537 /* Save the NVM K1 bit setting*/
2538 ret_val = e1000_read_nvm(hw, E1000_NVM_K1_CONFIG, 1, &reg);
2539 if (ret_val)
2540 return ret_val;
2541
2542 if (reg & E1000_NVM_K1_ENABLE)
2543 dev_spec->nvm_k1_enabled = true;
2544 else
2545 dev_spec->nvm_k1_enabled = false;
2546 }
2547
Auke Kokbc7f75f2007-09-17 12:30:59 -07002548 ctrl = er32(CTRL);
2549
2550 if (!e1000_check_reset_block(hw)) {
Bruce Allanfc0c7762009-07-01 13:27:55 +00002551 /* Clear PHY Reset Asserted bit */
2552 if (hw->mac.type >= e1000_pchlan) {
2553 u32 status = er32(STATUS);
2554 ew32(STATUS, status & ~E1000_STATUS_PHYRA);
2555 }
2556
Bruce Allanad680762008-03-28 09:15:03 -07002557 /*
2558 * PHY HW reset requires MAC CORE reset at the same
Auke Kokbc7f75f2007-09-17 12:30:59 -07002559 * time to make sure the interface between MAC and the
2560 * external PHY is reset.
2561 */
2562 ctrl |= E1000_CTRL_PHY_RST;
2563 }
2564 ret_val = e1000_acquire_swflag_ich8lan(hw);
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002565 e_dbg("Issuing a global reset to ich8lan\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07002566 ew32(CTRL, (ctrl | E1000_CTRL_RST));
2567 msleep(20);
2568
Bruce Allanfc0c7762009-07-01 13:27:55 +00002569 if (!ret_val)
Jeff Kirsher30bb0e02008-12-11 21:28:11 -08002570 e1000_release_swflag_ich8lan(hw);
Jesse Brandeburg37f40232008-10-02 16:33:20 -07002571
Bruce Allanfddaa1a2010-01-13 01:52:49 +00002572 /* Perform any necessary post-reset workarounds */
2573 if (hw->mac.type == e1000_pchlan)
2574 ret_val = e1000_hv_phy_workarounds_ich8lan(hw);
2575
Bruce Allanfc0c7762009-07-01 13:27:55 +00002576 if (ctrl & E1000_CTRL_PHY_RST)
2577 ret_val = hw->phy.ops.get_cfg_done(hw);
2578
2579 if (hw->mac.type >= e1000_ich10lan) {
2580 e1000_lan_init_done_ich8lan(hw);
2581 } else {
2582 ret_val = e1000e_get_auto_rd_done(hw);
2583 if (ret_val) {
2584 /*
2585 * When auto config read does not complete, do not
2586 * return with an error. This can happen in situations
2587 * where there is no eeprom and prevents getting link.
2588 */
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002589 e_dbg("Auto Read Done did not complete\n");
Bruce Allanfc0c7762009-07-01 13:27:55 +00002590 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002591 }
Bruce Allandb2932e2009-10-26 11:22:47 +00002592 /* Dummy read to clear the phy wakeup bit after lcd reset */
2593 if (hw->mac.type == e1000_pchlan)
2594 e1e_rphy(hw, BM_WUC, &reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002595
Bruce Allanf523d212009-10-29 13:45:45 +00002596 ret_val = e1000_sw_lcd_config_ich8lan(hw);
2597 if (ret_val)
2598 goto out;
2599
2600 if (hw->mac.type == e1000_pchlan) {
2601 ret_val = e1000_oem_bits_config_ich8lan(hw, true);
2602 if (ret_val)
2603 goto out;
2604 }
Bruce Allan7d3cabb2009-07-01 13:29:08 +00002605 /*
2606 * For PCH, this write will make sure that any noise
2607 * will be detected as a CRC error and be dropped rather than show up
2608 * as a bad packet to the DMA engine.
2609 */
2610 if (hw->mac.type == e1000_pchlan)
2611 ew32(CRC_OFFSET, 0x65656565);
2612
Auke Kokbc7f75f2007-09-17 12:30:59 -07002613 ew32(IMC, 0xffffffff);
2614 icr = er32(ICR);
2615
2616 kab = er32(KABGTXD);
2617 kab |= E1000_KABGTXD_BGSQLBIAS;
2618 ew32(KABGTXD, kab);
2619
Bruce Allanf523d212009-10-29 13:45:45 +00002620out:
Auke Kokbc7f75f2007-09-17 12:30:59 -07002621 return ret_val;
2622}
2623
2624/**
2625 * e1000_init_hw_ich8lan - Initialize the hardware
2626 * @hw: pointer to the HW structure
2627 *
2628 * Prepares the hardware for transmit and receive by doing the following:
2629 * - initialize hardware bits
2630 * - initialize LED identification
2631 * - setup receive address registers
2632 * - setup flow control
Auke Kok489815c2008-02-21 15:11:07 -08002633 * - setup transmit descriptors
Auke Kokbc7f75f2007-09-17 12:30:59 -07002634 * - clear statistics
2635 **/
2636static s32 e1000_init_hw_ich8lan(struct e1000_hw *hw)
2637{
2638 struct e1000_mac_info *mac = &hw->mac;
2639 u32 ctrl_ext, txdctl, snoop;
2640 s32 ret_val;
2641 u16 i;
2642
2643 e1000_initialize_hw_bits_ich8lan(hw);
2644
2645 /* Initialize identification LED */
Bruce Allana4f58f52009-06-02 11:29:18 +00002646 ret_val = mac->ops.id_led_init(hw);
Bruce Allande39b752009-11-20 23:27:59 +00002647 if (ret_val)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002648 e_dbg("Error initializing identification LED\n");
Bruce Allande39b752009-11-20 23:27:59 +00002649 /* This is not fatal and we should not stop init due to this */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002650
2651 /* Setup the receive address. */
2652 e1000e_init_rx_addrs(hw, mac->rar_entry_count);
2653
2654 /* Zero out the Multicast HASH table */
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002655 e_dbg("Zeroing the MTA\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07002656 for (i = 0; i < mac->mta_reg_count; i++)
2657 E1000_WRITE_REG_ARRAY(hw, E1000_MTA, i, 0);
2658
Bruce Allanfc0c7762009-07-01 13:27:55 +00002659 /*
2660 * The 82578 Rx buffer will stall if wakeup is enabled in host and
2661 * the ME. Reading the BM_WUC register will clear the host wakeup bit.
2662 * Reset the phy after disabling host wakeup to reset the Rx buffer.
2663 */
2664 if (hw->phy.type == e1000_phy_82578) {
Bruce Allan94d81862009-11-20 23:25:26 +00002665 hw->phy.ops.read_reg(hw, BM_WUC, &i);
Bruce Allanfc0c7762009-07-01 13:27:55 +00002666 ret_val = e1000_phy_hw_reset_ich8lan(hw);
2667 if (ret_val)
2668 return ret_val;
2669 }
2670
Auke Kokbc7f75f2007-09-17 12:30:59 -07002671 /* Setup link and flow control */
2672 ret_val = e1000_setup_link_ich8lan(hw);
2673
2674 /* Set the transmit descriptor write-back policy for both queues */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002675 txdctl = er32(TXDCTL(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002676 txdctl = (txdctl & ~E1000_TXDCTL_WTHRESH) |
2677 E1000_TXDCTL_FULL_TX_DESC_WB;
2678 txdctl = (txdctl & ~E1000_TXDCTL_PTHRESH) |
2679 E1000_TXDCTL_MAX_TX_DESC_PREFETCH;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002680 ew32(TXDCTL(0), txdctl);
2681 txdctl = er32(TXDCTL(1));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002682 txdctl = (txdctl & ~E1000_TXDCTL_WTHRESH) |
2683 E1000_TXDCTL_FULL_TX_DESC_WB;
2684 txdctl = (txdctl & ~E1000_TXDCTL_PTHRESH) |
2685 E1000_TXDCTL_MAX_TX_DESC_PREFETCH;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002686 ew32(TXDCTL(1), txdctl);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002687
Bruce Allanad680762008-03-28 09:15:03 -07002688 /*
2689 * ICH8 has opposite polarity of no_snoop bits.
2690 * By default, we should use snoop behavior.
2691 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002692 if (mac->type == e1000_ich8lan)
2693 snoop = PCIE_ICH8_SNOOP_ALL;
2694 else
2695 snoop = (u32) ~(PCIE_NO_SNOOP_ALL);
2696 e1000e_set_pcie_no_snoop(hw, snoop);
2697
2698 ctrl_ext = er32(CTRL_EXT);
2699 ctrl_ext |= E1000_CTRL_EXT_RO_DIS;
2700 ew32(CTRL_EXT, ctrl_ext);
2701
Bruce Allanad680762008-03-28 09:15:03 -07002702 /*
2703 * Clear all of the statistics registers (clear on read). It is
Auke Kokbc7f75f2007-09-17 12:30:59 -07002704 * important that we do this after we have tried to establish link
2705 * because the symbol error count will increment wildly if there
2706 * is no link.
2707 */
2708 e1000_clear_hw_cntrs_ich8lan(hw);
2709
2710 return 0;
2711}
2712/**
2713 * e1000_initialize_hw_bits_ich8lan - Initialize required hardware bits
2714 * @hw: pointer to the HW structure
2715 *
2716 * Sets/Clears required hardware bits necessary for correctly setting up the
2717 * hardware for transmit and receive.
2718 **/
2719static void e1000_initialize_hw_bits_ich8lan(struct e1000_hw *hw)
2720{
2721 u32 reg;
2722
2723 /* Extended Device Control */
2724 reg = er32(CTRL_EXT);
2725 reg |= (1 << 22);
Bruce Allana4f58f52009-06-02 11:29:18 +00002726 /* Enable PHY low-power state when MAC is at D3 w/o WoL */
2727 if (hw->mac.type >= e1000_pchlan)
2728 reg |= E1000_CTRL_EXT_PHYPDEN;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002729 ew32(CTRL_EXT, reg);
2730
2731 /* Transmit Descriptor Control 0 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002732 reg = er32(TXDCTL(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002733 reg |= (1 << 22);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002734 ew32(TXDCTL(0), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002735
2736 /* Transmit Descriptor Control 1 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002737 reg = er32(TXDCTL(1));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002738 reg |= (1 << 22);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002739 ew32(TXDCTL(1), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002740
2741 /* Transmit Arbitration Control 0 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002742 reg = er32(TARC(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002743 if (hw->mac.type == e1000_ich8lan)
2744 reg |= (1 << 28) | (1 << 29);
2745 reg |= (1 << 23) | (1 << 24) | (1 << 26) | (1 << 27);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002746 ew32(TARC(0), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002747
2748 /* Transmit Arbitration Control 1 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002749 reg = er32(TARC(1));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002750 if (er32(TCTL) & E1000_TCTL_MULR)
2751 reg &= ~(1 << 28);
2752 else
2753 reg |= (1 << 28);
2754 reg |= (1 << 24) | (1 << 26) | (1 << 30);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002755 ew32(TARC(1), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002756
2757 /* Device Status */
2758 if (hw->mac.type == e1000_ich8lan) {
2759 reg = er32(STATUS);
2760 reg &= ~(1 << 31);
2761 ew32(STATUS, reg);
2762 }
Jesse Brandeburga80483d2010-03-05 02:21:44 +00002763
2764 /*
2765 * work-around descriptor data corruption issue during nfs v2 udp
2766 * traffic, just disable the nfs filtering capability
2767 */
2768 reg = er32(RFCTL);
2769 reg |= (E1000_RFCTL_NFSW_DIS | E1000_RFCTL_NFSR_DIS);
2770 ew32(RFCTL, reg);
2771
2772 return;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002773}
2774
2775/**
2776 * e1000_setup_link_ich8lan - Setup flow control and link settings
2777 * @hw: pointer to the HW structure
2778 *
2779 * Determines which flow control settings to use, then configures flow
2780 * control. Calls the appropriate media-specific link configuration
2781 * function. Assuming the adapter has a valid link partner, a valid link
2782 * should be established. Assumes the hardware has previously been reset
2783 * and the transmitter and receiver are not enabled.
2784 **/
2785static s32 e1000_setup_link_ich8lan(struct e1000_hw *hw)
2786{
Auke Kokbc7f75f2007-09-17 12:30:59 -07002787 s32 ret_val;
2788
2789 if (e1000_check_reset_block(hw))
2790 return 0;
2791
Bruce Allanad680762008-03-28 09:15:03 -07002792 /*
2793 * ICH parts do not have a word in the NVM to determine
Auke Kokbc7f75f2007-09-17 12:30:59 -07002794 * the default flow control setting, so we explicitly
2795 * set it to full.
2796 */
Bruce Allan37289d92009-06-02 11:29:37 +00002797 if (hw->fc.requested_mode == e1000_fc_default) {
2798 /* Workaround h/w hang when Tx flow control enabled */
2799 if (hw->mac.type == e1000_pchlan)
2800 hw->fc.requested_mode = e1000_fc_rx_pause;
2801 else
2802 hw->fc.requested_mode = e1000_fc_full;
2803 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002804
Bruce Allan5c48ef3e22008-11-21 16:57:36 -08002805 /*
2806 * Save off the requested flow control mode for use later. Depending
2807 * on the link partner's capabilities, we may or may not use this mode.
2808 */
2809 hw->fc.current_mode = hw->fc.requested_mode;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002810
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002811 e_dbg("After fix-ups FlowControl is now = %x\n",
Bruce Allan5c48ef3e22008-11-21 16:57:36 -08002812 hw->fc.current_mode);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002813
2814 /* Continue to configure the copper link. */
2815 ret_val = e1000_setup_copper_link_ich8lan(hw);
2816 if (ret_val)
2817 return ret_val;
2818
Jeff Kirsher318a94d2008-03-28 09:15:16 -07002819 ew32(FCTTV, hw->fc.pause_time);
Bruce Allana4f58f52009-06-02 11:29:18 +00002820 if ((hw->phy.type == e1000_phy_82578) ||
2821 (hw->phy.type == e1000_phy_82577)) {
Bruce Allan94d81862009-11-20 23:25:26 +00002822 ret_val = hw->phy.ops.write_reg(hw,
Bruce Allana4f58f52009-06-02 11:29:18 +00002823 PHY_REG(BM_PORT_CTRL_PAGE, 27),
2824 hw->fc.pause_time);
2825 if (ret_val)
2826 return ret_val;
2827 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002828
2829 return e1000e_set_fc_watermarks(hw);
2830}
2831
2832/**
2833 * e1000_setup_copper_link_ich8lan - Configure MAC/PHY interface
2834 * @hw: pointer to the HW structure
2835 *
2836 * Configures the kumeran interface to the PHY to wait the appropriate time
2837 * when polling the PHY, then call the generic setup_copper_link to finish
2838 * configuring the copper link.
2839 **/
2840static s32 e1000_setup_copper_link_ich8lan(struct e1000_hw *hw)
2841{
2842 u32 ctrl;
2843 s32 ret_val;
2844 u16 reg_data;
2845
2846 ctrl = er32(CTRL);
2847 ctrl |= E1000_CTRL_SLU;
2848 ctrl &= ~(E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX);
2849 ew32(CTRL, ctrl);
2850
Bruce Allanad680762008-03-28 09:15:03 -07002851 /*
2852 * Set the mac to wait the maximum time between each iteration
Auke Kokbc7f75f2007-09-17 12:30:59 -07002853 * and increase the max iterations when polling the phy;
Bruce Allanad680762008-03-28 09:15:03 -07002854 * this fixes erroneous timeouts at 10Mbps.
2855 */
Bruce Allan07818952009-12-08 07:28:01 +00002856 ret_val = e1000e_write_kmrn_reg(hw, E1000_KMRNCTRLSTA_TIMEOUTS, 0xFFFF);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002857 if (ret_val)
2858 return ret_val;
Bruce Allan07818952009-12-08 07:28:01 +00002859 ret_val = e1000e_read_kmrn_reg(hw, E1000_KMRNCTRLSTA_INBAND_PARAM,
2860 &reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002861 if (ret_val)
2862 return ret_val;
2863 reg_data |= 0x3F;
Bruce Allan07818952009-12-08 07:28:01 +00002864 ret_val = e1000e_write_kmrn_reg(hw, E1000_KMRNCTRLSTA_INBAND_PARAM,
2865 reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002866 if (ret_val)
2867 return ret_val;
2868
Bruce Allana4f58f52009-06-02 11:29:18 +00002869 switch (hw->phy.type) {
2870 case e1000_phy_igp_3:
Auke Kokbc7f75f2007-09-17 12:30:59 -07002871 ret_val = e1000e_copper_link_setup_igp(hw);
2872 if (ret_val)
2873 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00002874 break;
2875 case e1000_phy_bm:
2876 case e1000_phy_82578:
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002877 ret_val = e1000e_copper_link_setup_m88(hw);
2878 if (ret_val)
2879 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00002880 break;
2881 case e1000_phy_82577:
2882 ret_val = e1000_copper_link_setup_82577(hw);
2883 if (ret_val)
2884 return ret_val;
2885 break;
2886 case e1000_phy_ife:
Bruce Allan94d81862009-11-20 23:25:26 +00002887 ret_val = hw->phy.ops.read_reg(hw, IFE_PHY_MDIX_CONTROL,
Bruce Allana4f58f52009-06-02 11:29:18 +00002888 &reg_data);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002889 if (ret_val)
2890 return ret_val;
2891
2892 reg_data &= ~IFE_PMC_AUTO_MDIX;
2893
2894 switch (hw->phy.mdix) {
2895 case 1:
2896 reg_data &= ~IFE_PMC_FORCE_MDIX;
2897 break;
2898 case 2:
2899 reg_data |= IFE_PMC_FORCE_MDIX;
2900 break;
2901 case 0:
2902 default:
2903 reg_data |= IFE_PMC_AUTO_MDIX;
2904 break;
2905 }
Bruce Allan94d81862009-11-20 23:25:26 +00002906 ret_val = hw->phy.ops.write_reg(hw, IFE_PHY_MDIX_CONTROL,
Bruce Allana4f58f52009-06-02 11:29:18 +00002907 reg_data);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002908 if (ret_val)
2909 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00002910 break;
2911 default:
2912 break;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002913 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002914 return e1000e_setup_copper_link(hw);
2915}
2916
2917/**
2918 * e1000_get_link_up_info_ich8lan - Get current link speed and duplex
2919 * @hw: pointer to the HW structure
2920 * @speed: pointer to store current link speed
2921 * @duplex: pointer to store the current link duplex
2922 *
Bruce Allanad680762008-03-28 09:15:03 -07002923 * Calls the generic get_speed_and_duplex to retrieve the current link
Auke Kokbc7f75f2007-09-17 12:30:59 -07002924 * information and then calls the Kumeran lock loss workaround for links at
2925 * gigabit speeds.
2926 **/
2927static s32 e1000_get_link_up_info_ich8lan(struct e1000_hw *hw, u16 *speed,
2928 u16 *duplex)
2929{
2930 s32 ret_val;
2931
2932 ret_val = e1000e_get_speed_and_duplex_copper(hw, speed, duplex);
2933 if (ret_val)
2934 return ret_val;
2935
2936 if ((hw->mac.type == e1000_ich8lan) &&
2937 (hw->phy.type == e1000_phy_igp_3) &&
2938 (*speed == SPEED_1000)) {
2939 ret_val = e1000_kmrn_lock_loss_workaround_ich8lan(hw);
2940 }
2941
2942 return ret_val;
2943}
2944
2945/**
2946 * e1000_kmrn_lock_loss_workaround_ich8lan - Kumeran workaround
2947 * @hw: pointer to the HW structure
2948 *
2949 * Work-around for 82566 Kumeran PCS lock loss:
2950 * On link status change (i.e. PCI reset, speed change) and link is up and
2951 * speed is gigabit-
2952 * 0) if workaround is optionally disabled do nothing
2953 * 1) wait 1ms for Kumeran link to come up
2954 * 2) check Kumeran Diagnostic register PCS lock loss bit
2955 * 3) if not set the link is locked (all is good), otherwise...
2956 * 4) reset the PHY
2957 * 5) repeat up to 10 times
2958 * Note: this is only called for IGP3 copper when speed is 1gb.
2959 **/
2960static s32 e1000_kmrn_lock_loss_workaround_ich8lan(struct e1000_hw *hw)
2961{
2962 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
2963 u32 phy_ctrl;
2964 s32 ret_val;
2965 u16 i, data;
2966 bool link;
2967
2968 if (!dev_spec->kmrn_lock_loss_workaround_enabled)
2969 return 0;
2970
Bruce Allanad680762008-03-28 09:15:03 -07002971 /*
2972 * Make sure link is up before proceeding. If not just return.
Auke Kokbc7f75f2007-09-17 12:30:59 -07002973 * Attempting this while link is negotiating fouled up link
Bruce Allanad680762008-03-28 09:15:03 -07002974 * stability
2975 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002976 ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link);
2977 if (!link)
2978 return 0;
2979
2980 for (i = 0; i < 10; i++) {
2981 /* read once to clear */
2982 ret_val = e1e_rphy(hw, IGP3_KMRN_DIAG, &data);
2983 if (ret_val)
2984 return ret_val;
2985 /* and again to get new status */
2986 ret_val = e1e_rphy(hw, IGP3_KMRN_DIAG, &data);
2987 if (ret_val)
2988 return ret_val;
2989
2990 /* check for PCS lock */
2991 if (!(data & IGP3_KMRN_DIAG_PCS_LOCK_LOSS))
2992 return 0;
2993
2994 /* Issue PHY reset */
2995 e1000_phy_hw_reset(hw);
2996 mdelay(5);
2997 }
2998 /* Disable GigE link negotiation */
2999 phy_ctrl = er32(PHY_CTRL);
3000 phy_ctrl |= (E1000_PHY_CTRL_GBE_DISABLE |
3001 E1000_PHY_CTRL_NOND0A_GBE_DISABLE);
3002 ew32(PHY_CTRL, phy_ctrl);
3003
Bruce Allanad680762008-03-28 09:15:03 -07003004 /*
3005 * Call gig speed drop workaround on Gig disable before accessing
3006 * any PHY registers
3007 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003008 e1000e_gig_downshift_workaround_ich8lan(hw);
3009
3010 /* unable to acquire PCS lock */
3011 return -E1000_ERR_PHY;
3012}
3013
3014/**
Bruce Allanad680762008-03-28 09:15:03 -07003015 * e1000_set_kmrn_lock_loss_workaround_ich8lan - Set Kumeran workaround state
Auke Kokbc7f75f2007-09-17 12:30:59 -07003016 * @hw: pointer to the HW structure
Auke Kok489815c2008-02-21 15:11:07 -08003017 * @state: boolean value used to set the current Kumeran workaround state
Auke Kokbc7f75f2007-09-17 12:30:59 -07003018 *
Bruce Allan564ea9b2009-11-20 23:26:44 +00003019 * If ICH8, set the current Kumeran workaround state (enabled - true
3020 * /disabled - false).
Auke Kokbc7f75f2007-09-17 12:30:59 -07003021 **/
3022void e1000e_set_kmrn_lock_loss_workaround_ich8lan(struct e1000_hw *hw,
3023 bool state)
3024{
3025 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
3026
3027 if (hw->mac.type != e1000_ich8lan) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003028 e_dbg("Workaround applies to ICH8 only.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07003029 return;
3030 }
3031
3032 dev_spec->kmrn_lock_loss_workaround_enabled = state;
3033}
3034
3035/**
3036 * e1000_ipg3_phy_powerdown_workaround_ich8lan - Power down workaround on D3
3037 * @hw: pointer to the HW structure
3038 *
3039 * Workaround for 82566 power-down on D3 entry:
3040 * 1) disable gigabit link
3041 * 2) write VR power-down enable
3042 * 3) read it back
3043 * Continue if successful, else issue LCD reset and repeat
3044 **/
3045void e1000e_igp3_phy_powerdown_workaround_ich8lan(struct e1000_hw *hw)
3046{
3047 u32 reg;
3048 u16 data;
3049 u8 retry = 0;
3050
3051 if (hw->phy.type != e1000_phy_igp_3)
3052 return;
3053
3054 /* Try the workaround twice (if needed) */
3055 do {
3056 /* Disable link */
3057 reg = er32(PHY_CTRL);
3058 reg |= (E1000_PHY_CTRL_GBE_DISABLE |
3059 E1000_PHY_CTRL_NOND0A_GBE_DISABLE);
3060 ew32(PHY_CTRL, reg);
3061
Bruce Allanad680762008-03-28 09:15:03 -07003062 /*
3063 * Call gig speed drop workaround on Gig disable before
3064 * accessing any PHY registers
3065 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003066 if (hw->mac.type == e1000_ich8lan)
3067 e1000e_gig_downshift_workaround_ich8lan(hw);
3068
3069 /* Write VR power-down enable */
3070 e1e_rphy(hw, IGP3_VR_CTRL, &data);
3071 data &= ~IGP3_VR_CTRL_DEV_POWERDOWN_MODE_MASK;
3072 e1e_wphy(hw, IGP3_VR_CTRL, data | IGP3_VR_CTRL_MODE_SHUTDOWN);
3073
3074 /* Read it back and test */
3075 e1e_rphy(hw, IGP3_VR_CTRL, &data);
3076 data &= IGP3_VR_CTRL_DEV_POWERDOWN_MODE_MASK;
3077 if ((data == IGP3_VR_CTRL_MODE_SHUTDOWN) || retry)
3078 break;
3079
3080 /* Issue PHY reset and repeat at most one more time */
3081 reg = er32(CTRL);
3082 ew32(CTRL, reg | E1000_CTRL_PHY_RST);
3083 retry++;
3084 } while (retry);
3085}
3086
3087/**
3088 * e1000e_gig_downshift_workaround_ich8lan - WoL from S5 stops working
3089 * @hw: pointer to the HW structure
3090 *
3091 * Steps to take when dropping from 1Gb/s (eg. link cable removal (LSC),
Auke Kok489815c2008-02-21 15:11:07 -08003092 * LPLU, Gig disable, MDIC PHY reset):
Auke Kokbc7f75f2007-09-17 12:30:59 -07003093 * 1) Set Kumeran Near-end loopback
3094 * 2) Clear Kumeran Near-end loopback
3095 * Should only be called for ICH8[m] devices with IGP_3 Phy.
3096 **/
3097void e1000e_gig_downshift_workaround_ich8lan(struct e1000_hw *hw)
3098{
3099 s32 ret_val;
3100 u16 reg_data;
3101
3102 if ((hw->mac.type != e1000_ich8lan) ||
3103 (hw->phy.type != e1000_phy_igp_3))
3104 return;
3105
3106 ret_val = e1000e_read_kmrn_reg(hw, E1000_KMRNCTRLSTA_DIAG_OFFSET,
3107 &reg_data);
3108 if (ret_val)
3109 return;
3110 reg_data |= E1000_KMRNCTRLSTA_DIAG_NELPBK;
3111 ret_val = e1000e_write_kmrn_reg(hw, E1000_KMRNCTRLSTA_DIAG_OFFSET,
3112 reg_data);
3113 if (ret_val)
3114 return;
3115 reg_data &= ~E1000_KMRNCTRLSTA_DIAG_NELPBK;
3116 ret_val = e1000e_write_kmrn_reg(hw, E1000_KMRNCTRLSTA_DIAG_OFFSET,
3117 reg_data);
3118}
3119
3120/**
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003121 * e1000e_disable_gig_wol_ich8lan - disable gig during WoL
3122 * @hw: pointer to the HW structure
3123 *
3124 * During S0 to Sx transition, it is possible the link remains at gig
3125 * instead of negotiating to a lower speed. Before going to Sx, set
3126 * 'LPLU Enabled' and 'Gig Disable' to force link speed negotiation
3127 * to a lower speed.
3128 *
Bruce Allana4f58f52009-06-02 11:29:18 +00003129 * Should only be called for applicable parts.
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003130 **/
3131void e1000e_disable_gig_wol_ich8lan(struct e1000_hw *hw)
3132{
3133 u32 phy_ctrl;
3134
Bruce Allana4f58f52009-06-02 11:29:18 +00003135 switch (hw->mac.type) {
Bruce Allan9e135a22009-12-01 15:50:31 +00003136 case e1000_ich8lan:
Bruce Allana4f58f52009-06-02 11:29:18 +00003137 case e1000_ich9lan:
3138 case e1000_ich10lan:
3139 case e1000_pchlan:
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003140 phy_ctrl = er32(PHY_CTRL);
3141 phy_ctrl |= E1000_PHY_CTRL_D0A_LPLU |
3142 E1000_PHY_CTRL_GBE_DISABLE;
3143 ew32(PHY_CTRL, phy_ctrl);
Bruce Allana4f58f52009-06-02 11:29:18 +00003144
Bruce Allana4f58f52009-06-02 11:29:18 +00003145 if (hw->mac.type == e1000_pchlan)
Bruce Allan74eee2e2009-10-22 21:22:18 -07003146 e1000_phy_hw_reset_ich8lan(hw);
Bruce Allana4f58f52009-06-02 11:29:18 +00003147 default:
3148 break;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003149 }
3150
3151 return;
3152}
3153
3154/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07003155 * e1000_cleanup_led_ich8lan - Restore the default LED operation
3156 * @hw: pointer to the HW structure
3157 *
3158 * Return the LED back to the default configuration.
3159 **/
3160static s32 e1000_cleanup_led_ich8lan(struct e1000_hw *hw)
3161{
3162 if (hw->phy.type == e1000_phy_ife)
3163 return e1e_wphy(hw, IFE_PHY_SPECIAL_CONTROL_LED, 0);
3164
3165 ew32(LEDCTL, hw->mac.ledctl_default);
3166 return 0;
3167}
3168
3169/**
Auke Kok489815c2008-02-21 15:11:07 -08003170 * e1000_led_on_ich8lan - Turn LEDs on
Auke Kokbc7f75f2007-09-17 12:30:59 -07003171 * @hw: pointer to the HW structure
3172 *
Auke Kok489815c2008-02-21 15:11:07 -08003173 * Turn on the LEDs.
Auke Kokbc7f75f2007-09-17 12:30:59 -07003174 **/
3175static s32 e1000_led_on_ich8lan(struct e1000_hw *hw)
3176{
3177 if (hw->phy.type == e1000_phy_ife)
3178 return e1e_wphy(hw, IFE_PHY_SPECIAL_CONTROL_LED,
3179 (IFE_PSCL_PROBE_MODE | IFE_PSCL_PROBE_LEDS_ON));
3180
3181 ew32(LEDCTL, hw->mac.ledctl_mode2);
3182 return 0;
3183}
3184
3185/**
Auke Kok489815c2008-02-21 15:11:07 -08003186 * e1000_led_off_ich8lan - Turn LEDs off
Auke Kokbc7f75f2007-09-17 12:30:59 -07003187 * @hw: pointer to the HW structure
3188 *
Auke Kok489815c2008-02-21 15:11:07 -08003189 * Turn off the LEDs.
Auke Kokbc7f75f2007-09-17 12:30:59 -07003190 **/
3191static s32 e1000_led_off_ich8lan(struct e1000_hw *hw)
3192{
3193 if (hw->phy.type == e1000_phy_ife)
3194 return e1e_wphy(hw, IFE_PHY_SPECIAL_CONTROL_LED,
3195 (IFE_PSCL_PROBE_MODE | IFE_PSCL_PROBE_LEDS_OFF));
3196
3197 ew32(LEDCTL, hw->mac.ledctl_mode1);
3198 return 0;
3199}
3200
3201/**
Bruce Allana4f58f52009-06-02 11:29:18 +00003202 * e1000_setup_led_pchlan - Configures SW controllable LED
3203 * @hw: pointer to the HW structure
3204 *
3205 * This prepares the SW controllable LED for use.
3206 **/
3207static s32 e1000_setup_led_pchlan(struct e1000_hw *hw)
3208{
Bruce Allan94d81862009-11-20 23:25:26 +00003209 return hw->phy.ops.write_reg(hw, HV_LED_CONFIG,
Bruce Allana4f58f52009-06-02 11:29:18 +00003210 (u16)hw->mac.ledctl_mode1);
3211}
3212
3213/**
3214 * e1000_cleanup_led_pchlan - Restore the default LED operation
3215 * @hw: pointer to the HW structure
3216 *
3217 * Return the LED back to the default configuration.
3218 **/
3219static s32 e1000_cleanup_led_pchlan(struct e1000_hw *hw)
3220{
Bruce Allan94d81862009-11-20 23:25:26 +00003221 return hw->phy.ops.write_reg(hw, HV_LED_CONFIG,
Bruce Allana4f58f52009-06-02 11:29:18 +00003222 (u16)hw->mac.ledctl_default);
3223}
3224
3225/**
3226 * e1000_led_on_pchlan - Turn LEDs on
3227 * @hw: pointer to the HW structure
3228 *
3229 * Turn on the LEDs.
3230 **/
3231static s32 e1000_led_on_pchlan(struct e1000_hw *hw)
3232{
3233 u16 data = (u16)hw->mac.ledctl_mode2;
3234 u32 i, led;
3235
3236 /*
3237 * If no link, then turn LED on by setting the invert bit
3238 * for each LED that's mode is "link_up" in ledctl_mode2.
3239 */
3240 if (!(er32(STATUS) & E1000_STATUS_LU)) {
3241 for (i = 0; i < 3; i++) {
3242 led = (data >> (i * 5)) & E1000_PHY_LED0_MASK;
3243 if ((led & E1000_PHY_LED0_MODE_MASK) !=
3244 E1000_LEDCTL_MODE_LINK_UP)
3245 continue;
3246 if (led & E1000_PHY_LED0_IVRT)
3247 data &= ~(E1000_PHY_LED0_IVRT << (i * 5));
3248 else
3249 data |= (E1000_PHY_LED0_IVRT << (i * 5));
3250 }
3251 }
3252
Bruce Allan94d81862009-11-20 23:25:26 +00003253 return hw->phy.ops.write_reg(hw, HV_LED_CONFIG, data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003254}
3255
3256/**
3257 * e1000_led_off_pchlan - Turn LEDs off
3258 * @hw: pointer to the HW structure
3259 *
3260 * Turn off the LEDs.
3261 **/
3262static s32 e1000_led_off_pchlan(struct e1000_hw *hw)
3263{
3264 u16 data = (u16)hw->mac.ledctl_mode1;
3265 u32 i, led;
3266
3267 /*
3268 * If no link, then turn LED off by clearing the invert bit
3269 * for each LED that's mode is "link_up" in ledctl_mode1.
3270 */
3271 if (!(er32(STATUS) & E1000_STATUS_LU)) {
3272 for (i = 0; i < 3; i++) {
3273 led = (data >> (i * 5)) & E1000_PHY_LED0_MASK;
3274 if ((led & E1000_PHY_LED0_MODE_MASK) !=
3275 E1000_LEDCTL_MODE_LINK_UP)
3276 continue;
3277 if (led & E1000_PHY_LED0_IVRT)
3278 data &= ~(E1000_PHY_LED0_IVRT << (i * 5));
3279 else
3280 data |= (E1000_PHY_LED0_IVRT << (i * 5));
3281 }
3282 }
3283
Bruce Allan94d81862009-11-20 23:25:26 +00003284 return hw->phy.ops.write_reg(hw, HV_LED_CONFIG, data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003285}
3286
3287/**
Bruce Allanf4187b52008-08-26 18:36:50 -07003288 * e1000_get_cfg_done_ich8lan - Read config done bit
3289 * @hw: pointer to the HW structure
3290 *
3291 * Read the management control register for the config done bit for
3292 * completion status. NOTE: silicon which is EEPROM-less will fail trying
3293 * to read the config done bit, so an error is *ONLY* logged and returns
Bruce Allana4f58f52009-06-02 11:29:18 +00003294 * 0. If we were to return with error, EEPROM-less silicon
Bruce Allanf4187b52008-08-26 18:36:50 -07003295 * would not be able to be reset or change link.
3296 **/
3297static s32 e1000_get_cfg_done_ich8lan(struct e1000_hw *hw)
3298{
3299 u32 bank = 0;
3300
Bruce Allanfc0c7762009-07-01 13:27:55 +00003301 if (hw->mac.type >= e1000_pchlan) {
3302 u32 status = er32(STATUS);
3303
3304 if (status & E1000_STATUS_PHYRA)
3305 ew32(STATUS, status & ~E1000_STATUS_PHYRA);
3306 else
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003307 e_dbg("PHY Reset Asserted not set - needs delay\n");
Bruce Allanfc0c7762009-07-01 13:27:55 +00003308 }
3309
Bruce Allanf4187b52008-08-26 18:36:50 -07003310 e1000e_get_cfg_done(hw);
3311
3312 /* If EEPROM is not marked present, init the IGP 3 PHY manually */
Bruce Allana4f58f52009-06-02 11:29:18 +00003313 if ((hw->mac.type != e1000_ich10lan) &&
3314 (hw->mac.type != e1000_pchlan)) {
Bruce Allanf4187b52008-08-26 18:36:50 -07003315 if (((er32(EECD) & E1000_EECD_PRES) == 0) &&
3316 (hw->phy.type == e1000_phy_igp_3)) {
3317 e1000e_phy_init_script_igp3(hw);
3318 }
3319 } else {
3320 if (e1000_valid_nvm_bank_detect_ich8lan(hw, &bank)) {
3321 /* Maybe we should do a basic PHY config */
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003322 e_dbg("EEPROM not present\n");
Bruce Allanf4187b52008-08-26 18:36:50 -07003323 return -E1000_ERR_CONFIG;
3324 }
3325 }
3326
3327 return 0;
3328}
3329
3330/**
Bruce Allan17f208d2009-12-01 15:47:22 +00003331 * e1000_power_down_phy_copper_ich8lan - Remove link during PHY power down
3332 * @hw: pointer to the HW structure
3333 *
3334 * In the case of a PHY power down to save power, or to turn off link during a
3335 * driver unload, or wake on lan is not enabled, remove the link.
3336 **/
3337static void e1000_power_down_phy_copper_ich8lan(struct e1000_hw *hw)
3338{
3339 /* If the management interface is not enabled, then power down */
3340 if (!(hw->mac.ops.check_mng_mode(hw) ||
3341 hw->phy.ops.check_reset_block(hw)))
3342 e1000_power_down_phy_copper(hw);
3343
3344 return;
3345}
3346
3347/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07003348 * e1000_clear_hw_cntrs_ich8lan - Clear statistical counters
3349 * @hw: pointer to the HW structure
3350 *
3351 * Clears hardware counters specific to the silicon family and calls
3352 * clear_hw_cntrs_generic to clear all general purpose counters.
3353 **/
3354static void e1000_clear_hw_cntrs_ich8lan(struct e1000_hw *hw)
3355{
Bruce Allana4f58f52009-06-02 11:29:18 +00003356 u16 phy_data;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003357
3358 e1000e_clear_hw_cntrs_base(hw);
3359
Bruce Allan99673d92009-11-20 23:27:21 +00003360 er32(ALGNERRC);
3361 er32(RXERRC);
3362 er32(TNCRS);
3363 er32(CEXTERR);
3364 er32(TSCTC);
3365 er32(TSCTFC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003366
Bruce Allan99673d92009-11-20 23:27:21 +00003367 er32(MGTPRC);
3368 er32(MGTPDC);
3369 er32(MGTPTC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003370
Bruce Allan99673d92009-11-20 23:27:21 +00003371 er32(IAC);
3372 er32(ICRXOC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003373
Bruce Allana4f58f52009-06-02 11:29:18 +00003374 /* Clear PHY statistics registers */
3375 if ((hw->phy.type == e1000_phy_82578) ||
3376 (hw->phy.type == e1000_phy_82577)) {
Bruce Allan94d81862009-11-20 23:25:26 +00003377 hw->phy.ops.read_reg(hw, HV_SCC_UPPER, &phy_data);
3378 hw->phy.ops.read_reg(hw, HV_SCC_LOWER, &phy_data);
3379 hw->phy.ops.read_reg(hw, HV_ECOL_UPPER, &phy_data);
3380 hw->phy.ops.read_reg(hw, HV_ECOL_LOWER, &phy_data);
3381 hw->phy.ops.read_reg(hw, HV_MCC_UPPER, &phy_data);
3382 hw->phy.ops.read_reg(hw, HV_MCC_LOWER, &phy_data);
3383 hw->phy.ops.read_reg(hw, HV_LATECOL_UPPER, &phy_data);
3384 hw->phy.ops.read_reg(hw, HV_LATECOL_LOWER, &phy_data);
3385 hw->phy.ops.read_reg(hw, HV_COLC_UPPER, &phy_data);
3386 hw->phy.ops.read_reg(hw, HV_COLC_LOWER, &phy_data);
3387 hw->phy.ops.read_reg(hw, HV_DC_UPPER, &phy_data);
3388 hw->phy.ops.read_reg(hw, HV_DC_LOWER, &phy_data);
3389 hw->phy.ops.read_reg(hw, HV_TNCRS_UPPER, &phy_data);
3390 hw->phy.ops.read_reg(hw, HV_TNCRS_LOWER, &phy_data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003391 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07003392}
3393
3394static struct e1000_mac_operations ich8_mac_ops = {
Bruce Allana4f58f52009-06-02 11:29:18 +00003395 .id_led_init = e1000e_id_led_init,
Bruce Allan4662e822008-08-26 18:37:06 -07003396 .check_mng_mode = e1000_check_mng_mode_ich8lan,
Bruce Allan7d3cabb2009-07-01 13:29:08 +00003397 .check_for_link = e1000_check_for_copper_link_ich8lan,
Bruce Allana4f58f52009-06-02 11:29:18 +00003398 /* cleanup_led dependent on mac type */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003399 .clear_hw_cntrs = e1000_clear_hw_cntrs_ich8lan,
3400 .get_bus_info = e1000_get_bus_info_ich8lan,
Bruce Allanf4d2dd42010-01-13 02:05:18 +00003401 .set_lan_id = e1000_set_lan_id_single_port,
Auke Kokbc7f75f2007-09-17 12:30:59 -07003402 .get_link_up_info = e1000_get_link_up_info_ich8lan,
Bruce Allana4f58f52009-06-02 11:29:18 +00003403 /* led_on dependent on mac type */
3404 /* led_off dependent on mac type */
Jeff Kirshere2de3eb2008-03-28 09:15:11 -07003405 .update_mc_addr_list = e1000e_update_mc_addr_list_generic,
Auke Kokbc7f75f2007-09-17 12:30:59 -07003406 .reset_hw = e1000_reset_hw_ich8lan,
3407 .init_hw = e1000_init_hw_ich8lan,
3408 .setup_link = e1000_setup_link_ich8lan,
3409 .setup_physical_interface= e1000_setup_copper_link_ich8lan,
Bruce Allana4f58f52009-06-02 11:29:18 +00003410 /* id_led_init dependent on mac type */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003411};
3412
3413static struct e1000_phy_operations ich8_phy_ops = {
Bruce Allan94d81862009-11-20 23:25:26 +00003414 .acquire = e1000_acquire_swflag_ich8lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07003415 .check_reset_block = e1000_check_reset_block_ich8lan,
Bruce Allan94d81862009-11-20 23:25:26 +00003416 .commit = NULL,
Bruce Allanf4187b52008-08-26 18:36:50 -07003417 .get_cfg_done = e1000_get_cfg_done_ich8lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07003418 .get_cable_length = e1000e_get_cable_length_igp_2,
Bruce Allan94d81862009-11-20 23:25:26 +00003419 .read_reg = e1000e_read_phy_reg_igp,
3420 .release = e1000_release_swflag_ich8lan,
3421 .reset = e1000_phy_hw_reset_ich8lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07003422 .set_d0_lplu_state = e1000_set_d0_lplu_state_ich8lan,
3423 .set_d3_lplu_state = e1000_set_d3_lplu_state_ich8lan,
Bruce Allan94d81862009-11-20 23:25:26 +00003424 .write_reg = e1000e_write_phy_reg_igp,
Auke Kokbc7f75f2007-09-17 12:30:59 -07003425};
3426
3427static struct e1000_nvm_operations ich8_nvm_ops = {
Bruce Allan94d81862009-11-20 23:25:26 +00003428 .acquire = e1000_acquire_nvm_ich8lan,
3429 .read = e1000_read_nvm_ich8lan,
3430 .release = e1000_release_nvm_ich8lan,
3431 .update = e1000_update_nvm_checksum_ich8lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07003432 .valid_led_default = e1000_valid_led_default_ich8lan,
Bruce Allan94d81862009-11-20 23:25:26 +00003433 .validate = e1000_validate_nvm_checksum_ich8lan,
3434 .write = e1000_write_nvm_ich8lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07003435};
3436
3437struct e1000_info e1000_ich8_info = {
3438 .mac = e1000_ich8lan,
3439 .flags = FLAG_HAS_WOL
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003440 | FLAG_IS_ICH
Auke Kokbc7f75f2007-09-17 12:30:59 -07003441 | FLAG_RX_CSUM_ENABLED
3442 | FLAG_HAS_CTRLEXT_ON_LOAD
3443 | FLAG_HAS_AMT
3444 | FLAG_HAS_FLASH
3445 | FLAG_APME_IN_WUC,
3446 .pba = 8,
Bruce Allan2adc55c2009-06-02 11:28:58 +00003447 .max_hw_frame_size = ETH_FRAME_LEN + ETH_FCS_LEN,
Jeff Kirsher69e3fd82008-04-02 13:48:18 -07003448 .get_variants = e1000_get_variants_ich8lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07003449 .mac_ops = &ich8_mac_ops,
3450 .phy_ops = &ich8_phy_ops,
3451 .nvm_ops = &ich8_nvm_ops,
3452};
3453
3454struct e1000_info e1000_ich9_info = {
3455 .mac = e1000_ich9lan,
3456 .flags = FLAG_HAS_JUMBO_FRAMES
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003457 | FLAG_IS_ICH
Auke Kokbc7f75f2007-09-17 12:30:59 -07003458 | FLAG_HAS_WOL
3459 | FLAG_RX_CSUM_ENABLED
3460 | FLAG_HAS_CTRLEXT_ON_LOAD
3461 | FLAG_HAS_AMT
3462 | FLAG_HAS_ERT
3463 | FLAG_HAS_FLASH
3464 | FLAG_APME_IN_WUC,
3465 .pba = 10,
Bruce Allan2adc55c2009-06-02 11:28:58 +00003466 .max_hw_frame_size = DEFAULT_JUMBO,
Jeff Kirsher69e3fd82008-04-02 13:48:18 -07003467 .get_variants = e1000_get_variants_ich8lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07003468 .mac_ops = &ich8_mac_ops,
3469 .phy_ops = &ich8_phy_ops,
3470 .nvm_ops = &ich8_nvm_ops,
3471};
3472
Bruce Allanf4187b52008-08-26 18:36:50 -07003473struct e1000_info e1000_ich10_info = {
3474 .mac = e1000_ich10lan,
3475 .flags = FLAG_HAS_JUMBO_FRAMES
3476 | FLAG_IS_ICH
3477 | FLAG_HAS_WOL
3478 | FLAG_RX_CSUM_ENABLED
3479 | FLAG_HAS_CTRLEXT_ON_LOAD
3480 | FLAG_HAS_AMT
3481 | FLAG_HAS_ERT
3482 | FLAG_HAS_FLASH
3483 | FLAG_APME_IN_WUC,
3484 .pba = 10,
Bruce Allan2adc55c2009-06-02 11:28:58 +00003485 .max_hw_frame_size = DEFAULT_JUMBO,
Bruce Allanf4187b52008-08-26 18:36:50 -07003486 .get_variants = e1000_get_variants_ich8lan,
3487 .mac_ops = &ich8_mac_ops,
3488 .phy_ops = &ich8_phy_ops,
3489 .nvm_ops = &ich8_nvm_ops,
3490};
Bruce Allana4f58f52009-06-02 11:29:18 +00003491
3492struct e1000_info e1000_pch_info = {
3493 .mac = e1000_pchlan,
3494 .flags = FLAG_IS_ICH
3495 | FLAG_HAS_WOL
3496 | FLAG_RX_CSUM_ENABLED
3497 | FLAG_HAS_CTRLEXT_ON_LOAD
3498 | FLAG_HAS_AMT
3499 | FLAG_HAS_FLASH
3500 | FLAG_HAS_JUMBO_FRAMES
Bruce Allan38eb3942009-11-19 12:34:20 +00003501 | FLAG_DISABLE_FC_PAUSE_TIME /* errata */
Bruce Allana4f58f52009-06-02 11:29:18 +00003502 | FLAG_APME_IN_WUC,
3503 .pba = 26,
3504 .max_hw_frame_size = 4096,
3505 .get_variants = e1000_get_variants_ich8lan,
3506 .mac_ops = &ich8_mac_ops,
3507 .phy_ops = &ich8_phy_ops,
3508 .nvm_ops = &ich8_nvm_ops,
3509};