blob: cfb361e5f498b378fad3226de63674e2f429c95d [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. */
231 mac->arc_subsystem_valid =
232 (er32(FWSM) & E1000_FWSM_MODE_MASK)
233 ? true : false;
Bruce Allanf464ba82010-01-07 16:31:35 +0000234 /* Adaptive IFS not supported */
235 mac->adaptive_ifs = false;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700236
Bruce Allanf4d2dd42010-01-13 02:05:18 +0000237 /* set lan id for port to determine which phy lock to use */
238 hw->mac.ops.set_lan_id(hw);
239
Auke Kokbc7f75f2007-09-17 12:30:59 -0700240 return 0;
241}
242
Jeff Kirsher69e3fd82008-04-02 13:48:18 -0700243static s32 e1000_get_variants_80003es2lan(struct e1000_adapter *adapter)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700244{
245 struct e1000_hw *hw = &adapter->hw;
246 s32 rc;
247
Bruce Allanec34c172012-02-01 10:53:05 +0000248 rc = e1000_init_mac_params_80003es2lan(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700249 if (rc)
250 return rc;
251
252 rc = e1000_init_nvm_params_80003es2lan(hw);
253 if (rc)
254 return rc;
255
256 rc = e1000_init_phy_params_80003es2lan(hw);
257 if (rc)
258 return rc;
259
260 return 0;
261}
262
263/**
264 * e1000_acquire_phy_80003es2lan - Acquire rights to access PHY
265 * @hw: pointer to the HW structure
266 *
Bruce Allanfe401672009-11-20 23:26:05 +0000267 * A wrapper to acquire access rights to the correct PHY.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700268 **/
269static s32 e1000_acquire_phy_80003es2lan(struct e1000_hw *hw)
270{
271 u16 mask;
272
273 mask = hw->bus.func ? E1000_SWFW_PHY1_SM : E1000_SWFW_PHY0_SM;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700274 return e1000_acquire_swfw_sync_80003es2lan(hw, mask);
275}
276
277/**
278 * e1000_release_phy_80003es2lan - Release rights to access PHY
279 * @hw: pointer to the HW structure
280 *
Bruce Allanfe401672009-11-20 23:26:05 +0000281 * A wrapper to release access rights to the correct PHY.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700282 **/
283static void e1000_release_phy_80003es2lan(struct e1000_hw *hw)
284{
285 u16 mask;
286
287 mask = hw->bus.func ? E1000_SWFW_PHY1_SM : E1000_SWFW_PHY0_SM;
Bruce Allan75eb0fa2008-11-21 16:53:51 -0800288 e1000_release_swfw_sync_80003es2lan(hw, mask);
289}
290
291/**
292 * e1000_acquire_mac_csr_80003es2lan - Acquire rights to access Kumeran register
293 * @hw: pointer to the HW structure
294 *
295 * Acquire the semaphore to access the Kumeran interface.
296 *
297 **/
298static s32 e1000_acquire_mac_csr_80003es2lan(struct e1000_hw *hw)
299{
300 u16 mask;
301
302 mask = E1000_SWFW_CSR_SM;
303
304 return e1000_acquire_swfw_sync_80003es2lan(hw, mask);
305}
306
307/**
308 * e1000_release_mac_csr_80003es2lan - Release rights to access Kumeran Register
309 * @hw: pointer to the HW structure
310 *
311 * Release the semaphore used to access the Kumeran interface
312 **/
313static void e1000_release_mac_csr_80003es2lan(struct e1000_hw *hw)
314{
315 u16 mask;
316
317 mask = E1000_SWFW_CSR_SM;
David Graham2d9498f2008-04-23 11:09:14 -0700318
Auke Kokbc7f75f2007-09-17 12:30:59 -0700319 e1000_release_swfw_sync_80003es2lan(hw, mask);
320}
321
322/**
323 * e1000_acquire_nvm_80003es2lan - Acquire rights to access NVM
324 * @hw: pointer to the HW structure
325 *
Bruce Allanfe401672009-11-20 23:26:05 +0000326 * Acquire the semaphore to access the EEPROM.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700327 **/
328static s32 e1000_acquire_nvm_80003es2lan(struct e1000_hw *hw)
329{
330 s32 ret_val;
331
332 ret_val = e1000_acquire_swfw_sync_80003es2lan(hw, E1000_SWFW_EEP_SM);
333 if (ret_val)
334 return ret_val;
335
336 ret_val = e1000e_acquire_nvm(hw);
337
338 if (ret_val)
339 e1000_release_swfw_sync_80003es2lan(hw, E1000_SWFW_EEP_SM);
340
341 return ret_val;
342}
343
344/**
345 * e1000_release_nvm_80003es2lan - Relinquish rights to access NVM
346 * @hw: pointer to the HW structure
347 *
Bruce Allanfe401672009-11-20 23:26:05 +0000348 * Release the semaphore used to access the EEPROM.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700349 **/
350static void e1000_release_nvm_80003es2lan(struct e1000_hw *hw)
351{
352 e1000e_release_nvm(hw);
353 e1000_release_swfw_sync_80003es2lan(hw, E1000_SWFW_EEP_SM);
354}
355
356/**
357 * e1000_acquire_swfw_sync_80003es2lan - Acquire SW/FW semaphore
358 * @hw: pointer to the HW structure
359 * @mask: specifies which semaphore to acquire
360 *
361 * Acquire the SW/FW semaphore to access the PHY or NVM. The mask
362 * will also specify which port we're acquiring the lock for.
363 **/
364static s32 e1000_acquire_swfw_sync_80003es2lan(struct e1000_hw *hw, u16 mask)
365{
366 u32 swfw_sync;
367 u32 swmask = mask;
368 u32 fwmask = mask << 16;
369 s32 i = 0;
Bruce Allan75eb0fa2008-11-21 16:53:51 -0800370 s32 timeout = 50;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700371
372 while (i < timeout) {
373 if (e1000e_get_hw_semaphore(hw))
374 return -E1000_ERR_SWFW_SYNC;
375
376 swfw_sync = er32(SW_FW_SYNC);
377 if (!(swfw_sync & (fwmask | swmask)))
378 break;
379
Bruce Allanad680762008-03-28 09:15:03 -0700380 /*
381 * Firmware currently using resource (fwmask)
382 * or other software thread using resource (swmask)
383 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700384 e1000e_put_hw_semaphore(hw);
385 mdelay(5);
386 i++;
387 }
388
389 if (i == timeout) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000390 e_dbg("Driver can't access resource, SW_FW_SYNC timeout.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700391 return -E1000_ERR_SWFW_SYNC;
392 }
393
394 swfw_sync |= swmask;
395 ew32(SW_FW_SYNC, swfw_sync);
396
397 e1000e_put_hw_semaphore(hw);
398
399 return 0;
400}
401
402/**
403 * e1000_release_swfw_sync_80003es2lan - Release SW/FW semaphore
404 * @hw: pointer to the HW structure
405 * @mask: specifies which semaphore to acquire
406 *
407 * Release the SW/FW semaphore used to access the PHY or NVM. The mask
408 * will also specify which port we're releasing the lock for.
409 **/
410static void e1000_release_swfw_sync_80003es2lan(struct e1000_hw *hw, u16 mask)
411{
412 u32 swfw_sync;
413
Bruce Allan184125a2010-12-11 05:53:37 +0000414 while (e1000e_get_hw_semaphore(hw) != 0)
415 ; /* Empty */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700416
417 swfw_sync = er32(SW_FW_SYNC);
418 swfw_sync &= ~mask;
419 ew32(SW_FW_SYNC, swfw_sync);
420
421 e1000e_put_hw_semaphore(hw);
422}
423
424/**
425 * e1000_read_phy_reg_gg82563_80003es2lan - Read GG82563 PHY register
426 * @hw: pointer to the HW structure
427 * @offset: offset of the register to read
428 * @data: pointer to the data returned from the operation
429 *
Bruce Allanfe401672009-11-20 23:26:05 +0000430 * Read the GG82563 PHY register.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700431 **/
432static s32 e1000_read_phy_reg_gg82563_80003es2lan(struct e1000_hw *hw,
433 u32 offset, u16 *data)
434{
435 s32 ret_val;
436 u32 page_select;
437 u16 temp;
438
David Graham2d9498f2008-04-23 11:09:14 -0700439 ret_val = e1000_acquire_phy_80003es2lan(hw);
440 if (ret_val)
441 return ret_val;
442
Auke Kokbc7f75f2007-09-17 12:30:59 -0700443 /* Select Configuration Page */
David Graham2d9498f2008-04-23 11:09:14 -0700444 if ((offset & MAX_PHY_REG_ADDRESS) < GG82563_MIN_ALT_REG) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700445 page_select = GG82563_PHY_PAGE_SELECT;
David Graham2d9498f2008-04-23 11:09:14 -0700446 } else {
Bruce Allanad680762008-03-28 09:15:03 -0700447 /*
448 * Use Alternative Page Select register to access
Auke Kokbc7f75f2007-09-17 12:30:59 -0700449 * registers 30 and 31
450 */
451 page_select = GG82563_PHY_PAGE_SELECT_ALT;
David Graham2d9498f2008-04-23 11:09:14 -0700452 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700453
454 temp = (u16)((u16)offset >> GG82563_PAGE_SHIFT);
David Graham2d9498f2008-04-23 11:09:14 -0700455 ret_val = e1000e_write_phy_reg_mdic(hw, page_select, temp);
456 if (ret_val) {
457 e1000_release_phy_80003es2lan(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700458 return ret_val;
David Graham2d9498f2008-04-23 11:09:14 -0700459 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700460
Bruce Allan3421eec2009-12-08 07:28:20 +0000461 if (hw->dev_spec.e80003es2lan.mdic_wa_enable == true) {
462 /*
463 * The "ready" bit in the MDIC register may be incorrectly set
464 * before the device has completed the "Page Select" MDI
465 * transaction. So we wait 200us after each MDI command...
466 */
467 udelay(200);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700468
Bruce Allan3421eec2009-12-08 07:28:20 +0000469 /* ...and verify the command was successful. */
470 ret_val = e1000e_read_phy_reg_mdic(hw, page_select, &temp);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700471
Bruce Allan3421eec2009-12-08 07:28:20 +0000472 if (((u16)offset >> GG82563_PAGE_SHIFT) != temp) {
473 ret_val = -E1000_ERR_PHY;
474 e1000_release_phy_80003es2lan(hw);
475 return ret_val;
476 }
477
478 udelay(200);
479
480 ret_val = e1000e_read_phy_reg_mdic(hw,
481 MAX_PHY_REG_ADDRESS & offset,
482 data);
483
484 udelay(200);
485 } else {
486 ret_val = e1000e_read_phy_reg_mdic(hw,
487 MAX_PHY_REG_ADDRESS & offset,
488 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700489 }
490
David Graham2d9498f2008-04-23 11:09:14 -0700491 e1000_release_phy_80003es2lan(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700492
493 return ret_val;
494}
495
496/**
497 * e1000_write_phy_reg_gg82563_80003es2lan - Write GG82563 PHY register
498 * @hw: pointer to the HW structure
499 * @offset: offset of the register to read
500 * @data: value to write to the register
501 *
Bruce Allanfe401672009-11-20 23:26:05 +0000502 * Write to the GG82563 PHY register.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700503 **/
504static s32 e1000_write_phy_reg_gg82563_80003es2lan(struct e1000_hw *hw,
505 u32 offset, u16 data)
506{
507 s32 ret_val;
508 u32 page_select;
509 u16 temp;
510
David Graham2d9498f2008-04-23 11:09:14 -0700511 ret_val = e1000_acquire_phy_80003es2lan(hw);
512 if (ret_val)
513 return ret_val;
514
Auke Kokbc7f75f2007-09-17 12:30:59 -0700515 /* Select Configuration Page */
David Graham2d9498f2008-04-23 11:09:14 -0700516 if ((offset & MAX_PHY_REG_ADDRESS) < GG82563_MIN_ALT_REG) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700517 page_select = GG82563_PHY_PAGE_SELECT;
David Graham2d9498f2008-04-23 11:09:14 -0700518 } else {
Bruce Allanad680762008-03-28 09:15:03 -0700519 /*
520 * Use Alternative Page Select register to access
Auke Kokbc7f75f2007-09-17 12:30:59 -0700521 * registers 30 and 31
522 */
523 page_select = GG82563_PHY_PAGE_SELECT_ALT;
David Graham2d9498f2008-04-23 11:09:14 -0700524 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700525
526 temp = (u16)((u16)offset >> GG82563_PAGE_SHIFT);
David Graham2d9498f2008-04-23 11:09:14 -0700527 ret_val = e1000e_write_phy_reg_mdic(hw, page_select, temp);
528 if (ret_val) {
529 e1000_release_phy_80003es2lan(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700530 return ret_val;
David Graham2d9498f2008-04-23 11:09:14 -0700531 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700532
Bruce Allan3421eec2009-12-08 07:28:20 +0000533 if (hw->dev_spec.e80003es2lan.mdic_wa_enable == true) {
534 /*
535 * The "ready" bit in the MDIC register may be incorrectly set
536 * before the device has completed the "Page Select" MDI
537 * transaction. So we wait 200us after each MDI command...
538 */
539 udelay(200);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700540
Bruce Allan3421eec2009-12-08 07:28:20 +0000541 /* ...and verify the command was successful. */
542 ret_val = e1000e_read_phy_reg_mdic(hw, page_select, &temp);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700543
Bruce Allan3421eec2009-12-08 07:28:20 +0000544 if (((u16)offset >> GG82563_PAGE_SHIFT) != temp) {
545 e1000_release_phy_80003es2lan(hw);
546 return -E1000_ERR_PHY;
547 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700548
Bruce Allan3421eec2009-12-08 07:28:20 +0000549 udelay(200);
550
551 ret_val = e1000e_write_phy_reg_mdic(hw,
552 MAX_PHY_REG_ADDRESS & offset,
553 data);
554
555 udelay(200);
556 } else {
557 ret_val = e1000e_write_phy_reg_mdic(hw,
558 MAX_PHY_REG_ADDRESS & offset,
559 data);
David Graham2d9498f2008-04-23 11:09:14 -0700560 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700561
David Graham2d9498f2008-04-23 11:09:14 -0700562 e1000_release_phy_80003es2lan(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700563
564 return ret_val;
565}
566
567/**
568 * e1000_write_nvm_80003es2lan - Write to ESB2 NVM
569 * @hw: pointer to the HW structure
570 * @offset: offset of the register to read
571 * @words: number of words to write
572 * @data: buffer of data to write to the NVM
573 *
Bruce Allanfe401672009-11-20 23:26:05 +0000574 * Write "words" of data to the ESB2 NVM.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700575 **/
576static s32 e1000_write_nvm_80003es2lan(struct e1000_hw *hw, u16 offset,
577 u16 words, u16 *data)
578{
579 return e1000e_write_nvm_spi(hw, offset, words, data);
580}
581
582/**
583 * e1000_get_cfg_done_80003es2lan - Wait for configuration to complete
584 * @hw: pointer to the HW structure
585 *
586 * Wait a specific amount of time for manageability processes to complete.
587 * This is a function pointer entry point called by the phy module.
588 **/
589static s32 e1000_get_cfg_done_80003es2lan(struct e1000_hw *hw)
590{
591 s32 timeout = PHY_CFG_TIMEOUT;
592 u32 mask = E1000_NVM_CFG_DONE_PORT_0;
593
594 if (hw->bus.func == 1)
595 mask = E1000_NVM_CFG_DONE_PORT_1;
596
597 while (timeout) {
598 if (er32(EEMNGCTL) & mask)
599 break;
Bruce Allan1bba4382011-03-19 00:27:20 +0000600 usleep_range(1000, 2000);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700601 timeout--;
602 }
603 if (!timeout) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000604 e_dbg("MNG configuration cycle has not completed.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700605 return -E1000_ERR_RESET;
606 }
607
608 return 0;
609}
610
611/**
612 * e1000_phy_force_speed_duplex_80003es2lan - Force PHY speed and duplex
613 * @hw: pointer to the HW structure
614 *
615 * Force the speed and duplex settings onto the PHY. This is a
616 * function pointer entry point called by the phy module.
617 **/
618static s32 e1000_phy_force_speed_duplex_80003es2lan(struct e1000_hw *hw)
619{
620 s32 ret_val;
621 u16 phy_data;
622 bool link;
623
Bruce Allanad680762008-03-28 09:15:03 -0700624 /*
625 * Clear Auto-Crossover to force MDI manually. M88E1000 requires MDI
Auke Kokbc7f75f2007-09-17 12:30:59 -0700626 * forced whenever speed and duplex are forced.
627 */
628 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
629 if (ret_val)
630 return ret_val;
631
632 phy_data &= ~GG82563_PSCR_CROSSOVER_MODE_AUTO;
633 ret_val = e1e_wphy(hw, GG82563_PHY_SPEC_CTRL, phy_data);
634 if (ret_val)
635 return ret_val;
636
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000637 e_dbg("GG82563 PSCR: %X\n", phy_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700638
639 ret_val = e1e_rphy(hw, PHY_CONTROL, &phy_data);
640 if (ret_val)
641 return ret_val;
642
643 e1000e_phy_force_speed_duplex_setup(hw, &phy_data);
644
645 /* Reset the phy to commit changes. */
646 phy_data |= MII_CR_RESET;
647
648 ret_val = e1e_wphy(hw, PHY_CONTROL, phy_data);
649 if (ret_val)
650 return ret_val;
651
652 udelay(1);
653
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700654 if (hw->phy.autoneg_wait_to_complete) {
Bruce Allan434f1392011-12-16 00:46:54 +0000655 e_dbg("Waiting for forced speed/duplex link on GG82563 phy.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700656
657 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
658 100000, &link);
659 if (ret_val)
660 return ret_val;
661
662 if (!link) {
Bruce Allanad680762008-03-28 09:15:03 -0700663 /*
664 * We didn't get link.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700665 * Reset the DSP and cross our fingers.
666 */
667 ret_val = e1000e_phy_reset_dsp(hw);
668 if (ret_val)
669 return ret_val;
670 }
671
672 /* Try once more */
673 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
674 100000, &link);
675 if (ret_val)
676 return ret_val;
677 }
678
679 ret_val = e1e_rphy(hw, GG82563_PHY_MAC_SPEC_CTRL, &phy_data);
680 if (ret_val)
681 return ret_val;
682
Bruce Allanad680762008-03-28 09:15:03 -0700683 /*
684 * Resetting the phy means we need to verify the TX_CLK corresponds
Auke Kokbc7f75f2007-09-17 12:30:59 -0700685 * to the link speed. 10Mbps -> 2.5MHz, else 25MHz.
686 */
687 phy_data &= ~GG82563_MSCR_TX_CLK_MASK;
688 if (hw->mac.forced_speed_duplex & E1000_ALL_10_SPEED)
689 phy_data |= GG82563_MSCR_TX_CLK_10MBPS_2_5;
690 else
691 phy_data |= GG82563_MSCR_TX_CLK_100MBPS_25;
692
Bruce Allanad680762008-03-28 09:15:03 -0700693 /*
694 * In addition, we must re-enable CRS on Tx for both half and full
Auke Kokbc7f75f2007-09-17 12:30:59 -0700695 * duplex.
696 */
697 phy_data |= GG82563_MSCR_ASSERT_CRS_ON_TX;
698 ret_val = e1e_wphy(hw, GG82563_PHY_MAC_SPEC_CTRL, phy_data);
699
700 return ret_val;
701}
702
703/**
704 * e1000_get_cable_length_80003es2lan - Set approximate cable length
705 * @hw: pointer to the HW structure
706 *
707 * Find the approximate cable length as measured by the GG82563 PHY.
708 * This is a function pointer entry point called by the phy module.
709 **/
710static s32 e1000_get_cable_length_80003es2lan(struct e1000_hw *hw)
711{
712 struct e1000_phy_info *phy = &hw->phy;
Bruce Allaneb656d42009-12-01 15:47:02 +0000713 s32 ret_val = 0;
Bruce Allana708dd82009-11-20 23:28:37 +0000714 u16 phy_data, index;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700715
716 ret_val = e1e_rphy(hw, GG82563_PHY_DSP_DISTANCE, &phy_data);
717 if (ret_val)
Bruce Allaneb656d42009-12-01 15:47:02 +0000718 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700719
720 index = phy_data & GG82563_DSPD_CABLE_LENGTH;
Bruce Allaneb656d42009-12-01 15:47:02 +0000721
722 if (index >= GG82563_CABLE_LENGTH_TABLE_SIZE - 5) {
723 ret_val = -E1000_ERR_PHY;
724 goto out;
725 }
726
Auke Kokbc7f75f2007-09-17 12:30:59 -0700727 phy->min_cable_length = e1000_gg82563_cable_length_table[index];
Bruce Allaneb656d42009-12-01 15:47:02 +0000728 phy->max_cable_length = e1000_gg82563_cable_length_table[index + 5];
Auke Kokbc7f75f2007-09-17 12:30:59 -0700729
730 phy->cable_length = (phy->min_cable_length + phy->max_cable_length) / 2;
731
Bruce Allaneb656d42009-12-01 15:47:02 +0000732out:
733 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700734}
735
736/**
737 * e1000_get_link_up_info_80003es2lan - Report speed and duplex
738 * @hw: pointer to the HW structure
739 * @speed: pointer to speed buffer
740 * @duplex: pointer to duplex buffer
741 *
742 * Retrieve the current speed and duplex configuration.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700743 **/
744static s32 e1000_get_link_up_info_80003es2lan(struct e1000_hw *hw, u16 *speed,
745 u16 *duplex)
746{
747 s32 ret_val;
748
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700749 if (hw->phy.media_type == e1000_media_type_copper) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700750 ret_val = e1000e_get_speed_and_duplex_copper(hw,
751 speed,
752 duplex);
Bruce Allan75eb0fa2008-11-21 16:53:51 -0800753 hw->phy.ops.cfg_on_link_up(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700754 } else {
755 ret_val = e1000e_get_speed_and_duplex_fiber_serdes(hw,
756 speed,
757 duplex);
758 }
759
760 return ret_val;
761}
762
763/**
764 * e1000_reset_hw_80003es2lan - Reset the ESB2 controller
765 * @hw: pointer to the HW structure
766 *
767 * Perform a global reset to the ESB2 controller.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700768 **/
769static s32 e1000_reset_hw_80003es2lan(struct e1000_hw *hw)
770{
Bruce Allandd93f952011-01-06 14:29:48 +0000771 u32 ctrl;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700772 s32 ret_val;
773
Bruce Allanad680762008-03-28 09:15:03 -0700774 /*
775 * Prevent the PCI-E bus from sticking if there is no TLP connection
Auke Kokbc7f75f2007-09-17 12:30:59 -0700776 * on the last TLP read/write transaction when MAC is reset.
777 */
778 ret_val = e1000e_disable_pcie_master(hw);
779 if (ret_val)
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000780 e_dbg("PCI-E Master disable polling has failed.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700781
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000782 e_dbg("Masking off all interrupts\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700783 ew32(IMC, 0xffffffff);
784
785 ew32(RCTL, 0);
786 ew32(TCTL, E1000_TCTL_PSP);
787 e1e_flush();
788
Bruce Allan1bba4382011-03-19 00:27:20 +0000789 usleep_range(10000, 20000);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700790
791 ctrl = er32(CTRL);
792
Bruce Allan75eb0fa2008-11-21 16:53:51 -0800793 ret_val = e1000_acquire_phy_80003es2lan(hw);
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000794 e_dbg("Issuing a global reset to MAC\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700795 ew32(CTRL, ctrl | E1000_CTRL_RST);
Bruce Allan75eb0fa2008-11-21 16:53:51 -0800796 e1000_release_phy_80003es2lan(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700797
798 ret_val = e1000e_get_auto_rd_done(hw);
799 if (ret_val)
800 /* We don't want to continue accessing MAC registers. */
801 return ret_val;
802
803 /* Clear any pending interrupt events. */
804 ew32(IMC, 0xffffffff);
Bruce Allandd93f952011-01-06 14:29:48 +0000805 er32(ICR);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700806
Bruce Allan608f8a02010-01-13 02:04:58 +0000807 ret_val = e1000_check_alt_mac_addr_generic(hw);
808
809 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700810}
811
812/**
813 * e1000_init_hw_80003es2lan - Initialize the ESB2 controller
814 * @hw: pointer to the HW structure
815 *
816 * Initialize the hw bits, LED, VFTA, MTA, link and hw counters.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700817 **/
818static s32 e1000_init_hw_80003es2lan(struct e1000_hw *hw)
819{
820 struct e1000_mac_info *mac = &hw->mac;
821 u32 reg_data;
822 s32 ret_val;
Bruce Alland9b24132011-05-13 07:19:42 +0000823 u16 kum_reg_data;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700824 u16 i;
825
826 e1000_initialize_hw_bits_80003es2lan(hw);
827
828 /* Initialize identification LED */
829 ret_val = e1000e_id_led_init(hw);
Bruce Allande39b752009-11-20 23:27:59 +0000830 if (ret_val)
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000831 e_dbg("Error initializing identification LED\n");
Bruce Allande39b752009-11-20 23:27:59 +0000832 /* This is not fatal and we should not stop init due to this */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700833
834 /* Disabling VLAN filtering */
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000835 e_dbg("Initializing the IEEE VLAN\n");
Bruce Allancaaddaf2009-12-01 15:46:43 +0000836 mac->ops.clear_vfta(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700837
838 /* Setup the receive address. */
839 e1000e_init_rx_addrs(hw, mac->rar_entry_count);
840
841 /* Zero out the Multicast HASH table */
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000842 e_dbg("Zeroing the MTA\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700843 for (i = 0; i < mac->mta_reg_count; i++)
844 E1000_WRITE_REG_ARRAY(hw, E1000_MTA, i, 0);
845
846 /* Setup link and flow control */
847 ret_val = e1000e_setup_link(hw);
848
Bruce Alland9b24132011-05-13 07:19:42 +0000849 /* Disable IBIST slave mode (far-end loopback) */
850 e1000_read_kmrn_reg_80003es2lan(hw, E1000_KMRNCTRLSTA_INBAND_PARAM,
851 &kum_reg_data);
852 kum_reg_data |= E1000_KMRNCTRLSTA_IBIST_DISABLE;
853 e1000_write_kmrn_reg_80003es2lan(hw, E1000_KMRNCTRLSTA_INBAND_PARAM,
854 kum_reg_data);
855
Auke Kokbc7f75f2007-09-17 12:30:59 -0700856 /* Set the transmit descriptor write-back policy */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700857 reg_data = er32(TXDCTL(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -0700858 reg_data = (reg_data & ~E1000_TXDCTL_WTHRESH) |
859 E1000_TXDCTL_FULL_TX_DESC_WB | E1000_TXDCTL_COUNT_DESC;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700860 ew32(TXDCTL(0), reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700861
862 /* ...for both queues. */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700863 reg_data = er32(TXDCTL(1));
Auke Kokbc7f75f2007-09-17 12:30:59 -0700864 reg_data = (reg_data & ~E1000_TXDCTL_WTHRESH) |
865 E1000_TXDCTL_FULL_TX_DESC_WB | E1000_TXDCTL_COUNT_DESC;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700866 ew32(TXDCTL(1), reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700867
868 /* Enable retransmit on late collisions */
869 reg_data = er32(TCTL);
870 reg_data |= E1000_TCTL_RTLC;
871 ew32(TCTL, reg_data);
872
873 /* Configure Gigabit Carry Extend Padding */
874 reg_data = er32(TCTL_EXT);
875 reg_data &= ~E1000_TCTL_EXT_GCEX_MASK;
876 reg_data |= DEFAULT_TCTL_EXT_GCEX_80003ES2LAN;
877 ew32(TCTL_EXT, reg_data);
878
879 /* Configure Transmit Inter-Packet Gap */
880 reg_data = er32(TIPG);
881 reg_data &= ~E1000_TIPG_IPGT_MASK;
882 reg_data |= DEFAULT_TIPG_IPGT_1000_80003ES2LAN;
883 ew32(TIPG, reg_data);
884
885 reg_data = E1000_READ_REG_ARRAY(hw, E1000_FFLT, 0x0001);
886 reg_data &= ~0x00100000;
887 E1000_WRITE_REG_ARRAY(hw, E1000_FFLT, 0x0001, reg_data);
888
Bruce Allan3421eec2009-12-08 07:28:20 +0000889 /* default to true to enable the MDIC W/A */
890 hw->dev_spec.e80003es2lan.mdic_wa_enable = true;
891
892 ret_val = e1000_read_kmrn_reg_80003es2lan(hw,
893 E1000_KMRNCTRLSTA_OFFSET >>
894 E1000_KMRNCTRLSTA_OFFSET_SHIFT,
895 &i);
896 if (!ret_val) {
897 if ((i & E1000_KMRNCTRLSTA_OPMODE_MASK) ==
898 E1000_KMRNCTRLSTA_OPMODE_INBAND_MDIO)
899 hw->dev_spec.e80003es2lan.mdic_wa_enable = false;
900 }
901
Bruce Allanad680762008-03-28 09:15:03 -0700902 /*
903 * Clear all of the statistics registers (clear on read). It is
Auke Kokbc7f75f2007-09-17 12:30:59 -0700904 * important that we do this after we have tried to establish link
905 * because the symbol error count will increment wildly if there
906 * is no link.
907 */
908 e1000_clear_hw_cntrs_80003es2lan(hw);
909
910 return ret_val;
911}
912
913/**
914 * e1000_initialize_hw_bits_80003es2lan - Init hw bits of ESB2
915 * @hw: pointer to the HW structure
916 *
917 * Initializes required hardware-dependent bits needed for normal operation.
918 **/
919static void e1000_initialize_hw_bits_80003es2lan(struct e1000_hw *hw)
920{
921 u32 reg;
922
923 /* Transmit Descriptor Control 0 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700924 reg = er32(TXDCTL(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -0700925 reg |= (1 << 22);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700926 ew32(TXDCTL(0), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700927
928 /* Transmit Descriptor Control 1 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700929 reg = er32(TXDCTL(1));
Auke Kokbc7f75f2007-09-17 12:30:59 -0700930 reg |= (1 << 22);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700931 ew32(TXDCTL(1), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700932
933 /* Transmit Arbitration Control 0 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700934 reg = er32(TARC(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -0700935 reg &= ~(0xF << 27); /* 30:27 */
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700936 if (hw->phy.media_type != e1000_media_type_copper)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700937 reg &= ~(1 << 20);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700938 ew32(TARC(0), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700939
940 /* Transmit Arbitration Control 1 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700941 reg = er32(TARC(1));
Auke Kokbc7f75f2007-09-17 12:30:59 -0700942 if (er32(TCTL) & E1000_TCTL_MULR)
943 reg &= ~(1 << 28);
944 else
945 reg |= (1 << 28);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700946 ew32(TARC(1), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700947}
948
949/**
950 * e1000_copper_link_setup_gg82563_80003es2lan - Configure GG82563 Link
951 * @hw: pointer to the HW structure
952 *
953 * Setup some GG82563 PHY registers for obtaining link
954 **/
955static s32 e1000_copper_link_setup_gg82563_80003es2lan(struct e1000_hw *hw)
956{
957 struct e1000_phy_info *phy = &hw->phy;
958 s32 ret_val;
959 u32 ctrl_ext;
Bruce Allan75eb0fa2008-11-21 16:53:51 -0800960 u16 data;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700961
David Graham2d9498f2008-04-23 11:09:14 -0700962 ret_val = e1e_rphy(hw, GG82563_PHY_MAC_SPEC_CTRL, &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700963 if (ret_val)
964 return ret_val;
965
966 data |= GG82563_MSCR_ASSERT_CRS_ON_TX;
967 /* Use 25MHz for both link down and 1000Base-T for Tx clock. */
968 data |= GG82563_MSCR_TX_CLK_1000MBPS_25;
969
David Graham2d9498f2008-04-23 11:09:14 -0700970 ret_val = e1e_wphy(hw, GG82563_PHY_MAC_SPEC_CTRL, data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700971 if (ret_val)
972 return ret_val;
973
Bruce Allanad680762008-03-28 09:15:03 -0700974 /*
975 * Options:
Auke Kokbc7f75f2007-09-17 12:30:59 -0700976 * MDI/MDI-X = 0 (default)
977 * 0 - Auto for all speeds
978 * 1 - MDI mode
979 * 2 - MDI-X mode
980 * 3 - Auto for 1000Base-T only (MDI-X for 10/100Base-T modes)
981 */
982 ret_val = e1e_rphy(hw, GG82563_PHY_SPEC_CTRL, &data);
983 if (ret_val)
984 return ret_val;
985
986 data &= ~GG82563_PSCR_CROSSOVER_MODE_MASK;
987
988 switch (phy->mdix) {
989 case 1:
990 data |= GG82563_PSCR_CROSSOVER_MODE_MDI;
991 break;
992 case 2:
993 data |= GG82563_PSCR_CROSSOVER_MODE_MDIX;
994 break;
995 case 0:
996 default:
997 data |= GG82563_PSCR_CROSSOVER_MODE_AUTO;
998 break;
999 }
1000
Bruce Allanad680762008-03-28 09:15:03 -07001001 /*
1002 * Options:
Auke Kokbc7f75f2007-09-17 12:30:59 -07001003 * disable_polarity_correction = 0 (default)
1004 * Automatic Correction for Reversed Cable Polarity
1005 * 0 - Disabled
1006 * 1 - Enabled
1007 */
1008 data &= ~GG82563_PSCR_POLARITY_REVERSAL_DISABLE;
1009 if (phy->disable_polarity_correction)
1010 data |= GG82563_PSCR_POLARITY_REVERSAL_DISABLE;
1011
1012 ret_val = e1e_wphy(hw, GG82563_PHY_SPEC_CTRL, data);
1013 if (ret_val)
1014 return ret_val;
1015
1016 /* SW Reset the PHY so all changes take effect */
1017 ret_val = e1000e_commit_phy(hw);
1018 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001019 e_dbg("Error Resetting the PHY\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001020 return ret_val;
1021 }
1022
Bruce Allanad680762008-03-28 09:15:03 -07001023 /* Bypass Rx and Tx FIFO's */
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001024 ret_val = e1000_write_kmrn_reg_80003es2lan(hw,
1025 E1000_KMRNCTRLSTA_OFFSET_FIFO_CTRL,
Bruce Allanad680762008-03-28 09:15:03 -07001026 E1000_KMRNCTRLSTA_FIFO_CTRL_RX_BYPASS |
Auke Kokbc7f75f2007-09-17 12:30:59 -07001027 E1000_KMRNCTRLSTA_FIFO_CTRL_TX_BYPASS);
1028 if (ret_val)
1029 return ret_val;
1030
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001031 ret_val = e1000_read_kmrn_reg_80003es2lan(hw,
David Graham2d9498f2008-04-23 11:09:14 -07001032 E1000_KMRNCTRLSTA_OFFSET_MAC2PHY_OPMODE,
1033 &data);
1034 if (ret_val)
1035 return ret_val;
1036 data |= E1000_KMRNCTRLSTA_OPMODE_E_IDLE;
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001037 ret_val = e1000_write_kmrn_reg_80003es2lan(hw,
David Graham2d9498f2008-04-23 11:09:14 -07001038 E1000_KMRNCTRLSTA_OFFSET_MAC2PHY_OPMODE,
1039 data);
1040 if (ret_val)
1041 return ret_val;
1042
Auke Kokbc7f75f2007-09-17 12:30:59 -07001043 ret_val = e1e_rphy(hw, GG82563_PHY_SPEC_CTRL_2, &data);
1044 if (ret_val)
1045 return ret_val;
1046
1047 data &= ~GG82563_PSCR2_REVERSE_AUTO_NEG;
1048 ret_val = e1e_wphy(hw, GG82563_PHY_SPEC_CTRL_2, data);
1049 if (ret_val)
1050 return ret_val;
1051
1052 ctrl_ext = er32(CTRL_EXT);
1053 ctrl_ext &= ~(E1000_CTRL_EXT_LINK_MODE_MASK);
1054 ew32(CTRL_EXT, ctrl_ext);
1055
1056 ret_val = e1e_rphy(hw, GG82563_PHY_PWR_MGMT_CTRL, &data);
1057 if (ret_val)
1058 return ret_val;
1059
Bruce Allanad680762008-03-28 09:15:03 -07001060 /*
1061 * Do not init these registers when the HW is in IAMT mode, since the
Auke Kokbc7f75f2007-09-17 12:30:59 -07001062 * firmware will have already initialized them. We only initialize
1063 * them if the HW is not in IAMT mode.
1064 */
1065 if (!e1000e_check_mng_mode(hw)) {
1066 /* Enable Electrical Idle on the PHY */
1067 data |= GG82563_PMCR_ENABLE_ELECTRICAL_IDLE;
1068 ret_val = e1e_wphy(hw, GG82563_PHY_PWR_MGMT_CTRL, data);
1069 if (ret_val)
1070 return ret_val;
1071
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001072 ret_val = e1e_rphy(hw, GG82563_PHY_KMRN_MODE_CTRL, &data);
1073 if (ret_val)
1074 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001075
1076 data &= ~GG82563_KMCR_PASS_FALSE_CARRIER;
1077 ret_val = e1e_wphy(hw, GG82563_PHY_KMRN_MODE_CTRL, data);
1078 if (ret_val)
1079 return ret_val;
1080 }
1081
Bruce Allanad680762008-03-28 09:15:03 -07001082 /*
1083 * Workaround: Disable padding in Kumeran interface in the MAC
Auke Kokbc7f75f2007-09-17 12:30:59 -07001084 * and in the PHY to avoid CRC errors.
1085 */
1086 ret_val = e1e_rphy(hw, GG82563_PHY_INBAND_CTRL, &data);
1087 if (ret_val)
1088 return ret_val;
1089
1090 data |= GG82563_ICR_DIS_PADDING;
1091 ret_val = e1e_wphy(hw, GG82563_PHY_INBAND_CTRL, data);
1092 if (ret_val)
1093 return ret_val;
1094
1095 return 0;
1096}
1097
1098/**
1099 * e1000_setup_copper_link_80003es2lan - Setup Copper Link for ESB2
1100 * @hw: pointer to the HW structure
1101 *
1102 * Essentially a wrapper for setting up all things "copper" related.
1103 * This is a function pointer entry point called by the mac module.
1104 **/
1105static s32 e1000_setup_copper_link_80003es2lan(struct e1000_hw *hw)
1106{
1107 u32 ctrl;
1108 s32 ret_val;
1109 u16 reg_data;
1110
1111 ctrl = er32(CTRL);
1112 ctrl |= E1000_CTRL_SLU;
1113 ctrl &= ~(E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX);
1114 ew32(CTRL, ctrl);
1115
Bruce Allanad680762008-03-28 09:15:03 -07001116 /*
1117 * Set the mac to wait the maximum time between each
Auke Kokbc7f75f2007-09-17 12:30:59 -07001118 * iteration and increase the max iterations when
Bruce Allanad680762008-03-28 09:15:03 -07001119 * polling the phy; this fixes erroneous timeouts at 10Mbps.
1120 */
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001121 ret_val = e1000_write_kmrn_reg_80003es2lan(hw, GG82563_REG(0x34, 4),
1122 0xFFFF);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001123 if (ret_val)
1124 return ret_val;
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001125 ret_val = e1000_read_kmrn_reg_80003es2lan(hw, GG82563_REG(0x34, 9),
1126 &reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001127 if (ret_val)
1128 return ret_val;
1129 reg_data |= 0x3F;
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001130 ret_val = e1000_write_kmrn_reg_80003es2lan(hw, GG82563_REG(0x34, 9),
1131 reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001132 if (ret_val)
1133 return ret_val;
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001134 ret_val = e1000_read_kmrn_reg_80003es2lan(hw,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001135 E1000_KMRNCTRLSTA_OFFSET_INB_CTRL,
1136 &reg_data);
1137 if (ret_val)
1138 return ret_val;
1139 reg_data |= E1000_KMRNCTRLSTA_INB_CTRL_DIS_PADDING;
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001140 ret_val = e1000_write_kmrn_reg_80003es2lan(hw,
1141 E1000_KMRNCTRLSTA_OFFSET_INB_CTRL,
Bruce Allanad680762008-03-28 09:15:03 -07001142 reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001143 if (ret_val)
1144 return ret_val;
1145
1146 ret_val = e1000_copper_link_setup_gg82563_80003es2lan(hw);
1147 if (ret_val)
1148 return ret_val;
1149
1150 ret_val = e1000e_setup_copper_link(hw);
1151
1152 return 0;
1153}
1154
1155/**
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001156 * e1000_cfg_on_link_up_80003es2lan - es2 link configuration after link-up
1157 * @hw: pointer to the HW structure
1158 * @duplex: current duplex setting
1159 *
1160 * Configure the KMRN interface by applying last minute quirks for
1161 * 10/100 operation.
1162 **/
1163static s32 e1000_cfg_on_link_up_80003es2lan(struct e1000_hw *hw)
1164{
1165 s32 ret_val = 0;
1166 u16 speed;
1167 u16 duplex;
1168
1169 if (hw->phy.media_type == e1000_media_type_copper) {
1170 ret_val = e1000e_get_speed_and_duplex_copper(hw, &speed,
1171 &duplex);
1172 if (ret_val)
1173 return ret_val;
1174
1175 if (speed == SPEED_1000)
1176 ret_val = e1000_cfg_kmrn_1000_80003es2lan(hw);
1177 else
1178 ret_val = e1000_cfg_kmrn_10_100_80003es2lan(hw, duplex);
1179 }
1180
1181 return ret_val;
1182}
1183
1184/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001185 * e1000_cfg_kmrn_10_100_80003es2lan - Apply "quirks" for 10/100 operation
1186 * @hw: pointer to the HW structure
1187 * @duplex: current duplex setting
1188 *
1189 * Configure the KMRN interface by applying last minute quirks for
1190 * 10/100 operation.
1191 **/
1192static s32 e1000_cfg_kmrn_10_100_80003es2lan(struct e1000_hw *hw, u16 duplex)
1193{
1194 s32 ret_val;
1195 u32 tipg;
David Graham2d9498f2008-04-23 11:09:14 -07001196 u32 i = 0;
1197 u16 reg_data, reg_data2;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001198
1199 reg_data = E1000_KMRNCTRLSTA_HD_CTRL_10_100_DEFAULT;
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001200 ret_val = e1000_write_kmrn_reg_80003es2lan(hw,
1201 E1000_KMRNCTRLSTA_OFFSET_HD_CTRL,
1202 reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001203 if (ret_val)
1204 return ret_val;
1205
1206 /* Configure Transmit Inter-Packet Gap */
1207 tipg = er32(TIPG);
1208 tipg &= ~E1000_TIPG_IPGT_MASK;
1209 tipg |= DEFAULT_TIPG_IPGT_10_100_80003ES2LAN;
1210 ew32(TIPG, tipg);
1211
David Graham2d9498f2008-04-23 11:09:14 -07001212 do {
1213 ret_val = e1e_rphy(hw, GG82563_PHY_KMRN_MODE_CTRL, &reg_data);
1214 if (ret_val)
1215 return ret_val;
1216
1217 ret_val = e1e_rphy(hw, GG82563_PHY_KMRN_MODE_CTRL, &reg_data2);
1218 if (ret_val)
1219 return ret_val;
1220 i++;
1221 } while ((reg_data != reg_data2) && (i < GG82563_MAX_KMRN_RETRY));
Auke Kokbc7f75f2007-09-17 12:30:59 -07001222
1223 if (duplex == HALF_DUPLEX)
1224 reg_data |= GG82563_KMCR_PASS_FALSE_CARRIER;
1225 else
1226 reg_data &= ~GG82563_KMCR_PASS_FALSE_CARRIER;
1227
1228 ret_val = e1e_wphy(hw, GG82563_PHY_KMRN_MODE_CTRL, reg_data);
1229
1230 return 0;
1231}
1232
1233/**
1234 * e1000_cfg_kmrn_1000_80003es2lan - Apply "quirks" for gigabit operation
1235 * @hw: pointer to the HW structure
1236 *
1237 * Configure the KMRN interface by applying last minute quirks for
1238 * gigabit operation.
1239 **/
1240static s32 e1000_cfg_kmrn_1000_80003es2lan(struct e1000_hw *hw)
1241{
1242 s32 ret_val;
David Graham2d9498f2008-04-23 11:09:14 -07001243 u16 reg_data, reg_data2;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001244 u32 tipg;
David Graham2d9498f2008-04-23 11:09:14 -07001245 u32 i = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001246
1247 reg_data = E1000_KMRNCTRLSTA_HD_CTRL_1000_DEFAULT;
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001248 ret_val = e1000_write_kmrn_reg_80003es2lan(hw,
1249 E1000_KMRNCTRLSTA_OFFSET_HD_CTRL,
1250 reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001251 if (ret_val)
1252 return ret_val;
1253
1254 /* Configure Transmit Inter-Packet Gap */
1255 tipg = er32(TIPG);
1256 tipg &= ~E1000_TIPG_IPGT_MASK;
1257 tipg |= DEFAULT_TIPG_IPGT_1000_80003ES2LAN;
1258 ew32(TIPG, tipg);
1259
David Graham2d9498f2008-04-23 11:09:14 -07001260 do {
1261 ret_val = e1e_rphy(hw, GG82563_PHY_KMRN_MODE_CTRL, &reg_data);
1262 if (ret_val)
1263 return ret_val;
1264
1265 ret_val = e1e_rphy(hw, GG82563_PHY_KMRN_MODE_CTRL, &reg_data2);
1266 if (ret_val)
1267 return ret_val;
1268 i++;
1269 } while ((reg_data != reg_data2) && (i < GG82563_MAX_KMRN_RETRY));
Auke Kokbc7f75f2007-09-17 12:30:59 -07001270
1271 reg_data &= ~GG82563_KMCR_PASS_FALSE_CARRIER;
1272 ret_val = e1e_wphy(hw, GG82563_PHY_KMRN_MODE_CTRL, reg_data);
1273
1274 return ret_val;
1275}
1276
1277/**
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001278 * e1000_read_kmrn_reg_80003es2lan - Read kumeran register
1279 * @hw: pointer to the HW structure
1280 * @offset: register offset to be read
1281 * @data: pointer to the read data
1282 *
1283 * Acquire semaphore, then read the PHY register at offset
1284 * using the kumeran interface. The information retrieved is stored in data.
1285 * Release the semaphore before exiting.
1286 **/
Hannes Ederfa4c16d2008-12-22 09:16:13 +00001287static s32 e1000_read_kmrn_reg_80003es2lan(struct e1000_hw *hw, u32 offset,
1288 u16 *data)
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001289{
1290 u32 kmrnctrlsta;
1291 s32 ret_val = 0;
1292
1293 ret_val = e1000_acquire_mac_csr_80003es2lan(hw);
1294 if (ret_val)
1295 return ret_val;
1296
1297 kmrnctrlsta = ((offset << E1000_KMRNCTRLSTA_OFFSET_SHIFT) &
1298 E1000_KMRNCTRLSTA_OFFSET) | E1000_KMRNCTRLSTA_REN;
1299 ew32(KMRNCTRLSTA, kmrnctrlsta);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001300 e1e_flush();
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001301
1302 udelay(2);
1303
1304 kmrnctrlsta = er32(KMRNCTRLSTA);
1305 *data = (u16)kmrnctrlsta;
1306
1307 e1000_release_mac_csr_80003es2lan(hw);
1308
1309 return ret_val;
1310}
1311
1312/**
1313 * e1000_write_kmrn_reg_80003es2lan - Write kumeran register
1314 * @hw: pointer to the HW structure
1315 * @offset: register offset to write to
1316 * @data: data to write at register offset
1317 *
1318 * Acquire semaphore, then write the data to PHY register
1319 * at the offset using the kumeran interface. Release semaphore
1320 * before exiting.
1321 **/
Hannes Ederfa4c16d2008-12-22 09:16:13 +00001322static s32 e1000_write_kmrn_reg_80003es2lan(struct e1000_hw *hw, u32 offset,
1323 u16 data)
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001324{
1325 u32 kmrnctrlsta;
1326 s32 ret_val = 0;
1327
1328 ret_val = e1000_acquire_mac_csr_80003es2lan(hw);
1329 if (ret_val)
1330 return ret_val;
1331
1332 kmrnctrlsta = ((offset << E1000_KMRNCTRLSTA_OFFSET_SHIFT) &
1333 E1000_KMRNCTRLSTA_OFFSET) | data;
1334 ew32(KMRNCTRLSTA, kmrnctrlsta);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001335 e1e_flush();
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001336
1337 udelay(2);
1338
1339 e1000_release_mac_csr_80003es2lan(hw);
1340
1341 return ret_val;
1342}
1343
1344/**
Bruce Allan608f8a02010-01-13 02:04:58 +00001345 * e1000_read_mac_addr_80003es2lan - Read device MAC address
1346 * @hw: pointer to the HW structure
1347 **/
1348static s32 e1000_read_mac_addr_80003es2lan(struct e1000_hw *hw)
1349{
1350 s32 ret_val = 0;
1351
1352 /*
1353 * If there's an alternate MAC address place it in RAR0
1354 * so that it will override the Si installed default perm
1355 * address.
1356 */
1357 ret_val = e1000_check_alt_mac_addr_generic(hw);
1358 if (ret_val)
1359 goto out;
1360
1361 ret_val = e1000_read_mac_addr_generic(hw);
1362
1363out:
1364 return ret_val;
1365}
1366
1367/**
Bruce Allan17f208d2009-12-01 15:47:22 +00001368 * e1000_power_down_phy_copper_80003es2lan - Remove link during PHY power down
1369 * @hw: pointer to the HW structure
1370 *
1371 * In the case of a PHY power down to save power, or to turn off link during a
1372 * driver unload, or wake on lan is not enabled, remove the link.
1373 **/
1374static void e1000_power_down_phy_copper_80003es2lan(struct e1000_hw *hw)
1375{
1376 /* If the management interface is not enabled, then power down */
1377 if (!(hw->mac.ops.check_mng_mode(hw) ||
1378 hw->phy.ops.check_reset_block(hw)))
1379 e1000_power_down_phy_copper(hw);
Bruce Allan17f208d2009-12-01 15:47:22 +00001380}
1381
1382/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001383 * e1000_clear_hw_cntrs_80003es2lan - Clear device specific hardware counters
1384 * @hw: pointer to the HW structure
1385 *
1386 * Clears the hardware counters by reading the counter registers.
1387 **/
1388static void e1000_clear_hw_cntrs_80003es2lan(struct e1000_hw *hw)
1389{
Auke Kokbc7f75f2007-09-17 12:30:59 -07001390 e1000e_clear_hw_cntrs_base(hw);
1391
Bruce Allan99673d92009-11-20 23:27:21 +00001392 er32(PRC64);
1393 er32(PRC127);
1394 er32(PRC255);
1395 er32(PRC511);
1396 er32(PRC1023);
1397 er32(PRC1522);
1398 er32(PTC64);
1399 er32(PTC127);
1400 er32(PTC255);
1401 er32(PTC511);
1402 er32(PTC1023);
1403 er32(PTC1522);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001404
Bruce Allan99673d92009-11-20 23:27:21 +00001405 er32(ALGNERRC);
1406 er32(RXERRC);
1407 er32(TNCRS);
1408 er32(CEXTERR);
1409 er32(TSCTC);
1410 er32(TSCTFC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001411
Bruce Allan99673d92009-11-20 23:27:21 +00001412 er32(MGTPRC);
1413 er32(MGTPDC);
1414 er32(MGTPTC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001415
Bruce Allan99673d92009-11-20 23:27:21 +00001416 er32(IAC);
1417 er32(ICRXOC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001418
Bruce Allan99673d92009-11-20 23:27:21 +00001419 er32(ICRXPTC);
1420 er32(ICRXATC);
1421 er32(ICTXPTC);
1422 er32(ICTXATC);
1423 er32(ICTXQEC);
1424 er32(ICTXQMTC);
1425 er32(ICRXDMTC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001426}
1427
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00001428static const struct e1000_mac_operations es2_mac_ops = {
Bruce Allan608f8a02010-01-13 02:04:58 +00001429 .read_mac_addr = e1000_read_mac_addr_80003es2lan,
Bruce Allana4f58f52009-06-02 11:29:18 +00001430 .id_led_init = e1000e_id_led_init,
Bruce Allandbf80dc2011-04-16 00:34:40 +00001431 .blink_led = e1000e_blink_led_generic,
Bruce Allan4662e822008-08-26 18:37:06 -07001432 .check_mng_mode = e1000e_check_mng_mode_generic,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001433 /* check_for_link dependent on media type */
1434 .cleanup_led = e1000e_cleanup_led_generic,
1435 .clear_hw_cntrs = e1000_clear_hw_cntrs_80003es2lan,
1436 .get_bus_info = e1000e_get_bus_info_pcie,
Bruce Allanf4d2dd42010-01-13 02:05:18 +00001437 .set_lan_id = e1000_set_lan_id_multi_port_pcie,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001438 .get_link_up_info = e1000_get_link_up_info_80003es2lan,
1439 .led_on = e1000e_led_on_generic,
1440 .led_off = e1000e_led_off_generic,
Jeff Kirshere2de3eb2008-03-28 09:15:11 -07001441 .update_mc_addr_list = e1000e_update_mc_addr_list_generic,
Bruce Allancaaddaf2009-12-01 15:46:43 +00001442 .write_vfta = e1000_write_vfta_generic,
1443 .clear_vfta = e1000_clear_vfta_generic,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001444 .reset_hw = e1000_reset_hw_80003es2lan,
1445 .init_hw = e1000_init_hw_80003es2lan,
1446 .setup_link = e1000e_setup_link,
1447 /* setup_physical_interface dependent on media type */
Bruce Allana4f58f52009-06-02 11:29:18 +00001448 .setup_led = e1000e_setup_led_generic,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001449};
1450
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00001451static const struct e1000_phy_operations es2_phy_ops = {
Bruce Allan94d81862009-11-20 23:25:26 +00001452 .acquire = e1000_acquire_phy_80003es2lan,
Bruce Allan94e5b652009-12-02 17:02:14 +00001453 .check_polarity = e1000_check_polarity_m88,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001454 .check_reset_block = e1000e_check_reset_block_generic,
Bruce Allan94d81862009-11-20 23:25:26 +00001455 .commit = e1000e_phy_sw_reset,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001456 .force_speed_duplex = e1000_phy_force_speed_duplex_80003es2lan,
1457 .get_cfg_done = e1000_get_cfg_done_80003es2lan,
1458 .get_cable_length = e1000_get_cable_length_80003es2lan,
Bruce Allan94d81862009-11-20 23:25:26 +00001459 .get_info = e1000e_get_phy_info_m88,
1460 .read_reg = e1000_read_phy_reg_gg82563_80003es2lan,
1461 .release = e1000_release_phy_80003es2lan,
1462 .reset = e1000e_phy_hw_reset_generic,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001463 .set_d0_lplu_state = NULL,
1464 .set_d3_lplu_state = e1000e_set_d3_lplu_state,
Bruce Allan94d81862009-11-20 23:25:26 +00001465 .write_reg = e1000_write_phy_reg_gg82563_80003es2lan,
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001466 .cfg_on_link_up = e1000_cfg_on_link_up_80003es2lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001467};
1468
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00001469static const struct e1000_nvm_operations es2_nvm_ops = {
Bruce Allan94d81862009-11-20 23:25:26 +00001470 .acquire = e1000_acquire_nvm_80003es2lan,
1471 .read = e1000e_read_nvm_eerd,
1472 .release = e1000_release_nvm_80003es2lan,
1473 .update = e1000e_update_nvm_checksum_generic,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001474 .valid_led_default = e1000e_valid_led_default,
Bruce Allan94d81862009-11-20 23:25:26 +00001475 .validate = e1000e_validate_nvm_checksum_generic,
1476 .write = e1000_write_nvm_80003es2lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001477};
1478
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00001479const struct e1000_info e1000_es2_info = {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001480 .mac = e1000_80003es2lan,
1481 .flags = FLAG_HAS_HW_VLAN_FILTER
1482 | FLAG_HAS_JUMBO_FRAMES
Auke Kokbc7f75f2007-09-17 12:30:59 -07001483 | FLAG_HAS_WOL
1484 | FLAG_APME_IN_CTRL3
Auke Kokbc7f75f2007-09-17 12:30:59 -07001485 | FLAG_HAS_CTRLEXT_ON_LOAD
Auke Kokbc7f75f2007-09-17 12:30:59 -07001486 | FLAG_RX_NEEDS_RESTART /* errata */
1487 | FLAG_TARC_SET_BIT_ZERO /* errata */
1488 | FLAG_APME_CHECK_PORT_B
Bruce Allan6a92f732011-12-16 00:46:12 +00001489 | FLAG_DISABLE_FC_PAUSE_TIME, /* errata */
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00001490 .flags2 = FLAG2_DMA_BURST,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001491 .pba = 38,
Bruce Allan2adc55c2009-06-02 11:28:58 +00001492 .max_hw_frame_size = DEFAULT_JUMBO,
Jeff Kirsher69e3fd82008-04-02 13:48:18 -07001493 .get_variants = e1000_get_variants_80003es2lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001494 .mac_ops = &es2_mac_ops,
1495 .phy_ops = &es2_phy_ops,
1496 .nvm_ops = &es2_nvm_ops,
1497};
1498