blob: 829f0828537c308fb25036b4d8a69d2250c8c92e [file] [log] [blame]
Dave Liue732e9c2006-11-03 12:11:15 -06001/*
2 * Copyright (C) 2005 Freescale Semiconductor, Inc.
3 *
4 * Author: Shlomi Gridish
5 *
6 * Description: UCC GETH Driver -- PHY handling
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +01007 * Driver for UEC on QE
8 * Based on 8260_io/fcc_enet.c
Dave Liue732e9c2006-11-03 12:11:15 -06009 *
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +010010 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the
Dave Liue732e9c2006-11-03 12:11:15 -060012 * Free Software Foundation; either version 2 of the License, or (at your
13 * option) any later version.
14 *
15 */
16
17#include "common.h"
18#include "net.h"
19#include "malloc.h"
20#include "asm/errno.h"
21#include "asm/immap_qe.h"
22#include "asm/io.h"
23#include "qe.h"
24#include "uccf.h"
25#include "uec.h"
26#include "uec_phy.h"
27#include "miiphy.h"
28
Dave Liue732e9c2006-11-03 12:11:15 -060029#define ugphy_printk(format, arg...) \
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +010030 printf(format "\n", ## arg)
Dave Liue732e9c2006-11-03 12:11:15 -060031
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +010032#define ugphy_dbg(format, arg...) \
33 ugphy_printk(format , ## arg)
34#define ugphy_err(format, arg...) \
35 ugphy_printk(format , ## arg)
36#define ugphy_info(format, arg...) \
37 ugphy_printk(format , ## arg)
38#define ugphy_warn(format, arg...) \
39 ugphy_printk(format , ## arg)
Dave Liue732e9c2006-11-03 12:11:15 -060040
41#ifdef UEC_VERBOSE_DEBUG
42#define ugphy_vdbg ugphy_dbg
43#else
44#define ugphy_vdbg(ugeth, fmt, args...) do { } while (0)
45#endif /* UEC_VERBOSE_DEBUG */
46
Richard Retanubun9a45dcc2008-10-23 09:08:18 -040047/*--------------------------------------------------------------------+
48 * Fixed PHY (PHY-less) support for Ethernet Ports.
49 *
50 * Copied from cpu/ppc4xx/4xx_enet.c
51 *--------------------------------------------------------------------*/
52
53/*
54 * Some boards do not have a PHY for each ethernet port. These ports
55 * are known as Fixed PHY (or PHY-less) ports. For such ports, set
56 * the appropriate CONFIG_PHY_ADDR equal to CONFIG_FIXED_PHY and
57 * then define CONFIG_SYS_FIXED_PHY_PORTS to define what the speed and
58 * duplex should be for these ports in the board configuration
59 * file.
60 *
61 * For Example:
62 * #define CONFIG_FIXED_PHY 0xFFFFFFFF
63 *
64 * #define CONFIG_PHY_ADDR CONFIG_FIXED_PHY
65 * #define CONFIG_PHY1_ADDR 1
66 * #define CONFIG_PHY2_ADDR CONFIG_FIXED_PHY
67 * #define CONFIG_PHY3_ADDR 3
68 *
69 * #define CONFIG_SYS_FIXED_PHY_PORT(devnum,speed,duplex) \
70 * {devnum, speed, duplex},
71 *
72 * #define CONFIG_SYS_FIXED_PHY_PORTS \
73 * CONFIG_SYS_FIXED_PHY_PORT(0,SPEED_100,DUPLEX_FULL) \
74 * CONFIG_SYS_FIXED_PHY_PORT(2,SPEED_100,DUPLEX_HALF)
75 */
76
77#ifndef CONFIG_FIXED_PHY
78#define CONFIG_FIXED_PHY 0xFFFFFFFF /* Fixed PHY (PHY-less) */
79#endif
80
81#ifndef CONFIG_SYS_FIXED_PHY_PORTS
82#define CONFIG_SYS_FIXED_PHY_PORTS /* default is an empty array */
83#endif
84
85struct fixed_phy_port {
86 unsigned int devnum; /* ethernet port */
87 unsigned int speed; /* specified speed 10,100 or 1000 */
88 unsigned int duplex; /* specified duplex FULL or HALF */
89};
90
91static const struct fixed_phy_port fixed_phy_port[] = {
92 CONFIG_SYS_FIXED_PHY_PORTS /* defined in board configuration file */
93};
94
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +010095static void config_genmii_advert (struct uec_mii_info *mii_info);
96static void genmii_setup_forced (struct uec_mii_info *mii_info);
97static void genmii_restart_aneg (struct uec_mii_info *mii_info);
98static int gbit_config_aneg (struct uec_mii_info *mii_info);
99static int genmii_config_aneg (struct uec_mii_info *mii_info);
100static int genmii_update_link (struct uec_mii_info *mii_info);
101static int genmii_read_status (struct uec_mii_info *mii_info);
102u16 phy_read (struct uec_mii_info *mii_info, u16 regnum);
103void phy_write (struct uec_mii_info *mii_info, u16 regnum, u16 val);
Dave Liue732e9c2006-11-03 12:11:15 -0600104
105/* Write value to the PHY for this device to the register at regnum, */
106/* waiting until the write is done before it returns. All PHY */
107/* configuration has to be done through the TSEC1 MIIM regs */
Andy Flemingee0e9172007-08-14 00:14:25 -0500108void uec_write_phy_reg (struct eth_device *dev, int mii_id, int regnum, int value)
Dave Liue732e9c2006-11-03 12:11:15 -0600109{
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100110 uec_private_t *ugeth = (uec_private_t *) dev->priv;
Andy Flemingee0e9172007-08-14 00:14:25 -0500111 uec_mii_t *ug_regs;
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100112 enet_tbi_mii_reg_e mii_reg = (enet_tbi_mii_reg_e) regnum;
113 u32 tmp_reg;
Dave Liue732e9c2006-11-03 12:11:15 -0600114
Andy Flemingee0e9172007-08-14 00:14:25 -0500115 ug_regs = ugeth->uec_mii_regs;
Dave Liue732e9c2006-11-03 12:11:15 -0600116
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100117 /* Stop the MII management read cycle */
118 out_be32 (&ug_regs->miimcom, 0);
119 /* Setting up the MII Mangement Address Register */
120 tmp_reg = ((u32) mii_id << MIIMADD_PHY_ADDRESS_SHIFT) | mii_reg;
121 out_be32 (&ug_regs->miimadd, tmp_reg);
Dave Liue732e9c2006-11-03 12:11:15 -0600122
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100123 /* Setting up the MII Mangement Control Register with the value */
124 out_be32 (&ug_regs->miimcon, (u32) value);
Kim Phillipsd986cba2008-01-15 14:11:00 -0600125 sync();
Dave Liue732e9c2006-11-03 12:11:15 -0600126
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100127 /* Wait till MII management write is complete */
128 while ((in_be32 (&ug_regs->miimind)) & MIIMIND_BUSY);
Dave Liue732e9c2006-11-03 12:11:15 -0600129}
130
131/* Reads from register regnum in the PHY for device dev, */
132/* returning the value. Clears miimcom first. All PHY */
133/* configuration has to be done through the TSEC1 MIIM regs */
Andy Flemingee0e9172007-08-14 00:14:25 -0500134int uec_read_phy_reg (struct eth_device *dev, int mii_id, int regnum)
Dave Liue732e9c2006-11-03 12:11:15 -0600135{
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100136 uec_private_t *ugeth = (uec_private_t *) dev->priv;
Andy Flemingee0e9172007-08-14 00:14:25 -0500137 uec_mii_t *ug_regs;
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100138 enet_tbi_mii_reg_e mii_reg = (enet_tbi_mii_reg_e) regnum;
139 u32 tmp_reg;
140 u16 value;
Dave Liue732e9c2006-11-03 12:11:15 -0600141
Andy Flemingee0e9172007-08-14 00:14:25 -0500142 ug_regs = ugeth->uec_mii_regs;
Dave Liue732e9c2006-11-03 12:11:15 -0600143
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100144 /* Setting up the MII Mangement Address Register */
145 tmp_reg = ((u32) mii_id << MIIMADD_PHY_ADDRESS_SHIFT) | mii_reg;
146 out_be32 (&ug_regs->miimadd, tmp_reg);
Dave Liue732e9c2006-11-03 12:11:15 -0600147
Kim Phillipsd986cba2008-01-15 14:11:00 -0600148 /* clear MII management command cycle */
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100149 out_be32 (&ug_regs->miimcom, 0);
Kim Phillipsd986cba2008-01-15 14:11:00 -0600150 sync();
151
152 /* Perform an MII management read cycle */
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100153 out_be32 (&ug_regs->miimcom, MIIMCOM_READ_CYCLE);
Dave Liue732e9c2006-11-03 12:11:15 -0600154
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100155 /* Wait till MII management write is complete */
156 while ((in_be32 (&ug_regs->miimind)) &
157 (MIIMIND_NOT_VALID | MIIMIND_BUSY));
Dave Liue732e9c2006-11-03 12:11:15 -0600158
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100159 /* Read MII management status */
160 value = (u16) in_be32 (&ug_regs->miimstat);
161 if (value == 0xffff)
Joakim Tjernlund3d7f2552008-01-16 09:40:41 +0100162 ugphy_vdbg
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100163 ("read wrong value : mii_id %d,mii_reg %d, base %08x",
164 mii_id, mii_reg, (u32) & (ug_regs->miimcfg));
Dave Liue732e9c2006-11-03 12:11:15 -0600165
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100166 return (value);
Dave Liue732e9c2006-11-03 12:11:15 -0600167}
168
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100169void mii_clear_phy_interrupt (struct uec_mii_info *mii_info)
Dave Liue732e9c2006-11-03 12:11:15 -0600170{
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100171 if (mii_info->phyinfo->ack_interrupt)
172 mii_info->phyinfo->ack_interrupt (mii_info);
Dave Liue732e9c2006-11-03 12:11:15 -0600173}
174
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100175void mii_configure_phy_interrupt (struct uec_mii_info *mii_info,
176 u32 interrupts)
Dave Liue732e9c2006-11-03 12:11:15 -0600177{
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100178 mii_info->interrupts = interrupts;
179 if (mii_info->phyinfo->config_intr)
180 mii_info->phyinfo->config_intr (mii_info);
Dave Liue732e9c2006-11-03 12:11:15 -0600181}
182
183/* Writes MII_ADVERTISE with the appropriate values, after
184 * sanitizing advertise to make sure only supported features
185 * are advertised
186 */
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100187static void config_genmii_advert (struct uec_mii_info *mii_info)
Dave Liue732e9c2006-11-03 12:11:15 -0600188{
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100189 u32 advertise;
190 u16 adv;
Dave Liue732e9c2006-11-03 12:11:15 -0600191
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100192 /* Only allow advertising what this PHY supports */
193 mii_info->advertising &= mii_info->phyinfo->features;
194 advertise = mii_info->advertising;
Dave Liue732e9c2006-11-03 12:11:15 -0600195
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100196 /* Setup standard advertisement */
197 adv = phy_read (mii_info, PHY_ANAR);
198 adv &= ~(ADVERTISE_ALL | ADVERTISE_100BASE4);
199 if (advertise & ADVERTISED_10baseT_Half)
200 adv |= ADVERTISE_10HALF;
201 if (advertise & ADVERTISED_10baseT_Full)
202 adv |= ADVERTISE_10FULL;
203 if (advertise & ADVERTISED_100baseT_Half)
204 adv |= ADVERTISE_100HALF;
205 if (advertise & ADVERTISED_100baseT_Full)
206 adv |= ADVERTISE_100FULL;
207 phy_write (mii_info, PHY_ANAR, adv);
Dave Liue732e9c2006-11-03 12:11:15 -0600208}
209
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100210static void genmii_setup_forced (struct uec_mii_info *mii_info)
Dave Liue732e9c2006-11-03 12:11:15 -0600211{
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100212 u16 ctrl;
213 u32 features = mii_info->phyinfo->features;
Dave Liue732e9c2006-11-03 12:11:15 -0600214
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100215 ctrl = phy_read (mii_info, PHY_BMCR);
Dave Liue732e9c2006-11-03 12:11:15 -0600216
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100217 ctrl &= ~(PHY_BMCR_DPLX | PHY_BMCR_100_MBPS |
218 PHY_BMCR_1000_MBPS | PHY_BMCR_AUTON);
219 ctrl |= PHY_BMCR_RESET;
Dave Liue732e9c2006-11-03 12:11:15 -0600220
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100221 switch (mii_info->speed) {
222 case SPEED_1000:
223 if (features & (SUPPORTED_1000baseT_Half
224 | SUPPORTED_1000baseT_Full)) {
225 ctrl |= PHY_BMCR_1000_MBPS;
226 break;
227 }
228 mii_info->speed = SPEED_100;
229 case SPEED_100:
230 if (features & (SUPPORTED_100baseT_Half
231 | SUPPORTED_100baseT_Full)) {
232 ctrl |= PHY_BMCR_100_MBPS;
233 break;
234 }
235 mii_info->speed = SPEED_10;
236 case SPEED_10:
237 if (features & (SUPPORTED_10baseT_Half
238 | SUPPORTED_10baseT_Full))
239 break;
240 default: /* Unsupported speed! */
241 ugphy_err ("%s: Bad speed!", mii_info->dev->name);
242 break;
243 }
Dave Liue732e9c2006-11-03 12:11:15 -0600244
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100245 phy_write (mii_info, PHY_BMCR, ctrl);
Dave Liue732e9c2006-11-03 12:11:15 -0600246}
247
248/* Enable and Restart Autonegotiation */
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100249static void genmii_restart_aneg (struct uec_mii_info *mii_info)
Dave Liue732e9c2006-11-03 12:11:15 -0600250{
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100251 u16 ctl;
Dave Liue732e9c2006-11-03 12:11:15 -0600252
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100253 ctl = phy_read (mii_info, PHY_BMCR);
254 ctl |= (PHY_BMCR_AUTON | PHY_BMCR_RST_NEG);
255 phy_write (mii_info, PHY_BMCR, ctl);
Dave Liue732e9c2006-11-03 12:11:15 -0600256}
257
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100258static int gbit_config_aneg (struct uec_mii_info *mii_info)
Dave Liue732e9c2006-11-03 12:11:15 -0600259{
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100260 u16 adv;
261 u32 advertise;
Dave Liue732e9c2006-11-03 12:11:15 -0600262
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100263 if (mii_info->autoneg) {
264 /* Configure the ADVERTISE register */
265 config_genmii_advert (mii_info);
266 advertise = mii_info->advertising;
Dave Liue732e9c2006-11-03 12:11:15 -0600267
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100268 adv = phy_read (mii_info, MII_1000BASETCONTROL);
269 adv &= ~(MII_1000BASETCONTROL_FULLDUPLEXCAP |
270 MII_1000BASETCONTROL_HALFDUPLEXCAP);
271 if (advertise & SUPPORTED_1000baseT_Half)
272 adv |= MII_1000BASETCONTROL_HALFDUPLEXCAP;
273 if (advertise & SUPPORTED_1000baseT_Full)
274 adv |= MII_1000BASETCONTROL_FULLDUPLEXCAP;
275 phy_write (mii_info, MII_1000BASETCONTROL, adv);
Dave Liue732e9c2006-11-03 12:11:15 -0600276
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100277 /* Start/Restart aneg */
278 genmii_restart_aneg (mii_info);
279 } else
280 genmii_setup_forced (mii_info);
Dave Liue732e9c2006-11-03 12:11:15 -0600281
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100282 return 0;
Dave Liue732e9c2006-11-03 12:11:15 -0600283}
284
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100285static int marvell_config_aneg (struct uec_mii_info *mii_info)
Dave Liue732e9c2006-11-03 12:11:15 -0600286{
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100287 /* The Marvell PHY has an errata which requires
288 * that certain registers get written in order
289 * to restart autonegotiation */
290 phy_write (mii_info, PHY_BMCR, PHY_BMCR_RESET);
Dave Liue732e9c2006-11-03 12:11:15 -0600291
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100292 phy_write (mii_info, 0x1d, 0x1f);
293 phy_write (mii_info, 0x1e, 0x200c);
294 phy_write (mii_info, 0x1d, 0x5);
295 phy_write (mii_info, 0x1e, 0);
296 phy_write (mii_info, 0x1e, 0x100);
Dave Liue732e9c2006-11-03 12:11:15 -0600297
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100298 gbit_config_aneg (mii_info);
Dave Liue732e9c2006-11-03 12:11:15 -0600299
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100300 return 0;
Dave Liue732e9c2006-11-03 12:11:15 -0600301}
302
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100303static int genmii_config_aneg (struct uec_mii_info *mii_info)
Dave Liue732e9c2006-11-03 12:11:15 -0600304{
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100305 if (mii_info->autoneg) {
306 config_genmii_advert (mii_info);
307 genmii_restart_aneg (mii_info);
308 } else
309 genmii_setup_forced (mii_info);
Dave Liue732e9c2006-11-03 12:11:15 -0600310
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100311 return 0;
Dave Liue732e9c2006-11-03 12:11:15 -0600312}
313
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100314static int genmii_update_link (struct uec_mii_info *mii_info)
Dave Liue732e9c2006-11-03 12:11:15 -0600315{
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100316 u16 status;
Dave Liue732e9c2006-11-03 12:11:15 -0600317
Kim Phillipsd986cba2008-01-15 14:11:00 -0600318 /* Status is read once to clear old link state */
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100319 phy_read (mii_info, PHY_BMSR);
Dave Liue732e9c2006-11-03 12:11:15 -0600320
Kim Phillipsd986cba2008-01-15 14:11:00 -0600321 /*
322 * Wait if the link is up, and autonegotiation is in progress
323 * (ie - we're capable and it's not done)
324 */
325 status = phy_read(mii_info, PHY_BMSR);
326 if ((status & PHY_BMSR_LS) && (status & PHY_BMSR_AUTN_ABLE)
327 && !(status & PHY_BMSR_AUTN_COMP)) {
328 int i = 0;
Dave Liue732e9c2006-11-03 12:11:15 -0600329
Kim Phillipsd986cba2008-01-15 14:11:00 -0600330 while (!(status & PHY_BMSR_AUTN_COMP)) {
331 /*
332 * Timeout reached ?
333 */
334 if (i > UGETH_AN_TIMEOUT) {
335 mii_info->link = 0;
336 return 0;
337 }
338
Kim Phillipsb5da4272008-02-27 16:08:22 -0600339 i++;
Kim Phillipsd986cba2008-01-15 14:11:00 -0600340 udelay(1000); /* 1 ms */
341 status = phy_read(mii_info, PHY_BMSR);
342 }
343 mii_info->link = 1;
344 udelay(500000); /* another 500 ms (results in faster booting) */
345 } else {
346 if (status & PHY_BMSR_LS)
347 mii_info->link = 1;
348 else
349 mii_info->link = 0;
350 }
Dave Liue732e9c2006-11-03 12:11:15 -0600351
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100352 return 0;
Dave Liue732e9c2006-11-03 12:11:15 -0600353}
354
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100355static int genmii_read_status (struct uec_mii_info *mii_info)
Dave Liue732e9c2006-11-03 12:11:15 -0600356{
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100357 u16 status;
358 int err;
Dave Liue732e9c2006-11-03 12:11:15 -0600359
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100360 /* Update the link, but return if there
361 * was an error */
362 err = genmii_update_link (mii_info);
363 if (err)
364 return err;
Dave Liue732e9c2006-11-03 12:11:15 -0600365
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100366 if (mii_info->autoneg) {
Anton Vorontsov951800b2008-03-24 20:46:24 +0300367 status = phy_read(mii_info, MII_1000BASETSTATUS);
368
369 if (status & (LPA_1000FULL | LPA_1000HALF)) {
370 mii_info->speed = SPEED_1000;
371 if (status & LPA_1000FULL)
372 mii_info->duplex = DUPLEX_FULL;
373 else
374 mii_info->duplex = DUPLEX_HALF;
375 } else {
376 status = phy_read(mii_info, PHY_ANLPAR);
Dave Liue732e9c2006-11-03 12:11:15 -0600377
Anton Vorontsov951800b2008-03-24 20:46:24 +0300378 if (status & (PHY_ANLPAR_10FD | PHY_ANLPAR_TXFD))
379 mii_info->duplex = DUPLEX_FULL;
380 else
381 mii_info->duplex = DUPLEX_HALF;
382 if (status & (PHY_ANLPAR_TXFD | PHY_ANLPAR_TX))
383 mii_info->speed = SPEED_100;
384 else
385 mii_info->speed = SPEED_10;
386 }
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100387 mii_info->pause = 0;
388 }
389 /* On non-aneg, we assume what we put in BMCR is the speed,
390 * though magic-aneg shouldn't prevent this case from occurring
391 */
Dave Liue732e9c2006-11-03 12:11:15 -0600392
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100393 return 0;
Dave Liue732e9c2006-11-03 12:11:15 -0600394}
395
Anton Vorontsov98003732008-03-24 20:46:34 +0300396static int bcm_init(struct uec_mii_info *mii_info)
397{
398 struct eth_device *edev = mii_info->dev;
399 uec_private_t *uec = edev->priv;
400
401 gbit_config_aneg(mii_info);
402
403 if (uec->uec_info->enet_interface == ENET_1000_RGMII_RXID) {
404 u16 val;
405 int cnt = 50;
406
407 /* Wait for aneg to complete. */
408 do
409 val = phy_read(mii_info, PHY_BMSR);
410 while (--cnt && !(val & PHY_BMSR_AUTN_COMP));
411
412 /* Set RDX clk delay. */
413 phy_write(mii_info, 0x18, 0x7 | (7 << 12));
414
415 val = phy_read(mii_info, 0x18);
416 /* Set RDX-RXC skew. */
417 val |= (1 << 8);
418 val |= (7 | (7 << 12));
419 /* Write bits 14:0. */
420 val |= (1 << 15);
421 phy_write(mii_info, 0x18, val);
422 }
423
424 return 0;
425}
426
Haiying Wang024e1e72008-09-24 11:42:12 -0500427static int marvell_init(struct uec_mii_info *mii_info)
428{
429 struct eth_device *edev = mii_info->dev;
430 uec_private_t *uec = edev->priv;
431
432 if (uec->uec_info->enet_interface == ENET_1000_RGMII_ID) {
433 int temp;
434
435 temp = phy_read(mii_info, MII_M1111_PHY_EXT_CR);
436 temp |= (MII_M1111_RX_DELAY | MII_M1111_TX_DELAY);
437 phy_write(mii_info, MII_M1111_PHY_EXT_CR, temp);
438
439 temp = phy_read(mii_info, MII_M1111_PHY_EXT_SR);
440 temp &= ~MII_M1111_HWCFG_MODE_MASK;
441 temp |= MII_M1111_HWCFG_MODE_RGMII;
442 phy_write(mii_info, MII_M1111_PHY_EXT_SR, temp);
443
444 phy_write(mii_info, PHY_BMCR, PHY_BMCR_RESET);
445 }
446
447 return 0;
448}
449
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100450static int marvell_read_status (struct uec_mii_info *mii_info)
Dave Liue732e9c2006-11-03 12:11:15 -0600451{
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100452 u16 status;
453 int err;
454
455 /* Update the link, but return if there
456 * was an error */
457 err = genmii_update_link (mii_info);
458 if (err)
459 return err;
Dave Liue732e9c2006-11-03 12:11:15 -0600460
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100461 /* If the link is up, read the speed and duplex */
462 /* If we aren't autonegotiating, assume speeds
463 * are as set */
464 if (mii_info->autoneg && mii_info->link) {
465 int speed;
Dave Liue732e9c2006-11-03 12:11:15 -0600466
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100467 status = phy_read (mii_info, MII_M1011_PHY_SPEC_STATUS);
Dave Liue732e9c2006-11-03 12:11:15 -0600468
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100469 /* Get the duplexity */
470 if (status & MII_M1011_PHY_SPEC_STATUS_FULLDUPLEX)
471 mii_info->duplex = DUPLEX_FULL;
472 else
473 mii_info->duplex = DUPLEX_HALF;
Dave Liue732e9c2006-11-03 12:11:15 -0600474
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100475 /* Get the speed */
476 speed = status & MII_M1011_PHY_SPEC_STATUS_SPD_MASK;
477 switch (speed) {
478 case MII_M1011_PHY_SPEC_STATUS_1000:
479 mii_info->speed = SPEED_1000;
480 break;
481 case MII_M1011_PHY_SPEC_STATUS_100:
482 mii_info->speed = SPEED_100;
483 break;
484 default:
485 mii_info->speed = SPEED_10;
486 break;
487 }
488 mii_info->pause = 0;
489 }
Dave Liue732e9c2006-11-03 12:11:15 -0600490
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100491 return 0;
Dave Liue732e9c2006-11-03 12:11:15 -0600492}
493
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100494static int marvell_ack_interrupt (struct uec_mii_info *mii_info)
Dave Liue732e9c2006-11-03 12:11:15 -0600495{
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100496 /* Clear the interrupts by reading the reg */
497 phy_read (mii_info, MII_M1011_IEVENT);
Dave Liue732e9c2006-11-03 12:11:15 -0600498
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100499 return 0;
Dave Liue732e9c2006-11-03 12:11:15 -0600500}
501
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100502static int marvell_config_intr (struct uec_mii_info *mii_info)
Dave Liue732e9c2006-11-03 12:11:15 -0600503{
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100504 if (mii_info->interrupts == MII_INTERRUPT_ENABLED)
505 phy_write (mii_info, MII_M1011_IMASK, MII_M1011_IMASK_INIT);
506 else
507 phy_write (mii_info, MII_M1011_IMASK, MII_M1011_IMASK_CLEAR);
Dave Liue732e9c2006-11-03 12:11:15 -0600508
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100509 return 0;
Dave Liue732e9c2006-11-03 12:11:15 -0600510}
511
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100512static int dm9161_init (struct uec_mii_info *mii_info)
Dave Liue732e9c2006-11-03 12:11:15 -0600513{
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100514 /* Reset the PHY */
515 phy_write (mii_info, PHY_BMCR, phy_read (mii_info, PHY_BMCR) |
516 PHY_BMCR_RESET);
517 /* PHY and MAC connect */
518 phy_write (mii_info, PHY_BMCR, phy_read (mii_info, PHY_BMCR) &
519 ~PHY_BMCR_ISO);
Kim Phillipsd986cba2008-01-15 14:11:00 -0600520
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100521 phy_write (mii_info, MII_DM9161_SCR, MII_DM9161_SCR_INIT);
Kim Phillipsd986cba2008-01-15 14:11:00 -0600522
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100523 config_genmii_advert (mii_info);
524 /* Start/restart aneg */
525 genmii_config_aneg (mii_info);
Dave Liue732e9c2006-11-03 12:11:15 -0600526
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100527 return 0;
Dave Liue732e9c2006-11-03 12:11:15 -0600528}
529
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100530static int dm9161_config_aneg (struct uec_mii_info *mii_info)
Dave Liue732e9c2006-11-03 12:11:15 -0600531{
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100532 return 0;
Dave Liue732e9c2006-11-03 12:11:15 -0600533}
534
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100535static int dm9161_read_status (struct uec_mii_info *mii_info)
Dave Liue732e9c2006-11-03 12:11:15 -0600536{
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100537 u16 status;
538 int err;
Dave Liue732e9c2006-11-03 12:11:15 -0600539
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100540 /* Update the link, but return if there was an error */
541 err = genmii_update_link (mii_info);
542 if (err)
543 return err;
544 /* If the link is up, read the speed and duplex
545 If we aren't autonegotiating assume speeds are as set */
546 if (mii_info->autoneg && mii_info->link) {
547 status = phy_read (mii_info, MII_DM9161_SCSR);
548 if (status & (MII_DM9161_SCSR_100F | MII_DM9161_SCSR_100H))
549 mii_info->speed = SPEED_100;
550 else
551 mii_info->speed = SPEED_10;
Dave Liue732e9c2006-11-03 12:11:15 -0600552
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100553 if (status & (MII_DM9161_SCSR_100F | MII_DM9161_SCSR_10F))
554 mii_info->duplex = DUPLEX_FULL;
555 else
556 mii_info->duplex = DUPLEX_HALF;
557 }
Dave Liue732e9c2006-11-03 12:11:15 -0600558
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100559 return 0;
Dave Liue732e9c2006-11-03 12:11:15 -0600560}
561
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100562static int dm9161_ack_interrupt (struct uec_mii_info *mii_info)
Dave Liue732e9c2006-11-03 12:11:15 -0600563{
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100564 /* Clear the interrupt by reading the reg */
565 phy_read (mii_info, MII_DM9161_INTR);
Dave Liue732e9c2006-11-03 12:11:15 -0600566
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100567 return 0;
Dave Liue732e9c2006-11-03 12:11:15 -0600568}
569
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100570static int dm9161_config_intr (struct uec_mii_info *mii_info)
Dave Liue732e9c2006-11-03 12:11:15 -0600571{
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100572 if (mii_info->interrupts == MII_INTERRUPT_ENABLED)
573 phy_write (mii_info, MII_DM9161_INTR, MII_DM9161_INTR_INIT);
574 else
575 phy_write (mii_info, MII_DM9161_INTR, MII_DM9161_INTR_STOP);
Dave Liue732e9c2006-11-03 12:11:15 -0600576
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100577 return 0;
Dave Liue732e9c2006-11-03 12:11:15 -0600578}
579
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100580static void dm9161_close (struct uec_mii_info *mii_info)
Dave Liue732e9c2006-11-03 12:11:15 -0600581{
582}
583
Richard Retanubun9a45dcc2008-10-23 09:08:18 -0400584static int fixed_phy_aneg (struct uec_mii_info *mii_info)
585{
586 mii_info->autoneg = 0; /* Turn off auto negotiation for fixed phy */
587 return 0;
588}
589
590static int fixed_phy_read_status (struct uec_mii_info *mii_info)
591{
592 int i = 0;
593
594 for (i = 0; i < ARRAY_SIZE(fixed_phy_port); i++) {
595 if (mii_info->mii_id == fixed_phy_port[i].devnum) {
596 mii_info->speed = fixed_phy_port[i].speed;
597 mii_info->duplex = fixed_phy_port[i].duplex;
598 mii_info->link = 1; /* Link is always UP */
599 mii_info->pause = 0;
600 break;
601 }
602 }
603 return 0;
604}
605
Dave Liue732e9c2006-11-03 12:11:15 -0600606static struct phy_info phy_info_dm9161 = {
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100607 .phy_id = 0x0181b880,
608 .phy_id_mask = 0x0ffffff0,
609 .name = "Davicom DM9161E",
610 .init = dm9161_init,
611 .config_aneg = dm9161_config_aneg,
612 .read_status = dm9161_read_status,
613 .close = dm9161_close,
Dave Liue732e9c2006-11-03 12:11:15 -0600614};
615
616static struct phy_info phy_info_dm9161a = {
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100617 .phy_id = 0x0181b8a0,
618 .phy_id_mask = 0x0ffffff0,
619 .name = "Davicom DM9161A",
620 .features = MII_BASIC_FEATURES,
621 .init = dm9161_init,
622 .config_aneg = dm9161_config_aneg,
623 .read_status = dm9161_read_status,
624 .ack_interrupt = dm9161_ack_interrupt,
625 .config_intr = dm9161_config_intr,
626 .close = dm9161_close,
Dave Liue732e9c2006-11-03 12:11:15 -0600627};
628
629static struct phy_info phy_info_marvell = {
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100630 .phy_id = 0x01410c00,
631 .phy_id_mask = 0xffffff00,
632 .name = "Marvell 88E11x1",
633 .features = MII_GBIT_FEATURES,
Haiying Wang024e1e72008-09-24 11:42:12 -0500634 .init = &marvell_init,
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100635 .config_aneg = &marvell_config_aneg,
636 .read_status = &marvell_read_status,
637 .ack_interrupt = &marvell_ack_interrupt,
638 .config_intr = &marvell_config_intr,
Dave Liue732e9c2006-11-03 12:11:15 -0600639};
640
Anton Vorontsov98003732008-03-24 20:46:34 +0300641static struct phy_info phy_info_bcm5481 = {
642 .phy_id = 0x0143bca0,
643 .phy_id_mask = 0xffffff0,
644 .name = "Broadcom 5481",
645 .features = MII_GBIT_FEATURES,
646 .read_status = genmii_read_status,
647 .init = bcm_init,
648};
649
Richard Retanubun9a45dcc2008-10-23 09:08:18 -0400650static struct phy_info phy_info_fixedphy = {
651 .phy_id = CONFIG_FIXED_PHY,
652 .phy_id_mask = CONFIG_FIXED_PHY,
653 .name = "Fixed PHY",
654 .config_aneg = fixed_phy_aneg,
655 .read_status = fixed_phy_read_status,
656};
657
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100658static struct phy_info phy_info_genmii = {
659 .phy_id = 0x00000000,
660 .phy_id_mask = 0x00000000,
661 .name = "Generic MII",
662 .features = MII_BASIC_FEATURES,
663 .config_aneg = genmii_config_aneg,
664 .read_status = genmii_read_status,
Dave Liue732e9c2006-11-03 12:11:15 -0600665};
666
667static struct phy_info *phy_info[] = {
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100668 &phy_info_dm9161,
669 &phy_info_dm9161a,
670 &phy_info_marvell,
Anton Vorontsov98003732008-03-24 20:46:34 +0300671 &phy_info_bcm5481,
Richard Retanubun9a45dcc2008-10-23 09:08:18 -0400672 &phy_info_fixedphy,
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100673 &phy_info_genmii,
674 NULL
Dave Liue732e9c2006-11-03 12:11:15 -0600675};
676
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100677u16 phy_read (struct uec_mii_info *mii_info, u16 regnum)
Dave Liue732e9c2006-11-03 12:11:15 -0600678{
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100679 return mii_info->mdio_read (mii_info->dev, mii_info->mii_id, regnum);
Dave Liue732e9c2006-11-03 12:11:15 -0600680}
681
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100682void phy_write (struct uec_mii_info *mii_info, u16 regnum, u16 val)
Dave Liue732e9c2006-11-03 12:11:15 -0600683{
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100684 mii_info->mdio_write (mii_info->dev, mii_info->mii_id, regnum, val);
Dave Liue732e9c2006-11-03 12:11:15 -0600685}
686
687/* Use the PHY ID registers to determine what type of PHY is attached
688 * to device dev. return a struct phy_info structure describing that PHY
689 */
Andy Flemingee0e9172007-08-14 00:14:25 -0500690struct phy_info *uec_get_phy_info (struct uec_mii_info *mii_info)
Dave Liue732e9c2006-11-03 12:11:15 -0600691{
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100692 u16 phy_reg;
693 u32 phy_ID;
694 int i;
695 struct phy_info *theInfo = NULL;
Dave Liue732e9c2006-11-03 12:11:15 -0600696
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100697 /* Grab the bits from PHYIR1, and put them in the upper half */
698 phy_reg = phy_read (mii_info, PHY_PHYIDR1);
699 phy_ID = (phy_reg & 0xffff) << 16;
Dave Liue732e9c2006-11-03 12:11:15 -0600700
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100701 /* Grab the bits from PHYIR2, and put them in the lower half */
702 phy_reg = phy_read (mii_info, PHY_PHYIDR2);
703 phy_ID |= (phy_reg & 0xffff);
Dave Liue732e9c2006-11-03 12:11:15 -0600704
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100705 /* loop through all the known PHY types, and find one that */
706 /* matches the ID we read from the PHY. */
707 for (i = 0; phy_info[i]; i++)
708 if (phy_info[i]->phy_id ==
709 (phy_ID & phy_info[i]->phy_id_mask)) {
710 theInfo = phy_info[i];
711 break;
712 }
Dave Liue732e9c2006-11-03 12:11:15 -0600713
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100714 /* This shouldn't happen, as we have generic PHY support */
715 if (theInfo == NULL) {
716 ugphy_info ("UEC: PHY id %x is not supported!", phy_ID);
717 return NULL;
718 } else {
719 ugphy_info ("UEC: PHY is %s (%x)", theInfo->name, phy_ID);
720 }
Dave Liue732e9c2006-11-03 12:11:15 -0600721
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100722 return theInfo;
Dave Liue732e9c2006-11-03 12:11:15 -0600723}
724
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100725void marvell_phy_interface_mode (struct eth_device *dev,
726 enet_interface_e mode)
Dave Liue732e9c2006-11-03 12:11:15 -0600727{
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100728 uec_private_t *uec = (uec_private_t *) dev->priv;
729 struct uec_mii_info *mii_info;
Kim Phillips21084052008-02-27 15:06:39 -0600730 u16 status;
Dave Liue732e9c2006-11-03 12:11:15 -0600731
732 if (!uec->mii_info) {
Kim Phillipsb5da4272008-02-27 16:08:22 -0600733 printf ("%s: the PHY not initialized\n", __FUNCTION__);
Dave Liue732e9c2006-11-03 12:11:15 -0600734 return;
735 }
736 mii_info = uec->mii_info;
737
738 if (mode == ENET_100_RGMII) {
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100739 phy_write (mii_info, 0x00, 0x9140);
740 phy_write (mii_info, 0x1d, 0x001f);
741 phy_write (mii_info, 0x1e, 0x200c);
742 phy_write (mii_info, 0x1d, 0x0005);
743 phy_write (mii_info, 0x1e, 0x0000);
744 phy_write (mii_info, 0x1e, 0x0100);
745 phy_write (mii_info, 0x09, 0x0e00);
746 phy_write (mii_info, 0x04, 0x01e1);
747 phy_write (mii_info, 0x00, 0x9140);
748 phy_write (mii_info, 0x00, 0x1000);
749 udelay (100000);
750 phy_write (mii_info, 0x00, 0x2900);
751 phy_write (mii_info, 0x14, 0x0cd2);
752 phy_write (mii_info, 0x00, 0xa100);
753 phy_write (mii_info, 0x09, 0x0000);
754 phy_write (mii_info, 0x1b, 0x800b);
755 phy_write (mii_info, 0x04, 0x05e1);
756 phy_write (mii_info, 0x00, 0xa100);
757 phy_write (mii_info, 0x00, 0x2100);
758 udelay (1000000);
Dave Liue732e9c2006-11-03 12:11:15 -0600759 } else if (mode == ENET_10_RGMII) {
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100760 phy_write (mii_info, 0x14, 0x8e40);
761 phy_write (mii_info, 0x1b, 0x800b);
762 phy_write (mii_info, 0x14, 0x0c82);
763 phy_write (mii_info, 0x00, 0x8100);
764 udelay (1000000);
Dave Liue732e9c2006-11-03 12:11:15 -0600765 }
Kim Phillips21084052008-02-27 15:06:39 -0600766
767 /* handle 88e1111 rev.B2 erratum 5.6 */
768 if (mii_info->autoneg) {
769 status = phy_read (mii_info, PHY_BMCR);
770 phy_write (mii_info, PHY_BMCR, status | PHY_BMCR_AUTON);
771 }
772 /* now the B2 will correctly report autoneg completion status */
Dave Liue732e9c2006-11-03 12:11:15 -0600773}
774
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100775void change_phy_interface_mode (struct eth_device *dev, enet_interface_e mode)
Dave Liue732e9c2006-11-03 12:11:15 -0600776{
777#ifdef CONFIG_PHY_MODE_NEED_CHANGE
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100778 marvell_phy_interface_mode (dev, mode);
Dave Liue732e9c2006-11-03 12:11:15 -0600779#endif
780}