aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ixgb/ixgb_ee.c
blob: 5e5169d0783cc1b042bfdabea25d9966e36dc99a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
/*******************************************************************************
  SPDX-License-Identifier: BSD-3-Clause

  Copyright (c) 2001-2004, Intel Corporation
  All rights reserved.
  
  Redistribution and use in source and binary forms, with or without
  modification, are permitted provided that the following conditions are met:
  
   1. Redistributions of source code must retain the above copyright notice,
      this list of conditions and the following disclaimer.
  
   2. Redistributions in binary form must reproduce the above copyright
      notice, this list of conditions and the following disclaimer in the
      documentation and/or other materials provided with the distribution.
  
   3. Neither the name of the Intel Corporation nor the names of its
      contributors may be used to endorse or promote products derived from
      this software without specific prior written permission.
  
  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  POSSIBILITY OF SUCH DAMAGE.

*******************************************************************************/

/*$FreeBSD$*/

#include <dev/ixgb/ixgb_hw.h> 
#include <dev/ixgb/ixgb_ee.h> 

/* Local prototypes */
static uint16_t ixgb_shift_in_bits(struct ixgb_hw *hw);

static void ixgb_shift_out_bits(struct ixgb_hw *hw,
                                uint16_t data,
                                uint16_t count);
static void ixgb_standby_eeprom(struct ixgb_hw *hw);

static boolean_t ixgb_wait_eeprom_command(struct ixgb_hw *hw);

static void ixgb_cleanup_eeprom(struct ixgb_hw *hw);

/******************************************************************************
 * Raises the EEPROM's clock input.
 *
 * hw - Struct containing variables accessed by shared code
 * eecd_reg - EECD's current value
 *****************************************************************************/
static void
ixgb_raise_clock(struct ixgb_hw *hw,
                  uint32_t *eecd_reg)
{
    /* Raise the clock input to the EEPROM (by setting the SK bit), and then
     *  wait 50 microseconds.
     */
    *eecd_reg = *eecd_reg | IXGB_EECD_SK;
    IXGB_WRITE_REG(hw, EECD, *eecd_reg);
    usec_delay(50);
    return;
}

/******************************************************************************
 * Lowers the EEPROM's clock input.
 *
 * hw - Struct containing variables accessed by shared code
 * eecd_reg - EECD's current value
 *****************************************************************************/
static void
ixgb_lower_clock(struct ixgb_hw *hw,
                  uint32_t *eecd_reg)
{
    /* Lower the clock input to the EEPROM (by clearing the SK bit), and then
     * wait 50 microseconds.
     */
    *eecd_reg = *eecd_reg & ~IXGB_EECD_SK;
    IXGB_WRITE_REG(hw, EECD, *eecd_reg);
    usec_delay(50);
    return;
}

/******************************************************************************
 * Shift data bits out to the EEPROM.
 *
 * hw - Struct containing variables accessed by shared code
 * data - data to send to the EEPROM
 * count - number of bits to shift out
 *****************************************************************************/
static void
ixgb_shift_out_bits(struct ixgb_hw *hw,
                     uint16_t data,
                     uint16_t count)
{
    uint32_t eecd_reg;
    uint32_t mask;

    /* We need to shift "count" bits out to the EEPROM. So, value in the
     * "data" parameter will be shifted out to the EEPROM one bit at a time.
     * In order to do this, "data" must be broken down into bits.
     */
    mask = 0x01 << (count - 1);
    eecd_reg = IXGB_READ_REG(hw, EECD);
    eecd_reg &= ~(IXGB_EECD_DO | IXGB_EECD_DI);
    do {
        /* A "1" is shifted out to the EEPROM by setting bit "DI" to a "1",
         * and then raising and then lowering the clock (the SK bit controls
         * the clock input to the EEPROM).  A "0" is shifted out to the EEPROM
         * by setting "DI" to "0" and then raising and then lowering the clock.
         */
        eecd_reg &= ~IXGB_EECD_DI;

        if(data & mask)
            eecd_reg |= IXGB_EECD_DI;

        IXGB_WRITE_REG(hw, EECD, eecd_reg);

        usec_delay(50);

        ixgb_raise_clock(hw, &eecd_reg);
        ixgb_lower_clock(hw, &eecd_reg);

        mask = mask >> 1;

    } while(mask);

    /* We leave the "DI" bit set to "0" when we leave this routine. */
    eecd_reg &= ~IXGB_EECD_DI;
    IXGB_WRITE_REG(hw, EECD, eecd_reg);
    return;
}

