blob: 399116f3a258c6540fe13c6f88d778847719bd83 [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 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500200 regs->macstnaddr1 = *((uint *) (tmpbuf));
wdenk42d1f032003-10-15 23:53:47 +0000201
Jon Loeliger89875e92006-10-10 17:03:43 -0500202 tempval = *((uint *) (tmpbuf + 4));
wdenk42d1f032003-10-15 23:53:47 +0000203
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200204 regs->macstnaddr2 = tempval;
wdenk42d1f032003-10-15 23:53:47 +0000205
wdenk42d1f032003-10-15 23:53:47 +0000206 /* reset the indices to zero */
207 rxIdx = 0;
208 txIdx = 0;
209
210 /* Clear out (for the most part) the other registers */
211 init_registers(regs);
212
213 /* Ready the device for tx/rx */
wdenk97d80fc2004-06-09 00:34:46 +0000214 startup_tsec(dev);
wdenk42d1f032003-10-15 23:53:47 +0000215
wdenk97d80fc2004-06-09 00:34:46 +0000216 /* If there's no link, fail */
Ben Warren422b1a02008-01-09 18:15:53 -0500217 return (priv->link ? 0 : -1);
wdenk42d1f032003-10-15 23:53:47 +0000218}
219
Andy Fleming2abe3612008-08-31 16:33:27 -0500220/* Writes the given phy's reg with value, using the specified MDIO regs */
221static void tsec_local_mdio_write(volatile tsec_t *phyregs, uint addr,
222 uint reg, uint value)
wdenk97d80fc2004-06-09 00:34:46 +0000223{
Jon Loeliger89875e92006-10-10 17:03:43 -0500224 int timeout = 1000000;
wdenk97d80fc2004-06-09 00:34:46 +0000225
Andy Fleming2abe3612008-08-31 16:33:27 -0500226 phyregs->miimadd = (addr << 8) | reg;
227 phyregs->miimcon = value;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500228 asm("sync");
wdenk97d80fc2004-06-09 00:34:46 +0000229
Jon Loeliger89875e92006-10-10 17:03:43 -0500230 timeout = 1000000;
Andy Fleming2abe3612008-08-31 16:33:27 -0500231 while ((phyregs->miimind & MIIMIND_BUSY) && timeout--) ;
wdenk97d80fc2004-06-09 00:34:46 +0000232}
233
Andy Fleming2abe3612008-08-31 16:33:27 -0500234
235/* Provide the default behavior of writing the PHY of this ethernet device */
236#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 +0000237
wdenk97d80fc2004-06-09 00:34:46 +0000238/* Reads register regnum on the device's PHY through the
Andy Fleming2abe3612008-08-31 16:33:27 -0500239 * specified registers. It lowers and raises the read
wdenk97d80fc2004-06-09 00:34:46 +0000240 * command, and waits for the data to become valid (miimind
241 * notvalid bit cleared), and the bus to cease activity (miimind
242 * busy bit cleared), and then returns the value
243 */
Andy Fleming2abe3612008-08-31 16:33:27 -0500244uint tsec_local_mdio_read(volatile tsec_t *phyregs, uint phyid, uint regnum)
wdenk42d1f032003-10-15 23:53:47 +0000245{
246 uint value;
247
wdenk97d80fc2004-06-09 00:34:46 +0000248 /* Put the address of the phy, and the register
249 * number into MIIMADD */
Andy Fleming2abe3612008-08-31 16:33:27 -0500250 phyregs->miimadd = (phyid << 8) | regnum;
wdenk42d1f032003-10-15 23:53:47 +0000251
252 /* Clear the command register, and wait */
Andy Fleming2abe3612008-08-31 16:33:27 -0500253 phyregs->miimcom = 0;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500254 asm("sync");
wdenk42d1f032003-10-15 23:53:47 +0000255
256 /* Initiate a read command, and wait */
Andy Fleming2abe3612008-08-31 16:33:27 -0500257 phyregs->miimcom = MIIM_READ_COMMAND;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500258 asm("sync");
wdenk42d1f032003-10-15 23:53:47 +0000259
260 /* Wait for the the indication that the read is done */
Andy Fleming2abe3612008-08-31 16:33:27 -0500261 while ((phyregs->miimind & (MIIMIND_NOTVALID | MIIMIND_BUSY))) ;
wdenk42d1f032003-10-15 23:53:47 +0000262
263 /* Grab the value read from the PHY */
Andy Fleming2abe3612008-08-31 16:33:27 -0500264 value = phyregs->miimstat;
wdenk42d1f032003-10-15 23:53:47 +0000265
266 return value;
267}
268
michael.firth@bt.com55fe7c52008-01-16 11:40:51 +0000269/* #define to provide old read_phy_reg functionality without duplicating code */
Andy Fleming2abe3612008-08-31 16:33:27 -0500270#define read_phy_reg(priv,regnum) tsec_local_mdio_read(priv->phyregs,priv->phyaddr,regnum)
271
272#define TBIANA_SETTINGS ( \
273 TBIANA_ASYMMETRIC_PAUSE \
274 | TBIANA_SYMMETRIC_PAUSE \
275 | TBIANA_FULL_DUPLEX \
276 )
277
278#define TBICR_SETTINGS ( \
279 TBICR_PHY_RESET \
280 | TBICR_ANEG_ENABLE \
281 | TBICR_FULL_DUPLEX \
282 | TBICR_SPEED1_SET \
283 )
284/* Configure the TBI for SGMII operation */
285static void tsec_configure_serdes(struct tsec_private *priv)
286{
Peter Tyserce47eb42008-09-16 10:04:47 -0500287 /* Access TBI PHY registers at given TSEC register offset as opposed to the
288 * register offset used for external PHY accesses */
289 tsec_local_mdio_write(priv->regs, priv->regs->tbipa, TBI_ANA,
Andy Fleming2abe3612008-08-31 16:33:27 -0500290 TBIANA_SETTINGS);
Peter Tyserce47eb42008-09-16 10:04:47 -0500291 tsec_local_mdio_write(priv->regs, priv->regs->tbipa, TBI_TBICON,
Andy Fleming2abe3612008-08-31 16:33:27 -0500292 TBICON_CLK_SELECT);
Peter Tyserce47eb42008-09-16 10:04:47 -0500293 tsec_local_mdio_write(priv->regs, priv->regs->tbipa, TBI_CR,
Andy Fleming2abe3612008-08-31 16:33:27 -0500294 TBICR_SETTINGS);
295}
michael.firth@bt.com55fe7c52008-01-16 11:40:51 +0000296
wdenk97d80fc2004-06-09 00:34:46 +0000297/* Discover which PHY is attached to the device, and configure it
298 * properly. If the PHY is not recognized, then return 0
299 * (failure). Otherwise, return 1
300 */
301static int init_phy(struct eth_device *dev)
wdenk42d1f032003-10-15 23:53:47 +0000302{
wdenk97d80fc2004-06-09 00:34:46 +0000303 struct tsec_private *priv = (struct tsec_private *)dev->priv;
304 struct phy_info *curphy;
Andy Fleming2abe3612008-08-31 16:33:27 -0500305 volatile tsec_t *phyregs = priv->phyregs;
306 volatile tsec_t *regs = priv->regs;
wdenk42d1f032003-10-15 23:53:47 +0000307
308 /* Assign a Physical address to the TBI */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200309 regs->tbipa = CONFIG_SYS_TBIPA_VALUE;
310 phyregs->tbipa = CONFIG_SYS_TBIPA_VALUE;
Jon Loeliger89875e92006-10-10 17:03:43 -0500311 asm("sync");
wdenk3dd7f0f2005-04-04 23:43:44 +0000312
313 /* Reset MII (due to new addresses) */
314 priv->phyregs->miimcfg = MIIMCFG_RESET;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500315 asm("sync");
wdenk3dd7f0f2005-04-04 23:43:44 +0000316 priv->phyregs->miimcfg = MIIMCFG_INIT_VALUE;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500317 asm("sync");
Jon Loeliger89875e92006-10-10 17:03:43 -0500318 while (priv->phyregs->miimind & MIIMIND_BUSY) ;
wdenk42d1f032003-10-15 23:53:47 +0000319
Jon Loeliger89875e92006-10-10 17:03:43 -0500320 if (0 == relocated)
wdenk97d80fc2004-06-09 00:34:46 +0000321 relocate_cmds();
wdenk42d1f032003-10-15 23:53:47 +0000322
wdenk97d80fc2004-06-09 00:34:46 +0000323 /* Get the cmd structure corresponding to the attached
324 * PHY */
325 curphy = get_phy_info(dev);
wdenk42d1f032003-10-15 23:53:47 +0000326
Ben Warren4653f912006-10-26 14:38:25 -0400327 if (curphy == NULL) {
328 priv->phyinfo = NULL;
wdenk97d80fc2004-06-09 00:34:46 +0000329 printf("%s: No PHY found\n", dev->name);
wdenk42d1f032003-10-15 23:53:47 +0000330
wdenk97d80fc2004-06-09 00:34:46 +0000331 return 0;
wdenk42d1f032003-10-15 23:53:47 +0000332 }
333
Andy Fleming2abe3612008-08-31 16:33:27 -0500334 if (regs->ecntrl & ECNTRL_SGMII_MODE)
335 tsec_configure_serdes(priv);
336
wdenk97d80fc2004-06-09 00:34:46 +0000337 priv->phyinfo = curphy;
wdenk42d1f032003-10-15 23:53:47 +0000338
wdenk97d80fc2004-06-09 00:34:46 +0000339 phy_run_commands(priv, priv->phyinfo->config);
wdenk42d1f032003-10-15 23:53:47 +0000340
wdenk97d80fc2004-06-09 00:34:46 +0000341 return 1;
wdenk42d1f032003-10-15 23:53:47 +0000342}
343
Jon Loeliger89875e92006-10-10 17:03:43 -0500344/*
345 * Returns which value to write to the control register.
346 * For 10/100, the value is slightly different
347 */
348uint mii_cr_init(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000349{
Jon Loeliger89875e92006-10-10 17:03:43 -0500350 if (priv->flags & TSEC_GIGABIT)
wdenk97d80fc2004-06-09 00:34:46 +0000351 return MIIM_CONTROL_INIT;
352 else
353 return MIIM_CR_INIT;
354}
355
wdenk97d80fc2004-06-09 00:34:46 +0000356/* Parse the status register for link, and then do
Jon Loeliger89875e92006-10-10 17:03:43 -0500357 * auto-negotiation
358 */
359uint mii_parse_sr(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000360{
Stefan Roese5810dc32005-09-21 18:20:22 +0200361 /*
Andy Fleming7613afd2007-08-15 20:03:44 -0500362 * Wait if the link is up, and autonegotiation is in progress
363 * (ie - we're capable and it's not done)
Stefan Roese5810dc32005-09-21 18:20:22 +0200364 */
365 mii_reg = read_phy_reg(priv, MIIM_STATUS);
Andy Fleming7613afd2007-08-15 20:03:44 -0500366 if ((mii_reg & MIIM_STATUS_LINK) && (mii_reg & PHY_BMSR_AUTN_ABLE)
Jon Loeliger89875e92006-10-10 17:03:43 -0500367 && !(mii_reg & PHY_BMSR_AUTN_COMP)) {
Stefan Roese5810dc32005-09-21 18:20:22 +0200368 int i = 0;
wdenk97d80fc2004-06-09 00:34:46 +0000369
Jon Loeliger89875e92006-10-10 17:03:43 -0500370 puts("Waiting for PHY auto negotiation to complete");
Andy Fleming7613afd2007-08-15 20:03:44 -0500371 while (!(mii_reg & PHY_BMSR_AUTN_COMP)) {
Stefan Roese5810dc32005-09-21 18:20:22 +0200372 /*
373 * Timeout reached ?
374 */
375 if (i > PHY_AUTONEGOTIATE_TIMEOUT) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500376 puts(" TIMEOUT !\n");
Stefan Roese5810dc32005-09-21 18:20:22 +0200377 priv->link = 0;
Jin Zhengxiong-R64188fcfb9a52006-06-27 18:12:23 +0800378 return 0;
Stefan Roese5810dc32005-09-21 18:20:22 +0200379 }
wdenk97d80fc2004-06-09 00:34:46 +0000380
Stefan Roese5810dc32005-09-21 18:20:22 +0200381 if ((i++ % 1000) == 0) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500382 putc('.');
Stefan Roese5810dc32005-09-21 18:20:22 +0200383 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500384 udelay(1000); /* 1 ms */
wdenk97d80fc2004-06-09 00:34:46 +0000385 mii_reg = read_phy_reg(priv, MIIM_STATUS);
Stefan Roese5810dc32005-09-21 18:20:22 +0200386 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500387 puts(" done\n");
Stefan Roese5810dc32005-09-21 18:20:22 +0200388 priv->link = 1;
Jon Loeliger89875e92006-10-10 17:03:43 -0500389 udelay(500000); /* another 500 ms (results in faster booting) */
Stefan Roese5810dc32005-09-21 18:20:22 +0200390 } else {
Andy Fleming7613afd2007-08-15 20:03:44 -0500391 if (mii_reg & MIIM_STATUS_LINK)
392 priv->link = 1;
393 else
394 priv->link = 0;
wdenk97d80fc2004-06-09 00:34:46 +0000395 }
396
397 return 0;
398}
399
David Updegraffaf1c2b82007-04-20 14:34:48 -0500400/* Generic function which updates the speed and duplex. If
401 * autonegotiation is enabled, it uses the AND of the link
402 * partner's advertised capabilities and our advertised
403 * capabilities. If autonegotiation is disabled, we use the
404 * appropriate bits in the control register.
405 *
406 * Stolen from Linux's mii.c and phy_device.c
407 */
408uint mii_parse_link(uint mii_reg, struct tsec_private *priv)
409{
410 /* We're using autonegotiation */
411 if (mii_reg & PHY_BMSR_AUTN_ABLE) {
412 uint lpa = 0;
413 uint gblpa = 0;
414
415 /* Check for gigabit capability */
416 if (mii_reg & PHY_BMSR_EXT) {
417 /* We want a list of states supported by
418 * both PHYs in the link
419 */
420 gblpa = read_phy_reg(priv, PHY_1000BTSR);
421 gblpa &= read_phy_reg(priv, PHY_1000BTCR) << 2;
422 }
423
424 /* Set the baseline so we only have to set them
425 * if they're different
426 */
427 priv->speed = 10;
428 priv->duplexity = 0;
429
430 /* Check the gigabit fields */
431 if (gblpa & (PHY_1000BTSR_1000FD | PHY_1000BTSR_1000HD)) {
432 priv->speed = 1000;
433
434 if (gblpa & PHY_1000BTSR_1000FD)
435 priv->duplexity = 1;
436
437 /* We're done! */
438 return 0;
439 }
440
441 lpa = read_phy_reg(priv, PHY_ANAR);
442 lpa &= read_phy_reg(priv, PHY_ANLPAR);
443
444 if (lpa & (PHY_ANLPAR_TXFD | PHY_ANLPAR_TX)) {
445 priv->speed = 100;
446
447 if (lpa & PHY_ANLPAR_TXFD)
448 priv->duplexity = 1;
449
450 } else if (lpa & PHY_ANLPAR_10FD)
451 priv->duplexity = 1;
452 } else {
453 uint bmcr = read_phy_reg(priv, PHY_BMCR);
454
455 priv->speed = 10;
456 priv->duplexity = 0;
457
458 if (bmcr & PHY_BMCR_DPLX)
459 priv->duplexity = 1;
460
461 if (bmcr & PHY_BMCR_1000_MBPS)
462 priv->speed = 1000;
463 else if (bmcr & PHY_BMCR_100_MBPS)
464 priv->speed = 100;
465 }
466
467 return 0;
468}
469
Paul Gortmaker91e25762007-01-16 11:38:14 -0500470/*
471 * Parse the BCM54xx status register for speed and duplex information.
472 * The linux sungem_phy has this information, but in a table format.
473 */
474uint mii_parse_BCM54xx_sr(uint mii_reg, struct tsec_private *priv)
475{
476
477 switch((mii_reg & MIIM_BCM54xx_AUXSTATUS_LINKMODE_MASK) >> MIIM_BCM54xx_AUXSTATUS_LINKMODE_SHIFT){
478
479 case 1:
480 printf("Enet starting in 10BT/HD\n");
481 priv->duplexity = 0;
482 priv->speed = 10;
483 break;
484
485 case 2:
486 printf("Enet starting in 10BT/FD\n");
487 priv->duplexity = 1;
488 priv->speed = 10;
489 break;
490
491 case 3:
492 printf("Enet starting in 100BT/HD\n");
493 priv->duplexity = 0;
494 priv->speed = 100;
495 break;
496
497 case 5:
498 printf("Enet starting in 100BT/FD\n");
499 priv->duplexity = 1;
500 priv->speed = 100;
501 break;
502
503 case 6:
504 printf("Enet starting in 1000BT/HD\n");
505 priv->duplexity = 0;
506 priv->speed = 1000;
507 break;
508
509 case 7:
510 printf("Enet starting in 1000BT/FD\n");
511 priv->duplexity = 1;
512 priv->speed = 1000;
513 break;
514
515 default:
516 printf("Auto-neg error, defaulting to 10BT/HD\n");
517 priv->duplexity = 0;
518 priv->speed = 10;
519 break;
520 }
521
522 return 0;
523
524}
wdenk97d80fc2004-06-09 00:34:46 +0000525/* Parse the 88E1011's status register for speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -0500526 * information
527 */
528uint mii_parse_88E1011_psr(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000529{
530 uint speed;
531
Stefan Roese5810dc32005-09-21 18:20:22 +0200532 mii_reg = read_phy_reg(priv, MIIM_88E1011_PHY_STATUS);
533
Andy Fleming7613afd2007-08-15 20:03:44 -0500534 if ((mii_reg & MIIM_88E1011_PHYSTAT_LINK) &&
535 !(mii_reg & MIIM_88E1011_PHYSTAT_SPDDONE)) {
Stefan Roese5810dc32005-09-21 18:20:22 +0200536 int i = 0;
537
Jon Loeliger89875e92006-10-10 17:03:43 -0500538 puts("Waiting for PHY realtime link");
Andy Fleming7613afd2007-08-15 20:03:44 -0500539 while (!(mii_reg & MIIM_88E1011_PHYSTAT_SPDDONE)) {
540 /* Timeout reached ? */
Stefan Roese5810dc32005-09-21 18:20:22 +0200541 if (i > PHY_AUTONEGOTIATE_TIMEOUT) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500542 puts(" TIMEOUT !\n");
Stefan Roese5810dc32005-09-21 18:20:22 +0200543 priv->link = 0;
544 break;
545 }
546
547 if ((i++ % 1000) == 0) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500548 putc('.');
Stefan Roese5810dc32005-09-21 18:20:22 +0200549 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500550 udelay(1000); /* 1 ms */
Stefan Roese5810dc32005-09-21 18:20:22 +0200551 mii_reg = read_phy_reg(priv, MIIM_88E1011_PHY_STATUS);
552 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500553 puts(" done\n");
554 udelay(500000); /* another 500 ms (results in faster booting) */
Andy Fleming7613afd2007-08-15 20:03:44 -0500555 } else {
556 if (mii_reg & MIIM_88E1011_PHYSTAT_LINK)
557 priv->link = 1;
558 else
559 priv->link = 0;
Stefan Roese5810dc32005-09-21 18:20:22 +0200560 }
561
Jon Loeliger89875e92006-10-10 17:03:43 -0500562 if (mii_reg & MIIM_88E1011_PHYSTAT_DUPLEX)
wdenk97d80fc2004-06-09 00:34:46 +0000563 priv->duplexity = 1;
564 else
565 priv->duplexity = 0;
566
Jon Loeliger89875e92006-10-10 17:03:43 -0500567 speed = (mii_reg & MIIM_88E1011_PHYSTAT_SPEED);
wdenk97d80fc2004-06-09 00:34:46 +0000568
Jon Loeliger89875e92006-10-10 17:03:43 -0500569 switch (speed) {
570 case MIIM_88E1011_PHYSTAT_GBIT:
571 priv->speed = 1000;
572 break;
573 case MIIM_88E1011_PHYSTAT_100:
574 priv->speed = 100;
575 break;
576 default:
577 priv->speed = 10;
wdenk97d80fc2004-06-09 00:34:46 +0000578 }
579
580 return 0;
581}
582
Dave Liu18ee3202008-01-11 18:45:28 +0800583/* Parse the RTL8211B's status register for speed and duplex
584 * information
585 */
586uint mii_parse_RTL8211B_sr(uint mii_reg, struct tsec_private * priv)
587{
588 uint speed;
589
590 mii_reg = read_phy_reg(priv, MIIM_RTL8211B_PHY_STATUS);
Anton Vorontsovc7604782008-03-14 23:20:30 +0300591 if (!(mii_reg & MIIM_RTL8211B_PHYSTAT_SPDDONE)) {
Dave Liu18ee3202008-01-11 18:45:28 +0800592 int i = 0;
593
Anton Vorontsovc7604782008-03-14 23:20:30 +0300594 /* in case of timeout ->link is cleared */
595 priv->link = 1;
Dave Liu18ee3202008-01-11 18:45:28 +0800596 puts("Waiting for PHY realtime link");
597 while (!(mii_reg & MIIM_RTL8211B_PHYSTAT_SPDDONE)) {
598 /* Timeout reached ? */
599 if (i > PHY_AUTONEGOTIATE_TIMEOUT) {
600 puts(" TIMEOUT !\n");
601 priv->link = 0;
602 break;
603 }
604
605 if ((i++ % 1000) == 0) {
606 putc('.');
607 }
608 udelay(1000); /* 1 ms */
609 mii_reg = read_phy_reg(priv, MIIM_RTL8211B_PHY_STATUS);
610 }
611 puts(" done\n");
612 udelay(500000); /* another 500 ms (results in faster booting) */
613 } else {
614 if (mii_reg & MIIM_RTL8211B_PHYSTAT_LINK)
615 priv->link = 1;
616 else
617 priv->link = 0;
618 }
619
620 if (mii_reg & MIIM_RTL8211B_PHYSTAT_DUPLEX)
621 priv->duplexity = 1;
622 else
623 priv->duplexity = 0;
624
625 speed = (mii_reg & MIIM_RTL8211B_PHYSTAT_SPEED);
626
627 switch (speed) {
628 case MIIM_RTL8211B_PHYSTAT_GBIT:
629 priv->speed = 1000;
630 break;
631 case MIIM_RTL8211B_PHYSTAT_100:
632 priv->speed = 100;
633 break;
634 default:
635 priv->speed = 10;
636 }
637
638 return 0;
639}
640
wdenk97d80fc2004-06-09 00:34:46 +0000641/* Parse the cis8201's status register for speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -0500642 * information
643 */
644uint mii_parse_cis8201(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000645{
646 uint speed;
647
Jon Loeliger89875e92006-10-10 17:03:43 -0500648 if (mii_reg & MIIM_CIS8201_AUXCONSTAT_DUPLEX)
wdenk97d80fc2004-06-09 00:34:46 +0000649 priv->duplexity = 1;
650 else
651 priv->duplexity = 0;
652
653 speed = mii_reg & MIIM_CIS8201_AUXCONSTAT_SPEED;
Jon Loeliger89875e92006-10-10 17:03:43 -0500654 switch (speed) {
655 case MIIM_CIS8201_AUXCONSTAT_GBIT:
656 priv->speed = 1000;
657 break;
658 case MIIM_CIS8201_AUXCONSTAT_100:
659 priv->speed = 100;
660 break;
661 default:
662 priv->speed = 10;
663 break;
wdenk97d80fc2004-06-09 00:34:46 +0000664 }
665
666 return 0;
667}
Jon Loeliger89875e92006-10-10 17:03:43 -0500668
Jon Loeligerdebb7352006-04-26 17:58:56 -0500669/* Parse the vsc8244's status register for speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -0500670 * information
671 */
672uint mii_parse_vsc8244(uint mii_reg, struct tsec_private * priv)
Jon Loeligerdebb7352006-04-26 17:58:56 -0500673{
Jon Loeliger89875e92006-10-10 17:03:43 -0500674 uint speed;
675
676 if (mii_reg & MIIM_VSC8244_AUXCONSTAT_DUPLEX)
677 priv->duplexity = 1;
678 else
679 priv->duplexity = 0;
680
681 speed = mii_reg & MIIM_VSC8244_AUXCONSTAT_SPEED;
682 switch (speed) {
683 case MIIM_VSC8244_AUXCONSTAT_GBIT:
684 priv->speed = 1000;
685 break;
686 case MIIM_VSC8244_AUXCONSTAT_100:
687 priv->speed = 100;
688 break;
689 default:
690 priv->speed = 10;
691 break;
692 }
693
694 return 0;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500695}
wdenk97d80fc2004-06-09 00:34:46 +0000696
wdenk97d80fc2004-06-09 00:34:46 +0000697/* Parse the DM9161's status register for speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -0500698 * information
699 */
700uint mii_parse_dm9161_scsr(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000701{
Jon Loeliger89875e92006-10-10 17:03:43 -0500702 if (mii_reg & (MIIM_DM9161_SCSR_100F | MIIM_DM9161_SCSR_100H))
wdenk97d80fc2004-06-09 00:34:46 +0000703 priv->speed = 100;
704 else
705 priv->speed = 10;
706
Jon Loeliger89875e92006-10-10 17:03:43 -0500707 if (mii_reg & (MIIM_DM9161_SCSR_100F | MIIM_DM9161_SCSR_10F))
wdenk97d80fc2004-06-09 00:34:46 +0000708 priv->duplexity = 1;
709 else
710 priv->duplexity = 0;
711
712 return 0;
713}
714
Jon Loeliger89875e92006-10-10 17:03:43 -0500715/*
716 * Hack to write all 4 PHYs with the LED values
717 */
718uint mii_cis8204_fixled(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000719{
720 uint phyid;
721 volatile tsec_t *regbase = priv->phyregs;
Jon Loeliger89875e92006-10-10 17:03:43 -0500722 int timeout = 1000000;
wdenk97d80fc2004-06-09 00:34:46 +0000723
Jon Loeliger89875e92006-10-10 17:03:43 -0500724 for (phyid = 0; phyid < 4; phyid++) {
wdenk97d80fc2004-06-09 00:34:46 +0000725 regbase->miimadd = (phyid << 8) | mii_reg;
726 regbase->miimcon = MIIM_CIS8204_SLEDCON_INIT;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500727 asm("sync");
wdenk97d80fc2004-06-09 00:34:46 +0000728
Jon Loeliger89875e92006-10-10 17:03:43 -0500729 timeout = 1000000;
730 while ((regbase->miimind & MIIMIND_BUSY) && timeout--) ;
wdenk97d80fc2004-06-09 00:34:46 +0000731 }
732
733 return MIIM_CIS8204_SLEDCON_INIT;
734}
735
Jon Loeliger89875e92006-10-10 17:03:43 -0500736uint mii_cis8204_setmode(uint mii_reg, struct tsec_private * priv)
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500737{
738 if (priv->flags & TSEC_REDUCED)
739 return MIIM_CIS8204_EPHYCON_INIT | MIIM_CIS8204_EPHYCON_RGMII;
740 else
741 return MIIM_CIS8204_EPHYCON_INIT;
742}
wdenk97d80fc2004-06-09 00:34:46 +0000743
Dave Liu19580e62007-09-18 12:37:57 +0800744uint mii_m88e1111s_setmode(uint mii_reg, struct tsec_private *priv)
745{
746 uint mii_data = read_phy_reg(priv, mii_reg);
747
748 if (priv->flags & TSEC_REDUCED)
749 mii_data = (mii_data & 0xfff0) | 0x000b;
750 return mii_data;
751}
752
wdenk97d80fc2004-06-09 00:34:46 +0000753/* Initialized required registers to appropriate values, zeroing
754 * those we don't care about (unless zero is bad, in which case,
Jon Loeliger89875e92006-10-10 17:03:43 -0500755 * choose a more appropriate value)
756 */
757static void init_registers(volatile tsec_t * regs)
wdenk42d1f032003-10-15 23:53:47 +0000758{
759 /* Clear IEVENT */
760 regs->ievent = IEVENT_INIT_CLEAR;
761
762 regs->imask = IMASK_INIT_CLEAR;
763
764 regs->hash.iaddr0 = 0;
765 regs->hash.iaddr1 = 0;
766 regs->hash.iaddr2 = 0;
767 regs->hash.iaddr3 = 0;
768 regs->hash.iaddr4 = 0;
769 regs->hash.iaddr5 = 0;
770 regs->hash.iaddr6 = 0;
771 regs->hash.iaddr7 = 0;
772
773 regs->hash.gaddr0 = 0;
774 regs->hash.gaddr1 = 0;
775 regs->hash.gaddr2 = 0;
776 regs->hash.gaddr3 = 0;
777 regs->hash.gaddr4 = 0;
778 regs->hash.gaddr5 = 0;
779 regs->hash.gaddr6 = 0;
780 regs->hash.gaddr7 = 0;
781
782 regs->rctrl = 0x00000000;
783
784 /* Init RMON mib registers */
785 memset((void *)&(regs->rmon), 0, sizeof(rmon_mib_t));
786
787 regs->rmon.cam1 = 0xffffffff;
788 regs->rmon.cam2 = 0xffffffff;
789
790 regs->mrblr = MRBLR_INIT_SETTINGS;
791
792 regs->minflr = MINFLR_INIT_SETTINGS;
793
794 regs->attr = ATTR_INIT_SETTINGS;
795 regs->attreli = ATTRELI_INIT_SETTINGS;
796
797}
798
wdenk97d80fc2004-06-09 00:34:46 +0000799/* Configure maccfg2 based on negotiated speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -0500800 * reported by PHY handling code
801 */
wdenk97d80fc2004-06-09 00:34:46 +0000802static void adjust_link(struct eth_device *dev)
803{
804 struct tsec_private *priv = (struct tsec_private *)dev->priv;
805 volatile tsec_t *regs = priv->regs;
806
Jon Loeliger89875e92006-10-10 17:03:43 -0500807 if (priv->link) {
808 if (priv->duplexity != 0)
wdenk97d80fc2004-06-09 00:34:46 +0000809 regs->maccfg2 |= MACCFG2_FULL_DUPLEX;
810 else
811 regs->maccfg2 &= ~(MACCFG2_FULL_DUPLEX);
812
Jon Loeliger89875e92006-10-10 17:03:43 -0500813 switch (priv->speed) {
814 case 1000:
815 regs->maccfg2 = ((regs->maccfg2 & ~(MACCFG2_IF))
816 | MACCFG2_GMII);
817 break;
818 case 100:
819 case 10:
820 regs->maccfg2 = ((regs->maccfg2 & ~(MACCFG2_IF))
821 | MACCFG2_MII);
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500822
Nick Spencef484dc72006-09-07 07:39:46 -0700823 /* Set R100 bit in all modes although
824 * it is only used in RGMII mode
Jon Loeliger89875e92006-10-10 17:03:43 -0500825 */
Nick Spencef484dc72006-09-07 07:39:46 -0700826 if (priv->speed == 100)
Jon Loeliger89875e92006-10-10 17:03:43 -0500827 regs->ecntrl |= ECNTRL_R100;
828 else
829 regs->ecntrl &= ~(ECNTRL_R100);
830 break;
831 default:
832 printf("%s: Speed was bad\n", dev->name);
833 break;
wdenk97d80fc2004-06-09 00:34:46 +0000834 }
835
836 printf("Speed: %d, %s duplex\n", priv->speed,
Jon Loeliger89875e92006-10-10 17:03:43 -0500837 (priv->duplexity) ? "full" : "half");
wdenk97d80fc2004-06-09 00:34:46 +0000838
839 } else {
840 printf("%s: No link.\n", dev->name);
841 }
842}
843
wdenk97d80fc2004-06-09 00:34:46 +0000844/* Set up the buffers and their descriptors, and bring up the
Jon Loeliger89875e92006-10-10 17:03:43 -0500845 * interface
846 */
wdenk97d80fc2004-06-09 00:34:46 +0000847static void startup_tsec(struct eth_device *dev)
wdenk42d1f032003-10-15 23:53:47 +0000848{
849 int i;
wdenk97d80fc2004-06-09 00:34:46 +0000850 struct tsec_private *priv = (struct tsec_private *)dev->priv;
851 volatile tsec_t *regs = priv->regs;
wdenk42d1f032003-10-15 23:53:47 +0000852
853 /* Point to the buffer descriptors */
854 regs->tbase = (unsigned int)(&rtx.txbd[txIdx]);
855 regs->rbase = (unsigned int)(&rtx.rxbd[rxIdx]);
856
857 /* Initialize the Rx Buffer descriptors */
858 for (i = 0; i < PKTBUFSRX; i++) {
859 rtx.rxbd[i].status = RXBD_EMPTY;
860 rtx.rxbd[i].length = 0;
Jon Loeliger89875e92006-10-10 17:03:43 -0500861 rtx.rxbd[i].bufPtr = (uint) NetRxPackets[i];
wdenk42d1f032003-10-15 23:53:47 +0000862 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500863 rtx.rxbd[PKTBUFSRX - 1].status |= RXBD_WRAP;
wdenk42d1f032003-10-15 23:53:47 +0000864
865 /* Initialize the TX Buffer Descriptors */
Jon Loeliger89875e92006-10-10 17:03:43 -0500866 for (i = 0; i < TX_BUF_CNT; i++) {
wdenk42d1f032003-10-15 23:53:47 +0000867 rtx.txbd[i].status = 0;
868 rtx.txbd[i].length = 0;
869 rtx.txbd[i].bufPtr = 0;
870 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500871 rtx.txbd[TX_BUF_CNT - 1].status |= TXBD_WRAP;
wdenk42d1f032003-10-15 23:53:47 +0000872
wdenk97d80fc2004-06-09 00:34:46 +0000873 /* Start up the PHY */
Ben Warren4653f912006-10-26 14:38:25 -0400874 if(priv->phyinfo)
875 phy_run_commands(priv, priv->phyinfo->startup);
David Updegraffaf1c2b82007-04-20 14:34:48 -0500876
wdenk97d80fc2004-06-09 00:34:46 +0000877 adjust_link(dev);
878
wdenk42d1f032003-10-15 23:53:47 +0000879 /* Enable Transmit and Receive */
880 regs->maccfg1 |= (MACCFG1_RX_EN | MACCFG1_TX_EN);
881
882 /* Tell the DMA it is clear to go */
883 regs->dmactrl |= DMACTRL_INIT_SETTINGS;
884 regs->tstat = TSTAT_CLEAR_THALT;
Dan Wilson5c7ea642007-10-19 11:33:48 -0500885 regs->rstat = RSTAT_CLEAR_RHALT;
wdenk42d1f032003-10-15 23:53:47 +0000886 regs->dmactrl &= ~(DMACTRL_GRS | DMACTRL_GTS);
887}
888
wdenk9d46ea42005-03-14 23:56:42 +0000889/* This returns the status bits of the device. The return value
wdenk42d1f032003-10-15 23:53:47 +0000890 * is never checked, and this is what the 8260 driver did, so we
wdenk9d46ea42005-03-14 23:56:42 +0000891 * do the same. Presumably, this would be zero if there were no
Jon Loeliger89875e92006-10-10 17:03:43 -0500892 * errors
893 */
894static int tsec_send(struct eth_device *dev, volatile void *packet, int length)
wdenk42d1f032003-10-15 23:53:47 +0000895{
896 int i;
897 int result = 0;
wdenk97d80fc2004-06-09 00:34:46 +0000898 struct tsec_private *priv = (struct tsec_private *)dev->priv;
899 volatile tsec_t *regs = priv->regs;
wdenk42d1f032003-10-15 23:53:47 +0000900
901 /* Find an empty buffer descriptor */
Jon Loeliger89875e92006-10-10 17:03:43 -0500902 for (i = 0; rtx.txbd[txIdx].status & TXBD_READY; i++) {
wdenk42d1f032003-10-15 23:53:47 +0000903 if (i >= TOUT_LOOP) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500904 debug("%s: tsec: tx buffers full\n", dev->name);
wdenk42d1f032003-10-15 23:53:47 +0000905 return result;
906 }
907 }
908
Jon Loeliger89875e92006-10-10 17:03:43 -0500909 rtx.txbd[txIdx].bufPtr = (uint) packet;
wdenk42d1f032003-10-15 23:53:47 +0000910 rtx.txbd[txIdx].length = length;
Jon Loeliger89875e92006-10-10 17:03:43 -0500911 rtx.txbd[txIdx].status |=
912 (TXBD_READY | TXBD_LAST | TXBD_CRC | TXBD_INTERRUPT);
wdenk42d1f032003-10-15 23:53:47 +0000913
914 /* Tell the DMA to go */
915 regs->tstat = TSTAT_CLEAR_THALT;
916
917 /* Wait for buffer to be transmitted */
Jon Loeliger89875e92006-10-10 17:03:43 -0500918 for (i = 0; rtx.txbd[txIdx].status & TXBD_READY; i++) {
wdenk42d1f032003-10-15 23:53:47 +0000919 if (i >= TOUT_LOOP) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500920 debug("%s: tsec: tx error\n", dev->name);
wdenk42d1f032003-10-15 23:53:47 +0000921 return result;
922 }
923 }
924
925 txIdx = (txIdx + 1) % TX_BUF_CNT;
926 result = rtx.txbd[txIdx].status & TXBD_STATS;
927
928 return result;
929}
930
Jon Loeliger89875e92006-10-10 17:03:43 -0500931static int tsec_recv(struct eth_device *dev)
wdenk42d1f032003-10-15 23:53:47 +0000932{
933 int length;
wdenk97d80fc2004-06-09 00:34:46 +0000934 struct tsec_private *priv = (struct tsec_private *)dev->priv;
935 volatile tsec_t *regs = priv->regs;
wdenk42d1f032003-10-15 23:53:47 +0000936
Jon Loeliger89875e92006-10-10 17:03:43 -0500937 while (!(rtx.rxbd[rxIdx].status & RXBD_EMPTY)) {
wdenk42d1f032003-10-15 23:53:47 +0000938
939 length = rtx.rxbd[rxIdx].length;
940
941 /* Send the packet up if there were no errors */
942 if (!(rtx.rxbd[rxIdx].status & RXBD_STATS)) {
943 NetReceive(NetRxPackets[rxIdx], length - 4);
wdenk97d80fc2004-06-09 00:34:46 +0000944 } else {
945 printf("Got error %x\n",
Jon Loeliger89875e92006-10-10 17:03:43 -0500946 (rtx.rxbd[rxIdx].status & RXBD_STATS));
wdenk42d1f032003-10-15 23:53:47 +0000947 }
948
949 rtx.rxbd[rxIdx].length = 0;
950
951 /* Set the wrap bit if this is the last element in the list */
Jon Loeliger89875e92006-10-10 17:03:43 -0500952 rtx.rxbd[rxIdx].status =
953 RXBD_EMPTY | (((rxIdx + 1) == PKTBUFSRX) ? RXBD_WRAP : 0);
wdenk42d1f032003-10-15 23:53:47 +0000954
955 rxIdx = (rxIdx + 1) % PKTBUFSRX;
956 }
957
Jon Loeliger89875e92006-10-10 17:03:43 -0500958 if (regs->ievent & IEVENT_BSY) {
wdenk42d1f032003-10-15 23:53:47 +0000959 regs->ievent = IEVENT_BSY;
960 regs->rstat = RSTAT_CLEAR_RHALT;
961 }
962
963 return -1;
964
965}
966
wdenk97d80fc2004-06-09 00:34:46 +0000967/* Stop the interface */
Jon Loeliger89875e92006-10-10 17:03:43 -0500968static void tsec_halt(struct eth_device *dev)
wdenk42d1f032003-10-15 23:53:47 +0000969{
wdenk97d80fc2004-06-09 00:34:46 +0000970 struct tsec_private *priv = (struct tsec_private *)dev->priv;
971 volatile tsec_t *regs = priv->regs;
wdenk42d1f032003-10-15 23:53:47 +0000972
973 regs->dmactrl &= ~(DMACTRL_GRS | DMACTRL_GTS);
974 regs->dmactrl |= (DMACTRL_GRS | DMACTRL_GTS);
975
Jon Loeliger89875e92006-10-10 17:03:43 -0500976 while (!(regs->ievent & (IEVENT_GRSC | IEVENT_GTSC))) ;
wdenk42d1f032003-10-15 23:53:47 +0000977
978 regs->maccfg1 &= ~(MACCFG1_TX_EN | MACCFG1_RX_EN);
979
wdenk97d80fc2004-06-09 00:34:46 +0000980 /* Shut down the PHY, as needed */
Ben Warren4653f912006-10-26 14:38:25 -0400981 if(priv->phyinfo)
982 phy_run_commands(priv, priv->phyinfo->shutdown);
wdenk42d1f032003-10-15 23:53:47 +0000983}
wdenk7abf0c52004-04-18 21:45:42 +0000984
Andy Flemingc7e717e2007-08-03 04:05:25 -0500985struct phy_info phy_info_M88E1149S = {
Wolfgang Denk5728be32007-08-06 01:01:49 +0200986 0x1410ca,
987 "Marvell 88E1149S",
988 4,
989 (struct phy_cmd[]){ /* config */
990 /* Reset and configure the PHY */
991 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
992 {0x1d, 0x1f, NULL},
993 {0x1e, 0x200c, NULL},
994 {0x1d, 0x5, NULL},
995 {0x1e, 0x0, NULL},
996 {0x1e, 0x100, NULL},
997 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
998 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
999 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1000 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1001 {miim_end,}
1002 },
1003 (struct phy_cmd[]){ /* startup */
1004 /* Status is read once to clear old link state */
1005 {MIIM_STATUS, miim_read, NULL},
1006 /* Auto-negotiate */
1007 {MIIM_STATUS, miim_read, &mii_parse_sr},
1008 /* Read the status */
1009 {MIIM_88E1011_PHY_STATUS, miim_read,
1010 &mii_parse_88E1011_psr},
1011 {miim_end,}
1012 },
1013 (struct phy_cmd[]){ /* shutdown */
1014 {miim_end,}
1015 },
Andy Flemingc7e717e2007-08-03 04:05:25 -05001016};
1017
Paul Gortmaker91e25762007-01-16 11:38:14 -05001018/* The 5411 id is 0x206070, the 5421 is 0x2060e0 */
1019struct phy_info phy_info_BCM5461S = {
1020 0x02060c1, /* 5461 ID */
1021 "Broadcom BCM5461S",
1022 0, /* not clear to me what minor revisions we can shift away */
1023 (struct phy_cmd[]) { /* config */
1024 /* Reset and configure the PHY */
1025 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1026 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1027 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1028 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1029 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1030 {miim_end,}
1031 },
1032 (struct phy_cmd[]) { /* startup */
1033 /* Status is read once to clear old link state */
1034 {MIIM_STATUS, miim_read, NULL},
1035 /* Auto-negotiate */
1036 {MIIM_STATUS, miim_read, &mii_parse_sr},
1037 /* Read the status */
1038 {MIIM_BCM54xx_AUXSTATUS, miim_read, &mii_parse_BCM54xx_sr},
1039 {miim_end,}
1040 },
1041 (struct phy_cmd[]) { /* shutdown */
1042 {miim_end,}
1043 },
1044};
1045
Joe Hammanc3243cf2007-04-30 16:47:28 -05001046struct phy_info phy_info_BCM5464S = {
1047 0x02060b1, /* 5464 ID */
1048 "Broadcom BCM5464S",
1049 0, /* not clear to me what minor revisions we can shift away */
1050 (struct phy_cmd[]) { /* config */
1051 /* Reset and configure the PHY */
1052 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1053 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1054 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1055 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1056 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1057 {miim_end,}
1058 },
1059 (struct phy_cmd[]) { /* startup */
1060 /* Status is read once to clear old link state */
1061 {MIIM_STATUS, miim_read, NULL},
1062 /* Auto-negotiate */
1063 {MIIM_STATUS, miim_read, &mii_parse_sr},
1064 /* Read the status */
1065 {MIIM_BCM54xx_AUXSTATUS, miim_read, &mii_parse_BCM54xx_sr},
1066 {miim_end,}
1067 },
1068 (struct phy_cmd[]) { /* shutdown */
1069 {miim_end,}
1070 },
1071};
1072
wdenk97d80fc2004-06-09 00:34:46 +00001073struct phy_info phy_info_M88E1011S = {
1074 0x01410c6,
1075 "Marvell 88E1011S",
1076 4,
Jon Loeliger89875e92006-10-10 17:03:43 -05001077 (struct phy_cmd[]){ /* config */
1078 /* Reset and configure the PHY */
1079 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1080 {0x1d, 0x1f, NULL},
1081 {0x1e, 0x200c, NULL},
1082 {0x1d, 0x5, NULL},
1083 {0x1e, 0x0, NULL},
1084 {0x1e, 0x100, NULL},
1085 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1086 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1087 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1088 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1089 {miim_end,}
1090 },
1091 (struct phy_cmd[]){ /* startup */
1092 /* Status is read once to clear old link state */
1093 {MIIM_STATUS, miim_read, NULL},
1094 /* Auto-negotiate */
1095 {MIIM_STATUS, miim_read, &mii_parse_sr},
1096 /* Read the status */
1097 {MIIM_88E1011_PHY_STATUS, miim_read,
1098 &mii_parse_88E1011_psr},
1099 {miim_end,}
1100 },
1101 (struct phy_cmd[]){ /* shutdown */
1102 {miim_end,}
1103 },
wdenk97d80fc2004-06-09 00:34:46 +00001104};
1105
wdenk9d46ea42005-03-14 23:56:42 +00001106struct phy_info phy_info_M88E1111S = {
1107 0x01410cc,
1108 "Marvell 88E1111S",
1109 4,
Jon Loeliger89875e92006-10-10 17:03:43 -05001110 (struct phy_cmd[]){ /* config */
1111 /* Reset and configure the PHY */
1112 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
Dave Liu19580e62007-09-18 12:37:57 +08001113 {0x1b, 0x848f, &mii_m88e1111s_setmode},
Nick Spencef484dc72006-09-07 07:39:46 -07001114 {0x14, 0x0cd2, NULL}, /* Delay RGMII TX and RX */
Jon Loeliger89875e92006-10-10 17:03:43 -05001115 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1116 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1117 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1118 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1119 {miim_end,}
1120 },
1121 (struct phy_cmd[]){ /* startup */
1122 /* Status is read once to clear old link state */
1123 {MIIM_STATUS, miim_read, NULL},
1124 /* Auto-negotiate */
1125 {MIIM_STATUS, miim_read, &mii_parse_sr},
1126 /* Read the status */
1127 {MIIM_88E1011_PHY_STATUS, miim_read,
1128 &mii_parse_88E1011_psr},
1129 {miim_end,}
1130 },
1131 (struct phy_cmd[]){ /* shutdown */
1132 {miim_end,}
1133 },
wdenk9d46ea42005-03-14 23:56:42 +00001134};
1135
Ron Madrid290ef642008-05-23 15:37:05 -07001136struct phy_info phy_info_M88E1118 = {
1137 0x01410e1,
1138 "Marvell 88E1118",
1139 4,
1140 (struct phy_cmd[]){ /* config */
1141 /* Reset and configure the PHY */
1142 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1143 {0x16, 0x0002, NULL}, /* Change Page Number */
1144 {0x15, 0x1070, NULL}, /* Delay RGMII TX and RX */
Ron Madrid12a8b9d2009-01-28 16:17:21 -08001145 {0x16, 0x0003, NULL}, /* Change Page Number */
1146 {0x10, 0x021e, NULL}, /* Adjust LED control */
1147 {0x16, 0x0000, NULL}, /* Change Page Number */
Ron Madrid290ef642008-05-23 15:37:05 -07001148 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1149 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1150 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1151 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1152 {miim_end,}
1153 },
1154 (struct phy_cmd[]){ /* startup */
1155 {0x16, 0x0000, NULL}, /* Change Page Number */
1156 /* Status is read once to clear old link state */
1157 {MIIM_STATUS, miim_read, NULL},
1158 /* Auto-negotiate */
Ron Madrid12a8b9d2009-01-28 16:17:21 -08001159 {MIIM_STATUS, miim_read, &mii_parse_sr},
Ron Madrid290ef642008-05-23 15:37:05 -07001160 /* Read the status */
1161 {MIIM_88E1011_PHY_STATUS, miim_read,
1162 &mii_parse_88E1011_psr},
1163 {miim_end,}
1164 },
1165 (struct phy_cmd[]){ /* shutdown */
1166 {miim_end,}
1167 },
1168};
1169
Sergei Poselenovd23dc392008-06-06 15:52:44 +02001170/*
1171 * Since to access LED register we need do switch the page, we
1172 * do LED configuring in the miim_read-like function as follows
1173 */
1174uint mii_88E1121_set_led (uint mii_reg, struct tsec_private *priv)
1175{
1176 uint pg;
1177
1178 /* Switch the page to access the led register */
1179 pg = read_phy_reg(priv, MIIM_88E1121_PHY_PAGE);
1180 write_phy_reg(priv, MIIM_88E1121_PHY_PAGE, MIIM_88E1121_PHY_LED_PAGE);
1181
1182 /* Configure leds */
1183 write_phy_reg(priv, MIIM_88E1121_PHY_LED_CTRL,
1184 MIIM_88E1121_PHY_LED_DEF);
1185
1186 /* Restore the page pointer */
1187 write_phy_reg(priv, MIIM_88E1121_PHY_PAGE, pg);
1188 return 0;
1189}
1190
1191struct phy_info phy_info_M88E1121R = {
1192 0x01410cb,
1193 "Marvell 88E1121R",
1194 4,
1195 (struct phy_cmd[]){ /* config */
1196 /* Reset and configure the PHY */
1197 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1198 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1199 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1200 /* Configure leds */
1201 {MIIM_88E1121_PHY_LED_CTRL, miim_read,
1202 &mii_88E1121_set_led},
1203 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
Anatolij Gustschin23afaba2008-12-02 10:31:04 +01001204 /* Disable IRQs and de-assert interrupt */
1205 {MIIM_88E1121_PHY_IRQ_EN, 0, NULL},
1206 {MIIM_88E1121_PHY_IRQ_STATUS, miim_read, NULL},
Sergei Poselenovd23dc392008-06-06 15:52:44 +02001207 {miim_end,}
1208 },
1209 (struct phy_cmd[]){ /* startup */
1210 /* Status is read once to clear old link state */
1211 {MIIM_STATUS, miim_read, NULL},
1212 {MIIM_STATUS, miim_read, &mii_parse_sr},
1213 {MIIM_STATUS, miim_read, &mii_parse_link},
1214 {miim_end,}
1215 },
1216 (struct phy_cmd[]){ /* shutdown */
1217 {miim_end,}
1218 },
1219};
1220
Andy Fleming09f3e092006-09-13 10:34:18 -05001221static unsigned int m88e1145_setmode(uint mii_reg, struct tsec_private *priv)
1222{
Andy Fleming09f3e092006-09-13 10:34:18 -05001223 uint mii_data = read_phy_reg(priv, mii_reg);
1224
Andy Fleming09f3e092006-09-13 10:34:18 -05001225 /* Setting MIIM_88E1145_PHY_EXT_CR */
1226 if (priv->flags & TSEC_REDUCED)
1227 return mii_data |
Jon Loeliger89875e92006-10-10 17:03:43 -05001228 MIIM_M88E1145_RGMII_RX_DELAY | MIIM_M88E1145_RGMII_TX_DELAY;
Andy Fleming09f3e092006-09-13 10:34:18 -05001229 else
1230 return mii_data;
1231}
1232
1233static struct phy_info phy_info_M88E1145 = {
1234 0x01410cd,
1235 "Marvell 88E1145",
1236 4,
Jon Loeliger89875e92006-10-10 17:03:43 -05001237 (struct phy_cmd[]){ /* config */
Andy Fleming7507d562007-05-08 17:23:02 -05001238 /* Reset the PHY */
1239 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1240
Jon Loeliger89875e92006-10-10 17:03:43 -05001241 /* Errata E0, E1 */
1242 {29, 0x001b, NULL},
1243 {30, 0x418f, NULL},
1244 {29, 0x0016, NULL},
1245 {30, 0xa2da, NULL},
Andy Fleming09f3e092006-09-13 10:34:18 -05001246
Andy Fleming7507d562007-05-08 17:23:02 -05001247 /* Configure the PHY */
Jon Loeliger89875e92006-10-10 17:03:43 -05001248 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1249 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1250 {MIIM_88E1011_PHY_SCR, MIIM_88E1011_PHY_MDI_X_AUTO,
1251 NULL},
1252 {MIIM_88E1145_PHY_EXT_CR, 0, &m88e1145_setmode},
1253 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1254 {MIIM_CONTROL, MIIM_CONTROL_INIT, NULL},
1255 {miim_end,}
1256 },
1257 (struct phy_cmd[]){ /* startup */
1258 /* Status is read once to clear old link state */
1259 {MIIM_STATUS, miim_read, NULL},
1260 /* Auto-negotiate */
1261 {MIIM_STATUS, miim_read, &mii_parse_sr},
1262 {MIIM_88E1111_PHY_LED_CONTROL,
1263 MIIM_88E1111_PHY_LED_DIRECT, NULL},
1264 /* Read the Status */
1265 {MIIM_88E1011_PHY_STATUS, miim_read,
1266 &mii_parse_88E1011_psr},
1267 {miim_end,}
1268 },
1269 (struct phy_cmd[]){ /* shutdown */
1270 {miim_end,}
1271 },
Andy Fleming09f3e092006-09-13 10:34:18 -05001272};
1273
wdenk97d80fc2004-06-09 00:34:46 +00001274struct phy_info phy_info_cis8204 = {
1275 0x3f11,
1276 "Cicada Cis8204",
1277 6,
Jon Loeliger89875e92006-10-10 17:03:43 -05001278 (struct phy_cmd[]){ /* config */
1279 /* Override PHY config settings */
1280 {MIIM_CIS8201_AUX_CONSTAT,
1281 MIIM_CIS8201_AUXCONSTAT_INIT, NULL},
1282 /* Configure some basic stuff */
1283 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1284 {MIIM_CIS8204_SLED_CON, MIIM_CIS8204_SLEDCON_INIT,
1285 &mii_cis8204_fixled},
1286 {MIIM_CIS8204_EPHY_CON, MIIM_CIS8204_EPHYCON_INIT,
1287 &mii_cis8204_setmode},
1288 {miim_end,}
1289 },
1290 (struct phy_cmd[]){ /* startup */
1291 /* Read the Status (2x to make sure link is right) */
1292 {MIIM_STATUS, miim_read, NULL},
1293 /* Auto-negotiate */
1294 {MIIM_STATUS, miim_read, &mii_parse_sr},
1295 /* Read the status */
1296 {MIIM_CIS8201_AUX_CONSTAT, miim_read,
1297 &mii_parse_cis8201},
1298 {miim_end,}
1299 },
1300 (struct phy_cmd[]){ /* shutdown */
1301 {miim_end,}
1302 },
wdenk97d80fc2004-06-09 00:34:46 +00001303};
1304
1305/* Cicada 8201 */
1306struct phy_info phy_info_cis8201 = {
1307 0xfc41,
1308 "CIS8201",
1309 4,
Jon Loeliger89875e92006-10-10 17:03:43 -05001310 (struct phy_cmd[]){ /* config */
1311 /* Override PHY config settings */
1312 {MIIM_CIS8201_AUX_CONSTAT,
1313 MIIM_CIS8201_AUXCONSTAT_INIT, NULL},
1314 /* Set up the interface mode */
1315 {MIIM_CIS8201_EXT_CON1, MIIM_CIS8201_EXTCON1_INIT,
1316 NULL},
1317 /* Configure some basic stuff */
1318 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1319 {miim_end,}
1320 },
1321 (struct phy_cmd[]){ /* startup */
1322 /* Read the Status (2x to make sure link is right) */
1323 {MIIM_STATUS, miim_read, NULL},
1324 /* Auto-negotiate */
1325 {MIIM_STATUS, miim_read, &mii_parse_sr},
1326 /* Read the status */
1327 {MIIM_CIS8201_AUX_CONSTAT, miim_read,
1328 &mii_parse_cis8201},
1329 {miim_end,}
1330 },
1331 (struct phy_cmd[]){ /* shutdown */
1332 {miim_end,}
1333 },
wdenk97d80fc2004-06-09 00:34:46 +00001334};
Pieter Henning736323a2009-02-22 23:17:15 -08001335struct phy_info phy_info_VSC8211 = {
1336 0xfc4b,
1337 "Vitesse VSC8211",
1338 4,
1339 (struct phy_cmd[]) { /* config */
1340 /* Override PHY config settings */
1341 {MIIM_CIS8201_AUX_CONSTAT,
1342 MIIM_CIS8201_AUXCONSTAT_INIT, NULL},
1343 /* Set up the interface mode */
1344 {MIIM_CIS8201_EXT_CON1,
1345 MIIM_CIS8201_EXTCON1_INIT, NULL},
1346 /* Configure some basic stuff */
1347 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1348 {miim_end,}
1349 },
1350 (struct phy_cmd[]) { /* startup */
1351 /* Read the Status (2x to make sure link is right) */
1352 {MIIM_STATUS, miim_read, NULL},
1353 /* Auto-negotiate */
1354 {MIIM_STATUS, miim_read, &mii_parse_sr},
1355 /* Read the status */
1356 {MIIM_CIS8201_AUX_CONSTAT, miim_read,
1357 &mii_parse_cis8201},
1358 {miim_end,}
1359 },
1360 (struct phy_cmd[]) { /* shutdown */
1361 {miim_end,}
1362 },
1363};
Jon Loeligerdebb7352006-04-26 17:58:56 -05001364struct phy_info phy_info_VSC8244 = {
Jon Loeliger89875e92006-10-10 17:03:43 -05001365 0x3f1b,
1366 "Vitesse VSC8244",
1367 6,
1368 (struct phy_cmd[]){ /* config */
1369 /* Override PHY config settings */
1370 /* Configure some basic stuff */
1371 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1372 {miim_end,}
1373 },
1374 (struct phy_cmd[]){ /* startup */
1375 /* Read the Status (2x to make sure link is right) */
1376 {MIIM_STATUS, miim_read, NULL},
1377 /* Auto-negotiate */
1378 {MIIM_STATUS, miim_read, &mii_parse_sr},
1379 /* Read the status */
1380 {MIIM_VSC8244_AUX_CONSTAT, miim_read,
1381 &mii_parse_vsc8244},
1382 {miim_end,}
1383 },
1384 (struct phy_cmd[]){ /* shutdown */
1385 {miim_end,}
1386 },
Jon Loeligerdebb7352006-04-26 17:58:56 -05001387};
wdenk97d80fc2004-06-09 00:34:46 +00001388
Tor Krill2d934ea2008-03-28 15:29:45 +01001389struct phy_info phy_info_VSC8601 = {
1390 0x00007042,
1391 "Vitesse VSC8601",
1392 4,
1393 (struct phy_cmd[]){ /* config */
1394 /* Override PHY config settings */
1395 /* Configure some basic stuff */
1396 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001397#ifdef CONFIG_SYS_VSC8601_SKEWFIX
Tor Krill2d934ea2008-03-28 15:29:45 +01001398 {MIIM_VSC8601_EPHY_CON,MIIM_VSC8601_EPHY_CON_INIT_SKEW,NULL},
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001399#if defined(CONFIG_SYS_VSC8601_SKEW_TX) && defined(CONFIG_SYS_VSC8601_SKEW_RX)
Andre Schwarz9acde122008-04-29 19:18:32 +02001400 {MIIM_EXT_PAGE_ACCESS,1,NULL},
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001401#define VSC8101_SKEW (CONFIG_SYS_VSC8601_SKEW_TX<<14)|(CONFIG_SYS_VSC8601_SKEW_RX<<12)
Andre Schwarz9acde122008-04-29 19:18:32 +02001402 {MIIM_VSC8601_SKEW_CTRL,VSC8101_SKEW,NULL},
1403 {MIIM_EXT_PAGE_ACCESS,0,NULL},
1404#endif
Tor Krill2d934ea2008-03-28 15:29:45 +01001405#endif
Andre Schwarzc9d6b692008-08-19 16:07:03 +02001406 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1407 {MIIM_CONTROL, MIIM_CONTROL_RESTART, &mii_cr_init},
Tor Krill2d934ea2008-03-28 15:29:45 +01001408 {miim_end,}
1409 },
1410 (struct phy_cmd[]){ /* startup */
1411 /* Read the Status (2x to make sure link is right) */
1412 {MIIM_STATUS, miim_read, NULL},
1413 /* Auto-negotiate */
1414 {MIIM_STATUS, miim_read, &mii_parse_sr},
1415 /* Read the status */
1416 {MIIM_VSC8244_AUX_CONSTAT, miim_read,
1417 &mii_parse_vsc8244},
1418 {miim_end,}
1419 },
1420 (struct phy_cmd[]){ /* shutdown */
1421 {miim_end,}
1422 },
1423};
1424
1425
wdenk97d80fc2004-06-09 00:34:46 +00001426struct phy_info phy_info_dm9161 = {
1427 0x0181b88,
1428 "Davicom DM9161E",
1429 4,
Jon Loeliger89875e92006-10-10 17:03:43 -05001430 (struct phy_cmd[]){ /* config */
1431 {MIIM_CONTROL, MIIM_DM9161_CR_STOP, NULL},
1432 /* Do not bypass the scrambler/descrambler */
1433 {MIIM_DM9161_SCR, MIIM_DM9161_SCR_INIT, NULL},
1434 /* Clear 10BTCSR to default */
1435 {MIIM_DM9161_10BTCSR, MIIM_DM9161_10BTCSR_INIT,
1436 NULL},
1437 /* Configure some basic stuff */
1438 {MIIM_CONTROL, MIIM_CR_INIT, NULL},
1439 /* Restart Auto Negotiation */
1440 {MIIM_CONTROL, MIIM_DM9161_CR_RSTAN, NULL},
1441 {miim_end,}
1442 },
1443 (struct phy_cmd[]){ /* startup */
1444 /* Status is read once to clear old link state */
1445 {MIIM_STATUS, miim_read, NULL},
1446 /* Auto-negotiate */
1447 {MIIM_STATUS, miim_read, &mii_parse_sr},
1448 /* Read the status */
1449 {MIIM_DM9161_SCSR, miim_read,
1450 &mii_parse_dm9161_scsr},
1451 {miim_end,}
1452 },
1453 (struct phy_cmd[]){ /* shutdown */
1454 {miim_end,}
1455 },
wdenk97d80fc2004-06-09 00:34:46 +00001456};
David Updegraffaf1c2b82007-04-20 14:34:48 -05001457/* a generic flavor. */
1458struct phy_info phy_info_generic = {
1459 0,
1460 "Unknown/Generic PHY",
1461 32,
1462 (struct phy_cmd[]) { /* config */
1463 {PHY_BMCR, PHY_BMCR_RESET, NULL},
1464 {PHY_BMCR, PHY_BMCR_AUTON|PHY_BMCR_RST_NEG, NULL},
1465 {miim_end,}
1466 },
1467 (struct phy_cmd[]) { /* startup */
1468 {PHY_BMSR, miim_read, NULL},
1469 {PHY_BMSR, miim_read, &mii_parse_sr},
1470 {PHY_BMSR, miim_read, &mii_parse_link},
1471 {miim_end,}
1472 },
1473 (struct phy_cmd[]) { /* shutdown */
1474 {miim_end,}
1475 }
1476};
1477
wdenk97d80fc2004-06-09 00:34:46 +00001478
wdenk3dd7f0f2005-04-04 23:43:44 +00001479uint mii_parse_lxt971_sr2(uint mii_reg, struct tsec_private *priv)
1480{
wdenk3c2b3d42005-04-05 23:32:21 +00001481 unsigned int speed;
1482 if (priv->link) {
1483 speed = mii_reg & MIIM_LXT971_SR2_SPEED_MASK;
wdenk3dd7f0f2005-04-04 23:43:44 +00001484
wdenk3c2b3d42005-04-05 23:32:21 +00001485 switch (speed) {
1486 case MIIM_LXT971_SR2_10HDX:
1487 priv->speed = 10;
1488 priv->duplexity = 0;
1489 break;
1490 case MIIM_LXT971_SR2_10FDX:
1491 priv->speed = 10;
1492 priv->duplexity = 1;
1493 break;
1494 case MIIM_LXT971_SR2_100HDX:
1495 priv->speed = 100;
1496 priv->duplexity = 0;
urwithsughosh@gmail.comcd2d1602007-09-10 14:54:56 -04001497 break;
wdenk3c2b3d42005-04-05 23:32:21 +00001498 default:
1499 priv->speed = 100;
1500 priv->duplexity = 1;
wdenk3c2b3d42005-04-05 23:32:21 +00001501 }
1502 } else {
1503 priv->speed = 0;
1504 priv->duplexity = 0;
1505 }
wdenk3dd7f0f2005-04-04 23:43:44 +00001506
wdenk3c2b3d42005-04-05 23:32:21 +00001507 return 0;
wdenk3dd7f0f2005-04-04 23:43:44 +00001508}
1509
wdenk9d46ea42005-03-14 23:56:42 +00001510static struct phy_info phy_info_lxt971 = {
1511 0x0001378e,
1512 "LXT971",
1513 4,
Jon Loeliger89875e92006-10-10 17:03:43 -05001514 (struct phy_cmd[]){ /* config */
1515 {MIIM_CR, MIIM_CR_INIT, mii_cr_init}, /* autonegotiate */
1516 {miim_end,}
1517 },
1518 (struct phy_cmd[]){ /* startup - enable interrupts */
1519 /* { 0x12, 0x00f2, NULL }, */
1520 {MIIM_STATUS, miim_read, NULL},
1521 {MIIM_STATUS, miim_read, &mii_parse_sr},
1522 {MIIM_LXT971_SR2, miim_read, &mii_parse_lxt971_sr2},
1523 {miim_end,}
1524 },
1525 (struct phy_cmd[]){ /* shutdown - disable interrupts */
1526 {miim_end,}
1527 },
wdenk9d46ea42005-03-14 23:56:42 +00001528};
1529
Wolfgang Denkbe5048f2006-03-12 22:50:55 +01001530/* Parse the DP83865's link and auto-neg status register for speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -05001531 * information
1532 */
Wolfgang Denkbe5048f2006-03-12 22:50:55 +01001533uint mii_parse_dp83865_lanr(uint mii_reg, struct tsec_private *priv)
1534{
1535 switch (mii_reg & MIIM_DP83865_SPD_MASK) {
1536
1537 case MIIM_DP83865_SPD_1000:
1538 priv->speed = 1000;
1539 break;
1540
1541 case MIIM_DP83865_SPD_100:
1542 priv->speed = 100;
1543 break;
1544
1545 default:
1546 priv->speed = 10;
1547 break;
1548
1549 }
1550
1551 if (mii_reg & MIIM_DP83865_DPX_FULL)
1552 priv->duplexity = 1;
1553 else
1554 priv->duplexity = 0;
1555
1556 return 0;
1557}
1558
1559struct phy_info phy_info_dp83865 = {
1560 0x20005c7,
1561 "NatSemi DP83865",
1562 4,
Jon Loeliger89875e92006-10-10 17:03:43 -05001563 (struct phy_cmd[]){ /* config */
1564 {MIIM_CONTROL, MIIM_DP83865_CR_INIT, NULL},
1565 {miim_end,}
1566 },
1567 (struct phy_cmd[]){ /* startup */
1568 /* Status is read once to clear old link state */
1569 {MIIM_STATUS, miim_read, NULL},
1570 /* Auto-negotiate */
1571 {MIIM_STATUS, miim_read, &mii_parse_sr},
1572 /* Read the link and auto-neg status */
1573 {MIIM_DP83865_LANR, miim_read,
1574 &mii_parse_dp83865_lanr},
1575 {miim_end,}
1576 },
1577 (struct phy_cmd[]){ /* shutdown */
1578 {miim_end,}
1579 },
Wolfgang Denkbe5048f2006-03-12 22:50:55 +01001580};
1581
Dave Liu18ee3202008-01-11 18:45:28 +08001582struct phy_info phy_info_rtl8211b = {
1583 0x001cc91,
1584 "RealTek RTL8211B",
1585 4,
1586 (struct phy_cmd[]){ /* config */
1587 /* Reset and configure the PHY */
1588 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1589 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1590 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1591 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1592 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1593 {miim_end,}
1594 },
1595 (struct phy_cmd[]){ /* startup */
1596 /* Status is read once to clear old link state */
1597 {MIIM_STATUS, miim_read, NULL},
1598 /* Auto-negotiate */
1599 {MIIM_STATUS, miim_read, &mii_parse_sr},
1600 /* Read the status */
1601 {MIIM_RTL8211B_PHY_STATUS, miim_read, &mii_parse_RTL8211B_sr},
1602 {miim_end,}
1603 },
1604 (struct phy_cmd[]){ /* shutdown */
1605 {miim_end,}
1606 },
1607};
1608
wdenk97d80fc2004-06-09 00:34:46 +00001609struct phy_info *phy_info[] = {
wdenk97d80fc2004-06-09 00:34:46 +00001610 &phy_info_cis8204,
Timur Tabi2ad6b512006-10-31 18:44:42 -06001611 &phy_info_cis8201,
Paul Gortmaker91e25762007-01-16 11:38:14 -05001612 &phy_info_BCM5461S,
Joe Hammanc3243cf2007-04-30 16:47:28 -05001613 &phy_info_BCM5464S,
wdenk97d80fc2004-06-09 00:34:46 +00001614 &phy_info_M88E1011S,
wdenk9d46ea42005-03-14 23:56:42 +00001615 &phy_info_M88E1111S,
Ron Madrid290ef642008-05-23 15:37:05 -07001616 &phy_info_M88E1118,
Sergei Poselenovd23dc392008-06-06 15:52:44 +02001617 &phy_info_M88E1121R,
Andy Fleming09f3e092006-09-13 10:34:18 -05001618 &phy_info_M88E1145,
Wolfgang Denk5728be32007-08-06 01:01:49 +02001619 &phy_info_M88E1149S,
wdenk97d80fc2004-06-09 00:34:46 +00001620 &phy_info_dm9161,
wdenk9d46ea42005-03-14 23:56:42 +00001621 &phy_info_lxt971,
Pieter Henning736323a2009-02-22 23:17:15 -08001622 &phy_info_VSC8211,
Jon Loeligerdebb7352006-04-26 17:58:56 -05001623 &phy_info_VSC8244,
Tor Krill2d934ea2008-03-28 15:29:45 +01001624 &phy_info_VSC8601,
Wolfgang Denkbe5048f2006-03-12 22:50:55 +01001625 &phy_info_dp83865,
Dave Liu18ee3202008-01-11 18:45:28 +08001626 &phy_info_rtl8211b,
Paul Gortmaker04523522009-03-09 18:07:53 -05001627 &phy_info_generic, /* must be last; has ID 0 and 32 bit mask */
wdenk97d80fc2004-06-09 00:34:46 +00001628 NULL
1629};
1630
wdenk97d80fc2004-06-09 00:34:46 +00001631/* Grab the identifier of the device's PHY, and search through
wdenk9d46ea42005-03-14 23:56:42 +00001632 * all of the known PHYs to see if one matches. If so, return
Jon Loeliger89875e92006-10-10 17:03:43 -05001633 * it, if not, return NULL
1634 */
1635struct phy_info *get_phy_info(struct eth_device *dev)
wdenk97d80fc2004-06-09 00:34:46 +00001636{
1637 struct tsec_private *priv = (struct tsec_private *)dev->priv;
1638 uint phy_reg, phy_ID;
1639 int i;
1640 struct phy_info *theInfo = NULL;
1641
1642 /* Grab the bits from PHYIR1, and put them in the upper half */
1643 phy_reg = read_phy_reg(priv, MIIM_PHYIR1);
1644 phy_ID = (phy_reg & 0xffff) << 16;
1645
1646 /* Grab the bits from PHYIR2, and put them in the lower half */
1647 phy_reg = read_phy_reg(priv, MIIM_PHYIR2);
1648 phy_ID |= (phy_reg & 0xffff);
1649
1650 /* loop through all the known PHY types, and find one that */
1651 /* matches the ID we read from the PHY. */
Jon Loeliger89875e92006-10-10 17:03:43 -05001652 for (i = 0; phy_info[i]; i++) {
Andy Fleming2a3cee42007-05-09 00:54:20 -05001653 if (phy_info[i]->id == (phy_ID >> phy_info[i]->shift)) {
wdenk97d80fc2004-06-09 00:34:46 +00001654 theInfo = phy_info[i];
Andy Fleming2a3cee42007-05-09 00:54:20 -05001655 break;
1656 }
wdenk97d80fc2004-06-09 00:34:46 +00001657 }
1658
Paul Gortmaker04523522009-03-09 18:07:53 -05001659 if (theInfo == &phy_info_generic) {
1660 printf("%s: No support for PHY id %x; assuming generic\n", dev->name, phy_ID);
wdenk97d80fc2004-06-09 00:34:46 +00001661 } else {
Stefan Roese5810dc32005-09-21 18:20:22 +02001662 debug("%s: PHY is %s (%x)\n", dev->name, theInfo->name, phy_ID);
wdenk97d80fc2004-06-09 00:34:46 +00001663 }
1664
1665 return theInfo;
1666}
1667
wdenk97d80fc2004-06-09 00:34:46 +00001668/* Execute the given series of commands on the given device's
Jon Loeliger89875e92006-10-10 17:03:43 -05001669 * PHY, running functions as necessary
1670 */
wdenk97d80fc2004-06-09 00:34:46 +00001671void phy_run_commands(struct tsec_private *priv, struct phy_cmd *cmd)
1672{
1673 int i;
1674 uint result;
1675 volatile tsec_t *phyregs = priv->phyregs;
1676
1677 phyregs->miimcfg = MIIMCFG_RESET;
1678
1679 phyregs->miimcfg = MIIMCFG_INIT_VALUE;
1680
Jon Loeliger89875e92006-10-10 17:03:43 -05001681 while (phyregs->miimind & MIIMIND_BUSY) ;
wdenk97d80fc2004-06-09 00:34:46 +00001682
Jon Loeliger89875e92006-10-10 17:03:43 -05001683 for (i = 0; cmd->mii_reg != miim_end; i++) {
1684 if (cmd->mii_data == miim_read) {
wdenk97d80fc2004-06-09 00:34:46 +00001685 result = read_phy_reg(priv, cmd->mii_reg);
1686
Jon Loeliger89875e92006-10-10 17:03:43 -05001687 if (cmd->funct != NULL)
1688 (*(cmd->funct)) (result, priv);
wdenk97d80fc2004-06-09 00:34:46 +00001689
1690 } else {
Jon Loeliger89875e92006-10-10 17:03:43 -05001691 if (cmd->funct != NULL)
1692 result = (*(cmd->funct)) (cmd->mii_reg, priv);
wdenk97d80fc2004-06-09 00:34:46 +00001693 else
1694 result = cmd->mii_data;
1695
1696 write_phy_reg(priv, cmd->mii_reg, result);
1697
1698 }
1699 cmd++;
1700 }
1701}
1702
wdenk97d80fc2004-06-09 00:34:46 +00001703/* Relocate the function pointers in the phy cmd lists */
1704static void relocate_cmds(void)
1705{
1706 struct phy_cmd **cmdlistptr;
1707 struct phy_cmd *cmd;
Jon Loeliger89875e92006-10-10 17:03:43 -05001708 int i, j, k;
wdenk97d80fc2004-06-09 00:34:46 +00001709
Jon Loeliger89875e92006-10-10 17:03:43 -05001710 for (i = 0; phy_info[i]; i++) {
wdenk97d80fc2004-06-09 00:34:46 +00001711 /* First thing's first: relocate the pointers to the
1712 * PHY command structures (the structs were done) */
Jon Loeliger89875e92006-10-10 17:03:43 -05001713 phy_info[i] = (struct phy_info *)((uint) phy_info[i]
1714 + gd->reloc_off);
wdenk97d80fc2004-06-09 00:34:46 +00001715 phy_info[i]->name += gd->reloc_off;
1716 phy_info[i]->config =
Jon Loeliger89875e92006-10-10 17:03:43 -05001717 (struct phy_cmd *)((uint) phy_info[i]->config
1718 + gd->reloc_off);
wdenk97d80fc2004-06-09 00:34:46 +00001719 phy_info[i]->startup =
Jon Loeliger89875e92006-10-10 17:03:43 -05001720 (struct phy_cmd *)((uint) phy_info[i]->startup
1721 + gd->reloc_off);
wdenk97d80fc2004-06-09 00:34:46 +00001722 phy_info[i]->shutdown =
Jon Loeliger89875e92006-10-10 17:03:43 -05001723 (struct phy_cmd *)((uint) phy_info[i]->shutdown
1724 + gd->reloc_off);
wdenk97d80fc2004-06-09 00:34:46 +00001725
1726 cmdlistptr = &phy_info[i]->config;
Jon Loeliger89875e92006-10-10 17:03:43 -05001727 j = 0;
1728 for (; cmdlistptr <= &phy_info[i]->shutdown; cmdlistptr++) {
1729 k = 0;
1730 for (cmd = *cmdlistptr;
1731 cmd->mii_reg != miim_end;
1732 cmd++) {
wdenk97d80fc2004-06-09 00:34:46 +00001733 /* Only relocate non-NULL pointers */
Jon Loeliger89875e92006-10-10 17:03:43 -05001734 if (cmd->funct)
wdenk97d80fc2004-06-09 00:34:46 +00001735 cmd->funct += gd->reloc_off;
1736
1737 k++;
1738 }
1739 j++;
1740 }
1741 }
1742
1743 relocated = 1;
1744}
1745
Jon Loeligercb51c0b2007-07-09 17:39:42 -05001746#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) \
Marian Balakowicz63ff0042005-10-28 22:30:33 +02001747 && !defined(BITBANGMII)
wdenk97d80fc2004-06-09 00:34:46 +00001748
wdenk7abf0c52004-04-18 21:45:42 +00001749/*
1750 * Read a MII PHY register.
1751 *
1752 * Returns:
wdenk97d80fc2004-06-09 00:34:46 +00001753 * 0 on success
wdenk7abf0c52004-04-18 21:45:42 +00001754 */
Marian Balakowicz63ff0042005-10-28 22:30:33 +02001755static int tsec_miiphy_read(char *devname, unsigned char addr,
Jon Loeliger89875e92006-10-10 17:03:43 -05001756 unsigned char reg, unsigned short *value)
wdenk7abf0c52004-04-18 21:45:42 +00001757{
wdenk97d80fc2004-06-09 00:34:46 +00001758 unsigned short ret;
michael.firth@bt.com55fe7c52008-01-16 11:40:51 +00001759 struct tsec_private *priv = privlist[0];
wdenk7abf0c52004-04-18 21:45:42 +00001760
Jon Loeliger89875e92006-10-10 17:03:43 -05001761 if (NULL == priv) {
wdenk97d80fc2004-06-09 00:34:46 +00001762 printf("Can't read PHY at address %d\n", addr);
1763 return -1;
1764 }
1765
Andy Fleming2abe3612008-08-31 16:33:27 -05001766 ret = (unsigned short)tsec_local_mdio_read(priv->phyregs, addr, reg);
wdenk97d80fc2004-06-09 00:34:46 +00001767 *value = ret;
wdenk7abf0c52004-04-18 21:45:42 +00001768
1769 return 0;
1770}
1771
1772/*
1773 * Write a MII PHY register.
1774 *
1775 * Returns:
wdenk97d80fc2004-06-09 00:34:46 +00001776 * 0 on success
wdenk7abf0c52004-04-18 21:45:42 +00001777 */
Marian Balakowicz63ff0042005-10-28 22:30:33 +02001778static int tsec_miiphy_write(char *devname, unsigned char addr,
Jon Loeliger89875e92006-10-10 17:03:43 -05001779 unsigned char reg, unsigned short value)
wdenk7abf0c52004-04-18 21:45:42 +00001780{
michael.firth@bt.com55fe7c52008-01-16 11:40:51 +00001781 struct tsec_private *priv = privlist[0];
wdenk7abf0c52004-04-18 21:45:42 +00001782
Jon Loeliger89875e92006-10-10 17:03:43 -05001783 if (NULL == priv) {
wdenk97d80fc2004-06-09 00:34:46 +00001784 printf("Can't write PHY at address %d\n", addr);
1785 return -1;
1786 }
1787
Andy Fleming2abe3612008-08-31 16:33:27 -05001788 tsec_local_mdio_write(priv->phyregs, addr, reg, value);
wdenk7abf0c52004-04-18 21:45:42 +00001789
1790 return 0;
1791}
wdenk97d80fc2004-06-09 00:34:46 +00001792
Jon Loeligercb51c0b2007-07-09 17:39:42 -05001793#endif
wdenk97d80fc2004-06-09 00:34:46 +00001794
David Updegraff53a5c422007-06-11 10:41:07 -05001795#ifdef CONFIG_MCAST_TFTP
1796
1797/* CREDITS: linux gianfar driver, slightly adjusted... thanx. */
1798
1799/* Set the appropriate hash bit for the given addr */
1800
1801/* The algorithm works like so:
1802 * 1) Take the Destination Address (ie the multicast address), and
1803 * do a CRC on it (little endian), and reverse the bits of the
1804 * result.
1805 * 2) Use the 8 most significant bits as a hash into a 256-entry
1806 * table. The table is controlled through 8 32-bit registers:
1807 * gaddr0-7. gaddr0's MSB is entry 0, and gaddr7's LSB is
1808 * gaddr7. This means that the 3 most significant bits in the
1809 * hash index which gaddr register to use, and the 5 other bits
1810 * indicate which bit (assuming an IBM numbering scheme, which
1811 * for PowerPC (tm) is usually the case) in the tregister holds
1812 * the entry. */
1813static int
1814tsec_mcast_addr (struct eth_device *dev, u8 mcast_mac, u8 set)
1815{
1816 struct tsec_private *priv = privlist[1];
1817 volatile tsec_t *regs = priv->regs;
1818 volatile u32 *reg_array, value;
1819 u8 result, whichbit, whichreg;
1820
1821 result = (u8)((ether_crc(MAC_ADDR_LEN,mcast_mac) >> 24) & 0xff);
1822 whichbit = result & 0x1f; /* the 5 LSB = which bit to set */
1823 whichreg = result >> 5; /* the 3 MSB = which reg to set it in */
1824 value = (1 << (31-whichbit));
1825
1826 reg_array = &(regs->hash.gaddr0);
1827
1828 if (set) {
1829 reg_array[whichreg] |= value;
1830 } else {
1831 reg_array[whichreg] &= ~value;
1832 }
1833 return 0;
1834}
1835#endif /* Multicast TFTP ? */