blob: 3a81a856289382ae5020f22dc1804c01c4ab4c89 [file] [log] [blame]
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001/*
2 * Agere Systems Inc.
3 * 10/100/1000 Base-T Ethernet Driver for the ET1301 and ET131x series MACs
4 *
Alan Cox64f93032009-06-10 17:30:41 +01005 * Copyright © 2005 Agere Systems Inc.
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07006 * All rights reserved.
7 * http://www.agere.com
8 *
9 *------------------------------------------------------------------------------
10 *
11 * et1310_eeprom.c - Code used to access the device's EEPROM
12 *
13 *------------------------------------------------------------------------------
14 *
15 * SOFTWARE LICENSE
16 *
17 * This software is provided subject to the following terms and conditions,
18 * which you should read carefully before using the software. Using this
19 * software indicates your acceptance of these terms and conditions. If you do
20 * not agree with these terms and conditions, do not use the software.
21 *
Alan Cox64f93032009-06-10 17:30:41 +010022 * Copyright © 2005 Agere Systems Inc.
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -070023 * All rights reserved.
24 *
25 * Redistribution and use in source or binary forms, with or without
26 * modifications, are permitted provided that the following conditions are met:
27 *
28 * . Redistributions of source code must retain the above copyright notice, this
29 * list of conditions and the following Disclaimer as comments in the code as
30 * well as in the documentation and/or other materials provided with the
31 * distribution.
32 *
33 * . Redistributions in binary form must reproduce the above copyright notice,
34 * this list of conditions and the following Disclaimer in the documentation
35 * and/or other materials provided with the distribution.
36 *
37 * . Neither the name of Agere Systems Inc. nor the names of the contributors
38 * may be used to endorse or promote products derived from this software
39 * without specific prior written permission.
40 *
41 * Disclaimer
42 *
Alan Cox64f93032009-06-10 17:30:41 +010043 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -070044 * INCLUDING, BUT NOT LIMITED TO, INFRINGEMENT AND THE IMPLIED WARRANTIES OF
45 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. ANY
46 * USE, MODIFICATION OR DISTRIBUTION OF THIS SOFTWARE IS SOLELY AT THE USERS OWN
47 * RISK. IN NO EVENT SHALL AGERE SYSTEMS INC. OR CONTRIBUTORS BE LIABLE FOR ANY
48 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
49 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
50 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
51 * ON ANY THEORY OF LIABILITY, INCLUDING, BUT NOT LIMITED TO, CONTRACT, STRICT
52 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
53 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
54 * DAMAGE.
55 *
56 */
57
58#include "et131x_version.h"
59#include "et131x_debug.h"
60#include "et131x_defs.h"
61
62#include <linux/pci.h>
63#include <linux/init.h>
64#include <linux/module.h>
65#include <linux/types.h>
66#include <linux/kernel.h>
67
68#include <linux/sched.h>
69#include <linux/ptrace.h>
70#include <linux/slab.h>
71#include <linux/ctype.h>
72#include <linux/string.h>
73#include <linux/timer.h>
74#include <linux/interrupt.h>
75#include <linux/in.h>
76#include <linux/delay.h>
Alan Cox64f93032009-06-10 17:30:41 +010077#include <linux/bitops.h>
78#include <linux/io.h>
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -070079#include <asm/system.h>
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -070080
81#include <linux/netdevice.h>
82#include <linux/etherdevice.h>
83#include <linux/skbuff.h>
84#include <linux/if_arp.h>
85#include <linux/ioport.h>
86
87#include "et1310_phy.h"
88#include "et1310_pm.h"
89#include "et1310_jagcore.h"
90#include "et1310_eeprom.h"
91
92#include "et131x_adapter.h"
93#include "et131x_initpci.h"
94#include "et131x_isr.h"
95
96#include "et1310_tx.h"
97
98
99/*
100 * EEPROM Defines
101 */
102
103/* LBCIF Register Groups (addressed via 32-bit offsets) */
104#define LBCIF_DWORD0_GROUP_OFFSET 0xAC
105#define LBCIF_DWORD1_GROUP_OFFSET 0xB0
106
107/* LBCIF Registers (addressed via 8-bit offsets) */
108#define LBCIF_ADDRESS_REGISTER_OFFSET 0xAC
109#define LBCIF_DATA_REGISTER_OFFSET 0xB0
110#define LBCIF_CONTROL_REGISTER_OFFSET 0xB1
111#define LBCIF_STATUS_REGISTER_OFFSET 0xB2
112
113/* LBCIF Control Register Bits */
114#define LBCIF_CONTROL_SEQUENTIAL_READ 0x01
115#define LBCIF_CONTROL_PAGE_WRITE 0x02
116#define LBCIF_CONTROL_UNUSED1 0x04
117#define LBCIF_CONTROL_EEPROM_RELOAD 0x08
118#define LBCIF_CONTROL_UNUSED2 0x10
119#define LBCIF_CONTROL_TWO_BYTE_ADDR 0x20
120#define LBCIF_CONTROL_I2C_WRITE 0x40
121#define LBCIF_CONTROL_LBCIF_ENABLE 0x80
122
123/* LBCIF Status Register Bits */
124#define LBCIF_STATUS_PHY_QUEUE_AVAIL 0x01
125#define LBCIF_STATUS_I2C_IDLE 0x02
126#define LBCIF_STATUS_ACK_ERROR 0x04
127#define LBCIF_STATUS_GENERAL_ERROR 0x08
128#define LBCIF_STATUS_UNUSED 0x30
129#define LBCIF_STATUS_CHECKSUM_ERROR 0x40
130#define LBCIF_STATUS_EEPROM_PRESENT 0x80
131
132/* Miscellaneous Constraints */
133#define MAX_NUM_REGISTER_POLLS 1000
134#define MAX_NUM_WRITE_RETRIES 2
135
136/*
137 * Define macros that allow individual register values to be extracted from a
138 * DWORD1 register grouping
139 */
140#define EXTRACT_DATA_REGISTER(x) (uint8_t)(x & 0xFF)
141#define EXTRACT_STATUS_REGISTER(x) (uint8_t)((x >> 16) & 0xFF)
142#define EXTRACT_CONTROL_REG(x) (uint8_t)((x >> 8) & 0xFF)
143
144/**
145 * EepromWriteByte - Write a byte to the ET1310's EEPROM
146 * @pAdapter: pointer to our private adapter structure
147 * @unAddress: the address to write
148 * @bData: the value to write
149 * @unEepronId: the ID of the EEPROM
150 * @unAddressingMode: how the EEPROM is to be accessed
151 *
152 * Returns SUCCESS or FAILURE
153 */
154int32_t EepromWriteByte(struct et131x_adapter *pAdapter, uint32_t unAddress,
155 uint8_t bData, uint32_t unEepromId,
156 uint32_t unAddressingMode)
157{
Alan Cox64f93032009-06-10 17:30:41 +0100158 struct pci_dev *pdev = pAdapter->pdev;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700159 int32_t nIndex;
160 int32_t nRetries;
161 int32_t nError = false;
162 int32_t nI2CWriteActive = 0;
163 int32_t nWriteSuccessful = 0;
164 uint8_t bControl;
165 uint8_t bStatus = 0;
166 uint32_t unDword1 = 0;
167 uint32_t unData = 0;
168
169 /*
170 * The following excerpt is from "Serial EEPROM HW Design
171 * Specification" Version 0.92 (9/20/2004):
172 *
173 * Single Byte Writes
174 *
175 * For an EEPROM, an I2C single byte write is defined as a START
176 * condition followed by the device address, EEPROM address, one byte
177 * of data and a STOP condition. The STOP condition will trigger the
178 * EEPROM's internally timed write cycle to the nonvolatile memory.
179 * All inputs are disabled during this write cycle and the EEPROM will
180 * not respond to any access until the internal write is complete.
181 * The steps to execute a single byte write are as follows:
182 *
183 * 1. Check LBCIF Status Register for bits 6 & 3:2 all equal to 0 and
184 * bits 7,1:0 both equal to 1, at least once after reset.
185 * Subsequent operations need only to check that bits 1:0 are
186 * equal to 1 prior to starting a single byte write.
187 *
188 * 2. Write to the LBCIF Control Register: bit 7=1, bit 6=1, bit 3=0,
189 * and bits 1:0 both =0. Bit 5 should be set according to the
190 * type of EEPROM being accessed (1=two byte addressing, 0=one
191 * byte addressing).
192 *
193 * 3. Write the address to the LBCIF Address Register.
194 *
195 * 4. Write the data to the LBCIF Data Register (the I2C write will
196 * begin).
197 *
198 * 5. Monitor bit 1:0 of the LBCIF Status Register. When bits 1:0 are
199 * both equal to 1, the I2C write has completed and the internal
200 * write cycle of the EEPROM is about to start. (bits 1:0 = 01 is
201 * a legal state while waiting from both equal to 1, but bits
202 * 1:0 = 10 is invalid and implies that something is broken).
203 *
204 * 6. Check bit 3 of the LBCIF Status Register. If equal to 1, an
205 * error has occurred.
206 *
207 * 7. Check bit 2 of the LBCIF Status Register. If equal to 1 an ACK
208 * error has occurred on the address phase of the write. This
209 * could be due to an actual hardware failure or the EEPROM may
210 * still be in its internal write cycle from a previous write.
211 * This write operation was ignored and must be repeated later.
212 *
213 * 8. Set bit 6 of the LBCIF Control Register = 0. If another write is
214 * required, go to step 1.
215 */
216
217 /* Step 1: */
218 for (nIndex = 0; nIndex < MAX_NUM_REGISTER_POLLS; nIndex++) {
219 /* Read registers grouped in DWORD1 */
220 if (pci_read_config_dword(pdev, LBCIF_DWORD1_GROUP_OFFSET,
221 &unDword1)) {
222 nError = 1;
223 break;
224 }
225
226 bStatus = EXTRACT_STATUS_REGISTER(unDword1);
227
228 if (bStatus & LBCIF_STATUS_PHY_QUEUE_AVAIL &&
Alan Cox64f93032009-06-10 17:30:41 +0100229 bStatus & LBCIF_STATUS_I2C_IDLE)
230 /* bits 1:0 are equal to 1 */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700231 break;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700232 }
233
Alan Cox64f93032009-06-10 17:30:41 +0100234 if (nError || (nIndex >= MAX_NUM_REGISTER_POLLS))
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700235 return FAILURE;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700236
237 /* Step 2: */
238 bControl = 0;
239 bControl |= LBCIF_CONTROL_LBCIF_ENABLE | LBCIF_CONTROL_I2C_WRITE;
240
Alan Cox64f93032009-06-10 17:30:41 +0100241 if (unAddressingMode == DUAL_BYTE)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700242 bControl |= LBCIF_CONTROL_TWO_BYTE_ADDR;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700243
244 if (pci_write_config_byte(pdev, LBCIF_CONTROL_REGISTER_OFFSET,
245 bControl)) {
246 return FAILURE;
247 }
248
249 nI2CWriteActive = 1;
250
251 /* Prepare EEPROM address for Step 3 */
252 unAddress |= (unAddressingMode == DUAL_BYTE) ?
253 (unEepromId << 16) : (unEepromId << 8);
254
255 for (nRetries = 0; nRetries < MAX_NUM_WRITE_RETRIES; nRetries++) {
256 /* Step 3:*/
257 if (pci_write_config_dword(pdev, LBCIF_ADDRESS_REGISTER_OFFSET,
258 unAddress)) {
259 break;
260 }
261
262 /* Step 4: */
263 if (pci_write_config_byte(pdev, LBCIF_DATA_REGISTER_OFFSET,
264 bData)) {
265 break;
266 }
267
268 /* Step 5: */
269 for (nIndex = 0; nIndex < MAX_NUM_REGISTER_POLLS; nIndex++) {
270 /* Read registers grouped in DWORD1 */
271 if (pci_read_config_dword(pdev,
272 LBCIF_DWORD1_GROUP_OFFSET,
273 &unDword1)) {
274 nError = 1;
275 break;
276 }
277
278 bStatus = EXTRACT_STATUS_REGISTER(unDword1);
279
280 if (bStatus & LBCIF_STATUS_PHY_QUEUE_AVAIL &&
Alan Cox64f93032009-06-10 17:30:41 +0100281 bStatus & LBCIF_STATUS_I2C_IDLE) {
282 /* I2C write complete */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700283 break;
284 }
285 }
286
Alan Cox64f93032009-06-10 17:30:41 +0100287 if (nError || (nIndex >= MAX_NUM_REGISTER_POLLS))
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700288 break;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700289
290 /*
291 * Step 6: Don't break here if we are revision 1, this is
292 * so we do a blind write for load bug.
Alan Cox64f93032009-06-10 17:30:41 +0100293 */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700294 if (bStatus & LBCIF_STATUS_GENERAL_ERROR
295 && pAdapter->RevisionID == 0) {
296 break;
297 }
298
299 /* Step 7 */
300 if (bStatus & LBCIF_STATUS_ACK_ERROR) {
301 /*
302 * This could be due to an actual hardware failure
303 * or the EEPROM may still be in its internal write
304 * cycle from a previous write. This write operation
305 * was ignored and must be repeated later.
306 */
307 udelay(10);
308 continue;
309 }
310
311 nWriteSuccessful = 1;
312 break;
313 }
314
315 /* Step 8: */
316 udelay(10);
317 nIndex = 0;
318 while (nI2CWriteActive) {
319 bControl &= ~LBCIF_CONTROL_I2C_WRITE;
320
321 if (pci_write_config_byte(pdev, LBCIF_CONTROL_REGISTER_OFFSET,
322 bControl)) {
323 nWriteSuccessful = 0;
324 }
325
326 /* Do read until internal ACK_ERROR goes away meaning write
327 * completed
328 */
329 do {
330 pci_write_config_dword(pdev,
331 LBCIF_ADDRESS_REGISTER_OFFSET,
332 unAddress);
333 do {
334 pci_read_config_dword(pdev,
335 LBCIF_DATA_REGISTER_OFFSET, &unData);
336 } while ((unData & 0x00010000) == 0);
337 } while (unData & 0x00040000);
338
339 bControl = EXTRACT_CONTROL_REG(unData);
340
Alan Cox64f93032009-06-10 17:30:41 +0100341 if (bControl != 0xC0 || nIndex == 10000)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700342 break;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700343
344 nIndex++;
345 }
346
347 return nWriteSuccessful ? SUCCESS : FAILURE;
348}
349
350/**
351 * EepromReadByte - Read a byte from the ET1310's EEPROM
352 * @pAdapter: pointer to our private adapter structure
353 * @unAddress: the address from which to read
354 * @pbData: a pointer to a byte in which to store the value of the read
355 * @unEepronId: the ID of the EEPROM
356 * @unAddressingMode: how the EEPROM is to be accessed
357 *
358 * Returns SUCCESS or FAILURE
359 */
360int32_t EepromReadByte(struct et131x_adapter *pAdapter, uint32_t unAddress,
361 uint8_t *pbData, uint32_t unEepromId,
362 uint32_t unAddressingMode)
363{
Alan Cox64f93032009-06-10 17:30:41 +0100364 struct pci_dev *pdev = pAdapter->pdev;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700365 int32_t nIndex;
366 int32_t nError = 0;
367 uint8_t bControl;
368 uint8_t bStatus = 0;
369 uint32_t unDword1 = 0;
370
371 /*
372 * The following excerpt is from "Serial EEPROM HW Design
373 * Specification" Version 0.92 (9/20/2004):
374 *
375 * Single Byte Reads
376 *
377 * A single byte read is similar to the single byte write, with the
378 * exception of the data flow:
379 *
380 * 1. Check LBCIF Status Register for bits 6 & 3:2 all equal to 0 and
381 * bits 7,1:0 both equal to 1, at least once after reset.
382 * Subsequent operations need only to check that bits 1:0 are equal
383 * to 1 prior to starting a single byte read.
384 *
385 * 2. Write to the LBCIF Control Register: bit 7=1, bit 6=0, bit 3=0,
386 * and bits 1:0 both =0. Bit 5 should be set according to the type
387 * of EEPROM being accessed (1=two byte addressing, 0=one byte
388 * addressing).
389 *
390 * 3. Write the address to the LBCIF Address Register (I2C read will
391 * begin).
392 *
393 * 4. Monitor bit 0 of the LBCIF Status Register. When =1, I2C read
394 * is complete. (if bit 1 =1 and bit 0 stays =0, a hardware failure
395 * has occurred).
396 *
397 * 5. Check bit 2 of the LBCIF Status Register. If =1, then an error
398 * has occurred. The data that has been returned from the PHY may
399 * be invalid.
400 *
401 * 6. Regardless of error status, read data byte from LBCIF Data
402 * Register. If another byte is required, go to step 1.
403 */
404
405 /* Step 1: */
406 for (nIndex = 0; nIndex < MAX_NUM_REGISTER_POLLS; nIndex++) {
407 /* Read registers grouped in DWORD1 */
408 if (pci_read_config_dword(pdev, LBCIF_DWORD1_GROUP_OFFSET,
409 &unDword1)) {
410 nError = 1;
411 break;
412 }
413
414 bStatus = EXTRACT_STATUS_REGISTER(unDword1);
415
416 if (bStatus & LBCIF_STATUS_PHY_QUEUE_AVAIL &&
417 bStatus & LBCIF_STATUS_I2C_IDLE) {
418 /* bits 1:0 are equal to 1 */
419 break;
420 }
421 }
422
Alan Cox64f93032009-06-10 17:30:41 +0100423 if (nError || (nIndex >= MAX_NUM_REGISTER_POLLS))
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700424 return FAILURE;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700425
426 /* Step 2: */
427 bControl = 0;
428 bControl |= LBCIF_CONTROL_LBCIF_ENABLE;
429
Alan Cox64f93032009-06-10 17:30:41 +0100430 if (unAddressingMode == DUAL_BYTE)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700431 bControl |= LBCIF_CONTROL_TWO_BYTE_ADDR;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700432
433 if (pci_write_config_byte(pdev, LBCIF_CONTROL_REGISTER_OFFSET,
434 bControl)) {
435 return FAILURE;
436 }
437
438 /* Step 3: */
439 unAddress |= (unAddressingMode == DUAL_BYTE) ?
440 (unEepromId << 16) : (unEepromId << 8);
441
442 if (pci_write_config_dword(pdev, LBCIF_ADDRESS_REGISTER_OFFSET,
443 unAddress)) {
444 return FAILURE;
445 }
446
447 /* Step 4: */
448 for (nIndex = 0; nIndex < MAX_NUM_REGISTER_POLLS; nIndex++) {
449 /* Read registers grouped in DWORD1 */
450 if (pci_read_config_dword(pdev, LBCIF_DWORD1_GROUP_OFFSET,
451 &unDword1)) {
452 nError = 1;
453 break;
454 }
455
456 bStatus = EXTRACT_STATUS_REGISTER(unDword1);
457
458 if (bStatus & LBCIF_STATUS_PHY_QUEUE_AVAIL
459 && bStatus & LBCIF_STATUS_I2C_IDLE) {
460 /* I2C read complete */
461 break;
462 }
463 }
464
Alan Cox64f93032009-06-10 17:30:41 +0100465 if (nError || (nIndex >= MAX_NUM_REGISTER_POLLS))
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700466 return FAILURE;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700467
468 /* Step 6: */
469 *pbData = EXTRACT_DATA_REGISTER(unDword1);
470
471 return (bStatus & LBCIF_STATUS_ACK_ERROR) ? FAILURE : SUCCESS;
472}