/******************************************************************************
 * Shift data bits in from the EEPROM
 *
 * hw - Struct containing variables accessed by shared code
 *****************************************************************************/
static uint16_t
ixgb_shift_in_bits(struct ixgb_hw *hw)
{
    uint32_t eecd_reg;
    uint32_t i;
    uint16_t data;

    /* In order to read a register from the EEPROM, we need to shift 16 bits
     * in from the EEPROM. Bits are "shifted in" by raising the clock input to
     * the EEPROM (setting the SK bit), and then reading the value of the "DO"
     * bit.  During this "shifting in" process the "DI" bit should always be
     * clear..
     */

    eecd_reg = IXGB_READ_REG(hw, EECD);

    eecd_reg &= ~(IXGB_EECD_DO | IXGB_EECD_DI);
    data = 0;

    for(i = 0; i < 16; i++) {
        data = data << 1;
        ixgb_raise_clock(hw, &eecd_reg);

        eecd_reg = IXGB_READ_REG(hw, EECD);

        eecd_reg &= ~(IXGB_EECD_DI);
        if(eecd_reg & IXGB_EECD_DO)
            data |= 1;

        ixgb_lower_clock(hw, &eecd_reg);
    }

    return data;
}

/******************************************************************************
 * Prepares EEPROM for access
 *
 * hw - Struct containing variables accessed by shared code
 *
 * Lowers EEPROM clock. Clears input pin. Sets the chip select pin. This
 * function should be called before issuing a command to the EEPROM.
 *****************************************************************************/
static void
ixgb_setup_eeprom(struct ixgb_hw *hw)
{
    uint32_t eecd_reg;

    eecd_reg = IXGB_READ_REG(hw, EECD);

    /*  Clear SK and DI  */
    eecd_reg &= ~(IXGB_EECD_SK | IXGB_EECD_DI);
    IXGB_WRITE_REG(hw, EECD, eecd_reg);

    /*  Set CS  */
    eecd_reg |= IXGB_EECD_CS;
    IXGB_WRITE_REG(hw, EECD, eecd_reg);
    return;
}

/******************************************************************************
 * Returns EEPROM to a "standby" state
 *
 * hw - Struct containing variables accessed by shared code
 *****************************************************************************/
static void
ixgb_standby_eeprom(struct ixgb_hw *hw)
{
    uint32_t eecd_reg;

    eecd_reg = IXGB_READ_REG(hw, EECD);

    /*  Deselct EEPROM  */
    eecd_reg &= ~(IXGB_EECD_CS | IXGB_EECD_SK);
    IXGB_WRITE_REG(hw, EECD, eecd_reg);
    usec_delay(50);

    /*  Clock high  */
    eecd_reg |= IXGB_EECD_SK;
    IXGB_WRITE_REG(hw, EECD, eecd_reg);
    usec_delay(50);

    /*  Select EEPROM  */
    eecd_reg |= IXGB_EECD_CS;
    IXGB_WRITE_REG(hw, EECD, eecd_reg);
    usec_delay(50);

    /*  Clock low  */
    eecd_reg &= ~IXGB_EECD_SK;
    IXGB_WRITE_REG(hw, EECD, eecd_reg);
    usec_delay(50);
    return;
}

/******************************************************************************
 * Raises then lowers the EEPROM's clock pin
 *
 * hw - Struct containing variables accessed by shared code
 *****************************************************************************/
static void
ixgb_clock_eeprom(struct ixgb_hw *hw)
{
    uint32_t eecd_reg;

    eecd_reg = IXGB_READ_REG(hw, EECD);

    /*  Rising edge of clock  */
    eecd_reg |= IXGB_EECD_SK;
    IXGB_WRITE_REG(hw, EECD, eecd_reg);
    usec_delay(50);

    /*  Falling edge of clock  */
    eecd_reg &= ~IXGB_EECD_SK;
    IXGB_WRITE_REG(hw, EECD, eecd_reg);
    usec_delay(50);
    return;
}

