blob: 6ecad619f77925bcc5c02dd89f6defcd7fcae6a4 [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"
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -070059#include "et131x_defs.h"
60
61#include <linux/pci.h>
62#include <linux/init.h>
63#include <linux/module.h>
64#include <linux/types.h>
65#include <linux/kernel.h>
66
67#include <linux/sched.h>
68#include <linux/ptrace.h>
69#include <linux/slab.h>
70#include <linux/ctype.h>
71#include <linux/string.h>
72#include <linux/timer.h>
73#include <linux/interrupt.h>
74#include <linux/in.h>
75#include <linux/delay.h>
Alan Cox64f93032009-06-10 17:30:41 +010076#include <linux/io.h>
77#include <linux/bitops.h>
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -070078#include <asm/system.h>
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -070079
80#include <linux/netdevice.h>
81#include <linux/etherdevice.h>
82#include <linux/skbuff.h>
83#include <linux/if_arp.h>
84#include <linux/ioport.h>
85#include <linux/random.h>
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -070086
87#include "et1310_phy.h"
88#include "et1310_pm.h"
89#include "et1310_jagcore.h"
90
91#include "et131x_adapter.h"
92#include "et131x_netdev.h"
93#include "et131x_initpci.h"
94
95#include "et1310_address_map.h"
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -070096#include "et1310_tx.h"
97#include "et1310_rx.h"
98#include "et1310_mac.h"
99
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700100/* Prototypes for functions with local scope */
Alan Coxe1bc5842009-10-06 15:51:17 +0100101static void et131x_xcvr_init(struct et131x_adapter *etdev);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700102
103/**
104 * PhyMiRead - Read from the PHY through the MII Interface on the MAC
Alan Coxe1bc5842009-10-06 15:51:17 +0100105 * @etdev: pointer to our private adapter structure
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700106 * @xcvrAddr: the address of the transciever
107 * @xcvrReg: the register to read
108 * @value: pointer to a 16-bit value in which the value will be stored
109 *
110 * Returns 0 on success, errno on failure (as defined in errno.h)
111 */
Alan Coxe1bc5842009-10-06 15:51:17 +0100112int PhyMiRead(struct et131x_adapter *etdev, u8 xcvrAddr,
Alan Cox1210db92009-10-06 15:51:10 +0100113 u8 xcvrReg, u16 *value)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700114{
Alan Coxe1bc5842009-10-06 15:51:17 +0100115 struct _MAC_t __iomem *mac = &etdev->regs->mac;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700116 int status = 0;
Alan Cox1210db92009-10-06 15:51:10 +0100117 u32 delay;
Alan Cox57aed3b2009-10-06 15:51:04 +0100118 u32 miiAddr;
119 u32 miiCmd;
120 u32 miiIndicator;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700121
122 /* Save a local copy of the registers we are dealing with so we can
123 * set them back
124 */
Alan Cox57aed3b2009-10-06 15:51:04 +0100125 miiAddr = readl(&mac->mii_mgmt_addr);
126 miiCmd = readl(&mac->mii_mgmt_cmd);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700127
128 /* Stop the current operation */
Alan Cox57aed3b2009-10-06 15:51:04 +0100129 writel(0, &mac->mii_mgmt_cmd);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700130
131 /* Set up the register we need to read from on the correct PHY */
Alan Cox57aed3b2009-10-06 15:51:04 +0100132 writel(MII_ADDR(xcvrAddr, xcvrReg), &mac->mii_mgmt_addr);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700133
134 /* Kick the read cycle off */
135 delay = 0;
136
Alan Cox57aed3b2009-10-06 15:51:04 +0100137 writel(0x1, &mac->mii_mgmt_cmd);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700138
139 do {
140 udelay(50);
141 delay++;
Alan Cox57aed3b2009-10-06 15:51:04 +0100142 miiIndicator = readl(&mac->mii_mgmt_indicator);
143 } while ((miiIndicator & MGMT_WAIT) && delay < 50);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700144
145 /* If we hit the max delay, we could not read the register */
Alan Cox57aed3b2009-10-06 15:51:04 +0100146 if (delay == 50) {
Alan Coxe1bc5842009-10-06 15:51:17 +0100147 dev_warn(&etdev->pdev->dev,
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700148 "xcvrReg 0x%08x could not be read\n", xcvrReg);
Alan Coxe1bc5842009-10-06 15:51:17 +0100149 dev_warn(&etdev->pdev->dev, "status is 0x%08x\n",
Alan Cox57aed3b2009-10-06 15:51:04 +0100150 miiIndicator);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700151
152 status = -EIO;
153 }
154
155 /* If we hit here we were able to read the register and we need to
Alan Cox57aed3b2009-10-06 15:51:04 +0100156 * return the value to the caller */
157 *value = readl(&mac->mii_mgmt_stat) & 0xFFFF;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700158
159 /* Stop the read operation */
Alan Cox57aed3b2009-10-06 15:51:04 +0100160 writel(0, &mac->mii_mgmt_cmd);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700161
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700162 /* set the registers we touched back to the state at which we entered
163 * this function
164 */
Alan Cox57aed3b2009-10-06 15:51:04 +0100165 writel(miiAddr, &mac->mii_mgmt_addr);
166 writel(miiCmd, &mac->mii_mgmt_cmd);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700167
168 return status;
169}
170
171/**
172 * MiWrite - Write to a PHY register through the MII interface of the MAC
Alan Coxe1bc5842009-10-06 15:51:17 +0100173 * @etdev: pointer to our private adapter structure
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700174 * @xcvrReg: the register to read
175 * @value: 16-bit value to write
176 *
Alan Cox1210db92009-10-06 15:51:10 +0100177 * FIXME: one caller in netdev still
178 *
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700179 * Return 0 on success, errno on failure (as defined in errno.h)
180 */
Alan Coxe1bc5842009-10-06 15:51:17 +0100181int MiWrite(struct et131x_adapter *etdev, u8 xcvrReg, u16 value)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700182{
Alan Coxe1bc5842009-10-06 15:51:17 +0100183 struct _MAC_t __iomem *mac = &etdev->regs->mac;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700184 int status = 0;
Alan Coxe1bc5842009-10-06 15:51:17 +0100185 u8 xcvrAddr = etdev->Stats.xcvr_addr;
Alan Cox1210db92009-10-06 15:51:10 +0100186 u32 delay;
Alan Cox57aed3b2009-10-06 15:51:04 +0100187 u32 miiAddr;
188 u32 miiCmd;
189 u32 miiIndicator;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700190
191 /* Save a local copy of the registers we are dealing with so we can
192 * set them back
193 */
Alan Cox57aed3b2009-10-06 15:51:04 +0100194 miiAddr = readl(&mac->mii_mgmt_addr);
195 miiCmd = readl(&mac->mii_mgmt_cmd);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700196
197 /* Stop the current operation */
Alan Cox57aed3b2009-10-06 15:51:04 +0100198 writel(0, &mac->mii_mgmt_cmd);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700199
200 /* Set up the register we need to write to on the correct PHY */
Alan Cox57aed3b2009-10-06 15:51:04 +0100201 writel(MII_ADDR(xcvrAddr, xcvrReg), &mac->mii_mgmt_addr);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700202
203 /* Add the value to write to the registers to the mac */
Alan Cox57aed3b2009-10-06 15:51:04 +0100204 writel(value, &mac->mii_mgmt_ctrl);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700205 delay = 0;
206
207 do {
208 udelay(50);
209 delay++;
Alan Cox57aed3b2009-10-06 15:51:04 +0100210 miiIndicator = readl(&mac->mii_mgmt_indicator);
211 } while ((miiIndicator & MGMT_BUSY) && delay < 100);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700212
213 /* If we hit the max delay, we could not write the register */
214 if (delay == 100) {
Alan Cox1210db92009-10-06 15:51:10 +0100215 u16 TempValue;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700216
Alan Coxe1bc5842009-10-06 15:51:17 +0100217 dev_warn(&etdev->pdev->dev,
Alan Cox15700032009-08-27 11:03:09 +0100218 "xcvrReg 0x%08x could not be written", xcvrReg);
Alan Coxe1bc5842009-10-06 15:51:17 +0100219 dev_warn(&etdev->pdev->dev, "status is 0x%08x\n",
Alan Cox57aed3b2009-10-06 15:51:04 +0100220 miiIndicator);
Alan Coxe1bc5842009-10-06 15:51:17 +0100221 dev_warn(&etdev->pdev->dev, "command is 0x%08x\n",
Alan Cox57aed3b2009-10-06 15:51:04 +0100222 readl(&mac->mii_mgmt_cmd));
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700223
Alan Coxe1bc5842009-10-06 15:51:17 +0100224 MiRead(etdev, xcvrReg, &TempValue);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700225
226 status = -EIO;
227 }
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700228 /* Stop the write operation */
Alan Cox57aed3b2009-10-06 15:51:04 +0100229 writel(0, &mac->mii_mgmt_cmd);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700230
231 /* set the registers we touched back to the state at which we entered
Alan Cox64f93032009-06-10 17:30:41 +0100232 * this function
233 */
Alan Cox57aed3b2009-10-06 15:51:04 +0100234 writel(miiAddr, &mac->mii_mgmt_addr);
235 writel(miiCmd, &mac->mii_mgmt_cmd);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700236
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700237 return status;
238}
239
240/**
241 * et131x_xcvr_find - Find the PHY ID
Alan Coxe1bc5842009-10-06 15:51:17 +0100242 * @etdev: pointer to our private adapter structure
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700243 *
244 * Returns 0 on success, errno on failure (as defined in errno.h)
245 */
Alan Coxe1bc5842009-10-06 15:51:17 +0100246int et131x_xcvr_find(struct et131x_adapter *etdev)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700247{
Alan Cox1210db92009-10-06 15:51:10 +0100248 u8 xcvr_addr;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700249 MI_IDR1_t idr1;
250 MI_IDR2_t idr2;
Alan Cox1210db92009-10-06 15:51:10 +0100251 u32 xcvr_id;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700252
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700253 /* We need to get xcvr id and address we just get the first one */
254 for (xcvr_addr = 0; xcvr_addr < 32; xcvr_addr++) {
255 /* Read the ID from the PHY */
Alan Coxe1bc5842009-10-06 15:51:17 +0100256 PhyMiRead(etdev, xcvr_addr,
Alan Cox1210db92009-10-06 15:51:10 +0100257 (u8) offsetof(MI_REGS_t, idr1),
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700258 &idr1.value);
Alan Coxe1bc5842009-10-06 15:51:17 +0100259 PhyMiRead(etdev, xcvr_addr,
Alan Cox1210db92009-10-06 15:51:10 +0100260 (u8) offsetof(MI_REGS_t, idr2),
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700261 &idr2.value);
262
Alan Cox1210db92009-10-06 15:51:10 +0100263 xcvr_id = (u32) ((idr1.value << 16) | idr2.value);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700264
Alan Coxe1bc5842009-10-06 15:51:17 +0100265 if (idr1.value != 0 && idr1.value != 0xffff) {
266 etdev->Stats.xcvr_id = xcvr_id;
267 etdev->Stats.xcvr_addr = xcvr_addr;
268 return 0;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700269 }
270 }
Alan Coxe1bc5842009-10-06 15:51:17 +0100271 return -ENODEV;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700272}
273
Alan Cox1210db92009-10-06 15:51:10 +0100274void ET1310_PhyReset(struct et131x_adapter *etdev)
275{
276 MiWrite(etdev, PHY_CONTROL, 0x8000);
277}
278
Alan Coxe1bc5842009-10-06 15:51:17 +0100279/**
280 * ET1310_PhyPowerDown - PHY power control
281 * @etdev: device to control
282 * @down: true for off/false for back on
283 *
284 * one hundred, ten, one thousand megs
285 * How would you like to have your LAN accessed
286 * Can't you see that this code processed
287 * Phy power, phy power..
288 */
289
Alan Cox1210db92009-10-06 15:51:10 +0100290void ET1310_PhyPowerDown(struct et131x_adapter *etdev, bool down)
291{
292 u16 data;
293
294 MiRead(etdev, PHY_CONTROL, &data);
Alan Coxe1bc5842009-10-06 15:51:17 +0100295 data &= ~0x0800; /* Power UP */
296 if (down) /* Power DOWN */
Alan Cox1210db92009-10-06 15:51:10 +0100297 data |= 0x0800;
Alan Coxe1bc5842009-10-06 15:51:17 +0100298 MiWrite(etdev, PHY_CONTROL, data);
Alan Cox1210db92009-10-06 15:51:10 +0100299}
300
Alan Coxe1bc5842009-10-06 15:51:17 +0100301/**
302 * ET130_PhyAutoNEg - autonegotiate control
303 * @etdev: device to control
304 * @enabe: autoneg on/off
305 *
306 * Set up the autonegotiation state according to whether we will be
307 * negotiating the state or forcing a speed.
308 */
309
Alan Cox1210db92009-10-06 15:51:10 +0100310static void ET1310_PhyAutoNeg(struct et131x_adapter *etdev, bool enable)
311{
312 u16 data;
313
314 MiRead(etdev, PHY_CONTROL, &data);
Alan Coxe1bc5842009-10-06 15:51:17 +0100315 data &= ~0x1000; /* Autonegotiation OFF */
316 if (enable)
317 data |= 0x1000; /* Autonegotiation ON */
318 MiWrite(etdev, PHY_CONTROL, data);
Alan Cox1210db92009-10-06 15:51:10 +0100319}
320
Alan Coxe1bc5842009-10-06 15:51:17 +0100321/**
322 * ET130_PhyDuplexMode - duplex control
323 * @etdev: device to control
324 * @duplex: duplex on/off
325 *
326 * Set up the duplex state on the PHY
327 */
328
Alan Cox1210db92009-10-06 15:51:10 +0100329static void ET1310_PhyDuplexMode(struct et131x_adapter *etdev, u16 duplex)
330{
331 u16 data;
332
333 MiRead(etdev, PHY_CONTROL, &data);
Alan Coxe1bc5842009-10-06 15:51:17 +0100334 data &= ~0x100; /* Set Half Duplex */
335 if (duplex == TRUEPHY_DUPLEX_FULL)
336 data |= 0x100; /* Set Full Duplex */
337 MiWrite(etdev, PHY_CONTROL, data);
Alan Cox1210db92009-10-06 15:51:10 +0100338}
339
Alan Coxe1bc5842009-10-06 15:51:17 +0100340/**
341 * ET130_PhySpeedSelect - speed control
342 * @etdev: device to control
343 * @duplex: duplex on/off
344 *
345 * Set the speed of our PHY.
346 */
347
Alan Cox1210db92009-10-06 15:51:10 +0100348static void ET1310_PhySpeedSelect(struct et131x_adapter *etdev, u16 speed)
349{
350 u16 data;
Alan Coxe1bc5842009-10-06 15:51:17 +0100351 static const u16 bits[3]={0x0000, 0x2000, 0x0040};
Alan Cox1210db92009-10-06 15:51:10 +0100352
353 /* Read the PHY control register */
354 MiRead(etdev, PHY_CONTROL, &data);
Alan Cox1210db92009-10-06 15:51:10 +0100355 /* Clear all Speed settings (Bits 6, 13) */
356 data &= ~0x2040;
Alan Cox1210db92009-10-06 15:51:10 +0100357 /* Write back the new speed */
Alan Coxe1bc5842009-10-06 15:51:17 +0100358 MiWrite(etdev, PHY_CONTROL, data | bits[speed]);
Alan Cox1210db92009-10-06 15:51:10 +0100359}
360
Alan Coxe1bc5842009-10-06 15:51:17 +0100361/**
362 * ET1310_PhyLinkStatus - read link state
363 * @etdev: device to read
364 * @link_status: reported link state
365 * @autoneg: reported autonegotiation state (complete/incomplete/disabled)
366 * @linkspeed: returnedlink speed in use
367 * @duplex_mode: reported half/full duplex state
368 * @mdi_mdix: not yet working
369 * @masterslave: report whether we are master or slave
370 * @polarity: link polarity
371 *
372 * I can read your lan like a magazine
373 * I see if your up
374 * I know your link speed
375 * I see all the setting that you'd rather keep
376 */
377
Alan Cox1210db92009-10-06 15:51:10 +0100378static void ET1310_PhyLinkStatus(struct et131x_adapter *etdev,
379 u8 *link_status,
380 u32 *autoneg,
381 u32 *linkspeed,
382 u32 *duplex_mode,
383 u32 *mdi_mdix,
384 u32 *masterslave, u32 *polarity)
385{
386 u16 mistatus = 0;
387 u16 is1000BaseT = 0;
388 u16 vmi_phystatus = 0;
389 u16 control = 0;
390
391 MiRead(etdev, PHY_STATUS, &mistatus);
392 MiRead(etdev, PHY_1000_STATUS, &is1000BaseT);
393 MiRead(etdev, PHY_PHY_STATUS, &vmi_phystatus);
394 MiRead(etdev, PHY_CONTROL, &control);
395
Alan Coxe1bc5842009-10-06 15:51:17 +0100396 *link_status = (vmi_phystatus & 0x0040) ? 1 : 0;
397 *autoneg = (control & 0x1000) ? ((vmi_phystatus & 0x0020) ?
Alan Cox1210db92009-10-06 15:51:10 +0100398 TRUEPHY_ANEG_COMPLETE :
399 TRUEPHY_ANEG_NOT_COMPLETE) :
400 TRUEPHY_ANEG_DISABLED;
Alan Coxe1bc5842009-10-06 15:51:17 +0100401 *linkspeed = (vmi_phystatus & 0x0300) >> 8;
402 *duplex_mode = (vmi_phystatus & 0x0080) >> 7;
403 /* NOTE: Need to complete this */
404 *mdi_mdix = 0;
Alan Cox1210db92009-10-06 15:51:10 +0100405
Alan Coxe1bc5842009-10-06 15:51:17 +0100406 *masterslave = (is1000BaseT & 0x4000) ?
407 TRUEPHY_CFG_MASTER : TRUEPHY_CFG_SLAVE;
408 *polarity = (vmi_phystatus & 0x0400) ?
409 TRUEPHY_POLARITY_INVERTED : TRUEPHY_POLARITY_NORMAL;
Alan Cox1210db92009-10-06 15:51:10 +0100410}
411
412static void ET1310_PhyAndOrReg(struct et131x_adapter *etdev,
413 u16 regnum, u16 andMask, u16 orMask)
414{
415 u16 reg;
416
Alan Cox1210db92009-10-06 15:51:10 +0100417 MiRead(etdev, regnum, &reg);
Alan Cox1210db92009-10-06 15:51:10 +0100418 reg &= andMask;
Alan Cox1210db92009-10-06 15:51:10 +0100419 reg |= orMask;
Alan Cox1210db92009-10-06 15:51:10 +0100420 MiWrite(etdev, regnum, reg);
421}
422
Alan Coxe1bc5842009-10-06 15:51:17 +0100423/* Still used from _mac for BIT_READ */
Alan Cox1210db92009-10-06 15:51:10 +0100424void ET1310_PhyAccessMiBit(struct et131x_adapter *etdev, u16 action,
425 u16 regnum, u16 bitnum, u8 *value)
426{
427 u16 reg;
Alan Coxe1bc5842009-10-06 15:51:17 +0100428 u16 mask = 0x0001 << bitnum;
Alan Cox1210db92009-10-06 15:51:10 +0100429
430 /* Read the requested register */
431 MiRead(etdev, regnum, &reg);
432
433 switch (action) {
434 case TRUEPHY_BIT_READ:
Alan Coxe1bc5842009-10-06 15:51:17 +0100435 *value = (reg & mask) >> bitnum;
Alan Cox1210db92009-10-06 15:51:10 +0100436 break;
437
438 case TRUEPHY_BIT_SET:
Alan Coxe1bc5842009-10-06 15:51:17 +0100439 MiWrite(etdev, regnum, reg | mask);
Alan Cox1210db92009-10-06 15:51:10 +0100440 break;
441
442 case TRUEPHY_BIT_CLEAR:
Alan Coxe1bc5842009-10-06 15:51:17 +0100443 MiWrite(etdev, regnum, reg & ~mask);
Alan Cox1210db92009-10-06 15:51:10 +0100444 break;
445
446 default:
447 break;
448 }
449}
450
451void ET1310_PhyAdvertise1000BaseT(struct et131x_adapter *etdev,
452 u16 duplex)
453{
454 u16 data;
455
456 /* Read the PHY 1000 Base-T Control Register */
457 MiRead(etdev, PHY_1000_CONTROL, &data);
458
459 /* Clear Bits 8,9 */
460 data &= ~0x0300;
461
462 switch (duplex) {
463 case TRUEPHY_ADV_DUPLEX_NONE:
464 /* Duplex already cleared, do nothing */
465 break;
466
467 case TRUEPHY_ADV_DUPLEX_FULL:
468 /* Set Bit 9 */
469 data |= 0x0200;
470 break;
471
472 case TRUEPHY_ADV_DUPLEX_HALF:
473 /* Set Bit 8 */
474 data |= 0x0100;
475 break;
476
477 case TRUEPHY_ADV_DUPLEX_BOTH:
478 default:
479 data |= 0x0300;
480 break;
481 }
482
483 /* Write back advertisement */
484 MiWrite(etdev, PHY_1000_CONTROL, data);
485}
486
487static void ET1310_PhyAdvertise100BaseT(struct et131x_adapter *etdev,
488 u16 duplex)
489{
490 u16 data;
491
492 /* Read the Autonegotiation Register (10/100) */
493 MiRead(etdev, PHY_AUTO_ADVERTISEMENT, &data);
494
495 /* Clear bits 7,8 */
496 data &= ~0x0180;
497
498 switch (duplex) {
499 case TRUEPHY_ADV_DUPLEX_NONE:
500 /* Duplex already cleared, do nothing */
501 break;
502
503 case TRUEPHY_ADV_DUPLEX_FULL:
504 /* Set Bit 8 */
505 data |= 0x0100;
506 break;
507
508 case TRUEPHY_ADV_DUPLEX_HALF:
509 /* Set Bit 7 */
510 data |= 0x0080;
511 break;
512
513 case TRUEPHY_ADV_DUPLEX_BOTH:
514 default:
515 /* Set Bits 7,8 */
516 data |= 0x0180;
517 break;
518 }
519
520 /* Write back advertisement */
521 MiWrite(etdev, PHY_AUTO_ADVERTISEMENT, data);
522}
523
524static void ET1310_PhyAdvertise10BaseT(struct et131x_adapter *etdev,
525 u16 duplex)
526{
527 u16 data;
528
529 /* Read the Autonegotiation Register (10/100) */
530 MiRead(etdev, PHY_AUTO_ADVERTISEMENT, &data);
531
532 /* Clear bits 5,6 */
533 data &= ~0x0060;
534
535 switch (duplex) {
536 case TRUEPHY_ADV_DUPLEX_NONE:
537 /* Duplex already cleared, do nothing */
538 break;
539
540 case TRUEPHY_ADV_DUPLEX_FULL:
541 /* Set Bit 6 */
542 data |= 0x0040;
543 break;
544
545 case TRUEPHY_ADV_DUPLEX_HALF:
546 /* Set Bit 5 */
547 data |= 0x0020;
548 break;
549
550 case TRUEPHY_ADV_DUPLEX_BOTH:
551 default:
552 /* Set Bits 5,6 */
553 data |= 0x0060;
554 break;
555 }
556
557 /* Write back advertisement */
558 MiWrite(etdev, PHY_AUTO_ADVERTISEMENT, data);
559}
560
Alan Cox1210db92009-10-06 15:51:10 +0100561/**
Alan Coxe1bc5842009-10-06 15:51:17 +0100562 * et131x_setphy_normal - Set PHY for normal operation.
563 * @etdev: pointer to our private adapter structure
Alan Cox1210db92009-10-06 15:51:10 +0100564 *
Alan Coxe1bc5842009-10-06 15:51:17 +0100565 * Used by Power Management to force the PHY into 10 Base T half-duplex mode,
566 * when going to D3 in WOL mode. Also used during initialization to set the
567 * PHY for normal operation.
Alan Cox1210db92009-10-06 15:51:10 +0100568 */
Alan Coxe1bc5842009-10-06 15:51:17 +0100569void et131x_setphy_normal(struct et131x_adapter *etdev)
Alan Cox1210db92009-10-06 15:51:10 +0100570{
Alan Coxe1bc5842009-10-06 15:51:17 +0100571 /* Make sure the PHY is powered up */
Alan Cox1210db92009-10-06 15:51:10 +0100572 ET1310_PhyPowerDown(etdev, 0);
Alan Coxe1bc5842009-10-06 15:51:17 +0100573 et131x_xcvr_init(etdev);
Alan Cox1210db92009-10-06 15:51:10 +0100574}
575
Alan Cox1210db92009-10-06 15:51:10 +0100576
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700577/**
578 * et131x_xcvr_init - Init the phy if we are setting it into force mode
Alan Coxe1bc5842009-10-06 15:51:17 +0100579 * @etdev: pointer to our private adapter structure
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700580 *
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700581 */
Alan Coxe1bc5842009-10-06 15:51:17 +0100582static void et131x_xcvr_init(struct et131x_adapter *etdev)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700583{
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700584 MI_IMR_t imr;
585 MI_ISR_t isr;
586 MI_LCR2_t lcr2;
587
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700588 /* Zero out the adapter structure variable representing BMSR */
Alan Coxe1bc5842009-10-06 15:51:17 +0100589 etdev->Bmsr.value = 0;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700590
Alan Coxe1bc5842009-10-06 15:51:17 +0100591 MiRead(etdev, (u8) offsetof(MI_REGS_t, isr), &isr.value);
592 MiRead(etdev, (u8) offsetof(MI_REGS_t, imr), &imr.value);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700593
594 /* Set the link status interrupt only. Bad behavior when link status
595 * and auto neg are set, we run into a nested interrupt problem
596 */
597 imr.bits.int_en = 0x1;
598 imr.bits.link_status = 0x1;
599 imr.bits.autoneg_status = 0x1;
600
Alan Coxe1bc5842009-10-06 15:51:17 +0100601 MiWrite(etdev, (u8) offsetof(MI_REGS_t, imr), imr.value);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700602
603 /* Set the LED behavior such that LED 1 indicates speed (off =
604 * 10Mbits, blink = 100Mbits, on = 1000Mbits) and LED 2 indicates
605 * link and activity (on for link, blink off for activity).
606 *
607 * NOTE: Some customizations have been added here for specific
608 * vendors; The LED behavior is now determined by vendor data in the
609 * EEPROM. However, the above description is the default.
610 */
Alan Coxe1bc5842009-10-06 15:51:17 +0100611 if ((etdev->eepromData[1] & 0x4) == 0) {
612 MiRead(etdev, (u8) offsetof(MI_REGS_t, lcr2),
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700613 &lcr2.value);
Alan Coxe1bc5842009-10-06 15:51:17 +0100614 if ((etdev->eepromData[1] & 0x8) == 0)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700615 lcr2.bits.led_tx_rx = 0x3;
616 else
617 lcr2.bits.led_tx_rx = 0x4;
618 lcr2.bits.led_link = 0xa;
Alan Coxe1bc5842009-10-06 15:51:17 +0100619 MiWrite(etdev, (u8) offsetof(MI_REGS_t, lcr2),
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700620 lcr2.value);
621 }
622
623 /* Determine if we need to go into a force mode and set it */
Alan Coxe1bc5842009-10-06 15:51:17 +0100624 if (etdev->AiForceSpeed == 0 && etdev->AiForceDpx == 0) {
625 if (etdev->RegistryFlowControl == TxOnly ||
626 etdev->RegistryFlowControl == Both)
627 ET1310_PhyAccessMiBit(etdev,
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700628 TRUEPHY_BIT_SET, 4, 11, NULL);
Alan Cox1210db92009-10-06 15:51:10 +0100629 else
Alan Coxe1bc5842009-10-06 15:51:17 +0100630 ET1310_PhyAccessMiBit(etdev,
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700631 TRUEPHY_BIT_CLEAR, 4, 11, NULL);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700632
Alan Coxe1bc5842009-10-06 15:51:17 +0100633 if (etdev->RegistryFlowControl == Both)
634 ET1310_PhyAccessMiBit(etdev,
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700635 TRUEPHY_BIT_SET, 4, 10, NULL);
Alan Cox1210db92009-10-06 15:51:10 +0100636 else
Alan Coxe1bc5842009-10-06 15:51:17 +0100637 ET1310_PhyAccessMiBit(etdev,
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700638 TRUEPHY_BIT_CLEAR, 4, 10, NULL);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700639
640 /* Set the phy to autonegotiation */
Alan Coxe1bc5842009-10-06 15:51:17 +0100641 ET1310_PhyAutoNeg(etdev, true);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700642
643 /* NOTE - Do we need this? */
Alan Coxe1bc5842009-10-06 15:51:17 +0100644 ET1310_PhyAccessMiBit(etdev, TRUEPHY_BIT_SET, 0, 9, NULL);
645 return;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700646 }
Alan Coxe1bc5842009-10-06 15:51:17 +0100647
648 ET1310_PhyAutoNeg(etdev, false);
649
650 /* Set to the correct force mode. */
651 if (etdev->AiForceDpx != 1) {
652 if (etdev->RegistryFlowControl == TxOnly ||
653 etdev->RegistryFlowControl == Both)
654 ET1310_PhyAccessMiBit(etdev,
655 TRUEPHY_BIT_SET, 4, 11, NULL);
656 else
657 ET1310_PhyAccessMiBit(etdev,
658 TRUEPHY_BIT_CLEAR, 4, 11, NULL);
659
660 if (etdev->RegistryFlowControl == Both)
661 ET1310_PhyAccessMiBit(etdev,
662 TRUEPHY_BIT_SET, 4, 10, NULL);
663 else
664 ET1310_PhyAccessMiBit(etdev,
665 TRUEPHY_BIT_CLEAR, 4, 10, NULL);
666 } else {
667 ET1310_PhyAccessMiBit(etdev, TRUEPHY_BIT_CLEAR, 4, 10, NULL);
668 ET1310_PhyAccessMiBit(etdev, TRUEPHY_BIT_CLEAR, 4, 11, NULL);
669 }
670 ET1310_PhyPowerDown(etdev, 1);
671 switch (etdev->AiForceSpeed) {
672 case 10:
673 /* First we need to turn off all other advertisement */
674 ET1310_PhyAdvertise1000BaseT(etdev, TRUEPHY_ADV_DUPLEX_NONE);
675 ET1310_PhyAdvertise100BaseT(etdev, TRUEPHY_ADV_DUPLEX_NONE);
676 if (etdev->AiForceDpx == 1) {
677 /* Set our advertise values accordingly */
678 ET1310_PhyAdvertise10BaseT(etdev,
679 TRUEPHY_ADV_DUPLEX_HALF);
680 } else if (etdev->AiForceDpx == 2) {
681 /* Set our advertise values accordingly */
682 ET1310_PhyAdvertise10BaseT(etdev,
683 TRUEPHY_ADV_DUPLEX_FULL);
684 } else {
685 /* Disable autoneg */
686 ET1310_PhyAutoNeg(etdev, false);
687 /* Disable rest of the advertisements */
688 ET1310_PhyAdvertise10BaseT(etdev,
689 TRUEPHY_ADV_DUPLEX_NONE);
690 /* Force 10 Mbps */
691 ET1310_PhySpeedSelect(etdev, TRUEPHY_SPEED_10MBPS);
692 /* Force Full duplex */
693 ET1310_PhyDuplexMode(etdev, TRUEPHY_DUPLEX_FULL);
694 }
695 break;
696 case 100:
697 /* first we need to turn off all other advertisement */
698 ET1310_PhyAdvertise1000BaseT(etdev, TRUEPHY_ADV_DUPLEX_NONE);
699 ET1310_PhyAdvertise10BaseT(etdev, TRUEPHY_ADV_DUPLEX_NONE);
700 if (etdev->AiForceDpx == 1) {
701 /* Set our advertise values accordingly */
702 ET1310_PhyAdvertise100BaseT(etdev,
703 TRUEPHY_ADV_DUPLEX_HALF);
704 /* Set speed */
705 ET1310_PhySpeedSelect(etdev, TRUEPHY_SPEED_100MBPS);
706 } else if (etdev->AiForceDpx == 2) {
707 /* Set our advertise values accordingly */
708 ET1310_PhyAdvertise100BaseT(etdev,
709 TRUEPHY_ADV_DUPLEX_FULL);
710 } else {
711 /* Disable autoneg */
712 ET1310_PhyAutoNeg(etdev, false);
713 /* Disable other advertisement */
714 ET1310_PhyAdvertise100BaseT(etdev,
715 TRUEPHY_ADV_DUPLEX_NONE);
716 /* Force 100 Mbps */
717 ET1310_PhySpeedSelect(etdev, TRUEPHY_SPEED_100MBPS);
718 /* Force Full duplex */
719 ET1310_PhyDuplexMode(etdev, TRUEPHY_DUPLEX_FULL);
720 }
721 break;
722 case 1000:
723 /* first we need to turn off all other advertisement */
724 ET1310_PhyAdvertise100BaseT(etdev, TRUEPHY_ADV_DUPLEX_NONE);
725 ET1310_PhyAdvertise10BaseT(etdev, TRUEPHY_ADV_DUPLEX_NONE);
726 /* set our advertise values accordingly */
727 ET1310_PhyAdvertise1000BaseT(etdev, TRUEPHY_ADV_DUPLEX_FULL);
728 break;
729 }
730 ET1310_PhyPowerDown(etdev, 0);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700731}
732
Alan Cox25ad00b2009-08-19 18:21:44 +0100733void et131x_Mii_check(struct et131x_adapter *etdev,
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700734 MI_BMSR_t bmsr, MI_BMSR_t bmsr_ints)
735{
Alan Cox1210db92009-10-06 15:51:10 +0100736 u8 link_status;
737 u32 autoneg_status;
738 u32 speed;
739 u32 duplex;
740 u32 mdi_mdix;
741 u32 masterslave;
742 u32 polarity;
Alan Cox37628602009-08-19 18:21:50 +0100743 unsigned long flags;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700744
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700745 if (bmsr_ints.bits.link_status) {
746 if (bmsr.bits.link_status) {
Alan Cox25ad00b2009-08-19 18:21:44 +0100747 etdev->PoMgmt.TransPhyComaModeOnBoot = 20;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700748
749 /* Update our state variables and indicate the
750 * connected state
751 */
Alan Cox37628602009-08-19 18:21:50 +0100752 spin_lock_irqsave(&etdev->Lock, flags);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700753
Alan Cox25ad00b2009-08-19 18:21:44 +0100754 etdev->MediaState = NETIF_STATUS_MEDIA_CONNECT;
Alan Coxf6b35d62009-08-27 11:02:05 +0100755 etdev->Flags &= ~fMP_ADAPTER_LINK_DETECTION;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700756
Alan Cox37628602009-08-19 18:21:50 +0100757 spin_unlock_irqrestore(&etdev->Lock, flags);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700758
Alan Cox5f1377d2009-10-06 15:47:55 +0100759 netif_carrier_on(etdev->netdev);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700760 } else {
Alan Cox15700032009-08-27 11:03:09 +0100761 dev_warn(&etdev->pdev->dev,
762 "Link down - cable problem ?\n");
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700763
Alan Cox9fa81092009-08-27 11:00:36 +0100764 if (etdev->linkspeed == TRUEPHY_SPEED_10MBPS) {
Alan Cox64f93032009-06-10 17:30:41 +0100765 /* NOTE - Is there a way to query this without
766 * TruePHY?
Alan Cox25ad00b2009-08-19 18:21:44 +0100767 * && TRU_QueryCoreType(etdev->hTruePhy, 0) == EMI_TRUEPHY_A13O) {
Alan Cox64f93032009-06-10 17:30:41 +0100768 */
Alan Cox1210db92009-10-06 15:51:10 +0100769 u16 Register18;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700770
Alan Cox25ad00b2009-08-19 18:21:44 +0100771 MiRead(etdev, 0x12, &Register18);
772 MiWrite(etdev, 0x12, Register18 | 0x4);
773 MiWrite(etdev, 0x10, Register18 | 0x8402);
774 MiWrite(etdev, 0x11, Register18 | 511);
775 MiWrite(etdev, 0x12, Register18);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700776 }
777
778 /* For the first N seconds of life, we are in "link
779 * detection" When we are in this state, we should
780 * only report "connected". When the LinkDetection
781 * Timer expires, we can report disconnected (handled
782 * in the LinkDetectionDPC).
783 */
Alan Coxf6b35d62009-08-27 11:02:05 +0100784 if (!(etdev->Flags & fMP_ADAPTER_LINK_DETECTION) ||
785 (etdev->MediaState == NETIF_STATUS_MEDIA_DISCONNECT)) {
Alan Cox37628602009-08-19 18:21:50 +0100786 spin_lock_irqsave(&etdev->Lock, flags);
Alan Cox25ad00b2009-08-19 18:21:44 +0100787 etdev->MediaState =
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700788 NETIF_STATUS_MEDIA_DISCONNECT;
Alan Cox25ad00b2009-08-19 18:21:44 +0100789 spin_unlock_irqrestore(&etdev->Lock,
Alan Cox37628602009-08-19 18:21:50 +0100790 flags);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700791
Alan Cox5f1377d2009-10-06 15:47:55 +0100792 netif_carrier_off(etdev->netdev);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700793 }
794
Alan Cox9fa81092009-08-27 11:00:36 +0100795 etdev->linkspeed = 0;
Alan Cox576b38e2009-08-27 11:00:47 +0100796 etdev->duplex_mode = 0;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700797
798 /* Free the packets being actively sent & stopped */
Alan Cox25ad00b2009-08-19 18:21:44 +0100799 et131x_free_busy_send_packets(etdev);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700800
801 /* Re-initialize the send structures */
Alan Cox25ad00b2009-08-19 18:21:44 +0100802 et131x_init_send(etdev);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700803
804 /* Reset the RFD list and re-start RU */
Alan Cox25ad00b2009-08-19 18:21:44 +0100805 et131x_reset_recv(etdev);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700806
807 /*
808 * Bring the device back to the state it was during
809 * init prior to autonegotiation being complete. This
810 * way, when we get the auto-neg complete interrupt,
811 * we can complete init by calling ConfigMacREGS2.
812 */
Alan Cox25ad00b2009-08-19 18:21:44 +0100813 et131x_soft_reset(etdev);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700814
815 /* Setup ET1310 as per the documentation */
Alan Cox25ad00b2009-08-19 18:21:44 +0100816 et131x_adapter_setup(etdev);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700817
818 /* Setup the PHY into coma mode until the cable is
819 * plugged back in
820 */
Alan Cox25ad00b2009-08-19 18:21:44 +0100821 if (etdev->RegistryPhyComa == 1)
822 EnablePhyComa(etdev);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700823 }
824 }
825
826 if (bmsr_ints.bits.auto_neg_complete ||
Alan Cox25ad00b2009-08-19 18:21:44 +0100827 (etdev->AiForceDpx == 3 && bmsr_ints.bits.link_status)) {
828 if (bmsr.bits.auto_neg_complete || etdev->AiForceDpx == 3) {
829 ET1310_PhyLinkStatus(etdev,
Alan Cox9fa81092009-08-27 11:00:36 +0100830 &link_status, &autoneg_status,
831 &speed, &duplex, &mdi_mdix,
832 &masterslave, &polarity);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700833
Alan Cox9fa81092009-08-27 11:00:36 +0100834 etdev->linkspeed = speed;
835 etdev->duplex_mode = duplex;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700836
Alan Cox25ad00b2009-08-19 18:21:44 +0100837 etdev->PoMgmt.TransPhyComaModeOnBoot = 20;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700838
Alan Cox9fa81092009-08-27 11:00:36 +0100839 if (etdev->linkspeed == TRUEPHY_SPEED_10MBPS) {
Alan Cox64f93032009-06-10 17:30:41 +0100840 /*
841 * NOTE - Is there a way to query this without
842 * TruePHY?
Alan Cox25ad00b2009-08-19 18:21:44 +0100843 * && TRU_QueryCoreType(etdev->hTruePhy, 0)== EMI_TRUEPHY_A13O) {
Alan Cox64f93032009-06-10 17:30:41 +0100844 */
Alan Cox1210db92009-10-06 15:51:10 +0100845 u16 Register18;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700846
Alan Cox25ad00b2009-08-19 18:21:44 +0100847 MiRead(etdev, 0x12, &Register18);
848 MiWrite(etdev, 0x12, Register18 | 0x4);
849 MiWrite(etdev, 0x10, Register18 | 0x8402);
850 MiWrite(etdev, 0x11, Register18 | 511);
851 MiWrite(etdev, 0x12, Register18);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700852 }
853
Alan Cox25ad00b2009-08-19 18:21:44 +0100854 ConfigFlowControl(etdev);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700855
Alan Cox9fa81092009-08-27 11:00:36 +0100856 if (etdev->linkspeed == TRUEPHY_SPEED_1000MBPS &&
Alan Cox25ad00b2009-08-19 18:21:44 +0100857 etdev->RegistryJumboPacket > 2048)
858 ET1310_PhyAndOrReg(etdev, 0x16, 0xcfff,
Alan Cox64f93032009-06-10 17:30:41 +0100859 0x2000);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700860
Alan Cox25ad00b2009-08-19 18:21:44 +0100861 SetRxDmaTimer(etdev);
862 ConfigMACRegs2(etdev);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700863 }
864 }
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700865}
866
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700867/*
868 * The routines which follow provide low-level access to the PHY, and are used
869 * primarily by the routines above (although there are a few places elsewhere
870 * in the driver where this level of access is required).
871 */
872
Alan Cox1210db92009-10-06 15:51:10 +0100873static const u16 ConfigPhy[25][2] = {
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700874 /* Reg Value Register */
875 /* Addr */
876 {0x880B, 0x0926}, /* AfeIfCreg4B1000Msbs */
877 {0x880C, 0x0926}, /* AfeIfCreg4B100Msbs */
878 {0x880D, 0x0926}, /* AfeIfCreg4B10Msbs */
879
880 {0x880E, 0xB4D3}, /* AfeIfCreg4B1000Lsbs */
881 {0x880F, 0xB4D3}, /* AfeIfCreg4B100Lsbs */
882 {0x8810, 0xB4D3}, /* AfeIfCreg4B10Lsbs */
883
884 {0x8805, 0xB03E}, /* AfeIfCreg3B1000Msbs */
885 {0x8806, 0xB03E}, /* AfeIfCreg3B100Msbs */
886 {0x8807, 0xFF00}, /* AfeIfCreg3B10Msbs */
887
888 {0x8808, 0xE090}, /* AfeIfCreg3B1000Lsbs */
889 {0x8809, 0xE110}, /* AfeIfCreg3B100Lsbs */
890 {0x880A, 0x0000}, /* AfeIfCreg3B10Lsbs */
891
892 {0x300D, 1}, /* DisableNorm */
893
894 {0x280C, 0x0180}, /* LinkHoldEnd */
895
896 {0x1C21, 0x0002}, /* AlphaM */
897
898 {0x3821, 6}, /* FfeLkgTx0 */
899 {0x381D, 1}, /* FfeLkg1g4 */
900 {0x381E, 1}, /* FfeLkg1g5 */
901 {0x381F, 1}, /* FfeLkg1g6 */
902 {0x3820, 1}, /* FfeLkg1g7 */
903
904 {0x8402, 0x01F0}, /* Btinact */
905 {0x800E, 20}, /* LftrainTime */
906 {0x800F, 24}, /* DvguardTime */
907 {0x8010, 46}, /* IdlguardTime */
908
909 {0, 0}
910
911};
912
913/* condensed version of the phy initialization routine */
Alan Cox25ad00b2009-08-19 18:21:44 +0100914void ET1310_PhyInit(struct et131x_adapter *etdev)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700915{
Alan Cox1210db92009-10-06 15:51:10 +0100916 u16 data, index;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700917
Alan Cox25ad00b2009-08-19 18:21:44 +0100918 if (etdev == NULL)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700919 return;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700920
Alan Cox64f93032009-06-10 17:30:41 +0100921 /* get the identity (again ?) */
Alan Cox9fa81092009-08-27 11:00:36 +0100922 MiRead(etdev, PHY_ID_1, &data);
923 MiRead(etdev, PHY_ID_2, &data);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700924
Alan Cox64f93032009-06-10 17:30:41 +0100925 /* what does this do/achieve ? */
Alan Cox9fa81092009-08-27 11:00:36 +0100926 MiRead(etdev, PHY_MPHY_CONTROL_REG, &data); /* should read 0002 */
Alan Cox25ad00b2009-08-19 18:21:44 +0100927 MiWrite(etdev, PHY_MPHY_CONTROL_REG, 0x0006);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700928
Alan Cox64f93032009-06-10 17:30:41 +0100929 /* read modem register 0402, should I do something with the return
930 data ? */
Alan Cox25ad00b2009-08-19 18:21:44 +0100931 MiWrite(etdev, PHY_INDEX_REG, 0x0402);
Alan Cox9fa81092009-08-27 11:00:36 +0100932 MiRead(etdev, PHY_DATA_REG, &data);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700933
Alan Cox64f93032009-06-10 17:30:41 +0100934 /* what does this do/achieve ? */
Alan Cox25ad00b2009-08-19 18:21:44 +0100935 MiWrite(etdev, PHY_MPHY_CONTROL_REG, 0x0002);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700936
Alan Cox64f93032009-06-10 17:30:41 +0100937 /* get the identity (again ?) */
Alan Cox9fa81092009-08-27 11:00:36 +0100938 MiRead(etdev, PHY_ID_1, &data);
939 MiRead(etdev, PHY_ID_2, &data);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700940
Alan Cox64f93032009-06-10 17:30:41 +0100941 /* what does this achieve ? */
Alan Cox9fa81092009-08-27 11:00:36 +0100942 MiRead(etdev, PHY_MPHY_CONTROL_REG, &data); /* should read 0002 */
Alan Cox25ad00b2009-08-19 18:21:44 +0100943 MiWrite(etdev, PHY_MPHY_CONTROL_REG, 0x0006);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700944
Alan Cox64f93032009-06-10 17:30:41 +0100945 /* read modem register 0402, should I do something with
946 the return data? */
Alan Cox25ad00b2009-08-19 18:21:44 +0100947 MiWrite(etdev, PHY_INDEX_REG, 0x0402);
Alan Cox9fa81092009-08-27 11:00:36 +0100948 MiRead(etdev, PHY_DATA_REG, &data);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700949
Alan Cox25ad00b2009-08-19 18:21:44 +0100950 MiWrite(etdev, PHY_MPHY_CONTROL_REG, 0x0002);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700951
Alan Cox64f93032009-06-10 17:30:41 +0100952 /* what does this achieve (should return 0x1040) */
Alan Cox9fa81092009-08-27 11:00:36 +0100953 MiRead(etdev, PHY_CONTROL, &data);
954 MiRead(etdev, PHY_MPHY_CONTROL_REG, &data); /* should read 0002 */
Alan Cox25ad00b2009-08-19 18:21:44 +0100955 MiWrite(etdev, PHY_CONTROL, 0x1840);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700956
Alan Cox25ad00b2009-08-19 18:21:44 +0100957 MiWrite(etdev, PHY_MPHY_CONTROL_REG, 0x0007);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700958
Alan Cox64f93032009-06-10 17:30:41 +0100959 /* here the writing of the array starts.... */
Alan Cox9fa81092009-08-27 11:00:36 +0100960 index = 0;
961 while (ConfigPhy[index][0] != 0x0000) {
Alan Cox64f93032009-06-10 17:30:41 +0100962 /* write value */
Alan Cox9fa81092009-08-27 11:00:36 +0100963 MiWrite(etdev, PHY_INDEX_REG, ConfigPhy[index][0]);
964 MiWrite(etdev, PHY_DATA_REG, ConfigPhy[index][1]);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700965
Alan Cox64f93032009-06-10 17:30:41 +0100966 /* read it back */
Alan Cox9fa81092009-08-27 11:00:36 +0100967 MiWrite(etdev, PHY_INDEX_REG, ConfigPhy[index][0]);
968 MiRead(etdev, PHY_DATA_REG, &data);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700969
Alan Cox64f93032009-06-10 17:30:41 +0100970 /* do a check on the value read back ? */
Alan Cox9fa81092009-08-27 11:00:36 +0100971 index++;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700972 }
Alan Cox64f93032009-06-10 17:30:41 +0100973 /* here the writing of the array ends... */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700974
Alan Cox9fa81092009-08-27 11:00:36 +0100975 MiRead(etdev, PHY_CONTROL, &data); /* 0x1840 */
976 MiRead(etdev, PHY_MPHY_CONTROL_REG, &data);/* should read 0007 */
Alan Cox25ad00b2009-08-19 18:21:44 +0100977 MiWrite(etdev, PHY_CONTROL, 0x1040);
978 MiWrite(etdev, PHY_MPHY_CONTROL_REG, 0x0002);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700979}
980