RT-AC56 3.0.0.4.374.37 core
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / net / ixgb / ixgb_ee.c
blobd4e8fa8dd9d3f7f1c86e5f2a13927621eebad7e7
1 /*******************************************************************************
3 Intel PRO/10GbE Linux driver
4 Copyright(c) 1999 - 2008 Intel Corporation.
6 This program is free software; you can redistribute it and/or modify it
7 under the terms and conditions of the GNU General Public License,
8 version 2, as published by the Free Software Foundation.
10 This program is distributed in the hope it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 more details.
15 You should have received a copy of the GNU General Public License along with
16 this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
22 Contact Information:
23 Linux NICS <linux.nics@intel.com>
24 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
25 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *******************************************************************************/
29 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
31 #include "ixgb_hw.h"
32 #include "ixgb_ee.h"
33 /* Local prototypes */
34 static u16 ixgb_shift_in_bits(struct ixgb_hw *hw);
36 static void ixgb_shift_out_bits(struct ixgb_hw *hw,
37 u16 data,
38 u16 count);
39 static void ixgb_standby_eeprom(struct ixgb_hw *hw);
41 static bool ixgb_wait_eeprom_command(struct ixgb_hw *hw);
43 static void ixgb_cleanup_eeprom(struct ixgb_hw *hw);
45 /******************************************************************************
46 * Raises the EEPROM's clock input.
48 * hw - Struct containing variables accessed by shared code
49 * eecd_reg - EECD's current value
50 *****************************************************************************/
51 static void
52 ixgb_raise_clock(struct ixgb_hw *hw,
53 u32 *eecd_reg)
55 /* Raise the clock input to the EEPROM (by setting the SK bit), and then
56 * wait 50 microseconds.
58 *eecd_reg = *eecd_reg | IXGB_EECD_SK;
59 IXGB_WRITE_REG(hw, EECD, *eecd_reg);
60 udelay(50);
63 /******************************************************************************
64 * Lowers the EEPROM's clock input.
66 * hw - Struct containing variables accessed by shared code
67 * eecd_reg - EECD's current value
68 *****************************************************************************/
69 static void
70 ixgb_lower_clock(struct ixgb_hw *hw,
71 u32 *eecd_reg)
73 /* Lower the clock input to the EEPROM (by clearing the SK bit), and then
74 * wait 50 microseconds.
76 *eecd_reg = *eecd_reg & ~IXGB_EECD_SK;
77 IXGB_WRITE_REG(hw, EECD, *eecd_reg);
78 udelay(50);
81 /******************************************************************************
82 * Shift data bits out to the EEPROM.
84 * hw - Struct containing variables accessed by shared code
85 * data - data to send to the EEPROM
86 * count - number of bits to shift out
87 *****************************************************************************/
88 static void
89 ixgb_shift_out_bits(struct ixgb_hw *hw,
90 u16 data,
91 u16 count)
93 u32 eecd_reg;
94 u32 mask;
96 /* We need to shift "count" bits out to the EEPROM. So, value in the
97 * "data" parameter will be shifted out to the EEPROM one bit at a time.
98 * In order to do this, "data" must be broken down into bits.
100 mask = 0x01 << (count - 1);
101 eecd_reg = IXGB_READ_REG(hw, EECD);
102 eecd_reg &= ~(IXGB_EECD_DO | IXGB_EECD_DI);
103 do {
104 /* A "1" is shifted out to the EEPROM by setting bit "DI" to a "1",
105 * and then raising and then lowering the clock (the SK bit controls
106 * the clock input to the EEPROM). A "0" is shifted out to the EEPROM
107 * by setting "DI" to "0" and then raising and then lowering the clock.
109 eecd_reg &= ~IXGB_EECD_DI;
111 if (data & mask)
112 eecd_reg |= IXGB_EECD_DI;
114 IXGB_WRITE_REG(hw, EECD, eecd_reg);
116 udelay(50);
118 ixgb_raise_clock(hw, &eecd_reg);
119 ixgb_lower_clock(hw, &eecd_reg);
121 mask = mask >> 1;
123 } while (mask);
125 /* We leave the "DI" bit set to "0" when we leave this routine. */
126 eecd_reg &= ~IXGB_EECD_DI;
127 IXGB_WRITE_REG(hw, EECD, eecd_reg);
130 /******************************************************************************
131 * Shift data bits in from the EEPROM
133 * hw - Struct containing variables accessed by shared code
134 *****************************************************************************/
135 static u16
136 ixgb_shift_in_bits(struct ixgb_hw *hw)
138 u32 eecd_reg;
139 u32 i;
140 u16 data;
142 /* In order to read a register from the EEPROM, we need to shift 16 bits
143 * in from the EEPROM. Bits are "shifted in" by raising the clock input to
144 * the EEPROM (setting the SK bit), and then reading the value of the "DO"
145 * bit. During this "shifting in" process the "DI" bit should always be
146 * clear..
149 eecd_reg = IXGB_READ_REG(hw, EECD);
151 eecd_reg &= ~(IXGB_EECD_DO | IXGB_EECD_DI);
152 data = 0;
154 for (i = 0; i < 16; i++) {
155 data = data << 1;
156 ixgb_raise_clock(hw, &eecd_reg);
158 eecd_reg = IXGB_READ_REG(hw, EECD);
160 eecd_reg &= ~(IXGB_EECD_DI);
161 if (eecd_reg & IXGB_EECD_DO)
162 data |= 1;
164 ixgb_lower_clock(hw, &eecd_reg);
167 return data;
170 /******************************************************************************
171 * Prepares EEPROM for access
173 * hw - Struct containing variables accessed by shared code
175 * Lowers EEPROM clock. Clears input pin. Sets the chip select pin. This
176 * function should be called before issuing a command to the EEPROM.
177 *****************************************************************************/
178 static void
179 ixgb_setup_eeprom(struct ixgb_hw *hw)
181 u32 eecd_reg;
183 eecd_reg = IXGB_READ_REG(hw, EECD);
185 /* Clear SK and DI */
186 eecd_reg &= ~(IXGB_EECD_SK | IXGB_EECD_DI);
187 IXGB_WRITE_REG(hw, EECD, eecd_reg);
189 /* Set CS */
190 eecd_reg |= IXGB_EECD_CS;
191 IXGB_WRITE_REG(hw, EECD, eecd_reg);
194 /******************************************************************************
195 * Returns EEPROM to a "standby" state
197 * hw - Struct containing variables accessed by shared code
198 *****************************************************************************/
199 static void
200 ixgb_standby_eeprom(struct ixgb_hw *hw)
202 u32 eecd_reg;
204 eecd_reg = IXGB_READ_REG(hw, EECD);
206 /* Deselect EEPROM */
207 eecd_reg &= ~(IXGB_EECD_CS | IXGB_EECD_SK);
208 IXGB_WRITE_REG(hw, EECD, eecd_reg);
209 udelay(50);
211 /* Clock high */
212 eecd_reg |= IXGB_EECD_SK;
213 IXGB_WRITE_REG(hw, EECD, eecd_reg);
214 udelay(50);
216 /* Select EEPROM */
217 eecd_reg |= IXGB_EECD_CS;
218 IXGB_WRITE_REG(hw, EECD, eecd_reg);
219 udelay(50);
221 /* Clock low */
222 eecd_reg &= ~IXGB_EECD_SK;
223 IXGB_WRITE_REG(hw, EECD, eecd_reg);
224 udelay(50);
227 /******************************************************************************
228 * Raises then lowers the EEPROM's clock pin
230 * hw - Struct containing variables accessed by shared code
231 *****************************************************************************/
232 static void
233 ixgb_clock_eeprom(struct ixgb_hw *hw)
235 u32 eecd_reg;
237 eecd_reg = IXGB_READ_REG(hw, EECD);
239 /* Rising edge of clock */
240 eecd_reg |= IXGB_EECD_SK;
241 IXGB_WRITE_REG(hw, EECD, eecd_reg);
242 udelay(50);
244 /* Falling edge of clock */
245 eecd_reg &= ~IXGB_EECD_SK;
246 IXGB_WRITE_REG(hw, EECD, eecd_reg);
247 udelay(50);
250 /******************************************************************************
251 * Terminates a command by lowering the EEPROM's chip select pin
253 * hw - Struct containing variables accessed by shared code
254 *****************************************************************************/
255 static void
256 ixgb_cleanup_eeprom(struct ixgb_hw *hw)
258 u32 eecd_reg;
260 eecd_reg = IXGB_READ_REG(hw, EECD);
262 eecd_reg &= ~(IXGB_EECD_CS | IXGB_EECD_DI);
264 IXGB_WRITE_REG(hw, EECD, eecd_reg);
266 ixgb_clock_eeprom(hw);
269 /******************************************************************************
270 * Waits for the EEPROM to finish the current command.
272 * hw - Struct containing variables accessed by shared code
274 * The command is done when the EEPROM's data out pin goes high.
276 * Returns:
277 * true: EEPROM data pin is high before timeout.
278 * false: Time expired.
279 *****************************************************************************/
280 static bool
281 ixgb_wait_eeprom_command(struct ixgb_hw *hw)
283 u32 eecd_reg;
284 u32 i;
286 /* Toggle the CS line. This in effect tells to EEPROM to actually execute
287 * the command in question.
289 ixgb_standby_eeprom(hw);
291 /* Now read DO repeatedly until is high (equal to '1'). The EEPROM will
292 * signal that the command has been completed by raising the DO signal.
293 * If DO does not go high in 10 milliseconds, then error out.
295 for (i = 0; i < 200; i++) {
296 eecd_reg = IXGB_READ_REG(hw, EECD);
298 if (eecd_reg & IXGB_EECD_DO)
299 return (true);
301 udelay(50);
303 ASSERT(0);
304 return (false);
307 /******************************************************************************
308 * Verifies that the EEPROM has a valid checksum
310 * hw - Struct containing variables accessed by shared code
312 * Reads the first 64 16 bit words of the EEPROM and sums the values read.
313 * If the sum of the 64 16 bit words is 0xBABA, the EEPROM's checksum is
314 * valid.
316 * Returns:
317 * true: Checksum is valid
318 * false: Checksum is not valid.
319 *****************************************************************************/
320 bool
321 ixgb_validate_eeprom_checksum(struct ixgb_hw *hw)
323 u16 checksum = 0;
324 u16 i;
326 for (i = 0; i < (EEPROM_CHECKSUM_REG + 1); i++)
327 checksum += ixgb_read_eeprom(hw, i);
329 if (checksum == (u16) EEPROM_SUM)
330 return (true);
331 else
332 return (false);
335 /******************************************************************************
336 * Calculates the EEPROM checksum and writes it to the EEPROM
338 * hw - Struct containing variables accessed by shared code
340 * Sums the first 63 16 bit words of the EEPROM. Subtracts the sum from 0xBABA.
341 * Writes the difference to word offset 63 of the EEPROM.
342 *****************************************************************************/
343 void
344 ixgb_update_eeprom_checksum(struct ixgb_hw *hw)
346 u16 checksum = 0;
347 u16 i;
349 for (i = 0; i < EEPROM_CHECKSUM_REG; i++)
350 checksum += ixgb_read_eeprom(hw, i);
352 checksum = (u16) EEPROM_SUM - checksum;
354 ixgb_write_eeprom(hw, EEPROM_CHECKSUM_REG, checksum);
357 /******************************************************************************
358 * Writes a 16 bit word to a given offset in the EEPROM.
360 * hw - Struct containing variables accessed by shared code
361 * reg - offset within the EEPROM to be written to
362 * data - 16 bit word to be written to the EEPROM
364 * If ixgb_update_eeprom_checksum is not called after this function, the
365 * EEPROM will most likely contain an invalid checksum.
367 *****************************************************************************/
368 void
369 ixgb_write_eeprom(struct ixgb_hw *hw, u16 offset, u16 data)
371 struct ixgb_ee_map_type *ee_map = (struct ixgb_ee_map_type *)hw->eeprom;
373 /* Prepare the EEPROM for writing */
374 ixgb_setup_eeprom(hw);
376 /* Send the 9-bit EWEN (write enable) command to the EEPROM (5-bit opcode
377 * plus 4-bit dummy). This puts the EEPROM into write/erase mode.
379 ixgb_shift_out_bits(hw, EEPROM_EWEN_OPCODE, 5);
380 ixgb_shift_out_bits(hw, 0, 4);
382 /* Prepare the EEPROM */
383 ixgb_standby_eeprom(hw);
385 /* Send the Write command (3-bit opcode + 6-bit addr) */
386 ixgb_shift_out_bits(hw, EEPROM_WRITE_OPCODE, 3);
387 ixgb_shift_out_bits(hw, offset, 6);
389 /* Send the data */
390 ixgb_shift_out_bits(hw, data, 16);
392 ixgb_wait_eeprom_command(hw);
394 /* Recover from write */
395 ixgb_standby_eeprom(hw);
397 /* Send the 9-bit EWDS (write disable) command to the EEPROM (5-bit
398 * opcode plus 4-bit dummy). This takes the EEPROM out of write/erase
399 * mode.
401 ixgb_shift_out_bits(hw, EEPROM_EWDS_OPCODE, 5);
402 ixgb_shift_out_bits(hw, 0, 4);
404 /* Done with writing */
405 ixgb_cleanup_eeprom(hw);
407 /* clear the init_ctrl_reg_1 to signify that the cache is invalidated */
408 ee_map->init_ctrl_reg_1 = cpu_to_le16(EEPROM_ICW1_SIGNATURE_CLEAR);
411 /******************************************************************************
412 * Reads a 16 bit word from the EEPROM.
414 * hw - Struct containing variables accessed by shared code
415 * offset - offset of 16 bit word in the EEPROM to read
417 * Returns:
418 * The 16-bit value read from the eeprom
419 *****************************************************************************/
421 ixgb_read_eeprom(struct ixgb_hw *hw,
422 u16 offset)
424 u16 data;
426 /* Prepare the EEPROM for reading */
427 ixgb_setup_eeprom(hw);
429 /* Send the READ command (opcode + addr) */
430 ixgb_shift_out_bits(hw, EEPROM_READ_OPCODE, 3);
432 * We have a 64 word EEPROM, there are 6 address bits
434 ixgb_shift_out_bits(hw, offset, 6);
436 /* Read the data */
437 data = ixgb_shift_in_bits(hw);
439 /* End this read operation */
440 ixgb_standby_eeprom(hw);
442 return (data);
445 /******************************************************************************
446 * Reads eeprom and stores data in shared structure.
447 * Validates eeprom checksum and eeprom signature.
449 * hw - Struct containing variables accessed by shared code
451 * Returns:
452 * true: if eeprom read is successful
453 * false: otherwise.
454 *****************************************************************************/
455 bool
456 ixgb_get_eeprom_data(struct ixgb_hw *hw)
458 u16 i;
459 u16 checksum = 0;
460 struct ixgb_ee_map_type *ee_map;
462 ENTER();
464 ee_map = (struct ixgb_ee_map_type *)hw->eeprom;
466 pr_debug("Reading eeprom data\n");
467 for (i = 0; i < IXGB_EEPROM_SIZE ; i++) {
468 u16 ee_data;
469 ee_data = ixgb_read_eeprom(hw, i);
470 checksum += ee_data;
471 hw->eeprom[i] = cpu_to_le16(ee_data);
474 if (checksum != (u16) EEPROM_SUM) {
475 pr_debug("Checksum invalid\n");
476 /* clear the init_ctrl_reg_1 to signify that the cache is
477 * invalidated */
478 ee_map->init_ctrl_reg_1 = cpu_to_le16(EEPROM_ICW1_SIGNATURE_CLEAR);
479 return (false);
482 if ((ee_map->init_ctrl_reg_1 & cpu_to_le16(EEPROM_ICW1_SIGNATURE_MASK))
483 != cpu_to_le16(EEPROM_ICW1_SIGNATURE_VALID)) {
484 pr_debug("Signature invalid\n");
485 return(false);
488 return(true);
491 /******************************************************************************
492 * Local function to check if the eeprom signature is good
493 * If the eeprom signature is good, calls ixgb)get_eeprom_data.
495 * hw - Struct containing variables accessed by shared code
497 * Returns:
498 * true: eeprom signature was good and the eeprom read was successful
499 * false: otherwise.
500 ******************************************************************************/
501 static bool
502 ixgb_check_and_get_eeprom_data (struct ixgb_hw* hw)
504 struct ixgb_ee_map_type *ee_map = (struct ixgb_ee_map_type *)hw->eeprom;
506 if ((ee_map->init_ctrl_reg_1 & cpu_to_le16(EEPROM_ICW1_SIGNATURE_MASK))
507 == cpu_to_le16(EEPROM_ICW1_SIGNATURE_VALID)) {
508 return (true);
509 } else {
510 return ixgb_get_eeprom_data(hw);
514 /******************************************************************************
515 * return a word from the eeprom
517 * hw - Struct containing variables accessed by shared code
518 * index - Offset of eeprom word
520 * Returns:
521 * Word at indexed offset in eeprom, if valid, 0 otherwise.
522 ******************************************************************************/
523 __le16
524 ixgb_get_eeprom_word(struct ixgb_hw *hw, u16 index)
527 if ((index < IXGB_EEPROM_SIZE) &&
528 (ixgb_check_and_get_eeprom_data(hw) == true)) {
529 return(hw->eeprom[index]);
532 return(0);
535 /******************************************************************************
536 * return the mac address from EEPROM
538 * hw - Struct containing variables accessed by shared code
539 * mac_addr - Ethernet Address if EEPROM contents are valid, 0 otherwise
541 * Returns: None.
542 ******************************************************************************/
543 void
544 ixgb_get_ee_mac_addr(struct ixgb_hw *hw,
545 u8 *mac_addr)
547 int i;
548 struct ixgb_ee_map_type *ee_map = (struct ixgb_ee_map_type *)hw->eeprom;
550 ENTER();
552 if (ixgb_check_and_get_eeprom_data(hw) == true) {
553 for (i = 0; i < IXGB_ETH_LENGTH_OF_ADDRESS; i++) {
554 mac_addr[i] = ee_map->mac_addr[i];
556 pr_debug("eeprom mac address = %pM\n", mac_addr);
561 /******************************************************************************
562 * return the Printed Board Assembly number from EEPROM
564 * hw - Struct containing variables accessed by shared code
566 * Returns:
567 * PBA number if EEPROM contents are valid, 0 otherwise
568 ******************************************************************************/
570 ixgb_get_ee_pba_number(struct ixgb_hw *hw)
572 if (ixgb_check_and_get_eeprom_data(hw) == true)
573 return (le16_to_cpu(hw->eeprom[EEPROM_PBA_1_2_REG])
574 | (le16_to_cpu(hw->eeprom[EEPROM_PBA_3_4_REG])<<16));
576 return(0);
580 /******************************************************************************
581 * return the Device Id from EEPROM
583 * hw - Struct containing variables accessed by shared code
585 * Returns:
586 * Device Id if EEPROM contents are valid, 0 otherwise
587 ******************************************************************************/
589 ixgb_get_ee_device_id(struct ixgb_hw *hw)
591 struct ixgb_ee_map_type *ee_map = (struct ixgb_ee_map_type *)hw->eeprom;
593 if (ixgb_check_and_get_eeprom_data(hw) == true)
594 return (le16_to_cpu(ee_map->device_id));
596 return (0);