/******************************************************************************
 * Terminates a command by lowering the EEPROM's chip select pin
 *
 * hw - Struct containing variables accessed by shared code
 *****************************************************************************/
static void
ixgb_cleanup_eeprom(struct ixgb_hw *hw)
{
    uint32_t eecd_reg;

    eecd_reg = IXGB_READ_REG(hw, EECD);

    eecd_reg &= ~(IXGB_EECD_CS | IXGB_EECD_DI);

    IXGB_WRITE_REG(hw, EECD, eecd_reg);

    ixgb_clock_eeprom(hw);
    return;
}

/******************************************************************************
 * Waits for the EEPROM to finish the current command.
 *
 * hw - Struct containing variables accessed by shared code
 *
 * The command is done when the EEPROM's data out pin goes high.
 *
 * Returns:
 *      TRUE: EEPROM data pin is high before timeout.
 *      FALSE:  Time expired.
 *****************************************************************************/
static boolean_t
ixgb_wait_eeprom_command(struct ixgb_hw *hw)
{
    uint32_t eecd_reg;
    uint32_t i;


    /* Toggle the CS line.  This in effect tells to EEPROM to actually execute
     * the command in question.
     */
    ixgb_standby_eeprom(hw);

    /* Now read DO repeatedly until is high (equal to '1').  The EEEPROM will
     * signal that the command has been completed by raising the DO signal.
     * If DO does not go high in 10 milliseconds, then error out.
     */
    for(i = 0; i < 200; i++) {
        eecd_reg = IXGB_READ_REG(hw, EECD);

        if(eecd_reg & IXGB_EECD_DO)
            return (TRUE);

        usec_delay(50);
    }
    ASSERT(0);
    return (FALSE);
}


/******************************************************************************
 * Verifies that the EEPROM has a valid checksum
 *
 * hw - Struct containing variables accessed by shared code
 *
 * Reads the first 64 16 bit words of the EEPROM and sums the values read.
 * If the sum of the 64 16 bit words is 0xBABA, the EEPROM's checksum is
 * valid.
 *
 * Returns:
 *  TRUE: Checksum is valid
 *  FALSE: Checksum is not valid.
 *****************************************************************************/
boolean_t
ixgb_validate_eeprom_checksum(struct ixgb_hw *hw)
{
    uint16_t checksum = 0;
    uint16_t i;

    for(i = 0; i < (EEPROM_CHECKSUM_REG + 1); i++)
        checksum += ixgb_read_eeprom(hw, i);

    if(checksum == (uint16_t) EEPROM_SUM)
        return (TRUE);
    else
        return (FALSE);
}

/******************************************************************************
 * Calculates the EEPROM checksum and writes it to the EEPROM
 *
 * hw - Struct containing variables accessed by shared code
 *
 * Sums the first 63 16 bit words of the EEPROM. Subtracts the sum from 0xBABA.
 * Writes the difference to word offset 63 of the EEPROM.
 *****************************************************************************/
void
ixgb_update_eeprom_checksum(struct ixgb_hw *hw)
{
    uint16_t checksum = 0;
    uint16_t i;

    for(i = 0; i < EEPROM_CHECKSUM_REG; i++)
        checksum += ixgb_read_eeprom(hw, i);

    checksum = (uint16_t) EEPROM_SUM - checksum;

    ixgb_write_eeprom(hw, EEPROM_CHECKSUM_REG, checksum);
    return;
}

/******************************************************************************
 * Writes a 16 bit word to a given offset in the EEPROM.
 *
 * hw - Struct containing variables accessed by shared code
 * reg - offset within the EEPROM to be written to
 * data - 16 bit word to be written to the EEPROM
 *
 * If ixgb_update_eeprom_checksum is not called after this function, the
 * EEPROM will most likely contain an invalid checksum.
 *
 *****************************************************************************/
