blob: d613f3e4cf21e92b882985fd533090f279dba4ae [file] [log] [blame]
Dave Liu7737d5c2006-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 Denkdd520bf2006-11-30 18:02:20 +01007 * Driver for UEC on QE
8 * Based on 8260_io/fcc_enet.c
Dave Liu7737d5c2006-11-03 12:11:15 -06009 *
Wolfgang Denkdd520bf2006-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 Liu7737d5c2006-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 Liu7737d5c2006-11-03 12:11:15 -060029#define ugphy_printk(format, arg...) \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +010030 printf(format "\n", ## arg)
Dave Liu7737d5c2006-11-03 12:11:15 -060031
Wolfgang Denkdd520bf2006-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 Liu7737d5c2006-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 Retanubunedf3fe72008-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 Denkdd520bf2006-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 Liu7737d5c2006-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 Flemingda9d4612007-08-14 00:14:25 -0500108void uec_write_phy_reg (struct eth_device *dev, int mii_id, int regnum, int value)
Dave Liu7737d5c2006-11-03 12:11:15 -0600109{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100110 uec_private_t *ugeth = (uec_private_t *) dev->priv;
Andy Flemingda9d4612007-08-14 00:14:25 -0500111 uec_mii_t *ug_regs;
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100112 enet_tbi_mii_reg_e mii_reg = (enet_tbi_mii_reg_e) regnum;
113 u32 tmp_reg;
Dave Liu7737d5c2006-11-03 12:11:15 -0600114
Andy Flemingda9d4612007-08-14 00:14:25 -0500115 ug_regs = ugeth->uec_mii_regs;
Dave Liu7737d5c2006-11-03 12:11:15 -0600116
Wolfgang Denkdd520bf2006-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 Liu7737d5c2006-11-03 12:11:15 -0600122
Wolfgang Denkdd520bf2006-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 Phillipsee62ed32008-01-15 14:11:00 -0600125 sync();
Dave Liu7737d5c2006-11-03 12:11:15 -0600126
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100127 /* Wait till MII management write is complete */
128 while ((in_be32 (&ug_regs->miimind)) & MIIMIND_BUSY);
Dave Liu7737d5c2006-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 Flemingda9d4612007-08-14 00:14:25 -0500134int uec_read_phy_reg (struct eth_device *dev, int mii_id, int regnum)
Dave Liu7737d5c2006-11-03 12:11:15 -0600135{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100136 uec_private_t *ugeth = (uec_private_t *) dev->priv;
Andy Flemingda9d4612007-08-14 00:14:25 -0500137 uec_mii_t *ug_regs;
Wolfgang Denkdd520bf2006-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 Liu7737d5c2006-11-03 12:11:15 -0600141
Andy Flemingda9d4612007-08-14 00:14:25 -0500142 ug_regs = ugeth->uec_mii_regs;
Dave Liu7737d5c2006-11-03 12:11:15 -0600143
Wolfgang Denkdd520bf2006-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 Liu7737d5c2006-11-03 12:11:15 -0600147
Kim Phillipsee62ed32008-01-15 14:11:00 -0600148 /* clear MII management command cycle */
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100149 out_be32 (&ug_regs->miimcom, 0);
Kim Phillipsee62ed32008-01-15 14:11:00 -0600150 sync();
151
152 /* Perform an MII management read cycle */
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100153 out_be32 (&ug_regs->miimcom, MIIMCOM_READ_CYCLE);
Dave Liu7737d5c2006-11-03 12:11:15 -0600154
Wolfgang Denkdd520bf2006-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 Liu7737d5c2006-11-03 12:11:15 -0600158
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100159 /* Read MII management status */
160 value = (u16) in_be32 (&ug_regs->miimstat);
161 if (value == 0xffff)
Joakim Tjernlund84a30472008-01-16 09:40:41 +0100162 ugphy_vdbg
Wolfgang Denkdd520bf2006-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 Liu7737d5c2006-11-03 12:11:15 -0600165
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100166 return (value);
Dave Liu7737d5c2006-11-03 12:11:15 -0600167}
168
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100169void mii_clear_phy_interrupt (struct uec_mii_info *mii_info)
Dave Liu7737d5c2006-11-03 12:11:15 -0600170{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100171 if (mii_info->phyinfo->ack_interrupt)
172 mii_info->phyinfo->ack_interrupt (mii_info);
Dave Liu7737d5c2006-11-03 12:11:15 -0600173}
174
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100175void mii_configure_phy_interrupt (struct uec_mii_info *mii_info,
176 u32 interrupts)
Dave Liu7737d5c2006-11-03 12:11:15 -0600177{
Wolfgang Denkdd520bf2006-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 Liu7737d5c2006-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 Denkdd520bf2006-11-30 18:02:20 +0100187static void config_genmii_advert (struct uec_mii_info *mii_info)
Dave Liu7737d5c2006-11-03 12:11:15 -0600188{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100189 u32 advertise;
190 u16 adv;
Dave Liu7737d5c2006-11-03 12:11:15 -0600191
Wolfgang Denkdd520bf2006-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 Liu7737d5c2006-11-03 12:11:15 -0600195
Wolfgang Denkdd520bf2006-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 Liu7737d5c2006-11-03 12:11:15 -0600208}
209
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100210static void genmii_setup_forced (struct uec_mii_info *mii_info)
Dave Liu7737d5c2006-11-03 12:11:15 -0600211{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100212 u16 ctrl;
213 u32 features = mii_info->phyinfo->features;
Dave Liu7737d5c2006-11-03 12:11:15 -0600214
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100215 ctrl = phy_read (mii_info, PHY_BMCR);
Dave Liu7737d5c2006-11-03 12:11:15 -0600216
Wolfgang Denkdd520bf2006-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 Liu7737d5c2006-11-03 12:11:15 -0600220
Wolfgang Denkdd520bf2006-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 Liu7737d5c2006-11-03 12:11:15 -0600244
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100245 phy_write (mii_info, PHY_BMCR, ctrl);
Dave Liu7737d5c2006-11-03 12:11:15 -0600246}
247
248/* Enable and Restart Autonegotiation */
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100249static void genmii_restart_aneg (struct uec_mii_info *mii_info)
Dave Liu7737d5c2006-11-03 12:11:15 -0600250{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100251 u16 ctl;
Dave Liu7737d5c2006-11-03 12:11:15 -0600252
Wolfgang Denkdd520bf2006-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 Liu7737d5c2006-11-03 12:11:15 -0600256}
257
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100258static int gbit_config_aneg (struct uec_mii_info *mii_info)
Dave Liu7737d5c2006-11-03 12:11:15 -0600259{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100260 u16 adv;
261 u32 advertise;
Dave Liu7737d5c2006-11-03 12:11:15 -0600262
Wolfgang Denkdd520bf2006-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 Liu7737d5c2006-11-03 12:11:15 -0600267
Wolfgang Denkdd520bf2006-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 Liu7737d5c2006-11-03 12:11:15 -0600276
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100277 /* Start/Restart aneg */
278 genmii_restart_aneg (mii_info);
279 } else
280 genmii_setup_forced (mii_info);
Dave Liu7737d5c2006-11-03 12:11:15 -0600281
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100282 return 0;
Dave Liu7737d5c2006-11-03 12:11:15 -0600283}
284
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100285static int marvell_config_aneg (struct uec_mii_info *mii_info)
Dave Liu7737d5c2006-11-03 12:11:15 -0600286{
Wolfgang Denkdd520bf2006-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 Liu7737d5c2006-11-03 12:11:15 -0600291
Wolfgang Denkdd520bf2006-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 Liu7737d5c2006-11-03 12:11:15 -0600297
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100298 gbit_config_aneg (mii_info);
Dave Liu7737d5c2006-11-03 12:11:15 -0600299
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100300 return 0;
Dave Liu7737d5c2006-11-03 12:11:15 -0600301}
302
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100303static int genmii_config_aneg (struct uec_mii_info *mii_info)
Dave Liu7737d5c2006-11-03 12:11:15 -0600304{
Wolfgang Denkdd520bf2006-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 Liu7737d5c2006-11-03 12:11:15 -0600310
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100311 return 0;
Dave Liu7737d5c2006-11-03 12:11:15 -0600312}
313
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100314static int genmii_update_link (struct uec_mii_info *mii_info)
Dave Liu7737d5c2006-11-03 12:11:15 -0600315{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100316 u16 status;
Dave Liu7737d5c2006-11-03 12:11:15 -0600317
Kim Phillipsee62ed32008-01-15 14:11:00 -0600318 /* Status is read once to clear old link state */
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100319 phy_read (mii_info, PHY_BMSR);
Dave Liu7737d5c2006-11-03 12:11:15 -0600320
Kim Phillipsee62ed32008-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 Liu7737d5c2006-11-03 12:11:15 -0600329
Kim Phillipsee62ed32008-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 Phillipsf30b61542008-02-27 16:08:22 -0600339 i++;
Kim Phillipsee62ed32008-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 Liu7737d5c2006-11-03 12:11:15 -0600351
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100352 return 0;
Dave Liu7737d5c2006-11-03 12:11:15 -0600353}
354
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100355static int genmii_read_status (struct uec_mii_info *mii_info)
Dave Liu7737d5c2006-11-03 12:11:15 -0600356{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100357 u16 status;
358 int err;
Dave Liu7737d5c2006-11-03 12:11:15 -0600359
Wolfgang Denkdd520bf2006-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 Liu7737d5c2006-11-03 12:11:15 -0600365
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100366 if (mii_info->autoneg) {
Anton Vorontsov91cdaa32008-03-24 20:46:24 +0300367 status = phy_read(mii_info, MII_1000BASETSTATUS);
Dave Liu7737d5c2006-11-03 12:11:15 -0600368
Anton Vorontsov91cdaa32008-03-24 20:46:24 +0300369 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);
377
378 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 Denkdd520bf2006-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 Liu7737d5c2006-11-03 12:11:15 -0600392
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100393 return 0;
Dave Liu7737d5c2006-11-03 12:11:15 -0600394}
395
Anton Vorontsov300615d2008-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 Wang41410ee2008-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 Denkdd520bf2006-11-30 18:02:20 +0100450static int marvell_read_status (struct uec_mii_info *mii_info)
Dave Liu7737d5c2006-11-03 12:11:15 -0600451{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100452 u16 status;
453 int err;
Dave Liu7737d5c2006-11-03 12:11:15 -0600454
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100455 /* 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 Liu7737d5c2006-11-03 12:11:15 -0600460
Wolfgang Denkdd520bf2006-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 Liu7737d5c2006-11-03 12:11:15 -0600466
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100467 status = phy_read (mii_info, MII_M1011_PHY_SPEC_STATUS);
Dave Liu7737d5c2006-11-03 12:11:15 -0600468
Wolfgang Denkdd520bf2006-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 Liu7737d5c2006-11-03 12:11:15 -0600474
Wolfgang Denkdd520bf2006-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 }
490
491 return 0;
Dave Liu7737d5c2006-11-03 12:11:15 -0600492}
493
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100494static int marvell_ack_interrupt (struct uec_mii_info *mii_info)
Dave Liu7737d5c2006-11-03 12:11:15 -0600495{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100496 /* Clear the interrupts by reading the reg */
497 phy_read (mii_info, MII_M1011_IEVENT);
Dave Liu7737d5c2006-11-03 12:11:15 -0600498
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100499 return 0;
Dave Liu7737d5c2006-11-03 12:11:15 -0600500}
501
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100502static int marvell_config_intr (struct uec_mii_info *mii_info)
Dave Liu7737d5c2006-11-03 12:11:15 -0600503{
Wolfgang Denkdd520bf2006-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 Liu7737d5c2006-11-03 12:11:15 -0600508
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100509 return 0;
Dave Liu7737d5c2006-11-03 12:11:15 -0600510}
511
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100512static int dm9161_init (struct uec_mii_info *mii_info)
Dave Liu7737d5c2006-11-03 12:11:15 -0600513{
Wolfgang Denkdd520bf2006-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 Phillipsee62ed32008-01-15 14:11:00 -0600520
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100521 phy_write (mii_info, MII_DM9161_SCR, MII_DM9161_SCR_INIT);
Kim Phillipsee62ed32008-01-15 14:11:00 -0600522
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100523 config_genmii_advert (mii_info);
524 /* Start/restart aneg */
525 genmii_config_aneg (mii_info);
Dave Liu7737d5c2006-11-03 12:11:15 -0600526
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100527 return 0;
Dave Liu7737d5c2006-11-03 12:11:15 -0600528}
529
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100530static int dm9161_config_aneg (struct uec_mii_info *mii_info)
Dave Liu7737d5c2006-11-03 12:11:15 -0600531{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100532 return 0;
Dave Liu7737d5c2006-11-03 12:11:15 -0600533}
534
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100535static int dm9161_read_status (struct uec_mii_info *mii_info)
Dave Liu7737d5c2006-11-03 12:11:15 -0600536{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100537 u16 status;
538 int err;
Dave Liu7737d5c2006-11-03 12:11:15 -0600539
Wolfgang Denkdd520bf2006-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 Liu7737d5c2006-11-03 12:11:15 -0600552
Wolfgang Denkdd520bf2006-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 Liu7737d5c2006-11-03 12:11:15 -0600558
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100559 return 0;
Dave Liu7737d5c2006-11-03 12:11:15 -0600560}
561
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100562static int dm9161_ack_interrupt (struct uec_mii_info *mii_info)
Dave Liu7737d5c2006-11-03 12:11:15 -0600563{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100564 /* Clear the interrupt by reading the reg */
565 phy_read (mii_info, MII_DM9161_INTR);
Dave Liu7737d5c2006-11-03 12:11:15 -0600566
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100567 return 0;
Dave Liu7737d5c2006-11-03 12:11:15 -0600568}
569
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100570static int dm9161_config_intr (struct uec_mii_info *mii_info)
Dave Liu7737d5c2006-11-03 12:11:15 -0600571{
Wolfgang Denkdd520bf2006-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 Liu7737d5c2006-11-03 12:11:15 -0600576
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100577 return 0;
Dave Liu7737d5c2006-11-03 12:11:15 -0600578}
579
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100580static void dm9161_close (struct uec_mii_info *mii_info)
Dave Liu7737d5c2006-11-03 12:11:15 -0600581{
582}
583
Richard Retanubunedf3fe72008-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
Heiko Schocher8b69b562008-11-20 09:57:14 +0100606static int smsc_config_aneg (struct uec_mii_info *mii_info)
607{
608 return 0;
609}
610
611static int smsc_read_status (struct uec_mii_info *mii_info)
612{
613 u16 status;
614 int err;
615
616 /* Update the link, but return if there
617 * was an error */
618 err = genmii_update_link (mii_info);
619 if (err)
620 return err;
621
622 /* If the link is up, read the speed and duplex */
623 /* If we aren't autonegotiating, assume speeds
624 * are as set */
625 if (mii_info->autoneg && mii_info->link) {
626 int val;
627
628 status = phy_read (mii_info, 0x1f);
629 val = (status & 0x1c) >> 2;
630
631 switch (val) {
632 case 1:
633 mii_info->duplex = DUPLEX_HALF;
634 mii_info->speed = SPEED_10;
635 break;
636 case 5:
637 mii_info->duplex = DUPLEX_FULL;
638 mii_info->speed = SPEED_10;
639 break;
640 case 2:
641 mii_info->duplex = DUPLEX_HALF;
642 mii_info->speed = SPEED_100;
643 break;
644 case 6:
645 mii_info->duplex = DUPLEX_FULL;
646 mii_info->speed = SPEED_100;
647 break;
648 }
649 mii_info->pause = 0;
650 }
651
652 return 0;
653}
654
Dave Liu7737d5c2006-11-03 12:11:15 -0600655static struct phy_info phy_info_dm9161 = {
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100656 .phy_id = 0x0181b880,
657 .phy_id_mask = 0x0ffffff0,
658 .name = "Davicom DM9161E",
659 .init = dm9161_init,
660 .config_aneg = dm9161_config_aneg,
661 .read_status = dm9161_read_status,
662 .close = dm9161_close,
Dave Liu7737d5c2006-11-03 12:11:15 -0600663};
664
665static struct phy_info phy_info_dm9161a = {
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100666 .phy_id = 0x0181b8a0,
667 .phy_id_mask = 0x0ffffff0,
668 .name = "Davicom DM9161A",
669 .features = MII_BASIC_FEATURES,
670 .init = dm9161_init,
671 .config_aneg = dm9161_config_aneg,
672 .read_status = dm9161_read_status,
673 .ack_interrupt = dm9161_ack_interrupt,
674 .config_intr = dm9161_config_intr,
675 .close = dm9161_close,
Dave Liu7737d5c2006-11-03 12:11:15 -0600676};
677
678static struct phy_info phy_info_marvell = {
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100679 .phy_id = 0x01410c00,
680 .phy_id_mask = 0xffffff00,
681 .name = "Marvell 88E11x1",
682 .features = MII_GBIT_FEATURES,
Haiying Wang41410ee2008-09-24 11:42:12 -0500683 .init = &marvell_init,
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100684 .config_aneg = &marvell_config_aneg,
685 .read_status = &marvell_read_status,
686 .ack_interrupt = &marvell_ack_interrupt,
687 .config_intr = &marvell_config_intr,
Dave Liu7737d5c2006-11-03 12:11:15 -0600688};
689
Anton Vorontsov300615d2008-03-24 20:46:34 +0300690static struct phy_info phy_info_bcm5481 = {
691 .phy_id = 0x0143bca0,
692 .phy_id_mask = 0xffffff0,
693 .name = "Broadcom 5481",
694 .features = MII_GBIT_FEATURES,
695 .read_status = genmii_read_status,
696 .init = bcm_init,
697};
698
Richard Retanubunedf3fe72008-10-23 09:08:18 -0400699static struct phy_info phy_info_fixedphy = {
700 .phy_id = CONFIG_FIXED_PHY,
701 .phy_id_mask = CONFIG_FIXED_PHY,
702 .name = "Fixed PHY",
703 .config_aneg = fixed_phy_aneg,
704 .read_status = fixed_phy_read_status,
705};
706
Heiko Schocher8b69b562008-11-20 09:57:14 +0100707static struct phy_info phy_info_smsclan8700 = {
708 .phy_id = 0x0007c0c0,
709 .phy_id_mask = 0xfffffff0,
710 .name = "SMSC LAN8700",
711 .features = MII_BASIC_FEATURES,
712 .config_aneg = smsc_config_aneg,
713 .read_status = smsc_read_status,
714};
715
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100716static struct phy_info phy_info_genmii = {
717 .phy_id = 0x00000000,
718 .phy_id_mask = 0x00000000,
719 .name = "Generic MII",
720 .features = MII_BASIC_FEATURES,
721 .config_aneg = genmii_config_aneg,
722 .read_status = genmii_read_status,
Dave Liu7737d5c2006-11-03 12:11:15 -0600723};
724
725static struct phy_info *phy_info[] = {
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100726 &phy_info_dm9161,
727 &phy_info_dm9161a,
728 &phy_info_marvell,
Anton Vorontsov300615d2008-03-24 20:46:34 +0300729 &phy_info_bcm5481,
Heiko Schocher8b69b562008-11-20 09:57:14 +0100730 &phy_info_smsclan8700,
Richard Retanubunedf3fe72008-10-23 09:08:18 -0400731 &phy_info_fixedphy,
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100732 &phy_info_genmii,
733 NULL
Dave Liu7737d5c2006-11-03 12:11:15 -0600734};
735
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100736u16 phy_read (struct uec_mii_info *mii_info, u16 regnum)
Dave Liu7737d5c2006-11-03 12:11:15 -0600737{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100738 return mii_info->mdio_read (mii_info->dev, mii_info->mii_id, regnum);
Dave Liu7737d5c2006-11-03 12:11:15 -0600739}
740
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100741void phy_write (struct uec_mii_info *mii_info, u16 regnum, u16 val)
Dave Liu7737d5c2006-11-03 12:11:15 -0600742{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100743 mii_info->mdio_write (mii_info->dev, mii_info->mii_id, regnum, val);
Dave Liu7737d5c2006-11-03 12:11:15 -0600744}
745
746/* Use the PHY ID registers to determine what type of PHY is attached
747 * to device dev. return a struct phy_info structure describing that PHY
748 */
Andy Flemingda9d4612007-08-14 00:14:25 -0500749struct phy_info *uec_get_phy_info (struct uec_mii_info *mii_info)
Dave Liu7737d5c2006-11-03 12:11:15 -0600750{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100751 u16 phy_reg;
752 u32 phy_ID;
753 int i;
754 struct phy_info *theInfo = NULL;
Dave Liu7737d5c2006-11-03 12:11:15 -0600755
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100756 /* Grab the bits from PHYIR1, and put them in the upper half */
757 phy_reg = phy_read (mii_info, PHY_PHYIDR1);
758 phy_ID = (phy_reg & 0xffff) << 16;
Dave Liu7737d5c2006-11-03 12:11:15 -0600759
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100760 /* Grab the bits from PHYIR2, and put them in the lower half */
761 phy_reg = phy_read (mii_info, PHY_PHYIDR2);
762 phy_ID |= (phy_reg & 0xffff);
Dave Liu7737d5c2006-11-03 12:11:15 -0600763
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100764 /* loop through all the known PHY types, and find one that */
765 /* matches the ID we read from the PHY. */
766 for (i = 0; phy_info[i]; i++)
767 if (phy_info[i]->phy_id ==
768 (phy_ID & phy_info[i]->phy_id_mask)) {
769 theInfo = phy_info[i];
770 break;
771 }
Dave Liu7737d5c2006-11-03 12:11:15 -0600772
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100773 /* This shouldn't happen, as we have generic PHY support */
774 if (theInfo == NULL) {
775 ugphy_info ("UEC: PHY id %x is not supported!", phy_ID);
776 return NULL;
777 } else {
778 ugphy_info ("UEC: PHY is %s (%x)", theInfo->name, phy_ID);
779 }
Dave Liu7737d5c2006-11-03 12:11:15 -0600780
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100781 return theInfo;
Dave Liu7737d5c2006-11-03 12:11:15 -0600782}
783
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100784void marvell_phy_interface_mode (struct eth_device *dev,
785 enet_interface_e mode)
Dave Liu7737d5c2006-11-03 12:11:15 -0600786{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100787 uec_private_t *uec = (uec_private_t *) dev->priv;
788 struct uec_mii_info *mii_info;
Kim Phillipsf655ade2008-02-27 15:06:39 -0600789 u16 status;
Dave Liu7737d5c2006-11-03 12:11:15 -0600790
791 if (!uec->mii_info) {
Kim Phillipsf30b61542008-02-27 16:08:22 -0600792 printf ("%s: the PHY not initialized\n", __FUNCTION__);
Dave Liu7737d5c2006-11-03 12:11:15 -0600793 return;
794 }
795 mii_info = uec->mii_info;
796
797 if (mode == ENET_100_RGMII) {
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100798 phy_write (mii_info, 0x00, 0x9140);
799 phy_write (mii_info, 0x1d, 0x001f);
800 phy_write (mii_info, 0x1e, 0x200c);
801 phy_write (mii_info, 0x1d, 0x0005);
802 phy_write (mii_info, 0x1e, 0x0000);
803 phy_write (mii_info, 0x1e, 0x0100);
804 phy_write (mii_info, 0x09, 0x0e00);
805 phy_write (mii_info, 0x04, 0x01e1);
806 phy_write (mii_info, 0x00, 0x9140);
807 phy_write (mii_info, 0x00, 0x1000);
808 udelay (100000);
809 phy_write (mii_info, 0x00, 0x2900);
810 phy_write (mii_info, 0x14, 0x0cd2);
811 phy_write (mii_info, 0x00, 0xa100);
812 phy_write (mii_info, 0x09, 0x0000);
813 phy_write (mii_info, 0x1b, 0x800b);
814 phy_write (mii_info, 0x04, 0x05e1);
815 phy_write (mii_info, 0x00, 0xa100);
816 phy_write (mii_info, 0x00, 0x2100);
817 udelay (1000000);
Dave Liu7737d5c2006-11-03 12:11:15 -0600818 } else if (mode == ENET_10_RGMII) {
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100819 phy_write (mii_info, 0x14, 0x8e40);
820 phy_write (mii_info, 0x1b, 0x800b);
821 phy_write (mii_info, 0x14, 0x0c82);
822 phy_write (mii_info, 0x00, 0x8100);
823 udelay (1000000);
Dave Liu7737d5c2006-11-03 12:11:15 -0600824 }
Kim Phillipsf655ade2008-02-27 15:06:39 -0600825
826 /* handle 88e1111 rev.B2 erratum 5.6 */
827 if (mii_info->autoneg) {
828 status = phy_read (mii_info, PHY_BMCR);
829 phy_write (mii_info, PHY_BMCR, status | PHY_BMCR_AUTON);
830 }
831 /* now the B2 will correctly report autoneg completion status */
Dave Liu7737d5c2006-11-03 12:11:15 -0600832}
833
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100834void change_phy_interface_mode (struct eth_device *dev, enet_interface_e mode)
Dave Liu7737d5c2006-11-03 12:11:15 -0600835{
836#ifdef CONFIG_PHY_MODE_NEED_CHANGE
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100837 marvell_phy_interface_mode (dev, mode);
Dave Liu7737d5c2006-11-03 12:11:15 -0600838#endif
839}