blob: fbc84d41576286ed48e42c3f291c21bb53f64395 [file] [log] [blame]
Auke Kokbc7f75f2007-09-17 12:30:59 -07001/*******************************************************************************
2
3 Intel PRO/1000 Linux driver
Bruce Allanf5e261e2012-01-01 16:00:03 +00004 Copyright(c) 1999 - 2012 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/*
30 * 80003ES2LAN Gigabit Ethernet Controller (Copper)
31 * 80003ES2LAN Gigabit Ethernet Controller (Serdes)
32 */
33
Auke Kokbc7f75f2007-09-17 12:30:59 -070034#include "e1000.h"
35
36#define E1000_KMRNCTRLSTA_OFFSET_FIFO_CTRL 0x00
37#define E1000_KMRNCTRLSTA_OFFSET_INB_CTRL 0x02
38#define E1000_KMRNCTRLSTA_OFFSET_HD_CTRL 0x10
David Graham2d9498f2008-04-23 11:09:14 -070039#define E1000_KMRNCTRLSTA_OFFSET_MAC2PHY_OPMODE 0x1F
Auke Kokbc7f75f2007-09-17 12:30:59 -070040
41#define E1000_KMRNCTRLSTA_FIFO_CTRL_RX_BYPASS 0x0008
42#define E1000_KMRNCTRLSTA_FIFO_CTRL_TX_BYPASS 0x0800
43#define E1000_KMRNCTRLSTA_INB_CTRL_DIS_PADDING 0x0010
44
45#define E1000_KMRNCTRLSTA_HD_CTRL_10_100_DEFAULT 0x0004
46#define E1000_KMRNCTRLSTA_HD_CTRL_1000_DEFAULT 0x0000
David Graham2d9498f2008-04-23 11:09:14 -070047#define E1000_KMRNCTRLSTA_OPMODE_E_IDLE 0x2000
Auke Kokbc7f75f2007-09-17 12:30:59 -070048
Bruce Allan3421eec2009-12-08 07:28:20 +000049#define E1000_KMRNCTRLSTA_OPMODE_MASK 0x000C
50#define E1000_KMRNCTRLSTA_OPMODE_INBAND_MDIO 0x0004
51
Auke Kokbc7f75f2007-09-17 12:30:59 -070052#define E1000_TCTL_EXT_GCEX_MASK 0x000FFC00 /* Gigabit Carry Extend Padding */
53#define DEFAULT_TCTL_EXT_GCEX_80003ES2LAN 0x00010000
54
55#define DEFAULT_TIPG_IPGT_1000_80003ES2LAN 0x8
56#define DEFAULT_TIPG_IPGT_10_100_80003ES2LAN 0x9
57
58/* GG82563 PHY Specific Status Register (Page 0, Register 16 */
59#define GG82563_PSCR_POLARITY_REVERSAL_DISABLE 0x0002 /* 1=Reversal Disab. */
60#define GG82563_PSCR_CROSSOVER_MODE_MASK 0x0060
61#define GG82563_PSCR_CROSSOVER_MODE_MDI 0x0000 /* 00=Manual MDI */
62#define GG82563_PSCR_CROSSOVER_MODE_MDIX 0x0020 /* 01=Manual MDIX */
63#define GG82563_PSCR_CROSSOVER_MODE_AUTO 0x0060 /* 11=Auto crossover */
64
65/* PHY Specific Control Register 2 (Page 0, Register 26) */
66#define GG82563_PSCR2_REVERSE_AUTO_NEG 0x2000
67 /* 1=Reverse Auto-Negotiation */
68
69/* MAC Specific Control Register (Page 2, Register 21) */
70/* Tx clock speed for Link Down and 1000BASE-T for the following speeds */
71#define GG82563_MSCR_TX_CLK_MASK 0x0007
72#define GG82563_MSCR_TX_CLK_10MBPS_2_5 0x0004
73#define GG82563_MSCR_TX_CLK_100MBPS_25 0x0005
74#define GG82563_MSCR_TX_CLK_1000MBPS_25 0x0007
75
76#define GG82563_MSCR_ASSERT_CRS_ON_TX 0x0010 /* 1=Assert */
77
78/* DSP Distance Register (Page 5, Register 26) */
79#define GG82563_DSPD_CABLE_LENGTH 0x0007 /* 0 = <50M
80 1 = 50-80M
81 2 = 80-110M
82 3 = 110-140M
83 4 = >140M */
84
85/* Kumeran Mode Control Register (Page 193, Register 16) */
86#define GG82563_KMCR_PASS_FALSE_CARRIER 0x0800
87
David Graham2d9498f2008-04-23 11:09:14 -070088/* Max number of times Kumeran read/write should be validated */
89#define GG82563_MAX_KMRN_RETRY 0x5
90
Auke Kokbc7f75f2007-09-17 12:30:59 -070091/* Power Management Control Register (Page 193, Register 20) */
92#define GG82563_PMCR_ENABLE_ELECTRICAL_IDLE 0x0001
93 /* 1=Enable SERDES Electrical Idle */
94
95/* In-Band Control Register (Page 194, Register 18) */
96#define GG82563_ICR_DIS_PADDING 0x0010 /* Disable Padding */
97
Bruce Allanad680762008-03-28 09:15:03 -070098/*
99 * A table for the GG82563 cable length where the range is defined
Auke Kokbc7f75f2007-09-17 12:30:59 -0700100 * with a lower bound at "index" and the upper bound at
101 * "index + 5".
102 */
Bruce Allan64806412010-12-11 05:53:42 +0000103static const u16 e1000_gg82563_cable_length_table[] = {
104 0, 60, 115, 150, 150, 60, 115, 150, 180, 180, 0xFF };
Bruce Allaneb656d42009-12-01 15:47:02 +0000105#define GG82563_CABLE_LENGTH_TABLE_SIZE \
106 ARRAY_SIZE(e1000_gg82563_cable_length_table)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700107
108static s32 e1000_setup_copper_link_80003es2lan(struct e1000_hw *hw);
109static s32 e1000_acquire_swfw_sync_80003es2lan(struct e1000_hw *hw, u16 mask);
110static void e1000_release_swfw_sync_80003es2lan(struct e1000_hw *hw, u16 mask);
111static void e1000_initialize_hw_bits_80003es2lan(struct e1000_hw *hw);
112static void e1000_clear_hw_cntrs_80003es2lan(struct e1000_hw *hw);
113static s32 e1000_cfg_kmrn_1000_80003es2lan(struct e1000_hw *hw);
114static s32 e1000_cfg_kmrn_10_100_80003es2lan(struct e1000_hw *hw, u16 duplex);
Bruce Allan75eb0fa2008-11-21 16:53:51 -0800115static s32 e1000_cfg_on_link_up_80003es2lan(struct e1000_hw *hw);
116static s32 e1000_read_kmrn_reg_80003es2lan(struct e1000_hw *hw, u32 offset,
117 u16 *data);
118static s32 e1000_write_kmrn_reg_80003es2lan(struct e1000_hw *hw, u32 offset,
119 u16 data);
Bruce Allan17f208d2009-12-01 15:47:22 +0000120static void e1000_power_down_phy_copper_80003es2lan(struct e1000_hw *hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700121
122/**
123 * e1000_init_phy_params_80003es2lan - Init ESB2 PHY func ptrs.
124 * @hw: pointer to the HW structure
Auke Kokbc7f75f2007-09-17 12:30:59 -0700125 **/
126static s32 e1000_init_phy_params_80003es2lan(struct e1000_hw *hw)
127{
128 struct e1000_phy_info *phy = &hw->phy;
129 s32 ret_val;
130
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700131 if (hw->phy.media_type != e1000_media_type_copper) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700132 phy->type = e1000_phy_none;
133 return 0;
Bruce Allan17f208d2009-12-01 15:47:22 +0000134 } else {
135 phy->ops.power_up = e1000_power_up_phy_copper;
136 phy->ops.power_down = e1000_power_down_phy_copper_80003es2lan;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700137 }
138
139 phy->addr = 1;
140 phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT;
141 phy->reset_delay_us = 100;
142 phy->type = e1000_phy_gg82563;
143
144 /* This can only be done after all function pointers are setup. */
145 ret_val = e1000e_get_phy_id(hw);
146
147 /* Verify phy id */
148 if (phy->id != GG82563_E_PHY_ID)
149 return -E1000_ERR_PHY;
150
151 return ret_val;
152}
153
154/**
155 * e1000_init_nvm_params_80003es2lan - Init ESB2 NVM func ptrs.
156 * @hw: pointer to the HW structure
Auke Kokbc7f75f2007-09-17 12:30:59 -0700157 **/
158static s32 e1000_init_nvm_params_80003es2lan(struct e1000_hw *hw)
159{
160 struct e1000_nvm_info *nvm = &hw->nvm;
161 u32 eecd = er32(EECD);
162 u16 size;
163
164 nvm->opcode_bits = 8;
165 nvm->delay_usec = 1;
166 switch (nvm->override) {
167 case e1000_nvm_override_spi_large:
168 nvm->page_size = 32;
169 nvm->address_bits = 16;
170 break;
171 case e1000_nvm_override_spi_small:
172 nvm->page_size = 8;
173 nvm->address_bits = 8;
174 break;
175 default:
176 nvm->page_size = eecd & E1000_EECD_ADDR_BITS ? 32 : 8;
177 nvm->address_bits = eecd & E1000_EECD_ADDR_BITS ? 16 : 8;
178 break;
179 }
180
Bruce Allanad680762008-03-28 09:15:03 -0700181 nvm->type = e1000_nvm_eeprom_spi;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700182
183 size = (u16)((eecd & E1000_EECD_SIZE_EX_MASK) >>
184 E1000_EECD_SIZE_EX_SHIFT);
185
Bruce Allanad680762008-03-28 09:15:03 -0700186 /*
187 * Added to a constant, "size" becomes the left-shift value
Auke Kokbc7f75f2007-09-17 12:30:59 -0700188 * for setting word_size.
189 */
190 size += NVM_WORD_SIZE_BASE_SHIFT;
Jeff Kirsher8d7c2942008-04-02 13:48:07 -0700191
192 /* EEPROM access above 16k is unsupported */
193 if (size > 14)
194 size = 14;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700195 nvm->word_size = 1 << size;
196
197 return 0;
198}
199
200/**
201 * e1000_init_mac_params_80003es2lan - Init ESB2 MAC func ptrs.
202 * @hw: pointer to the HW structure
Auke Kokbc7f75f2007-09-17 12:30:59 -0700203 **/
Bruce Allanec34c172012-02-01 10:53:05 +0000204static s32 e1000_init_mac_params_80003es2lan(struct e1000_hw *hw)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700205{
Auke Kokbc7f75f2007-09-17 12:30:59 -0700206 struct e1000_mac_info *mac = &hw->mac;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700207
Bruce Allane68782e2012-01-31 06:37:43 +0000208 /* Set media type and media-dependent function pointers */
Bruce Allanec34c172012-02-01 10:53:05 +0000209 switch (hw->adapter->pdev->device) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700210 case E1000_DEV_ID_80003ES2LAN_SERDES_DPT:
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700211 hw->phy.media_type = e1000_media_type_internal_serdes;
Bruce Allane68782e2012-01-31 06:37:43 +0000212 mac->ops.check_for_link = e1000e_check_for_serdes_link;
213 mac->ops.setup_physical_interface =
214 e1000e_setup_fiber_serdes_link;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700215 break;
216 default:
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700217 hw->phy.media_type = e1000_media_type_copper;
Bruce Allane68782e2012-01-31 06:37:43 +0000218 mac->ops.check_for_link = e1000e_check_for_copper_link;
219 mac->ops.setup_physical_interface =
220 e1000_setup_copper_link_80003es2lan;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700221 break;
222 }
223
224 /* Set mta register count */
225 mac->mta_reg_count = 128;
226 /* Set rar entry count */
227 mac->rar_entry_count = E1000_RAR_ENTRIES;
Bruce Allana65a4a02010-05-10 15:01:51 +0000228 /* FWSM register */
229 mac->has_fwsm = true;
230 /* ARC supported; valid only if manageability features are enabled. */
Bruce Allan04499ec2012-04-13 00:08:31 +0000231 mac->arc_subsystem_valid = !!(er32(FWSM) & E1000_FWSM_MODE_MASK);
Bruce Allanf464ba82010-01-07 16:31:35 +0000232 /* Adaptive IFS not supported */
233 mac->adaptive_ifs = false;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700234
Bruce Allanf4d2dd42010-01-13 02:05:18 +0000235 /* set lan id for port to determine which phy lock to use */
236 hw->mac.ops.set_lan_id(hw);
237
Auke Kokbc7f75f2007-09-17 12:30:59 -0700238 return 0;
239}
240
Jeff Kirsher69e3fd82008-04-02 13:48:18 -0700241static s32 e1000_get_variants_80003es2lan(struct e1000_adapter *adapter)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700242{
243 struct e1000_hw *hw = &adapter->hw;
244 s32 rc;
245
Bruce Allanec34c172012-02-01 10:53:05 +0000246 rc = e1000_init_mac_params_80003es2lan(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700247 if (rc)
248 return rc;
249
250 rc = e1000_init_nvm_params_80003es2lan(hw);
251 if (rc)
252 return rc;
253
254 rc = e1000_init_phy_params_80003es2lan(hw);
255 if (rc)
256 return rc;
257
258 return 0;
259}
260
261/**
262 * e1000_acquire_phy_80003es2lan - Acquire rights to access PHY
263 * @hw: pointer to the HW structure
264 *
Bruce Allanfe401672009-11-20 23:26:05 +0000265 * A wrapper to acquire access rights to the correct PHY.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700266 **/
267static s32 e1000_acquire_phy_80003es2lan(struct e1000_hw *hw)
268{
269 u16 mask;
270
271 mask = hw->bus.func ? E1000_SWFW_PHY1_SM : E1000_SWFW_PHY0_SM;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700272 return e1000_acquire_swfw_sync_80003es2lan(hw, mask);
273}
274
275/**
276 * e1000_release_phy_80003es2lan - Release rights to access PHY
277 * @hw: pointer to the HW structure
278 *
Bruce Allanfe401672009-11-20 23:26:05 +0000279 * A wrapper to release access rights to the correct PHY.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700280 **/
281static void e1000_release_phy_80003es2lan(struct e1000_hw *hw)
282{
283 u16 mask;
284
285 mask = hw->bus.func ? E1000_SWFW_PHY1_SM : E1000_SWFW_PHY0_SM;
Bruce Allan75eb0fa2008-11-21 16:53:51 -0800286 e1000_release_swfw_sync_80003es2lan(hw, mask);
287}
288
289/**
Bruce Allandffcdde2012-02-17 09:35:33 +0000290 * e1000_acquire_mac_csr_80003es2lan - Acquire right to access Kumeran register
Bruce Allan75eb0fa2008-11-21 16:53:51 -0800291 * @hw: pointer to the HW structure
292 *
293 * Acquire the semaphore to access the Kumeran interface.
294 *
295 **/
296static s32 e1000_acquire_mac_csr_80003es2lan(struct e1000_hw *hw)
297{
298 u16 mask;
299
300 mask = E1000_SWFW_CSR_SM;
301
302 return e1000_acquire_swfw_sync_80003es2lan(hw, mask);
303}
304
305/**
Bruce Allandffcdde2012-02-17 09:35:33 +0000306 * e1000_release_mac_csr_80003es2lan - Release right to access Kumeran Register
Bruce Allan75eb0fa2008-11-21 16:53:51 -0800307 * @hw: pointer to the HW structure
308 *
309 * Release the semaphore used to access the Kumeran interface
310 **/
311static void e1000_release_mac_csr_80003es2lan(struct e1000_hw *hw)
312{
313 u16 mask;
314
315 mask = E1000_SWFW_CSR_SM;
David Graham2d9498f2008-04-23 11:09:14 -0700316
Auke Kokbc7f75f2007-09-17 12:30:59 -0700317 e1000_release_swfw_sync_80003es2lan(hw, mask);
318}
319
320/**
321 * e1000_acquire_nvm_80003es2lan - Acquire rights to access NVM
322 * @hw: pointer to the HW structure
323 *
Bruce Allanfe401672009-11-20 23:26:05 +0000324 * Acquire the semaphore to access the EEPROM.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700325 **/
326static s32 e1000_acquire_nvm_80003es2lan(struct e1000_hw *hw)
327{
328 s32 ret_val;
329
330 ret_val = e1000_acquire_swfw_sync_80003es2lan(hw, E1000_SWFW_EEP_SM);
331 if (ret_val)
332 return ret_val;
333
334 ret_val = e1000e_acquire_nvm(hw);
335
336 if (ret_val)
337 e1000_release_swfw_sync_80003es2lan(hw, E1000_SWFW_EEP_SM);
338
339 return ret_val;
340}
341
342/**
343 * e1000_release_nvm_80003es2lan - Relinquish rights to access NVM
344 * @hw: pointer to the HW structure
345 *
Bruce Allanfe401672009-11-20 23:26:05 +0000346 * Release the semaphore used to access the EEPROM.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700347 **/
348static void e1000_release_nvm_80003es2lan(struct e1000_hw *hw)
349{
350 e1000e_release_nvm(hw);
351 e1000_release_swfw_sync_80003es2lan(hw, E1000_SWFW_EEP_SM);
352}
353
354/**
355 * e1000_acquire_swfw_sync_80003es2lan - Acquire SW/FW semaphore
356 * @hw: pointer to the HW structure
357 * @mask: specifies which semaphore to acquire
358 *
359 * Acquire the SW/FW semaphore to access the PHY or NVM. The mask
360 * will also specify which port we're acquiring the lock for.
361 **/
362static s32 e1000_acquire_swfw_sync_80003es2lan(struct e1000_hw *hw, u16 mask)
363{
364 u32 swfw_sync;
365 u32 swmask = mask;
366 u32 fwmask = mask << 16;
367 s32 i = 0;
Bruce Allan75eb0fa2008-11-21 16:53:51 -0800368 s32 timeout = 50;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700369
370 while (i < timeout) {
371 if (e1000e_get_hw_semaphore(hw))
372 return -E1000_ERR_SWFW_SYNC;
373
374 swfw_sync = er32(SW_FW_SYNC);
375 if (!(swfw_sync & (fwmask | swmask)))
376 break;
377
Bruce Allanad680762008-03-28 09:15:03 -0700378 /*
379 * Firmware currently using resource (fwmask)
380 * or other software thread using resource (swmask)
381 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700382 e1000e_put_hw_semaphore(hw);
383 mdelay(5);
384 i++;
385 }
386
387 if (i == timeout) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000388 e_dbg("Driver can't access resource, SW_FW_SYNC timeout.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700389 return -E1000_ERR_SWFW_SYNC;
390 }
391
392 swfw_sync |= swmask;
393 ew32(SW_FW_SYNC, swfw_sync);
394
395 e1000e_put_hw_semaphore(hw);
396
397 return 0;
398}
399
400/**
401 * e1000_release_swfw_sync_80003es2lan - Release SW/FW semaphore
402 * @hw: pointer to the HW structure
403 * @mask: specifies which semaphore to acquire
404 *
405 * Release the SW/FW semaphore used to access the PHY or NVM. The mask
406 * will also specify which port we're releasing the lock for.
407 **/
408static void e1000_release_swfw_sync_80003es2lan(struct e1000_hw *hw, u16 mask)
409{
410 u32 swfw_sync;
411
Bruce Allan184125a2010-12-11 05:53:37 +0000412 while (e1000e_get_hw_semaphore(hw) != 0)
413 ; /* Empty */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700414
415 swfw_sync = er32(SW_FW_SYNC);
416 swfw_sync &= ~mask;
417 ew32(SW_FW_SYNC, swfw_sync);
418
419 e1000e_put_hw_semaphore(hw);
420}
421
422/**
423 * e1000_read_phy_reg_gg82563_80003es2lan - Read GG82563 PHY register
424 * @hw: pointer to the HW structure
425 * @offset: offset of the register to read
426 * @data: pointer to the data returned from the operation
427 *
Bruce Allanfe401672009-11-20 23:26:05 +0000428 * Read the GG82563 PHY register.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700429 **/
430static s32 e1000_read_phy_reg_gg82563_80003es2lan(struct e1000_hw *hw,
431 u32 offset, u16 *data)
432{
433 s32 ret_val;
434 u32 page_select;
435 u16 temp;
436
David Graham2d9498f2008-04-23 11:09:14 -0700437 ret_val = e1000_acquire_phy_80003es2lan(hw);
438 if (ret_val)
439 return ret_val;
440
Auke Kokbc7f75f2007-09-17 12:30:59 -0700441 /* Select Configuration Page */
David Graham2d9498f2008-04-23 11:09:14 -0700442 if ((offset & MAX_PHY_REG_ADDRESS) < GG82563_MIN_ALT_REG) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700443 page_select = GG82563_PHY_PAGE_SELECT;
David Graham2d9498f2008-04-23 11:09:14 -0700444 } else {
Bruce Allanad680762008-03-28 09:15:03 -0700445 /*
446 * Use Alternative Page Select register to access
Auke Kokbc7f75f2007-09-17 12:30:59 -0700447 * registers 30 and 31
448 */
449 page_select = GG82563_PHY_PAGE_SELECT_ALT;
David Graham2d9498f2008-04-23 11:09:14 -0700450 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700451
452 temp = (u16)((u16)offset >> GG82563_PAGE_SHIFT);
David Graham2d9498f2008-04-23 11:09:14 -0700453 ret_val = e1000e_write_phy_reg_mdic(hw, page_select, temp);
454 if (ret_val) {
455 e1000_release_phy_80003es2lan(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700456 return ret_val;
David Graham2d9498f2008-04-23 11:09:14 -0700457 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700458
Bruce Allanb4d8e212012-02-17 03:17:55 +0000459 if (hw->dev_spec.e80003es2lan.mdic_wa_enable) {
Bruce Allan3421eec2009-12-08 07:28:20 +0000460 /*
461 * The "ready" bit in the MDIC register may be incorrectly set
462 * before the device has completed the "Page Select" MDI
463 * transaction. So we wait 200us after each MDI command...
464 */
465 udelay(200);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700466
Bruce Allan3421eec2009-12-08 07:28:20 +0000467 /* ...and verify the command was successful. */
468 ret_val = e1000e_read_phy_reg_mdic(hw, page_select, &temp);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700469
Bruce Allan3421eec2009-12-08 07:28:20 +0000470 if (((u16)offset >> GG82563_PAGE_SHIFT) != temp) {
Bruce Allan3421eec2009-12-08 07:28:20 +0000471 e1000_release_phy_80003es2lan(hw);
Bruce Allan7eb61d82012-02-08 02:55:03 +0000472 return -E1000_ERR_PHY;
Bruce Allan3421eec2009-12-08 07:28:20 +0000473 }
474
475 udelay(200);
476
477 ret_val = e1000e_read_phy_reg_mdic(hw,
478 MAX_PHY_REG_ADDRESS & offset,
479 data);
480
481 udelay(200);
482 } else {
483 ret_val = e1000e_read_phy_reg_mdic(hw,
484 MAX_PHY_REG_ADDRESS & offset,
485 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700486 }
487
David Graham2d9498f2008-04-23 11:09:14 -0700488 e1000_release_phy_80003es2lan(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700489
490 return ret_val;
491}
492
493/**
494 * e1000_write_phy_reg_gg82563_80003es2lan - Write GG82563 PHY register
495 * @hw: pointer to the HW structure
496 * @offset: offset of the register to read
497 * @data: value to write to the register
498 *
Bruce Allanfe401672009-11-20 23:26:05 +0000499 * Write to the GG82563 PHY register.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700500 **/
501static s32 e1000_write_phy_reg_gg82563_80003es2lan(struct e1000_hw *hw,
502 u32 offset, u16 data)
503{
504 s32 ret_val;
505 u32 page_select;
506 u16 temp;
507
David Graham2d9498f2008-04-23 11:09:14 -0700508 ret_val = e1000_acquire_phy_80003es2lan(hw);
509 if (ret_val)
510 return ret_val;
511
Auke Kokbc7f75f2007-09-17 12:30:59 -0700512 /* Select Configuration Page */
David Graham2d9498f2008-04-23 11:09:14 -0700513 if ((offset & MAX_PHY_REG_ADDRESS) < GG82563_MIN_ALT_REG) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700514 page_select = GG82563_PHY_PAGE_SELECT;
David Graham2d9498f2008-04-23 11:09:14 -0700515 } else {
Bruce Allanad680762008-03-28 09:15:03 -0700516 /*
517 * Use Alternative Page Select register to access
Auke Kokbc7f75f2007-09-17 12:30:59 -0700518 * registers 30 and 31
519 */
520 page_select = GG82563_PHY_PAGE_SELECT_ALT;
David Graham2d9498f2008-04-23 11:09:14 -0700521 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700522
523 temp = (u16)((u16)offset >> GG82563_PAGE_SHIFT);
David Graham2d9498f2008-04-23 11:09:14 -0700524 ret_val = e1000e_write_phy_reg_mdic(hw, page_select, temp);
525 if (ret_val) {
526 e1000_release_phy_80003es2lan(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700527 return ret_val;
David Graham2d9498f2008-04-23 11:09:14 -0700528 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700529
Bruce Allanb4d8e212012-02-17 03:17:55 +0000530 if (hw->dev_spec.e80003es2lan.mdic_wa_enable) {
Bruce Allan3421eec2009-12-08 07:28:20 +0000531 /*
532 * The "ready" bit in the MDIC register may be incorrectly set
533 * before the device has completed the "Page Select" MDI
534 * transaction. So we wait 200us after each MDI command...
535 */
536 udelay(200);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700537
Bruce Allan3421eec2009-12-08 07:28:20 +0000538 /* ...and verify the command was successful. */
539 ret_val = e1000e_read_phy_reg_mdic(hw, page_select, &temp);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700540
Bruce Allan3421eec2009-12-08 07:28:20 +0000541 if (((u16)offset >> GG82563_PAGE_SHIFT) != temp) {
542 e1000_release_phy_80003es2lan(hw);
543 return -E1000_ERR_PHY;
544 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700545
Bruce Allan3421eec2009-12-08 07:28:20 +0000546 udelay(200);
547
548 ret_val = e1000e_write_phy_reg_mdic(hw,
549 MAX_PHY_REG_ADDRESS & offset,
550 data);
551
552 udelay(200);
553 } else {
554 ret_val = e1000e_write_phy_reg_mdic(hw,
555 MAX_PHY_REG_ADDRESS & offset,
556 data);
David Graham2d9498f2008-04-23 11:09:14 -0700557 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700558
David Graham2d9498f2008-04-23 11:09:14 -0700559 e1000_release_phy_80003es2lan(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700560
561 return ret_val;
562}
563
564/**
565 * e1000_write_nvm_80003es2lan - Write to ESB2 NVM
566 * @hw: pointer to the HW structure
567 * @offset: offset of the register to read
568 * @words: number of words to write
569 * @data: buffer of data to write to the NVM
570 *
Bruce Allanfe401672009-11-20 23:26:05 +0000571 * Write "words" of data to the ESB2 NVM.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700572 **/
573static s32 e1000_write_nvm_80003es2lan(struct e1000_hw *hw, u16 offset,
574 u16 words, u16 *data)
575{
576 return e1000e_write_nvm_spi(hw, offset, words, data);
577}
578
579/**
580 * e1000_get_cfg_done_80003es2lan - Wait for configuration to complete
581 * @hw: pointer to the HW structure
582 *
583 * Wait a specific amount of time for manageability processes to complete.
584 * This is a function pointer entry point called by the phy module.
585 **/
586static s32 e1000_get_cfg_done_80003es2lan(struct e1000_hw *hw)
587{
588 s32 timeout = PHY_CFG_TIMEOUT;
589 u32 mask = E1000_NVM_CFG_DONE_PORT_0;
590
591 if (hw->bus.func == 1)
592 mask = E1000_NVM_CFG_DONE_PORT_1;
593
594 while (timeout) {
595 if (er32(EEMNGCTL) & mask)
596 break;
Bruce Allan1bba4382011-03-19 00:27:20 +0000597 usleep_range(1000, 2000);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700598 timeout--;
599 }
600 if (!timeout) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000601 e_dbg("MNG configuration cycle has not completed.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700602 return -E1000_ERR_RESET;
603 }
604
605 return 0;
606}
607
608/**
609 * e1000_phy_force_speed_duplex_80003es2lan - Force PHY speed and duplex
610 * @hw: pointer to the HW structure
611 *
612 * Force the speed and duplex settings onto the PHY. This is a
613 * function pointer entry point called by the phy module.
614 **/
615static s32 e1000_phy_force_speed_duplex_80003es2lan(struct e1000_hw *hw)
616{
617 s32 ret_val;
618 u16 phy_data;
619 bool link;
620
Bruce Allanad680762008-03-28 09:15:03 -0700621 /*
622 * Clear Auto-Crossover to force MDI manually. M88E1000 requires MDI
Auke Kokbc7f75f2007-09-17 12:30:59 -0700623 * forced whenever speed and duplex are forced.
624 */
625 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
626 if (ret_val)
627 return ret_val;
628
629 phy_data &= ~GG82563_PSCR_CROSSOVER_MODE_AUTO;
630 ret_val = e1e_wphy(hw, GG82563_PHY_SPEC_CTRL, phy_data);
631 if (ret_val)
632 return ret_val;
633
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000634 e_dbg("GG82563 PSCR: %X\n", phy_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700635
636 ret_val = e1e_rphy(hw, PHY_CONTROL, &phy_data);
637 if (ret_val)
638 return ret_val;
639
640 e1000e_phy_force_speed_duplex_setup(hw, &phy_data);
641
642 /* Reset the phy to commit changes. */
643 phy_data |= MII_CR_RESET;
644
645 ret_val = e1e_wphy(hw, PHY_CONTROL, phy_data);
646 if (ret_val)
647 return ret_val;
648
649 udelay(1);
650
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700651 if (hw->phy.autoneg_wait_to_complete) {
Bruce Allan434f1392011-12-16 00:46:54 +0000652 e_dbg("Waiting for forced speed/duplex link on GG82563 phy.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700653
654 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
655 100000, &link);
656 if (ret_val)
657 return ret_val;
658
659 if (!link) {
Bruce Allanad680762008-03-28 09:15:03 -0700660 /*
661 * We didn't get link.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700662 * Reset the DSP and cross our fingers.
663 */
664 ret_val = e1000e_phy_reset_dsp(hw);
665 if (ret_val)
666 return ret_val;
667 }
668
669 /* Try once more */
670 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
671 100000, &link);
672 if (ret_val)
673 return ret_val;
674 }
675
676 ret_val = e1e_rphy(hw, GG82563_PHY_MAC_SPEC_CTRL, &phy_data);
677 if (ret_val)
678 return ret_val;
679
Bruce Allanad680762008-03-28 09:15:03 -0700680 /*
681 * Resetting the phy means we need to verify the TX_CLK corresponds
Auke Kokbc7f75f2007-09-17 12:30:59 -0700682 * to the link speed. 10Mbps -> 2.5MHz, else 25MHz.
683 */
684 phy_data &= ~GG82563_MSCR_TX_CLK_MASK;
685 if (hw->mac.forced_speed_duplex & E1000_ALL_10_SPEED)
686 phy_data |= GG82563_MSCR_TX_CLK_10MBPS_2_5;
687 else
688 phy_data |= GG82563_MSCR_TX_CLK_100MBPS_25;
689
Bruce Allanad680762008-03-28 09:15:03 -0700690 /*
691 * In addition, we must re-enable CRS on Tx for both half and full
Auke Kokbc7f75f2007-09-17 12:30:59 -0700692 * duplex.
693 */
694 phy_data |= GG82563_MSCR_ASSERT_CRS_ON_TX;
695 ret_val = e1e_wphy(hw, GG82563_PHY_MAC_SPEC_CTRL, phy_data);
696
697 return ret_val;
698}
699
700/**
701 * e1000_get_cable_length_80003es2lan - Set approximate cable length
702 * @hw: pointer to the HW structure
703 *
704 * Find the approximate cable length as measured by the GG82563 PHY.
705 * This is a function pointer entry point called by the phy module.
706 **/
707static s32 e1000_get_cable_length_80003es2lan(struct e1000_hw *hw)
708{
709 struct e1000_phy_info *phy = &hw->phy;
Bruce Allaneb656d42009-12-01 15:47:02 +0000710 s32 ret_val = 0;
Bruce Allana708dd82009-11-20 23:28:37 +0000711 u16 phy_data, index;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700712
713 ret_val = e1e_rphy(hw, GG82563_PHY_DSP_DISTANCE, &phy_data);
714 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +0000715 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700716
717 index = phy_data & GG82563_DSPD_CABLE_LENGTH;
Bruce Allaneb656d42009-12-01 15:47:02 +0000718
Bruce Allan5015e532012-02-08 02:55:56 +0000719 if (index >= GG82563_CABLE_LENGTH_TABLE_SIZE - 5)
720 return -E1000_ERR_PHY;
Bruce Allaneb656d42009-12-01 15:47:02 +0000721
Auke Kokbc7f75f2007-09-17 12:30:59 -0700722 phy->min_cable_length = e1000_gg82563_cable_length_table[index];
Bruce Allaneb656d42009-12-01 15:47:02 +0000723 phy->max_cable_length = e1000_gg82563_cable_length_table[index + 5];
Auke Kokbc7f75f2007-09-17 12:30:59 -0700724
725 phy->cable_length = (phy->min_cable_length + phy->max_cable_length) / 2;
726
Bruce Allan5015e532012-02-08 02:55:56 +0000727 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700728}
729
730/**
731 * e1000_get_link_up_info_80003es2lan - Report speed and duplex
732 * @hw: pointer to the HW structure
733 * @speed: pointer to speed buffer
734 * @duplex: pointer to duplex buffer
735 *
736 * Retrieve the current speed and duplex configuration.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700737 **/
738static s32 e1000_get_link_up_info_80003es2lan(struct e1000_hw *hw, u16 *speed,
739 u16 *duplex)
740{
741 s32 ret_val;
742
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700743 if (hw->phy.media_type == e1000_media_type_copper) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700744 ret_val = e1000e_get_speed_and_duplex_copper(hw,
745 speed,
746 duplex);
Bruce Allan75eb0fa2008-11-21 16:53:51 -0800747 hw->phy.ops.cfg_on_link_up(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700748 } else {
749 ret_val = e1000e_get_speed_and_duplex_fiber_serdes(hw,
750 speed,
751 duplex);
752 }
753
754 return ret_val;
755}
756
757/**
758 * e1000_reset_hw_80003es2lan - Reset the ESB2 controller
759 * @hw: pointer to the HW structure
760 *
761 * Perform a global reset to the ESB2 controller.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700762 **/
763static s32 e1000_reset_hw_80003es2lan(struct e1000_hw *hw)
764{
Bruce Allandd93f952011-01-06 14:29:48 +0000765 u32 ctrl;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700766 s32 ret_val;
767
Bruce Allanad680762008-03-28 09:15:03 -0700768 /*
769 * Prevent the PCI-E bus from sticking if there is no TLP connection
Auke Kokbc7f75f2007-09-17 12:30:59 -0700770 * on the last TLP read/write transaction when MAC is reset.
771 */
772 ret_val = e1000e_disable_pcie_master(hw);
773 if (ret_val)
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000774 e_dbg("PCI-E Master disable polling has failed.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700775
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000776 e_dbg("Masking off all interrupts\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700777 ew32(IMC, 0xffffffff);
778
779 ew32(RCTL, 0);
780 ew32(TCTL, E1000_TCTL_PSP);
781 e1e_flush();
782
Bruce Allan1bba4382011-03-19 00:27:20 +0000783 usleep_range(10000, 20000);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700784
785 ctrl = er32(CTRL);
786
Bruce Allan75eb0fa2008-11-21 16:53:51 -0800787 ret_val = e1000_acquire_phy_80003es2lan(hw);
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000788 e_dbg("Issuing a global reset to MAC\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700789 ew32(CTRL, ctrl | E1000_CTRL_RST);
Bruce Allan75eb0fa2008-11-21 16:53:51 -0800790 e1000_release_phy_80003es2lan(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700791
792 ret_val = e1000e_get_auto_rd_done(hw);
793 if (ret_val)
794 /* We don't want to continue accessing MAC registers. */
795 return ret_val;
796
797 /* Clear any pending interrupt events. */
798 ew32(IMC, 0xffffffff);
Bruce Allandd93f952011-01-06 14:29:48 +0000799 er32(ICR);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700800
Bruce Allan7eb61d82012-02-08 02:55:03 +0000801 return e1000_check_alt_mac_addr_generic(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700802}
803
804/**
805 * e1000_init_hw_80003es2lan - Initialize the ESB2 controller
806 * @hw: pointer to the HW structure
807 *
808 * Initialize the hw bits, LED, VFTA, MTA, link and hw counters.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700809 **/
810static s32 e1000_init_hw_80003es2lan(struct e1000_hw *hw)
811{
812 struct e1000_mac_info *mac = &hw->mac;
813 u32 reg_data;
814 s32 ret_val;
Bruce Alland9b24132011-05-13 07:19:42 +0000815 u16 kum_reg_data;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700816 u16 i;
817
818 e1000_initialize_hw_bits_80003es2lan(hw);
819
820 /* Initialize identification LED */
Bruce Alland1964eb2012-02-22 09:02:21 +0000821 ret_val = mac->ops.id_led_init(hw);
Bruce Allande39b752009-11-20 23:27:59 +0000822 if (ret_val)
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000823 e_dbg("Error initializing identification LED\n");
Bruce Allande39b752009-11-20 23:27:59 +0000824 /* This is not fatal and we should not stop init due to this */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700825
826 /* Disabling VLAN filtering */
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000827 e_dbg("Initializing the IEEE VLAN\n");
Bruce Allancaaddaf2009-12-01 15:46:43 +0000828 mac->ops.clear_vfta(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700829
830 /* Setup the receive address. */
831 e1000e_init_rx_addrs(hw, mac->rar_entry_count);
832
833 /* Zero out the Multicast HASH table */
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000834 e_dbg("Zeroing the MTA\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700835 for (i = 0; i < mac->mta_reg_count; i++)
836 E1000_WRITE_REG_ARRAY(hw, E1000_MTA, i, 0);
837
838 /* Setup link and flow control */
Bruce Allan1a46b402012-02-22 09:02:26 +0000839 ret_val = mac->ops.setup_link(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700840
Bruce Alland9b24132011-05-13 07:19:42 +0000841 /* Disable IBIST slave mode (far-end loopback) */
842 e1000_read_kmrn_reg_80003es2lan(hw, E1000_KMRNCTRLSTA_INBAND_PARAM,
843 &kum_reg_data);
844 kum_reg_data |= E1000_KMRNCTRLSTA_IBIST_DISABLE;
845 e1000_write_kmrn_reg_80003es2lan(hw, E1000_KMRNCTRLSTA_INBAND_PARAM,
846 kum_reg_data);
847
Auke Kokbc7f75f2007-09-17 12:30:59 -0700848 /* Set the transmit descriptor write-back policy */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700849 reg_data = er32(TXDCTL(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -0700850 reg_data = (reg_data & ~E1000_TXDCTL_WTHRESH) |
851 E1000_TXDCTL_FULL_TX_DESC_WB | E1000_TXDCTL_COUNT_DESC;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700852 ew32(TXDCTL(0), reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700853
854 /* ...for both queues. */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700855 reg_data = er32(TXDCTL(1));
Auke Kokbc7f75f2007-09-17 12:30:59 -0700856 reg_data = (reg_data & ~E1000_TXDCTL_WTHRESH) |
857 E1000_TXDCTL_FULL_TX_DESC_WB | E1000_TXDCTL_COUNT_DESC;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700858 ew32(TXDCTL(1), reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700859
860 /* Enable retransmit on late collisions */
861 reg_data = er32(TCTL);
862 reg_data |= E1000_TCTL_RTLC;
863 ew32(TCTL, reg_data);
864
865 /* Configure Gigabit Carry Extend Padding */
866 reg_data = er32(TCTL_EXT);
867 reg_data &= ~E1000_TCTL_EXT_GCEX_MASK;
868 reg_data |= DEFAULT_TCTL_EXT_GCEX_80003ES2LAN;
869 ew32(TCTL_EXT, reg_data);
870
871 /* Configure Transmit Inter-Packet Gap */
872 reg_data = er32(TIPG);
873 reg_data &= ~E1000_TIPG_IPGT_MASK;
874 reg_data |= DEFAULT_TIPG_IPGT_1000_80003ES2LAN;
875 ew32(TIPG, reg_data);
876
877 reg_data = E1000_READ_REG_ARRAY(hw, E1000_FFLT, 0x0001);
878 reg_data &= ~0x00100000;
879 E1000_WRITE_REG_ARRAY(hw, E1000_FFLT, 0x0001, reg_data);
880
Bruce Allan3421eec2009-12-08 07:28:20 +0000881 /* default to true to enable the MDIC W/A */
882 hw->dev_spec.e80003es2lan.mdic_wa_enable = true;
883
884 ret_val = e1000_read_kmrn_reg_80003es2lan(hw,
885 E1000_KMRNCTRLSTA_OFFSET >>
886 E1000_KMRNCTRLSTA_OFFSET_SHIFT,
887 &i);
888 if (!ret_val) {
889 if ((i & E1000_KMRNCTRLSTA_OPMODE_MASK) ==
890 E1000_KMRNCTRLSTA_OPMODE_INBAND_MDIO)
891 hw->dev_spec.e80003es2lan.mdic_wa_enable = false;
892 }
893
Bruce Allanad680762008-03-28 09:15:03 -0700894 /*
895 * Clear all of the statistics registers (clear on read). It is
Auke Kokbc7f75f2007-09-17 12:30:59 -0700896 * important that we do this after we have tried to establish link
897 * because the symbol error count will increment wildly if there
898 * is no link.
899 */
900 e1000_clear_hw_cntrs_80003es2lan(hw);
901
902 return ret_val;
903}
904
905/**
906 * e1000_initialize_hw_bits_80003es2lan - Init hw bits of ESB2
907 * @hw: pointer to the HW structure
908 *
909 * Initializes required hardware-dependent bits needed for normal operation.
910 **/
911static void e1000_initialize_hw_bits_80003es2lan(struct e1000_hw *hw)
912{
913 u32 reg;
914
915 /* Transmit Descriptor Control 0 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700916 reg = er32(TXDCTL(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -0700917 reg |= (1 << 22);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700918 ew32(TXDCTL(0), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700919
920 /* Transmit Descriptor Control 1 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700921 reg = er32(TXDCTL(1));
Auke Kokbc7f75f2007-09-17 12:30:59 -0700922 reg |= (1 << 22);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700923 ew32(TXDCTL(1), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700924
925 /* Transmit Arbitration Control 0 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700926 reg = er32(TARC(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -0700927 reg &= ~(0xF << 27); /* 30:27 */
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700928 if (hw->phy.media_type != e1000_media_type_copper)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700929 reg &= ~(1 << 20);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700930 ew32(TARC(0), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700931
932 /* Transmit Arbitration Control 1 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700933 reg = er32(TARC(1));
Auke Kokbc7f75f2007-09-17 12:30:59 -0700934 if (er32(TCTL) & E1000_TCTL_MULR)
935 reg &= ~(1 << 28);
936 else
937 reg |= (1 << 28);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700938 ew32(TARC(1), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700939}
940
941/**
942 * e1000_copper_link_setup_gg82563_80003es2lan - Configure GG82563 Link
943 * @hw: pointer to the HW structure
944 *
945 * Setup some GG82563 PHY registers for obtaining link
946 **/
947static s32 e1000_copper_link_setup_gg82563_80003es2lan(struct e1000_hw *hw)
948{
949 struct e1000_phy_info *phy = &hw->phy;
950 s32 ret_val;
951 u32 ctrl_ext;
Bruce Allan75eb0fa2008-11-21 16:53:51 -0800952 u16 data;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700953
David Graham2d9498f2008-04-23 11:09:14 -0700954 ret_val = e1e_rphy(hw, GG82563_PHY_MAC_SPEC_CTRL, &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700955 if (ret_val)
956 return ret_val;
957
958 data |= GG82563_MSCR_ASSERT_CRS_ON_TX;
959 /* Use 25MHz for both link down and 1000Base-T for Tx clock. */
960 data |= GG82563_MSCR_TX_CLK_1000MBPS_25;
961
David Graham2d9498f2008-04-23 11:09:14 -0700962 ret_val = e1e_wphy(hw, GG82563_PHY_MAC_SPEC_CTRL, data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700963 if (ret_val)
964 return ret_val;
965
Bruce Allanad680762008-03-28 09:15:03 -0700966 /*
967 * Options:
Auke Kokbc7f75f2007-09-17 12:30:59 -0700968 * MDI/MDI-X = 0 (default)
969 * 0 - Auto for all speeds
970 * 1 - MDI mode
971 * 2 - MDI-X mode
972 * 3 - Auto for 1000Base-T only (MDI-X for 10/100Base-T modes)
973 */
974 ret_val = e1e_rphy(hw, GG82563_PHY_SPEC_CTRL, &data);
975 if (ret_val)
976 return ret_val;
977
978 data &= ~GG82563_PSCR_CROSSOVER_MODE_MASK;
979
980 switch (phy->mdix) {
981 case 1:
982 data |= GG82563_PSCR_CROSSOVER_MODE_MDI;
983 break;
984 case 2:
985 data |= GG82563_PSCR_CROSSOVER_MODE_MDIX;
986 break;
987 case 0:
988 default:
989 data |= GG82563_PSCR_CROSSOVER_MODE_AUTO;
990 break;
991 }
992
Bruce Allanad680762008-03-28 09:15:03 -0700993 /*
994 * Options:
Auke Kokbc7f75f2007-09-17 12:30:59 -0700995 * disable_polarity_correction = 0 (default)
996 * Automatic Correction for Reversed Cable Polarity
997 * 0 - Disabled
998 * 1 - Enabled
999 */
1000 data &= ~GG82563_PSCR_POLARITY_REVERSAL_DISABLE;
1001 if (phy->disable_polarity_correction)
1002 data |= GG82563_PSCR_POLARITY_REVERSAL_DISABLE;
1003
1004 ret_val = e1e_wphy(hw, GG82563_PHY_SPEC_CTRL, data);
1005 if (ret_val)
1006 return ret_val;
1007
1008 /* SW Reset the PHY so all changes take effect */
1009 ret_val = e1000e_commit_phy(hw);
1010 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001011 e_dbg("Error Resetting the PHY\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001012 return ret_val;
1013 }
1014
Bruce Allanad680762008-03-28 09:15:03 -07001015 /* Bypass Rx and Tx FIFO's */
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001016 ret_val = e1000_write_kmrn_reg_80003es2lan(hw,
1017 E1000_KMRNCTRLSTA_OFFSET_FIFO_CTRL,
Bruce Allanad680762008-03-28 09:15:03 -07001018 E1000_KMRNCTRLSTA_FIFO_CTRL_RX_BYPASS |
Auke Kokbc7f75f2007-09-17 12:30:59 -07001019 E1000_KMRNCTRLSTA_FIFO_CTRL_TX_BYPASS);
1020 if (ret_val)
1021 return ret_val;
1022
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001023 ret_val = e1000_read_kmrn_reg_80003es2lan(hw,
David Graham2d9498f2008-04-23 11:09:14 -07001024 E1000_KMRNCTRLSTA_OFFSET_MAC2PHY_OPMODE,
1025 &data);
1026 if (ret_val)
1027 return ret_val;
1028 data |= E1000_KMRNCTRLSTA_OPMODE_E_IDLE;
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001029 ret_val = e1000_write_kmrn_reg_80003es2lan(hw,
David Graham2d9498f2008-04-23 11:09:14 -07001030 E1000_KMRNCTRLSTA_OFFSET_MAC2PHY_OPMODE,
1031 data);
1032 if (ret_val)
1033 return ret_val;
1034
Auke Kokbc7f75f2007-09-17 12:30:59 -07001035 ret_val = e1e_rphy(hw, GG82563_PHY_SPEC_CTRL_2, &data);
1036 if (ret_val)
1037 return ret_val;
1038
1039 data &= ~GG82563_PSCR2_REVERSE_AUTO_NEG;
1040 ret_val = e1e_wphy(hw, GG82563_PHY_SPEC_CTRL_2, data);
1041 if (ret_val)
1042 return ret_val;
1043
1044 ctrl_ext = er32(CTRL_EXT);
1045 ctrl_ext &= ~(E1000_CTRL_EXT_LINK_MODE_MASK);
1046 ew32(CTRL_EXT, ctrl_ext);
1047
1048 ret_val = e1e_rphy(hw, GG82563_PHY_PWR_MGMT_CTRL, &data);
1049 if (ret_val)
1050 return ret_val;
1051
Bruce Allanad680762008-03-28 09:15:03 -07001052 /*
1053 * Do not init these registers when the HW is in IAMT mode, since the
Auke Kokbc7f75f2007-09-17 12:30:59 -07001054 * firmware will have already initialized them. We only initialize
1055 * them if the HW is not in IAMT mode.
1056 */
Bruce Allan48768322012-02-22 09:02:32 +00001057 if (!hw->mac.ops.check_mng_mode(hw)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001058 /* Enable Electrical Idle on the PHY */
1059 data |= GG82563_PMCR_ENABLE_ELECTRICAL_IDLE;
1060 ret_val = e1e_wphy(hw, GG82563_PHY_PWR_MGMT_CTRL, data);
1061 if (ret_val)
1062 return ret_val;
1063
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001064 ret_val = e1e_rphy(hw, GG82563_PHY_KMRN_MODE_CTRL, &data);
1065 if (ret_val)
1066 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001067
1068 data &= ~GG82563_KMCR_PASS_FALSE_CARRIER;
1069 ret_val = e1e_wphy(hw, GG82563_PHY_KMRN_MODE_CTRL, data);
1070 if (ret_val)
1071 return ret_val;
1072 }
1073
Bruce Allanad680762008-03-28 09:15:03 -07001074 /*
1075 * Workaround: Disable padding in Kumeran interface in the MAC
Auke Kokbc7f75f2007-09-17 12:30:59 -07001076 * and in the PHY to avoid CRC errors.
1077 */
1078 ret_val = e1e_rphy(hw, GG82563_PHY_INBAND_CTRL, &data);
1079 if (ret_val)
1080 return ret_val;
1081
1082 data |= GG82563_ICR_DIS_PADDING;
1083 ret_val = e1e_wphy(hw, GG82563_PHY_INBAND_CTRL, data);
1084 if (ret_val)
1085 return ret_val;
1086
1087 return 0;
1088}
1089
1090/**
1091 * e1000_setup_copper_link_80003es2lan - Setup Copper Link for ESB2
1092 * @hw: pointer to the HW structure
1093 *
1094 * Essentially a wrapper for setting up all things "copper" related.
1095 * This is a function pointer entry point called by the mac module.
1096 **/
1097static s32 e1000_setup_copper_link_80003es2lan(struct e1000_hw *hw)
1098{
1099 u32 ctrl;
1100 s32 ret_val;
1101 u16 reg_data;
1102
1103 ctrl = er32(CTRL);
1104 ctrl |= E1000_CTRL_SLU;
1105 ctrl &= ~(E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX);
1106 ew32(CTRL, ctrl);
1107
Bruce Allanad680762008-03-28 09:15:03 -07001108 /*
1109 * Set the mac to wait the maximum time between each
Auke Kokbc7f75f2007-09-17 12:30:59 -07001110 * iteration and increase the max iterations when
Bruce Allanad680762008-03-28 09:15:03 -07001111 * polling the phy; this fixes erroneous timeouts at 10Mbps.
1112 */
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001113 ret_val = e1000_write_kmrn_reg_80003es2lan(hw, GG82563_REG(0x34, 4),
1114 0xFFFF);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001115 if (ret_val)
1116 return ret_val;
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001117 ret_val = e1000_read_kmrn_reg_80003es2lan(hw, GG82563_REG(0x34, 9),
1118 &reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001119 if (ret_val)
1120 return ret_val;
1121 reg_data |= 0x3F;
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001122 ret_val = e1000_write_kmrn_reg_80003es2lan(hw, GG82563_REG(0x34, 9),
1123 reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001124 if (ret_val)
1125 return ret_val;
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001126 ret_val = e1000_read_kmrn_reg_80003es2lan(hw,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001127 E1000_KMRNCTRLSTA_OFFSET_INB_CTRL,
1128 &reg_data);
1129 if (ret_val)
1130 return ret_val;
1131 reg_data |= E1000_KMRNCTRLSTA_INB_CTRL_DIS_PADDING;
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001132 ret_val = e1000_write_kmrn_reg_80003es2lan(hw,
1133 E1000_KMRNCTRLSTA_OFFSET_INB_CTRL,
Bruce Allanad680762008-03-28 09:15:03 -07001134 reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001135 if (ret_val)
1136 return ret_val;
1137
1138 ret_val = e1000_copper_link_setup_gg82563_80003es2lan(hw);
1139 if (ret_val)
1140 return ret_val;
1141
Bruce Allan8649f432012-02-08 02:54:58 +00001142 return e1000e_setup_copper_link(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001143}
1144
1145/**
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001146 * e1000_cfg_on_link_up_80003es2lan - es2 link configuration after link-up
1147 * @hw: pointer to the HW structure
1148 * @duplex: current duplex setting
1149 *
1150 * Configure the KMRN interface by applying last minute quirks for
1151 * 10/100 operation.
1152 **/
1153static s32 e1000_cfg_on_link_up_80003es2lan(struct e1000_hw *hw)
1154{
1155 s32 ret_val = 0;
1156 u16 speed;
1157 u16 duplex;
1158
1159 if (hw->phy.media_type == e1000_media_type_copper) {
1160 ret_val = e1000e_get_speed_and_duplex_copper(hw, &speed,
1161 &duplex);
1162 if (ret_val)
1163 return ret_val;
1164
1165 if (speed == SPEED_1000)
1166 ret_val = e1000_cfg_kmrn_1000_80003es2lan(hw);
1167 else
1168 ret_val = e1000_cfg_kmrn_10_100_80003es2lan(hw, duplex);
1169 }
1170
1171 return ret_val;
1172}
1173
1174/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001175 * e1000_cfg_kmrn_10_100_80003es2lan - Apply "quirks" for 10/100 operation
1176 * @hw: pointer to the HW structure
1177 * @duplex: current duplex setting
1178 *
1179 * Configure the KMRN interface by applying last minute quirks for
1180 * 10/100 operation.
1181 **/
1182static s32 e1000_cfg_kmrn_10_100_80003es2lan(struct e1000_hw *hw, u16 duplex)
1183{
1184 s32 ret_val;
1185 u32 tipg;
David Graham2d9498f2008-04-23 11:09:14 -07001186 u32 i = 0;
1187 u16 reg_data, reg_data2;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001188
1189 reg_data = E1000_KMRNCTRLSTA_HD_CTRL_10_100_DEFAULT;
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001190 ret_val = e1000_write_kmrn_reg_80003es2lan(hw,
1191 E1000_KMRNCTRLSTA_OFFSET_HD_CTRL,
1192 reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001193 if (ret_val)
1194 return ret_val;
1195
1196 /* Configure Transmit Inter-Packet Gap */
1197 tipg = er32(TIPG);
1198 tipg &= ~E1000_TIPG_IPGT_MASK;
1199 tipg |= DEFAULT_TIPG_IPGT_10_100_80003ES2LAN;
1200 ew32(TIPG, tipg);
1201
David Graham2d9498f2008-04-23 11:09:14 -07001202 do {
1203 ret_val = e1e_rphy(hw, GG82563_PHY_KMRN_MODE_CTRL, &reg_data);
1204 if (ret_val)
1205 return ret_val;
1206
1207 ret_val = e1e_rphy(hw, GG82563_PHY_KMRN_MODE_CTRL, &reg_data2);
1208 if (ret_val)
1209 return ret_val;
1210 i++;
1211 } while ((reg_data != reg_data2) && (i < GG82563_MAX_KMRN_RETRY));
Auke Kokbc7f75f2007-09-17 12:30:59 -07001212
1213 if (duplex == HALF_DUPLEX)
1214 reg_data |= GG82563_KMCR_PASS_FALSE_CARRIER;
1215 else
1216 reg_data &= ~GG82563_KMCR_PASS_FALSE_CARRIER;
1217
Bruce Allan520d6f22012-02-08 02:54:53 +00001218 return e1e_wphy(hw, GG82563_PHY_KMRN_MODE_CTRL, reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001219}
1220
1221/**
1222 * e1000_cfg_kmrn_1000_80003es2lan - Apply "quirks" for gigabit operation
1223 * @hw: pointer to the HW structure
1224 *
1225 * Configure the KMRN interface by applying last minute quirks for
1226 * gigabit operation.
1227 **/
1228static s32 e1000_cfg_kmrn_1000_80003es2lan(struct e1000_hw *hw)
1229{
1230 s32 ret_val;
David Graham2d9498f2008-04-23 11:09:14 -07001231 u16 reg_data, reg_data2;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001232 u32 tipg;
David Graham2d9498f2008-04-23 11:09:14 -07001233 u32 i = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001234
1235 reg_data = E1000_KMRNCTRLSTA_HD_CTRL_1000_DEFAULT;
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001236 ret_val = e1000_write_kmrn_reg_80003es2lan(hw,
1237 E1000_KMRNCTRLSTA_OFFSET_HD_CTRL,
1238 reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001239 if (ret_val)
1240 return ret_val;
1241
1242 /* Configure Transmit Inter-Packet Gap */
1243 tipg = er32(TIPG);
1244 tipg &= ~E1000_TIPG_IPGT_MASK;
1245 tipg |= DEFAULT_TIPG_IPGT_1000_80003ES2LAN;
1246 ew32(TIPG, tipg);
1247
David Graham2d9498f2008-04-23 11:09:14 -07001248 do {
1249 ret_val = e1e_rphy(hw, GG82563_PHY_KMRN_MODE_CTRL, &reg_data);
1250 if (ret_val)
1251 return ret_val;
1252
1253 ret_val = e1e_rphy(hw, GG82563_PHY_KMRN_MODE_CTRL, &reg_data2);
1254 if (ret_val)
1255 return ret_val;
1256 i++;
1257 } while ((reg_data != reg_data2) && (i < GG82563_MAX_KMRN_RETRY));
Auke Kokbc7f75f2007-09-17 12:30:59 -07001258
1259 reg_data &= ~GG82563_KMCR_PASS_FALSE_CARRIER;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001260
Bruce Allan7eb61d82012-02-08 02:55:03 +00001261 return e1e_wphy(hw, GG82563_PHY_KMRN_MODE_CTRL, reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001262}
1263
1264/**
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001265 * e1000_read_kmrn_reg_80003es2lan - Read kumeran register
1266 * @hw: pointer to the HW structure
1267 * @offset: register offset to be read
1268 * @data: pointer to the read data
1269 *
1270 * Acquire semaphore, then read the PHY register at offset
1271 * using the kumeran interface. The information retrieved is stored in data.
1272 * Release the semaphore before exiting.
1273 **/
Hannes Ederfa4c16d2008-12-22 09:16:13 +00001274static s32 e1000_read_kmrn_reg_80003es2lan(struct e1000_hw *hw, u32 offset,
1275 u16 *data)
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001276{
1277 u32 kmrnctrlsta;
1278 s32 ret_val = 0;
1279
1280 ret_val = e1000_acquire_mac_csr_80003es2lan(hw);
1281 if (ret_val)
1282 return ret_val;
1283
1284 kmrnctrlsta = ((offset << E1000_KMRNCTRLSTA_OFFSET_SHIFT) &
1285 E1000_KMRNCTRLSTA_OFFSET) | E1000_KMRNCTRLSTA_REN;
1286 ew32(KMRNCTRLSTA, kmrnctrlsta);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001287 e1e_flush();
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001288
1289 udelay(2);
1290
1291 kmrnctrlsta = er32(KMRNCTRLSTA);
1292 *data = (u16)kmrnctrlsta;
1293
1294 e1000_release_mac_csr_80003es2lan(hw);
1295
1296 return ret_val;
1297}
1298
1299/**
1300 * e1000_write_kmrn_reg_80003es2lan - Write kumeran register
1301 * @hw: pointer to the HW structure
1302 * @offset: register offset to write to
1303 * @data: data to write at register offset
1304 *
1305 * Acquire semaphore, then write the data to PHY register
1306 * at the offset using the kumeran interface. Release semaphore
1307 * before exiting.
1308 **/
Hannes Ederfa4c16d2008-12-22 09:16:13 +00001309static s32 e1000_write_kmrn_reg_80003es2lan(struct e1000_hw *hw, u32 offset,
1310 u16 data)
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001311{
1312 u32 kmrnctrlsta;
1313 s32 ret_val = 0;
1314
1315 ret_val = e1000_acquire_mac_csr_80003es2lan(hw);
1316 if (ret_val)
1317 return ret_val;
1318
1319 kmrnctrlsta = ((offset << E1000_KMRNCTRLSTA_OFFSET_SHIFT) &
1320 E1000_KMRNCTRLSTA_OFFSET) | data;
1321 ew32(KMRNCTRLSTA, kmrnctrlsta);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001322 e1e_flush();
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001323
1324 udelay(2);
1325
1326 e1000_release_mac_csr_80003es2lan(hw);
1327
1328 return ret_val;
1329}
1330
1331/**
Bruce Allan608f8a02010-01-13 02:04:58 +00001332 * e1000_read_mac_addr_80003es2lan - Read device MAC address
1333 * @hw: pointer to the HW structure
1334 **/
1335static s32 e1000_read_mac_addr_80003es2lan(struct e1000_hw *hw)
1336{
1337 s32 ret_val = 0;
1338
1339 /*
1340 * If there's an alternate MAC address place it in RAR0
1341 * so that it will override the Si installed default perm
1342 * address.
1343 */
1344 ret_val = e1000_check_alt_mac_addr_generic(hw);
1345 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001346 return ret_val;
Bruce Allan608f8a02010-01-13 02:04:58 +00001347
Bruce Allan5015e532012-02-08 02:55:56 +00001348 return e1000_read_mac_addr_generic(hw);
Bruce Allan608f8a02010-01-13 02:04:58 +00001349}
1350
1351/**
Bruce Allan17f208d2009-12-01 15:47:22 +00001352 * e1000_power_down_phy_copper_80003es2lan - Remove link during PHY power down
1353 * @hw: pointer to the HW structure
1354 *
1355 * In the case of a PHY power down to save power, or to turn off link during a
1356 * driver unload, or wake on lan is not enabled, remove the link.
1357 **/
1358static void e1000_power_down_phy_copper_80003es2lan(struct e1000_hw *hw)
1359{
1360 /* If the management interface is not enabled, then power down */
1361 if (!(hw->mac.ops.check_mng_mode(hw) ||
1362 hw->phy.ops.check_reset_block(hw)))
1363 e1000_power_down_phy_copper(hw);
Bruce Allan17f208d2009-12-01 15:47:22 +00001364}
1365
1366/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001367 * e1000_clear_hw_cntrs_80003es2lan - Clear device specific hardware counters
1368 * @hw: pointer to the HW structure
1369 *
1370 * Clears the hardware counters by reading the counter registers.
1371 **/
1372static void e1000_clear_hw_cntrs_80003es2lan(struct e1000_hw *hw)
1373{
Auke Kokbc7f75f2007-09-17 12:30:59 -07001374 e1000e_clear_hw_cntrs_base(hw);
1375
Bruce Allan99673d92009-11-20 23:27:21 +00001376 er32(PRC64);
1377 er32(PRC127);
1378 er32(PRC255);
1379 er32(PRC511);
1380 er32(PRC1023);
1381 er32(PRC1522);
1382 er32(PTC64);
1383 er32(PTC127);
1384 er32(PTC255);
1385 er32(PTC511);
1386 er32(PTC1023);
1387 er32(PTC1522);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001388
Bruce Allan99673d92009-11-20 23:27:21 +00001389 er32(ALGNERRC);
1390 er32(RXERRC);
1391 er32(TNCRS);
1392 er32(CEXTERR);
1393 er32(TSCTC);
1394 er32(TSCTFC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001395
Bruce Allan99673d92009-11-20 23:27:21 +00001396 er32(MGTPRC);
1397 er32(MGTPDC);
1398 er32(MGTPTC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001399
Bruce Allan99673d92009-11-20 23:27:21 +00001400 er32(IAC);
1401 er32(ICRXOC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001402
Bruce Allan99673d92009-11-20 23:27:21 +00001403 er32(ICRXPTC);
1404 er32(ICRXATC);
1405 er32(ICTXPTC);
1406 er32(ICTXATC);
1407 er32(ICTXQEC);
1408 er32(ICTXQMTC);
1409 er32(ICRXDMTC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001410}
1411
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00001412static const struct e1000_mac_operations es2_mac_ops = {
Bruce Allan608f8a02010-01-13 02:04:58 +00001413 .read_mac_addr = e1000_read_mac_addr_80003es2lan,
Bruce Alland1964eb2012-02-22 09:02:21 +00001414 .id_led_init = e1000e_id_led_init_generic,
Bruce Allandbf80dc2011-04-16 00:34:40 +00001415 .blink_led = e1000e_blink_led_generic,
Bruce Allan4662e822008-08-26 18:37:06 -07001416 .check_mng_mode = e1000e_check_mng_mode_generic,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001417 /* check_for_link dependent on media type */
1418 .cleanup_led = e1000e_cleanup_led_generic,
1419 .clear_hw_cntrs = e1000_clear_hw_cntrs_80003es2lan,
1420 .get_bus_info = e1000e_get_bus_info_pcie,
Bruce Allanf4d2dd42010-01-13 02:05:18 +00001421 .set_lan_id = e1000_set_lan_id_multi_port_pcie,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001422 .get_link_up_info = e1000_get_link_up_info_80003es2lan,
1423 .led_on = e1000e_led_on_generic,
1424 .led_off = e1000e_led_off_generic,
Jeff Kirshere2de3eb2008-03-28 09:15:11 -07001425 .update_mc_addr_list = e1000e_update_mc_addr_list_generic,
Bruce Allancaaddaf2009-12-01 15:46:43 +00001426 .write_vfta = e1000_write_vfta_generic,
1427 .clear_vfta = e1000_clear_vfta_generic,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001428 .reset_hw = e1000_reset_hw_80003es2lan,
1429 .init_hw = e1000_init_hw_80003es2lan,
Bruce Allan1a46b402012-02-22 09:02:26 +00001430 .setup_link = e1000e_setup_link_generic,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001431 /* setup_physical_interface dependent on media type */
Bruce Allana4f58f52009-06-02 11:29:18 +00001432 .setup_led = e1000e_setup_led_generic,
Bruce Allan57cde762012-02-22 09:02:58 +00001433 .config_collision_dist = e1000e_config_collision_dist_generic,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001434};
1435
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00001436static const struct e1000_phy_operations es2_phy_ops = {
Bruce Allan94d81862009-11-20 23:25:26 +00001437 .acquire = e1000_acquire_phy_80003es2lan,
Bruce Allan94e5b652009-12-02 17:02:14 +00001438 .check_polarity = e1000_check_polarity_m88,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001439 .check_reset_block = e1000e_check_reset_block_generic,
Bruce Allan94d81862009-11-20 23:25:26 +00001440 .commit = e1000e_phy_sw_reset,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001441 .force_speed_duplex = e1000_phy_force_speed_duplex_80003es2lan,
1442 .get_cfg_done = e1000_get_cfg_done_80003es2lan,
1443 .get_cable_length = e1000_get_cable_length_80003es2lan,
Bruce Allan94d81862009-11-20 23:25:26 +00001444 .get_info = e1000e_get_phy_info_m88,
1445 .read_reg = e1000_read_phy_reg_gg82563_80003es2lan,
1446 .release = e1000_release_phy_80003es2lan,
1447 .reset = e1000e_phy_hw_reset_generic,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001448 .set_d0_lplu_state = NULL,
1449 .set_d3_lplu_state = e1000e_set_d3_lplu_state,
Bruce Allan94d81862009-11-20 23:25:26 +00001450 .write_reg = e1000_write_phy_reg_gg82563_80003es2lan,
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001451 .cfg_on_link_up = e1000_cfg_on_link_up_80003es2lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001452};
1453
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00001454static const struct e1000_nvm_operations es2_nvm_ops = {
Bruce Allan94d81862009-11-20 23:25:26 +00001455 .acquire = e1000_acquire_nvm_80003es2lan,
1456 .read = e1000e_read_nvm_eerd,
1457 .release = e1000_release_nvm_80003es2lan,
Bruce Allane85e3632012-02-22 09:03:14 +00001458 .reload = e1000e_reload_nvm_generic,
Bruce Allan94d81862009-11-20 23:25:26 +00001459 .update = e1000e_update_nvm_checksum_generic,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001460 .valid_led_default = e1000e_valid_led_default,
Bruce Allan94d81862009-11-20 23:25:26 +00001461 .validate = e1000e_validate_nvm_checksum_generic,
1462 .write = e1000_write_nvm_80003es2lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001463};
1464
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00001465const struct e1000_info e1000_es2_info = {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001466 .mac = e1000_80003es2lan,
1467 .flags = FLAG_HAS_HW_VLAN_FILTER
1468 | FLAG_HAS_JUMBO_FRAMES
Auke Kokbc7f75f2007-09-17 12:30:59 -07001469 | FLAG_HAS_WOL
1470 | FLAG_APME_IN_CTRL3
Auke Kokbc7f75f2007-09-17 12:30:59 -07001471 | FLAG_HAS_CTRLEXT_ON_LOAD
Auke Kokbc7f75f2007-09-17 12:30:59 -07001472 | FLAG_RX_NEEDS_RESTART /* errata */
1473 | FLAG_TARC_SET_BIT_ZERO /* errata */
1474 | FLAG_APME_CHECK_PORT_B
Bruce Allan6a92f732011-12-16 00:46:12 +00001475 | FLAG_DISABLE_FC_PAUSE_TIME, /* errata */
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00001476 .flags2 = FLAG2_DMA_BURST,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001477 .pba = 38,
Bruce Allan2adc55c2009-06-02 11:28:58 +00001478 .max_hw_frame_size = DEFAULT_JUMBO,
Jeff Kirsher69e3fd82008-04-02 13:48:18 -07001479 .get_variants = e1000_get_variants_80003es2lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001480 .mac_ops = &es2_mac_ops,
1481 .phy_ops = &es2_phy_ops,
1482 .nvm_ops = &es2_nvm_ops,
1483};
1484