void
ixgb_write_eeprom(struct ixgb_hw *hw,
                   uint16_t offset,
                   uint16_t data)
{
    /*  Prepare the EEPROM for writing  */
    ixgb_setup_eeprom(hw);

    /*  Send the 9-bit EWEN (write enable) command to the EEPROM (5-bit opcode
     *  plus 4-bit dummy).  This puts the EEPROM into write/erase mode.
     */
    ixgb_shift_out_bits(hw, EEPROM_EWEN_OPCODE, 5);
    ixgb_shift_out_bits(hw, 0, 4);

    /*  Prepare the EEPROM  */
    ixgb_standby_eeprom(hw);

    /*  Send the Write command (3-bit opcode + 6-bit addr)  */
    ixgb_shift_out_bits(hw, EEPROM_WRITE_OPCODE, 3);
    ixgb_shift_out_bits(hw, offset, 6);

    /*  Send the data  */
    ixgb_shift_out_bits(hw, data, 16);

    ixgb_wait_eeprom_command(hw);

    /*  Recover from write  */
    ixgb_standby_eeprom(hw);

    /* Send the 9-bit EWDS (write disable) command to the EEPROM (5-bit
     * opcode plus 4-bit dummy).  This takes the EEPROM out of write/erase
     * mode.
     */
    ixgb_shift_out_bits(hw, EEPROM_EWDS_OPCODE, 5);
    ixgb_shift_out_bits(hw, 0, 4);

    /*  Done with writing  */
    ixgb_cleanup_eeprom(hw);

    return;
}

/******************************************************************************
 * Reads a 16 bit word from the EEPROM.
 *
 * hw - Struct containing variables accessed by shared code
 * offset - offset of 16 bit word in the EEPROM to read
 *
 * Returns:
 *  The 16-bit value read from the eeprom
 *****************************************************************************/
uint16_t
ixgb_read_eeprom(struct ixgb_hw *hw,
                  uint16_t offset)
{
    uint16_t data;

    /*  Prepare the EEPROM for reading  */
    ixgb_setup_eeprom(hw);

    /*  Send the READ command (opcode + addr)  */
    ixgb_shift_out_bits(hw, EEPROM_READ_OPCODE, 3);
    /*
     * We have a 64 word EEPROM, there are 6 address bits
     */
    ixgb_shift_out_bits(hw, offset, 6);

    /*  Read the data  */
    data = ixgb_shift_in_bits(hw);

    /*  End this read operation  */
    ixgb_standby_eeprom(hw);

    return (data);
}

/******************************************************************************
 * Reads eeprom and stores data in shared structure.
 * Validates eeprom checksum and eeprom signature.
 *
 * hw - Struct containing variables accessed by shared code
 *
 * Returns:
 *      TRUE: if eeprom read is successful
 *      FALSE: otherwise.
 *****************************************************************************/
boolean_t
ixgb_get_eeprom_data(struct ixgb_hw *hw)
{
    uint16_t i;
    uint16_t checksum = 0;
    struct ixgb_ee_map_type *ee_map;

    DEBUGFUNC("ixgb_get_eeprom_data");

    ee_map = (struct ixgb_ee_map_type *) hw->eeprom;

    DEBUGOUT("ixgb_ee: Reading eeprom data\n");
    for (i=0; i < IXGB_EEPROM_SIZE ; i++) {
        uint16_t ee_data;
        ee_data = ixgb_read_eeprom(hw, i);
        checksum += ee_data;
        hw->eeprom[i] = le16_to_cpu (ee_data);
    }

    if (checksum != (uint16_t) EEPROM_SUM) {
        DEBUGOUT("ixgb_ee: Checksum invalid.\n");
        return (FALSE);
    }

    if ((ee_map->init_ctrl_reg_1 & le16_to_cpu(EEPROM_ICW1_SIGNATURE_MASK))
         != le16_to_cpu(EEPROM_ICW1_SIGNATURE_VALID)) {
        DEBUGOUT("ixgb_ee: Signature invalid.\n");
        return(FALSE);
    }

    return(TRUE);
}


/******************************************************************************
 * Local function to check if the eeprom signature is good
 * If the eeprom signature is good, calls ixgb)get_eeprom_data.
 *
 * hw - Struct containing variables accessed by shared code
 *
 * Returns:
 *      TRUE: eeprom signature was good and the eeprom read was successful
 *      FALSE: otherwise.
 ******************************************************************************/
static boolean_t
ixgb_check_and_get_eeprom_data (struct ixgb_hw* hw)
{
    struct ixgb_ee_map_type *ee_map = (struct ixgb_ee_map_type *) hw->eeprom;


    if ((ee_map->init_ctrl_reg_1 & le16_to_cpu(EEPROM_ICW1_SIGNATURE_MASK))
                                == le16_to_cpu(EEPROM_ICW1_SIGNATURE_VALID)) {
        return (TRUE);
    } else {
        return ixgb_get_eeprom_data(hw);
    }
}

