blob: c83ca4b58212e422aa6eba43c1ddcf06d282a749 [file] [log] [blame]
Dave Liu7737d5c2006-11-03 12:11:15 -06001/*
Kumar Gala2b21ec92011-01-19 03:36:40 -06002 * Copyright (C) 2005,2010-2011 Freescale Semiconductor, Inc.
Dave Liu7737d5c2006-11-03 12:11:15 -06003 *
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 *
Stefan Roesea47a12b2010-04-15 16:07:28 +020050 * Copied from arch/powerpc/cpu/ppc4xx/4xx_enet.c
Richard Retanubunedf3fe72008-10-23 09:08:18 -040051 *--------------------------------------------------------------------*/
52
53/*
Richard Retanubun1443cd72009-07-01 14:04:05 -040054 * Some boards do not have a PHY for each ethernet port. These ports are known
55 * as Fixed PHY (or PHY-less) ports. For such ports, set the appropriate
56 * CONFIG_SYS_UECx_PHY_ADDR equal to CONFIG_FIXED_PHY_ADDR (an unused address)
57 * When the drver tries to identify the PHYs, CONFIG_FIXED_PHY will be returned
58 * and the driver will search CONFIG_SYS_FIXED_PHY_PORTS to find what network
59 * speed and duplex should be for the port.
Richard Retanubunedf3fe72008-10-23 09:08:18 -040060 *
Richard Retanubun1443cd72009-07-01 14:04:05 -040061 * Example board header configuration file:
Richard Retanubunedf3fe72008-10-23 09:08:18 -040062 * #define CONFIG_FIXED_PHY 0xFFFFFFFF
Richard Retanubun1443cd72009-07-01 14:04:05 -040063 * #define CONFIG_SYS_FIXED_PHY_ADDR 0x1E (pick an unused phy address)
Richard Retanubunedf3fe72008-10-23 09:08:18 -040064 *
Richard Retanubun1443cd72009-07-01 14:04:05 -040065 * #define CONFIG_SYS_UEC1_PHY_ADDR CONFIG_SYS_FIXED_PHY_ADDR
66 * #define CONFIG_SYS_UEC2_PHY_ADDR 0x02
67 * #define CONFIG_SYS_UEC3_PHY_ADDR CONFIG_SYS_FIXED_PHY_ADDR
68 * #define CONFIG_SYS_UEC4_PHY_ADDR 0x04
Richard Retanubunedf3fe72008-10-23 09:08:18 -040069 *
Richard Retanubun1443cd72009-07-01 14:04:05 -040070 * #define CONFIG_SYS_FIXED_PHY_PORT(name,speed,duplex) \
71 * {name, speed, duplex},
Richard Retanubunedf3fe72008-10-23 09:08:18 -040072 *
73 * #define CONFIG_SYS_FIXED_PHY_PORTS \
Kim Phillips78b7a8e2010-07-26 18:34:57 -050074 * CONFIG_SYS_FIXED_PHY_PORT("UEC0",SPEED_100,DUPLEX_FULL) \
75 * CONFIG_SYS_FIXED_PHY_PORT("UEC2",SPEED_100,DUPLEX_HALF)
Richard Retanubunedf3fe72008-10-23 09:08:18 -040076 */
77
78#ifndef CONFIG_FIXED_PHY
79#define CONFIG_FIXED_PHY 0xFFFFFFFF /* Fixed PHY (PHY-less) */
80#endif
81
82#ifndef CONFIG_SYS_FIXED_PHY_PORTS
83#define CONFIG_SYS_FIXED_PHY_PORTS /* default is an empty array */
84#endif
85
86struct fixed_phy_port {
Richard Retanubun1443cd72009-07-01 14:04:05 -040087 char name[NAMESIZE]; /* ethernet port name */
Richard Retanubunedf3fe72008-10-23 09:08:18 -040088 unsigned int speed; /* specified speed 10,100 or 1000 */
89 unsigned int duplex; /* specified duplex FULL or HALF */
90};
91
92static const struct fixed_phy_port fixed_phy_port[] = {
93 CONFIG_SYS_FIXED_PHY_PORTS /* defined in board configuration file */
94};
95
Richard Retanubun23c34af2009-06-17 16:00:41 -040096/*--------------------------------------------------------------------+
97 * BitBang MII support for ethernet ports
98 *
99 * Based from MPC8560ADS implementation
100 *--------------------------------------------------------------------*/
101/*
102 * Example board header file to define bitbang ethernet ports:
103 *
104 * #define CONFIG_SYS_BITBANG_PHY_PORT(name) name,
Kim Phillips78b7a8e2010-07-26 18:34:57 -0500105 * #define CONFIG_SYS_BITBANG_PHY_PORTS CONFIG_SYS_BITBANG_PHY_PORT("UEC0")
Richard Retanubun23c34af2009-06-17 16:00:41 -0400106*/
107#ifndef CONFIG_SYS_BITBANG_PHY_PORTS
108#define CONFIG_SYS_BITBANG_PHY_PORTS /* default is an empty array */
109#endif
110
111#if defined(CONFIG_BITBANGMII)
112static const char *bitbang_phy_port[] = {
113 CONFIG_SYS_BITBANG_PHY_PORTS /* defined in board configuration file */
114};
115#endif /* CONFIG_BITBANGMII */
116
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100117static void config_genmii_advert (struct uec_mii_info *mii_info);
118static void genmii_setup_forced (struct uec_mii_info *mii_info);
119static void genmii_restart_aneg (struct uec_mii_info *mii_info);
120static int gbit_config_aneg (struct uec_mii_info *mii_info);
121static int genmii_config_aneg (struct uec_mii_info *mii_info);
122static int genmii_update_link (struct uec_mii_info *mii_info);
123static int genmii_read_status (struct uec_mii_info *mii_info);
Andy Fleming09c04c22011-03-22 22:49:13 -0500124u16 uec_phy_read(struct uec_mii_info *mii_info, u16 regnum);
125void uec_phy_write(struct uec_mii_info *mii_info, u16 regnum, u16 val);
Dave Liu7737d5c2006-11-03 12:11:15 -0600126
127/* Write value to the PHY for this device to the register at regnum, */
128/* waiting until the write is done before it returns. All PHY */
129/* configuration has to be done through the TSEC1 MIIM regs */
Andy Flemingda9d4612007-08-14 00:14:25 -0500130void uec_write_phy_reg (struct eth_device *dev, int mii_id, int regnum, int value)
Dave Liu7737d5c2006-11-03 12:11:15 -0600131{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100132 uec_private_t *ugeth = (uec_private_t *) dev->priv;
Andy Flemingda9d4612007-08-14 00:14:25 -0500133 uec_mii_t *ug_regs;
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100134 enet_tbi_mii_reg_e mii_reg = (enet_tbi_mii_reg_e) regnum;
135 u32 tmp_reg;
Dave Liu7737d5c2006-11-03 12:11:15 -0600136
Richard Retanubun23c34af2009-06-17 16:00:41 -0400137
138#if defined(CONFIG_BITBANGMII)
139 u32 i = 0;
140
141 for (i = 0; i < ARRAY_SIZE(bitbang_phy_port); i++) {
142 if (strncmp(dev->name, bitbang_phy_port[i],
143 sizeof(dev->name)) == 0) {
144 (void)bb_miiphy_write(NULL, mii_id, regnum, value);
145 return;
146 }
147 }
148#endif /* CONFIG_BITBANGMII */
149
Andy Flemingda9d4612007-08-14 00:14:25 -0500150 ug_regs = ugeth->uec_mii_regs;
Dave Liu7737d5c2006-11-03 12:11:15 -0600151
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100152 /* Stop the MII management read cycle */
153 out_be32 (&ug_regs->miimcom, 0);
154 /* Setting up the MII Mangement Address Register */
155 tmp_reg = ((u32) mii_id << MIIMADD_PHY_ADDRESS_SHIFT) | mii_reg;
156 out_be32 (&ug_regs->miimadd, tmp_reg);
Dave Liu7737d5c2006-11-03 12:11:15 -0600157
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100158 /* Setting up the MII Mangement Control Register with the value */
159 out_be32 (&ug_regs->miimcon, (u32) value);
Kim Phillipsee62ed32008-01-15 14:11:00 -0600160 sync();
Dave Liu7737d5c2006-11-03 12:11:15 -0600161
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100162 /* Wait till MII management write is complete */
163 while ((in_be32 (&ug_regs->miimind)) & MIIMIND_BUSY);
Dave Liu7737d5c2006-11-03 12:11:15 -0600164}
165
166/* Reads from register regnum in the PHY for device dev, */
167/* returning the value. Clears miimcom first. All PHY */
168/* configuration has to be done through the TSEC1 MIIM regs */
Andy Flemingda9d4612007-08-14 00:14:25 -0500169int uec_read_phy_reg (struct eth_device *dev, int mii_id, int regnum)
Dave Liu7737d5c2006-11-03 12:11:15 -0600170{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100171 uec_private_t *ugeth = (uec_private_t *) dev->priv;
Andy Flemingda9d4612007-08-14 00:14:25 -0500172 uec_mii_t *ug_regs;
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100173 enet_tbi_mii_reg_e mii_reg = (enet_tbi_mii_reg_e) regnum;
174 u32 tmp_reg;
175 u16 value;
Dave Liu7737d5c2006-11-03 12:11:15 -0600176
Richard Retanubun23c34af2009-06-17 16:00:41 -0400177
178#if defined(CONFIG_BITBANGMII)
179 u32 i = 0;
180
181 for (i = 0; i < ARRAY_SIZE(bitbang_phy_port); i++) {
182 if (strncmp(dev->name, bitbang_phy_port[i],
183 sizeof(dev->name)) == 0) {
184 (void)bb_miiphy_read(NULL, mii_id, regnum, &value);
185 return (value);
186 }
187 }
188#endif /* CONFIG_BITBANGMII */
189
Andy Flemingda9d4612007-08-14 00:14:25 -0500190 ug_regs = ugeth->uec_mii_regs;
Dave Liu7737d5c2006-11-03 12:11:15 -0600191
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100192 /* Setting up the MII Mangement Address Register */
193 tmp_reg = ((u32) mii_id << MIIMADD_PHY_ADDRESS_SHIFT) | mii_reg;
194 out_be32 (&ug_regs->miimadd, tmp_reg);
Dave Liu7737d5c2006-11-03 12:11:15 -0600195
Kim Phillipsee62ed32008-01-15 14:11:00 -0600196 /* clear MII management command cycle */
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100197 out_be32 (&ug_regs->miimcom, 0);
Kim Phillipsee62ed32008-01-15 14:11:00 -0600198 sync();
199
200 /* Perform an MII management read cycle */
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100201 out_be32 (&ug_regs->miimcom, MIIMCOM_READ_CYCLE);
Dave Liu7737d5c2006-11-03 12:11:15 -0600202
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100203 /* Wait till MII management write is complete */
204 while ((in_be32 (&ug_regs->miimind)) &
205 (MIIMIND_NOT_VALID | MIIMIND_BUSY));
Dave Liu7737d5c2006-11-03 12:11:15 -0600206
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100207 /* Read MII management status */
208 value = (u16) in_be32 (&ug_regs->miimstat);
209 if (value == 0xffff)
Joakim Tjernlund84a30472008-01-16 09:40:41 +0100210 ugphy_vdbg
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100211 ("read wrong value : mii_id %d,mii_reg %d, base %08x",
212 mii_id, mii_reg, (u32) & (ug_regs->miimcfg));
Dave Liu7737d5c2006-11-03 12:11:15 -0600213
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100214 return (value);
Dave Liu7737d5c2006-11-03 12:11:15 -0600215}
216
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100217void mii_clear_phy_interrupt (struct uec_mii_info *mii_info)
Dave Liu7737d5c2006-11-03 12:11:15 -0600218{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100219 if (mii_info->phyinfo->ack_interrupt)
220 mii_info->phyinfo->ack_interrupt (mii_info);
Dave Liu7737d5c2006-11-03 12:11:15 -0600221}
222
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100223void mii_configure_phy_interrupt (struct uec_mii_info *mii_info,
224 u32 interrupts)
Dave Liu7737d5c2006-11-03 12:11:15 -0600225{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100226 mii_info->interrupts = interrupts;
227 if (mii_info->phyinfo->config_intr)
228 mii_info->phyinfo->config_intr (mii_info);
Dave Liu7737d5c2006-11-03 12:11:15 -0600229}
230
231/* Writes MII_ADVERTISE with the appropriate values, after
232 * sanitizing advertise to make sure only supported features
233 * are advertised
234 */
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100235static void config_genmii_advert (struct uec_mii_info *mii_info)
Dave Liu7737d5c2006-11-03 12:11:15 -0600236{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100237 u32 advertise;
238 u16 adv;
Dave Liu7737d5c2006-11-03 12:11:15 -0600239
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100240 /* Only allow advertising what this PHY supports */
241 mii_info->advertising &= mii_info->phyinfo->features;
242 advertise = mii_info->advertising;
Dave Liu7737d5c2006-11-03 12:11:15 -0600243
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100244 /* Setup standard advertisement */
Andy Fleming09c04c22011-03-22 22:49:13 -0500245 adv = uec_phy_read(mii_info, MII_ADVERTISE);
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100246 adv &= ~(ADVERTISE_ALL | ADVERTISE_100BASE4);
247 if (advertise & ADVERTISED_10baseT_Half)
248 adv |= ADVERTISE_10HALF;
249 if (advertise & ADVERTISED_10baseT_Full)
250 adv |= ADVERTISE_10FULL;
251 if (advertise & ADVERTISED_100baseT_Half)
252 adv |= ADVERTISE_100HALF;
253 if (advertise & ADVERTISED_100baseT_Full)
254 adv |= ADVERTISE_100FULL;
Andy Fleming09c04c22011-03-22 22:49:13 -0500255 uec_phy_write(mii_info, MII_ADVERTISE, adv);
Dave Liu7737d5c2006-11-03 12:11:15 -0600256}
257
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100258static void genmii_setup_forced (struct uec_mii_info *mii_info)
Dave Liu7737d5c2006-11-03 12:11:15 -0600259{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100260 u16 ctrl;
261 u32 features = mii_info->phyinfo->features;
Dave Liu7737d5c2006-11-03 12:11:15 -0600262
Andy Fleming09c04c22011-03-22 22:49:13 -0500263 ctrl = uec_phy_read(mii_info, MII_BMCR);
Dave Liu7737d5c2006-11-03 12:11:15 -0600264
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500265 ctrl &= ~(BMCR_FULLDPLX | BMCR_SPEED100 |
266 BMCR_SPEED1000 | BMCR_ANENABLE);
267 ctrl |= BMCR_RESET;
Dave Liu7737d5c2006-11-03 12:11:15 -0600268
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100269 switch (mii_info->speed) {
270 case SPEED_1000:
271 if (features & (SUPPORTED_1000baseT_Half
272 | SUPPORTED_1000baseT_Full)) {
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500273 ctrl |= BMCR_SPEED1000;
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100274 break;
275 }
276 mii_info->speed = SPEED_100;
277 case SPEED_100:
278 if (features & (SUPPORTED_100baseT_Half
279 | SUPPORTED_100baseT_Full)) {
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500280 ctrl |= BMCR_SPEED100;
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100281 break;
282 }
283 mii_info->speed = SPEED_10;
284 case SPEED_10:
285 if (features & (SUPPORTED_10baseT_Half
286 | SUPPORTED_10baseT_Full))
287 break;
288 default: /* Unsupported speed! */
289 ugphy_err ("%s: Bad speed!", mii_info->dev->name);
290 break;
291 }
Dave Liu7737d5c2006-11-03 12:11:15 -0600292
Andy Fleming09c04c22011-03-22 22:49:13 -0500293 uec_phy_write(mii_info, MII_BMCR, ctrl);
Dave Liu7737d5c2006-11-03 12:11:15 -0600294}
295
296/* Enable and Restart Autonegotiation */
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100297static void genmii_restart_aneg (struct uec_mii_info *mii_info)
Dave Liu7737d5c2006-11-03 12:11:15 -0600298{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100299 u16 ctl;
Dave Liu7737d5c2006-11-03 12:11:15 -0600300
Andy Fleming09c04c22011-03-22 22:49:13 -0500301 ctl = uec_phy_read(mii_info, MII_BMCR);
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500302 ctl |= (BMCR_ANENABLE | BMCR_ANRESTART);
Andy Fleming09c04c22011-03-22 22:49:13 -0500303 uec_phy_write(mii_info, MII_BMCR, ctl);
Dave Liu7737d5c2006-11-03 12:11:15 -0600304}
305
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100306static int gbit_config_aneg (struct uec_mii_info *mii_info)
Dave Liu7737d5c2006-11-03 12:11:15 -0600307{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100308 u16 adv;
309 u32 advertise;
Dave Liu7737d5c2006-11-03 12:11:15 -0600310
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100311 if (mii_info->autoneg) {
312 /* Configure the ADVERTISE register */
313 config_genmii_advert (mii_info);
314 advertise = mii_info->advertising;
Dave Liu7737d5c2006-11-03 12:11:15 -0600315
Andy Fleming09c04c22011-03-22 22:49:13 -0500316 adv = uec_phy_read(mii_info, MII_CTRL1000);
Kumar Gala2b21ec92011-01-19 03:36:40 -0600317 adv &= ~(ADVERTISE_1000FULL |
318 ADVERTISE_1000HALF);
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100319 if (advertise & SUPPORTED_1000baseT_Half)
Kumar Gala2b21ec92011-01-19 03:36:40 -0600320 adv |= ADVERTISE_1000HALF;
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100321 if (advertise & SUPPORTED_1000baseT_Full)
Kumar Gala2b21ec92011-01-19 03:36:40 -0600322 adv |= ADVERTISE_1000FULL;
Andy Fleming09c04c22011-03-22 22:49:13 -0500323 uec_phy_write(mii_info, MII_CTRL1000, adv);
Dave Liu7737d5c2006-11-03 12:11:15 -0600324
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100325 /* Start/Restart aneg */
326 genmii_restart_aneg (mii_info);
327 } else
328 genmii_setup_forced (mii_info);
Dave Liu7737d5c2006-11-03 12:11:15 -0600329
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100330 return 0;
Dave Liu7737d5c2006-11-03 12:11:15 -0600331}
332
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100333static int marvell_config_aneg (struct uec_mii_info *mii_info)
Dave Liu7737d5c2006-11-03 12:11:15 -0600334{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100335 /* The Marvell PHY has an errata which requires
336 * that certain registers get written in order
337 * to restart autonegotiation */
Andy Fleming09c04c22011-03-22 22:49:13 -0500338 uec_phy_write(mii_info, MII_BMCR, BMCR_RESET);
Dave Liu7737d5c2006-11-03 12:11:15 -0600339
Andy Fleming09c04c22011-03-22 22:49:13 -0500340 uec_phy_write(mii_info, 0x1d, 0x1f);
341 uec_phy_write(mii_info, 0x1e, 0x200c);
342 uec_phy_write(mii_info, 0x1d, 0x5);
343 uec_phy_write(mii_info, 0x1e, 0);
344 uec_phy_write(mii_info, 0x1e, 0x100);
Dave Liu7737d5c2006-11-03 12:11:15 -0600345
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100346 gbit_config_aneg (mii_info);
Dave Liu7737d5c2006-11-03 12:11:15 -0600347
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100348 return 0;
Dave Liu7737d5c2006-11-03 12:11:15 -0600349}
350
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100351static int genmii_config_aneg (struct uec_mii_info *mii_info)
Dave Liu7737d5c2006-11-03 12:11:15 -0600352{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100353 if (mii_info->autoneg) {
Joakim Tjernlundf29c1812010-08-10 16:36:49 +0200354 /* Speed up the common case, if link is already up, speed and
355 duplex match, skip auto neg as it already matches */
356 if (!genmii_read_status(mii_info) && mii_info->link)
357 if (mii_info->duplex == DUPLEX_FULL &&
358 mii_info->speed == SPEED_100)
359 if (mii_info->advertising &
360 ADVERTISED_100baseT_Full)
361 return 0;
362
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100363 config_genmii_advert (mii_info);
364 genmii_restart_aneg (mii_info);
365 } else
366 genmii_setup_forced (mii_info);
Dave Liu7737d5c2006-11-03 12:11:15 -0600367
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100368 return 0;
Dave Liu7737d5c2006-11-03 12:11:15 -0600369}
370
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100371static int genmii_update_link (struct uec_mii_info *mii_info)
Dave Liu7737d5c2006-11-03 12:11:15 -0600372{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100373 u16 status;
Dave Liu7737d5c2006-11-03 12:11:15 -0600374
Kim Phillipsee62ed32008-01-15 14:11:00 -0600375 /* Status is read once to clear old link state */
Andy Fleming09c04c22011-03-22 22:49:13 -0500376 uec_phy_read(mii_info, MII_BMSR);
Dave Liu7737d5c2006-11-03 12:11:15 -0600377
Kim Phillipsee62ed32008-01-15 14:11:00 -0600378 /*
379 * Wait if the link is up, and autonegotiation is in progress
380 * (ie - we're capable and it's not done)
381 */
Andy Fleming09c04c22011-03-22 22:49:13 -0500382 status = uec_phy_read(mii_info, MII_BMSR);
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500383 if ((status & BMSR_LSTATUS) && (status & BMSR_ANEGCAPABLE)
384 && !(status & BMSR_ANEGCOMPLETE)) {
Kim Phillipsee62ed32008-01-15 14:11:00 -0600385 int i = 0;
Dave Liu7737d5c2006-11-03 12:11:15 -0600386
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500387 while (!(status & BMSR_ANEGCOMPLETE)) {
Kim Phillipsee62ed32008-01-15 14:11:00 -0600388 /*
389 * Timeout reached ?
390 */
391 if (i > UGETH_AN_TIMEOUT) {
392 mii_info->link = 0;
393 return 0;
394 }
395
Kim Phillipsf30b61542008-02-27 16:08:22 -0600396 i++;
Kim Phillipsee62ed32008-01-15 14:11:00 -0600397 udelay(1000); /* 1 ms */
Andy Fleming09c04c22011-03-22 22:49:13 -0500398 status = uec_phy_read(mii_info, MII_BMSR);
Kim Phillipsee62ed32008-01-15 14:11:00 -0600399 }
400 mii_info->link = 1;
Kim Phillipsee62ed32008-01-15 14:11:00 -0600401 } else {
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500402 if (status & BMSR_LSTATUS)
Kim Phillipsee62ed32008-01-15 14:11:00 -0600403 mii_info->link = 1;
404 else
405 mii_info->link = 0;
406 }
Dave Liu7737d5c2006-11-03 12:11:15 -0600407
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100408 return 0;
Dave Liu7737d5c2006-11-03 12:11:15 -0600409}
410
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100411static int genmii_read_status (struct uec_mii_info *mii_info)
Dave Liu7737d5c2006-11-03 12:11:15 -0600412{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100413 u16 status;
414 int err;
Dave Liu7737d5c2006-11-03 12:11:15 -0600415
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100416 /* Update the link, but return if there
417 * was an error */
418 err = genmii_update_link (mii_info);
419 if (err)
420 return err;
Dave Liu7737d5c2006-11-03 12:11:15 -0600421
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100422 if (mii_info->autoneg) {
Andy Fleming09c04c22011-03-22 22:49:13 -0500423 status = uec_phy_read(mii_info, MII_STAT1000);
Dave Liu7737d5c2006-11-03 12:11:15 -0600424
Anton Vorontsov91cdaa32008-03-24 20:46:24 +0300425 if (status & (LPA_1000FULL | LPA_1000HALF)) {
426 mii_info->speed = SPEED_1000;
427 if (status & LPA_1000FULL)
428 mii_info->duplex = DUPLEX_FULL;
429 else
430 mii_info->duplex = DUPLEX_HALF;
431 } else {
Andy Fleming09c04c22011-03-22 22:49:13 -0500432 status = uec_phy_read(mii_info, MII_LPA);
Anton Vorontsov91cdaa32008-03-24 20:46:24 +0300433
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500434 if (status & (LPA_10FULL | LPA_100FULL))
Anton Vorontsov91cdaa32008-03-24 20:46:24 +0300435 mii_info->duplex = DUPLEX_FULL;
436 else
437 mii_info->duplex = DUPLEX_HALF;
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500438 if (status & (LPA_100FULL | LPA_100HALF))
Anton Vorontsov91cdaa32008-03-24 20:46:24 +0300439 mii_info->speed = SPEED_100;
440 else
441 mii_info->speed = SPEED_10;
442 }
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100443 mii_info->pause = 0;
444 }
445 /* On non-aneg, we assume what we put in BMCR is the speed,
446 * though magic-aneg shouldn't prevent this case from occurring
447 */
Dave Liu7737d5c2006-11-03 12:11:15 -0600448
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100449 return 0;
Dave Liu7737d5c2006-11-03 12:11:15 -0600450}
451
Anton Vorontsov300615d2008-03-24 20:46:34 +0300452static int bcm_init(struct uec_mii_info *mii_info)
453{
454 struct eth_device *edev = mii_info->dev;
455 uec_private_t *uec = edev->priv;
456
457 gbit_config_aneg(mii_info);
458
Heiko Schocher582c55a2010-01-20 09:04:28 +0100459 if ((uec->uec_info->enet_interface_type == RGMII_RXID) &&
460 (uec->uec_info->speed == 1000)) {
Anton Vorontsov300615d2008-03-24 20:46:34 +0300461 u16 val;
462 int cnt = 50;
463
464 /* Wait for aneg to complete. */
465 do
Andy Fleming09c04c22011-03-22 22:49:13 -0500466 val = uec_phy_read(mii_info, MII_BMSR);
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500467 while (--cnt && !(val & BMSR_ANEGCOMPLETE));
Anton Vorontsov300615d2008-03-24 20:46:34 +0300468
469 /* Set RDX clk delay. */
Andy Fleming09c04c22011-03-22 22:49:13 -0500470 uec_phy_write(mii_info, 0x18, 0x7 | (7 << 12));
Anton Vorontsov300615d2008-03-24 20:46:34 +0300471
Andy Fleming09c04c22011-03-22 22:49:13 -0500472 val = uec_phy_read(mii_info, 0x18);
Anton Vorontsov300615d2008-03-24 20:46:34 +0300473 /* Set RDX-RXC skew. */
474 val |= (1 << 8);
475 val |= (7 | (7 << 12));
476 /* Write bits 14:0. */
477 val |= (1 << 15);
Andy Fleming09c04c22011-03-22 22:49:13 -0500478 uec_phy_write(mii_info, 0x18, val);
Anton Vorontsov300615d2008-03-24 20:46:34 +0300479 }
480
481 return 0;
482}
483
Andy Fleming09c04c22011-03-22 22:49:13 -0500484static int uec_marvell_init(struct uec_mii_info *mii_info)
Haiying Wang41410ee2008-09-24 11:42:12 -0500485{
486 struct eth_device *edev = mii_info->dev;
487 uec_private_t *uec = edev->priv;
Kumar Galaf8c42492010-09-30 09:14:40 -0500488 enum fsl_phy_enet_if iface = uec->uec_info->enet_interface_type;
Heiko Schocher582c55a2010-01-20 09:04:28 +0100489 int speed = uec->uec_info->speed;
Haiying Wang41410ee2008-09-24 11:42:12 -0500490
Heiko Schocher582c55a2010-01-20 09:04:28 +0100491 if ((speed == 1000) &&
492 (iface == RGMII_ID ||
493 iface == RGMII_RXID ||
494 iface == RGMII_TXID)) {
Haiying Wang41410ee2008-09-24 11:42:12 -0500495 int temp;
496
Andy Fleming09c04c22011-03-22 22:49:13 -0500497 temp = uec_phy_read(mii_info, MII_M1111_PHY_EXT_CR);
Heiko Schocher582c55a2010-01-20 09:04:28 +0100498 if (iface == RGMII_ID) {
Anton Vorontsov6185f802009-09-16 23:21:53 +0400499 temp |= MII_M1111_RX_DELAY | MII_M1111_TX_DELAY;
Heiko Schocher582c55a2010-01-20 09:04:28 +0100500 } else if (iface == RGMII_RXID) {
Anton Vorontsov6185f802009-09-16 23:21:53 +0400501 temp &= ~MII_M1111_TX_DELAY;
502 temp |= MII_M1111_RX_DELAY;
Heiko Schocher582c55a2010-01-20 09:04:28 +0100503 } else if (iface == RGMII_TXID) {
Anton Vorontsov6185f802009-09-16 23:21:53 +0400504 temp &= ~MII_M1111_RX_DELAY;
505 temp |= MII_M1111_TX_DELAY;
506 }
Andy Fleming09c04c22011-03-22 22:49:13 -0500507 uec_phy_write(mii_info, MII_M1111_PHY_EXT_CR, temp);
Haiying Wang41410ee2008-09-24 11:42:12 -0500508
Andy Fleming09c04c22011-03-22 22:49:13 -0500509 temp = uec_phy_read(mii_info, MII_M1111_PHY_EXT_SR);
Haiying Wang41410ee2008-09-24 11:42:12 -0500510 temp &= ~MII_M1111_HWCFG_MODE_MASK;
511 temp |= MII_M1111_HWCFG_MODE_RGMII;
Andy Fleming09c04c22011-03-22 22:49:13 -0500512 uec_phy_write(mii_info, MII_M1111_PHY_EXT_SR, temp);
Haiying Wang41410ee2008-09-24 11:42:12 -0500513
Andy Fleming09c04c22011-03-22 22:49:13 -0500514 uec_phy_write(mii_info, MII_BMCR, BMCR_RESET);
Haiying Wang41410ee2008-09-24 11:42:12 -0500515 }
516
517 return 0;
518}
519
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100520static int marvell_read_status (struct uec_mii_info *mii_info)
Dave Liu7737d5c2006-11-03 12:11:15 -0600521{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100522 u16 status;
523 int err;
Dave Liu7737d5c2006-11-03 12:11:15 -0600524
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100525 /* Update the link, but return if there
526 * was an error */
527 err = genmii_update_link (mii_info);
528 if (err)
529 return err;
Dave Liu7737d5c2006-11-03 12:11:15 -0600530
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100531 /* If the link is up, read the speed and duplex */
532 /* If we aren't autonegotiating, assume speeds
533 * are as set */
534 if (mii_info->autoneg && mii_info->link) {
535 int speed;
Dave Liu7737d5c2006-11-03 12:11:15 -0600536
Andy Fleming09c04c22011-03-22 22:49:13 -0500537 status = uec_phy_read(mii_info, MII_M1011_PHY_SPEC_STATUS);
Dave Liu7737d5c2006-11-03 12:11:15 -0600538
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100539 /* Get the duplexity */
540 if (status & MII_M1011_PHY_SPEC_STATUS_FULLDUPLEX)
541 mii_info->duplex = DUPLEX_FULL;
542 else
543 mii_info->duplex = DUPLEX_HALF;
Dave Liu7737d5c2006-11-03 12:11:15 -0600544
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100545 /* Get the speed */
546 speed = status & MII_M1011_PHY_SPEC_STATUS_SPD_MASK;
547 switch (speed) {
548 case MII_M1011_PHY_SPEC_STATUS_1000:
549 mii_info->speed = SPEED_1000;
550 break;
551 case MII_M1011_PHY_SPEC_STATUS_100:
552 mii_info->speed = SPEED_100;
553 break;
554 default:
555 mii_info->speed = SPEED_10;
556 break;
557 }
558 mii_info->pause = 0;
559 }
560
561 return 0;
Dave Liu7737d5c2006-11-03 12:11:15 -0600562}
563
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100564static int marvell_ack_interrupt (struct uec_mii_info *mii_info)
Dave Liu7737d5c2006-11-03 12:11:15 -0600565{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100566 /* Clear the interrupts by reading the reg */
Andy Fleming09c04c22011-03-22 22:49:13 -0500567 uec_phy_read(mii_info, MII_M1011_IEVENT);
Dave Liu7737d5c2006-11-03 12:11:15 -0600568
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100569 return 0;
Dave Liu7737d5c2006-11-03 12:11:15 -0600570}
571
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100572static int marvell_config_intr (struct uec_mii_info *mii_info)
Dave Liu7737d5c2006-11-03 12:11:15 -0600573{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100574 if (mii_info->interrupts == MII_INTERRUPT_ENABLED)
Andy Fleming09c04c22011-03-22 22:49:13 -0500575 uec_phy_write(mii_info, MII_M1011_IMASK, MII_M1011_IMASK_INIT);
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100576 else
Andy Fleming09c04c22011-03-22 22:49:13 -0500577 uec_phy_write(mii_info, MII_M1011_IMASK,
578 MII_M1011_IMASK_CLEAR);
Dave Liu7737d5c2006-11-03 12:11:15 -0600579
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100580 return 0;
Dave Liu7737d5c2006-11-03 12:11:15 -0600581}
582
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100583static int dm9161_init (struct uec_mii_info *mii_info)
Dave Liu7737d5c2006-11-03 12:11:15 -0600584{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100585 /* Reset the PHY */
Andy Fleming09c04c22011-03-22 22:49:13 -0500586 uec_phy_write(mii_info, MII_BMCR, uec_phy_read(mii_info, MII_BMCR) |
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500587 BMCR_RESET);
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100588 /* PHY and MAC connect */
Andy Fleming09c04c22011-03-22 22:49:13 -0500589 uec_phy_write(mii_info, MII_BMCR, uec_phy_read(mii_info, MII_BMCR) &
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500590 ~BMCR_ISOLATE);
Kim Phillipsee62ed32008-01-15 14:11:00 -0600591
Andy Fleming09c04c22011-03-22 22:49:13 -0500592 uec_phy_write(mii_info, MII_DM9161_SCR, MII_DM9161_SCR_INIT);
Kim Phillipsee62ed32008-01-15 14:11:00 -0600593
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100594 config_genmii_advert (mii_info);
595 /* Start/restart aneg */
596 genmii_config_aneg (mii_info);
Dave Liu7737d5c2006-11-03 12:11:15 -0600597
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100598 return 0;
Dave Liu7737d5c2006-11-03 12:11:15 -0600599}
600
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100601static int dm9161_config_aneg (struct uec_mii_info *mii_info)
Dave Liu7737d5c2006-11-03 12:11:15 -0600602{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100603 return 0;
Dave Liu7737d5c2006-11-03 12:11:15 -0600604}
605
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100606static int dm9161_read_status (struct uec_mii_info *mii_info)
Dave Liu7737d5c2006-11-03 12:11:15 -0600607{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100608 u16 status;
609 int err;
Dave Liu7737d5c2006-11-03 12:11:15 -0600610
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100611 /* Update the link, but return if there was an error */
612 err = genmii_update_link (mii_info);
613 if (err)
614 return err;
615 /* If the link is up, read the speed and duplex
616 If we aren't autonegotiating assume speeds are as set */
617 if (mii_info->autoneg && mii_info->link) {
Andy Fleming09c04c22011-03-22 22:49:13 -0500618 status = uec_phy_read(mii_info, MII_DM9161_SCSR);
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100619 if (status & (MII_DM9161_SCSR_100F | MII_DM9161_SCSR_100H))
620 mii_info->speed = SPEED_100;
621 else
622 mii_info->speed = SPEED_10;
Dave Liu7737d5c2006-11-03 12:11:15 -0600623
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100624 if (status & (MII_DM9161_SCSR_100F | MII_DM9161_SCSR_10F))
625 mii_info->duplex = DUPLEX_FULL;
626 else
627 mii_info->duplex = DUPLEX_HALF;
628 }
Dave Liu7737d5c2006-11-03 12:11:15 -0600629
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100630 return 0;
Dave Liu7737d5c2006-11-03 12:11:15 -0600631}
632
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100633static int dm9161_ack_interrupt (struct uec_mii_info *mii_info)
Dave Liu7737d5c2006-11-03 12:11:15 -0600634{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100635 /* Clear the interrupt by reading the reg */
Andy Fleming09c04c22011-03-22 22:49:13 -0500636 uec_phy_read(mii_info, MII_DM9161_INTR);
Dave Liu7737d5c2006-11-03 12:11:15 -0600637
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100638 return 0;
Dave Liu7737d5c2006-11-03 12:11:15 -0600639}
640
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100641static int dm9161_config_intr (struct uec_mii_info *mii_info)
Dave Liu7737d5c2006-11-03 12:11:15 -0600642{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100643 if (mii_info->interrupts == MII_INTERRUPT_ENABLED)
Andy Fleming09c04c22011-03-22 22:49:13 -0500644 uec_phy_write(mii_info, MII_DM9161_INTR, MII_DM9161_INTR_INIT);
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100645 else
Andy Fleming09c04c22011-03-22 22:49:13 -0500646 uec_phy_write(mii_info, MII_DM9161_INTR, MII_DM9161_INTR_STOP);
Dave Liu7737d5c2006-11-03 12:11:15 -0600647
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100648 return 0;
Dave Liu7737d5c2006-11-03 12:11:15 -0600649}
650
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100651static void dm9161_close (struct uec_mii_info *mii_info)
Dave Liu7737d5c2006-11-03 12:11:15 -0600652{
653}
654
Richard Retanubunedf3fe72008-10-23 09:08:18 -0400655static int fixed_phy_aneg (struct uec_mii_info *mii_info)
656{
657 mii_info->autoneg = 0; /* Turn off auto negotiation for fixed phy */
658 return 0;
659}
660
661static int fixed_phy_read_status (struct uec_mii_info *mii_info)
662{
663 int i = 0;
664
665 for (i = 0; i < ARRAY_SIZE(fixed_phy_port); i++) {
Richard Retanubun1443cd72009-07-01 14:04:05 -0400666 if (strncmp(mii_info->dev->name, fixed_phy_port[i].name,
667 strlen(mii_info->dev->name)) == 0) {
Richard Retanubunedf3fe72008-10-23 09:08:18 -0400668 mii_info->speed = fixed_phy_port[i].speed;
669 mii_info->duplex = fixed_phy_port[i].duplex;
670 mii_info->link = 1; /* Link is always UP */
671 mii_info->pause = 0;
672 break;
673 }
674 }
675 return 0;
676}
677
Heiko Schocher8b69b562008-11-20 09:57:14 +0100678static int smsc_config_aneg (struct uec_mii_info *mii_info)
679{
680 return 0;
681}
682
683static int smsc_read_status (struct uec_mii_info *mii_info)
684{
685 u16 status;
686 int err;
687
688 /* Update the link, but return if there
689 * was an error */
690 err = genmii_update_link (mii_info);
691 if (err)
692 return err;
693
694 /* If the link is up, read the speed and duplex */
695 /* If we aren't autonegotiating, assume speeds
696 * are as set */
697 if (mii_info->autoneg && mii_info->link) {
698 int val;
699
Andy Fleming09c04c22011-03-22 22:49:13 -0500700 status = uec_phy_read(mii_info, 0x1f);
Heiko Schocher8b69b562008-11-20 09:57:14 +0100701 val = (status & 0x1c) >> 2;
702
703 switch (val) {
704 case 1:
705 mii_info->duplex = DUPLEX_HALF;
706 mii_info->speed = SPEED_10;
707 break;
708 case 5:
709 mii_info->duplex = DUPLEX_FULL;
710 mii_info->speed = SPEED_10;
711 break;
712 case 2:
713 mii_info->duplex = DUPLEX_HALF;
714 mii_info->speed = SPEED_100;
715 break;
716 case 6:
717 mii_info->duplex = DUPLEX_FULL;
718 mii_info->speed = SPEED_100;
719 break;
720 }
721 mii_info->pause = 0;
722 }
723
724 return 0;
725}
726
Dave Liu7737d5c2006-11-03 12:11:15 -0600727static struct phy_info phy_info_dm9161 = {
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100728 .phy_id = 0x0181b880,
729 .phy_id_mask = 0x0ffffff0,
730 .name = "Davicom DM9161E",
731 .init = dm9161_init,
732 .config_aneg = dm9161_config_aneg,
733 .read_status = dm9161_read_status,
734 .close = dm9161_close,
Dave Liu7737d5c2006-11-03 12:11:15 -0600735};
736
737static struct phy_info phy_info_dm9161a = {
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100738 .phy_id = 0x0181b8a0,
739 .phy_id_mask = 0x0ffffff0,
740 .name = "Davicom DM9161A",
741 .features = MII_BASIC_FEATURES,
742 .init = dm9161_init,
743 .config_aneg = dm9161_config_aneg,
744 .read_status = dm9161_read_status,
745 .ack_interrupt = dm9161_ack_interrupt,
746 .config_intr = dm9161_config_intr,
747 .close = dm9161_close,
Dave Liu7737d5c2006-11-03 12:11:15 -0600748};
749
750static struct phy_info phy_info_marvell = {
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100751 .phy_id = 0x01410c00,
752 .phy_id_mask = 0xffffff00,
753 .name = "Marvell 88E11x1",
754 .features = MII_GBIT_FEATURES,
Andy Fleming09c04c22011-03-22 22:49:13 -0500755 .init = &uec_marvell_init,
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100756 .config_aneg = &marvell_config_aneg,
757 .read_status = &marvell_read_status,
758 .ack_interrupt = &marvell_ack_interrupt,
759 .config_intr = &marvell_config_intr,
Dave Liu7737d5c2006-11-03 12:11:15 -0600760};
761
Anton Vorontsov300615d2008-03-24 20:46:34 +0300762static struct phy_info phy_info_bcm5481 = {
763 .phy_id = 0x0143bca0,
764 .phy_id_mask = 0xffffff0,
765 .name = "Broadcom 5481",
766 .features = MII_GBIT_FEATURES,
767 .read_status = genmii_read_status,
768 .init = bcm_init,
769};
770
Richard Retanubunedf3fe72008-10-23 09:08:18 -0400771static struct phy_info phy_info_fixedphy = {
772 .phy_id = CONFIG_FIXED_PHY,
773 .phy_id_mask = CONFIG_FIXED_PHY,
774 .name = "Fixed PHY",
775 .config_aneg = fixed_phy_aneg,
776 .read_status = fixed_phy_read_status,
777};
778
Heiko Schocher8b69b562008-11-20 09:57:14 +0100779static struct phy_info phy_info_smsclan8700 = {
780 .phy_id = 0x0007c0c0,
781 .phy_id_mask = 0xfffffff0,
782 .name = "SMSC LAN8700",
783 .features = MII_BASIC_FEATURES,
784 .config_aneg = smsc_config_aneg,
785 .read_status = smsc_read_status,
786};
787
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100788static struct phy_info phy_info_genmii = {
789 .phy_id = 0x00000000,
790 .phy_id_mask = 0x00000000,
791 .name = "Generic MII",
792 .features = MII_BASIC_FEATURES,
793 .config_aneg = genmii_config_aneg,
794 .read_status = genmii_read_status,
Dave Liu7737d5c2006-11-03 12:11:15 -0600795};
796
797static struct phy_info *phy_info[] = {
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100798 &phy_info_dm9161,
799 &phy_info_dm9161a,
800 &phy_info_marvell,
Anton Vorontsov300615d2008-03-24 20:46:34 +0300801 &phy_info_bcm5481,
Heiko Schocher8b69b562008-11-20 09:57:14 +0100802 &phy_info_smsclan8700,
Richard Retanubunedf3fe72008-10-23 09:08:18 -0400803 &phy_info_fixedphy,
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100804 &phy_info_genmii,
805 NULL
Dave Liu7737d5c2006-11-03 12:11:15 -0600806};
807
Andy Fleming09c04c22011-03-22 22:49:13 -0500808u16 uec_phy_read(struct uec_mii_info *mii_info, u16 regnum)
Dave Liu7737d5c2006-11-03 12:11:15 -0600809{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100810 return mii_info->mdio_read (mii_info->dev, mii_info->mii_id, regnum);
Dave Liu7737d5c2006-11-03 12:11:15 -0600811}
812
Andy Fleming09c04c22011-03-22 22:49:13 -0500813void uec_phy_write(struct uec_mii_info *mii_info, u16 regnum, u16 val)
Dave Liu7737d5c2006-11-03 12:11:15 -0600814{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100815 mii_info->mdio_write (mii_info->dev, mii_info->mii_id, regnum, val);
Dave Liu7737d5c2006-11-03 12:11:15 -0600816}
817
818/* Use the PHY ID registers to determine what type of PHY is attached
819 * to device dev. return a struct phy_info structure describing that PHY
820 */
Andy Flemingda9d4612007-08-14 00:14:25 -0500821struct phy_info *uec_get_phy_info (struct uec_mii_info *mii_info)
Dave Liu7737d5c2006-11-03 12:11:15 -0600822{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100823 u16 phy_reg;
824 u32 phy_ID;
825 int i;
826 struct phy_info *theInfo = NULL;
Dave Liu7737d5c2006-11-03 12:11:15 -0600827
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100828 /* Grab the bits from PHYIR1, and put them in the upper half */
Andy Fleming09c04c22011-03-22 22:49:13 -0500829 phy_reg = uec_phy_read(mii_info, MII_PHYSID1);
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100830 phy_ID = (phy_reg & 0xffff) << 16;
Dave Liu7737d5c2006-11-03 12:11:15 -0600831
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100832 /* Grab the bits from PHYIR2, and put them in the lower half */
Andy Fleming09c04c22011-03-22 22:49:13 -0500833 phy_reg = uec_phy_read(mii_info, MII_PHYSID2);
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100834 phy_ID |= (phy_reg & 0xffff);
Dave Liu7737d5c2006-11-03 12:11:15 -0600835
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100836 /* loop through all the known PHY types, and find one that */
837 /* matches the ID we read from the PHY. */
838 for (i = 0; phy_info[i]; i++)
839 if (phy_info[i]->phy_id ==
840 (phy_ID & phy_info[i]->phy_id_mask)) {
841 theInfo = phy_info[i];
842 break;
843 }
Dave Liu7737d5c2006-11-03 12:11:15 -0600844
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100845 /* This shouldn't happen, as we have generic PHY support */
846 if (theInfo == NULL) {
847 ugphy_info ("UEC: PHY id %x is not supported!", phy_ID);
848 return NULL;
849 } else {
850 ugphy_info ("UEC: PHY is %s (%x)", theInfo->name, phy_ID);
851 }
Dave Liu7737d5c2006-11-03 12:11:15 -0600852
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100853 return theInfo;
Dave Liu7737d5c2006-11-03 12:11:15 -0600854}
855
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100856void marvell_phy_interface_mode (struct eth_device *dev,
Kumar Galaf8c42492010-09-30 09:14:40 -0500857 enum fsl_phy_enet_if type,
Heiko Schocher582c55a2010-01-20 09:04:28 +0100858 int speed
859 )
Dave Liu7737d5c2006-11-03 12:11:15 -0600860{
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100861 uec_private_t *uec = (uec_private_t *) dev->priv;
862 struct uec_mii_info *mii_info;
Kim Phillipsf655ade2008-02-27 15:06:39 -0600863 u16 status;
Dave Liu7737d5c2006-11-03 12:11:15 -0600864
865 if (!uec->mii_info) {
Kim Phillipsf30b61542008-02-27 16:08:22 -0600866 printf ("%s: the PHY not initialized\n", __FUNCTION__);
Dave Liu7737d5c2006-11-03 12:11:15 -0600867 return;
868 }
869 mii_info = uec->mii_info;
870
Heiko Schocher582c55a2010-01-20 09:04:28 +0100871 if (type == RGMII) {
872 if (speed == 100) {
Andy Fleming09c04c22011-03-22 22:49:13 -0500873 uec_phy_write(mii_info, 0x00, 0x9140);
874 uec_phy_write(mii_info, 0x1d, 0x001f);
875 uec_phy_write(mii_info, 0x1e, 0x200c);
876 uec_phy_write(mii_info, 0x1d, 0x0005);
877 uec_phy_write(mii_info, 0x1e, 0x0000);
878 uec_phy_write(mii_info, 0x1e, 0x0100);
879 uec_phy_write(mii_info, 0x09, 0x0e00);
880 uec_phy_write(mii_info, 0x04, 0x01e1);
881 uec_phy_write(mii_info, 0x00, 0x9140);
882 uec_phy_write(mii_info, 0x00, 0x1000);
Heiko Schocher582c55a2010-01-20 09:04:28 +0100883 udelay (100000);
Andy Fleming09c04c22011-03-22 22:49:13 -0500884 uec_phy_write(mii_info, 0x00, 0x2900);
885 uec_phy_write(mii_info, 0x14, 0x0cd2);
886 uec_phy_write(mii_info, 0x00, 0xa100);
887 uec_phy_write(mii_info, 0x09, 0x0000);
888 uec_phy_write(mii_info, 0x1b, 0x800b);
889 uec_phy_write(mii_info, 0x04, 0x05e1);
890 uec_phy_write(mii_info, 0x00, 0xa100);
891 uec_phy_write(mii_info, 0x00, 0x2100);
Heiko Schocher582c55a2010-01-20 09:04:28 +0100892 udelay (1000000);
893 } else if (speed == 10) {
Andy Fleming09c04c22011-03-22 22:49:13 -0500894 uec_phy_write(mii_info, 0x14, 0x8e40);
895 uec_phy_write(mii_info, 0x1b, 0x800b);
896 uec_phy_write(mii_info, 0x14, 0x0c82);
897 uec_phy_write(mii_info, 0x00, 0x8100);
Heiko Schocher582c55a2010-01-20 09:04:28 +0100898 udelay (1000000);
899 }
Dave Liu7737d5c2006-11-03 12:11:15 -0600900 }
Kim Phillipsf655ade2008-02-27 15:06:39 -0600901
902 /* handle 88e1111 rev.B2 erratum 5.6 */
903 if (mii_info->autoneg) {
Andy Fleming09c04c22011-03-22 22:49:13 -0500904 status = uec_phy_read(mii_info, MII_BMCR);
905 uec_phy_write(mii_info, MII_BMCR, status | BMCR_ANENABLE);
Kim Phillipsf655ade2008-02-27 15:06:39 -0600906 }
907 /* now the B2 will correctly report autoneg completion status */
Dave Liu7737d5c2006-11-03 12:11:15 -0600908}
909
Heiko Schocher582c55a2010-01-20 09:04:28 +0100910void change_phy_interface_mode (struct eth_device *dev,
Kumar Galaf8c42492010-09-30 09:14:40 -0500911 enum fsl_phy_enet_if type, int speed)
Dave Liu7737d5c2006-11-03 12:11:15 -0600912{
913#ifdef CONFIG_PHY_MODE_NEED_CHANGE
Heiko Schocher582c55a2010-01-20 09:04:28 +0100914 marvell_phy_interface_mode (dev, type, speed);
Dave Liu7737d5c2006-11-03 12:11:15 -0600915#endif
916}