blob: 7530fc5d81c3d334a6ff5ca5772ad25bb324081d [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
Auke Kokbc7f75f2007-09-17 12:30:59 -0700141/* ICH GbE Flash Hardware Sequencing Flash Status Register bit breakdown */
142/* Offset 04h HSFSTS */
143union ich8_hws_flash_status {
144 struct ich8_hsfsts {
145 u16 flcdone :1; /* bit 0 Flash Cycle Done */
146 u16 flcerr :1; /* bit 1 Flash Cycle Error */
147 u16 dael :1; /* bit 2 Direct Access error Log */
148 u16 berasesz :2; /* bit 4:3 Sector Erase Size */
149 u16 flcinprog :1; /* bit 5 flash cycle in Progress */
150 u16 reserved1 :2; /* bit 13:6 Reserved */
151 u16 reserved2 :6; /* bit 13:6 Reserved */
152 u16 fldesvalid :1; /* bit 14 Flash Descriptor Valid */
153 u16 flockdn :1; /* bit 15 Flash Config Lock-Down */
154 } hsf_status;
155 u16 regval;
156};
157
158/* ICH GbE Flash Hardware Sequencing Flash control Register bit breakdown */
159/* Offset 06h FLCTL */
160union ich8_hws_flash_ctrl {
161 struct ich8_hsflctl {
162 u16 flcgo :1; /* 0 Flash Cycle Go */
163 u16 flcycle :2; /* 2:1 Flash Cycle */
164 u16 reserved :5; /* 7:3 Reserved */
165 u16 fldbcount :2; /* 9:8 Flash Data Byte Count */
166 u16 flockdn :6; /* 15:10 Reserved */
167 } hsf_ctrl;
168 u16 regval;
169};
170
171/* ICH Flash Region Access Permissions */
172union ich8_hws_flash_regacc {
173 struct ich8_flracc {
174 u32 grra :8; /* 0:7 GbE region Read Access */
175 u32 grwa :8; /* 8:15 GbE region Write Access */
176 u32 gmrag :8; /* 23:16 GbE Master Read Access Grant */
177 u32 gmwag :8; /* 31:24 GbE Master Write Access Grant */
178 } hsf_flregacc;
179 u16 regval;
180};
181
Bruce Allan4a770352008-10-01 17:18:35 -0700182/* ICH Flash Protected Region */
183union ich8_flash_protected_range {
184 struct ich8_pr {
185 u32 base:13; /* 0:12 Protected Range Base */
186 u32 reserved1:2; /* 13:14 Reserved */
187 u32 rpe:1; /* 15 Read Protection Enable */
188 u32 limit:13; /* 16:28 Protected Range Limit */
189 u32 reserved2:2; /* 29:30 Reserved */
190 u32 wpe:1; /* 31 Write Protection Enable */
191 } range;
192 u32 regval;
193};
194
Auke Kokbc7f75f2007-09-17 12:30:59 -0700195static s32 e1000_setup_link_ich8lan(struct e1000_hw *hw);
196static void e1000_clear_hw_cntrs_ich8lan(struct e1000_hw *hw);
197static void e1000_initialize_hw_bits_ich8lan(struct e1000_hw *hw);
198static s32 e1000_check_polarity_ife_ich8lan(struct e1000_hw *hw);
199static s32 e1000_erase_flash_bank_ich8lan(struct e1000_hw *hw, u32 bank);
200static s32 e1000_retry_write_flash_byte_ich8lan(struct e1000_hw *hw,
201 u32 offset, u8 byte);
Bruce Allanf4187b52008-08-26 18:36:50 -0700202static s32 e1000_read_flash_byte_ich8lan(struct e1000_hw *hw, u32 offset,
203 u8 *data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700204static s32 e1000_read_flash_word_ich8lan(struct e1000_hw *hw, u32 offset,
205 u16 *data);
206static s32 e1000_read_flash_data_ich8lan(struct e1000_hw *hw, u32 offset,
207 u8 size, u16 *data);
208static s32 e1000_setup_copper_link_ich8lan(struct e1000_hw *hw);
209static s32 e1000_kmrn_lock_loss_workaround_ich8lan(struct e1000_hw *hw);
Bruce Allanf4187b52008-08-26 18:36:50 -0700210static s32 e1000_get_cfg_done_ich8lan(struct e1000_hw *hw);
Bruce Allana4f58f52009-06-02 11:29:18 +0000211static s32 e1000_cleanup_led_ich8lan(struct e1000_hw *hw);
212static s32 e1000_led_on_ich8lan(struct e1000_hw *hw);
213static s32 e1000_led_off_ich8lan(struct e1000_hw *hw);
214static s32 e1000_id_led_init_pchlan(struct e1000_hw *hw);
215static s32 e1000_setup_led_pchlan(struct e1000_hw *hw);
216static s32 e1000_cleanup_led_pchlan(struct e1000_hw *hw);
217static s32 e1000_led_on_pchlan(struct e1000_hw *hw);
218static s32 e1000_led_off_pchlan(struct e1000_hw *hw);
Bruce Allanfa2ce132009-10-26 11:23:25 +0000219static s32 e1000_set_lplu_state_pchlan(struct e1000_hw *hw, bool active);
Bruce Allanf523d212009-10-29 13:45:45 +0000220static void e1000_lan_init_done_ich8lan(struct e1000_hw *hw);
Bruce Allan1d5846b2009-10-29 13:46:05 +0000221static s32 e1000_k1_gig_workaround_hv(struct e1000_hw *hw, bool link);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700222
223static inline u16 __er16flash(struct e1000_hw *hw, unsigned long reg)
224{
225 return readw(hw->flash_address + reg);
226}
227
228static inline u32 __er32flash(struct e1000_hw *hw, unsigned long reg)
229{
230 return readl(hw->flash_address + reg);
231}
232
233static inline void __ew16flash(struct e1000_hw *hw, unsigned long reg, u16 val)
234{
235 writew(val, hw->flash_address + reg);
236}
237
238static inline void __ew32flash(struct e1000_hw *hw, unsigned long reg, u32 val)
239{
240 writel(val, hw->flash_address + reg);
241}
242
243#define er16flash(reg) __er16flash(hw, (reg))
244#define er32flash(reg) __er32flash(hw, (reg))
245#define ew16flash(reg,val) __ew16flash(hw, (reg), (val))
246#define ew32flash(reg,val) __ew32flash(hw, (reg), (val))
247
248/**
Bruce Allana4f58f52009-06-02 11:29:18 +0000249 * e1000_init_phy_params_pchlan - Initialize PHY function pointers
250 * @hw: pointer to the HW structure
251 *
252 * Initialize family-specific PHY parameters and function pointers.
253 **/
254static s32 e1000_init_phy_params_pchlan(struct e1000_hw *hw)
255{
256 struct e1000_phy_info *phy = &hw->phy;
257 s32 ret_val = 0;
258
259 phy->addr = 1;
260 phy->reset_delay_us = 100;
261
262 phy->ops.check_polarity = e1000_check_polarity_ife_ich8lan;
Bruce Allan94d81862009-11-20 23:25:26 +0000263 phy->ops.read_reg = e1000_read_phy_reg_hv;
264 phy->ops.read_reg_locked = e1000_read_phy_reg_hv_locked;
Bruce Allanfa2ce132009-10-26 11:23:25 +0000265 phy->ops.set_d0_lplu_state = e1000_set_lplu_state_pchlan;
266 phy->ops.set_d3_lplu_state = e1000_set_lplu_state_pchlan;
Bruce Allan94d81862009-11-20 23:25:26 +0000267 phy->ops.write_reg = e1000_write_phy_reg_hv;
268 phy->ops.write_reg_locked = e1000_write_phy_reg_hv_locked;
Bruce Allana4f58f52009-06-02 11:29:18 +0000269 phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT;
270
271 phy->id = e1000_phy_unknown;
272 e1000e_get_phy_id(hw);
273 phy->type = e1000e_get_phy_type_from_id(phy->id);
274
275 if (phy->type == e1000_phy_82577) {
276 phy->ops.check_polarity = e1000_check_polarity_82577;
277 phy->ops.force_speed_duplex =
278 e1000_phy_force_speed_duplex_82577;
279 phy->ops.get_cable_length = e1000_get_cable_length_82577;
Bruce Allan94d81862009-11-20 23:25:26 +0000280 phy->ops.get_info = e1000_get_phy_info_82577;
281 phy->ops.commit = e1000e_phy_sw_reset;
Bruce Allana4f58f52009-06-02 11:29:18 +0000282 }
283
284 return ret_val;
285}
286
287/**
Auke Kokbc7f75f2007-09-17 12:30:59 -0700288 * e1000_init_phy_params_ich8lan - Initialize PHY function pointers
289 * @hw: pointer to the HW structure
290 *
291 * Initialize family-specific PHY parameters and function pointers.
292 **/
293static s32 e1000_init_phy_params_ich8lan(struct e1000_hw *hw)
294{
295 struct e1000_phy_info *phy = &hw->phy;
296 s32 ret_val;
297 u16 i = 0;
298
299 phy->addr = 1;
300 phy->reset_delay_us = 100;
301
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700302 /*
303 * We may need to do this twice - once for IGP and if that fails,
304 * we'll set BM func pointers and try again
305 */
306 ret_val = e1000e_determine_phy_address(hw);
307 if (ret_val) {
Bruce Allan94d81862009-11-20 23:25:26 +0000308 phy->ops.write_reg = e1000e_write_phy_reg_bm;
309 phy->ops.read_reg = e1000e_read_phy_reg_bm;
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700310 ret_val = e1000e_determine_phy_address(hw);
311 if (ret_val)
312 return ret_val;
313 }
314
Auke Kokbc7f75f2007-09-17 12:30:59 -0700315 phy->id = 0;
316 while ((e1000_phy_unknown == e1000e_get_phy_type_from_id(phy->id)) &&
317 (i++ < 100)) {
318 msleep(1);
319 ret_val = e1000e_get_phy_id(hw);
320 if (ret_val)
321 return ret_val;
322 }
323
324 /* Verify phy id */
325 switch (phy->id) {
326 case IGP03E1000_E_PHY_ID:
327 phy->type = e1000_phy_igp_3;
328 phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT;
Bruce Allan94d81862009-11-20 23:25:26 +0000329 phy->ops.read_reg_locked = e1000e_read_phy_reg_igp_locked;
330 phy->ops.write_reg_locked = e1000e_write_phy_reg_igp_locked;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700331 break;
332 case IFE_E_PHY_ID:
333 case IFE_PLUS_E_PHY_ID:
334 case IFE_C_E_PHY_ID:
335 phy->type = e1000_phy_ife;
336 phy->autoneg_mask = E1000_ALL_NOT_GIG;
337 break;
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700338 case BME1000_E_PHY_ID:
339 phy->type = e1000_phy_bm;
340 phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT;
Bruce Allan94d81862009-11-20 23:25:26 +0000341 phy->ops.read_reg = e1000e_read_phy_reg_bm;
342 phy->ops.write_reg = e1000e_write_phy_reg_bm;
343 phy->ops.commit = e1000e_phy_sw_reset;
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700344 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700345 default:
346 return -E1000_ERR_PHY;
347 break;
348 }
349
Bruce Allana4f58f52009-06-02 11:29:18 +0000350 phy->ops.check_polarity = e1000_check_polarity_ife_ich8lan;
351
Auke Kokbc7f75f2007-09-17 12:30:59 -0700352 return 0;
353}
354
355/**
356 * e1000_init_nvm_params_ich8lan - Initialize NVM function pointers
357 * @hw: pointer to the HW structure
358 *
359 * Initialize family-specific NVM parameters and function
360 * pointers.
361 **/
362static s32 e1000_init_nvm_params_ich8lan(struct e1000_hw *hw)
363{
364 struct e1000_nvm_info *nvm = &hw->nvm;
365 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
Bruce Allan148675a2009-08-07 07:41:56 +0000366 u32 gfpreg, sector_base_addr, sector_end_addr;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700367 u16 i;
368
Bruce Allanad680762008-03-28 09:15:03 -0700369 /* Can't read flash registers if the register set isn't mapped. */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700370 if (!hw->flash_address) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000371 e_dbg("ERROR: Flash registers not mapped\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700372 return -E1000_ERR_CONFIG;
373 }
374
375 nvm->type = e1000_nvm_flash_sw;
376
377 gfpreg = er32flash(ICH_FLASH_GFPREG);
378
Bruce Allanad680762008-03-28 09:15:03 -0700379 /*
380 * sector_X_addr is a "sector"-aligned address (4096 bytes)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700381 * Add 1 to sector_end_addr since this sector is included in
Bruce Allanad680762008-03-28 09:15:03 -0700382 * the overall size.
383 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700384 sector_base_addr = gfpreg & FLASH_GFPREG_BASE_MASK;
385 sector_end_addr = ((gfpreg >> 16) & FLASH_GFPREG_BASE_MASK) + 1;
386
387 /* flash_base_addr is byte-aligned */
388 nvm->flash_base_addr = sector_base_addr << FLASH_SECTOR_ADDR_SHIFT;
389
Bruce Allanad680762008-03-28 09:15:03 -0700390 /*
391 * find total size of the NVM, then cut in half since the total
392 * size represents two separate NVM banks.
393 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700394 nvm->flash_bank_size = (sector_end_addr - sector_base_addr)
395 << FLASH_SECTOR_ADDR_SHIFT;
396 nvm->flash_bank_size /= 2;
397 /* Adjust to word count */
398 nvm->flash_bank_size /= sizeof(u16);
399
400 nvm->word_size = E1000_ICH8_SHADOW_RAM_WORDS;
401
402 /* Clear shadow ram */
403 for (i = 0; i < nvm->word_size; i++) {
Bruce Allan564ea9b2009-11-20 23:26:44 +0000404 dev_spec->shadow_ram[i].modified = false;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700405 dev_spec->shadow_ram[i].value = 0xFFFF;
406 }
407
408 return 0;
409}
410
411/**
412 * e1000_init_mac_params_ich8lan - Initialize MAC function pointers
413 * @hw: pointer to the HW structure
414 *
415 * Initialize family-specific MAC parameters and function
416 * pointers.
417 **/
418static s32 e1000_init_mac_params_ich8lan(struct e1000_adapter *adapter)
419{
420 struct e1000_hw *hw = &adapter->hw;
421 struct e1000_mac_info *mac = &hw->mac;
422
423 /* Set media type function pointer */
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700424 hw->phy.media_type = e1000_media_type_copper;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700425
426 /* Set mta register count */
427 mac->mta_reg_count = 32;
428 /* Set rar entry count */
429 mac->rar_entry_count = E1000_ICH_RAR_ENTRIES;
430 if (mac->type == e1000_ich8lan)
431 mac->rar_entry_count--;
432 /* Set if manageability features are enabled. */
Bruce Allan564ea9b2009-11-20 23:26:44 +0000433 mac->arc_subsystem_valid = true;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700434
Bruce Allana4f58f52009-06-02 11:29:18 +0000435 /* LED operations */
436 switch (mac->type) {
437 case e1000_ich8lan:
438 case e1000_ich9lan:
439 case e1000_ich10lan:
440 /* ID LED init */
441 mac->ops.id_led_init = e1000e_id_led_init;
442 /* setup LED */
443 mac->ops.setup_led = e1000e_setup_led_generic;
444 /* cleanup LED */
445 mac->ops.cleanup_led = e1000_cleanup_led_ich8lan;
446 /* turn on/off LED */
447 mac->ops.led_on = e1000_led_on_ich8lan;
448 mac->ops.led_off = e1000_led_off_ich8lan;
449 break;
450 case e1000_pchlan:
451 /* ID LED init */
452 mac->ops.id_led_init = e1000_id_led_init_pchlan;
453 /* setup LED */
454 mac->ops.setup_led = e1000_setup_led_pchlan;
455 /* cleanup LED */
456 mac->ops.cleanup_led = e1000_cleanup_led_pchlan;
457 /* turn on/off LED */
458 mac->ops.led_on = e1000_led_on_pchlan;
459 mac->ops.led_off = e1000_led_off_pchlan;
460 break;
461 default:
462 break;
463 }
464
Auke Kokbc7f75f2007-09-17 12:30:59 -0700465 /* Enable PCS Lock-loss workaround for ICH8 */
466 if (mac->type == e1000_ich8lan)
Bruce Allan564ea9b2009-11-20 23:26:44 +0000467 e1000e_set_kmrn_lock_loss_workaround_ich8lan(hw, true);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700468
469 return 0;
470}
471
Bruce Allan7d3cabb2009-07-01 13:29:08 +0000472/**
473 * e1000_check_for_copper_link_ich8lan - Check for link (Copper)
474 * @hw: pointer to the HW structure
475 *
476 * Checks to see of the link status of the hardware has changed. If a
477 * change in link status has been detected, then we read the PHY registers
478 * to get the current speed/duplex if link exists.
479 **/
480static s32 e1000_check_for_copper_link_ich8lan(struct e1000_hw *hw)
481{
482 struct e1000_mac_info *mac = &hw->mac;
483 s32 ret_val;
484 bool link;
485
486 /*
487 * We only want to go out to the PHY registers to see if Auto-Neg
488 * has completed and/or if our link status has changed. The
489 * get_link_status flag is set upon receiving a Link Status
490 * Change or Rx Sequence Error interrupt.
491 */
492 if (!mac->get_link_status) {
493 ret_val = 0;
494 goto out;
495 }
496
Bruce Allan7d3cabb2009-07-01 13:29:08 +0000497 /*
498 * First we want to see if the MII Status Register reports
499 * link. If so, then we want to get the current speed/duplex
500 * of the PHY.
501 */
502 ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link);
503 if (ret_val)
504 goto out;
505
Bruce Allan1d5846b2009-10-29 13:46:05 +0000506 if (hw->mac.type == e1000_pchlan) {
507 ret_val = e1000_k1_gig_workaround_hv(hw, link);
508 if (ret_val)
509 goto out;
510 }
511
Bruce Allan7d3cabb2009-07-01 13:29:08 +0000512 if (!link)
513 goto out; /* No link detected */
514
515 mac->get_link_status = false;
516
517 if (hw->phy.type == e1000_phy_82578) {
518 ret_val = e1000_link_stall_workaround_hv(hw);
519 if (ret_val)
520 goto out;
521 }
522
523 /*
524 * Check if there was DownShift, must be checked
525 * immediately after link-up
526 */
527 e1000e_check_downshift(hw);
528
529 /*
530 * If we are forcing speed/duplex, then we simply return since
531 * we have already determined whether we have link or not.
532 */
533 if (!mac->autoneg) {
534 ret_val = -E1000_ERR_CONFIG;
535 goto out;
536 }
537
538 /*
539 * Auto-Neg is enabled. Auto Speed Detection takes care
540 * of MAC speed/duplex configuration. So we only need to
541 * configure Collision Distance in the MAC.
542 */
543 e1000e_config_collision_dist(hw);
544
545 /*
546 * Configure Flow Control now that Auto-Neg has completed.
547 * First, we need to restore the desired flow control
548 * settings because we may have had to re-autoneg with a
549 * different link partner.
550 */
551 ret_val = e1000e_config_fc_after_link_up(hw);
552 if (ret_val)
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000553 e_dbg("Error configuring flow control\n");
Bruce Allan7d3cabb2009-07-01 13:29:08 +0000554
555out:
556 return ret_val;
557}
558
Jeff Kirsher69e3fd82008-04-02 13:48:18 -0700559static s32 e1000_get_variants_ich8lan(struct e1000_adapter *adapter)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700560{
561 struct e1000_hw *hw = &adapter->hw;
562 s32 rc;
563
564 rc = e1000_init_mac_params_ich8lan(adapter);
565 if (rc)
566 return rc;
567
568 rc = e1000_init_nvm_params_ich8lan(hw);
569 if (rc)
570 return rc;
571
Bruce Allana4f58f52009-06-02 11:29:18 +0000572 if (hw->mac.type == e1000_pchlan)
573 rc = e1000_init_phy_params_pchlan(hw);
574 else
575 rc = e1000_init_phy_params_ich8lan(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700576 if (rc)
577 return rc;
578
Bruce Allan2adc55c2009-06-02 11:28:58 +0000579 if (adapter->hw.phy.type == e1000_phy_ife) {
580 adapter->flags &= ~FLAG_HAS_JUMBO_FRAMES;
581 adapter->max_hw_frame_size = ETH_FRAME_LEN + ETH_FCS_LEN;
582 }
583
Auke Kokbc7f75f2007-09-17 12:30:59 -0700584 if ((adapter->hw.mac.type == e1000_ich8lan) &&
585 (adapter->hw.phy.type == e1000_phy_igp_3))
586 adapter->flags |= FLAG_LSC_GIG_SPEED_DROP;
587
588 return 0;
589}
590
Thomas Gleixner717d4382008-10-02 16:33:40 -0700591static DEFINE_MUTEX(nvm_mutex);
Thomas Gleixner717d4382008-10-02 16:33:40 -0700592
Auke Kokbc7f75f2007-09-17 12:30:59 -0700593/**
Bruce Allanca15df52009-10-26 11:23:43 +0000594 * e1000_acquire_nvm_ich8lan - Acquire NVM mutex
595 * @hw: pointer to the HW structure
596 *
597 * Acquires the mutex for performing NVM operations.
598 **/
599static s32 e1000_acquire_nvm_ich8lan(struct e1000_hw *hw)
600{
601 mutex_lock(&nvm_mutex);
602
603 return 0;
604}
605
606/**
607 * e1000_release_nvm_ich8lan - Release NVM mutex
608 * @hw: pointer to the HW structure
609 *
610 * Releases the mutex used while performing NVM operations.
611 **/
612static void e1000_release_nvm_ich8lan(struct e1000_hw *hw)
613{
614 mutex_unlock(&nvm_mutex);
615
616 return;
617}
618
619static DEFINE_MUTEX(swflag_mutex);
620
621/**
Auke Kokbc7f75f2007-09-17 12:30:59 -0700622 * e1000_acquire_swflag_ich8lan - Acquire software control flag
623 * @hw: pointer to the HW structure
624 *
Bruce Allanca15df52009-10-26 11:23:43 +0000625 * Acquires the software control flag for performing PHY and select
626 * MAC CSR accesses.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700627 **/
628static s32 e1000_acquire_swflag_ich8lan(struct e1000_hw *hw)
629{
Bruce Allan373a88d2009-08-07 07:41:37 +0000630 u32 extcnf_ctrl, timeout = PHY_CFG_TIMEOUT;
631 s32 ret_val = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700632
Bruce Allanca15df52009-10-26 11:23:43 +0000633 mutex_lock(&swflag_mutex);
Thomas Gleixner717d4382008-10-02 16:33:40 -0700634
Auke Kokbc7f75f2007-09-17 12:30:59 -0700635 while (timeout) {
636 extcnf_ctrl = er32(EXTCNF_CTRL);
Bruce Allan373a88d2009-08-07 07:41:37 +0000637 if (!(extcnf_ctrl & E1000_EXTCNF_CTRL_SWFLAG))
638 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700639
Auke Kokbc7f75f2007-09-17 12:30:59 -0700640 mdelay(1);
641 timeout--;
642 }
643
644 if (!timeout) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000645 e_dbg("SW/FW/HW has locked the resource for too long.\n");
Bruce Allan373a88d2009-08-07 07:41:37 +0000646 ret_val = -E1000_ERR_CONFIG;
647 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700648 }
649
Bruce Allan53ac5a82009-10-26 11:23:06 +0000650 timeout = SW_FLAG_TIMEOUT;
Bruce Allan373a88d2009-08-07 07:41:37 +0000651
652 extcnf_ctrl |= E1000_EXTCNF_CTRL_SWFLAG;
653 ew32(EXTCNF_CTRL, extcnf_ctrl);
654
655 while (timeout) {
656 extcnf_ctrl = er32(EXTCNF_CTRL);
657 if (extcnf_ctrl & E1000_EXTCNF_CTRL_SWFLAG)
658 break;
659
660 mdelay(1);
661 timeout--;
662 }
663
664 if (!timeout) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000665 e_dbg("Failed to acquire the semaphore.\n");
Bruce Allan373a88d2009-08-07 07:41:37 +0000666 extcnf_ctrl &= ~E1000_EXTCNF_CTRL_SWFLAG;
667 ew32(EXTCNF_CTRL, extcnf_ctrl);
668 ret_val = -E1000_ERR_CONFIG;
669 goto out;
670 }
671
672out:
673 if (ret_val)
Bruce Allanca15df52009-10-26 11:23:43 +0000674 mutex_unlock(&swflag_mutex);
Bruce Allan373a88d2009-08-07 07:41:37 +0000675
676 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700677}
678
679/**
680 * e1000_release_swflag_ich8lan - Release software control flag
681 * @hw: pointer to the HW structure
682 *
Bruce Allanca15df52009-10-26 11:23:43 +0000683 * Releases the software control flag for performing PHY and select
684 * MAC CSR accesses.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700685 **/
686static void e1000_release_swflag_ich8lan(struct e1000_hw *hw)
687{
688 u32 extcnf_ctrl;
689
690 extcnf_ctrl = er32(EXTCNF_CTRL);
691 extcnf_ctrl &= ~E1000_EXTCNF_CTRL_SWFLAG;
692 ew32(EXTCNF_CTRL, extcnf_ctrl);
Thomas Gleixner717d4382008-10-02 16:33:40 -0700693
Bruce Allanca15df52009-10-26 11:23:43 +0000694 mutex_unlock(&swflag_mutex);
695
696 return;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700697}
698
699/**
Bruce Allan4662e822008-08-26 18:37:06 -0700700 * e1000_check_mng_mode_ich8lan - Checks management mode
701 * @hw: pointer to the HW structure
702 *
703 * This checks if the adapter has manageability enabled.
704 * This is a function pointer entry point only called by read/write
705 * routines for the PHY and NVM parts.
706 **/
707static bool e1000_check_mng_mode_ich8lan(struct e1000_hw *hw)
708{
Bruce Allana708dd82009-11-20 23:28:37 +0000709 u32 fwsm;
710
711 fwsm = er32(FWSM);
Bruce Allan4662e822008-08-26 18:37:06 -0700712
713 return (fwsm & E1000_FWSM_MODE_MASK) ==
714 (E1000_ICH_MNG_IAMT_MODE << E1000_FWSM_MODE_SHIFT);
715}
716
717/**
Auke Kokbc7f75f2007-09-17 12:30:59 -0700718 * e1000_check_reset_block_ich8lan - Check if PHY reset is blocked
719 * @hw: pointer to the HW structure
720 *
721 * Checks if firmware is blocking the reset of the PHY.
722 * This is a function pointer entry point only called by
723 * reset routines.
724 **/
725static s32 e1000_check_reset_block_ich8lan(struct e1000_hw *hw)
726{
727 u32 fwsm;
728
729 fwsm = er32(FWSM);
730
731 return (fwsm & E1000_ICH_FWSM_RSPCIPHY) ? 0 : E1000_BLK_PHY_RESET;
732}
733
734/**
735 * e1000_phy_force_speed_duplex_ich8lan - Force PHY speed & duplex
736 * @hw: pointer to the HW structure
737 *
738 * Forces the speed and duplex settings of the PHY.
739 * This is a function pointer entry point only called by
740 * PHY setup routines.
741 **/
742static s32 e1000_phy_force_speed_duplex_ich8lan(struct e1000_hw *hw)
743{
744 struct e1000_phy_info *phy = &hw->phy;
745 s32 ret_val;
746 u16 data;
747 bool link;
748
749 if (phy->type != e1000_phy_ife) {
750 ret_val = e1000e_phy_force_speed_duplex_igp(hw);
751 return ret_val;
752 }
753
754 ret_val = e1e_rphy(hw, PHY_CONTROL, &data);
755 if (ret_val)
756 return ret_val;
757
758 e1000e_phy_force_speed_duplex_setup(hw, &data);
759
760 ret_val = e1e_wphy(hw, PHY_CONTROL, data);
761 if (ret_val)
762 return ret_val;
763
764 /* Disable MDI-X support for 10/100 */
765 ret_val = e1e_rphy(hw, IFE_PHY_MDIX_CONTROL, &data);
766 if (ret_val)
767 return ret_val;
768
769 data &= ~IFE_PMC_AUTO_MDIX;
770 data &= ~IFE_PMC_FORCE_MDIX;
771
772 ret_val = e1e_wphy(hw, IFE_PHY_MDIX_CONTROL, data);
773 if (ret_val)
774 return ret_val;
775
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000776 e_dbg("IFE PMC: %X\n", data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700777
778 udelay(1);
779
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700780 if (phy->autoneg_wait_to_complete) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000781 e_dbg("Waiting for forced speed/duplex link on IFE phy.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700782
783 ret_val = e1000e_phy_has_link_generic(hw,
784 PHY_FORCE_LIMIT,
785 100000,
786 &link);
787 if (ret_val)
788 return ret_val;
789
790 if (!link)
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000791 e_dbg("Link taking longer than expected.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700792
793 /* Try once more */
794 ret_val = e1000e_phy_has_link_generic(hw,
795 PHY_FORCE_LIMIT,
796 100000,
797 &link);
798 if (ret_val)
799 return ret_val;
800 }
801
802 return 0;
803}
804
805/**
Bruce Allanf523d212009-10-29 13:45:45 +0000806 * e1000_sw_lcd_config_ich8lan - SW-based LCD Configuration
807 * @hw: pointer to the HW structure
808 *
809 * SW should configure the LCD from the NVM extended configuration region
810 * as a workaround for certain parts.
811 **/
812static s32 e1000_sw_lcd_config_ich8lan(struct e1000_hw *hw)
813{
814 struct e1000_phy_info *phy = &hw->phy;
815 u32 i, data, cnf_size, cnf_base_addr, sw_cfg_mask;
816 s32 ret_val;
817 u16 word_addr, reg_data, reg_addr, phy_page = 0;
818
Bruce Allan94d81862009-11-20 23:25:26 +0000819 ret_val = hw->phy.ops.acquire(hw);
Bruce Allanf523d212009-10-29 13:45:45 +0000820 if (ret_val)
821 return ret_val;
822
823 /*
824 * Initialize the PHY from the NVM on ICH platforms. This
825 * is needed due to an issue where the NVM configuration is
826 * not properly autoloaded after power transitions.
827 * Therefore, after each PHY reset, we will load the
828 * configuration data out of the NVM manually.
829 */
830 if ((hw->mac.type == e1000_ich8lan && phy->type == e1000_phy_igp_3) ||
831 (hw->mac.type == e1000_pchlan)) {
832 struct e1000_adapter *adapter = hw->adapter;
833
834 /* Check if SW needs to configure the PHY */
835 if ((adapter->pdev->device == E1000_DEV_ID_ICH8_IGP_M_AMT) ||
836 (adapter->pdev->device == E1000_DEV_ID_ICH8_IGP_M) ||
837 (hw->mac.type == e1000_pchlan))
838 sw_cfg_mask = E1000_FEXTNVM_SW_CONFIG_ICH8M;
839 else
840 sw_cfg_mask = E1000_FEXTNVM_SW_CONFIG;
841
842 data = er32(FEXTNVM);
843 if (!(data & sw_cfg_mask))
844 goto out;
845
846 /* Wait for basic configuration completes before proceeding */
847 e1000_lan_init_done_ich8lan(hw);
848
849 /*
850 * Make sure HW does not configure LCD from PHY
851 * extended configuration before SW configuration
852 */
853 data = er32(EXTCNF_CTRL);
854 if (data & E1000_EXTCNF_CTRL_LCD_WRITE_ENABLE)
855 goto out;
856
857 cnf_size = er32(EXTCNF_SIZE);
858 cnf_size &= E1000_EXTCNF_SIZE_EXT_PCIE_LENGTH_MASK;
859 cnf_size >>= E1000_EXTCNF_SIZE_EXT_PCIE_LENGTH_SHIFT;
860 if (!cnf_size)
861 goto out;
862
863 cnf_base_addr = data & E1000_EXTCNF_CTRL_EXT_CNF_POINTER_MASK;
864 cnf_base_addr >>= E1000_EXTCNF_CTRL_EXT_CNF_POINTER_SHIFT;
865
866 if (!(data & E1000_EXTCNF_CTRL_OEM_WRITE_ENABLE) &&
867 (hw->mac.type == e1000_pchlan)) {
868 /*
869 * HW configures the SMBus address and LEDs when the
870 * OEM and LCD Write Enable bits are set in the NVM.
871 * When both NVM bits are cleared, SW will configure
872 * them instead.
873 */
874 data = er32(STRAP);
875 data &= E1000_STRAP_SMBUS_ADDRESS_MASK;
876 reg_data = data >> E1000_STRAP_SMBUS_ADDRESS_SHIFT;
877 reg_data |= HV_SMB_ADDR_PEC_EN | HV_SMB_ADDR_VALID;
878 ret_val = e1000_write_phy_reg_hv_locked(hw, HV_SMB_ADDR,
879 reg_data);
880 if (ret_val)
881 goto out;
882
883 data = er32(LEDCTL);
884 ret_val = e1000_write_phy_reg_hv_locked(hw,
885 HV_LED_CONFIG,
886 (u16)data);
887 if (ret_val)
888 goto out;
889 }
890 /* Configure LCD from extended configuration region. */
891
892 /* cnf_base_addr is in DWORD */
893 word_addr = (u16)(cnf_base_addr << 1);
894
895 for (i = 0; i < cnf_size; i++) {
896 ret_val = e1000_read_nvm(hw, (word_addr + i * 2), 1,
897 &reg_data);
898 if (ret_val)
899 goto out;
900
901 ret_val = e1000_read_nvm(hw, (word_addr + i * 2 + 1),
902 1, &reg_addr);
903 if (ret_val)
904 goto out;
905
906 /* Save off the PHY page for future writes. */
907 if (reg_addr == IGP01E1000_PHY_PAGE_SELECT) {
908 phy_page = reg_data;
909 continue;
910 }
911
912 reg_addr &= PHY_REG_MASK;
913 reg_addr |= phy_page;
914
Bruce Allan94d81862009-11-20 23:25:26 +0000915 ret_val = phy->ops.write_reg_locked(hw,
Bruce Allanf523d212009-10-29 13:45:45 +0000916 (u32)reg_addr,
917 reg_data);
918 if (ret_val)
919 goto out;
920 }
921 }
922
923out:
Bruce Allan94d81862009-11-20 23:25:26 +0000924 hw->phy.ops.release(hw);
Bruce Allanf523d212009-10-29 13:45:45 +0000925 return ret_val;
926}
927
928/**
Bruce Allan1d5846b2009-10-29 13:46:05 +0000929 * e1000_k1_gig_workaround_hv - K1 Si workaround
930 * @hw: pointer to the HW structure
931 * @link: link up bool flag
932 *
933 * If K1 is enabled for 1Gbps, the MAC might stall when transitioning
934 * from a lower speed. This workaround disables K1 whenever link is at 1Gig
935 * If link is down, the function will restore the default K1 setting located
936 * in the NVM.
937 **/
938static s32 e1000_k1_gig_workaround_hv(struct e1000_hw *hw, bool link)
939{
940 s32 ret_val = 0;
941 u16 status_reg = 0;
942 bool k1_enable = hw->dev_spec.ich8lan.nvm_k1_enabled;
943
944 if (hw->mac.type != e1000_pchlan)
945 goto out;
946
947 /* Wrap the whole flow with the sw flag */
Bruce Allan94d81862009-11-20 23:25:26 +0000948 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan1d5846b2009-10-29 13:46:05 +0000949 if (ret_val)
950 goto out;
951
952 /* Disable K1 when link is 1Gbps, otherwise use the NVM setting */
953 if (link) {
954 if (hw->phy.type == e1000_phy_82578) {
Bruce Allan94d81862009-11-20 23:25:26 +0000955 ret_val = hw->phy.ops.read_reg_locked(hw, BM_CS_STATUS,
Bruce Allan1d5846b2009-10-29 13:46:05 +0000956 &status_reg);
957 if (ret_val)
958 goto release;
959
960 status_reg &= BM_CS_STATUS_LINK_UP |
961 BM_CS_STATUS_RESOLVED |
962 BM_CS_STATUS_SPEED_MASK;
963
964 if (status_reg == (BM_CS_STATUS_LINK_UP |
965 BM_CS_STATUS_RESOLVED |
966 BM_CS_STATUS_SPEED_1000))
967 k1_enable = false;
968 }
969
970 if (hw->phy.type == e1000_phy_82577) {
Bruce Allan94d81862009-11-20 23:25:26 +0000971 ret_val = hw->phy.ops.read_reg_locked(hw, HV_M_STATUS,
Bruce Allan1d5846b2009-10-29 13:46:05 +0000972 &status_reg);
973 if (ret_val)
974 goto release;
975
976 status_reg &= HV_M_STATUS_LINK_UP |
977 HV_M_STATUS_AUTONEG_COMPLETE |
978 HV_M_STATUS_SPEED_MASK;
979
980 if (status_reg == (HV_M_STATUS_LINK_UP |
981 HV_M_STATUS_AUTONEG_COMPLETE |
982 HV_M_STATUS_SPEED_1000))
983 k1_enable = false;
984 }
985
986 /* Link stall fix for link up */
Bruce Allan94d81862009-11-20 23:25:26 +0000987 ret_val = hw->phy.ops.write_reg_locked(hw, PHY_REG(770, 19),
Bruce Allan1d5846b2009-10-29 13:46:05 +0000988 0x0100);
989 if (ret_val)
990 goto release;
991
992 } else {
993 /* Link stall fix for link down */
Bruce Allan94d81862009-11-20 23:25:26 +0000994 ret_val = hw->phy.ops.write_reg_locked(hw, PHY_REG(770, 19),
Bruce Allan1d5846b2009-10-29 13:46:05 +0000995 0x4100);
996 if (ret_val)
997 goto release;
998 }
999
1000 ret_val = e1000_configure_k1_ich8lan(hw, k1_enable);
1001
1002release:
Bruce Allan94d81862009-11-20 23:25:26 +00001003 hw->phy.ops.release(hw);
Bruce Allan1d5846b2009-10-29 13:46:05 +00001004out:
1005 return ret_val;
1006}
1007
1008/**
1009 * e1000_configure_k1_ich8lan - Configure K1 power state
1010 * @hw: pointer to the HW structure
1011 * @enable: K1 state to configure
1012 *
1013 * Configure the K1 power state based on the provided parameter.
1014 * Assumes semaphore already acquired.
1015 *
1016 * Success returns 0, Failure returns -E1000_ERR_PHY (-2)
1017 **/
Bruce Allanbb436b22009-11-20 23:24:11 +00001018s32 e1000_configure_k1_ich8lan(struct e1000_hw *hw, bool k1_enable)
Bruce Allan1d5846b2009-10-29 13:46:05 +00001019{
1020 s32 ret_val = 0;
1021 u32 ctrl_reg = 0;
1022 u32 ctrl_ext = 0;
1023 u32 reg = 0;
1024 u16 kmrn_reg = 0;
1025
1026 ret_val = e1000e_read_kmrn_reg_locked(hw,
1027 E1000_KMRNCTRLSTA_K1_CONFIG,
1028 &kmrn_reg);
1029 if (ret_val)
1030 goto out;
1031
1032 if (k1_enable)
1033 kmrn_reg |= E1000_KMRNCTRLSTA_K1_ENABLE;
1034 else
1035 kmrn_reg &= ~E1000_KMRNCTRLSTA_K1_ENABLE;
1036
1037 ret_val = e1000e_write_kmrn_reg_locked(hw,
1038 E1000_KMRNCTRLSTA_K1_CONFIG,
1039 kmrn_reg);
1040 if (ret_val)
1041 goto out;
1042
1043 udelay(20);
1044 ctrl_ext = er32(CTRL_EXT);
1045 ctrl_reg = er32(CTRL);
1046
1047 reg = ctrl_reg & ~(E1000_CTRL_SPD_1000 | E1000_CTRL_SPD_100);
1048 reg |= E1000_CTRL_FRCSPD;
1049 ew32(CTRL, reg);
1050
1051 ew32(CTRL_EXT, ctrl_ext | E1000_CTRL_EXT_SPD_BYPS);
1052 udelay(20);
1053 ew32(CTRL, ctrl_reg);
1054 ew32(CTRL_EXT, ctrl_ext);
1055 udelay(20);
1056
1057out:
1058 return ret_val;
1059}
1060
1061/**
Bruce Allanf523d212009-10-29 13:45:45 +00001062 * e1000_oem_bits_config_ich8lan - SW-based LCD Configuration
1063 * @hw: pointer to the HW structure
1064 * @d0_state: boolean if entering d0 or d3 device state
1065 *
1066 * SW will configure Gbe Disable and LPLU based on the NVM. The four bits are
1067 * collectively called OEM bits. The OEM Write Enable bit and SW Config bit
1068 * in NVM determines whether HW should configure LPLU and Gbe Disable.
1069 **/
1070static s32 e1000_oem_bits_config_ich8lan(struct e1000_hw *hw, bool d0_state)
1071{
1072 s32 ret_val = 0;
1073 u32 mac_reg;
1074 u16 oem_reg;
1075
1076 if (hw->mac.type != e1000_pchlan)
1077 return ret_val;
1078
Bruce Allan94d81862009-11-20 23:25:26 +00001079 ret_val = hw->phy.ops.acquire(hw);
Bruce Allanf523d212009-10-29 13:45:45 +00001080 if (ret_val)
1081 return ret_val;
1082
1083 mac_reg = er32(EXTCNF_CTRL);
1084 if (mac_reg & E1000_EXTCNF_CTRL_OEM_WRITE_ENABLE)
1085 goto out;
1086
1087 mac_reg = er32(FEXTNVM);
1088 if (!(mac_reg & E1000_FEXTNVM_SW_CONFIG_ICH8M))
1089 goto out;
1090
1091 mac_reg = er32(PHY_CTRL);
1092
Bruce Allan94d81862009-11-20 23:25:26 +00001093 ret_val = hw->phy.ops.read_reg_locked(hw, HV_OEM_BITS, &oem_reg);
Bruce Allanf523d212009-10-29 13:45:45 +00001094 if (ret_val)
1095 goto out;
1096
1097 oem_reg &= ~(HV_OEM_BITS_GBE_DIS | HV_OEM_BITS_LPLU);
1098
1099 if (d0_state) {
1100 if (mac_reg & E1000_PHY_CTRL_GBE_DISABLE)
1101 oem_reg |= HV_OEM_BITS_GBE_DIS;
1102
1103 if (mac_reg & E1000_PHY_CTRL_D0A_LPLU)
1104 oem_reg |= HV_OEM_BITS_LPLU;
1105 } else {
1106 if (mac_reg & E1000_PHY_CTRL_NOND0A_GBE_DISABLE)
1107 oem_reg |= HV_OEM_BITS_GBE_DIS;
1108
1109 if (mac_reg & E1000_PHY_CTRL_NOND0A_LPLU)
1110 oem_reg |= HV_OEM_BITS_LPLU;
1111 }
1112 /* Restart auto-neg to activate the bits */
Bruce Allan818f3332009-11-19 14:17:30 +00001113 if (!e1000_check_reset_block(hw))
1114 oem_reg |= HV_OEM_BITS_RESTART_AN;
Bruce Allan94d81862009-11-20 23:25:26 +00001115 ret_val = hw->phy.ops.write_reg_locked(hw, HV_OEM_BITS, oem_reg);
Bruce Allanf523d212009-10-29 13:45:45 +00001116
1117out:
Bruce Allan94d81862009-11-20 23:25:26 +00001118 hw->phy.ops.release(hw);
Bruce Allanf523d212009-10-29 13:45:45 +00001119
1120 return ret_val;
1121}
1122
1123
1124/**
Bruce Allana4f58f52009-06-02 11:29:18 +00001125 * e1000_hv_phy_workarounds_ich8lan - A series of Phy workarounds to be
1126 * done after every PHY reset.
1127 **/
1128static s32 e1000_hv_phy_workarounds_ich8lan(struct e1000_hw *hw)
1129{
1130 s32 ret_val = 0;
1131
1132 if (hw->mac.type != e1000_pchlan)
1133 return ret_val;
1134
1135 if (((hw->phy.type == e1000_phy_82577) &&
1136 ((hw->phy.revision == 1) || (hw->phy.revision == 2))) ||
1137 ((hw->phy.type == e1000_phy_82578) && (hw->phy.revision == 1))) {
1138 /* Disable generation of early preamble */
1139 ret_val = e1e_wphy(hw, PHY_REG(769, 25), 0x4431);
1140 if (ret_val)
1141 return ret_val;
1142
1143 /* Preamble tuning for SSC */
1144 ret_val = e1e_wphy(hw, PHY_REG(770, 16), 0xA204);
1145 if (ret_val)
1146 return ret_val;
1147 }
1148
1149 if (hw->phy.type == e1000_phy_82578) {
1150 /*
1151 * Return registers to default by doing a soft reset then
1152 * writing 0x3140 to the control register.
1153 */
1154 if (hw->phy.revision < 2) {
1155 e1000e_phy_sw_reset(hw);
1156 ret_val = e1e_wphy(hw, PHY_CONTROL, 0x3140);
1157 }
1158 }
1159
1160 /* Select page 0 */
Bruce Allan94d81862009-11-20 23:25:26 +00001161 ret_val = hw->phy.ops.acquire(hw);
Bruce Allana4f58f52009-06-02 11:29:18 +00001162 if (ret_val)
1163 return ret_val;
Bruce Allan1d5846b2009-10-29 13:46:05 +00001164
Bruce Allana4f58f52009-06-02 11:29:18 +00001165 hw->phy.addr = 1;
Bruce Allan1d5846b2009-10-29 13:46:05 +00001166 ret_val = e1000e_write_phy_reg_mdic(hw, IGP01E1000_PHY_PAGE_SELECT, 0);
1167 if (ret_val)
1168 goto out;
Bruce Allan94d81862009-11-20 23:25:26 +00001169 hw->phy.ops.release(hw);
Bruce Allana4f58f52009-06-02 11:29:18 +00001170
Bruce Allan1d5846b2009-10-29 13:46:05 +00001171 /*
1172 * Configure the K1 Si workaround during phy reset assuming there is
1173 * link so that it disables K1 if link is in 1Gbps.
1174 */
1175 ret_val = e1000_k1_gig_workaround_hv(hw, true);
1176
1177out:
Bruce Allana4f58f52009-06-02 11:29:18 +00001178 return ret_val;
1179}
1180
1181/**
Bruce Allanfc0c7762009-07-01 13:27:55 +00001182 * e1000_lan_init_done_ich8lan - Check for PHY config completion
1183 * @hw: pointer to the HW structure
1184 *
1185 * Check the appropriate indication the MAC has finished configuring the
1186 * PHY after a software reset.
1187 **/
1188static void e1000_lan_init_done_ich8lan(struct e1000_hw *hw)
1189{
1190 u32 data, loop = E1000_ICH8_LAN_INIT_TIMEOUT;
1191
1192 /* Wait for basic configuration completes before proceeding */
1193 do {
1194 data = er32(STATUS);
1195 data &= E1000_STATUS_LAN_INIT_DONE;
1196 udelay(100);
1197 } while ((!data) && --loop);
1198
1199 /*
1200 * If basic configuration is incomplete before the above loop
1201 * count reaches 0, loading the configuration from NVM will
1202 * leave the PHY in a bad state possibly resulting in no link.
1203 */
1204 if (loop == 0)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001205 e_dbg("LAN_INIT_DONE not set, increase timeout\n");
Bruce Allanfc0c7762009-07-01 13:27:55 +00001206
1207 /* Clear the Init Done bit for the next init event */
1208 data = er32(STATUS);
1209 data &= ~E1000_STATUS_LAN_INIT_DONE;
1210 ew32(STATUS, data);
1211}
1212
1213/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001214 * e1000_phy_hw_reset_ich8lan - Performs a PHY reset
1215 * @hw: pointer to the HW structure
1216 *
1217 * Resets the PHY
1218 * This is a function pointer entry point called by drivers
1219 * or other shared routines.
1220 **/
1221static s32 e1000_phy_hw_reset_ich8lan(struct e1000_hw *hw)
1222{
Bruce Allanf523d212009-10-29 13:45:45 +00001223 s32 ret_val = 0;
1224 u16 reg;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001225
1226 ret_val = e1000e_phy_hw_reset_generic(hw);
1227 if (ret_val)
1228 return ret_val;
1229
Bruce Allanfc0c7762009-07-01 13:27:55 +00001230 /* Allow time for h/w to get to a quiescent state after reset */
1231 mdelay(10);
1232
Bruce Allana4f58f52009-06-02 11:29:18 +00001233 if (hw->mac.type == e1000_pchlan) {
1234 ret_val = e1000_hv_phy_workarounds_ich8lan(hw);
1235 if (ret_val)
1236 return ret_val;
1237 }
1238
Bruce Allandb2932e2009-10-26 11:22:47 +00001239 /* Dummy read to clear the phy wakeup bit after lcd reset */
1240 if (hw->mac.type == e1000_pchlan)
1241 e1e_rphy(hw, BM_WUC, &reg);
1242
Bruce Allanf523d212009-10-29 13:45:45 +00001243 /* Configure the LCD with the extended configuration region in NVM */
1244 ret_val = e1000_sw_lcd_config_ich8lan(hw);
1245 if (ret_val)
1246 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001247
Bruce Allanf523d212009-10-29 13:45:45 +00001248 /* Configure the LCD with the OEM bits in NVM */
1249 if (hw->mac.type == e1000_pchlan)
1250 ret_val = e1000_oem_bits_config_ich8lan(hw, true);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001251
Bruce Allanf523d212009-10-29 13:45:45 +00001252out:
Auke Kokbc7f75f2007-09-17 12:30:59 -07001253 return 0;
1254}
1255
1256/**
1257 * e1000_get_phy_info_ife_ich8lan - Retrieves various IFE PHY states
1258 * @hw: pointer to the HW structure
1259 *
1260 * Populates "phy" structure with various feature states.
1261 * This function is only called by other family-specific
1262 * routines.
1263 **/
1264static s32 e1000_get_phy_info_ife_ich8lan(struct e1000_hw *hw)
1265{
1266 struct e1000_phy_info *phy = &hw->phy;
1267 s32 ret_val;
1268 u16 data;
1269 bool link;
1270
1271 ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link);
1272 if (ret_val)
1273 return ret_val;
1274
1275 if (!link) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001276 e_dbg("Phy info is only valid if link is up\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001277 return -E1000_ERR_CONFIG;
1278 }
1279
1280 ret_val = e1e_rphy(hw, IFE_PHY_SPECIAL_CONTROL, &data);
1281 if (ret_val)
1282 return ret_val;
1283 phy->polarity_correction = (!(data & IFE_PSC_AUTO_POLARITY_DISABLE));
1284
1285 if (phy->polarity_correction) {
Bruce Allana4f58f52009-06-02 11:29:18 +00001286 ret_val = phy->ops.check_polarity(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001287 if (ret_val)
1288 return ret_val;
1289 } else {
1290 /* Polarity is forced */
1291 phy->cable_polarity = (data & IFE_PSC_FORCE_POLARITY)
1292 ? e1000_rev_polarity_reversed
1293 : e1000_rev_polarity_normal;
1294 }
1295
1296 ret_val = e1e_rphy(hw, IFE_PHY_MDIX_CONTROL, &data);
1297 if (ret_val)
1298 return ret_val;
1299
1300 phy->is_mdix = (data & IFE_PMC_MDIX_STATUS);
1301
1302 /* The following parameters are undefined for 10/100 operation. */
1303 phy->cable_length = E1000_CABLE_LENGTH_UNDEFINED;
1304 phy->local_rx = e1000_1000t_rx_status_undefined;
1305 phy->remote_rx = e1000_1000t_rx_status_undefined;
1306
1307 return 0;
1308}
1309
1310/**
1311 * e1000_get_phy_info_ich8lan - Calls appropriate PHY type get_phy_info
1312 * @hw: pointer to the HW structure
1313 *
1314 * Wrapper for calling the get_phy_info routines for the appropriate phy type.
1315 * This is a function pointer entry point called by drivers
1316 * or other shared routines.
1317 **/
1318static s32 e1000_get_phy_info_ich8lan(struct e1000_hw *hw)
1319{
1320 switch (hw->phy.type) {
1321 case e1000_phy_ife:
1322 return e1000_get_phy_info_ife_ich8lan(hw);
1323 break;
1324 case e1000_phy_igp_3:
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001325 case e1000_phy_bm:
Bruce Allana4f58f52009-06-02 11:29:18 +00001326 case e1000_phy_82578:
1327 case e1000_phy_82577:
Auke Kokbc7f75f2007-09-17 12:30:59 -07001328 return e1000e_get_phy_info_igp(hw);
1329 break;
1330 default:
1331 break;
1332 }
1333
1334 return -E1000_ERR_PHY_TYPE;
1335}
1336
1337/**
1338 * e1000_check_polarity_ife_ich8lan - Check cable polarity for IFE PHY
1339 * @hw: pointer to the HW structure
1340 *
Auke Kok489815c2008-02-21 15:11:07 -08001341 * Polarity is determined on the polarity reversal feature being enabled.
Auke Kokbc7f75f2007-09-17 12:30:59 -07001342 * This function is only called by other family-specific
1343 * routines.
1344 **/
1345static s32 e1000_check_polarity_ife_ich8lan(struct e1000_hw *hw)
1346{
1347 struct e1000_phy_info *phy = &hw->phy;
1348 s32 ret_val;
1349 u16 phy_data, offset, mask;
1350
Bruce Allanad680762008-03-28 09:15:03 -07001351 /*
1352 * Polarity is determined based on the reversal feature being enabled.
Auke Kokbc7f75f2007-09-17 12:30:59 -07001353 */
1354 if (phy->polarity_correction) {
1355 offset = IFE_PHY_EXTENDED_STATUS_CONTROL;
1356 mask = IFE_PESC_POLARITY_REVERSED;
1357 } else {
1358 offset = IFE_PHY_SPECIAL_CONTROL;
1359 mask = IFE_PSC_FORCE_POLARITY;
1360 }
1361
1362 ret_val = e1e_rphy(hw, offset, &phy_data);
1363
1364 if (!ret_val)
1365 phy->cable_polarity = (phy_data & mask)
1366 ? e1000_rev_polarity_reversed
1367 : e1000_rev_polarity_normal;
1368
1369 return ret_val;
1370}
1371
1372/**
Bruce Allanfa2ce132009-10-26 11:23:25 +00001373 * e1000_set_lplu_state_pchlan - Set Low Power Link Up state
1374 * @hw: pointer to the HW structure
1375 * @active: true to enable LPLU, false to disable
1376 *
1377 * Sets the LPLU state according to the active flag. For PCH, if OEM write
1378 * bit are disabled in the NVM, writing the LPLU bits in the MAC will not set
1379 * the phy speed. This function will manually set the LPLU bit and restart
1380 * auto-neg as hw would do. D3 and D0 LPLU will call the same function
1381 * since it configures the same bit.
1382 **/
1383static s32 e1000_set_lplu_state_pchlan(struct e1000_hw *hw, bool active)
1384{
1385 s32 ret_val = 0;
1386 u16 oem_reg;
1387
1388 ret_val = e1e_rphy(hw, HV_OEM_BITS, &oem_reg);
1389 if (ret_val)
1390 goto out;
1391
1392 if (active)
1393 oem_reg |= HV_OEM_BITS_LPLU;
1394 else
1395 oem_reg &= ~HV_OEM_BITS_LPLU;
1396
1397 oem_reg |= HV_OEM_BITS_RESTART_AN;
1398 ret_val = e1e_wphy(hw, HV_OEM_BITS, oem_reg);
1399
1400out:
1401 return ret_val;
1402}
1403
1404/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001405 * e1000_set_d0_lplu_state_ich8lan - Set Low Power Linkup D0 state
1406 * @hw: pointer to the HW structure
Bruce Allan564ea9b2009-11-20 23:26:44 +00001407 * @active: true to enable LPLU, false to disable
Auke Kokbc7f75f2007-09-17 12:30:59 -07001408 *
1409 * Sets the LPLU D0 state according to the active flag. When
1410 * activating LPLU this function also disables smart speed
1411 * and vice versa. LPLU will not be activated unless the
1412 * device autonegotiation advertisement meets standards of
1413 * either 10 or 10/100 or 10/100/1000 at all duplexes.
1414 * This is a function pointer entry point only called by
1415 * PHY setup routines.
1416 **/
1417static s32 e1000_set_d0_lplu_state_ich8lan(struct e1000_hw *hw, bool active)
1418{
1419 struct e1000_phy_info *phy = &hw->phy;
1420 u32 phy_ctrl;
1421 s32 ret_val = 0;
1422 u16 data;
1423
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001424 if (phy->type == e1000_phy_ife)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001425 return ret_val;
1426
1427 phy_ctrl = er32(PHY_CTRL);
1428
1429 if (active) {
1430 phy_ctrl |= E1000_PHY_CTRL_D0A_LPLU;
1431 ew32(PHY_CTRL, phy_ctrl);
1432
Bruce Allan60f12922009-07-01 13:28:14 +00001433 if (phy->type != e1000_phy_igp_3)
1434 return 0;
1435
Bruce Allanad680762008-03-28 09:15:03 -07001436 /*
1437 * Call gig speed drop workaround on LPLU before accessing
1438 * any PHY registers
1439 */
Bruce Allan60f12922009-07-01 13:28:14 +00001440 if (hw->mac.type == e1000_ich8lan)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001441 e1000e_gig_downshift_workaround_ich8lan(hw);
1442
1443 /* When LPLU is enabled, we should disable SmartSpeed */
1444 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG, &data);
1445 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
1446 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG, data);
1447 if (ret_val)
1448 return ret_val;
1449 } else {
1450 phy_ctrl &= ~E1000_PHY_CTRL_D0A_LPLU;
1451 ew32(PHY_CTRL, phy_ctrl);
1452
Bruce Allan60f12922009-07-01 13:28:14 +00001453 if (phy->type != e1000_phy_igp_3)
1454 return 0;
1455
Bruce Allanad680762008-03-28 09:15:03 -07001456 /*
1457 * LPLU and SmartSpeed are mutually exclusive. LPLU is used
Auke Kokbc7f75f2007-09-17 12:30:59 -07001458 * during Dx states where the power conservation is most
1459 * important. During driver activity we should enable
Bruce Allanad680762008-03-28 09:15:03 -07001460 * SmartSpeed, so performance is maintained.
1461 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001462 if (phy->smart_speed == e1000_smart_speed_on) {
1463 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -07001464 &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001465 if (ret_val)
1466 return ret_val;
1467
1468 data |= IGP01E1000_PSCFR_SMART_SPEED;
1469 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -07001470 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001471 if (ret_val)
1472 return ret_val;
1473 } else if (phy->smart_speed == e1000_smart_speed_off) {
1474 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -07001475 &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001476 if (ret_val)
1477 return ret_val;
1478
1479 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
1480 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -07001481 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001482 if (ret_val)
1483 return ret_val;
1484 }
1485 }
1486
1487 return 0;
1488}
1489
1490/**
1491 * e1000_set_d3_lplu_state_ich8lan - Set Low Power Linkup D3 state
1492 * @hw: pointer to the HW structure
Bruce Allan564ea9b2009-11-20 23:26:44 +00001493 * @active: true to enable LPLU, false to disable
Auke Kokbc7f75f2007-09-17 12:30:59 -07001494 *
1495 * Sets the LPLU D3 state according to the active flag. When
1496 * activating LPLU this function also disables smart speed
1497 * and vice versa. LPLU will not be activated unless the
1498 * device autonegotiation advertisement meets standards of
1499 * either 10 or 10/100 or 10/100/1000 at all duplexes.
1500 * This is a function pointer entry point only called by
1501 * PHY setup routines.
1502 **/
1503static s32 e1000_set_d3_lplu_state_ich8lan(struct e1000_hw *hw, bool active)
1504{
1505 struct e1000_phy_info *phy = &hw->phy;
1506 u32 phy_ctrl;
1507 s32 ret_val;
1508 u16 data;
1509
1510 phy_ctrl = er32(PHY_CTRL);
1511
1512 if (!active) {
1513 phy_ctrl &= ~E1000_PHY_CTRL_NOND0A_LPLU;
1514 ew32(PHY_CTRL, phy_ctrl);
Bruce Allan60f12922009-07-01 13:28:14 +00001515
1516 if (phy->type != e1000_phy_igp_3)
1517 return 0;
1518
Bruce Allanad680762008-03-28 09:15:03 -07001519 /*
1520 * LPLU and SmartSpeed are mutually exclusive. LPLU is used
Auke Kokbc7f75f2007-09-17 12:30:59 -07001521 * during Dx states where the power conservation is most
1522 * important. During driver activity we should enable
Bruce Allanad680762008-03-28 09:15:03 -07001523 * SmartSpeed, so performance is maintained.
1524 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001525 if (phy->smart_speed == e1000_smart_speed_on) {
Bruce Allanad680762008-03-28 09:15:03 -07001526 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG,
1527 &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001528 if (ret_val)
1529 return ret_val;
1530
1531 data |= IGP01E1000_PSCFR_SMART_SPEED;
Bruce Allanad680762008-03-28 09:15:03 -07001532 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
1533 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001534 if (ret_val)
1535 return ret_val;
1536 } else if (phy->smart_speed == e1000_smart_speed_off) {
Bruce Allanad680762008-03-28 09:15:03 -07001537 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG,
1538 &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001539 if (ret_val)
1540 return ret_val;
1541
1542 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
Bruce Allanad680762008-03-28 09:15:03 -07001543 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
1544 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001545 if (ret_val)
1546 return ret_val;
1547 }
1548 } else if ((phy->autoneg_advertised == E1000_ALL_SPEED_DUPLEX) ||
1549 (phy->autoneg_advertised == E1000_ALL_NOT_GIG) ||
1550 (phy->autoneg_advertised == E1000_ALL_10_SPEED)) {
1551 phy_ctrl |= E1000_PHY_CTRL_NOND0A_LPLU;
1552 ew32(PHY_CTRL, phy_ctrl);
1553
Bruce Allan60f12922009-07-01 13:28:14 +00001554 if (phy->type != e1000_phy_igp_3)
1555 return 0;
1556
Bruce Allanad680762008-03-28 09:15:03 -07001557 /*
1558 * Call gig speed drop workaround on LPLU before accessing
1559 * any PHY registers
1560 */
Bruce Allan60f12922009-07-01 13:28:14 +00001561 if (hw->mac.type == e1000_ich8lan)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001562 e1000e_gig_downshift_workaround_ich8lan(hw);
1563
1564 /* When LPLU is enabled, we should disable SmartSpeed */
Bruce Allanad680762008-03-28 09:15:03 -07001565 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG, &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001566 if (ret_val)
1567 return ret_val;
1568
1569 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
Bruce Allanad680762008-03-28 09:15:03 -07001570 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG, data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001571 }
1572
1573 return 0;
1574}
1575
1576/**
Bruce Allanf4187b52008-08-26 18:36:50 -07001577 * e1000_valid_nvm_bank_detect_ich8lan - finds out the valid bank 0 or 1
1578 * @hw: pointer to the HW structure
1579 * @bank: pointer to the variable that returns the active bank
1580 *
1581 * Reads signature byte from the NVM using the flash access registers.
Bruce Allane2434552008-11-21 17:02:41 -08001582 * Word 0x13 bits 15:14 = 10b indicate a valid signature for that bank.
Bruce Allanf4187b52008-08-26 18:36:50 -07001583 **/
1584static s32 e1000_valid_nvm_bank_detect_ich8lan(struct e1000_hw *hw, u32 *bank)
1585{
Bruce Allane2434552008-11-21 17:02:41 -08001586 u32 eecd;
Bruce Allanf4187b52008-08-26 18:36:50 -07001587 struct e1000_nvm_info *nvm = &hw->nvm;
Bruce Allanf4187b52008-08-26 18:36:50 -07001588 u32 bank1_offset = nvm->flash_bank_size * sizeof(u16);
1589 u32 act_offset = E1000_ICH_NVM_SIG_WORD * 2 + 1;
Bruce Allane2434552008-11-21 17:02:41 -08001590 u8 sig_byte = 0;
1591 s32 ret_val = 0;
Bruce Allanf4187b52008-08-26 18:36:50 -07001592
Bruce Allane2434552008-11-21 17:02:41 -08001593 switch (hw->mac.type) {
1594 case e1000_ich8lan:
1595 case e1000_ich9lan:
1596 eecd = er32(EECD);
1597 if ((eecd & E1000_EECD_SEC1VAL_VALID_MASK) ==
1598 E1000_EECD_SEC1VAL_VALID_MASK) {
1599 if (eecd & E1000_EECD_SEC1VAL)
Bruce Allanf4187b52008-08-26 18:36:50 -07001600 *bank = 1;
Bruce Allane2434552008-11-21 17:02:41 -08001601 else
1602 *bank = 0;
1603
1604 return 0;
Bruce Allanf4187b52008-08-26 18:36:50 -07001605 }
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001606 e_dbg("Unable to determine valid NVM bank via EEC - "
Bruce Allane2434552008-11-21 17:02:41 -08001607 "reading flash signature\n");
1608 /* fall-thru */
1609 default:
1610 /* set bank to 0 in case flash read fails */
1611 *bank = 0;
1612
1613 /* Check bank 0 */
1614 ret_val = e1000_read_flash_byte_ich8lan(hw, act_offset,
1615 &sig_byte);
1616 if (ret_val)
1617 return ret_val;
1618 if ((sig_byte & E1000_ICH_NVM_VALID_SIG_MASK) ==
1619 E1000_ICH_NVM_SIG_VALUE) {
1620 *bank = 0;
1621 return 0;
1622 }
1623
1624 /* Check bank 1 */
1625 ret_val = e1000_read_flash_byte_ich8lan(hw, act_offset +
1626 bank1_offset,
1627 &sig_byte);
1628 if (ret_val)
1629 return ret_val;
1630 if ((sig_byte & E1000_ICH_NVM_VALID_SIG_MASK) ==
1631 E1000_ICH_NVM_SIG_VALUE) {
1632 *bank = 1;
1633 return 0;
1634 }
1635
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001636 e_dbg("ERROR: No valid NVM bank present\n");
Bruce Allane2434552008-11-21 17:02:41 -08001637 return -E1000_ERR_NVM;
Bruce Allanf4187b52008-08-26 18:36:50 -07001638 }
1639
1640 return 0;
1641}
1642
1643/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001644 * e1000_read_nvm_ich8lan - Read word(s) from the NVM
1645 * @hw: pointer to the HW structure
1646 * @offset: The offset (in bytes) of the word(s) to read.
1647 * @words: Size of data to read in words
1648 * @data: Pointer to the word(s) to read at offset.
1649 *
1650 * Reads a word(s) from the NVM using the flash access registers.
1651 **/
1652static s32 e1000_read_nvm_ich8lan(struct e1000_hw *hw, u16 offset, u16 words,
1653 u16 *data)
1654{
1655 struct e1000_nvm_info *nvm = &hw->nvm;
1656 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
1657 u32 act_offset;
Bruce Allan148675a2009-08-07 07:41:56 +00001658 s32 ret_val = 0;
Bruce Allanf4187b52008-08-26 18:36:50 -07001659 u32 bank = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001660 u16 i, word;
1661
1662 if ((offset >= nvm->word_size) || (words > nvm->word_size - offset) ||
1663 (words == 0)) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001664 e_dbg("nvm parameter(s) out of bounds\n");
Bruce Allanca15df52009-10-26 11:23:43 +00001665 ret_val = -E1000_ERR_NVM;
1666 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001667 }
1668
Bruce Allan94d81862009-11-20 23:25:26 +00001669 nvm->ops.acquire(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001670
Bruce Allanf4187b52008-08-26 18:36:50 -07001671 ret_val = e1000_valid_nvm_bank_detect_ich8lan(hw, &bank);
Bruce Allan148675a2009-08-07 07:41:56 +00001672 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001673 e_dbg("Could not detect valid bank, assuming bank 0\n");
Bruce Allan148675a2009-08-07 07:41:56 +00001674 bank = 0;
1675 }
Bruce Allanf4187b52008-08-26 18:36:50 -07001676
1677 act_offset = (bank) ? nvm->flash_bank_size : 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001678 act_offset += offset;
1679
Bruce Allan148675a2009-08-07 07:41:56 +00001680 ret_val = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001681 for (i = 0; i < words; i++) {
1682 if ((dev_spec->shadow_ram) &&
1683 (dev_spec->shadow_ram[offset+i].modified)) {
1684 data[i] = dev_spec->shadow_ram[offset+i].value;
1685 } else {
1686 ret_val = e1000_read_flash_word_ich8lan(hw,
1687 act_offset + i,
1688 &word);
1689 if (ret_val)
1690 break;
1691 data[i] = word;
1692 }
1693 }
1694
Bruce Allan94d81862009-11-20 23:25:26 +00001695 nvm->ops.release(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001696
Bruce Allane2434552008-11-21 17:02:41 -08001697out:
1698 if (ret_val)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001699 e_dbg("NVM read error: %d\n", ret_val);
Bruce Allane2434552008-11-21 17:02:41 -08001700
Auke Kokbc7f75f2007-09-17 12:30:59 -07001701 return ret_val;
1702}
1703
1704/**
1705 * e1000_flash_cycle_init_ich8lan - Initialize flash
1706 * @hw: pointer to the HW structure
1707 *
1708 * This function does initial flash setup so that a new read/write/erase cycle
1709 * can be started.
1710 **/
1711static s32 e1000_flash_cycle_init_ich8lan(struct e1000_hw *hw)
1712{
1713 union ich8_hws_flash_status hsfsts;
1714 s32 ret_val = -E1000_ERR_NVM;
1715 s32 i = 0;
1716
1717 hsfsts.regval = er16flash(ICH_FLASH_HSFSTS);
1718
1719 /* Check if the flash descriptor is valid */
1720 if (hsfsts.hsf_status.fldesvalid == 0) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001721 e_dbg("Flash descriptor invalid. "
Auke Kokbc7f75f2007-09-17 12:30:59 -07001722 "SW Sequencing must be used.");
1723 return -E1000_ERR_NVM;
1724 }
1725
1726 /* Clear FCERR and DAEL in hw status by writing 1 */
1727 hsfsts.hsf_status.flcerr = 1;
1728 hsfsts.hsf_status.dael = 1;
1729
1730 ew16flash(ICH_FLASH_HSFSTS, hsfsts.regval);
1731
Bruce Allanad680762008-03-28 09:15:03 -07001732 /*
1733 * Either we should have a hardware SPI cycle in progress
Auke Kokbc7f75f2007-09-17 12:30:59 -07001734 * bit to check against, in order to start a new cycle or
1735 * FDONE bit should be changed in the hardware so that it
Auke Kok489815c2008-02-21 15:11:07 -08001736 * is 1 after hardware reset, which can then be used as an
Auke Kokbc7f75f2007-09-17 12:30:59 -07001737 * indication whether a cycle is in progress or has been
1738 * completed.
1739 */
1740
1741 if (hsfsts.hsf_status.flcinprog == 0) {
Bruce Allanad680762008-03-28 09:15:03 -07001742 /*
1743 * There is no cycle running at present,
1744 * so we can start a cycle
1745 * Begin by setting Flash Cycle Done.
1746 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001747 hsfsts.hsf_status.flcdone = 1;
1748 ew16flash(ICH_FLASH_HSFSTS, hsfsts.regval);
1749 ret_val = 0;
1750 } else {
Bruce Allanad680762008-03-28 09:15:03 -07001751 /*
1752 * otherwise poll for sometime so the current
1753 * cycle has a chance to end before giving up.
1754 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001755 for (i = 0; i < ICH_FLASH_READ_COMMAND_TIMEOUT; i++) {
1756 hsfsts.regval = __er16flash(hw, ICH_FLASH_HSFSTS);
1757 if (hsfsts.hsf_status.flcinprog == 0) {
1758 ret_val = 0;
1759 break;
1760 }
1761 udelay(1);
1762 }
1763 if (ret_val == 0) {
Bruce Allanad680762008-03-28 09:15:03 -07001764 /*
1765 * Successful in waiting for previous cycle to timeout,
1766 * now set the Flash Cycle Done.
1767 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001768 hsfsts.hsf_status.flcdone = 1;
1769 ew16flash(ICH_FLASH_HSFSTS, hsfsts.regval);
1770 } else {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001771 e_dbg("Flash controller busy, cannot get access");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001772 }
1773 }
1774
1775 return ret_val;
1776}
1777
1778/**
1779 * e1000_flash_cycle_ich8lan - Starts flash cycle (read/write/erase)
1780 * @hw: pointer to the HW structure
1781 * @timeout: maximum time to wait for completion
1782 *
1783 * This function starts a flash cycle and waits for its completion.
1784 **/
1785static s32 e1000_flash_cycle_ich8lan(struct e1000_hw *hw, u32 timeout)
1786{
1787 union ich8_hws_flash_ctrl hsflctl;
1788 union ich8_hws_flash_status hsfsts;
1789 s32 ret_val = -E1000_ERR_NVM;
1790 u32 i = 0;
1791
1792 /* Start a cycle by writing 1 in Flash Cycle Go in Hw Flash Control */
1793 hsflctl.regval = er16flash(ICH_FLASH_HSFCTL);
1794 hsflctl.hsf_ctrl.flcgo = 1;
1795 ew16flash(ICH_FLASH_HSFCTL, hsflctl.regval);
1796
1797 /* wait till FDONE bit is set to 1 */
1798 do {
1799 hsfsts.regval = er16flash(ICH_FLASH_HSFSTS);
1800 if (hsfsts.hsf_status.flcdone == 1)
1801 break;
1802 udelay(1);
1803 } while (i++ < timeout);
1804
1805 if (hsfsts.hsf_status.flcdone == 1 && hsfsts.hsf_status.flcerr == 0)
1806 return 0;
1807
1808 return ret_val;
1809}
1810
1811/**
1812 * e1000_read_flash_word_ich8lan - Read word from flash
1813 * @hw: pointer to the HW structure
1814 * @offset: offset to data location
1815 * @data: pointer to the location for storing the data
1816 *
1817 * Reads the flash word at offset into data. Offset is converted
1818 * to bytes before read.
1819 **/
1820static s32 e1000_read_flash_word_ich8lan(struct e1000_hw *hw, u32 offset,
1821 u16 *data)
1822{
1823 /* Must convert offset into bytes. */
1824 offset <<= 1;
1825
1826 return e1000_read_flash_data_ich8lan(hw, offset, 2, data);
1827}
1828
1829/**
Bruce Allanf4187b52008-08-26 18:36:50 -07001830 * e1000_read_flash_byte_ich8lan - Read byte from flash
1831 * @hw: pointer to the HW structure
1832 * @offset: The offset of the byte to read.
1833 * @data: Pointer to a byte to store the value read.
1834 *
1835 * Reads a single byte from the NVM using the flash access registers.
1836 **/
1837static s32 e1000_read_flash_byte_ich8lan(struct e1000_hw *hw, u32 offset,
1838 u8 *data)
1839{
1840 s32 ret_val;
1841 u16 word = 0;
1842
1843 ret_val = e1000_read_flash_data_ich8lan(hw, offset, 1, &word);
1844 if (ret_val)
1845 return ret_val;
1846
1847 *data = (u8)word;
1848
1849 return 0;
1850}
1851
1852/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001853 * e1000_read_flash_data_ich8lan - Read byte or word from NVM
1854 * @hw: pointer to the HW structure
1855 * @offset: The offset (in bytes) of the byte or word to read.
1856 * @size: Size of data to read, 1=byte 2=word
1857 * @data: Pointer to the word to store the value read.
1858 *
1859 * Reads a byte or word from the NVM using the flash access registers.
1860 **/
1861static s32 e1000_read_flash_data_ich8lan(struct e1000_hw *hw, u32 offset,
1862 u8 size, u16 *data)
1863{
1864 union ich8_hws_flash_status hsfsts;
1865 union ich8_hws_flash_ctrl hsflctl;
1866 u32 flash_linear_addr;
1867 u32 flash_data = 0;
1868 s32 ret_val = -E1000_ERR_NVM;
1869 u8 count = 0;
1870
1871 if (size < 1 || size > 2 || offset > ICH_FLASH_LINEAR_ADDR_MASK)
1872 return -E1000_ERR_NVM;
1873
1874 flash_linear_addr = (ICH_FLASH_LINEAR_ADDR_MASK & offset) +
1875 hw->nvm.flash_base_addr;
1876
1877 do {
1878 udelay(1);
1879 /* Steps */
1880 ret_val = e1000_flash_cycle_init_ich8lan(hw);
1881 if (ret_val != 0)
1882 break;
1883
1884 hsflctl.regval = er16flash(ICH_FLASH_HSFCTL);
1885 /* 0b/1b corresponds to 1 or 2 byte size, respectively. */
1886 hsflctl.hsf_ctrl.fldbcount = size - 1;
1887 hsflctl.hsf_ctrl.flcycle = ICH_CYCLE_READ;
1888 ew16flash(ICH_FLASH_HSFCTL, hsflctl.regval);
1889
1890 ew32flash(ICH_FLASH_FADDR, flash_linear_addr);
1891
1892 ret_val = e1000_flash_cycle_ich8lan(hw,
1893 ICH_FLASH_READ_COMMAND_TIMEOUT);
1894
Bruce Allanad680762008-03-28 09:15:03 -07001895 /*
1896 * Check if FCERR is set to 1, if set to 1, clear it
Auke Kokbc7f75f2007-09-17 12:30:59 -07001897 * and try the whole sequence a few more times, else
1898 * read in (shift in) the Flash Data0, the order is
Bruce Allanad680762008-03-28 09:15:03 -07001899 * least significant byte first msb to lsb
1900 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001901 if (ret_val == 0) {
1902 flash_data = er32flash(ICH_FLASH_FDATA0);
1903 if (size == 1) {
1904 *data = (u8)(flash_data & 0x000000FF);
1905 } else if (size == 2) {
1906 *data = (u16)(flash_data & 0x0000FFFF);
1907 }
1908 break;
1909 } else {
Bruce Allanad680762008-03-28 09:15:03 -07001910 /*
1911 * If we've gotten here, then things are probably
Auke Kokbc7f75f2007-09-17 12:30:59 -07001912 * completely hosed, but if the error condition is
1913 * detected, it won't hurt to give it another try...
1914 * ICH_FLASH_CYCLE_REPEAT_COUNT times.
1915 */
1916 hsfsts.regval = er16flash(ICH_FLASH_HSFSTS);
1917 if (hsfsts.hsf_status.flcerr == 1) {
1918 /* Repeat for some time before giving up. */
1919 continue;
1920 } else if (hsfsts.hsf_status.flcdone == 0) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001921 e_dbg("Timeout error - flash cycle "
Auke Kokbc7f75f2007-09-17 12:30:59 -07001922 "did not complete.");
1923 break;
1924 }
1925 }
1926 } while (count++ < ICH_FLASH_CYCLE_REPEAT_COUNT);
1927
1928 return ret_val;
1929}
1930
1931/**
1932 * e1000_write_nvm_ich8lan - Write word(s) to the NVM
1933 * @hw: pointer to the HW structure
1934 * @offset: The offset (in bytes) of the word(s) to write.
1935 * @words: Size of data to write in words
1936 * @data: Pointer to the word(s) to write at offset.
1937 *
1938 * Writes a byte or word to the NVM using the flash access registers.
1939 **/
1940static s32 e1000_write_nvm_ich8lan(struct e1000_hw *hw, u16 offset, u16 words,
1941 u16 *data)
1942{
1943 struct e1000_nvm_info *nvm = &hw->nvm;
1944 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001945 u16 i;
1946
1947 if ((offset >= nvm->word_size) || (words > nvm->word_size - offset) ||
1948 (words == 0)) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001949 e_dbg("nvm parameter(s) out of bounds\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001950 return -E1000_ERR_NVM;
1951 }
1952
Bruce Allan94d81862009-11-20 23:25:26 +00001953 nvm->ops.acquire(hw);
Bruce Allanca15df52009-10-26 11:23:43 +00001954
Auke Kokbc7f75f2007-09-17 12:30:59 -07001955 for (i = 0; i < words; i++) {
Bruce Allan564ea9b2009-11-20 23:26:44 +00001956 dev_spec->shadow_ram[offset+i].modified = true;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001957 dev_spec->shadow_ram[offset+i].value = data[i];
1958 }
1959
Bruce Allan94d81862009-11-20 23:25:26 +00001960 nvm->ops.release(hw);
Bruce Allanca15df52009-10-26 11:23:43 +00001961
Auke Kokbc7f75f2007-09-17 12:30:59 -07001962 return 0;
1963}
1964
1965/**
1966 * e1000_update_nvm_checksum_ich8lan - Update the checksum for NVM
1967 * @hw: pointer to the HW structure
1968 *
1969 * The NVM checksum is updated by calling the generic update_nvm_checksum,
1970 * which writes the checksum to the shadow ram. The changes in the shadow
1971 * ram are then committed to the EEPROM by processing each bank at a time
1972 * checking for the modified bit and writing only the pending changes.
Auke Kok489815c2008-02-21 15:11:07 -08001973 * After a successful commit, the shadow ram is cleared and is ready for
Auke Kokbc7f75f2007-09-17 12:30:59 -07001974 * future writes.
1975 **/
1976static s32 e1000_update_nvm_checksum_ich8lan(struct e1000_hw *hw)
1977{
1978 struct e1000_nvm_info *nvm = &hw->nvm;
1979 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
Bruce Allanf4187b52008-08-26 18:36:50 -07001980 u32 i, act_offset, new_bank_offset, old_bank_offset, bank;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001981 s32 ret_val;
1982 u16 data;
1983
1984 ret_val = e1000e_update_nvm_checksum_generic(hw);
1985 if (ret_val)
Bruce Allane2434552008-11-21 17:02:41 -08001986 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001987
1988 if (nvm->type != e1000_nvm_flash_sw)
Bruce Allane2434552008-11-21 17:02:41 -08001989 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001990
Bruce Allan94d81862009-11-20 23:25:26 +00001991 nvm->ops.acquire(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001992
Bruce Allanad680762008-03-28 09:15:03 -07001993 /*
1994 * We're writing to the opposite bank so if we're on bank 1,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001995 * write to bank 0 etc. We also need to erase the segment that
Bruce Allanad680762008-03-28 09:15:03 -07001996 * is going to be written
1997 */
Bruce Allanf4187b52008-08-26 18:36:50 -07001998 ret_val = e1000_valid_nvm_bank_detect_ich8lan(hw, &bank);
Bruce Allane2434552008-11-21 17:02:41 -08001999 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002000 e_dbg("Could not detect valid bank, assuming bank 0\n");
Bruce Allan148675a2009-08-07 07:41:56 +00002001 bank = 0;
Bruce Allane2434552008-11-21 17:02:41 -08002002 }
Bruce Allanf4187b52008-08-26 18:36:50 -07002003
2004 if (bank == 0) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07002005 new_bank_offset = nvm->flash_bank_size;
2006 old_bank_offset = 0;
Bruce Allane2434552008-11-21 17:02:41 -08002007 ret_val = e1000_erase_flash_bank_ich8lan(hw, 1);
2008 if (ret_val) {
Bruce Allan94d81862009-11-20 23:25:26 +00002009 nvm->ops.release(hw);
Bruce Allane2434552008-11-21 17:02:41 -08002010 goto out;
2011 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002012 } else {
2013 old_bank_offset = nvm->flash_bank_size;
2014 new_bank_offset = 0;
Bruce Allane2434552008-11-21 17:02:41 -08002015 ret_val = e1000_erase_flash_bank_ich8lan(hw, 0);
2016 if (ret_val) {
Bruce Allan94d81862009-11-20 23:25:26 +00002017 nvm->ops.release(hw);
Bruce Allane2434552008-11-21 17:02:41 -08002018 goto out;
2019 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002020 }
2021
2022 for (i = 0; i < E1000_ICH8_SHADOW_RAM_WORDS; i++) {
Bruce Allanad680762008-03-28 09:15:03 -07002023 /*
2024 * Determine whether to write the value stored
Auke Kokbc7f75f2007-09-17 12:30:59 -07002025 * in the other NVM bank or a modified value stored
Bruce Allanad680762008-03-28 09:15:03 -07002026 * in the shadow RAM
2027 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002028 if (dev_spec->shadow_ram[i].modified) {
2029 data = dev_spec->shadow_ram[i].value;
2030 } else {
Bruce Allane2434552008-11-21 17:02:41 -08002031 ret_val = e1000_read_flash_word_ich8lan(hw, i +
2032 old_bank_offset,
2033 &data);
2034 if (ret_val)
2035 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002036 }
2037
Bruce Allanad680762008-03-28 09:15:03 -07002038 /*
2039 * If the word is 0x13, then make sure the signature bits
Auke Kokbc7f75f2007-09-17 12:30:59 -07002040 * (15:14) are 11b until the commit has completed.
2041 * This will allow us to write 10b which indicates the
2042 * signature is valid. We want to do this after the write
2043 * has completed so that we don't mark the segment valid
Bruce Allanad680762008-03-28 09:15:03 -07002044 * while the write is still in progress
2045 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002046 if (i == E1000_ICH_NVM_SIG_WORD)
2047 data |= E1000_ICH_NVM_SIG_MASK;
2048
2049 /* Convert offset to bytes. */
2050 act_offset = (i + new_bank_offset) << 1;
2051
2052 udelay(100);
2053 /* Write the bytes to the new bank. */
2054 ret_val = e1000_retry_write_flash_byte_ich8lan(hw,
2055 act_offset,
2056 (u8)data);
2057 if (ret_val)
2058 break;
2059
2060 udelay(100);
2061 ret_val = e1000_retry_write_flash_byte_ich8lan(hw,
2062 act_offset + 1,
2063 (u8)(data >> 8));
2064 if (ret_val)
2065 break;
2066 }
2067
Bruce Allanad680762008-03-28 09:15:03 -07002068 /*
2069 * Don't bother writing the segment valid bits if sector
2070 * programming failed.
2071 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002072 if (ret_val) {
Bruce Allan4a770352008-10-01 17:18:35 -07002073 /* Possibly read-only, see e1000e_write_protect_nvm_ich8lan() */
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002074 e_dbg("Flash commit failed.\n");
Bruce Allan94d81862009-11-20 23:25:26 +00002075 nvm->ops.release(hw);
Bruce Allane2434552008-11-21 17:02:41 -08002076 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002077 }
2078
Bruce Allanad680762008-03-28 09:15:03 -07002079 /*
2080 * Finally validate the new segment by setting bit 15:14
Auke Kokbc7f75f2007-09-17 12:30:59 -07002081 * to 10b in word 0x13 , this can be done without an
2082 * erase as well since these bits are 11 to start with
Bruce Allanad680762008-03-28 09:15:03 -07002083 * and we need to change bit 14 to 0b
2084 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002085 act_offset = new_bank_offset + E1000_ICH_NVM_SIG_WORD;
Bruce Allane2434552008-11-21 17:02:41 -08002086 ret_val = e1000_read_flash_word_ich8lan(hw, act_offset, &data);
2087 if (ret_val) {
Bruce Allan94d81862009-11-20 23:25:26 +00002088 nvm->ops.release(hw);
Bruce Allane2434552008-11-21 17:02:41 -08002089 goto out;
2090 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002091 data &= 0xBFFF;
2092 ret_val = e1000_retry_write_flash_byte_ich8lan(hw,
2093 act_offset * 2 + 1,
2094 (u8)(data >> 8));
2095 if (ret_val) {
Bruce Allan94d81862009-11-20 23:25:26 +00002096 nvm->ops.release(hw);
Bruce Allane2434552008-11-21 17:02:41 -08002097 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002098 }
2099
Bruce Allanad680762008-03-28 09:15:03 -07002100 /*
2101 * And invalidate the previously valid segment by setting
Auke Kokbc7f75f2007-09-17 12:30:59 -07002102 * its signature word (0x13) high_byte to 0b. This can be
2103 * done without an erase because flash erase sets all bits
Bruce Allanad680762008-03-28 09:15:03 -07002104 * to 1's. We can write 1's to 0's without an erase
2105 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002106 act_offset = (old_bank_offset + E1000_ICH_NVM_SIG_WORD) * 2 + 1;
2107 ret_val = e1000_retry_write_flash_byte_ich8lan(hw, act_offset, 0);
2108 if (ret_val) {
Bruce Allan94d81862009-11-20 23:25:26 +00002109 nvm->ops.release(hw);
Bruce Allane2434552008-11-21 17:02:41 -08002110 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002111 }
2112
2113 /* Great! Everything worked, we can now clear the cached entries. */
2114 for (i = 0; i < E1000_ICH8_SHADOW_RAM_WORDS; i++) {
Bruce Allan564ea9b2009-11-20 23:26:44 +00002115 dev_spec->shadow_ram[i].modified = false;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002116 dev_spec->shadow_ram[i].value = 0xFFFF;
2117 }
2118
Bruce Allan94d81862009-11-20 23:25:26 +00002119 nvm->ops.release(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002120
Bruce Allanad680762008-03-28 09:15:03 -07002121 /*
2122 * Reload the EEPROM, or else modifications will not appear
Auke Kokbc7f75f2007-09-17 12:30:59 -07002123 * until after the next adapter reset.
2124 */
2125 e1000e_reload_nvm(hw);
2126 msleep(10);
2127
Bruce Allane2434552008-11-21 17:02:41 -08002128out:
2129 if (ret_val)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002130 e_dbg("NVM update error: %d\n", ret_val);
Bruce Allane2434552008-11-21 17:02:41 -08002131
Auke Kokbc7f75f2007-09-17 12:30:59 -07002132 return ret_val;
2133}
2134
2135/**
2136 * e1000_validate_nvm_checksum_ich8lan - Validate EEPROM checksum
2137 * @hw: pointer to the HW structure
2138 *
2139 * Check to see if checksum needs to be fixed by reading bit 6 in word 0x19.
2140 * If the bit is 0, that the EEPROM had been modified, but the checksum was not
2141 * calculated, in which case we need to calculate the checksum and set bit 6.
2142 **/
2143static s32 e1000_validate_nvm_checksum_ich8lan(struct e1000_hw *hw)
2144{
2145 s32 ret_val;
2146 u16 data;
2147
Bruce Allanad680762008-03-28 09:15:03 -07002148 /*
2149 * Read 0x19 and check bit 6. If this bit is 0, the checksum
Auke Kokbc7f75f2007-09-17 12:30:59 -07002150 * needs to be fixed. This bit is an indication that the NVM
2151 * was prepared by OEM software and did not calculate the
2152 * checksum...a likely scenario.
2153 */
2154 ret_val = e1000_read_nvm(hw, 0x19, 1, &data);
2155 if (ret_val)
2156 return ret_val;
2157
2158 if ((data & 0x40) == 0) {
2159 data |= 0x40;
2160 ret_val = e1000_write_nvm(hw, 0x19, 1, &data);
2161 if (ret_val)
2162 return ret_val;
2163 ret_val = e1000e_update_nvm_checksum(hw);
2164 if (ret_val)
2165 return ret_val;
2166 }
2167
2168 return e1000e_validate_nvm_checksum_generic(hw);
2169}
2170
2171/**
Bruce Allan4a770352008-10-01 17:18:35 -07002172 * e1000e_write_protect_nvm_ich8lan - Make the NVM read-only
2173 * @hw: pointer to the HW structure
2174 *
2175 * To prevent malicious write/erase of the NVM, set it to be read-only
2176 * so that the hardware ignores all write/erase cycles of the NVM via
2177 * the flash control registers. The shadow-ram copy of the NVM will
2178 * still be updated, however any updates to this copy will not stick
2179 * across driver reloads.
2180 **/
2181void e1000e_write_protect_nvm_ich8lan(struct e1000_hw *hw)
2182{
Bruce Allanca15df52009-10-26 11:23:43 +00002183 struct e1000_nvm_info *nvm = &hw->nvm;
Bruce Allan4a770352008-10-01 17:18:35 -07002184 union ich8_flash_protected_range pr0;
2185 union ich8_hws_flash_status hsfsts;
2186 u32 gfpreg;
Bruce Allan4a770352008-10-01 17:18:35 -07002187
Bruce Allan94d81862009-11-20 23:25:26 +00002188 nvm->ops.acquire(hw);
Bruce Allan4a770352008-10-01 17:18:35 -07002189
2190 gfpreg = er32flash(ICH_FLASH_GFPREG);
2191
2192 /* Write-protect GbE Sector of NVM */
2193 pr0.regval = er32flash(ICH_FLASH_PR0);
2194 pr0.range.base = gfpreg & FLASH_GFPREG_BASE_MASK;
2195 pr0.range.limit = ((gfpreg >> 16) & FLASH_GFPREG_BASE_MASK);
2196 pr0.range.wpe = true;
2197 ew32flash(ICH_FLASH_PR0, pr0.regval);
2198
2199 /*
2200 * Lock down a subset of GbE Flash Control Registers, e.g.
2201 * PR0 to prevent the write-protection from being lifted.
2202 * Once FLOCKDN is set, the registers protected by it cannot
2203 * be written until FLOCKDN is cleared by a hardware reset.
2204 */
2205 hsfsts.regval = er16flash(ICH_FLASH_HSFSTS);
2206 hsfsts.hsf_status.flockdn = true;
2207 ew32flash(ICH_FLASH_HSFSTS, hsfsts.regval);
2208
Bruce Allan94d81862009-11-20 23:25:26 +00002209 nvm->ops.release(hw);
Bruce Allan4a770352008-10-01 17:18:35 -07002210}
2211
2212/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07002213 * e1000_write_flash_data_ich8lan - Writes bytes to the NVM
2214 * @hw: pointer to the HW structure
2215 * @offset: The offset (in bytes) of the byte/word to read.
2216 * @size: Size of data to read, 1=byte 2=word
2217 * @data: The byte(s) to write to the NVM.
2218 *
2219 * Writes one/two bytes to the NVM using the flash access registers.
2220 **/
2221static s32 e1000_write_flash_data_ich8lan(struct e1000_hw *hw, u32 offset,
2222 u8 size, u16 data)
2223{
2224 union ich8_hws_flash_status hsfsts;
2225 union ich8_hws_flash_ctrl hsflctl;
2226 u32 flash_linear_addr;
2227 u32 flash_data = 0;
2228 s32 ret_val;
2229 u8 count = 0;
2230
2231 if (size < 1 || size > 2 || data > size * 0xff ||
2232 offset > ICH_FLASH_LINEAR_ADDR_MASK)
2233 return -E1000_ERR_NVM;
2234
2235 flash_linear_addr = (ICH_FLASH_LINEAR_ADDR_MASK & offset) +
2236 hw->nvm.flash_base_addr;
2237
2238 do {
2239 udelay(1);
2240 /* Steps */
2241 ret_val = e1000_flash_cycle_init_ich8lan(hw);
2242 if (ret_val)
2243 break;
2244
2245 hsflctl.regval = er16flash(ICH_FLASH_HSFCTL);
2246 /* 0b/1b corresponds to 1 or 2 byte size, respectively. */
2247 hsflctl.hsf_ctrl.fldbcount = size -1;
2248 hsflctl.hsf_ctrl.flcycle = ICH_CYCLE_WRITE;
2249 ew16flash(ICH_FLASH_HSFCTL, hsflctl.regval);
2250
2251 ew32flash(ICH_FLASH_FADDR, flash_linear_addr);
2252
2253 if (size == 1)
2254 flash_data = (u32)data & 0x00FF;
2255 else
2256 flash_data = (u32)data;
2257
2258 ew32flash(ICH_FLASH_FDATA0, flash_data);
2259
Bruce Allanad680762008-03-28 09:15:03 -07002260 /*
2261 * check if FCERR is set to 1 , if set to 1, clear it
2262 * and try the whole sequence a few more times else done
2263 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002264 ret_val = e1000_flash_cycle_ich8lan(hw,
2265 ICH_FLASH_WRITE_COMMAND_TIMEOUT);
2266 if (!ret_val)
2267 break;
2268
Bruce Allanad680762008-03-28 09:15:03 -07002269 /*
2270 * If we're here, then things are most likely
Auke Kokbc7f75f2007-09-17 12:30:59 -07002271 * completely hosed, but if the error condition
2272 * is detected, it won't hurt to give it another
2273 * try...ICH_FLASH_CYCLE_REPEAT_COUNT times.
2274 */
2275 hsfsts.regval = er16flash(ICH_FLASH_HSFSTS);
2276 if (hsfsts.hsf_status.flcerr == 1)
2277 /* Repeat for some time before giving up. */
2278 continue;
2279 if (hsfsts.hsf_status.flcdone == 0) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002280 e_dbg("Timeout error - flash cycle "
Auke Kokbc7f75f2007-09-17 12:30:59 -07002281 "did not complete.");
2282 break;
2283 }
2284 } while (count++ < ICH_FLASH_CYCLE_REPEAT_COUNT);
2285
2286 return ret_val;
2287}
2288
2289/**
2290 * e1000_write_flash_byte_ich8lan - Write a single byte to NVM
2291 * @hw: pointer to the HW structure
2292 * @offset: The index of the byte to read.
2293 * @data: The byte to write to the NVM.
2294 *
2295 * Writes a single byte to the NVM using the flash access registers.
2296 **/
2297static s32 e1000_write_flash_byte_ich8lan(struct e1000_hw *hw, u32 offset,
2298 u8 data)
2299{
2300 u16 word = (u16)data;
2301
2302 return e1000_write_flash_data_ich8lan(hw, offset, 1, word);
2303}
2304
2305/**
2306 * e1000_retry_write_flash_byte_ich8lan - Writes a single byte to NVM
2307 * @hw: pointer to the HW structure
2308 * @offset: The offset of the byte to write.
2309 * @byte: The byte to write to the NVM.
2310 *
2311 * Writes a single byte to the NVM using the flash access registers.
2312 * Goes through a retry algorithm before giving up.
2313 **/
2314static s32 e1000_retry_write_flash_byte_ich8lan(struct e1000_hw *hw,
2315 u32 offset, u8 byte)
2316{
2317 s32 ret_val;
2318 u16 program_retries;
2319
2320 ret_val = e1000_write_flash_byte_ich8lan(hw, offset, byte);
2321 if (!ret_val)
2322 return ret_val;
2323
2324 for (program_retries = 0; program_retries < 100; program_retries++) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002325 e_dbg("Retrying Byte %2.2X at offset %u\n", byte, offset);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002326 udelay(100);
2327 ret_val = e1000_write_flash_byte_ich8lan(hw, offset, byte);
2328 if (!ret_val)
2329 break;
2330 }
2331 if (program_retries == 100)
2332 return -E1000_ERR_NVM;
2333
2334 return 0;
2335}
2336
2337/**
2338 * e1000_erase_flash_bank_ich8lan - Erase a bank (4k) from NVM
2339 * @hw: pointer to the HW structure
2340 * @bank: 0 for first bank, 1 for second bank, etc.
2341 *
2342 * Erases the bank specified. Each bank is a 4k block. Banks are 0 based.
2343 * bank N is 4096 * N + flash_reg_addr.
2344 **/
2345static s32 e1000_erase_flash_bank_ich8lan(struct e1000_hw *hw, u32 bank)
2346{
2347 struct e1000_nvm_info *nvm = &hw->nvm;
2348 union ich8_hws_flash_status hsfsts;
2349 union ich8_hws_flash_ctrl hsflctl;
2350 u32 flash_linear_addr;
2351 /* bank size is in 16bit words - adjust to bytes */
2352 u32 flash_bank_size = nvm->flash_bank_size * 2;
2353 s32 ret_val;
2354 s32 count = 0;
Bruce Allana708dd82009-11-20 23:28:37 +00002355 s32 j, iteration, sector_size;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002356
2357 hsfsts.regval = er16flash(ICH_FLASH_HSFSTS);
2358
Bruce Allanad680762008-03-28 09:15:03 -07002359 /*
2360 * Determine HW Sector size: Read BERASE bits of hw flash status
2361 * register
2362 * 00: The Hw sector is 256 bytes, hence we need to erase 16
Auke Kokbc7f75f2007-09-17 12:30:59 -07002363 * consecutive sectors. The start index for the nth Hw sector
2364 * can be calculated as = bank * 4096 + n * 256
2365 * 01: The Hw sector is 4K bytes, hence we need to erase 1 sector.
2366 * The start index for the nth Hw sector can be calculated
2367 * as = bank * 4096
2368 * 10: The Hw sector is 8K bytes, nth sector = bank * 8192
2369 * (ich9 only, otherwise error condition)
2370 * 11: The Hw sector is 64K bytes, nth sector = bank * 65536
2371 */
2372 switch (hsfsts.hsf_status.berasesz) {
2373 case 0:
2374 /* Hw sector size 256 */
2375 sector_size = ICH_FLASH_SEG_SIZE_256;
2376 iteration = flash_bank_size / ICH_FLASH_SEG_SIZE_256;
2377 break;
2378 case 1:
2379 sector_size = ICH_FLASH_SEG_SIZE_4K;
Bruce Allan28c91952009-07-01 13:28:32 +00002380 iteration = 1;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002381 break;
2382 case 2:
Bruce Allan148675a2009-08-07 07:41:56 +00002383 sector_size = ICH_FLASH_SEG_SIZE_8K;
2384 iteration = 1;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002385 break;
2386 case 3:
2387 sector_size = ICH_FLASH_SEG_SIZE_64K;
Bruce Allan28c91952009-07-01 13:28:32 +00002388 iteration = 1;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002389 break;
2390 default:
2391 return -E1000_ERR_NVM;
2392 }
2393
2394 /* Start with the base address, then add the sector offset. */
2395 flash_linear_addr = hw->nvm.flash_base_addr;
Bruce Allan148675a2009-08-07 07:41:56 +00002396 flash_linear_addr += (bank) ? flash_bank_size : 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002397
2398 for (j = 0; j < iteration ; j++) {
2399 do {
2400 /* Steps */
2401 ret_val = e1000_flash_cycle_init_ich8lan(hw);
2402 if (ret_val)
2403 return ret_val;
2404
Bruce Allanad680762008-03-28 09:15:03 -07002405 /*
2406 * Write a value 11 (block Erase) in Flash
2407 * Cycle field in hw flash control
2408 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002409 hsflctl.regval = er16flash(ICH_FLASH_HSFCTL);
2410 hsflctl.hsf_ctrl.flcycle = ICH_CYCLE_ERASE;
2411 ew16flash(ICH_FLASH_HSFCTL, hsflctl.regval);
2412
Bruce Allanad680762008-03-28 09:15:03 -07002413 /*
2414 * Write the last 24 bits of an index within the
Auke Kokbc7f75f2007-09-17 12:30:59 -07002415 * block into Flash Linear address field in Flash
2416 * Address.
2417 */
2418 flash_linear_addr += (j * sector_size);
2419 ew32flash(ICH_FLASH_FADDR, flash_linear_addr);
2420
2421 ret_val = e1000_flash_cycle_ich8lan(hw,
2422 ICH_FLASH_ERASE_COMMAND_TIMEOUT);
2423 if (ret_val == 0)
2424 break;
2425
Bruce Allanad680762008-03-28 09:15:03 -07002426 /*
2427 * Check if FCERR is set to 1. If 1,
Auke Kokbc7f75f2007-09-17 12:30:59 -07002428 * clear it and try the whole sequence
Bruce Allanad680762008-03-28 09:15:03 -07002429 * a few more times else Done
2430 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002431 hsfsts.regval = er16flash(ICH_FLASH_HSFSTS);
2432 if (hsfsts.hsf_status.flcerr == 1)
Bruce Allanad680762008-03-28 09:15:03 -07002433 /* repeat for some time before giving up */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002434 continue;
2435 else if (hsfsts.hsf_status.flcdone == 0)
2436 return ret_val;
2437 } while (++count < ICH_FLASH_CYCLE_REPEAT_COUNT);
2438 }
2439
2440 return 0;
2441}
2442
2443/**
2444 * e1000_valid_led_default_ich8lan - Set the default LED settings
2445 * @hw: pointer to the HW structure
2446 * @data: Pointer to the LED settings
2447 *
2448 * Reads the LED default settings from the NVM to data. If the NVM LED
2449 * settings is all 0's or F's, set the LED default to a valid LED default
2450 * setting.
2451 **/
2452static s32 e1000_valid_led_default_ich8lan(struct e1000_hw *hw, u16 *data)
2453{
2454 s32 ret_val;
2455
2456 ret_val = e1000_read_nvm(hw, NVM_ID_LED_SETTINGS, 1, data);
2457 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002458 e_dbg("NVM Read Error\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07002459 return ret_val;
2460 }
2461
2462 if (*data == ID_LED_RESERVED_0000 ||
2463 *data == ID_LED_RESERVED_FFFF)
2464 *data = ID_LED_DEFAULT_ICH8LAN;
2465
2466 return 0;
2467}
2468
2469/**
Bruce Allana4f58f52009-06-02 11:29:18 +00002470 * e1000_id_led_init_pchlan - store LED configurations
2471 * @hw: pointer to the HW structure
2472 *
2473 * PCH does not control LEDs via the LEDCTL register, rather it uses
2474 * the PHY LED configuration register.
2475 *
2476 * PCH also does not have an "always on" or "always off" mode which
2477 * complicates the ID feature. Instead of using the "on" mode to indicate
2478 * in ledctl_mode2 the LEDs to use for ID (see e1000e_id_led_init()),
2479 * use "link_up" mode. The LEDs will still ID on request if there is no
2480 * link based on logic in e1000_led_[on|off]_pchlan().
2481 **/
2482static s32 e1000_id_led_init_pchlan(struct e1000_hw *hw)
2483{
2484 struct e1000_mac_info *mac = &hw->mac;
2485 s32 ret_val;
2486 const u32 ledctl_on = E1000_LEDCTL_MODE_LINK_UP;
2487 const u32 ledctl_off = E1000_LEDCTL_MODE_LINK_UP | E1000_PHY_LED0_IVRT;
2488 u16 data, i, temp, shift;
2489
2490 /* Get default ID LED modes */
2491 ret_val = hw->nvm.ops.valid_led_default(hw, &data);
2492 if (ret_val)
2493 goto out;
2494
2495 mac->ledctl_default = er32(LEDCTL);
2496 mac->ledctl_mode1 = mac->ledctl_default;
2497 mac->ledctl_mode2 = mac->ledctl_default;
2498
2499 for (i = 0; i < 4; i++) {
2500 temp = (data >> (i << 2)) & E1000_LEDCTL_LED0_MODE_MASK;
2501 shift = (i * 5);
2502 switch (temp) {
2503 case ID_LED_ON1_DEF2:
2504 case ID_LED_ON1_ON2:
2505 case ID_LED_ON1_OFF2:
2506 mac->ledctl_mode1 &= ~(E1000_PHY_LED0_MASK << shift);
2507 mac->ledctl_mode1 |= (ledctl_on << shift);
2508 break;
2509 case ID_LED_OFF1_DEF2:
2510 case ID_LED_OFF1_ON2:
2511 case ID_LED_OFF1_OFF2:
2512 mac->ledctl_mode1 &= ~(E1000_PHY_LED0_MASK << shift);
2513 mac->ledctl_mode1 |= (ledctl_off << shift);
2514 break;
2515 default:
2516 /* Do nothing */
2517 break;
2518 }
2519 switch (temp) {
2520 case ID_LED_DEF1_ON2:
2521 case ID_LED_ON1_ON2:
2522 case ID_LED_OFF1_ON2:
2523 mac->ledctl_mode2 &= ~(E1000_PHY_LED0_MASK << shift);
2524 mac->ledctl_mode2 |= (ledctl_on << shift);
2525 break;
2526 case ID_LED_DEF1_OFF2:
2527 case ID_LED_ON1_OFF2:
2528 case ID_LED_OFF1_OFF2:
2529 mac->ledctl_mode2 &= ~(E1000_PHY_LED0_MASK << shift);
2530 mac->ledctl_mode2 |= (ledctl_off << shift);
2531 break;
2532 default:
2533 /* Do nothing */
2534 break;
2535 }
2536 }
2537
2538out:
2539 return ret_val;
2540}
2541
2542/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07002543 * e1000_get_bus_info_ich8lan - Get/Set the bus type and width
2544 * @hw: pointer to the HW structure
2545 *
2546 * ICH8 use the PCI Express bus, but does not contain a PCI Express Capability
2547 * register, so the the bus width is hard coded.
2548 **/
2549static s32 e1000_get_bus_info_ich8lan(struct e1000_hw *hw)
2550{
2551 struct e1000_bus_info *bus = &hw->bus;
2552 s32 ret_val;
2553
2554 ret_val = e1000e_get_bus_info_pcie(hw);
2555
Bruce Allanad680762008-03-28 09:15:03 -07002556 /*
2557 * ICH devices are "PCI Express"-ish. They have
Auke Kokbc7f75f2007-09-17 12:30:59 -07002558 * a configuration space, but do not contain
2559 * PCI Express Capability registers, so bus width
2560 * must be hardcoded.
2561 */
2562 if (bus->width == e1000_bus_width_unknown)
2563 bus->width = e1000_bus_width_pcie_x1;
2564
2565 return ret_val;
2566}
2567
2568/**
2569 * e1000_reset_hw_ich8lan - Reset the hardware
2570 * @hw: pointer to the HW structure
2571 *
2572 * Does a full reset of the hardware which includes a reset of the PHY and
2573 * MAC.
2574 **/
2575static s32 e1000_reset_hw_ich8lan(struct e1000_hw *hw)
2576{
Bruce Allan1d5846b2009-10-29 13:46:05 +00002577 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
Bruce Allandb2932e2009-10-26 11:22:47 +00002578 u16 reg;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002579 u32 ctrl, icr, kab;
2580 s32 ret_val;
2581
Bruce Allanad680762008-03-28 09:15:03 -07002582 /*
2583 * Prevent the PCI-E bus from sticking if there is no TLP connection
Auke Kokbc7f75f2007-09-17 12:30:59 -07002584 * on the last TLP read/write transaction when MAC is reset.
2585 */
2586 ret_val = e1000e_disable_pcie_master(hw);
2587 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002588 e_dbg("PCI-E Master disable polling has failed.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07002589 }
2590
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002591 e_dbg("Masking off all interrupts\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07002592 ew32(IMC, 0xffffffff);
2593
Bruce Allanad680762008-03-28 09:15:03 -07002594 /*
2595 * Disable the Transmit and Receive units. Then delay to allow
Auke Kokbc7f75f2007-09-17 12:30:59 -07002596 * any pending transactions to complete before we hit the MAC
2597 * with the global reset.
2598 */
2599 ew32(RCTL, 0);
2600 ew32(TCTL, E1000_TCTL_PSP);
2601 e1e_flush();
2602
2603 msleep(10);
2604
2605 /* Workaround for ICH8 bit corruption issue in FIFO memory */
2606 if (hw->mac.type == e1000_ich8lan) {
2607 /* Set Tx and Rx buffer allocation to 8k apiece. */
2608 ew32(PBA, E1000_PBA_8K);
2609 /* Set Packet Buffer Size to 16k. */
2610 ew32(PBS, E1000_PBS_16K);
2611 }
2612
Bruce Allan1d5846b2009-10-29 13:46:05 +00002613 if (hw->mac.type == e1000_pchlan) {
2614 /* Save the NVM K1 bit setting*/
2615 ret_val = e1000_read_nvm(hw, E1000_NVM_K1_CONFIG, 1, &reg);
2616 if (ret_val)
2617 return ret_val;
2618
2619 if (reg & E1000_NVM_K1_ENABLE)
2620 dev_spec->nvm_k1_enabled = true;
2621 else
2622 dev_spec->nvm_k1_enabled = false;
2623 }
2624
Auke Kokbc7f75f2007-09-17 12:30:59 -07002625 ctrl = er32(CTRL);
2626
2627 if (!e1000_check_reset_block(hw)) {
Bruce Allanfc0c7762009-07-01 13:27:55 +00002628 /* Clear PHY Reset Asserted bit */
2629 if (hw->mac.type >= e1000_pchlan) {
2630 u32 status = er32(STATUS);
2631 ew32(STATUS, status & ~E1000_STATUS_PHYRA);
2632 }
2633
Bruce Allanad680762008-03-28 09:15:03 -07002634 /*
2635 * PHY HW reset requires MAC CORE reset at the same
Auke Kokbc7f75f2007-09-17 12:30:59 -07002636 * time to make sure the interface between MAC and the
2637 * external PHY is reset.
2638 */
2639 ctrl |= E1000_CTRL_PHY_RST;
2640 }
2641 ret_val = e1000_acquire_swflag_ich8lan(hw);
Jeff Kirsher30bb0e02008-12-11 21:28:11 -08002642 /* Whether or not the swflag was acquired, we need to reset the part */
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002643 e_dbg("Issuing a global reset to ich8lan\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07002644 ew32(CTRL, (ctrl | E1000_CTRL_RST));
2645 msleep(20);
2646
Bruce Allanfc0c7762009-07-01 13:27:55 +00002647 if (!ret_val)
Jeff Kirsher30bb0e02008-12-11 21:28:11 -08002648 e1000_release_swflag_ich8lan(hw);
Jesse Brandeburg37f40232008-10-02 16:33:20 -07002649
Bruce Allanfc0c7762009-07-01 13:27:55 +00002650 if (ctrl & E1000_CTRL_PHY_RST)
2651 ret_val = hw->phy.ops.get_cfg_done(hw);
2652
2653 if (hw->mac.type >= e1000_ich10lan) {
2654 e1000_lan_init_done_ich8lan(hw);
2655 } else {
2656 ret_val = e1000e_get_auto_rd_done(hw);
2657 if (ret_val) {
2658 /*
2659 * When auto config read does not complete, do not
2660 * return with an error. This can happen in situations
2661 * where there is no eeprom and prevents getting link.
2662 */
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002663 e_dbg("Auto Read Done did not complete\n");
Bruce Allanfc0c7762009-07-01 13:27:55 +00002664 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002665 }
Bruce Allandb2932e2009-10-26 11:22:47 +00002666 /* Dummy read to clear the phy wakeup bit after lcd reset */
2667 if (hw->mac.type == e1000_pchlan)
2668 e1e_rphy(hw, BM_WUC, &reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002669
Bruce Allanf523d212009-10-29 13:45:45 +00002670 ret_val = e1000_sw_lcd_config_ich8lan(hw);
2671 if (ret_val)
2672 goto out;
2673
2674 if (hw->mac.type == e1000_pchlan) {
2675 ret_val = e1000_oem_bits_config_ich8lan(hw, true);
2676 if (ret_val)
2677 goto out;
2678 }
Bruce Allan7d3cabb2009-07-01 13:29:08 +00002679 /*
2680 * For PCH, this write will make sure that any noise
2681 * will be detected as a CRC error and be dropped rather than show up
2682 * as a bad packet to the DMA engine.
2683 */
2684 if (hw->mac.type == e1000_pchlan)
2685 ew32(CRC_OFFSET, 0x65656565);
2686
Auke Kokbc7f75f2007-09-17 12:30:59 -07002687 ew32(IMC, 0xffffffff);
2688 icr = er32(ICR);
2689
2690 kab = er32(KABGTXD);
2691 kab |= E1000_KABGTXD_BGSQLBIAS;
2692 ew32(KABGTXD, kab);
2693
Bruce Allana4f58f52009-06-02 11:29:18 +00002694 if (hw->mac.type == e1000_pchlan)
2695 ret_val = e1000_hv_phy_workarounds_ich8lan(hw);
2696
Bruce Allanf523d212009-10-29 13:45:45 +00002697out:
Auke Kokbc7f75f2007-09-17 12:30:59 -07002698 return ret_val;
2699}
2700
2701/**
2702 * e1000_init_hw_ich8lan - Initialize the hardware
2703 * @hw: pointer to the HW structure
2704 *
2705 * Prepares the hardware for transmit and receive by doing the following:
2706 * - initialize hardware bits
2707 * - initialize LED identification
2708 * - setup receive address registers
2709 * - setup flow control
Auke Kok489815c2008-02-21 15:11:07 -08002710 * - setup transmit descriptors
Auke Kokbc7f75f2007-09-17 12:30:59 -07002711 * - clear statistics
2712 **/
2713static s32 e1000_init_hw_ich8lan(struct e1000_hw *hw)
2714{
2715 struct e1000_mac_info *mac = &hw->mac;
2716 u32 ctrl_ext, txdctl, snoop;
2717 s32 ret_val;
2718 u16 i;
2719
2720 e1000_initialize_hw_bits_ich8lan(hw);
2721
2722 /* Initialize identification LED */
Bruce Allana4f58f52009-06-02 11:29:18 +00002723 ret_val = mac->ops.id_led_init(hw);
Bruce Allande39b752009-11-20 23:27:59 +00002724 if (ret_val)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002725 e_dbg("Error initializing identification LED\n");
Bruce Allande39b752009-11-20 23:27:59 +00002726 /* This is not fatal and we should not stop init due to this */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002727
2728 /* Setup the receive address. */
2729 e1000e_init_rx_addrs(hw, mac->rar_entry_count);
2730
2731 /* Zero out the Multicast HASH table */
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002732 e_dbg("Zeroing the MTA\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07002733 for (i = 0; i < mac->mta_reg_count; i++)
2734 E1000_WRITE_REG_ARRAY(hw, E1000_MTA, i, 0);
2735
Bruce Allanfc0c7762009-07-01 13:27:55 +00002736 /*
2737 * The 82578 Rx buffer will stall if wakeup is enabled in host and
2738 * the ME. Reading the BM_WUC register will clear the host wakeup bit.
2739 * Reset the phy after disabling host wakeup to reset the Rx buffer.
2740 */
2741 if (hw->phy.type == e1000_phy_82578) {
Bruce Allan94d81862009-11-20 23:25:26 +00002742 hw->phy.ops.read_reg(hw, BM_WUC, &i);
Bruce Allanfc0c7762009-07-01 13:27:55 +00002743 ret_val = e1000_phy_hw_reset_ich8lan(hw);
2744 if (ret_val)
2745 return ret_val;
2746 }
2747
Auke Kokbc7f75f2007-09-17 12:30:59 -07002748 /* Setup link and flow control */
2749 ret_val = e1000_setup_link_ich8lan(hw);
2750
2751 /* Set the transmit descriptor write-back policy for both queues */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002752 txdctl = er32(TXDCTL(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002753 txdctl = (txdctl & ~E1000_TXDCTL_WTHRESH) |
2754 E1000_TXDCTL_FULL_TX_DESC_WB;
2755 txdctl = (txdctl & ~E1000_TXDCTL_PTHRESH) |
2756 E1000_TXDCTL_MAX_TX_DESC_PREFETCH;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002757 ew32(TXDCTL(0), txdctl);
2758 txdctl = er32(TXDCTL(1));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002759 txdctl = (txdctl & ~E1000_TXDCTL_WTHRESH) |
2760 E1000_TXDCTL_FULL_TX_DESC_WB;
2761 txdctl = (txdctl & ~E1000_TXDCTL_PTHRESH) |
2762 E1000_TXDCTL_MAX_TX_DESC_PREFETCH;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002763 ew32(TXDCTL(1), txdctl);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002764
Bruce Allanad680762008-03-28 09:15:03 -07002765 /*
2766 * ICH8 has opposite polarity of no_snoop bits.
2767 * By default, we should use snoop behavior.
2768 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002769 if (mac->type == e1000_ich8lan)
2770 snoop = PCIE_ICH8_SNOOP_ALL;
2771 else
2772 snoop = (u32) ~(PCIE_NO_SNOOP_ALL);
2773 e1000e_set_pcie_no_snoop(hw, snoop);
2774
2775 ctrl_ext = er32(CTRL_EXT);
2776 ctrl_ext |= E1000_CTRL_EXT_RO_DIS;
2777 ew32(CTRL_EXT, ctrl_ext);
2778
Bruce Allanad680762008-03-28 09:15:03 -07002779 /*
2780 * Clear all of the statistics registers (clear on read). It is
Auke Kokbc7f75f2007-09-17 12:30:59 -07002781 * important that we do this after we have tried to establish link
2782 * because the symbol error count will increment wildly if there
2783 * is no link.
2784 */
2785 e1000_clear_hw_cntrs_ich8lan(hw);
2786
2787 return 0;
2788}
2789/**
2790 * e1000_initialize_hw_bits_ich8lan - Initialize required hardware bits
2791 * @hw: pointer to the HW structure
2792 *
2793 * Sets/Clears required hardware bits necessary for correctly setting up the
2794 * hardware for transmit and receive.
2795 **/
2796static void e1000_initialize_hw_bits_ich8lan(struct e1000_hw *hw)
2797{
2798 u32 reg;
2799
2800 /* Extended Device Control */
2801 reg = er32(CTRL_EXT);
2802 reg |= (1 << 22);
Bruce Allana4f58f52009-06-02 11:29:18 +00002803 /* Enable PHY low-power state when MAC is at D3 w/o WoL */
2804 if (hw->mac.type >= e1000_pchlan)
2805 reg |= E1000_CTRL_EXT_PHYPDEN;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002806 ew32(CTRL_EXT, reg);
2807
2808 /* Transmit Descriptor Control 0 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002809 reg = er32(TXDCTL(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002810 reg |= (1 << 22);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002811 ew32(TXDCTL(0), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002812
2813 /* Transmit Descriptor Control 1 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002814 reg = er32(TXDCTL(1));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002815 reg |= (1 << 22);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002816 ew32(TXDCTL(1), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002817
2818 /* Transmit Arbitration Control 0 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002819 reg = er32(TARC(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002820 if (hw->mac.type == e1000_ich8lan)
2821 reg |= (1 << 28) | (1 << 29);
2822 reg |= (1 << 23) | (1 << 24) | (1 << 26) | (1 << 27);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002823 ew32(TARC(0), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002824
2825 /* Transmit Arbitration Control 1 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002826 reg = er32(TARC(1));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002827 if (er32(TCTL) & E1000_TCTL_MULR)
2828 reg &= ~(1 << 28);
2829 else
2830 reg |= (1 << 28);
2831 reg |= (1 << 24) | (1 << 26) | (1 << 30);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002832 ew32(TARC(1), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002833
2834 /* Device Status */
2835 if (hw->mac.type == e1000_ich8lan) {
2836 reg = er32(STATUS);
2837 reg &= ~(1 << 31);
2838 ew32(STATUS, reg);
2839 }
2840}
2841
2842/**
2843 * e1000_setup_link_ich8lan - Setup flow control and link settings
2844 * @hw: pointer to the HW structure
2845 *
2846 * Determines which flow control settings to use, then configures flow
2847 * control. Calls the appropriate media-specific link configuration
2848 * function. Assuming the adapter has a valid link partner, a valid link
2849 * should be established. Assumes the hardware has previously been reset
2850 * and the transmitter and receiver are not enabled.
2851 **/
2852static s32 e1000_setup_link_ich8lan(struct e1000_hw *hw)
2853{
Auke Kokbc7f75f2007-09-17 12:30:59 -07002854 s32 ret_val;
2855
2856 if (e1000_check_reset_block(hw))
2857 return 0;
2858
Bruce Allanad680762008-03-28 09:15:03 -07002859 /*
2860 * ICH parts do not have a word in the NVM to determine
Auke Kokbc7f75f2007-09-17 12:30:59 -07002861 * the default flow control setting, so we explicitly
2862 * set it to full.
2863 */
Bruce Allan37289d92009-06-02 11:29:37 +00002864 if (hw->fc.requested_mode == e1000_fc_default) {
2865 /* Workaround h/w hang when Tx flow control enabled */
2866 if (hw->mac.type == e1000_pchlan)
2867 hw->fc.requested_mode = e1000_fc_rx_pause;
2868 else
2869 hw->fc.requested_mode = e1000_fc_full;
2870 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002871
Bruce Allan5c48ef3e22008-11-21 16:57:36 -08002872 /*
2873 * Save off the requested flow control mode for use later. Depending
2874 * on the link partner's capabilities, we may or may not use this mode.
2875 */
2876 hw->fc.current_mode = hw->fc.requested_mode;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002877
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002878 e_dbg("After fix-ups FlowControl is now = %x\n",
Bruce Allan5c48ef3e22008-11-21 16:57:36 -08002879 hw->fc.current_mode);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002880
2881 /* Continue to configure the copper link. */
2882 ret_val = e1000_setup_copper_link_ich8lan(hw);
2883 if (ret_val)
2884 return ret_val;
2885
Jeff Kirsher318a94d2008-03-28 09:15:16 -07002886 ew32(FCTTV, hw->fc.pause_time);
Bruce Allana4f58f52009-06-02 11:29:18 +00002887 if ((hw->phy.type == e1000_phy_82578) ||
2888 (hw->phy.type == e1000_phy_82577)) {
Bruce Allan94d81862009-11-20 23:25:26 +00002889 ret_val = hw->phy.ops.write_reg(hw,
Bruce Allana4f58f52009-06-02 11:29:18 +00002890 PHY_REG(BM_PORT_CTRL_PAGE, 27),
2891 hw->fc.pause_time);
2892 if (ret_val)
2893 return ret_val;
2894 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002895
2896 return e1000e_set_fc_watermarks(hw);
2897}
2898
2899/**
2900 * e1000_setup_copper_link_ich8lan - Configure MAC/PHY interface
2901 * @hw: pointer to the HW structure
2902 *
2903 * Configures the kumeran interface to the PHY to wait the appropriate time
2904 * when polling the PHY, then call the generic setup_copper_link to finish
2905 * configuring the copper link.
2906 **/
2907static s32 e1000_setup_copper_link_ich8lan(struct e1000_hw *hw)
2908{
2909 u32 ctrl;
2910 s32 ret_val;
2911 u16 reg_data;
2912
2913 ctrl = er32(CTRL);
2914 ctrl |= E1000_CTRL_SLU;
2915 ctrl &= ~(E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX);
2916 ew32(CTRL, ctrl);
2917
Bruce Allanad680762008-03-28 09:15:03 -07002918 /*
2919 * Set the mac to wait the maximum time between each iteration
Auke Kokbc7f75f2007-09-17 12:30:59 -07002920 * and increase the max iterations when polling the phy;
Bruce Allanad680762008-03-28 09:15:03 -07002921 * this fixes erroneous timeouts at 10Mbps.
2922 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002923 ret_val = e1000e_write_kmrn_reg(hw, GG82563_REG(0x34, 4), 0xFFFF);
2924 if (ret_val)
2925 return ret_val;
2926 ret_val = e1000e_read_kmrn_reg(hw, GG82563_REG(0x34, 9), &reg_data);
2927 if (ret_val)
2928 return ret_val;
2929 reg_data |= 0x3F;
2930 ret_val = e1000e_write_kmrn_reg(hw, GG82563_REG(0x34, 9), reg_data);
2931 if (ret_val)
2932 return ret_val;
2933
Bruce Allana4f58f52009-06-02 11:29:18 +00002934 switch (hw->phy.type) {
2935 case e1000_phy_igp_3:
Auke Kokbc7f75f2007-09-17 12:30:59 -07002936 ret_val = e1000e_copper_link_setup_igp(hw);
2937 if (ret_val)
2938 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00002939 break;
2940 case e1000_phy_bm:
2941 case e1000_phy_82578:
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002942 ret_val = e1000e_copper_link_setup_m88(hw);
2943 if (ret_val)
2944 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00002945 break;
2946 case e1000_phy_82577:
2947 ret_val = e1000_copper_link_setup_82577(hw);
2948 if (ret_val)
2949 return ret_val;
2950 break;
2951 case e1000_phy_ife:
Bruce Allan94d81862009-11-20 23:25:26 +00002952 ret_val = hw->phy.ops.read_reg(hw, IFE_PHY_MDIX_CONTROL,
Bruce Allana4f58f52009-06-02 11:29:18 +00002953 &reg_data);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002954 if (ret_val)
2955 return ret_val;
2956
2957 reg_data &= ~IFE_PMC_AUTO_MDIX;
2958
2959 switch (hw->phy.mdix) {
2960 case 1:
2961 reg_data &= ~IFE_PMC_FORCE_MDIX;
2962 break;
2963 case 2:
2964 reg_data |= IFE_PMC_FORCE_MDIX;
2965 break;
2966 case 0:
2967 default:
2968 reg_data |= IFE_PMC_AUTO_MDIX;
2969 break;
2970 }
Bruce Allan94d81862009-11-20 23:25:26 +00002971 ret_val = hw->phy.ops.write_reg(hw, IFE_PHY_MDIX_CONTROL,
Bruce Allana4f58f52009-06-02 11:29:18 +00002972 reg_data);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002973 if (ret_val)
2974 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00002975 break;
2976 default:
2977 break;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002978 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002979 return e1000e_setup_copper_link(hw);
2980}
2981
2982/**
2983 * e1000_get_link_up_info_ich8lan - Get current link speed and duplex
2984 * @hw: pointer to the HW structure
2985 * @speed: pointer to store current link speed
2986 * @duplex: pointer to store the current link duplex
2987 *
Bruce Allanad680762008-03-28 09:15:03 -07002988 * Calls the generic get_speed_and_duplex to retrieve the current link
Auke Kokbc7f75f2007-09-17 12:30:59 -07002989 * information and then calls the Kumeran lock loss workaround for links at
2990 * gigabit speeds.
2991 **/
2992static s32 e1000_get_link_up_info_ich8lan(struct e1000_hw *hw, u16 *speed,
2993 u16 *duplex)
2994{
2995 s32 ret_val;
2996
2997 ret_val = e1000e_get_speed_and_duplex_copper(hw, speed, duplex);
2998 if (ret_val)
2999 return ret_val;
3000
3001 if ((hw->mac.type == e1000_ich8lan) &&
3002 (hw->phy.type == e1000_phy_igp_3) &&
3003 (*speed == SPEED_1000)) {
3004 ret_val = e1000_kmrn_lock_loss_workaround_ich8lan(hw);
3005 }
3006
3007 return ret_val;
3008}
3009
3010/**
3011 * e1000_kmrn_lock_loss_workaround_ich8lan - Kumeran workaround
3012 * @hw: pointer to the HW structure
3013 *
3014 * Work-around for 82566 Kumeran PCS lock loss:
3015 * On link status change (i.e. PCI reset, speed change) and link is up and
3016 * speed is gigabit-
3017 * 0) if workaround is optionally disabled do nothing
3018 * 1) wait 1ms for Kumeran link to come up
3019 * 2) check Kumeran Diagnostic register PCS lock loss bit
3020 * 3) if not set the link is locked (all is good), otherwise...
3021 * 4) reset the PHY
3022 * 5) repeat up to 10 times
3023 * Note: this is only called for IGP3 copper when speed is 1gb.
3024 **/
3025static s32 e1000_kmrn_lock_loss_workaround_ich8lan(struct e1000_hw *hw)
3026{
3027 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
3028 u32 phy_ctrl;
3029 s32 ret_val;
3030 u16 i, data;
3031 bool link;
3032
3033 if (!dev_spec->kmrn_lock_loss_workaround_enabled)
3034 return 0;
3035
Bruce Allanad680762008-03-28 09:15:03 -07003036 /*
3037 * Make sure link is up before proceeding. If not just return.
Auke Kokbc7f75f2007-09-17 12:30:59 -07003038 * Attempting this while link is negotiating fouled up link
Bruce Allanad680762008-03-28 09:15:03 -07003039 * stability
3040 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003041 ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link);
3042 if (!link)
3043 return 0;
3044
3045 for (i = 0; i < 10; i++) {
3046 /* read once to clear */
3047 ret_val = e1e_rphy(hw, IGP3_KMRN_DIAG, &data);
3048 if (ret_val)
3049 return ret_val;
3050 /* and again to get new status */
3051 ret_val = e1e_rphy(hw, IGP3_KMRN_DIAG, &data);
3052 if (ret_val)
3053 return ret_val;
3054
3055 /* check for PCS lock */
3056 if (!(data & IGP3_KMRN_DIAG_PCS_LOCK_LOSS))
3057 return 0;
3058
3059 /* Issue PHY reset */
3060 e1000_phy_hw_reset(hw);
3061 mdelay(5);
3062 }
3063 /* Disable GigE link negotiation */
3064 phy_ctrl = er32(PHY_CTRL);
3065 phy_ctrl |= (E1000_PHY_CTRL_GBE_DISABLE |
3066 E1000_PHY_CTRL_NOND0A_GBE_DISABLE);
3067 ew32(PHY_CTRL, phy_ctrl);
3068
Bruce Allanad680762008-03-28 09:15:03 -07003069 /*
3070 * Call gig speed drop workaround on Gig disable before accessing
3071 * any PHY registers
3072 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003073 e1000e_gig_downshift_workaround_ich8lan(hw);
3074
3075 /* unable to acquire PCS lock */
3076 return -E1000_ERR_PHY;
3077}
3078
3079/**
Bruce Allanad680762008-03-28 09:15:03 -07003080 * e1000_set_kmrn_lock_loss_workaround_ich8lan - Set Kumeran workaround state
Auke Kokbc7f75f2007-09-17 12:30:59 -07003081 * @hw: pointer to the HW structure
Auke Kok489815c2008-02-21 15:11:07 -08003082 * @state: boolean value used to set the current Kumeran workaround state
Auke Kokbc7f75f2007-09-17 12:30:59 -07003083 *
Bruce Allan564ea9b2009-11-20 23:26:44 +00003084 * If ICH8, set the current Kumeran workaround state (enabled - true
3085 * /disabled - false).
Auke Kokbc7f75f2007-09-17 12:30:59 -07003086 **/
3087void e1000e_set_kmrn_lock_loss_workaround_ich8lan(struct e1000_hw *hw,
3088 bool state)
3089{
3090 struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan;
3091
3092 if (hw->mac.type != e1000_ich8lan) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003093 e_dbg("Workaround applies to ICH8 only.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07003094 return;
3095 }
3096
3097 dev_spec->kmrn_lock_loss_workaround_enabled = state;
3098}
3099
3100/**
3101 * e1000_ipg3_phy_powerdown_workaround_ich8lan - Power down workaround on D3
3102 * @hw: pointer to the HW structure
3103 *
3104 * Workaround for 82566 power-down on D3 entry:
3105 * 1) disable gigabit link
3106 * 2) write VR power-down enable
3107 * 3) read it back
3108 * Continue if successful, else issue LCD reset and repeat
3109 **/
3110void e1000e_igp3_phy_powerdown_workaround_ich8lan(struct e1000_hw *hw)
3111{
3112 u32 reg;
3113 u16 data;
3114 u8 retry = 0;
3115
3116 if (hw->phy.type != e1000_phy_igp_3)
3117 return;
3118
3119 /* Try the workaround twice (if needed) */
3120 do {
3121 /* Disable link */
3122 reg = er32(PHY_CTRL);
3123 reg |= (E1000_PHY_CTRL_GBE_DISABLE |
3124 E1000_PHY_CTRL_NOND0A_GBE_DISABLE);
3125 ew32(PHY_CTRL, reg);
3126
Bruce Allanad680762008-03-28 09:15:03 -07003127 /*
3128 * Call gig speed drop workaround on Gig disable before
3129 * accessing any PHY registers
3130 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003131 if (hw->mac.type == e1000_ich8lan)
3132 e1000e_gig_downshift_workaround_ich8lan(hw);
3133
3134 /* Write VR power-down enable */
3135 e1e_rphy(hw, IGP3_VR_CTRL, &data);
3136 data &= ~IGP3_VR_CTRL_DEV_POWERDOWN_MODE_MASK;
3137 e1e_wphy(hw, IGP3_VR_CTRL, data | IGP3_VR_CTRL_MODE_SHUTDOWN);
3138
3139 /* Read it back and test */
3140 e1e_rphy(hw, IGP3_VR_CTRL, &data);
3141 data &= IGP3_VR_CTRL_DEV_POWERDOWN_MODE_MASK;
3142 if ((data == IGP3_VR_CTRL_MODE_SHUTDOWN) || retry)
3143 break;
3144
3145 /* Issue PHY reset and repeat at most one more time */
3146 reg = er32(CTRL);
3147 ew32(CTRL, reg | E1000_CTRL_PHY_RST);
3148 retry++;
3149 } while (retry);
3150}
3151
3152/**
3153 * e1000e_gig_downshift_workaround_ich8lan - WoL from S5 stops working
3154 * @hw: pointer to the HW structure
3155 *
3156 * Steps to take when dropping from 1Gb/s (eg. link cable removal (LSC),
Auke Kok489815c2008-02-21 15:11:07 -08003157 * LPLU, Gig disable, MDIC PHY reset):
Auke Kokbc7f75f2007-09-17 12:30:59 -07003158 * 1) Set Kumeran Near-end loopback
3159 * 2) Clear Kumeran Near-end loopback
3160 * Should only be called for ICH8[m] devices with IGP_3 Phy.
3161 **/
3162void e1000e_gig_downshift_workaround_ich8lan(struct e1000_hw *hw)
3163{
3164 s32 ret_val;
3165 u16 reg_data;
3166
3167 if ((hw->mac.type != e1000_ich8lan) ||
3168 (hw->phy.type != e1000_phy_igp_3))
3169 return;
3170
3171 ret_val = e1000e_read_kmrn_reg(hw, E1000_KMRNCTRLSTA_DIAG_OFFSET,
3172 &reg_data);
3173 if (ret_val)
3174 return;
3175 reg_data |= E1000_KMRNCTRLSTA_DIAG_NELPBK;
3176 ret_val = e1000e_write_kmrn_reg(hw, E1000_KMRNCTRLSTA_DIAG_OFFSET,
3177 reg_data);
3178 if (ret_val)
3179 return;
3180 reg_data &= ~E1000_KMRNCTRLSTA_DIAG_NELPBK;
3181 ret_val = e1000e_write_kmrn_reg(hw, E1000_KMRNCTRLSTA_DIAG_OFFSET,
3182 reg_data);
3183}
3184
3185/**
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003186 * e1000e_disable_gig_wol_ich8lan - disable gig during WoL
3187 * @hw: pointer to the HW structure
3188 *
3189 * During S0 to Sx transition, it is possible the link remains at gig
3190 * instead of negotiating to a lower speed. Before going to Sx, set
3191 * 'LPLU Enabled' and 'Gig Disable' to force link speed negotiation
3192 * to a lower speed.
3193 *
Bruce Allana4f58f52009-06-02 11:29:18 +00003194 * Should only be called for applicable parts.
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003195 **/
3196void e1000e_disable_gig_wol_ich8lan(struct e1000_hw *hw)
3197{
3198 u32 phy_ctrl;
3199
Bruce Allana4f58f52009-06-02 11:29:18 +00003200 switch (hw->mac.type) {
3201 case e1000_ich9lan:
3202 case e1000_ich10lan:
3203 case e1000_pchlan:
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003204 phy_ctrl = er32(PHY_CTRL);
3205 phy_ctrl |= E1000_PHY_CTRL_D0A_LPLU |
3206 E1000_PHY_CTRL_GBE_DISABLE;
3207 ew32(PHY_CTRL, phy_ctrl);
Bruce Allana4f58f52009-06-02 11:29:18 +00003208
Bruce Allana4f58f52009-06-02 11:29:18 +00003209 if (hw->mac.type == e1000_pchlan)
Bruce Allan74eee2e2009-10-22 21:22:18 -07003210 e1000_phy_hw_reset_ich8lan(hw);
Bruce Allana4f58f52009-06-02 11:29:18 +00003211 default:
3212 break;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003213 }
3214
3215 return;
3216}
3217
3218/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07003219 * e1000_cleanup_led_ich8lan - Restore the default LED operation
3220 * @hw: pointer to the HW structure
3221 *
3222 * Return the LED back to the default configuration.
3223 **/
3224static s32 e1000_cleanup_led_ich8lan(struct e1000_hw *hw)
3225{
3226 if (hw->phy.type == e1000_phy_ife)
3227 return e1e_wphy(hw, IFE_PHY_SPECIAL_CONTROL_LED, 0);
3228
3229 ew32(LEDCTL, hw->mac.ledctl_default);
3230 return 0;
3231}
3232
3233/**
Auke Kok489815c2008-02-21 15:11:07 -08003234 * e1000_led_on_ich8lan - Turn LEDs on
Auke Kokbc7f75f2007-09-17 12:30:59 -07003235 * @hw: pointer to the HW structure
3236 *
Auke Kok489815c2008-02-21 15:11:07 -08003237 * Turn on the LEDs.
Auke Kokbc7f75f2007-09-17 12:30:59 -07003238 **/
3239static s32 e1000_led_on_ich8lan(struct e1000_hw *hw)
3240{
3241 if (hw->phy.type == e1000_phy_ife)
3242 return e1e_wphy(hw, IFE_PHY_SPECIAL_CONTROL_LED,
3243 (IFE_PSCL_PROBE_MODE | IFE_PSCL_PROBE_LEDS_ON));
3244
3245 ew32(LEDCTL, hw->mac.ledctl_mode2);
3246 return 0;
3247}
3248
3249/**
Auke Kok489815c2008-02-21 15:11:07 -08003250 * e1000_led_off_ich8lan - Turn LEDs off
Auke Kokbc7f75f2007-09-17 12:30:59 -07003251 * @hw: pointer to the HW structure
3252 *
Auke Kok489815c2008-02-21 15:11:07 -08003253 * Turn off the LEDs.
Auke Kokbc7f75f2007-09-17 12:30:59 -07003254 **/
3255static s32 e1000_led_off_ich8lan(struct e1000_hw *hw)
3256{
3257 if (hw->phy.type == e1000_phy_ife)
3258 return e1e_wphy(hw, IFE_PHY_SPECIAL_CONTROL_LED,
3259 (IFE_PSCL_PROBE_MODE | IFE_PSCL_PROBE_LEDS_OFF));
3260
3261 ew32(LEDCTL, hw->mac.ledctl_mode1);
3262 return 0;
3263}
3264
3265/**
Bruce Allana4f58f52009-06-02 11:29:18 +00003266 * e1000_setup_led_pchlan - Configures SW controllable LED
3267 * @hw: pointer to the HW structure
3268 *
3269 * This prepares the SW controllable LED for use.
3270 **/
3271static s32 e1000_setup_led_pchlan(struct e1000_hw *hw)
3272{
Bruce Allan94d81862009-11-20 23:25:26 +00003273 return hw->phy.ops.write_reg(hw, HV_LED_CONFIG,
Bruce Allana4f58f52009-06-02 11:29:18 +00003274 (u16)hw->mac.ledctl_mode1);
3275}
3276
3277/**
3278 * e1000_cleanup_led_pchlan - Restore the default LED operation
3279 * @hw: pointer to the HW structure
3280 *
3281 * Return the LED back to the default configuration.
3282 **/
3283static s32 e1000_cleanup_led_pchlan(struct e1000_hw *hw)
3284{
Bruce Allan94d81862009-11-20 23:25:26 +00003285 return hw->phy.ops.write_reg(hw, HV_LED_CONFIG,
Bruce Allana4f58f52009-06-02 11:29:18 +00003286 (u16)hw->mac.ledctl_default);
3287}
3288
3289/**
3290 * e1000_led_on_pchlan - Turn LEDs on
3291 * @hw: pointer to the HW structure
3292 *
3293 * Turn on the LEDs.
3294 **/
3295static s32 e1000_led_on_pchlan(struct e1000_hw *hw)
3296{
3297 u16 data = (u16)hw->mac.ledctl_mode2;
3298 u32 i, led;
3299
3300 /*
3301 * If no link, then turn LED on by setting the invert bit
3302 * for each LED that's mode is "link_up" in ledctl_mode2.
3303 */
3304 if (!(er32(STATUS) & E1000_STATUS_LU)) {
3305 for (i = 0; i < 3; i++) {
3306 led = (data >> (i * 5)) & E1000_PHY_LED0_MASK;
3307 if ((led & E1000_PHY_LED0_MODE_MASK) !=
3308 E1000_LEDCTL_MODE_LINK_UP)
3309 continue;
3310 if (led & E1000_PHY_LED0_IVRT)
3311 data &= ~(E1000_PHY_LED0_IVRT << (i * 5));
3312 else
3313 data |= (E1000_PHY_LED0_IVRT << (i * 5));
3314 }
3315 }
3316
Bruce Allan94d81862009-11-20 23:25:26 +00003317 return hw->phy.ops.write_reg(hw, HV_LED_CONFIG, data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003318}
3319
3320/**
3321 * e1000_led_off_pchlan - Turn LEDs off
3322 * @hw: pointer to the HW structure
3323 *
3324 * Turn off the LEDs.
3325 **/
3326static s32 e1000_led_off_pchlan(struct e1000_hw *hw)
3327{
3328 u16 data = (u16)hw->mac.ledctl_mode1;
3329 u32 i, led;
3330
3331 /*
3332 * If no link, then turn LED off by clearing the invert bit
3333 * for each LED that's mode is "link_up" in ledctl_mode1.
3334 */
3335 if (!(er32(STATUS) & E1000_STATUS_LU)) {
3336 for (i = 0; i < 3; i++) {
3337 led = (data >> (i * 5)) & E1000_PHY_LED0_MASK;
3338 if ((led & E1000_PHY_LED0_MODE_MASK) !=
3339 E1000_LEDCTL_MODE_LINK_UP)
3340 continue;
3341 if (led & E1000_PHY_LED0_IVRT)
3342 data &= ~(E1000_PHY_LED0_IVRT << (i * 5));
3343 else
3344 data |= (E1000_PHY_LED0_IVRT << (i * 5));
3345 }
3346 }
3347
Bruce Allan94d81862009-11-20 23:25:26 +00003348 return hw->phy.ops.write_reg(hw, HV_LED_CONFIG, data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003349}
3350
3351/**
Bruce Allanf4187b52008-08-26 18:36:50 -07003352 * e1000_get_cfg_done_ich8lan - Read config done bit
3353 * @hw: pointer to the HW structure
3354 *
3355 * Read the management control register for the config done bit for
3356 * completion status. NOTE: silicon which is EEPROM-less will fail trying
3357 * to read the config done bit, so an error is *ONLY* logged and returns
Bruce Allana4f58f52009-06-02 11:29:18 +00003358 * 0. If we were to return with error, EEPROM-less silicon
Bruce Allanf4187b52008-08-26 18:36:50 -07003359 * would not be able to be reset or change link.
3360 **/
3361static s32 e1000_get_cfg_done_ich8lan(struct e1000_hw *hw)
3362{
3363 u32 bank = 0;
3364
Bruce Allanfc0c7762009-07-01 13:27:55 +00003365 if (hw->mac.type >= e1000_pchlan) {
3366 u32 status = er32(STATUS);
3367
3368 if (status & E1000_STATUS_PHYRA)
3369 ew32(STATUS, status & ~E1000_STATUS_PHYRA);
3370 else
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003371 e_dbg("PHY Reset Asserted not set - needs delay\n");
Bruce Allanfc0c7762009-07-01 13:27:55 +00003372 }
3373
Bruce Allanf4187b52008-08-26 18:36:50 -07003374 e1000e_get_cfg_done(hw);
3375
3376 /* If EEPROM is not marked present, init the IGP 3 PHY manually */
Bruce Allana4f58f52009-06-02 11:29:18 +00003377 if ((hw->mac.type != e1000_ich10lan) &&
3378 (hw->mac.type != e1000_pchlan)) {
Bruce Allanf4187b52008-08-26 18:36:50 -07003379 if (((er32(EECD) & E1000_EECD_PRES) == 0) &&
3380 (hw->phy.type == e1000_phy_igp_3)) {
3381 e1000e_phy_init_script_igp3(hw);
3382 }
3383 } else {
3384 if (e1000_valid_nvm_bank_detect_ich8lan(hw, &bank)) {
3385 /* Maybe we should do a basic PHY config */
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003386 e_dbg("EEPROM not present\n");
Bruce Allanf4187b52008-08-26 18:36:50 -07003387 return -E1000_ERR_CONFIG;
3388 }
3389 }
3390
3391 return 0;
3392}
3393
3394/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07003395 * e1000_clear_hw_cntrs_ich8lan - Clear statistical counters
3396 * @hw: pointer to the HW structure
3397 *
3398 * Clears hardware counters specific to the silicon family and calls
3399 * clear_hw_cntrs_generic to clear all general purpose counters.
3400 **/
3401static void e1000_clear_hw_cntrs_ich8lan(struct e1000_hw *hw)
3402{
Bruce Allana4f58f52009-06-02 11:29:18 +00003403 u16 phy_data;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003404
3405 e1000e_clear_hw_cntrs_base(hw);
3406
Bruce Allan99673d92009-11-20 23:27:21 +00003407 er32(ALGNERRC);
3408 er32(RXERRC);
3409 er32(TNCRS);
3410 er32(CEXTERR);
3411 er32(TSCTC);
3412 er32(TSCTFC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003413
Bruce Allan99673d92009-11-20 23:27:21 +00003414 er32(MGTPRC);
3415 er32(MGTPDC);
3416 er32(MGTPTC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003417
Bruce Allan99673d92009-11-20 23:27:21 +00003418 er32(IAC);
3419 er32(ICRXOC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003420
Bruce Allana4f58f52009-06-02 11:29:18 +00003421 /* Clear PHY statistics registers */
3422 if ((hw->phy.type == e1000_phy_82578) ||
3423 (hw->phy.type == e1000_phy_82577)) {
Bruce Allan94d81862009-11-20 23:25:26 +00003424 hw->phy.ops.read_reg(hw, HV_SCC_UPPER, &phy_data);
3425 hw->phy.ops.read_reg(hw, HV_SCC_LOWER, &phy_data);
3426 hw->phy.ops.read_reg(hw, HV_ECOL_UPPER, &phy_data);
3427 hw->phy.ops.read_reg(hw, HV_ECOL_LOWER, &phy_data);
3428 hw->phy.ops.read_reg(hw, HV_MCC_UPPER, &phy_data);
3429 hw->phy.ops.read_reg(hw, HV_MCC_LOWER, &phy_data);
3430 hw->phy.ops.read_reg(hw, HV_LATECOL_UPPER, &phy_data);
3431 hw->phy.ops.read_reg(hw, HV_LATECOL_LOWER, &phy_data);
3432 hw->phy.ops.read_reg(hw, HV_COLC_UPPER, &phy_data);
3433 hw->phy.ops.read_reg(hw, HV_COLC_LOWER, &phy_data);
3434 hw->phy.ops.read_reg(hw, HV_DC_UPPER, &phy_data);
3435 hw->phy.ops.read_reg(hw, HV_DC_LOWER, &phy_data);
3436 hw->phy.ops.read_reg(hw, HV_TNCRS_UPPER, &phy_data);
3437 hw->phy.ops.read_reg(hw, HV_TNCRS_LOWER, &phy_data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003438 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07003439}
3440
3441static struct e1000_mac_operations ich8_mac_ops = {
Bruce Allana4f58f52009-06-02 11:29:18 +00003442 .id_led_init = e1000e_id_led_init,
Bruce Allan4662e822008-08-26 18:37:06 -07003443 .check_mng_mode = e1000_check_mng_mode_ich8lan,
Bruce Allan7d3cabb2009-07-01 13:29:08 +00003444 .check_for_link = e1000_check_for_copper_link_ich8lan,
Bruce Allana4f58f52009-06-02 11:29:18 +00003445 /* cleanup_led dependent on mac type */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003446 .clear_hw_cntrs = e1000_clear_hw_cntrs_ich8lan,
3447 .get_bus_info = e1000_get_bus_info_ich8lan,
3448 .get_link_up_info = e1000_get_link_up_info_ich8lan,
Bruce Allana4f58f52009-06-02 11:29:18 +00003449 /* led_on dependent on mac type */
3450 /* led_off dependent on mac type */
Jeff Kirshere2de3eb2008-03-28 09:15:11 -07003451 .update_mc_addr_list = e1000e_update_mc_addr_list_generic,
Auke Kokbc7f75f2007-09-17 12:30:59 -07003452 .reset_hw = e1000_reset_hw_ich8lan,
3453 .init_hw = e1000_init_hw_ich8lan,
3454 .setup_link = e1000_setup_link_ich8lan,
3455 .setup_physical_interface= e1000_setup_copper_link_ich8lan,
Bruce Allana4f58f52009-06-02 11:29:18 +00003456 /* id_led_init dependent on mac type */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003457};
3458
3459static struct e1000_phy_operations ich8_phy_ops = {
Bruce Allan94d81862009-11-20 23:25:26 +00003460 .acquire = e1000_acquire_swflag_ich8lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07003461 .check_reset_block = e1000_check_reset_block_ich8lan,
Bruce Allan94d81862009-11-20 23:25:26 +00003462 .commit = NULL,
Auke Kokbc7f75f2007-09-17 12:30:59 -07003463 .force_speed_duplex = e1000_phy_force_speed_duplex_ich8lan,
Bruce Allanf4187b52008-08-26 18:36:50 -07003464 .get_cfg_done = e1000_get_cfg_done_ich8lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07003465 .get_cable_length = e1000e_get_cable_length_igp_2,
Bruce Allan94d81862009-11-20 23:25:26 +00003466 .get_info = e1000_get_phy_info_ich8lan,
3467 .read_reg = e1000e_read_phy_reg_igp,
3468 .release = e1000_release_swflag_ich8lan,
3469 .reset = e1000_phy_hw_reset_ich8lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07003470 .set_d0_lplu_state = e1000_set_d0_lplu_state_ich8lan,
3471 .set_d3_lplu_state = e1000_set_d3_lplu_state_ich8lan,
Bruce Allan94d81862009-11-20 23:25:26 +00003472 .write_reg = e1000e_write_phy_reg_igp,
Auke Kokbc7f75f2007-09-17 12:30:59 -07003473};
3474
3475static struct e1000_nvm_operations ich8_nvm_ops = {
Bruce Allan94d81862009-11-20 23:25:26 +00003476 .acquire = e1000_acquire_nvm_ich8lan,
3477 .read = e1000_read_nvm_ich8lan,
3478 .release = e1000_release_nvm_ich8lan,
3479 .update = e1000_update_nvm_checksum_ich8lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07003480 .valid_led_default = e1000_valid_led_default_ich8lan,
Bruce Allan94d81862009-11-20 23:25:26 +00003481 .validate = e1000_validate_nvm_checksum_ich8lan,
3482 .write = e1000_write_nvm_ich8lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07003483};
3484
3485struct e1000_info e1000_ich8_info = {
3486 .mac = e1000_ich8lan,
3487 .flags = FLAG_HAS_WOL
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003488 | FLAG_IS_ICH
Auke Kokbc7f75f2007-09-17 12:30:59 -07003489 | FLAG_RX_CSUM_ENABLED
3490 | FLAG_HAS_CTRLEXT_ON_LOAD
3491 | FLAG_HAS_AMT
3492 | FLAG_HAS_FLASH
3493 | FLAG_APME_IN_WUC,
3494 .pba = 8,
Bruce Allan2adc55c2009-06-02 11:28:58 +00003495 .max_hw_frame_size = ETH_FRAME_LEN + ETH_FCS_LEN,
Jeff Kirsher69e3fd82008-04-02 13:48:18 -07003496 .get_variants = e1000_get_variants_ich8lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07003497 .mac_ops = &ich8_mac_ops,
3498 .phy_ops = &ich8_phy_ops,
3499 .nvm_ops = &ich8_nvm_ops,
3500};
3501
3502struct e1000_info e1000_ich9_info = {
3503 .mac = e1000_ich9lan,
3504 .flags = FLAG_HAS_JUMBO_FRAMES
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003505 | FLAG_IS_ICH
Auke Kokbc7f75f2007-09-17 12:30:59 -07003506 | FLAG_HAS_WOL
3507 | FLAG_RX_CSUM_ENABLED
3508 | FLAG_HAS_CTRLEXT_ON_LOAD
3509 | FLAG_HAS_AMT
3510 | FLAG_HAS_ERT
3511 | FLAG_HAS_FLASH
3512 | FLAG_APME_IN_WUC,
3513 .pba = 10,
Bruce Allan2adc55c2009-06-02 11:28:58 +00003514 .max_hw_frame_size = DEFAULT_JUMBO,
Jeff Kirsher69e3fd82008-04-02 13:48:18 -07003515 .get_variants = e1000_get_variants_ich8lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07003516 .mac_ops = &ich8_mac_ops,
3517 .phy_ops = &ich8_phy_ops,
3518 .nvm_ops = &ich8_nvm_ops,
3519};
3520
Bruce Allanf4187b52008-08-26 18:36:50 -07003521struct e1000_info e1000_ich10_info = {
3522 .mac = e1000_ich10lan,
3523 .flags = FLAG_HAS_JUMBO_FRAMES
3524 | FLAG_IS_ICH
3525 | FLAG_HAS_WOL
3526 | FLAG_RX_CSUM_ENABLED
3527 | FLAG_HAS_CTRLEXT_ON_LOAD
3528 | FLAG_HAS_AMT
3529 | FLAG_HAS_ERT
3530 | FLAG_HAS_FLASH
3531 | FLAG_APME_IN_WUC,
3532 .pba = 10,
Bruce Allan2adc55c2009-06-02 11:28:58 +00003533 .max_hw_frame_size = DEFAULT_JUMBO,
Bruce Allanf4187b52008-08-26 18:36:50 -07003534 .get_variants = e1000_get_variants_ich8lan,
3535 .mac_ops = &ich8_mac_ops,
3536 .phy_ops = &ich8_phy_ops,
3537 .nvm_ops = &ich8_nvm_ops,
3538};
Bruce Allana4f58f52009-06-02 11:29:18 +00003539
3540struct e1000_info e1000_pch_info = {
3541 .mac = e1000_pchlan,
3542 .flags = FLAG_IS_ICH
3543 | FLAG_HAS_WOL
3544 | FLAG_RX_CSUM_ENABLED
3545 | FLAG_HAS_CTRLEXT_ON_LOAD
3546 | FLAG_HAS_AMT
3547 | FLAG_HAS_FLASH
3548 | FLAG_HAS_JUMBO_FRAMES
Bruce Allan38eb3942009-11-19 12:34:20 +00003549 | FLAG_DISABLE_FC_PAUSE_TIME /* errata */
Bruce Allana4f58f52009-06-02 11:29:18 +00003550 | FLAG_APME_IN_WUC,
3551 .pba = 26,
3552 .max_hw_frame_size = 4096,
3553 .get_variants = e1000_get_variants_ich8lan,
3554 .mac_ops = &ich8_mac_ops,
3555 .phy_ops = &ich8_phy_ops,
3556 .nvm_ops = &ich8_nvm_ops,
3557};