/******************************************************************************
 * return a word from the eeprom
 *
 * hw - Struct containing variables accessed by shared code
 * index - Offset of eeprom word
 *
 * Returns:
 *          Word at indexed offset in eeprom, if valid, 0 otherwise.
 ******************************************************************************/
uint16_t
ixgb_get_eeprom_word(struct ixgb_hw *hw, uint16_t index)
{

    if ((index < IXGB_EEPROM_SIZE) &&
        (ixgb_check_and_get_eeprom_data (hw) == TRUE)) {
       return(hw->eeprom[index]);
    }

    return(0);
}


/******************************************************************************
 * return the mac address from EEPROM
 *
 * hw       - Struct containing variables accessed by shared code
 * mac_addr - Ethernet Address if EEPROM contents are valid, 0 otherwise
 *
 * Returns: None.
 ******************************************************************************/
void
ixgb_get_ee_mac_addr(struct ixgb_hw *hw,
                        uint8_t *mac_addr)
{
    int i;
    struct ixgb_ee_map_type *ee_map = (struct ixgb_ee_map_type *) hw->eeprom;

    DEBUGFUNC("ixgb_get_ee_mac_addr");

    if (ixgb_check_and_get_eeprom_data (hw) == TRUE) {
        for (i = 0; i < IXGB_ETH_LENGTH_OF_ADDRESS; i++) {
            mac_addr[i] = ee_map->mac_addr[i];
            DEBUGOUT2("mac(%d) = %.2X\n", i, mac_addr[i]);
        }
    }
}

/******************************************************************************
 * return the compatibility flags from EEPROM
 *
 * hw - Struct containing variables accessed by shared code
 *
 * Returns:
 *          compatibility flags if EEPROM contents are valid, 0 otherwise
 ******************************************************************************/
uint16_t
ixgb_get_ee_compatibility(struct ixgb_hw *hw)
{
    struct ixgb_ee_map_type *ee_map = (struct ixgb_ee_map_type *) hw->eeprom;

    if (ixgb_check_and_get_eeprom_data (hw) == TRUE)
       return(ee_map->compatibility);

    return(0);
}

/******************************************************************************
 * return the Printed Board Assembly number from EEPROM
 *
 * hw - Struct containing variables accessed by shared code
 *
 * Returns:
 *          PBA number if EEPROM contents are valid, 0 otherwise
 ******************************************************************************/
uint32_t
ixgb_get_ee_pba_number(struct ixgb_hw *hw)
{
    if (ixgb_check_and_get_eeprom_data (hw) == TRUE)
       return (   le16_to_cpu(hw->eeprom[EEPROM_PBA_1_2_REG])
               | (le16_to_cpu(hw->eeprom[EEPROM_PBA_3_4_REG])<<16));

    return(0);
}

/******************************************************************************
 * return the Initialization Control Word 1 from EEPROM
 *
 * hw - Struct containing variables accessed by shared code
 *
 * Returns:
 *          Initialization Control Word 1 if EEPROM contents are valid, 0 otherwise
 ******************************************************************************/
uint16_t
ixgb_get_ee_init_ctrl_reg_1(struct ixgb_hw *hw)
{
    struct ixgb_ee_map_type *ee_map = (struct ixgb_ee_map_type *) hw->eeprom;

    if (ixgb_check_and_get_eeprom_data (hw) == TRUE)
       return(ee_map->init_ctrl_reg_1);

    return(0);
}

/******************************************************************************
 * return the Initialization Control Word 2 from EEPROM
 *
 * hw - Struct containing variables accessed by shared code
 *
 * Returns:
 *          Initialization Control Word 2 if EEPROM contents are valid, 0 otherwise
 ******************************************************************************/
uint16_t
ixgb_get_ee_init_ctrl_reg_2(struct ixgb_hw *hw)
{
    struct ixgb_ee_map_type *ee_map = (struct ixgb_ee_map_type *) hw->eeprom;

    if (ixgb_check_and_get_eeprom_data (hw) == TRUE)
       return(ee_map->init_ctrl_reg_2);

    return(0);
}

