blob: c2ea86197503b2509f25bab249ada7e7ec00490a [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 */
86
87#define E1000_ICH_MNG_IAMT_MODE 0x2
88
89#define ID_LED_DEFAULT_ICH8LAN ((ID_LED_DEF1_DEF2 << 12) | \
90 (ID_LED_DEF1_OFF2 << 8) | \
91 (ID_LED_DEF1_ON2 << 4) | \
92 (ID_LED_DEF1_DEF2))
93
94#define E1000_ICH_NVM_SIG_WORD 0x13
95#define E1000_ICH_NVM_SIG_MASK 0xC000
Bruce Allane2434552008-11-21 17:02:41 -080096#define E1000_ICH_NVM_VALID_SIG_MASK 0xC0
97#define E1000_ICH_NVM_SIG_VALUE 0x80
Auke Kokbc7f75f2007-09-17 12:30:59 -070098
99#define E1000_ICH8_LAN_INIT_TIMEOUT 1500
100
101#define E1000_FEXTNVM_SW_CONFIG 1
102#define E1000_FEXTNVM_SW_CONFIG_ICH8M (1 << 27) /* Bit redefined for ICH8M :/ */
103
104#define PCIE_ICH8_SNOOP_ALL PCIE_NO_SNOOP_ALL
105
106#define E1000_ICH_RAR_ENTRIES 7
107
108#define PHY_PAGE_SHIFT 5
109#define PHY_REG(page, reg) (((page) << PHY_PAGE_SHIFT) | \
110 ((reg) & MAX_PHY_REG_ADDRESS))
111#define IGP3_KMRN_DIAG PHY_REG(770, 19) /* KMRN Diagnostic */
112#define IGP3_VR_CTRL PHY_REG(776, 18) /* Voltage Regulator Control */
113
114#define IGP3_KMRN_DIAG_PCS_LOCK_LOSS 0x0002
115#define IGP3_VR_CTRL_DEV_POWERDOWN_MODE_MASK 0x0300
116#define IGP3_VR_CTRL_MODE_SHUTDOWN 0x0200
117
Bruce Allana4f58f52009-06-02 11:29:18 +0000118#define HV_LED_CONFIG PHY_REG(768, 30) /* LED Configuration */
119
Bruce Allan53ac5a82009-10-26 11:23:06 +0000120#define SW_FLAG_TIMEOUT 1000 /* SW Semaphore flag timeout in milliseconds */
121
Bruce Allanf523d212009-10-29 13:45:45 +0000122/* SMBus Address Phy Register */
123#define HV_SMB_ADDR PHY_REG(768, 26)
124#define HV_SMB_ADDR_PEC_EN 0x0200
125#define HV_SMB_ADDR_VALID 0x0080
126
127/* Strapping Option Register - RO */
128#define E1000_STRAP 0x0000C
129#define E1000_STRAP_SMBUS_ADDRESS_MASK 0x00FE0000
130#define E1000_STRAP_SMBUS_ADDRESS_SHIFT 17
131
Bruce Allanfa2ce132009-10-26 11:23:25 +0000132/* OEM Bits Phy Register */
133#define HV_OEM_BITS PHY_REG(768, 25)
134#define HV_OEM_BITS_LPLU 0x0004 /* Low Power Link Up */
Bruce Allanf523d212009-10-29 13:45:45 +0000135#define HV_OEM_BITS_GBE_DIS 0x0040 /* Gigabit Disable */
Bruce Allanfa2ce132009-10-26 11:23:25 +0000136#define HV_OEM_BITS_RESTART_AN 0x0400 /* Restart Auto-negotiation */
137
Bruce Allan1d5846b2009-10-29 13:46:05 +0000138#define E1000_NVM_K1_CONFIG 0x1B /* NVM K1 Config Word */
139#define E1000_NVM_K1_ENABLE 0x1 /* NVM Enable K1 bit */
140
Bruce Allanfddaa1a2010-01-13 01:52:49 +0000141/* KMRN Mode Control */
142#define HV_KMRN_MODE_CTRL PHY_REG(769, 16)
143#define HV_KMRN_MDIO_SLOW 0x0400
144
Auke Kokbc7f75f2007-09-17 12:30:59 -0700145/* ICH GbE Flash Hardware Sequencing Flash Status Register bit breakdown */
146/* Offset 04h HSFSTS */
147union ich8_hws_flash_status {
148 struct ich8_hsfsts {
149 u16 flcdone :1; /* bit 0 Flash Cycle Done */
150 u16 flcerr :1; /* bit 1 Flash Cycle Error */
151 u16 dael :1; /* bit 2 Direct Access error Log */
152 u16 berasesz :2; /* bit 4:3 Sector Erase Size */
153 u16 flcinprog :1; /* bit 5 flash cycle in Progress */
154 u16 reserved1 :2; /* bit 13:6 Reserved */
155 u16 reserved2 :6; /* bit 13:6 Reserved */
156 u16 fldesvalid :1; /* bit 14 Flash Descriptor Valid */
157 u16 flockdn :1; /* bit 15 Flash Config Lock-Down */
158 } hsf_status;
159 u16 regval;
160};
161
162/* ICH GbE Flash Hardware Sequencing Flash control Register bit breakdown */
163/* Offset 06h FLCTL */
164union ich8_hws_flash_ctrl {
165 struct ich8_hsflctl {
166 u16 flcgo :1; /* 0 Flash Cycle Go */
167 u16 flcycle :2; /* 2:1 Flash Cycle */
168 u16 reserved :5; /* 7:3 Reserved */
169 u16 fldbcount :2; /* 9:8 Flash Data Byte Count */
170 u16 flockdn :6; /* 15:10 Reserved */
171 } hsf_ctrl;
172 u16 regval;
173};
174
175/* ICH Flash Region Access Permissions */
176union ich8_hws_flash_regacc {
177 struct ich8_flracc {
178 u32 grra :8; /* 0:7 GbE region Read Access */
179 u32 grwa :8; /* 8:15 GbE region Write Access */
180 u32 gmrag :8; /* 23:16 GbE Master Read Access Grant */
181 u32 gmwag :8; /* 31:24 GbE Master Write Access Grant */
182 } hsf_flregacc;
183 u16 regval;
184};
185
Bruce Allan4a770352008-10-01 17:18:35 -0700186/* ICH Flash Protected Region */
187union ich8_flash_protected_range {
188 struct ich8_pr {
189 u32 base:13; /* 0:12 Protected Range Base */
190 u32 reserved1:2; /* 13:14 Reserved */
191 u32 rpe:1; /* 15 Read Protection Enable */
192 u32 limit:13; /* 16:28 Protected Range Limit */
193 u32 reserved2:2; /* 29:30 Reserved */
194 u32 wpe:1; /* 31 Write Protection Enable */
195 } range;
196 u32 regval;
197};
198
Auke Kokbc7f75f2007-09-17 12:30:59 -0700199static s32 e1000_setup_link_ich8lan(struct e1000_hw *hw);
200static void e1000_clear_hw_cntrs_ich8lan(struct e1000_hw *hw);
201static void e1000_initialize_hw_bits_ich8lan(struct e1000_hw *hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700202static s32 e1000_erase_flash_bank_ich8lan(struct e1000_hw *hw, u32 bank);
203static s32 e1000_retry_write_flash_byte_ich8lan(struct e1000_hw *hw,
204 u32 offset, u8 byte);
Bruce Allanf4187b52008-08-26 18:36:50 -0700205static s32 e1000_read_flash_byte_ich8lan(struct e1000_hw *hw, u32 offset,
206 u8 *data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700207static s32 e1000_read_flash_word_ich8lan(struct e1000_hw *hw, u32 offset,
208 u16 *data);
209static s32 e1000_read_flash_data_ich8lan(struct e1000_hw *hw, u32 offset,
210 u8 size, u16 *data);
211static s32 e1000_setup_copper_link_ich8lan(struct e1000_hw *hw);
212static s32 e1000_kmrn_lock_loss_workaround_ich8lan(struct e1000_hw *hw);
Bruce Allanf4187b52008-08-26 18:36:50 -0700213static s32 e1000_get_cfg_done_ich8lan(struct e1000_hw *hw);
Bruce Allana4f58f52009-06-02 11:29:18 +0000214static s32 e1000_cleanup_led_ich8lan(struct e1000_hw *hw);
215static s32 e1000_led_on_ich8lan(struct e1000_hw *hw);
216static s32 e1000_led_off_ich8lan(struct e1000_hw *hw);
217static s32 e1000_id_led_init_pchlan(struct e1000_hw *hw);
218static s32 e1000_setup_led_pchlan(struct e1000_hw *hw);
219static s32 e1000_cleanup_led_pchlan(struct e1000_hw *hw);
220static s32 e1000_led_on_pchlan(struct e1000_hw *hw);
221static s32 e1000_led_off_pchlan(struct e1000_hw *hw);
Bruce Allanfa2ce132009-10-26 11:23:25 +0000222static s32 e1000_set_lplu_state_pchlan(struct e1000_hw *hw, bool active);
Bruce Allan17f208d2009-12-01 15:47:22 +0000223static void e1000_power_down_phy_copper_ich8lan(struct e1000_hw *hw);
Bruce Allanf523d212009-10-29 13:45:45 +0000224static void e1000_lan_init_done_ich8lan(struct e1000_hw *hw);
Bruce Allan1d5846b2009-10-29 13:46:05 +0000225static s32 e1000_k1_gig_workaround_hv(struct e1000_hw *hw, bool link);
Bruce Allanfddaa1a2010-01-13 01:52:49 +0000226static s32 e1000_set_mdio_slow_mode_hv(struct e1000_hw *hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700227
228static inline u16 __er16flash(struct e1000_hw *hw, unsigned long reg)
229{
230 return readw(hw->flash_address + reg);
231}
232
233static inline u32 __er32flash(struct e1000_hw *hw, unsigned long reg)
234{
235 return readl(hw->flash_address + reg);
236}
237
238static inline void __ew16flash(struct e1000_hw *hw, unsigned long reg, u16 val)
239{
240 writew(val, hw->flash_address + reg);
241}
242
243static inline void __ew32flash(struct e1000_hw *hw, unsigned long reg, u32 val)
244{
245 writel(val, hw->flash_address + reg);
246}
247
248#define er16flash(reg) __er16flash(hw, (reg))
249#define er32flash(reg) __er32flash(hw, (reg))
250#define ew16flash(reg,val) __ew16flash(hw, (reg), (val))
251#define ew32flash(reg,val) __ew32flash(hw, (reg), (val))
252
253/**
Bruce Allana4f58f52009-06-02 11:29:18 +0000254 * e1000_init_phy_params_pchlan - Initialize PHY function pointers
255 * @hw: pointer to the HW structure
256 *
257 * Initialize family-specific PHY parameters and function pointers.
258 **/
259static s32 e1000_init_phy_params_pchlan(struct e1000_hw *hw)
260{
261 struct e1000_phy_info *phy = &hw->phy;
262 s32 ret_val = 0;
263
264 phy->addr = 1;
265 phy->reset_delay_us = 100;
266
Bruce Allan94d81862009-11-20 23:25:26 +0000267 phy->ops.read_reg = e1000_read_phy_reg_hv;
268 phy->ops.read_reg_locked = e1000_read_phy_reg_hv_locked;
Bruce Allanfa2ce132009-10-26 11:23:25 +0000269 phy->ops.set_d0_lplu_state = e1000_set_lplu_state_pchlan;
270 phy->ops.set_d3_lplu_state = e1000_set_lplu_state_pchlan;
Bruce Allan94d81862009-11-20 23:25:26 +0000271 phy->ops.write_reg = e1000_write_phy_reg_hv;
272 phy->ops.write_reg_locked = e1000_write_phy_reg_hv_locked;
Bruce Allan17f208d2009-12-01 15:47:22 +0000273 phy->ops.power_up = e1000_power_up_phy_copper;
274 phy->ops.power_down = e1000_power_down_phy_copper_ich8lan;
Bruce Allana4f58f52009-06-02 11:29:18 +0000275 phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT;
276
277 phy->id = e1000_phy_unknown;
Bruce Allanfddaa1a2010-01-13 01:52:49 +0000278 ret_val = e1000e_get_phy_id(hw);
279 if (ret_val)
280 goto out;
281 if ((phy->id == 0) || (phy->id == PHY_REVISION_MASK)) {
282 /*
283 * In case the PHY needs to be in mdio slow mode (eg. 82577),
284 * set slow mode and try to get the PHY id again.
285 */
286 ret_val = e1000_set_mdio_slow_mode_hv(hw);
287 if (ret_val)
288 goto out;
289 ret_val = e1000e_get_phy_id(hw);
290 if (ret_val)
291 goto out;
292 }
Bruce Allana4f58f52009-06-02 11:29:18 +0000293 phy->type = e1000e_get_phy_type_from_id(phy->id);
294
Bruce Allan0be84012009-12-02 17:03:18 +0000295 switch (phy->type) {
296 case e1000_phy_82577:
Bruce Allana4f58f52009-06-02 11:29:18 +0000297 phy->ops.check_polarity = e1000_check_polarity_82577;
298 phy->ops.force_speed_duplex =
299 e1000_phy_force_speed_duplex_82577;
Bruce Allan0be84012009-12-02 17:03:18 +0000300 phy->ops.get_cable_length = e1000_get_cable_length_82577;
Bruce Allan94d81862009-11-20 23:25:26 +0000301 phy->ops.get_info = e1000_get_phy_info_82577;
302 phy->ops.commit = e1000e_phy_sw_reset;
Bruce Allan0be84012009-12-02 17:03:18 +0000303 case e1000_phy_82578:
304 phy->ops.check_polarity = e1000_check_polarity_m88;
305 phy->ops.force_speed_duplex = e1000e_phy_force_speed_duplex_m88;
306 phy->ops.get_cable_length = e1000e_get_cable_length_m88;
307 phy->ops.get_info = e1000e_get_phy_info_m88;
308 break;
309 default:
310 ret_val = -E1000_ERR_PHY;
311 break;
Bruce Allana4f58f52009-06-02 11:29:18 +0000312 }
313
Bruce Allanfddaa1a2010-01-13 01:52:49 +0000314out:
Bruce Allana4f58f52009-06-02 11:29:18 +0000315 return ret_val;
316}
317
318/**
Auke Kokbc7f75f2007-09-17 12:30:59 -0700319 * e1000_init_phy_params_ich8lan - Initialize PHY function pointers
320 * @hw: pointer to the HW structure
321 *
322 * Initialize family-specific PHY parameters and function pointers.
323 **/
324static s32 e1000_init_phy_params_ich8lan(struct e1000_hw *hw)
325{
326 struct e1000_phy_info *phy = &hw->phy;
327 s32 ret_val;
328 u16 i = 0;
329
330 phy->addr = 1;
331 phy->reset_delay_us = 100;
332
Bruce Allan17f208d2009-12-01 15:47:22 +0000333 phy->ops.power_up = e1000_power_up_phy_copper;
334 phy->ops.power_down = e1000_power_down_phy_copper_ich8lan;
335
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700336 /*
337 * We may need to do this twice - once for IGP and if that fails,
338 * we'll set BM func pointers and try again
339 */
340 ret_val = e1000e_determine_phy_address(hw);
341 if (ret_val) {
Bruce Allan94d81862009-11-20 23:25:26 +0000342 phy->ops.write_reg = e1000e_write_phy_reg_bm;
343 phy->ops.read_reg = e1000e_read_phy_reg_bm;
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700344 ret_val = e1000e_determine_phy_address(hw);
Bruce Allan9b71b412009-12-01 15:53:07 +0000345 if (ret_val) {
346 e_dbg("Cannot determine PHY addr. Erroring out\n");
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700347 return ret_val;
Bruce Allan9b71b412009-12-01 15:53:07 +0000348 }
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700349 }
350
Auke Kokbc7f75f2007-09-17 12:30:59 -0700351 phy->id = 0;
352 while ((e1000_phy_unknown == e1000e_get_phy_type_from_id(phy->id)) &&
353 (i++ < 100)) {
354 msleep(1);
355 ret_val = e1000e_get_phy_id(hw);
356 if (ret_val)
357 return ret_val;
358 }
359
360 /* Verify phy id */
361 switch (phy->id) {
362 case IGP03E1000_E_PHY_ID:
363 phy->type = e1000_phy_igp_3;
364 phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT;
Bruce Allan94d81862009-11-20 23:25:26 +0000365 phy->ops.read_reg_locked = e1000e_read_phy_reg_igp_locked;
366 phy->ops.write_reg_locked = e1000e_write_phy_reg_igp_locked;
Bruce Allan0be84012009-12-02 17:03:18 +0000367 phy->ops.get_info = e1000e_get_phy_info_igp;
368 phy->ops.check_polarity = e1000_check_polarity_igp;
369 phy->ops.force_speed_duplex = e1000e_phy_force_speed_duplex_igp;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700370 break;
371 case IFE_E_PHY_ID:
372 case IFE_PLUS_E_PHY_ID:
373 case IFE_C_E_PHY_ID:
374 phy->type = e1000_phy_ife;
375 phy->autoneg_mask = E1000_ALL_NOT_GIG;
Bruce Allan0be84012009-12-02 17:03:18 +0000376 phy->ops.get_info = e1000_get_phy_info_ife;
377 phy->ops.check_polarity = e1000_check_polarity_ife;
378 phy->ops.force_speed_duplex = e1000_phy_force_speed_duplex_ife;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700379 break;
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700380 case BME1000_E_PHY_ID:
381 phy->type = e1000_phy_bm;
382 phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT;
Bruce Allan94d81862009-11-20 23:25:26 +0000383 phy->ops.read_reg = e1000e_read_phy_reg_bm;
384 phy->ops.write_reg = e1000e_write_phy_reg_bm;
385 phy->ops.commit = e1000e_phy_sw_reset;
Bruce Allan0be84012009-12-02 17:03:18 +0000386 phy->ops.get_info = e1000e_get_phy_info_m88;
387 phy->ops.check_polarity = e1000_check_polarity_m88;
388 phy->ops.force_speed_duplex = e1000e_phy_force_speed_duplex_m88;
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700389 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700390 default:
391 return -E1000_ERR_PHY;
392 break;
393 }
394
395 return 0;
396}
397
398/**
399 * e1000_init_nvm_params_ich8lan - Initialize NVM function pointers
400 * @hw: pointer to the HW structure
401 *
402 * Initialize family-specific NVM parameters and function
403 * pointers.
404 **/
405static s32 e1000_init_nvm_params_ich8lan(struct e1000_hw *hw)
406{
407 struct e1000_nvm_info *nvm = &hw->nvm;
408 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
Bruce Allan148675a2009-08-07 07:41:56 +0000409 u32 gfpreg, sector_base_addr, sector_end_addr;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700410 u16 i;
411
Bruce Allanad680762008-03-28 09:15:03 -0700412 /* Can't read flash registers if the register set isn't mapped. */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700413 if (!hw->flash_address) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000414 e_dbg("ERROR: Flash registers not mapped\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700415 return -E1000_ERR_CONFIG;
416 }
417
418 nvm->type = e1000_nvm_flash_sw;
419
420 gfpreg = er32flash(ICH_FLASH_GFPREG);
421
Bruce Allanad680762008-03-28 09:15:03 -0700422 /*
423 * sector_X_addr is a "sector"-aligned address (4096 bytes)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700424 * Add 1 to sector_end_addr since this sector is included in
Bruce Allanad680762008-03-28 09:15:03 -0700425 * the overall size.
426 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700427 sector_base_addr = gfpreg & FLASH_GFPREG_BASE_MASK;
428 sector_end_addr = ((gfpreg >> 16) & FLASH_GFPREG_BASE_MASK) + 1;
429
430 /* flash_base_addr is byte-aligned */
431 nvm->flash_base_addr = sector_base_addr << FLASH_SECTOR_ADDR_SHIFT;
432
Bruce Allanad680762008-03-28 09:15:03 -0700433 /*
434 * find total size of the NVM, then cut in half since the total
435 * size represents two separate NVM banks.
436 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700437 nvm->flash_bank_size = (sector_end_addr - sector_base_addr)
438 << FLASH_SECTOR_ADDR_SHIFT;
439 nvm->flash_bank_size /= 2;
440 /* Adjust to word count */
441 nvm->flash_bank_size /= sizeof(u16);
442
443 nvm->word_size = E1000_ICH8_SHADOW_RAM_WORDS;
444
445 /* Clear shadow ram */
446 for (i = 0; i < nvm->word_size; i++) {
Bruce Allan564ea9b2009-11-20 23:26:44 +0000447 dev_spec->shadow_ram[i].modified = false;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700448 dev_spec->shadow_ram[i].value = 0xFFFF;
449 }
450
451 return 0;
452}
453
454/**
455 * e1000_init_mac_params_ich8lan - Initialize MAC function pointers
456 * @hw: pointer to the HW structure
457 *
458 * Initialize family-specific MAC parameters and function
459 * pointers.
460 **/
461static s32 e1000_init_mac_params_ich8lan(struct e1000_adapter *adapter)
462{
463 struct e1000_hw *hw = &adapter->hw;
464 struct e1000_mac_info *mac = &hw->mac;
465
466 /* Set media type function pointer */
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700467 hw->phy.media_type = e1000_media_type_copper;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700468
469 /* Set mta register count */
470 mac->mta_reg_count = 32;
471 /* Set rar entry count */
472 mac->rar_entry_count = E1000_ICH_RAR_ENTRIES;
473 if (mac->type == e1000_ich8lan)
474 mac->rar_entry_count--;
475 /* Set if manageability features are enabled. */
Bruce Allan564ea9b2009-11-20 23:26:44 +0000476 mac->arc_subsystem_valid = true;
Bruce Allanf464ba82010-01-07 16:31:35 +0000477 /* Adaptive IFS supported */
478 mac->adaptive_ifs = true;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700479
Bruce Allana4f58f52009-06-02 11:29:18 +0000480 /* LED operations */
481 switch (mac->type) {
482 case e1000_ich8lan:
483 case e1000_ich9lan:
484 case e1000_ich10lan:
485 /* ID LED init */
486 mac->ops.id_led_init = e1000e_id_led_init;
487 /* setup LED */
488 mac->ops.setup_led = e1000e_setup_led_generic;
489 /* cleanup LED */
490 mac->ops.cleanup_led = e1000_cleanup_led_ich8lan;
491 /* turn on/off LED */
492 mac->ops.led_on = e1000_led_on_ich8lan;
493 mac->ops.led_off = e1000_led_off_ich8lan;
494 break;
495 case e1000_pchlan:
496 /* ID LED init */
497 mac->ops.id_led_init = e1000_id_led_init_pchlan;
498 /* setup LED */
499 mac->ops.setup_led = e1000_setup_led_pchlan;
500 /* cleanup LED */
501 mac->ops.cleanup_led = e1000_cleanup_led_pchlan;
502 /* turn on/off LED */
503 mac->ops.led_on = e1000_led_on_pchlan;
504 mac->ops.led_off = e1000_led_off_pchlan;
505 break;
506 default:
507 break;
508 }
509
Auke Kokbc7f75f2007-09-17 12:30:59 -0700510 /* Enable PCS Lock-loss workaround for ICH8 */
511 if (mac->type == e1000_ich8lan)
Bruce Allan564ea9b2009-11-20 23:26:44 +0000512 e1000e_set_kmrn_lock_loss_workaround_ich8lan(hw, true);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700513
514 return 0;
515}
516
Bruce Allan7d3cabb2009-07-01 13:29:08 +0000517/**
518 * e1000_check_for_copper_link_ich8lan - Check for link (Copper)
519 * @hw: pointer to the HW structure
520 *
521 * Checks to see of the link status of the hardware has changed. If a
522 * change in link status has been detected, then we read the PHY registers
523 * to get the current speed/duplex if link exists.
524 **/
525static s32 e1000_check_for_copper_link_ich8lan(struct e1000_hw *hw)
526{
527 struct e1000_mac_info *mac = &hw->mac;
528 s32 ret_val;
529 bool link;
530
531 /*
532 * We only want to go out to the PHY registers to see if Auto-Neg
533 * has completed and/or if our link status has changed. The
534 * get_link_status flag is set upon receiving a Link Status
535 * Change or Rx Sequence Error interrupt.
536 */
537 if (!mac->get_link_status) {
538 ret_val = 0;
539 goto out;
540 }
541
Bruce Allan7d3cabb2009-07-01 13:29:08 +0000542 /*
543 * First we want to see if the MII Status Register reports
544 * link. If so, then we want to get the current speed/duplex
545 * of the PHY.
546 */
547 ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link);
548 if (ret_val)
549 goto out;
550
Bruce Allan1d5846b2009-10-29 13:46:05 +0000551 if (hw->mac.type == e1000_pchlan) {
552 ret_val = e1000_k1_gig_workaround_hv(hw, link);
553 if (ret_val)
554 goto out;
555 }
556
Bruce Allan7d3cabb2009-07-01 13:29:08 +0000557 if (!link)
558 goto out; /* No link detected */
559
560 mac->get_link_status = false;
561
562 if (hw->phy.type == e1000_phy_82578) {
563 ret_val = e1000_link_stall_workaround_hv(hw);
564 if (ret_val)
565 goto out;
566 }
567
568 /*
569 * Check if there was DownShift, must be checked
570 * immediately after link-up
571 */
572 e1000e_check_downshift(hw);
573
574 /*
575 * If we are forcing speed/duplex, then we simply return since
576 * we have already determined whether we have link or not.
577 */
578 if (!mac->autoneg) {
579 ret_val = -E1000_ERR_CONFIG;
580 goto out;
581 }
582
583 /*
584 * Auto-Neg is enabled. Auto Speed Detection takes care
585 * of MAC speed/duplex configuration. So we only need to
586 * configure Collision Distance in the MAC.
587 */
588 e1000e_config_collision_dist(hw);
589
590 /*
591 * Configure Flow Control now that Auto-Neg has completed.
592 * First, we need to restore the desired flow control
593 * settings because we may have had to re-autoneg with a
594 * different link partner.
595 */
596 ret_val = e1000e_config_fc_after_link_up(hw);
597 if (ret_val)
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000598 e_dbg("Error configuring flow control\n");
Bruce Allan7d3cabb2009-07-01 13:29:08 +0000599
600out:
601 return ret_val;
602}
603
Jeff Kirsher69e3fd82008-04-02 13:48:18 -0700604static s32 e1000_get_variants_ich8lan(struct e1000_adapter *adapter)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700605{
606 struct e1000_hw *hw = &adapter->hw;
607 s32 rc;
608
609 rc = e1000_init_mac_params_ich8lan(adapter);
610 if (rc)
611 return rc;
612
613 rc = e1000_init_nvm_params_ich8lan(hw);
614 if (rc)
615 return rc;
616
Bruce Allana4f58f52009-06-02 11:29:18 +0000617 if (hw->mac.type == e1000_pchlan)
618 rc = e1000_init_phy_params_pchlan(hw);
619 else
620 rc = e1000_init_phy_params_ich8lan(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700621 if (rc)
622 return rc;
623
Bruce Allan2adc55c2009-06-02 11:28:58 +0000624 if (adapter->hw.phy.type == e1000_phy_ife) {
625 adapter->flags &= ~FLAG_HAS_JUMBO_FRAMES;
626 adapter->max_hw_frame_size = ETH_FRAME_LEN + ETH_FCS_LEN;
627 }
628
Auke Kokbc7f75f2007-09-17 12:30:59 -0700629 if ((adapter->hw.mac.type == e1000_ich8lan) &&
630 (adapter->hw.phy.type == e1000_phy_igp_3))
631 adapter->flags |= FLAG_LSC_GIG_SPEED_DROP;
632
633 return 0;
634}
635
Thomas Gleixner717d4382008-10-02 16:33:40 -0700636static DEFINE_MUTEX(nvm_mutex);
Thomas Gleixner717d4382008-10-02 16:33:40 -0700637
Auke Kokbc7f75f2007-09-17 12:30:59 -0700638/**
Bruce Allanca15df52009-10-26 11:23:43 +0000639 * e1000_acquire_nvm_ich8lan - Acquire NVM mutex
640 * @hw: pointer to the HW structure
641 *
642 * Acquires the mutex for performing NVM operations.
643 **/
644static s32 e1000_acquire_nvm_ich8lan(struct e1000_hw *hw)
645{
646 mutex_lock(&nvm_mutex);
647
648 return 0;
649}
650
651/**
652 * e1000_release_nvm_ich8lan - Release NVM mutex
653 * @hw: pointer to the HW structure
654 *
655 * Releases the mutex used while performing NVM operations.
656 **/
657static void e1000_release_nvm_ich8lan(struct e1000_hw *hw)
658{
659 mutex_unlock(&nvm_mutex);
660
661 return;
662}
663
664static DEFINE_MUTEX(swflag_mutex);
665
666/**
Auke Kokbc7f75f2007-09-17 12:30:59 -0700667 * e1000_acquire_swflag_ich8lan - Acquire software control flag
668 * @hw: pointer to the HW structure
669 *
Bruce Allanca15df52009-10-26 11:23:43 +0000670 * Acquires the software control flag for performing PHY and select
671 * MAC CSR accesses.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700672 **/
673static s32 e1000_acquire_swflag_ich8lan(struct e1000_hw *hw)
674{
Bruce Allan373a88d2009-08-07 07:41:37 +0000675 u32 extcnf_ctrl, timeout = PHY_CFG_TIMEOUT;
676 s32 ret_val = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700677
Bruce Allanca15df52009-10-26 11:23:43 +0000678 mutex_lock(&swflag_mutex);
Thomas Gleixner717d4382008-10-02 16:33:40 -0700679
Auke Kokbc7f75f2007-09-17 12:30:59 -0700680 while (timeout) {
681 extcnf_ctrl = er32(EXTCNF_CTRL);
Bruce Allan373a88d2009-08-07 07:41:37 +0000682 if (!(extcnf_ctrl & E1000_EXTCNF_CTRL_SWFLAG))
683 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700684
Auke Kokbc7f75f2007-09-17 12:30:59 -0700685 mdelay(1);
686 timeout--;
687 }
688
689 if (!timeout) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000690 e_dbg("SW/FW/HW has locked the resource for too long.\n");
Bruce Allan373a88d2009-08-07 07:41:37 +0000691 ret_val = -E1000_ERR_CONFIG;
692 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700693 }
694
Bruce Allan53ac5a82009-10-26 11:23:06 +0000695 timeout = SW_FLAG_TIMEOUT;
Bruce Allan373a88d2009-08-07 07:41:37 +0000696
697 extcnf_ctrl |= E1000_EXTCNF_CTRL_SWFLAG;
698 ew32(EXTCNF_CTRL, extcnf_ctrl);
699
700 while (timeout) {
701 extcnf_ctrl = er32(EXTCNF_CTRL);
702 if (extcnf_ctrl & E1000_EXTCNF_CTRL_SWFLAG)
703 break;
704
705 mdelay(1);
706 timeout--;
707 }
708
709 if (!timeout) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000710 e_dbg("Failed to acquire the semaphore.\n");
Bruce Allan373a88d2009-08-07 07:41:37 +0000711 extcnf_ctrl &= ~E1000_EXTCNF_CTRL_SWFLAG;
712 ew32(EXTCNF_CTRL, extcnf_ctrl);
713 ret_val = -E1000_ERR_CONFIG;
714 goto out;
715 }
716
717out:
718 if (ret_val)
Bruce Allanca15df52009-10-26 11:23:43 +0000719 mutex_unlock(&swflag_mutex);
Bruce Allan373a88d2009-08-07 07:41:37 +0000720
721 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700722}
723
724/**
725 * e1000_release_swflag_ich8lan - Release software control flag
726 * @hw: pointer to the HW structure
727 *
Bruce Allanca15df52009-10-26 11:23:43 +0000728 * Releases the software control flag for performing PHY and select
729 * MAC CSR accesses.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700730 **/
731static void e1000_release_swflag_ich8lan(struct e1000_hw *hw)
732{
733 u32 extcnf_ctrl;
734
735 extcnf_ctrl = er32(EXTCNF_CTRL);
736 extcnf_ctrl &= ~E1000_EXTCNF_CTRL_SWFLAG;
737 ew32(EXTCNF_CTRL, extcnf_ctrl);
Thomas Gleixner717d4382008-10-02 16:33:40 -0700738
Bruce Allanca15df52009-10-26 11:23:43 +0000739 mutex_unlock(&swflag_mutex);
740
741 return;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700742}
743
744/**
Bruce Allan4662e822008-08-26 18:37:06 -0700745 * e1000_check_mng_mode_ich8lan - Checks management mode
746 * @hw: pointer to the HW structure
747 *
748 * This checks if the adapter has manageability enabled.
749 * This is a function pointer entry point only called by read/write
750 * routines for the PHY and NVM parts.
751 **/
752static bool e1000_check_mng_mode_ich8lan(struct e1000_hw *hw)
753{
Bruce Allana708dd82009-11-20 23:28:37 +0000754 u32 fwsm;
755
756 fwsm = er32(FWSM);
Bruce Allan4662e822008-08-26 18:37:06 -0700757
758 return (fwsm & E1000_FWSM_MODE_MASK) ==
759 (E1000_ICH_MNG_IAMT_MODE << E1000_FWSM_MODE_SHIFT);
760}
761
762/**
Auke Kokbc7f75f2007-09-17 12:30:59 -0700763 * e1000_check_reset_block_ich8lan - Check if PHY reset is blocked
764 * @hw: pointer to the HW structure
765 *
766 * Checks if firmware is blocking the reset of the PHY.
767 * This is a function pointer entry point only called by
768 * reset routines.
769 **/
770static s32 e1000_check_reset_block_ich8lan(struct e1000_hw *hw)
771{
772 u32 fwsm;
773
774 fwsm = er32(FWSM);
775
776 return (fwsm & E1000_ICH_FWSM_RSPCIPHY) ? 0 : E1000_BLK_PHY_RESET;
777}
778
779/**
Bruce Allanf523d212009-10-29 13:45:45 +0000780 * e1000_sw_lcd_config_ich8lan - SW-based LCD Configuration
781 * @hw: pointer to the HW structure
782 *
783 * SW should configure the LCD from the NVM extended configuration region
784 * as a workaround for certain parts.
785 **/
786static s32 e1000_sw_lcd_config_ich8lan(struct e1000_hw *hw)
787{
788 struct e1000_phy_info *phy = &hw->phy;
789 u32 i, data, cnf_size, cnf_base_addr, sw_cfg_mask;
790 s32 ret_val;
791 u16 word_addr, reg_data, reg_addr, phy_page = 0;
792
Bruce Allan94d81862009-11-20 23:25:26 +0000793 ret_val = hw->phy.ops.acquire(hw);
Bruce Allanf523d212009-10-29 13:45:45 +0000794 if (ret_val)
795 return ret_val;
796
797 /*
798 * Initialize the PHY from the NVM on ICH platforms. This
799 * is needed due to an issue where the NVM configuration is
800 * not properly autoloaded after power transitions.
801 * Therefore, after each PHY reset, we will load the
802 * configuration data out of the NVM manually.
803 */
804 if ((hw->mac.type == e1000_ich8lan && phy->type == e1000_phy_igp_3) ||
805 (hw->mac.type == e1000_pchlan)) {
806 struct e1000_adapter *adapter = hw->adapter;
807
808 /* Check if SW needs to configure the PHY */
809 if ((adapter->pdev->device == E1000_DEV_ID_ICH8_IGP_M_AMT) ||
810 (adapter->pdev->device == E1000_DEV_ID_ICH8_IGP_M) ||
811 (hw->mac.type == e1000_pchlan))
812 sw_cfg_mask = E1000_FEXTNVM_SW_CONFIG_ICH8M;
813 else
814 sw_cfg_mask = E1000_FEXTNVM_SW_CONFIG;
815
816 data = er32(FEXTNVM);
817 if (!(data & sw_cfg_mask))
818 goto out;
819
820 /* Wait for basic configuration completes before proceeding */
821 e1000_lan_init_done_ich8lan(hw);
822
823 /*
824 * Make sure HW does not configure LCD from PHY
825 * extended configuration before SW configuration
826 */
827 data = er32(EXTCNF_CTRL);
828 if (data & E1000_EXTCNF_CTRL_LCD_WRITE_ENABLE)
829 goto out;
830
831 cnf_size = er32(EXTCNF_SIZE);
832 cnf_size &= E1000_EXTCNF_SIZE_EXT_PCIE_LENGTH_MASK;
833 cnf_size >>= E1000_EXTCNF_SIZE_EXT_PCIE_LENGTH_SHIFT;
834 if (!cnf_size)
835 goto out;
836
837 cnf_base_addr = data & E1000_EXTCNF_CTRL_EXT_CNF_POINTER_MASK;
838 cnf_base_addr >>= E1000_EXTCNF_CTRL_EXT_CNF_POINTER_SHIFT;
839
840 if (!(data & E1000_EXTCNF_CTRL_OEM_WRITE_ENABLE) &&
841 (hw->mac.type == e1000_pchlan)) {
842 /*
843 * HW configures the SMBus address and LEDs when the
844 * OEM and LCD Write Enable bits are set in the NVM.
845 * When both NVM bits are cleared, SW will configure
846 * them instead.
847 */
848 data = er32(STRAP);
849 data &= E1000_STRAP_SMBUS_ADDRESS_MASK;
850 reg_data = data >> E1000_STRAP_SMBUS_ADDRESS_SHIFT;
851 reg_data |= HV_SMB_ADDR_PEC_EN | HV_SMB_ADDR_VALID;
852 ret_val = e1000_write_phy_reg_hv_locked(hw, HV_SMB_ADDR,
853 reg_data);
854 if (ret_val)
855 goto out;
856
857 data = er32(LEDCTL);
858 ret_val = e1000_write_phy_reg_hv_locked(hw,
859 HV_LED_CONFIG,
860 (u16)data);
861 if (ret_val)
862 goto out;
863 }
864 /* Configure LCD from extended configuration region. */
865
866 /* cnf_base_addr is in DWORD */
867 word_addr = (u16)(cnf_base_addr << 1);
868
869 for (i = 0; i < cnf_size; i++) {
870 ret_val = e1000_read_nvm(hw, (word_addr + i * 2), 1,
871 &reg_data);
872 if (ret_val)
873 goto out;
874
875 ret_val = e1000_read_nvm(hw, (word_addr + i * 2 + 1),
876 1, &reg_addr);
877 if (ret_val)
878 goto out;
879
880 /* Save off the PHY page for future writes. */
881 if (reg_addr == IGP01E1000_PHY_PAGE_SELECT) {
882 phy_page = reg_data;
883 continue;
884 }
885
886 reg_addr &= PHY_REG_MASK;
887 reg_addr |= phy_page;
888
Bruce Allan94d81862009-11-20 23:25:26 +0000889 ret_val = phy->ops.write_reg_locked(hw,
Bruce Allanf523d212009-10-29 13:45:45 +0000890 (u32)reg_addr,
891 reg_data);
892 if (ret_val)
893 goto out;
894 }
895 }
896
897out:
Bruce Allan94d81862009-11-20 23:25:26 +0000898 hw->phy.ops.release(hw);
Bruce Allanf523d212009-10-29 13:45:45 +0000899 return ret_val;
900}
901
902/**
Bruce Allan1d5846b2009-10-29 13:46:05 +0000903 * e1000_k1_gig_workaround_hv - K1 Si workaround
904 * @hw: pointer to the HW structure
905 * @link: link up bool flag
906 *
907 * If K1 is enabled for 1Gbps, the MAC might stall when transitioning
908 * from a lower speed. This workaround disables K1 whenever link is at 1Gig
909 * If link is down, the function will restore the default K1 setting located
910 * in the NVM.
911 **/
912static s32 e1000_k1_gig_workaround_hv(struct e1000_hw *hw, bool link)
913{
914 s32 ret_val = 0;
915 u16 status_reg = 0;
916 bool k1_enable = hw->dev_spec.ich8lan.nvm_k1_enabled;
917
918 if (hw->mac.type != e1000_pchlan)
919 goto out;
920
921 /* Wrap the whole flow with the sw flag */
Bruce Allan94d81862009-11-20 23:25:26 +0000922 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan1d5846b2009-10-29 13:46:05 +0000923 if (ret_val)
924 goto out;
925
926 /* Disable K1 when link is 1Gbps, otherwise use the NVM setting */
927 if (link) {
928 if (hw->phy.type == e1000_phy_82578) {
Bruce Allan94d81862009-11-20 23:25:26 +0000929 ret_val = hw->phy.ops.read_reg_locked(hw, BM_CS_STATUS,
Bruce Allan1d5846b2009-10-29 13:46:05 +0000930 &status_reg);
931 if (ret_val)
932 goto release;
933
934 status_reg &= BM_CS_STATUS_LINK_UP |
935 BM_CS_STATUS_RESOLVED |
936 BM_CS_STATUS_SPEED_MASK;
937
938 if (status_reg == (BM_CS_STATUS_LINK_UP |
939 BM_CS_STATUS_RESOLVED |
940 BM_CS_STATUS_SPEED_1000))
941 k1_enable = false;
942 }
943
944 if (hw->phy.type == e1000_phy_82577) {
Bruce Allan94d81862009-11-20 23:25:26 +0000945 ret_val = hw->phy.ops.read_reg_locked(hw, HV_M_STATUS,
Bruce Allan1d5846b2009-10-29 13:46:05 +0000946 &status_reg);
947 if (ret_val)
948 goto release;
949
950 status_reg &= HV_M_STATUS_LINK_UP |
951 HV_M_STATUS_AUTONEG_COMPLETE |
952 HV_M_STATUS_SPEED_MASK;
953
954 if (status_reg == (HV_M_STATUS_LINK_UP |
955 HV_M_STATUS_AUTONEG_COMPLETE |
956 HV_M_STATUS_SPEED_1000))
957 k1_enable = false;
958 }
959
960 /* Link stall fix for link up */
Bruce Allan94d81862009-11-20 23:25:26 +0000961 ret_val = hw->phy.ops.write_reg_locked(hw, PHY_REG(770, 19),
Bruce Allan1d5846b2009-10-29 13:46:05 +0000962 0x0100);
963 if (ret_val)
964 goto release;
965
966 } else {
967 /* Link stall fix for link down */
Bruce Allan94d81862009-11-20 23:25:26 +0000968 ret_val = hw->phy.ops.write_reg_locked(hw, PHY_REG(770, 19),
Bruce Allan1d5846b2009-10-29 13:46:05 +0000969 0x4100);
970 if (ret_val)
971 goto release;
972 }
973
974 ret_val = e1000_configure_k1_ich8lan(hw, k1_enable);
975
976release:
Bruce Allan94d81862009-11-20 23:25:26 +0000977 hw->phy.ops.release(hw);
Bruce Allan1d5846b2009-10-29 13:46:05 +0000978out:
979 return ret_val;
980}
981
982/**
983 * e1000_configure_k1_ich8lan - Configure K1 power state
984 * @hw: pointer to the HW structure
985 * @enable: K1 state to configure
986 *
987 * Configure the K1 power state based on the provided parameter.
988 * Assumes semaphore already acquired.
989 *
990 * Success returns 0, Failure returns -E1000_ERR_PHY (-2)
991 **/
Bruce Allanbb436b22009-11-20 23:24:11 +0000992s32 e1000_configure_k1_ich8lan(struct e1000_hw *hw, bool k1_enable)
Bruce Allan1d5846b2009-10-29 13:46:05 +0000993{
994 s32 ret_val = 0;
995 u32 ctrl_reg = 0;
996 u32 ctrl_ext = 0;
997 u32 reg = 0;
998 u16 kmrn_reg = 0;
999
1000 ret_val = e1000e_read_kmrn_reg_locked(hw,
1001 E1000_KMRNCTRLSTA_K1_CONFIG,
1002 &kmrn_reg);
1003 if (ret_val)
1004 goto out;
1005
1006 if (k1_enable)
1007 kmrn_reg |= E1000_KMRNCTRLSTA_K1_ENABLE;
1008 else
1009 kmrn_reg &= ~E1000_KMRNCTRLSTA_K1_ENABLE;
1010
1011 ret_val = e1000e_write_kmrn_reg_locked(hw,
1012 E1000_KMRNCTRLSTA_K1_CONFIG,
1013 kmrn_reg);
1014 if (ret_val)
1015 goto out;
1016
1017 udelay(20);
1018 ctrl_ext = er32(CTRL_EXT);
1019 ctrl_reg = er32(CTRL);
1020
1021 reg = ctrl_reg & ~(E1000_CTRL_SPD_1000 | E1000_CTRL_SPD_100);
1022 reg |= E1000_CTRL_FRCSPD;
1023 ew32(CTRL, reg);
1024
1025 ew32(CTRL_EXT, ctrl_ext | E1000_CTRL_EXT_SPD_BYPS);
1026 udelay(20);
1027 ew32(CTRL, ctrl_reg);
1028 ew32(CTRL_EXT, ctrl_ext);
1029 udelay(20);
1030
1031out:
1032 return ret_val;
1033}
1034
1035/**
Bruce Allanf523d212009-10-29 13:45:45 +00001036 * e1000_oem_bits_config_ich8lan - SW-based LCD Configuration
1037 * @hw: pointer to the HW structure
1038 * @d0_state: boolean if entering d0 or d3 device state
1039 *
1040 * SW will configure Gbe Disable and LPLU based on the NVM. The four bits are
1041 * collectively called OEM bits. The OEM Write Enable bit and SW Config bit
1042 * in NVM determines whether HW should configure LPLU and Gbe Disable.
1043 **/
1044static s32 e1000_oem_bits_config_ich8lan(struct e1000_hw *hw, bool d0_state)
1045{
1046 s32 ret_val = 0;
1047 u32 mac_reg;
1048 u16 oem_reg;
1049
1050 if (hw->mac.type != e1000_pchlan)
1051 return ret_val;
1052
Bruce Allan94d81862009-11-20 23:25:26 +00001053 ret_val = hw->phy.ops.acquire(hw);
Bruce Allanf523d212009-10-29 13:45:45 +00001054 if (ret_val)
1055 return ret_val;
1056
1057 mac_reg = er32(EXTCNF_CTRL);
1058 if (mac_reg & E1000_EXTCNF_CTRL_OEM_WRITE_ENABLE)
1059 goto out;
1060
1061 mac_reg = er32(FEXTNVM);
1062 if (!(mac_reg & E1000_FEXTNVM_SW_CONFIG_ICH8M))
1063 goto out;
1064
1065 mac_reg = er32(PHY_CTRL);
1066
Bruce Allan94d81862009-11-20 23:25:26 +00001067 ret_val = hw->phy.ops.read_reg_locked(hw, HV_OEM_BITS, &oem_reg);
Bruce Allanf523d212009-10-29 13:45:45 +00001068 if (ret_val)
1069 goto out;
1070
1071 oem_reg &= ~(HV_OEM_BITS_GBE_DIS | HV_OEM_BITS_LPLU);
1072
1073 if (d0_state) {
1074 if (mac_reg & E1000_PHY_CTRL_GBE_DISABLE)
1075 oem_reg |= HV_OEM_BITS_GBE_DIS;
1076
1077 if (mac_reg & E1000_PHY_CTRL_D0A_LPLU)
1078 oem_reg |= HV_OEM_BITS_LPLU;
1079 } else {
1080 if (mac_reg & E1000_PHY_CTRL_NOND0A_GBE_DISABLE)
1081 oem_reg |= HV_OEM_BITS_GBE_DIS;
1082
1083 if (mac_reg & E1000_PHY_CTRL_NOND0A_LPLU)
1084 oem_reg |= HV_OEM_BITS_LPLU;
1085 }
1086 /* Restart auto-neg to activate the bits */
Bruce Allan818f3332009-11-19 14:17:30 +00001087 if (!e1000_check_reset_block(hw))
1088 oem_reg |= HV_OEM_BITS_RESTART_AN;
Bruce Allan94d81862009-11-20 23:25:26 +00001089 ret_val = hw->phy.ops.write_reg_locked(hw, HV_OEM_BITS, oem_reg);
Bruce Allanf523d212009-10-29 13:45:45 +00001090
1091out:
Bruce Allan94d81862009-11-20 23:25:26 +00001092 hw->phy.ops.release(hw);
Bruce Allanf523d212009-10-29 13:45:45 +00001093
1094 return ret_val;
1095}
1096
1097
1098/**
Bruce Allanfddaa1a2010-01-13 01:52:49 +00001099 * e1000_set_mdio_slow_mode_hv - Set slow MDIO access mode
1100 * @hw: pointer to the HW structure
1101 **/
1102static s32 e1000_set_mdio_slow_mode_hv(struct e1000_hw *hw)
1103{
1104 s32 ret_val;
1105 u16 data;
1106
1107 ret_val = e1e_rphy(hw, HV_KMRN_MODE_CTRL, &data);
1108 if (ret_val)
1109 return ret_val;
1110
1111 data |= HV_KMRN_MDIO_SLOW;
1112
1113 ret_val = e1e_wphy(hw, HV_KMRN_MODE_CTRL, data);
1114
1115 return ret_val;
1116}
1117
1118/**
Bruce Allana4f58f52009-06-02 11:29:18 +00001119 * e1000_hv_phy_workarounds_ich8lan - A series of Phy workarounds to be
1120 * done after every PHY reset.
1121 **/
1122static s32 e1000_hv_phy_workarounds_ich8lan(struct e1000_hw *hw)
1123{
1124 s32 ret_val = 0;
1125
1126 if (hw->mac.type != e1000_pchlan)
1127 return ret_val;
1128
Bruce Allanfddaa1a2010-01-13 01:52:49 +00001129 /* Set MDIO slow mode before any other MDIO access */
1130 if (hw->phy.type == e1000_phy_82577) {
1131 ret_val = e1000_set_mdio_slow_mode_hv(hw);
1132 if (ret_val)
1133 goto out;
1134 }
1135
Bruce Allana4f58f52009-06-02 11:29:18 +00001136 if (((hw->phy.type == e1000_phy_82577) &&
1137 ((hw->phy.revision == 1) || (hw->phy.revision == 2))) ||
1138 ((hw->phy.type == e1000_phy_82578) && (hw->phy.revision == 1))) {
1139 /* Disable generation of early preamble */
1140 ret_val = e1e_wphy(hw, PHY_REG(769, 25), 0x4431);
1141 if (ret_val)
1142 return ret_val;
1143
1144 /* Preamble tuning for SSC */
1145 ret_val = e1e_wphy(hw, PHY_REG(770, 16), 0xA204);
1146 if (ret_val)
1147 return ret_val;
1148 }
1149
1150 if (hw->phy.type == e1000_phy_82578) {
1151 /*
1152 * Return registers to default by doing a soft reset then
1153 * writing 0x3140 to the control register.
1154 */
1155 if (hw->phy.revision < 2) {
1156 e1000e_phy_sw_reset(hw);
1157 ret_val = e1e_wphy(hw, PHY_CONTROL, 0x3140);
1158 }
1159 }
1160
1161 /* Select page 0 */
Bruce Allan94d81862009-11-20 23:25:26 +00001162 ret_val = hw->phy.ops.acquire(hw);
Bruce Allana4f58f52009-06-02 11:29:18 +00001163 if (ret_val)
1164 return ret_val;
Bruce Allan1d5846b2009-10-29 13:46:05 +00001165
Bruce Allana4f58f52009-06-02 11:29:18 +00001166 hw->phy.addr = 1;
Bruce Allan1d5846b2009-10-29 13:46:05 +00001167 ret_val = e1000e_write_phy_reg_mdic(hw, IGP01E1000_PHY_PAGE_SELECT, 0);
1168 if (ret_val)
1169 goto out;
Bruce Allan94d81862009-11-20 23:25:26 +00001170 hw->phy.ops.release(hw);
Bruce Allana4f58f52009-06-02 11:29:18 +00001171
Bruce Allan1d5846b2009-10-29 13:46:05 +00001172 /*
1173 * Configure the K1 Si workaround during phy reset assuming there is
1174 * link so that it disables K1 if link is in 1Gbps.
1175 */
1176 ret_val = e1000_k1_gig_workaround_hv(hw, true);
1177
1178out:
Bruce Allana4f58f52009-06-02 11:29:18 +00001179 return ret_val;
1180}
1181
1182/**
Bruce Allanfc0c7762009-07-01 13:27:55 +00001183 * e1000_lan_init_done_ich8lan - Check for PHY config completion
1184 * @hw: pointer to the HW structure
1185 *
1186 * Check the appropriate indication the MAC has finished configuring the
1187 * PHY after a software reset.
1188 **/
1189static void e1000_lan_init_done_ich8lan(struct e1000_hw *hw)
1190{
1191 u32 data, loop = E1000_ICH8_LAN_INIT_TIMEOUT;
1192
1193 /* Wait for basic configuration completes before proceeding */
1194 do {
1195 data = er32(STATUS);
1196 data &= E1000_STATUS_LAN_INIT_DONE;
1197 udelay(100);
1198 } while ((!data) && --loop);
1199
1200 /*
1201 * If basic configuration is incomplete before the above loop
1202 * count reaches 0, loading the configuration from NVM will
1203 * leave the PHY in a bad state possibly resulting in no link.
1204 */
1205 if (loop == 0)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001206 e_dbg("LAN_INIT_DONE not set, increase timeout\n");
Bruce Allanfc0c7762009-07-01 13:27:55 +00001207
1208 /* Clear the Init Done bit for the next init event */
1209 data = er32(STATUS);
1210 data &= ~E1000_STATUS_LAN_INIT_DONE;
1211 ew32(STATUS, data);
1212}
1213
1214/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001215 * e1000_phy_hw_reset_ich8lan - Performs a PHY reset
1216 * @hw: pointer to the HW structure
1217 *
1218 * Resets the PHY
1219 * This is a function pointer entry point called by drivers
1220 * or other shared routines.
1221 **/
1222static s32 e1000_phy_hw_reset_ich8lan(struct e1000_hw *hw)
1223{
Bruce Allanf523d212009-10-29 13:45:45 +00001224 s32 ret_val = 0;
1225 u16 reg;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001226
1227 ret_val = e1000e_phy_hw_reset_generic(hw);
1228 if (ret_val)
1229 return ret_val;
1230
Bruce Allanfc0c7762009-07-01 13:27:55 +00001231 /* Allow time for h/w to get to a quiescent state after reset */
1232 mdelay(10);
1233
Bruce Allanfddaa1a2010-01-13 01:52:49 +00001234 /* Perform any necessary post-reset workarounds */
Bruce Allana4f58f52009-06-02 11:29:18 +00001235 if (hw->mac.type == e1000_pchlan) {
1236 ret_val = e1000_hv_phy_workarounds_ich8lan(hw);
1237 if (ret_val)
1238 return ret_val;
1239 }
1240
Bruce Allandb2932e2009-10-26 11:22:47 +00001241 /* Dummy read to clear the phy wakeup bit after lcd reset */
1242 if (hw->mac.type == e1000_pchlan)
1243 e1e_rphy(hw, BM_WUC, &reg);
1244
Bruce Allanf523d212009-10-29 13:45:45 +00001245 /* Configure the LCD with the extended configuration region in NVM */
1246 ret_val = e1000_sw_lcd_config_ich8lan(hw);
1247 if (ret_val)
1248 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001249
Bruce Allanf523d212009-10-29 13:45:45 +00001250 /* Configure the LCD with the OEM bits in NVM */
1251 if (hw->mac.type == e1000_pchlan)
1252 ret_val = e1000_oem_bits_config_ich8lan(hw, true);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001253
Bruce Allanf523d212009-10-29 13:45:45 +00001254out:
Auke Kokbc7f75f2007-09-17 12:30:59 -07001255 return 0;
1256}
1257
1258/**
Bruce Allanfa2ce132009-10-26 11:23:25 +00001259 * e1000_set_lplu_state_pchlan - Set Low Power Link Up state
1260 * @hw: pointer to the HW structure
1261 * @active: true to enable LPLU, false to disable
1262 *
1263 * Sets the LPLU state according to the active flag. For PCH, if OEM write
1264 * bit are disabled in the NVM, writing the LPLU bits in the MAC will not set
1265 * the phy speed. This function will manually set the LPLU bit and restart
1266 * auto-neg as hw would do. D3 and D0 LPLU will call the same function
1267 * since it configures the same bit.
1268 **/
1269static s32 e1000_set_lplu_state_pchlan(struct e1000_hw *hw, bool active)
1270{
1271 s32 ret_val = 0;
1272 u16 oem_reg;
1273
1274 ret_val = e1e_rphy(hw, HV_OEM_BITS, &oem_reg);
1275 if (ret_val)
1276 goto out;
1277
1278 if (active)
1279 oem_reg |= HV_OEM_BITS_LPLU;
1280 else
1281 oem_reg &= ~HV_OEM_BITS_LPLU;
1282
1283 oem_reg |= HV_OEM_BITS_RESTART_AN;
1284 ret_val = e1e_wphy(hw, HV_OEM_BITS, oem_reg);
1285
1286out:
1287 return ret_val;
1288}
1289
1290/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001291 * e1000_set_d0_lplu_state_ich8lan - Set Low Power Linkup D0 state
1292 * @hw: pointer to the HW structure
Bruce Allan564ea9b2009-11-20 23:26:44 +00001293 * @active: true to enable LPLU, false to disable
Auke Kokbc7f75f2007-09-17 12:30:59 -07001294 *
1295 * Sets the LPLU D0 state according to the active flag. When
1296 * activating LPLU this function also disables smart speed
1297 * and vice versa. LPLU will not be activated unless the
1298 * device autonegotiation advertisement meets standards of
1299 * either 10 or 10/100 or 10/100/1000 at all duplexes.
1300 * This is a function pointer entry point only called by
1301 * PHY setup routines.
1302 **/
1303static s32 e1000_set_d0_lplu_state_ich8lan(struct e1000_hw *hw, bool active)
1304{
1305 struct e1000_phy_info *phy = &hw->phy;
1306 u32 phy_ctrl;
1307 s32 ret_val = 0;
1308 u16 data;
1309
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001310 if (phy->type == e1000_phy_ife)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001311 return ret_val;
1312
1313 phy_ctrl = er32(PHY_CTRL);
1314
1315 if (active) {
1316 phy_ctrl |= E1000_PHY_CTRL_D0A_LPLU;
1317 ew32(PHY_CTRL, phy_ctrl);
1318
Bruce Allan60f12922009-07-01 13:28:14 +00001319 if (phy->type != e1000_phy_igp_3)
1320 return 0;
1321
Bruce Allanad680762008-03-28 09:15:03 -07001322 /*
1323 * Call gig speed drop workaround on LPLU before accessing
1324 * any PHY registers
1325 */
Bruce Allan60f12922009-07-01 13:28:14 +00001326 if (hw->mac.type == e1000_ich8lan)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001327 e1000e_gig_downshift_workaround_ich8lan(hw);
1328
1329 /* When LPLU is enabled, we should disable SmartSpeed */
1330 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG, &data);
1331 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
1332 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG, data);
1333 if (ret_val)
1334 return ret_val;
1335 } else {
1336 phy_ctrl &= ~E1000_PHY_CTRL_D0A_LPLU;
1337 ew32(PHY_CTRL, phy_ctrl);
1338
Bruce Allan60f12922009-07-01 13:28:14 +00001339 if (phy->type != e1000_phy_igp_3)
1340 return 0;
1341
Bruce Allanad680762008-03-28 09:15:03 -07001342 /*
1343 * LPLU and SmartSpeed are mutually exclusive. LPLU is used
Auke Kokbc7f75f2007-09-17 12:30:59 -07001344 * during Dx states where the power conservation is most
1345 * important. During driver activity we should enable
Bruce Allanad680762008-03-28 09:15:03 -07001346 * SmartSpeed, so performance is maintained.
1347 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001348 if (phy->smart_speed == e1000_smart_speed_on) {
1349 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -07001350 &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001351 if (ret_val)
1352 return ret_val;
1353
1354 data |= IGP01E1000_PSCFR_SMART_SPEED;
1355 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -07001356 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001357 if (ret_val)
1358 return ret_val;
1359 } else if (phy->smart_speed == e1000_smart_speed_off) {
1360 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -07001361 &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001362 if (ret_val)
1363 return ret_val;
1364
1365 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
1366 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -07001367 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001368 if (ret_val)
1369 return ret_val;
1370 }
1371 }
1372
1373 return 0;
1374}
1375
1376/**
1377 * e1000_set_d3_lplu_state_ich8lan - Set Low Power Linkup D3 state
1378 * @hw: pointer to the HW structure
Bruce Allan564ea9b2009-11-20 23:26:44 +00001379 * @active: true to enable LPLU, false to disable
Auke Kokbc7f75f2007-09-17 12:30:59 -07001380 *
1381 * Sets the LPLU D3 state according to the active flag. When
1382 * activating LPLU this function also disables smart speed
1383 * and vice versa. LPLU will not be activated unless the
1384 * device autonegotiation advertisement meets standards of
1385 * either 10 or 10/100 or 10/100/1000 at all duplexes.
1386 * This is a function pointer entry point only called by
1387 * PHY setup routines.
1388 **/
1389static s32 e1000_set_d3_lplu_state_ich8lan(struct e1000_hw *hw, bool active)
1390{
1391 struct e1000_phy_info *phy = &hw->phy;
1392 u32 phy_ctrl;
1393 s32 ret_val;
1394 u16 data;
1395
1396 phy_ctrl = er32(PHY_CTRL);
1397
1398 if (!active) {
1399 phy_ctrl &= ~E1000_PHY_CTRL_NOND0A_LPLU;
1400 ew32(PHY_CTRL, phy_ctrl);
Bruce Allan60f12922009-07-01 13:28:14 +00001401
1402 if (phy->type != e1000_phy_igp_3)
1403 return 0;
1404
Bruce Allanad680762008-03-28 09:15:03 -07001405 /*
1406 * LPLU and SmartSpeed are mutually exclusive. LPLU is used
Auke Kokbc7f75f2007-09-17 12:30:59 -07001407 * during Dx states where the power conservation is most
1408 * important. During driver activity we should enable
Bruce Allanad680762008-03-28 09:15:03 -07001409 * SmartSpeed, so performance is maintained.
1410 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001411 if (phy->smart_speed == e1000_smart_speed_on) {
Bruce Allanad680762008-03-28 09:15:03 -07001412 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG,
1413 &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001414 if (ret_val)
1415 return ret_val;
1416
1417 data |= IGP01E1000_PSCFR_SMART_SPEED;
Bruce Allanad680762008-03-28 09:15:03 -07001418 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
1419 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001420 if (ret_val)
1421 return ret_val;
1422 } else if (phy->smart_speed == e1000_smart_speed_off) {
Bruce Allanad680762008-03-28 09:15:03 -07001423 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG,
1424 &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001425 if (ret_val)
1426 return ret_val;
1427
1428 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
Bruce Allanad680762008-03-28 09:15:03 -07001429 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
1430 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001431 if (ret_val)
1432 return ret_val;
1433 }
1434 } else if ((phy->autoneg_advertised == E1000_ALL_SPEED_DUPLEX) ||
1435 (phy->autoneg_advertised == E1000_ALL_NOT_GIG) ||
1436 (phy->autoneg_advertised == E1000_ALL_10_SPEED)) {
1437 phy_ctrl |= E1000_PHY_CTRL_NOND0A_LPLU;
1438 ew32(PHY_CTRL, phy_ctrl);
1439
Bruce Allan60f12922009-07-01 13:28:14 +00001440 if (phy->type != e1000_phy_igp_3)
1441 return 0;
1442
Bruce Allanad680762008-03-28 09:15:03 -07001443 /*
1444 * Call gig speed drop workaround on LPLU before accessing
1445 * any PHY registers
1446 */
Bruce Allan60f12922009-07-01 13:28:14 +00001447 if (hw->mac.type == e1000_ich8lan)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001448 e1000e_gig_downshift_workaround_ich8lan(hw);
1449
1450 /* When LPLU is enabled, we should disable SmartSpeed */
Bruce Allanad680762008-03-28 09:15:03 -07001451 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG, &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001452 if (ret_val)
1453 return ret_val;
1454
1455 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
Bruce Allanad680762008-03-28 09:15:03 -07001456 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG, data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001457 }
1458
1459 return 0;
1460}
1461
1462/**
Bruce Allanf4187b52008-08-26 18:36:50 -07001463 * e1000_valid_nvm_bank_detect_ich8lan - finds out the valid bank 0 or 1
1464 * @hw: pointer to the HW structure
1465 * @bank: pointer to the variable that returns the active bank
1466 *
1467 * Reads signature byte from the NVM using the flash access registers.
Bruce Allane2434552008-11-21 17:02:41 -08001468 * Word 0x13 bits 15:14 = 10b indicate a valid signature for that bank.
Bruce Allanf4187b52008-08-26 18:36:50 -07001469 **/
1470static s32 e1000_valid_nvm_bank_detect_ich8lan(struct e1000_hw *hw, u32 *bank)
1471{
Bruce Allane2434552008-11-21 17:02:41 -08001472 u32 eecd;
Bruce Allanf4187b52008-08-26 18:36:50 -07001473 struct e1000_nvm_info *nvm = &hw->nvm;
Bruce Allanf4187b52008-08-26 18:36:50 -07001474 u32 bank1_offset = nvm->flash_bank_size * sizeof(u16);
1475 u32 act_offset = E1000_ICH_NVM_SIG_WORD * 2 + 1;
Bruce Allane2434552008-11-21 17:02:41 -08001476 u8 sig_byte = 0;
1477 s32 ret_val = 0;
Bruce Allanf4187b52008-08-26 18:36:50 -07001478
Bruce Allane2434552008-11-21 17:02:41 -08001479 switch (hw->mac.type) {
1480 case e1000_ich8lan:
1481 case e1000_ich9lan:
1482 eecd = er32(EECD);
1483 if ((eecd & E1000_EECD_SEC1VAL_VALID_MASK) ==
1484 E1000_EECD_SEC1VAL_VALID_MASK) {
1485 if (eecd & E1000_EECD_SEC1VAL)
Bruce Allanf4187b52008-08-26 18:36:50 -07001486 *bank = 1;
Bruce Allane2434552008-11-21 17:02:41 -08001487 else
1488 *bank = 0;
1489
1490 return 0;
Bruce Allanf4187b52008-08-26 18:36:50 -07001491 }
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001492 e_dbg("Unable to determine valid NVM bank via EEC - "
Bruce Allane2434552008-11-21 17:02:41 -08001493 "reading flash signature\n");
1494 /* fall-thru */
1495 default:
1496 /* set bank to 0 in case flash read fails */
1497 *bank = 0;
1498
1499 /* Check bank 0 */
1500 ret_val = e1000_read_flash_byte_ich8lan(hw, act_offset,
1501 &sig_byte);
1502 if (ret_val)
1503 return ret_val;
1504 if ((sig_byte & E1000_ICH_NVM_VALID_SIG_MASK) ==
1505 E1000_ICH_NVM_SIG_VALUE) {
1506 *bank = 0;
1507 return 0;
1508 }
1509
1510 /* Check bank 1 */
1511 ret_val = e1000_read_flash_byte_ich8lan(hw, act_offset +
1512 bank1_offset,
1513 &sig_byte);
1514 if (ret_val)
1515 return ret_val;
1516 if ((sig_byte & E1000_ICH_NVM_VALID_SIG_MASK) ==
1517 E1000_ICH_NVM_SIG_VALUE) {
1518 *bank = 1;
1519 return 0;
1520 }
1521
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001522 e_dbg("ERROR: No valid NVM bank present\n");
Bruce Allane2434552008-11-21 17:02:41 -08001523 return -E1000_ERR_NVM;
Bruce Allanf4187b52008-08-26 18:36:50 -07001524 }
1525
1526 return 0;
1527}
1528
1529/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001530 * e1000_read_nvm_ich8lan - Read word(s) from the NVM
1531 * @hw: pointer to the HW structure
1532 * @offset: The offset (in bytes) of the word(s) to read.
1533 * @words: Size of data to read in words
1534 * @data: Pointer to the word(s) to read at offset.
1535 *
1536 * Reads a word(s) from the NVM using the flash access registers.
1537 **/
1538static s32 e1000_read_nvm_ich8lan(struct e1000_hw *hw, u16 offset, u16 words,
1539 u16 *data)
1540{
1541 struct e1000_nvm_info *nvm = &hw->nvm;
1542 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
1543 u32 act_offset;
Bruce Allan148675a2009-08-07 07:41:56 +00001544 s32 ret_val = 0;
Bruce Allanf4187b52008-08-26 18:36:50 -07001545 u32 bank = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001546 u16 i, word;
1547
1548 if ((offset >= nvm->word_size) || (words > nvm->word_size - offset) ||
1549 (words == 0)) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001550 e_dbg("nvm parameter(s) out of bounds\n");
Bruce Allanca15df52009-10-26 11:23:43 +00001551 ret_val = -E1000_ERR_NVM;
1552 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001553 }
1554
Bruce Allan94d81862009-11-20 23:25:26 +00001555 nvm->ops.acquire(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001556
Bruce Allanf4187b52008-08-26 18:36:50 -07001557 ret_val = e1000_valid_nvm_bank_detect_ich8lan(hw, &bank);
Bruce Allan148675a2009-08-07 07:41:56 +00001558 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001559 e_dbg("Could not detect valid bank, assuming bank 0\n");
Bruce Allan148675a2009-08-07 07:41:56 +00001560 bank = 0;
1561 }
Bruce Allanf4187b52008-08-26 18:36:50 -07001562
1563 act_offset = (bank) ? nvm->flash_bank_size : 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001564 act_offset += offset;
1565
Bruce Allan148675a2009-08-07 07:41:56 +00001566 ret_val = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001567 for (i = 0; i < words; i++) {
1568 if ((dev_spec->shadow_ram) &&
1569 (dev_spec->shadow_ram[offset+i].modified)) {
1570 data[i] = dev_spec->shadow_ram[offset+i].value;
1571 } else {
1572 ret_val = e1000_read_flash_word_ich8lan(hw,
1573 act_offset + i,
1574 &word);
1575 if (ret_val)
1576 break;
1577 data[i] = word;
1578 }
1579 }
1580
Bruce Allan94d81862009-11-20 23:25:26 +00001581 nvm->ops.release(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001582
Bruce Allane2434552008-11-21 17:02:41 -08001583out:
1584 if (ret_val)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001585 e_dbg("NVM read error: %d\n", ret_val);
Bruce Allane2434552008-11-21 17:02:41 -08001586
Auke Kokbc7f75f2007-09-17 12:30:59 -07001587 return ret_val;
1588}
1589
1590/**
1591 * e1000_flash_cycle_init_ich8lan - Initialize flash
1592 * @hw: pointer to the HW structure
1593 *
1594 * This function does initial flash setup so that a new read/write/erase cycle
1595 * can be started.
1596 **/
1597static s32 e1000_flash_cycle_init_ich8lan(struct e1000_hw *hw)
1598{
1599 union ich8_hws_flash_status hsfsts;
1600 s32 ret_val = -E1000_ERR_NVM;
1601 s32 i = 0;
1602
1603 hsfsts.regval = er16flash(ICH_FLASH_HSFSTS);
1604
1605 /* Check if the flash descriptor is valid */
1606 if (hsfsts.hsf_status.fldesvalid == 0) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001607 e_dbg("Flash descriptor invalid. "
Auke Kokbc7f75f2007-09-17 12:30:59 -07001608 "SW Sequencing must be used.");
1609 return -E1000_ERR_NVM;
1610 }
1611
1612 /* Clear FCERR and DAEL in hw status by writing 1 */
1613 hsfsts.hsf_status.flcerr = 1;
1614 hsfsts.hsf_status.dael = 1;
1615
1616 ew16flash(ICH_FLASH_HSFSTS, hsfsts.regval);
1617
Bruce Allanad680762008-03-28 09:15:03 -07001618 /*
1619 * Either we should have a hardware SPI cycle in progress
Auke Kokbc7f75f2007-09-17 12:30:59 -07001620 * bit to check against, in order to start a new cycle or
1621 * FDONE bit should be changed in the hardware so that it
Auke Kok489815c2008-02-21 15:11:07 -08001622 * is 1 after hardware reset, which can then be used as an
Auke Kokbc7f75f2007-09-17 12:30:59 -07001623 * indication whether a cycle is in progress or has been
1624 * completed.
1625 */
1626
1627 if (hsfsts.hsf_status.flcinprog == 0) {
Bruce Allanad680762008-03-28 09:15:03 -07001628 /*
1629 * There is no cycle running at present,
Bruce Allan5ff5b662009-12-01 15:51:11 +00001630 * so we can start a cycle.
Bruce Allanad680762008-03-28 09:15:03 -07001631 * Begin by setting Flash Cycle Done.
1632 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001633 hsfsts.hsf_status.flcdone = 1;
1634 ew16flash(ICH_FLASH_HSFSTS, hsfsts.regval);
1635 ret_val = 0;
1636 } else {
Bruce Allanad680762008-03-28 09:15:03 -07001637 /*
Bruce Allan5ff5b662009-12-01 15:51:11 +00001638 * Otherwise poll for sometime so the current
Bruce Allanad680762008-03-28 09:15:03 -07001639 * cycle has a chance to end before giving up.
1640 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001641 for (i = 0; i < ICH_FLASH_READ_COMMAND_TIMEOUT; i++) {
1642 hsfsts.regval = __er16flash(hw, ICH_FLASH_HSFSTS);
1643 if (hsfsts.hsf_status.flcinprog == 0) {
1644 ret_val = 0;
1645 break;
1646 }
1647 udelay(1);
1648 }
1649 if (ret_val == 0) {
Bruce Allanad680762008-03-28 09:15:03 -07001650 /*
1651 * Successful in waiting for previous cycle to timeout,
1652 * now set the Flash Cycle Done.
1653 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001654 hsfsts.hsf_status.flcdone = 1;
1655 ew16flash(ICH_FLASH_HSFSTS, hsfsts.regval);
1656 } else {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001657 e_dbg("Flash controller busy, cannot get access");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001658 }
1659 }
1660
1661 return ret_val;
1662}
1663
1664/**
1665 * e1000_flash_cycle_ich8lan - Starts flash cycle (read/write/erase)
1666 * @hw: pointer to the HW structure
1667 * @timeout: maximum time to wait for completion
1668 *
1669 * This function starts a flash cycle and waits for its completion.
1670 **/
1671static s32 e1000_flash_cycle_ich8lan(struct e1000_hw *hw, u32 timeout)
1672{
1673 union ich8_hws_flash_ctrl hsflctl;
1674 union ich8_hws_flash_status hsfsts;
1675 s32 ret_val = -E1000_ERR_NVM;
1676 u32 i = 0;
1677
1678 /* Start a cycle by writing 1 in Flash Cycle Go in Hw Flash Control */
1679 hsflctl.regval = er16flash(ICH_FLASH_HSFCTL);
1680 hsflctl.hsf_ctrl.flcgo = 1;
1681 ew16flash(ICH_FLASH_HSFCTL, hsflctl.regval);
1682
1683 /* wait till FDONE bit is set to 1 */
1684 do {
1685 hsfsts.regval = er16flash(ICH_FLASH_HSFSTS);
1686 if (hsfsts.hsf_status.flcdone == 1)
1687 break;
1688 udelay(1);
1689 } while (i++ < timeout);
1690
1691 if (hsfsts.hsf_status.flcdone == 1 && hsfsts.hsf_status.flcerr == 0)
1692 return 0;
1693
1694 return ret_val;
1695}
1696
1697/**
1698 * e1000_read_flash_word_ich8lan - Read word from flash
1699 * @hw: pointer to the HW structure
1700 * @offset: offset to data location
1701 * @data: pointer to the location for storing the data
1702 *
1703 * Reads the flash word at offset into data. Offset is converted
1704 * to bytes before read.
1705 **/
1706static s32 e1000_read_flash_word_ich8lan(struct e1000_hw *hw, u32 offset,
1707 u16 *data)
1708{
1709 /* Must convert offset into bytes. */
1710 offset <<= 1;
1711
1712 return e1000_read_flash_data_ich8lan(hw, offset, 2, data);
1713}
1714
1715/**
Bruce Allanf4187b52008-08-26 18:36:50 -07001716 * e1000_read_flash_byte_ich8lan - Read byte from flash
1717 * @hw: pointer to the HW structure
1718 * @offset: The offset of the byte to read.
1719 * @data: Pointer to a byte to store the value read.
1720 *
1721 * Reads a single byte from the NVM using the flash access registers.
1722 **/
1723static s32 e1000_read_flash_byte_ich8lan(struct e1000_hw *hw, u32 offset,
1724 u8 *data)
1725{
1726 s32 ret_val;
1727 u16 word = 0;
1728
1729 ret_val = e1000_read_flash_data_ich8lan(hw, offset, 1, &word);
1730 if (ret_val)
1731 return ret_val;
1732
1733 *data = (u8)word;
1734
1735 return 0;
1736}
1737
1738/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001739 * e1000_read_flash_data_ich8lan - Read byte or word from NVM
1740 * @hw: pointer to the HW structure
1741 * @offset: The offset (in bytes) of the byte or word to read.
1742 * @size: Size of data to read, 1=byte 2=word
1743 * @data: Pointer to the word to store the value read.
1744 *
1745 * Reads a byte or word from the NVM using the flash access registers.
1746 **/
1747static s32 e1000_read_flash_data_ich8lan(struct e1000_hw *hw, u32 offset,
1748 u8 size, u16 *data)
1749{
1750 union ich8_hws_flash_status hsfsts;
1751 union ich8_hws_flash_ctrl hsflctl;
1752 u32 flash_linear_addr;
1753 u32 flash_data = 0;
1754 s32 ret_val = -E1000_ERR_NVM;
1755 u8 count = 0;
1756
1757 if (size < 1 || size > 2 || offset > ICH_FLASH_LINEAR_ADDR_MASK)
1758 return -E1000_ERR_NVM;
1759
1760 flash_linear_addr = (ICH_FLASH_LINEAR_ADDR_MASK & offset) +
1761 hw->nvm.flash_base_addr;
1762
1763 do {
1764 udelay(1);
1765 /* Steps */
1766 ret_val = e1000_flash_cycle_init_ich8lan(hw);
1767 if (ret_val != 0)
1768 break;
1769
1770 hsflctl.regval = er16flash(ICH_FLASH_HSFCTL);
1771 /* 0b/1b corresponds to 1 or 2 byte size, respectively. */
1772 hsflctl.hsf_ctrl.fldbcount = size - 1;
1773 hsflctl.hsf_ctrl.flcycle = ICH_CYCLE_READ;
1774 ew16flash(ICH_FLASH_HSFCTL, hsflctl.regval);
1775
1776 ew32flash(ICH_FLASH_FADDR, flash_linear_addr);
1777
1778 ret_val = e1000_flash_cycle_ich8lan(hw,
1779 ICH_FLASH_READ_COMMAND_TIMEOUT);
1780
Bruce Allanad680762008-03-28 09:15:03 -07001781 /*
1782 * Check if FCERR is set to 1, if set to 1, clear it
Auke Kokbc7f75f2007-09-17 12:30:59 -07001783 * and try the whole sequence a few more times, else
1784 * read in (shift in) the Flash Data0, the order is
Bruce Allanad680762008-03-28 09:15:03 -07001785 * least significant byte first msb to lsb
1786 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001787 if (ret_val == 0) {
1788 flash_data = er32flash(ICH_FLASH_FDATA0);
1789 if (size == 1) {
1790 *data = (u8)(flash_data & 0x000000FF);
1791 } else if (size == 2) {
1792 *data = (u16)(flash_data & 0x0000FFFF);
1793 }
1794 break;
1795 } else {
Bruce Allanad680762008-03-28 09:15:03 -07001796 /*
1797 * If we've gotten here, then things are probably
Auke Kokbc7f75f2007-09-17 12:30:59 -07001798 * completely hosed, but if the error condition is
1799 * detected, it won't hurt to give it another try...
1800 * ICH_FLASH_CYCLE_REPEAT_COUNT times.
1801 */
1802 hsfsts.regval = er16flash(ICH_FLASH_HSFSTS);
1803 if (hsfsts.hsf_status.flcerr == 1) {
1804 /* Repeat for some time before giving up. */
1805 continue;
1806 } else if (hsfsts.hsf_status.flcdone == 0) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001807 e_dbg("Timeout error - flash cycle "
Auke Kokbc7f75f2007-09-17 12:30:59 -07001808 "did not complete.");
1809 break;
1810 }
1811 }
1812 } while (count++ < ICH_FLASH_CYCLE_REPEAT_COUNT);
1813
1814 return ret_val;
1815}
1816
1817/**
1818 * e1000_write_nvm_ich8lan - Write word(s) to the NVM
1819 * @hw: pointer to the HW structure
1820 * @offset: The offset (in bytes) of the word(s) to write.
1821 * @words: Size of data to write in words
1822 * @data: Pointer to the word(s) to write at offset.
1823 *
1824 * Writes a byte or word to the NVM using the flash access registers.
1825 **/
1826static s32 e1000_write_nvm_ich8lan(struct e1000_hw *hw, u16 offset, u16 words,
1827 u16 *data)
1828{
1829 struct e1000_nvm_info *nvm = &hw->nvm;
1830 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001831 u16 i;
1832
1833 if ((offset >= nvm->word_size) || (words > nvm->word_size - offset) ||
1834 (words == 0)) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001835 e_dbg("nvm parameter(s) out of bounds\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001836 return -E1000_ERR_NVM;
1837 }
1838
Bruce Allan94d81862009-11-20 23:25:26 +00001839 nvm->ops.acquire(hw);
Bruce Allanca15df52009-10-26 11:23:43 +00001840
Auke Kokbc7f75f2007-09-17 12:30:59 -07001841 for (i = 0; i < words; i++) {
Bruce Allan564ea9b2009-11-20 23:26:44 +00001842 dev_spec->shadow_ram[offset+i].modified = true;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001843 dev_spec->shadow_ram[offset+i].value = data[i];
1844 }
1845
Bruce Allan94d81862009-11-20 23:25:26 +00001846 nvm->ops.release(hw);
Bruce Allanca15df52009-10-26 11:23:43 +00001847
Auke Kokbc7f75f2007-09-17 12:30:59 -07001848 return 0;
1849}
1850
1851/**
1852 * e1000_update_nvm_checksum_ich8lan - Update the checksum for NVM
1853 * @hw: pointer to the HW structure
1854 *
1855 * The NVM checksum is updated by calling the generic update_nvm_checksum,
1856 * which writes the checksum to the shadow ram. The changes in the shadow
1857 * ram are then committed to the EEPROM by processing each bank at a time
1858 * checking for the modified bit and writing only the pending changes.
Auke Kok489815c2008-02-21 15:11:07 -08001859 * After a successful commit, the shadow ram is cleared and is ready for
Auke Kokbc7f75f2007-09-17 12:30:59 -07001860 * future writes.
1861 **/
1862static s32 e1000_update_nvm_checksum_ich8lan(struct e1000_hw *hw)
1863{
1864 struct e1000_nvm_info *nvm = &hw->nvm;
1865 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
Bruce Allanf4187b52008-08-26 18:36:50 -07001866 u32 i, act_offset, new_bank_offset, old_bank_offset, bank;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001867 s32 ret_val;
1868 u16 data;
1869
1870 ret_val = e1000e_update_nvm_checksum_generic(hw);
1871 if (ret_val)
Bruce Allane2434552008-11-21 17:02:41 -08001872 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001873
1874 if (nvm->type != e1000_nvm_flash_sw)
Bruce Allane2434552008-11-21 17:02:41 -08001875 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001876
Bruce Allan94d81862009-11-20 23:25:26 +00001877 nvm->ops.acquire(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001878
Bruce Allanad680762008-03-28 09:15:03 -07001879 /*
1880 * We're writing to the opposite bank so if we're on bank 1,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001881 * write to bank 0 etc. We also need to erase the segment that
Bruce Allanad680762008-03-28 09:15:03 -07001882 * is going to be written
1883 */
Bruce Allanf4187b52008-08-26 18:36:50 -07001884 ret_val = e1000_valid_nvm_bank_detect_ich8lan(hw, &bank);
Bruce Allane2434552008-11-21 17:02:41 -08001885 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001886 e_dbg("Could not detect valid bank, assuming bank 0\n");
Bruce Allan148675a2009-08-07 07:41:56 +00001887 bank = 0;
Bruce Allane2434552008-11-21 17:02:41 -08001888 }
Bruce Allanf4187b52008-08-26 18:36:50 -07001889
1890 if (bank == 0) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001891 new_bank_offset = nvm->flash_bank_size;
1892 old_bank_offset = 0;
Bruce Allane2434552008-11-21 17:02:41 -08001893 ret_val = e1000_erase_flash_bank_ich8lan(hw, 1);
1894 if (ret_val) {
Bruce Allan94d81862009-11-20 23:25:26 +00001895 nvm->ops.release(hw);
Bruce Allane2434552008-11-21 17:02:41 -08001896 goto out;
1897 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001898 } else {
1899 old_bank_offset = nvm->flash_bank_size;
1900 new_bank_offset = 0;
Bruce Allane2434552008-11-21 17:02:41 -08001901 ret_val = e1000_erase_flash_bank_ich8lan(hw, 0);
1902 if (ret_val) {
Bruce Allan94d81862009-11-20 23:25:26 +00001903 nvm->ops.release(hw);
Bruce Allane2434552008-11-21 17:02:41 -08001904 goto out;
1905 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001906 }
1907
1908 for (i = 0; i < E1000_ICH8_SHADOW_RAM_WORDS; i++) {
Bruce Allanad680762008-03-28 09:15:03 -07001909 /*
1910 * Determine whether to write the value stored
Auke Kokbc7f75f2007-09-17 12:30:59 -07001911 * in the other NVM bank or a modified value stored
Bruce Allanad680762008-03-28 09:15:03 -07001912 * in the shadow RAM
1913 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001914 if (dev_spec->shadow_ram[i].modified) {
1915 data = dev_spec->shadow_ram[i].value;
1916 } else {
Bruce Allane2434552008-11-21 17:02:41 -08001917 ret_val = e1000_read_flash_word_ich8lan(hw, i +
1918 old_bank_offset,
1919 &data);
1920 if (ret_val)
1921 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001922 }
1923
Bruce Allanad680762008-03-28 09:15:03 -07001924 /*
1925 * If the word is 0x13, then make sure the signature bits
Auke Kokbc7f75f2007-09-17 12:30:59 -07001926 * (15:14) are 11b until the commit has completed.
1927 * This will allow us to write 10b which indicates the
1928 * signature is valid. We want to do this after the write
1929 * has completed so that we don't mark the segment valid
Bruce Allanad680762008-03-28 09:15:03 -07001930 * while the write is still in progress
1931 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001932 if (i == E1000_ICH_NVM_SIG_WORD)
1933 data |= E1000_ICH_NVM_SIG_MASK;
1934
1935 /* Convert offset to bytes. */
1936 act_offset = (i + new_bank_offset) << 1;
1937
1938 udelay(100);
1939 /* Write the bytes to the new bank. */
1940 ret_val = e1000_retry_write_flash_byte_ich8lan(hw,
1941 act_offset,
1942 (u8)data);
1943 if (ret_val)
1944 break;
1945
1946 udelay(100);
1947 ret_val = e1000_retry_write_flash_byte_ich8lan(hw,
1948 act_offset + 1,
1949 (u8)(data >> 8));
1950 if (ret_val)
1951 break;
1952 }
1953
Bruce Allanad680762008-03-28 09:15:03 -07001954 /*
1955 * Don't bother writing the segment valid bits if sector
1956 * programming failed.
1957 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001958 if (ret_val) {
Bruce Allan4a770352008-10-01 17:18:35 -07001959 /* Possibly read-only, see e1000e_write_protect_nvm_ich8lan() */
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001960 e_dbg("Flash commit failed.\n");
Bruce Allan94d81862009-11-20 23:25:26 +00001961 nvm->ops.release(hw);
Bruce Allane2434552008-11-21 17:02:41 -08001962 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001963 }
1964
Bruce Allanad680762008-03-28 09:15:03 -07001965 /*
1966 * Finally validate the new segment by setting bit 15:14
Auke Kokbc7f75f2007-09-17 12:30:59 -07001967 * to 10b in word 0x13 , this can be done without an
1968 * erase as well since these bits are 11 to start with
Bruce Allanad680762008-03-28 09:15:03 -07001969 * and we need to change bit 14 to 0b
1970 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001971 act_offset = new_bank_offset + E1000_ICH_NVM_SIG_WORD;
Bruce Allane2434552008-11-21 17:02:41 -08001972 ret_val = e1000_read_flash_word_ich8lan(hw, act_offset, &data);
1973 if (ret_val) {
Bruce Allan94d81862009-11-20 23:25:26 +00001974 nvm->ops.release(hw);
Bruce Allane2434552008-11-21 17:02:41 -08001975 goto out;
1976 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001977 data &= 0xBFFF;
1978 ret_val = e1000_retry_write_flash_byte_ich8lan(hw,
1979 act_offset * 2 + 1,
1980 (u8)(data >> 8));
1981 if (ret_val) {
Bruce Allan94d81862009-11-20 23:25:26 +00001982 nvm->ops.release(hw);
Bruce Allane2434552008-11-21 17:02:41 -08001983 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001984 }
1985
Bruce Allanad680762008-03-28 09:15:03 -07001986 /*
1987 * And invalidate the previously valid segment by setting
Auke Kokbc7f75f2007-09-17 12:30:59 -07001988 * its signature word (0x13) high_byte to 0b. This can be
1989 * done without an erase because flash erase sets all bits
Bruce Allanad680762008-03-28 09:15:03 -07001990 * to 1's. We can write 1's to 0's without an erase
1991 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001992 act_offset = (old_bank_offset + E1000_ICH_NVM_SIG_WORD) * 2 + 1;
1993 ret_val = e1000_retry_write_flash_byte_ich8lan(hw, act_offset, 0);
1994 if (ret_val) {
Bruce Allan94d81862009-11-20 23:25:26 +00001995 nvm->ops.release(hw);
Bruce Allane2434552008-11-21 17:02:41 -08001996 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001997 }
1998
1999 /* Great! Everything worked, we can now clear the cached entries. */
2000 for (i = 0; i < E1000_ICH8_SHADOW_RAM_WORDS; i++) {
Bruce Allan564ea9b2009-11-20 23:26:44 +00002001 dev_spec->shadow_ram[i].modified = false;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002002 dev_spec->shadow_ram[i].value = 0xFFFF;
2003 }
2004
Bruce Allan94d81862009-11-20 23:25:26 +00002005 nvm->ops.release(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002006
Bruce Allanad680762008-03-28 09:15:03 -07002007 /*
2008 * Reload the EEPROM, or else modifications will not appear
Auke Kokbc7f75f2007-09-17 12:30:59 -07002009 * until after the next adapter reset.
2010 */
2011 e1000e_reload_nvm(hw);
2012 msleep(10);
2013
Bruce Allane2434552008-11-21 17:02:41 -08002014out:
2015 if (ret_val)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002016 e_dbg("NVM update error: %d\n", ret_val);
Bruce Allane2434552008-11-21 17:02:41 -08002017
Auke Kokbc7f75f2007-09-17 12:30:59 -07002018 return ret_val;
2019}
2020
2021/**
2022 * e1000_validate_nvm_checksum_ich8lan - Validate EEPROM checksum
2023 * @hw: pointer to the HW structure
2024 *
2025 * Check to see if checksum needs to be fixed by reading bit 6 in word 0x19.
2026 * If the bit is 0, that the EEPROM had been modified, but the checksum was not
2027 * calculated, in which case we need to calculate the checksum and set bit 6.
2028 **/
2029static s32 e1000_validate_nvm_checksum_ich8lan(struct e1000_hw *hw)
2030{
2031 s32 ret_val;
2032 u16 data;
2033
Bruce Allanad680762008-03-28 09:15:03 -07002034 /*
2035 * Read 0x19 and check bit 6. If this bit is 0, the checksum
Auke Kokbc7f75f2007-09-17 12:30:59 -07002036 * needs to be fixed. This bit is an indication that the NVM
2037 * was prepared by OEM software and did not calculate the
2038 * checksum...a likely scenario.
2039 */
2040 ret_val = e1000_read_nvm(hw, 0x19, 1, &data);
2041 if (ret_val)
2042 return ret_val;
2043
2044 if ((data & 0x40) == 0) {
2045 data |= 0x40;
2046 ret_val = e1000_write_nvm(hw, 0x19, 1, &data);
2047 if (ret_val)
2048 return ret_val;
2049 ret_val = e1000e_update_nvm_checksum(hw);
2050 if (ret_val)
2051 return ret_val;
2052 }
2053
2054 return e1000e_validate_nvm_checksum_generic(hw);
2055}
2056
2057/**
Bruce Allan4a770352008-10-01 17:18:35 -07002058 * e1000e_write_protect_nvm_ich8lan - Make the NVM read-only
2059 * @hw: pointer to the HW structure
2060 *
2061 * To prevent malicious write/erase of the NVM, set it to be read-only
2062 * so that the hardware ignores all write/erase cycles of the NVM via
2063 * the flash control registers. The shadow-ram copy of the NVM will
2064 * still be updated, however any updates to this copy will not stick
2065 * across driver reloads.
2066 **/
2067void e1000e_write_protect_nvm_ich8lan(struct e1000_hw *hw)
2068{
Bruce Allanca15df52009-10-26 11:23:43 +00002069 struct e1000_nvm_info *nvm = &hw->nvm;
Bruce Allan4a770352008-10-01 17:18:35 -07002070 union ich8_flash_protected_range pr0;
2071 union ich8_hws_flash_status hsfsts;
2072 u32 gfpreg;
Bruce Allan4a770352008-10-01 17:18:35 -07002073
Bruce Allan94d81862009-11-20 23:25:26 +00002074 nvm->ops.acquire(hw);
Bruce Allan4a770352008-10-01 17:18:35 -07002075
2076 gfpreg = er32flash(ICH_FLASH_GFPREG);
2077
2078 /* Write-protect GbE Sector of NVM */
2079 pr0.regval = er32flash(ICH_FLASH_PR0);
2080 pr0.range.base = gfpreg & FLASH_GFPREG_BASE_MASK;
2081 pr0.range.limit = ((gfpreg >> 16) & FLASH_GFPREG_BASE_MASK);
2082 pr0.range.wpe = true;
2083 ew32flash(ICH_FLASH_PR0, pr0.regval);
2084
2085 /*
2086 * Lock down a subset of GbE Flash Control Registers, e.g.
2087 * PR0 to prevent the write-protection from being lifted.
2088 * Once FLOCKDN is set, the registers protected by it cannot
2089 * be written until FLOCKDN is cleared by a hardware reset.
2090 */
2091 hsfsts.regval = er16flash(ICH_FLASH_HSFSTS);
2092 hsfsts.hsf_status.flockdn = true;
2093 ew32flash(ICH_FLASH_HSFSTS, hsfsts.regval);
2094
Bruce Allan94d81862009-11-20 23:25:26 +00002095 nvm->ops.release(hw);
Bruce Allan4a770352008-10-01 17:18:35 -07002096}
2097
2098/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07002099 * e1000_write_flash_data_ich8lan - Writes bytes to the NVM
2100 * @hw: pointer to the HW structure
2101 * @offset: The offset (in bytes) of the byte/word to read.
2102 * @size: Size of data to read, 1=byte 2=word
2103 * @data: The byte(s) to write to the NVM.
2104 *
2105 * Writes one/two bytes to the NVM using the flash access registers.
2106 **/
2107static s32 e1000_write_flash_data_ich8lan(struct e1000_hw *hw, u32 offset,
2108 u8 size, u16 data)
2109{
2110 union ich8_hws_flash_status hsfsts;
2111 union ich8_hws_flash_ctrl hsflctl;
2112 u32 flash_linear_addr;
2113 u32 flash_data = 0;
2114 s32 ret_val;
2115 u8 count = 0;
2116
2117 if (size < 1 || size > 2 || data > size * 0xff ||
2118 offset > ICH_FLASH_LINEAR_ADDR_MASK)
2119 return -E1000_ERR_NVM;
2120
2121 flash_linear_addr = (ICH_FLASH_LINEAR_ADDR_MASK & offset) +
2122 hw->nvm.flash_base_addr;
2123
2124 do {
2125 udelay(1);
2126 /* Steps */
2127 ret_val = e1000_flash_cycle_init_ich8lan(hw);
2128 if (ret_val)
2129 break;
2130
2131 hsflctl.regval = er16flash(ICH_FLASH_HSFCTL);
2132 /* 0b/1b corresponds to 1 or 2 byte size, respectively. */
2133 hsflctl.hsf_ctrl.fldbcount = size -1;
2134 hsflctl.hsf_ctrl.flcycle = ICH_CYCLE_WRITE;
2135 ew16flash(ICH_FLASH_HSFCTL, hsflctl.regval);
2136
2137 ew32flash(ICH_FLASH_FADDR, flash_linear_addr);
2138
2139 if (size == 1)
2140 flash_data = (u32)data & 0x00FF;
2141 else
2142 flash_data = (u32)data;
2143
2144 ew32flash(ICH_FLASH_FDATA0, flash_data);
2145
Bruce Allanad680762008-03-28 09:15:03 -07002146 /*
2147 * check if FCERR is set to 1 , if set to 1, clear it
2148 * and try the whole sequence a few more times else done
2149 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002150 ret_val = e1000_flash_cycle_ich8lan(hw,
2151 ICH_FLASH_WRITE_COMMAND_TIMEOUT);
2152 if (!ret_val)
2153 break;
2154
Bruce Allanad680762008-03-28 09:15:03 -07002155 /*
2156 * If we're here, then things are most likely
Auke Kokbc7f75f2007-09-17 12:30:59 -07002157 * completely hosed, but if the error condition
2158 * is detected, it won't hurt to give it another
2159 * try...ICH_FLASH_CYCLE_REPEAT_COUNT times.
2160 */
2161 hsfsts.regval = er16flash(ICH_FLASH_HSFSTS);
2162 if (hsfsts.hsf_status.flcerr == 1)
2163 /* Repeat for some time before giving up. */
2164 continue;
2165 if (hsfsts.hsf_status.flcdone == 0) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002166 e_dbg("Timeout error - flash cycle "
Auke Kokbc7f75f2007-09-17 12:30:59 -07002167 "did not complete.");
2168 break;
2169 }
2170 } while (count++ < ICH_FLASH_CYCLE_REPEAT_COUNT);
2171
2172 return ret_val;
2173}
2174
2175/**
2176 * e1000_write_flash_byte_ich8lan - Write a single byte to NVM
2177 * @hw: pointer to the HW structure
2178 * @offset: The index of the byte to read.
2179 * @data: The byte to write to the NVM.
2180 *
2181 * Writes a single byte to the NVM using the flash access registers.
2182 **/
2183static s32 e1000_write_flash_byte_ich8lan(struct e1000_hw *hw, u32 offset,
2184 u8 data)
2185{
2186 u16 word = (u16)data;
2187
2188 return e1000_write_flash_data_ich8lan(hw, offset, 1, word);
2189}
2190
2191/**
2192 * e1000_retry_write_flash_byte_ich8lan - Writes a single byte to NVM
2193 * @hw: pointer to the HW structure
2194 * @offset: The offset of the byte to write.
2195 * @byte: The byte to write to the NVM.
2196 *
2197 * Writes a single byte to the NVM using the flash access registers.
2198 * Goes through a retry algorithm before giving up.
2199 **/
2200static s32 e1000_retry_write_flash_byte_ich8lan(struct e1000_hw *hw,
2201 u32 offset, u8 byte)
2202{
2203 s32 ret_val;
2204 u16 program_retries;
2205
2206 ret_val = e1000_write_flash_byte_ich8lan(hw, offset, byte);
2207 if (!ret_val)
2208 return ret_val;
2209
2210 for (program_retries = 0; program_retries < 100; program_retries++) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002211 e_dbg("Retrying Byte %2.2X at offset %u\n", byte, offset);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002212 udelay(100);
2213 ret_val = e1000_write_flash_byte_ich8lan(hw, offset, byte);
2214 if (!ret_val)
2215 break;
2216 }
2217 if (program_retries == 100)
2218 return -E1000_ERR_NVM;
2219
2220 return 0;
2221}
2222
2223/**
2224 * e1000_erase_flash_bank_ich8lan - Erase a bank (4k) from NVM
2225 * @hw: pointer to the HW structure
2226 * @bank: 0 for first bank, 1 for second bank, etc.
2227 *
2228 * Erases the bank specified. Each bank is a 4k block. Banks are 0 based.
2229 * bank N is 4096 * N + flash_reg_addr.
2230 **/
2231static s32 e1000_erase_flash_bank_ich8lan(struct e1000_hw *hw, u32 bank)
2232{
2233 struct e1000_nvm_info *nvm = &hw->nvm;
2234 union ich8_hws_flash_status hsfsts;
2235 union ich8_hws_flash_ctrl hsflctl;
2236 u32 flash_linear_addr;
2237 /* bank size is in 16bit words - adjust to bytes */
2238 u32 flash_bank_size = nvm->flash_bank_size * 2;
2239 s32 ret_val;
2240 s32 count = 0;
Bruce Allana708dd82009-11-20 23:28:37 +00002241 s32 j, iteration, sector_size;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002242
2243 hsfsts.regval = er16flash(ICH_FLASH_HSFSTS);
2244
Bruce Allanad680762008-03-28 09:15:03 -07002245 /*
2246 * Determine HW Sector size: Read BERASE bits of hw flash status
2247 * register
2248 * 00: The Hw sector is 256 bytes, hence we need to erase 16
Auke Kokbc7f75f2007-09-17 12:30:59 -07002249 * consecutive sectors. The start index for the nth Hw sector
2250 * can be calculated as = bank * 4096 + n * 256
2251 * 01: The Hw sector is 4K bytes, hence we need to erase 1 sector.
2252 * The start index for the nth Hw sector can be calculated
2253 * as = bank * 4096
2254 * 10: The Hw sector is 8K bytes, nth sector = bank * 8192
2255 * (ich9 only, otherwise error condition)
2256 * 11: The Hw sector is 64K bytes, nth sector = bank * 65536
2257 */
2258 switch (hsfsts.hsf_status.berasesz) {
2259 case 0:
2260 /* Hw sector size 256 */
2261 sector_size = ICH_FLASH_SEG_SIZE_256;
2262 iteration = flash_bank_size / ICH_FLASH_SEG_SIZE_256;
2263 break;
2264 case 1:
2265 sector_size = ICH_FLASH_SEG_SIZE_4K;
Bruce Allan28c91952009-07-01 13:28:32 +00002266 iteration = 1;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002267 break;
2268 case 2:
Bruce Allan148675a2009-08-07 07:41:56 +00002269 sector_size = ICH_FLASH_SEG_SIZE_8K;
2270 iteration = 1;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002271 break;
2272 case 3:
2273 sector_size = ICH_FLASH_SEG_SIZE_64K;
Bruce Allan28c91952009-07-01 13:28:32 +00002274 iteration = 1;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002275 break;
2276 default:
2277 return -E1000_ERR_NVM;
2278 }
2279
2280 /* Start with the base address, then add the sector offset. */
2281 flash_linear_addr = hw->nvm.flash_base_addr;
Bruce Allan148675a2009-08-07 07:41:56 +00002282 flash_linear_addr += (bank) ? flash_bank_size : 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002283
2284 for (j = 0; j < iteration ; j++) {
2285 do {
2286 /* Steps */
2287 ret_val = e1000_flash_cycle_init_ich8lan(hw);
2288 if (ret_val)
2289 return ret_val;
2290
Bruce Allanad680762008-03-28 09:15:03 -07002291 /*
2292 * Write a value 11 (block Erase) in Flash
2293 * Cycle field in hw flash control
2294 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002295 hsflctl.regval = er16flash(ICH_FLASH_HSFCTL);
2296 hsflctl.hsf_ctrl.flcycle = ICH_CYCLE_ERASE;
2297 ew16flash(ICH_FLASH_HSFCTL, hsflctl.regval);
2298
Bruce Allanad680762008-03-28 09:15:03 -07002299 /*
2300 * Write the last 24 bits of an index within the
Auke Kokbc7f75f2007-09-17 12:30:59 -07002301 * block into Flash Linear address field in Flash
2302 * Address.
2303 */
2304 flash_linear_addr += (j * sector_size);
2305 ew32flash(ICH_FLASH_FADDR, flash_linear_addr);
2306
2307 ret_val = e1000_flash_cycle_ich8lan(hw,
2308 ICH_FLASH_ERASE_COMMAND_TIMEOUT);
2309 if (ret_val == 0)
2310 break;
2311
Bruce Allanad680762008-03-28 09:15:03 -07002312 /*
2313 * Check if FCERR is set to 1. If 1,
Auke Kokbc7f75f2007-09-17 12:30:59 -07002314 * clear it and try the whole sequence
Bruce Allanad680762008-03-28 09:15:03 -07002315 * a few more times else Done
2316 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002317 hsfsts.regval = er16flash(ICH_FLASH_HSFSTS);
2318 if (hsfsts.hsf_status.flcerr == 1)
Bruce Allanad680762008-03-28 09:15:03 -07002319 /* repeat for some time before giving up */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002320 continue;
2321 else if (hsfsts.hsf_status.flcdone == 0)
2322 return ret_val;
2323 } while (++count < ICH_FLASH_CYCLE_REPEAT_COUNT);
2324 }
2325
2326 return 0;
2327}
2328
2329/**
2330 * e1000_valid_led_default_ich8lan - Set the default LED settings
2331 * @hw: pointer to the HW structure
2332 * @data: Pointer to the LED settings
2333 *
2334 * Reads the LED default settings from the NVM to data. If the NVM LED
2335 * settings is all 0's or F's, set the LED default to a valid LED default
2336 * setting.
2337 **/
2338static s32 e1000_valid_led_default_ich8lan(struct e1000_hw *hw, u16 *data)
2339{
2340 s32 ret_val;
2341
2342 ret_val = e1000_read_nvm(hw, NVM_ID_LED_SETTINGS, 1, data);
2343 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002344 e_dbg("NVM Read Error\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07002345 return ret_val;
2346 }
2347
2348 if (*data == ID_LED_RESERVED_0000 ||
2349 *data == ID_LED_RESERVED_FFFF)
2350 *data = ID_LED_DEFAULT_ICH8LAN;
2351
2352 return 0;
2353}
2354
2355/**
Bruce Allana4f58f52009-06-02 11:29:18 +00002356 * e1000_id_led_init_pchlan - store LED configurations
2357 * @hw: pointer to the HW structure
2358 *
2359 * PCH does not control LEDs via the LEDCTL register, rather it uses
2360 * the PHY LED configuration register.
2361 *
2362 * PCH also does not have an "always on" or "always off" mode which
2363 * complicates the ID feature. Instead of using the "on" mode to indicate
2364 * in ledctl_mode2 the LEDs to use for ID (see e1000e_id_led_init()),
2365 * use "link_up" mode. The LEDs will still ID on request if there is no
2366 * link based on logic in e1000_led_[on|off]_pchlan().
2367 **/
2368static s32 e1000_id_led_init_pchlan(struct e1000_hw *hw)
2369{
2370 struct e1000_mac_info *mac = &hw->mac;
2371 s32 ret_val;
2372 const u32 ledctl_on = E1000_LEDCTL_MODE_LINK_UP;
2373 const u32 ledctl_off = E1000_LEDCTL_MODE_LINK_UP | E1000_PHY_LED0_IVRT;
2374 u16 data, i, temp, shift;
2375
2376 /* Get default ID LED modes */
2377 ret_val = hw->nvm.ops.valid_led_default(hw, &data);
2378 if (ret_val)
2379 goto out;
2380
2381 mac->ledctl_default = er32(LEDCTL);
2382 mac->ledctl_mode1 = mac->ledctl_default;
2383 mac->ledctl_mode2 = mac->ledctl_default;
2384
2385 for (i = 0; i < 4; i++) {
2386 temp = (data >> (i << 2)) & E1000_LEDCTL_LED0_MODE_MASK;
2387 shift = (i * 5);
2388 switch (temp) {
2389 case ID_LED_ON1_DEF2:
2390 case ID_LED_ON1_ON2:
2391 case ID_LED_ON1_OFF2:
2392 mac->ledctl_mode1 &= ~(E1000_PHY_LED0_MASK << shift);
2393 mac->ledctl_mode1 |= (ledctl_on << shift);
2394 break;
2395 case ID_LED_OFF1_DEF2:
2396 case ID_LED_OFF1_ON2:
2397 case ID_LED_OFF1_OFF2:
2398 mac->ledctl_mode1 &= ~(E1000_PHY_LED0_MASK << shift);
2399 mac->ledctl_mode1 |= (ledctl_off << shift);
2400 break;
2401 default:
2402 /* Do nothing */
2403 break;
2404 }
2405 switch (temp) {
2406 case ID_LED_DEF1_ON2:
2407 case ID_LED_ON1_ON2:
2408 case ID_LED_OFF1_ON2:
2409 mac->ledctl_mode2 &= ~(E1000_PHY_LED0_MASK << shift);
2410 mac->ledctl_mode2 |= (ledctl_on << shift);
2411 break;
2412 case ID_LED_DEF1_OFF2:
2413 case ID_LED_ON1_OFF2:
2414 case ID_LED_OFF1_OFF2:
2415 mac->ledctl_mode2 &= ~(E1000_PHY_LED0_MASK << shift);
2416 mac->ledctl_mode2 |= (ledctl_off << shift);
2417 break;
2418 default:
2419 /* Do nothing */
2420 break;
2421 }
2422 }
2423
2424out:
2425 return ret_val;
2426}
2427
2428/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07002429 * e1000_get_bus_info_ich8lan - Get/Set the bus type and width
2430 * @hw: pointer to the HW structure
2431 *
2432 * ICH8 use the PCI Express bus, but does not contain a PCI Express Capability
2433 * register, so the the bus width is hard coded.
2434 **/
2435static s32 e1000_get_bus_info_ich8lan(struct e1000_hw *hw)
2436{
2437 struct e1000_bus_info *bus = &hw->bus;
2438 s32 ret_val;
2439
2440 ret_val = e1000e_get_bus_info_pcie(hw);
2441
Bruce Allanad680762008-03-28 09:15:03 -07002442 /*
2443 * ICH devices are "PCI Express"-ish. They have
Auke Kokbc7f75f2007-09-17 12:30:59 -07002444 * a configuration space, but do not contain
2445 * PCI Express Capability registers, so bus width
2446 * must be hardcoded.
2447 */
2448 if (bus->width == e1000_bus_width_unknown)
2449 bus->width = e1000_bus_width_pcie_x1;
2450
2451 return ret_val;
2452}
2453
2454/**
2455 * e1000_reset_hw_ich8lan - Reset the hardware
2456 * @hw: pointer to the HW structure
2457 *
2458 * Does a full reset of the hardware which includes a reset of the PHY and
2459 * MAC.
2460 **/
2461static s32 e1000_reset_hw_ich8lan(struct e1000_hw *hw)
2462{
Bruce Allan1d5846b2009-10-29 13:46:05 +00002463 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
Bruce Allandb2932e2009-10-26 11:22:47 +00002464 u16 reg;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002465 u32 ctrl, icr, kab;
2466 s32 ret_val;
2467
Bruce Allanad680762008-03-28 09:15:03 -07002468 /*
2469 * Prevent the PCI-E bus from sticking if there is no TLP connection
Auke Kokbc7f75f2007-09-17 12:30:59 -07002470 * on the last TLP read/write transaction when MAC is reset.
2471 */
2472 ret_val = e1000e_disable_pcie_master(hw);
2473 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002474 e_dbg("PCI-E Master disable polling has failed.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07002475 }
2476
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002477 e_dbg("Masking off all interrupts\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07002478 ew32(IMC, 0xffffffff);
2479
Bruce Allanad680762008-03-28 09:15:03 -07002480 /*
2481 * Disable the Transmit and Receive units. Then delay to allow
Auke Kokbc7f75f2007-09-17 12:30:59 -07002482 * any pending transactions to complete before we hit the MAC
2483 * with the global reset.
2484 */
2485 ew32(RCTL, 0);
2486 ew32(TCTL, E1000_TCTL_PSP);
2487 e1e_flush();
2488
2489 msleep(10);
2490
2491 /* Workaround for ICH8 bit corruption issue in FIFO memory */
2492 if (hw->mac.type == e1000_ich8lan) {
2493 /* Set Tx and Rx buffer allocation to 8k apiece. */
2494 ew32(PBA, E1000_PBA_8K);
2495 /* Set Packet Buffer Size to 16k. */
2496 ew32(PBS, E1000_PBS_16K);
2497 }
2498
Bruce Allan1d5846b2009-10-29 13:46:05 +00002499 if (hw->mac.type == e1000_pchlan) {
2500 /* Save the NVM K1 bit setting*/
2501 ret_val = e1000_read_nvm(hw, E1000_NVM_K1_CONFIG, 1, &reg);
2502 if (ret_val)
2503 return ret_val;
2504
2505 if (reg & E1000_NVM_K1_ENABLE)
2506 dev_spec->nvm_k1_enabled = true;
2507 else
2508 dev_spec->nvm_k1_enabled = false;
2509 }
2510
Auke Kokbc7f75f2007-09-17 12:30:59 -07002511 ctrl = er32(CTRL);
2512
2513 if (!e1000_check_reset_block(hw)) {
Bruce Allanfc0c7762009-07-01 13:27:55 +00002514 /* Clear PHY Reset Asserted bit */
2515 if (hw->mac.type >= e1000_pchlan) {
2516 u32 status = er32(STATUS);
2517 ew32(STATUS, status & ~E1000_STATUS_PHYRA);
2518 }
2519
Bruce Allanad680762008-03-28 09:15:03 -07002520 /*
2521 * PHY HW reset requires MAC CORE reset at the same
Auke Kokbc7f75f2007-09-17 12:30:59 -07002522 * time to make sure the interface between MAC and the
2523 * external PHY is reset.
2524 */
2525 ctrl |= E1000_CTRL_PHY_RST;
2526 }
2527 ret_val = e1000_acquire_swflag_ich8lan(hw);
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002528 e_dbg("Issuing a global reset to ich8lan\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07002529 ew32(CTRL, (ctrl | E1000_CTRL_RST));
2530 msleep(20);
2531
Bruce Allanfc0c7762009-07-01 13:27:55 +00002532 if (!ret_val)
Jeff Kirsher30bb0e02008-12-11 21:28:11 -08002533 e1000_release_swflag_ich8lan(hw);
Jesse Brandeburg37f40232008-10-02 16:33:20 -07002534
Bruce Allanfddaa1a2010-01-13 01:52:49 +00002535 /* Perform any necessary post-reset workarounds */
2536 if (hw->mac.type == e1000_pchlan)
2537 ret_val = e1000_hv_phy_workarounds_ich8lan(hw);
2538
Bruce Allanfc0c7762009-07-01 13:27:55 +00002539 if (ctrl & E1000_CTRL_PHY_RST)
2540 ret_val = hw->phy.ops.get_cfg_done(hw);
2541
2542 if (hw->mac.type >= e1000_ich10lan) {
2543 e1000_lan_init_done_ich8lan(hw);
2544 } else {
2545 ret_val = e1000e_get_auto_rd_done(hw);
2546 if (ret_val) {
2547 /*
2548 * When auto config read does not complete, do not
2549 * return with an error. This can happen in situations
2550 * where there is no eeprom and prevents getting link.
2551 */
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002552 e_dbg("Auto Read Done did not complete\n");
Bruce Allanfc0c7762009-07-01 13:27:55 +00002553 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002554 }
Bruce Allandb2932e2009-10-26 11:22:47 +00002555 /* Dummy read to clear the phy wakeup bit after lcd reset */
2556 if (hw->mac.type == e1000_pchlan)
2557 e1e_rphy(hw, BM_WUC, &reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002558
Bruce Allanf523d212009-10-29 13:45:45 +00002559 ret_val = e1000_sw_lcd_config_ich8lan(hw);
2560 if (ret_val)
2561 goto out;
2562
2563 if (hw->mac.type == e1000_pchlan) {
2564 ret_val = e1000_oem_bits_config_ich8lan(hw, true);
2565 if (ret_val)
2566 goto out;
2567 }
Bruce Allan7d3cabb2009-07-01 13:29:08 +00002568 /*
2569 * For PCH, this write will make sure that any noise
2570 * will be detected as a CRC error and be dropped rather than show up
2571 * as a bad packet to the DMA engine.
2572 */
2573 if (hw->mac.type == e1000_pchlan)
2574 ew32(CRC_OFFSET, 0x65656565);
2575
Auke Kokbc7f75f2007-09-17 12:30:59 -07002576 ew32(IMC, 0xffffffff);
2577 icr = er32(ICR);
2578
2579 kab = er32(KABGTXD);
2580 kab |= E1000_KABGTXD_BGSQLBIAS;
2581 ew32(KABGTXD, kab);
2582
Bruce Allanf523d212009-10-29 13:45:45 +00002583out:
Auke Kokbc7f75f2007-09-17 12:30:59 -07002584 return ret_val;
2585}
2586
2587/**
2588 * e1000_init_hw_ich8lan - Initialize the hardware
2589 * @hw: pointer to the HW structure
2590 *
2591 * Prepares the hardware for transmit and receive by doing the following:
2592 * - initialize hardware bits
2593 * - initialize LED identification
2594 * - setup receive address registers
2595 * - setup flow control
Auke Kok489815c2008-02-21 15:11:07 -08002596 * - setup transmit descriptors
Auke Kokbc7f75f2007-09-17 12:30:59 -07002597 * - clear statistics
2598 **/
2599static s32 e1000_init_hw_ich8lan(struct e1000_hw *hw)
2600{
2601 struct e1000_mac_info *mac = &hw->mac;
2602 u32 ctrl_ext, txdctl, snoop;
2603 s32 ret_val;
2604 u16 i;
2605
2606 e1000_initialize_hw_bits_ich8lan(hw);
2607
2608 /* Initialize identification LED */
Bruce Allana4f58f52009-06-02 11:29:18 +00002609 ret_val = mac->ops.id_led_init(hw);
Bruce Allande39b752009-11-20 23:27:59 +00002610 if (ret_val)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002611 e_dbg("Error initializing identification LED\n");
Bruce Allande39b752009-11-20 23:27:59 +00002612 /* This is not fatal and we should not stop init due to this */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002613
2614 /* Setup the receive address. */
2615 e1000e_init_rx_addrs(hw, mac->rar_entry_count);
2616
2617 /* Zero out the Multicast HASH table */
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002618 e_dbg("Zeroing the MTA\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07002619 for (i = 0; i < mac->mta_reg_count; i++)
2620 E1000_WRITE_REG_ARRAY(hw, E1000_MTA, i, 0);
2621
Bruce Allanfc0c7762009-07-01 13:27:55 +00002622 /*
2623 * The 82578 Rx buffer will stall if wakeup is enabled in host and
2624 * the ME. Reading the BM_WUC register will clear the host wakeup bit.
2625 * Reset the phy after disabling host wakeup to reset the Rx buffer.
2626 */
2627 if (hw->phy.type == e1000_phy_82578) {
Bruce Allan94d81862009-11-20 23:25:26 +00002628 hw->phy.ops.read_reg(hw, BM_WUC, &i);
Bruce Allanfc0c7762009-07-01 13:27:55 +00002629 ret_val = e1000_phy_hw_reset_ich8lan(hw);
2630 if (ret_val)
2631 return ret_val;
2632 }
2633
Auke Kokbc7f75f2007-09-17 12:30:59 -07002634 /* Setup link and flow control */
2635 ret_val = e1000_setup_link_ich8lan(hw);
2636
2637 /* Set the transmit descriptor write-back policy for both queues */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002638 txdctl = er32(TXDCTL(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002639 txdctl = (txdctl & ~E1000_TXDCTL_WTHRESH) |
2640 E1000_TXDCTL_FULL_TX_DESC_WB;
2641 txdctl = (txdctl & ~E1000_TXDCTL_PTHRESH) |
2642 E1000_TXDCTL_MAX_TX_DESC_PREFETCH;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002643 ew32(TXDCTL(0), txdctl);
2644 txdctl = er32(TXDCTL(1));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002645 txdctl = (txdctl & ~E1000_TXDCTL_WTHRESH) |
2646 E1000_TXDCTL_FULL_TX_DESC_WB;
2647 txdctl = (txdctl & ~E1000_TXDCTL_PTHRESH) |
2648 E1000_TXDCTL_MAX_TX_DESC_PREFETCH;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002649 ew32(TXDCTL(1), txdctl);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002650
Bruce Allanad680762008-03-28 09:15:03 -07002651 /*
2652 * ICH8 has opposite polarity of no_snoop bits.
2653 * By default, we should use snoop behavior.
2654 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002655 if (mac->type == e1000_ich8lan)
2656 snoop = PCIE_ICH8_SNOOP_ALL;
2657 else
2658 snoop = (u32) ~(PCIE_NO_SNOOP_ALL);
2659 e1000e_set_pcie_no_snoop(hw, snoop);
2660
2661 ctrl_ext = er32(CTRL_EXT);
2662 ctrl_ext |= E1000_CTRL_EXT_RO_DIS;
2663 ew32(CTRL_EXT, ctrl_ext);
2664
Bruce Allanad680762008-03-28 09:15:03 -07002665 /*
2666 * Clear all of the statistics registers (clear on read). It is
Auke Kokbc7f75f2007-09-17 12:30:59 -07002667 * important that we do this after we have tried to establish link
2668 * because the symbol error count will increment wildly if there
2669 * is no link.
2670 */
2671 e1000_clear_hw_cntrs_ich8lan(hw);
2672
2673 return 0;
2674}
2675/**
2676 * e1000_initialize_hw_bits_ich8lan - Initialize required hardware bits
2677 * @hw: pointer to the HW structure
2678 *
2679 * Sets/Clears required hardware bits necessary for correctly setting up the
2680 * hardware for transmit and receive.
2681 **/
2682static void e1000_initialize_hw_bits_ich8lan(struct e1000_hw *hw)
2683{
2684 u32 reg;
2685
2686 /* Extended Device Control */
2687 reg = er32(CTRL_EXT);
2688 reg |= (1 << 22);
Bruce Allana4f58f52009-06-02 11:29:18 +00002689 /* Enable PHY low-power state when MAC is at D3 w/o WoL */
2690 if (hw->mac.type >= e1000_pchlan)
2691 reg |= E1000_CTRL_EXT_PHYPDEN;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002692 ew32(CTRL_EXT, reg);
2693
2694 /* Transmit Descriptor Control 0 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002695 reg = er32(TXDCTL(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002696 reg |= (1 << 22);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002697 ew32(TXDCTL(0), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002698
2699 /* Transmit Descriptor Control 1 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002700 reg = er32(TXDCTL(1));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002701 reg |= (1 << 22);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002702 ew32(TXDCTL(1), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002703
2704 /* Transmit Arbitration Control 0 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002705 reg = er32(TARC(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002706 if (hw->mac.type == e1000_ich8lan)
2707 reg |= (1 << 28) | (1 << 29);
2708 reg |= (1 << 23) | (1 << 24) | (1 << 26) | (1 << 27);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002709 ew32(TARC(0), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002710
2711 /* Transmit Arbitration Control 1 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002712 reg = er32(TARC(1));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002713 if (er32(TCTL) & E1000_TCTL_MULR)
2714 reg &= ~(1 << 28);
2715 else
2716 reg |= (1 << 28);
2717 reg |= (1 << 24) | (1 << 26) | (1 << 30);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002718 ew32(TARC(1), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002719
2720 /* Device Status */
2721 if (hw->mac.type == e1000_ich8lan) {
2722 reg = er32(STATUS);
2723 reg &= ~(1 << 31);
2724 ew32(STATUS, reg);
2725 }
2726}
2727
2728/**
2729 * e1000_setup_link_ich8lan - Setup flow control and link settings
2730 * @hw: pointer to the HW structure
2731 *
2732 * Determines which flow control settings to use, then configures flow
2733 * control. Calls the appropriate media-specific link configuration
2734 * function. Assuming the adapter has a valid link partner, a valid link
2735 * should be established. Assumes the hardware has previously been reset
2736 * and the transmitter and receiver are not enabled.
2737 **/
2738static s32 e1000_setup_link_ich8lan(struct e1000_hw *hw)
2739{
Auke Kokbc7f75f2007-09-17 12:30:59 -07002740 s32 ret_val;
2741
2742 if (e1000_check_reset_block(hw))
2743 return 0;
2744
Bruce Allanad680762008-03-28 09:15:03 -07002745 /*
2746 * ICH parts do not have a word in the NVM to determine
Auke Kokbc7f75f2007-09-17 12:30:59 -07002747 * the default flow control setting, so we explicitly
2748 * set it to full.
2749 */
Bruce Allan37289d92009-06-02 11:29:37 +00002750 if (hw->fc.requested_mode == e1000_fc_default) {
2751 /* Workaround h/w hang when Tx flow control enabled */
2752 if (hw->mac.type == e1000_pchlan)
2753 hw->fc.requested_mode = e1000_fc_rx_pause;
2754 else
2755 hw->fc.requested_mode = e1000_fc_full;
2756 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002757
Bruce Allan5c48ef3e22008-11-21 16:57:36 -08002758 /*
2759 * Save off the requested flow control mode for use later. Depending
2760 * on the link partner's capabilities, we may or may not use this mode.
2761 */
2762 hw->fc.current_mode = hw->fc.requested_mode;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002763
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002764 e_dbg("After fix-ups FlowControl is now = %x\n",
Bruce Allan5c48ef3e22008-11-21 16:57:36 -08002765 hw->fc.current_mode);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002766
2767 /* Continue to configure the copper link. */
2768 ret_val = e1000_setup_copper_link_ich8lan(hw);
2769 if (ret_val)
2770 return ret_val;
2771
Jeff Kirsher318a94d2008-03-28 09:15:16 -07002772 ew32(FCTTV, hw->fc.pause_time);
Bruce Allana4f58f52009-06-02 11:29:18 +00002773 if ((hw->phy.type == e1000_phy_82578) ||
2774 (hw->phy.type == e1000_phy_82577)) {
Bruce Allan94d81862009-11-20 23:25:26 +00002775 ret_val = hw->phy.ops.write_reg(hw,
Bruce Allana4f58f52009-06-02 11:29:18 +00002776 PHY_REG(BM_PORT_CTRL_PAGE, 27),
2777 hw->fc.pause_time);
2778 if (ret_val)
2779 return ret_val;
2780 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002781
2782 return e1000e_set_fc_watermarks(hw);
2783}
2784
2785/**
2786 * e1000_setup_copper_link_ich8lan - Configure MAC/PHY interface
2787 * @hw: pointer to the HW structure
2788 *
2789 * Configures the kumeran interface to the PHY to wait the appropriate time
2790 * when polling the PHY, then call the generic setup_copper_link to finish
2791 * configuring the copper link.
2792 **/
2793static s32 e1000_setup_copper_link_ich8lan(struct e1000_hw *hw)
2794{
2795 u32 ctrl;
2796 s32 ret_val;
2797 u16 reg_data;
2798
2799 ctrl = er32(CTRL);
2800 ctrl |= E1000_CTRL_SLU;
2801 ctrl &= ~(E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX);
2802 ew32(CTRL, ctrl);
2803
Bruce Allanad680762008-03-28 09:15:03 -07002804 /*
2805 * Set the mac to wait the maximum time between each iteration
Auke Kokbc7f75f2007-09-17 12:30:59 -07002806 * and increase the max iterations when polling the phy;
Bruce Allanad680762008-03-28 09:15:03 -07002807 * this fixes erroneous timeouts at 10Mbps.
2808 */
Bruce Allan07818952009-12-08 07:28:01 +00002809 ret_val = e1000e_write_kmrn_reg(hw, E1000_KMRNCTRLSTA_TIMEOUTS, 0xFFFF);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002810 if (ret_val)
2811 return ret_val;
Bruce Allan07818952009-12-08 07:28:01 +00002812 ret_val = e1000e_read_kmrn_reg(hw, E1000_KMRNCTRLSTA_INBAND_PARAM,
2813 &reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002814 if (ret_val)
2815 return ret_val;
2816 reg_data |= 0x3F;
Bruce Allan07818952009-12-08 07:28:01 +00002817 ret_val = e1000e_write_kmrn_reg(hw, E1000_KMRNCTRLSTA_INBAND_PARAM,
2818 reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002819 if (ret_val)
2820 return ret_val;
2821
Bruce Allana4f58f52009-06-02 11:29:18 +00002822 switch (hw->phy.type) {
2823 case e1000_phy_igp_3:
Auke Kokbc7f75f2007-09-17 12:30:59 -07002824 ret_val = e1000e_copper_link_setup_igp(hw);
2825 if (ret_val)
2826 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00002827 break;
2828 case e1000_phy_bm:
2829 case e1000_phy_82578:
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002830 ret_val = e1000e_copper_link_setup_m88(hw);
2831 if (ret_val)
2832 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00002833 break;
2834 case e1000_phy_82577:
2835 ret_val = e1000_copper_link_setup_82577(hw);
2836 if (ret_val)
2837 return ret_val;
2838 break;
2839 case e1000_phy_ife:
Bruce Allan94d81862009-11-20 23:25:26 +00002840 ret_val = hw->phy.ops.read_reg(hw, IFE_PHY_MDIX_CONTROL,
Bruce Allana4f58f52009-06-02 11:29:18 +00002841 &reg_data);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002842 if (ret_val)
2843 return ret_val;
2844
2845 reg_data &= ~IFE_PMC_AUTO_MDIX;
2846
2847 switch (hw->phy.mdix) {
2848 case 1:
2849 reg_data &= ~IFE_PMC_FORCE_MDIX;
2850 break;
2851 case 2:
2852 reg_data |= IFE_PMC_FORCE_MDIX;
2853 break;
2854 case 0:
2855 default:
2856 reg_data |= IFE_PMC_AUTO_MDIX;
2857 break;
2858 }
Bruce Allan94d81862009-11-20 23:25:26 +00002859 ret_val = hw->phy.ops.write_reg(hw, IFE_PHY_MDIX_CONTROL,
Bruce Allana4f58f52009-06-02 11:29:18 +00002860 reg_data);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002861 if (ret_val)
2862 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00002863 break;
2864 default:
2865 break;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002866 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002867 return e1000e_setup_copper_link(hw);
2868}
2869
2870/**
2871 * e1000_get_link_up_info_ich8lan - Get current link speed and duplex
2872 * @hw: pointer to the HW structure
2873 * @speed: pointer to store current link speed
2874 * @duplex: pointer to store the current link duplex
2875 *
Bruce Allanad680762008-03-28 09:15:03 -07002876 * Calls the generic get_speed_and_duplex to retrieve the current link
Auke Kokbc7f75f2007-09-17 12:30:59 -07002877 * information and then calls the Kumeran lock loss workaround for links at
2878 * gigabit speeds.
2879 **/
2880static s32 e1000_get_link_up_info_ich8lan(struct e1000_hw *hw, u16 *speed,
2881 u16 *duplex)
2882{
2883 s32 ret_val;
2884
2885 ret_val = e1000e_get_speed_and_duplex_copper(hw, speed, duplex);
2886 if (ret_val)
2887 return ret_val;
2888
2889 if ((hw->mac.type == e1000_ich8lan) &&
2890 (hw->phy.type == e1000_phy_igp_3) &&
2891 (*speed == SPEED_1000)) {
2892 ret_val = e1000_kmrn_lock_loss_workaround_ich8lan(hw);
2893 }
2894
2895 return ret_val;
2896}
2897
2898/**
2899 * e1000_kmrn_lock_loss_workaround_ich8lan - Kumeran workaround
2900 * @hw: pointer to the HW structure
2901 *
2902 * Work-around for 82566 Kumeran PCS lock loss:
2903 * On link status change (i.e. PCI reset, speed change) and link is up and
2904 * speed is gigabit-
2905 * 0) if workaround is optionally disabled do nothing
2906 * 1) wait 1ms for Kumeran link to come up
2907 * 2) check Kumeran Diagnostic register PCS lock loss bit
2908 * 3) if not set the link is locked (all is good), otherwise...
2909 * 4) reset the PHY
2910 * 5) repeat up to 10 times
2911 * Note: this is only called for IGP3 copper when speed is 1gb.
2912 **/
2913static s32 e1000_kmrn_lock_loss_workaround_ich8lan(struct e1000_hw *hw)
2914{
2915 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
2916 u32 phy_ctrl;
2917 s32 ret_val;
2918 u16 i, data;
2919 bool link;
2920
2921 if (!dev_spec->kmrn_lock_loss_workaround_enabled)
2922 return 0;
2923
Bruce Allanad680762008-03-28 09:15:03 -07002924 /*
2925 * Make sure link is up before proceeding. If not just return.
Auke Kokbc7f75f2007-09-17 12:30:59 -07002926 * Attempting this while link is negotiating fouled up link
Bruce Allanad680762008-03-28 09:15:03 -07002927 * stability
2928 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002929 ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link);
2930 if (!link)
2931 return 0;
2932
2933 for (i = 0; i < 10; i++) {
2934 /* read once to clear */
2935 ret_val = e1e_rphy(hw, IGP3_KMRN_DIAG, &data);
2936 if (ret_val)
2937 return ret_val;
2938 /* and again to get new status */
2939 ret_val = e1e_rphy(hw, IGP3_KMRN_DIAG, &data);
2940 if (ret_val)
2941 return ret_val;
2942
2943 /* check for PCS lock */
2944 if (!(data & IGP3_KMRN_DIAG_PCS_LOCK_LOSS))
2945 return 0;
2946
2947 /* Issue PHY reset */
2948 e1000_phy_hw_reset(hw);
2949 mdelay(5);
2950 }
2951 /* Disable GigE link negotiation */
2952 phy_ctrl = er32(PHY_CTRL);
2953 phy_ctrl |= (E1000_PHY_CTRL_GBE_DISABLE |
2954 E1000_PHY_CTRL_NOND0A_GBE_DISABLE);
2955 ew32(PHY_CTRL, phy_ctrl);
2956
Bruce Allanad680762008-03-28 09:15:03 -07002957 /*
2958 * Call gig speed drop workaround on Gig disable before accessing
2959 * any PHY registers
2960 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002961 e1000e_gig_downshift_workaround_ich8lan(hw);
2962
2963 /* unable to acquire PCS lock */
2964 return -E1000_ERR_PHY;
2965}
2966
2967/**
Bruce Allanad680762008-03-28 09:15:03 -07002968 * e1000_set_kmrn_lock_loss_workaround_ich8lan - Set Kumeran workaround state
Auke Kokbc7f75f2007-09-17 12:30:59 -07002969 * @hw: pointer to the HW structure
Auke Kok489815c2008-02-21 15:11:07 -08002970 * @state: boolean value used to set the current Kumeran workaround state
Auke Kokbc7f75f2007-09-17 12:30:59 -07002971 *
Bruce Allan564ea9b2009-11-20 23:26:44 +00002972 * If ICH8, set the current Kumeran workaround state (enabled - true
2973 * /disabled - false).
Auke Kokbc7f75f2007-09-17 12:30:59 -07002974 **/
2975void e1000e_set_kmrn_lock_loss_workaround_ich8lan(struct e1000_hw *hw,
2976 bool state)
2977{
2978 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
2979
2980 if (hw->mac.type != e1000_ich8lan) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002981 e_dbg("Workaround applies to ICH8 only.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07002982 return;
2983 }
2984
2985 dev_spec->kmrn_lock_loss_workaround_enabled = state;
2986}
2987
2988/**
2989 * e1000_ipg3_phy_powerdown_workaround_ich8lan - Power down workaround on D3
2990 * @hw: pointer to the HW structure
2991 *
2992 * Workaround for 82566 power-down on D3 entry:
2993 * 1) disable gigabit link
2994 * 2) write VR power-down enable
2995 * 3) read it back
2996 * Continue if successful, else issue LCD reset and repeat
2997 **/
2998void e1000e_igp3_phy_powerdown_workaround_ich8lan(struct e1000_hw *hw)
2999{
3000 u32 reg;
3001 u16 data;
3002 u8 retry = 0;
3003
3004 if (hw->phy.type != e1000_phy_igp_3)
3005 return;
3006
3007 /* Try the workaround twice (if needed) */
3008 do {
3009 /* Disable link */
3010 reg = er32(PHY_CTRL);
3011 reg |= (E1000_PHY_CTRL_GBE_DISABLE |
3012 E1000_PHY_CTRL_NOND0A_GBE_DISABLE);
3013 ew32(PHY_CTRL, reg);
3014
Bruce Allanad680762008-03-28 09:15:03 -07003015 /*
3016 * Call gig speed drop workaround on Gig disable before
3017 * accessing any PHY registers
3018 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003019 if (hw->mac.type == e1000_ich8lan)
3020 e1000e_gig_downshift_workaround_ich8lan(hw);
3021
3022 /* Write VR power-down enable */
3023 e1e_rphy(hw, IGP3_VR_CTRL, &data);
3024 data &= ~IGP3_VR_CTRL_DEV_POWERDOWN_MODE_MASK;
3025 e1e_wphy(hw, IGP3_VR_CTRL, data | IGP3_VR_CTRL_MODE_SHUTDOWN);
3026
3027 /* Read it back and test */
3028 e1e_rphy(hw, IGP3_VR_CTRL, &data);
3029 data &= IGP3_VR_CTRL_DEV_POWERDOWN_MODE_MASK;
3030 if ((data == IGP3_VR_CTRL_MODE_SHUTDOWN) || retry)
3031 break;
3032
3033 /* Issue PHY reset and repeat at most one more time */
3034 reg = er32(CTRL);
3035 ew32(CTRL, reg | E1000_CTRL_PHY_RST);
3036 retry++;
3037 } while (retry);
3038}
3039
3040/**
3041 * e1000e_gig_downshift_workaround_ich8lan - WoL from S5 stops working
3042 * @hw: pointer to the HW structure
3043 *
3044 * Steps to take when dropping from 1Gb/s (eg. link cable removal (LSC),
Auke Kok489815c2008-02-21 15:11:07 -08003045 * LPLU, Gig disable, MDIC PHY reset):
Auke Kokbc7f75f2007-09-17 12:30:59 -07003046 * 1) Set Kumeran Near-end loopback
3047 * 2) Clear Kumeran Near-end loopback
3048 * Should only be called for ICH8[m] devices with IGP_3 Phy.
3049 **/
3050void e1000e_gig_downshift_workaround_ich8lan(struct e1000_hw *hw)
3051{
3052 s32 ret_val;
3053 u16 reg_data;
3054
3055 if ((hw->mac.type != e1000_ich8lan) ||
3056 (hw->phy.type != e1000_phy_igp_3))
3057 return;
3058
3059 ret_val = e1000e_read_kmrn_reg(hw, E1000_KMRNCTRLSTA_DIAG_OFFSET,
3060 &reg_data);
3061 if (ret_val)
3062 return;
3063 reg_data |= E1000_KMRNCTRLSTA_DIAG_NELPBK;
3064 ret_val = e1000e_write_kmrn_reg(hw, E1000_KMRNCTRLSTA_DIAG_OFFSET,
3065 reg_data);
3066 if (ret_val)
3067 return;
3068 reg_data &= ~E1000_KMRNCTRLSTA_DIAG_NELPBK;
3069 ret_val = e1000e_write_kmrn_reg(hw, E1000_KMRNCTRLSTA_DIAG_OFFSET,
3070 reg_data);
3071}
3072
3073/**
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003074 * e1000e_disable_gig_wol_ich8lan - disable gig during WoL
3075 * @hw: pointer to the HW structure
3076 *
3077 * During S0 to Sx transition, it is possible the link remains at gig
3078 * instead of negotiating to a lower speed. Before going to Sx, set
3079 * 'LPLU Enabled' and 'Gig Disable' to force link speed negotiation
3080 * to a lower speed.
3081 *
Bruce Allana4f58f52009-06-02 11:29:18 +00003082 * Should only be called for applicable parts.
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003083 **/
3084void e1000e_disable_gig_wol_ich8lan(struct e1000_hw *hw)
3085{
3086 u32 phy_ctrl;
3087
Bruce Allana4f58f52009-06-02 11:29:18 +00003088 switch (hw->mac.type) {
Bruce Allan9e135a22009-12-01 15:50:31 +00003089 case e1000_ich8lan:
Bruce Allana4f58f52009-06-02 11:29:18 +00003090 case e1000_ich9lan:
3091 case e1000_ich10lan:
3092 case e1000_pchlan:
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003093 phy_ctrl = er32(PHY_CTRL);
3094 phy_ctrl |= E1000_PHY_CTRL_D0A_LPLU |
3095 E1000_PHY_CTRL_GBE_DISABLE;
3096 ew32(PHY_CTRL, phy_ctrl);
Bruce Allana4f58f52009-06-02 11:29:18 +00003097
Bruce Allana4f58f52009-06-02 11:29:18 +00003098 if (hw->mac.type == e1000_pchlan)
Bruce Allan74eee2e2009-10-22 21:22:18 -07003099 e1000_phy_hw_reset_ich8lan(hw);
Bruce Allana4f58f52009-06-02 11:29:18 +00003100 default:
3101 break;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003102 }
3103
3104 return;
3105}
3106
3107/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07003108 * e1000_cleanup_led_ich8lan - Restore the default LED operation
3109 * @hw: pointer to the HW structure
3110 *
3111 * Return the LED back to the default configuration.
3112 **/
3113static s32 e1000_cleanup_led_ich8lan(struct e1000_hw *hw)
3114{
3115 if (hw->phy.type == e1000_phy_ife)
3116 return e1e_wphy(hw, IFE_PHY_SPECIAL_CONTROL_LED, 0);
3117
3118 ew32(LEDCTL, hw->mac.ledctl_default);
3119 return 0;
3120}
3121
3122/**
Auke Kok489815c2008-02-21 15:11:07 -08003123 * e1000_led_on_ich8lan - Turn LEDs on
Auke Kokbc7f75f2007-09-17 12:30:59 -07003124 * @hw: pointer to the HW structure
3125 *
Auke Kok489815c2008-02-21 15:11:07 -08003126 * Turn on the LEDs.
Auke Kokbc7f75f2007-09-17 12:30:59 -07003127 **/
3128static s32 e1000_led_on_ich8lan(struct e1000_hw *hw)
3129{
3130 if (hw->phy.type == e1000_phy_ife)
3131 return e1e_wphy(hw, IFE_PHY_SPECIAL_CONTROL_LED,
3132 (IFE_PSCL_PROBE_MODE | IFE_PSCL_PROBE_LEDS_ON));
3133
3134 ew32(LEDCTL, hw->mac.ledctl_mode2);
3135 return 0;
3136}
3137
3138/**
Auke Kok489815c2008-02-21 15:11:07 -08003139 * e1000_led_off_ich8lan - Turn LEDs off
Auke Kokbc7f75f2007-09-17 12:30:59 -07003140 * @hw: pointer to the HW structure
3141 *
Auke Kok489815c2008-02-21 15:11:07 -08003142 * Turn off the LEDs.
Auke Kokbc7f75f2007-09-17 12:30:59 -07003143 **/
3144static s32 e1000_led_off_ich8lan(struct e1000_hw *hw)
3145{
3146 if (hw->phy.type == e1000_phy_ife)
3147 return e1e_wphy(hw, IFE_PHY_SPECIAL_CONTROL_LED,
3148 (IFE_PSCL_PROBE_MODE | IFE_PSCL_PROBE_LEDS_OFF));
3149
3150 ew32(LEDCTL, hw->mac.ledctl_mode1);
3151 return 0;
3152}
3153
3154/**
Bruce Allana4f58f52009-06-02 11:29:18 +00003155 * e1000_setup_led_pchlan - Configures SW controllable LED
3156 * @hw: pointer to the HW structure
3157 *
3158 * This prepares the SW controllable LED for use.
3159 **/
3160static s32 e1000_setup_led_pchlan(struct e1000_hw *hw)
3161{
Bruce Allan94d81862009-11-20 23:25:26 +00003162 return hw->phy.ops.write_reg(hw, HV_LED_CONFIG,
Bruce Allana4f58f52009-06-02 11:29:18 +00003163 (u16)hw->mac.ledctl_mode1);
3164}
3165
3166/**
3167 * e1000_cleanup_led_pchlan - Restore the default LED operation
3168 * @hw: pointer to the HW structure
3169 *
3170 * Return the LED back to the default configuration.
3171 **/
3172static s32 e1000_cleanup_led_pchlan(struct e1000_hw *hw)
3173{
Bruce Allan94d81862009-11-20 23:25:26 +00003174 return hw->phy.ops.write_reg(hw, HV_LED_CONFIG,
Bruce Allana4f58f52009-06-02 11:29:18 +00003175 (u16)hw->mac.ledctl_default);
3176}
3177
3178/**
3179 * e1000_led_on_pchlan - Turn LEDs on
3180 * @hw: pointer to the HW structure
3181 *
3182 * Turn on the LEDs.
3183 **/
3184static s32 e1000_led_on_pchlan(struct e1000_hw *hw)
3185{
3186 u16 data = (u16)hw->mac.ledctl_mode2;
3187 u32 i, led;
3188
3189 /*
3190 * If no link, then turn LED on by setting the invert bit
3191 * for each LED that's mode is "link_up" in ledctl_mode2.
3192 */
3193 if (!(er32(STATUS) & E1000_STATUS_LU)) {
3194 for (i = 0; i < 3; i++) {
3195 led = (data >> (i * 5)) & E1000_PHY_LED0_MASK;
3196 if ((led & E1000_PHY_LED0_MODE_MASK) !=
3197 E1000_LEDCTL_MODE_LINK_UP)
3198 continue;
3199 if (led & E1000_PHY_LED0_IVRT)
3200 data &= ~(E1000_PHY_LED0_IVRT << (i * 5));
3201 else
3202 data |= (E1000_PHY_LED0_IVRT << (i * 5));
3203 }
3204 }
3205
Bruce Allan94d81862009-11-20 23:25:26 +00003206 return hw->phy.ops.write_reg(hw, HV_LED_CONFIG, data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003207}
3208
3209/**
3210 * e1000_led_off_pchlan - Turn LEDs off
3211 * @hw: pointer to the HW structure
3212 *
3213 * Turn off the LEDs.
3214 **/
3215static s32 e1000_led_off_pchlan(struct e1000_hw *hw)
3216{
3217 u16 data = (u16)hw->mac.ledctl_mode1;
3218 u32 i, led;
3219
3220 /*
3221 * If no link, then turn LED off by clearing the invert bit
3222 * for each LED that's mode is "link_up" in ledctl_mode1.
3223 */
3224 if (!(er32(STATUS) & E1000_STATUS_LU)) {
3225 for (i = 0; i < 3; i++) {
3226 led = (data >> (i * 5)) & E1000_PHY_LED0_MASK;
3227 if ((led & E1000_PHY_LED0_MODE_MASK) !=
3228 E1000_LEDCTL_MODE_LINK_UP)
3229 continue;
3230 if (led & E1000_PHY_LED0_IVRT)
3231 data &= ~(E1000_PHY_LED0_IVRT << (i * 5));
3232 else
3233 data |= (E1000_PHY_LED0_IVRT << (i * 5));
3234 }
3235 }
3236
Bruce Allan94d81862009-11-20 23:25:26 +00003237 return hw->phy.ops.write_reg(hw, HV_LED_CONFIG, data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003238}
3239
3240/**
Bruce Allanf4187b52008-08-26 18:36:50 -07003241 * e1000_get_cfg_done_ich8lan - Read config done bit
3242 * @hw: pointer to the HW structure
3243 *
3244 * Read the management control register for the config done bit for
3245 * completion status. NOTE: silicon which is EEPROM-less will fail trying
3246 * to read the config done bit, so an error is *ONLY* logged and returns
Bruce Allana4f58f52009-06-02 11:29:18 +00003247 * 0. If we were to return with error, EEPROM-less silicon
Bruce Allanf4187b52008-08-26 18:36:50 -07003248 * would not be able to be reset or change link.
3249 **/
3250static s32 e1000_get_cfg_done_ich8lan(struct e1000_hw *hw)
3251{
3252 u32 bank = 0;
3253
Bruce Allanfc0c7762009-07-01 13:27:55 +00003254 if (hw->mac.type >= e1000_pchlan) {
3255 u32 status = er32(STATUS);
3256
3257 if (status & E1000_STATUS_PHYRA)
3258 ew32(STATUS, status & ~E1000_STATUS_PHYRA);
3259 else
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003260 e_dbg("PHY Reset Asserted not set - needs delay\n");
Bruce Allanfc0c7762009-07-01 13:27:55 +00003261 }
3262
Bruce Allanf4187b52008-08-26 18:36:50 -07003263 e1000e_get_cfg_done(hw);
3264
3265 /* If EEPROM is not marked present, init the IGP 3 PHY manually */
Bruce Allana4f58f52009-06-02 11:29:18 +00003266 if ((hw->mac.type != e1000_ich10lan) &&
3267 (hw->mac.type != e1000_pchlan)) {
Bruce Allanf4187b52008-08-26 18:36:50 -07003268 if (((er32(EECD) & E1000_EECD_PRES) == 0) &&
3269 (hw->phy.type == e1000_phy_igp_3)) {
3270 e1000e_phy_init_script_igp3(hw);
3271 }
3272 } else {
3273 if (e1000_valid_nvm_bank_detect_ich8lan(hw, &bank)) {
3274 /* Maybe we should do a basic PHY config */
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003275 e_dbg("EEPROM not present\n");
Bruce Allanf4187b52008-08-26 18:36:50 -07003276 return -E1000_ERR_CONFIG;
3277 }
3278 }
3279
3280 return 0;
3281}
3282
3283/**
Bruce Allan17f208d2009-12-01 15:47:22 +00003284 * e1000_power_down_phy_copper_ich8lan - Remove link during PHY power down
3285 * @hw: pointer to the HW structure
3286 *
3287 * In the case of a PHY power down to save power, or to turn off link during a
3288 * driver unload, or wake on lan is not enabled, remove the link.
3289 **/
3290static void e1000_power_down_phy_copper_ich8lan(struct e1000_hw *hw)
3291{
3292 /* If the management interface is not enabled, then power down */
3293 if (!(hw->mac.ops.check_mng_mode(hw) ||
3294 hw->phy.ops.check_reset_block(hw)))
3295 e1000_power_down_phy_copper(hw);
3296
3297 return;
3298}
3299
3300/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07003301 * e1000_clear_hw_cntrs_ich8lan - Clear statistical counters
3302 * @hw: pointer to the HW structure
3303 *
3304 * Clears hardware counters specific to the silicon family and calls
3305 * clear_hw_cntrs_generic to clear all general purpose counters.
3306 **/
3307static void e1000_clear_hw_cntrs_ich8lan(struct e1000_hw *hw)
3308{
Bruce Allana4f58f52009-06-02 11:29:18 +00003309 u16 phy_data;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003310
3311 e1000e_clear_hw_cntrs_base(hw);
3312
Bruce Allan99673d92009-11-20 23:27:21 +00003313 er32(ALGNERRC);
3314 er32(RXERRC);
3315 er32(TNCRS);
3316 er32(CEXTERR);
3317 er32(TSCTC);
3318 er32(TSCTFC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003319
Bruce Allan99673d92009-11-20 23:27:21 +00003320 er32(MGTPRC);
3321 er32(MGTPDC);
3322 er32(MGTPTC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003323
Bruce Allan99673d92009-11-20 23:27:21 +00003324 er32(IAC);
3325 er32(ICRXOC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003326
Bruce Allana4f58f52009-06-02 11:29:18 +00003327 /* Clear PHY statistics registers */
3328 if ((hw->phy.type == e1000_phy_82578) ||
3329 (hw->phy.type == e1000_phy_82577)) {
Bruce Allan94d81862009-11-20 23:25:26 +00003330 hw->phy.ops.read_reg(hw, HV_SCC_UPPER, &phy_data);
3331 hw->phy.ops.read_reg(hw, HV_SCC_LOWER, &phy_data);
3332 hw->phy.ops.read_reg(hw, HV_ECOL_UPPER, &phy_data);
3333 hw->phy.ops.read_reg(hw, HV_ECOL_LOWER, &phy_data);
3334 hw->phy.ops.read_reg(hw, HV_MCC_UPPER, &phy_data);
3335 hw->phy.ops.read_reg(hw, HV_MCC_LOWER, &phy_data);
3336 hw->phy.ops.read_reg(hw, HV_LATECOL_UPPER, &phy_data);
3337 hw->phy.ops.read_reg(hw, HV_LATECOL_LOWER, &phy_data);
3338 hw->phy.ops.read_reg(hw, HV_COLC_UPPER, &phy_data);
3339 hw->phy.ops.read_reg(hw, HV_COLC_LOWER, &phy_data);
3340 hw->phy.ops.read_reg(hw, HV_DC_UPPER, &phy_data);
3341 hw->phy.ops.read_reg(hw, HV_DC_LOWER, &phy_data);
3342 hw->phy.ops.read_reg(hw, HV_TNCRS_UPPER, &phy_data);
3343 hw->phy.ops.read_reg(hw, HV_TNCRS_LOWER, &phy_data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003344 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07003345}
3346
3347static struct e1000_mac_operations ich8_mac_ops = {
Bruce Allana4f58f52009-06-02 11:29:18 +00003348 .id_led_init = e1000e_id_led_init,
Bruce Allan4662e822008-08-26 18:37:06 -07003349 .check_mng_mode = e1000_check_mng_mode_ich8lan,
Bruce Allan7d3cabb2009-07-01 13:29:08 +00003350 .check_for_link = e1000_check_for_copper_link_ich8lan,
Bruce Allana4f58f52009-06-02 11:29:18 +00003351 /* cleanup_led dependent on mac type */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003352 .clear_hw_cntrs = e1000_clear_hw_cntrs_ich8lan,
3353 .get_bus_info = e1000_get_bus_info_ich8lan,
3354 .get_link_up_info = e1000_get_link_up_info_ich8lan,
Bruce Allana4f58f52009-06-02 11:29:18 +00003355 /* led_on dependent on mac type */
3356 /* led_off dependent on mac type */
Jeff Kirshere2de3eb2008-03-28 09:15:11 -07003357 .update_mc_addr_list = e1000e_update_mc_addr_list_generic,
Auke Kokbc7f75f2007-09-17 12:30:59 -07003358 .reset_hw = e1000_reset_hw_ich8lan,
3359 .init_hw = e1000_init_hw_ich8lan,
3360 .setup_link = e1000_setup_link_ich8lan,
3361 .setup_physical_interface= e1000_setup_copper_link_ich8lan,
Bruce Allana4f58f52009-06-02 11:29:18 +00003362 /* id_led_init dependent on mac type */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003363};
3364
3365static struct e1000_phy_operations ich8_phy_ops = {
Bruce Allan94d81862009-11-20 23:25:26 +00003366 .acquire = e1000_acquire_swflag_ich8lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07003367 .check_reset_block = e1000_check_reset_block_ich8lan,
Bruce Allan94d81862009-11-20 23:25:26 +00003368 .commit = NULL,
Bruce Allanf4187b52008-08-26 18:36:50 -07003369 .get_cfg_done = e1000_get_cfg_done_ich8lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07003370 .get_cable_length = e1000e_get_cable_length_igp_2,
Bruce Allan94d81862009-11-20 23:25:26 +00003371 .read_reg = e1000e_read_phy_reg_igp,
3372 .release = e1000_release_swflag_ich8lan,
3373 .reset = e1000_phy_hw_reset_ich8lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07003374 .set_d0_lplu_state = e1000_set_d0_lplu_state_ich8lan,
3375 .set_d3_lplu_state = e1000_set_d3_lplu_state_ich8lan,
Bruce Allan94d81862009-11-20 23:25:26 +00003376 .write_reg = e1000e_write_phy_reg_igp,
Auke Kokbc7f75f2007-09-17 12:30:59 -07003377};
3378
3379static struct e1000_nvm_operations ich8_nvm_ops = {
Bruce Allan94d81862009-11-20 23:25:26 +00003380 .acquire = e1000_acquire_nvm_ich8lan,
3381 .read = e1000_read_nvm_ich8lan,
3382 .release = e1000_release_nvm_ich8lan,
3383 .update = e1000_update_nvm_checksum_ich8lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07003384 .valid_led_default = e1000_valid_led_default_ich8lan,
Bruce Allan94d81862009-11-20 23:25:26 +00003385 .validate = e1000_validate_nvm_checksum_ich8lan,
3386 .write = e1000_write_nvm_ich8lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07003387};
3388
3389struct e1000_info e1000_ich8_info = {
3390 .mac = e1000_ich8lan,
3391 .flags = FLAG_HAS_WOL
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003392 | FLAG_IS_ICH
Auke Kokbc7f75f2007-09-17 12:30:59 -07003393 | FLAG_RX_CSUM_ENABLED
3394 | FLAG_HAS_CTRLEXT_ON_LOAD
3395 | FLAG_HAS_AMT
3396 | FLAG_HAS_FLASH
3397 | FLAG_APME_IN_WUC,
3398 .pba = 8,
Bruce Allan2adc55c2009-06-02 11:28:58 +00003399 .max_hw_frame_size = ETH_FRAME_LEN + ETH_FCS_LEN,
Jeff Kirsher69e3fd82008-04-02 13:48:18 -07003400 .get_variants = e1000_get_variants_ich8lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07003401 .mac_ops = &ich8_mac_ops,
3402 .phy_ops = &ich8_phy_ops,
3403 .nvm_ops = &ich8_nvm_ops,
3404};
3405
3406struct e1000_info e1000_ich9_info = {
3407 .mac = e1000_ich9lan,
3408 .flags = FLAG_HAS_JUMBO_FRAMES
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003409 | FLAG_IS_ICH
Auke Kokbc7f75f2007-09-17 12:30:59 -07003410 | FLAG_HAS_WOL
3411 | FLAG_RX_CSUM_ENABLED
3412 | FLAG_HAS_CTRLEXT_ON_LOAD
3413 | FLAG_HAS_AMT
3414 | FLAG_HAS_ERT
3415 | FLAG_HAS_FLASH
3416 | FLAG_APME_IN_WUC,
3417 .pba = 10,
Bruce Allan2adc55c2009-06-02 11:28:58 +00003418 .max_hw_frame_size = DEFAULT_JUMBO,
Jeff Kirsher69e3fd82008-04-02 13:48:18 -07003419 .get_variants = e1000_get_variants_ich8lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07003420 .mac_ops = &ich8_mac_ops,
3421 .phy_ops = &ich8_phy_ops,
3422 .nvm_ops = &ich8_nvm_ops,
3423};
3424
Bruce Allanf4187b52008-08-26 18:36:50 -07003425struct e1000_info e1000_ich10_info = {
3426 .mac = e1000_ich10lan,
3427 .flags = FLAG_HAS_JUMBO_FRAMES
3428 | FLAG_IS_ICH
3429 | FLAG_HAS_WOL
3430 | FLAG_RX_CSUM_ENABLED
3431 | FLAG_HAS_CTRLEXT_ON_LOAD
3432 | FLAG_HAS_AMT
3433 | FLAG_HAS_ERT
3434 | FLAG_HAS_FLASH
3435 | FLAG_APME_IN_WUC,
3436 .pba = 10,
Bruce Allan2adc55c2009-06-02 11:28:58 +00003437 .max_hw_frame_size = DEFAULT_JUMBO,
Bruce Allanf4187b52008-08-26 18:36:50 -07003438 .get_variants = e1000_get_variants_ich8lan,
3439 .mac_ops = &ich8_mac_ops,
3440 .phy_ops = &ich8_phy_ops,
3441 .nvm_ops = &ich8_nvm_ops,
3442};
Bruce Allana4f58f52009-06-02 11:29:18 +00003443
3444struct e1000_info e1000_pch_info = {
3445 .mac = e1000_pchlan,
3446 .flags = FLAG_IS_ICH
3447 | FLAG_HAS_WOL
3448 | FLAG_RX_CSUM_ENABLED
3449 | FLAG_HAS_CTRLEXT_ON_LOAD
3450 | FLAG_HAS_AMT
3451 | FLAG_HAS_FLASH
3452 | FLAG_HAS_JUMBO_FRAMES
Bruce Allan38eb3942009-11-19 12:34:20 +00003453 | FLAG_DISABLE_FC_PAUSE_TIME /* errata */
Bruce Allana4f58f52009-06-02 11:29:18 +00003454 | FLAG_APME_IN_WUC,
3455 .pba = 26,
3456 .max_hw_frame_size = 4096,
3457 .get_variants = e1000_get_variants_ich8lan,
3458 .mac_ops = &ich8_mac_ops,
3459 .phy_ops = &ich8_phy_ops,
3460 .nvm_ops = &ich8_nvm_ops,
3461};