blob: 108cebd8797321b272e350a0ba76e95fe79ade66 [file] [log] [blame]
wdenk9c53f402003-10-15 23:53:47 +00001/*
wdenka445ddf2004-06-09 00:34:46 +00002 * Freescale Three Speed Ethernet Controller driver
wdenk9c53f402003-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 Fleming2fffa052007-04-23 02:24:28 -05008 * Copyright 2004, 2007 Freescale Semiconductor, Inc.
wdenk9c53f402003-10-15 23:53:47 +00009 * (C) Copyright 2003, Motorola, Inc.
wdenk9c53f402003-10-15 23:53:47 +000010 * author Andy Fleming
11 *
12 */
13
14#include <config.h>
wdenk9c53f402003-10-15 23:53:47 +000015#include <common.h>
16#include <malloc.h>
17#include <net.h>
18#include <command.h>
19
20#if defined(CONFIG_TSEC_ENET)
21#include "tsec.h"
Marian Balakowiczaab8c492005-10-28 22:30:33 +020022#include "miiphy.h"
wdenk9c53f402003-10-15 23:53:47 +000023
Wolfgang Denk6405a152006-03-31 18:32:53 +020024DECLARE_GLOBAL_DATA_PTR;
25
Marian Balakowiczaab8c492005-10-28 22:30:33 +020026#define TX_BUF_CNT 2
wdenk9c53f402003-10-15 23:53:47 +000027
Jon Loeligerb7ced082006-10-10 17:03:43 -050028static uint rxIdx; /* index of the current RX buffer */
29static uint txIdx; /* index of the current TX buffer */
wdenk9c53f402003-10-15 23:53:47 +000030
31typedef volatile struct rtxbd {
32 txbd8_t txbd[TX_BUF_CNT];
33 rxbd8_t rxbd[PKTBUFSRX];
Jon Loeligerb7ced082006-10-10 17:03:43 -050034} RTXBD;
wdenk9c53f402003-10-15 23:53:47 +000035
wdenka445ddf2004-06-09 00:34:46 +000036struct tsec_info_struct {
37 unsigned int phyaddr;
Jon Loeliger77a4f6e2005-07-25 14:05:07 -050038 u32 flags;
wdenka445ddf2004-06-09 00:34:46 +000039 unsigned int phyregidx;
40};
41
wdenka445ddf2004-06-09 00:34:46 +000042/* The tsec_info structure contains 3 values which the
43 * driver uses to determine how to operate a given ethernet
Andy Fleming239e75f2006-09-13 10:34:18 -050044 * device. The information needed is:
wdenka445ddf2004-06-09 00:34:46 +000045 * phyaddr - The address of the PHY which is attached to
wdenkbfad55d2005-03-14 23:56:42 +000046 * the given device.
wdenka445ddf2004-06-09 00:34:46 +000047 *
Jon Loeliger77a4f6e2005-07-25 14:05:07 -050048 * flags - This variable indicates whether the device
49 * supports gigabit speed ethernet, and whether it should be
50 * in reduced mode.
wdenka445ddf2004-06-09 00:34:46 +000051 *
52 * phyregidx - This variable specifies which ethernet device
wdenkbfad55d2005-03-14 23:56:42 +000053 * controls the MII Management registers which are connected
Andy Fleming239e75f2006-09-13 10:34:18 -050054 * to the PHY. For now, only TSEC1 (index 0) has
wdenkbfad55d2005-03-14 23:56:42 +000055 * access to the PHYs, so all of the entries have "0".
wdenka445ddf2004-06-09 00:34:46 +000056 *
57 * The values specified in the table are taken from the board's
58 * config file in include/configs/. When implementing a new
59 * board with ethernet capability, it is necessary to define:
Andy Fleming239e75f2006-09-13 10:34:18 -050060 * TSECn_PHY_ADDR
61 * TSECn_PHYIDX
wdenka445ddf2004-06-09 00:34:46 +000062 *
Andy Fleming239e75f2006-09-13 10:34:18 -050063 * for n = 1,2,3, etc. And for FEC:
wdenka445ddf2004-06-09 00:34:46 +000064 * FEC_PHY_ADDR
65 * FEC_PHYIDX
66 */
67static struct tsec_info_struct tsec_info[] = {
Andy Fleming09b88df2007-08-15 20:03:25 -050068#ifdef CONFIG_TSEC1
69 {TSEC1_PHY_ADDR, TSEC1_FLAGS, TSEC1_PHYIDX},
Zach Sadeckif5dd2992007-07-31 12:27:25 -050070#else
Jon Loeligerb7ced082006-10-10 17:03:43 -050071 {0, 0, 0},
wdenka445ddf2004-06-09 00:34:46 +000072#endif
Andy Fleming09b88df2007-08-15 20:03:25 -050073#ifdef CONFIG_TSEC2
74 {TSEC2_PHY_ADDR, TSEC2_FLAGS, TSEC2_PHYIDX},
Zach Sadeckif5dd2992007-07-31 12:27:25 -050075#else
Jon Loeligerb7ced082006-10-10 17:03:43 -050076 {0, 0, 0},
wdenka445ddf2004-06-09 00:34:46 +000077#endif
78#ifdef CONFIG_MPC85XX_FEC
Andy Fleming09b88df2007-08-15 20:03:25 -050079 {FEC_PHY_ADDR, FEC_FLAGS, FEC_PHYIDX},
wdenkbfad55d2005-03-14 23:56:42 +000080#else
Andy Fleming09b88df2007-08-15 20:03:25 -050081#ifdef CONFIG_TSEC3
82 {TSEC3_PHY_ADDR, TSEC3_FLAGS, TSEC3_PHYIDX},
Jon Loeliger5c8aa972006-04-26 17:58:56 -050083#else
Jon Loeligerb7ced082006-10-10 17:03:43 -050084 {0, 0, 0},
Jon Loeliger5c8aa972006-04-26 17:58:56 -050085#endif
Andy Fleming09b88df2007-08-15 20:03:25 -050086#ifdef CONFIG_TSEC4
87 {TSEC4_PHY_ADDR, TSEC4_FLAGS, TSEC4_PHYIDX},
Jon Loeliger5c8aa972006-04-26 17:58:56 -050088#else
Jon Loeligerb7ced082006-10-10 17:03:43 -050089 {0, 0, 0},
Andy Fleming09b88df2007-08-15 20:03:25 -050090#endif /* CONFIG_TSEC4 */
91#endif /* CONFIG_MPC85XX_FEC */
wdenka445ddf2004-06-09 00:34:46 +000092};
93
Jon Loeliger77a4f6e2005-07-25 14:05:07 -050094#define MAXCONTROLLERS (4)
wdenka445ddf2004-06-09 00:34:46 +000095
96static int relocated = 0;
97
98static struct tsec_private *privlist[MAXCONTROLLERS];
99
wdenk9c53f402003-10-15 23:53:47 +0000100#ifdef __GNUC__
101static RTXBD rtx __attribute__ ((aligned(8)));
102#else
103#error "rtx must be 64-bit aligned"
104#endif
105
Jon Loeligerb7ced082006-10-10 17:03:43 -0500106static int tsec_send(struct eth_device *dev,
107 volatile void *packet, int length);
108static int tsec_recv(struct eth_device *dev);
109static int tsec_init(struct eth_device *dev, bd_t * bd);
110static void tsec_halt(struct eth_device *dev);
111static void init_registers(volatile tsec_t * regs);
wdenka445ddf2004-06-09 00:34:46 +0000112static void startup_tsec(struct eth_device *dev);
113static int init_phy(struct eth_device *dev);
114void write_phy_reg(struct tsec_private *priv, uint regnum, uint value);
115uint read_phy_reg(struct tsec_private *priv, uint regnum);
Jon Loeligerb7ced082006-10-10 17:03:43 -0500116struct phy_info *get_phy_info(struct eth_device *dev);
wdenka445ddf2004-06-09 00:34:46 +0000117void phy_run_commands(struct tsec_private *priv, struct phy_cmd *cmd);
118static void adjust_link(struct eth_device *dev);
119static void relocate_cmds(void);
Wolfgang Denk92254112007-11-18 16:36:27 +0100120#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) \
121 && !defined(BITBANGMII)
Marian Balakowiczaab8c492005-10-28 22:30:33 +0200122static int tsec_miiphy_write(char *devname, unsigned char addr,
Jon Loeligerb7ced082006-10-10 17:03:43 -0500123 unsigned char reg, unsigned short value);
Marian Balakowiczaab8c492005-10-28 22:30:33 +0200124static int tsec_miiphy_read(char *devname, unsigned char addr,
Jon Loeligerb7ced082006-10-10 17:03:43 -0500125 unsigned char reg, unsigned short *value);
Wolfgang Denk92254112007-11-18 16:36:27 +0100126#endif
David Updegraff7280da72007-06-11 10:41:07 -0500127#ifdef CONFIG_MCAST_TFTP
128static int tsec_mcast_addr (struct eth_device *dev, u8 mcast_mac, u8 set);
129#endif
wdenk78924a72004-04-18 21:45:42 +0000130
wdenka445ddf2004-06-09 00:34:46 +0000131/* Initialize device structure. Returns success if PHY
132 * initialization succeeded (i.e. if it recognizes the PHY)
133 */
Jon Loeligerb7ced082006-10-10 17:03:43 -0500134int tsec_initialize(bd_t * bis, int index, char *devname)
wdenk9c53f402003-10-15 23:53:47 +0000135{
Jon Loeligerb7ced082006-10-10 17:03:43 -0500136 struct eth_device *dev;
wdenk9c53f402003-10-15 23:53:47 +0000137 int i;
wdenka445ddf2004-06-09 00:34:46 +0000138 struct tsec_private *priv;
wdenk9c53f402003-10-15 23:53:47 +0000139
Jon Loeligerb7ced082006-10-10 17:03:43 -0500140 dev = (struct eth_device *)malloc(sizeof *dev);
wdenk9c53f402003-10-15 23:53:47 +0000141
Jon Loeligerb7ced082006-10-10 17:03:43 -0500142 if (NULL == dev)
wdenk9c53f402003-10-15 23:53:47 +0000143 return 0;
144
145 memset(dev, 0, sizeof *dev);
146
Jon Loeligerb7ced082006-10-10 17:03:43 -0500147 priv = (struct tsec_private *)malloc(sizeof(*priv));
wdenka445ddf2004-06-09 00:34:46 +0000148
Jon Loeligerb7ced082006-10-10 17:03:43 -0500149 if (NULL == priv)
wdenka445ddf2004-06-09 00:34:46 +0000150 return 0;
151
152 privlist[index] = priv;
Jon Loeligerb7ced082006-10-10 17:03:43 -0500153 priv->regs = (volatile tsec_t *)(TSEC_BASE_ADDR + index * TSEC_SIZE);
wdenka445ddf2004-06-09 00:34:46 +0000154 priv->phyregs = (volatile tsec_t *)(TSEC_BASE_ADDR +
Jon Loeligerb7ced082006-10-10 17:03:43 -0500155 tsec_info[index].phyregidx *
156 TSEC_SIZE);
wdenka445ddf2004-06-09 00:34:46 +0000157
158 priv->phyaddr = tsec_info[index].phyaddr;
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500159 priv->flags = tsec_info[index].flags;
wdenka445ddf2004-06-09 00:34:46 +0000160
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500161 sprintf(dev->name, devname);
wdenk9c53f402003-10-15 23:53:47 +0000162 dev->iobase = 0;
Jon Loeligerb7ced082006-10-10 17:03:43 -0500163 dev->priv = priv;
164 dev->init = tsec_init;
165 dev->halt = tsec_halt;
166 dev->send = tsec_send;
167 dev->recv = tsec_recv;
David Updegraff7280da72007-06-11 10:41:07 -0500168#ifdef CONFIG_MCAST_TFTP
169 dev->mcast = tsec_mcast_addr;
170#endif
wdenk9c53f402003-10-15 23:53:47 +0000171
172 /* Tell u-boot to get the addr from the env */
Jon Loeligerb7ced082006-10-10 17:03:43 -0500173 for (i = 0; i < 6; i++)
wdenk9c53f402003-10-15 23:53:47 +0000174 dev->enetaddr[i] = 0;
175
176 eth_register(dev);
177
wdenka445ddf2004-06-09 00:34:46 +0000178 /* Reset the MAC */
179 priv->regs->maccfg1 |= MACCFG1_SOFT_RESET;
180 priv->regs->maccfg1 &= ~(MACCFG1_SOFT_RESET);
wdenk78924a72004-04-18 21:45:42 +0000181
Jon Loeliger82ecaad2007-07-09 17:39:42 -0500182#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) \
Marian Balakowiczaab8c492005-10-28 22:30:33 +0200183 && !defined(BITBANGMII)
184 miiphy_register(dev->name, tsec_miiphy_read, tsec_miiphy_write);
185#endif
186
wdenka445ddf2004-06-09 00:34:46 +0000187 /* Try to initialize PHY here, and return */
188 return init_phy(dev);
wdenk9c53f402003-10-15 23:53:47 +0000189}
190
wdenk9c53f402003-10-15 23:53:47 +0000191/* Initializes data structures and registers for the controller,
wdenkbfad55d2005-03-14 23:56:42 +0000192 * and brings the interface up. Returns the link status, meaning
wdenka445ddf2004-06-09 00:34:46 +0000193 * that it returns success if the link is up, failure otherwise.
Jon Loeligerb7ced082006-10-10 17:03:43 -0500194 * This allows u-boot to find the first active controller.
195 */
196int tsec_init(struct eth_device *dev, bd_t * bd)
wdenk9c53f402003-10-15 23:53:47 +0000197{
wdenk9c53f402003-10-15 23:53:47 +0000198 uint tempval;
199 char tmpbuf[MAC_ADDR_LEN];
200 int i;
wdenka445ddf2004-06-09 00:34:46 +0000201 struct tsec_private *priv = (struct tsec_private *)dev->priv;
202 volatile tsec_t *regs = priv->regs;
wdenk9c53f402003-10-15 23:53:47 +0000203
204 /* Make sure the controller is stopped */
205 tsec_halt(dev);
206
wdenka445ddf2004-06-09 00:34:46 +0000207 /* Init MACCFG2. Defaults to GMII */
wdenk9c53f402003-10-15 23:53:47 +0000208 regs->maccfg2 = MACCFG2_INIT_SETTINGS;
209
210 /* Init ECNTRL */
211 regs->ecntrl = ECNTRL_INIT_SETTINGS;
212
213 /* Copy the station address into the address registers.
214 * Backwards, because little endian MACS are dumb */
Jon Loeligerb7ced082006-10-10 17:03:43 -0500215 for (i = 0; i < MAC_ADDR_LEN; i++) {
wdenka445ddf2004-06-09 00:34:46 +0000216 tmpbuf[MAC_ADDR_LEN - 1 - i] = dev->enetaddr[i];
wdenk9c53f402003-10-15 23:53:47 +0000217 }
Jon Loeligerb7ced082006-10-10 17:03:43 -0500218 regs->macstnaddr1 = *((uint *) (tmpbuf));
wdenk9c53f402003-10-15 23:53:47 +0000219
Jon Loeligerb7ced082006-10-10 17:03:43 -0500220 tempval = *((uint *) (tmpbuf + 4));
wdenk9c53f402003-10-15 23:53:47 +0000221
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200222 regs->macstnaddr2 = tempval;
wdenk9c53f402003-10-15 23:53:47 +0000223
wdenk9c53f402003-10-15 23:53:47 +0000224 /* reset the indices to zero */
225 rxIdx = 0;
226 txIdx = 0;
227
228 /* Clear out (for the most part) the other registers */
229 init_registers(regs);
230
231 /* Ready the device for tx/rx */
wdenka445ddf2004-06-09 00:34:46 +0000232 startup_tsec(dev);
wdenk9c53f402003-10-15 23:53:47 +0000233
wdenka445ddf2004-06-09 00:34:46 +0000234 /* If there's no link, fail */
235 return priv->link;
236
237}
wdenk9c53f402003-10-15 23:53:47 +0000238
wdenka445ddf2004-06-09 00:34:46 +0000239/* Write value to the device's PHY through the registers
240 * specified in priv, modifying the register specified in regnum.
241 * It will wait for the write to be done (or for a timeout to
242 * expire) before exiting
243 */
244void write_phy_reg(struct tsec_private *priv, uint regnum, uint value)
245{
246 volatile tsec_t *regbase = priv->phyregs;
247 uint phyid = priv->phyaddr;
Jon Loeligerb7ced082006-10-10 17:03:43 -0500248 int timeout = 1000000;
wdenka445ddf2004-06-09 00:34:46 +0000249
250 regbase->miimadd = (phyid << 8) | regnum;
251 regbase->miimcon = value;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500252 asm("sync");
wdenka445ddf2004-06-09 00:34:46 +0000253
Jon Loeligerb7ced082006-10-10 17:03:43 -0500254 timeout = 1000000;
255 while ((regbase->miimind & MIIMIND_BUSY) && timeout--) ;
wdenk9c53f402003-10-15 23:53:47 +0000256}
257
wdenka445ddf2004-06-09 00:34:46 +0000258/* Reads register regnum on the device's PHY through the
wdenkbfad55d2005-03-14 23:56:42 +0000259 * registers specified in priv. It lowers and raises the read
wdenka445ddf2004-06-09 00:34:46 +0000260 * command, and waits for the data to become valid (miimind
261 * notvalid bit cleared), and the bus to cease activity (miimind
262 * busy bit cleared), and then returns the value
263 */
264uint read_phy_reg(struct tsec_private *priv, uint regnum)
wdenk9c53f402003-10-15 23:53:47 +0000265{
266 uint value;
wdenka445ddf2004-06-09 00:34:46 +0000267 volatile tsec_t *regbase = priv->phyregs;
268 uint phyid = priv->phyaddr;
wdenk9c53f402003-10-15 23:53:47 +0000269
wdenka445ddf2004-06-09 00:34:46 +0000270 /* Put the address of the phy, and the register
271 * number into MIIMADD */
272 regbase->miimadd = (phyid << 8) | regnum;
wdenk9c53f402003-10-15 23:53:47 +0000273
274 /* Clear the command register, and wait */
275 regbase->miimcom = 0;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500276 asm("sync");
wdenk9c53f402003-10-15 23:53:47 +0000277
278 /* Initiate a read command, and wait */
279 regbase->miimcom = MIIM_READ_COMMAND;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500280 asm("sync");
wdenk9c53f402003-10-15 23:53:47 +0000281
282 /* Wait for the the indication that the read is done */
Jon Loeligerb7ced082006-10-10 17:03:43 -0500283 while ((regbase->miimind & (MIIMIND_NOTVALID | MIIMIND_BUSY))) ;
wdenk9c53f402003-10-15 23:53:47 +0000284
285 /* Grab the value read from the PHY */
286 value = regbase->miimstat;
287
288 return value;
289}
290
wdenka445ddf2004-06-09 00:34:46 +0000291/* Discover which PHY is attached to the device, and configure it
292 * properly. If the PHY is not recognized, then return 0
293 * (failure). Otherwise, return 1
294 */
295static int init_phy(struct eth_device *dev)
wdenk9c53f402003-10-15 23:53:47 +0000296{
wdenka445ddf2004-06-09 00:34:46 +0000297 struct tsec_private *priv = (struct tsec_private *)dev->priv;
298 struct phy_info *curphy;
Jon Loeligerb7ced082006-10-10 17:03:43 -0500299 volatile tsec_t *regs = (volatile tsec_t *)(TSEC_BASE_ADDR);
wdenk9c53f402003-10-15 23:53:47 +0000300
301 /* Assign a Physical address to the TBI */
Joe Hamman4290d4c2007-08-09 09:08:18 -0500302 regs->tbipa = CFG_TBIPA_VALUE;
Jon Loeligerb7ced082006-10-10 17:03:43 -0500303 regs = (volatile tsec_t *)(TSEC_BASE_ADDR + TSEC_SIZE);
Joe Hamman4290d4c2007-08-09 09:08:18 -0500304 regs->tbipa = CFG_TBIPA_VALUE;
Jon Loeligerb7ced082006-10-10 17:03:43 -0500305 asm("sync");
wdenkf41ff3b2005-04-04 23:43:44 +0000306
307 /* Reset MII (due to new addresses) */
308 priv->phyregs->miimcfg = MIIMCFG_RESET;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500309 asm("sync");
wdenkf41ff3b2005-04-04 23:43:44 +0000310 priv->phyregs->miimcfg = MIIMCFG_INIT_VALUE;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500311 asm("sync");
Jon Loeligerb7ced082006-10-10 17:03:43 -0500312 while (priv->phyregs->miimind & MIIMIND_BUSY) ;
wdenk9c53f402003-10-15 23:53:47 +0000313
Jon Loeligerb7ced082006-10-10 17:03:43 -0500314 if (0 == relocated)
wdenka445ddf2004-06-09 00:34:46 +0000315 relocate_cmds();
wdenk9c53f402003-10-15 23:53:47 +0000316
wdenka445ddf2004-06-09 00:34:46 +0000317 /* Get the cmd structure corresponding to the attached
318 * PHY */
319 curphy = get_phy_info(dev);
wdenk9c53f402003-10-15 23:53:47 +0000320
Ben Warrenf11eefb2006-10-26 14:38:25 -0400321 if (curphy == NULL) {
322 priv->phyinfo = NULL;
wdenka445ddf2004-06-09 00:34:46 +0000323 printf("%s: No PHY found\n", dev->name);
wdenk9c53f402003-10-15 23:53:47 +0000324
wdenka445ddf2004-06-09 00:34:46 +0000325 return 0;
326 }
wdenk9c53f402003-10-15 23:53:47 +0000327
wdenka445ddf2004-06-09 00:34:46 +0000328 priv->phyinfo = curphy;
wdenk9c53f402003-10-15 23:53:47 +0000329
wdenka445ddf2004-06-09 00:34:46 +0000330 phy_run_commands(priv, priv->phyinfo->config);
wdenk9c53f402003-10-15 23:53:47 +0000331
wdenka445ddf2004-06-09 00:34:46 +0000332 return 1;
333}
wdenk9c53f402003-10-15 23:53:47 +0000334
Jon Loeligerb7ced082006-10-10 17:03:43 -0500335/*
336 * Returns which value to write to the control register.
337 * For 10/100, the value is slightly different
338 */
339uint mii_cr_init(uint mii_reg, struct tsec_private * priv)
wdenka445ddf2004-06-09 00:34:46 +0000340{
Jon Loeligerb7ced082006-10-10 17:03:43 -0500341 if (priv->flags & TSEC_GIGABIT)
wdenka445ddf2004-06-09 00:34:46 +0000342 return MIIM_CONTROL_INIT;
wdenk9c53f402003-10-15 23:53:47 +0000343 else
wdenka445ddf2004-06-09 00:34:46 +0000344 return MIIM_CR_INIT;
345}
wdenk9c53f402003-10-15 23:53:47 +0000346
wdenka445ddf2004-06-09 00:34:46 +0000347/* Parse the status register for link, and then do
Jon Loeligerb7ced082006-10-10 17:03:43 -0500348 * auto-negotiation
349 */
350uint mii_parse_sr(uint mii_reg, struct tsec_private * priv)
wdenka445ddf2004-06-09 00:34:46 +0000351{
Stefan Roesec0dc34f2005-09-21 18:20:22 +0200352 /*
Andy Fleming4eb3dcf2007-08-15 20:03:44 -0500353 * Wait if the link is up, and autonegotiation is in progress
354 * (ie - we're capable and it's not done)
Stefan Roesec0dc34f2005-09-21 18:20:22 +0200355 */
356 mii_reg = read_phy_reg(priv, MIIM_STATUS);
Andy Fleming4eb3dcf2007-08-15 20:03:44 -0500357 if ((mii_reg & MIIM_STATUS_LINK) && (mii_reg & PHY_BMSR_AUTN_ABLE)
Jon Loeligerb7ced082006-10-10 17:03:43 -0500358 && !(mii_reg & PHY_BMSR_AUTN_COMP)) {
Stefan Roesec0dc34f2005-09-21 18:20:22 +0200359 int i = 0;
wdenk9c53f402003-10-15 23:53:47 +0000360
Jon Loeligerb7ced082006-10-10 17:03:43 -0500361 puts("Waiting for PHY auto negotiation to complete");
Andy Fleming4eb3dcf2007-08-15 20:03:44 -0500362 while (!(mii_reg & PHY_BMSR_AUTN_COMP)) {
Stefan Roesec0dc34f2005-09-21 18:20:22 +0200363 /*
364 * Timeout reached ?
365 */
366 if (i > PHY_AUTONEGOTIATE_TIMEOUT) {
Jon Loeligerb7ced082006-10-10 17:03:43 -0500367 puts(" TIMEOUT !\n");
Stefan Roesec0dc34f2005-09-21 18:20:22 +0200368 priv->link = 0;
Jin Zhengxiong-R64188487d2232006-06-27 18:12:23 +0800369 return 0;
Stefan Roesec0dc34f2005-09-21 18:20:22 +0200370 }
wdenk9c53f402003-10-15 23:53:47 +0000371
Stefan Roesec0dc34f2005-09-21 18:20:22 +0200372 if ((i++ % 1000) == 0) {
Jon Loeligerb7ced082006-10-10 17:03:43 -0500373 putc('.');
Stefan Roesec0dc34f2005-09-21 18:20:22 +0200374 }
Jon Loeligerb7ced082006-10-10 17:03:43 -0500375 udelay(1000); /* 1 ms */
wdenka445ddf2004-06-09 00:34:46 +0000376 mii_reg = read_phy_reg(priv, MIIM_STATUS);
Stefan Roesec0dc34f2005-09-21 18:20:22 +0200377 }
Jon Loeligerb7ced082006-10-10 17:03:43 -0500378 puts(" done\n");
Stefan Roesec0dc34f2005-09-21 18:20:22 +0200379 priv->link = 1;
Jon Loeligerb7ced082006-10-10 17:03:43 -0500380 udelay(500000); /* another 500 ms (results in faster booting) */
Stefan Roesec0dc34f2005-09-21 18:20:22 +0200381 } else {
Andy Fleming4eb3dcf2007-08-15 20:03:44 -0500382 if (mii_reg & MIIM_STATUS_LINK)
383 priv->link = 1;
384 else
385 priv->link = 0;
wdenk9c53f402003-10-15 23:53:47 +0000386 }
387
wdenka445ddf2004-06-09 00:34:46 +0000388 return 0;
389}
390
David Updegraff0451b012007-04-20 14:34:48 -0500391/* Generic function which updates the speed and duplex. If
392 * autonegotiation is enabled, it uses the AND of the link
393 * partner's advertised capabilities and our advertised
394 * capabilities. If autonegotiation is disabled, we use the
395 * appropriate bits in the control register.
396 *
397 * Stolen from Linux's mii.c and phy_device.c
398 */
399uint mii_parse_link(uint mii_reg, struct tsec_private *priv)
400{
401 /* We're using autonegotiation */
402 if (mii_reg & PHY_BMSR_AUTN_ABLE) {
403 uint lpa = 0;
404 uint gblpa = 0;
405
406 /* Check for gigabit capability */
407 if (mii_reg & PHY_BMSR_EXT) {
408 /* We want a list of states supported by
409 * both PHYs in the link
410 */
411 gblpa = read_phy_reg(priv, PHY_1000BTSR);
412 gblpa &= read_phy_reg(priv, PHY_1000BTCR) << 2;
413 }
414
415 /* Set the baseline so we only have to set them
416 * if they're different
417 */
418 priv->speed = 10;
419 priv->duplexity = 0;
420
421 /* Check the gigabit fields */
422 if (gblpa & (PHY_1000BTSR_1000FD | PHY_1000BTSR_1000HD)) {
423 priv->speed = 1000;
424
425 if (gblpa & PHY_1000BTSR_1000FD)
426 priv->duplexity = 1;
427
428 /* We're done! */
429 return 0;
430 }
431
432 lpa = read_phy_reg(priv, PHY_ANAR);
433 lpa &= read_phy_reg(priv, PHY_ANLPAR);
434
435 if (lpa & (PHY_ANLPAR_TXFD | PHY_ANLPAR_TX)) {
436 priv->speed = 100;
437
438 if (lpa & PHY_ANLPAR_TXFD)
439 priv->duplexity = 1;
440
441 } else if (lpa & PHY_ANLPAR_10FD)
442 priv->duplexity = 1;
443 } else {
444 uint bmcr = read_phy_reg(priv, PHY_BMCR);
445
446 priv->speed = 10;
447 priv->duplexity = 0;
448
449 if (bmcr & PHY_BMCR_DPLX)
450 priv->duplexity = 1;
451
452 if (bmcr & PHY_BMCR_1000_MBPS)
453 priv->speed = 1000;
454 else if (bmcr & PHY_BMCR_100_MBPS)
455 priv->speed = 100;
456 }
457
458 return 0;
459}
460
Paul Gortmaker2bd9f1b2007-01-16 11:38:14 -0500461/*
462 * Parse the BCM54xx status register for speed and duplex information.
463 * The linux sungem_phy has this information, but in a table format.
464 */
465uint mii_parse_BCM54xx_sr(uint mii_reg, struct tsec_private *priv)
466{
467
468 switch((mii_reg & MIIM_BCM54xx_AUXSTATUS_LINKMODE_MASK) >> MIIM_BCM54xx_AUXSTATUS_LINKMODE_SHIFT){
469
470 case 1:
471 printf("Enet starting in 10BT/HD\n");
472 priv->duplexity = 0;
473 priv->speed = 10;
474 break;
475
476 case 2:
477 printf("Enet starting in 10BT/FD\n");
478 priv->duplexity = 1;
479 priv->speed = 10;
480 break;
481
482 case 3:
483 printf("Enet starting in 100BT/HD\n");
484 priv->duplexity = 0;
485 priv->speed = 100;
486 break;
487
488 case 5:
489 printf("Enet starting in 100BT/FD\n");
490 priv->duplexity = 1;
491 priv->speed = 100;
492 break;
493
494 case 6:
495 printf("Enet starting in 1000BT/HD\n");
496 priv->duplexity = 0;
497 priv->speed = 1000;
498 break;
499
500 case 7:
501 printf("Enet starting in 1000BT/FD\n");
502 priv->duplexity = 1;
503 priv->speed = 1000;
504 break;
505
506 default:
507 printf("Auto-neg error, defaulting to 10BT/HD\n");
508 priv->duplexity = 0;
509 priv->speed = 10;
510 break;
511 }
512
513 return 0;
514
515}
wdenka445ddf2004-06-09 00:34:46 +0000516/* Parse the 88E1011's status register for speed and duplex
Jon Loeligerb7ced082006-10-10 17:03:43 -0500517 * information
518 */
519uint mii_parse_88E1011_psr(uint mii_reg, struct tsec_private * priv)
wdenka445ddf2004-06-09 00:34:46 +0000520{
521 uint speed;
wdenk9c53f402003-10-15 23:53:47 +0000522
Stefan Roesec0dc34f2005-09-21 18:20:22 +0200523 mii_reg = read_phy_reg(priv, MIIM_88E1011_PHY_STATUS);
524
Andy Fleming4eb3dcf2007-08-15 20:03:44 -0500525 if ((mii_reg & MIIM_88E1011_PHYSTAT_LINK) &&
526 !(mii_reg & MIIM_88E1011_PHYSTAT_SPDDONE)) {
Stefan Roesec0dc34f2005-09-21 18:20:22 +0200527 int i = 0;
528
Jon Loeligerb7ced082006-10-10 17:03:43 -0500529 puts("Waiting for PHY realtime link");
Andy Fleming4eb3dcf2007-08-15 20:03:44 -0500530 while (!(mii_reg & MIIM_88E1011_PHYSTAT_SPDDONE)) {
531 /* Timeout reached ? */
Stefan Roesec0dc34f2005-09-21 18:20:22 +0200532 if (i > PHY_AUTONEGOTIATE_TIMEOUT) {
Jon Loeligerb7ced082006-10-10 17:03:43 -0500533 puts(" TIMEOUT !\n");
Stefan Roesec0dc34f2005-09-21 18:20:22 +0200534 priv->link = 0;
535 break;
536 }
537
538 if ((i++ % 1000) == 0) {
Jon Loeligerb7ced082006-10-10 17:03:43 -0500539 putc('.');
Stefan Roesec0dc34f2005-09-21 18:20:22 +0200540 }
Jon Loeligerb7ced082006-10-10 17:03:43 -0500541 udelay(1000); /* 1 ms */
Stefan Roesec0dc34f2005-09-21 18:20:22 +0200542 mii_reg = read_phy_reg(priv, MIIM_88E1011_PHY_STATUS);
543 }
Jon Loeligerb7ced082006-10-10 17:03:43 -0500544 puts(" done\n");
545 udelay(500000); /* another 500 ms (results in faster booting) */
Andy Fleming4eb3dcf2007-08-15 20:03:44 -0500546 } else {
547 if (mii_reg & MIIM_88E1011_PHYSTAT_LINK)
548 priv->link = 1;
549 else
550 priv->link = 0;
Stefan Roesec0dc34f2005-09-21 18:20:22 +0200551 }
552
Jon Loeligerb7ced082006-10-10 17:03:43 -0500553 if (mii_reg & MIIM_88E1011_PHYSTAT_DUPLEX)
wdenka445ddf2004-06-09 00:34:46 +0000554 priv->duplexity = 1;
555 else
556 priv->duplexity = 0;
557
Jon Loeligerb7ced082006-10-10 17:03:43 -0500558 speed = (mii_reg & MIIM_88E1011_PHYSTAT_SPEED);
wdenka445ddf2004-06-09 00:34:46 +0000559
Jon Loeligerb7ced082006-10-10 17:03:43 -0500560 switch (speed) {
561 case MIIM_88E1011_PHYSTAT_GBIT:
562 priv->speed = 1000;
563 break;
564 case MIIM_88E1011_PHYSTAT_100:
565 priv->speed = 100;
566 break;
567 default:
568 priv->speed = 10;
wdenk9c53f402003-10-15 23:53:47 +0000569 }
570
wdenka445ddf2004-06-09 00:34:46 +0000571 return 0;
572}
573
wdenka445ddf2004-06-09 00:34:46 +0000574/* Parse the cis8201's status register for speed and duplex
Jon Loeligerb7ced082006-10-10 17:03:43 -0500575 * information
576 */
577uint mii_parse_cis8201(uint mii_reg, struct tsec_private * priv)
wdenka445ddf2004-06-09 00:34:46 +0000578{
579 uint speed;
580
Jon Loeligerb7ced082006-10-10 17:03:43 -0500581 if (mii_reg & MIIM_CIS8201_AUXCONSTAT_DUPLEX)
wdenka445ddf2004-06-09 00:34:46 +0000582 priv->duplexity = 1;
583 else
584 priv->duplexity = 0;
585
586 speed = mii_reg & MIIM_CIS8201_AUXCONSTAT_SPEED;
Jon Loeligerb7ced082006-10-10 17:03:43 -0500587 switch (speed) {
588 case MIIM_CIS8201_AUXCONSTAT_GBIT:
589 priv->speed = 1000;
590 break;
591 case MIIM_CIS8201_AUXCONSTAT_100:
592 priv->speed = 100;
593 break;
594 default:
595 priv->speed = 10;
596 break;
wdenk9c53f402003-10-15 23:53:47 +0000597 }
598
wdenka445ddf2004-06-09 00:34:46 +0000599 return 0;
600}
Jon Loeligerb7ced082006-10-10 17:03:43 -0500601
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500602/* Parse the vsc8244's status register for speed and duplex
Jon Loeligerb7ced082006-10-10 17:03:43 -0500603 * information
604 */
605uint mii_parse_vsc8244(uint mii_reg, struct tsec_private * priv)
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500606{
Jon Loeligerb7ced082006-10-10 17:03:43 -0500607 uint speed;
wdenk9c53f402003-10-15 23:53:47 +0000608
Jon Loeligerb7ced082006-10-10 17:03:43 -0500609 if (mii_reg & MIIM_VSC8244_AUXCONSTAT_DUPLEX)
610 priv->duplexity = 1;
611 else
612 priv->duplexity = 0;
613
614 speed = mii_reg & MIIM_VSC8244_AUXCONSTAT_SPEED;
615 switch (speed) {
616 case MIIM_VSC8244_AUXCONSTAT_GBIT:
617 priv->speed = 1000;
618 break;
619 case MIIM_VSC8244_AUXCONSTAT_100:
620 priv->speed = 100;
621 break;
622 default:
623 priv->speed = 10;
624 break;
625 }
626
627 return 0;
628}
wdenka445ddf2004-06-09 00:34:46 +0000629
630/* Parse the DM9161's status register for speed and duplex
Jon Loeligerb7ced082006-10-10 17:03:43 -0500631 * information
632 */
633uint mii_parse_dm9161_scsr(uint mii_reg, struct tsec_private * priv)
wdenka445ddf2004-06-09 00:34:46 +0000634{
Jon Loeligerb7ced082006-10-10 17:03:43 -0500635 if (mii_reg & (MIIM_DM9161_SCSR_100F | MIIM_DM9161_SCSR_100H))
wdenka445ddf2004-06-09 00:34:46 +0000636 priv->speed = 100;
637 else
638 priv->speed = 10;
639
Jon Loeligerb7ced082006-10-10 17:03:43 -0500640 if (mii_reg & (MIIM_DM9161_SCSR_100F | MIIM_DM9161_SCSR_10F))
wdenka445ddf2004-06-09 00:34:46 +0000641 priv->duplexity = 1;
642 else
643 priv->duplexity = 0;
644
645 return 0;
646}
647
Jon Loeligerb7ced082006-10-10 17:03:43 -0500648/*
649 * Hack to write all 4 PHYs with the LED values
650 */
651uint mii_cis8204_fixled(uint mii_reg, struct tsec_private * priv)
wdenka445ddf2004-06-09 00:34:46 +0000652{
653 uint phyid;
654 volatile tsec_t *regbase = priv->phyregs;
Jon Loeligerb7ced082006-10-10 17:03:43 -0500655 int timeout = 1000000;
wdenka445ddf2004-06-09 00:34:46 +0000656
Jon Loeligerb7ced082006-10-10 17:03:43 -0500657 for (phyid = 0; phyid < 4; phyid++) {
wdenka445ddf2004-06-09 00:34:46 +0000658 regbase->miimadd = (phyid << 8) | mii_reg;
659 regbase->miimcon = MIIM_CIS8204_SLEDCON_INIT;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500660 asm("sync");
wdenka445ddf2004-06-09 00:34:46 +0000661
Jon Loeligerb7ced082006-10-10 17:03:43 -0500662 timeout = 1000000;
663 while ((regbase->miimind & MIIMIND_BUSY) && timeout--) ;
wdenk9c53f402003-10-15 23:53:47 +0000664 }
wdenk9c53f402003-10-15 23:53:47 +0000665
wdenka445ddf2004-06-09 00:34:46 +0000666 return MIIM_CIS8204_SLEDCON_INIT;
wdenk9c53f402003-10-15 23:53:47 +0000667}
668
Jon Loeligerb7ced082006-10-10 17:03:43 -0500669uint mii_cis8204_setmode(uint mii_reg, struct tsec_private * priv)
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500670{
671 if (priv->flags & TSEC_REDUCED)
672 return MIIM_CIS8204_EPHYCON_INIT | MIIM_CIS8204_EPHYCON_RGMII;
673 else
674 return MIIM_CIS8204_EPHYCON_INIT;
675}
wdenk9c53f402003-10-15 23:53:47 +0000676
Dave Liub19ecd32007-09-18 12:37:57 +0800677uint mii_m88e1111s_setmode(uint mii_reg, struct tsec_private *priv)
678{
679 uint mii_data = read_phy_reg(priv, mii_reg);
680
681 if (priv->flags & TSEC_REDUCED)
682 mii_data = (mii_data & 0xfff0) | 0x000b;
683 return mii_data;
684}
685
wdenka445ddf2004-06-09 00:34:46 +0000686/* Initialized required registers to appropriate values, zeroing
687 * those we don't care about (unless zero is bad, in which case,
Jon Loeligerb7ced082006-10-10 17:03:43 -0500688 * choose a more appropriate value)
689 */
690static void init_registers(volatile tsec_t * regs)
wdenk9c53f402003-10-15 23:53:47 +0000691{
692 /* Clear IEVENT */
693 regs->ievent = IEVENT_INIT_CLEAR;
694
695 regs->imask = IMASK_INIT_CLEAR;
696
697 regs->hash.iaddr0 = 0;
698 regs->hash.iaddr1 = 0;
699 regs->hash.iaddr2 = 0;
700 regs->hash.iaddr3 = 0;
701 regs->hash.iaddr4 = 0;
702 regs->hash.iaddr5 = 0;
703 regs->hash.iaddr6 = 0;
704 regs->hash.iaddr7 = 0;
705
706 regs->hash.gaddr0 = 0;
707 regs->hash.gaddr1 = 0;
708 regs->hash.gaddr2 = 0;
709 regs->hash.gaddr3 = 0;
710 regs->hash.gaddr4 = 0;
711 regs->hash.gaddr5 = 0;
712 regs->hash.gaddr6 = 0;
713 regs->hash.gaddr7 = 0;
714
715 regs->rctrl = 0x00000000;
716
717 /* Init RMON mib registers */
718 memset((void *)&(regs->rmon), 0, sizeof(rmon_mib_t));
719
720 regs->rmon.cam1 = 0xffffffff;
721 regs->rmon.cam2 = 0xffffffff;
722
723 regs->mrblr = MRBLR_INIT_SETTINGS;
724
725 regs->minflr = MINFLR_INIT_SETTINGS;
726
727 regs->attr = ATTR_INIT_SETTINGS;
728 regs->attreli = ATTRELI_INIT_SETTINGS;
729
wdenka445ddf2004-06-09 00:34:46 +0000730}
731
wdenka445ddf2004-06-09 00:34:46 +0000732/* Configure maccfg2 based on negotiated speed and duplex
Jon Loeligerb7ced082006-10-10 17:03:43 -0500733 * reported by PHY handling code
734 */
wdenka445ddf2004-06-09 00:34:46 +0000735static void adjust_link(struct eth_device *dev)
736{
737 struct tsec_private *priv = (struct tsec_private *)dev->priv;
738 volatile tsec_t *regs = priv->regs;
739
Jon Loeligerb7ced082006-10-10 17:03:43 -0500740 if (priv->link) {
741 if (priv->duplexity != 0)
wdenka445ddf2004-06-09 00:34:46 +0000742 regs->maccfg2 |= MACCFG2_FULL_DUPLEX;
743 else
744 regs->maccfg2 &= ~(MACCFG2_FULL_DUPLEX);
745
Jon Loeligerb7ced082006-10-10 17:03:43 -0500746 switch (priv->speed) {
747 case 1000:
748 regs->maccfg2 = ((regs->maccfg2 & ~(MACCFG2_IF))
749 | MACCFG2_GMII);
750 break;
751 case 100:
752 case 10:
753 regs->maccfg2 = ((regs->maccfg2 & ~(MACCFG2_IF))
754 | MACCFG2_MII);
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500755
Nick Spenceec9670b2006-09-07 07:39:46 -0700756 /* Set R100 bit in all modes although
757 * it is only used in RGMII mode
Jon Loeligerb7ced082006-10-10 17:03:43 -0500758 */
Nick Spenceec9670b2006-09-07 07:39:46 -0700759 if (priv->speed == 100)
Jon Loeligerb7ced082006-10-10 17:03:43 -0500760 regs->ecntrl |= ECNTRL_R100;
761 else
762 regs->ecntrl &= ~(ECNTRL_R100);
763 break;
764 default:
765 printf("%s: Speed was bad\n", dev->name);
766 break;
wdenka445ddf2004-06-09 00:34:46 +0000767 }
768
769 printf("Speed: %d, %s duplex\n", priv->speed,
Jon Loeligerb7ced082006-10-10 17:03:43 -0500770 (priv->duplexity) ? "full" : "half");
wdenka445ddf2004-06-09 00:34:46 +0000771
772 } else {
773 printf("%s: No link.\n", dev->name);
774 }
wdenk9c53f402003-10-15 23:53:47 +0000775}
776
wdenka445ddf2004-06-09 00:34:46 +0000777/* Set up the buffers and their descriptors, and bring up the
Jon Loeligerb7ced082006-10-10 17:03:43 -0500778 * interface
779 */
wdenka445ddf2004-06-09 00:34:46 +0000780static void startup_tsec(struct eth_device *dev)
wdenk9c53f402003-10-15 23:53:47 +0000781{
782 int i;
wdenka445ddf2004-06-09 00:34:46 +0000783 struct tsec_private *priv = (struct tsec_private *)dev->priv;
784 volatile tsec_t *regs = priv->regs;
wdenk9c53f402003-10-15 23:53:47 +0000785
786 /* Point to the buffer descriptors */
787 regs->tbase = (unsigned int)(&rtx.txbd[txIdx]);
788 regs->rbase = (unsigned int)(&rtx.rxbd[rxIdx]);
789
790 /* Initialize the Rx Buffer descriptors */
791 for (i = 0; i < PKTBUFSRX; i++) {
792 rtx.rxbd[i].status = RXBD_EMPTY;
793 rtx.rxbd[i].length = 0;
Jon Loeligerb7ced082006-10-10 17:03:43 -0500794 rtx.rxbd[i].bufPtr = (uint) NetRxPackets[i];
wdenk9c53f402003-10-15 23:53:47 +0000795 }
Jon Loeligerb7ced082006-10-10 17:03:43 -0500796 rtx.rxbd[PKTBUFSRX - 1].status |= RXBD_WRAP;
wdenk9c53f402003-10-15 23:53:47 +0000797
798 /* Initialize the TX Buffer Descriptors */
Jon Loeligerb7ced082006-10-10 17:03:43 -0500799 for (i = 0; i < TX_BUF_CNT; i++) {
wdenk9c53f402003-10-15 23:53:47 +0000800 rtx.txbd[i].status = 0;
801 rtx.txbd[i].length = 0;
802 rtx.txbd[i].bufPtr = 0;
803 }
Jon Loeligerb7ced082006-10-10 17:03:43 -0500804 rtx.txbd[TX_BUF_CNT - 1].status |= TXBD_WRAP;
wdenk9c53f402003-10-15 23:53:47 +0000805
wdenka445ddf2004-06-09 00:34:46 +0000806 /* Start up the PHY */
Ben Warrenf11eefb2006-10-26 14:38:25 -0400807 if(priv->phyinfo)
808 phy_run_commands(priv, priv->phyinfo->startup);
David Updegraff0451b012007-04-20 14:34:48 -0500809
wdenka445ddf2004-06-09 00:34:46 +0000810 adjust_link(dev);
811
wdenk9c53f402003-10-15 23:53:47 +0000812 /* Enable Transmit and Receive */
813 regs->maccfg1 |= (MACCFG1_RX_EN | MACCFG1_TX_EN);
814
815 /* Tell the DMA it is clear to go */
816 regs->dmactrl |= DMACTRL_INIT_SETTINGS;
817 regs->tstat = TSTAT_CLEAR_THALT;
Dan Wilsone3d7d6b2007-10-19 11:33:48 -0500818 regs->rstat = RSTAT_CLEAR_RHALT;
wdenk9c53f402003-10-15 23:53:47 +0000819 regs->dmactrl &= ~(DMACTRL_GRS | DMACTRL_GTS);
820}
821
wdenkbfad55d2005-03-14 23:56:42 +0000822/* This returns the status bits of the device. The return value
wdenk9c53f402003-10-15 23:53:47 +0000823 * is never checked, and this is what the 8260 driver did, so we
wdenkbfad55d2005-03-14 23:56:42 +0000824 * do the same. Presumably, this would be zero if there were no
Jon Loeligerb7ced082006-10-10 17:03:43 -0500825 * errors
826 */
827static int tsec_send(struct eth_device *dev, volatile void *packet, int length)
wdenk9c53f402003-10-15 23:53:47 +0000828{
829 int i;
830 int result = 0;
wdenka445ddf2004-06-09 00:34:46 +0000831 struct tsec_private *priv = (struct tsec_private *)dev->priv;
832 volatile tsec_t *regs = priv->regs;
wdenk9c53f402003-10-15 23:53:47 +0000833
834 /* Find an empty buffer descriptor */
Jon Loeligerb7ced082006-10-10 17:03:43 -0500835 for (i = 0; rtx.txbd[txIdx].status & TXBD_READY; i++) {
wdenk9c53f402003-10-15 23:53:47 +0000836 if (i >= TOUT_LOOP) {
Jon Loeligerb7ced082006-10-10 17:03:43 -0500837 debug("%s: tsec: tx buffers full\n", dev->name);
wdenk9c53f402003-10-15 23:53:47 +0000838 return result;
839 }
840 }
841
Jon Loeligerb7ced082006-10-10 17:03:43 -0500842 rtx.txbd[txIdx].bufPtr = (uint) packet;
wdenk9c53f402003-10-15 23:53:47 +0000843 rtx.txbd[txIdx].length = length;
Jon Loeligerb7ced082006-10-10 17:03:43 -0500844 rtx.txbd[txIdx].status |=
845 (TXBD_READY | TXBD_LAST | TXBD_CRC | TXBD_INTERRUPT);
wdenk9c53f402003-10-15 23:53:47 +0000846
847 /* Tell the DMA to go */
848 regs->tstat = TSTAT_CLEAR_THALT;
849
850 /* Wait for buffer to be transmitted */
Jon Loeligerb7ced082006-10-10 17:03:43 -0500851 for (i = 0; rtx.txbd[txIdx].status & TXBD_READY; i++) {
wdenk9c53f402003-10-15 23:53:47 +0000852 if (i >= TOUT_LOOP) {
Jon Loeligerb7ced082006-10-10 17:03:43 -0500853 debug("%s: tsec: tx error\n", dev->name);
wdenk9c53f402003-10-15 23:53:47 +0000854 return result;
855 }
856 }
857
858 txIdx = (txIdx + 1) % TX_BUF_CNT;
859 result = rtx.txbd[txIdx].status & TXBD_STATS;
860
861 return result;
862}
863
Jon Loeligerb7ced082006-10-10 17:03:43 -0500864static int tsec_recv(struct eth_device *dev)
wdenk9c53f402003-10-15 23:53:47 +0000865{
866 int length;
wdenka445ddf2004-06-09 00:34:46 +0000867 struct tsec_private *priv = (struct tsec_private *)dev->priv;
868 volatile tsec_t *regs = priv->regs;
wdenk9c53f402003-10-15 23:53:47 +0000869
Jon Loeligerb7ced082006-10-10 17:03:43 -0500870 while (!(rtx.rxbd[rxIdx].status & RXBD_EMPTY)) {
wdenk9c53f402003-10-15 23:53:47 +0000871
872 length = rtx.rxbd[rxIdx].length;
873
874 /* Send the packet up if there were no errors */
875 if (!(rtx.rxbd[rxIdx].status & RXBD_STATS)) {
876 NetReceive(NetRxPackets[rxIdx], length - 4);
wdenka445ddf2004-06-09 00:34:46 +0000877 } else {
878 printf("Got error %x\n",
Jon Loeligerb7ced082006-10-10 17:03:43 -0500879 (rtx.rxbd[rxIdx].status & RXBD_STATS));
wdenk9c53f402003-10-15 23:53:47 +0000880 }
881
882 rtx.rxbd[rxIdx].length = 0;
883
884 /* Set the wrap bit if this is the last element in the list */
Jon Loeligerb7ced082006-10-10 17:03:43 -0500885 rtx.rxbd[rxIdx].status =
886 RXBD_EMPTY | (((rxIdx + 1) == PKTBUFSRX) ? RXBD_WRAP : 0);
wdenk9c53f402003-10-15 23:53:47 +0000887
888 rxIdx = (rxIdx + 1) % PKTBUFSRX;
889 }
890
Jon Loeligerb7ced082006-10-10 17:03:43 -0500891 if (regs->ievent & IEVENT_BSY) {
wdenk9c53f402003-10-15 23:53:47 +0000892 regs->ievent = IEVENT_BSY;
893 regs->rstat = RSTAT_CLEAR_RHALT;
894 }
895
896 return -1;
897
898}
899
wdenka445ddf2004-06-09 00:34:46 +0000900/* Stop the interface */
Jon Loeligerb7ced082006-10-10 17:03:43 -0500901static void tsec_halt(struct eth_device *dev)
wdenk9c53f402003-10-15 23:53:47 +0000902{
wdenka445ddf2004-06-09 00:34:46 +0000903 struct tsec_private *priv = (struct tsec_private *)dev->priv;
904 volatile tsec_t *regs = priv->regs;
wdenk9c53f402003-10-15 23:53:47 +0000905
906 regs->dmactrl &= ~(DMACTRL_GRS | DMACTRL_GTS);
907 regs->dmactrl |= (DMACTRL_GRS | DMACTRL_GTS);
908
Jon Loeligerb7ced082006-10-10 17:03:43 -0500909 while (!(regs->ievent & (IEVENT_GRSC | IEVENT_GTSC))) ;
wdenk9c53f402003-10-15 23:53:47 +0000910
911 regs->maccfg1 &= ~(MACCFG1_TX_EN | MACCFG1_RX_EN);
912
wdenka445ddf2004-06-09 00:34:46 +0000913 /* Shut down the PHY, as needed */
Ben Warrenf11eefb2006-10-26 14:38:25 -0400914 if(priv->phyinfo)
915 phy_run_commands(priv, priv->phyinfo->shutdown);
wdenka445ddf2004-06-09 00:34:46 +0000916}
917
Andy Flemingbee67002007-08-03 04:05:25 -0500918struct phy_info phy_info_M88E1149S = {
Wolfgang Denk15e87572007-08-06 01:01:49 +0200919 0x1410ca,
920 "Marvell 88E1149S",
921 4,
922 (struct phy_cmd[]){ /* config */
923 /* Reset and configure the PHY */
924 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
925 {0x1d, 0x1f, NULL},
926 {0x1e, 0x200c, NULL},
927 {0x1d, 0x5, NULL},
928 {0x1e, 0x0, NULL},
929 {0x1e, 0x100, NULL},
930 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
931 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
932 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
933 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
934 {miim_end,}
935 },
936 (struct phy_cmd[]){ /* startup */
937 /* Status is read once to clear old link state */
938 {MIIM_STATUS, miim_read, NULL},
939 /* Auto-negotiate */
940 {MIIM_STATUS, miim_read, &mii_parse_sr},
941 /* Read the status */
942 {MIIM_88E1011_PHY_STATUS, miim_read,
943 &mii_parse_88E1011_psr},
944 {miim_end,}
945 },
946 (struct phy_cmd[]){ /* shutdown */
947 {miim_end,}
948 },
Andy Flemingbee67002007-08-03 04:05:25 -0500949};
950
Paul Gortmaker2bd9f1b2007-01-16 11:38:14 -0500951/* The 5411 id is 0x206070, the 5421 is 0x2060e0 */
952struct phy_info phy_info_BCM5461S = {
953 0x02060c1, /* 5461 ID */
954 "Broadcom BCM5461S",
955 0, /* not clear to me what minor revisions we can shift away */
956 (struct phy_cmd[]) { /* config */
957 /* Reset and configure the PHY */
958 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
959 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
960 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
961 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
962 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
963 {miim_end,}
964 },
965 (struct phy_cmd[]) { /* startup */
966 /* Status is read once to clear old link state */
967 {MIIM_STATUS, miim_read, NULL},
968 /* Auto-negotiate */
969 {MIIM_STATUS, miim_read, &mii_parse_sr},
970 /* Read the status */
971 {MIIM_BCM54xx_AUXSTATUS, miim_read, &mii_parse_BCM54xx_sr},
972 {miim_end,}
973 },
974 (struct phy_cmd[]) { /* shutdown */
975 {miim_end,}
976 },
977};
978
Joe Hammaned7ad4e2007-04-30 16:47:28 -0500979struct phy_info phy_info_BCM5464S = {
980 0x02060b1, /* 5464 ID */
981 "Broadcom BCM5464S",
982 0, /* not clear to me what minor revisions we can shift away */
983 (struct phy_cmd[]) { /* config */
984 /* Reset and configure the PHY */
985 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
986 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
987 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
988 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
989 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
990 {miim_end,}
991 },
992 (struct phy_cmd[]) { /* startup */
993 /* Status is read once to clear old link state */
994 {MIIM_STATUS, miim_read, NULL},
995 /* Auto-negotiate */
996 {MIIM_STATUS, miim_read, &mii_parse_sr},
997 /* Read the status */
998 {MIIM_BCM54xx_AUXSTATUS, miim_read, &mii_parse_BCM54xx_sr},
999 {miim_end,}
1000 },
1001 (struct phy_cmd[]) { /* shutdown */
1002 {miim_end,}
1003 },
1004};
1005
wdenka445ddf2004-06-09 00:34:46 +00001006struct phy_info phy_info_M88E1011S = {
1007 0x01410c6,
1008 "Marvell 88E1011S",
1009 4,
Jon Loeligerb7ced082006-10-10 17:03:43 -05001010 (struct phy_cmd[]){ /* config */
1011 /* Reset and configure the PHY */
1012 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1013 {0x1d, 0x1f, NULL},
1014 {0x1e, 0x200c, NULL},
1015 {0x1d, 0x5, NULL},
1016 {0x1e, 0x0, NULL},
1017 {0x1e, 0x100, NULL},
1018 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1019 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1020 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1021 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1022 {miim_end,}
1023 },
1024 (struct phy_cmd[]){ /* startup */
1025 /* Status is read once to clear old link state */
1026 {MIIM_STATUS, miim_read, NULL},
1027 /* Auto-negotiate */
1028 {MIIM_STATUS, miim_read, &mii_parse_sr},
1029 /* Read the status */
1030 {MIIM_88E1011_PHY_STATUS, miim_read,
1031 &mii_parse_88E1011_psr},
1032 {miim_end,}
1033 },
1034 (struct phy_cmd[]){ /* shutdown */
1035 {miim_end,}
1036 },
wdenka445ddf2004-06-09 00:34:46 +00001037};
1038
wdenkbfad55d2005-03-14 23:56:42 +00001039struct phy_info phy_info_M88E1111S = {
1040 0x01410cc,
1041 "Marvell 88E1111S",
1042 4,
Jon Loeligerb7ced082006-10-10 17:03:43 -05001043 (struct phy_cmd[]){ /* config */
1044 /* Reset and configure the PHY */
1045 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
Dave Liub19ecd32007-09-18 12:37:57 +08001046 {0x1b, 0x848f, &mii_m88e1111s_setmode},
Nick Spenceec9670b2006-09-07 07:39:46 -07001047 {0x14, 0x0cd2, NULL}, /* Delay RGMII TX and RX */
Jon Loeligerb7ced082006-10-10 17:03:43 -05001048 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1049 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1050 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1051 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1052 {miim_end,}
1053 },
1054 (struct phy_cmd[]){ /* startup */
1055 /* Status is read once to clear old link state */
1056 {MIIM_STATUS, miim_read, NULL},
1057 /* Auto-negotiate */
1058 {MIIM_STATUS, miim_read, &mii_parse_sr},
1059 /* Read the status */
1060 {MIIM_88E1011_PHY_STATUS, miim_read,
1061 &mii_parse_88E1011_psr},
1062 {miim_end,}
1063 },
1064 (struct phy_cmd[]){ /* shutdown */
1065 {miim_end,}
1066 },
wdenkbfad55d2005-03-14 23:56:42 +00001067};
1068
Andy Fleming239e75f2006-09-13 10:34:18 -05001069static unsigned int m88e1145_setmode(uint mii_reg, struct tsec_private *priv)
1070{
Andy Fleming239e75f2006-09-13 10:34:18 -05001071 uint mii_data = read_phy_reg(priv, mii_reg);
1072
Andy Fleming239e75f2006-09-13 10:34:18 -05001073 /* Setting MIIM_88E1145_PHY_EXT_CR */
1074 if (priv->flags & TSEC_REDUCED)
1075 return mii_data |
Jon Loeligerb7ced082006-10-10 17:03:43 -05001076 MIIM_M88E1145_RGMII_RX_DELAY | MIIM_M88E1145_RGMII_TX_DELAY;
Andy Fleming239e75f2006-09-13 10:34:18 -05001077 else
1078 return mii_data;
1079}
1080
1081static struct phy_info phy_info_M88E1145 = {
1082 0x01410cd,
1083 "Marvell 88E1145",
1084 4,
Jon Loeligerb7ced082006-10-10 17:03:43 -05001085 (struct phy_cmd[]){ /* config */
Andy Fleming180d03a2007-05-08 17:23:02 -05001086 /* Reset the PHY */
1087 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1088
Jon Loeligerb7ced082006-10-10 17:03:43 -05001089 /* Errata E0, E1 */
1090 {29, 0x001b, NULL},
1091 {30, 0x418f, NULL},
1092 {29, 0x0016, NULL},
1093 {30, 0xa2da, NULL},
Andy Fleming239e75f2006-09-13 10:34:18 -05001094
Andy Fleming180d03a2007-05-08 17:23:02 -05001095 /* Configure the PHY */
Jon Loeligerb7ced082006-10-10 17:03:43 -05001096 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1097 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1098 {MIIM_88E1011_PHY_SCR, MIIM_88E1011_PHY_MDI_X_AUTO,
1099 NULL},
1100 {MIIM_88E1145_PHY_EXT_CR, 0, &m88e1145_setmode},
1101 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1102 {MIIM_CONTROL, MIIM_CONTROL_INIT, NULL},
1103 {miim_end,}
1104 },
1105 (struct phy_cmd[]){ /* startup */
1106 /* Status is read once to clear old link state */
1107 {MIIM_STATUS, miim_read, NULL},
1108 /* Auto-negotiate */
1109 {MIIM_STATUS, miim_read, &mii_parse_sr},
1110 {MIIM_88E1111_PHY_LED_CONTROL,
1111 MIIM_88E1111_PHY_LED_DIRECT, NULL},
1112 /* Read the Status */
1113 {MIIM_88E1011_PHY_STATUS, miim_read,
1114 &mii_parse_88E1011_psr},
1115 {miim_end,}
1116 },
1117 (struct phy_cmd[]){ /* shutdown */
1118 {miim_end,}
1119 },
Andy Fleming239e75f2006-09-13 10:34:18 -05001120};
1121
wdenka445ddf2004-06-09 00:34:46 +00001122struct phy_info phy_info_cis8204 = {
1123 0x3f11,
1124 "Cicada Cis8204",
1125 6,
Jon Loeligerb7ced082006-10-10 17:03:43 -05001126 (struct phy_cmd[]){ /* config */
1127 /* Override PHY config settings */
1128 {MIIM_CIS8201_AUX_CONSTAT,
1129 MIIM_CIS8201_AUXCONSTAT_INIT, NULL},
1130 /* Configure some basic stuff */
1131 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1132 {MIIM_CIS8204_SLED_CON, MIIM_CIS8204_SLEDCON_INIT,
1133 &mii_cis8204_fixled},
1134 {MIIM_CIS8204_EPHY_CON, MIIM_CIS8204_EPHYCON_INIT,
1135 &mii_cis8204_setmode},
1136 {miim_end,}
1137 },
1138 (struct phy_cmd[]){ /* startup */
1139 /* Read the Status (2x to make sure link is right) */
1140 {MIIM_STATUS, miim_read, NULL},
1141 /* Auto-negotiate */
1142 {MIIM_STATUS, miim_read, &mii_parse_sr},
1143 /* Read the status */
1144 {MIIM_CIS8201_AUX_CONSTAT, miim_read,
1145 &mii_parse_cis8201},
1146 {miim_end,}
1147 },
1148 (struct phy_cmd[]){ /* shutdown */
1149 {miim_end,}
1150 },
wdenka445ddf2004-06-09 00:34:46 +00001151};
1152
1153/* Cicada 8201 */
1154struct phy_info phy_info_cis8201 = {
1155 0xfc41,
1156 "CIS8201",
1157 4,
Jon Loeligerb7ced082006-10-10 17:03:43 -05001158 (struct phy_cmd[]){ /* config */
1159 /* Override PHY config settings */
1160 {MIIM_CIS8201_AUX_CONSTAT,
1161 MIIM_CIS8201_AUXCONSTAT_INIT, NULL},
1162 /* Set up the interface mode */
1163 {MIIM_CIS8201_EXT_CON1, MIIM_CIS8201_EXTCON1_INIT,
1164 NULL},
1165 /* Configure some basic stuff */
1166 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1167 {miim_end,}
1168 },
1169 (struct phy_cmd[]){ /* startup */
1170 /* Read the Status (2x to make sure link is right) */
1171 {MIIM_STATUS, miim_read, NULL},
1172 /* Auto-negotiate */
1173 {MIIM_STATUS, miim_read, &mii_parse_sr},
1174 /* Read the status */
1175 {MIIM_CIS8201_AUX_CONSTAT, miim_read,
1176 &mii_parse_cis8201},
1177 {miim_end,}
1178 },
1179 (struct phy_cmd[]){ /* shutdown */
1180 {miim_end,}
1181 },
wdenka445ddf2004-06-09 00:34:46 +00001182};
Jon Loeliger5c8aa972006-04-26 17:58:56 -05001183struct phy_info phy_info_VSC8244 = {
Jon Loeligerb7ced082006-10-10 17:03:43 -05001184 0x3f1b,
1185 "Vitesse VSC8244",
1186 6,
1187 (struct phy_cmd[]){ /* config */
1188 /* Override PHY config settings */
1189 /* Configure some basic stuff */
1190 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1191 {miim_end,}
1192 },
1193 (struct phy_cmd[]){ /* startup */
1194 /* Read the Status (2x to make sure link is right) */
1195 {MIIM_STATUS, miim_read, NULL},
1196 /* Auto-negotiate */
1197 {MIIM_STATUS, miim_read, &mii_parse_sr},
1198 /* Read the status */
1199 {MIIM_VSC8244_AUX_CONSTAT, miim_read,
1200 &mii_parse_vsc8244},
1201 {miim_end,}
1202 },
1203 (struct phy_cmd[]){ /* shutdown */
1204 {miim_end,}
1205 },
Jon Loeliger5c8aa972006-04-26 17:58:56 -05001206};
wdenka445ddf2004-06-09 00:34:46 +00001207
wdenka445ddf2004-06-09 00:34:46 +00001208struct phy_info phy_info_dm9161 = {
1209 0x0181b88,
1210 "Davicom DM9161E",
1211 4,
Jon Loeligerb7ced082006-10-10 17:03:43 -05001212 (struct phy_cmd[]){ /* config */
1213 {MIIM_CONTROL, MIIM_DM9161_CR_STOP, NULL},
1214 /* Do not bypass the scrambler/descrambler */
1215 {MIIM_DM9161_SCR, MIIM_DM9161_SCR_INIT, NULL},
1216 /* Clear 10BTCSR to default */
1217 {MIIM_DM9161_10BTCSR, MIIM_DM9161_10BTCSR_INIT,
1218 NULL},
1219 /* Configure some basic stuff */
1220 {MIIM_CONTROL, MIIM_CR_INIT, NULL},
1221 /* Restart Auto Negotiation */
1222 {MIIM_CONTROL, MIIM_DM9161_CR_RSTAN, NULL},
1223 {miim_end,}
1224 },
1225 (struct phy_cmd[]){ /* startup */
1226 /* Status is read once to clear old link state */
1227 {MIIM_STATUS, miim_read, NULL},
1228 /* Auto-negotiate */
1229 {MIIM_STATUS, miim_read, &mii_parse_sr},
1230 /* Read the status */
1231 {MIIM_DM9161_SCSR, miim_read,
1232 &mii_parse_dm9161_scsr},
1233 {miim_end,}
1234 },
1235 (struct phy_cmd[]){ /* shutdown */
1236 {miim_end,}
1237 },
wdenka445ddf2004-06-09 00:34:46 +00001238};
David Updegraff0451b012007-04-20 14:34:48 -05001239/* a generic flavor. */
1240struct phy_info phy_info_generic = {
1241 0,
1242 "Unknown/Generic PHY",
1243 32,
1244 (struct phy_cmd[]) { /* config */
1245 {PHY_BMCR, PHY_BMCR_RESET, NULL},
1246 {PHY_BMCR, PHY_BMCR_AUTON|PHY_BMCR_RST_NEG, NULL},
1247 {miim_end,}
1248 },
1249 (struct phy_cmd[]) { /* startup */
1250 {PHY_BMSR, miim_read, NULL},
1251 {PHY_BMSR, miim_read, &mii_parse_sr},
1252 {PHY_BMSR, miim_read, &mii_parse_link},
1253 {miim_end,}
1254 },
1255 (struct phy_cmd[]) { /* shutdown */
1256 {miim_end,}
1257 }
1258};
1259
wdenka445ddf2004-06-09 00:34:46 +00001260
wdenkf41ff3b2005-04-04 23:43:44 +00001261uint mii_parse_lxt971_sr2(uint mii_reg, struct tsec_private *priv)
1262{
wdenke085e5b2005-04-05 23:32:21 +00001263 unsigned int speed;
1264 if (priv->link) {
1265 speed = mii_reg & MIIM_LXT971_SR2_SPEED_MASK;
wdenkf41ff3b2005-04-04 23:43:44 +00001266
wdenke085e5b2005-04-05 23:32:21 +00001267 switch (speed) {
1268 case MIIM_LXT971_SR2_10HDX:
1269 priv->speed = 10;
1270 priv->duplexity = 0;
1271 break;
1272 case MIIM_LXT971_SR2_10FDX:
1273 priv->speed = 10;
1274 priv->duplexity = 1;
1275 break;
1276 case MIIM_LXT971_SR2_100HDX:
1277 priv->speed = 100;
1278 priv->duplexity = 0;
urwithsughosh@gmail.com34b3f2e2007-09-10 14:54:56 -04001279 break;
wdenke085e5b2005-04-05 23:32:21 +00001280 default:
1281 priv->speed = 100;
1282 priv->duplexity = 1;
wdenke085e5b2005-04-05 23:32:21 +00001283 }
1284 } else {
1285 priv->speed = 0;
1286 priv->duplexity = 0;
1287 }
wdenkf41ff3b2005-04-04 23:43:44 +00001288
wdenke085e5b2005-04-05 23:32:21 +00001289 return 0;
wdenkf41ff3b2005-04-04 23:43:44 +00001290}
1291
wdenkbfad55d2005-03-14 23:56:42 +00001292static struct phy_info phy_info_lxt971 = {
1293 0x0001378e,
1294 "LXT971",
1295 4,
Jon Loeligerb7ced082006-10-10 17:03:43 -05001296 (struct phy_cmd[]){ /* config */
1297 {MIIM_CR, MIIM_CR_INIT, mii_cr_init}, /* autonegotiate */
1298 {miim_end,}
1299 },
1300 (struct phy_cmd[]){ /* startup - enable interrupts */
1301 /* { 0x12, 0x00f2, NULL }, */
1302 {MIIM_STATUS, miim_read, NULL},
1303 {MIIM_STATUS, miim_read, &mii_parse_sr},
1304 {MIIM_LXT971_SR2, miim_read, &mii_parse_lxt971_sr2},
1305 {miim_end,}
1306 },
1307 (struct phy_cmd[]){ /* shutdown - disable interrupts */
1308 {miim_end,}
1309 },
wdenkbfad55d2005-03-14 23:56:42 +00001310};
1311
Wolfgang Denkf0c4e462006-03-12 22:50:55 +01001312/* Parse the DP83865's link and auto-neg status register for speed and duplex
Jon Loeligerb7ced082006-10-10 17:03:43 -05001313 * information
1314 */
Wolfgang Denkf0c4e462006-03-12 22:50:55 +01001315uint mii_parse_dp83865_lanr(uint mii_reg, struct tsec_private *priv)
1316{
1317 switch (mii_reg & MIIM_DP83865_SPD_MASK) {
1318
1319 case MIIM_DP83865_SPD_1000:
1320 priv->speed = 1000;
1321 break;
1322
1323 case MIIM_DP83865_SPD_100:
1324 priv->speed = 100;
1325 break;
1326
1327 default:
1328 priv->speed = 10;
1329 break;
1330
1331 }
1332
1333 if (mii_reg & MIIM_DP83865_DPX_FULL)
1334 priv->duplexity = 1;
1335 else
1336 priv->duplexity = 0;
1337
1338 return 0;
1339}
1340
1341struct phy_info phy_info_dp83865 = {
1342 0x20005c7,
1343 "NatSemi DP83865",
1344 4,
Jon Loeligerb7ced082006-10-10 17:03:43 -05001345 (struct phy_cmd[]){ /* config */
1346 {MIIM_CONTROL, MIIM_DP83865_CR_INIT, NULL},
1347 {miim_end,}
1348 },
1349 (struct phy_cmd[]){ /* startup */
1350 /* Status is read once to clear old link state */
1351 {MIIM_STATUS, miim_read, NULL},
1352 /* Auto-negotiate */
1353 {MIIM_STATUS, miim_read, &mii_parse_sr},
1354 /* Read the link and auto-neg status */
1355 {MIIM_DP83865_LANR, miim_read,
1356 &mii_parse_dp83865_lanr},
1357 {miim_end,}
1358 },
1359 (struct phy_cmd[]){ /* shutdown */
1360 {miim_end,}
1361 },
Wolfgang Denkf0c4e462006-03-12 22:50:55 +01001362};
1363
wdenka445ddf2004-06-09 00:34:46 +00001364struct phy_info *phy_info[] = {
wdenka445ddf2004-06-09 00:34:46 +00001365 &phy_info_cis8204,
Timur Tabi054838e2006-10-31 18:44:42 -06001366 &phy_info_cis8201,
Paul Gortmaker2bd9f1b2007-01-16 11:38:14 -05001367 &phy_info_BCM5461S,
Joe Hammaned7ad4e2007-04-30 16:47:28 -05001368 &phy_info_BCM5464S,
wdenka445ddf2004-06-09 00:34:46 +00001369 &phy_info_M88E1011S,
wdenkbfad55d2005-03-14 23:56:42 +00001370 &phy_info_M88E1111S,
Andy Fleming239e75f2006-09-13 10:34:18 -05001371 &phy_info_M88E1145,
Wolfgang Denk15e87572007-08-06 01:01:49 +02001372 &phy_info_M88E1149S,
wdenka445ddf2004-06-09 00:34:46 +00001373 &phy_info_dm9161,
wdenkbfad55d2005-03-14 23:56:42 +00001374 &phy_info_lxt971,
Jon Loeliger5c8aa972006-04-26 17:58:56 -05001375 &phy_info_VSC8244,
Wolfgang Denkf0c4e462006-03-12 22:50:55 +01001376 &phy_info_dp83865,
David Updegraff0451b012007-04-20 14:34:48 -05001377 &phy_info_generic,
wdenka445ddf2004-06-09 00:34:46 +00001378 NULL
1379};
1380
wdenka445ddf2004-06-09 00:34:46 +00001381/* Grab the identifier of the device's PHY, and search through
wdenkbfad55d2005-03-14 23:56:42 +00001382 * all of the known PHYs to see if one matches. If so, return
Jon Loeligerb7ced082006-10-10 17:03:43 -05001383 * it, if not, return NULL
1384 */
1385struct phy_info *get_phy_info(struct eth_device *dev)
wdenka445ddf2004-06-09 00:34:46 +00001386{
1387 struct tsec_private *priv = (struct tsec_private *)dev->priv;
1388 uint phy_reg, phy_ID;
1389 int i;
1390 struct phy_info *theInfo = NULL;
1391
1392 /* Grab the bits from PHYIR1, and put them in the upper half */
1393 phy_reg = read_phy_reg(priv, MIIM_PHYIR1);
1394 phy_ID = (phy_reg & 0xffff) << 16;
1395
1396 /* Grab the bits from PHYIR2, and put them in the lower half */
1397 phy_reg = read_phy_reg(priv, MIIM_PHYIR2);
1398 phy_ID |= (phy_reg & 0xffff);
1399
1400 /* loop through all the known PHY types, and find one that */
1401 /* matches the ID we read from the PHY. */
Jon Loeligerb7ced082006-10-10 17:03:43 -05001402 for (i = 0; phy_info[i]; i++) {
Andy Flemingb2d14f42007-05-09 00:54:20 -05001403 if (phy_info[i]->id == (phy_ID >> phy_info[i]->shift)) {
wdenka445ddf2004-06-09 00:34:46 +00001404 theInfo = phy_info[i];
Andy Flemingb2d14f42007-05-09 00:54:20 -05001405 break;
1406 }
wdenka445ddf2004-06-09 00:34:46 +00001407 }
1408
Jon Loeligerb7ced082006-10-10 17:03:43 -05001409 if (theInfo == NULL) {
wdenka445ddf2004-06-09 00:34:46 +00001410 printf("%s: PHY id %x is not supported!\n", dev->name, phy_ID);
1411 return NULL;
1412 } else {
Stefan Roesec0dc34f2005-09-21 18:20:22 +02001413 debug("%s: PHY is %s (%x)\n", dev->name, theInfo->name, phy_ID);
wdenka445ddf2004-06-09 00:34:46 +00001414 }
1415
1416 return theInfo;
1417}
1418
wdenka445ddf2004-06-09 00:34:46 +00001419/* Execute the given series of commands on the given device's
Jon Loeligerb7ced082006-10-10 17:03:43 -05001420 * PHY, running functions as necessary
1421 */
wdenka445ddf2004-06-09 00:34:46 +00001422void phy_run_commands(struct tsec_private *priv, struct phy_cmd *cmd)
1423{
1424 int i;
1425 uint result;
1426 volatile tsec_t *phyregs = priv->phyregs;
1427
1428 phyregs->miimcfg = MIIMCFG_RESET;
1429
1430 phyregs->miimcfg = MIIMCFG_INIT_VALUE;
1431
Jon Loeligerb7ced082006-10-10 17:03:43 -05001432 while (phyregs->miimind & MIIMIND_BUSY) ;
wdenka445ddf2004-06-09 00:34:46 +00001433
Jon Loeligerb7ced082006-10-10 17:03:43 -05001434 for (i = 0; cmd->mii_reg != miim_end; i++) {
1435 if (cmd->mii_data == miim_read) {
wdenka445ddf2004-06-09 00:34:46 +00001436 result = read_phy_reg(priv, cmd->mii_reg);
1437
Jon Loeligerb7ced082006-10-10 17:03:43 -05001438 if (cmd->funct != NULL)
1439 (*(cmd->funct)) (result, priv);
wdenka445ddf2004-06-09 00:34:46 +00001440
1441 } else {
Jon Loeligerb7ced082006-10-10 17:03:43 -05001442 if (cmd->funct != NULL)
1443 result = (*(cmd->funct)) (cmd->mii_reg, priv);
wdenka445ddf2004-06-09 00:34:46 +00001444 else
1445 result = cmd->mii_data;
1446
1447 write_phy_reg(priv, cmd->mii_reg, result);
1448
1449 }
1450 cmd++;
1451 }
1452}
1453
wdenka445ddf2004-06-09 00:34:46 +00001454/* Relocate the function pointers in the phy cmd lists */
1455static void relocate_cmds(void)
1456{
1457 struct phy_cmd **cmdlistptr;
1458 struct phy_cmd *cmd;
Jon Loeligerb7ced082006-10-10 17:03:43 -05001459 int i, j, k;
wdenka445ddf2004-06-09 00:34:46 +00001460
Jon Loeligerb7ced082006-10-10 17:03:43 -05001461 for (i = 0; phy_info[i]; i++) {
wdenka445ddf2004-06-09 00:34:46 +00001462 /* First thing's first: relocate the pointers to the
1463 * PHY command structures (the structs were done) */
Jon Loeligerb7ced082006-10-10 17:03:43 -05001464 phy_info[i] = (struct phy_info *)((uint) phy_info[i]
1465 + gd->reloc_off);
wdenka445ddf2004-06-09 00:34:46 +00001466 phy_info[i]->name += gd->reloc_off;
1467 phy_info[i]->config =
Jon Loeligerb7ced082006-10-10 17:03:43 -05001468 (struct phy_cmd *)((uint) phy_info[i]->config
1469 + gd->reloc_off);
wdenka445ddf2004-06-09 00:34:46 +00001470 phy_info[i]->startup =
Jon Loeligerb7ced082006-10-10 17:03:43 -05001471 (struct phy_cmd *)((uint) phy_info[i]->startup
1472 + gd->reloc_off);
wdenka445ddf2004-06-09 00:34:46 +00001473 phy_info[i]->shutdown =
Jon Loeligerb7ced082006-10-10 17:03:43 -05001474 (struct phy_cmd *)((uint) phy_info[i]->shutdown
1475 + gd->reloc_off);
wdenka445ddf2004-06-09 00:34:46 +00001476
1477 cmdlistptr = &phy_info[i]->config;
Jon Loeligerb7ced082006-10-10 17:03:43 -05001478 j = 0;
1479 for (; cmdlistptr <= &phy_info[i]->shutdown; cmdlistptr++) {
1480 k = 0;
1481 for (cmd = *cmdlistptr;
1482 cmd->mii_reg != miim_end;
1483 cmd++) {
wdenka445ddf2004-06-09 00:34:46 +00001484 /* Only relocate non-NULL pointers */
Jon Loeligerb7ced082006-10-10 17:03:43 -05001485 if (cmd->funct)
wdenka445ddf2004-06-09 00:34:46 +00001486 cmd->funct += gd->reloc_off;
1487
1488 k++;
1489 }
1490 j++;
1491 }
1492 }
1493
1494 relocated = 1;
wdenk78924a72004-04-18 21:45:42 +00001495}
1496
Jon Loeliger82ecaad2007-07-09 17:39:42 -05001497#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) \
Marian Balakowiczaab8c492005-10-28 22:30:33 +02001498 && !defined(BITBANGMII)
wdenka445ddf2004-06-09 00:34:46 +00001499
Jon Loeligerb7ced082006-10-10 17:03:43 -05001500struct tsec_private *get_priv_for_phy(unsigned char phyaddr)
wdenka445ddf2004-06-09 00:34:46 +00001501{
1502 int i;
1503
Jon Loeligerb7ced082006-10-10 17:03:43 -05001504 for (i = 0; i < MAXCONTROLLERS; i++) {
1505 if (privlist[i]->phyaddr == phyaddr)
wdenka445ddf2004-06-09 00:34:46 +00001506 return privlist[i];
1507 }
1508
1509 return NULL;
1510}
1511
wdenk78924a72004-04-18 21:45:42 +00001512/*
1513 * Read a MII PHY register.
1514 *
1515 * Returns:
wdenka445ddf2004-06-09 00:34:46 +00001516 * 0 on success
wdenk78924a72004-04-18 21:45:42 +00001517 */
Marian Balakowiczaab8c492005-10-28 22:30:33 +02001518static int tsec_miiphy_read(char *devname, unsigned char addr,
Jon Loeligerb7ced082006-10-10 17:03:43 -05001519 unsigned char reg, unsigned short *value)
wdenk78924a72004-04-18 21:45:42 +00001520{
wdenka445ddf2004-06-09 00:34:46 +00001521 unsigned short ret;
1522 struct tsec_private *priv = get_priv_for_phy(addr);
wdenk78924a72004-04-18 21:45:42 +00001523
Jon Loeligerb7ced082006-10-10 17:03:43 -05001524 if (NULL == priv) {
wdenka445ddf2004-06-09 00:34:46 +00001525 printf("Can't read PHY at address %d\n", addr);
1526 return -1;
1527 }
1528
1529 ret = (unsigned short)read_phy_reg(priv, reg);
1530 *value = ret;
wdenk78924a72004-04-18 21:45:42 +00001531
1532 return 0;
1533}
1534
1535/*
1536 * Write a MII PHY register.
1537 *
1538 * Returns:
wdenka445ddf2004-06-09 00:34:46 +00001539 * 0 on success
wdenk78924a72004-04-18 21:45:42 +00001540 */
Marian Balakowiczaab8c492005-10-28 22:30:33 +02001541static int tsec_miiphy_write(char *devname, unsigned char addr,
Jon Loeligerb7ced082006-10-10 17:03:43 -05001542 unsigned char reg, unsigned short value)
wdenk78924a72004-04-18 21:45:42 +00001543{
wdenka445ddf2004-06-09 00:34:46 +00001544 struct tsec_private *priv = get_priv_for_phy(addr);
1545
Jon Loeligerb7ced082006-10-10 17:03:43 -05001546 if (NULL == priv) {
wdenka445ddf2004-06-09 00:34:46 +00001547 printf("Can't write PHY at address %d\n", addr);
1548 return -1;
1549 }
wdenk78924a72004-04-18 21:45:42 +00001550
wdenka445ddf2004-06-09 00:34:46 +00001551 write_phy_reg(priv, reg, value);
wdenk78924a72004-04-18 21:45:42 +00001552
1553 return 0;
wdenk9c53f402003-10-15 23:53:47 +00001554}
wdenka445ddf2004-06-09 00:34:46 +00001555
Jon Loeliger82ecaad2007-07-09 17:39:42 -05001556#endif
wdenka445ddf2004-06-09 00:34:46 +00001557
David Updegraff7280da72007-06-11 10:41:07 -05001558#ifdef CONFIG_MCAST_TFTP
1559
1560/* CREDITS: linux gianfar driver, slightly adjusted... thanx. */
1561
1562/* Set the appropriate hash bit for the given addr */
1563
1564/* The algorithm works like so:
1565 * 1) Take the Destination Address (ie the multicast address), and
1566 * do a CRC on it (little endian), and reverse the bits of the
1567 * result.
1568 * 2) Use the 8 most significant bits as a hash into a 256-entry
1569 * table. The table is controlled through 8 32-bit registers:
1570 * gaddr0-7. gaddr0's MSB is entry 0, and gaddr7's LSB is
1571 * gaddr7. This means that the 3 most significant bits in the
1572 * hash index which gaddr register to use, and the 5 other bits
1573 * indicate which bit (assuming an IBM numbering scheme, which
1574 * for PowerPC (tm) is usually the case) in the tregister holds
1575 * the entry. */
1576static int
1577tsec_mcast_addr (struct eth_device *dev, u8 mcast_mac, u8 set)
1578{
1579 struct tsec_private *priv = privlist[1];
1580 volatile tsec_t *regs = priv->regs;
1581 volatile u32 *reg_array, value;
1582 u8 result, whichbit, whichreg;
1583
1584 result = (u8)((ether_crc(MAC_ADDR_LEN,mcast_mac) >> 24) & 0xff);
1585 whichbit = result & 0x1f; /* the 5 LSB = which bit to set */
1586 whichreg = result >> 5; /* the 3 MSB = which reg to set it in */
1587 value = (1 << (31-whichbit));
1588
1589 reg_array = &(regs->hash.gaddr0);
1590
1591 if (set) {
1592 reg_array[whichreg] |= value;
1593 } else {
1594 reg_array[whichreg] &= ~value;
1595 }
1596 return 0;
1597}
1598#endif /* Multicast TFTP ? */
1599
wdenk9c53f402003-10-15 23:53:47 +00001600#endif /* CONFIG_TSEC_ENET */