/******************************************************************************
 * return the Subsystem Id from EEPROM
 *
 * hw - Struct containing variables accessed by shared code
 *
 * Returns:
 *          Subsystem Id if EEPROM contents are valid, 0 otherwise
 ******************************************************************************/
uint16_t
ixgb_get_ee_subsystem_id(struct ixgb_hw *hw)
{
    struct ixgb_ee_map_type *ee_map = (struct ixgb_ee_map_type *) hw->eeprom;

    if (ixgb_check_and_get_eeprom_data (hw) == TRUE)
       return(ee_map->subsystem_id);

    return(0);
}

/******************************************************************************
 * return the Sub Vendor Id from EEPROM
 *
 * hw - Struct containing variables accessed by shared code
 *
 * Returns:
 *          Sub Vendor Id if EEPROM contents are valid, 0 otherwise
 ******************************************************************************/
uint16_t
ixgb_get_ee_subvendor_id(struct ixgb_hw *hw)
{
    struct ixgb_ee_map_type *ee_map = (struct ixgb_ee_map_type *) hw->eeprom;

    if (ixgb_check_and_get_eeprom_data (hw) == TRUE)
       return(ee_map->subvendor_id);

    return(0);
}

/******************************************************************************
 * return the Device Id from EEPROM
 *
 * hw - Struct containing variables accessed by shared code
 *
 * Returns:
 *          Device Id if EEPROM contents are valid, 0 otherwise
 ******************************************************************************/
uint16_t
ixgb_get_ee_device_id(struct ixgb_hw *hw)
{
    struct ixgb_ee_map_type *ee_map = (struct ixgb_ee_map_type *) hw->eeprom;

    if (ixgb_check_and_get_eeprom_data (hw) == TRUE)
       return(ee_map->device_id);

    return(0);
}

/******************************************************************************
 * return the Vendor Id from EEPROM
 *
 * hw - Struct containing variables accessed by shared code
 *
 * Returns:
 *          Device Id if EEPROM contents are valid, 0 otherwise
 ******************************************************************************/
uint16_t
ixgb_get_ee_vendor_id(struct ixgb_hw *hw)
{
    struct ixgb_ee_map_type *ee_map = (struct ixgb_ee_map_type *) hw->eeprom;

    if (ixgb_check_and_get_eeprom_data (hw) == TRUE)
       return(ee_map->vendor_id);

    return(0);
}

/******************************************************************************
 * return the Software Defined Pins Register from EEPROM
 *
 * hw - Struct containing variables accessed by shared code
 *
 * Returns:
 *          SDP Register if EEPROM contents are valid, 0 otherwise
 ******************************************************************************/
uint16_t
ixgb_get_ee_swdpins_reg(struct ixgb_hw *hw)
{
    struct ixgb_ee_map_type *ee_map = (struct ixgb_ee_map_type *) hw->eeprom;

    if (ixgb_check_and_get_eeprom_data (hw) == TRUE)
       return(ee_map->swdpins_reg);

    return(0);
}

/******************************************************************************
 * return the D3 Power Management Bits from EEPROM
 *
 * hw - Struct containing variables accessed by shared code
 *
 * Returns:
 *          D3 Power Management Bits if EEPROM contents are valid, 0 otherwise
 ******************************************************************************/
uint8_t
ixgb_get_ee_d3_power(struct ixgb_hw *hw)
{
    struct ixgb_ee_map_type *ee_map = (struct ixgb_ee_map_type *) hw->eeprom;

    if (ixgb_check_and_get_eeprom_data (hw) == TRUE)
       return(ee_map->d3_power);

    return(0);
}

/******************************************************************************
 * return the D0 Power Management Bits from EEPROM
 *
 * hw - Struct containing variables accessed by shared code
 *
 * Returns:
 *          D0 Power Management Bits if EEPROM contents are valid, 0 otherwise
 ******************************************************************************/
uint8_t
ixgb_get_ee_d0_power(struct ixgb_hw *hw)
{
    struct ixgb_ee_map_type *ee_map = (struct ixgb_ee_map_type *) hw->eeprom;

    if (ixgb_check_and_get_eeprom_data (hw) == TRUE)
       return(ee_map->d0_power);

    return(0);
}