blob: 5dc05e5a02e2d42edde471668a93265e24f05918 [file] [log] [blame]
wdenk42d1f032003-10-15 23:53:47 +00001/*
wdenk97d80fc2004-06-09 00:34:46 +00002 * Freescale Three Speed Ethernet Controller driver
wdenk42d1f032003-10-15 23:53:47 +00003 *
4 * This software may be used and distributed according to the
5 * terms of the GNU Public License, Version 2, incorporated
6 * herein by reference.
7 *
Andy Fleming81f481c2007-04-23 02:24:28 -05008 * Copyright 2004, 2007 Freescale Semiconductor, Inc.
wdenk42d1f032003-10-15 23:53:47 +00009 * (C) Copyright 2003, Motorola, Inc.
wdenk42d1f032003-10-15 23:53:47 +000010 * author Andy Fleming
11 *
12 */
13
14#include <config.h>
wdenk42d1f032003-10-15 23:53:47 +000015#include <common.h>
16#include <malloc.h>
17#include <net.h>
18#include <command.h>
Andy Flemingdd3d1f52008-08-31 16:33:25 -050019#include <tsec.h>
wdenk42d1f032003-10-15 23:53:47 +000020
Marian Balakowicz63ff0042005-10-28 22:30:33 +020021#include "miiphy.h"
wdenk42d1f032003-10-15 23:53:47 +000022
Wolfgang Denkd87080b2006-03-31 18:32:53 +020023DECLARE_GLOBAL_DATA_PTR;
24
Marian Balakowicz63ff0042005-10-28 22:30:33 +020025#define TX_BUF_CNT 2
wdenk42d1f032003-10-15 23:53:47 +000026
Jon Loeliger89875e92006-10-10 17:03:43 -050027static uint rxIdx; /* index of the current RX buffer */
28static uint txIdx; /* index of the current TX buffer */
wdenk42d1f032003-10-15 23:53:47 +000029
30typedef volatile struct rtxbd {
31 txbd8_t txbd[TX_BUF_CNT];
32 rxbd8_t rxbd[PKTBUFSRX];
Jon Loeliger89875e92006-10-10 17:03:43 -050033} RTXBD;
wdenk42d1f032003-10-15 23:53:47 +000034
Andy Fleming75b9d4a2008-08-31 16:33:26 -050035#define MAXCONTROLLERS (8)
wdenk97d80fc2004-06-09 00:34:46 +000036
37static int relocated = 0;
38
39static struct tsec_private *privlist[MAXCONTROLLERS];
Andy Fleming75b9d4a2008-08-31 16:33:26 -050040static int num_tsecs = 0;
wdenk97d80fc2004-06-09 00:34:46 +000041
wdenk42d1f032003-10-15 23:53:47 +000042#ifdef __GNUC__
43static RTXBD rtx __attribute__ ((aligned(8)));
44#else
45#error "rtx must be 64-bit aligned"
46#endif
47
Jon Loeliger89875e92006-10-10 17:03:43 -050048static int tsec_send(struct eth_device *dev,
49 volatile void *packet, int length);
50static int tsec_recv(struct eth_device *dev);
51static int tsec_init(struct eth_device *dev, bd_t * bd);
52static void tsec_halt(struct eth_device *dev);
53static void init_registers(volatile tsec_t * regs);
wdenk97d80fc2004-06-09 00:34:46 +000054static void startup_tsec(struct eth_device *dev);
55static int init_phy(struct eth_device *dev);
56void write_phy_reg(struct tsec_private *priv, uint regnum, uint value);
57uint read_phy_reg(struct tsec_private *priv, uint regnum);
Jon Loeliger89875e92006-10-10 17:03:43 -050058struct phy_info *get_phy_info(struct eth_device *dev);
wdenk97d80fc2004-06-09 00:34:46 +000059void phy_run_commands(struct tsec_private *priv, struct phy_cmd *cmd);
60static void adjust_link(struct eth_device *dev);
61static void relocate_cmds(void);
Wolfgang Denk409ecdc2007-11-18 16:36:27 +010062#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) \
63 && !defined(BITBANGMII)
Marian Balakowicz63ff0042005-10-28 22:30:33 +020064static int tsec_miiphy_write(char *devname, unsigned char addr,
Jon Loeliger89875e92006-10-10 17:03:43 -050065 unsigned char reg, unsigned short value);
Marian Balakowicz63ff0042005-10-28 22:30:33 +020066static int tsec_miiphy_read(char *devname, unsigned char addr,
Jon Loeliger89875e92006-10-10 17:03:43 -050067 unsigned char reg, unsigned short *value);
Wolfgang Denk409ecdc2007-11-18 16:36:27 +010068#endif
David Updegraff53a5c422007-06-11 10:41:07 -050069#ifdef CONFIG_MCAST_TFTP
70static int tsec_mcast_addr (struct eth_device *dev, u8 mcast_mac, u8 set);
71#endif
wdenk7abf0c52004-04-18 21:45:42 +000072
Andy Fleming75b9d4a2008-08-31 16:33:26 -050073/* Default initializations for TSEC controllers. */
74
75static struct tsec_info_struct tsec_info[] = {
76#ifdef CONFIG_TSEC1
77 STD_TSEC_INFO(1), /* TSEC1 */
78#endif
79#ifdef CONFIG_TSEC2
80 STD_TSEC_INFO(2), /* TSEC2 */
81#endif
82#ifdef CONFIG_MPC85XX_FEC
83 {
84 .regs = (tsec_t *)(TSEC_BASE_ADDR + 0x2000),
85 .miiregs = (tsec_t *)(TSEC_BASE_ADDR),
86 .devname = CONFIG_MPC85XX_FEC_NAME,
87 .phyaddr = FEC_PHY_ADDR,
88 .flags = FEC_FLAGS
89 }, /* FEC */
90#endif
91#ifdef CONFIG_TSEC3
92 STD_TSEC_INFO(3), /* TSEC3 */
93#endif
94#ifdef CONFIG_TSEC4
95 STD_TSEC_INFO(4), /* TSEC4 */
96#endif
97};
98
99int tsec_eth_init(bd_t *bis, struct tsec_info_struct *tsecs, int num)
100{
101 int i;
102
103 for (i = 0; i < num; i++)
104 tsec_initialize(bis, &tsecs[i]);
105
106 return 0;
107}
108
109int tsec_standard_init(bd_t *bis)
110{
111 return tsec_eth_init(bis, tsec_info, ARRAY_SIZE(tsec_info));
112}
113
wdenk97d80fc2004-06-09 00:34:46 +0000114/* Initialize device structure. Returns success if PHY
115 * initialization succeeded (i.e. if it recognizes the PHY)
116 */
Andy Fleming75b9d4a2008-08-31 16:33:26 -0500117int tsec_initialize(bd_t * bis, struct tsec_info_struct *tsec_info)
wdenk42d1f032003-10-15 23:53:47 +0000118{
Jon Loeliger89875e92006-10-10 17:03:43 -0500119 struct eth_device *dev;
wdenk42d1f032003-10-15 23:53:47 +0000120 int i;
wdenk97d80fc2004-06-09 00:34:46 +0000121 struct tsec_private *priv;
wdenk42d1f032003-10-15 23:53:47 +0000122
Jon Loeliger89875e92006-10-10 17:03:43 -0500123 dev = (struct eth_device *)malloc(sizeof *dev);
wdenk42d1f032003-10-15 23:53:47 +0000124
Jon Loeliger89875e92006-10-10 17:03:43 -0500125 if (NULL == dev)
wdenk42d1f032003-10-15 23:53:47 +0000126 return 0;
127
128 memset(dev, 0, sizeof *dev);
129
Jon Loeliger89875e92006-10-10 17:03:43 -0500130 priv = (struct tsec_private *)malloc(sizeof(*priv));
wdenk97d80fc2004-06-09 00:34:46 +0000131
Jon Loeliger89875e92006-10-10 17:03:43 -0500132 if (NULL == priv)
wdenk97d80fc2004-06-09 00:34:46 +0000133 return 0;
134
Andy Fleming75b9d4a2008-08-31 16:33:26 -0500135 privlist[num_tsecs++] = priv;
136 priv->regs = tsec_info->regs;
137 priv->phyregs = tsec_info->miiregs;
wdenk97d80fc2004-06-09 00:34:46 +0000138
Andy Fleming75b9d4a2008-08-31 16:33:26 -0500139 priv->phyaddr = tsec_info->phyaddr;
140 priv->flags = tsec_info->flags;
wdenk97d80fc2004-06-09 00:34:46 +0000141
Andy Fleming75b9d4a2008-08-31 16:33:26 -0500142 sprintf(dev->name, tsec_info->devname);
wdenk42d1f032003-10-15 23:53:47 +0000143 dev->iobase = 0;
Jon Loeliger89875e92006-10-10 17:03:43 -0500144 dev->priv = priv;
145 dev->init = tsec_init;
146 dev->halt = tsec_halt;
147 dev->send = tsec_send;
148 dev->recv = tsec_recv;
David Updegraff53a5c422007-06-11 10:41:07 -0500149#ifdef CONFIG_MCAST_TFTP
150 dev->mcast = tsec_mcast_addr;
151#endif
wdenk42d1f032003-10-15 23:53:47 +0000152
153 /* Tell u-boot to get the addr from the env */
Jon Loeliger89875e92006-10-10 17:03:43 -0500154 for (i = 0; i < 6; i++)
wdenk42d1f032003-10-15 23:53:47 +0000155 dev->enetaddr[i] = 0;
156
157 eth_register(dev);
158
wdenk97d80fc2004-06-09 00:34:46 +0000159 /* Reset the MAC */
160 priv->regs->maccfg1 |= MACCFG1_SOFT_RESET;
Andy Fleming9e5be822009-02-03 18:26:41 -0600161 udelay(2); /* Soft Reset must be asserted for 3 TX clocks */
wdenk97d80fc2004-06-09 00:34:46 +0000162 priv->regs->maccfg1 &= ~(MACCFG1_SOFT_RESET);
wdenk7abf0c52004-04-18 21:45:42 +0000163
Jon Loeligercb51c0b2007-07-09 17:39:42 -0500164#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) \
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200165 && !defined(BITBANGMII)
166 miiphy_register(dev->name, tsec_miiphy_read, tsec_miiphy_write);
167#endif
168
wdenk97d80fc2004-06-09 00:34:46 +0000169 /* Try to initialize PHY here, and return */
170 return init_phy(dev);
wdenk42d1f032003-10-15 23:53:47 +0000171}
172
wdenk42d1f032003-10-15 23:53:47 +0000173/* Initializes data structures and registers for the controller,
wdenk9d46ea42005-03-14 23:56:42 +0000174 * and brings the interface up. Returns the link status, meaning
wdenk97d80fc2004-06-09 00:34:46 +0000175 * that it returns success if the link is up, failure otherwise.
Jon Loeliger89875e92006-10-10 17:03:43 -0500176 * This allows u-boot to find the first active controller.
177 */
178int tsec_init(struct eth_device *dev, bd_t * bd)
wdenk42d1f032003-10-15 23:53:47 +0000179{
wdenk42d1f032003-10-15 23:53:47 +0000180 uint tempval;
181 char tmpbuf[MAC_ADDR_LEN];
182 int i;
wdenk97d80fc2004-06-09 00:34:46 +0000183 struct tsec_private *priv = (struct tsec_private *)dev->priv;
184 volatile tsec_t *regs = priv->regs;
wdenk42d1f032003-10-15 23:53:47 +0000185
186 /* Make sure the controller is stopped */
187 tsec_halt(dev);
188
wdenk97d80fc2004-06-09 00:34:46 +0000189 /* Init MACCFG2. Defaults to GMII */
wdenk42d1f032003-10-15 23:53:47 +0000190 regs->maccfg2 = MACCFG2_INIT_SETTINGS;
191
192 /* Init ECNTRL */
193 regs->ecntrl = ECNTRL_INIT_SETTINGS;
194
195 /* Copy the station address into the address registers.
196 * Backwards, because little endian MACS are dumb */
Jon Loeliger89875e92006-10-10 17:03:43 -0500197 for (i = 0; i < MAC_ADDR_LEN; i++) {
wdenk97d80fc2004-06-09 00:34:46 +0000198 tmpbuf[MAC_ADDR_LEN - 1 - i] = dev->enetaddr[i];
wdenk42d1f032003-10-15 23:53:47 +0000199 }
Kim Phillips88ad3fd2009-07-17 12:17:00 -0500200 tempval = (tmpbuf[0] << 24) | (tmpbuf[1] << 16) | (tmpbuf[2] << 8) |
201 tmpbuf[3];
202
203 regs->macstnaddr1 = tempval;
wdenk42d1f032003-10-15 23:53:47 +0000204
Jon Loeliger89875e92006-10-10 17:03:43 -0500205 tempval = *((uint *) (tmpbuf + 4));
wdenk42d1f032003-10-15 23:53:47 +0000206
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200207 regs->macstnaddr2 = tempval;
wdenk42d1f032003-10-15 23:53:47 +0000208
wdenk42d1f032003-10-15 23:53:47 +0000209 /* reset the indices to zero */
210 rxIdx = 0;
211 txIdx = 0;
212
213 /* Clear out (for the most part) the other registers */
214 init_registers(regs);
215
216 /* Ready the device for tx/rx */
wdenk97d80fc2004-06-09 00:34:46 +0000217 startup_tsec(dev);
wdenk42d1f032003-10-15 23:53:47 +0000218
wdenk97d80fc2004-06-09 00:34:46 +0000219 /* If there's no link, fail */
Ben Warren422b1a02008-01-09 18:15:53 -0500220 return (priv->link ? 0 : -1);
wdenk42d1f032003-10-15 23:53:47 +0000221}
222
Andy Fleming2abe3612008-08-31 16:33:27 -0500223/* Writes the given phy's reg with value, using the specified MDIO regs */
224static void tsec_local_mdio_write(volatile tsec_t *phyregs, uint addr,
225 uint reg, uint value)
wdenk97d80fc2004-06-09 00:34:46 +0000226{
Jon Loeliger89875e92006-10-10 17:03:43 -0500227 int timeout = 1000000;
wdenk97d80fc2004-06-09 00:34:46 +0000228
Andy Fleming2abe3612008-08-31 16:33:27 -0500229 phyregs->miimadd = (addr << 8) | reg;
230 phyregs->miimcon = value;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500231 asm("sync");
wdenk97d80fc2004-06-09 00:34:46 +0000232
Jon Loeliger89875e92006-10-10 17:03:43 -0500233 timeout = 1000000;
Andy Fleming2abe3612008-08-31 16:33:27 -0500234 while ((phyregs->miimind & MIIMIND_BUSY) && timeout--) ;
wdenk97d80fc2004-06-09 00:34:46 +0000235}
236
Andy Fleming2abe3612008-08-31 16:33:27 -0500237
238/* Provide the default behavior of writing the PHY of this ethernet device */
239#define write_phy_reg(priv, regnum, value) tsec_local_mdio_write(priv->phyregs,priv->phyaddr,regnum,value)
michael.firth@bt.com55fe7c52008-01-16 11:40:51 +0000240
wdenk97d80fc2004-06-09 00:34:46 +0000241/* Reads register regnum on the device's PHY through the
Andy Fleming2abe3612008-08-31 16:33:27 -0500242 * specified registers. It lowers and raises the read
wdenk97d80fc2004-06-09 00:34:46 +0000243 * command, and waits for the data to become valid (miimind
244 * notvalid bit cleared), and the bus to cease activity (miimind
245 * busy bit cleared), and then returns the value
246 */
Andy Fleming2abe3612008-08-31 16:33:27 -0500247uint tsec_local_mdio_read(volatile tsec_t *phyregs, uint phyid, uint regnum)
wdenk42d1f032003-10-15 23:53:47 +0000248{
249 uint value;
250
wdenk97d80fc2004-06-09 00:34:46 +0000251 /* Put the address of the phy, and the register
252 * number into MIIMADD */
Andy Fleming2abe3612008-08-31 16:33:27 -0500253 phyregs->miimadd = (phyid << 8) | regnum;
wdenk42d1f032003-10-15 23:53:47 +0000254
255 /* Clear the command register, and wait */
Andy Fleming2abe3612008-08-31 16:33:27 -0500256 phyregs->miimcom = 0;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500257 asm("sync");
wdenk42d1f032003-10-15 23:53:47 +0000258
259 /* Initiate a read command, and wait */
Andy Fleming2abe3612008-08-31 16:33:27 -0500260 phyregs->miimcom = MIIM_READ_COMMAND;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500261 asm("sync");
wdenk42d1f032003-10-15 23:53:47 +0000262
263 /* Wait for the the indication that the read is done */
Andy Fleming2abe3612008-08-31 16:33:27 -0500264 while ((phyregs->miimind & (MIIMIND_NOTVALID | MIIMIND_BUSY))) ;
wdenk42d1f032003-10-15 23:53:47 +0000265
266 /* Grab the value read from the PHY */
Andy Fleming2abe3612008-08-31 16:33:27 -0500267 value = phyregs->miimstat;
wdenk42d1f032003-10-15 23:53:47 +0000268
269 return value;
270}
271
michael.firth@bt.com55fe7c52008-01-16 11:40:51 +0000272/* #define to provide old read_phy_reg functionality without duplicating code */
Andy Fleming2abe3612008-08-31 16:33:27 -0500273#define read_phy_reg(priv,regnum) tsec_local_mdio_read(priv->phyregs,priv->phyaddr,regnum)
274
275#define TBIANA_SETTINGS ( \
276 TBIANA_ASYMMETRIC_PAUSE \
277 | TBIANA_SYMMETRIC_PAUSE \
278 | TBIANA_FULL_DUPLEX \
279 )
280
281#define TBICR_SETTINGS ( \
282 TBICR_PHY_RESET \
283 | TBICR_ANEG_ENABLE \
284 | TBICR_FULL_DUPLEX \
285 | TBICR_SPEED1_SET \
286 )
287/* Configure the TBI for SGMII operation */
288static void tsec_configure_serdes(struct tsec_private *priv)
289{
Peter Tyserce47eb42008-09-16 10:04:47 -0500290 /* Access TBI PHY registers at given TSEC register offset as opposed to the
291 * register offset used for external PHY accesses */
292 tsec_local_mdio_write(priv->regs, priv->regs->tbipa, TBI_ANA,
Andy Fleming2abe3612008-08-31 16:33:27 -0500293 TBIANA_SETTINGS);
Peter Tyserce47eb42008-09-16 10:04:47 -0500294 tsec_local_mdio_write(priv->regs, priv->regs->tbipa, TBI_TBICON,
Andy Fleming2abe3612008-08-31 16:33:27 -0500295 TBICON_CLK_SELECT);
Peter Tyserce47eb42008-09-16 10:04:47 -0500296 tsec_local_mdio_write(priv->regs, priv->regs->tbipa, TBI_CR,
Andy Fleming2abe3612008-08-31 16:33:27 -0500297 TBICR_SETTINGS);
298}
michael.firth@bt.com55fe7c52008-01-16 11:40:51 +0000299
wdenk97d80fc2004-06-09 00:34:46 +0000300/* Discover which PHY is attached to the device, and configure it
301 * properly. If the PHY is not recognized, then return 0
302 * (failure). Otherwise, return 1
303 */
304static int init_phy(struct eth_device *dev)
wdenk42d1f032003-10-15 23:53:47 +0000305{
wdenk97d80fc2004-06-09 00:34:46 +0000306 struct tsec_private *priv = (struct tsec_private *)dev->priv;
307 struct phy_info *curphy;
Andy Fleming2abe3612008-08-31 16:33:27 -0500308 volatile tsec_t *phyregs = priv->phyregs;
309 volatile tsec_t *regs = priv->regs;
wdenk42d1f032003-10-15 23:53:47 +0000310
311 /* Assign a Physical address to the TBI */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200312 regs->tbipa = CONFIG_SYS_TBIPA_VALUE;
313 phyregs->tbipa = CONFIG_SYS_TBIPA_VALUE;
Jon Loeliger89875e92006-10-10 17:03:43 -0500314 asm("sync");
wdenk3dd7f0f2005-04-04 23:43:44 +0000315
316 /* Reset MII (due to new addresses) */
317 priv->phyregs->miimcfg = MIIMCFG_RESET;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500318 asm("sync");
wdenk3dd7f0f2005-04-04 23:43:44 +0000319 priv->phyregs->miimcfg = MIIMCFG_INIT_VALUE;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500320 asm("sync");
Jon Loeliger89875e92006-10-10 17:03:43 -0500321 while (priv->phyregs->miimind & MIIMIND_BUSY) ;
wdenk42d1f032003-10-15 23:53:47 +0000322
Jon Loeliger89875e92006-10-10 17:03:43 -0500323 if (0 == relocated)
wdenk97d80fc2004-06-09 00:34:46 +0000324 relocate_cmds();
wdenk42d1f032003-10-15 23:53:47 +0000325
wdenk97d80fc2004-06-09 00:34:46 +0000326 /* Get the cmd structure corresponding to the attached
327 * PHY */
328 curphy = get_phy_info(dev);
wdenk42d1f032003-10-15 23:53:47 +0000329
Ben Warren4653f912006-10-26 14:38:25 -0400330 if (curphy == NULL) {
331 priv->phyinfo = NULL;
wdenk97d80fc2004-06-09 00:34:46 +0000332 printf("%s: No PHY found\n", dev->name);
wdenk42d1f032003-10-15 23:53:47 +0000333
wdenk97d80fc2004-06-09 00:34:46 +0000334 return 0;
wdenk42d1f032003-10-15 23:53:47 +0000335 }
336
Andy Fleming2abe3612008-08-31 16:33:27 -0500337 if (regs->ecntrl & ECNTRL_SGMII_MODE)
338 tsec_configure_serdes(priv);
339
wdenk97d80fc2004-06-09 00:34:46 +0000340 priv->phyinfo = curphy;
wdenk42d1f032003-10-15 23:53:47 +0000341
wdenk97d80fc2004-06-09 00:34:46 +0000342 phy_run_commands(priv, priv->phyinfo->config);
wdenk42d1f032003-10-15 23:53:47 +0000343
wdenk97d80fc2004-06-09 00:34:46 +0000344 return 1;
wdenk42d1f032003-10-15 23:53:47 +0000345}
346
Jon Loeliger89875e92006-10-10 17:03:43 -0500347/*
348 * Returns which value to write to the control register.
349 * For 10/100, the value is slightly different
350 */
351uint mii_cr_init(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000352{
Jon Loeliger89875e92006-10-10 17:03:43 -0500353 if (priv->flags & TSEC_GIGABIT)
wdenk97d80fc2004-06-09 00:34:46 +0000354 return MIIM_CONTROL_INIT;
355 else
356 return MIIM_CR_INIT;
357}
358
wdenk97d80fc2004-06-09 00:34:46 +0000359/* Parse the status register for link, and then do
Jon Loeliger89875e92006-10-10 17:03:43 -0500360 * auto-negotiation
361 */
362uint mii_parse_sr(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000363{
Stefan Roese5810dc32005-09-21 18:20:22 +0200364 /*
Andy Fleming7613afd2007-08-15 20:03:44 -0500365 * Wait if the link is up, and autonegotiation is in progress
366 * (ie - we're capable and it's not done)
Stefan Roese5810dc32005-09-21 18:20:22 +0200367 */
368 mii_reg = read_phy_reg(priv, MIIM_STATUS);
Andy Fleming7613afd2007-08-15 20:03:44 -0500369 if ((mii_reg & MIIM_STATUS_LINK) && (mii_reg & PHY_BMSR_AUTN_ABLE)
Jon Loeliger89875e92006-10-10 17:03:43 -0500370 && !(mii_reg & PHY_BMSR_AUTN_COMP)) {
Stefan Roese5810dc32005-09-21 18:20:22 +0200371 int i = 0;
wdenk97d80fc2004-06-09 00:34:46 +0000372
Jon Loeliger89875e92006-10-10 17:03:43 -0500373 puts("Waiting for PHY auto negotiation to complete");
Andy Fleming7613afd2007-08-15 20:03:44 -0500374 while (!(mii_reg & PHY_BMSR_AUTN_COMP)) {
Stefan Roese5810dc32005-09-21 18:20:22 +0200375 /*
376 * Timeout reached ?
377 */
378 if (i > PHY_AUTONEGOTIATE_TIMEOUT) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500379 puts(" TIMEOUT !\n");
Stefan Roese5810dc32005-09-21 18:20:22 +0200380 priv->link = 0;
Jin Zhengxiong-R64188fcfb9a52006-06-27 18:12:23 +0800381 return 0;
Stefan Roese5810dc32005-09-21 18:20:22 +0200382 }
wdenk97d80fc2004-06-09 00:34:46 +0000383
Stefan Roese5810dc32005-09-21 18:20:22 +0200384 if ((i++ % 1000) == 0) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500385 putc('.');
Stefan Roese5810dc32005-09-21 18:20:22 +0200386 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500387 udelay(1000); /* 1 ms */
wdenk97d80fc2004-06-09 00:34:46 +0000388 mii_reg = read_phy_reg(priv, MIIM_STATUS);
Stefan Roese5810dc32005-09-21 18:20:22 +0200389 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500390 puts(" done\n");
Stefan Roese5810dc32005-09-21 18:20:22 +0200391 priv->link = 1;
Jon Loeliger89875e92006-10-10 17:03:43 -0500392 udelay(500000); /* another 500 ms (results in faster booting) */
Stefan Roese5810dc32005-09-21 18:20:22 +0200393 } else {
Andy Fleming7613afd2007-08-15 20:03:44 -0500394 if (mii_reg & MIIM_STATUS_LINK)
395 priv->link = 1;
396 else
397 priv->link = 0;
wdenk97d80fc2004-06-09 00:34:46 +0000398 }
399
400 return 0;
401}
402
David Updegraffaf1c2b82007-04-20 14:34:48 -0500403/* Generic function which updates the speed and duplex. If
404 * autonegotiation is enabled, it uses the AND of the link
405 * partner's advertised capabilities and our advertised
406 * capabilities. If autonegotiation is disabled, we use the
407 * appropriate bits in the control register.
408 *
409 * Stolen from Linux's mii.c and phy_device.c
410 */
411uint mii_parse_link(uint mii_reg, struct tsec_private *priv)
412{
413 /* We're using autonegotiation */
414 if (mii_reg & PHY_BMSR_AUTN_ABLE) {
415 uint lpa = 0;
416 uint gblpa = 0;
417
418 /* Check for gigabit capability */
419 if (mii_reg & PHY_BMSR_EXT) {
420 /* We want a list of states supported by
421 * both PHYs in the link
422 */
423 gblpa = read_phy_reg(priv, PHY_1000BTSR);
424 gblpa &= read_phy_reg(priv, PHY_1000BTCR) << 2;
425 }
426
427 /* Set the baseline so we only have to set them
428 * if they're different
429 */
430 priv->speed = 10;
431 priv->duplexity = 0;
432
433 /* Check the gigabit fields */
434 if (gblpa & (PHY_1000BTSR_1000FD | PHY_1000BTSR_1000HD)) {
435 priv->speed = 1000;
436
437 if (gblpa & PHY_1000BTSR_1000FD)
438 priv->duplexity = 1;
439
440 /* We're done! */
441 return 0;
442 }
443
444 lpa = read_phy_reg(priv, PHY_ANAR);
445 lpa &= read_phy_reg(priv, PHY_ANLPAR);
446
447 if (lpa & (PHY_ANLPAR_TXFD | PHY_ANLPAR_TX)) {
448 priv->speed = 100;
449
450 if (lpa & PHY_ANLPAR_TXFD)
451 priv->duplexity = 1;
452
453 } else if (lpa & PHY_ANLPAR_10FD)
454 priv->duplexity = 1;
455 } else {
456 uint bmcr = read_phy_reg(priv, PHY_BMCR);
457
458 priv->speed = 10;
459 priv->duplexity = 0;
460
461 if (bmcr & PHY_BMCR_DPLX)
462 priv->duplexity = 1;
463
464 if (bmcr & PHY_BMCR_1000_MBPS)
465 priv->speed = 1000;
466 else if (bmcr & PHY_BMCR_100_MBPS)
467 priv->speed = 100;
468 }
469
470 return 0;
471}
472
Paul Gortmaker91e25762007-01-16 11:38:14 -0500473/*
Zach LeRoy091dc9f2009-05-22 10:26:33 -0500474 * "Ethernet@Wirespeed" needs to be enabled to achieve link in certain
475 * circumstances. eg a gigabit TSEC connected to a gigabit switch with
476 * a 4-wire ethernet cable. Both ends advertise gigabit, but can't
477 * link. "Ethernet@Wirespeed" reduces advertised speed until link
478 * can be achieved.
479 */
480uint mii_BCM54xx_wirespeed(uint mii_reg, struct tsec_private *priv)
481{
482 return (read_phy_reg(priv, mii_reg) & 0x8FFF) | 0x8010;
483}
484
485/*
Paul Gortmaker91e25762007-01-16 11:38:14 -0500486 * Parse the BCM54xx status register for speed and duplex information.
487 * The linux sungem_phy has this information, but in a table format.
488 */
489uint mii_parse_BCM54xx_sr(uint mii_reg, struct tsec_private *priv)
490{
491
492 switch((mii_reg & MIIM_BCM54xx_AUXSTATUS_LINKMODE_MASK) >> MIIM_BCM54xx_AUXSTATUS_LINKMODE_SHIFT){
493
494 case 1:
495 printf("Enet starting in 10BT/HD\n");
496 priv->duplexity = 0;
497 priv->speed = 10;
498 break;
499
500 case 2:
501 printf("Enet starting in 10BT/FD\n");
502 priv->duplexity = 1;
503 priv->speed = 10;
504 break;
505
506 case 3:
507 printf("Enet starting in 100BT/HD\n");
508 priv->duplexity = 0;
509 priv->speed = 100;
510 break;
511
512 case 5:
513 printf("Enet starting in 100BT/FD\n");
514 priv->duplexity = 1;
515 priv->speed = 100;
516 break;
517
518 case 6:
519 printf("Enet starting in 1000BT/HD\n");
520 priv->duplexity = 0;
521 priv->speed = 1000;
522 break;
523
524 case 7:
525 printf("Enet starting in 1000BT/FD\n");
526 priv->duplexity = 1;
527 priv->speed = 1000;
528 break;
529
530 default:
531 printf("Auto-neg error, defaulting to 10BT/HD\n");
532 priv->duplexity = 0;
533 priv->speed = 10;
534 break;
535 }
536
537 return 0;
538
539}
wdenk97d80fc2004-06-09 00:34:46 +0000540/* Parse the 88E1011's status register for speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -0500541 * information
542 */
543uint mii_parse_88E1011_psr(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000544{
545 uint speed;
546
Stefan Roese5810dc32005-09-21 18:20:22 +0200547 mii_reg = read_phy_reg(priv, MIIM_88E1011_PHY_STATUS);
548
Andy Fleming7613afd2007-08-15 20:03:44 -0500549 if ((mii_reg & MIIM_88E1011_PHYSTAT_LINK) &&
550 !(mii_reg & MIIM_88E1011_PHYSTAT_SPDDONE)) {
Stefan Roese5810dc32005-09-21 18:20:22 +0200551 int i = 0;
552
Jon Loeliger89875e92006-10-10 17:03:43 -0500553 puts("Waiting for PHY realtime link");
Andy Fleming7613afd2007-08-15 20:03:44 -0500554 while (!(mii_reg & MIIM_88E1011_PHYSTAT_SPDDONE)) {
555 /* Timeout reached ? */
Stefan Roese5810dc32005-09-21 18:20:22 +0200556 if (i > PHY_AUTONEGOTIATE_TIMEOUT) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500557 puts(" TIMEOUT !\n");
Stefan Roese5810dc32005-09-21 18:20:22 +0200558 priv->link = 0;
559 break;
560 }
561
562 if ((i++ % 1000) == 0) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500563 putc('.');
Stefan Roese5810dc32005-09-21 18:20:22 +0200564 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500565 udelay(1000); /* 1 ms */
Stefan Roese5810dc32005-09-21 18:20:22 +0200566 mii_reg = read_phy_reg(priv, MIIM_88E1011_PHY_STATUS);
567 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500568 puts(" done\n");
569 udelay(500000); /* another 500 ms (results in faster booting) */
Andy Fleming7613afd2007-08-15 20:03:44 -0500570 } else {
571 if (mii_reg & MIIM_88E1011_PHYSTAT_LINK)
572 priv->link = 1;
573 else
574 priv->link = 0;
Stefan Roese5810dc32005-09-21 18:20:22 +0200575 }
576
Jon Loeliger89875e92006-10-10 17:03:43 -0500577 if (mii_reg & MIIM_88E1011_PHYSTAT_DUPLEX)
wdenk97d80fc2004-06-09 00:34:46 +0000578 priv->duplexity = 1;
579 else
580 priv->duplexity = 0;
581
Jon Loeliger89875e92006-10-10 17:03:43 -0500582 speed = (mii_reg & MIIM_88E1011_PHYSTAT_SPEED);
wdenk97d80fc2004-06-09 00:34:46 +0000583
Jon Loeliger89875e92006-10-10 17:03:43 -0500584 switch (speed) {
585 case MIIM_88E1011_PHYSTAT_GBIT:
586 priv->speed = 1000;
587 break;
588 case MIIM_88E1011_PHYSTAT_100:
589 priv->speed = 100;
590 break;
591 default:
592 priv->speed = 10;
wdenk97d80fc2004-06-09 00:34:46 +0000593 }
594
595 return 0;
596}
597
Dave Liu18ee3202008-01-11 18:45:28 +0800598/* Parse the RTL8211B's status register for speed and duplex
599 * information
600 */
601uint mii_parse_RTL8211B_sr(uint mii_reg, struct tsec_private * priv)
602{
603 uint speed;
604
605 mii_reg = read_phy_reg(priv, MIIM_RTL8211B_PHY_STATUS);
Anton Vorontsovc7604782008-03-14 23:20:30 +0300606 if (!(mii_reg & MIIM_RTL8211B_PHYSTAT_SPDDONE)) {
Dave Liu18ee3202008-01-11 18:45:28 +0800607 int i = 0;
608
Anton Vorontsovc7604782008-03-14 23:20:30 +0300609 /* in case of timeout ->link is cleared */
610 priv->link = 1;
Dave Liu18ee3202008-01-11 18:45:28 +0800611 puts("Waiting for PHY realtime link");
612 while (!(mii_reg & MIIM_RTL8211B_PHYSTAT_SPDDONE)) {
613 /* Timeout reached ? */
614 if (i > PHY_AUTONEGOTIATE_TIMEOUT) {
615 puts(" TIMEOUT !\n");
616 priv->link = 0;
617 break;
618 }
619
620 if ((i++ % 1000) == 0) {
621 putc('.');
622 }
623 udelay(1000); /* 1 ms */
624 mii_reg = read_phy_reg(priv, MIIM_RTL8211B_PHY_STATUS);
625 }
626 puts(" done\n");
627 udelay(500000); /* another 500 ms (results in faster booting) */
628 } else {
629 if (mii_reg & MIIM_RTL8211B_PHYSTAT_LINK)
630 priv->link = 1;
631 else
632 priv->link = 0;
633 }
634
635 if (mii_reg & MIIM_RTL8211B_PHYSTAT_DUPLEX)
636 priv->duplexity = 1;
637 else
638 priv->duplexity = 0;
639
640 speed = (mii_reg & MIIM_RTL8211B_PHYSTAT_SPEED);
641
642 switch (speed) {
643 case MIIM_RTL8211B_PHYSTAT_GBIT:
644 priv->speed = 1000;
645 break;
646 case MIIM_RTL8211B_PHYSTAT_100:
647 priv->speed = 100;
648 break;
649 default:
650 priv->speed = 10;
651 }
652
653 return 0;
654}
655
wdenk97d80fc2004-06-09 00:34:46 +0000656/* Parse the cis8201's status register for speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -0500657 * information
658 */
659uint mii_parse_cis8201(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000660{
661 uint speed;
662
Jon Loeliger89875e92006-10-10 17:03:43 -0500663 if (mii_reg & MIIM_CIS8201_AUXCONSTAT_DUPLEX)
wdenk97d80fc2004-06-09 00:34:46 +0000664 priv->duplexity = 1;
665 else
666 priv->duplexity = 0;
667
668 speed = mii_reg & MIIM_CIS8201_AUXCONSTAT_SPEED;
Jon Loeliger89875e92006-10-10 17:03:43 -0500669 switch (speed) {
670 case MIIM_CIS8201_AUXCONSTAT_GBIT:
671 priv->speed = 1000;
672 break;
673 case MIIM_CIS8201_AUXCONSTAT_100:
674 priv->speed = 100;
675 break;
676 default:
677 priv->speed = 10;
678 break;
wdenk97d80fc2004-06-09 00:34:46 +0000679 }
680
681 return 0;
682}
Jon Loeliger89875e92006-10-10 17:03:43 -0500683
Jon Loeligerdebb7352006-04-26 17:58:56 -0500684/* Parse the vsc8244's status register for speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -0500685 * information
686 */
687uint mii_parse_vsc8244(uint mii_reg, struct tsec_private * priv)
Jon Loeligerdebb7352006-04-26 17:58:56 -0500688{
Jon Loeliger89875e92006-10-10 17:03:43 -0500689 uint speed;
690
691 if (mii_reg & MIIM_VSC8244_AUXCONSTAT_DUPLEX)
692 priv->duplexity = 1;
693 else
694 priv->duplexity = 0;
695
696 speed = mii_reg & MIIM_VSC8244_AUXCONSTAT_SPEED;
697 switch (speed) {
698 case MIIM_VSC8244_AUXCONSTAT_GBIT:
699 priv->speed = 1000;
700 break;
701 case MIIM_VSC8244_AUXCONSTAT_100:
702 priv->speed = 100;
703 break;
704 default:
705 priv->speed = 10;
706 break;
707 }
708
709 return 0;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500710}
wdenk97d80fc2004-06-09 00:34:46 +0000711
wdenk97d80fc2004-06-09 00:34:46 +0000712/* Parse the DM9161's status register for speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -0500713 * information
714 */
715uint mii_parse_dm9161_scsr(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000716{
Jon Loeliger89875e92006-10-10 17:03:43 -0500717 if (mii_reg & (MIIM_DM9161_SCSR_100F | MIIM_DM9161_SCSR_100H))
wdenk97d80fc2004-06-09 00:34:46 +0000718 priv->speed = 100;
719 else
720 priv->speed = 10;
721
Jon Loeliger89875e92006-10-10 17:03:43 -0500722 if (mii_reg & (MIIM_DM9161_SCSR_100F | MIIM_DM9161_SCSR_10F))
wdenk97d80fc2004-06-09 00:34:46 +0000723 priv->duplexity = 1;
724 else
725 priv->duplexity = 0;
726
727 return 0;
728}
729
Jon Loeliger89875e92006-10-10 17:03:43 -0500730/*
731 * Hack to write all 4 PHYs with the LED values
732 */
733uint mii_cis8204_fixled(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000734{
735 uint phyid;
736 volatile tsec_t *regbase = priv->phyregs;
Jon Loeliger89875e92006-10-10 17:03:43 -0500737 int timeout = 1000000;
wdenk97d80fc2004-06-09 00:34:46 +0000738
Jon Loeliger89875e92006-10-10 17:03:43 -0500739 for (phyid = 0; phyid < 4; phyid++) {
wdenk97d80fc2004-06-09 00:34:46 +0000740 regbase->miimadd = (phyid << 8) | mii_reg;
741 regbase->miimcon = MIIM_CIS8204_SLEDCON_INIT;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500742 asm("sync");
wdenk97d80fc2004-06-09 00:34:46 +0000743
Jon Loeliger89875e92006-10-10 17:03:43 -0500744 timeout = 1000000;
745 while ((regbase->miimind & MIIMIND_BUSY) && timeout--) ;
wdenk97d80fc2004-06-09 00:34:46 +0000746 }
747
748 return MIIM_CIS8204_SLEDCON_INIT;
749}
750
Jon Loeliger89875e92006-10-10 17:03:43 -0500751uint mii_cis8204_setmode(uint mii_reg, struct tsec_private * priv)
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500752{
753 if (priv->flags & TSEC_REDUCED)
754 return MIIM_CIS8204_EPHYCON_INIT | MIIM_CIS8204_EPHYCON_RGMII;
755 else
756 return MIIM_CIS8204_EPHYCON_INIT;
757}
wdenk97d80fc2004-06-09 00:34:46 +0000758
Dave Liu19580e62007-09-18 12:37:57 +0800759uint mii_m88e1111s_setmode(uint mii_reg, struct tsec_private *priv)
760{
761 uint mii_data = read_phy_reg(priv, mii_reg);
762
763 if (priv->flags & TSEC_REDUCED)
764 mii_data = (mii_data & 0xfff0) | 0x000b;
765 return mii_data;
766}
767
wdenk97d80fc2004-06-09 00:34:46 +0000768/* Initialized required registers to appropriate values, zeroing
769 * those we don't care about (unless zero is bad, in which case,
Jon Loeliger89875e92006-10-10 17:03:43 -0500770 * choose a more appropriate value)
771 */
772static void init_registers(volatile tsec_t * regs)
wdenk42d1f032003-10-15 23:53:47 +0000773{
774 /* Clear IEVENT */
775 regs->ievent = IEVENT_INIT_CLEAR;
776
777 regs->imask = IMASK_INIT_CLEAR;
778
779 regs->hash.iaddr0 = 0;
780 regs->hash.iaddr1 = 0;
781 regs->hash.iaddr2 = 0;
782 regs->hash.iaddr3 = 0;
783 regs->hash.iaddr4 = 0;
784 regs->hash.iaddr5 = 0;
785 regs->hash.iaddr6 = 0;
786 regs->hash.iaddr7 = 0;
787
788 regs->hash.gaddr0 = 0;
789 regs->hash.gaddr1 = 0;
790 regs->hash.gaddr2 = 0;
791 regs->hash.gaddr3 = 0;
792 regs->hash.gaddr4 = 0;
793 regs->hash.gaddr5 = 0;
794 regs->hash.gaddr6 = 0;
795 regs->hash.gaddr7 = 0;
796
797 regs->rctrl = 0x00000000;
798
799 /* Init RMON mib registers */
800 memset((void *)&(regs->rmon), 0, sizeof(rmon_mib_t));
801
802 regs->rmon.cam1 = 0xffffffff;
803 regs->rmon.cam2 = 0xffffffff;
804
805 regs->mrblr = MRBLR_INIT_SETTINGS;
806
807 regs->minflr = MINFLR_INIT_SETTINGS;
808
809 regs->attr = ATTR_INIT_SETTINGS;
810 regs->attreli = ATTRELI_INIT_SETTINGS;
811
812}
813
wdenk97d80fc2004-06-09 00:34:46 +0000814/* Configure maccfg2 based on negotiated speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -0500815 * reported by PHY handling code
816 */
wdenk97d80fc2004-06-09 00:34:46 +0000817static void adjust_link(struct eth_device *dev)
818{
819 struct tsec_private *priv = (struct tsec_private *)dev->priv;
820 volatile tsec_t *regs = priv->regs;
821
Jon Loeliger89875e92006-10-10 17:03:43 -0500822 if (priv->link) {
823 if (priv->duplexity != 0)
wdenk97d80fc2004-06-09 00:34:46 +0000824 regs->maccfg2 |= MACCFG2_FULL_DUPLEX;
825 else
826 regs->maccfg2 &= ~(MACCFG2_FULL_DUPLEX);
827
Jon Loeliger89875e92006-10-10 17:03:43 -0500828 switch (priv->speed) {
829 case 1000:
830 regs->maccfg2 = ((regs->maccfg2 & ~(MACCFG2_IF))
831 | MACCFG2_GMII);
832 break;
833 case 100:
834 case 10:
835 regs->maccfg2 = ((regs->maccfg2 & ~(MACCFG2_IF))
836 | MACCFG2_MII);
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500837
Nick Spencef484dc72006-09-07 07:39:46 -0700838 /* Set R100 bit in all modes although
839 * it is only used in RGMII mode
Jon Loeliger89875e92006-10-10 17:03:43 -0500840 */
Nick Spencef484dc72006-09-07 07:39:46 -0700841 if (priv->speed == 100)
Jon Loeliger89875e92006-10-10 17:03:43 -0500842 regs->ecntrl |= ECNTRL_R100;
843 else
844 regs->ecntrl &= ~(ECNTRL_R100);
845 break;
846 default:
847 printf("%s: Speed was bad\n", dev->name);
848 break;
wdenk97d80fc2004-06-09 00:34:46 +0000849 }
850
851 printf("Speed: %d, %s duplex\n", priv->speed,
Jon Loeliger89875e92006-10-10 17:03:43 -0500852 (priv->duplexity) ? "full" : "half");
wdenk97d80fc2004-06-09 00:34:46 +0000853
854 } else {
855 printf("%s: No link.\n", dev->name);
856 }
857}
858
wdenk97d80fc2004-06-09 00:34:46 +0000859/* Set up the buffers and their descriptors, and bring up the
Jon Loeliger89875e92006-10-10 17:03:43 -0500860 * interface
861 */
wdenk97d80fc2004-06-09 00:34:46 +0000862static void startup_tsec(struct eth_device *dev)
wdenk42d1f032003-10-15 23:53:47 +0000863{
864 int i;
wdenk97d80fc2004-06-09 00:34:46 +0000865 struct tsec_private *priv = (struct tsec_private *)dev->priv;
866 volatile tsec_t *regs = priv->regs;
wdenk42d1f032003-10-15 23:53:47 +0000867
868 /* Point to the buffer descriptors */
869 regs->tbase = (unsigned int)(&rtx.txbd[txIdx]);
870 regs->rbase = (unsigned int)(&rtx.rxbd[rxIdx]);
871
872 /* Initialize the Rx Buffer descriptors */
873 for (i = 0; i < PKTBUFSRX; i++) {
874 rtx.rxbd[i].status = RXBD_EMPTY;
875 rtx.rxbd[i].length = 0;
Jon Loeliger89875e92006-10-10 17:03:43 -0500876 rtx.rxbd[i].bufPtr = (uint) NetRxPackets[i];
wdenk42d1f032003-10-15 23:53:47 +0000877 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500878 rtx.rxbd[PKTBUFSRX - 1].status |= RXBD_WRAP;
wdenk42d1f032003-10-15 23:53:47 +0000879
880 /* Initialize the TX Buffer Descriptors */
Jon Loeliger89875e92006-10-10 17:03:43 -0500881 for (i = 0; i < TX_BUF_CNT; i++) {
wdenk42d1f032003-10-15 23:53:47 +0000882 rtx.txbd[i].status = 0;
883 rtx.txbd[i].length = 0;
884 rtx.txbd[i].bufPtr = 0;
885 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500886 rtx.txbd[TX_BUF_CNT - 1].status |= TXBD_WRAP;
wdenk42d1f032003-10-15 23:53:47 +0000887
wdenk97d80fc2004-06-09 00:34:46 +0000888 /* Start up the PHY */
Ben Warren4653f912006-10-26 14:38:25 -0400889 if(priv->phyinfo)
890 phy_run_commands(priv, priv->phyinfo->startup);
David Updegraffaf1c2b82007-04-20 14:34:48 -0500891
wdenk97d80fc2004-06-09 00:34:46 +0000892 adjust_link(dev);
893
wdenk42d1f032003-10-15 23:53:47 +0000894 /* Enable Transmit and Receive */
895 regs->maccfg1 |= (MACCFG1_RX_EN | MACCFG1_TX_EN);
896
897 /* Tell the DMA it is clear to go */
898 regs->dmactrl |= DMACTRL_INIT_SETTINGS;
899 regs->tstat = TSTAT_CLEAR_THALT;
Dan Wilson5c7ea642007-10-19 11:33:48 -0500900 regs->rstat = RSTAT_CLEAR_RHALT;
wdenk42d1f032003-10-15 23:53:47 +0000901 regs->dmactrl &= ~(DMACTRL_GRS | DMACTRL_GTS);
902}
903
wdenk9d46ea42005-03-14 23:56:42 +0000904/* This returns the status bits of the device. The return value
wdenk42d1f032003-10-15 23:53:47 +0000905 * is never checked, and this is what the 8260 driver did, so we
wdenk9d46ea42005-03-14 23:56:42 +0000906 * do the same. Presumably, this would be zero if there were no
Jon Loeliger89875e92006-10-10 17:03:43 -0500907 * errors
908 */
909static int tsec_send(struct eth_device *dev, volatile void *packet, int length)
wdenk42d1f032003-10-15 23:53:47 +0000910{
911 int i;
912 int result = 0;
wdenk97d80fc2004-06-09 00:34:46 +0000913 struct tsec_private *priv = (struct tsec_private *)dev->priv;
914 volatile tsec_t *regs = priv->regs;
wdenk42d1f032003-10-15 23:53:47 +0000915
916 /* Find an empty buffer descriptor */
Jon Loeliger89875e92006-10-10 17:03:43 -0500917 for (i = 0; rtx.txbd[txIdx].status & TXBD_READY; i++) {
wdenk42d1f032003-10-15 23:53:47 +0000918 if (i >= TOUT_LOOP) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500919 debug("%s: tsec: tx buffers full\n", dev->name);
wdenk42d1f032003-10-15 23:53:47 +0000920 return result;
921 }
922 }
923
Jon Loeliger89875e92006-10-10 17:03:43 -0500924 rtx.txbd[txIdx].bufPtr = (uint) packet;
wdenk42d1f032003-10-15 23:53:47 +0000925 rtx.txbd[txIdx].length = length;
Jon Loeliger89875e92006-10-10 17:03:43 -0500926 rtx.txbd[txIdx].status |=
927 (TXBD_READY | TXBD_LAST | TXBD_CRC | TXBD_INTERRUPT);
wdenk42d1f032003-10-15 23:53:47 +0000928
929 /* Tell the DMA to go */
930 regs->tstat = TSTAT_CLEAR_THALT;
931
932 /* Wait for buffer to be transmitted */
Jon Loeliger89875e92006-10-10 17:03:43 -0500933 for (i = 0; rtx.txbd[txIdx].status & TXBD_READY; i++) {
wdenk42d1f032003-10-15 23:53:47 +0000934 if (i >= TOUT_LOOP) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500935 debug("%s: tsec: tx error\n", dev->name);
wdenk42d1f032003-10-15 23:53:47 +0000936 return result;
937 }
938 }
939
940 txIdx = (txIdx + 1) % TX_BUF_CNT;
941 result = rtx.txbd[txIdx].status & TXBD_STATS;
942
943 return result;
944}
945
Jon Loeliger89875e92006-10-10 17:03:43 -0500946static int tsec_recv(struct eth_device *dev)
wdenk42d1f032003-10-15 23:53:47 +0000947{
948 int length;
wdenk97d80fc2004-06-09 00:34:46 +0000949 struct tsec_private *priv = (struct tsec_private *)dev->priv;
950 volatile tsec_t *regs = priv->regs;
wdenk42d1f032003-10-15 23:53:47 +0000951
Jon Loeliger89875e92006-10-10 17:03:43 -0500952 while (!(rtx.rxbd[rxIdx].status & RXBD_EMPTY)) {
wdenk42d1f032003-10-15 23:53:47 +0000953
954 length = rtx.rxbd[rxIdx].length;
955
956 /* Send the packet up if there were no errors */
957 if (!(rtx.rxbd[rxIdx].status & RXBD_STATS)) {
958 NetReceive(NetRxPackets[rxIdx], length - 4);
wdenk97d80fc2004-06-09 00:34:46 +0000959 } else {
960 printf("Got error %x\n",
Jon Loeliger89875e92006-10-10 17:03:43 -0500961 (rtx.rxbd[rxIdx].status & RXBD_STATS));
wdenk42d1f032003-10-15 23:53:47 +0000962 }
963
964 rtx.rxbd[rxIdx].length = 0;
965
966 /* Set the wrap bit if this is the last element in the list */
Jon Loeliger89875e92006-10-10 17:03:43 -0500967 rtx.rxbd[rxIdx].status =
968 RXBD_EMPTY | (((rxIdx + 1) == PKTBUFSRX) ? RXBD_WRAP : 0);
wdenk42d1f032003-10-15 23:53:47 +0000969
970 rxIdx = (rxIdx + 1) % PKTBUFSRX;
971 }
972
Jon Loeliger89875e92006-10-10 17:03:43 -0500973 if (regs->ievent & IEVENT_BSY) {
wdenk42d1f032003-10-15 23:53:47 +0000974 regs->ievent = IEVENT_BSY;
975 regs->rstat = RSTAT_CLEAR_RHALT;
976 }
977
978 return -1;
979
980}
981
wdenk97d80fc2004-06-09 00:34:46 +0000982/* Stop the interface */
Jon Loeliger89875e92006-10-10 17:03:43 -0500983static void tsec_halt(struct eth_device *dev)
wdenk42d1f032003-10-15 23:53:47 +0000984{
wdenk97d80fc2004-06-09 00:34:46 +0000985 struct tsec_private *priv = (struct tsec_private *)dev->priv;
986 volatile tsec_t *regs = priv->regs;
wdenk42d1f032003-10-15 23:53:47 +0000987
988 regs->dmactrl &= ~(DMACTRL_GRS | DMACTRL_GTS);
989 regs->dmactrl |= (DMACTRL_GRS | DMACTRL_GTS);
990
Jon Loeliger89875e92006-10-10 17:03:43 -0500991 while (!(regs->ievent & (IEVENT_GRSC | IEVENT_GTSC))) ;
wdenk42d1f032003-10-15 23:53:47 +0000992
993 regs->maccfg1 &= ~(MACCFG1_TX_EN | MACCFG1_RX_EN);
994
wdenk97d80fc2004-06-09 00:34:46 +0000995 /* Shut down the PHY, as needed */
Ben Warren4653f912006-10-26 14:38:25 -0400996 if(priv->phyinfo)
997 phy_run_commands(priv, priv->phyinfo->shutdown);
wdenk42d1f032003-10-15 23:53:47 +0000998}
wdenk7abf0c52004-04-18 21:45:42 +0000999
Andy Flemingc7e717e2007-08-03 04:05:25 -05001000struct phy_info phy_info_M88E1149S = {
Wolfgang Denk5728be32007-08-06 01:01:49 +02001001 0x1410ca,
1002 "Marvell 88E1149S",
1003 4,
1004 (struct phy_cmd[]){ /* config */
1005 /* Reset and configure the PHY */
1006 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1007 {0x1d, 0x1f, NULL},
1008 {0x1e, 0x200c, NULL},
1009 {0x1d, 0x5, NULL},
1010 {0x1e, 0x0, NULL},
1011 {0x1e, 0x100, NULL},
1012 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1013 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1014 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1015 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1016 {miim_end,}
1017 },
1018 (struct phy_cmd[]){ /* startup */
1019 /* Status is read once to clear old link state */
1020 {MIIM_STATUS, miim_read, NULL},
1021 /* Auto-negotiate */
1022 {MIIM_STATUS, miim_read, &mii_parse_sr},
1023 /* Read the status */
1024 {MIIM_88E1011_PHY_STATUS, miim_read,
1025 &mii_parse_88E1011_psr},
1026 {miim_end,}
1027 },
1028 (struct phy_cmd[]){ /* shutdown */
1029 {miim_end,}
1030 },
Andy Flemingc7e717e2007-08-03 04:05:25 -05001031};
1032
Paul Gortmaker91e25762007-01-16 11:38:14 -05001033/* The 5411 id is 0x206070, the 5421 is 0x2060e0 */
1034struct phy_info phy_info_BCM5461S = {
1035 0x02060c1, /* 5461 ID */
1036 "Broadcom BCM5461S",
1037 0, /* not clear to me what minor revisions we can shift away */
1038 (struct phy_cmd[]) { /* config */
1039 /* Reset and configure the PHY */
1040 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1041 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1042 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1043 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1044 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1045 {miim_end,}
1046 },
1047 (struct phy_cmd[]) { /* startup */
1048 /* Status is read once to clear old link state */
1049 {MIIM_STATUS, miim_read, NULL},
1050 /* Auto-negotiate */
1051 {MIIM_STATUS, miim_read, &mii_parse_sr},
1052 /* Read the status */
1053 {MIIM_BCM54xx_AUXSTATUS, miim_read, &mii_parse_BCM54xx_sr},
1054 {miim_end,}
1055 },
1056 (struct phy_cmd[]) { /* shutdown */
1057 {miim_end,}
1058 },
1059};
1060
Joe Hammanc3243cf2007-04-30 16:47:28 -05001061struct phy_info phy_info_BCM5464S = {
1062 0x02060b1, /* 5464 ID */
1063 "Broadcom BCM5464S",
1064 0, /* not clear to me what minor revisions we can shift away */
1065 (struct phy_cmd[]) { /* config */
1066 /* Reset and configure the PHY */
1067 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1068 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1069 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1070 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1071 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1072 {miim_end,}
1073 },
1074 (struct phy_cmd[]) { /* startup */
1075 /* Status is read once to clear old link state */
1076 {MIIM_STATUS, miim_read, NULL},
1077 /* Auto-negotiate */
1078 {MIIM_STATUS, miim_read, &mii_parse_sr},
1079 /* Read the status */
1080 {MIIM_BCM54xx_AUXSTATUS, miim_read, &mii_parse_BCM54xx_sr},
1081 {miim_end,}
1082 },
1083 (struct phy_cmd[]) { /* shutdown */
1084 {miim_end,}
1085 },
1086};
1087
Zach LeRoy091dc9f2009-05-22 10:26:33 -05001088struct phy_info phy_info_BCM5482S = {
1089 0x0143bcb,
1090 "Broadcom BCM5482S",
1091 4,
1092 (struct phy_cmd[]) { /* config */
1093 /* Reset and configure the PHY */
1094 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1095 /* Setup read from auxilary control shadow register 7 */
1096 {MIIM_BCM54xx_AUXCNTL, MIIM_BCM54xx_AUXCNTL_ENCODE(7), NULL},
1097 /* Read Misc Control register and or in Ethernet@Wirespeed */
1098 {MIIM_BCM54xx_AUXCNTL, 0, &mii_BCM54xx_wirespeed},
1099 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1100 {miim_end,}
1101 },
1102 (struct phy_cmd[]) { /* startup */
1103 /* Status is read once to clear old link state */
1104 {MIIM_STATUS, miim_read, NULL},
1105 /* Auto-negotiate */
1106 {MIIM_STATUS, miim_read, &mii_parse_sr},
1107 /* Read the status */
1108 {MIIM_BCM54xx_AUXSTATUS, miim_read, &mii_parse_BCM54xx_sr},
1109 {miim_end,}
1110 },
1111 (struct phy_cmd[]) { /* shutdown */
1112 {miim_end,}
1113 },
1114};
1115
wdenk97d80fc2004-06-09 00:34:46 +00001116struct phy_info phy_info_M88E1011S = {
1117 0x01410c6,
1118 "Marvell 88E1011S",
1119 4,
Jon Loeliger89875e92006-10-10 17:03:43 -05001120 (struct phy_cmd[]){ /* config */
1121 /* Reset and configure the PHY */
1122 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1123 {0x1d, 0x1f, NULL},
1124 {0x1e, 0x200c, NULL},
1125 {0x1d, 0x5, NULL},
1126 {0x1e, 0x0, NULL},
1127 {0x1e, 0x100, NULL},
1128 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1129 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1130 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1131 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1132 {miim_end,}
1133 },
1134 (struct phy_cmd[]){ /* startup */
1135 /* Status is read once to clear old link state */
1136 {MIIM_STATUS, miim_read, NULL},
1137 /* Auto-negotiate */
1138 {MIIM_STATUS, miim_read, &mii_parse_sr},
1139 /* Read the status */
1140 {MIIM_88E1011_PHY_STATUS, miim_read,
1141 &mii_parse_88E1011_psr},
1142 {miim_end,}
1143 },
1144 (struct phy_cmd[]){ /* shutdown */
1145 {miim_end,}
1146 },
wdenk97d80fc2004-06-09 00:34:46 +00001147};
1148
wdenk9d46ea42005-03-14 23:56:42 +00001149struct phy_info phy_info_M88E1111S = {
1150 0x01410cc,
1151 "Marvell 88E1111S",
1152 4,
Jon Loeliger89875e92006-10-10 17:03:43 -05001153 (struct phy_cmd[]){ /* config */
1154 /* Reset and configure the PHY */
1155 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
Dave Liu19580e62007-09-18 12:37:57 +08001156 {0x1b, 0x848f, &mii_m88e1111s_setmode},
Nick Spencef484dc72006-09-07 07:39:46 -07001157 {0x14, 0x0cd2, NULL}, /* Delay RGMII TX and RX */
Jon Loeliger89875e92006-10-10 17:03:43 -05001158 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1159 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1160 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1161 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1162 {miim_end,}
1163 },
1164 (struct phy_cmd[]){ /* startup */
1165 /* Status is read once to clear old link state */
1166 {MIIM_STATUS, miim_read, NULL},
1167 /* Auto-negotiate */
1168 {MIIM_STATUS, miim_read, &mii_parse_sr},
1169 /* Read the status */
1170 {MIIM_88E1011_PHY_STATUS, miim_read,
1171 &mii_parse_88E1011_psr},
1172 {miim_end,}
1173 },
1174 (struct phy_cmd[]){ /* shutdown */
1175 {miim_end,}
1176 },
wdenk9d46ea42005-03-14 23:56:42 +00001177};
1178
Ron Madrid290ef642008-05-23 15:37:05 -07001179struct phy_info phy_info_M88E1118 = {
1180 0x01410e1,
1181 "Marvell 88E1118",
1182 4,
1183 (struct phy_cmd[]){ /* config */
1184 /* Reset and configure the PHY */
1185 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1186 {0x16, 0x0002, NULL}, /* Change Page Number */
1187 {0x15, 0x1070, NULL}, /* Delay RGMII TX and RX */
Ron Madrid12a8b9d2009-01-28 16:17:21 -08001188 {0x16, 0x0003, NULL}, /* Change Page Number */
1189 {0x10, 0x021e, NULL}, /* Adjust LED control */
1190 {0x16, 0x0000, NULL}, /* Change Page Number */
Ron Madrid290ef642008-05-23 15:37:05 -07001191 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1192 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1193 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1194 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1195 {miim_end,}
1196 },
1197 (struct phy_cmd[]){ /* startup */
1198 {0x16, 0x0000, NULL}, /* Change Page Number */
1199 /* Status is read once to clear old link state */
1200 {MIIM_STATUS, miim_read, NULL},
1201 /* Auto-negotiate */
Ron Madrid12a8b9d2009-01-28 16:17:21 -08001202 {MIIM_STATUS, miim_read, &mii_parse_sr},
Ron Madrid290ef642008-05-23 15:37:05 -07001203 /* Read the status */
1204 {MIIM_88E1011_PHY_STATUS, miim_read,
1205 &mii_parse_88E1011_psr},
1206 {miim_end,}
1207 },
1208 (struct phy_cmd[]){ /* shutdown */
1209 {miim_end,}
1210 },
1211};
1212
Sergei Poselenovd23dc392008-06-06 15:52:44 +02001213/*
1214 * Since to access LED register we need do switch the page, we
1215 * do LED configuring in the miim_read-like function as follows
1216 */
1217uint mii_88E1121_set_led (uint mii_reg, struct tsec_private *priv)
1218{
1219 uint pg;
1220
1221 /* Switch the page to access the led register */
1222 pg = read_phy_reg(priv, MIIM_88E1121_PHY_PAGE);
1223 write_phy_reg(priv, MIIM_88E1121_PHY_PAGE, MIIM_88E1121_PHY_LED_PAGE);
1224
1225 /* Configure leds */
1226 write_phy_reg(priv, MIIM_88E1121_PHY_LED_CTRL,
1227 MIIM_88E1121_PHY_LED_DEF);
1228
1229 /* Restore the page pointer */
1230 write_phy_reg(priv, MIIM_88E1121_PHY_PAGE, pg);
1231 return 0;
1232}
1233
1234struct phy_info phy_info_M88E1121R = {
1235 0x01410cb,
1236 "Marvell 88E1121R",
1237 4,
1238 (struct phy_cmd[]){ /* config */
1239 /* Reset and configure the PHY */
1240 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1241 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1242 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1243 /* Configure leds */
1244 {MIIM_88E1121_PHY_LED_CTRL, miim_read,
1245 &mii_88E1121_set_led},
1246 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
Anatolij Gustschin23afaba2008-12-02 10:31:04 +01001247 /* Disable IRQs and de-assert interrupt */
1248 {MIIM_88E1121_PHY_IRQ_EN, 0, NULL},
1249 {MIIM_88E1121_PHY_IRQ_STATUS, miim_read, NULL},
Sergei Poselenovd23dc392008-06-06 15:52:44 +02001250 {miim_end,}
1251 },
1252 (struct phy_cmd[]){ /* startup */
1253 /* Status is read once to clear old link state */
1254 {MIIM_STATUS, miim_read, NULL},
1255 {MIIM_STATUS, miim_read, &mii_parse_sr},
1256 {MIIM_STATUS, miim_read, &mii_parse_link},
1257 {miim_end,}
1258 },
1259 (struct phy_cmd[]){ /* shutdown */
1260 {miim_end,}
1261 },
1262};
1263
Andy Fleming09f3e092006-09-13 10:34:18 -05001264static unsigned int m88e1145_setmode(uint mii_reg, struct tsec_private *priv)
1265{
Andy Fleming09f3e092006-09-13 10:34:18 -05001266 uint mii_data = read_phy_reg(priv, mii_reg);
1267
Andy Fleming09f3e092006-09-13 10:34:18 -05001268 /* Setting MIIM_88E1145_PHY_EXT_CR */
1269 if (priv->flags & TSEC_REDUCED)
1270 return mii_data |
Jon Loeliger89875e92006-10-10 17:03:43 -05001271 MIIM_M88E1145_RGMII_RX_DELAY | MIIM_M88E1145_RGMII_TX_DELAY;
Andy Fleming09f3e092006-09-13 10:34:18 -05001272 else
1273 return mii_data;
1274}
1275
1276static struct phy_info phy_info_M88E1145 = {
1277 0x01410cd,
1278 "Marvell 88E1145",
1279 4,
Jon Loeliger89875e92006-10-10 17:03:43 -05001280 (struct phy_cmd[]){ /* config */
Andy Fleming7507d562007-05-08 17:23:02 -05001281 /* Reset the PHY */
1282 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1283
Jon Loeliger89875e92006-10-10 17:03:43 -05001284 /* Errata E0, E1 */
1285 {29, 0x001b, NULL},
1286 {30, 0x418f, NULL},
1287 {29, 0x0016, NULL},
1288 {30, 0xa2da, NULL},
Andy Fleming09f3e092006-09-13 10:34:18 -05001289
Andy Fleming7507d562007-05-08 17:23:02 -05001290 /* Configure the PHY */
Jon Loeliger89875e92006-10-10 17:03:43 -05001291 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1292 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1293 {MIIM_88E1011_PHY_SCR, MIIM_88E1011_PHY_MDI_X_AUTO,
1294 NULL},
1295 {MIIM_88E1145_PHY_EXT_CR, 0, &m88e1145_setmode},
1296 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1297 {MIIM_CONTROL, MIIM_CONTROL_INIT, NULL},
1298 {miim_end,}
1299 },
1300 (struct phy_cmd[]){ /* startup */
1301 /* Status is read once to clear old link state */
1302 {MIIM_STATUS, miim_read, NULL},
1303 /* Auto-negotiate */
1304 {MIIM_STATUS, miim_read, &mii_parse_sr},
1305 {MIIM_88E1111_PHY_LED_CONTROL,
1306 MIIM_88E1111_PHY_LED_DIRECT, NULL},
1307 /* Read the Status */
1308 {MIIM_88E1011_PHY_STATUS, miim_read,
1309 &mii_parse_88E1011_psr},
1310 {miim_end,}
1311 },
1312 (struct phy_cmd[]){ /* shutdown */
1313 {miim_end,}
1314 },
Andy Fleming09f3e092006-09-13 10:34:18 -05001315};
1316
wdenk97d80fc2004-06-09 00:34:46 +00001317struct phy_info phy_info_cis8204 = {
1318 0x3f11,
1319 "Cicada Cis8204",
1320 6,
Jon Loeliger89875e92006-10-10 17:03:43 -05001321 (struct phy_cmd[]){ /* config */
1322 /* Override PHY config settings */
1323 {MIIM_CIS8201_AUX_CONSTAT,
1324 MIIM_CIS8201_AUXCONSTAT_INIT, NULL},
1325 /* Configure some basic stuff */
1326 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1327 {MIIM_CIS8204_SLED_CON, MIIM_CIS8204_SLEDCON_INIT,
1328 &mii_cis8204_fixled},
1329 {MIIM_CIS8204_EPHY_CON, MIIM_CIS8204_EPHYCON_INIT,
1330 &mii_cis8204_setmode},
1331 {miim_end,}
1332 },
1333 (struct phy_cmd[]){ /* startup */
1334 /* Read the Status (2x to make sure link is right) */
1335 {MIIM_STATUS, miim_read, NULL},
1336 /* Auto-negotiate */
1337 {MIIM_STATUS, miim_read, &mii_parse_sr},
1338 /* Read the status */
1339 {MIIM_CIS8201_AUX_CONSTAT, miim_read,
1340 &mii_parse_cis8201},
1341 {miim_end,}
1342 },
1343 (struct phy_cmd[]){ /* shutdown */
1344 {miim_end,}
1345 },
wdenk97d80fc2004-06-09 00:34:46 +00001346};
1347
1348/* Cicada 8201 */
1349struct phy_info phy_info_cis8201 = {
1350 0xfc41,
1351 "CIS8201",
1352 4,
Jon Loeliger89875e92006-10-10 17:03:43 -05001353 (struct phy_cmd[]){ /* config */
1354 /* Override PHY config settings */
1355 {MIIM_CIS8201_AUX_CONSTAT,
1356 MIIM_CIS8201_AUXCONSTAT_INIT, NULL},
1357 /* Set up the interface mode */
1358 {MIIM_CIS8201_EXT_CON1, MIIM_CIS8201_EXTCON1_INIT,
1359 NULL},
1360 /* Configure some basic stuff */
1361 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1362 {miim_end,}
1363 },
1364 (struct phy_cmd[]){ /* startup */
1365 /* Read the Status (2x to make sure link is right) */
1366 {MIIM_STATUS, miim_read, NULL},
1367 /* Auto-negotiate */
1368 {MIIM_STATUS, miim_read, &mii_parse_sr},
1369 /* Read the status */
1370 {MIIM_CIS8201_AUX_CONSTAT, miim_read,
1371 &mii_parse_cis8201},
1372 {miim_end,}
1373 },
1374 (struct phy_cmd[]){ /* shutdown */
1375 {miim_end,}
1376 },
wdenk97d80fc2004-06-09 00:34:46 +00001377};
Pieter Henning736323a2009-02-22 23:17:15 -08001378struct phy_info phy_info_VSC8211 = {
1379 0xfc4b,
1380 "Vitesse VSC8211",
1381 4,
1382 (struct phy_cmd[]) { /* config */
1383 /* Override PHY config settings */
1384 {MIIM_CIS8201_AUX_CONSTAT,
1385 MIIM_CIS8201_AUXCONSTAT_INIT, NULL},
1386 /* Set up the interface mode */
1387 {MIIM_CIS8201_EXT_CON1,
1388 MIIM_CIS8201_EXTCON1_INIT, NULL},
1389 /* Configure some basic stuff */
1390 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1391 {miim_end,}
1392 },
1393 (struct phy_cmd[]) { /* startup */
1394 /* Read the Status (2x to make sure link is right) */
1395 {MIIM_STATUS, miim_read, NULL},
1396 /* Auto-negotiate */
1397 {MIIM_STATUS, miim_read, &mii_parse_sr},
1398 /* Read the status */
1399 {MIIM_CIS8201_AUX_CONSTAT, miim_read,
1400 &mii_parse_cis8201},
1401 {miim_end,}
1402 },
1403 (struct phy_cmd[]) { /* shutdown */
1404 {miim_end,}
1405 },
1406};
Jon Loeligerdebb7352006-04-26 17:58:56 -05001407struct phy_info phy_info_VSC8244 = {
Jon Loeliger89875e92006-10-10 17:03:43 -05001408 0x3f1b,
1409 "Vitesse VSC8244",
1410 6,
1411 (struct phy_cmd[]){ /* config */
1412 /* Override PHY config settings */
1413 /* Configure some basic stuff */
1414 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1415 {miim_end,}
1416 },
1417 (struct phy_cmd[]){ /* startup */
1418 /* Read the Status (2x to make sure link is right) */
1419 {MIIM_STATUS, miim_read, NULL},
1420 /* Auto-negotiate */
1421 {MIIM_STATUS, miim_read, &mii_parse_sr},
1422 /* Read the status */
1423 {MIIM_VSC8244_AUX_CONSTAT, miim_read,
1424 &mii_parse_vsc8244},
1425 {miim_end,}
1426 },
1427 (struct phy_cmd[]){ /* shutdown */
1428 {miim_end,}
1429 },
Jon Loeligerdebb7352006-04-26 17:58:56 -05001430};
wdenk97d80fc2004-06-09 00:34:46 +00001431
Tor Krill2d934ea2008-03-28 15:29:45 +01001432struct phy_info phy_info_VSC8601 = {
1433 0x00007042,
1434 "Vitesse VSC8601",
1435 4,
1436 (struct phy_cmd[]){ /* config */
1437 /* Override PHY config settings */
1438 /* Configure some basic stuff */
1439 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001440#ifdef CONFIG_SYS_VSC8601_SKEWFIX
Tor Krill2d934ea2008-03-28 15:29:45 +01001441 {MIIM_VSC8601_EPHY_CON,MIIM_VSC8601_EPHY_CON_INIT_SKEW,NULL},
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001442#if defined(CONFIG_SYS_VSC8601_SKEW_TX) && defined(CONFIG_SYS_VSC8601_SKEW_RX)
Andre Schwarz9acde122008-04-29 19:18:32 +02001443 {MIIM_EXT_PAGE_ACCESS,1,NULL},
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001444#define VSC8101_SKEW (CONFIG_SYS_VSC8601_SKEW_TX<<14)|(CONFIG_SYS_VSC8601_SKEW_RX<<12)
Andre Schwarz9acde122008-04-29 19:18:32 +02001445 {MIIM_VSC8601_SKEW_CTRL,VSC8101_SKEW,NULL},
1446 {MIIM_EXT_PAGE_ACCESS,0,NULL},
1447#endif
Tor Krill2d934ea2008-03-28 15:29:45 +01001448#endif
Andre Schwarzc9d6b692008-08-19 16:07:03 +02001449 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1450 {MIIM_CONTROL, MIIM_CONTROL_RESTART, &mii_cr_init},
Tor Krill2d934ea2008-03-28 15:29:45 +01001451 {miim_end,}
1452 },
1453 (struct phy_cmd[]){ /* startup */
1454 /* Read the Status (2x to make sure link is right) */
1455 {MIIM_STATUS, miim_read, NULL},
1456 /* Auto-negotiate */
1457 {MIIM_STATUS, miim_read, &mii_parse_sr},
1458 /* Read the status */
1459 {MIIM_VSC8244_AUX_CONSTAT, miim_read,
1460 &mii_parse_vsc8244},
1461 {miim_end,}
1462 },
1463 (struct phy_cmd[]){ /* shutdown */
1464 {miim_end,}
1465 },
1466};
1467
1468
wdenk97d80fc2004-06-09 00:34:46 +00001469struct phy_info phy_info_dm9161 = {
1470 0x0181b88,
1471 "Davicom DM9161E",
1472 4,
Jon Loeliger89875e92006-10-10 17:03:43 -05001473 (struct phy_cmd[]){ /* config */
1474 {MIIM_CONTROL, MIIM_DM9161_CR_STOP, NULL},
1475 /* Do not bypass the scrambler/descrambler */
1476 {MIIM_DM9161_SCR, MIIM_DM9161_SCR_INIT, NULL},
1477 /* Clear 10BTCSR to default */
1478 {MIIM_DM9161_10BTCSR, MIIM_DM9161_10BTCSR_INIT,
1479 NULL},
1480 /* Configure some basic stuff */
1481 {MIIM_CONTROL, MIIM_CR_INIT, NULL},
1482 /* Restart Auto Negotiation */
1483 {MIIM_CONTROL, MIIM_DM9161_CR_RSTAN, NULL},
1484 {miim_end,}
1485 },
1486 (struct phy_cmd[]){ /* startup */
1487 /* Status is read once to clear old link state */
1488 {MIIM_STATUS, miim_read, NULL},
1489 /* Auto-negotiate */
1490 {MIIM_STATUS, miim_read, &mii_parse_sr},
1491 /* Read the status */
1492 {MIIM_DM9161_SCSR, miim_read,
1493 &mii_parse_dm9161_scsr},
1494 {miim_end,}
1495 },
1496 (struct phy_cmd[]){ /* shutdown */
1497 {miim_end,}
1498 },
wdenk97d80fc2004-06-09 00:34:46 +00001499};
David Updegraffaf1c2b82007-04-20 14:34:48 -05001500/* a generic flavor. */
1501struct phy_info phy_info_generic = {
1502 0,
1503 "Unknown/Generic PHY",
1504 32,
1505 (struct phy_cmd[]) { /* config */
1506 {PHY_BMCR, PHY_BMCR_RESET, NULL},
1507 {PHY_BMCR, PHY_BMCR_AUTON|PHY_BMCR_RST_NEG, NULL},
1508 {miim_end,}
1509 },
1510 (struct phy_cmd[]) { /* startup */
1511 {PHY_BMSR, miim_read, NULL},
1512 {PHY_BMSR, miim_read, &mii_parse_sr},
1513 {PHY_BMSR, miim_read, &mii_parse_link},
1514 {miim_end,}
1515 },
1516 (struct phy_cmd[]) { /* shutdown */
1517 {miim_end,}
1518 }
1519};
1520
wdenk97d80fc2004-06-09 00:34:46 +00001521
wdenk3dd7f0f2005-04-04 23:43:44 +00001522uint mii_parse_lxt971_sr2(uint mii_reg, struct tsec_private *priv)
1523{
wdenk3c2b3d42005-04-05 23:32:21 +00001524 unsigned int speed;
1525 if (priv->link) {
1526 speed = mii_reg & MIIM_LXT971_SR2_SPEED_MASK;
wdenk3dd7f0f2005-04-04 23:43:44 +00001527
wdenk3c2b3d42005-04-05 23:32:21 +00001528 switch (speed) {
1529 case MIIM_LXT971_SR2_10HDX:
1530 priv->speed = 10;
1531 priv->duplexity = 0;
1532 break;
1533 case MIIM_LXT971_SR2_10FDX:
1534 priv->speed = 10;
1535 priv->duplexity = 1;
1536 break;
1537 case MIIM_LXT971_SR2_100HDX:
1538 priv->speed = 100;
1539 priv->duplexity = 0;
urwithsughosh@gmail.comcd2d1602007-09-10 14:54:56 -04001540 break;
wdenk3c2b3d42005-04-05 23:32:21 +00001541 default:
1542 priv->speed = 100;
1543 priv->duplexity = 1;
wdenk3c2b3d42005-04-05 23:32:21 +00001544 }
1545 } else {
1546 priv->speed = 0;
1547 priv->duplexity = 0;
1548 }
wdenk3dd7f0f2005-04-04 23:43:44 +00001549
wdenk3c2b3d42005-04-05 23:32:21 +00001550 return 0;
wdenk3dd7f0f2005-04-04 23:43:44 +00001551}
1552
wdenk9d46ea42005-03-14 23:56:42 +00001553static struct phy_info phy_info_lxt971 = {
1554 0x0001378e,
1555 "LXT971",
1556 4,
Jon Loeliger89875e92006-10-10 17:03:43 -05001557 (struct phy_cmd[]){ /* config */
1558 {MIIM_CR, MIIM_CR_INIT, mii_cr_init}, /* autonegotiate */
1559 {miim_end,}
1560 },
1561 (struct phy_cmd[]){ /* startup - enable interrupts */
1562 /* { 0x12, 0x00f2, NULL }, */
1563 {MIIM_STATUS, miim_read, NULL},
1564 {MIIM_STATUS, miim_read, &mii_parse_sr},
1565 {MIIM_LXT971_SR2, miim_read, &mii_parse_lxt971_sr2},
1566 {miim_end,}
1567 },
1568 (struct phy_cmd[]){ /* shutdown - disable interrupts */
1569 {miim_end,}
1570 },
wdenk9d46ea42005-03-14 23:56:42 +00001571};
1572
Wolfgang Denkbe5048f2006-03-12 22:50:55 +01001573/* Parse the DP83865's link and auto-neg status register for speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -05001574 * information
1575 */
Wolfgang Denkbe5048f2006-03-12 22:50:55 +01001576uint mii_parse_dp83865_lanr(uint mii_reg, struct tsec_private *priv)
1577{
1578 switch (mii_reg & MIIM_DP83865_SPD_MASK) {
1579
1580 case MIIM_DP83865_SPD_1000:
1581 priv->speed = 1000;
1582 break;
1583
1584 case MIIM_DP83865_SPD_100:
1585 priv->speed = 100;
1586 break;
1587
1588 default:
1589 priv->speed = 10;
1590 break;
1591
1592 }
1593
1594 if (mii_reg & MIIM_DP83865_DPX_FULL)
1595 priv->duplexity = 1;
1596 else
1597 priv->duplexity = 0;
1598
1599 return 0;
1600}
1601
1602struct phy_info phy_info_dp83865 = {
1603 0x20005c7,
1604 "NatSemi DP83865",
1605 4,
Jon Loeliger89875e92006-10-10 17:03:43 -05001606 (struct phy_cmd[]){ /* config */
1607 {MIIM_CONTROL, MIIM_DP83865_CR_INIT, NULL},
1608 {miim_end,}
1609 },
1610 (struct phy_cmd[]){ /* startup */
1611 /* Status is read once to clear old link state */
1612 {MIIM_STATUS, miim_read, NULL},
1613 /* Auto-negotiate */
1614 {MIIM_STATUS, miim_read, &mii_parse_sr},
1615 /* Read the link and auto-neg status */
1616 {MIIM_DP83865_LANR, miim_read,
1617 &mii_parse_dp83865_lanr},
1618 {miim_end,}
1619 },
1620 (struct phy_cmd[]){ /* shutdown */
1621 {miim_end,}
1622 },
Wolfgang Denkbe5048f2006-03-12 22:50:55 +01001623};
1624
Dave Liu18ee3202008-01-11 18:45:28 +08001625struct phy_info phy_info_rtl8211b = {
1626 0x001cc91,
1627 "RealTek RTL8211B",
1628 4,
1629 (struct phy_cmd[]){ /* config */
1630 /* Reset and configure the PHY */
1631 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1632 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1633 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1634 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1635 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1636 {miim_end,}
1637 },
1638 (struct phy_cmd[]){ /* startup */
1639 /* Status is read once to clear old link state */
1640 {MIIM_STATUS, miim_read, NULL},
1641 /* Auto-negotiate */
1642 {MIIM_STATUS, miim_read, &mii_parse_sr},
1643 /* Read the status */
1644 {MIIM_RTL8211B_PHY_STATUS, miim_read, &mii_parse_RTL8211B_sr},
1645 {miim_end,}
1646 },
1647 (struct phy_cmd[]){ /* shutdown */
1648 {miim_end,}
1649 },
1650};
1651
wdenk97d80fc2004-06-09 00:34:46 +00001652struct phy_info *phy_info[] = {
wdenk97d80fc2004-06-09 00:34:46 +00001653 &phy_info_cis8204,
Timur Tabi2ad6b512006-10-31 18:44:42 -06001654 &phy_info_cis8201,
Paul Gortmaker91e25762007-01-16 11:38:14 -05001655 &phy_info_BCM5461S,
Joe Hammanc3243cf2007-04-30 16:47:28 -05001656 &phy_info_BCM5464S,
Zach LeRoy091dc9f2009-05-22 10:26:33 -05001657 &phy_info_BCM5482S,
wdenk97d80fc2004-06-09 00:34:46 +00001658 &phy_info_M88E1011S,
wdenk9d46ea42005-03-14 23:56:42 +00001659 &phy_info_M88E1111S,
Ron Madrid290ef642008-05-23 15:37:05 -07001660 &phy_info_M88E1118,
Sergei Poselenovd23dc392008-06-06 15:52:44 +02001661 &phy_info_M88E1121R,
Andy Fleming09f3e092006-09-13 10:34:18 -05001662 &phy_info_M88E1145,
Wolfgang Denk5728be32007-08-06 01:01:49 +02001663 &phy_info_M88E1149S,
wdenk97d80fc2004-06-09 00:34:46 +00001664 &phy_info_dm9161,
wdenk9d46ea42005-03-14 23:56:42 +00001665 &phy_info_lxt971,
Pieter Henning736323a2009-02-22 23:17:15 -08001666 &phy_info_VSC8211,
Jon Loeligerdebb7352006-04-26 17:58:56 -05001667 &phy_info_VSC8244,
Tor Krill2d934ea2008-03-28 15:29:45 +01001668 &phy_info_VSC8601,
Wolfgang Denkbe5048f2006-03-12 22:50:55 +01001669 &phy_info_dp83865,
Dave Liu18ee3202008-01-11 18:45:28 +08001670 &phy_info_rtl8211b,
Paul Gortmaker04523522009-03-09 18:07:53 -05001671 &phy_info_generic, /* must be last; has ID 0 and 32 bit mask */
wdenk97d80fc2004-06-09 00:34:46 +00001672 NULL
1673};
1674
wdenk97d80fc2004-06-09 00:34:46 +00001675/* Grab the identifier of the device's PHY, and search through
wdenk9d46ea42005-03-14 23:56:42 +00001676 * all of the known PHYs to see if one matches. If so, return
Jon Loeliger89875e92006-10-10 17:03:43 -05001677 * it, if not, return NULL
1678 */
1679struct phy_info *get_phy_info(struct eth_device *dev)
wdenk97d80fc2004-06-09 00:34:46 +00001680{
1681 struct tsec_private *priv = (struct tsec_private *)dev->priv;
1682 uint phy_reg, phy_ID;
1683 int i;
1684 struct phy_info *theInfo = NULL;
1685
1686 /* Grab the bits from PHYIR1, and put them in the upper half */
1687 phy_reg = read_phy_reg(priv, MIIM_PHYIR1);
1688 phy_ID = (phy_reg & 0xffff) << 16;
1689
1690 /* Grab the bits from PHYIR2, and put them in the lower half */
1691 phy_reg = read_phy_reg(priv, MIIM_PHYIR2);
1692 phy_ID |= (phy_reg & 0xffff);
1693
1694 /* loop through all the known PHY types, and find one that */
1695 /* matches the ID we read from the PHY. */
Jon Loeliger89875e92006-10-10 17:03:43 -05001696 for (i = 0; phy_info[i]; i++) {
Andy Fleming2a3cee42007-05-09 00:54:20 -05001697 if (phy_info[i]->id == (phy_ID >> phy_info[i]->shift)) {
wdenk97d80fc2004-06-09 00:34:46 +00001698 theInfo = phy_info[i];
Andy Fleming2a3cee42007-05-09 00:54:20 -05001699 break;
1700 }
wdenk97d80fc2004-06-09 00:34:46 +00001701 }
1702
Paul Gortmaker04523522009-03-09 18:07:53 -05001703 if (theInfo == &phy_info_generic) {
1704 printf("%s: No support for PHY id %x; assuming generic\n", dev->name, phy_ID);
wdenk97d80fc2004-06-09 00:34:46 +00001705 } else {
Stefan Roese5810dc32005-09-21 18:20:22 +02001706 debug("%s: PHY is %s (%x)\n", dev->name, theInfo->name, phy_ID);
wdenk97d80fc2004-06-09 00:34:46 +00001707 }
1708
1709 return theInfo;
1710}
1711
wdenk97d80fc2004-06-09 00:34:46 +00001712/* Execute the given series of commands on the given device's
Jon Loeliger89875e92006-10-10 17:03:43 -05001713 * PHY, running functions as necessary
1714 */
wdenk97d80fc2004-06-09 00:34:46 +00001715void phy_run_commands(struct tsec_private *priv, struct phy_cmd *cmd)
1716{
1717 int i;
1718 uint result;
1719 volatile tsec_t *phyregs = priv->phyregs;
1720
1721 phyregs->miimcfg = MIIMCFG_RESET;
1722
1723 phyregs->miimcfg = MIIMCFG_INIT_VALUE;
1724
Jon Loeliger89875e92006-10-10 17:03:43 -05001725 while (phyregs->miimind & MIIMIND_BUSY) ;
wdenk97d80fc2004-06-09 00:34:46 +00001726
Jon Loeliger89875e92006-10-10 17:03:43 -05001727 for (i = 0; cmd->mii_reg != miim_end; i++) {
1728 if (cmd->mii_data == miim_read) {
wdenk97d80fc2004-06-09 00:34:46 +00001729 result = read_phy_reg(priv, cmd->mii_reg);
1730
Jon Loeliger89875e92006-10-10 17:03:43 -05001731 if (cmd->funct != NULL)
1732 (*(cmd->funct)) (result, priv);
wdenk97d80fc2004-06-09 00:34:46 +00001733
1734 } else {
Jon Loeliger89875e92006-10-10 17:03:43 -05001735 if (cmd->funct != NULL)
1736 result = (*(cmd->funct)) (cmd->mii_reg, priv);
wdenk97d80fc2004-06-09 00:34:46 +00001737 else
1738 result = cmd->mii_data;
1739
1740 write_phy_reg(priv, cmd->mii_reg, result);
1741
1742 }
1743 cmd++;
1744 }
1745}
1746
wdenk97d80fc2004-06-09 00:34:46 +00001747/* Relocate the function pointers in the phy cmd lists */
1748static void relocate_cmds(void)
1749{
1750 struct phy_cmd **cmdlistptr;
1751 struct phy_cmd *cmd;
Jon Loeliger89875e92006-10-10 17:03:43 -05001752 int i, j, k;
wdenk97d80fc2004-06-09 00:34:46 +00001753
Jon Loeliger89875e92006-10-10 17:03:43 -05001754 for (i = 0; phy_info[i]; i++) {
wdenk97d80fc2004-06-09 00:34:46 +00001755 /* First thing's first: relocate the pointers to the
1756 * PHY command structures (the structs were done) */
Jon Loeliger89875e92006-10-10 17:03:43 -05001757 phy_info[i] = (struct phy_info *)((uint) phy_info[i]
1758 + gd->reloc_off);
wdenk97d80fc2004-06-09 00:34:46 +00001759 phy_info[i]->name += gd->reloc_off;
1760 phy_info[i]->config =
Jon Loeliger89875e92006-10-10 17:03:43 -05001761 (struct phy_cmd *)((uint) phy_info[i]->config
1762 + gd->reloc_off);
wdenk97d80fc2004-06-09 00:34:46 +00001763 phy_info[i]->startup =
Jon Loeliger89875e92006-10-10 17:03:43 -05001764 (struct phy_cmd *)((uint) phy_info[i]->startup
1765 + gd->reloc_off);
wdenk97d80fc2004-06-09 00:34:46 +00001766 phy_info[i]->shutdown =
Jon Loeliger89875e92006-10-10 17:03:43 -05001767 (struct phy_cmd *)((uint) phy_info[i]->shutdown
1768 + gd->reloc_off);
wdenk97d80fc2004-06-09 00:34:46 +00001769
1770 cmdlistptr = &phy_info[i]->config;
Jon Loeliger89875e92006-10-10 17:03:43 -05001771 j = 0;
1772 for (; cmdlistptr <= &phy_info[i]->shutdown; cmdlistptr++) {
1773 k = 0;
1774 for (cmd = *cmdlistptr;
1775 cmd->mii_reg != miim_end;
1776 cmd++) {
wdenk97d80fc2004-06-09 00:34:46 +00001777 /* Only relocate non-NULL pointers */
Jon Loeliger89875e92006-10-10 17:03:43 -05001778 if (cmd->funct)
wdenk97d80fc2004-06-09 00:34:46 +00001779 cmd->funct += gd->reloc_off;
1780
1781 k++;
1782 }
1783 j++;
1784 }
1785 }
1786
1787 relocated = 1;
1788}
1789
Jon Loeligercb51c0b2007-07-09 17:39:42 -05001790#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) \
Marian Balakowicz63ff0042005-10-28 22:30:33 +02001791 && !defined(BITBANGMII)
wdenk97d80fc2004-06-09 00:34:46 +00001792
wdenk7abf0c52004-04-18 21:45:42 +00001793/*
1794 * Read a MII PHY register.
1795 *
1796 * Returns:
wdenk97d80fc2004-06-09 00:34:46 +00001797 * 0 on success
wdenk7abf0c52004-04-18 21:45:42 +00001798 */
Marian Balakowicz63ff0042005-10-28 22:30:33 +02001799static int tsec_miiphy_read(char *devname, unsigned char addr,
Jon Loeliger89875e92006-10-10 17:03:43 -05001800 unsigned char reg, unsigned short *value)
wdenk7abf0c52004-04-18 21:45:42 +00001801{
wdenk97d80fc2004-06-09 00:34:46 +00001802 unsigned short ret;
michael.firth@bt.com55fe7c52008-01-16 11:40:51 +00001803 struct tsec_private *priv = privlist[0];
wdenk7abf0c52004-04-18 21:45:42 +00001804
Jon Loeliger89875e92006-10-10 17:03:43 -05001805 if (NULL == priv) {
wdenk97d80fc2004-06-09 00:34:46 +00001806 printf("Can't read PHY at address %d\n", addr);
1807 return -1;
1808 }
1809
Andy Fleming2abe3612008-08-31 16:33:27 -05001810 ret = (unsigned short)tsec_local_mdio_read(priv->phyregs, addr, reg);
wdenk97d80fc2004-06-09 00:34:46 +00001811 *value = ret;
wdenk7abf0c52004-04-18 21:45:42 +00001812
1813 return 0;
1814}
1815
1816/*
1817 * Write a MII PHY register.
1818 *
1819 * Returns:
wdenk97d80fc2004-06-09 00:34:46 +00001820 * 0 on success
wdenk7abf0c52004-04-18 21:45:42 +00001821 */
Marian Balakowicz63ff0042005-10-28 22:30:33 +02001822static int tsec_miiphy_write(char *devname, unsigned char addr,
Jon Loeliger89875e92006-10-10 17:03:43 -05001823 unsigned char reg, unsigned short value)
wdenk7abf0c52004-04-18 21:45:42 +00001824{
michael.firth@bt.com55fe7c52008-01-16 11:40:51 +00001825 struct tsec_private *priv = privlist[0];
wdenk7abf0c52004-04-18 21:45:42 +00001826
Jon Loeliger89875e92006-10-10 17:03:43 -05001827 if (NULL == priv) {
wdenk97d80fc2004-06-09 00:34:46 +00001828 printf("Can't write PHY at address %d\n", addr);
1829 return -1;
1830 }
1831
Andy Fleming2abe3612008-08-31 16:33:27 -05001832 tsec_local_mdio_write(priv->phyregs, addr, reg, value);
wdenk7abf0c52004-04-18 21:45:42 +00001833
1834 return 0;
1835}
wdenk97d80fc2004-06-09 00:34:46 +00001836
Jon Loeligercb51c0b2007-07-09 17:39:42 -05001837#endif
wdenk97d80fc2004-06-09 00:34:46 +00001838
David Updegraff53a5c422007-06-11 10:41:07 -05001839#ifdef CONFIG_MCAST_TFTP
1840
1841/* CREDITS: linux gianfar driver, slightly adjusted... thanx. */
1842
1843/* Set the appropriate hash bit for the given addr */
1844
1845/* The algorithm works like so:
1846 * 1) Take the Destination Address (ie the multicast address), and
1847 * do a CRC on it (little endian), and reverse the bits of the
1848 * result.
1849 * 2) Use the 8 most significant bits as a hash into a 256-entry
1850 * table. The table is controlled through 8 32-bit registers:
1851 * gaddr0-7. gaddr0's MSB is entry 0, and gaddr7's LSB is
1852 * gaddr7. This means that the 3 most significant bits in the
1853 * hash index which gaddr register to use, and the 5 other bits
1854 * indicate which bit (assuming an IBM numbering scheme, which
1855 * for PowerPC (tm) is usually the case) in the tregister holds
1856 * the entry. */
1857static int
1858tsec_mcast_addr (struct eth_device *dev, u8 mcast_mac, u8 set)
1859{
1860 struct tsec_private *priv = privlist[1];
1861 volatile tsec_t *regs = priv->regs;
1862 volatile u32 *reg_array, value;
1863 u8 result, whichbit, whichreg;
1864
1865 result = (u8)((ether_crc(MAC_ADDR_LEN,mcast_mac) >> 24) & 0xff);
1866 whichbit = result & 0x1f; /* the 5 LSB = which bit to set */
1867 whichreg = result >> 5; /* the 3 MSB = which reg to set it in */
1868 value = (1 << (31-whichbit));
1869
1870 reg_array = &(regs->hash.gaddr0);
1871
1872 if (set) {
1873 reg_array[whichreg] |= value;
1874 } else {
1875 reg_array[whichreg] &= ~value;
1876 }
1877 return 0;
1878}
1879#endif /* Multicast TFTP ? */