3881 want device driver for HP SmartArray RAID controllers
[illumos-gate.git] / usr / src / uts / common / io / e1000g / e1000_80003es2lan.c
blob2d33c22c222ac298738510904a1cf8b6979090d3
1 /*
2 * This file is provided under a CDDLv1 license. When using or
3 * redistributing this file, you may do so under this license.
4 * In redistributing this file this license must be included
5 * and no other modification of this header file is permitted.
7 * CDDL LICENSE SUMMARY
9 * Copyright(c) 1999 - 2009 Intel Corporation. All rights reserved.
11 * The contents of this file are subject to the terms of Version
12 * 1.0 of the Common Development and Distribution License (the "License").
14 * You should have received a copy of the License with this software.
15 * You can obtain a copy of the License at
16 * http://www.opensolaris.org/os/licensing.
17 * See the License for the specific language governing permissions
18 * and limitations under the License.
22 * Copyright 2009 Sun Microsystems, Inc. All rights reserved.
23 * Use is subject to license terms of the CDDLv1.
27 * IntelVersion: 1.86 v3-1-10-1_2009-9-18_Release14-6
30 * 80003ES2LAN Gigabit Ethernet Controller (Copper)
31 * 80003ES2LAN Gigabit Ethernet Controller (Serdes)
34 #include "e1000_api.h"
36 static s32 e1000_init_phy_params_80003es2lan(struct e1000_hw *hw);
37 static s32 e1000_init_nvm_params_80003es2lan(struct e1000_hw *hw);
38 static s32 e1000_init_mac_params_80003es2lan(struct e1000_hw *hw);
39 static s32 e1000_acquire_phy_80003es2lan(struct e1000_hw *hw);
40 static void e1000_release_phy_80003es2lan(struct e1000_hw *hw);
41 static s32 e1000_acquire_nvm_80003es2lan(struct e1000_hw *hw);
42 static void e1000_release_nvm_80003es2lan(struct e1000_hw *hw);
43 static s32 e1000_read_phy_reg_gg82563_80003es2lan(struct e1000_hw *hw,
44 u32 offset, u16 *data);
45 static s32 e1000_write_phy_reg_gg82563_80003es2lan(struct e1000_hw *hw,
46 u32 offset, u16 data);
47 static s32 e1000_write_nvm_80003es2lan(struct e1000_hw *hw, u16 offset,
48 u16 words, u16 *data);
49 static s32 e1000_get_cfg_done_80003es2lan(struct e1000_hw *hw);
50 static s32 e1000_phy_force_speed_duplex_80003es2lan(struct e1000_hw *hw);
51 static s32 e1000_get_cable_length_80003es2lan(struct e1000_hw *hw);
52 static s32 e1000_get_link_up_info_80003es2lan(struct e1000_hw *hw, u16 *speed,
53 u16 *duplex);
54 static s32 e1000_reset_hw_80003es2lan(struct e1000_hw *hw);
55 static s32 e1000_init_hw_80003es2lan(struct e1000_hw *hw);
56 static s32 e1000_setup_copper_link_80003es2lan(struct e1000_hw *hw);
57 static void e1000_clear_hw_cntrs_80003es2lan(struct e1000_hw *hw);
58 static s32 e1000_acquire_swfw_sync_80003es2lan(struct e1000_hw *hw, u16 mask);
59 static s32 e1000_cfg_kmrn_10_100_80003es2lan(struct e1000_hw *hw, u16 duplex);
60 static s32 e1000_cfg_kmrn_1000_80003es2lan(struct e1000_hw *hw);
61 static s32 e1000_cfg_on_link_up_80003es2lan(struct e1000_hw *hw);
62 static s32 e1000_read_kmrn_reg_80003es2lan(struct e1000_hw *hw, u32 offset,
63 u16 *data);
64 static s32 e1000_write_kmrn_reg_80003es2lan(struct e1000_hw *hw, u32 offset,
65 u16 data);
66 static s32 e1000_copper_link_setup_gg82563_80003es2lan(struct e1000_hw *hw);
67 static void e1000_initialize_hw_bits_80003es2lan(struct e1000_hw *hw);
68 static void e1000_release_swfw_sync_80003es2lan(struct e1000_hw *hw, u16 mask);
69 static s32 e1000_read_mac_addr_80003es2lan(struct e1000_hw *hw);
70 static void e1000_power_down_phy_copper_80003es2lan(struct e1000_hw *hw);
73 * A table for the GG82563 cable length where the range is defined with a
74 * lower bound at "index" and the upper bound at "index + 5".
76 static const u16 e1000_gg82563_cable_length_table[] =
77 {0, 60, 115, 150, 150, 60, 115, 150, 180, 180, 0xFF};
79 #define GG82563_CABLE_LENGTH_TABLE_SIZE \
80 (sizeof (e1000_gg82563_cable_length_table) / \
81 sizeof (e1000_gg82563_cable_length_table[0]))
84 * e1000_init_phy_params_80003es2lan - Init ESB2 PHY func ptrs.
85 * @hw: pointer to the HW structure
87 static s32
88 e1000_init_phy_params_80003es2lan(struct e1000_hw *hw)
90 struct e1000_phy_info *phy = &hw->phy;
91 s32 ret_val = E1000_SUCCESS;
93 DEBUGFUNC("e1000_init_phy_params_80003es2lan");
95 if (hw->phy.media_type != e1000_media_type_copper) {
96 phy->type = e1000_phy_none;
97 goto out;
98 } else {
99 phy->ops.power_up = e1000_power_up_phy_copper;
100 phy->ops.power_down = e1000_power_down_phy_copper_80003es2lan;
103 phy->addr = 1;
104 phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT;
105 phy->reset_delay_us = 100;
106 phy->type = e1000_phy_gg82563;
108 phy->ops.acquire = e1000_acquire_phy_80003es2lan;
109 phy->ops.check_polarity = e1000_check_polarity_m88;
110 phy->ops.check_reset_block = e1000_check_reset_block_generic;
111 phy->ops.commit = e1000_phy_sw_reset_generic;
112 phy->ops.get_cfg_done = e1000_get_cfg_done_80003es2lan;
113 phy->ops.get_info = e1000_get_phy_info_m88;
114 phy->ops.release = e1000_release_phy_80003es2lan;
115 phy->ops.reset = e1000_phy_hw_reset_generic;
116 phy->ops.set_d3_lplu_state = e1000_set_d3_lplu_state_generic;
118 phy->ops.force_speed_duplex = e1000_phy_force_speed_duplex_80003es2lan;
119 phy->ops.get_cable_length = e1000_get_cable_length_80003es2lan;
120 phy->ops.read_reg = e1000_read_phy_reg_gg82563_80003es2lan;
121 phy->ops.write_reg = e1000_write_phy_reg_gg82563_80003es2lan;
123 phy->ops.cfg_on_link_up = e1000_cfg_on_link_up_80003es2lan;
125 /* This can only be done after all function pointers are setup. */
126 ret_val = e1000_get_phy_id(hw);
128 /* Verify phy id */
129 if (phy->id != GG82563_E_PHY_ID) {
130 ret_val = -E1000_ERR_PHY;
131 goto out;
134 out:
135 return (ret_val);
139 * e1000_init_nvm_params_80003es2lan - Init ESB2 NVM func ptrs.
140 * @hw: pointer to the HW structure
142 static s32
143 e1000_init_nvm_params_80003es2lan(struct e1000_hw *hw)
145 struct e1000_nvm_info *nvm = &hw->nvm;
146 u32 eecd = E1000_READ_REG(hw, E1000_EECD);
147 u16 size;
149 DEBUGFUNC("e1000_init_nvm_params_80003es2lan");
151 nvm->opcode_bits = 8;
152 nvm->delay_usec = 1;
153 switch (nvm->override) {
154 case e1000_nvm_override_spi_large:
155 nvm->page_size = 32;
156 nvm->address_bits = 16;
157 break;
158 case e1000_nvm_override_spi_small:
159 nvm->page_size = 8;
160 nvm->address_bits = 8;
161 break;
162 default:
163 nvm->page_size = eecd & E1000_EECD_ADDR_BITS ? 32 : 8;
164 nvm->address_bits = eecd & E1000_EECD_ADDR_BITS ? 16 : 8;
165 break;
168 nvm->type = e1000_nvm_eeprom_spi;
170 size = (u16)((eecd & E1000_EECD_SIZE_EX_MASK) >>
171 E1000_EECD_SIZE_EX_SHIFT);
174 * Added to a constant, "size" becomes the left-shift value
175 * for setting word_size.
177 size += NVM_WORD_SIZE_BASE_SHIFT;
179 /* EEPROM access above 16k is unsupported */
180 if (size > 14)
181 size = 14;
182 nvm->word_size = 1 << size;
184 /* Function Pointers */
185 nvm->ops.acquire = e1000_acquire_nvm_80003es2lan;
186 nvm->ops.read = e1000_read_nvm_eerd;
187 nvm->ops.release = e1000_release_nvm_80003es2lan;
188 nvm->ops.update = e1000_update_nvm_checksum_generic;
189 nvm->ops.valid_led_default = e1000_valid_led_default_generic;
190 nvm->ops.validate = e1000_validate_nvm_checksum_generic;
191 nvm->ops.write = e1000_write_nvm_80003es2lan;
193 return (E1000_SUCCESS);
197 * e1000_init_mac_params_80003es2lan - Init ESB2 MAC func ptrs.
198 * @hw: pointer to the HW structure
200 static s32
201 e1000_init_mac_params_80003es2lan(struct e1000_hw *hw)
203 struct e1000_mac_info *mac = &hw->mac;
204 s32 ret_val = E1000_SUCCESS;
206 DEBUGFUNC("e1000_init_mac_params_80003es2lan");
208 /* Set media type */
209 switch (hw->device_id) {
210 case E1000_DEV_ID_80003ES2LAN_SERDES_DPT:
211 hw->phy.media_type = e1000_media_type_internal_serdes;
212 break;
213 default:
214 hw->phy.media_type = e1000_media_type_copper;
215 break;
218 /* Set mta register count */
219 mac->mta_reg_count = 128;
220 /* Set rar entry count */
221 mac->rar_entry_count = E1000_RAR_ENTRIES;
222 /* Set if part includes ASF firmware */
223 mac->asf_firmware_present = true;
224 /* Set if manageability features are enabled. */
225 mac->arc_subsystem_valid =
226 (E1000_READ_REG(hw, E1000_FWSM) & E1000_FWSM_MODE_MASK)
227 ? true : false;
229 /* Function pointers */
231 /* bus type/speed/width */
232 mac->ops.get_bus_info = e1000_get_bus_info_pcie_generic;
233 /* reset */
234 mac->ops.reset_hw = e1000_reset_hw_80003es2lan;
235 /* hw initialization */
236 mac->ops.init_hw = e1000_init_hw_80003es2lan;
237 /* link setup */
238 mac->ops.setup_link = e1000_setup_link_generic;
239 /* physical interface link setup */
240 mac->ops.setup_physical_interface =
241 (hw->phy.media_type == e1000_media_type_copper)
242 ? e1000_setup_copper_link_80003es2lan
243 : e1000_setup_fiber_serdes_link_generic;
244 /* check for link */
245 switch (hw->phy.media_type) {
246 case e1000_media_type_copper:
247 mac->ops.check_for_link = e1000_check_for_copper_link_generic;
248 break;
249 case e1000_media_type_fiber:
250 mac->ops.check_for_link = e1000_check_for_fiber_link_generic;
251 break;
252 case e1000_media_type_internal_serdes:
253 mac->ops.check_for_link = e1000_check_for_serdes_link_generic;
254 break;
255 default:
256 ret_val = -E1000_ERR_CONFIG;
257 goto out;
259 /* check management mode */
260 mac->ops.check_mng_mode = e1000_check_mng_mode_generic;
261 /* multicast address update */
262 mac->ops.update_mc_addr_list = e1000_update_mc_addr_list_generic;
263 /* writing VFTA */
264 mac->ops.write_vfta = e1000_write_vfta_generic;
265 /* clearing VFTA */
266 mac->ops.clear_vfta = e1000_clear_vfta_generic;
267 /* setting MTA */
268 mac->ops.mta_set = e1000_mta_set_generic;
269 /* read mac address */
270 mac->ops.read_mac_addr = e1000_read_mac_addr_80003es2lan;
271 /* ID LED init */
272 mac->ops.id_led_init = e1000_id_led_init_generic;
273 /* blink LED */
274 mac->ops.blink_led = e1000_blink_led_generic;
275 /* setup LED */
276 mac->ops.setup_led = e1000_setup_led_generic;
277 /* cleanup LED */
278 mac->ops.cleanup_led = e1000_cleanup_led_generic;
279 /* turn on/off LED */
280 mac->ops.led_on = e1000_led_on_generic;
281 mac->ops.led_off = e1000_led_off_generic;
282 /* clear hardware counters */
283 mac->ops.clear_hw_cntrs = e1000_clear_hw_cntrs_80003es2lan;
284 /* link info */
285 mac->ops.get_link_up_info = e1000_get_link_up_info_80003es2lan;
287 /* set lan id for port to determine which phy lock to use */
288 hw->mac.ops.set_lan_id(hw);
289 out:
290 return (ret_val);
294 * e1000_init_function_pointers_80003es2lan - Init ESB2 func ptrs.
295 * @hw: pointer to the HW structure
297 * Called to initialize all function pointers and parameters.
299 void
300 e1000_init_function_pointers_80003es2lan(struct e1000_hw *hw)
302 DEBUGFUNC("e1000_init_function_pointers_80003es2lan");
304 hw->mac.ops.init_params = e1000_init_mac_params_80003es2lan;
305 hw->nvm.ops.init_params = e1000_init_nvm_params_80003es2lan;
306 hw->phy.ops.init_params = e1000_init_phy_params_80003es2lan;
310 * e1000_acquire_phy_80003es2lan - Acquire rights to access PHY
311 * @hw: pointer to the HW structure
313 * A wrapper to acquire access rights to the correct PHY.
315 static s32
316 e1000_acquire_phy_80003es2lan(struct e1000_hw *hw)
318 u16 mask;
320 DEBUGFUNC("e1000_acquire_phy_80003es2lan");
322 mask = hw->bus.func ? E1000_SWFW_PHY1_SM : E1000_SWFW_PHY0_SM;
324 return (e1000_acquire_swfw_sync_80003es2lan(hw, mask));
328 * e1000_release_phy_80003es2lan - Release rights to access PHY
329 * @hw: pointer to the HW structure
331 * A wrapper to release access rights to the correct PHY.
333 static void
334 e1000_release_phy_80003es2lan(struct e1000_hw *hw)
336 u16 mask;
338 DEBUGFUNC("e1000_release_phy_80003es2lan");
340 mask = hw->bus.func ? E1000_SWFW_PHY1_SM : E1000_SWFW_PHY0_SM;
341 e1000_release_swfw_sync_80003es2lan(hw, mask);
345 * e1000_acquire_mac_csr_80003es2lan - Acquire rights to access Kumeran register
346 * @hw: pointer to the HW structure
348 * Acquire the semaphore to access the Kumeran interface.
351 static s32
352 e1000_acquire_mac_csr_80003es2lan(struct e1000_hw *hw)
354 u16 mask;
356 DEBUGFUNC("e1000_acquire_mac_csr_80003es2lan");
358 mask = E1000_SWFW_CSR_SM;
360 return (e1000_acquire_swfw_sync_80003es2lan(hw, mask));
364 * e1000_release_mac_csr_80003es2lan - Release rights to access Kumeran Register
365 * @hw: pointer to the HW structure
367 * Release the semaphore used to access the Kumeran interface
369 static void
370 e1000_release_mac_csr_80003es2lan(struct e1000_hw *hw)
372 u16 mask;
374 DEBUGFUNC("e1000_release_mac_csr_80003es2lan");
376 mask = E1000_SWFW_CSR_SM;
378 e1000_release_swfw_sync_80003es2lan(hw, mask);
382 * e1000_acquire_nvm_80003es2lan - Acquire rights to access NVM
383 * @hw: pointer to the HW structure
385 * Acquire the semaphore to access the EEPROM.
387 static s32
388 e1000_acquire_nvm_80003es2lan(struct e1000_hw *hw)
390 s32 ret_val;
392 DEBUGFUNC("e1000_acquire_nvm_80003es2lan");
394 ret_val = e1000_acquire_swfw_sync_80003es2lan(hw, E1000_SWFW_EEP_SM);
395 if (ret_val)
396 goto out;
398 ret_val = e1000_acquire_nvm_generic(hw);
400 if (ret_val)
401 e1000_release_swfw_sync_80003es2lan(hw, E1000_SWFW_EEP_SM);
403 out:
404 return (ret_val);
408 * e1000_release_nvm_80003es2lan - Relinquish rights to access NVM
409 * @hw: pointer to the HW structure
411 * Release the semaphore used to access the EEPROM.
413 static void
414 e1000_release_nvm_80003es2lan(struct e1000_hw *hw)
416 DEBUGFUNC("e1000_release_nvm_80003es2lan");
418 e1000_release_nvm_generic(hw);
419 e1000_release_swfw_sync_80003es2lan(hw, E1000_SWFW_EEP_SM);
423 * e1000_acquire_swfw_sync_80003es2lan - Acquire SW/FW semaphore
424 * @hw: pointer to the HW structure
425 * @mask: specifies which semaphore to acquire
427 * Acquire the SW/FW semaphore to access the PHY or NVM. The mask
428 * will also specify which port we're acquiring the lock for.
430 static s32
431 e1000_acquire_swfw_sync_80003es2lan(struct e1000_hw *hw, u16 mask)
433 u32 swfw_sync;
434 u32 swmask = mask;
435 u32 fwmask = mask << 16;
436 s32 ret_val = E1000_SUCCESS;
437 s32 i = 0, timeout = 50;
439 DEBUGFUNC("e1000_acquire_swfw_sync_80003es2lan");
441 while (i < timeout) {
442 if (e1000_get_hw_semaphore_generic(hw)) {
443 ret_val = -E1000_ERR_SWFW_SYNC;
444 goto out;
447 swfw_sync = E1000_READ_REG(hw, E1000_SW_FW_SYNC);
448 if (!(swfw_sync & (fwmask | swmask)))
449 break;
452 * Firmware currently using resource (fwmask)
453 * or other software thread using resource (swmask)
455 e1000_put_hw_semaphore_generic(hw);
456 msec_delay_irq(5);
457 i++;
460 if (i == timeout) {
461 DEBUGOUT("Driver can't access resource, SW_FW_SYNC timeout.\n");
462 ret_val = -E1000_ERR_SWFW_SYNC;
463 goto out;
466 swfw_sync |= swmask;
467 E1000_WRITE_REG(hw, E1000_SW_FW_SYNC, swfw_sync);
469 e1000_put_hw_semaphore_generic(hw);
471 out:
472 return (ret_val);
476 * e1000_release_swfw_sync_80003es2lan - Release SW/FW semaphore
477 * @hw: pointer to the HW structure
478 * @mask: specifies which semaphore to acquire
480 * Release the SW/FW semaphore used to access the PHY or NVM. The mask
481 * will also specify which port we're releasing the lock for.
483 static void
484 e1000_release_swfw_sync_80003es2lan(struct e1000_hw *hw, u16 mask)
486 u32 swfw_sync;
488 DEBUGFUNC("e1000_release_swfw_sync_80003es2lan");
490 while (e1000_get_hw_semaphore_generic(hw) != E1000_SUCCESS) {
491 /* Empty */
494 swfw_sync = E1000_READ_REG(hw, E1000_SW_FW_SYNC);
495 swfw_sync &= ~mask;
496 E1000_WRITE_REG(hw, E1000_SW_FW_SYNC, swfw_sync);
498 e1000_put_hw_semaphore_generic(hw);
502 * e1000_read_phy_reg_gg82563_80003es2lan - Read GG82563 PHY register
503 * @hw: pointer to the HW structure
504 * @offset: offset of the register to read
505 * @data: pointer to the data returned from the operation
507 * Read the GG82563 PHY register.
509 static s32
510 e1000_read_phy_reg_gg82563_80003es2lan(struct e1000_hw *hw,
511 u32 offset, u16 *data)
513 s32 ret_val;
514 u32 page_select;
515 u16 temp;
517 DEBUGFUNC("e1000_read_phy_reg_gg82563_80003es2lan");
519 ret_val = e1000_acquire_phy_80003es2lan(hw);
520 if (ret_val)
521 goto out;
523 /* Select Configuration Page */
524 if ((offset & MAX_PHY_REG_ADDRESS) < GG82563_MIN_ALT_REG) {
525 page_select = GG82563_PHY_PAGE_SELECT;
526 } else {
528 * Use Alternative Page Select register to access
529 * registers 30 and 31
531 page_select = GG82563_PHY_PAGE_SELECT_ALT;
534 temp = (u16)((u16)offset >> GG82563_PAGE_SHIFT);
535 ret_val = e1000_write_phy_reg_mdic(hw, page_select, temp);
536 if (ret_val) {
537 e1000_release_phy_80003es2lan(hw);
538 goto out;
541 if (hw->dev_spec._80003es2lan.mdic_wa_enable == true) {
543 * The "ready" bit in the MDIC register may be incorrectly set
544 * before the device has completed the "Page Select" MDI
545 * transaction. So we wait 200us after each MDI command...
547 usec_delay(200);
549 /* ...and verify the command was successful. */
550 ret_val = e1000_read_phy_reg_mdic(hw, page_select, &temp);
552 if (((u16)offset >> GG82563_PAGE_SHIFT) != temp) {
553 ret_val = -E1000_ERR_PHY;
554 e1000_release_phy_80003es2lan(hw);
555 goto out;
558 usec_delay(200);
560 ret_val = e1000_read_phy_reg_mdic(hw,
561 MAX_PHY_REG_ADDRESS & offset,
562 data);
564 usec_delay(200);
565 } else
566 ret_val = e1000_read_phy_reg_mdic(hw,
567 MAX_PHY_REG_ADDRESS & offset,
568 data);
570 e1000_release_phy_80003es2lan(hw);
572 out:
573 return (ret_val);
577 * e1000_write_phy_reg_gg82563_80003es2lan - Write GG82563 PHY register
578 * @hw: pointer to the HW structure
579 * @offset: offset of the register to read
580 * @data: value to write to the register
582 * Write to the GG82563 PHY register.
584 static s32
585 e1000_write_phy_reg_gg82563_80003es2lan(struct e1000_hw *hw,
586 u32 offset, u16 data)
588 s32 ret_val;
589 u32 page_select;
590 u16 temp;
592 DEBUGFUNC("e1000_write_phy_reg_gg82563_80003es2lan");
594 ret_val = e1000_acquire_phy_80003es2lan(hw);
595 if (ret_val)
596 goto out;
598 /* Select Configuration Page */
599 if ((offset & MAX_PHY_REG_ADDRESS) < GG82563_MIN_ALT_REG) {
600 page_select = GG82563_PHY_PAGE_SELECT;
601 } else {
603 * Use Alternative Page Select register to access
604 * registers 30 and 31
606 page_select = GG82563_PHY_PAGE_SELECT_ALT;
609 temp = (u16)((u16)offset >> GG82563_PAGE_SHIFT);
610 ret_val = e1000_write_phy_reg_mdic(hw, page_select, temp);
611 if (ret_val) {
612 e1000_release_phy_80003es2lan(hw);
613 goto out;
616 if (hw->dev_spec._80003es2lan.mdic_wa_enable == true) {
618 * The "ready" bit in the MDIC register may be incorrectly set
619 * before the device has completed the "Page Select" MDI
620 * transaction. So we wait 200us after each MDI command...
622 usec_delay(200);
624 /* ...and verify the command was successful. */
625 ret_val = e1000_read_phy_reg_mdic(hw, page_select, &temp);
627 if (((u16)offset >> GG82563_PAGE_SHIFT) != temp) {
628 ret_val = -E1000_ERR_PHY;
629 e1000_release_phy_80003es2lan(hw);
630 goto out;
633 usec_delay(200);
635 ret_val = e1000_write_phy_reg_mdic(hw,
636 MAX_PHY_REG_ADDRESS & offset,
637 data);
639 usec_delay(200);
640 } else
641 ret_val = e1000_write_phy_reg_mdic(hw,
642 MAX_PHY_REG_ADDRESS & offset,
643 data);
645 e1000_release_phy_80003es2lan(hw);
647 out:
648 return (ret_val);
652 * e1000_write_nvm_80003es2lan - Write to ESB2 NVM
653 * @hw: pointer to the HW structure
654 * @offset: offset of the register to read
655 * @words: number of words to write
656 * @data: buffer of data to write to the NVM
658 * Write "words" of data to the ESB2 NVM.
660 static s32
661 e1000_write_nvm_80003es2lan(struct e1000_hw *hw, u16 offset,
662 u16 words, u16 *data)
664 DEBUGFUNC("e1000_write_nvm_80003es2lan");
666 return (e1000_write_nvm_spi(hw, offset, words, data));
670 * e1000_get_cfg_done_80003es2lan - Wait for configuration to complete
671 * @hw: pointer to the HW structure
673 * Wait a specific amount of time for manageability processes to complete.
674 * This is a function pointer entry point called by the phy module.
676 static s32
677 e1000_get_cfg_done_80003es2lan(struct e1000_hw *hw)
679 s32 timeout = PHY_CFG_TIMEOUT;
680 s32 ret_val = E1000_SUCCESS;
681 u32 mask = E1000_NVM_CFG_DONE_PORT_0;
683 DEBUGFUNC("e1000_get_cfg_done_80003es2lan");
685 if (hw->bus.func == 1)
686 mask = E1000_NVM_CFG_DONE_PORT_1;
688 while (timeout) {
689 if (E1000_READ_REG(hw, E1000_EEMNGCTL) & mask)
690 break;
691 msec_delay(1);
692 timeout--;
694 if (!timeout) {
695 DEBUGOUT("MNG configuration cycle has not completed.\n");
696 ret_val = -E1000_ERR_RESET;
697 goto out;
700 out:
701 return (ret_val);
705 * e1000_phy_force_speed_duplex_80003es2lan - Force PHY speed and duplex
706 * @hw: pointer to the HW structure
708 * Force the speed and duplex settings onto the PHY. This is a
709 * function pointer entry point called by the phy module.
711 static s32
712 e1000_phy_force_speed_duplex_80003es2lan(struct e1000_hw *hw)
714 s32 ret_val = E1000_SUCCESS;
715 u16 phy_data;
716 bool link;
718 DEBUGFUNC("e1000_phy_force_speed_duplex_80003es2lan");
720 if (!(hw->phy.ops.read_reg))
721 goto out;
724 * Clear Auto-Crossover to force MDI manually. M88E1000 requires MDI
725 * forced whenever speed and duplex are forced.
727 ret_val = hw->phy.ops.read_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
728 if (ret_val)
729 goto out;
731 phy_data &= ~GG82563_PSCR_CROSSOVER_MODE_AUTO;
732 ret_val = hw->phy.ops.write_reg(hw, GG82563_PHY_SPEC_CTRL, phy_data);
733 if (ret_val)
734 goto out;
736 DEBUGOUT1("GG82563 PSCR: %X\n", phy_data);
738 ret_val = hw->phy.ops.read_reg(hw, PHY_CONTROL, &phy_data);
739 if (ret_val)
740 goto out;
742 e1000_phy_force_speed_duplex_setup(hw, &phy_data);
744 /* Reset the phy to commit changes. */
745 phy_data |= MII_CR_RESET;
747 ret_val = hw->phy.ops.write_reg(hw, PHY_CONTROL, phy_data);
748 if (ret_val)
749 goto out;
751 usec_delay(1);
753 if (hw->phy.autoneg_wait_to_complete) {
754 DEBUGOUT("Waiting for forced speed/duplex link "
755 "on GG82563 phy.\n");
757 ret_val = e1000_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
758 100000, &link);
759 if (ret_val)
760 goto out;
762 if (!link) {
764 * We didn't get link.
765 * Reset the DSP and cross our fingers.
767 ret_val = e1000_phy_reset_dsp_generic(hw);
768 if (ret_val)
769 goto out;
772 /* Try once more */
773 ret_val = e1000_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
774 100000, &link);
775 if (ret_val)
776 goto out;
779 ret_val =
780 hw->phy.ops.read_reg(hw, GG82563_PHY_MAC_SPEC_CTRL, &phy_data);
781 if (ret_val)
782 goto out;
785 * Resetting the phy means we need to verify the TX_CLK corresponds
786 * to the link speed. 10Mbps -> 2.5MHz, else 25MHz.
788 phy_data &= ~GG82563_MSCR_TX_CLK_MASK;
789 if (hw->mac.forced_speed_duplex & E1000_ALL_10_SPEED)
790 phy_data |= GG82563_MSCR_TX_CLK_10MBPS_2_5;
791 else
792 phy_data |= GG82563_MSCR_TX_CLK_100MBPS_25;
795 * In addition, we must re-enable CRS on Tx for both half and full
796 * duplex.
798 phy_data |= GG82563_MSCR_ASSERT_CRS_ON_TX;
799 ret_val =
800 hw->phy.ops.write_reg(hw, GG82563_PHY_MAC_SPEC_CTRL, phy_data);
802 out:
803 return (ret_val);
807 * e1000_get_cable_length_80003es2lan - Set approximate cable length
808 * @hw: pointer to the HW structure
810 * Find the approximate cable length as measured by the GG82563 PHY.
811 * This is a function pointer entry point called by the phy module.
813 static s32
814 e1000_get_cable_length_80003es2lan(struct e1000_hw *hw)
816 struct e1000_phy_info *phy = &hw->phy;
817 s32 ret_val = E1000_SUCCESS;
818 u16 phy_data, index;
820 DEBUGFUNC("e1000_get_cable_length_80003es2lan");
822 if (!(hw->phy.ops.read_reg))
823 goto out;
825 ret_val = hw->phy.ops.read_reg(hw, GG82563_PHY_DSP_DISTANCE, &phy_data);
826 if (ret_val)
827 goto out;
829 index = phy_data & GG82563_DSPD_CABLE_LENGTH;
831 if (index >= GG82563_CABLE_LENGTH_TABLE_SIZE - 5) {
832 ret_val = E1000_ERR_PHY;
833 goto out;
836 phy->min_cable_length = e1000_gg82563_cable_length_table[index];
837 phy->max_cable_length = e1000_gg82563_cable_length_table[index + 5];
839 phy->cable_length = (phy->min_cable_length + phy->max_cable_length) / 2;
841 out:
842 return (ret_val);
846 * e1000_get_link_up_info_80003es2lan - Report speed and duplex
847 * @hw: pointer to the HW structure
848 * @speed: pointer to speed buffer
849 * @duplex: pointer to duplex buffer
851 * Retrieve the current speed and duplex configuration.
853 static s32
854 e1000_get_link_up_info_80003es2lan(struct e1000_hw *hw, u16 *speed, u16 *duplex)
856 s32 ret_val;
858 DEBUGFUNC("e1000_get_link_up_info_80003es2lan");
860 if (hw->phy.media_type == e1000_media_type_copper) {
861 ret_val = e1000_get_speed_and_duplex_copper_generic(hw,
862 speed,
863 duplex);
864 hw->phy.ops.cfg_on_link_up(hw);
865 } else {
866 ret_val = e1000_get_speed_and_duplex_fiber_serdes_generic(hw,
867 speed,
868 duplex);
871 return (ret_val);
875 * e1000_reset_hw_80003es2lan - Reset the ESB2 controller
876 * @hw: pointer to the HW structure
878 * Perform a global reset to the ESB2 controller.
880 static s32
881 e1000_reset_hw_80003es2lan(struct e1000_hw *hw)
883 u32 ctrl;
884 s32 ret_val;
886 DEBUGFUNC("e1000_reset_hw_80003es2lan");
889 * Prevent the PCI-E bus from sticking if there is no TLP connection
890 * on the last TLP read/write transaction when MAC is reset.
892 ret_val = e1000_disable_pcie_master_generic(hw);
893 if (ret_val) {
894 /* EMPTY */
895 DEBUGOUT("PCI-E Master disable polling has failed.\n");
898 DEBUGOUT("Masking off all interrupts\n");
899 E1000_WRITE_REG(hw, E1000_IMC, 0xffffffff);
901 E1000_WRITE_REG(hw, E1000_RCTL, 0);
902 E1000_WRITE_REG(hw, E1000_TCTL, E1000_TCTL_PSP);
903 E1000_WRITE_FLUSH(hw);
905 msec_delay(10);
907 ctrl = E1000_READ_REG(hw, E1000_CTRL);
909 ret_val = e1000_acquire_phy_80003es2lan(hw);
910 DEBUGOUT("Issuing a global reset to MAC\n");
911 E1000_WRITE_REG(hw, E1000_CTRL, ctrl | E1000_CTRL_RST);
912 e1000_release_phy_80003es2lan(hw);
914 ret_val = e1000_get_auto_rd_done_generic(hw);
915 if (ret_val)
916 /* We don't want to continue accessing MAC registers. */
917 goto out;
919 /* Clear any pending interrupt events. */
920 E1000_WRITE_REG(hw, E1000_IMC, 0xffffffff);
921 (void) E1000_READ_REG(hw, E1000_ICR);
923 ret_val = e1000_check_alt_mac_addr_generic(hw);
925 out:
926 return (ret_val);
930 * e1000_init_hw_80003es2lan - Initialize the ESB2 controller
931 * @hw: pointer to the HW structure
933 * Initialize the hw bits, LED, VFTA, MTA, link and hw counters.
935 static s32
936 e1000_init_hw_80003es2lan(struct e1000_hw *hw)
938 struct e1000_mac_info *mac = &hw->mac;
939 u32 reg_data;
940 s32 ret_val;
941 u16 i;
943 DEBUGFUNC("e1000_init_hw_80003es2lan");
945 e1000_initialize_hw_bits_80003es2lan(hw);
947 /* Initialize identification LED */
948 ret_val = mac->ops.id_led_init(hw);
949 if (ret_val) {
950 /* EMPTY */
951 DEBUGOUT("Error initializing identification LED\n");
952 /* This is not fatal and we should not stop init due to this */
955 /* Disabling VLAN filtering */
956 DEBUGOUT("Initializing the IEEE VLAN\n");
957 mac->ops.clear_vfta(hw);
959 /* Setup the receive address. */
960 e1000_init_rx_addrs_generic(hw, mac->rar_entry_count);
962 /* Zero out the Multicast HASH table */
963 DEBUGOUT("Zeroing the MTA\n");
964 for (i = 0; i < mac->mta_reg_count; i++)
965 E1000_WRITE_REG_ARRAY(hw, E1000_MTA, i, 0);
967 /* Setup link and flow control */
968 ret_val = mac->ops.setup_link(hw);
970 /* Set the transmit descriptor write-back policy */
971 reg_data = E1000_READ_REG(hw, E1000_TXDCTL(0));
972 reg_data = (reg_data & ~E1000_TXDCTL_WTHRESH) |
973 E1000_TXDCTL_FULL_TX_DESC_WB | E1000_TXDCTL_COUNT_DESC;
974 E1000_WRITE_REG(hw, E1000_TXDCTL(0), reg_data);
976 /* ...for both queues. */
977 reg_data = E1000_READ_REG(hw, E1000_TXDCTL(1));
978 reg_data = (reg_data & ~E1000_TXDCTL_WTHRESH) |
979 E1000_TXDCTL_FULL_TX_DESC_WB | E1000_TXDCTL_COUNT_DESC;
980 E1000_WRITE_REG(hw, E1000_TXDCTL(1), reg_data);
982 /* Enable retransmit on late collisions */
983 reg_data = E1000_READ_REG(hw, E1000_TCTL);
984 reg_data |= E1000_TCTL_RTLC;
985 E1000_WRITE_REG(hw, E1000_TCTL, reg_data);
987 /* Configure Gigabit Carry Extend Padding */
988 reg_data = E1000_READ_REG(hw, E1000_TCTL_EXT);
989 reg_data &= ~E1000_TCTL_EXT_GCEX_MASK;
990 reg_data |= DEFAULT_TCTL_EXT_GCEX_80003ES2LAN;
991 E1000_WRITE_REG(hw, E1000_TCTL_EXT, reg_data);
993 /* Configure Transmit Inter-Packet Gap */
994 reg_data = E1000_READ_REG(hw, E1000_TIPG);
995 reg_data &= ~E1000_TIPG_IPGT_MASK;
996 reg_data |= DEFAULT_TIPG_IPGT_1000_80003ES2LAN;
997 E1000_WRITE_REG(hw, E1000_TIPG, reg_data);
999 reg_data = E1000_READ_REG_ARRAY(hw, E1000_FFLT, 0x0001);
1000 reg_data &= ~0x00100000;
1001 E1000_WRITE_REG_ARRAY(hw, E1000_FFLT, 0x0001, reg_data);
1003 /* default to true to enable the MDIC W/A */
1004 hw->dev_spec._80003es2lan.mdic_wa_enable = true;
1006 ret_val = e1000_read_kmrn_reg_80003es2lan(hw,
1007 E1000_KMRNCTRLSTA_OFFSET >>
1008 E1000_KMRNCTRLSTA_OFFSET_SHIFT,
1009 &i);
1010 if (!ret_val) {
1011 if ((i & E1000_KMRNCTRLSTA_OPMODE_MASK) ==
1012 E1000_KMRNCTRLSTA_OPMODE_INBAND_MDIO)
1013 hw->dev_spec._80003es2lan.mdic_wa_enable = false;
1017 * Clear all of the statistics registers (clear on read). It is
1018 * important that we do this after we have tried to establish link
1019 * because the symbol error count will increment wildly if there
1020 * is no link.
1022 e1000_clear_hw_cntrs_80003es2lan(hw);
1024 return (ret_val);
1028 * e1000_initialize_hw_bits_80003es2lan - Init hw bits of ESB2
1029 * @hw: pointer to the HW structure
1031 * Initializes required hardware-dependent bits needed for normal operation.
1033 static void
1034 e1000_initialize_hw_bits_80003es2lan(struct e1000_hw *hw)
1036 u32 reg;
1038 DEBUGFUNC("e1000_initialize_hw_bits_80003es2lan");
1040 /* Transmit Descriptor Control 0 */
1041 reg = E1000_READ_REG(hw, E1000_TXDCTL(0));
1042 reg |= (1 << 22);
1043 E1000_WRITE_REG(hw, E1000_TXDCTL(0), reg);
1045 /* Transmit Descriptor Control 1 */
1046 reg = E1000_READ_REG(hw, E1000_TXDCTL(1));
1047 reg |= (1 << 22);
1048 E1000_WRITE_REG(hw, E1000_TXDCTL(1), reg);
1050 /* Transmit Arbitration Control 0 */
1051 reg = E1000_READ_REG(hw, E1000_TARC(0));
1052 reg &= ~(0xF << 27); /* 30:27 */
1053 if (hw->phy.media_type != e1000_media_type_copper)
1054 reg &= ~(1 << 20);
1055 E1000_WRITE_REG(hw, E1000_TARC(0), reg);
1057 /* Transmit Arbitration Control 1 */
1058 reg = E1000_READ_REG(hw, E1000_TARC(1));
1059 if (E1000_READ_REG(hw, E1000_TCTL) & E1000_TCTL_MULR)
1060 reg &= ~(1 << 28);
1061 else
1062 reg |= (1 << 28);
1063 E1000_WRITE_REG(hw, E1000_TARC(1), reg);
1067 * e1000_copper_link_setup_gg82563_80003es2lan - Configure GG82563 Link
1068 * @hw: pointer to the HW structure
1070 * Setup some GG82563 PHY registers for obtaining link
1072 static s32
1073 e1000_copper_link_setup_gg82563_80003es2lan(struct e1000_hw *hw)
1075 struct e1000_phy_info *phy = &hw->phy;
1076 s32 ret_val;
1077 u32 ctrl_ext;
1078 u16 data;
1080 DEBUGFUNC("e1000_copper_link_setup_gg82563_80003es2lan");
1082 if (!phy->reset_disable) {
1083 ret_val = hw->phy.ops.read_reg(hw, GG82563_PHY_MAC_SPEC_CTRL,
1084 &data);
1085 if (ret_val)
1086 goto out;
1088 data |= GG82563_MSCR_ASSERT_CRS_ON_TX;
1089 /* Use 25MHz for both link down and 1000Base-T for Tx clock. */
1090 data |= GG82563_MSCR_TX_CLK_1000MBPS_25;
1092 ret_val = hw->phy.ops.write_reg(hw, GG82563_PHY_MAC_SPEC_CTRL,
1093 data);
1094 if (ret_val)
1095 goto out;
1098 * Options:
1099 * MDI/MDI-X = 0 (default)
1100 * 0 - Auto for all speeds
1101 * 1 - MDI mode
1102 * 2 - MDI-X mode
1103 * 3 - Auto for 1000Base-T only (MDI-X for 10/100Base-T modes)
1105 ret_val =
1106 hw->phy.ops.read_reg(hw, GG82563_PHY_SPEC_CTRL, &data);
1107 if (ret_val)
1108 goto out;
1110 data &= ~GG82563_PSCR_CROSSOVER_MODE_MASK;
1112 switch (phy->mdix) {
1113 case 1:
1114 data |= GG82563_PSCR_CROSSOVER_MODE_MDI;
1115 break;
1116 case 2:
1117 data |= GG82563_PSCR_CROSSOVER_MODE_MDIX;
1118 break;
1119 case 0:
1120 default:
1121 data |= GG82563_PSCR_CROSSOVER_MODE_AUTO;
1122 break;
1126 * Options:
1127 * disable_polarity_correction = 0 (default)
1128 * Automatic Correction for Reversed Cable Polarity
1129 * 0 - Disabled
1130 * 1 - Enabled
1132 data &= ~GG82563_PSCR_POLARITY_REVERSAL_DISABLE;
1133 if (phy->disable_polarity_correction)
1134 data |= GG82563_PSCR_POLARITY_REVERSAL_DISABLE;
1136 ret_val =
1137 hw->phy.ops.write_reg(hw, GG82563_PHY_SPEC_CTRL, data);
1138 if (ret_val)
1139 goto out;
1141 /* SW Reset the PHY so all changes take effect */
1142 ret_val = hw->phy.ops.commit(hw);
1143 if (ret_val) {
1144 DEBUGOUT("Error Resetting the PHY\n");
1145 goto out;
1150 /* Bypass Rx and Tx FIFO's */
1151 ret_val = e1000_write_kmrn_reg_80003es2lan(hw,
1152 E1000_KMRNCTRLSTA_OFFSET_FIFO_CTRL,
1153 E1000_KMRNCTRLSTA_FIFO_CTRL_RX_BYPASS |
1154 E1000_KMRNCTRLSTA_FIFO_CTRL_TX_BYPASS);
1155 if (ret_val)
1156 goto out;
1158 ret_val = e1000_read_kmrn_reg_80003es2lan(hw,
1159 E1000_KMRNCTRLSTA_OFFSET_MAC2PHY_OPMODE,
1160 &data);
1161 if (ret_val)
1162 goto out;
1164 data |= E1000_KMRNCTRLSTA_OPMODE_E_IDLE;
1165 ret_val = e1000_write_kmrn_reg_80003es2lan(hw,
1166 E1000_KMRNCTRLSTA_OFFSET_MAC2PHY_OPMODE,
1167 data);
1168 if (ret_val)
1169 goto out;
1171 ret_val = hw->phy.ops.read_reg(hw, GG82563_PHY_SPEC_CTRL_2, &data);
1172 if (ret_val)
1173 goto out;
1175 data &= ~GG82563_PSCR2_REVERSE_AUTO_NEG;
1176 ret_val = hw->phy.ops.write_reg(hw, GG82563_PHY_SPEC_CTRL_2, data);
1177 if (ret_val)
1178 goto out;
1180 ctrl_ext = E1000_READ_REG(hw, E1000_CTRL_EXT);
1181 ctrl_ext &= ~(E1000_CTRL_EXT_LINK_MODE_MASK);
1182 E1000_WRITE_REG(hw, E1000_CTRL_EXT, ctrl_ext);
1184 ret_val = hw->phy.ops.read_reg(hw, GG82563_PHY_PWR_MGMT_CTRL, &data);
1185 if (ret_val)
1186 goto out;
1189 * Do not init these registers when the HW is in IAMT mode, since the
1190 * firmware will have already initialized them. We only initialize
1191 * them if the HW is not in IAMT mode.
1193 if (!(hw->mac.ops.check_mng_mode(hw))) {
1194 /* Enable Electrical Idle on the PHY */
1195 data |= GG82563_PMCR_ENABLE_ELECTRICAL_IDLE;
1196 ret_val = hw->phy.ops.write_reg(hw, GG82563_PHY_PWR_MGMT_CTRL,
1197 data);
1198 if (ret_val)
1199 goto out;
1200 ret_val = hw->phy.ops.read_reg(hw, GG82563_PHY_KMRN_MODE_CTRL,
1201 &data);
1203 if (ret_val)
1204 goto out;
1206 data &= ~GG82563_KMCR_PASS_FALSE_CARRIER;
1207 ret_val = hw->phy.ops.write_reg(hw, GG82563_PHY_KMRN_MODE_CTRL,
1208 data);
1210 if (ret_val)
1211 goto out;
1215 * Workaround: Disable padding in Kumeran interface in the MAC
1216 * and in the PHY to avoid CRC errors.
1218 ret_val = hw->phy.ops.read_reg(hw, GG82563_PHY_INBAND_CTRL, &data);
1219 if (ret_val)
1220 goto out;
1222 data |= GG82563_ICR_DIS_PADDING;
1223 ret_val = hw->phy.ops.write_reg(hw, GG82563_PHY_INBAND_CTRL, data);
1224 if (ret_val)
1225 goto out;
1227 out:
1228 return (ret_val);
1232 * e1000_setup_copper_link_80003es2lan - Setup Copper Link for ESB2
1233 * @hw: pointer to the HW structure
1235 * Essentially a wrapper for setting up all things "copper" related.
1236 * This is a function pointer entry point called by the mac module.
1238 static s32
1239 e1000_setup_copper_link_80003es2lan(struct e1000_hw *hw)
1241 u32 ctrl;
1242 s32 ret_val;
1243 u16 reg_data;
1245 DEBUGFUNC("e1000_setup_copper_link_80003es2lan");
1247 ctrl = E1000_READ_REG(hw, E1000_CTRL);
1248 ctrl |= E1000_CTRL_SLU;
1249 ctrl &= ~(E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX);
1250 E1000_WRITE_REG(hw, E1000_CTRL, ctrl);
1253 * Set the mac to wait the maximum time between each
1254 * iteration and increase the max iterations when
1255 * polling the phy; this fixes erroneous timeouts at 10Mbps.
1257 ret_val = e1000_write_kmrn_reg_80003es2lan(hw, GG82563_REG(0x34, 4),
1258 0xFFFF);
1259 if (ret_val)
1260 goto out;
1261 ret_val = e1000_read_kmrn_reg_80003es2lan(hw, GG82563_REG(0x34, 9),
1262 &reg_data);
1263 if (ret_val)
1264 goto out;
1265 reg_data |= 0x3F;
1266 ret_val = e1000_write_kmrn_reg_80003es2lan(hw, GG82563_REG(0x34, 9),
1267 reg_data);
1268 if (ret_val)
1269 goto out;
1270 ret_val = e1000_read_kmrn_reg_80003es2lan(hw,
1271 E1000_KMRNCTRLSTA_OFFSET_INB_CTRL,
1272 &reg_data);
1273 if (ret_val)
1274 goto out;
1275 reg_data |= E1000_KMRNCTRLSTA_INB_CTRL_DIS_PADDING;
1276 ret_val = e1000_write_kmrn_reg_80003es2lan(hw,
1277 E1000_KMRNCTRLSTA_OFFSET_INB_CTRL,
1278 reg_data);
1279 if (ret_val)
1280 goto out;
1282 ret_val = e1000_copper_link_setup_gg82563_80003es2lan(hw);
1283 if (ret_val)
1284 goto out;
1286 ret_val = e1000_setup_copper_link_generic(hw);
1288 out:
1289 return (ret_val);
1293 * e1000_cfg_on_link_up_80003es2lan - es2 link configuration after link-up
1294 * @hw: pointer to the HW structure
1295 * @duplex: current duplex setting
1297 * Configure the KMRN interface by applying last minute quirks for
1298 * 10/100 operation.
1300 static s32
1301 e1000_cfg_on_link_up_80003es2lan(struct e1000_hw *hw)
1303 s32 ret_val = E1000_SUCCESS;
1304 u16 speed;
1305 u16 duplex;
1307 DEBUGFUNC("e1000_configure_on_link_up");
1309 if (hw->phy.media_type == e1000_media_type_copper) {
1311 ret_val = e1000_get_speed_and_duplex_copper_generic(hw,
1312 &speed,
1313 &duplex);
1314 if (ret_val)
1315 goto out;
1317 if (speed == SPEED_1000)
1318 ret_val = e1000_cfg_kmrn_1000_80003es2lan(hw);
1319 else
1320 ret_val = e1000_cfg_kmrn_10_100_80003es2lan(hw, duplex);
1323 out:
1324 return (ret_val);
1328 * e1000_cfg_kmrn_10_100_80003es2lan - Apply "quirks" for 10/100 operation
1329 * @hw: pointer to the HW structure
1330 * @duplex: current duplex setting
1332 * Configure the KMRN interface by applying last minute quirks for
1333 * 10/100 operation.
1335 static s32
1336 e1000_cfg_kmrn_10_100_80003es2lan(struct e1000_hw *hw, u16 duplex)
1338 s32 ret_val = E1000_SUCCESS;
1339 u32 tipg;
1340 u32 i = 0;
1341 u16 reg_data, reg_data2;
1343 DEBUGFUNC("e1000_configure_kmrn_for_10_100");
1345 reg_data = E1000_KMRNCTRLSTA_HD_CTRL_10_100_DEFAULT;
1346 ret_val = e1000_write_kmrn_reg_80003es2lan(hw,
1347 E1000_KMRNCTRLSTA_OFFSET_HD_CTRL,
1348 reg_data);
1349 if (ret_val)
1350 goto out;
1352 /* Configure Transmit Inter-Packet Gap */
1353 tipg = E1000_READ_REG(hw, E1000_TIPG);
1354 tipg &= ~E1000_TIPG_IPGT_MASK;
1355 tipg |= DEFAULT_TIPG_IPGT_10_100_80003ES2LAN;
1356 E1000_WRITE_REG(hw, E1000_TIPG, tipg);
1359 do {
1360 ret_val = hw->phy.ops.read_reg(hw, GG82563_PHY_KMRN_MODE_CTRL,
1361 &reg_data);
1362 if (ret_val)
1363 goto out;
1365 ret_val = hw->phy.ops.read_reg(hw, GG82563_PHY_KMRN_MODE_CTRL,
1366 &reg_data2);
1367 if (ret_val)
1368 goto out;
1369 i++;
1370 } while ((reg_data != reg_data2) && (i < GG82563_MAX_KMRN_RETRY));
1372 if (duplex == HALF_DUPLEX)
1373 reg_data |= GG82563_KMCR_PASS_FALSE_CARRIER;
1374 else
1375 reg_data &= ~GG82563_KMCR_PASS_FALSE_CARRIER;
1377 ret_val =
1378 hw->phy.ops.write_reg(hw, GG82563_PHY_KMRN_MODE_CTRL, reg_data);
1380 out:
1381 return (ret_val);
1385 * e1000_cfg_kmrn_1000_80003es2lan - Apply "quirks" for gigabit operation
1386 * @hw: pointer to the HW structure
1388 * Configure the KMRN interface by applying last minute quirks for
1389 * gigabit operation.
1391 static s32
1392 e1000_cfg_kmrn_1000_80003es2lan(struct e1000_hw *hw)
1394 s32 ret_val = E1000_SUCCESS;
1395 u16 reg_data, reg_data2;
1396 u32 tipg;
1397 u32 i = 0;
1399 DEBUGFUNC("e1000_configure_kmrn_for_1000");
1401 reg_data = E1000_KMRNCTRLSTA_HD_CTRL_1000_DEFAULT;
1402 ret_val = e1000_write_kmrn_reg_80003es2lan(hw,
1403 E1000_KMRNCTRLSTA_OFFSET_HD_CTRL,
1404 reg_data);
1405 if (ret_val)
1406 goto out;
1408 /* Configure Transmit Inter-Packet Gap */
1409 tipg = E1000_READ_REG(hw, E1000_TIPG);
1410 tipg &= ~E1000_TIPG_IPGT_MASK;
1411 tipg |= DEFAULT_TIPG_IPGT_1000_80003ES2LAN;
1412 E1000_WRITE_REG(hw, E1000_TIPG, tipg);
1415 do {
1416 ret_val = hw->phy.ops.read_reg(hw, GG82563_PHY_KMRN_MODE_CTRL,
1417 &reg_data);
1418 if (ret_val)
1419 goto out;
1421 ret_val = hw->phy.ops.read_reg(hw, GG82563_PHY_KMRN_MODE_CTRL,
1422 &reg_data2);
1423 if (ret_val)
1424 goto out;
1425 i++;
1426 } while ((reg_data != reg_data2) && (i < GG82563_MAX_KMRN_RETRY));
1428 reg_data &= ~GG82563_KMCR_PASS_FALSE_CARRIER;
1429 ret_val =
1430 hw->phy.ops.write_reg(hw, GG82563_PHY_KMRN_MODE_CTRL, reg_data);
1432 out:
1433 return (ret_val);
1437 * e1000_read_kmrn_reg_80003es2lan - Read kumeran register
1438 * @hw: pointer to the HW structure
1439 * @offset: register offset to be read
1440 * @data: pointer to the read data
1442 * Acquire semaphore, then read the PHY register at offset
1443 * using the kumeran interface. The information retrieved is stored in data.
1444 * Release the semaphore before exiting.
1446 static s32
1447 e1000_read_kmrn_reg_80003es2lan(struct e1000_hw *hw, u32 offset, u16 *data)
1449 u32 kmrnctrlsta;
1450 s32 ret_val = E1000_SUCCESS;
1452 DEBUGFUNC("e1000_read_kmrn_reg_80003es2lan");
1454 ret_val = e1000_acquire_mac_csr_80003es2lan(hw);
1455 if (ret_val)
1456 goto out;
1458 kmrnctrlsta = ((offset << E1000_KMRNCTRLSTA_OFFSET_SHIFT) &
1459 E1000_KMRNCTRLSTA_OFFSET) | E1000_KMRNCTRLSTA_REN;
1460 E1000_WRITE_REG(hw, E1000_KMRNCTRLSTA, kmrnctrlsta);
1462 usec_delay(2);
1464 kmrnctrlsta = E1000_READ_REG(hw, E1000_KMRNCTRLSTA);
1465 *data = (u16)kmrnctrlsta;
1467 e1000_release_mac_csr_80003es2lan(hw);
1469 out:
1470 return (ret_val);
1474 * e1000_write_kmrn_reg_80003es2lan - Write kumeran register
1475 * @hw: pointer to the HW structure
1476 * @offset: register offset to write to
1477 * @data: data to write at register offset
1479 * Acquire semaphore, then write the data to PHY register
1480 * at the offset using the kumeran interface. Release semaphore
1481 * before exiting.
1483 static s32
1484 e1000_write_kmrn_reg_80003es2lan(struct e1000_hw *hw, u32 offset, u16 data)
1486 u32 kmrnctrlsta;
1487 s32 ret_val = E1000_SUCCESS;
1489 DEBUGFUNC("e1000_write_kmrn_reg_80003es2lan");
1491 ret_val = e1000_acquire_mac_csr_80003es2lan(hw);
1492 if (ret_val)
1493 goto out;
1495 kmrnctrlsta = ((offset << E1000_KMRNCTRLSTA_OFFSET_SHIFT) &
1496 E1000_KMRNCTRLSTA_OFFSET) | data;
1497 E1000_WRITE_REG(hw, E1000_KMRNCTRLSTA, kmrnctrlsta);
1499 usec_delay(2);
1501 e1000_release_mac_csr_80003es2lan(hw);
1503 out:
1504 return (ret_val);
1508 * e1000_read_mac_addr_80003es2lan - Read device MAC address
1509 * @hw: pointer to the HW structure
1511 static s32
1512 e1000_read_mac_addr_80003es2lan(struct e1000_hw *hw)
1514 s32 ret_val = E1000_SUCCESS;
1516 DEBUGFUNC("e1000_read_mac_addr_80003es2lan");
1518 * If there's an alternate MAC address place it in RAR0
1519 * so that it will override the Si installed default perm
1520 * address.
1522 ret_val = e1000_check_alt_mac_addr_generic(hw);
1523 if (ret_val)
1524 goto out;
1526 ret_val = e1000_read_mac_addr_generic(hw);
1528 out:
1529 return (ret_val);
1533 * e1000_power_down_phy_copper_80003es2lan - Remove link during PHY power down
1534 * @hw: pointer to the HW structure
1536 * In the case of a PHY power down to save power, or to turn off link during a
1537 * driver unload, or wake on lan is not enabled, remove the link.
1539 static void
1540 e1000_power_down_phy_copper_80003es2lan(struct e1000_hw *hw)
1542 /* If the management interface is not enabled, then power down */
1543 if (!(hw->mac.ops.check_mng_mode(hw) ||
1544 hw->phy.ops.check_reset_block(hw)))
1545 e1000_power_down_phy_copper(hw);
1549 * e1000_clear_hw_cntrs_80003es2lan - Clear device specific hardware counters
1550 * @hw: pointer to the HW structure
1552 * Clears the hardware counters by reading the counter registers.
1554 static void
1555 e1000_clear_hw_cntrs_80003es2lan(struct e1000_hw *hw)
1557 DEBUGFUNC("e1000_clear_hw_cntrs_80003es2lan");
1559 e1000_clear_hw_cntrs_base_generic(hw);
1561 (void) E1000_READ_REG(hw, E1000_PRC64);
1562 (void) E1000_READ_REG(hw, E1000_PRC127);
1563 (void) E1000_READ_REG(hw, E1000_PRC255);
1564 (void) E1000_READ_REG(hw, E1000_PRC511);
1565 (void) E1000_READ_REG(hw, E1000_PRC1023);
1566 (void) E1000_READ_REG(hw, E1000_PRC1522);
1567 (void) E1000_READ_REG(hw, E1000_PTC64);
1568 (void) E1000_READ_REG(hw, E1000_PTC127);
1569 (void) E1000_READ_REG(hw, E1000_PTC255);
1570 (void) E1000_READ_REG(hw, E1000_PTC511);
1571 (void) E1000_READ_REG(hw, E1000_PTC1023);
1572 (void) E1000_READ_REG(hw, E1000_PTC1522);
1574 (void) E1000_READ_REG(hw, E1000_ALGNERRC);
1575 (void) E1000_READ_REG(hw, E1000_RXERRC);
1576 (void) E1000_READ_REG(hw, E1000_TNCRS);
1577 (void) E1000_READ_REG(hw, E1000_CEXTERR);
1578 (void) E1000_READ_REG(hw, E1000_TSCTC);
1579 (void) E1000_READ_REG(hw, E1000_TSCTFC);
1581 (void) E1000_READ_REG(hw, E1000_MGTPRC);
1582 (void) E1000_READ_REG(hw, E1000_MGTPDC);
1583 (void) E1000_READ_REG(hw, E1000_MGTPTC);
1585 (void) E1000_READ_REG(hw, E1000_IAC);
1586 (void) E1000_READ_REG(hw, E1000_ICRXOC);
1588 (void) E1000_READ_REG(hw, E1000_ICRXPTC);
1589 (void) E1000_READ_REG(hw, E1000_ICRXATC);
1590 (void) E1000_READ_REG(hw, E1000_ICTXPTC);
1591 (void) E1000_READ_REG(hw, E1000_ICTXATC);
1592 (void) E1000_READ_REG(hw, E1000_ICTXQEC);
1593 (void) E1000_READ_REG(hw, E1000_ICTXQMTC);
1594 (void) E1000_READ_REG(hw, E1000_ICRXDMTC);