1 /*******************************************************************************
3 Copyright (c) 2001-2014, Intel Corporation
6 Redistribution and use in source and binary forms, with or without
7 modification, are permitted provided that the following conditions are met:
9 1. Redistributions of source code must retain the above copyright notice,
10 this list of conditions and the following disclaimer.
12 2. Redistributions in binary form must reproduce the above copyright
13 notice, this list of conditions and the following disclaimer in the
14 documentation and/or other materials provided with the distribution.
16 3. Neither the name of the Intel Corporation nor the names of its
17 contributors may be used to endorse or promote products derived from
18 this software without specific prior written permission.
20 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
24 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 POSSIBILITY OF SUCH DAMAGE.
32 ***************************************************************************/
34 #include "e1000_api.h"
37 STATIC s32 e1000_acquire_nvm_i210(struct e1000_hw *hw);
38 STATIC void e1000_release_nvm_i210(struct e1000_hw *hw);
39 STATIC s32 e1000_get_hw_semaphore_i210(struct e1000_hw *hw);
40 STATIC s32 e1000_write_nvm_srwr(struct e1000_hw *hw, u16 offset, u16 words,
42 STATIC s32 e1000_pool_flash_update_done_i210(struct e1000_hw *hw);
43 STATIC s32 e1000_valid_led_default_i210(struct e1000_hw *hw, u16 *data);
46 * e1000_acquire_nvm_i210 - Request for access to EEPROM
47 * @hw: pointer to the HW structure
49 * Acquire the necessary semaphores for exclusive access to the EEPROM.
50 * Set the EEPROM access request bit and wait for EEPROM access grant bit.
51 * Return successful if access grant bit set, else clear the request for
52 * EEPROM access and return -E1000_ERR_NVM (-1).
54 STATIC s32 e1000_acquire_nvm_i210(struct e1000_hw *hw)
58 DEBUGFUNC("e1000_acquire_nvm_i210");
60 ret_val = e1000_acquire_swfw_sync_i210(hw, E1000_SWFW_EEP_SM);
66 * e1000_release_nvm_i210 - Release exclusive access to EEPROM
67 * @hw: pointer to the HW structure
69 * Stop any current commands to the EEPROM and clear the EEPROM request bit,
70 * then release the semaphores acquired.
72 STATIC void e1000_release_nvm_i210(struct e1000_hw *hw)
74 DEBUGFUNC("e1000_release_nvm_i210");
76 e1000_release_swfw_sync_i210(hw, E1000_SWFW_EEP_SM);
80 * e1000_acquire_swfw_sync_i210 - Acquire SW/FW semaphore
81 * @hw: pointer to the HW structure
82 * @mask: specifies which semaphore to acquire
84 * Acquire the SW/FW semaphore to access the PHY or NVM. The mask
85 * will also specify which port we're acquiring the lock for.
87 s32 e1000_acquire_swfw_sync_i210(struct e1000_hw *hw, u16 mask)
91 u32 fwmask = mask << 16;
92 s32 ret_val = E1000_SUCCESS;
93 s32 i = 0, timeout = 200; /* FIXME: find real value to use here */
95 DEBUGFUNC("e1000_acquire_swfw_sync_i210");
98 if (e1000_get_hw_semaphore_i210(hw)) {
99 ret_val = -E1000_ERR_SWFW_SYNC;
103 swfw_sync = E1000_READ_REG(hw, E1000_SW_FW_SYNC);
104 if (!(swfw_sync & (fwmask | swmask)))
108 * Firmware currently using resource (fwmask)
109 * or other software thread using resource (swmask)
111 e1000_put_hw_semaphore_generic(hw);
117 DEBUGOUT("Driver can't access resource, SW_FW_SYNC timeout.\n");
118 ret_val = -E1000_ERR_SWFW_SYNC;
123 E1000_WRITE_REG(hw, E1000_SW_FW_SYNC, swfw_sync);
125 e1000_put_hw_semaphore_generic(hw);
132 * e1000_release_swfw_sync_i210 - Release SW/FW semaphore
133 * @hw: pointer to the HW structure
134 * @mask: specifies which semaphore to acquire
136 * Release the SW/FW semaphore used to access the PHY or NVM. The mask
137 * will also specify which port we're releasing the lock for.
139 void e1000_release_swfw_sync_i210(struct e1000_hw *hw, u16 mask)
143 DEBUGFUNC("e1000_release_swfw_sync_i210");
145 while (e1000_get_hw_semaphore_i210(hw) != E1000_SUCCESS)
148 swfw_sync = E1000_READ_REG(hw, E1000_SW_FW_SYNC);
150 E1000_WRITE_REG(hw, E1000_SW_FW_SYNC, swfw_sync);
152 e1000_put_hw_semaphore_generic(hw);
156 * e1000_get_hw_semaphore_i210 - Acquire hardware semaphore
157 * @hw: pointer to the HW structure
159 * Acquire the HW semaphore to access the PHY or NVM
161 STATIC s32 e1000_get_hw_semaphore_i210(struct e1000_hw *hw)
164 s32 timeout = hw->nvm.word_size + 1;
167 DEBUGFUNC("e1000_get_hw_semaphore_i210");
169 /* Get the SW semaphore */
170 while (i < timeout) {
171 swsm = E1000_READ_REG(hw, E1000_SWSM);
172 if (!(swsm & E1000_SWSM_SMBI))
180 /* In rare circumstances, the SW semaphore may already be held
181 * unintentionally. Clear the semaphore once before giving up.
183 if (hw->dev_spec._82575.clear_semaphore_once) {
184 hw->dev_spec._82575.clear_semaphore_once = false;
185 e1000_put_hw_semaphore_generic(hw);
186 for (i = 0; i < timeout; i++) {
187 swsm = E1000_READ_REG(hw, E1000_SWSM);
188 if (!(swsm & E1000_SWSM_SMBI))
195 /* If we do not have the semaphore here, we have to give up. */
197 DEBUGOUT("Driver can't access device - SMBI bit is set.\n");
198 return -E1000_ERR_NVM;
202 /* Get the FW semaphore. */
203 for (i = 0; i < timeout; i++) {
204 swsm = E1000_READ_REG(hw, E1000_SWSM);
205 E1000_WRITE_REG(hw, E1000_SWSM, swsm | E1000_SWSM_SWESMBI);
207 /* Semaphore acquired if bit latched */
208 if (E1000_READ_REG(hw, E1000_SWSM) & E1000_SWSM_SWESMBI)
215 /* Release semaphores */
216 e1000_put_hw_semaphore_generic(hw);
217 DEBUGOUT("Driver can't access the NVM\n");
218 return -E1000_ERR_NVM;
221 return E1000_SUCCESS;
225 * e1000_read_nvm_srrd_i210 - Reads Shadow Ram using EERD register
226 * @hw: pointer to the HW structure
227 * @offset: offset of word in the Shadow Ram to read
228 * @words: number of words to read
229 * @data: word read from the Shadow Ram
231 * Reads a 16 bit word from the Shadow Ram using the EERD register.
232 * Uses necessary synchronization semaphores.
234 s32 e1000_read_nvm_srrd_i210(struct e1000_hw *hw, u16 offset, u16 words,
237 s32 status = E1000_SUCCESS;
240 DEBUGFUNC("e1000_read_nvm_srrd_i210");
242 /* We cannot hold synchronization semaphores for too long,
243 * because of forceful takeover procedure. However it is more efficient
244 * to read in bursts than synchronizing access for each word. */
245 for (i = 0; i < words; i += E1000_EERD_EEWR_MAX_COUNT) {
246 count = (words - i) / E1000_EERD_EEWR_MAX_COUNT > 0 ?
247 E1000_EERD_EEWR_MAX_COUNT : (words - i);
248 if (hw->nvm.ops.acquire(hw) == E1000_SUCCESS) {
249 status = e1000_read_nvm_eerd(hw, offset, count,
251 hw->nvm.ops.release(hw);
253 status = E1000_ERR_SWFW_SYNC;
256 if (status != E1000_SUCCESS)
264 * e1000_write_nvm_srwr_i210 - Write to Shadow RAM using EEWR
265 * @hw: pointer to the HW structure
266 * @offset: offset within the Shadow RAM to be written to
267 * @words: number of words to write
268 * @data: 16 bit word(s) to be written to the Shadow RAM
270 * Writes data to Shadow RAM at offset using EEWR register.
272 * If e1000_update_nvm_checksum is not called after this function , the
273 * data will not be committed to FLASH and also Shadow RAM will most likely
274 * contain an invalid checksum.
276 * If error code is returned, data and Shadow RAM may be inconsistent - buffer
279 s32 e1000_write_nvm_srwr_i210(struct e1000_hw *hw, u16 offset, u16 words,
282 s32 status = E1000_SUCCESS;
285 DEBUGFUNC("e1000_write_nvm_srwr_i210");
287 /* We cannot hold synchronization semaphores for too long,
288 * because of forceful takeover procedure. However it is more efficient
289 * to write in bursts than synchronizing access for each word. */
290 for (i = 0; i < words; i += E1000_EERD_EEWR_MAX_COUNT) {
291 count = (words - i) / E1000_EERD_EEWR_MAX_COUNT > 0 ?
292 E1000_EERD_EEWR_MAX_COUNT : (words - i);
293 if (hw->nvm.ops.acquire(hw) == E1000_SUCCESS) {
294 status = e1000_write_nvm_srwr(hw, offset, count,
296 hw->nvm.ops.release(hw);
298 status = E1000_ERR_SWFW_SYNC;
301 if (status != E1000_SUCCESS)
309 * e1000_write_nvm_srwr - Write to Shadow Ram using EEWR
310 * @hw: pointer to the HW structure
311 * @offset: offset within the Shadow Ram to be written to
312 * @words: number of words to write
313 * @data: 16 bit word(s) to be written to the Shadow Ram
315 * Writes data to Shadow Ram at offset using EEWR register.
317 * If e1000_update_nvm_checksum is not called after this function , the
318 * Shadow Ram will most likely contain an invalid checksum.
320 STATIC s32 e1000_write_nvm_srwr(struct e1000_hw *hw, u16 offset, u16 words,
323 struct e1000_nvm_info *nvm = &hw->nvm;
325 u32 attempts = 100000;
326 s32 ret_val = E1000_SUCCESS;
328 DEBUGFUNC("e1000_write_nvm_srwr");
331 * A check for invalid values: offset too large, too many words,
332 * too many words for the offset, and not enough words.
334 if ((offset >= nvm->word_size) || (words > (nvm->word_size - offset)) ||
336 DEBUGOUT("nvm parameter(s) out of bounds\n");
337 ret_val = -E1000_ERR_NVM;
341 for (i = 0; i < words; i++) {
342 eewr = ((offset+i) << E1000_NVM_RW_ADDR_SHIFT) |
343 (data[i] << E1000_NVM_RW_REG_DATA) |
344 E1000_NVM_RW_REG_START;
346 E1000_WRITE_REG(hw, E1000_SRWR, eewr);
348 for (k = 0; k < attempts; k++) {
349 if (E1000_NVM_RW_REG_DONE &
350 E1000_READ_REG(hw, E1000_SRWR)) {
351 ret_val = E1000_SUCCESS;
357 if (ret_val != E1000_SUCCESS) {
358 DEBUGOUT("Shadow RAM write EEWR timed out\n");
367 /** e1000_read_invm_word_i210 - Reads OTP
368 * @hw: pointer to the HW structure
369 * @address: the word address (aka eeprom offset) to read
370 * @data: pointer to the data read
372 * Reads 16-bit words from the OTP. Return error when the word is not
375 STATIC s32 e1000_read_invm_word_i210(struct e1000_hw *hw, u8 address, u16 *data)
377 s32 status = -E1000_ERR_INVM_VALUE_NOT_FOUND;
380 u8 record_type, word_address;
382 DEBUGFUNC("e1000_read_invm_word_i210");
384 for (i = 0; i < E1000_INVM_SIZE; i++) {
385 invm_dword = E1000_READ_REG(hw, E1000_INVM_DATA_REG(i));
386 /* Get record type */
387 record_type = INVM_DWORD_TO_RECORD_TYPE(invm_dword);
388 if (record_type == E1000_INVM_UNINITIALIZED_STRUCTURE)
390 if (record_type == E1000_INVM_CSR_AUTOLOAD_STRUCTURE)
391 i += E1000_INVM_CSR_AUTOLOAD_DATA_SIZE_IN_DWORDS;
392 if (record_type == E1000_INVM_RSA_KEY_SHA256_STRUCTURE)
393 i += E1000_INVM_RSA_KEY_SHA256_DATA_SIZE_IN_DWORDS;
394 if (record_type == E1000_INVM_WORD_AUTOLOAD_STRUCTURE) {
395 word_address = INVM_DWORD_TO_WORD_ADDRESS(invm_dword);
396 if (word_address == address) {
397 *data = INVM_DWORD_TO_WORD_DATA(invm_dword);
398 DEBUGOUT2("Read INVM Word 0x%02x = %x",
400 status = E1000_SUCCESS;
405 if (status != E1000_SUCCESS)
406 DEBUGOUT1("Requested word 0x%02x not found in OTP\n", address);
410 /** e1000_read_invm_i210 - Read invm wrapper function for I210/I211
411 * @hw: pointer to the HW structure
412 * @address: the word address (aka eeprom offset) to read
413 * @data: pointer to the data read
415 * Wrapper function to return data formerly found in the NVM.
417 STATIC s32 e1000_read_invm_i210(struct e1000_hw *hw, u16 offset,
418 u16 E1000_UNUSEDARG words, u16 *data)
420 s32 ret_val = E1000_SUCCESS;
421 UNREFERENCED_1PARAMETER(words);
423 DEBUGFUNC("e1000_read_invm_i210");
425 /* Only the MAC addr is required to be present in the iNVM */
428 ret_val = e1000_read_invm_word_i210(hw, (u8)offset, &data[0]);
429 ret_val |= e1000_read_invm_word_i210(hw, (u8)offset+1,
431 ret_val |= e1000_read_invm_word_i210(hw, (u8)offset+2,
433 if (ret_val != E1000_SUCCESS)
434 DEBUGOUT("MAC Addr not found in iNVM\n");
436 case NVM_INIT_CTRL_2:
437 ret_val = e1000_read_invm_word_i210(hw, (u8)offset, data);
438 if (ret_val != E1000_SUCCESS) {
439 *data = NVM_INIT_CTRL_2_DEFAULT_I211;
440 ret_val = E1000_SUCCESS;
443 case NVM_INIT_CTRL_4:
444 ret_val = e1000_read_invm_word_i210(hw, (u8)offset, data);
445 if (ret_val != E1000_SUCCESS) {
446 *data = NVM_INIT_CTRL_4_DEFAULT_I211;
447 ret_val = E1000_SUCCESS;
451 ret_val = e1000_read_invm_word_i210(hw, (u8)offset, data);
452 if (ret_val != E1000_SUCCESS) {
453 *data = NVM_LED_1_CFG_DEFAULT_I211;
454 ret_val = E1000_SUCCESS;
457 case NVM_LED_0_2_CFG:
458 ret_val = e1000_read_invm_word_i210(hw, (u8)offset, data);
459 if (ret_val != E1000_SUCCESS) {
460 *data = NVM_LED_0_2_CFG_DEFAULT_I211;
461 ret_val = E1000_SUCCESS;
464 case NVM_ID_LED_SETTINGS:
465 ret_val = e1000_read_invm_word_i210(hw, (u8)offset, data);
466 if (ret_val != E1000_SUCCESS) {
467 *data = ID_LED_RESERVED_FFFF;
468 ret_val = E1000_SUCCESS;
472 *data = hw->subsystem_device_id;
475 *data = hw->subsystem_vendor_id;
478 *data = hw->device_id;
481 *data = hw->vendor_id;
484 DEBUGOUT1("NVM word 0x%02x is not mapped.\n", offset);
485 *data = NVM_RESERVED_WORD;
492 * e1000_read_invm_version - Reads iNVM version and image type
493 * @hw: pointer to the HW structure
494 * @invm_ver: version structure for the version read
496 * Reads iNVM version and image type.
498 s32 e1000_read_invm_version(struct e1000_hw *hw,
499 struct e1000_fw_version *invm_ver)
502 u32 *next_record = NULL;
505 u32 invm_blocks = E1000_INVM_SIZE - (E1000_INVM_ULT_BYTES_SIZE /
506 E1000_INVM_RECORD_SIZE_IN_BYTES);
507 u32 buffer[E1000_INVM_SIZE];
508 s32 status = -E1000_ERR_INVM_VALUE_NOT_FOUND;
511 DEBUGFUNC("e1000_read_invm_version");
513 /* Read iNVM memory */
514 for (i = 0; i < E1000_INVM_SIZE; i++) {
515 invm_dword = E1000_READ_REG(hw, E1000_INVM_DATA_REG(i));
516 buffer[i] = invm_dword;
519 /* Read version number */
520 for (i = 1; i < invm_blocks; i++) {
521 record = &buffer[invm_blocks - i];
522 next_record = &buffer[invm_blocks - i + 1];
524 /* Check if we have first version location used */
525 if ((i == 1) && ((*record & E1000_INVM_VER_FIELD_ONE) == 0)) {
527 status = E1000_SUCCESS;
530 /* Check if we have second version location used */
532 ((*record & E1000_INVM_VER_FIELD_TWO) == 0)) {
533 version = (*record & E1000_INVM_VER_FIELD_ONE) >> 3;
534 status = E1000_SUCCESS;
538 * Check if we have odd version location
539 * used and it is the last one used
541 else if ((((*record & E1000_INVM_VER_FIELD_ONE) == 0) &&
542 ((*record & 0x3) == 0)) || (((*record & 0x3) != 0) &&
544 version = (*next_record & E1000_INVM_VER_FIELD_TWO)
546 status = E1000_SUCCESS;
550 * Check if we have even version location
551 * used and it is the last one used
553 else if (((*record & E1000_INVM_VER_FIELD_TWO) == 0) &&
554 ((*record & 0x3) == 0)) {
555 version = (*record & E1000_INVM_VER_FIELD_ONE) >> 3;
556 status = E1000_SUCCESS;
561 if (status == E1000_SUCCESS) {
562 invm_ver->invm_major = (version & E1000_INVM_MAJOR_MASK)
563 >> E1000_INVM_MAJOR_SHIFT;
564 invm_ver->invm_minor = version & E1000_INVM_MINOR_MASK;
566 /* Read Image Type */
567 for (i = 1; i < invm_blocks; i++) {
568 record = &buffer[invm_blocks - i];
569 next_record = &buffer[invm_blocks - i + 1];
571 /* Check if we have image type in first location used */
572 if ((i == 1) && ((*record & E1000_INVM_IMGTYPE_FIELD) == 0)) {
573 invm_ver->invm_img_type = 0;
574 status = E1000_SUCCESS;
577 /* Check if we have image type in first location used */
578 else if ((((*record & 0x3) == 0) &&
579 ((*record & E1000_INVM_IMGTYPE_FIELD) == 0)) ||
580 ((((*record & 0x3) != 0) && (i != 1)))) {
581 invm_ver->invm_img_type =
582 (*next_record & E1000_INVM_IMGTYPE_FIELD) >> 23;
583 status = E1000_SUCCESS;
591 * e1000_validate_nvm_checksum_i210 - Validate EEPROM checksum
592 * @hw: pointer to the HW structure
594 * Calculates the EEPROM checksum by reading/adding each word of the EEPROM
595 * and then verifies that the sum of the EEPROM is equal to 0xBABA.
597 s32 e1000_validate_nvm_checksum_i210(struct e1000_hw *hw)
599 s32 status = E1000_SUCCESS;
600 s32 (*read_op_ptr)(struct e1000_hw *, u16, u16, u16 *);
602 DEBUGFUNC("e1000_validate_nvm_checksum_i210");
604 if (hw->nvm.ops.acquire(hw) == E1000_SUCCESS) {
607 * Replace the read function with semaphore grabbing with
608 * the one that skips this for a while.
609 * We have semaphore taken already here.
611 read_op_ptr = hw->nvm.ops.read;
612 hw->nvm.ops.read = e1000_read_nvm_eerd;
614 status = e1000_validate_nvm_checksum_generic(hw);
616 /* Revert original read operation. */
617 hw->nvm.ops.read = read_op_ptr;
619 hw->nvm.ops.release(hw);
621 status = E1000_ERR_SWFW_SYNC;
629 * e1000_update_nvm_checksum_i210 - Update EEPROM checksum
630 * @hw: pointer to the HW structure
632 * Updates the EEPROM checksum by reading/adding each word of the EEPROM
633 * up to the checksum. Then calculates the EEPROM checksum and writes the
634 * value to the EEPROM. Next commit EEPROM data onto the Flash.
636 s32 e1000_update_nvm_checksum_i210(struct e1000_hw *hw)
642 DEBUGFUNC("e1000_update_nvm_checksum_i210");
645 * Read the first word from the EEPROM. If this times out or fails, do
646 * not continue or we could be in for a very long wait while every
649 ret_val = e1000_read_nvm_eerd(hw, 0, 1, &nvm_data);
650 if (ret_val != E1000_SUCCESS) {
651 DEBUGOUT("EEPROM read failed\n");
655 if (hw->nvm.ops.acquire(hw) == E1000_SUCCESS) {
657 * Do not use hw->nvm.ops.write, hw->nvm.ops.read
658 * because we do not want to take the synchronization
659 * semaphores twice here.
662 for (i = 0; i < NVM_CHECKSUM_REG; i++) {
663 ret_val = e1000_read_nvm_eerd(hw, i, 1, &nvm_data);
665 hw->nvm.ops.release(hw);
666 DEBUGOUT("NVM Read Error while updating checksum.\n");
669 checksum += nvm_data;
671 checksum = (u16) NVM_SUM - checksum;
672 ret_val = e1000_write_nvm_srwr(hw, NVM_CHECKSUM_REG, 1,
674 if (ret_val != E1000_SUCCESS) {
675 hw->nvm.ops.release(hw);
676 DEBUGOUT("NVM Write Error while updating checksum.\n");
680 hw->nvm.ops.release(hw);
682 ret_val = e1000_update_flash_i210(hw);
684 ret_val = E1000_ERR_SWFW_SYNC;
691 * e1000_get_flash_presence_i210 - Check if flash device is detected.
692 * @hw: pointer to the HW structure
695 bool e1000_get_flash_presence_i210(struct e1000_hw *hw)
698 bool ret_val = false;
700 DEBUGFUNC("e1000_get_flash_presence_i210");
702 eec = E1000_READ_REG(hw, E1000_EECD);
704 if (eec & E1000_EECD_FLASH_DETECTED_I210)
711 * e1000_update_flash_i210 - Commit EEPROM to the flash
712 * @hw: pointer to the HW structure
715 s32 e1000_update_flash_i210(struct e1000_hw *hw)
720 DEBUGFUNC("e1000_update_flash_i210");
722 ret_val = e1000_pool_flash_update_done_i210(hw);
723 if (ret_val == -E1000_ERR_NVM) {
724 DEBUGOUT("Flash update time out\n");
728 flup = E1000_READ_REG(hw, E1000_EECD) | E1000_EECD_FLUPD_I210;
729 E1000_WRITE_REG(hw, E1000_EECD, flup);
731 ret_val = e1000_pool_flash_update_done_i210(hw);
732 if (ret_val == E1000_SUCCESS)
733 DEBUGOUT("Flash update complete\n");
735 DEBUGOUT("Flash update time out\n");
742 * e1000_pool_flash_update_done_i210 - Pool FLUDONE status.
743 * @hw: pointer to the HW structure
746 s32 e1000_pool_flash_update_done_i210(struct e1000_hw *hw)
748 s32 ret_val = -E1000_ERR_NVM;
751 DEBUGFUNC("e1000_pool_flash_update_done_i210");
753 for (i = 0; i < E1000_FLUDONE_ATTEMPTS; i++) {
754 reg = E1000_READ_REG(hw, E1000_EECD);
755 if (reg & E1000_EECD_FLUDONE_I210) {
756 ret_val = E1000_SUCCESS;
766 * e1000_init_nvm_params_i210 - Initialize i210 NVM function pointers
767 * @hw: pointer to the HW structure
769 * Initialize the i210/i211 NVM parameters and function pointers.
771 STATIC s32 e1000_init_nvm_params_i210(struct e1000_hw *hw)
774 struct e1000_nvm_info *nvm = &hw->nvm;
776 DEBUGFUNC("e1000_init_nvm_params_i210");
778 ret_val = e1000_init_nvm_params_82575(hw);
779 nvm->ops.acquire = e1000_acquire_nvm_i210;
780 nvm->ops.release = e1000_release_nvm_i210;
781 nvm->ops.valid_led_default = e1000_valid_led_default_i210;
782 if (e1000_get_flash_presence_i210(hw)) {
783 hw->nvm.type = e1000_nvm_flash_hw;
784 nvm->ops.read = e1000_read_nvm_srrd_i210;
785 nvm->ops.write = e1000_write_nvm_srwr_i210;
786 nvm->ops.validate = e1000_validate_nvm_checksum_i210;
787 nvm->ops.update = e1000_update_nvm_checksum_i210;
789 hw->nvm.type = e1000_nvm_invm;
790 nvm->ops.read = e1000_read_invm_i210;
791 nvm->ops.write = e1000_null_write_nvm;
792 nvm->ops.validate = e1000_null_ops_generic;
793 nvm->ops.update = e1000_null_ops_generic;
799 * e1000_init_function_pointers_i210 - Init func ptrs.
800 * @hw: pointer to the HW structure
802 * Called to initialize all function pointers and parameters.
804 void e1000_init_function_pointers_i210(struct e1000_hw *hw)
806 e1000_init_function_pointers_82575(hw);
807 hw->nvm.ops.init_params = e1000_init_nvm_params_i210;
813 * e1000_valid_led_default_i210 - Verify a valid default LED config
814 * @hw: pointer to the HW structure
815 * @data: pointer to the NVM (EEPROM)
817 * Read the EEPROM for the current default LED configuration. If the
818 * LED configuration is not valid, set to a valid LED configuration.
820 STATIC s32 e1000_valid_led_default_i210(struct e1000_hw *hw, u16 *data)
824 DEBUGFUNC("e1000_valid_led_default_i210");
826 ret_val = hw->nvm.ops.read(hw, NVM_ID_LED_SETTINGS, 1, data);
828 DEBUGOUT("NVM Read Error\n");
832 if (*data == ID_LED_RESERVED_0000 || *data == ID_LED_RESERVED_FFFF) {
833 switch (hw->phy.media_type) {
834 case e1000_media_type_internal_serdes:
835 *data = ID_LED_DEFAULT_I210_SERDES;
837 case e1000_media_type_copper:
839 *data = ID_LED_DEFAULT_I210;
848 * __e1000_access_xmdio_reg - Read/write XMDIO register
849 * @hw: pointer to the HW structure
850 * @address: XMDIO address to program
851 * @dev_addr: device address to program
852 * @data: pointer to value to read/write from/to the XMDIO address
853 * @read: boolean flag to indicate read or write
855 STATIC s32 __e1000_access_xmdio_reg(struct e1000_hw *hw, u16 address,
856 u8 dev_addr, u16 *data, bool read)
860 DEBUGFUNC("__e1000_access_xmdio_reg");
862 ret_val = hw->phy.ops.write_reg(hw, E1000_MMDAC, dev_addr);
866 ret_val = hw->phy.ops.write_reg(hw, E1000_MMDAAD, address);
870 ret_val = hw->phy.ops.write_reg(hw, E1000_MMDAC, E1000_MMDAC_FUNC_DATA |
876 ret_val = hw->phy.ops.read_reg(hw, E1000_MMDAAD, data);
878 ret_val = hw->phy.ops.write_reg(hw, E1000_MMDAAD, *data);
882 /* Recalibrate the device back to 0 */
883 ret_val = hw->phy.ops.write_reg(hw, E1000_MMDAC, 0);
891 * e1000_read_xmdio_reg - Read XMDIO register
892 * @hw: pointer to the HW structure
893 * @addr: XMDIO address to program
894 * @dev_addr: device address to program
895 * @data: value to be read from the EMI address
897 s32 e1000_read_xmdio_reg(struct e1000_hw *hw, u16 addr, u8 dev_addr, u16 *data)
899 DEBUGFUNC("e1000_read_xmdio_reg");
901 return __e1000_access_xmdio_reg(hw, addr, dev_addr, data, true);
905 * e1000_write_xmdio_reg - Write XMDIO register
906 * @hw: pointer to the HW structure
907 * @addr: XMDIO address to program
908 * @dev_addr: device address to program
909 * @data: value to be written to the XMDIO address
911 s32 e1000_write_xmdio_reg(struct e1000_hw *hw, u16 addr, u8 dev_addr, u16 data)
913 DEBUGFUNC("e1000_read_xmdio_reg");
915 return __e1000_access_xmdio_reg(hw, addr, dev_addr, &data, false);
919 * e1000_pll_workaround_i210
920 * @hw: pointer to the HW structure
922 * Works around an errata in the PLL circuit where it occasionally
923 * provides the wrong clock frequency after power up.
925 STATIC s32 e1000_pll_workaround_i210(struct e1000_hw *hw)
928 u32 wuc, mdicnfg, ctrl_ext, reg_val;
929 u16 nvm_word, phy_word, pci_word, tmp_nvm;
932 /* Get and set needed register values */
933 wuc = E1000_READ_REG(hw, E1000_WUC);
934 mdicnfg = E1000_READ_REG(hw, E1000_MDICNFG);
935 reg_val = mdicnfg & ~E1000_MDICNFG_EXT_MDIO;
936 E1000_WRITE_REG(hw, E1000_MDICNFG, reg_val);
938 /* Get data from NVM, or set default */
939 ret_val = e1000_read_invm_word_i210(hw, E1000_INVM_AUTOLOAD,
941 if (ret_val != E1000_SUCCESS)
942 nvm_word = E1000_INVM_DEFAULT_AL;
943 tmp_nvm = nvm_word | E1000_INVM_PLL_WO_VAL;
944 for (i = 0; i < E1000_MAX_PLL_TRIES; i++) {
945 /* check current state */
946 hw->phy.ops.read_reg(hw, (E1000_PHY_PLL_FREQ_PAGE |
947 E1000_PHY_PLL_FREQ_REG), &phy_word);
948 if ((phy_word & E1000_PHY_PLL_UNCONF)
949 != E1000_PHY_PLL_UNCONF) {
950 ret_val = E1000_SUCCESS;
953 ret_val = -E1000_ERR_PHY;
955 hw->phy.ops.reset(hw);
956 ctrl_ext = E1000_READ_REG(hw, E1000_CTRL_EXT);
957 ctrl_ext |= (E1000_CTRL_EXT_PHYPDEN | E1000_CTRL_EXT_SDLPE);
958 E1000_WRITE_REG(hw, E1000_CTRL_EXT, ctrl_ext);
960 E1000_WRITE_REG(hw, E1000_WUC, 0);
961 reg_val = (E1000_INVM_AUTOLOAD << 4) | (tmp_nvm << 16);
962 E1000_WRITE_REG(hw, E1000_EEARBC, reg_val);
964 e1000_read_pci_cfg(hw, E1000_PCI_PMCSR, &pci_word);
965 pci_word |= E1000_PCI_PMCSR_D3;
966 e1000_write_pci_cfg(hw, E1000_PCI_PMCSR, &pci_word);
968 pci_word &= ~E1000_PCI_PMCSR_D3;
969 e1000_write_pci_cfg(hw, E1000_PCI_PMCSR, &pci_word);
970 reg_val = (E1000_INVM_AUTOLOAD << 4) | (nvm_word << 16);
971 E1000_WRITE_REG(hw, E1000_EEARBC, reg_val);
973 /* restore WUC register */
974 E1000_WRITE_REG(hw, E1000_WUC, wuc);
976 /* restore MDICNFG setting */
977 E1000_WRITE_REG(hw, E1000_MDICNFG, mdicnfg);
982 * e1000_init_hw_i210 - Init hw for I210/I211
983 * @hw: pointer to the HW structure
985 * Called to initialize hw for i210 hw family.
987 s32 e1000_init_hw_i210(struct e1000_hw *hw)
991 DEBUGFUNC("e1000_init_hw_i210");
992 if ((hw->mac.type >= e1000_i210) &&
993 !(e1000_get_flash_presence_i210(hw))) {
994 ret_val = e1000_pll_workaround_i210(hw);
995 if (ret_val != E1000_SUCCESS)
998 ret_val = e1000_init_hw_82575(hw);