tracehook_notify_death: use task_detached() helper
[linux-2.6/mini2440.git] / drivers / staging / et131x / et1310_phy.c
blob9dd6dfd9a03373f5c40a351d425ed96493ba63a6
1 /*
2 * Agere Systems Inc.
3 * 10/100/1000 Base-T Ethernet Driver for the ET1301 and ET131x series MACs
5 * Copyright © 2005 Agere Systems Inc.
6 * All rights reserved.
7 * http://www.agere.com
9 *------------------------------------------------------------------------------
11 * et1310_phy.c - Routines for configuring and accessing the PHY
13 *------------------------------------------------------------------------------
15 * SOFTWARE LICENSE
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.
22 * Copyright © 2005 Agere Systems Inc.
23 * All rights reserved.
25 * Redistribution and use in source or binary forms, with or without
26 * modifications, are permitted provided that the following conditions are met:
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.
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.
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.
41 * Disclaimer
43 * THIS SOFTWARE IS PROVIDED “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES,
44 * 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.
58 #include "et131x_version.h"
59 #include "et131x_debug.h"
60 #include "et131x_defs.h"
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>
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>
77 #include <asm/io.h>
78 #include <asm/system.h>
79 #include <asm/bitops.h>
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 #include <linux/random.h>
88 #include "et1310_phy.h"
89 #include "et1310_pm.h"
90 #include "et1310_jagcore.h"
92 #include "et131x_adapter.h"
93 #include "et131x_netdev.h"
94 #include "et131x_initpci.h"
96 #include "et1310_address_map.h"
97 #include "et1310_tx.h"
98 #include "et1310_rx.h"
99 #include "et1310_mac.h"
101 /* Data for debugging facilities */
102 #ifdef CONFIG_ET131X_DEBUG
103 extern dbg_info_t *et131x_dbginfo;
104 #endif /* CONFIG_ET131X_DEBUG */
106 /* Prototypes for functions with local scope */
107 static int et131x_xcvr_init(struct et131x_adapter *adapter);
110 * PhyMiRead - Read from the PHY through the MII Interface on the MAC
111 * @adapter: pointer to our private adapter structure
112 * @xcvrAddr: the address of the transciever
113 * @xcvrReg: the register to read
114 * @value: pointer to a 16-bit value in which the value will be stored
116 * Returns 0 on success, errno on failure (as defined in errno.h)
118 int PhyMiRead(struct et131x_adapter *adapter, uint8_t xcvrAddr,
119 uint8_t xcvrReg, uint16_t *value)
121 struct _MAC_t __iomem *mac = &adapter->CSRAddress->mac;
122 int status = 0;
123 uint32_t delay;
124 MII_MGMT_ADDR_t miiAddr;
125 MII_MGMT_CMD_t miiCmd;
126 MII_MGMT_INDICATOR_t miiIndicator;
128 /* Save a local copy of the registers we are dealing with so we can
129 * set them back
131 miiAddr.value = readl(&mac->mii_mgmt_addr.value);
132 miiCmd.value = readl(&mac->mii_mgmt_cmd.value);
134 /* Stop the current operation */
135 writel(0, &mac->mii_mgmt_cmd.value);
137 /* Set up the register we need to read from on the correct PHY */
139 MII_MGMT_ADDR_t mii_mgmt_addr = { 0 };
141 mii_mgmt_addr.bits.phy_addr = xcvrAddr;
142 mii_mgmt_addr.bits.reg_addr = xcvrReg;
143 writel(mii_mgmt_addr.value, &mac->mii_mgmt_addr.value);
146 /* Kick the read cycle off */
147 delay = 0;
149 writel(0x1, &mac->mii_mgmt_cmd.value);
151 do {
152 udelay(50);
153 delay++;
154 miiIndicator.value = readl(&mac->mii_mgmt_indicator.value);
155 } while ((miiIndicator.bits.not_valid || miiIndicator.bits.busy) &&
156 delay < 50);
158 /* If we hit the max delay, we could not read the register */
159 if (delay >= 50) {
160 DBG_WARNING(et131x_dbginfo,
161 "xcvrReg 0x%08x could not be read\n", xcvrReg);
162 DBG_WARNING(et131x_dbginfo, "status is 0x%08x\n",
163 miiIndicator.value);
165 status = -EIO;
168 /* If we hit here we were able to read the register and we need to
169 * return the value to the caller
171 /* TODO: make this stuff a simple readw()?! */
173 MII_MGMT_STAT_t mii_mgmt_stat;
175 mii_mgmt_stat.value = readl(&mac->mii_mgmt_stat.value);
176 *value = (uint16_t) mii_mgmt_stat.bits.phy_stat;
179 /* Stop the read operation */
180 writel(0, &mac->mii_mgmt_cmd.value);
182 DBG_VERBOSE(et131x_dbginfo, " xcvr_addr = 0x%02x, "
183 "xcvr_reg = 0x%02x, "
184 "value = 0x%04x.\n", xcvrAddr, xcvrReg, *value);
186 /* set the registers we touched back to the state at which we entered
187 * this function
189 writel(miiAddr.value, &mac->mii_mgmt_addr.value);
190 writel(miiCmd.value, &mac->mii_mgmt_cmd.value);
192 return status;
196 * MiWrite - Write to a PHY register through the MII interface of the MAC
197 * @adapter: pointer to our private adapter structure
198 * @xcvrReg: the register to read
199 * @value: 16-bit value to write
201 * Return 0 on success, errno on failure (as defined in errno.h)
203 int MiWrite(struct et131x_adapter *adapter, uint8_t xcvrReg, uint16_t value)
205 struct _MAC_t __iomem *mac = &adapter->CSRAddress->mac;
206 int status = 0;
207 uint8_t xcvrAddr = adapter->Stats.xcvr_addr;
208 uint32_t delay;
209 MII_MGMT_ADDR_t miiAddr;
210 MII_MGMT_CMD_t miiCmd;
211 MII_MGMT_INDICATOR_t miiIndicator;
213 /* Save a local copy of the registers we are dealing with so we can
214 * set them back
216 miiAddr.value = readl(&mac->mii_mgmt_addr.value);
217 miiCmd.value = readl(&mac->mii_mgmt_cmd.value);
219 /* Stop the current operation */
220 writel(0, &mac->mii_mgmt_cmd.value);
222 /* Set up the register we need to write to on the correct PHY */
224 MII_MGMT_ADDR_t mii_mgmt_addr;
226 mii_mgmt_addr.bits.phy_addr = xcvrAddr;
227 mii_mgmt_addr.bits.reg_addr = xcvrReg;
228 writel(mii_mgmt_addr.value, &mac->mii_mgmt_addr.value);
231 /* Add the value to write to the registers to the mac */
232 writel(value, &mac->mii_mgmt_ctrl.value);
233 delay = 0;
235 do {
236 udelay(50);
237 delay++;
238 miiIndicator.value = readl(&mac->mii_mgmt_indicator.value);
239 } while (miiIndicator.bits.busy && delay < 100);
241 /* If we hit the max delay, we could not write the register */
242 if (delay == 100) {
243 uint16_t TempValue;
245 DBG_WARNING(et131x_dbginfo,
246 "xcvrReg 0x%08x could not be written", xcvrReg);
247 DBG_WARNING(et131x_dbginfo, "status is 0x%08x\n",
248 miiIndicator.value);
249 DBG_WARNING(et131x_dbginfo, "command is 0x%08x\n",
250 readl(&mac->mii_mgmt_cmd.value));
252 MiRead(adapter, xcvrReg, &TempValue);
254 status = -EIO;
257 /* Stop the write operation */
258 writel(0, &mac->mii_mgmt_cmd.value);
260 /* set the registers we touched back to the state at which we entered
261 * this function
263 writel(miiAddr.value, &mac->mii_mgmt_addr.value);
264 writel(miiCmd.value, &mac->mii_mgmt_cmd.value);
266 DBG_VERBOSE(et131x_dbginfo, " xcvr_addr = 0x%02x, "
267 "xcvr_reg = 0x%02x, "
268 "value = 0x%04x.\n", xcvrAddr, xcvrReg, value);
270 return status;
274 * et131x_xcvr_find - Find the PHY ID
275 * @adapter: pointer to our private adapter structure
277 * Returns 0 on success, errno on failure (as defined in errno.h)
279 int et131x_xcvr_find(struct et131x_adapter *adapter)
281 int status = -ENODEV;
282 uint8_t xcvr_addr;
283 MI_IDR1_t idr1;
284 MI_IDR2_t idr2;
285 uint32_t xcvr_id;
287 DBG_ENTER(et131x_dbginfo);
289 /* We need to get xcvr id and address we just get the first one */
290 for (xcvr_addr = 0; xcvr_addr < 32; xcvr_addr++) {
291 /* Read the ID from the PHY */
292 PhyMiRead(adapter, xcvr_addr,
293 (uint8_t) offsetof(MI_REGS_t, idr1),
294 &idr1.value);
295 PhyMiRead(adapter, xcvr_addr,
296 (uint8_t) offsetof(MI_REGS_t, idr2),
297 &idr2.value);
299 xcvr_id = (uint32_t) ((idr1.value << 16) | idr2.value);
301 if ((idr1.value != 0) && (idr1.value != 0xffff)) {
302 DBG_TRACE(et131x_dbginfo,
303 "Xcvr addr: 0x%02x\tXcvr_id: 0x%08x\n",
304 xcvr_addr, xcvr_id);
306 adapter->Stats.xcvr_id = xcvr_id;
307 adapter->Stats.xcvr_addr = xcvr_addr;
309 status = 0;
310 break;
314 DBG_LEAVE(et131x_dbginfo);
315 return status;
319 * et131x_setphy_normal - Set PHY for normal operation.
320 * @adapter: pointer to our private adapter structure
322 * Used by Power Management to force the PHY into 10 Base T half-duplex mode,
323 * when going to D3 in WOL mode. Also used during initialization to set the
324 * PHY for normal operation.
326 int et131x_setphy_normal(struct et131x_adapter *adapter)
328 int status;
330 DBG_ENTER(et131x_dbginfo);
332 /* Make sure the PHY is powered up */
333 ET1310_PhyPowerDown(adapter, 0);
334 status = et131x_xcvr_init(adapter);
336 DBG_LEAVE(et131x_dbginfo);
337 return status;
341 * et131x_xcvr_init - Init the phy if we are setting it into force mode
342 * @adapter: pointer to our private adapter structure
344 * Returns 0 on success, errno on failure (as defined in errno.h)
346 static int et131x_xcvr_init(struct et131x_adapter *adapter)
348 int status = 0;
349 MI_IMR_t imr;
350 MI_ISR_t isr;
351 MI_LCR2_t lcr2;
353 DBG_ENTER(et131x_dbginfo);
355 /* Zero out the adapter structure variable representing BMSR */
356 adapter->Bmsr.value = 0;
358 MiRead(adapter, (uint8_t) offsetof(MI_REGS_t, isr), &isr.value);
360 MiRead(adapter, (uint8_t) offsetof(MI_REGS_t, imr), &imr.value);
362 /* Set the link status interrupt only. Bad behavior when link status
363 * and auto neg are set, we run into a nested interrupt problem
365 imr.bits.int_en = 0x1;
366 imr.bits.link_status = 0x1;
367 imr.bits.autoneg_status = 0x1;
369 MiWrite(adapter, (uint8_t) offsetof(MI_REGS_t, imr), imr.value);
371 /* Set the LED behavior such that LED 1 indicates speed (off =
372 * 10Mbits, blink = 100Mbits, on = 1000Mbits) and LED 2 indicates
373 * link and activity (on for link, blink off for activity).
375 * NOTE: Some customizations have been added here for specific
376 * vendors; The LED behavior is now determined by vendor data in the
377 * EEPROM. However, the above description is the default.
379 if ((adapter->eepromData[1] & 0x4) == 0) {
380 MiRead(adapter, (uint8_t) offsetof(MI_REGS_t, lcr2),
381 &lcr2.value);
382 if ((adapter->eepromData[1] & 0x8) == 0)
383 lcr2.bits.led_tx_rx = 0x3;
384 else
385 lcr2.bits.led_tx_rx = 0x4;
386 lcr2.bits.led_link = 0xa;
387 MiWrite(adapter, (uint8_t) offsetof(MI_REGS_t, lcr2),
388 lcr2.value);
391 /* Determine if we need to go into a force mode and set it */
392 if (adapter->AiForceSpeed == 0 && adapter->AiForceDpx == 0) {
393 if ((adapter->RegistryFlowControl == TxOnly) ||
394 (adapter->RegistryFlowControl == Both)) {
395 ET1310_PhyAccessMiBit(adapter,
396 TRUEPHY_BIT_SET, 4, 11, NULL);
397 } else {
398 ET1310_PhyAccessMiBit(adapter,
399 TRUEPHY_BIT_CLEAR, 4, 11, NULL);
402 if (adapter->RegistryFlowControl == Both) {
403 ET1310_PhyAccessMiBit(adapter,
404 TRUEPHY_BIT_SET, 4, 10, NULL);
405 } else {
406 ET1310_PhyAccessMiBit(adapter,
407 TRUEPHY_BIT_CLEAR, 4, 10, NULL);
410 /* Set the phy to autonegotiation */
411 ET1310_PhyAutoNeg(adapter, true);
413 /* NOTE - Do we need this? */
414 ET1310_PhyAccessMiBit(adapter, TRUEPHY_BIT_SET, 0, 9, NULL);
416 DBG_LEAVE(et131x_dbginfo);
417 return status;
418 } else {
419 ET1310_PhyAutoNeg(adapter, false);
421 /* Set to the correct force mode. */
422 if (adapter->AiForceDpx != 1) {
423 if ((adapter->RegistryFlowControl == TxOnly) ||
424 (adapter->RegistryFlowControl == Both)) {
425 ET1310_PhyAccessMiBit(adapter,
426 TRUEPHY_BIT_SET, 4, 11,
427 NULL);
428 } else {
429 ET1310_PhyAccessMiBit(adapter,
430 TRUEPHY_BIT_CLEAR, 4, 11,
431 NULL);
434 if (adapter->RegistryFlowControl == Both) {
435 ET1310_PhyAccessMiBit(adapter,
436 TRUEPHY_BIT_SET, 4, 10,
437 NULL);
438 } else {
439 ET1310_PhyAccessMiBit(adapter,
440 TRUEPHY_BIT_CLEAR, 4, 10,
441 NULL);
443 } else {
444 ET1310_PhyAccessMiBit(adapter,
445 TRUEPHY_BIT_CLEAR, 4, 10, NULL);
446 ET1310_PhyAccessMiBit(adapter,
447 TRUEPHY_BIT_CLEAR, 4, 11, NULL);
450 switch (adapter->AiForceSpeed) {
451 case 10:
452 if (adapter->AiForceDpx == 1) {
453 TPAL_SetPhy10HalfDuplex(adapter);
454 } else if (adapter->AiForceDpx == 2) {
455 TPAL_SetPhy10FullDuplex(adapter);
456 } else {
457 TPAL_SetPhy10Force(adapter);
459 break;
460 case 100:
461 if (adapter->AiForceDpx == 1) {
462 TPAL_SetPhy100HalfDuplex(adapter);
463 } else if (adapter->AiForceDpx == 2) {
464 TPAL_SetPhy100FullDuplex(adapter);
465 } else {
466 TPAL_SetPhy100Force(adapter);
468 break;
469 case 1000:
470 TPAL_SetPhy1000FullDuplex(adapter);
471 break;
474 DBG_LEAVE(et131x_dbginfo);
475 return status;
479 void et131x_Mii_check(struct et131x_adapter *pAdapter,
480 MI_BMSR_t bmsr, MI_BMSR_t bmsr_ints)
482 uint8_t ucLinkStatus;
483 uint32_t uiAutoNegStatus;
484 uint32_t uiSpeed;
485 uint32_t uiDuplex;
486 uint32_t uiMdiMdix;
487 uint32_t uiMasterSlave;
488 uint32_t uiPolarity;
489 unsigned long lockflags;
491 DBG_ENTER(et131x_dbginfo);
493 if (bmsr_ints.bits.link_status) {
494 if (bmsr.bits.link_status) {
495 pAdapter->PoMgmt.TransPhyComaModeOnBoot = 20;
497 /* Update our state variables and indicate the
498 * connected state
500 spin_lock_irqsave(&pAdapter->Lock, lockflags);
502 pAdapter->MediaState = NETIF_STATUS_MEDIA_CONNECT;
503 MP_CLEAR_FLAG(pAdapter, fMP_ADAPTER_LINK_DETECTION);
505 spin_unlock_irqrestore(&pAdapter->Lock, lockflags);
507 /* Don't indicate state if we're in loopback mode */
508 if (pAdapter->RegistryPhyLoopbk == false) {
509 netif_carrier_on(pAdapter->netdev);
511 } else {
512 DBG_WARNING(et131x_dbginfo,
513 "Link down cable problem\n");
515 if (pAdapter->uiLinkSpeed == TRUEPHY_SPEED_10MBPS) {
516 // NOTE - Is there a way to query this without TruePHY?
517 // && TRU_QueryCoreType(pAdapter->hTruePhy, 0) == EMI_TRUEPHY_A13O) {
518 uint16_t Register18;
520 MiRead(pAdapter, 0x12, &Register18);
521 MiWrite(pAdapter, 0x12, Register18 | 0x4);
522 MiWrite(pAdapter, 0x10, Register18 | 0x8402);
523 MiWrite(pAdapter, 0x11, Register18 | 511);
524 MiWrite(pAdapter, 0x12, Register18);
527 /* For the first N seconds of life, we are in "link
528 * detection" When we are in this state, we should
529 * only report "connected". When the LinkDetection
530 * Timer expires, we can report disconnected (handled
531 * in the LinkDetectionDPC).
533 if ((MP_IS_FLAG_CLEAR
534 (pAdapter, fMP_ADAPTER_LINK_DETECTION))
535 || (pAdapter->MediaState ==
536 NETIF_STATUS_MEDIA_DISCONNECT)) {
537 spin_lock_irqsave(&pAdapter->Lock, lockflags);
538 pAdapter->MediaState =
539 NETIF_STATUS_MEDIA_DISCONNECT;
540 spin_unlock_irqrestore(&pAdapter->Lock,
541 lockflags);
543 /* Only indicate state if we're in loopback
544 * mode
546 if (pAdapter->RegistryPhyLoopbk == false) {
547 netif_carrier_off(pAdapter->netdev);
551 pAdapter->uiLinkSpeed = 0;
552 pAdapter->uiDuplexMode = 0;
554 /* Free the packets being actively sent & stopped */
555 et131x_free_busy_send_packets(pAdapter);
557 /* Re-initialize the send structures */
558 et131x_init_send(pAdapter);
560 /* Reset the RFD list and re-start RU */
561 et131x_reset_recv(pAdapter);
564 * Bring the device back to the state it was during
565 * init prior to autonegotiation being complete. This
566 * way, when we get the auto-neg complete interrupt,
567 * we can complete init by calling ConfigMacREGS2.
569 et131x_soft_reset(pAdapter);
571 /* Setup ET1310 as per the documentation */
572 et131x_adapter_setup(pAdapter);
574 /* Setup the PHY into coma mode until the cable is
575 * plugged back in
577 if (pAdapter->RegistryPhyComa == 1) {
578 EnablePhyComa(pAdapter);
583 if (bmsr_ints.bits.auto_neg_complete ||
584 ((pAdapter->AiForceDpx == 3) && (bmsr_ints.bits.link_status))) {
585 if (bmsr.bits.auto_neg_complete || (pAdapter->AiForceDpx == 3)) {
586 ET1310_PhyLinkStatus(pAdapter,
587 &ucLinkStatus, &uiAutoNegStatus,
588 &uiSpeed, &uiDuplex, &uiMdiMdix,
589 &uiMasterSlave, &uiPolarity);
591 pAdapter->uiLinkSpeed = uiSpeed;
592 pAdapter->uiDuplexMode = uiDuplex;
594 DBG_TRACE(et131x_dbginfo,
595 "pAdapter->uiLinkSpeed 0x%04x, pAdapter->uiDuplex 0x%08x\n",
596 pAdapter->uiLinkSpeed,
597 pAdapter->uiDuplexMode);
599 pAdapter->PoMgmt.TransPhyComaModeOnBoot = 20;
601 if (pAdapter->uiLinkSpeed == TRUEPHY_SPEED_10MBPS) {
602 // NOTE - Is there a way to query this without TruePHY?
603 // && TRU_QueryCoreType(pAdapter->hTruePhy, 0) == EMI_TRUEPHY_A13O) {
604 uint16_t Register18;
606 MiRead(pAdapter, 0x12, &Register18);
607 MiWrite(pAdapter, 0x12, Register18 | 0x4);
608 MiWrite(pAdapter, 0x10, Register18 | 0x8402);
609 MiWrite(pAdapter, 0x11, Register18 | 511);
610 MiWrite(pAdapter, 0x12, Register18);
613 ConfigFlowControl(pAdapter);
615 if ((pAdapter->uiLinkSpeed == TRUEPHY_SPEED_1000MBPS) &&
616 (pAdapter->RegistryJumboPacket > 2048))
618 ET1310_PhyAndOrReg(pAdapter, 0x16, 0xcfff,
619 0x2000);
622 SetRxDmaTimer(pAdapter);
623 ConfigMACRegs2(pAdapter);
627 DBG_LEAVE(et131x_dbginfo);
631 * TPAL_SetPhy10HalfDuplex - Force the phy into 10 Base T Half Duplex mode.
632 * @pAdapter: pointer to the adapter structure
634 * Also sets the MAC so it is syncd up properly
636 void TPAL_SetPhy10HalfDuplex(struct et131x_adapter *pAdapter)
638 DBG_ENTER(et131x_dbginfo);
640 /* Power down PHY */
641 ET1310_PhyPowerDown(pAdapter, 1);
643 /* First we need to turn off all other advertisement */
644 ET1310_PhyAdvertise1000BaseT(pAdapter, TRUEPHY_ADV_DUPLEX_NONE);
646 ET1310_PhyAdvertise100BaseT(pAdapter, TRUEPHY_ADV_DUPLEX_NONE);
648 /* Set our advertise values accordingly */
649 ET1310_PhyAdvertise10BaseT(pAdapter, TRUEPHY_ADV_DUPLEX_HALF);
651 /* Power up PHY */
652 ET1310_PhyPowerDown(pAdapter, 0);
654 DBG_LEAVE(et131x_dbginfo);
658 * TPAL_SetPhy10FullDuplex - Force the phy into 10 Base T Full Duplex mode.
659 * @pAdapter: pointer to the adapter structure
661 * Also sets the MAC so it is syncd up properly
663 void TPAL_SetPhy10FullDuplex(struct et131x_adapter *pAdapter)
665 DBG_ENTER(et131x_dbginfo);
667 /* Power down PHY */
668 ET1310_PhyPowerDown(pAdapter, 1);
670 /* First we need to turn off all other advertisement */
671 ET1310_PhyAdvertise1000BaseT(pAdapter, TRUEPHY_ADV_DUPLEX_NONE);
673 ET1310_PhyAdvertise100BaseT(pAdapter, TRUEPHY_ADV_DUPLEX_NONE);
675 /* Set our advertise values accordingly */
676 ET1310_PhyAdvertise10BaseT(pAdapter, TRUEPHY_ADV_DUPLEX_FULL);
678 /* Power up PHY */
679 ET1310_PhyPowerDown(pAdapter, 0);
681 DBG_LEAVE(et131x_dbginfo);
685 * TPAL_SetPhy10Force - Force Base-T FD mode WITHOUT using autonegotiation
686 * @pAdapter: pointer to the adapter structure
688 void TPAL_SetPhy10Force(struct et131x_adapter *pAdapter)
690 DBG_ENTER(et131x_dbginfo);
692 /* Power down PHY */
693 ET1310_PhyPowerDown(pAdapter, 1);
695 /* Disable autoneg */
696 ET1310_PhyAutoNeg(pAdapter, false);
698 /* Disable all advertisement */
699 ET1310_PhyAdvertise1000BaseT(pAdapter, TRUEPHY_ADV_DUPLEX_NONE);
700 ET1310_PhyAdvertise10BaseT(pAdapter, TRUEPHY_ADV_DUPLEX_NONE);
701 ET1310_PhyAdvertise100BaseT(pAdapter, TRUEPHY_ADV_DUPLEX_NONE);
703 /* Force 10 Mbps */
704 ET1310_PhySpeedSelect(pAdapter, TRUEPHY_SPEED_10MBPS);
706 /* Force Full duplex */
707 ET1310_PhyDuplexMode(pAdapter, TRUEPHY_DUPLEX_FULL);
709 /* Power up PHY */
710 ET1310_PhyPowerDown(pAdapter, 0);
712 DBG_LEAVE(et131x_dbginfo);
716 * TPAL_SetPhy100HalfDuplex - Force 100 Base T Half Duplex mode.
717 * @pAdapter: pointer to the adapter structure
719 * Also sets the MAC so it is syncd up properly.
721 void TPAL_SetPhy100HalfDuplex(struct et131x_adapter *pAdapter)
723 DBG_ENTER(et131x_dbginfo);
725 /* Power down PHY */
726 ET1310_PhyPowerDown(pAdapter, 1);
728 /* first we need to turn off all other advertisement */
729 ET1310_PhyAdvertise1000BaseT(pAdapter, TRUEPHY_ADV_DUPLEX_NONE);
731 ET1310_PhyAdvertise10BaseT(pAdapter, TRUEPHY_ADV_DUPLEX_NONE);
733 /* Set our advertise values accordingly */
734 ET1310_PhyAdvertise100BaseT(pAdapter, TRUEPHY_ADV_DUPLEX_HALF);
736 /* Set speed */
737 ET1310_PhySpeedSelect(pAdapter, TRUEPHY_SPEED_100MBPS);
739 /* Power up PHY */
740 ET1310_PhyPowerDown(pAdapter, 0);
742 DBG_LEAVE(et131x_dbginfo);
746 * TPAL_SetPhy100FullDuplex - Force 100 Base T Full Duplex mode.
747 * @pAdapter: pointer to the adapter structure
749 * Also sets the MAC so it is syncd up properly
751 void TPAL_SetPhy100FullDuplex(struct et131x_adapter *pAdapter)
753 DBG_ENTER(et131x_dbginfo);
755 /* Power down PHY */
756 ET1310_PhyPowerDown(pAdapter, 1);
758 /* First we need to turn off all other advertisement */
759 ET1310_PhyAdvertise1000BaseT(pAdapter, TRUEPHY_ADV_DUPLEX_NONE);
761 ET1310_PhyAdvertise10BaseT(pAdapter, TRUEPHY_ADV_DUPLEX_NONE);
763 /* Set our advertise values accordingly */
764 ET1310_PhyAdvertise100BaseT(pAdapter, TRUEPHY_ADV_DUPLEX_FULL);
766 /* Power up PHY */
767 ET1310_PhyPowerDown(pAdapter, 0);
769 DBG_LEAVE(et131x_dbginfo);
773 * TPAL_SetPhy100Force - Force 100 BaseT FD mode WITHOUT using autonegotiation
774 * @pAdapter: pointer to the adapter structure
776 void TPAL_SetPhy100Force(struct et131x_adapter *pAdapter)
778 DBG_ENTER(et131x_dbginfo);
780 /* Power down PHY */
781 ET1310_PhyPowerDown(pAdapter, 1);
783 /* Disable autoneg */
784 ET1310_PhyAutoNeg(pAdapter, false);
786 /* Disable all advertisement */
787 ET1310_PhyAdvertise1000BaseT(pAdapter, TRUEPHY_ADV_DUPLEX_NONE);
788 ET1310_PhyAdvertise10BaseT(pAdapter, TRUEPHY_ADV_DUPLEX_NONE);
789 ET1310_PhyAdvertise100BaseT(pAdapter, TRUEPHY_ADV_DUPLEX_NONE);
791 /* Force 100 Mbps */
792 ET1310_PhySpeedSelect(pAdapter, TRUEPHY_SPEED_100MBPS);
794 /* Force Full duplex */
795 ET1310_PhyDuplexMode(pAdapter, TRUEPHY_DUPLEX_FULL);
797 /* Power up PHY */
798 ET1310_PhyPowerDown(pAdapter, 0);
800 DBG_LEAVE(et131x_dbginfo);
804 * TPAL_SetPhy1000FullDuplex - Force 1000 Base T Full Duplex mode
805 * @pAdapter: pointer to the adapter structure
807 * Also sets the MAC so it is syncd up properly.
809 void TPAL_SetPhy1000FullDuplex(struct et131x_adapter *pAdapter)
811 DBG_ENTER(et131x_dbginfo);
813 /* Power down PHY */
814 ET1310_PhyPowerDown(pAdapter, 1);
816 /* first we need to turn off all other advertisement */
817 ET1310_PhyAdvertise100BaseT(pAdapter, TRUEPHY_ADV_DUPLEX_NONE);
819 ET1310_PhyAdvertise10BaseT(pAdapter, TRUEPHY_ADV_DUPLEX_NONE);
821 /* set our advertise values accordingly */
822 ET1310_PhyAdvertise1000BaseT(pAdapter, TRUEPHY_ADV_DUPLEX_FULL);
824 /* power up PHY */
825 ET1310_PhyPowerDown(pAdapter, 0);
827 DBG_LEAVE(et131x_dbginfo);
831 * TPAL_SetPhyAutoNeg - Set phy to autonegotiation mode.
832 * @pAdapter: pointer to the adapter structure
834 void TPAL_SetPhyAutoNeg(struct et131x_adapter *pAdapter)
836 DBG_ENTER(et131x_dbginfo);
838 /* Power down PHY */
839 ET1310_PhyPowerDown(pAdapter, 1);
841 /* Turn on advertisement of all capabilities */
842 ET1310_PhyAdvertise10BaseT(pAdapter, TRUEPHY_ADV_DUPLEX_BOTH);
844 ET1310_PhyAdvertise100BaseT(pAdapter, TRUEPHY_ADV_DUPLEX_BOTH);
846 if (pAdapter->DeviceID != ET131X_PCI_DEVICE_ID_FAST) {
847 ET1310_PhyAdvertise1000BaseT(pAdapter, TRUEPHY_ADV_DUPLEX_FULL);
848 } else {
849 ET1310_PhyAdvertise1000BaseT(pAdapter, TRUEPHY_ADV_DUPLEX_NONE);
852 /* Make sure auto-neg is ON (it is disabled in FORCE modes) */
853 ET1310_PhyAutoNeg(pAdapter, true);
855 /* Power up PHY */
856 ET1310_PhyPowerDown(pAdapter, 0);
858 DBG_LEAVE(et131x_dbginfo);
863 * The routines which follow provide low-level access to the PHY, and are used
864 * primarily by the routines above (although there are a few places elsewhere
865 * in the driver where this level of access is required).
868 static const uint16_t ConfigPhy[25][2] = {
869 /* Reg Value Register */
870 /* Addr */
871 {0x880B, 0x0926}, /* AfeIfCreg4B1000Msbs */
872 {0x880C, 0x0926}, /* AfeIfCreg4B100Msbs */
873 {0x880D, 0x0926}, /* AfeIfCreg4B10Msbs */
875 {0x880E, 0xB4D3}, /* AfeIfCreg4B1000Lsbs */
876 {0x880F, 0xB4D3}, /* AfeIfCreg4B100Lsbs */
877 {0x8810, 0xB4D3}, /* AfeIfCreg4B10Lsbs */
879 {0x8805, 0xB03E}, /* AfeIfCreg3B1000Msbs */
880 {0x8806, 0xB03E}, /* AfeIfCreg3B100Msbs */
881 {0x8807, 0xFF00}, /* AfeIfCreg3B10Msbs */
883 {0x8808, 0xE090}, /* AfeIfCreg3B1000Lsbs */
884 {0x8809, 0xE110}, /* AfeIfCreg3B100Lsbs */
885 {0x880A, 0x0000}, /* AfeIfCreg3B10Lsbs */
887 {0x300D, 1}, /* DisableNorm */
889 {0x280C, 0x0180}, /* LinkHoldEnd */
891 {0x1C21, 0x0002}, /* AlphaM */
893 {0x3821, 6}, /* FfeLkgTx0 */
894 {0x381D, 1}, /* FfeLkg1g4 */
895 {0x381E, 1}, /* FfeLkg1g5 */
896 {0x381F, 1}, /* FfeLkg1g6 */
897 {0x3820, 1}, /* FfeLkg1g7 */
899 {0x8402, 0x01F0}, /* Btinact */
900 {0x800E, 20}, /* LftrainTime */
901 {0x800F, 24}, /* DvguardTime */
902 {0x8010, 46}, /* IdlguardTime */
904 {0, 0}
908 /* condensed version of the phy initialization routine */
909 void ET1310_PhyInit(struct et131x_adapter *pAdapter)
911 uint16_t usData, usIndex;
913 if (pAdapter == NULL) {
914 return;
917 // get the identity (again ?)
918 MiRead(pAdapter, PHY_ID_1, &usData);
919 MiRead(pAdapter, PHY_ID_2, &usData);
921 // what does this do/achieve ?
922 MiRead(pAdapter, PHY_MPHY_CONTROL_REG, &usData); // should read 0002
923 MiWrite(pAdapter, PHY_MPHY_CONTROL_REG, 0x0006);
925 // read modem register 0402, should I do something with the return data ?
926 MiWrite(pAdapter, PHY_INDEX_REG, 0x0402);
927 MiRead(pAdapter, PHY_DATA_REG, &usData);
929 // what does this do/achieve ?
930 MiWrite(pAdapter, PHY_MPHY_CONTROL_REG, 0x0002);
932 // get the identity (again ?)
933 MiRead(pAdapter, PHY_ID_1, &usData);
934 MiRead(pAdapter, PHY_ID_2, &usData);
936 // what does this achieve ?
937 MiRead(pAdapter, PHY_MPHY_CONTROL_REG, &usData); // should read 0002
938 MiWrite(pAdapter, PHY_MPHY_CONTROL_REG, 0x0006);
940 // read modem register 0402, should I do something with the return data?
941 MiWrite(pAdapter, PHY_INDEX_REG, 0x0402);
942 MiRead(pAdapter, PHY_DATA_REG, &usData);
944 MiWrite(pAdapter, PHY_MPHY_CONTROL_REG, 0x0002);
946 // what does this achieve (should return 0x1040)
947 MiRead(pAdapter, PHY_CONTROL, &usData);
948 MiRead(pAdapter, PHY_MPHY_CONTROL_REG, &usData); // should read 0002
949 MiWrite(pAdapter, PHY_CONTROL, 0x1840);
951 MiWrite(pAdapter, PHY_MPHY_CONTROL_REG, 0x0007);
953 // here the writing of the array starts....
954 usIndex = 0;
955 while (ConfigPhy[usIndex][0] != 0x0000) {
956 // write value
957 MiWrite(pAdapter, PHY_INDEX_REG, ConfigPhy[usIndex][0]);
958 MiWrite(pAdapter, PHY_DATA_REG, ConfigPhy[usIndex][1]);
960 // read it back
961 MiWrite(pAdapter, PHY_INDEX_REG, ConfigPhy[usIndex][0]);
962 MiRead(pAdapter, PHY_DATA_REG, &usData);
964 // do a check on the value read back ?
965 usIndex++;
967 // here the writing of the array ends...
969 MiRead(pAdapter, PHY_CONTROL, &usData); // 0x1840
970 MiRead(pAdapter, PHY_MPHY_CONTROL_REG, &usData); // should read 0007
971 MiWrite(pAdapter, PHY_CONTROL, 0x1040);
972 MiWrite(pAdapter, PHY_MPHY_CONTROL_REG, 0x0002);
975 void ET1310_PhyReset(struct et131x_adapter *pAdapter)
977 MiWrite(pAdapter, PHY_CONTROL, 0x8000);
980 void ET1310_PhyPowerDown(struct et131x_adapter *pAdapter, bool down)
982 uint16_t usData;
984 MiRead(pAdapter, PHY_CONTROL, &usData);
986 if (down == false) {
987 // Power UP
988 usData &= ~0x0800;
989 MiWrite(pAdapter, PHY_CONTROL, usData);
990 } else {
991 // Power DOWN
992 usData |= 0x0800;
993 MiWrite(pAdapter, PHY_CONTROL, usData);
997 void ET1310_PhyAutoNeg(struct et131x_adapter *pAdapter, bool enable)
999 uint16_t usData;
1001 MiRead(pAdapter, PHY_CONTROL, &usData);
1003 if (enable == true) {
1004 // Autonegotiation ON
1005 usData |= 0x1000;
1006 MiWrite(pAdapter, PHY_CONTROL, usData);
1007 } else {
1008 // Autonegotiation OFF
1009 usData &= ~0x1000;
1010 MiWrite(pAdapter, PHY_CONTROL, usData);
1014 void ET1310_PhyDuplexMode(struct et131x_adapter *pAdapter, uint16_t duplex)
1016 uint16_t usData;
1018 MiRead(pAdapter, PHY_CONTROL, &usData);
1020 if (duplex == TRUEPHY_DUPLEX_FULL) {
1021 // Set Full Duplex
1022 usData |= 0x100;
1023 MiWrite(pAdapter, PHY_CONTROL, usData);
1024 } else {
1025 // Set Half Duplex
1026 usData &= ~0x100;
1027 MiWrite(pAdapter, PHY_CONTROL, usData);
1031 void ET1310_PhySpeedSelect(struct et131x_adapter *pAdapter, uint16_t speed)
1033 uint16_t usData;
1035 // Read the PHY control register
1036 MiRead(pAdapter, PHY_CONTROL, &usData);
1038 // Clear all Speed settings (Bits 6, 13)
1039 usData &= ~0x2040;
1041 // Reset the speed bits based on user selection
1042 switch (speed) {
1043 case TRUEPHY_SPEED_10MBPS:
1044 // Bits already cleared above, do nothing
1045 break;
1047 case TRUEPHY_SPEED_100MBPS:
1048 // 100M == Set bit 13
1049 usData |= 0x2000;
1050 break;
1052 case TRUEPHY_SPEED_1000MBPS:
1053 default:
1054 usData |= 0x0040;
1055 break;
1058 // Write back the new speed
1059 MiWrite(pAdapter, PHY_CONTROL, usData);
1062 void ET1310_PhyAdvertise1000BaseT(struct et131x_adapter *pAdapter,
1063 uint16_t duplex)
1065 uint16_t usData;
1067 // Read the PHY 1000 Base-T Control Register
1068 MiRead(pAdapter, PHY_1000_CONTROL, &usData);
1070 // Clear Bits 8,9
1071 usData &= ~0x0300;
1073 switch (duplex) {
1074 case TRUEPHY_ADV_DUPLEX_NONE:
1075 // Duplex already cleared, do nothing
1076 break;
1078 case TRUEPHY_ADV_DUPLEX_FULL:
1079 // Set Bit 9
1080 usData |= 0x0200;
1081 break;
1083 case TRUEPHY_ADV_DUPLEX_HALF:
1084 // Set Bit 8
1085 usData |= 0x0100;
1086 break;
1088 case TRUEPHY_ADV_DUPLEX_BOTH:
1089 default:
1090 usData |= 0x0300;
1091 break;
1094 // Write back advertisement
1095 MiWrite(pAdapter, PHY_1000_CONTROL, usData);
1098 void ET1310_PhyAdvertise100BaseT(struct et131x_adapter *pAdapter,
1099 uint16_t duplex)
1101 uint16_t usData;
1103 // Read the Autonegotiation Register (10/100)
1104 MiRead(pAdapter, PHY_AUTO_ADVERTISEMENT, &usData);
1106 // Clear bits 7,8
1107 usData &= ~0x0180;
1109 switch (duplex) {
1110 case TRUEPHY_ADV_DUPLEX_NONE:
1111 // Duplex already cleared, do nothing
1112 break;
1114 case TRUEPHY_ADV_DUPLEX_FULL:
1115 // Set Bit 8
1116 usData |= 0x0100;
1117 break;
1119 case TRUEPHY_ADV_DUPLEX_HALF:
1120 // Set Bit 7
1121 usData |= 0x0080;
1122 break;
1124 case TRUEPHY_ADV_DUPLEX_BOTH:
1125 default:
1126 // Set Bits 7,8
1127 usData |= 0x0180;
1128 break;
1131 // Write back advertisement
1132 MiWrite(pAdapter, PHY_AUTO_ADVERTISEMENT, usData);
1135 void ET1310_PhyAdvertise10BaseT(struct et131x_adapter *pAdapter,
1136 uint16_t duplex)
1138 uint16_t usData;
1140 // Read the Autonegotiation Register (10/100)
1141 MiRead(pAdapter, PHY_AUTO_ADVERTISEMENT, &usData);
1143 // Clear bits 5,6
1144 usData &= ~0x0060;
1146 switch (duplex) {
1147 case TRUEPHY_ADV_DUPLEX_NONE:
1148 // Duplex already cleared, do nothing
1149 break;
1151 case TRUEPHY_ADV_DUPLEX_FULL:
1152 // Set Bit 6
1153 usData |= 0x0040;
1154 break;
1156 case TRUEPHY_ADV_DUPLEX_HALF:
1157 // Set Bit 5
1158 usData |= 0x0020;
1159 break;
1161 case TRUEPHY_ADV_DUPLEX_BOTH:
1162 default:
1163 // Set Bits 5,6
1164 usData |= 0x0060;
1165 break;
1168 // Write back advertisement
1169 MiWrite(pAdapter, PHY_AUTO_ADVERTISEMENT, usData);
1172 void ET1310_PhyLinkStatus(struct et131x_adapter *pAdapter,
1173 uint8_t *ucLinkStatus,
1174 uint32_t *uiAutoNeg,
1175 uint32_t *uiLinkSpeed,
1176 uint32_t *uiDuplexMode,
1177 uint32_t *uiMdiMdix,
1178 uint32_t *uiMasterSlave, uint32_t *uiPolarity)
1180 uint16_t usMiStatus = 0;
1181 uint16_t us1000BaseT = 0;
1182 uint16_t usVmiPhyStatus = 0;
1183 uint16_t usControl = 0;
1185 MiRead(pAdapter, PHY_STATUS, &usMiStatus);
1186 MiRead(pAdapter, PHY_1000_STATUS, &us1000BaseT);
1187 MiRead(pAdapter, PHY_PHY_STATUS, &usVmiPhyStatus);
1188 MiRead(pAdapter, PHY_CONTROL, &usControl);
1190 if (ucLinkStatus) {
1191 *ucLinkStatus =
1192 (unsigned char)((usVmiPhyStatus & 0x0040) ? 1 : 0);
1195 if (uiAutoNeg) {
1196 *uiAutoNeg =
1197 (usControl & 0x1000) ? ((usVmiPhyStatus & 0x0020) ?
1198 TRUEPHY_ANEG_COMPLETE :
1199 TRUEPHY_ANEG_NOT_COMPLETE) :
1200 TRUEPHY_ANEG_DISABLED;
1203 if (uiLinkSpeed) {
1204 *uiLinkSpeed = (usVmiPhyStatus & 0x0300) >> 8;
1207 if (uiDuplexMode) {
1208 *uiDuplexMode = (usVmiPhyStatus & 0x0080) >> 7;
1211 if (uiMdiMdix) {
1212 /* NOTE: Need to complete this */
1213 *uiMdiMdix = 0;
1216 if (uiMasterSlave) {
1217 *uiMasterSlave =
1218 (us1000BaseT & 0x4000) ? TRUEPHY_CFG_MASTER :
1219 TRUEPHY_CFG_SLAVE;
1222 if (uiPolarity) {
1223 *uiPolarity =
1224 (usVmiPhyStatus & 0x0400) ? TRUEPHY_POLARITY_INVERTED :
1225 TRUEPHY_POLARITY_NORMAL;
1229 void ET1310_PhyAndOrReg(struct et131x_adapter *pAdapter,
1230 uint16_t regnum, uint16_t andMask, uint16_t orMask)
1232 uint16_t reg;
1234 // Read the requested register
1235 MiRead(pAdapter, regnum, &reg);
1237 // Apply the AND mask
1238 reg &= andMask;
1240 // Apply the OR mask
1241 reg |= orMask;
1243 // Write the value back to the register
1244 MiWrite(pAdapter, regnum, reg);
1247 void ET1310_PhyAccessMiBit(struct et131x_adapter *pAdapter, uint16_t action,
1248 uint16_t regnum, uint16_t bitnum, uint8_t *value)
1250 uint16_t reg;
1251 uint16_t mask = 0;
1253 // Create a mask to isolate the requested bit
1254 mask = 0x0001 << bitnum;
1256 // Read the requested register
1257 MiRead(pAdapter, regnum, &reg);
1259 switch (action) {
1260 case TRUEPHY_BIT_READ:
1261 if (value != NULL) {
1262 *value = (reg & mask) >> bitnum;
1264 break;
1266 case TRUEPHY_BIT_SET:
1267 reg |= mask;
1268 MiWrite(pAdapter, regnum, reg);
1269 break;
1271 case TRUEPHY_BIT_CLEAR:
1272 reg &= ~mask;
1273 MiWrite(pAdapter, regnum, reg);
1274 break;
1276 default:
1277 break;