blob: a16ce16cfeded928009300b21fe063d504a1517c [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_phy.c - Routines for configuring and accessing the PHY
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/io.h>
78#include <linux/bitops.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#include <linux/random.h>
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -070087
88#include "et1310_phy.h"
89#include "et1310_pm.h"
90#include "et1310_jagcore.h"
91
92#include "et131x_adapter.h"
93#include "et131x_netdev.h"
94#include "et131x_initpci.h"
95
96#include "et1310_address_map.h"
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -070097#include "et1310_tx.h"
98#include "et1310_rx.h"
99#include "et1310_mac.h"
100
101/* Data for debugging facilities */
102#ifdef CONFIG_ET131X_DEBUG
103extern dbg_info_t *et131x_dbginfo;
104#endif /* CONFIG_ET131X_DEBUG */
105
106/* Prototypes for functions with local scope */
107static int et131x_xcvr_init(struct et131x_adapter *adapter);
108
109/**
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
115 *
116 * Returns 0 on success, errno on failure (as defined in errno.h)
117 */
118int PhyMiRead(struct et131x_adapter *adapter, uint8_t xcvrAddr,
119 uint8_t xcvrReg, uint16_t *value)
120{
Alan Coxf3f415a2009-08-27 10:59:30 +0100121 struct _MAC_t __iomem *mac = &adapter->regs->mac;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700122 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;
127
128 /* Save a local copy of the registers we are dealing with so we can
129 * set them back
130 */
131 miiAddr.value = readl(&mac->mii_mgmt_addr.value);
132 miiCmd.value = readl(&mac->mii_mgmt_cmd.value);
133
134 /* Stop the current operation */
135 writel(0, &mac->mii_mgmt_cmd.value);
136
137 /* Set up the register we need to read from on the correct PHY */
138 {
139 MII_MGMT_ADDR_t mii_mgmt_addr = { 0 };
140
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);
144 }
145
146 /* Kick the read cycle off */
147 delay = 0;
148
149 writel(0x1, &mac->mii_mgmt_cmd.value);
150
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);
157
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);
164
165 status = -EIO;
166 }
167
168 /* If we hit here we were able to read the register and we need to
169 * return the value to the caller
170 */
171 /* TODO: make this stuff a simple readw()?! */
172 {
173 MII_MGMT_STAT_t mii_mgmt_stat;
174
175 mii_mgmt_stat.value = readl(&mac->mii_mgmt_stat.value);
176 *value = (uint16_t) mii_mgmt_stat.bits.phy_stat;
177 }
178
179 /* Stop the read operation */
180 writel(0, &mac->mii_mgmt_cmd.value);
181
182 DBG_VERBOSE(et131x_dbginfo, " xcvr_addr = 0x%02x, "
183 "xcvr_reg = 0x%02x, "
184 "value = 0x%04x.\n", xcvrAddr, xcvrReg, *value);
185
186 /* set the registers we touched back to the state at which we entered
187 * this function
188 */
189 writel(miiAddr.value, &mac->mii_mgmt_addr.value);
190 writel(miiCmd.value, &mac->mii_mgmt_cmd.value);
191
192 return status;
193}
194
195/**
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
200 *
201 * Return 0 on success, errno on failure (as defined in errno.h)
202 */
203int MiWrite(struct et131x_adapter *adapter, uint8_t xcvrReg, uint16_t value)
204{
Alan Coxf3f415a2009-08-27 10:59:30 +0100205 struct _MAC_t __iomem *mac = &adapter->regs->mac;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700206 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;
212
213 /* Save a local copy of the registers we are dealing with so we can
214 * set them back
215 */
216 miiAddr.value = readl(&mac->mii_mgmt_addr.value);
217 miiCmd.value = readl(&mac->mii_mgmt_cmd.value);
218
219 /* Stop the current operation */
220 writel(0, &mac->mii_mgmt_cmd.value);
221
222 /* Set up the register we need to write to on the correct PHY */
223 {
224 MII_MGMT_ADDR_t mii_mgmt_addr;
225
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);
229 }
230
231 /* Add the value to write to the registers to the mac */
232 writel(value, &mac->mii_mgmt_ctrl.value);
233 delay = 0;
234
235 do {
236 udelay(50);
237 delay++;
238 miiIndicator.value = readl(&mac->mii_mgmt_indicator.value);
239 } while (miiIndicator.bits.busy && delay < 100);
240
241 /* If we hit the max delay, we could not write the register */
242 if (delay == 100) {
243 uint16_t TempValue;
244
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));
251
252 MiRead(adapter, xcvrReg, &TempValue);
253
254 status = -EIO;
255 }
256
257 /* Stop the write operation */
258 writel(0, &mac->mii_mgmt_cmd.value);
259
260 /* set the registers we touched back to the state at which we entered
Alan Cox64f93032009-06-10 17:30:41 +0100261 * this function
262 */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700263 writel(miiAddr.value, &mac->mii_mgmt_addr.value);
264 writel(miiCmd.value, &mac->mii_mgmt_cmd.value);
265
266 DBG_VERBOSE(et131x_dbginfo, " xcvr_addr = 0x%02x, "
267 "xcvr_reg = 0x%02x, "
268 "value = 0x%04x.\n", xcvrAddr, xcvrReg, value);
269
270 return status;
271}
272
273/**
274 * et131x_xcvr_find - Find the PHY ID
275 * @adapter: pointer to our private adapter structure
276 *
277 * Returns 0 on success, errno on failure (as defined in errno.h)
278 */
279int et131x_xcvr_find(struct et131x_adapter *adapter)
280{
281 int status = -ENODEV;
282 uint8_t xcvr_addr;
283 MI_IDR1_t idr1;
284 MI_IDR2_t idr2;
285 uint32_t xcvr_id;
286
287 DBG_ENTER(et131x_dbginfo);
288
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);
298
299 xcvr_id = (uint32_t) ((idr1.value << 16) | idr2.value);
300
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);
305
306 adapter->Stats.xcvr_id = xcvr_id;
307 adapter->Stats.xcvr_addr = xcvr_addr;
308
309 status = 0;
310 break;
311 }
312 }
313
314 DBG_LEAVE(et131x_dbginfo);
315 return status;
316}
317
318/**
319 * et131x_setphy_normal - Set PHY for normal operation.
320 * @adapter: pointer to our private adapter structure
321 *
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.
325 */
326int et131x_setphy_normal(struct et131x_adapter *adapter)
327{
328 int status;
329
330 DBG_ENTER(et131x_dbginfo);
331
332 /* Make sure the PHY is powered up */
333 ET1310_PhyPowerDown(adapter, 0);
334 status = et131x_xcvr_init(adapter);
335
336 DBG_LEAVE(et131x_dbginfo);
337 return status;
338}
339
340/**
341 * et131x_xcvr_init - Init the phy if we are setting it into force mode
342 * @adapter: pointer to our private adapter structure
343 *
344 * Returns 0 on success, errno on failure (as defined in errno.h)
345 */
346static int et131x_xcvr_init(struct et131x_adapter *adapter)
347{
348 int status = 0;
349 MI_IMR_t imr;
350 MI_ISR_t isr;
351 MI_LCR2_t lcr2;
352
353 DBG_ENTER(et131x_dbginfo);
354
355 /* Zero out the adapter structure variable representing BMSR */
356 adapter->Bmsr.value = 0;
357
358 MiRead(adapter, (uint8_t) offsetof(MI_REGS_t, isr), &isr.value);
359
360 MiRead(adapter, (uint8_t) offsetof(MI_REGS_t, imr), &imr.value);
361
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
364 */
365 imr.bits.int_en = 0x1;
366 imr.bits.link_status = 0x1;
367 imr.bits.autoneg_status = 0x1;
368
369 MiWrite(adapter, (uint8_t) offsetof(MI_REGS_t, imr), imr.value);
370
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).
374 *
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.
378 */
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);
389 }
390
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);
400 }
401
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);
408 }
409
410 /* Set the phy to autonegotiation */
411 ET1310_PhyAutoNeg(adapter, true);
412
413 /* NOTE - Do we need this? */
414 ET1310_PhyAccessMiBit(adapter, TRUEPHY_BIT_SET, 0, 9, NULL);
415
416 DBG_LEAVE(et131x_dbginfo);
417 return status;
418 } else {
419 ET1310_PhyAutoNeg(adapter, false);
420
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);
432 }
433
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);
442 }
443 } else {
444 ET1310_PhyAccessMiBit(adapter,
445 TRUEPHY_BIT_CLEAR, 4, 10, NULL);
446 ET1310_PhyAccessMiBit(adapter,
447 TRUEPHY_BIT_CLEAR, 4, 11, NULL);
448 }
449
450 switch (adapter->AiForceSpeed) {
451 case 10:
Alan Cox64f93032009-06-10 17:30:41 +0100452 if (adapter->AiForceDpx == 1)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700453 TPAL_SetPhy10HalfDuplex(adapter);
Alan Cox64f93032009-06-10 17:30:41 +0100454 else if (adapter->AiForceDpx == 2)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700455 TPAL_SetPhy10FullDuplex(adapter);
Alan Cox64f93032009-06-10 17:30:41 +0100456 else
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700457 TPAL_SetPhy10Force(adapter);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700458 break;
459 case 100:
Alan Cox64f93032009-06-10 17:30:41 +0100460 if (adapter->AiForceDpx == 1)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700461 TPAL_SetPhy100HalfDuplex(adapter);
Alan Cox64f93032009-06-10 17:30:41 +0100462 else if (adapter->AiForceDpx == 2)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700463 TPAL_SetPhy100FullDuplex(adapter);
Alan Cox64f93032009-06-10 17:30:41 +0100464 else
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700465 TPAL_SetPhy100Force(adapter);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700466 break;
467 case 1000:
468 TPAL_SetPhy1000FullDuplex(adapter);
469 break;
470 }
471
472 DBG_LEAVE(et131x_dbginfo);
473 return status;
474 }
475}
476
Alan Cox25ad00b2009-08-19 18:21:44 +0100477void et131x_Mii_check(struct et131x_adapter *etdev,
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700478 MI_BMSR_t bmsr, MI_BMSR_t bmsr_ints)
479{
Alan Cox9fa81092009-08-27 11:00:36 +0100480 uint8_t link_status;
481 uint32_t autoneg_status;
482 uint32_t speed;
483 uint32_t duplex;
484 uint32_t mdi_mdix;
485 uint32_t masterslave;
486 uint32_t polarity;
Alan Cox37628602009-08-19 18:21:50 +0100487 unsigned long flags;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700488
489 DBG_ENTER(et131x_dbginfo);
490
491 if (bmsr_ints.bits.link_status) {
492 if (bmsr.bits.link_status) {
Alan Cox25ad00b2009-08-19 18:21:44 +0100493 etdev->PoMgmt.TransPhyComaModeOnBoot = 20;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700494
495 /* Update our state variables and indicate the
496 * connected state
497 */
Alan Cox37628602009-08-19 18:21:50 +0100498 spin_lock_irqsave(&etdev->Lock, flags);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700499
Alan Cox25ad00b2009-08-19 18:21:44 +0100500 etdev->MediaState = NETIF_STATUS_MEDIA_CONNECT;
501 MP_CLEAR_FLAG(etdev, fMP_ADAPTER_LINK_DETECTION);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700502
Alan Cox37628602009-08-19 18:21:50 +0100503 spin_unlock_irqrestore(&etdev->Lock, flags);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700504
505 /* Don't indicate state if we're in loopback mode */
Alan Cox25ad00b2009-08-19 18:21:44 +0100506 if (etdev->RegistryPhyLoopbk == false)
507 netif_carrier_on(etdev->netdev);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700508 } else {
509 DBG_WARNING(et131x_dbginfo,
510 "Link down cable problem\n");
511
Alan Cox9fa81092009-08-27 11:00:36 +0100512 if (etdev->linkspeed == TRUEPHY_SPEED_10MBPS) {
Alan Cox64f93032009-06-10 17:30:41 +0100513 /* NOTE - Is there a way to query this without
514 * TruePHY?
Alan Cox25ad00b2009-08-19 18:21:44 +0100515 * && TRU_QueryCoreType(etdev->hTruePhy, 0) == EMI_TRUEPHY_A13O) {
Alan Cox64f93032009-06-10 17:30:41 +0100516 */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700517 uint16_t Register18;
518
Alan Cox25ad00b2009-08-19 18:21:44 +0100519 MiRead(etdev, 0x12, &Register18);
520 MiWrite(etdev, 0x12, Register18 | 0x4);
521 MiWrite(etdev, 0x10, Register18 | 0x8402);
522 MiWrite(etdev, 0x11, Register18 | 511);
523 MiWrite(etdev, 0x12, Register18);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700524 }
525
526 /* For the first N seconds of life, we are in "link
527 * detection" When we are in this state, we should
528 * only report "connected". When the LinkDetection
529 * Timer expires, we can report disconnected (handled
530 * in the LinkDetectionDPC).
531 */
532 if ((MP_IS_FLAG_CLEAR
Alan Cox25ad00b2009-08-19 18:21:44 +0100533 (etdev, fMP_ADAPTER_LINK_DETECTION))
534 || (etdev->MediaState ==
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700535 NETIF_STATUS_MEDIA_DISCONNECT)) {
Alan Cox37628602009-08-19 18:21:50 +0100536 spin_lock_irqsave(&etdev->Lock, flags);
Alan Cox25ad00b2009-08-19 18:21:44 +0100537 etdev->MediaState =
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700538 NETIF_STATUS_MEDIA_DISCONNECT;
Alan Cox25ad00b2009-08-19 18:21:44 +0100539 spin_unlock_irqrestore(&etdev->Lock,
Alan Cox37628602009-08-19 18:21:50 +0100540 flags);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700541
542 /* Only indicate state if we're in loopback
543 * mode
544 */
Alan Cox25ad00b2009-08-19 18:21:44 +0100545 if (etdev->RegistryPhyLoopbk == false)
546 netif_carrier_off(etdev->netdev);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700547 }
548
Alan Cox9fa81092009-08-27 11:00:36 +0100549 etdev->linkspeed = 0;
550 etdev->duplexMode = 0;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700551
552 /* Free the packets being actively sent & stopped */
Alan Cox25ad00b2009-08-19 18:21:44 +0100553 et131x_free_busy_send_packets(etdev);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700554
555 /* Re-initialize the send structures */
Alan Cox25ad00b2009-08-19 18:21:44 +0100556 et131x_init_send(etdev);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700557
558 /* Reset the RFD list and re-start RU */
Alan Cox25ad00b2009-08-19 18:21:44 +0100559 et131x_reset_recv(etdev);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700560
561 /*
562 * Bring the device back to the state it was during
563 * init prior to autonegotiation being complete. This
564 * way, when we get the auto-neg complete interrupt,
565 * we can complete init by calling ConfigMacREGS2.
566 */
Alan Cox25ad00b2009-08-19 18:21:44 +0100567 et131x_soft_reset(etdev);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700568
569 /* Setup ET1310 as per the documentation */
Alan Cox25ad00b2009-08-19 18:21:44 +0100570 et131x_adapter_setup(etdev);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700571
572 /* Setup the PHY into coma mode until the cable is
573 * plugged back in
574 */
Alan Cox25ad00b2009-08-19 18:21:44 +0100575 if (etdev->RegistryPhyComa == 1)
576 EnablePhyComa(etdev);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700577 }
578 }
579
580 if (bmsr_ints.bits.auto_neg_complete ||
Alan Cox25ad00b2009-08-19 18:21:44 +0100581 (etdev->AiForceDpx == 3 && bmsr_ints.bits.link_status)) {
582 if (bmsr.bits.auto_neg_complete || etdev->AiForceDpx == 3) {
583 ET1310_PhyLinkStatus(etdev,
Alan Cox9fa81092009-08-27 11:00:36 +0100584 &link_status, &autoneg_status,
585 &speed, &duplex, &mdi_mdix,
586 &masterslave, &polarity);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700587
Alan Cox9fa81092009-08-27 11:00:36 +0100588 etdev->linkspeed = speed;
589 etdev->duplex_mode = duplex;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700590
591 DBG_TRACE(et131x_dbginfo,
Alan Cox9fa81092009-08-27 11:00:36 +0100592 "etdev->linkspeed 0x%04x, etdev->duplex_mode 0x%08x\n",
593 etdev->linkspeed,
594 etdev->duplex_mode);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700595
Alan Cox25ad00b2009-08-19 18:21:44 +0100596 etdev->PoMgmt.TransPhyComaModeOnBoot = 20;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700597
Alan Cox9fa81092009-08-27 11:00:36 +0100598 if (etdev->linkspeed == TRUEPHY_SPEED_10MBPS) {
Alan Cox64f93032009-06-10 17:30:41 +0100599 /*
600 * NOTE - Is there a way to query this without
601 * TruePHY?
Alan Cox25ad00b2009-08-19 18:21:44 +0100602 * && TRU_QueryCoreType(etdev->hTruePhy, 0)== EMI_TRUEPHY_A13O) {
Alan Cox64f93032009-06-10 17:30:41 +0100603 */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700604 uint16_t Register18;
605
Alan Cox25ad00b2009-08-19 18:21:44 +0100606 MiRead(etdev, 0x12, &Register18);
607 MiWrite(etdev, 0x12, Register18 | 0x4);
608 MiWrite(etdev, 0x10, Register18 | 0x8402);
609 MiWrite(etdev, 0x11, Register18 | 511);
610 MiWrite(etdev, 0x12, Register18);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700611 }
612
Alan Cox25ad00b2009-08-19 18:21:44 +0100613 ConfigFlowControl(etdev);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700614
Alan Cox9fa81092009-08-27 11:00:36 +0100615 if (etdev->linkspeed == TRUEPHY_SPEED_1000MBPS &&
Alan Cox25ad00b2009-08-19 18:21:44 +0100616 etdev->RegistryJumboPacket > 2048)
617 ET1310_PhyAndOrReg(etdev, 0x16, 0xcfff,
Alan Cox64f93032009-06-10 17:30:41 +0100618 0x2000);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700619
Alan Cox25ad00b2009-08-19 18:21:44 +0100620 SetRxDmaTimer(etdev);
621 ConfigMACRegs2(etdev);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700622 }
623 }
624
625 DBG_LEAVE(et131x_dbginfo);
626}
627
628/**
629 * TPAL_SetPhy10HalfDuplex - Force the phy into 10 Base T Half Duplex mode.
Alan Cox25ad00b2009-08-19 18:21:44 +0100630 * @etdev: pointer to the adapter structure
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700631 *
632 * Also sets the MAC so it is syncd up properly
633 */
Alan Cox25ad00b2009-08-19 18:21:44 +0100634void TPAL_SetPhy10HalfDuplex(struct et131x_adapter *etdev)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700635{
636 DBG_ENTER(et131x_dbginfo);
637
638 /* Power down PHY */
Alan Cox25ad00b2009-08-19 18:21:44 +0100639 ET1310_PhyPowerDown(etdev, 1);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700640
641 /* First we need to turn off all other advertisement */
Alan Cox25ad00b2009-08-19 18:21:44 +0100642 ET1310_PhyAdvertise1000BaseT(etdev, TRUEPHY_ADV_DUPLEX_NONE);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700643
Alan Cox25ad00b2009-08-19 18:21:44 +0100644 ET1310_PhyAdvertise100BaseT(etdev, TRUEPHY_ADV_DUPLEX_NONE);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700645
646 /* Set our advertise values accordingly */
Alan Cox25ad00b2009-08-19 18:21:44 +0100647 ET1310_PhyAdvertise10BaseT(etdev, TRUEPHY_ADV_DUPLEX_HALF);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700648
649 /* Power up PHY */
Alan Cox25ad00b2009-08-19 18:21:44 +0100650 ET1310_PhyPowerDown(etdev, 0);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700651
652 DBG_LEAVE(et131x_dbginfo);
653}
654
655/**
656 * TPAL_SetPhy10FullDuplex - Force the phy into 10 Base T Full Duplex mode.
Alan Cox25ad00b2009-08-19 18:21:44 +0100657 * @etdev: pointer to the adapter structure
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700658 *
659 * Also sets the MAC so it is syncd up properly
660 */
Alan Cox25ad00b2009-08-19 18:21:44 +0100661void TPAL_SetPhy10FullDuplex(struct et131x_adapter *etdev)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700662{
663 DBG_ENTER(et131x_dbginfo);
664
665 /* Power down PHY */
Alan Cox25ad00b2009-08-19 18:21:44 +0100666 ET1310_PhyPowerDown(etdev, 1);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700667
668 /* First we need to turn off all other advertisement */
Alan Cox25ad00b2009-08-19 18:21:44 +0100669 ET1310_PhyAdvertise1000BaseT(etdev, TRUEPHY_ADV_DUPLEX_NONE);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700670
Alan Cox25ad00b2009-08-19 18:21:44 +0100671 ET1310_PhyAdvertise100BaseT(etdev, TRUEPHY_ADV_DUPLEX_NONE);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700672
673 /* Set our advertise values accordingly */
Alan Cox25ad00b2009-08-19 18:21:44 +0100674 ET1310_PhyAdvertise10BaseT(etdev, TRUEPHY_ADV_DUPLEX_FULL);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700675
676 /* Power up PHY */
Alan Cox25ad00b2009-08-19 18:21:44 +0100677 ET1310_PhyPowerDown(etdev, 0);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700678
679 DBG_LEAVE(et131x_dbginfo);
680}
681
682/**
683 * TPAL_SetPhy10Force - Force Base-T FD mode WITHOUT using autonegotiation
Alan Cox25ad00b2009-08-19 18:21:44 +0100684 * @etdev: pointer to the adapter structure
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700685 */
Alan Cox25ad00b2009-08-19 18:21:44 +0100686void TPAL_SetPhy10Force(struct et131x_adapter *etdev)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700687{
688 DBG_ENTER(et131x_dbginfo);
689
690 /* Power down PHY */
Alan Cox25ad00b2009-08-19 18:21:44 +0100691 ET1310_PhyPowerDown(etdev, 1);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700692
693 /* Disable autoneg */
Alan Cox25ad00b2009-08-19 18:21:44 +0100694 ET1310_PhyAutoNeg(etdev, false);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700695
696 /* Disable all advertisement */
Alan Cox25ad00b2009-08-19 18:21:44 +0100697 ET1310_PhyAdvertise1000BaseT(etdev, TRUEPHY_ADV_DUPLEX_NONE);
698 ET1310_PhyAdvertise10BaseT(etdev, TRUEPHY_ADV_DUPLEX_NONE);
699 ET1310_PhyAdvertise100BaseT(etdev, TRUEPHY_ADV_DUPLEX_NONE);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700700
701 /* Force 10 Mbps */
Alan Cox25ad00b2009-08-19 18:21:44 +0100702 ET1310_PhySpeedSelect(etdev, TRUEPHY_SPEED_10MBPS);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700703
704 /* Force Full duplex */
Alan Cox25ad00b2009-08-19 18:21:44 +0100705 ET1310_PhyDuplexMode(etdev, TRUEPHY_DUPLEX_FULL);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700706
707 /* Power up PHY */
Alan Cox25ad00b2009-08-19 18:21:44 +0100708 ET1310_PhyPowerDown(etdev, 0);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700709
710 DBG_LEAVE(et131x_dbginfo);
711}
712
713/**
714 * TPAL_SetPhy100HalfDuplex - Force 100 Base T Half Duplex mode.
Alan Cox25ad00b2009-08-19 18:21:44 +0100715 * @etdev: pointer to the adapter structure
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700716 *
717 * Also sets the MAC so it is syncd up properly.
718 */
Alan Cox25ad00b2009-08-19 18:21:44 +0100719void TPAL_SetPhy100HalfDuplex(struct et131x_adapter *etdev)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700720{
721 DBG_ENTER(et131x_dbginfo);
722
723 /* Power down PHY */
Alan Cox25ad00b2009-08-19 18:21:44 +0100724 ET1310_PhyPowerDown(etdev, 1);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700725
726 /* first we need to turn off all other advertisement */
Alan Cox25ad00b2009-08-19 18:21:44 +0100727 ET1310_PhyAdvertise1000BaseT(etdev, TRUEPHY_ADV_DUPLEX_NONE);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700728
Alan Cox25ad00b2009-08-19 18:21:44 +0100729 ET1310_PhyAdvertise10BaseT(etdev, TRUEPHY_ADV_DUPLEX_NONE);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700730
731 /* Set our advertise values accordingly */
Alan Cox25ad00b2009-08-19 18:21:44 +0100732 ET1310_PhyAdvertise100BaseT(etdev, TRUEPHY_ADV_DUPLEX_HALF);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700733
734 /* Set speed */
Alan Cox25ad00b2009-08-19 18:21:44 +0100735 ET1310_PhySpeedSelect(etdev, TRUEPHY_SPEED_100MBPS);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700736
737 /* Power up PHY */
Alan Cox25ad00b2009-08-19 18:21:44 +0100738 ET1310_PhyPowerDown(etdev, 0);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700739
740 DBG_LEAVE(et131x_dbginfo);
741}
742
743/**
744 * TPAL_SetPhy100FullDuplex - Force 100 Base T Full Duplex mode.
Alan Cox25ad00b2009-08-19 18:21:44 +0100745 * @etdev: pointer to the adapter structure
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700746 *
747 * Also sets the MAC so it is syncd up properly
748 */
Alan Cox25ad00b2009-08-19 18:21:44 +0100749void TPAL_SetPhy100FullDuplex(struct et131x_adapter *etdev)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700750{
751 DBG_ENTER(et131x_dbginfo);
752
753 /* Power down PHY */
Alan Cox25ad00b2009-08-19 18:21:44 +0100754 ET1310_PhyPowerDown(etdev, 1);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700755
756 /* First we need to turn off all other advertisement */
Alan Cox25ad00b2009-08-19 18:21:44 +0100757 ET1310_PhyAdvertise1000BaseT(etdev, TRUEPHY_ADV_DUPLEX_NONE);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700758
Alan Cox25ad00b2009-08-19 18:21:44 +0100759 ET1310_PhyAdvertise10BaseT(etdev, TRUEPHY_ADV_DUPLEX_NONE);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700760
761 /* Set our advertise values accordingly */
Alan Cox25ad00b2009-08-19 18:21:44 +0100762 ET1310_PhyAdvertise100BaseT(etdev, TRUEPHY_ADV_DUPLEX_FULL);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700763
764 /* Power up PHY */
Alan Cox25ad00b2009-08-19 18:21:44 +0100765 ET1310_PhyPowerDown(etdev, 0);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700766
767 DBG_LEAVE(et131x_dbginfo);
768}
769
770/**
771 * TPAL_SetPhy100Force - Force 100 BaseT FD mode WITHOUT using autonegotiation
Alan Cox25ad00b2009-08-19 18:21:44 +0100772 * @etdev: pointer to the adapter structure
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700773 */
Alan Cox25ad00b2009-08-19 18:21:44 +0100774void TPAL_SetPhy100Force(struct et131x_adapter *etdev)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700775{
776 DBG_ENTER(et131x_dbginfo);
777
778 /* Power down PHY */
Alan Cox25ad00b2009-08-19 18:21:44 +0100779 ET1310_PhyPowerDown(etdev, 1);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700780
781 /* Disable autoneg */
Alan Cox25ad00b2009-08-19 18:21:44 +0100782 ET1310_PhyAutoNeg(etdev, false);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700783
784 /* Disable all advertisement */
Alan Cox25ad00b2009-08-19 18:21:44 +0100785 ET1310_PhyAdvertise1000BaseT(etdev, TRUEPHY_ADV_DUPLEX_NONE);
786 ET1310_PhyAdvertise10BaseT(etdev, TRUEPHY_ADV_DUPLEX_NONE);
787 ET1310_PhyAdvertise100BaseT(etdev, TRUEPHY_ADV_DUPLEX_NONE);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700788
789 /* Force 100 Mbps */
Alan Cox25ad00b2009-08-19 18:21:44 +0100790 ET1310_PhySpeedSelect(etdev, TRUEPHY_SPEED_100MBPS);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700791
792 /* Force Full duplex */
Alan Cox25ad00b2009-08-19 18:21:44 +0100793 ET1310_PhyDuplexMode(etdev, TRUEPHY_DUPLEX_FULL);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700794
795 /* Power up PHY */
Alan Cox25ad00b2009-08-19 18:21:44 +0100796 ET1310_PhyPowerDown(etdev, 0);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700797
798 DBG_LEAVE(et131x_dbginfo);
799}
800
801/**
802 * TPAL_SetPhy1000FullDuplex - Force 1000 Base T Full Duplex mode
Alan Cox25ad00b2009-08-19 18:21:44 +0100803 * @etdev: pointer to the adapter structure
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700804 *
805 * Also sets the MAC so it is syncd up properly.
806 */
Alan Cox25ad00b2009-08-19 18:21:44 +0100807void TPAL_SetPhy1000FullDuplex(struct et131x_adapter *etdev)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700808{
809 DBG_ENTER(et131x_dbginfo);
810
811 /* Power down PHY */
Alan Cox25ad00b2009-08-19 18:21:44 +0100812 ET1310_PhyPowerDown(etdev, 1);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700813
814 /* first we need to turn off all other advertisement */
Alan Cox25ad00b2009-08-19 18:21:44 +0100815 ET1310_PhyAdvertise100BaseT(etdev, TRUEPHY_ADV_DUPLEX_NONE);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700816
Alan Cox25ad00b2009-08-19 18:21:44 +0100817 ET1310_PhyAdvertise10BaseT(etdev, TRUEPHY_ADV_DUPLEX_NONE);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700818
819 /* set our advertise values accordingly */
Alan Cox25ad00b2009-08-19 18:21:44 +0100820 ET1310_PhyAdvertise1000BaseT(etdev, TRUEPHY_ADV_DUPLEX_FULL);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700821
822 /* power up PHY */
Alan Cox25ad00b2009-08-19 18:21:44 +0100823 ET1310_PhyPowerDown(etdev, 0);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700824
825 DBG_LEAVE(et131x_dbginfo);
826}
827
828/**
829 * TPAL_SetPhyAutoNeg - Set phy to autonegotiation mode.
Alan Cox25ad00b2009-08-19 18:21:44 +0100830 * @etdev: pointer to the adapter structure
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700831 */
Alan Cox25ad00b2009-08-19 18:21:44 +0100832void TPAL_SetPhyAutoNeg(struct et131x_adapter *etdev)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700833{
834 DBG_ENTER(et131x_dbginfo);
835
836 /* Power down PHY */
Alan Cox25ad00b2009-08-19 18:21:44 +0100837 ET1310_PhyPowerDown(etdev, 1);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700838
839 /* Turn on advertisement of all capabilities */
Alan Cox25ad00b2009-08-19 18:21:44 +0100840 ET1310_PhyAdvertise10BaseT(etdev, TRUEPHY_ADV_DUPLEX_BOTH);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700841
Alan Cox25ad00b2009-08-19 18:21:44 +0100842 ET1310_PhyAdvertise100BaseT(etdev, TRUEPHY_ADV_DUPLEX_BOTH);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700843
Alan Cox5ec34872009-08-27 10:59:13 +0100844 if (etdev->pdev->device != ET131X_PCI_DEVICE_ID_FAST)
Alan Cox25ad00b2009-08-19 18:21:44 +0100845 ET1310_PhyAdvertise1000BaseT(etdev, TRUEPHY_ADV_DUPLEX_FULL);
Alan Cox64f93032009-06-10 17:30:41 +0100846 else
Alan Cox25ad00b2009-08-19 18:21:44 +0100847 ET1310_PhyAdvertise1000BaseT(etdev, TRUEPHY_ADV_DUPLEX_NONE);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700848
849 /* Make sure auto-neg is ON (it is disabled in FORCE modes) */
Alan Cox25ad00b2009-08-19 18:21:44 +0100850 ET1310_PhyAutoNeg(etdev, true);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700851
852 /* Power up PHY */
Alan Cox25ad00b2009-08-19 18:21:44 +0100853 ET1310_PhyPowerDown(etdev, 0);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700854
855 DBG_LEAVE(et131x_dbginfo);
856}
857
858
859/*
860 * The routines which follow provide low-level access to the PHY, and are used
861 * primarily by the routines above (although there are a few places elsewhere
862 * in the driver where this level of access is required).
863 */
864
865static const uint16_t ConfigPhy[25][2] = {
866 /* Reg Value Register */
867 /* Addr */
868 {0x880B, 0x0926}, /* AfeIfCreg4B1000Msbs */
869 {0x880C, 0x0926}, /* AfeIfCreg4B100Msbs */
870 {0x880D, 0x0926}, /* AfeIfCreg4B10Msbs */
871
872 {0x880E, 0xB4D3}, /* AfeIfCreg4B1000Lsbs */
873 {0x880F, 0xB4D3}, /* AfeIfCreg4B100Lsbs */
874 {0x8810, 0xB4D3}, /* AfeIfCreg4B10Lsbs */
875
876 {0x8805, 0xB03E}, /* AfeIfCreg3B1000Msbs */
877 {0x8806, 0xB03E}, /* AfeIfCreg3B100Msbs */
878 {0x8807, 0xFF00}, /* AfeIfCreg3B10Msbs */
879
880 {0x8808, 0xE090}, /* AfeIfCreg3B1000Lsbs */
881 {0x8809, 0xE110}, /* AfeIfCreg3B100Lsbs */
882 {0x880A, 0x0000}, /* AfeIfCreg3B10Lsbs */
883
884 {0x300D, 1}, /* DisableNorm */
885
886 {0x280C, 0x0180}, /* LinkHoldEnd */
887
888 {0x1C21, 0x0002}, /* AlphaM */
889
890 {0x3821, 6}, /* FfeLkgTx0 */
891 {0x381D, 1}, /* FfeLkg1g4 */
892 {0x381E, 1}, /* FfeLkg1g5 */
893 {0x381F, 1}, /* FfeLkg1g6 */
894 {0x3820, 1}, /* FfeLkg1g7 */
895
896 {0x8402, 0x01F0}, /* Btinact */
897 {0x800E, 20}, /* LftrainTime */
898 {0x800F, 24}, /* DvguardTime */
899 {0x8010, 46}, /* IdlguardTime */
900
901 {0, 0}
902
903};
904
905/* condensed version of the phy initialization routine */
Alan Cox25ad00b2009-08-19 18:21:44 +0100906void ET1310_PhyInit(struct et131x_adapter *etdev)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700907{
Alan Cox9fa81092009-08-27 11:00:36 +0100908 uint16_t data, index;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700909
Alan Cox25ad00b2009-08-19 18:21:44 +0100910 if (etdev == NULL)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700911 return;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700912
Alan Cox64f93032009-06-10 17:30:41 +0100913 /* get the identity (again ?) */
Alan Cox9fa81092009-08-27 11:00:36 +0100914 MiRead(etdev, PHY_ID_1, &data);
915 MiRead(etdev, PHY_ID_2, &data);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700916
Alan Cox64f93032009-06-10 17:30:41 +0100917 /* what does this do/achieve ? */
Alan Cox9fa81092009-08-27 11:00:36 +0100918 MiRead(etdev, PHY_MPHY_CONTROL_REG, &data); /* should read 0002 */
Alan Cox25ad00b2009-08-19 18:21:44 +0100919 MiWrite(etdev, PHY_MPHY_CONTROL_REG, 0x0006);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700920
Alan Cox64f93032009-06-10 17:30:41 +0100921 /* read modem register 0402, should I do something with the return
922 data ? */
Alan Cox25ad00b2009-08-19 18:21:44 +0100923 MiWrite(etdev, PHY_INDEX_REG, 0x0402);
Alan Cox9fa81092009-08-27 11:00:36 +0100924 MiRead(etdev, PHY_DATA_REG, &data);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700925
Alan Cox64f93032009-06-10 17:30:41 +0100926 /* what does this do/achieve ? */
Alan Cox25ad00b2009-08-19 18:21:44 +0100927 MiWrite(etdev, PHY_MPHY_CONTROL_REG, 0x0002);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700928
Alan Cox64f93032009-06-10 17:30:41 +0100929 /* get the identity (again ?) */
Alan Cox9fa81092009-08-27 11:00:36 +0100930 MiRead(etdev, PHY_ID_1, &data);
931 MiRead(etdev, PHY_ID_2, &data);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700932
Alan Cox64f93032009-06-10 17:30:41 +0100933 /* what does this achieve ? */
Alan Cox9fa81092009-08-27 11:00:36 +0100934 MiRead(etdev, PHY_MPHY_CONTROL_REG, &data); /* should read 0002 */
Alan Cox25ad00b2009-08-19 18:21:44 +0100935 MiWrite(etdev, PHY_MPHY_CONTROL_REG, 0x0006);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700936
Alan Cox64f93032009-06-10 17:30:41 +0100937 /* read modem register 0402, should I do something with
938 the return data? */
Alan Cox25ad00b2009-08-19 18:21:44 +0100939 MiWrite(etdev, PHY_INDEX_REG, 0x0402);
Alan Cox9fa81092009-08-27 11:00:36 +0100940 MiRead(etdev, PHY_DATA_REG, &data);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700941
Alan Cox25ad00b2009-08-19 18:21:44 +0100942 MiWrite(etdev, PHY_MPHY_CONTROL_REG, 0x0002);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700943
Alan Cox64f93032009-06-10 17:30:41 +0100944 /* what does this achieve (should return 0x1040) */
Alan Cox9fa81092009-08-27 11:00:36 +0100945 MiRead(etdev, PHY_CONTROL, &data);
946 MiRead(etdev, PHY_MPHY_CONTROL_REG, &data); /* should read 0002 */
Alan Cox25ad00b2009-08-19 18:21:44 +0100947 MiWrite(etdev, PHY_CONTROL, 0x1840);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700948
Alan Cox25ad00b2009-08-19 18:21:44 +0100949 MiWrite(etdev, PHY_MPHY_CONTROL_REG, 0x0007);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700950
Alan Cox64f93032009-06-10 17:30:41 +0100951 /* here the writing of the array starts.... */
Alan Cox9fa81092009-08-27 11:00:36 +0100952 index = 0;
953 while (ConfigPhy[index][0] != 0x0000) {
Alan Cox64f93032009-06-10 17:30:41 +0100954 /* write value */
Alan Cox9fa81092009-08-27 11:00:36 +0100955 MiWrite(etdev, PHY_INDEX_REG, ConfigPhy[index][0]);
956 MiWrite(etdev, PHY_DATA_REG, ConfigPhy[index][1]);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700957
Alan Cox64f93032009-06-10 17:30:41 +0100958 /* read it back */
Alan Cox9fa81092009-08-27 11:00:36 +0100959 MiWrite(etdev, PHY_INDEX_REG, ConfigPhy[index][0]);
960 MiRead(etdev, PHY_DATA_REG, &data);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700961
Alan Cox64f93032009-06-10 17:30:41 +0100962 /* do a check on the value read back ? */
Alan Cox9fa81092009-08-27 11:00:36 +0100963 index++;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700964 }
Alan Cox64f93032009-06-10 17:30:41 +0100965 /* here the writing of the array ends... */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700966
Alan Cox9fa81092009-08-27 11:00:36 +0100967 MiRead(etdev, PHY_CONTROL, &data); /* 0x1840 */
968 MiRead(etdev, PHY_MPHY_CONTROL_REG, &data);/* should read 0007 */
Alan Cox25ad00b2009-08-19 18:21:44 +0100969 MiWrite(etdev, PHY_CONTROL, 0x1040);
970 MiWrite(etdev, PHY_MPHY_CONTROL_REG, 0x0002);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700971}
972
Alan Cox25ad00b2009-08-19 18:21:44 +0100973void ET1310_PhyReset(struct et131x_adapter *etdev)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700974{
Alan Cox25ad00b2009-08-19 18:21:44 +0100975 MiWrite(etdev, PHY_CONTROL, 0x8000);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700976}
977
Alan Cox25ad00b2009-08-19 18:21:44 +0100978void ET1310_PhyPowerDown(struct et131x_adapter *etdev, bool down)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700979{
Alan Cox9fa81092009-08-27 11:00:36 +0100980 uint16_t data;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700981
Alan Cox9fa81092009-08-27 11:00:36 +0100982 MiRead(etdev, PHY_CONTROL, &data);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700983
984 if (down == false) {
Alan Cox64f93032009-06-10 17:30:41 +0100985 /* Power UP */
Alan Cox9fa81092009-08-27 11:00:36 +0100986 data &= ~0x0800;
987 MiWrite(etdev, PHY_CONTROL, data);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700988 } else {
Alan Cox64f93032009-06-10 17:30:41 +0100989 /* Power DOWN */
Alan Cox9fa81092009-08-27 11:00:36 +0100990 data |= 0x0800;
991 MiWrite(etdev, PHY_CONTROL, data);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700992 }
993}
994
Alan Cox25ad00b2009-08-19 18:21:44 +0100995void ET1310_PhyAutoNeg(struct et131x_adapter *etdev, bool enable)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700996{
Alan Cox9fa81092009-08-27 11:00:36 +0100997 uint16_t data;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700998
Alan Cox9fa81092009-08-27 11:00:36 +0100999 MiRead(etdev, PHY_CONTROL, &data);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001000
1001 if (enable == true) {
Alan Cox64f93032009-06-10 17:30:41 +01001002 /* Autonegotiation ON */
Alan Cox9fa81092009-08-27 11:00:36 +01001003 data |= 0x1000;
1004 MiWrite(etdev, PHY_CONTROL, data);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001005 } else {
Alan Cox64f93032009-06-10 17:30:41 +01001006 /* Autonegotiation OFF */
Alan Cox9fa81092009-08-27 11:00:36 +01001007 data &= ~0x1000;
1008 MiWrite(etdev, PHY_CONTROL, data);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001009 }
1010}
1011
Alan Cox25ad00b2009-08-19 18:21:44 +01001012void ET1310_PhyDuplexMode(struct et131x_adapter *etdev, uint16_t duplex)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001013{
Alan Cox9fa81092009-08-27 11:00:36 +01001014 uint16_t data;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001015
Alan Cox9fa81092009-08-27 11:00:36 +01001016 MiRead(etdev, PHY_CONTROL, &data);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001017
1018 if (duplex == TRUEPHY_DUPLEX_FULL) {
Alan Cox64f93032009-06-10 17:30:41 +01001019 /* Set Full Duplex */
Alan Cox9fa81092009-08-27 11:00:36 +01001020 data |= 0x100;
1021 MiWrite(etdev, PHY_CONTROL, data);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001022 } else {
Alan Cox64f93032009-06-10 17:30:41 +01001023 /* Set Half Duplex */
Alan Cox9fa81092009-08-27 11:00:36 +01001024 data &= ~0x100;
1025 MiWrite(etdev, PHY_CONTROL, data);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001026 }
1027}
1028
Alan Cox25ad00b2009-08-19 18:21:44 +01001029void ET1310_PhySpeedSelect(struct et131x_adapter *etdev, uint16_t speed)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001030{
Alan Cox9fa81092009-08-27 11:00:36 +01001031 uint16_t data;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001032
Alan Cox64f93032009-06-10 17:30:41 +01001033 /* Read the PHY control register */
Alan Cox9fa81092009-08-27 11:00:36 +01001034 MiRead(etdev, PHY_CONTROL, &data);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001035
Alan Cox64f93032009-06-10 17:30:41 +01001036 /* Clear all Speed settings (Bits 6, 13) */
Alan Cox9fa81092009-08-27 11:00:36 +01001037 data &= ~0x2040;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001038
Alan Cox64f93032009-06-10 17:30:41 +01001039 /* Reset the speed bits based on user selection */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001040 switch (speed) {
1041 case TRUEPHY_SPEED_10MBPS:
Alan Cox64f93032009-06-10 17:30:41 +01001042 /* Bits already cleared above, do nothing */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001043 break;
1044
1045 case TRUEPHY_SPEED_100MBPS:
Alan Cox64f93032009-06-10 17:30:41 +01001046 /* 100M == Set bit 13 */
Alan Cox9fa81092009-08-27 11:00:36 +01001047 data |= 0x2000;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001048 break;
1049
1050 case TRUEPHY_SPEED_1000MBPS:
1051 default:
Alan Cox9fa81092009-08-27 11:00:36 +01001052 data |= 0x0040;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001053 break;
1054 }
1055
Alan Cox64f93032009-06-10 17:30:41 +01001056 /* Write back the new speed */
Alan Cox9fa81092009-08-27 11:00:36 +01001057 MiWrite(etdev, PHY_CONTROL, data);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001058}
1059
Alan Cox25ad00b2009-08-19 18:21:44 +01001060void ET1310_PhyAdvertise1000BaseT(struct et131x_adapter *etdev,
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001061 uint16_t duplex)
1062{
Alan Cox9fa81092009-08-27 11:00:36 +01001063 uint16_t data;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001064
Alan Cox64f93032009-06-10 17:30:41 +01001065 /* Read the PHY 1000 Base-T Control Register */
Alan Cox9fa81092009-08-27 11:00:36 +01001066 MiRead(etdev, PHY_1000_CONTROL, &data);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001067
Alan Cox64f93032009-06-10 17:30:41 +01001068 /* Clear Bits 8,9 */
Alan Cox9fa81092009-08-27 11:00:36 +01001069 data &= ~0x0300;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001070
1071 switch (duplex) {
1072 case TRUEPHY_ADV_DUPLEX_NONE:
Alan Cox64f93032009-06-10 17:30:41 +01001073 /* Duplex already cleared, do nothing */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001074 break;
1075
1076 case TRUEPHY_ADV_DUPLEX_FULL:
Alan Cox64f93032009-06-10 17:30:41 +01001077 /* Set Bit 9 */
Alan Cox9fa81092009-08-27 11:00:36 +01001078 data |= 0x0200;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001079 break;
1080
1081 case TRUEPHY_ADV_DUPLEX_HALF:
Alan Cox64f93032009-06-10 17:30:41 +01001082 /* Set Bit 8 */
Alan Cox9fa81092009-08-27 11:00:36 +01001083 data |= 0x0100;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001084 break;
1085
1086 case TRUEPHY_ADV_DUPLEX_BOTH:
1087 default:
Alan Cox9fa81092009-08-27 11:00:36 +01001088 data |= 0x0300;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001089 break;
1090 }
1091
Alan Cox64f93032009-06-10 17:30:41 +01001092 /* Write back advertisement */
Alan Cox9fa81092009-08-27 11:00:36 +01001093 MiWrite(etdev, PHY_1000_CONTROL, data);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001094}
1095
Alan Cox25ad00b2009-08-19 18:21:44 +01001096void ET1310_PhyAdvertise100BaseT(struct et131x_adapter *etdev,
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001097 uint16_t duplex)
1098{
Alan Cox9fa81092009-08-27 11:00:36 +01001099 uint16_t data;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001100
Alan Cox64f93032009-06-10 17:30:41 +01001101 /* Read the Autonegotiation Register (10/100) */
Alan Cox9fa81092009-08-27 11:00:36 +01001102 MiRead(etdev, PHY_AUTO_ADVERTISEMENT, &data);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001103
Alan Cox64f93032009-06-10 17:30:41 +01001104 /* Clear bits 7,8 */
Alan Cox9fa81092009-08-27 11:00:36 +01001105 data &= ~0x0180;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001106
1107 switch (duplex) {
1108 case TRUEPHY_ADV_DUPLEX_NONE:
Alan Cox64f93032009-06-10 17:30:41 +01001109 /* Duplex already cleared, do nothing */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001110 break;
1111
1112 case TRUEPHY_ADV_DUPLEX_FULL:
Alan Cox64f93032009-06-10 17:30:41 +01001113 /* Set Bit 8 */
Alan Cox9fa81092009-08-27 11:00:36 +01001114 data |= 0x0100;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001115 break;
1116
1117 case TRUEPHY_ADV_DUPLEX_HALF:
Alan Cox64f93032009-06-10 17:30:41 +01001118 /* Set Bit 7 */
Alan Cox9fa81092009-08-27 11:00:36 +01001119 data |= 0x0080;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001120 break;
1121
1122 case TRUEPHY_ADV_DUPLEX_BOTH:
1123 default:
Alan Cox64f93032009-06-10 17:30:41 +01001124 /* Set Bits 7,8 */
Alan Cox9fa81092009-08-27 11:00:36 +01001125 data |= 0x0180;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001126 break;
1127 }
1128
Alan Cox64f93032009-06-10 17:30:41 +01001129 /* Write back advertisement */
Alan Cox9fa81092009-08-27 11:00:36 +01001130 MiWrite(etdev, PHY_AUTO_ADVERTISEMENT, data);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001131}
1132
Alan Cox25ad00b2009-08-19 18:21:44 +01001133void ET1310_PhyAdvertise10BaseT(struct et131x_adapter *etdev,
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001134 uint16_t duplex)
1135{
Alan Cox9fa81092009-08-27 11:00:36 +01001136 uint16_t data;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001137
Alan Cox64f93032009-06-10 17:30:41 +01001138 /* Read the Autonegotiation Register (10/100) */
Alan Cox9fa81092009-08-27 11:00:36 +01001139 MiRead(etdev, PHY_AUTO_ADVERTISEMENT, &data);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001140
Alan Cox64f93032009-06-10 17:30:41 +01001141 /* Clear bits 5,6 */
Alan Cox9fa81092009-08-27 11:00:36 +01001142 data &= ~0x0060;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001143
1144 switch (duplex) {
1145 case TRUEPHY_ADV_DUPLEX_NONE:
Alan Cox64f93032009-06-10 17:30:41 +01001146 /* Duplex already cleared, do nothing */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001147 break;
1148
1149 case TRUEPHY_ADV_DUPLEX_FULL:
Alan Cox64f93032009-06-10 17:30:41 +01001150 /* Set Bit 6 */
Alan Cox9fa81092009-08-27 11:00:36 +01001151 data |= 0x0040;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001152 break;
1153
1154 case TRUEPHY_ADV_DUPLEX_HALF:
Alan Cox64f93032009-06-10 17:30:41 +01001155 /* Set Bit 5 */
Alan Cox9fa81092009-08-27 11:00:36 +01001156 data |= 0x0020;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001157 break;
1158
1159 case TRUEPHY_ADV_DUPLEX_BOTH:
1160 default:
Alan Cox64f93032009-06-10 17:30:41 +01001161 /* Set Bits 5,6 */
Alan Cox9fa81092009-08-27 11:00:36 +01001162 data |= 0x0060;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001163 break;
1164 }
1165
Alan Cox64f93032009-06-10 17:30:41 +01001166 /* Write back advertisement */
Alan Cox9fa81092009-08-27 11:00:36 +01001167 MiWrite(etdev, PHY_AUTO_ADVERTISEMENT, data);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001168}
1169
Alan Cox25ad00b2009-08-19 18:21:44 +01001170void ET1310_PhyLinkStatus(struct et131x_adapter *etdev,
Alan Cox9fa81092009-08-27 11:00:36 +01001171 uint8_t *link_status,
1172 uint32_t *autoneg,
1173 uint32_t *linkspeed,
1174 uint32_t *duplex_mode,
1175 uint32_t *mdi_mdix,
1176 uint32_t *masterslave, uint32_t *polarity)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001177{
Alan Cox9fa81092009-08-27 11:00:36 +01001178 uint16_t mistatus = 0;
1179 uint16_t is1000BaseT = 0;
1180 uint16_t vmi_phystatus = 0;
1181 uint16_t control = 0;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001182
Alan Cox9fa81092009-08-27 11:00:36 +01001183 MiRead(etdev, PHY_STATUS, &mistatus);
1184 MiRead(etdev, PHY_1000_STATUS, &is1000BaseT);
1185 MiRead(etdev, PHY_PHY_STATUS, &vmi_phystatus);
1186 MiRead(etdev, PHY_CONTROL, &control);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001187
Alan Cox9fa81092009-08-27 11:00:36 +01001188 if (link_status) {
1189 *link_status =
1190 (unsigned char)((vmi_phystatus & 0x0040) ? 1 : 0);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001191 }
1192
Alan Cox9fa81092009-08-27 11:00:36 +01001193 if (autoneg) {
1194 *autoneg =
1195 (control & 0x1000) ? ((vmi_phystatus & 0x0020) ?
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001196 TRUEPHY_ANEG_COMPLETE :
1197 TRUEPHY_ANEG_NOT_COMPLETE) :
1198 TRUEPHY_ANEG_DISABLED;
1199 }
1200
Alan Cox9fa81092009-08-27 11:00:36 +01001201 if (linkspeed)
1202 *linkspeed = (vmi_phystatus & 0x0300) >> 8;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001203
Alan Cox9fa81092009-08-27 11:00:36 +01001204 if (duplex_mode)
1205 *duplex_mode = (vmi_phystatus & 0x0080) >> 7;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001206
Alan Cox9fa81092009-08-27 11:00:36 +01001207 if (mdi_mdix)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001208 /* NOTE: Need to complete this */
Alan Cox9fa81092009-08-27 11:00:36 +01001209 *mdi_mdix = 0;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001210
Alan Cox9fa81092009-08-27 11:00:36 +01001211 if (masterslave) {
1212 *masterslave =
1213 (is1000BaseT & 0x4000) ? TRUEPHY_CFG_MASTER :
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001214 TRUEPHY_CFG_SLAVE;
1215 }
1216
Alan Cox9fa81092009-08-27 11:00:36 +01001217 if (polarity) {
1218 *polarity =
1219 (vmi_phystatus & 0x0400) ? TRUEPHY_POLARITY_INVERTED :
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001220 TRUEPHY_POLARITY_NORMAL;
1221 }
1222}
1223
Alan Cox25ad00b2009-08-19 18:21:44 +01001224void ET1310_PhyAndOrReg(struct et131x_adapter *etdev,
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001225 uint16_t regnum, uint16_t andMask, uint16_t orMask)
1226{
1227 uint16_t reg;
1228
Alan Cox64f93032009-06-10 17:30:41 +01001229 /* Read the requested register */
Alan Cox25ad00b2009-08-19 18:21:44 +01001230 MiRead(etdev, regnum, &reg);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001231
Alan Cox64f93032009-06-10 17:30:41 +01001232 /* Apply the AND mask */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001233 reg &= andMask;
1234
Alan Cox64f93032009-06-10 17:30:41 +01001235 /* Apply the OR mask */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001236 reg |= orMask;
1237
Alan Cox64f93032009-06-10 17:30:41 +01001238 /* Write the value back to the register */
Alan Cox25ad00b2009-08-19 18:21:44 +01001239 MiWrite(etdev, regnum, reg);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001240}
1241
Alan Cox25ad00b2009-08-19 18:21:44 +01001242void ET1310_PhyAccessMiBit(struct et131x_adapter *etdev, uint16_t action,
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001243 uint16_t regnum, uint16_t bitnum, uint8_t *value)
1244{
1245 uint16_t reg;
1246 uint16_t mask = 0;
1247
Alan Cox64f93032009-06-10 17:30:41 +01001248 /* Create a mask to isolate the requested bit */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001249 mask = 0x0001 << bitnum;
1250
Alan Cox64f93032009-06-10 17:30:41 +01001251 /* Read the requested register */
Alan Cox25ad00b2009-08-19 18:21:44 +01001252 MiRead(etdev, regnum, &reg);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001253
1254 switch (action) {
1255 case TRUEPHY_BIT_READ:
Alan Cox64f93032009-06-10 17:30:41 +01001256 if (value != NULL)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001257 *value = (reg & mask) >> bitnum;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001258 break;
1259
1260 case TRUEPHY_BIT_SET:
1261 reg |= mask;
Alan Cox25ad00b2009-08-19 18:21:44 +01001262 MiWrite(etdev, regnum, reg);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001263 break;
1264
1265 case TRUEPHY_BIT_CLEAR:
1266 reg &= ~mask;
Alan Cox25ad00b2009-08-19 18:21:44 +01001267 MiWrite(etdev, regnum, reg);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001268 break;
1269
1270 default:
1271 break;
1272 }
1273}