blob: 257bd59bc9c6ff58446f9525b7230281a6fe7d2a [file] [log] [blame]
Jeff Kirsherae06c702018-03-22 10:08:48 -07001// SPDX-License-Identifier: GPL-2.0
Jeff Kirsher51dce242018-04-26 08:08:09 -07002/* Copyright(c) 1999 - 2018 Intel Corporation. */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003
Bruce Allane921eb12012-11-28 09:28:37 +00004/* 80003ES2LAN Gigabit Ethernet Controller (Copper)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005 * 80003ES2LAN Gigabit Ethernet Controller (Serdes)
6 */
7
Auke Kokbc7f75f2007-09-17 12:30:59 -07008#include "e1000.h"
9
Bruce Allane921eb12012-11-28 09:28:37 +000010/* A table for the GG82563 cable length where the range is defined
Auke Kokbc7f75f2007-09-17 12:30:59 -070011 * with a lower bound at "index" and the upper bound at
12 * "index + 5".
13 */
Bruce Allan64806412010-12-11 05:53:42 +000014static const u16 e1000_gg82563_cable_length_table[] = {
Bruce Allan04e115c2013-02-20 04:06:22 +000015 0, 60, 115, 150, 150, 60, 115, 150, 180, 180, 0xFF
16};
Bruce Allanfc830b72013-02-20 04:06:11 +000017
Bruce Allaneb656d42009-12-01 15:47:02 +000018#define GG82563_CABLE_LENGTH_TABLE_SIZE \
19 ARRAY_SIZE(e1000_gg82563_cable_length_table)
Auke Kokbc7f75f2007-09-17 12:30:59 -070020
21static s32 e1000_setup_copper_link_80003es2lan(struct e1000_hw *hw);
22static s32 e1000_acquire_swfw_sync_80003es2lan(struct e1000_hw *hw, u16 mask);
23static void e1000_release_swfw_sync_80003es2lan(struct e1000_hw *hw, u16 mask);
24static void e1000_initialize_hw_bits_80003es2lan(struct e1000_hw *hw);
25static void e1000_clear_hw_cntrs_80003es2lan(struct e1000_hw *hw);
26static s32 e1000_cfg_kmrn_1000_80003es2lan(struct e1000_hw *hw);
27static s32 e1000_cfg_kmrn_10_100_80003es2lan(struct e1000_hw *hw, u16 duplex);
Bruce Allan1f96012d2013-01-05 03:06:54 +000028static s32 e1000_read_kmrn_reg_80003es2lan(struct e1000_hw *hw, u32 offset,
29 u16 *data);
30static s32 e1000_write_kmrn_reg_80003es2lan(struct e1000_hw *hw, u32 offset,
31 u16 data);
Bruce Allan17f208d2009-12-01 15:47:22 +000032static void e1000_power_down_phy_copper_80003es2lan(struct e1000_hw *hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -070033
34/**
35 * e1000_init_phy_params_80003es2lan - Init ESB2 PHY func ptrs.
36 * @hw: pointer to the HW structure
Auke Kokbc7f75f2007-09-17 12:30:59 -070037 **/
38static s32 e1000_init_phy_params_80003es2lan(struct e1000_hw *hw)
39{
40 struct e1000_phy_info *phy = &hw->phy;
41 s32 ret_val;
42
Jeff Kirsher318a94d2008-03-28 09:15:16 -070043 if (hw->phy.media_type != e1000_media_type_copper) {
Bruce Allane80bd1d2013-05-01 01:19:46 +000044 phy->type = e1000_phy_none;
Auke Kokbc7f75f2007-09-17 12:30:59 -070045 return 0;
Bruce Allan17f208d2009-12-01 15:47:22 +000046 } else {
47 phy->ops.power_up = e1000_power_up_phy_copper;
48 phy->ops.power_down = e1000_power_down_phy_copper_80003es2lan;
Auke Kokbc7f75f2007-09-17 12:30:59 -070049 }
50
Bruce Allane80bd1d2013-05-01 01:19:46 +000051 phy->addr = 1;
52 phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT;
53 phy->reset_delay_us = 100;
54 phy->type = e1000_phy_gg82563;
Auke Kokbc7f75f2007-09-17 12:30:59 -070055
56 /* This can only be done after all function pointers are setup. */
57 ret_val = e1000e_get_phy_id(hw);
58
59 /* Verify phy id */
60 if (phy->id != GG82563_E_PHY_ID)
61 return -E1000_ERR_PHY;
62
63 return ret_val;
64}
65
66/**
67 * e1000_init_nvm_params_80003es2lan - Init ESB2 NVM func ptrs.
68 * @hw: pointer to the HW structure
Auke Kokbc7f75f2007-09-17 12:30:59 -070069 **/
70static s32 e1000_init_nvm_params_80003es2lan(struct e1000_hw *hw)
71{
72 struct e1000_nvm_info *nvm = &hw->nvm;
73 u32 eecd = er32(EECD);
74 u16 size;
75
Bruce Allane80bd1d2013-05-01 01:19:46 +000076 nvm->opcode_bits = 8;
77 nvm->delay_usec = 1;
Auke Kokbc7f75f2007-09-17 12:30:59 -070078 switch (nvm->override) {
79 case e1000_nvm_override_spi_large:
Bruce Allane80bd1d2013-05-01 01:19:46 +000080 nvm->page_size = 32;
Auke Kokbc7f75f2007-09-17 12:30:59 -070081 nvm->address_bits = 16;
82 break;
83 case e1000_nvm_override_spi_small:
Bruce Allane80bd1d2013-05-01 01:19:46 +000084 nvm->page_size = 8;
Auke Kokbc7f75f2007-09-17 12:30:59 -070085 nvm->address_bits = 8;
86 break;
87 default:
Bruce Allane80bd1d2013-05-01 01:19:46 +000088 nvm->page_size = eecd & E1000_EECD_ADDR_BITS ? 32 : 8;
Auke Kokbc7f75f2007-09-17 12:30:59 -070089 nvm->address_bits = eecd & E1000_EECD_ADDR_BITS ? 16 : 8;
90 break;
91 }
92
Bruce Allanad680762008-03-28 09:15:03 -070093 nvm->type = e1000_nvm_eeprom_spi;
Auke Kokbc7f75f2007-09-17 12:30:59 -070094
95 size = (u16)((eecd & E1000_EECD_SIZE_EX_MASK) >>
Bruce Allanf0ff4392013-02-20 04:05:39 +000096 E1000_EECD_SIZE_EX_SHIFT);
Auke Kokbc7f75f2007-09-17 12:30:59 -070097
Bruce Allane921eb12012-11-28 09:28:37 +000098 /* Added to a constant, "size" becomes the left-shift value
Auke Kokbc7f75f2007-09-17 12:30:59 -070099 * for setting word_size.
100 */
101 size += NVM_WORD_SIZE_BASE_SHIFT;
Jeff Kirsher8d7c2942008-04-02 13:48:07 -0700102
103 /* EEPROM access above 16k is unsupported */
104 if (size > 14)
105 size = 14;
Jacob Keller18dd2392016-04-13 16:08:32 -0700106 nvm->word_size = BIT(size);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700107
108 return 0;
109}
110
111/**
112 * e1000_init_mac_params_80003es2lan - Init ESB2 MAC func ptrs.
113 * @hw: pointer to the HW structure
Auke Kokbc7f75f2007-09-17 12:30:59 -0700114 **/
Bruce Allanec34c172012-02-01 10:53:05 +0000115static s32 e1000_init_mac_params_80003es2lan(struct e1000_hw *hw)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700116{
Auke Kokbc7f75f2007-09-17 12:30:59 -0700117 struct e1000_mac_info *mac = &hw->mac;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700118
Bruce Allane68782e2012-01-31 06:37:43 +0000119 /* Set media type and media-dependent function pointers */
Bruce Allanec34c172012-02-01 10:53:05 +0000120 switch (hw->adapter->pdev->device) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700121 case E1000_DEV_ID_80003ES2LAN_SERDES_DPT:
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700122 hw->phy.media_type = e1000_media_type_internal_serdes;
Bruce Allane68782e2012-01-31 06:37:43 +0000123 mac->ops.check_for_link = e1000e_check_for_serdes_link;
124 mac->ops.setup_physical_interface =
125 e1000e_setup_fiber_serdes_link;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700126 break;
127 default:
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700128 hw->phy.media_type = e1000_media_type_copper;
Bruce Allane68782e2012-01-31 06:37:43 +0000129 mac->ops.check_for_link = e1000e_check_for_copper_link;
130 mac->ops.setup_physical_interface =
131 e1000_setup_copper_link_80003es2lan;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700132 break;
133 }
134
135 /* Set mta register count */
136 mac->mta_reg_count = 128;
137 /* Set rar entry count */
138 mac->rar_entry_count = E1000_RAR_ENTRIES;
Bruce Allana65a4a02010-05-10 15:01:51 +0000139 /* FWSM register */
140 mac->has_fwsm = true;
141 /* ARC supported; valid only if manageability features are enabled. */
Bruce Allan04499ec2012-04-13 00:08:31 +0000142 mac->arc_subsystem_valid = !!(er32(FWSM) & E1000_FWSM_MODE_MASK);
Bruce Allanf464ba82010-01-07 16:31:35 +0000143 /* Adaptive IFS not supported */
144 mac->adaptive_ifs = false;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700145
Bruce Allanf4d2dd42010-01-13 02:05:18 +0000146 /* set lan id for port to determine which phy lock to use */
147 hw->mac.ops.set_lan_id(hw);
148
Auke Kokbc7f75f2007-09-17 12:30:59 -0700149 return 0;
150}
151
Jeff Kirsher69e3fd82008-04-02 13:48:18 -0700152static s32 e1000_get_variants_80003es2lan(struct e1000_adapter *adapter)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700153{
154 struct e1000_hw *hw = &adapter->hw;
155 s32 rc;
156
Bruce Allanec34c172012-02-01 10:53:05 +0000157 rc = e1000_init_mac_params_80003es2lan(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700158 if (rc)
159 return rc;
160
161 rc = e1000_init_nvm_params_80003es2lan(hw);
162 if (rc)
163 return rc;
164
165 rc = e1000_init_phy_params_80003es2lan(hw);
166 if (rc)
167 return rc;
168
169 return 0;
170}
171
172/**
173 * e1000_acquire_phy_80003es2lan - Acquire rights to access PHY
174 * @hw: pointer to the HW structure
175 *
Bruce Allanfe401672009-11-20 23:26:05 +0000176 * A wrapper to acquire access rights to the correct PHY.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700177 **/
178static s32 e1000_acquire_phy_80003es2lan(struct e1000_hw *hw)
179{
180 u16 mask;
181
182 mask = hw->bus.func ? E1000_SWFW_PHY1_SM : E1000_SWFW_PHY0_SM;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700183 return e1000_acquire_swfw_sync_80003es2lan(hw, mask);
184}
185
186/**
187 * e1000_release_phy_80003es2lan - Release rights to access PHY
188 * @hw: pointer to the HW structure
189 *
Bruce Allanfe401672009-11-20 23:26:05 +0000190 * A wrapper to release access rights to the correct PHY.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700191 **/
192static void e1000_release_phy_80003es2lan(struct e1000_hw *hw)
193{
194 u16 mask;
195
196 mask = hw->bus.func ? E1000_SWFW_PHY1_SM : E1000_SWFW_PHY0_SM;
Bruce Allan75eb0fa2008-11-21 16:53:51 -0800197 e1000_release_swfw_sync_80003es2lan(hw, mask);
198}
199
200/**
Bruce Allandffcdde2012-02-17 09:35:33 +0000201 * e1000_acquire_mac_csr_80003es2lan - Acquire right to access Kumeran register
Bruce Allan75eb0fa2008-11-21 16:53:51 -0800202 * @hw: pointer to the HW structure
203 *
204 * Acquire the semaphore to access the Kumeran interface.
205 *
206 **/
207static s32 e1000_acquire_mac_csr_80003es2lan(struct e1000_hw *hw)
208{
209 u16 mask;
210
211 mask = E1000_SWFW_CSR_SM;
212
213 return e1000_acquire_swfw_sync_80003es2lan(hw, mask);
214}
215
216/**
Bruce Allandffcdde2012-02-17 09:35:33 +0000217 * e1000_release_mac_csr_80003es2lan - Release right to access Kumeran Register
Bruce Allan75eb0fa2008-11-21 16:53:51 -0800218 * @hw: pointer to the HW structure
219 *
220 * Release the semaphore used to access the Kumeran interface
221 **/
222static void e1000_release_mac_csr_80003es2lan(struct e1000_hw *hw)
223{
224 u16 mask;
225
226 mask = E1000_SWFW_CSR_SM;
David Graham2d9498f2008-04-23 11:09:14 -0700227
Auke Kokbc7f75f2007-09-17 12:30:59 -0700228 e1000_release_swfw_sync_80003es2lan(hw, mask);
229}
230
231/**
232 * e1000_acquire_nvm_80003es2lan - Acquire rights to access NVM
233 * @hw: pointer to the HW structure
234 *
Bruce Allanfe401672009-11-20 23:26:05 +0000235 * Acquire the semaphore to access the EEPROM.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700236 **/
237static s32 e1000_acquire_nvm_80003es2lan(struct e1000_hw *hw)
238{
239 s32 ret_val;
240
241 ret_val = e1000_acquire_swfw_sync_80003es2lan(hw, E1000_SWFW_EEP_SM);
242 if (ret_val)
243 return ret_val;
244
245 ret_val = e1000e_acquire_nvm(hw);
246
247 if (ret_val)
248 e1000_release_swfw_sync_80003es2lan(hw, E1000_SWFW_EEP_SM);
249
250 return ret_val;
251}
252
253/**
254 * e1000_release_nvm_80003es2lan - Relinquish rights to access NVM
255 * @hw: pointer to the HW structure
256 *
Bruce Allanfe401672009-11-20 23:26:05 +0000257 * Release the semaphore used to access the EEPROM.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700258 **/
259static void e1000_release_nvm_80003es2lan(struct e1000_hw *hw)
260{
261 e1000e_release_nvm(hw);
262 e1000_release_swfw_sync_80003es2lan(hw, E1000_SWFW_EEP_SM);
263}
264
265/**
266 * e1000_acquire_swfw_sync_80003es2lan - Acquire SW/FW semaphore
267 * @hw: pointer to the HW structure
268 * @mask: specifies which semaphore to acquire
269 *
270 * Acquire the SW/FW semaphore to access the PHY or NVM. The mask
271 * will also specify which port we're acquiring the lock for.
272 **/
273static s32 e1000_acquire_swfw_sync_80003es2lan(struct e1000_hw *hw, u16 mask)
274{
275 u32 swfw_sync;
276 u32 swmask = mask;
277 u32 fwmask = mask << 16;
278 s32 i = 0;
Bruce Allan75eb0fa2008-11-21 16:53:51 -0800279 s32 timeout = 50;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700280
281 while (i < timeout) {
282 if (e1000e_get_hw_semaphore(hw))
283 return -E1000_ERR_SWFW_SYNC;
284
285 swfw_sync = er32(SW_FW_SYNC);
286 if (!(swfw_sync & (fwmask | swmask)))
287 break;
288
Bruce Allane921eb12012-11-28 09:28:37 +0000289 /* Firmware currently using resource (fwmask)
Bruce Allanad680762008-03-28 09:15:03 -0700290 * or other software thread using resource (swmask)
291 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700292 e1000e_put_hw_semaphore(hw);
293 mdelay(5);
294 i++;
295 }
296
297 if (i == timeout) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000298 e_dbg("Driver can't access resource, SW_FW_SYNC timeout.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700299 return -E1000_ERR_SWFW_SYNC;
300 }
301
302 swfw_sync |= swmask;
303 ew32(SW_FW_SYNC, swfw_sync);
304
305 e1000e_put_hw_semaphore(hw);
306
307 return 0;
308}
309
310/**
311 * e1000_release_swfw_sync_80003es2lan - Release SW/FW semaphore
312 * @hw: pointer to the HW structure
313 * @mask: specifies which semaphore to acquire
314 *
315 * Release the SW/FW semaphore used to access the PHY or NVM. The mask
316 * will also specify which port we're releasing the lock for.
317 **/
318static void e1000_release_swfw_sync_80003es2lan(struct e1000_hw *hw, u16 mask)
319{
320 u32 swfw_sync;
321
Bruce Allan184125a2010-12-11 05:53:37 +0000322 while (e1000e_get_hw_semaphore(hw) != 0)
323 ; /* Empty */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700324
325 swfw_sync = er32(SW_FW_SYNC);
326 swfw_sync &= ~mask;
327 ew32(SW_FW_SYNC, swfw_sync);
328
329 e1000e_put_hw_semaphore(hw);
330}
331
332/**
333 * e1000_read_phy_reg_gg82563_80003es2lan - Read GG82563 PHY register
334 * @hw: pointer to the HW structure
335 * @offset: offset of the register to read
336 * @data: pointer to the data returned from the operation
337 *
Bruce Allanfe401672009-11-20 23:26:05 +0000338 * Read the GG82563 PHY register.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700339 **/
340static s32 e1000_read_phy_reg_gg82563_80003es2lan(struct e1000_hw *hw,
341 u32 offset, u16 *data)
342{
343 s32 ret_val;
344 u32 page_select;
345 u16 temp;
346
David Graham2d9498f2008-04-23 11:09:14 -0700347 ret_val = e1000_acquire_phy_80003es2lan(hw);
348 if (ret_val)
349 return ret_val;
350
Auke Kokbc7f75f2007-09-17 12:30:59 -0700351 /* Select Configuration Page */
David Graham2d9498f2008-04-23 11:09:14 -0700352 if ((offset & MAX_PHY_REG_ADDRESS) < GG82563_MIN_ALT_REG) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700353 page_select = GG82563_PHY_PAGE_SELECT;
David Graham2d9498f2008-04-23 11:09:14 -0700354 } else {
Bruce Allane921eb12012-11-28 09:28:37 +0000355 /* Use Alternative Page Select register to access
Auke Kokbc7f75f2007-09-17 12:30:59 -0700356 * registers 30 and 31
357 */
358 page_select = GG82563_PHY_PAGE_SELECT_ALT;
David Graham2d9498f2008-04-23 11:09:14 -0700359 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700360
361 temp = (u16)((u16)offset >> GG82563_PAGE_SHIFT);
David Graham2d9498f2008-04-23 11:09:14 -0700362 ret_val = e1000e_write_phy_reg_mdic(hw, page_select, temp);
363 if (ret_val) {
364 e1000_release_phy_80003es2lan(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700365 return ret_val;
David Graham2d9498f2008-04-23 11:09:14 -0700366 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700367
Bruce Allanb4d8e212012-02-17 03:17:55 +0000368 if (hw->dev_spec.e80003es2lan.mdic_wa_enable) {
Bruce Allane921eb12012-11-28 09:28:37 +0000369 /* The "ready" bit in the MDIC register may be incorrectly set
Bruce Allan3421eec2009-12-08 07:28:20 +0000370 * before the device has completed the "Page Select" MDI
371 * transaction. So we wait 200us after each MDI command...
372 */
Bruce Allance43a212013-02-20 04:06:32 +0000373 usleep_range(200, 400);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700374
Bruce Allan3421eec2009-12-08 07:28:20 +0000375 /* ...and verify the command was successful. */
376 ret_val = e1000e_read_phy_reg_mdic(hw, page_select, &temp);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700377
Bruce Allan3421eec2009-12-08 07:28:20 +0000378 if (((u16)offset >> GG82563_PAGE_SHIFT) != temp) {
Bruce Allan3421eec2009-12-08 07:28:20 +0000379 e1000_release_phy_80003es2lan(hw);
Bruce Allan7eb61d82012-02-08 02:55:03 +0000380 return -E1000_ERR_PHY;
Bruce Allan3421eec2009-12-08 07:28:20 +0000381 }
382
Bruce Allance43a212013-02-20 04:06:32 +0000383 usleep_range(200, 400);
Bruce Allan3421eec2009-12-08 07:28:20 +0000384
385 ret_val = e1000e_read_phy_reg_mdic(hw,
Bruce Allanf0ff4392013-02-20 04:05:39 +0000386 MAX_PHY_REG_ADDRESS & offset,
387 data);
Bruce Allan3421eec2009-12-08 07:28:20 +0000388
Bruce Allance43a212013-02-20 04:06:32 +0000389 usleep_range(200, 400);
Bruce Allan3421eec2009-12-08 07:28:20 +0000390 } else {
391 ret_val = e1000e_read_phy_reg_mdic(hw,
Bruce Allanf0ff4392013-02-20 04:05:39 +0000392 MAX_PHY_REG_ADDRESS & offset,
393 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700394 }
395
David Graham2d9498f2008-04-23 11:09:14 -0700396 e1000_release_phy_80003es2lan(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700397
398 return ret_val;
399}
400
401/**
402 * e1000_write_phy_reg_gg82563_80003es2lan - Write GG82563 PHY register
403 * @hw: pointer to the HW structure
404 * @offset: offset of the register to read
405 * @data: value to write to the register
406 *
Bruce Allanfe401672009-11-20 23:26:05 +0000407 * Write to the GG82563 PHY register.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700408 **/
409static s32 e1000_write_phy_reg_gg82563_80003es2lan(struct e1000_hw *hw,
410 u32 offset, u16 data)
411{
412 s32 ret_val;
413 u32 page_select;
414 u16 temp;
415
David Graham2d9498f2008-04-23 11:09:14 -0700416 ret_val = e1000_acquire_phy_80003es2lan(hw);
417 if (ret_val)
418 return ret_val;
419
Auke Kokbc7f75f2007-09-17 12:30:59 -0700420 /* Select Configuration Page */
David Graham2d9498f2008-04-23 11:09:14 -0700421 if ((offset & MAX_PHY_REG_ADDRESS) < GG82563_MIN_ALT_REG) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700422 page_select = GG82563_PHY_PAGE_SELECT;
David Graham2d9498f2008-04-23 11:09:14 -0700423 } else {
Bruce Allane921eb12012-11-28 09:28:37 +0000424 /* Use Alternative Page Select register to access
Auke Kokbc7f75f2007-09-17 12:30:59 -0700425 * registers 30 and 31
426 */
427 page_select = GG82563_PHY_PAGE_SELECT_ALT;
David Graham2d9498f2008-04-23 11:09:14 -0700428 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700429
430 temp = (u16)((u16)offset >> GG82563_PAGE_SHIFT);
David Graham2d9498f2008-04-23 11:09:14 -0700431 ret_val = e1000e_write_phy_reg_mdic(hw, page_select, temp);
432 if (ret_val) {
433 e1000_release_phy_80003es2lan(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700434 return ret_val;
David Graham2d9498f2008-04-23 11:09:14 -0700435 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700436
Bruce Allanb4d8e212012-02-17 03:17:55 +0000437 if (hw->dev_spec.e80003es2lan.mdic_wa_enable) {
Bruce Allane921eb12012-11-28 09:28:37 +0000438 /* The "ready" bit in the MDIC register may be incorrectly set
Bruce Allan3421eec2009-12-08 07:28:20 +0000439 * before the device has completed the "Page Select" MDI
440 * transaction. So we wait 200us after each MDI command...
441 */
Bruce Allance43a212013-02-20 04:06:32 +0000442 usleep_range(200, 400);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700443
Bruce Allan3421eec2009-12-08 07:28:20 +0000444 /* ...and verify the command was successful. */
445 ret_val = e1000e_read_phy_reg_mdic(hw, page_select, &temp);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700446
Bruce Allan3421eec2009-12-08 07:28:20 +0000447 if (((u16)offset >> GG82563_PAGE_SHIFT) != temp) {
448 e1000_release_phy_80003es2lan(hw);
449 return -E1000_ERR_PHY;
450 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700451
Bruce Allance43a212013-02-20 04:06:32 +0000452 usleep_range(200, 400);
Bruce Allan3421eec2009-12-08 07:28:20 +0000453
454 ret_val = e1000e_write_phy_reg_mdic(hw,
Bruce Allanf0ff4392013-02-20 04:05:39 +0000455 MAX_PHY_REG_ADDRESS &
456 offset, data);
Bruce Allan3421eec2009-12-08 07:28:20 +0000457
Bruce Allance43a212013-02-20 04:06:32 +0000458 usleep_range(200, 400);
Bruce Allan3421eec2009-12-08 07:28:20 +0000459 } else {
460 ret_val = e1000e_write_phy_reg_mdic(hw,
Bruce Allanf0ff4392013-02-20 04:05:39 +0000461 MAX_PHY_REG_ADDRESS &
462 offset, data);
David Graham2d9498f2008-04-23 11:09:14 -0700463 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700464
David Graham2d9498f2008-04-23 11:09:14 -0700465 e1000_release_phy_80003es2lan(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700466
467 return ret_val;
468}
469
470/**
471 * e1000_write_nvm_80003es2lan - Write to ESB2 NVM
472 * @hw: pointer to the HW structure
473 * @offset: offset of the register to read
474 * @words: number of words to write
475 * @data: buffer of data to write to the NVM
476 *
Bruce Allanfe401672009-11-20 23:26:05 +0000477 * Write "words" of data to the ESB2 NVM.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700478 **/
479static s32 e1000_write_nvm_80003es2lan(struct e1000_hw *hw, u16 offset,
480 u16 words, u16 *data)
481{
482 return e1000e_write_nvm_spi(hw, offset, words, data);
483}
484
485/**
486 * e1000_get_cfg_done_80003es2lan - Wait for configuration to complete
487 * @hw: pointer to the HW structure
488 *
489 * Wait a specific amount of time for manageability processes to complete.
490 * This is a function pointer entry point called by the phy module.
491 **/
492static s32 e1000_get_cfg_done_80003es2lan(struct e1000_hw *hw)
493{
494 s32 timeout = PHY_CFG_TIMEOUT;
495 u32 mask = E1000_NVM_CFG_DONE_PORT_0;
496
497 if (hw->bus.func == 1)
498 mask = E1000_NVM_CFG_DONE_PORT_1;
499
500 while (timeout) {
501 if (er32(EEMNGCTL) & mask)
502 break;
Bruce Allan1bba4382011-03-19 00:27:20 +0000503 usleep_range(1000, 2000);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700504 timeout--;
505 }
506 if (!timeout) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000507 e_dbg("MNG configuration cycle has not completed.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700508 return -E1000_ERR_RESET;
509 }
510
511 return 0;
512}
513
514/**
515 * e1000_phy_force_speed_duplex_80003es2lan - Force PHY speed and duplex
516 * @hw: pointer to the HW structure
517 *
518 * Force the speed and duplex settings onto the PHY. This is a
519 * function pointer entry point called by the phy module.
520 **/
521static s32 e1000_phy_force_speed_duplex_80003es2lan(struct e1000_hw *hw)
522{
523 s32 ret_val;
524 u16 phy_data;
525 bool link;
526
Bruce Allane921eb12012-11-28 09:28:37 +0000527 /* Clear Auto-Crossover to force MDI manually. M88E1000 requires MDI
Auke Kokbc7f75f2007-09-17 12:30:59 -0700528 * forced whenever speed and duplex are forced.
529 */
530 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
531 if (ret_val)
532 return ret_val;
533
534 phy_data &= ~GG82563_PSCR_CROSSOVER_MODE_AUTO;
535 ret_val = e1e_wphy(hw, GG82563_PHY_SPEC_CTRL, phy_data);
536 if (ret_val)
537 return ret_val;
538
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000539 e_dbg("GG82563 PSCR: %X\n", phy_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700540
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000541 ret_val = e1e_rphy(hw, MII_BMCR, &phy_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700542 if (ret_val)
543 return ret_val;
544
545 e1000e_phy_force_speed_duplex_setup(hw, &phy_data);
546
547 /* Reset the phy to commit changes. */
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000548 phy_data |= BMCR_RESET;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700549
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000550 ret_val = e1e_wphy(hw, MII_BMCR, phy_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700551 if (ret_val)
552 return ret_val;
553
554 udelay(1);
555
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700556 if (hw->phy.autoneg_wait_to_complete) {
Bruce Allan434f1392011-12-16 00:46:54 +0000557 e_dbg("Waiting for forced speed/duplex link on GG82563 phy.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700558
559 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
Bruce Allan17e813e2013-02-20 04:06:01 +0000560 100000, &link);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700561 if (ret_val)
562 return ret_val;
563
564 if (!link) {
Bruce Allane921eb12012-11-28 09:28:37 +0000565 /* We didn't get link.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700566 * Reset the DSP and cross our fingers.
567 */
568 ret_val = e1000e_phy_reset_dsp(hw);
569 if (ret_val)
570 return ret_val;
571 }
572
573 /* Try once more */
574 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
Bruce Allan17e813e2013-02-20 04:06:01 +0000575 100000, &link);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700576 if (ret_val)
577 return ret_val;
578 }
579
580 ret_val = e1e_rphy(hw, GG82563_PHY_MAC_SPEC_CTRL, &phy_data);
581 if (ret_val)
582 return ret_val;
583
Bruce Allane921eb12012-11-28 09:28:37 +0000584 /* Resetting the phy means we need to verify the TX_CLK corresponds
Auke Kokbc7f75f2007-09-17 12:30:59 -0700585 * to the link speed. 10Mbps -> 2.5MHz, else 25MHz.
586 */
587 phy_data &= ~GG82563_MSCR_TX_CLK_MASK;
588 if (hw->mac.forced_speed_duplex & E1000_ALL_10_SPEED)
589 phy_data |= GG82563_MSCR_TX_CLK_10MBPS_2_5;
590 else
591 phy_data |= GG82563_MSCR_TX_CLK_100MBPS_25;
592
Bruce Allane921eb12012-11-28 09:28:37 +0000593 /* In addition, we must re-enable CRS on Tx for both half and full
Auke Kokbc7f75f2007-09-17 12:30:59 -0700594 * duplex.
595 */
596 phy_data |= GG82563_MSCR_ASSERT_CRS_ON_TX;
597 ret_val = e1e_wphy(hw, GG82563_PHY_MAC_SPEC_CTRL, phy_data);
598
599 return ret_val;
600}
601
602/**
603 * e1000_get_cable_length_80003es2lan - Set approximate cable length
604 * @hw: pointer to the HW structure
605 *
606 * Find the approximate cable length as measured by the GG82563 PHY.
607 * This is a function pointer entry point called by the phy module.
608 **/
609static s32 e1000_get_cable_length_80003es2lan(struct e1000_hw *hw)
610{
611 struct e1000_phy_info *phy = &hw->phy;
Bruce Allan70806a72013-01-05 05:08:37 +0000612 s32 ret_val;
Bruce Allana708dd82009-11-20 23:28:37 +0000613 u16 phy_data, index;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700614
615 ret_val = e1e_rphy(hw, GG82563_PHY_DSP_DISTANCE, &phy_data);
616 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +0000617 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700618
619 index = phy_data & GG82563_DSPD_CABLE_LENGTH;
Bruce Allaneb656d42009-12-01 15:47:02 +0000620
Bruce Allan5015e532012-02-08 02:55:56 +0000621 if (index >= GG82563_CABLE_LENGTH_TABLE_SIZE - 5)
622 return -E1000_ERR_PHY;
Bruce Allaneb656d42009-12-01 15:47:02 +0000623
Auke Kokbc7f75f2007-09-17 12:30:59 -0700624 phy->min_cable_length = e1000_gg82563_cable_length_table[index];
Bruce Allaneb656d42009-12-01 15:47:02 +0000625 phy->max_cable_length = e1000_gg82563_cable_length_table[index + 5];
Auke Kokbc7f75f2007-09-17 12:30:59 -0700626
627 phy->cable_length = (phy->min_cable_length + phy->max_cable_length) / 2;
628
Bruce Allan5015e532012-02-08 02:55:56 +0000629 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700630}
631
632/**
633 * e1000_get_link_up_info_80003es2lan - Report speed and duplex
634 * @hw: pointer to the HW structure
635 * @speed: pointer to speed buffer
636 * @duplex: pointer to duplex buffer
637 *
638 * Retrieve the current speed and duplex configuration.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700639 **/
640static s32 e1000_get_link_up_info_80003es2lan(struct e1000_hw *hw, u16 *speed,
641 u16 *duplex)
642{
643 s32 ret_val;
644
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700645 if (hw->phy.media_type == e1000_media_type_copper) {
Bruce Allan17e813e2013-02-20 04:06:01 +0000646 ret_val = e1000e_get_speed_and_duplex_copper(hw, speed, duplex);
Bruce Allan75eb0fa2008-11-21 16:53:51 -0800647 hw->phy.ops.cfg_on_link_up(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700648 } else {
649 ret_val = e1000e_get_speed_and_duplex_fiber_serdes(hw,
Bruce Allan17e813e2013-02-20 04:06:01 +0000650 speed,
651 duplex);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700652 }
653
654 return ret_val;
655}
656
657/**
658 * e1000_reset_hw_80003es2lan - Reset the ESB2 controller
659 * @hw: pointer to the HW structure
660 *
661 * Perform a global reset to the ESB2 controller.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700662 **/
663static s32 e1000_reset_hw_80003es2lan(struct e1000_hw *hw)
664{
Bruce Allandd93f952011-01-06 14:29:48 +0000665 u32 ctrl;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700666 s32 ret_val;
Matthew Vick1c1093a2012-03-16 09:02:58 +0000667 u16 kum_reg_data;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700668
Bruce Allane921eb12012-11-28 09:28:37 +0000669 /* Prevent the PCI-E bus from sticking if there is no TLP connection
Auke Kokbc7f75f2007-09-17 12:30:59 -0700670 * on the last TLP read/write transaction when MAC is reset.
671 */
672 ret_val = e1000e_disable_pcie_master(hw);
673 if (ret_val)
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000674 e_dbg("PCI-E Master disable polling has failed.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700675
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000676 e_dbg("Masking off all interrupts\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700677 ew32(IMC, 0xffffffff);
678
679 ew32(RCTL, 0);
680 ew32(TCTL, E1000_TCTL_PSP);
681 e1e_flush();
682
Bruce Allan1bba4382011-03-19 00:27:20 +0000683 usleep_range(10000, 20000);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700684
685 ctrl = er32(CTRL);
686
Bruce Allan75eb0fa2008-11-21 16:53:51 -0800687 ret_val = e1000_acquire_phy_80003es2lan(hw);
Bruce Allan7dbbe5d2013-01-05 05:08:31 +0000688 if (ret_val)
689 return ret_val;
690
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000691 e_dbg("Issuing a global reset to MAC\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700692 ew32(CTRL, ctrl | E1000_CTRL_RST);
Bruce Allan75eb0fa2008-11-21 16:53:51 -0800693 e1000_release_phy_80003es2lan(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700694
Matthew Vick1c1093a2012-03-16 09:02:58 +0000695 /* Disable IBIST slave mode (far-end loopback) */
David Ertman918a4302013-12-14 07:30:39 +0000696 ret_val =
697 e1000_read_kmrn_reg_80003es2lan(hw, E1000_KMRNCTRLSTA_INBAND_PARAM,
698 &kum_reg_data);
699 if (ret_val)
700 return ret_val;
Matthew Vick1c1093a2012-03-16 09:02:58 +0000701 kum_reg_data |= E1000_KMRNCTRLSTA_IBIST_DISABLE;
702 e1000_write_kmrn_reg_80003es2lan(hw, E1000_KMRNCTRLSTA_INBAND_PARAM,
703 kum_reg_data);
704
Auke Kokbc7f75f2007-09-17 12:30:59 -0700705 ret_val = e1000e_get_auto_rd_done(hw);
706 if (ret_val)
707 /* We don't want to continue accessing MAC registers. */
708 return ret_val;
709
710 /* Clear any pending interrupt events. */
711 ew32(IMC, 0xffffffff);
Bruce Allandd93f952011-01-06 14:29:48 +0000712 er32(ICR);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700713
Bruce Allan7eb61d82012-02-08 02:55:03 +0000714 return e1000_check_alt_mac_addr_generic(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700715}
716
717/**
718 * e1000_init_hw_80003es2lan - Initialize the ESB2 controller
719 * @hw: pointer to the HW structure
720 *
721 * Initialize the hw bits, LED, VFTA, MTA, link and hw counters.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700722 **/
723static s32 e1000_init_hw_80003es2lan(struct e1000_hw *hw)
724{
725 struct e1000_mac_info *mac = &hw->mac;
726 u32 reg_data;
727 s32 ret_val;
Bruce Alland9b24132011-05-13 07:19:42 +0000728 u16 kum_reg_data;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700729 u16 i;
730
731 e1000_initialize_hw_bits_80003es2lan(hw);
732
733 /* Initialize identification LED */
Bruce Alland1964eb2012-02-22 09:02:21 +0000734 ret_val = mac->ops.id_led_init(hw);
Bruce Allan33550ce2013-02-20 04:06:16 +0000735 /* An error is not fatal and we should not stop init due to this */
Bruce Allande39b752009-11-20 23:27:59 +0000736 if (ret_val)
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000737 e_dbg("Error initializing identification LED\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700738
739 /* Disabling VLAN filtering */
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000740 e_dbg("Initializing the IEEE VLAN\n");
Bruce Allancaaddaf2009-12-01 15:46:43 +0000741 mac->ops.clear_vfta(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700742
743 /* Setup the receive address. */
744 e1000e_init_rx_addrs(hw, mac->rar_entry_count);
745
746 /* Zero out the Multicast HASH table */
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000747 e_dbg("Zeroing the MTA\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700748 for (i = 0; i < mac->mta_reg_count; i++)
749 E1000_WRITE_REG_ARRAY(hw, E1000_MTA, i, 0);
750
751 /* Setup link and flow control */
Bruce Allan1a46b402012-02-22 09:02:26 +0000752 ret_val = mac->ops.setup_link(hw);
Bruce Allan7dbbe5d2013-01-05 05:08:31 +0000753 if (ret_val)
754 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700755
Bruce Alland9b24132011-05-13 07:19:42 +0000756 /* Disable IBIST slave mode (far-end loopback) */
757 e1000_read_kmrn_reg_80003es2lan(hw, E1000_KMRNCTRLSTA_INBAND_PARAM,
758 &kum_reg_data);
759 kum_reg_data |= E1000_KMRNCTRLSTA_IBIST_DISABLE;
760 e1000_write_kmrn_reg_80003es2lan(hw, E1000_KMRNCTRLSTA_INBAND_PARAM,
761 kum_reg_data);
762
Auke Kokbc7f75f2007-09-17 12:30:59 -0700763 /* Set the transmit descriptor write-back policy */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700764 reg_data = er32(TXDCTL(0));
Bruce Allanf0ff4392013-02-20 04:05:39 +0000765 reg_data = ((reg_data & ~E1000_TXDCTL_WTHRESH) |
766 E1000_TXDCTL_FULL_TX_DESC_WB | E1000_TXDCTL_COUNT_DESC);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700767 ew32(TXDCTL(0), reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700768
769 /* ...for both queues. */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700770 reg_data = er32(TXDCTL(1));
Bruce Allanf0ff4392013-02-20 04:05:39 +0000771 reg_data = ((reg_data & ~E1000_TXDCTL_WTHRESH) |
772 E1000_TXDCTL_FULL_TX_DESC_WB | E1000_TXDCTL_COUNT_DESC);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700773 ew32(TXDCTL(1), reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700774
775 /* Enable retransmit on late collisions */
776 reg_data = er32(TCTL);
777 reg_data |= E1000_TCTL_RTLC;
778 ew32(TCTL, reg_data);
779
780 /* Configure Gigabit Carry Extend Padding */
781 reg_data = er32(TCTL_EXT);
782 reg_data &= ~E1000_TCTL_EXT_GCEX_MASK;
783 reg_data |= DEFAULT_TCTL_EXT_GCEX_80003ES2LAN;
784 ew32(TCTL_EXT, reg_data);
785
786 /* Configure Transmit Inter-Packet Gap */
787 reg_data = er32(TIPG);
788 reg_data &= ~E1000_TIPG_IPGT_MASK;
789 reg_data |= DEFAULT_TIPG_IPGT_1000_80003ES2LAN;
790 ew32(TIPG, reg_data);
791
792 reg_data = E1000_READ_REG_ARRAY(hw, E1000_FFLT, 0x0001);
793 reg_data &= ~0x00100000;
794 E1000_WRITE_REG_ARRAY(hw, E1000_FFLT, 0x0001, reg_data);
795
Bruce Allan3421eec2009-12-08 07:28:20 +0000796 /* default to true to enable the MDIC W/A */
797 hw->dev_spec.e80003es2lan.mdic_wa_enable = true;
798
Bruce Allanf0ff4392013-02-20 04:05:39 +0000799 ret_val =
800 e1000_read_kmrn_reg_80003es2lan(hw, E1000_KMRNCTRLSTA_OFFSET >>
801 E1000_KMRNCTRLSTA_OFFSET_SHIFT, &i);
Bruce Allan3421eec2009-12-08 07:28:20 +0000802 if (!ret_val) {
803 if ((i & E1000_KMRNCTRLSTA_OPMODE_MASK) ==
Bruce Allan17e813e2013-02-20 04:06:01 +0000804 E1000_KMRNCTRLSTA_OPMODE_INBAND_MDIO)
Bruce Allan3421eec2009-12-08 07:28:20 +0000805 hw->dev_spec.e80003es2lan.mdic_wa_enable = false;
806 }
807
Bruce Allane921eb12012-11-28 09:28:37 +0000808 /* Clear all of the statistics registers (clear on read). It is
Auke Kokbc7f75f2007-09-17 12:30:59 -0700809 * important that we do this after we have tried to establish link
810 * because the symbol error count will increment wildly if there
811 * is no link.
812 */
813 e1000_clear_hw_cntrs_80003es2lan(hw);
814
815 return ret_val;
816}
817
818/**
819 * e1000_initialize_hw_bits_80003es2lan - Init hw bits of ESB2
820 * @hw: pointer to the HW structure
821 *
822 * Initializes required hardware-dependent bits needed for normal operation.
823 **/
824static void e1000_initialize_hw_bits_80003es2lan(struct e1000_hw *hw)
825{
826 u32 reg;
827
828 /* Transmit Descriptor Control 0 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700829 reg = er32(TXDCTL(0));
Jacob Keller18dd2392016-04-13 16:08:32 -0700830 reg |= BIT(22);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700831 ew32(TXDCTL(0), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700832
833 /* Transmit Descriptor Control 1 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700834 reg = er32(TXDCTL(1));
Jacob Keller18dd2392016-04-13 16:08:32 -0700835 reg |= BIT(22);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700836 ew32(TXDCTL(1), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700837
838 /* Transmit Arbitration Control 0 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700839 reg = er32(TARC(0));
Bruce Allane80bd1d2013-05-01 01:19:46 +0000840 reg &= ~(0xF << 27); /* 30:27 */
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700841 if (hw->phy.media_type != e1000_media_type_copper)
Jacob Keller18dd2392016-04-13 16:08:32 -0700842 reg &= ~BIT(20);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700843 ew32(TARC(0), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700844
845 /* Transmit Arbitration Control 1 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700846 reg = er32(TARC(1));
Auke Kokbc7f75f2007-09-17 12:30:59 -0700847 if (er32(TCTL) & E1000_TCTL_MULR)
Jacob Keller18dd2392016-04-13 16:08:32 -0700848 reg &= ~BIT(28);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700849 else
Jacob Keller18dd2392016-04-13 16:08:32 -0700850 reg |= BIT(28);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700851 ew32(TARC(1), reg);
Matthew Vickf6bd5572012-04-25 08:01:05 +0000852
Bruce Allane921eb12012-11-28 09:28:37 +0000853 /* Disable IPv6 extension header parsing because some malformed
Matthew Vickf6bd5572012-04-25 08:01:05 +0000854 * IPv6 headers can hang the Rx.
855 */
856 reg = er32(RFCTL);
857 reg |= (E1000_RFCTL_IPV6_EX_DIS | E1000_RFCTL_NEW_IPV6_EXT_DIS);
858 ew32(RFCTL, reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700859}
860
861/**
862 * e1000_copper_link_setup_gg82563_80003es2lan - Configure GG82563 Link
863 * @hw: pointer to the HW structure
864 *
865 * Setup some GG82563 PHY registers for obtaining link
866 **/
867static s32 e1000_copper_link_setup_gg82563_80003es2lan(struct e1000_hw *hw)
868{
869 struct e1000_phy_info *phy = &hw->phy;
870 s32 ret_val;
Bruce Allan17e813e2013-02-20 04:06:01 +0000871 u32 reg;
Bruce Allan75eb0fa2008-11-21 16:53:51 -0800872 u16 data;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700873
David Graham2d9498f2008-04-23 11:09:14 -0700874 ret_val = e1e_rphy(hw, GG82563_PHY_MAC_SPEC_CTRL, &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700875 if (ret_val)
876 return ret_val;
877
878 data |= GG82563_MSCR_ASSERT_CRS_ON_TX;
879 /* Use 25MHz for both link down and 1000Base-T for Tx clock. */
880 data |= GG82563_MSCR_TX_CLK_1000MBPS_25;
881
David Graham2d9498f2008-04-23 11:09:14 -0700882 ret_val = e1e_wphy(hw, GG82563_PHY_MAC_SPEC_CTRL, data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700883 if (ret_val)
884 return ret_val;
885
Bruce Allane921eb12012-11-28 09:28:37 +0000886 /* Options:
Auke Kokbc7f75f2007-09-17 12:30:59 -0700887 * MDI/MDI-X = 0 (default)
888 * 0 - Auto for all speeds
889 * 1 - MDI mode
890 * 2 - MDI-X mode
891 * 3 - Auto for 1000Base-T only (MDI-X for 10/100Base-T modes)
892 */
893 ret_val = e1e_rphy(hw, GG82563_PHY_SPEC_CTRL, &data);
894 if (ret_val)
895 return ret_val;
896
897 data &= ~GG82563_PSCR_CROSSOVER_MODE_MASK;
898
899 switch (phy->mdix) {
900 case 1:
901 data |= GG82563_PSCR_CROSSOVER_MODE_MDI;
902 break;
903 case 2:
904 data |= GG82563_PSCR_CROSSOVER_MODE_MDIX;
905 break;
906 case 0:
907 default:
908 data |= GG82563_PSCR_CROSSOVER_MODE_AUTO;
909 break;
910 }
911
Bruce Allane921eb12012-11-28 09:28:37 +0000912 /* Options:
Auke Kokbc7f75f2007-09-17 12:30:59 -0700913 * disable_polarity_correction = 0 (default)
914 * Automatic Correction for Reversed Cable Polarity
915 * 0 - Disabled
916 * 1 - Enabled
917 */
918 data &= ~GG82563_PSCR_POLARITY_REVERSAL_DISABLE;
919 if (phy->disable_polarity_correction)
920 data |= GG82563_PSCR_POLARITY_REVERSAL_DISABLE;
921
922 ret_val = e1e_wphy(hw, GG82563_PHY_SPEC_CTRL, data);
923 if (ret_val)
924 return ret_val;
925
926 /* SW Reset the PHY so all changes take effect */
Bruce Allan6b598e12013-01-23 06:50:05 +0000927 ret_val = hw->phy.ops.commit(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700928 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000929 e_dbg("Error Resetting the PHY\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700930 return ret_val;
931 }
932
Bruce Allanad680762008-03-28 09:15:03 -0700933 /* Bypass Rx and Tx FIFO's */
Bruce Allan17e813e2013-02-20 04:06:01 +0000934 reg = E1000_KMRNCTRLSTA_OFFSET_FIFO_CTRL;
935 data = (E1000_KMRNCTRLSTA_FIFO_CTRL_RX_BYPASS |
936 E1000_KMRNCTRLSTA_FIFO_CTRL_TX_BYPASS);
937 ret_val = e1000_write_kmrn_reg_80003es2lan(hw, reg, data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700938 if (ret_val)
939 return ret_val;
940
Bruce Allan17e813e2013-02-20 04:06:01 +0000941 reg = E1000_KMRNCTRLSTA_OFFSET_MAC2PHY_OPMODE;
942 ret_val = e1000_read_kmrn_reg_80003es2lan(hw, reg, &data);
David Graham2d9498f2008-04-23 11:09:14 -0700943 if (ret_val)
944 return ret_val;
945 data |= E1000_KMRNCTRLSTA_OPMODE_E_IDLE;
Bruce Allan17e813e2013-02-20 04:06:01 +0000946 ret_val = e1000_write_kmrn_reg_80003es2lan(hw, reg, data);
David Graham2d9498f2008-04-23 11:09:14 -0700947 if (ret_val)
948 return ret_val;
949
Auke Kokbc7f75f2007-09-17 12:30:59 -0700950 ret_val = e1e_rphy(hw, GG82563_PHY_SPEC_CTRL_2, &data);
951 if (ret_val)
952 return ret_val;
953
954 data &= ~GG82563_PSCR2_REVERSE_AUTO_NEG;
955 ret_val = e1e_wphy(hw, GG82563_PHY_SPEC_CTRL_2, data);
956 if (ret_val)
957 return ret_val;
958
Bruce Allan17e813e2013-02-20 04:06:01 +0000959 reg = er32(CTRL_EXT);
960 reg &= ~E1000_CTRL_EXT_LINK_MODE_MASK;
961 ew32(CTRL_EXT, reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700962
963 ret_val = e1e_rphy(hw, GG82563_PHY_PWR_MGMT_CTRL, &data);
964 if (ret_val)
965 return ret_val;
966
Bruce Allane921eb12012-11-28 09:28:37 +0000967 /* Do not init these registers when the HW is in IAMT mode, since the
Auke Kokbc7f75f2007-09-17 12:30:59 -0700968 * firmware will have already initialized them. We only initialize
969 * them if the HW is not in IAMT mode.
970 */
Bruce Allan48768322012-02-22 09:02:32 +0000971 if (!hw->mac.ops.check_mng_mode(hw)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700972 /* Enable Electrical Idle on the PHY */
973 data |= GG82563_PMCR_ENABLE_ELECTRICAL_IDLE;
974 ret_val = e1e_wphy(hw, GG82563_PHY_PWR_MGMT_CTRL, data);
975 if (ret_val)
976 return ret_val;
977
Bruce Allan75eb0fa2008-11-21 16:53:51 -0800978 ret_val = e1e_rphy(hw, GG82563_PHY_KMRN_MODE_CTRL, &data);
979 if (ret_val)
980 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700981
982 data &= ~GG82563_KMCR_PASS_FALSE_CARRIER;
983 ret_val = e1e_wphy(hw, GG82563_PHY_KMRN_MODE_CTRL, data);
984 if (ret_val)
985 return ret_val;
986 }
987
Bruce Allane921eb12012-11-28 09:28:37 +0000988 /* Workaround: Disable padding in Kumeran interface in the MAC
Auke Kokbc7f75f2007-09-17 12:30:59 -0700989 * and in the PHY to avoid CRC errors.
990 */
991 ret_val = e1e_rphy(hw, GG82563_PHY_INBAND_CTRL, &data);
992 if (ret_val)
993 return ret_val;
994
995 data |= GG82563_ICR_DIS_PADDING;
996 ret_val = e1e_wphy(hw, GG82563_PHY_INBAND_CTRL, data);
997 if (ret_val)
998 return ret_val;
999
1000 return 0;
1001}
1002
1003/**
1004 * e1000_setup_copper_link_80003es2lan - Setup Copper Link for ESB2
1005 * @hw: pointer to the HW structure
1006 *
1007 * Essentially a wrapper for setting up all things "copper" related.
1008 * This is a function pointer entry point called by the mac module.
1009 **/
1010static s32 e1000_setup_copper_link_80003es2lan(struct e1000_hw *hw)
1011{
1012 u32 ctrl;
1013 s32 ret_val;
1014 u16 reg_data;
1015
1016 ctrl = er32(CTRL);
1017 ctrl |= E1000_CTRL_SLU;
1018 ctrl &= ~(E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX);
1019 ew32(CTRL, ctrl);
1020
Bruce Allane921eb12012-11-28 09:28:37 +00001021 /* Set the mac to wait the maximum time between each
Auke Kokbc7f75f2007-09-17 12:30:59 -07001022 * iteration and increase the max iterations when
Bruce Allanad680762008-03-28 09:15:03 -07001023 * polling the phy; this fixes erroneous timeouts at 10Mbps.
1024 */
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001025 ret_val = e1000_write_kmrn_reg_80003es2lan(hw, GG82563_REG(0x34, 4),
Bruce Allanf0ff4392013-02-20 04:05:39 +00001026 0xFFFF);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001027 if (ret_val)
1028 return ret_val;
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001029 ret_val = e1000_read_kmrn_reg_80003es2lan(hw, GG82563_REG(0x34, 9),
Bruce Allanf0ff4392013-02-20 04:05:39 +00001030 &reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001031 if (ret_val)
1032 return ret_val;
1033 reg_data |= 0x3F;
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001034 ret_val = e1000_write_kmrn_reg_80003es2lan(hw, GG82563_REG(0x34, 9),
Bruce Allanf0ff4392013-02-20 04:05:39 +00001035 reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001036 if (ret_val)
1037 return ret_val;
Bruce Allanf0ff4392013-02-20 04:05:39 +00001038 ret_val =
1039 e1000_read_kmrn_reg_80003es2lan(hw,
1040 E1000_KMRNCTRLSTA_OFFSET_INB_CTRL,
1041 &reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001042 if (ret_val)
1043 return ret_val;
1044 reg_data |= E1000_KMRNCTRLSTA_INB_CTRL_DIS_PADDING;
Bruce Allanf0ff4392013-02-20 04:05:39 +00001045 ret_val =
1046 e1000_write_kmrn_reg_80003es2lan(hw,
1047 E1000_KMRNCTRLSTA_OFFSET_INB_CTRL,
1048 reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001049 if (ret_val)
1050 return ret_val;
1051
1052 ret_val = e1000_copper_link_setup_gg82563_80003es2lan(hw);
1053 if (ret_val)
1054 return ret_val;
1055
Bruce Allan8649f432012-02-08 02:54:58 +00001056 return e1000e_setup_copper_link(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001057}
1058
1059/**
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001060 * e1000_cfg_on_link_up_80003es2lan - es2 link configuration after link-up
1061 * @hw: pointer to the HW structure
1062 * @duplex: current duplex setting
1063 *
1064 * Configure the KMRN interface by applying last minute quirks for
1065 * 10/100 operation.
1066 **/
1067static s32 e1000_cfg_on_link_up_80003es2lan(struct e1000_hw *hw)
1068{
1069 s32 ret_val = 0;
1070 u16 speed;
1071 u16 duplex;
1072
1073 if (hw->phy.media_type == e1000_media_type_copper) {
1074 ret_val = e1000e_get_speed_and_duplex_copper(hw, &speed,
Bruce Allanf0ff4392013-02-20 04:05:39 +00001075 &duplex);
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001076 if (ret_val)
1077 return ret_val;
1078
1079 if (speed == SPEED_1000)
1080 ret_val = e1000_cfg_kmrn_1000_80003es2lan(hw);
1081 else
1082 ret_val = e1000_cfg_kmrn_10_100_80003es2lan(hw, duplex);
1083 }
1084
1085 return ret_val;
1086}
1087
1088/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001089 * e1000_cfg_kmrn_10_100_80003es2lan - Apply "quirks" for 10/100 operation
1090 * @hw: pointer to the HW structure
1091 * @duplex: current duplex setting
1092 *
1093 * Configure the KMRN interface by applying last minute quirks for
1094 * 10/100 operation.
1095 **/
1096static s32 e1000_cfg_kmrn_10_100_80003es2lan(struct e1000_hw *hw, u16 duplex)
1097{
1098 s32 ret_val;
1099 u32 tipg;
David Graham2d9498f2008-04-23 11:09:14 -07001100 u32 i = 0;
1101 u16 reg_data, reg_data2;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001102
1103 reg_data = E1000_KMRNCTRLSTA_HD_CTRL_10_100_DEFAULT;
Bruce Allanf0ff4392013-02-20 04:05:39 +00001104 ret_val =
1105 e1000_write_kmrn_reg_80003es2lan(hw,
1106 E1000_KMRNCTRLSTA_OFFSET_HD_CTRL,
1107 reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001108 if (ret_val)
1109 return ret_val;
1110
1111 /* Configure Transmit Inter-Packet Gap */
1112 tipg = er32(TIPG);
1113 tipg &= ~E1000_TIPG_IPGT_MASK;
1114 tipg |= DEFAULT_TIPG_IPGT_10_100_80003ES2LAN;
1115 ew32(TIPG, tipg);
1116
David Graham2d9498f2008-04-23 11:09:14 -07001117 do {
1118 ret_val = e1e_rphy(hw, GG82563_PHY_KMRN_MODE_CTRL, &reg_data);
1119 if (ret_val)
1120 return ret_val;
1121
1122 ret_val = e1e_rphy(hw, GG82563_PHY_KMRN_MODE_CTRL, &reg_data2);
1123 if (ret_val)
1124 return ret_val;
1125 i++;
1126 } while ((reg_data != reg_data2) && (i < GG82563_MAX_KMRN_RETRY));
Auke Kokbc7f75f2007-09-17 12:30:59 -07001127
1128 if (duplex == HALF_DUPLEX)
1129 reg_data |= GG82563_KMCR_PASS_FALSE_CARRIER;
1130 else
1131 reg_data &= ~GG82563_KMCR_PASS_FALSE_CARRIER;
1132
Bruce Allan520d6f22012-02-08 02:54:53 +00001133 return e1e_wphy(hw, GG82563_PHY_KMRN_MODE_CTRL, reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001134}
1135
1136/**
1137 * e1000_cfg_kmrn_1000_80003es2lan - Apply "quirks" for gigabit operation
1138 * @hw: pointer to the HW structure
1139 *
1140 * Configure the KMRN interface by applying last minute quirks for
1141 * gigabit operation.
1142 **/
1143static s32 e1000_cfg_kmrn_1000_80003es2lan(struct e1000_hw *hw)
1144{
1145 s32 ret_val;
David Graham2d9498f2008-04-23 11:09:14 -07001146 u16 reg_data, reg_data2;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001147 u32 tipg;
David Graham2d9498f2008-04-23 11:09:14 -07001148 u32 i = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001149
1150 reg_data = E1000_KMRNCTRLSTA_HD_CTRL_1000_DEFAULT;
Bruce Allanf0ff4392013-02-20 04:05:39 +00001151 ret_val =
1152 e1000_write_kmrn_reg_80003es2lan(hw,
1153 E1000_KMRNCTRLSTA_OFFSET_HD_CTRL,
1154 reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001155 if (ret_val)
1156 return ret_val;
1157
1158 /* Configure Transmit Inter-Packet Gap */
1159 tipg = er32(TIPG);
1160 tipg &= ~E1000_TIPG_IPGT_MASK;
1161 tipg |= DEFAULT_TIPG_IPGT_1000_80003ES2LAN;
1162 ew32(TIPG, tipg);
1163
David Graham2d9498f2008-04-23 11:09:14 -07001164 do {
1165 ret_val = e1e_rphy(hw, GG82563_PHY_KMRN_MODE_CTRL, &reg_data);
1166 if (ret_val)
1167 return ret_val;
1168
1169 ret_val = e1e_rphy(hw, GG82563_PHY_KMRN_MODE_CTRL, &reg_data2);
1170 if (ret_val)
1171 return ret_val;
1172 i++;
1173 } while ((reg_data != reg_data2) && (i < GG82563_MAX_KMRN_RETRY));
Auke Kokbc7f75f2007-09-17 12:30:59 -07001174
1175 reg_data &= ~GG82563_KMCR_PASS_FALSE_CARRIER;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001176
Bruce Allan7eb61d82012-02-08 02:55:03 +00001177 return e1e_wphy(hw, GG82563_PHY_KMRN_MODE_CTRL, reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001178}
1179
1180/**
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001181 * e1000_read_kmrn_reg_80003es2lan - Read kumeran register
1182 * @hw: pointer to the HW structure
1183 * @offset: register offset to be read
1184 * @data: pointer to the read data
1185 *
1186 * Acquire semaphore, then read the PHY register at offset
1187 * using the kumeran interface. The information retrieved is stored in data.
1188 * Release the semaphore before exiting.
1189 **/
Hannes Ederfa4c16d2008-12-22 09:16:13 +00001190static s32 e1000_read_kmrn_reg_80003es2lan(struct e1000_hw *hw, u32 offset,
1191 u16 *data)
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001192{
1193 u32 kmrnctrlsta;
Bruce Allan70806a72013-01-05 05:08:37 +00001194 s32 ret_val;
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001195
1196 ret_val = e1000_acquire_mac_csr_80003es2lan(hw);
1197 if (ret_val)
1198 return ret_val;
1199
1200 kmrnctrlsta = ((offset << E1000_KMRNCTRLSTA_OFFSET_SHIFT) &
Bruce Allanf0ff4392013-02-20 04:05:39 +00001201 E1000_KMRNCTRLSTA_OFFSET) | E1000_KMRNCTRLSTA_REN;
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001202 ew32(KMRNCTRLSTA, kmrnctrlsta);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001203 e1e_flush();
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001204
1205 udelay(2);
1206
1207 kmrnctrlsta = er32(KMRNCTRLSTA);
1208 *data = (u16)kmrnctrlsta;
1209
1210 e1000_release_mac_csr_80003es2lan(hw);
1211
1212 return ret_val;
1213}
1214
1215/**
1216 * e1000_write_kmrn_reg_80003es2lan - Write kumeran register
1217 * @hw: pointer to the HW structure
1218 * @offset: register offset to write to
1219 * @data: data to write at register offset
1220 *
1221 * Acquire semaphore, then write the data to PHY register
1222 * at the offset using the kumeran interface. Release semaphore
1223 * before exiting.
1224 **/
Hannes Ederfa4c16d2008-12-22 09:16:13 +00001225static s32 e1000_write_kmrn_reg_80003es2lan(struct e1000_hw *hw, u32 offset,
1226 u16 data)
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001227{
1228 u32 kmrnctrlsta;
Bruce Allan70806a72013-01-05 05:08:37 +00001229 s32 ret_val;
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001230
1231 ret_val = e1000_acquire_mac_csr_80003es2lan(hw);
1232 if (ret_val)
1233 return ret_val;
1234
1235 kmrnctrlsta = ((offset << E1000_KMRNCTRLSTA_OFFSET_SHIFT) &
Bruce Allanf0ff4392013-02-20 04:05:39 +00001236 E1000_KMRNCTRLSTA_OFFSET) | data;
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001237 ew32(KMRNCTRLSTA, kmrnctrlsta);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001238 e1e_flush();
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001239
1240 udelay(2);
1241
1242 e1000_release_mac_csr_80003es2lan(hw);
1243
1244 return ret_val;
1245}
1246
1247/**
Bruce Allan608f8a02010-01-13 02:04:58 +00001248 * e1000_read_mac_addr_80003es2lan - Read device MAC address
1249 * @hw: pointer to the HW structure
1250 **/
1251static s32 e1000_read_mac_addr_80003es2lan(struct e1000_hw *hw)
1252{
Bruce Allan70806a72013-01-05 05:08:37 +00001253 s32 ret_val;
Bruce Allan608f8a02010-01-13 02:04:58 +00001254
Bruce Allane921eb12012-11-28 09:28:37 +00001255 /* If there's an alternate MAC address place it in RAR0
Bruce Allan608f8a02010-01-13 02:04:58 +00001256 * so that it will override the Si installed default perm
1257 * address.
1258 */
1259 ret_val = e1000_check_alt_mac_addr_generic(hw);
1260 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001261 return ret_val;
Bruce Allan608f8a02010-01-13 02:04:58 +00001262
Bruce Allan5015e532012-02-08 02:55:56 +00001263 return e1000_read_mac_addr_generic(hw);
Bruce Allan608f8a02010-01-13 02:04:58 +00001264}
1265
1266/**
Bruce Allan17f208d2009-12-01 15:47:22 +00001267 * e1000_power_down_phy_copper_80003es2lan - Remove link during PHY power down
1268 * @hw: pointer to the HW structure
1269 *
1270 * In the case of a PHY power down to save power, or to turn off link during a
1271 * driver unload, or wake on lan is not enabled, remove the link.
1272 **/
1273static void e1000_power_down_phy_copper_80003es2lan(struct e1000_hw *hw)
1274{
1275 /* If the management interface is not enabled, then power down */
1276 if (!(hw->mac.ops.check_mng_mode(hw) ||
1277 hw->phy.ops.check_reset_block(hw)))
1278 e1000_power_down_phy_copper(hw);
Bruce Allan17f208d2009-12-01 15:47:22 +00001279}
1280
1281/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001282 * e1000_clear_hw_cntrs_80003es2lan - Clear device specific hardware counters
1283 * @hw: pointer to the HW structure
1284 *
1285 * Clears the hardware counters by reading the counter registers.
1286 **/
1287static void e1000_clear_hw_cntrs_80003es2lan(struct e1000_hw *hw)
1288{
Auke Kokbc7f75f2007-09-17 12:30:59 -07001289 e1000e_clear_hw_cntrs_base(hw);
1290
Bruce Allan99673d92009-11-20 23:27:21 +00001291 er32(PRC64);
1292 er32(PRC127);
1293 er32(PRC255);
1294 er32(PRC511);
1295 er32(PRC1023);
1296 er32(PRC1522);
1297 er32(PTC64);
1298 er32(PTC127);
1299 er32(PTC255);
1300 er32(PTC511);
1301 er32(PTC1023);
1302 er32(PTC1522);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001303
Bruce Allan99673d92009-11-20 23:27:21 +00001304 er32(ALGNERRC);
1305 er32(RXERRC);
1306 er32(TNCRS);
1307 er32(CEXTERR);
1308 er32(TSCTC);
1309 er32(TSCTFC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001310
Bruce Allan99673d92009-11-20 23:27:21 +00001311 er32(MGTPRC);
1312 er32(MGTPDC);
1313 er32(MGTPTC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001314
Bruce Allan99673d92009-11-20 23:27:21 +00001315 er32(IAC);
1316 er32(ICRXOC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001317
Bruce Allan99673d92009-11-20 23:27:21 +00001318 er32(ICRXPTC);
1319 er32(ICRXATC);
1320 er32(ICTXPTC);
1321 er32(ICTXATC);
1322 er32(ICTXQEC);
1323 er32(ICTXQMTC);
1324 er32(ICRXDMTC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001325}
1326
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00001327static const struct e1000_mac_operations es2_mac_ops = {
Bruce Allan608f8a02010-01-13 02:04:58 +00001328 .read_mac_addr = e1000_read_mac_addr_80003es2lan,
Bruce Alland1964eb2012-02-22 09:02:21 +00001329 .id_led_init = e1000e_id_led_init_generic,
Bruce Allandbf80dc2011-04-16 00:34:40 +00001330 .blink_led = e1000e_blink_led_generic,
Bruce Allan4662e822008-08-26 18:37:06 -07001331 .check_mng_mode = e1000e_check_mng_mode_generic,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001332 /* check_for_link dependent on media type */
1333 .cleanup_led = e1000e_cleanup_led_generic,
1334 .clear_hw_cntrs = e1000_clear_hw_cntrs_80003es2lan,
1335 .get_bus_info = e1000e_get_bus_info_pcie,
Bruce Allanf4d2dd42010-01-13 02:05:18 +00001336 .set_lan_id = e1000_set_lan_id_multi_port_pcie,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001337 .get_link_up_info = e1000_get_link_up_info_80003es2lan,
1338 .led_on = e1000e_led_on_generic,
1339 .led_off = e1000e_led_off_generic,
Jeff Kirshere2de3eb2008-03-28 09:15:11 -07001340 .update_mc_addr_list = e1000e_update_mc_addr_list_generic,
Bruce Allancaaddaf2009-12-01 15:46:43 +00001341 .write_vfta = e1000_write_vfta_generic,
1342 .clear_vfta = e1000_clear_vfta_generic,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001343 .reset_hw = e1000_reset_hw_80003es2lan,
1344 .init_hw = e1000_init_hw_80003es2lan,
Bruce Allan1a46b402012-02-22 09:02:26 +00001345 .setup_link = e1000e_setup_link_generic,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001346 /* setup_physical_interface dependent on media type */
Bruce Allana4f58f52009-06-02 11:29:18 +00001347 .setup_led = e1000e_setup_led_generic,
Bruce Allan57cde762012-02-22 09:02:58 +00001348 .config_collision_dist = e1000e_config_collision_dist_generic,
Bruce Allan69e1e012012-04-14 03:28:50 +00001349 .rar_set = e1000e_rar_set_generic,
David Ertmanb3e5bf12014-05-06 03:50:17 +00001350 .rar_get_count = e1000e_rar_get_count_generic,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001351};
1352
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00001353static const struct e1000_phy_operations es2_phy_ops = {
Bruce Allan94d81862009-11-20 23:25:26 +00001354 .acquire = e1000_acquire_phy_80003es2lan,
Bruce Allan94e5b652009-12-02 17:02:14 +00001355 .check_polarity = e1000_check_polarity_m88,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001356 .check_reset_block = e1000e_check_reset_block_generic,
Bruce Allan55c5f552013-01-12 07:28:24 +00001357 .commit = e1000e_phy_sw_reset,
1358 .force_speed_duplex = e1000_phy_force_speed_duplex_80003es2lan,
1359 .get_cfg_done = e1000_get_cfg_done_80003es2lan,
1360 .get_cable_length = e1000_get_cable_length_80003es2lan,
1361 .get_info = e1000e_get_phy_info_m88,
1362 .read_reg = e1000_read_phy_reg_gg82563_80003es2lan,
Bruce Allan94d81862009-11-20 23:25:26 +00001363 .release = e1000_release_phy_80003es2lan,
Bruce Allan55c5f552013-01-12 07:28:24 +00001364 .reset = e1000e_phy_hw_reset_generic,
1365 .set_d0_lplu_state = NULL,
1366 .set_d3_lplu_state = e1000e_set_d3_lplu_state,
1367 .write_reg = e1000_write_phy_reg_gg82563_80003es2lan,
1368 .cfg_on_link_up = e1000_cfg_on_link_up_80003es2lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001369};
1370
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00001371static const struct e1000_nvm_operations es2_nvm_ops = {
Bruce Allan94d81862009-11-20 23:25:26 +00001372 .acquire = e1000_acquire_nvm_80003es2lan,
1373 .read = e1000e_read_nvm_eerd,
1374 .release = e1000_release_nvm_80003es2lan,
Bruce Allane85e3632012-02-22 09:03:14 +00001375 .reload = e1000e_reload_nvm_generic,
Bruce Allan94d81862009-11-20 23:25:26 +00001376 .update = e1000e_update_nvm_checksum_generic,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001377 .valid_led_default = e1000e_valid_led_default,
Bruce Allan94d81862009-11-20 23:25:26 +00001378 .validate = e1000e_validate_nvm_checksum_generic,
1379 .write = e1000_write_nvm_80003es2lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001380};
1381
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00001382const struct e1000_info e1000_es2_info = {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001383 .mac = e1000_80003es2lan,
1384 .flags = FLAG_HAS_HW_VLAN_FILTER
1385 | FLAG_HAS_JUMBO_FRAMES
Auke Kokbc7f75f2007-09-17 12:30:59 -07001386 | FLAG_HAS_WOL
1387 | FLAG_APME_IN_CTRL3
Auke Kokbc7f75f2007-09-17 12:30:59 -07001388 | FLAG_HAS_CTRLEXT_ON_LOAD
Auke Kokbc7f75f2007-09-17 12:30:59 -07001389 | FLAG_RX_NEEDS_RESTART /* errata */
1390 | FLAG_TARC_SET_BIT_ZERO /* errata */
1391 | FLAG_APME_CHECK_PORT_B
Bruce Allan6a92f732011-12-16 00:46:12 +00001392 | FLAG_DISABLE_FC_PAUSE_TIME, /* errata */
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00001393 .flags2 = FLAG2_DMA_BURST,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001394 .pba = 38,
Bruce Allan2adc55c2009-06-02 11:28:58 +00001395 .max_hw_frame_size = DEFAULT_JUMBO,
Jeff Kirsher69e3fd82008-04-02 13:48:18 -07001396 .get_variants = e1000_get_variants_80003es2lan,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001397 .mac_ops = &es2_mac_ops,
1398 .phy_ops = &es2_phy_ops,
1399 .nvm_ops = &es2_nvm_ops,
1400};