blob: 2af603f3e4183d5209ec9cb762892b7cac185206 [file] [log] [blame]
David Ertmane78b80b2014-02-04 01:56:06 +00001/* Intel PRO/1000 Linux driver
Yanir Lubetkin529498c2015-06-02 17:05:50 +03002 * Copyright(c) 1999 - 2015 Intel Corporation.
David Ertmane78b80b2014-02-04 01:56:06 +00003 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * The full GNU General Public License is included in this distribution in
14 * the file called "COPYING".
15 *
16 * Contact Information:
17 * Linux NICS <linux.nics@intel.com>
18 * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
19 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
20 */
Auke Kokbc7f75f2007-09-17 12:30:59 -070021
Bruce Allane921eb12012-11-28 09:28:37 +000022/* 80003ES2LAN Gigabit Ethernet Controller (Copper)
Auke Kokbc7f75f2007-09-17 12:30:59 -070023 * 80003ES2LAN Gigabit Ethernet Controller (Serdes)
24 */
25
Auke Kokbc7f75f2007-09-17 12:30:59 -070026#include "e1000.h"
27
Bruce Allane921eb12012-11-28 09:28:37 +000028/* A table for the GG82563 cable length where the range is defined
Auke Kokbc7f75f2007-09-17 12:30:59 -070029 * with a lower bound at "index" and the upper bound at
30 * "index + 5".
31 */
Bruce Allan64806412010-12-11 05:53:42 +000032static const u16 e1000_gg82563_cable_length_table[] = {
Bruce Allan04e115c2013-02-20 04:06:22 +000033 0, 60, 115, 150, 150, 60, 115, 150, 180, 180, 0xFF
34};
Bruce Allanfc830b72013-02-20 04:06:11 +000035
Bruce Allaneb656d42009-12-01 15:47:02 +000036#define GG82563_CABLE_LENGTH_TABLE_SIZE \
37 ARRAY_SIZE(e1000_gg82563_cable_length_table)
Auke Kokbc7f75f2007-09-17 12:30:59 -070038
39static s32 e1000_setup_copper_link_80003es2lan(struct e1000_hw *hw);
40static s32 e1000_acquire_swfw_sync_80003es2lan(struct e1000_hw *hw, u16 mask);
41static void e1000_release_swfw_sync_80003es2lan(struct e1000_hw *hw, u16 mask);
42static void e1000_initialize_hw_bits_80003es2lan(struct e1000_hw *hw);
43static void e1000_clear_hw_cntrs_80003es2lan(struct e1000_hw *hw);
44static s32 e1000_cfg_kmrn_1000_80003es2lan(struct e1000_hw *hw);
45static s32 e1000_cfg_kmrn_10_100_80003es2lan(struct e1000_hw *hw, u16 duplex);
Bruce Allan1f96012d2013-01-05 03:06:54 +000046static s32 e1000_read_kmrn_reg_80003es2lan(struct e1000_hw *hw, u32 offset,
47 u16 *data);
48static s32 e1000_write_kmrn_reg_80003es2lan(struct e1000_hw *hw, u32 offset,
49 u16 data);
Bruce Allan17f208d2009-12-01 15:47:22 +000050static void e1000_power_down_phy_copper_80003es2lan(struct e1000_hw *hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -070051
52/**
53 * e1000_init_phy_params_80003es2lan - Init ESB2 PHY func ptrs.
54 * @hw: pointer to the HW structure
Auke Kokbc7f75f2007-09-17 12:30:59 -070055 **/
56static s32 e1000_init_phy_params_80003es2lan(struct e1000_hw *hw)
57{
58 struct e1000_phy_info *phy = &hw->phy;
59 s32 ret_val;
60
Jeff Kirsher318a94d2008-03-28 09:15:16 -070061 if (hw->phy.media_type != e1000_media_type_copper) {
Bruce Allane80bd1d2013-05-01 01:19:46 +000062 phy->type = e1000_phy_none;
Auke Kokbc7f75f2007-09-17 12:30:59 -070063 return 0;
Bruce Allan17f208d2009-12-01 15:47:22 +000064 } else {
65 phy->ops.power_up = e1000_power_up_phy_copper;
66 phy->ops.power_down = e1000_power_down_phy_copper_80003es2lan;
Auke Kokbc7f75f2007-09-17 12:30:59 -070067 }
68
Bruce Allane80bd1d2013-05-01 01:19:46 +000069 phy->addr = 1;
70 phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT;
71 phy->reset_delay_us = 100;
72 phy->type = e1000_phy_gg82563;
Auke Kokbc7f75f2007-09-17 12:30:59 -070073
74 /* This can only be done after all function pointers are setup. */
75 ret_val = e1000e_get_phy_id(hw);
76
77 /* Verify phy id */
78 if (phy->id != GG82563_E_PHY_ID)
79 return -E1000_ERR_PHY;
80
81 return ret_val;
82}
83
84/**
85 * e1000_init_nvm_params_80003es2lan - Init ESB2 NVM func ptrs.
86 * @hw: pointer to the HW structure
Auke Kokbc7f75f2007-09-17 12:30:59 -070087 **/
88static s32 e1000_init_nvm_params_80003es2lan(struct e1000_hw *hw)
89{
90 struct e1000_nvm_info *nvm = &hw->nvm;
91 u32 eecd = er32(EECD);
92 u16 size;
93
Bruce Allane80bd1d2013-05-01 01:19:46 +000094 nvm->opcode_bits = 8;
95 nvm->delay_usec = 1;
Auke Kokbc7f75f2007-09-17 12:30:59 -070096 switch (nvm->override) {
97 case e1000_nvm_override_spi_large:
Bruce Allane80bd1d2013-05-01 01:19:46 +000098 nvm->page_size = 32;
Auke Kokbc7f75f2007-09-17 12:30:59 -070099 nvm->address_bits = 16;
100 break;
101 case e1000_nvm_override_spi_small:
Bruce Allane80bd1d2013-05-01 01:19:46 +0000102 nvm->page_size = 8;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700103 nvm->address_bits = 8;
104 break;
105 default:
Bruce Allane80bd1d2013-05-01 01:19:46 +0000106 nvm->page_size = eecd & E1000_EECD_ADDR_BITS ? 32 : 8;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700107 nvm->address_bits = eecd & E1000_EECD_ADDR_BITS ? 16 : 8;
108 break;
109 }
110
Bruce Allanad680762008-03-28 09:15:03 -0700111 nvm->type = e1000_nvm_eeprom_spi;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700112
113 size = (u16)((eecd & E1000_EECD_SIZE_EX_MASK) >>
Bruce Allanf0ff4392013-02-20 04:05:39 +0000114 E1000_EECD_SIZE_EX_SHIFT);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700115
Bruce Allane921eb12012-11-28 09:28:37 +0000116 /* Added to a constant, "size" becomes the left-shift value
Auke Kokbc7f75f2007-09-17 12:30:59 -0700117 * for setting word_size.
118 */
119 size += NVM_WORD_SIZE_BASE_SHIFT;
Jeff Kirsher8d7c2942008-04-02 13:48:07 -0700120
121 /* EEPROM access above 16k is unsupported */
122 if (size > 14)
123 size = 14;
Bruce Allane80bd1d2013-05-01 01:19:46 +0000124 nvm->word_size = 1 << size;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700125
126 return 0;
127}
128
129/**
130 * e1000_init_mac_params_80003es2lan - Init ESB2 MAC func ptrs.
131 * @hw: pointer to the HW structure
Auke Kokbc7f75f2007-09-17 12:30:59 -0700132 **/
Bruce Allanec34c172012-02-01 10:53:05 +0000133static s32 e1000_init_mac_params_80003es2lan(struct e1000_hw *hw)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700134{
Auke Kokbc7f75f2007-09-17 12:30:59 -0700135 struct e1000_mac_info *mac = &hw->mac;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700136
Bruce Allane68782e2012-01-31 06:37:43 +0000137 /* Set media type and media-dependent function pointers */
Bruce Allanec34c172012-02-01 10:53:05 +0000138 switch (hw->adapter->pdev->device) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700139 case E1000_DEV_ID_80003ES2LAN_SERDES_DPT:
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700140 hw->phy.media_type = e1000_media_type_internal_serdes;
Bruce Allane68782e2012-01-31 06:37:43 +0000141 mac->ops.check_for_link = e1000e_check_for_serdes_link;
142 mac->ops.setup_physical_interface =
143 e1000e_setup_fiber_serdes_link;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700144 break;
145 default:
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700146 hw->phy.media_type = e1000_media_type_copper;
Bruce Allane68782e2012-01-31 06:37:43 +0000147 mac->ops.check_for_link = e1000e_check_for_copper_link;
148 mac->ops.setup_physical_interface =
149 e1000_setup_copper_link_80003es2lan;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700150 break;
151 }
152
153 /* Set mta register count */
154 mac->mta_reg_count = 128;
155 /* Set rar entry count */
156 mac->rar_entry_count = E1000_RAR_ENTRIES;
Bruce Allana65a4a02010-05-10 15:01:51 +0000157 /* FWSM register */
158 mac->has_fwsm = true;
159 /* ARC supported; valid only if manageability features are enabled. */
Bruce Allan04499ec2012-04-13 00:08:31 +0000160 mac->arc_subsystem_valid = !!(er32(FWSM) & E1000_FWSM_MODE_MASK);
Bruce Allanf464ba82010-01-07 16:31:35 +0000161 /* Adaptive IFS not supported */
162 mac->adaptive_ifs = false;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700163
Bruce Allanf4d2dd42010-01-13 02:05:18 +0000164 /* set lan id for port to determine which phy lock to use */
165 hw->mac.ops.set_lan_id(hw);
166
Auke Kokbc7f75f2007-09-17 12:30:59 -0700167 return 0;
168}
169
Jeff Kirsher69e3fd82008-04-02 13:48:18 -0700170static s32 e1000_get_variants_80003es2lan(struct e1000_adapter *adapter)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700171{
172 struct e1000_hw *hw = &adapter->hw;
173 s32 rc;
174
Bruce Allanec34c172012-02-01 10:53:05 +0000175 rc = e1000_init_mac_params_80003es2lan(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700176 if (rc)
177 return rc;
178
179 rc = e1000_init_nvm_params_80003es2lan(hw);
180 if (rc)
181 return rc;
182
183 rc = e1000_init_phy_params_80003es2lan(hw);
184 if (rc)
185 return rc;
186
187 return 0;
188}
189
190/**
191 * e1000_acquire_phy_80003es2lan - Acquire rights to access PHY
192 * @hw: pointer to the HW structure
193 *
Bruce Allanfe401672009-11-20 23:26:05 +0000194 * A wrapper to acquire access rights to the correct PHY.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700195 **/
196static s32 e1000_acquire_phy_80003es2lan(struct e1000_hw *hw)
197{
198 u16 mask;
199
200 mask = hw->bus.func ? E1000_SWFW_PHY1_SM : E1000_SWFW_PHY0_SM;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700201 return e1000_acquire_swfw_sync_80003es2lan(hw, mask);
202}
203
204/**
205 * e1000_release_phy_80003es2lan - Release rights to access PHY
206 * @hw: pointer to the HW structure
207 *
Bruce Allanfe401672009-11-20 23:26:05 +0000208 * A wrapper to release access rights to the correct PHY.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700209 **/
210static void e1000_release_phy_80003es2lan(struct e1000_hw *hw)
211{
212 u16 mask;
213
214 mask = hw->bus.func ? E1000_SWFW_PHY1_SM : E1000_SWFW_PHY0_SM;
Bruce Allan75eb0fa2008-11-21 16:53:51 -0800215 e1000_release_swfw_sync_80003es2lan(hw, mask);
216}
217
218/**
Bruce Allandffcdde2012-02-17 09:35:33 +0000219 * e1000_acquire_mac_csr_80003es2lan - Acquire right to access Kumeran register
Bruce Allan75eb0fa2008-11-21 16:53:51 -0800220 * @hw: pointer to the HW structure
221 *
222 * Acquire the semaphore to access the Kumeran interface.
223 *
224 **/
225static s32 e1000_acquire_mac_csr_80003es2lan(struct e1000_hw *hw)
226{
227 u16 mask;
228
229 mask = E1000_SWFW_CSR_SM;
230
231 return e1000_acquire_swfw_sync_80003es2lan(hw, mask);
232}
233
234/**
Bruce Allandffcdde2012-02-17 09:35:33 +0000235 * e1000_release_mac_csr_80003es2lan - Release right to access Kumeran Register
Bruce Allan75eb0fa2008-11-21 16:53:51 -0800236 * @hw: pointer to the HW structure
237 *
238 * Release the semaphore used to access the Kumeran interface
239 **/
240static void e1000_release_mac_csr_80003es2lan(struct e1000_hw *hw)
241{
242 u16 mask;
243
244 mask = E1000_SWFW_CSR_SM;
David Graham2d9498f2008-04-23 11:09:14 -0700245
Auke Kokbc7f75f2007-09-17 12:30:59 -0700246 e1000_release_swfw_sync_80003es2lan(hw, mask);
247}
248
249/**
250 * e1000_acquire_nvm_80003es2lan - Acquire rights to access NVM
251 * @hw: pointer to the HW structure
252 *
Bruce Allanfe401672009-11-20 23:26:05 +0000253 * Acquire the semaphore to access the EEPROM.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700254 **/
255static s32 e1000_acquire_nvm_80003es2lan(struct e1000_hw *hw)
256{
257 s32 ret_val;
258
259 ret_val = e1000_acquire_swfw_sync_80003es2lan(hw, E1000_SWFW_EEP_SM);
260 if (ret_val)
261 return ret_val;
262
263 ret_val = e1000e_acquire_nvm(hw);
264
265 if (ret_val)
266 e1000_release_swfw_sync_80003es2lan(hw, E1000_SWFW_EEP_SM);
267
268 return ret_val;
269}
270
271/**
272 * e1000_release_nvm_80003es2lan - Relinquish rights to access NVM
273 * @hw: pointer to the HW structure
274 *
Bruce Allanfe401672009-11-20 23:26:05 +0000275 * Release the semaphore used to access the EEPROM.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700276 **/
277static void e1000_release_nvm_80003es2lan(struct e1000_hw *hw)
278{
279 e1000e_release_nvm(hw);
280 e1000_release_swfw_sync_80003es2lan(hw, E1000_SWFW_EEP_SM);
281}
282
283/**
284 * e1000_acquire_swfw_sync_80003es2lan - Acquire SW/FW semaphore
285 * @hw: pointer to the HW structure
286 * @mask: specifies which semaphore to acquire
287 *
288 * Acquire the SW/FW semaphore to access the PHY or NVM. The mask
289 * will also specify which port we're acquiring the lock for.
290 **/
291static s32 e1000_acquire_swfw_sync_80003es2lan(struct e1000_hw *hw, u16 mask)
292{
293 u32 swfw_sync;
294 u32 swmask = mask;
295 u32 fwmask = mask << 16;
296 s32 i = 0;
Bruce Allan75eb0fa2008-11-21 16:53:51 -0800297 s32 timeout = 50;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700298
299 while (i < timeout) {
300 if (e1000e_get_hw_semaphore(hw))
301 return -E1000_ERR_SWFW_SYNC;
302
303 swfw_sync = er32(SW_FW_SYNC);
304 if (!(swfw_sync & (fwmask | swmask)))
305 break;
306
Bruce Allane921eb12012-11-28 09:28:37 +0000307 /* Firmware currently using resource (fwmask)
Bruce Allanad680762008-03-28 09:15:03 -0700308 * or other software thread using resource (swmask)
309 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700310 e1000e_put_hw_semaphore(hw);
311 mdelay(5);
312 i++;
313 }
314
315 if (i == timeout) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000316 e_dbg("Driver can't access resource, SW_FW_SYNC timeout.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700317 return -E1000_ERR_SWFW_SYNC;
318 }
319
320 swfw_sync |= swmask;
321 ew32(SW_FW_SYNC, swfw_sync);
322
323 e1000e_put_hw_semaphore(hw);
324
325 return 0;
326}
327
328/**
329 * e1000_release_swfw_sync_80003es2lan - Release SW/FW semaphore
330 * @hw: pointer to the HW structure
331 * @mask: specifies which semaphore to acquire
332 *
333 * Release the SW/FW semaphore used to access the PHY or NVM. The mask
334 * will also specify which port we're releasing the lock for.
335 **/
336static void e1000_release_swfw_sync_80003es2lan(struct e1000_hw *hw, u16 mask)
337{
338 u32 swfw_sync;
339
Bruce Allan184125a2010-12-11 05:53:37 +0000340 while (e1000e_get_hw_semaphore(hw) != 0)
341 ; /* Empty */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700342
343 swfw_sync = er32(SW_FW_SYNC);
344 swfw_sync &= ~mask;
345 ew32(SW_FW_SYNC, swfw_sync);
346
347 e1000e_put_hw_semaphore(hw);
348}
349
350/**
351 * e1000_read_phy_reg_gg82563_80003es2lan - Read GG82563 PHY register
352 * @hw: pointer to the HW structure
353 * @offset: offset of the register to read
354 * @data: pointer to the data returned from the operation
355 *
Bruce Allanfe401672009-11-20 23:26:05 +0000356 * Read the GG82563 PHY register.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700357 **/
358static s32 e1000_read_phy_reg_gg82563_80003es2lan(struct e1000_hw *hw,
359 u32 offset, u16 *data)
360{
361 s32 ret_val;
362 u32 page_select;
363 u16 temp;
364
David Graham2d9498f2008-04-23 11:09:14 -0700365 ret_val = e1000_acquire_phy_80003es2lan(hw);
366 if (ret_val)
367 return ret_val;
368
Auke Kokbc7f75f2007-09-17 12:30:59 -0700369 /* Select Configuration Page */
David Graham2d9498f2008-04-23 11:09:14 -0700370 if ((offset & MAX_PHY_REG_ADDRESS) < GG82563_MIN_ALT_REG) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700371 page_select = GG82563_PHY_PAGE_SELECT;
David Graham2d9498f2008-04-23 11:09:14 -0700372 } else {
Bruce Allane921eb12012-11-28 09:28:37 +0000373 /* Use Alternative Page Select register to access
Auke Kokbc7f75f2007-09-17 12:30:59 -0700374 * registers 30 and 31
375 */
376 page_select = GG82563_PHY_PAGE_SELECT_ALT;
David Graham2d9498f2008-04-23 11:09:14 -0700377 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700378
379 temp = (u16)((u16)offset >> GG82563_PAGE_SHIFT);
David Graham2d9498f2008-04-23 11:09:14 -0700380 ret_val = e1000e_write_phy_reg_mdic(hw, page_select, temp);
381 if (ret_val) {
382 e1000_release_phy_80003es2lan(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700383 return ret_val;
David Graham2d9498f2008-04-23 11:09:14 -0700384 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700385
Bruce Allanb4d8e212012-02-17 03:17:55 +0000386 if (hw->dev_spec.e80003es2lan.mdic_wa_enable) {
Bruce Allane921eb12012-11-28 09:28:37 +0000387 /* The "ready" bit in the MDIC register may be incorrectly set
Bruce Allan3421eec2009-12-08 07:28:20 +0000388 * before the device has completed the "Page Select" MDI
389 * transaction. So we wait 200us after each MDI command...
390 */
Bruce Allance43a212013-02-20 04:06:32 +0000391 usleep_range(200, 400);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700392
Bruce Allan3421eec2009-12-08 07:28:20 +0000393 /* ...and verify the command was successful. */
394 ret_val = e1000e_read_phy_reg_mdic(hw, page_select, &temp);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700395
Bruce Allan3421eec2009-12-08 07:28:20 +0000396 if (((u16)offset >> GG82563_PAGE_SHIFT) != temp) {
Bruce Allan3421eec2009-12-08 07:28:20 +0000397 e1000_release_phy_80003es2lan(hw);
Bruce Allan7eb61d82012-02-08 02:55:03 +0000398 return -E1000_ERR_PHY;
Bruce Allan3421eec2009-12-08 07:28:20 +0000399 }
400
Bruce Allance43a212013-02-20 04:06:32 +0000401 usleep_range(200, 400);
Bruce Allan3421eec2009-12-08 07:28:20 +0000402
403 ret_val = e1000e_read_phy_reg_mdic(hw,
Bruce Allanf0ff4392013-02-20 04:05:39 +0000404 MAX_PHY_REG_ADDRESS & offset,
405 data);
Bruce Allan3421eec2009-12-08 07:28:20 +0000406
Bruce Allance43a212013-02-20 04:06:32 +0000407 usleep_range(200, 400);
Bruce Allan3421eec2009-12-08 07:28:20 +0000408 } else {
409 ret_val = e1000e_read_phy_reg_mdic(hw,
Bruce Allanf0ff4392013-02-20 04:05:39 +0000410 MAX_PHY_REG_ADDRESS & offset,
411 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700412 }
413
David Graham2d9498f2008-04-23 11:09:14 -0700414 e1000_release_phy_80003es2lan(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700415
416 return ret_val;
417}
418
419/**
420 * e1000_write_phy_reg_gg82563_80003es2lan - Write GG82563 PHY register
421 * @hw: pointer to the HW structure
422 * @offset: offset of the register to read
423 * @data: value to write to the register
424 *
Bruce Allanfe401672009-11-20 23:26:05 +0000425 * Write to the GG82563 PHY register.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700426 **/
427static s32 e1000_write_phy_reg_gg82563_80003es2lan(struct e1000_hw *hw,
428 u32 offset, u16 data)
429{
430 s32 ret_val;
431 u32 page_select;
432 u16 temp;
433
David Graham2d9498f2008-04-23 11:09:14 -0700434 ret_val = e1000_acquire_phy_80003es2lan(hw);
435 if (ret_val)
436 return ret_val;
437
Auke Kokbc7f75f2007-09-17 12:30:59 -0700438 /* Select Configuration Page */
David Graham2d9498f2008-04-23 11:09:14 -0700439 if ((offset & MAX_PHY_REG_ADDRESS) < GG82563_MIN_ALT_REG) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700440 page_select = GG82563_PHY_PAGE_SELECT;
David Graham2d9498f2008-04-23 11:09:14 -0700441 } else {
Bruce Allane921eb12012-11-28 09:28:37 +0000442 /* Use Alternative Page Select register to access
Auke Kokbc7f75f2007-09-17 12:30:59 -0700443 * registers 30 and 31
444 */
445 page_select = GG82563_PHY_PAGE_SELECT_ALT;
David Graham2d9498f2008-04-23 11:09:14 -0700446 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700447
448 temp = (u16)((u16)offset >> GG82563_PAGE_SHIFT);
David Graham2d9498f2008-04-23 11:09:14 -0700449 ret_val = e1000e_write_phy_reg_mdic(hw, page_select, temp);
450 if (ret_val) {
451 e1000_release_phy_80003es2lan(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700452 return ret_val;
David Graham2d9498f2008-04-23 11:09:14 -0700453 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700454
Bruce Allanb4d8e212012-02-17 03:17:55 +0000455 if (hw->dev_spec.e80003es2lan.mdic_wa_enable) {
Bruce Allane921eb12012-11-28 09:28:37 +0000456 /* The "ready" bit in the MDIC register may be incorrectly set
Bruce Allan3421eec2009-12-08 07:28:20 +0000457 * before the device has completed the "Page Select" MDI
458 * transaction. So we wait 200us after each MDI command...
459 */
Bruce Allance43a212013-02-20 04:06:32 +0000460 usleep_range(200, 400);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700461
Bruce Allan3421eec2009-12-08 07:28:20 +0000462 /* ...and verify the command was successful. */
463 ret_val = e1000e_read_phy_reg_mdic(hw, page_select, &temp);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700464
Bruce Allan3421eec2009-12-08 07:28:20 +0000465 if (((u16)offset >> GG82563_PAGE_SHIFT) != temp) {
466 e1000_release_phy_80003es2lan(hw);
467 return -E1000_ERR_PHY;
468 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700469
Bruce Allance43a212013-02-20 04:06:32 +0000470 usleep_range(200, 400);
Bruce Allan3421eec2009-12-08 07:28:20 +0000471
472 ret_val = e1000e_write_phy_reg_mdic(hw,
Bruce Allanf0ff4392013-02-20 04:05:39 +0000473 MAX_PHY_REG_ADDRESS &
474 offset, data);
Bruce Allan3421eec2009-12-08 07:28:20 +0000475
Bruce Allance43a212013-02-20 04:06:32 +0000476 usleep_range(200, 400);
Bruce Allan3421eec2009-12-08 07:28:20 +0000477 } else {
478 ret_val = e1000e_write_phy_reg_mdic(hw,
Bruce Allanf0ff4392013-02-20 04:05:39 +0000479 MAX_PHY_REG_ADDRESS &
480 offset, data);
David Graham2d9498f2008-04-23 11:09:14 -0700481 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700482
David Graham2d9498f2008-04-23 11:09:14 -0700483 e1000_release_phy_80003es2lan(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700484
485 return ret_val;
486}
487
488/**
489 * e1000_write_nvm_80003es2lan - Write to ESB2 NVM
490 * @hw: pointer to the HW structure
491 * @offset: offset of the register to read
492 * @words: number of words to write
493 * @data: buffer of data to write to the NVM
494 *
Bruce Allanfe401672009-11-20 23:26:05 +0000495 * Write "words" of data to the ESB2 NVM.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700496 **/
497static s32 e1000_write_nvm_80003es2lan(struct e1000_hw *hw, u16 offset,
498 u16 words, u16 *data)
499{
500 return e1000e_write_nvm_spi(hw, offset, words, data);
501}
502
503/**
504 * e1000_get_cfg_done_80003es2lan - Wait for configuration to complete
505 * @hw: pointer to the HW structure
506 *
507 * Wait a specific amount of time for manageability processes to complete.
508 * This is a function pointer entry point called by the phy module.
509 **/
510static s32 e1000_get_cfg_done_80003es2lan(struct e1000_hw *hw)
511{
512 s32 timeout = PHY_CFG_TIMEOUT;
513 u32 mask = E1000_NVM_CFG_DONE_PORT_0;
514
515 if (hw->bus.func == 1)
516 mask = E1000_NVM_CFG_DONE_PORT_1;
517
518 while (timeout) {
519 if (er32(EEMNGCTL) & mask)
520 break;
Bruce Allan1bba4382011-03-19 00:27:20 +0000521 usleep_range(1000, 2000);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700522 timeout--;
523 }
524 if (!timeout) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000525 e_dbg("MNG configuration cycle has not completed.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700526 return -E1000_ERR_RESET;
527 }
528
529 return 0;
530}
531
532/**
533 * e1000_phy_force_speed_duplex_80003es2lan - Force PHY speed and duplex
534 * @hw: pointer to the HW structure
535 *
536 * Force the speed and duplex settings onto the PHY. This is a
537 * function pointer entry point called by the phy module.
538 **/
539static s32 e1000_phy_force_speed_duplex_80003es2lan(struct e1000_hw *hw)
540{
541 s32 ret_val;
542 u16 phy_data;
543 bool link;
544
Bruce Allane921eb12012-11-28 09:28:37 +0000545 /* Clear Auto-Crossover to force MDI manually. M88E1000 requires MDI
Auke Kokbc7f75f2007-09-17 12:30:59 -0700546 * forced whenever speed and duplex are forced.
547 */
548 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
549 if (ret_val)
550 return ret_val;
551
552 phy_data &= ~GG82563_PSCR_CROSSOVER_MODE_AUTO;
553 ret_val = e1e_wphy(hw, GG82563_PHY_SPEC_CTRL, phy_data);
554 if (ret_val)
555 return ret_val;
556
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000557 e_dbg("GG82563 PSCR: %X\n", phy_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700558
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000559 ret_val = e1e_rphy(hw, MII_BMCR, &phy_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700560 if (ret_val)
561 return ret_val;
562
563 e1000e_phy_force_speed_duplex_setup(hw, &phy_data);
564
565 /* Reset the phy to commit changes. */
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000566 phy_data |= BMCR_RESET;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700567
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000568 ret_val = e1e_wphy(hw, MII_BMCR, phy_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700569 if (ret_val)
570 return ret_val;
571
572 udelay(1);
573
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700574 if (hw->phy.autoneg_wait_to_complete) {
Bruce Allan434f1392011-12-16 00:46:54 +0000575 e_dbg("Waiting for forced speed/duplex link on GG82563 phy.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700576
577 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
Bruce Allan17e813e2013-02-20 04:06:01 +0000578 100000, &link);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700579 if (ret_val)
580 return ret_val;
581
582 if (!link) {
Bruce Allane921eb12012-11-28 09:28:37 +0000583 /* We didn't get link.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700584 * Reset the DSP and cross our fingers.
585 */
586 ret_val = e1000e_phy_reset_dsp(hw);
587 if (ret_val)
588 return ret_val;
589 }
590
591 /* Try once more */
592 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
Bruce Allan17e813e2013-02-20 04:06:01 +0000593 100000, &link);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700594 if (ret_val)
595 return ret_val;
596 }
597
598 ret_val = e1e_rphy(hw, GG82563_PHY_MAC_SPEC_CTRL, &phy_data);
599 if (ret_val)
600 return ret_val;
601
Bruce Allane921eb12012-11-28 09:28:37 +0000602 /* Resetting the phy means we need to verify the TX_CLK corresponds
Auke Kokbc7f75f2007-09-17 12:30:59 -0700603 * to the link speed. 10Mbps -> 2.5MHz, else 25MHz.
604 */
605 phy_data &= ~GG82563_MSCR_TX_CLK_MASK;
606 if (hw->mac.forced_speed_duplex & E1000_ALL_10_SPEED)
607 phy_data |= GG82563_MSCR_TX_CLK_10MBPS_2_5;
608 else
609 phy_data |= GG82563_MSCR_TX_CLK_100MBPS_25;
610
Bruce Allane921eb12012-11-28 09:28:37 +0000611 /* In addition, we must re-enable CRS on Tx for both half and full
Auke Kokbc7f75f2007-09-17 12:30:59 -0700612 * duplex.
613 */
614 phy_data |= GG82563_MSCR_ASSERT_CRS_ON_TX;
615 ret_val = e1e_wphy(hw, GG82563_PHY_MAC_SPEC_CTRL, phy_data);
616
617 return ret_val;
618}
619
620/**
621 * e1000_get_cable_length_80003es2lan - Set approximate cable length
622 * @hw: pointer to the HW structure
623 *
624 * Find the approximate cable length as measured by the GG82563 PHY.
625 * This is a function pointer entry point called by the phy module.
626 **/
627static s32 e1000_get_cable_length_80003es2lan(struct e1000_hw *hw)
628{
629 struct e1000_phy_info *phy = &hw->phy;
Bruce Allan70806a72013-01-05 05:08:37 +0000630 s32 ret_val;
Bruce Allana708dd82009-11-20 23:28:37 +0000631 u16 phy_data, index;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700632
633 ret_val = e1e_rphy(hw, GG82563_PHY_DSP_DISTANCE, &phy_data);
634 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +0000635 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700636
637 index = phy_data & GG82563_DSPD_CABLE_LENGTH;
Bruce Allaneb656d42009-12-01 15:47:02 +0000638
Bruce Allan5015e532012-02-08 02:55:56 +0000639 if (index >= GG82563_CABLE_LENGTH_TABLE_SIZE - 5)
640 return -E1000_ERR_PHY;
Bruce Allaneb656d42009-12-01 15:47:02 +0000641
Auke Kokbc7f75f2007-09-17 12:30:59 -0700642 phy->min_cable_length = e1000_gg82563_cable_length_table[index];
Bruce Allaneb656d42009-12-01 15:47:02 +0000643 phy->max_cable_length = e1000_gg82563_cable_length_table[index + 5];
Auke Kokbc7f75f2007-09-17 12:30:59 -0700644
645 phy->cable_length = (phy->min_cable_length + phy->max_cable_length) / 2;
646
Bruce Allan5015e532012-02-08 02:55:56 +0000647 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700648}
649
650/**
651 * e1000_get_link_up_info_80003es2lan - Report speed and duplex
652 * @hw: pointer to the HW structure
653 * @speed: pointer to speed buffer
654 * @duplex: pointer to duplex buffer
655 *
656 * Retrieve the current speed and duplex configuration.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700657 **/
658static s32 e1000_get_link_up_info_80003es2lan(struct e1000_hw *hw, u16 *speed,
659 u16 *duplex)
660{
661 s32 ret_val;
662
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700663 if (hw->phy.media_type == e1000_media_type_copper) {
Bruce Allan17e813e2013-02-20 04:06:01 +0000664 ret_val = e1000e_get_speed_and_duplex_copper(hw, speed, duplex);
Bruce Allan75eb0fa2008-11-21 16:53:51 -0800665 hw->phy.ops.cfg_on_link_up(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700666 } else {
667 ret_val = e1000e_get_speed_and_duplex_fiber_serdes(hw,
Bruce Allan17e813e2013-02-20 04:06:01 +0000668 speed,
669 duplex);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700670 }
671
672 return ret_val;
673}
674
675/**
676 * e1000_reset_hw_80003es2lan - Reset the ESB2 controller
677 * @hw: pointer to the HW structure
678 *
679 * Perform a global reset to the ESB2 controller.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700680 **/
681static s32 e1000_reset_hw_80003es2lan(struct e1000_hw *hw)
682{
Bruce Allandd93f952011-01-06 14:29:48 +0000683 u32 ctrl;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700684 s32 ret_val;
Matthew Vick1c1093a2012-03-16 09:02:58 +0000685 u16 kum_reg_data;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700686
Bruce Allane921eb12012-11-28 09:28:37 +0000687 /* Prevent the PCI-E bus from sticking if there is no TLP connection
Auke Kokbc7f75f2007-09-17 12:30:59 -0700688 * on the last TLP read/write transaction when MAC is reset.
689 */
690 ret_val = e1000e_disable_pcie_master(hw);
691 if (ret_val)
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000692 e_dbg("PCI-E Master disable polling has failed.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700693
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000694 e_dbg("Masking off all interrupts\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700695 ew32(IMC, 0xffffffff);
696
697 ew32(RCTL, 0);
698 ew32(TCTL, E1000_TCTL_PSP);
699 e1e_flush();
700
Bruce Allan1bba4382011-03-19 00:27:20 +0000701 usleep_range(10000, 20000);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700702
703 ctrl = er32(CTRL);
704
Bruce Allan75eb0fa2008-11-21 16:53:51 -0800705 ret_val = e1000_acquire_phy_80003es2lan(hw);
Bruce Allan7dbbe5d2013-01-05 05:08:31 +0000706 if (ret_val)
707 return ret_val;
708
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000709 e_dbg("Issuing a global reset to MAC\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700710 ew32(CTRL, ctrl | E1000_CTRL_RST);
Bruce Allan75eb0fa2008-11-21 16:53:51 -0800711 e1000_release_phy_80003es2lan(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700712
Matthew Vick1c1093a2012-03-16 09:02:58 +0000713 /* Disable IBIST slave mode (far-end loopback) */
David Ertman918a4302013-12-14 07:30:39 +0000714 ret_val =
715 e1000_read_kmrn_reg_80003es2lan(hw, E1000_KMRNCTRLSTA_INBAND_PARAM,
716 &kum_reg_data);
717 if (ret_val)
718 return ret_val;
Matthew Vick1c1093a2012-03-16 09:02:58 +0000719 kum_reg_data |= E1000_KMRNCTRLSTA_IBIST_DISABLE;
720 e1000_write_kmrn_reg_80003es2lan(hw, E1000_KMRNCTRLSTA_INBAND_PARAM,
721 kum_reg_data);
722
Auke Kokbc7f75f2007-09-17 12:30:59 -0700723 ret_val = e1000e_get_auto_rd_done(hw);
724 if (ret_val)
725 /* We don't want to continue accessing MAC registers. */
726 return ret_val;
727
728 /* Clear any pending interrupt events. */
729 ew32(IMC, 0xffffffff);
Bruce Allandd93f952011-01-06 14:29:48 +0000730 er32(ICR);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700731
Bruce Allan7eb61d82012-02-08 02:55:03 +0000732 return e1000_check_alt_mac_addr_generic(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700733}
734
735/**
736 * e1000_init_hw_80003es2lan - Initialize the ESB2 controller
737 * @hw: pointer to the HW structure
738 *
739 * Initialize the hw bits, LED, VFTA, MTA, link and hw counters.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700740 **/
741static s32 e1000_init_hw_80003es2lan(struct e1000_hw *hw)
742{
743 struct e1000_mac_info *mac = &hw->mac;
744 u32 reg_data;
745 s32 ret_val;
Bruce Alland9b24132011-05-13 07:19:42 +0000746 u16 kum_reg_data;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700747 u16 i;
748
749 e1000_initialize_hw_bits_80003es2lan(hw);
750
751 /* Initialize identification LED */
Bruce Alland1964eb2012-02-22 09:02:21 +0000752 ret_val = mac->ops.id_led_init(hw);
Bruce Allan33550ce2013-02-20 04:06:16 +0000753 /* An error is not fatal and we should not stop init due to this */
Bruce Allande39b752009-11-20 23:27:59 +0000754 if (ret_val)
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000755 e_dbg("Error initializing identification LED\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700756
757 /* Disabling VLAN filtering */
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000758 e_dbg("Initializing the IEEE VLAN\n");
Bruce Allancaaddaf2009-12-01 15:46:43 +0000759 mac->ops.clear_vfta(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700760
761 /* Setup the receive address. */
762 e1000e_init_rx_addrs(hw, mac->rar_entry_count);
763
764 /* Zero out the Multicast HASH table */
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000765 e_dbg("Zeroing the MTA\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700766 for (i = 0; i < mac->mta_reg_count; i++)
767 E1000_WRITE_REG_ARRAY(hw, E1000_MTA, i, 0);
768
769 /* Setup link and flow control */
Bruce Allan1a46b402012-02-22 09:02:26 +0000770 ret_val = mac->ops.setup_link(hw);
Bruce Allan7dbbe5d2013-01-05 05:08:31 +0000771 if (ret_val)
772 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700773
Bruce Alland9b24132011-05-13 07:19:42 +0000774 /* Disable IBIST slave mode (far-end loopback) */
775 e1000_read_kmrn_reg_80003es2lan(hw, E1000_KMRNCTRLSTA_INBAND_PARAM,
776 &kum_reg_data);
777 kum_reg_data |= E1000_KMRNCTRLSTA_IBIST_DISABLE;
778 e1000_write_kmrn_reg_80003es2lan(hw, E1000_KMRNCTRLSTA_INBAND_PARAM,
779 kum_reg_data);
780
Auke Kokbc7f75f2007-09-17 12:30:59 -0700781 /* Set the transmit descriptor write-back policy */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700782 reg_data = er32(TXDCTL(0));
Bruce Allanf0ff4392013-02-20 04:05:39 +0000783 reg_data = ((reg_data & ~E1000_TXDCTL_WTHRESH) |
784 E1000_TXDCTL_FULL_TX_DESC_WB | E1000_TXDCTL_COUNT_DESC);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700785 ew32(TXDCTL(0), reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700786
787 /* ...for both queues. */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700788 reg_data = er32(TXDCTL(1));
Bruce Allanf0ff4392013-02-20 04:05:39 +0000789 reg_data = ((reg_data & ~E1000_TXDCTL_WTHRESH) |
790 E1000_TXDCTL_FULL_TX_DESC_WB | E1000_TXDCTL_COUNT_DESC);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700791 ew32(TXDCTL(1), reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700792
793 /* Enable retransmit on late collisions */
794 reg_data = er32(TCTL);
795 reg_data |= E1000_TCTL_RTLC;
796 ew32(TCTL, reg_data);
797
798 /* Configure Gigabit Carry Extend Padding */
799 reg_data = er32(TCTL_EXT);
800 reg_data &= ~E1000_TCTL_EXT_GCEX_MASK;
801 reg_data |= DEFAULT_TCTL_EXT_GCEX_80003ES2LAN;
802 ew32(TCTL_EXT, reg_data);
803
804 /* Configure Transmit Inter-Packet Gap */
805 reg_data = er32(TIPG);
806 reg_data &= ~E1000_TIPG_IPGT_MASK;
807 reg_data |= DEFAULT_TIPG_IPGT_1000_80003ES2LAN;
808 ew32(TIPG, reg_data);
809
810 reg_data = E1000_READ_REG_ARRAY(hw, E1000_FFLT, 0x0001);
811 reg_data &= ~0x00100000;
812 E1000_WRITE_REG_ARRAY(hw, E1000_FFLT, 0x0001, reg_data);
813
Bruce Allan3421eec2009-12-08 07:28:20 +0000814 /* default to true to enable the MDIC W/A */
815 hw->dev_spec.e80003es2lan.mdic_wa_enable = true;
816
Bruce Allanf0ff4392013-02-20 04:05:39 +0000817 ret_val =
818 e1000_read_kmrn_reg_80003es2lan(hw, E1000_KMRNCTRLSTA_OFFSET >>
819 E1000_KMRNCTRLSTA_OFFSET_SHIFT, &i);
Bruce Allan3421eec2009-12-08 07:28:20 +0000820 if (!ret_val) {
821 if ((i & E1000_KMRNCTRLSTA_OPMODE_MASK) ==
Bruce Allan17e813e2013-02-20 04:06:01 +0000822 E1000_KMRNCTRLSTA_OPMODE_INBAND_MDIO)
Bruce Allan3421eec2009-12-08 07:28:20 +0000823 hw->dev_spec.e80003es2lan.mdic_wa_enable = false;
824 }
825
Bruce Allane921eb12012-11-28 09:28:37 +0000826 /* Clear all of the statistics registers (clear on read). It is
Auke Kokbc7f75f2007-09-17 12:30:59 -0700827 * important that we do this after we have tried to establish link
828 * because the symbol error count will increment wildly if there
829 * is no link.
830 */
831 e1000_clear_hw_cntrs_80003es2lan(hw);
832
833 return ret_val;
834}
835
836/**
837 * e1000_initialize_hw_bits_80003es2lan - Init hw bits of ESB2
838 * @hw: pointer to the HW structure
839 *
840 * Initializes required hardware-dependent bits needed for normal operation.
841 **/
842static void e1000_initialize_hw_bits_80003es2lan(struct e1000_hw *hw)
843{
844 u32 reg;
845
846 /* Transmit Descriptor Control 0 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700847 reg = er32(TXDCTL(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -0700848 reg |= (1 << 22);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700849 ew32(TXDCTL(0), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700850
851 /* Transmit Descriptor Control 1 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700852 reg = er32(TXDCTL(1));
Auke Kokbc7f75f2007-09-17 12:30:59 -0700853 reg |= (1 << 22);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700854 ew32(TXDCTL(1), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700855
856 /* Transmit Arbitration Control 0 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700857 reg = er32(TARC(0));
Bruce Allane80bd1d2013-05-01 01:19:46 +0000858 reg &= ~(0xF << 27); /* 30:27 */
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700859 if (hw->phy.media_type != e1000_media_type_copper)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700860 reg &= ~(1 << 20);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700861 ew32(TARC(0), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700862
863 /* Transmit Arbitration Control 1 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700864 reg = er32(TARC(1));
Auke Kokbc7f75f2007-09-17 12:30:59 -0700865 if (er32(TCTL) & E1000_TCTL_MULR)
866 reg &= ~(1 << 28);
867 else
868 reg |= (1 << 28);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700869 ew32(TARC(1), reg);
Matthew Vickf6bd5572012-04-25 08:01:05 +0000870
Bruce Allane921eb12012-11-28 09:28:37 +0000871 /* Disable IPv6 extension header parsing because some malformed
Matthew Vickf6bd5572012-04-25 08:01:05 +0000872 * IPv6 headers can hang the Rx.
873 */
874 reg = er32(RFCTL);
875 reg |= (E1000_RFCTL_IPV6_EX_DIS | E1000_RFCTL_NEW_IPV6_EXT_DIS);
876 ew32(RFCTL, reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700877}
878
879/**
880 * e1000_copper_link_setup_gg82563_80003es2lan - Configure GG82563 Link
881 * @hw: pointer to the HW structure
882 *
883 * Setup some GG82563 PHY registers for obtaining link
884 **/
885static s32 e1000_copper_link_setup_gg82563_80003es2lan(struct e1000_hw *hw)
886{
887 struct e1000_phy_info *phy = &hw->phy;
888 s32 ret_val;
Bruce Allan17e813e2013-02-20 04:06:01 +0000889 u32 reg;
Bruce Allan75eb0fa2008-11-21 16:53:51 -0800890 u16 data;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700891
David Graham2d9498f2008-04-23 11:09:14 -0700892 ret_val = e1e_rphy(hw, GG82563_PHY_MAC_SPEC_CTRL, &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700893 if (ret_val)
894 return ret_val;
895
896 data |= GG82563_MSCR_ASSERT_CRS_ON_TX;
897 /* Use 25MHz for both link down and 1000Base-T for Tx clock. */
898 data |= GG82563_MSCR_TX_CLK_1000MBPS_25;
899
David Graham2d9498f2008-04-23 11:09:14 -0700900 ret_val = e1e_wphy(hw, GG82563_PHY_MAC_SPEC_CTRL, data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700901 if (ret_val)
902 return ret_val;
903
Bruce Allane921eb12012-11-28 09:28:37 +0000904 /* Options:
Auke Kokbc7f75f2007-09-17 12:30:59 -0700905 * MDI/MDI-X = 0 (default)
906 * 0 - Auto for all speeds
907 * 1 - MDI mode
908 * 2 - MDI-X mode
909 * 3 - Auto for 1000Base-T only (MDI-X for 10/100Base-T modes)
910 */
911 ret_val = e1e_rphy(hw, GG82563_PHY_SPEC_CTRL, &data);
912 if (ret_val)
913 return ret_val;
914
915 data &= ~GG82563_PSCR_CROSSOVER_MODE_MASK;
916
917 switch (phy->mdix) {
918 case 1:
919 data |= GG82563_PSCR_CROSSOVER_MODE_MDI;
920 break;
921 case 2:
922 data |= GG82563_PSCR_CROSSOVER_MODE_MDIX;
923 break;
924 case 0:
925 default:
926 data |= GG82563_PSCR_CROSSOVER_MODE_AUTO;
927 break;
928 }
929
Bruce Allane921eb12012-11-28 09:28:37 +0000930 /* Options:
Auke Kokbc7f75f2007-09-17 12:30:59 -0700931 * disable_polarity_correction = 0 (default)
932 * Automatic Correction for Reversed Cable Polarity
933 * 0 - Disabled
934 * 1 - Enabled
935 */
936 data &= ~GG82563_PSCR_POLARITY_REVERSAL_DISABLE;
937 if (phy->disable_polarity_correction)
938 data |= GG82563_PSCR_POLARITY_REVERSAL_DISABLE;
939
940 ret_val = e1e_wphy(hw, GG82563_PHY_SPEC_CTRL, data);
941 if (ret_val)
942 return ret_val;
943
944 /* SW Reset the PHY so all changes take effect */
Bruce Allan6b598e12013-01-23 06:50:05 +0000945 ret_val = hw->phy.ops.commit(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700946 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000947 e_dbg("Error Resetting the PHY\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700948 return ret_val;
949 }
950
Bruce Allanad680762008-03-28 09:15:03 -0700951 /* Bypass Rx and Tx FIFO's */
Bruce Allan17e813e2013-02-20 04:06:01 +0000952 reg = E1000_KMRNCTRLSTA_OFFSET_FIFO_CTRL;
953 data = (E1000_KMRNCTRLSTA_FIFO_CTRL_RX_BYPASS |
954 E1000_KMRNCTRLSTA_FIFO_CTRL_TX_BYPASS);
955 ret_val = e1000_write_kmrn_reg_80003es2lan(hw, reg, data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700956 if (ret_val)
957 return ret_val;
958
Bruce Allan17e813e2013-02-20 04:06:01 +0000959 reg = E1000_KMRNCTRLSTA_OFFSET_MAC2PHY_OPMODE;
960 ret_val = e1000_read_kmrn_reg_80003es2lan(hw, reg, &data);
David Graham2d9498f2008-04-23 11:09:14 -0700961 if (ret_val)
962 return ret_val;
963 data |= E1000_KMRNCTRLSTA_OPMODE_E_IDLE;
Bruce Allan17e813e2013-02-20 04:06:01 +0000964 ret_val = e1000_write_kmrn_reg_80003es2lan(hw, reg, data);
David Graham2d9498f2008-04-23 11:09:14 -0700965 if (ret_val)
966 return ret_val;
967
Auke Kokbc7f75f2007-09-17 12:30:59 -0700968 ret_val = e1e_rphy(hw, GG82563_PHY_SPEC_CTRL_2, &data);
969 if (ret_val)
970 return ret_val;
971
972 data &= ~GG82563_PSCR2_REVERSE_AUTO_NEG;
973 ret_val = e1e_wphy(hw, GG82563_PHY_SPEC_CTRL_2, data);
974 if (ret_val)
975 return ret_val;
976
Bruce Allan17e813e2013-02-20 04:06:01 +0000977 reg = er32(CTRL_EXT);
978 reg &= ~E1000_CTRL_EXT_LINK_MODE_MASK;
979 ew32(CTRL_EXT, reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700980
981 ret_val = e1e_rphy(hw, GG82563_PHY_PWR_MGMT_CTRL, &data);
982 if (ret_val)
983 return ret_val;
984
Bruce Allane921eb12012-11-28 09:28:37 +0000985 /* Do not init these registers when the HW is in IAMT mode, since the
Auke Kokbc7f75f2007-09-17 12:30:59 -0700986 * firmware will have already initialized them. We only initialize
987 * them if the HW is not in IAMT mode.
988 */
Bruce Allan48768322012-02-22 09:02:32 +0000989 if (!hw->mac.ops.check_mng_mode(hw)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700990 /* Enable Electrical Idle on the PHY */
991 data |= GG82563_PMCR_ENABLE_ELECTRICAL_IDLE;
992 ret_val = e1e_wphy(hw, GG82563_PHY_PWR_MGMT_CTRL, data);
993 if (ret_val)
994 return ret_val;
995
Bruce Allan75eb0fa2008-11-21 16:53:51 -0800996 ret_val = e1e_rphy(hw, GG82563_PHY_KMRN_MODE_CTRL, &data);
997 if (ret_val)
998 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700999
1000 data &= ~GG82563_KMCR_PASS_FALSE_CARRIER;
1001 ret_val = e1e_wphy(hw, GG82563_PHY_KMRN_MODE_CTRL, data);
1002 if (ret_val)
1003 return ret_val;
1004 }
1005
Bruce Allane921eb12012-11-28 09:28:37 +00001006 /* Workaround: Disable padding in Kumeran interface in the MAC
Auke Kokbc7f75f2007-09-17 12:30:59 -07001007 * and in the PHY to avoid CRC errors.
1008 */
1009 ret_val = e1e_rphy(hw, GG82563_PHY_INBAND_CTRL, &data);
1010 if (ret_val)
1011 return ret_val;
1012
1013 data |= GG82563_ICR_DIS_PADDING;
1014 ret_val = e1e_wphy(hw, GG82563_PHY_INBAND_CTRL, data);
1015 if (ret_val)
1016 return ret_val;
1017
1018 return 0;
1019}
1020
1021/**
1022 * e1000_setup_copper_link_80003es2lan - Setup Copper Link for ESB2
1023 * @hw: pointer to the HW structure
1024 *
1025 * Essentially a wrapper for setting up all things "copper" related.
1026 * This is a function pointer entry point called by the mac module.
1027 **/
1028static s32 e1000_setup_copper_link_80003es2lan(struct e1000_hw *hw)
1029{
1030 u32 ctrl;
1031 s32 ret_val;
1032 u16 reg_data;
1033
1034 ctrl = er32(CTRL);
1035 ctrl |= E1000_CTRL_SLU;
1036 ctrl &= ~(E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX);
1037 ew32(CTRL, ctrl);
1038
Bruce Allane921eb12012-11-28 09:28:37 +00001039 /* Set the mac to wait the maximum time between each
Auke Kokbc7f75f2007-09-17 12:30:59 -07001040 * iteration and increase the max iterations when
Bruce Allanad680762008-03-28 09:15:03 -07001041 * polling the phy; this fixes erroneous timeouts at 10Mbps.
1042 */
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001043 ret_val = e1000_write_kmrn_reg_80003es2lan(hw, GG82563_REG(0x34, 4),
Bruce Allanf0ff4392013-02-20 04:05:39 +00001044 0xFFFF);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001045 if (ret_val)
1046 return ret_val;
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001047 ret_val = e1000_read_kmrn_reg_80003es2lan(hw, GG82563_REG(0x34, 9),
Bruce Allanf0ff4392013-02-20 04:05:39 +00001048 &reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001049 if (ret_val)
1050 return ret_val;
1051 reg_data |= 0x3F;
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001052 ret_val = e1000_write_kmrn_reg_80003es2lan(hw, GG82563_REG(0x34, 9),
Bruce Allanf0ff4392013-02-20 04:05:39 +00001053 reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001054 if (ret_val)
1055 return ret_val;
Bruce Allanf0ff4392013-02-20 04:05:39 +00001056 ret_val =
1057 e1000_read_kmrn_reg_80003es2lan(hw,
1058 E1000_KMRNCTRLSTA_OFFSET_INB_CTRL,
1059 &reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001060 if (ret_val)
1061 return ret_val;
1062 reg_data |= E1000_KMRNCTRLSTA_INB_CTRL_DIS_PADDING;
Bruce Allanf0ff4392013-02-20 04:05:39 +00001063 ret_val =
1064 e1000_write_kmrn_reg_80003es2lan(hw,
1065 E1000_KMRNCTRLSTA_OFFSET_INB_CTRL,
1066 reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001067 if (ret_val)
1068 return ret_val;
1069
1070 ret_val = e1000_copper_link_setup_gg82563_80003es2lan(hw);
1071 if (ret_val)
1072 return ret_val;
1073
Bruce Allan8649f432012-02-08 02:54:58 +00001074 return e1000e_setup_copper_link(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001075}
1076
1077/**
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001078 * e1000_cfg_on_link_up_80003es2lan - es2 link configuration after link-up
1079 * @hw: pointer to the HW structure
1080 * @duplex: current duplex setting
1081 *
1082 * Configure the KMRN interface by applying last minute quirks for
1083 * 10/100 operation.
1084 **/
1085static s32 e1000_cfg_on_link_up_80003es2lan(struct e1000_hw *hw)
1086{
1087 s32 ret_val = 0;
1088 u16 speed;
1089 u16 duplex;
1090
1091 if (hw->phy.media_type == e1000_media_type_copper) {
1092 ret_val = e1000e_get_speed_and_duplex_copper(hw, &speed,
Bruce Allanf0ff4392013-02-20 04:05:39 +00001093 &duplex);
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001094 if (ret_val)
1095 return ret_val;
1096
1097 if (speed == SPEED_1000)
1098 ret_val = e1000_cfg_kmrn_1000_80003es2lan(hw);
1099 else
1100 ret_val = e1000_cfg_kmrn_10_100_80003es2lan(hw, duplex);
1101 }
1102
1103 return ret_val;
1104}
1105
1106/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001107 * e1000_cfg_kmrn_10_100_80003es2lan - Apply "quirks" for 10/100 operation
1108 * @hw: pointer to the HW structure
1109 * @duplex: current duplex setting
1110 *
1111 * Configure the KMRN interface by applying last minute quirks for
1112 * 10/100 operation.
1113 **/
1114static s32 e1000_cfg_kmrn_10_100_80003es2lan(struct e1000_hw *hw, u16 duplex)
1115{
1116 s32 ret_val;
1117 u32 tipg;
David Graham2d9498f2008-04-23 11:09:14 -07001118 u32 i = 0;
1119 u16 reg_data, reg_data2;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001120
1121 reg_data = E1000_KMRNCTRLSTA_HD_CTRL_10_100_DEFAULT;
Bruce Allanf0ff4392013-02-20 04:05:39 +00001122 ret_val =
1123 e1000_write_kmrn_reg_80003es2lan(hw,
1124 E1000_KMRNCTRLSTA_OFFSET_HD_CTRL,
1125 reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001126 if (ret_val)
1127 return ret_val;
1128
1129 /* Configure Transmit Inter-Packet Gap */
1130 tipg = er32(TIPG);
1131 tipg &= ~E1000_TIPG_IPGT_MASK;
1132 tipg |= DEFAULT_TIPG_IPGT_10_100_80003ES2LAN;
1133 ew32(TIPG, tipg);
1134
David Graham2d9498f2008-04-23 11:09:14 -07001135 do {
1136 ret_val = e1e_rphy(hw, GG82563_PHY_KMRN_MODE_CTRL, &reg_data);
1137 if (ret_val)
1138 return ret_val;
1139
1140 ret_val = e1e_rphy(hw, GG82563_PHY_KMRN_MODE_CTRL, &reg_data2);
1141 if (ret_val)
1142 return ret_val;
1143 i++;
1144 } while ((reg_data != reg_data2) && (i < GG82563_MAX_KMRN_RETRY));
Auke Kokbc7f75f2007-09-17 12:30:59 -07001145
1146 if (duplex == HALF_DUPLEX)
1147 reg_data |= GG82563_KMCR_PASS_FALSE_CARRIER;
1148 else
1149 reg_data &= ~GG82563_KMCR_PASS_FALSE_CARRIER;
1150
Bruce Allan520d6f22012-02-08 02:54:53 +00001151 return e1e_wphy(hw, GG82563_PHY_KMRN_MODE_CTRL, reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001152}
1153
1154/**
1155 * e1000_cfg_kmrn_1000_80003es2lan - Apply "quirks" for gigabit operation
1156 * @hw: pointer to the HW structure
1157 *
1158 * Configure the KMRN interface by applying last minute quirks for
1159 * gigabit operation.
1160 **/
1161static s32 e1000_cfg_kmrn_1000_80003es2lan(struct e1000_hw *hw)
1162{
1163 s32 ret_val;
David Graham2d9498f2008-04-23 11:09:14 -07001164 u16 reg_data, reg_data2;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001165 u32 tipg;
David Graham2d9498f2008-04-23 11:09:14 -07001166 u32 i = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001167
1168 reg_data = E1000_KMRNCTRLSTA_HD_CTRL_1000_DEFAULT;
Bruce Allanf0ff4392013-02-20 04:05:39 +00001169 ret_val =
1170 e1000_write_kmrn_reg_80003es2lan(hw,
1171 E1000_KMRNCTRLSTA_OFFSET_HD_CTRL,
1172 reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001173 if (ret_val)
1174 return ret_val;
1175
1176 /* Configure Transmit Inter-Packet Gap */
1177 tipg = er32(TIPG);
1178 tipg &= ~E1000_TIPG_IPGT_MASK;
1179 tipg |= DEFAULT_TIPG_IPGT_1000_80003ES2LAN;
1180 ew32(TIPG, tipg);
1181
David Graham2d9498f2008-04-23 11:09:14 -07001182 do {
1183 ret_val = e1e_rphy(hw, GG82563_PHY_KMRN_MODE_CTRL, &reg_data);
1184 if (ret_val)
1185 return ret_val;
1186
1187 ret_val = e1e_rphy(hw, GG82563_PHY_KMRN_MODE_CTRL, &reg_data2);
1188 if (ret_val)
1189 return ret_val;
1190 i++;
1191 } while ((reg_data != reg_data2) && (i < GG82563_MAX_KMRN_RETRY));
Auke Kokbc7f75f2007-09-17 12:30:59 -07001192
1193 reg_data &= ~GG82563_KMCR_PASS_FALSE_CARRIER;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001194
Bruce Allan7eb61d82012-02-08 02:55:03 +00001195 return e1e_wphy(hw, GG82563_PHY_KMRN_MODE_CTRL, reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001196}
1197
1198/**
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001199 * e1000_read_kmrn_reg_80003es2lan - Read kumeran register
1200 * @hw: pointer to the HW structure
1201 * @offset: register offset to be read
1202 * @data: pointer to the read data
1203 *
1204 * Acquire semaphore, then read the PHY register at offset
1205 * using the kumeran interface. The information retrieved is stored in data.
1206 * Release the semaphore before exiting.
1207 **/
Hannes Ederfa4c16d2008-12-22 09:16:13 +00001208static s32 e1000_read_kmrn_reg_80003es2lan(struct e1000_hw *hw, u32 offset,
1209 u16 *data)
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001210{
1211 u32 kmrnctrlsta;
Bruce Allan70806a72013-01-05 05:08:37 +00001212 s32 ret_val;
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001213
1214 ret_val = e1000_acquire_mac_csr_80003es2lan(hw);
1215 if (ret_val)
1216 return ret_val;
1217
1218 kmrnctrlsta = ((offset << E1000_KMRNCTRLSTA_OFFSET_SHIFT) &
Bruce Allanf0ff4392013-02-20 04:05:39 +00001219 E1000_KMRNCTRLSTA_OFFSET) | E1000_KMRNCTRLSTA_REN;
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001220 ew32(KMRNCTRLSTA, kmrnctrlsta);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001221 e1e_flush();
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001222
1223 udelay(2);
1224
1225 kmrnctrlsta = er32(KMRNCTRLSTA);
1226 *data = (u16)kmrnctrlsta;
1227
1228 e1000_release_mac_csr_80003es2lan(hw);
1229
1230 return ret_val;
1231}
1232
1233/**
1234 * e1000_write_kmrn_reg_80003es2lan - Write kumeran register
1235 * @hw: pointer to the HW structure
1236 * @offset: register offset to write to
1237 * @data: data to write at register offset
1238 *
1239 * Acquire semaphore, then write the data to PHY register
1240 * at the offset using the kumeran interface. Release semaphore
1241 * before exiting.
1242 **/
Hannes Ederfa4c16d2008-12-22 09:16:13 +00001243static s32 e1000_write_kmrn_reg_80003es2lan(struct e1000_hw *hw, u32 offset,
1244 u16 data)
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001245{
1246 u32 kmrnctrlsta;
Bruce Allan70806a72013-01-05 05:08:37 +00001247 s32 ret_val;
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001248
1249 ret_val = e1000_acquire_mac_csr_80003es2lan(hw);
1250 if (ret_val)
1251 return ret_val;
1252
1253 kmrnctrlsta = ((offset << E1000_KMRNCTRLSTA_OFFSET_SHIFT) &
Bruce Allanf0ff4392013-02-20 04:05:39 +00001254 E1000_KMRNCTRLSTA_OFFSET) | data;
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001255 ew32(KMRNCTRLSTA, kmrnctrlsta);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001256 e1e_flush();
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001257
1258 udelay(2);
1259
1260 e1000_release_mac_csr_80003es2lan(hw);
1261
1262 return ret_val;
1263}
1264
1265/**
Bruce Allan608f8a02010-01-13 02:04:58 +00001266 * e1000_read_mac_addr_80003es2lan - Read device MAC address
1267 * @hw: pointer to the HW structure
1268 **/
1269static s32 e1000_read_mac_addr_80003es2lan(struct e1000_hw *hw)
1270{
Bruce Allan70806a72013-01-05 05:08:37 +00001271 s32 ret_val;
Bruce Allan608f8a02010-01-13 02:04:58 +00001272
Bruce Allane921eb12012-11-28 09:28:37 +00001273 /* If there's an alternate MAC address place it in RAR0
Bruce Allan608f8a02010-01-13 02:04:58 +00001274 * so that it will override the Si installed default perm
1275 * address.
1276 */
1277 ret_val = e1000_check_alt_mac_addr_generic(hw);
1278 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001279 return ret_val;
Bruce Allan608f8a02010-01-13 02:04:58 +00001280
Bruce Allan5015e532012-02-08 02:55:56 +00001281 return e1000_read_mac_addr_generic(hw);
Bruce Allan608f8a02010-01-13 02:04:58 +00001282}
1283
1284/**
Bruce Allan17f208d2009-12-01 15:47:22 +00001285 * e1000_power_down_phy_copper_80003es2lan - Remove link during PHY power down
1286 * @hw: pointer to the HW structure
1287 *
1288 * In the case of a PHY power down to save power, or to turn off link during a
1289 * driver unload, or wake on lan is not enabled, remove the link.
1290 **/
1291static void e1000_power_down_phy_copper_80003es2lan(struct e1000_hw *hw)
1292{
1293 /* If the management interface is not enabled, then power down */
1294 if (!(hw->mac.ops.check_mng_mode(hw) ||
1295 hw->phy.ops.check_reset_block(hw)))
1296 e1000_power_down_phy_copper(hw);
Bruce Allan17f208d2009-12-01 15:47:22 +00001297}
1298
1299/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001300 * e1000_clear_hw_cntrs_80003es2lan - Clear device specific hardware counters
1301 * @hw: pointer to the HW structure
1302 *
1303 * Clears the hardware counters by reading the counter registers.
1304 **/
1305static void e1000_clear_hw_cntrs_80003es2lan(struct e1000_hw *hw)
1306{
Auke Kokbc7f75f2007-09-17 12:30:59 -07001307 e1000e_clear_hw_cntrs_base(hw);
1308
Bruce Allan99673d92009-11-20 23:27:21 +00001309 er32(PRC64);
1310 er32(PRC127);
1311 er32(PRC255);
1312 er32(PRC511);
1313 er32(PRC1023);
1314 er32(PRC1522);
1315 er32(PTC64);
1316 er32(PTC127);
1317 er32(PTC255);
1318 er32(PTC511);
1319 er32(PTC1023);
1320 er32(PTC1522);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001321
Bruce Allan99673d92009-11-20 23:27:21 +00001322 er32(ALGNERRC);
1323 er32(RXERRC);
1324 er32(TNCRS);
1325 er32(CEXTERR);
1326 er32(TSCTC);
1327 er32(TSCTFC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001328
Bruce Allan99673d92009-11-20 23:27:21 +00001329 er32(MGTPRC);
1330 er32(MGTPDC);
1331 er32(MGTPTC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001332
Bruce Allan99673d92009-11-20 23:27:21 +00001333 er32(IAC);
1334 er32(ICRXOC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001335
Bruce Allan99673d92009-11-20 23:27:21 +00001336 er32(ICRXPTC);
1337 er32(ICRXATC);
1338 er32(ICTXPTC);
1339 er32(ICTXATC);
1340 er32(ICTXQEC);
1341 er32(ICTXQMTC);
1342 er32(ICRXDMTC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001343}
1344
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00001345static const struct e1000_mac_operations es2_mac_ops = {
Bruce Allan608f8a02010-01-13 02:04:58 +00001346 .read_mac_addr = e1000_read_mac_addr_80003es2lan,
Bruce Alland1964eb2012-02-22 09:02:21 +00001347 .id_led_init = e1000e_id_led_init_generic,
Bruce Allandbf80dc2011-04-16 00:34:40 +00001348 .blink_led = e1000e_blink_led_generic,
Bruce Allan4662e822008-08-26 18:37:06 -07001349 .check_mng_mode = e1000e_check_mng_mode_generic,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001350 /* check_for_link dependent on media type */
1351 .cleanup_led = e1000e_cleanup_led_generic,
1352 .clear_hw_cntrs = e1000_clear_hw_cntrs_80003es2lan,
1353 .get_bus_info = e1000e_get_bus_info_pcie,
Bruce Allanf4d2dd42010-01-13 02:05:18 +00001354 .set_lan_id = e1000_set_lan_id_multi_port_pcie,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001355 .get_link_up_info = e1000_get_link_up_info_80003es2lan,
1356 .led_on = e1000e_led_on_generic,
1357 .led_off = e1000e_led_off_generic,
Jeff Kirshere2de3eb2008-03-28 09:15:11 -07001358 .update_mc_addr_list = e1000e_update_mc_addr_list_generic,
Bruce Allancaaddaf2009-12-01 15:46:43 +00001359 .write_vfta = e1000_write_vfta_generic,
1360 .clear_vfta = e1000_clear_vfta_generic,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001361 .reset_hw = e1000_reset_hw_80003es2lan,
1362 .init_hw = e1000_init_hw_80003es2lan,
Bruce Allan1a46b402012-02-22 09:02:26 +00001363 .setup_link = e1000e_setup_link_generic,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001364 /* setup_physical_interface dependent on media type */
Bruce Allana4f58f52009-06-02 11:29:18 +00001365 .setup_led = e1000e_setup_led_generic,
Bruce Allan57cde762012-02-22 09:02:58 +00001366 .config_collision_dist = e1000e_config_collision_dist_generic,
Bruce Allan69e1e012012-04-14 03:28:50 +00001367 .rar_set = e1000e_rar_set_generic,
David Ertmanb3e5bf12014-05-06 03:50:17 +00001368 .rar_get_count = e1000e_rar_get_count_generic,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001369};
1370
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00001371static const struct e1000_phy_operations es2_phy_ops = {
Bruce Allan94d81862009-11-20 23:25:26 +00001372 .acquire = e1000_acquire_phy_80003es2lan,
Bruce Allan94e5b652009-12-02 17:02:14 +00001373 .check_polarity = e1000_check_polarity_m88,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001374 .check_reset_block = e1000e_check_reset_block_generic,
Bruce Allan55c5f552013-01-12 07:28:24 +00001375 .commit = e1000e_phy_sw_reset,
1376 .force_speed_duplex = e1000_phy_force_speed_duplex_80003es2lan,
1377 .get_cfg_done = e1000_get_cfg_done_80003es2lan,
1378 .get_cable_length = e1000_get_cable_length_80003es2lan,
1379 .get_info = e1000e_get_phy_info_m88,
1380 .read_reg = e1000_read_phy_reg_gg82563_80003es2lan,
Bruce Allan94d81862009-11-20 23:25:26 +00001381 .release = e1000_release_phy_80003es2lan,
Bruce Allan55c5f552013-01-12 07:28:24 +00001382 .reset = e1000e_phy_hw_reset_generic,
1383 .set_d0_lplu_state = NULL,
1384 .set_d3_lplu_state = e1000e_set_d3_lplu_state,
1385 .write_reg = e1000_write_phy_reg_gg82563_80003es2lan,
1386 .cfg_on_link_up = e1000_cfg_on_link_up_80003es2lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001387};
1388
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00001389static const struct e1000_nvm_operations es2_nvm_ops = {
Bruce Allan94d81862009-11-20 23:25:26 +00001390 .acquire = e1000_acquire_nvm_80003es2lan,
1391 .read = e1000e_read_nvm_eerd,
1392 .release = e1000_release_nvm_80003es2lan,
Bruce Allane85e3632012-02-22 09:03:14 +00001393 .reload = e1000e_reload_nvm_generic,
Bruce Allan94d81862009-11-20 23:25:26 +00001394 .update = e1000e_update_nvm_checksum_generic,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001395 .valid_led_default = e1000e_valid_led_default,
Bruce Allan94d81862009-11-20 23:25:26 +00001396 .validate = e1000e_validate_nvm_checksum_generic,
1397 .write = e1000_write_nvm_80003es2lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001398};
1399
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00001400const struct e1000_info e1000_es2_info = {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001401 .mac = e1000_80003es2lan,
1402 .flags = FLAG_HAS_HW_VLAN_FILTER
1403 | FLAG_HAS_JUMBO_FRAMES
Auke Kokbc7f75f2007-09-17 12:30:59 -07001404 | FLAG_HAS_WOL
1405 | FLAG_APME_IN_CTRL3
Auke Kokbc7f75f2007-09-17 12:30:59 -07001406 | FLAG_HAS_CTRLEXT_ON_LOAD
Auke Kokbc7f75f2007-09-17 12:30:59 -07001407 | FLAG_RX_NEEDS_RESTART /* errata */
1408 | FLAG_TARC_SET_BIT_ZERO /* errata */
1409 | FLAG_APME_CHECK_PORT_B
Bruce Allan6a92f732011-12-16 00:46:12 +00001410 | FLAG_DISABLE_FC_PAUSE_TIME, /* errata */
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00001411 .flags2 = FLAG2_DMA_BURST,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001412 .pba = 38,
Bruce Allan2adc55c2009-06-02 11:28:58 +00001413 .max_hw_frame_size = DEFAULT_JUMBO,
Jeff Kirsher69e3fd82008-04-02 13:48:18 -07001414 .get_variants = e1000_get_variants_80003es2lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001415 .mac_ops = &es2_mac_ops,
1416 .phy_ops = &es2_phy_ops,
1417 .nvm_ops = &es2_nvm_ops,
1418};