Loading...
1// SPDX-License-Identifier: GPL-2.0
2/* Copyright(c) 2007 - 2018 Intel Corporation. */
3
4/* e1000_i210
5 * e1000_i211
6 */
7
8#include <linux/bitfield.h>
9#include <linux/if_ether.h>
10#include <linux/types.h>
11#include "e1000_hw.h"
12#include "e1000_i210.h"
13
14static s32 igb_update_flash_i210(struct e1000_hw *hw);
15
16/**
17 * igb_get_hw_semaphore_i210 - Acquire hardware semaphore
18 * @hw: pointer to the HW structure
19 *
20 * Acquire the HW semaphore to access the PHY or NVM
21 */
22static s32 igb_get_hw_semaphore_i210(struct e1000_hw *hw)
23{
24 u32 swsm;
25 s32 timeout = hw->nvm.word_size + 1;
26 s32 i = 0;
27
28 /* Get the SW semaphore */
29 while (i < timeout) {
30 swsm = rd32(E1000_SWSM);
31 if (!(swsm & E1000_SWSM_SMBI))
32 break;
33
34 udelay(50);
35 i++;
36 }
37
38 if (i == timeout) {
39 /* In rare circumstances, the SW semaphore may already be held
40 * unintentionally. Clear the semaphore once before giving up.
41 */
42 if (hw->dev_spec._82575.clear_semaphore_once) {
43 hw->dev_spec._82575.clear_semaphore_once = false;
44 igb_put_hw_semaphore(hw);
45 for (i = 0; i < timeout; i++) {
46 swsm = rd32(E1000_SWSM);
47 if (!(swsm & E1000_SWSM_SMBI))
48 break;
49
50 udelay(50);
51 }
52 }
53
54 /* If we do not have the semaphore here, we have to give up. */
55 if (i == timeout) {
56 hw_dbg("Driver can't access device - SMBI bit is set.\n");
57 return -E1000_ERR_NVM;
58 }
59 }
60
61 /* Get the FW semaphore. */
62 for (i = 0; i < timeout; i++) {
63 swsm = rd32(E1000_SWSM);
64 wr32(E1000_SWSM, swsm | E1000_SWSM_SWESMBI);
65
66 /* Semaphore acquired if bit latched */
67 if (rd32(E1000_SWSM) & E1000_SWSM_SWESMBI)
68 break;
69
70 udelay(50);
71 }
72
73 if (i == timeout) {
74 /* Release semaphores */
75 igb_put_hw_semaphore(hw);
76 hw_dbg("Driver can't access the NVM\n");
77 return -E1000_ERR_NVM;
78 }
79
80 return 0;
81}
82
83/**
84 * igb_acquire_nvm_i210 - Request for access to EEPROM
85 * @hw: pointer to the HW structure
86 *
87 * Acquire the necessary semaphores for exclusive access to the EEPROM.
88 * Set the EEPROM access request bit and wait for EEPROM access grant bit.
89 * Return successful if access grant bit set, else clear the request for
90 * EEPROM access and return -E1000_ERR_NVM (-1).
91 **/
92static s32 igb_acquire_nvm_i210(struct e1000_hw *hw)
93{
94 return igb_acquire_swfw_sync_i210(hw, E1000_SWFW_EEP_SM);
95}
96
97/**
98 * igb_release_nvm_i210 - Release exclusive access to EEPROM
99 * @hw: pointer to the HW structure
100 *
101 * Stop any current commands to the EEPROM and clear the EEPROM request bit,
102 * then release the semaphores acquired.
103 **/
104static void igb_release_nvm_i210(struct e1000_hw *hw)
105{
106 igb_release_swfw_sync_i210(hw, E1000_SWFW_EEP_SM);
107}
108
109/**
110 * igb_acquire_swfw_sync_i210 - Acquire SW/FW semaphore
111 * @hw: pointer to the HW structure
112 * @mask: specifies which semaphore to acquire
113 *
114 * Acquire the SW/FW semaphore to access the PHY or NVM. The mask
115 * will also specify which port we're acquiring the lock for.
116 **/
117s32 igb_acquire_swfw_sync_i210(struct e1000_hw *hw, u16 mask)
118{
119 u32 swfw_sync;
120 u32 swmask = mask;
121 u32 fwmask = mask << 16;
122 s32 ret_val = 0;
123 s32 i = 0, timeout = 200; /* FIXME: find real value to use here */
124
125 while (i < timeout) {
126 if (igb_get_hw_semaphore_i210(hw)) {
127 ret_val = -E1000_ERR_SWFW_SYNC;
128 goto out;
129 }
130
131 swfw_sync = rd32(E1000_SW_FW_SYNC);
132 if (!(swfw_sync & (fwmask | swmask)))
133 break;
134
135 /* Firmware currently using resource (fwmask) */
136 igb_put_hw_semaphore(hw);
137 mdelay(5);
138 i++;
139 }
140
141 if (i == timeout) {
142 hw_dbg("Driver can't access resource, SW_FW_SYNC timeout.\n");
143 ret_val = -E1000_ERR_SWFW_SYNC;
144 goto out;
145 }
146
147 swfw_sync |= swmask;
148 wr32(E1000_SW_FW_SYNC, swfw_sync);
149
150 igb_put_hw_semaphore(hw);
151out:
152 return ret_val;
153}
154
155/**
156 * igb_release_swfw_sync_i210 - Release SW/FW semaphore
157 * @hw: pointer to the HW structure
158 * @mask: specifies which semaphore to acquire
159 *
160 * Release the SW/FW semaphore used to access the PHY or NVM. The mask
161 * will also specify which port we're releasing the lock for.
162 **/
163void igb_release_swfw_sync_i210(struct e1000_hw *hw, u16 mask)
164{
165 u32 swfw_sync;
166
167 while (igb_get_hw_semaphore_i210(hw))
168 ; /* Empty */
169
170 swfw_sync = rd32(E1000_SW_FW_SYNC);
171 swfw_sync &= ~mask;
172 wr32(E1000_SW_FW_SYNC, swfw_sync);
173
174 igb_put_hw_semaphore(hw);
175}
176
177/**
178 * igb_read_nvm_srrd_i210 - Reads Shadow Ram using EERD register
179 * @hw: pointer to the HW structure
180 * @offset: offset of word in the Shadow Ram to read
181 * @words: number of words to read
182 * @data: word read from the Shadow Ram
183 *
184 * Reads a 16 bit word from the Shadow Ram using the EERD register.
185 * Uses necessary synchronization semaphores.
186 **/
187static s32 igb_read_nvm_srrd_i210(struct e1000_hw *hw, u16 offset, u16 words,
188 u16 *data)
189{
190 s32 status = 0;
191 u16 i, count;
192
193 /* We cannot hold synchronization semaphores for too long,
194 * because of forceful takeover procedure. However it is more efficient
195 * to read in bursts than synchronizing access for each word.
196 */
197 for (i = 0; i < words; i += E1000_EERD_EEWR_MAX_COUNT) {
198 count = (words - i) / E1000_EERD_EEWR_MAX_COUNT > 0 ?
199 E1000_EERD_EEWR_MAX_COUNT : (words - i);
200 if (!(hw->nvm.ops.acquire(hw))) {
201 status = igb_read_nvm_eerd(hw, offset, count,
202 data + i);
203 hw->nvm.ops.release(hw);
204 } else {
205 status = E1000_ERR_SWFW_SYNC;
206 }
207
208 if (status)
209 break;
210 }
211
212 return status;
213}
214
215/**
216 * igb_write_nvm_srwr - Write to Shadow Ram using EEWR
217 * @hw: pointer to the HW structure
218 * @offset: offset within the Shadow Ram to be written to
219 * @words: number of words to write
220 * @data: 16 bit word(s) to be written to the Shadow Ram
221 *
222 * Writes data to Shadow Ram at offset using EEWR register.
223 *
224 * If igb_update_nvm_checksum is not called after this function , the
225 * Shadow Ram will most likely contain an invalid checksum.
226 **/
227static s32 igb_write_nvm_srwr(struct e1000_hw *hw, u16 offset, u16 words,
228 u16 *data)
229{
230 struct e1000_nvm_info *nvm = &hw->nvm;
231 u32 i, k, eewr = 0;
232 u32 attempts = 100000;
233 s32 ret_val = 0;
234
235 /* A check for invalid values: offset too large, too many words,
236 * too many words for the offset, and not enough words.
237 */
238 if ((offset >= nvm->word_size) || (words > (nvm->word_size - offset)) ||
239 (words == 0)) {
240 hw_dbg("nvm parameter(s) out of bounds\n");
241 ret_val = -E1000_ERR_NVM;
242 goto out;
243 }
244
245 for (i = 0; i < words; i++) {
246 eewr = ((offset+i) << E1000_NVM_RW_ADDR_SHIFT) |
247 (data[i] << E1000_NVM_RW_REG_DATA) |
248 E1000_NVM_RW_REG_START;
249
250 wr32(E1000_SRWR, eewr);
251
252 for (k = 0; k < attempts; k++) {
253 if (E1000_NVM_RW_REG_DONE &
254 rd32(E1000_SRWR)) {
255 ret_val = 0;
256 break;
257 }
258 udelay(5);
259 }
260
261 if (ret_val) {
262 hw_dbg("Shadow RAM write EEWR timed out\n");
263 break;
264 }
265 }
266
267out:
268 return ret_val;
269}
270
271/**
272 * igb_write_nvm_srwr_i210 - Write to Shadow RAM using EEWR
273 * @hw: pointer to the HW structure
274 * @offset: offset within the Shadow RAM to be written to
275 * @words: number of words to write
276 * @data: 16 bit word(s) to be written to the Shadow RAM
277 *
278 * Writes data to Shadow RAM at offset using EEWR register.
279 *
280 * If e1000_update_nvm_checksum is not called after this function , the
281 * data will not be committed to FLASH and also Shadow RAM will most likely
282 * contain an invalid checksum.
283 *
284 * If error code is returned, data and Shadow RAM may be inconsistent - buffer
285 * partially written.
286 **/
287static s32 igb_write_nvm_srwr_i210(struct e1000_hw *hw, u16 offset, u16 words,
288 u16 *data)
289{
290 s32 status = 0;
291 u16 i, count;
292
293 /* We cannot hold synchronization semaphores for too long,
294 * because of forceful takeover procedure. However it is more efficient
295 * to write in bursts than synchronizing access for each word.
296 */
297 for (i = 0; i < words; i += E1000_EERD_EEWR_MAX_COUNT) {
298 count = (words - i) / E1000_EERD_EEWR_MAX_COUNT > 0 ?
299 E1000_EERD_EEWR_MAX_COUNT : (words - i);
300 if (!(hw->nvm.ops.acquire(hw))) {
301 status = igb_write_nvm_srwr(hw, offset, count,
302 data + i);
303 hw->nvm.ops.release(hw);
304 } else {
305 status = E1000_ERR_SWFW_SYNC;
306 }
307
308 if (status)
309 break;
310 }
311
312 return status;
313}
314
315/**
316 * igb_read_invm_word_i210 - Reads OTP
317 * @hw: pointer to the HW structure
318 * @address: the word address (aka eeprom offset) to read
319 * @data: pointer to the data read
320 *
321 * Reads 16-bit words from the OTP. Return error when the word is not
322 * stored in OTP.
323 **/
324static s32 igb_read_invm_word_i210(struct e1000_hw *hw, u8 address, u16 *data)
325{
326 s32 status = -E1000_ERR_INVM_VALUE_NOT_FOUND;
327 u32 invm_dword;
328 u16 i;
329 u8 record_type, word_address;
330
331 for (i = 0; i < E1000_INVM_SIZE; i++) {
332 invm_dword = rd32(E1000_INVM_DATA_REG(i));
333 /* Get record type */
334 record_type = INVM_DWORD_TO_RECORD_TYPE(invm_dword);
335 if (record_type == E1000_INVM_UNINITIALIZED_STRUCTURE)
336 break;
337 if (record_type == E1000_INVM_CSR_AUTOLOAD_STRUCTURE)
338 i += E1000_INVM_CSR_AUTOLOAD_DATA_SIZE_IN_DWORDS;
339 if (record_type == E1000_INVM_RSA_KEY_SHA256_STRUCTURE)
340 i += E1000_INVM_RSA_KEY_SHA256_DATA_SIZE_IN_DWORDS;
341 if (record_type == E1000_INVM_WORD_AUTOLOAD_STRUCTURE) {
342 word_address = INVM_DWORD_TO_WORD_ADDRESS(invm_dword);
343 if (word_address == address) {
344 *data = INVM_DWORD_TO_WORD_DATA(invm_dword);
345 hw_dbg("Read INVM Word 0x%02x = %x\n",
346 address, *data);
347 status = 0;
348 break;
349 }
350 }
351 }
352 if (status)
353 hw_dbg("Requested word 0x%02x not found in OTP\n", address);
354 return status;
355}
356
357/**
358 * igb_read_invm_i210 - Read invm wrapper function for I210/I211
359 * @hw: pointer to the HW structure
360 * @offset: offset to read from
361 * @words: number of words to read (unused)
362 * @data: pointer to the data read
363 *
364 * Wrapper function to return data formerly found in the NVM.
365 **/
366static s32 igb_read_invm_i210(struct e1000_hw *hw, u16 offset,
367 u16 __always_unused words, u16 *data)
368{
369 s32 ret_val = 0;
370
371 /* Only the MAC addr is required to be present in the iNVM */
372 switch (offset) {
373 case NVM_MAC_ADDR:
374 ret_val = igb_read_invm_word_i210(hw, (u8)offset, &data[0]);
375 ret_val |= igb_read_invm_word_i210(hw, (u8)offset+1,
376 &data[1]);
377 ret_val |= igb_read_invm_word_i210(hw, (u8)offset+2,
378 &data[2]);
379 if (ret_val)
380 hw_dbg("MAC Addr not found in iNVM\n");
381 break;
382 case NVM_INIT_CTRL_2:
383 ret_val = igb_read_invm_word_i210(hw, (u8)offset, data);
384 if (ret_val) {
385 *data = NVM_INIT_CTRL_2_DEFAULT_I211;
386 ret_val = 0;
387 }
388 break;
389 case NVM_INIT_CTRL_4:
390 ret_val = igb_read_invm_word_i210(hw, (u8)offset, data);
391 if (ret_val) {
392 *data = NVM_INIT_CTRL_4_DEFAULT_I211;
393 ret_val = 0;
394 }
395 break;
396 case NVM_LED_1_CFG:
397 ret_val = igb_read_invm_word_i210(hw, (u8)offset, data);
398 if (ret_val) {
399 *data = NVM_LED_1_CFG_DEFAULT_I211;
400 ret_val = 0;
401 }
402 break;
403 case NVM_LED_0_2_CFG:
404 ret_val = igb_read_invm_word_i210(hw, (u8)offset, data);
405 if (ret_val) {
406 *data = NVM_LED_0_2_CFG_DEFAULT_I211;
407 ret_val = 0;
408 }
409 break;
410 case NVM_ID_LED_SETTINGS:
411 ret_val = igb_read_invm_word_i210(hw, (u8)offset, data);
412 if (ret_val) {
413 *data = ID_LED_RESERVED_FFFF;
414 ret_val = 0;
415 }
416 break;
417 case NVM_SUB_DEV_ID:
418 *data = hw->subsystem_device_id;
419 break;
420 case NVM_SUB_VEN_ID:
421 *data = hw->subsystem_vendor_id;
422 break;
423 case NVM_DEV_ID:
424 *data = hw->device_id;
425 break;
426 case NVM_VEN_ID:
427 *data = hw->vendor_id;
428 break;
429 default:
430 hw_dbg("NVM word 0x%02x is not mapped.\n", offset);
431 *data = NVM_RESERVED_WORD;
432 break;
433 }
434 return ret_val;
435}
436
437/**
438 * igb_read_invm_version - Reads iNVM version and image type
439 * @hw: pointer to the HW structure
440 * @invm_ver: version structure for the version read
441 *
442 * Reads iNVM version and image type.
443 **/
444s32 igb_read_invm_version(struct e1000_hw *hw,
445 struct e1000_fw_version *invm_ver) {
446 u32 *record = NULL;
447 u32 *next_record = NULL;
448 u32 i = 0;
449 u32 invm_dword = 0;
450 u32 invm_blocks = E1000_INVM_SIZE - (E1000_INVM_ULT_BYTES_SIZE /
451 E1000_INVM_RECORD_SIZE_IN_BYTES);
452 u32 buffer[E1000_INVM_SIZE];
453 s32 status = -E1000_ERR_INVM_VALUE_NOT_FOUND;
454 u16 version = 0;
455
456 /* Read iNVM memory */
457 for (i = 0; i < E1000_INVM_SIZE; i++) {
458 invm_dword = rd32(E1000_INVM_DATA_REG(i));
459 buffer[i] = invm_dword;
460 }
461
462 /* Read version number */
463 for (i = 1; i < invm_blocks; i++) {
464 record = &buffer[invm_blocks - i];
465 next_record = &buffer[invm_blocks - i + 1];
466
467 /* Check if we have first version location used */
468 if ((i == 1) && ((*record & E1000_INVM_VER_FIELD_ONE) == 0)) {
469 version = 0;
470 status = 0;
471 break;
472 }
473 /* Check if we have second version location used */
474 else if ((i == 1) &&
475 ((*record & E1000_INVM_VER_FIELD_TWO) == 0)) {
476 version = FIELD_GET(E1000_INVM_VER_FIELD_ONE, *record);
477 status = 0;
478 break;
479 }
480 /* Check if we have odd version location
481 * used and it is the last one used
482 */
483 else if ((((*record & E1000_INVM_VER_FIELD_ONE) == 0) &&
484 ((*record & 0x3) == 0)) || (((*record & 0x3) != 0) &&
485 (i != 1))) {
486 version = FIELD_GET(E1000_INVM_VER_FIELD_TWO,
487 *next_record);
488 status = 0;
489 break;
490 }
491 /* Check if we have even version location
492 * used and it is the last one used
493 */
494 else if (((*record & E1000_INVM_VER_FIELD_TWO) == 0) &&
495 ((*record & 0x3) == 0)) {
496 version = FIELD_GET(E1000_INVM_VER_FIELD_ONE, *record);
497 status = 0;
498 break;
499 }
500 }
501
502 if (!status) {
503 invm_ver->invm_major = FIELD_GET(E1000_INVM_MAJOR_MASK,
504 version);
505 invm_ver->invm_minor = version & E1000_INVM_MINOR_MASK;
506 }
507 /* Read Image Type */
508 for (i = 1; i < invm_blocks; i++) {
509 record = &buffer[invm_blocks - i];
510 next_record = &buffer[invm_blocks - i + 1];
511
512 /* Check if we have image type in first location used */
513 if ((i == 1) && ((*record & E1000_INVM_IMGTYPE_FIELD) == 0)) {
514 invm_ver->invm_img_type = 0;
515 status = 0;
516 break;
517 }
518 /* Check if we have image type in first location used */
519 else if ((((*record & 0x3) == 0) &&
520 ((*record & E1000_INVM_IMGTYPE_FIELD) == 0)) ||
521 ((((*record & 0x3) != 0) && (i != 1)))) {
522 invm_ver->invm_img_type =
523 FIELD_GET(E1000_INVM_IMGTYPE_FIELD,
524 *next_record);
525 status = 0;
526 break;
527 }
528 }
529 return status;
530}
531
532/**
533 * igb_validate_nvm_checksum_i210 - Validate EEPROM checksum
534 * @hw: pointer to the HW structure
535 *
536 * Calculates the EEPROM checksum by reading/adding each word of the EEPROM
537 * and then verifies that the sum of the EEPROM is equal to 0xBABA.
538 **/
539static s32 igb_validate_nvm_checksum_i210(struct e1000_hw *hw)
540{
541 s32 status = 0;
542 s32 (*read_op_ptr)(struct e1000_hw *, u16, u16, u16 *);
543
544 if (!(hw->nvm.ops.acquire(hw))) {
545
546 /* Replace the read function with semaphore grabbing with
547 * the one that skips this for a while.
548 * We have semaphore taken already here.
549 */
550 read_op_ptr = hw->nvm.ops.read;
551 hw->nvm.ops.read = igb_read_nvm_eerd;
552
553 status = igb_validate_nvm_checksum(hw);
554
555 /* Revert original read operation. */
556 hw->nvm.ops.read = read_op_ptr;
557
558 hw->nvm.ops.release(hw);
559 } else {
560 status = E1000_ERR_SWFW_SYNC;
561 }
562
563 return status;
564}
565
566/**
567 * igb_update_nvm_checksum_i210 - Update EEPROM checksum
568 * @hw: pointer to the HW structure
569 *
570 * Updates the EEPROM checksum by reading/adding each word of the EEPROM
571 * up to the checksum. Then calculates the EEPROM checksum and writes the
572 * value to the EEPROM. Next commit EEPROM data onto the Flash.
573 **/
574static s32 igb_update_nvm_checksum_i210(struct e1000_hw *hw)
575{
576 s32 ret_val = 0;
577 u16 checksum = 0;
578 u16 i, nvm_data;
579
580 /* Read the first word from the EEPROM. If this times out or fails, do
581 * not continue or we could be in for a very long wait while every
582 * EEPROM read fails
583 */
584 ret_val = igb_read_nvm_eerd(hw, 0, 1, &nvm_data);
585 if (ret_val) {
586 hw_dbg("EEPROM read failed\n");
587 goto out;
588 }
589
590 if (!(hw->nvm.ops.acquire(hw))) {
591 /* Do not use hw->nvm.ops.write, hw->nvm.ops.read
592 * because we do not want to take the synchronization
593 * semaphores twice here.
594 */
595
596 for (i = 0; i < NVM_CHECKSUM_REG; i++) {
597 ret_val = igb_read_nvm_eerd(hw, i, 1, &nvm_data);
598 if (ret_val) {
599 hw->nvm.ops.release(hw);
600 hw_dbg("NVM Read Error while updating checksum.\n");
601 goto out;
602 }
603 checksum += nvm_data;
604 }
605 checksum = (u16) NVM_SUM - checksum;
606 ret_val = igb_write_nvm_srwr(hw, NVM_CHECKSUM_REG, 1,
607 &checksum);
608 if (ret_val) {
609 hw->nvm.ops.release(hw);
610 hw_dbg("NVM Write Error while updating checksum.\n");
611 goto out;
612 }
613
614 hw->nvm.ops.release(hw);
615
616 ret_val = igb_update_flash_i210(hw);
617 } else {
618 ret_val = -E1000_ERR_SWFW_SYNC;
619 }
620out:
621 return ret_val;
622}
623
624/**
625 * igb_pool_flash_update_done_i210 - Pool FLUDONE status.
626 * @hw: pointer to the HW structure
627 *
628 **/
629static s32 igb_pool_flash_update_done_i210(struct e1000_hw *hw)
630{
631 s32 ret_val = -E1000_ERR_NVM;
632 u32 i, reg;
633
634 for (i = 0; i < E1000_FLUDONE_ATTEMPTS; i++) {
635 reg = rd32(E1000_EECD);
636 if (reg & E1000_EECD_FLUDONE_I210) {
637 ret_val = 0;
638 break;
639 }
640 udelay(5);
641 }
642
643 return ret_val;
644}
645
646/**
647 * igb_get_flash_presence_i210 - Check if flash device is detected.
648 * @hw: pointer to the HW structure
649 *
650 **/
651bool igb_get_flash_presence_i210(struct e1000_hw *hw)
652{
653 u32 eec = 0;
654 bool ret_val = false;
655
656 eec = rd32(E1000_EECD);
657 if (eec & E1000_EECD_FLASH_DETECTED_I210)
658 ret_val = true;
659
660 return ret_val;
661}
662
663/**
664 * igb_update_flash_i210 - Commit EEPROM to the flash
665 * @hw: pointer to the HW structure
666 *
667 **/
668static s32 igb_update_flash_i210(struct e1000_hw *hw)
669{
670 s32 ret_val = 0;
671 u32 flup;
672
673 ret_val = igb_pool_flash_update_done_i210(hw);
674 if (ret_val == -E1000_ERR_NVM) {
675 hw_dbg("Flash update time out\n");
676 goto out;
677 }
678
679 flup = rd32(E1000_EECD) | E1000_EECD_FLUPD_I210;
680 wr32(E1000_EECD, flup);
681
682 ret_val = igb_pool_flash_update_done_i210(hw);
683 if (ret_val)
684 hw_dbg("Flash update time out\n");
685 else
686 hw_dbg("Flash update complete\n");
687
688out:
689 return ret_val;
690}
691
692/**
693 * igb_valid_led_default_i210 - Verify a valid default LED config
694 * @hw: pointer to the HW structure
695 * @data: pointer to the NVM (EEPROM)
696 *
697 * Read the EEPROM for the current default LED configuration. If the
698 * LED configuration is not valid, set to a valid LED configuration.
699 **/
700s32 igb_valid_led_default_i210(struct e1000_hw *hw, u16 *data)
701{
702 s32 ret_val;
703
704 ret_val = hw->nvm.ops.read(hw, NVM_ID_LED_SETTINGS, 1, data);
705 if (ret_val) {
706 hw_dbg("NVM Read Error\n");
707 goto out;
708 }
709
710 if (*data == ID_LED_RESERVED_0000 || *data == ID_LED_RESERVED_FFFF) {
711 switch (hw->phy.media_type) {
712 case e1000_media_type_internal_serdes:
713 *data = ID_LED_DEFAULT_I210_SERDES;
714 break;
715 case e1000_media_type_copper:
716 default:
717 *data = ID_LED_DEFAULT_I210;
718 break;
719 }
720 }
721out:
722 return ret_val;
723}
724
725/**
726 * __igb_access_xmdio_reg - Read/write XMDIO register
727 * @hw: pointer to the HW structure
728 * @address: XMDIO address to program
729 * @dev_addr: device address to program
730 * @data: pointer to value to read/write from/to the XMDIO address
731 * @read: boolean flag to indicate read or write
732 **/
733static s32 __igb_access_xmdio_reg(struct e1000_hw *hw, u16 address,
734 u8 dev_addr, u16 *data, bool read)
735{
736 s32 ret_val = 0;
737
738 ret_val = hw->phy.ops.write_reg(hw, E1000_MMDAC, dev_addr);
739 if (ret_val)
740 return ret_val;
741
742 ret_val = hw->phy.ops.write_reg(hw, E1000_MMDAAD, address);
743 if (ret_val)
744 return ret_val;
745
746 ret_val = hw->phy.ops.write_reg(hw, E1000_MMDAC, E1000_MMDAC_FUNC_DATA |
747 dev_addr);
748 if (ret_val)
749 return ret_val;
750
751 if (read)
752 ret_val = hw->phy.ops.read_reg(hw, E1000_MMDAAD, data);
753 else
754 ret_val = hw->phy.ops.write_reg(hw, E1000_MMDAAD, *data);
755 if (ret_val)
756 return ret_val;
757
758 /* Recalibrate the device back to 0 */
759 ret_val = hw->phy.ops.write_reg(hw, E1000_MMDAC, 0);
760 if (ret_val)
761 return ret_val;
762
763 return ret_val;
764}
765
766/**
767 * igb_read_xmdio_reg - Read XMDIO register
768 * @hw: pointer to the HW structure
769 * @addr: XMDIO address to program
770 * @dev_addr: device address to program
771 * @data: value to be read from the EMI address
772 **/
773s32 igb_read_xmdio_reg(struct e1000_hw *hw, u16 addr, u8 dev_addr, u16 *data)
774{
775 return __igb_access_xmdio_reg(hw, addr, dev_addr, data, true);
776}
777
778/**
779 * igb_write_xmdio_reg - Write XMDIO register
780 * @hw: pointer to the HW structure
781 * @addr: XMDIO address to program
782 * @dev_addr: device address to program
783 * @data: value to be written to the XMDIO address
784 **/
785s32 igb_write_xmdio_reg(struct e1000_hw *hw, u16 addr, u8 dev_addr, u16 data)
786{
787 return __igb_access_xmdio_reg(hw, addr, dev_addr, &data, false);
788}
789
790/**
791 * igb_init_nvm_params_i210 - Init NVM func ptrs.
792 * @hw: pointer to the HW structure
793 **/
794s32 igb_init_nvm_params_i210(struct e1000_hw *hw)
795{
796 struct e1000_nvm_info *nvm = &hw->nvm;
797
798 nvm->ops.acquire = igb_acquire_nvm_i210;
799 nvm->ops.release = igb_release_nvm_i210;
800 nvm->ops.valid_led_default = igb_valid_led_default_i210;
801
802 /* NVM Function Pointers */
803 if (igb_get_flash_presence_i210(hw)) {
804 hw->nvm.type = e1000_nvm_flash_hw;
805 nvm->ops.read = igb_read_nvm_srrd_i210;
806 nvm->ops.write = igb_write_nvm_srwr_i210;
807 nvm->ops.validate = igb_validate_nvm_checksum_i210;
808 nvm->ops.update = igb_update_nvm_checksum_i210;
809 } else {
810 hw->nvm.type = e1000_nvm_invm;
811 nvm->ops.read = igb_read_invm_i210;
812 nvm->ops.write = NULL;
813 nvm->ops.validate = NULL;
814 nvm->ops.update = NULL;
815 }
816 return 0;
817}
818
819/**
820 * igb_pll_workaround_i210
821 * @hw: pointer to the HW structure
822 *
823 * Works around an errata in the PLL circuit where it occasionally
824 * provides the wrong clock frequency after power up.
825 **/
826s32 igb_pll_workaround_i210(struct e1000_hw *hw)
827{
828 s32 ret_val;
829 u32 wuc, mdicnfg, ctrl, ctrl_ext, reg_val;
830 u16 nvm_word, phy_word, pci_word, tmp_nvm;
831 int i;
832
833 /* Get and set needed register values */
834 wuc = rd32(E1000_WUC);
835 mdicnfg = rd32(E1000_MDICNFG);
836 reg_val = mdicnfg & ~E1000_MDICNFG_EXT_MDIO;
837 wr32(E1000_MDICNFG, reg_val);
838
839 /* Get data from NVM, or set default */
840 ret_val = igb_read_invm_word_i210(hw, E1000_INVM_AUTOLOAD,
841 &nvm_word);
842 if (ret_val)
843 nvm_word = E1000_INVM_DEFAULT_AL;
844 tmp_nvm = nvm_word | E1000_INVM_PLL_WO_VAL;
845 igb_write_phy_reg_82580(hw, I347AT4_PAGE_SELECT, E1000_PHY_PLL_FREQ_PAGE);
846 phy_word = E1000_PHY_PLL_UNCONF;
847 for (i = 0; i < E1000_MAX_PLL_TRIES; i++) {
848 /* check current state directly from internal PHY */
849 igb_read_phy_reg_82580(hw, E1000_PHY_PLL_FREQ_REG, &phy_word);
850 if ((phy_word & E1000_PHY_PLL_UNCONF)
851 != E1000_PHY_PLL_UNCONF) {
852 ret_val = 0;
853 break;
854 } else {
855 ret_val = -E1000_ERR_PHY;
856 }
857 /* directly reset the internal PHY */
858 ctrl = rd32(E1000_CTRL);
859 wr32(E1000_CTRL, ctrl|E1000_CTRL_PHY_RST);
860
861 ctrl_ext = rd32(E1000_CTRL_EXT);
862 ctrl_ext |= (E1000_CTRL_EXT_PHYPDEN | E1000_CTRL_EXT_SDLPE);
863 wr32(E1000_CTRL_EXT, ctrl_ext);
864
865 wr32(E1000_WUC, 0);
866 reg_val = (E1000_INVM_AUTOLOAD << 4) | (tmp_nvm << 16);
867 wr32(E1000_EEARBC_I210, reg_val);
868
869 igb_read_pci_cfg(hw, E1000_PCI_PMCSR, &pci_word);
870 pci_word |= E1000_PCI_PMCSR_D3;
871 igb_write_pci_cfg(hw, E1000_PCI_PMCSR, &pci_word);
872 usleep_range(1000, 2000);
873 pci_word &= ~E1000_PCI_PMCSR_D3;
874 igb_write_pci_cfg(hw, E1000_PCI_PMCSR, &pci_word);
875 reg_val = (E1000_INVM_AUTOLOAD << 4) | (nvm_word << 16);
876 wr32(E1000_EEARBC_I210, reg_val);
877
878 /* restore WUC register */
879 wr32(E1000_WUC, wuc);
880 }
881 igb_write_phy_reg_82580(hw, I347AT4_PAGE_SELECT, 0);
882 /* restore MDICNFG setting */
883 wr32(E1000_MDICNFG, mdicnfg);
884 return ret_val;
885}
886
887/**
888 * igb_get_cfg_done_i210 - Read config done bit
889 * @hw: pointer to the HW structure
890 *
891 * Read the management control register for the config done bit for
892 * completion status. NOTE: silicon which is EEPROM-less will fail trying
893 * to read the config done bit, so an error is *ONLY* logged and returns
894 * 0. If we were to return with error, EEPROM-less silicon
895 * would not be able to be reset or change link.
896 **/
897s32 igb_get_cfg_done_i210(struct e1000_hw *hw)
898{
899 s32 timeout = PHY_CFG_TIMEOUT;
900 u32 mask = E1000_NVM_CFG_DONE_PORT_0;
901
902 while (timeout) {
903 if (rd32(E1000_EEMNGCTL_I210) & mask)
904 break;
905 usleep_range(1000, 2000);
906 timeout--;
907 }
908 if (!timeout)
909 hw_dbg("MNG configuration cycle has not completed.\n");
910
911 return 0;
912}
1// SPDX-License-Identifier: GPL-2.0
2/* Intel(R) Gigabit Ethernet Linux driver
3 * Copyright(c) 2007-2014 Intel Corporation.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, see <http://www.gnu.org/licenses/>.
16 *
17 * The full GNU General Public License is included in this distribution in
18 * the file called "COPYING".
19 *
20 * Contact Information:
21 * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
22 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
23 */
24
25/* e1000_i210
26 * e1000_i211
27 */
28
29#include <linux/types.h>
30#include <linux/if_ether.h>
31
32#include "e1000_hw.h"
33#include "e1000_i210.h"
34
35static s32 igb_update_flash_i210(struct e1000_hw *hw);
36
37/**
38 * igb_get_hw_semaphore_i210 - Acquire hardware semaphore
39 * @hw: pointer to the HW structure
40 *
41 * Acquire the HW semaphore to access the PHY or NVM
42 */
43static s32 igb_get_hw_semaphore_i210(struct e1000_hw *hw)
44{
45 u32 swsm;
46 s32 timeout = hw->nvm.word_size + 1;
47 s32 i = 0;
48
49 /* Get the SW semaphore */
50 while (i < timeout) {
51 swsm = rd32(E1000_SWSM);
52 if (!(swsm & E1000_SWSM_SMBI))
53 break;
54
55 udelay(50);
56 i++;
57 }
58
59 if (i == timeout) {
60 /* In rare circumstances, the SW semaphore may already be held
61 * unintentionally. Clear the semaphore once before giving up.
62 */
63 if (hw->dev_spec._82575.clear_semaphore_once) {
64 hw->dev_spec._82575.clear_semaphore_once = false;
65 igb_put_hw_semaphore(hw);
66 for (i = 0; i < timeout; i++) {
67 swsm = rd32(E1000_SWSM);
68 if (!(swsm & E1000_SWSM_SMBI))
69 break;
70
71 udelay(50);
72 }
73 }
74
75 /* If we do not have the semaphore here, we have to give up. */
76 if (i == timeout) {
77 hw_dbg("Driver can't access device - SMBI bit is set.\n");
78 return -E1000_ERR_NVM;
79 }
80 }
81
82 /* Get the FW semaphore. */
83 for (i = 0; i < timeout; i++) {
84 swsm = rd32(E1000_SWSM);
85 wr32(E1000_SWSM, swsm | E1000_SWSM_SWESMBI);
86
87 /* Semaphore acquired if bit latched */
88 if (rd32(E1000_SWSM) & E1000_SWSM_SWESMBI)
89 break;
90
91 udelay(50);
92 }
93
94 if (i == timeout) {
95 /* Release semaphores */
96 igb_put_hw_semaphore(hw);
97 hw_dbg("Driver can't access the NVM\n");
98 return -E1000_ERR_NVM;
99 }
100
101 return 0;
102}
103
104/**
105 * igb_acquire_nvm_i210 - Request for access to EEPROM
106 * @hw: pointer to the HW structure
107 *
108 * Acquire the necessary semaphores for exclusive access to the EEPROM.
109 * Set the EEPROM access request bit and wait for EEPROM access grant bit.
110 * Return successful if access grant bit set, else clear the request for
111 * EEPROM access and return -E1000_ERR_NVM (-1).
112 **/
113static s32 igb_acquire_nvm_i210(struct e1000_hw *hw)
114{
115 return igb_acquire_swfw_sync_i210(hw, E1000_SWFW_EEP_SM);
116}
117
118/**
119 * igb_release_nvm_i210 - Release exclusive access to EEPROM
120 * @hw: pointer to the HW structure
121 *
122 * Stop any current commands to the EEPROM and clear the EEPROM request bit,
123 * then release the semaphores acquired.
124 **/
125static void igb_release_nvm_i210(struct e1000_hw *hw)
126{
127 igb_release_swfw_sync_i210(hw, E1000_SWFW_EEP_SM);
128}
129
130/**
131 * igb_acquire_swfw_sync_i210 - Acquire SW/FW semaphore
132 * @hw: pointer to the HW structure
133 * @mask: specifies which semaphore to acquire
134 *
135 * Acquire the SW/FW semaphore to access the PHY or NVM. The mask
136 * will also specify which port we're acquiring the lock for.
137 **/
138s32 igb_acquire_swfw_sync_i210(struct e1000_hw *hw, u16 mask)
139{
140 u32 swfw_sync;
141 u32 swmask = mask;
142 u32 fwmask = mask << 16;
143 s32 ret_val = 0;
144 s32 i = 0, timeout = 200; /* FIXME: find real value to use here */
145
146 while (i < timeout) {
147 if (igb_get_hw_semaphore_i210(hw)) {
148 ret_val = -E1000_ERR_SWFW_SYNC;
149 goto out;
150 }
151
152 swfw_sync = rd32(E1000_SW_FW_SYNC);
153 if (!(swfw_sync & (fwmask | swmask)))
154 break;
155
156 /* Firmware currently using resource (fwmask) */
157 igb_put_hw_semaphore(hw);
158 mdelay(5);
159 i++;
160 }
161
162 if (i == timeout) {
163 hw_dbg("Driver can't access resource, SW_FW_SYNC timeout.\n");
164 ret_val = -E1000_ERR_SWFW_SYNC;
165 goto out;
166 }
167
168 swfw_sync |= swmask;
169 wr32(E1000_SW_FW_SYNC, swfw_sync);
170
171 igb_put_hw_semaphore(hw);
172out:
173 return ret_val;
174}
175
176/**
177 * igb_release_swfw_sync_i210 - Release SW/FW semaphore
178 * @hw: pointer to the HW structure
179 * @mask: specifies which semaphore to acquire
180 *
181 * Release the SW/FW semaphore used to access the PHY or NVM. The mask
182 * will also specify which port we're releasing the lock for.
183 **/
184void igb_release_swfw_sync_i210(struct e1000_hw *hw, u16 mask)
185{
186 u32 swfw_sync;
187
188 while (igb_get_hw_semaphore_i210(hw))
189 ; /* Empty */
190
191 swfw_sync = rd32(E1000_SW_FW_SYNC);
192 swfw_sync &= ~mask;
193 wr32(E1000_SW_FW_SYNC, swfw_sync);
194
195 igb_put_hw_semaphore(hw);
196}
197
198/**
199 * igb_read_nvm_srrd_i210 - Reads Shadow Ram using EERD register
200 * @hw: pointer to the HW structure
201 * @offset: offset of word in the Shadow Ram to read
202 * @words: number of words to read
203 * @data: word read from the Shadow Ram
204 *
205 * Reads a 16 bit word from the Shadow Ram using the EERD register.
206 * Uses necessary synchronization semaphores.
207 **/
208static s32 igb_read_nvm_srrd_i210(struct e1000_hw *hw, u16 offset, u16 words,
209 u16 *data)
210{
211 s32 status = 0;
212 u16 i, count;
213
214 /* We cannot hold synchronization semaphores for too long,
215 * because of forceful takeover procedure. However it is more efficient
216 * to read in bursts than synchronizing access for each word.
217 */
218 for (i = 0; i < words; i += E1000_EERD_EEWR_MAX_COUNT) {
219 count = (words - i) / E1000_EERD_EEWR_MAX_COUNT > 0 ?
220 E1000_EERD_EEWR_MAX_COUNT : (words - i);
221 if (!(hw->nvm.ops.acquire(hw))) {
222 status = igb_read_nvm_eerd(hw, offset, count,
223 data + i);
224 hw->nvm.ops.release(hw);
225 } else {
226 status = E1000_ERR_SWFW_SYNC;
227 }
228
229 if (status)
230 break;
231 }
232
233 return status;
234}
235
236/**
237 * igb_write_nvm_srwr - Write to Shadow Ram using EEWR
238 * @hw: pointer to the HW structure
239 * @offset: offset within the Shadow Ram to be written to
240 * @words: number of words to write
241 * @data: 16 bit word(s) to be written to the Shadow Ram
242 *
243 * Writes data to Shadow Ram at offset using EEWR register.
244 *
245 * If igb_update_nvm_checksum is not called after this function , the
246 * Shadow Ram will most likely contain an invalid checksum.
247 **/
248static s32 igb_write_nvm_srwr(struct e1000_hw *hw, u16 offset, u16 words,
249 u16 *data)
250{
251 struct e1000_nvm_info *nvm = &hw->nvm;
252 u32 i, k, eewr = 0;
253 u32 attempts = 100000;
254 s32 ret_val = 0;
255
256 /* A check for invalid values: offset too large, too many words,
257 * too many words for the offset, and not enough words.
258 */
259 if ((offset >= nvm->word_size) || (words > (nvm->word_size - offset)) ||
260 (words == 0)) {
261 hw_dbg("nvm parameter(s) out of bounds\n");
262 ret_val = -E1000_ERR_NVM;
263 goto out;
264 }
265
266 for (i = 0; i < words; i++) {
267 eewr = ((offset+i) << E1000_NVM_RW_ADDR_SHIFT) |
268 (data[i] << E1000_NVM_RW_REG_DATA) |
269 E1000_NVM_RW_REG_START;
270
271 wr32(E1000_SRWR, eewr);
272
273 for (k = 0; k < attempts; k++) {
274 if (E1000_NVM_RW_REG_DONE &
275 rd32(E1000_SRWR)) {
276 ret_val = 0;
277 break;
278 }
279 udelay(5);
280 }
281
282 if (ret_val) {
283 hw_dbg("Shadow RAM write EEWR timed out\n");
284 break;
285 }
286 }
287
288out:
289 return ret_val;
290}
291
292/**
293 * igb_write_nvm_srwr_i210 - Write to Shadow RAM using EEWR
294 * @hw: pointer to the HW structure
295 * @offset: offset within the Shadow RAM to be written to
296 * @words: number of words to write
297 * @data: 16 bit word(s) to be written to the Shadow RAM
298 *
299 * Writes data to Shadow RAM at offset using EEWR register.
300 *
301 * If e1000_update_nvm_checksum is not called after this function , the
302 * data will not be committed to FLASH and also Shadow RAM will most likely
303 * contain an invalid checksum.
304 *
305 * If error code is returned, data and Shadow RAM may be inconsistent - buffer
306 * partially written.
307 **/
308static s32 igb_write_nvm_srwr_i210(struct e1000_hw *hw, u16 offset, u16 words,
309 u16 *data)
310{
311 s32 status = 0;
312 u16 i, count;
313
314 /* We cannot hold synchronization semaphores for too long,
315 * because of forceful takeover procedure. However it is more efficient
316 * to write in bursts than synchronizing access for each word.
317 */
318 for (i = 0; i < words; i += E1000_EERD_EEWR_MAX_COUNT) {
319 count = (words - i) / E1000_EERD_EEWR_MAX_COUNT > 0 ?
320 E1000_EERD_EEWR_MAX_COUNT : (words - i);
321 if (!(hw->nvm.ops.acquire(hw))) {
322 status = igb_write_nvm_srwr(hw, offset, count,
323 data + i);
324 hw->nvm.ops.release(hw);
325 } else {
326 status = E1000_ERR_SWFW_SYNC;
327 }
328
329 if (status)
330 break;
331 }
332
333 return status;
334}
335
336/**
337 * igb_read_invm_word_i210 - Reads OTP
338 * @hw: pointer to the HW structure
339 * @address: the word address (aka eeprom offset) to read
340 * @data: pointer to the data read
341 *
342 * Reads 16-bit words from the OTP. Return error when the word is not
343 * stored in OTP.
344 **/
345static s32 igb_read_invm_word_i210(struct e1000_hw *hw, u8 address, u16 *data)
346{
347 s32 status = -E1000_ERR_INVM_VALUE_NOT_FOUND;
348 u32 invm_dword;
349 u16 i;
350 u8 record_type, word_address;
351
352 for (i = 0; i < E1000_INVM_SIZE; i++) {
353 invm_dword = rd32(E1000_INVM_DATA_REG(i));
354 /* Get record type */
355 record_type = INVM_DWORD_TO_RECORD_TYPE(invm_dword);
356 if (record_type == E1000_INVM_UNINITIALIZED_STRUCTURE)
357 break;
358 if (record_type == E1000_INVM_CSR_AUTOLOAD_STRUCTURE)
359 i += E1000_INVM_CSR_AUTOLOAD_DATA_SIZE_IN_DWORDS;
360 if (record_type == E1000_INVM_RSA_KEY_SHA256_STRUCTURE)
361 i += E1000_INVM_RSA_KEY_SHA256_DATA_SIZE_IN_DWORDS;
362 if (record_type == E1000_INVM_WORD_AUTOLOAD_STRUCTURE) {
363 word_address = INVM_DWORD_TO_WORD_ADDRESS(invm_dword);
364 if (word_address == address) {
365 *data = INVM_DWORD_TO_WORD_DATA(invm_dword);
366 hw_dbg("Read INVM Word 0x%02x = %x\n",
367 address, *data);
368 status = 0;
369 break;
370 }
371 }
372 }
373 if (status)
374 hw_dbg("Requested word 0x%02x not found in OTP\n", address);
375 return status;
376}
377
378/**
379 * igb_read_invm_i210 - Read invm wrapper function for I210/I211
380 * @hw: pointer to the HW structure
381 * @words: number of words to read
382 * @data: pointer to the data read
383 *
384 * Wrapper function to return data formerly found in the NVM.
385 **/
386static s32 igb_read_invm_i210(struct e1000_hw *hw, u16 offset,
387 u16 words __always_unused, u16 *data)
388{
389 s32 ret_val = 0;
390
391 /* Only the MAC addr is required to be present in the iNVM */
392 switch (offset) {
393 case NVM_MAC_ADDR:
394 ret_val = igb_read_invm_word_i210(hw, (u8)offset, &data[0]);
395 ret_val |= igb_read_invm_word_i210(hw, (u8)offset+1,
396 &data[1]);
397 ret_val |= igb_read_invm_word_i210(hw, (u8)offset+2,
398 &data[2]);
399 if (ret_val)
400 hw_dbg("MAC Addr not found in iNVM\n");
401 break;
402 case NVM_INIT_CTRL_2:
403 ret_val = igb_read_invm_word_i210(hw, (u8)offset, data);
404 if (ret_val) {
405 *data = NVM_INIT_CTRL_2_DEFAULT_I211;
406 ret_val = 0;
407 }
408 break;
409 case NVM_INIT_CTRL_4:
410 ret_val = igb_read_invm_word_i210(hw, (u8)offset, data);
411 if (ret_val) {
412 *data = NVM_INIT_CTRL_4_DEFAULT_I211;
413 ret_val = 0;
414 }
415 break;
416 case NVM_LED_1_CFG:
417 ret_val = igb_read_invm_word_i210(hw, (u8)offset, data);
418 if (ret_val) {
419 *data = NVM_LED_1_CFG_DEFAULT_I211;
420 ret_val = 0;
421 }
422 break;
423 case NVM_LED_0_2_CFG:
424 ret_val = igb_read_invm_word_i210(hw, (u8)offset, data);
425 if (ret_val) {
426 *data = NVM_LED_0_2_CFG_DEFAULT_I211;
427 ret_val = 0;
428 }
429 break;
430 case NVM_ID_LED_SETTINGS:
431 ret_val = igb_read_invm_word_i210(hw, (u8)offset, data);
432 if (ret_val) {
433 *data = ID_LED_RESERVED_FFFF;
434 ret_val = 0;
435 }
436 break;
437 case NVM_SUB_DEV_ID:
438 *data = hw->subsystem_device_id;
439 break;
440 case NVM_SUB_VEN_ID:
441 *data = hw->subsystem_vendor_id;
442 break;
443 case NVM_DEV_ID:
444 *data = hw->device_id;
445 break;
446 case NVM_VEN_ID:
447 *data = hw->vendor_id;
448 break;
449 default:
450 hw_dbg("NVM word 0x%02x is not mapped.\n", offset);
451 *data = NVM_RESERVED_WORD;
452 break;
453 }
454 return ret_val;
455}
456
457/**
458 * igb_read_invm_version - Reads iNVM version and image type
459 * @hw: pointer to the HW structure
460 * @invm_ver: version structure for the version read
461 *
462 * Reads iNVM version and image type.
463 **/
464s32 igb_read_invm_version(struct e1000_hw *hw,
465 struct e1000_fw_version *invm_ver) {
466 u32 *record = NULL;
467 u32 *next_record = NULL;
468 u32 i = 0;
469 u32 invm_dword = 0;
470 u32 invm_blocks = E1000_INVM_SIZE - (E1000_INVM_ULT_BYTES_SIZE /
471 E1000_INVM_RECORD_SIZE_IN_BYTES);
472 u32 buffer[E1000_INVM_SIZE];
473 s32 status = -E1000_ERR_INVM_VALUE_NOT_FOUND;
474 u16 version = 0;
475
476 /* Read iNVM memory */
477 for (i = 0; i < E1000_INVM_SIZE; i++) {
478 invm_dword = rd32(E1000_INVM_DATA_REG(i));
479 buffer[i] = invm_dword;
480 }
481
482 /* Read version number */
483 for (i = 1; i < invm_blocks; i++) {
484 record = &buffer[invm_blocks - i];
485 next_record = &buffer[invm_blocks - i + 1];
486
487 /* Check if we have first version location used */
488 if ((i == 1) && ((*record & E1000_INVM_VER_FIELD_ONE) == 0)) {
489 version = 0;
490 status = 0;
491 break;
492 }
493 /* Check if we have second version location used */
494 else if ((i == 1) &&
495 ((*record & E1000_INVM_VER_FIELD_TWO) == 0)) {
496 version = (*record & E1000_INVM_VER_FIELD_ONE) >> 3;
497 status = 0;
498 break;
499 }
500 /* Check if we have odd version location
501 * used and it is the last one used
502 */
503 else if ((((*record & E1000_INVM_VER_FIELD_ONE) == 0) &&
504 ((*record & 0x3) == 0)) || (((*record & 0x3) != 0) &&
505 (i != 1))) {
506 version = (*next_record & E1000_INVM_VER_FIELD_TWO)
507 >> 13;
508 status = 0;
509 break;
510 }
511 /* Check if we have even version location
512 * used and it is the last one used
513 */
514 else if (((*record & E1000_INVM_VER_FIELD_TWO) == 0) &&
515 ((*record & 0x3) == 0)) {
516 version = (*record & E1000_INVM_VER_FIELD_ONE) >> 3;
517 status = 0;
518 break;
519 }
520 }
521
522 if (!status) {
523 invm_ver->invm_major = (version & E1000_INVM_MAJOR_MASK)
524 >> E1000_INVM_MAJOR_SHIFT;
525 invm_ver->invm_minor = version & E1000_INVM_MINOR_MASK;
526 }
527 /* Read Image Type */
528 for (i = 1; i < invm_blocks; i++) {
529 record = &buffer[invm_blocks - i];
530 next_record = &buffer[invm_blocks - i + 1];
531
532 /* Check if we have image type in first location used */
533 if ((i == 1) && ((*record & E1000_INVM_IMGTYPE_FIELD) == 0)) {
534 invm_ver->invm_img_type = 0;
535 status = 0;
536 break;
537 }
538 /* Check if we have image type in first location used */
539 else if ((((*record & 0x3) == 0) &&
540 ((*record & E1000_INVM_IMGTYPE_FIELD) == 0)) ||
541 ((((*record & 0x3) != 0) && (i != 1)))) {
542 invm_ver->invm_img_type =
543 (*next_record & E1000_INVM_IMGTYPE_FIELD) >> 23;
544 status = 0;
545 break;
546 }
547 }
548 return status;
549}
550
551/**
552 * igb_validate_nvm_checksum_i210 - Validate EEPROM checksum
553 * @hw: pointer to the HW structure
554 *
555 * Calculates the EEPROM checksum by reading/adding each word of the EEPROM
556 * and then verifies that the sum of the EEPROM is equal to 0xBABA.
557 **/
558static s32 igb_validate_nvm_checksum_i210(struct e1000_hw *hw)
559{
560 s32 status = 0;
561 s32 (*read_op_ptr)(struct e1000_hw *, u16, u16, u16 *);
562
563 if (!(hw->nvm.ops.acquire(hw))) {
564
565 /* Replace the read function with semaphore grabbing with
566 * the one that skips this for a while.
567 * We have semaphore taken already here.
568 */
569 read_op_ptr = hw->nvm.ops.read;
570 hw->nvm.ops.read = igb_read_nvm_eerd;
571
572 status = igb_validate_nvm_checksum(hw);
573
574 /* Revert original read operation. */
575 hw->nvm.ops.read = read_op_ptr;
576
577 hw->nvm.ops.release(hw);
578 } else {
579 status = E1000_ERR_SWFW_SYNC;
580 }
581
582 return status;
583}
584
585/**
586 * igb_update_nvm_checksum_i210 - Update EEPROM checksum
587 * @hw: pointer to the HW structure
588 *
589 * Updates the EEPROM checksum by reading/adding each word of the EEPROM
590 * up to the checksum. Then calculates the EEPROM checksum and writes the
591 * value to the EEPROM. Next commit EEPROM data onto the Flash.
592 **/
593static s32 igb_update_nvm_checksum_i210(struct e1000_hw *hw)
594{
595 s32 ret_val = 0;
596 u16 checksum = 0;
597 u16 i, nvm_data;
598
599 /* Read the first word from the EEPROM. If this times out or fails, do
600 * not continue or we could be in for a very long wait while every
601 * EEPROM read fails
602 */
603 ret_val = igb_read_nvm_eerd(hw, 0, 1, &nvm_data);
604 if (ret_val) {
605 hw_dbg("EEPROM read failed\n");
606 goto out;
607 }
608
609 if (!(hw->nvm.ops.acquire(hw))) {
610 /* Do not use hw->nvm.ops.write, hw->nvm.ops.read
611 * because we do not want to take the synchronization
612 * semaphores twice here.
613 */
614
615 for (i = 0; i < NVM_CHECKSUM_REG; i++) {
616 ret_val = igb_read_nvm_eerd(hw, i, 1, &nvm_data);
617 if (ret_val) {
618 hw->nvm.ops.release(hw);
619 hw_dbg("NVM Read Error while updating checksum.\n");
620 goto out;
621 }
622 checksum += nvm_data;
623 }
624 checksum = (u16) NVM_SUM - checksum;
625 ret_val = igb_write_nvm_srwr(hw, NVM_CHECKSUM_REG, 1,
626 &checksum);
627 if (ret_val) {
628 hw->nvm.ops.release(hw);
629 hw_dbg("NVM Write Error while updating checksum.\n");
630 goto out;
631 }
632
633 hw->nvm.ops.release(hw);
634
635 ret_val = igb_update_flash_i210(hw);
636 } else {
637 ret_val = -E1000_ERR_SWFW_SYNC;
638 }
639out:
640 return ret_val;
641}
642
643/**
644 * igb_pool_flash_update_done_i210 - Pool FLUDONE status.
645 * @hw: pointer to the HW structure
646 *
647 **/
648static s32 igb_pool_flash_update_done_i210(struct e1000_hw *hw)
649{
650 s32 ret_val = -E1000_ERR_NVM;
651 u32 i, reg;
652
653 for (i = 0; i < E1000_FLUDONE_ATTEMPTS; i++) {
654 reg = rd32(E1000_EECD);
655 if (reg & E1000_EECD_FLUDONE_I210) {
656 ret_val = 0;
657 break;
658 }
659 udelay(5);
660 }
661
662 return ret_val;
663}
664
665/**
666 * igb_get_flash_presence_i210 - Check if flash device is detected.
667 * @hw: pointer to the HW structure
668 *
669 **/
670bool igb_get_flash_presence_i210(struct e1000_hw *hw)
671{
672 u32 eec = 0;
673 bool ret_val = false;
674
675 eec = rd32(E1000_EECD);
676 if (eec & E1000_EECD_FLASH_DETECTED_I210)
677 ret_val = true;
678
679 return ret_val;
680}
681
682/**
683 * igb_update_flash_i210 - Commit EEPROM to the flash
684 * @hw: pointer to the HW structure
685 *
686 **/
687static s32 igb_update_flash_i210(struct e1000_hw *hw)
688{
689 s32 ret_val = 0;
690 u32 flup;
691
692 ret_val = igb_pool_flash_update_done_i210(hw);
693 if (ret_val == -E1000_ERR_NVM) {
694 hw_dbg("Flash update time out\n");
695 goto out;
696 }
697
698 flup = rd32(E1000_EECD) | E1000_EECD_FLUPD_I210;
699 wr32(E1000_EECD, flup);
700
701 ret_val = igb_pool_flash_update_done_i210(hw);
702 if (ret_val)
703 hw_dbg("Flash update time out\n");
704 else
705 hw_dbg("Flash update complete\n");
706
707out:
708 return ret_val;
709}
710
711/**
712 * igb_valid_led_default_i210 - Verify a valid default LED config
713 * @hw: pointer to the HW structure
714 * @data: pointer to the NVM (EEPROM)
715 *
716 * Read the EEPROM for the current default LED configuration. If the
717 * LED configuration is not valid, set to a valid LED configuration.
718 **/
719s32 igb_valid_led_default_i210(struct e1000_hw *hw, u16 *data)
720{
721 s32 ret_val;
722
723 ret_val = hw->nvm.ops.read(hw, NVM_ID_LED_SETTINGS, 1, data);
724 if (ret_val) {
725 hw_dbg("NVM Read Error\n");
726 goto out;
727 }
728
729 if (*data == ID_LED_RESERVED_0000 || *data == ID_LED_RESERVED_FFFF) {
730 switch (hw->phy.media_type) {
731 case e1000_media_type_internal_serdes:
732 *data = ID_LED_DEFAULT_I210_SERDES;
733 break;
734 case e1000_media_type_copper:
735 default:
736 *data = ID_LED_DEFAULT_I210;
737 break;
738 }
739 }
740out:
741 return ret_val;
742}
743
744/**
745 * __igb_access_xmdio_reg - Read/write XMDIO register
746 * @hw: pointer to the HW structure
747 * @address: XMDIO address to program
748 * @dev_addr: device address to program
749 * @data: pointer to value to read/write from/to the XMDIO address
750 * @read: boolean flag to indicate read or write
751 **/
752static s32 __igb_access_xmdio_reg(struct e1000_hw *hw, u16 address,
753 u8 dev_addr, u16 *data, bool read)
754{
755 s32 ret_val = 0;
756
757 ret_val = hw->phy.ops.write_reg(hw, E1000_MMDAC, dev_addr);
758 if (ret_val)
759 return ret_val;
760
761 ret_val = hw->phy.ops.write_reg(hw, E1000_MMDAAD, address);
762 if (ret_val)
763 return ret_val;
764
765 ret_val = hw->phy.ops.write_reg(hw, E1000_MMDAC, E1000_MMDAC_FUNC_DATA |
766 dev_addr);
767 if (ret_val)
768 return ret_val;
769
770 if (read)
771 ret_val = hw->phy.ops.read_reg(hw, E1000_MMDAAD, data);
772 else
773 ret_val = hw->phy.ops.write_reg(hw, E1000_MMDAAD, *data);
774 if (ret_val)
775 return ret_val;
776
777 /* Recalibrate the device back to 0 */
778 ret_val = hw->phy.ops.write_reg(hw, E1000_MMDAC, 0);
779 if (ret_val)
780 return ret_val;
781
782 return ret_val;
783}
784
785/**
786 * igb_read_xmdio_reg - Read XMDIO register
787 * @hw: pointer to the HW structure
788 * @addr: XMDIO address to program
789 * @dev_addr: device address to program
790 * @data: value to be read from the EMI address
791 **/
792s32 igb_read_xmdio_reg(struct e1000_hw *hw, u16 addr, u8 dev_addr, u16 *data)
793{
794 return __igb_access_xmdio_reg(hw, addr, dev_addr, data, true);
795}
796
797/**
798 * igb_write_xmdio_reg - Write XMDIO register
799 * @hw: pointer to the HW structure
800 * @addr: XMDIO address to program
801 * @dev_addr: device address to program
802 * @data: value to be written to the XMDIO address
803 **/
804s32 igb_write_xmdio_reg(struct e1000_hw *hw, u16 addr, u8 dev_addr, u16 data)
805{
806 return __igb_access_xmdio_reg(hw, addr, dev_addr, &data, false);
807}
808
809/**
810 * igb_init_nvm_params_i210 - Init NVM func ptrs.
811 * @hw: pointer to the HW structure
812 **/
813s32 igb_init_nvm_params_i210(struct e1000_hw *hw)
814{
815 s32 ret_val = 0;
816 struct e1000_nvm_info *nvm = &hw->nvm;
817
818 nvm->ops.acquire = igb_acquire_nvm_i210;
819 nvm->ops.release = igb_release_nvm_i210;
820 nvm->ops.valid_led_default = igb_valid_led_default_i210;
821
822 /* NVM Function Pointers */
823 if (igb_get_flash_presence_i210(hw)) {
824 hw->nvm.type = e1000_nvm_flash_hw;
825 nvm->ops.read = igb_read_nvm_srrd_i210;
826 nvm->ops.write = igb_write_nvm_srwr_i210;
827 nvm->ops.validate = igb_validate_nvm_checksum_i210;
828 nvm->ops.update = igb_update_nvm_checksum_i210;
829 } else {
830 hw->nvm.type = e1000_nvm_invm;
831 nvm->ops.read = igb_read_invm_i210;
832 nvm->ops.write = NULL;
833 nvm->ops.validate = NULL;
834 nvm->ops.update = NULL;
835 }
836 return ret_val;
837}
838
839/**
840 * igb_pll_workaround_i210
841 * @hw: pointer to the HW structure
842 *
843 * Works around an errata in the PLL circuit where it occasionally
844 * provides the wrong clock frequency after power up.
845 **/
846s32 igb_pll_workaround_i210(struct e1000_hw *hw)
847{
848 s32 ret_val;
849 u32 wuc, mdicnfg, ctrl, ctrl_ext, reg_val;
850 u16 nvm_word, phy_word, pci_word, tmp_nvm;
851 int i;
852
853 /* Get and set needed register values */
854 wuc = rd32(E1000_WUC);
855 mdicnfg = rd32(E1000_MDICNFG);
856 reg_val = mdicnfg & ~E1000_MDICNFG_EXT_MDIO;
857 wr32(E1000_MDICNFG, reg_val);
858
859 /* Get data from NVM, or set default */
860 ret_val = igb_read_invm_word_i210(hw, E1000_INVM_AUTOLOAD,
861 &nvm_word);
862 if (ret_val)
863 nvm_word = E1000_INVM_DEFAULT_AL;
864 tmp_nvm = nvm_word | E1000_INVM_PLL_WO_VAL;
865 igb_write_phy_reg_82580(hw, I347AT4_PAGE_SELECT, E1000_PHY_PLL_FREQ_PAGE);
866 for (i = 0; i < E1000_MAX_PLL_TRIES; i++) {
867 /* check current state directly from internal PHY */
868 igb_read_phy_reg_82580(hw, E1000_PHY_PLL_FREQ_REG, &phy_word);
869 if ((phy_word & E1000_PHY_PLL_UNCONF)
870 != E1000_PHY_PLL_UNCONF) {
871 ret_val = 0;
872 break;
873 } else {
874 ret_val = -E1000_ERR_PHY;
875 }
876 /* directly reset the internal PHY */
877 ctrl = rd32(E1000_CTRL);
878 wr32(E1000_CTRL, ctrl|E1000_CTRL_PHY_RST);
879
880 ctrl_ext = rd32(E1000_CTRL_EXT);
881 ctrl_ext |= (E1000_CTRL_EXT_PHYPDEN | E1000_CTRL_EXT_SDLPE);
882 wr32(E1000_CTRL_EXT, ctrl_ext);
883
884 wr32(E1000_WUC, 0);
885 reg_val = (E1000_INVM_AUTOLOAD << 4) | (tmp_nvm << 16);
886 wr32(E1000_EEARBC_I210, reg_val);
887
888 igb_read_pci_cfg(hw, E1000_PCI_PMCSR, &pci_word);
889 pci_word |= E1000_PCI_PMCSR_D3;
890 igb_write_pci_cfg(hw, E1000_PCI_PMCSR, &pci_word);
891 usleep_range(1000, 2000);
892 pci_word &= ~E1000_PCI_PMCSR_D3;
893 igb_write_pci_cfg(hw, E1000_PCI_PMCSR, &pci_word);
894 reg_val = (E1000_INVM_AUTOLOAD << 4) | (nvm_word << 16);
895 wr32(E1000_EEARBC_I210, reg_val);
896
897 /* restore WUC register */
898 wr32(E1000_WUC, wuc);
899 }
900 igb_write_phy_reg_82580(hw, I347AT4_PAGE_SELECT, 0);
901 /* restore MDICNFG setting */
902 wr32(E1000_MDICNFG, mdicnfg);
903 return ret_val;
904}
905
906/**
907 * igb_get_cfg_done_i210 - Read config done bit
908 * @hw: pointer to the HW structure
909 *
910 * Read the management control register for the config done bit for
911 * completion status. NOTE: silicon which is EEPROM-less will fail trying
912 * to read the config done bit, so an error is *ONLY* logged and returns
913 * 0. If we were to return with error, EEPROM-less silicon
914 * would not be able to be reset or change link.
915 **/
916s32 igb_get_cfg_done_i210(struct e1000_hw *hw)
917{
918 s32 timeout = PHY_CFG_TIMEOUT;
919 u32 mask = E1000_NVM_CFG_DONE_PORT_0;
920
921 while (timeout) {
922 if (rd32(E1000_EEMNGCTL_I210) & mask)
923 break;
924 usleep_range(1000, 2000);
925 timeout--;
926 }
927 if (!timeout)
928 hw_dbg("MNG configuration cycle has not completed.\n");
929
930 return 0;
931}