blob: ca6284b72653c0febbebb9b89c7a791be0465d41 [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>
19
20#if defined(CONFIG_TSEC_ENET)
21#include "tsec.h"
Marian Balakowicz63ff0042005-10-28 22:30:33 +020022#include "miiphy.h"
wdenk42d1f032003-10-15 23:53:47 +000023
Wolfgang Denkd87080b2006-03-31 18:32:53 +020024DECLARE_GLOBAL_DATA_PTR;
25
Marian Balakowicz63ff0042005-10-28 22:30:33 +020026#define TX_BUF_CNT 2
wdenk42d1f032003-10-15 23:53:47 +000027
Jon Loeliger89875e92006-10-10 17:03:43 -050028static uint rxIdx; /* index of the current RX buffer */
29static uint txIdx; /* index of the current TX buffer */
wdenk42d1f032003-10-15 23:53:47 +000030
31typedef volatile struct rtxbd {
32 txbd8_t txbd[TX_BUF_CNT];
33 rxbd8_t rxbd[PKTBUFSRX];
Jon Loeliger89875e92006-10-10 17:03:43 -050034} RTXBD;
wdenk42d1f032003-10-15 23:53:47 +000035
wdenk97d80fc2004-06-09 00:34:46 +000036struct tsec_info_struct {
37 unsigned int phyaddr;
Jon Loeligerd9b94f22005-07-25 14:05:07 -050038 u32 flags;
wdenk97d80fc2004-06-09 00:34:46 +000039 unsigned int phyregidx;
40};
41
wdenk97d80fc2004-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 Fleming09f3e092006-09-13 10:34:18 -050044 * device. The information needed is:
wdenk97d80fc2004-06-09 00:34:46 +000045 * phyaddr - The address of the PHY which is attached to
wdenk9d46ea42005-03-14 23:56:42 +000046 * the given device.
wdenk97d80fc2004-06-09 00:34:46 +000047 *
Jon Loeligerd9b94f22005-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.
wdenk97d80fc2004-06-09 00:34:46 +000051 *
52 * phyregidx - This variable specifies which ethernet device
wdenk9d46ea42005-03-14 23:56:42 +000053 * controls the MII Management registers which are connected
Andy Fleming09f3e092006-09-13 10:34:18 -050054 * to the PHY. For now, only TSEC1 (index 0) has
wdenk9d46ea42005-03-14 23:56:42 +000055 * access to the PHYs, so all of the entries have "0".
wdenk97d80fc2004-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 Fleming09f3e092006-09-13 10:34:18 -050060 * TSECn_PHY_ADDR
61 * TSECn_PHYIDX
wdenk97d80fc2004-06-09 00:34:46 +000062 *
Andy Fleming09f3e092006-09-13 10:34:18 -050063 * for n = 1,2,3, etc. And for FEC:
wdenk97d80fc2004-06-09 00:34:46 +000064 * FEC_PHY_ADDR
65 * FEC_PHYIDX
66 */
67static struct tsec_info_struct tsec_info[] = {
Andy Fleming3a790132007-08-15 20:03:25 -050068#ifdef CONFIG_TSEC1
69 {TSEC1_PHY_ADDR, TSEC1_FLAGS, TSEC1_PHYIDX},
Zach Sadeckied810642007-07-31 12:27:25 -050070#else
Jon Loeliger89875e92006-10-10 17:03:43 -050071 {0, 0, 0},
wdenk97d80fc2004-06-09 00:34:46 +000072#endif
Andy Fleming3a790132007-08-15 20:03:25 -050073#ifdef CONFIG_TSEC2
74 {TSEC2_PHY_ADDR, TSEC2_FLAGS, TSEC2_PHYIDX},
Zach Sadeckied810642007-07-31 12:27:25 -050075#else
Jon Loeliger89875e92006-10-10 17:03:43 -050076 {0, 0, 0},
wdenk97d80fc2004-06-09 00:34:46 +000077#endif
78#ifdef CONFIG_MPC85XX_FEC
Andy Fleming3a790132007-08-15 20:03:25 -050079 {FEC_PHY_ADDR, FEC_FLAGS, FEC_PHYIDX},
wdenk9d46ea42005-03-14 23:56:42 +000080#else
Andy Fleming3a790132007-08-15 20:03:25 -050081#ifdef CONFIG_TSEC3
82 {TSEC3_PHY_ADDR, TSEC3_FLAGS, TSEC3_PHYIDX},
Jon Loeligerdebb7352006-04-26 17:58:56 -050083#else
Jon Loeliger89875e92006-10-10 17:03:43 -050084 {0, 0, 0},
Jon Loeligerdebb7352006-04-26 17:58:56 -050085#endif
Andy Fleming3a790132007-08-15 20:03:25 -050086#ifdef CONFIG_TSEC4
87 {TSEC4_PHY_ADDR, TSEC4_FLAGS, TSEC4_PHYIDX},
Jon Loeligerdebb7352006-04-26 17:58:56 -050088#else
Jon Loeliger89875e92006-10-10 17:03:43 -050089 {0, 0, 0},
Andy Fleming3a790132007-08-15 20:03:25 -050090#endif /* CONFIG_TSEC4 */
91#endif /* CONFIG_MPC85XX_FEC */
wdenk97d80fc2004-06-09 00:34:46 +000092};
93
Jon Loeligerd9b94f22005-07-25 14:05:07 -050094#define MAXCONTROLLERS (4)
wdenk97d80fc2004-06-09 00:34:46 +000095
96static int relocated = 0;
97
98static struct tsec_private *privlist[MAXCONTROLLERS];
99
wdenk42d1f032003-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 Loeliger89875e92006-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);
wdenk97d80fc2004-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 Loeliger89875e92006-10-10 17:03:43 -0500116struct phy_info *get_phy_info(struct eth_device *dev);
wdenk97d80fc2004-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 Denk409ecdc2007-11-18 16:36:27 +0100120#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) \
121 && !defined(BITBANGMII)
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200122static int tsec_miiphy_write(char *devname, unsigned char addr,
Jon Loeliger89875e92006-10-10 17:03:43 -0500123 unsigned char reg, unsigned short value);
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200124static int tsec_miiphy_read(char *devname, unsigned char addr,
Jon Loeliger89875e92006-10-10 17:03:43 -0500125 unsigned char reg, unsigned short *value);
Wolfgang Denk409ecdc2007-11-18 16:36:27 +0100126#endif
David Updegraff53a5c422007-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
wdenk7abf0c52004-04-18 21:45:42 +0000130
wdenk97d80fc2004-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 Loeliger89875e92006-10-10 17:03:43 -0500134int tsec_initialize(bd_t * bis, int index, char *devname)
wdenk42d1f032003-10-15 23:53:47 +0000135{
Jon Loeliger89875e92006-10-10 17:03:43 -0500136 struct eth_device *dev;
wdenk42d1f032003-10-15 23:53:47 +0000137 int i;
wdenk97d80fc2004-06-09 00:34:46 +0000138 struct tsec_private *priv;
wdenk42d1f032003-10-15 23:53:47 +0000139
Jon Loeliger89875e92006-10-10 17:03:43 -0500140 dev = (struct eth_device *)malloc(sizeof *dev);
wdenk42d1f032003-10-15 23:53:47 +0000141
Jon Loeliger89875e92006-10-10 17:03:43 -0500142 if (NULL == dev)
wdenk42d1f032003-10-15 23:53:47 +0000143 return 0;
144
145 memset(dev, 0, sizeof *dev);
146
Jon Loeliger89875e92006-10-10 17:03:43 -0500147 priv = (struct tsec_private *)malloc(sizeof(*priv));
wdenk97d80fc2004-06-09 00:34:46 +0000148
Jon Loeliger89875e92006-10-10 17:03:43 -0500149 if (NULL == priv)
wdenk97d80fc2004-06-09 00:34:46 +0000150 return 0;
151
152 privlist[index] = priv;
Jon Loeliger89875e92006-10-10 17:03:43 -0500153 priv->regs = (volatile tsec_t *)(TSEC_BASE_ADDR + index * TSEC_SIZE);
wdenk97d80fc2004-06-09 00:34:46 +0000154 priv->phyregs = (volatile tsec_t *)(TSEC_BASE_ADDR +
Jon Loeliger89875e92006-10-10 17:03:43 -0500155 tsec_info[index].phyregidx *
156 TSEC_SIZE);
wdenk97d80fc2004-06-09 00:34:46 +0000157
158 priv->phyaddr = tsec_info[index].phyaddr;
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500159 priv->flags = tsec_info[index].flags;
wdenk97d80fc2004-06-09 00:34:46 +0000160
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500161 sprintf(dev->name, devname);
wdenk42d1f032003-10-15 23:53:47 +0000162 dev->iobase = 0;
Jon Loeliger89875e92006-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 Updegraff53a5c422007-06-11 10:41:07 -0500168#ifdef CONFIG_MCAST_TFTP
169 dev->mcast = tsec_mcast_addr;
170#endif
wdenk42d1f032003-10-15 23:53:47 +0000171
172 /* Tell u-boot to get the addr from the env */
Jon Loeliger89875e92006-10-10 17:03:43 -0500173 for (i = 0; i < 6; i++)
wdenk42d1f032003-10-15 23:53:47 +0000174 dev->enetaddr[i] = 0;
175
176 eth_register(dev);
177
wdenk97d80fc2004-06-09 00:34:46 +0000178 /* Reset the MAC */
179 priv->regs->maccfg1 |= MACCFG1_SOFT_RESET;
180 priv->regs->maccfg1 &= ~(MACCFG1_SOFT_RESET);
wdenk7abf0c52004-04-18 21:45:42 +0000181
Jon Loeligercb51c0b2007-07-09 17:39:42 -0500182#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) \
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200183 && !defined(BITBANGMII)
184 miiphy_register(dev->name, tsec_miiphy_read, tsec_miiphy_write);
185#endif
186
wdenk97d80fc2004-06-09 00:34:46 +0000187 /* Try to initialize PHY here, and return */
188 return init_phy(dev);
wdenk42d1f032003-10-15 23:53:47 +0000189}
190
wdenk42d1f032003-10-15 23:53:47 +0000191/* Initializes data structures and registers for the controller,
wdenk9d46ea42005-03-14 23:56:42 +0000192 * and brings the interface up. Returns the link status, meaning
wdenk97d80fc2004-06-09 00:34:46 +0000193 * that it returns success if the link is up, failure otherwise.
Jon Loeliger89875e92006-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)
wdenk42d1f032003-10-15 23:53:47 +0000197{
wdenk42d1f032003-10-15 23:53:47 +0000198 uint tempval;
199 char tmpbuf[MAC_ADDR_LEN];
200 int i;
wdenk97d80fc2004-06-09 00:34:46 +0000201 struct tsec_private *priv = (struct tsec_private *)dev->priv;
202 volatile tsec_t *regs = priv->regs;
wdenk42d1f032003-10-15 23:53:47 +0000203
204 /* Make sure the controller is stopped */
205 tsec_halt(dev);
206
wdenk97d80fc2004-06-09 00:34:46 +0000207 /* Init MACCFG2. Defaults to GMII */
wdenk42d1f032003-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 Loeliger89875e92006-10-10 17:03:43 -0500215 for (i = 0; i < MAC_ADDR_LEN; i++) {
wdenk97d80fc2004-06-09 00:34:46 +0000216 tmpbuf[MAC_ADDR_LEN - 1 - i] = dev->enetaddr[i];
wdenk42d1f032003-10-15 23:53:47 +0000217 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500218 regs->macstnaddr1 = *((uint *) (tmpbuf));
wdenk42d1f032003-10-15 23:53:47 +0000219
Jon Loeliger89875e92006-10-10 17:03:43 -0500220 tempval = *((uint *) (tmpbuf + 4));
wdenk42d1f032003-10-15 23:53:47 +0000221
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200222 regs->macstnaddr2 = tempval;
wdenk42d1f032003-10-15 23:53:47 +0000223
wdenk42d1f032003-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 */
wdenk97d80fc2004-06-09 00:34:46 +0000232 startup_tsec(dev);
wdenk42d1f032003-10-15 23:53:47 +0000233
wdenk97d80fc2004-06-09 00:34:46 +0000234 /* If there's no link, fail */
235 return priv->link;
wdenk42d1f032003-10-15 23:53:47 +0000236
237}
238
wdenk97d80fc2004-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 Loeliger89875e92006-10-10 17:03:43 -0500248 int timeout = 1000000;
wdenk97d80fc2004-06-09 00:34:46 +0000249
250 regbase->miimadd = (phyid << 8) | regnum;
251 regbase->miimcon = value;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500252 asm("sync");
wdenk97d80fc2004-06-09 00:34:46 +0000253
Jon Loeliger89875e92006-10-10 17:03:43 -0500254 timeout = 1000000;
255 while ((regbase->miimind & MIIMIND_BUSY) && timeout--) ;
wdenk97d80fc2004-06-09 00:34:46 +0000256}
257
wdenk97d80fc2004-06-09 00:34:46 +0000258/* Reads register regnum on the device's PHY through the
wdenk9d46ea42005-03-14 23:56:42 +0000259 * registers specified in priv. It lowers and raises the read
wdenk97d80fc2004-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)
wdenk42d1f032003-10-15 23:53:47 +0000265{
266 uint value;
wdenk97d80fc2004-06-09 00:34:46 +0000267 volatile tsec_t *regbase = priv->phyregs;
268 uint phyid = priv->phyaddr;
wdenk42d1f032003-10-15 23:53:47 +0000269
wdenk97d80fc2004-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;
wdenk42d1f032003-10-15 23:53:47 +0000273
274 /* Clear the command register, and wait */
275 regbase->miimcom = 0;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500276 asm("sync");
wdenk42d1f032003-10-15 23:53:47 +0000277
278 /* Initiate a read command, and wait */
279 regbase->miimcom = MIIM_READ_COMMAND;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500280 asm("sync");
wdenk42d1f032003-10-15 23:53:47 +0000281
282 /* Wait for the the indication that the read is done */
Jon Loeliger89875e92006-10-10 17:03:43 -0500283 while ((regbase->miimind & (MIIMIND_NOTVALID | MIIMIND_BUSY))) ;
wdenk42d1f032003-10-15 23:53:47 +0000284
285 /* Grab the value read from the PHY */
286 value = regbase->miimstat;
287
288 return value;
289}
290
wdenk97d80fc2004-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)
wdenk42d1f032003-10-15 23:53:47 +0000296{
wdenk97d80fc2004-06-09 00:34:46 +0000297 struct tsec_private *priv = (struct tsec_private *)dev->priv;
298 struct phy_info *curphy;
Jon Loeliger89875e92006-10-10 17:03:43 -0500299 volatile tsec_t *regs = (volatile tsec_t *)(TSEC_BASE_ADDR);
wdenk42d1f032003-10-15 23:53:47 +0000300
301 /* Assign a Physical address to the TBI */
Joe Hammandcb84b72007-08-09 09:08:18 -0500302 regs->tbipa = CFG_TBIPA_VALUE;
Jon Loeliger89875e92006-10-10 17:03:43 -0500303 regs = (volatile tsec_t *)(TSEC_BASE_ADDR + TSEC_SIZE);
Joe Hammandcb84b72007-08-09 09:08:18 -0500304 regs->tbipa = CFG_TBIPA_VALUE;
Jon Loeliger89875e92006-10-10 17:03:43 -0500305 asm("sync");
wdenk3dd7f0f2005-04-04 23:43:44 +0000306
307 /* Reset MII (due to new addresses) */
308 priv->phyregs->miimcfg = MIIMCFG_RESET;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500309 asm("sync");
wdenk3dd7f0f2005-04-04 23:43:44 +0000310 priv->phyregs->miimcfg = MIIMCFG_INIT_VALUE;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500311 asm("sync");
Jon Loeliger89875e92006-10-10 17:03:43 -0500312 while (priv->phyregs->miimind & MIIMIND_BUSY) ;
wdenk42d1f032003-10-15 23:53:47 +0000313
Jon Loeliger89875e92006-10-10 17:03:43 -0500314 if (0 == relocated)
wdenk97d80fc2004-06-09 00:34:46 +0000315 relocate_cmds();
wdenk42d1f032003-10-15 23:53:47 +0000316
wdenk97d80fc2004-06-09 00:34:46 +0000317 /* Get the cmd structure corresponding to the attached
318 * PHY */
319 curphy = get_phy_info(dev);
wdenk42d1f032003-10-15 23:53:47 +0000320
Ben Warren4653f912006-10-26 14:38:25 -0400321 if (curphy == NULL) {
322 priv->phyinfo = NULL;
wdenk97d80fc2004-06-09 00:34:46 +0000323 printf("%s: No PHY found\n", dev->name);
wdenk42d1f032003-10-15 23:53:47 +0000324
wdenk97d80fc2004-06-09 00:34:46 +0000325 return 0;
wdenk42d1f032003-10-15 23:53:47 +0000326 }
327
wdenk97d80fc2004-06-09 00:34:46 +0000328 priv->phyinfo = curphy;
wdenk42d1f032003-10-15 23:53:47 +0000329
wdenk97d80fc2004-06-09 00:34:46 +0000330 phy_run_commands(priv, priv->phyinfo->config);
wdenk42d1f032003-10-15 23:53:47 +0000331
wdenk97d80fc2004-06-09 00:34:46 +0000332 return 1;
wdenk42d1f032003-10-15 23:53:47 +0000333}
334
Jon Loeliger89875e92006-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)
wdenk97d80fc2004-06-09 00:34:46 +0000340{
Jon Loeliger89875e92006-10-10 17:03:43 -0500341 if (priv->flags & TSEC_GIGABIT)
wdenk97d80fc2004-06-09 00:34:46 +0000342 return MIIM_CONTROL_INIT;
343 else
344 return MIIM_CR_INIT;
345}
346
wdenk97d80fc2004-06-09 00:34:46 +0000347/* Parse the status register for link, and then do
Jon Loeliger89875e92006-10-10 17:03:43 -0500348 * auto-negotiation
349 */
350uint mii_parse_sr(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000351{
Stefan Roese5810dc32005-09-21 18:20:22 +0200352 /*
Andy Fleming7613afd2007-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 Roese5810dc32005-09-21 18:20:22 +0200355 */
356 mii_reg = read_phy_reg(priv, MIIM_STATUS);
Andy Fleming7613afd2007-08-15 20:03:44 -0500357 if ((mii_reg & MIIM_STATUS_LINK) && (mii_reg & PHY_BMSR_AUTN_ABLE)
Jon Loeliger89875e92006-10-10 17:03:43 -0500358 && !(mii_reg & PHY_BMSR_AUTN_COMP)) {
Stefan Roese5810dc32005-09-21 18:20:22 +0200359 int i = 0;
wdenk97d80fc2004-06-09 00:34:46 +0000360
Jon Loeliger89875e92006-10-10 17:03:43 -0500361 puts("Waiting for PHY auto negotiation to complete");
Andy Fleming7613afd2007-08-15 20:03:44 -0500362 while (!(mii_reg & PHY_BMSR_AUTN_COMP)) {
Stefan Roese5810dc32005-09-21 18:20:22 +0200363 /*
364 * Timeout reached ?
365 */
366 if (i > PHY_AUTONEGOTIATE_TIMEOUT) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500367 puts(" TIMEOUT !\n");
Stefan Roese5810dc32005-09-21 18:20:22 +0200368 priv->link = 0;
Jin Zhengxiong-R64188fcfb9a52006-06-27 18:12:23 +0800369 return 0;
Stefan Roese5810dc32005-09-21 18:20:22 +0200370 }
wdenk97d80fc2004-06-09 00:34:46 +0000371
Stefan Roese5810dc32005-09-21 18:20:22 +0200372 if ((i++ % 1000) == 0) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500373 putc('.');
Stefan Roese5810dc32005-09-21 18:20:22 +0200374 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500375 udelay(1000); /* 1 ms */
wdenk97d80fc2004-06-09 00:34:46 +0000376 mii_reg = read_phy_reg(priv, MIIM_STATUS);
Stefan Roese5810dc32005-09-21 18:20:22 +0200377 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500378 puts(" done\n");
Stefan Roese5810dc32005-09-21 18:20:22 +0200379 priv->link = 1;
Jon Loeliger89875e92006-10-10 17:03:43 -0500380 udelay(500000); /* another 500 ms (results in faster booting) */
Stefan Roese5810dc32005-09-21 18:20:22 +0200381 } else {
Andy Fleming7613afd2007-08-15 20:03:44 -0500382 if (mii_reg & MIIM_STATUS_LINK)
383 priv->link = 1;
384 else
385 priv->link = 0;
wdenk97d80fc2004-06-09 00:34:46 +0000386 }
387
388 return 0;
389}
390
David Updegraffaf1c2b82007-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 Gortmaker91e25762007-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}
wdenk97d80fc2004-06-09 00:34:46 +0000516/* Parse the 88E1011's status register for speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -0500517 * information
518 */
519uint mii_parse_88E1011_psr(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000520{
521 uint speed;
522
Stefan Roese5810dc32005-09-21 18:20:22 +0200523 mii_reg = read_phy_reg(priv, MIIM_88E1011_PHY_STATUS);
524
Andy Fleming7613afd2007-08-15 20:03:44 -0500525 if ((mii_reg & MIIM_88E1011_PHYSTAT_LINK) &&
526 !(mii_reg & MIIM_88E1011_PHYSTAT_SPDDONE)) {
Stefan Roese5810dc32005-09-21 18:20:22 +0200527 int i = 0;
528
Jon Loeliger89875e92006-10-10 17:03:43 -0500529 puts("Waiting for PHY realtime link");
Andy Fleming7613afd2007-08-15 20:03:44 -0500530 while (!(mii_reg & MIIM_88E1011_PHYSTAT_SPDDONE)) {
531 /* Timeout reached ? */
Stefan Roese5810dc32005-09-21 18:20:22 +0200532 if (i > PHY_AUTONEGOTIATE_TIMEOUT) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500533 puts(" TIMEOUT !\n");
Stefan Roese5810dc32005-09-21 18:20:22 +0200534 priv->link = 0;
535 break;
536 }
537
538 if ((i++ % 1000) == 0) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500539 putc('.');
Stefan Roese5810dc32005-09-21 18:20:22 +0200540 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500541 udelay(1000); /* 1 ms */
Stefan Roese5810dc32005-09-21 18:20:22 +0200542 mii_reg = read_phy_reg(priv, MIIM_88E1011_PHY_STATUS);
543 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500544 puts(" done\n");
545 udelay(500000); /* another 500 ms (results in faster booting) */
Andy Fleming7613afd2007-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 Roese5810dc32005-09-21 18:20:22 +0200551 }
552
Jon Loeliger89875e92006-10-10 17:03:43 -0500553 if (mii_reg & MIIM_88E1011_PHYSTAT_DUPLEX)
wdenk97d80fc2004-06-09 00:34:46 +0000554 priv->duplexity = 1;
555 else
556 priv->duplexity = 0;
557
Jon Loeliger89875e92006-10-10 17:03:43 -0500558 speed = (mii_reg & MIIM_88E1011_PHYSTAT_SPEED);
wdenk97d80fc2004-06-09 00:34:46 +0000559
Jon Loeliger89875e92006-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;
wdenk97d80fc2004-06-09 00:34:46 +0000569 }
570
571 return 0;
572}
573
wdenk97d80fc2004-06-09 00:34:46 +0000574/* Parse the cis8201's status register for speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -0500575 * information
576 */
577uint mii_parse_cis8201(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000578{
579 uint speed;
580
Jon Loeliger89875e92006-10-10 17:03:43 -0500581 if (mii_reg & MIIM_CIS8201_AUXCONSTAT_DUPLEX)
wdenk97d80fc2004-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 Loeliger89875e92006-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;
wdenk97d80fc2004-06-09 00:34:46 +0000597 }
598
599 return 0;
600}
Jon Loeliger89875e92006-10-10 17:03:43 -0500601
Jon Loeligerdebb7352006-04-26 17:58:56 -0500602/* Parse the vsc8244's status register for speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -0500603 * information
604 */
605uint mii_parse_vsc8244(uint mii_reg, struct tsec_private * priv)
Jon Loeligerdebb7352006-04-26 17:58:56 -0500606{
Jon Loeliger89875e92006-10-10 17:03:43 -0500607 uint speed;
608
609 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;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500628}
wdenk97d80fc2004-06-09 00:34:46 +0000629
wdenk97d80fc2004-06-09 00:34:46 +0000630/* Parse the DM9161's status register for speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -0500631 * information
632 */
633uint mii_parse_dm9161_scsr(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000634{
Jon Loeliger89875e92006-10-10 17:03:43 -0500635 if (mii_reg & (MIIM_DM9161_SCSR_100F | MIIM_DM9161_SCSR_100H))
wdenk97d80fc2004-06-09 00:34:46 +0000636 priv->speed = 100;
637 else
638 priv->speed = 10;
639
Jon Loeliger89875e92006-10-10 17:03:43 -0500640 if (mii_reg & (MIIM_DM9161_SCSR_100F | MIIM_DM9161_SCSR_10F))
wdenk97d80fc2004-06-09 00:34:46 +0000641 priv->duplexity = 1;
642 else
643 priv->duplexity = 0;
644
645 return 0;
646}
647
Jon Loeliger89875e92006-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)
wdenk97d80fc2004-06-09 00:34:46 +0000652{
653 uint phyid;
654 volatile tsec_t *regbase = priv->phyregs;
Jon Loeliger89875e92006-10-10 17:03:43 -0500655 int timeout = 1000000;
wdenk97d80fc2004-06-09 00:34:46 +0000656
Jon Loeliger89875e92006-10-10 17:03:43 -0500657 for (phyid = 0; phyid < 4; phyid++) {
wdenk97d80fc2004-06-09 00:34:46 +0000658 regbase->miimadd = (phyid << 8) | mii_reg;
659 regbase->miimcon = MIIM_CIS8204_SLEDCON_INIT;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500660 asm("sync");
wdenk97d80fc2004-06-09 00:34:46 +0000661
Jon Loeliger89875e92006-10-10 17:03:43 -0500662 timeout = 1000000;
663 while ((regbase->miimind & MIIMIND_BUSY) && timeout--) ;
wdenk97d80fc2004-06-09 00:34:46 +0000664 }
665
666 return MIIM_CIS8204_SLEDCON_INIT;
667}
668
Jon Loeliger89875e92006-10-10 17:03:43 -0500669uint mii_cis8204_setmode(uint mii_reg, struct tsec_private * priv)
Jon Loeligerd9b94f22005-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}
wdenk97d80fc2004-06-09 00:34:46 +0000676
677/* Initialized required registers to appropriate values, zeroing
678 * those we don't care about (unless zero is bad, in which case,
Jon Loeliger89875e92006-10-10 17:03:43 -0500679 * choose a more appropriate value)
680 */
681static void init_registers(volatile tsec_t * regs)
wdenk42d1f032003-10-15 23:53:47 +0000682{
683 /* Clear IEVENT */
684 regs->ievent = IEVENT_INIT_CLEAR;
685
686 regs->imask = IMASK_INIT_CLEAR;
687
688 regs->hash.iaddr0 = 0;
689 regs->hash.iaddr1 = 0;
690 regs->hash.iaddr2 = 0;
691 regs->hash.iaddr3 = 0;
692 regs->hash.iaddr4 = 0;
693 regs->hash.iaddr5 = 0;
694 regs->hash.iaddr6 = 0;
695 regs->hash.iaddr7 = 0;
696
697 regs->hash.gaddr0 = 0;
698 regs->hash.gaddr1 = 0;
699 regs->hash.gaddr2 = 0;
700 regs->hash.gaddr3 = 0;
701 regs->hash.gaddr4 = 0;
702 regs->hash.gaddr5 = 0;
703 regs->hash.gaddr6 = 0;
704 regs->hash.gaddr7 = 0;
705
706 regs->rctrl = 0x00000000;
707
708 /* Init RMON mib registers */
709 memset((void *)&(regs->rmon), 0, sizeof(rmon_mib_t));
710
711 regs->rmon.cam1 = 0xffffffff;
712 regs->rmon.cam2 = 0xffffffff;
713
714 regs->mrblr = MRBLR_INIT_SETTINGS;
715
716 regs->minflr = MINFLR_INIT_SETTINGS;
717
718 regs->attr = ATTR_INIT_SETTINGS;
719 regs->attreli = ATTRELI_INIT_SETTINGS;
720
721}
722
wdenk97d80fc2004-06-09 00:34:46 +0000723/* Configure maccfg2 based on negotiated speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -0500724 * reported by PHY handling code
725 */
wdenk97d80fc2004-06-09 00:34:46 +0000726static void adjust_link(struct eth_device *dev)
727{
728 struct tsec_private *priv = (struct tsec_private *)dev->priv;
729 volatile tsec_t *regs = priv->regs;
730
Jon Loeliger89875e92006-10-10 17:03:43 -0500731 if (priv->link) {
732 if (priv->duplexity != 0)
wdenk97d80fc2004-06-09 00:34:46 +0000733 regs->maccfg2 |= MACCFG2_FULL_DUPLEX;
734 else
735 regs->maccfg2 &= ~(MACCFG2_FULL_DUPLEX);
736
Jon Loeliger89875e92006-10-10 17:03:43 -0500737 switch (priv->speed) {
738 case 1000:
739 regs->maccfg2 = ((regs->maccfg2 & ~(MACCFG2_IF))
740 | MACCFG2_GMII);
741 break;
742 case 100:
743 case 10:
744 regs->maccfg2 = ((regs->maccfg2 & ~(MACCFG2_IF))
745 | MACCFG2_MII);
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500746
Nick Spencef484dc72006-09-07 07:39:46 -0700747 /* Set R100 bit in all modes although
748 * it is only used in RGMII mode
Jon Loeliger89875e92006-10-10 17:03:43 -0500749 */
Nick Spencef484dc72006-09-07 07:39:46 -0700750 if (priv->speed == 100)
Jon Loeliger89875e92006-10-10 17:03:43 -0500751 regs->ecntrl |= ECNTRL_R100;
752 else
753 regs->ecntrl &= ~(ECNTRL_R100);
754 break;
755 default:
756 printf("%s: Speed was bad\n", dev->name);
757 break;
wdenk97d80fc2004-06-09 00:34:46 +0000758 }
759
760 printf("Speed: %d, %s duplex\n", priv->speed,
Jon Loeliger89875e92006-10-10 17:03:43 -0500761 (priv->duplexity) ? "full" : "half");
wdenk97d80fc2004-06-09 00:34:46 +0000762
763 } else {
764 printf("%s: No link.\n", dev->name);
765 }
766}
767
wdenk97d80fc2004-06-09 00:34:46 +0000768/* Set up the buffers and their descriptors, and bring up the
Jon Loeliger89875e92006-10-10 17:03:43 -0500769 * interface
770 */
wdenk97d80fc2004-06-09 00:34:46 +0000771static void startup_tsec(struct eth_device *dev)
wdenk42d1f032003-10-15 23:53:47 +0000772{
773 int i;
wdenk97d80fc2004-06-09 00:34:46 +0000774 struct tsec_private *priv = (struct tsec_private *)dev->priv;
775 volatile tsec_t *regs = priv->regs;
wdenk42d1f032003-10-15 23:53:47 +0000776
777 /* Point to the buffer descriptors */
778 regs->tbase = (unsigned int)(&rtx.txbd[txIdx]);
779 regs->rbase = (unsigned int)(&rtx.rxbd[rxIdx]);
780
781 /* Initialize the Rx Buffer descriptors */
782 for (i = 0; i < PKTBUFSRX; i++) {
783 rtx.rxbd[i].status = RXBD_EMPTY;
784 rtx.rxbd[i].length = 0;
Jon Loeliger89875e92006-10-10 17:03:43 -0500785 rtx.rxbd[i].bufPtr = (uint) NetRxPackets[i];
wdenk42d1f032003-10-15 23:53:47 +0000786 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500787 rtx.rxbd[PKTBUFSRX - 1].status |= RXBD_WRAP;
wdenk42d1f032003-10-15 23:53:47 +0000788
789 /* Initialize the TX Buffer Descriptors */
Jon Loeliger89875e92006-10-10 17:03:43 -0500790 for (i = 0; i < TX_BUF_CNT; i++) {
wdenk42d1f032003-10-15 23:53:47 +0000791 rtx.txbd[i].status = 0;
792 rtx.txbd[i].length = 0;
793 rtx.txbd[i].bufPtr = 0;
794 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500795 rtx.txbd[TX_BUF_CNT - 1].status |= TXBD_WRAP;
wdenk42d1f032003-10-15 23:53:47 +0000796
wdenk97d80fc2004-06-09 00:34:46 +0000797 /* Start up the PHY */
Ben Warren4653f912006-10-26 14:38:25 -0400798 if(priv->phyinfo)
799 phy_run_commands(priv, priv->phyinfo->startup);
David Updegraffaf1c2b82007-04-20 14:34:48 -0500800
wdenk97d80fc2004-06-09 00:34:46 +0000801 adjust_link(dev);
802
wdenk42d1f032003-10-15 23:53:47 +0000803 /* Enable Transmit and Receive */
804 regs->maccfg1 |= (MACCFG1_RX_EN | MACCFG1_TX_EN);
805
806 /* Tell the DMA it is clear to go */
807 regs->dmactrl |= DMACTRL_INIT_SETTINGS;
808 regs->tstat = TSTAT_CLEAR_THALT;
Dan Wilson5c7ea642007-10-19 11:33:48 -0500809 regs->rstat = RSTAT_CLEAR_RHALT;
wdenk42d1f032003-10-15 23:53:47 +0000810 regs->dmactrl &= ~(DMACTRL_GRS | DMACTRL_GTS);
811}
812
wdenk9d46ea42005-03-14 23:56:42 +0000813/* This returns the status bits of the device. The return value
wdenk42d1f032003-10-15 23:53:47 +0000814 * is never checked, and this is what the 8260 driver did, so we
wdenk9d46ea42005-03-14 23:56:42 +0000815 * do the same. Presumably, this would be zero if there were no
Jon Loeliger89875e92006-10-10 17:03:43 -0500816 * errors
817 */
818static int tsec_send(struct eth_device *dev, volatile void *packet, int length)
wdenk42d1f032003-10-15 23:53:47 +0000819{
820 int i;
821 int result = 0;
wdenk97d80fc2004-06-09 00:34:46 +0000822 struct tsec_private *priv = (struct tsec_private *)dev->priv;
823 volatile tsec_t *regs = priv->regs;
wdenk42d1f032003-10-15 23:53:47 +0000824
825 /* Find an empty buffer descriptor */
Jon Loeliger89875e92006-10-10 17:03:43 -0500826 for (i = 0; rtx.txbd[txIdx].status & TXBD_READY; i++) {
wdenk42d1f032003-10-15 23:53:47 +0000827 if (i >= TOUT_LOOP) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500828 debug("%s: tsec: tx buffers full\n", dev->name);
wdenk42d1f032003-10-15 23:53:47 +0000829 return result;
830 }
831 }
832
Jon Loeliger89875e92006-10-10 17:03:43 -0500833 rtx.txbd[txIdx].bufPtr = (uint) packet;
wdenk42d1f032003-10-15 23:53:47 +0000834 rtx.txbd[txIdx].length = length;
Jon Loeliger89875e92006-10-10 17:03:43 -0500835 rtx.txbd[txIdx].status |=
836 (TXBD_READY | TXBD_LAST | TXBD_CRC | TXBD_INTERRUPT);
wdenk42d1f032003-10-15 23:53:47 +0000837
838 /* Tell the DMA to go */
839 regs->tstat = TSTAT_CLEAR_THALT;
840
841 /* Wait for buffer to be transmitted */
Jon Loeliger89875e92006-10-10 17:03:43 -0500842 for (i = 0; rtx.txbd[txIdx].status & TXBD_READY; i++) {
wdenk42d1f032003-10-15 23:53:47 +0000843 if (i >= TOUT_LOOP) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500844 debug("%s: tsec: tx error\n", dev->name);
wdenk42d1f032003-10-15 23:53:47 +0000845 return result;
846 }
847 }
848
849 txIdx = (txIdx + 1) % TX_BUF_CNT;
850 result = rtx.txbd[txIdx].status & TXBD_STATS;
851
852 return result;
853}
854
Jon Loeliger89875e92006-10-10 17:03:43 -0500855static int tsec_recv(struct eth_device *dev)
wdenk42d1f032003-10-15 23:53:47 +0000856{
857 int length;
wdenk97d80fc2004-06-09 00:34:46 +0000858 struct tsec_private *priv = (struct tsec_private *)dev->priv;
859 volatile tsec_t *regs = priv->regs;
wdenk42d1f032003-10-15 23:53:47 +0000860
Jon Loeliger89875e92006-10-10 17:03:43 -0500861 while (!(rtx.rxbd[rxIdx].status & RXBD_EMPTY)) {
wdenk42d1f032003-10-15 23:53:47 +0000862
863 length = rtx.rxbd[rxIdx].length;
864
865 /* Send the packet up if there were no errors */
866 if (!(rtx.rxbd[rxIdx].status & RXBD_STATS)) {
867 NetReceive(NetRxPackets[rxIdx], length - 4);
wdenk97d80fc2004-06-09 00:34:46 +0000868 } else {
869 printf("Got error %x\n",
Jon Loeliger89875e92006-10-10 17:03:43 -0500870 (rtx.rxbd[rxIdx].status & RXBD_STATS));
wdenk42d1f032003-10-15 23:53:47 +0000871 }
872
873 rtx.rxbd[rxIdx].length = 0;
874
875 /* Set the wrap bit if this is the last element in the list */
Jon Loeliger89875e92006-10-10 17:03:43 -0500876 rtx.rxbd[rxIdx].status =
877 RXBD_EMPTY | (((rxIdx + 1) == PKTBUFSRX) ? RXBD_WRAP : 0);
wdenk42d1f032003-10-15 23:53:47 +0000878
879 rxIdx = (rxIdx + 1) % PKTBUFSRX;
880 }
881
Jon Loeliger89875e92006-10-10 17:03:43 -0500882 if (regs->ievent & IEVENT_BSY) {
wdenk42d1f032003-10-15 23:53:47 +0000883 regs->ievent = IEVENT_BSY;
884 regs->rstat = RSTAT_CLEAR_RHALT;
885 }
886
887 return -1;
888
889}
890
wdenk97d80fc2004-06-09 00:34:46 +0000891/* Stop the interface */
Jon Loeliger89875e92006-10-10 17:03:43 -0500892static void tsec_halt(struct eth_device *dev)
wdenk42d1f032003-10-15 23:53:47 +0000893{
wdenk97d80fc2004-06-09 00:34:46 +0000894 struct tsec_private *priv = (struct tsec_private *)dev->priv;
895 volatile tsec_t *regs = priv->regs;
wdenk42d1f032003-10-15 23:53:47 +0000896
897 regs->dmactrl &= ~(DMACTRL_GRS | DMACTRL_GTS);
898 regs->dmactrl |= (DMACTRL_GRS | DMACTRL_GTS);
899
Jon Loeliger89875e92006-10-10 17:03:43 -0500900 while (!(regs->ievent & (IEVENT_GRSC | IEVENT_GTSC))) ;
wdenk42d1f032003-10-15 23:53:47 +0000901
902 regs->maccfg1 &= ~(MACCFG1_TX_EN | MACCFG1_RX_EN);
903
wdenk97d80fc2004-06-09 00:34:46 +0000904 /* Shut down the PHY, as needed */
Ben Warren4653f912006-10-26 14:38:25 -0400905 if(priv->phyinfo)
906 phy_run_commands(priv, priv->phyinfo->shutdown);
wdenk42d1f032003-10-15 23:53:47 +0000907}
wdenk7abf0c52004-04-18 21:45:42 +0000908
Andy Flemingc7e717e2007-08-03 04:05:25 -0500909struct phy_info phy_info_M88E1149S = {
Wolfgang Denk5728be32007-08-06 01:01:49 +0200910 0x1410ca,
911 "Marvell 88E1149S",
912 4,
913 (struct phy_cmd[]){ /* config */
914 /* Reset and configure the PHY */
915 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
916 {0x1d, 0x1f, NULL},
917 {0x1e, 0x200c, NULL},
918 {0x1d, 0x5, NULL},
919 {0x1e, 0x0, NULL},
920 {0x1e, 0x100, NULL},
921 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
922 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
923 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
924 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
925 {miim_end,}
926 },
927 (struct phy_cmd[]){ /* startup */
928 /* Status is read once to clear old link state */
929 {MIIM_STATUS, miim_read, NULL},
930 /* Auto-negotiate */
931 {MIIM_STATUS, miim_read, &mii_parse_sr},
932 /* Read the status */
933 {MIIM_88E1011_PHY_STATUS, miim_read,
934 &mii_parse_88E1011_psr},
935 {miim_end,}
936 },
937 (struct phy_cmd[]){ /* shutdown */
938 {miim_end,}
939 },
Andy Flemingc7e717e2007-08-03 04:05:25 -0500940};
941
Paul Gortmaker91e25762007-01-16 11:38:14 -0500942/* The 5411 id is 0x206070, the 5421 is 0x2060e0 */
943struct phy_info phy_info_BCM5461S = {
944 0x02060c1, /* 5461 ID */
945 "Broadcom BCM5461S",
946 0, /* not clear to me what minor revisions we can shift away */
947 (struct phy_cmd[]) { /* config */
948 /* Reset and configure the PHY */
949 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
950 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
951 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
952 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
953 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
954 {miim_end,}
955 },
956 (struct phy_cmd[]) { /* startup */
957 /* Status is read once to clear old link state */
958 {MIIM_STATUS, miim_read, NULL},
959 /* Auto-negotiate */
960 {MIIM_STATUS, miim_read, &mii_parse_sr},
961 /* Read the status */
962 {MIIM_BCM54xx_AUXSTATUS, miim_read, &mii_parse_BCM54xx_sr},
963 {miim_end,}
964 },
965 (struct phy_cmd[]) { /* shutdown */
966 {miim_end,}
967 },
968};
969
Joe Hammanc3243cf2007-04-30 16:47:28 -0500970struct phy_info phy_info_BCM5464S = {
971 0x02060b1, /* 5464 ID */
972 "Broadcom BCM5464S",
973 0, /* not clear to me what minor revisions we can shift away */
974 (struct phy_cmd[]) { /* config */
975 /* Reset and configure the PHY */
976 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
977 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
978 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
979 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
980 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
981 {miim_end,}
982 },
983 (struct phy_cmd[]) { /* startup */
984 /* Status is read once to clear old link state */
985 {MIIM_STATUS, miim_read, NULL},
986 /* Auto-negotiate */
987 {MIIM_STATUS, miim_read, &mii_parse_sr},
988 /* Read the status */
989 {MIIM_BCM54xx_AUXSTATUS, miim_read, &mii_parse_BCM54xx_sr},
990 {miim_end,}
991 },
992 (struct phy_cmd[]) { /* shutdown */
993 {miim_end,}
994 },
995};
996
wdenk97d80fc2004-06-09 00:34:46 +0000997struct phy_info phy_info_M88E1011S = {
998 0x01410c6,
999 "Marvell 88E1011S",
1000 4,
Jon Loeliger89875e92006-10-10 17:03:43 -05001001 (struct phy_cmd[]){ /* config */
1002 /* Reset and configure the PHY */
1003 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1004 {0x1d, 0x1f, NULL},
1005 {0x1e, 0x200c, NULL},
1006 {0x1d, 0x5, NULL},
1007 {0x1e, 0x0, NULL},
1008 {0x1e, 0x100, NULL},
1009 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1010 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1011 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1012 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1013 {miim_end,}
1014 },
1015 (struct phy_cmd[]){ /* startup */
1016 /* Status is read once to clear old link state */
1017 {MIIM_STATUS, miim_read, NULL},
1018 /* Auto-negotiate */
1019 {MIIM_STATUS, miim_read, &mii_parse_sr},
1020 /* Read the status */
1021 {MIIM_88E1011_PHY_STATUS, miim_read,
1022 &mii_parse_88E1011_psr},
1023 {miim_end,}
1024 },
1025 (struct phy_cmd[]){ /* shutdown */
1026 {miim_end,}
1027 },
wdenk97d80fc2004-06-09 00:34:46 +00001028};
1029
wdenk9d46ea42005-03-14 23:56:42 +00001030struct phy_info phy_info_M88E1111S = {
1031 0x01410cc,
1032 "Marvell 88E1111S",
1033 4,
Jon Loeliger89875e92006-10-10 17:03:43 -05001034 (struct phy_cmd[]){ /* config */
1035 /* Reset and configure the PHY */
1036 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
Nick Spencef484dc72006-09-07 07:39:46 -07001037 {0x14, 0x0cd2, NULL}, /* Delay RGMII TX and RX */
Jon Loeliger89875e92006-10-10 17:03:43 -05001038 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1039 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1040 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1041 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1042 {miim_end,}
1043 },
1044 (struct phy_cmd[]){ /* startup */
1045 /* Status is read once to clear old link state */
1046 {MIIM_STATUS, miim_read, NULL},
1047 /* Auto-negotiate */
1048 {MIIM_STATUS, miim_read, &mii_parse_sr},
1049 /* Read the status */
1050 {MIIM_88E1011_PHY_STATUS, miim_read,
1051 &mii_parse_88E1011_psr},
1052 {miim_end,}
1053 },
1054 (struct phy_cmd[]){ /* shutdown */
1055 {miim_end,}
1056 },
wdenk9d46ea42005-03-14 23:56:42 +00001057};
1058
Andy Fleming09f3e092006-09-13 10:34:18 -05001059static unsigned int m88e1145_setmode(uint mii_reg, struct tsec_private *priv)
1060{
Andy Fleming09f3e092006-09-13 10:34:18 -05001061 uint mii_data = read_phy_reg(priv, mii_reg);
1062
Andy Fleming09f3e092006-09-13 10:34:18 -05001063 /* Setting MIIM_88E1145_PHY_EXT_CR */
1064 if (priv->flags & TSEC_REDUCED)
1065 return mii_data |
Jon Loeliger89875e92006-10-10 17:03:43 -05001066 MIIM_M88E1145_RGMII_RX_DELAY | MIIM_M88E1145_RGMII_TX_DELAY;
Andy Fleming09f3e092006-09-13 10:34:18 -05001067 else
1068 return mii_data;
1069}
1070
1071static struct phy_info phy_info_M88E1145 = {
1072 0x01410cd,
1073 "Marvell 88E1145",
1074 4,
Jon Loeliger89875e92006-10-10 17:03:43 -05001075 (struct phy_cmd[]){ /* config */
Andy Fleming7507d562007-05-08 17:23:02 -05001076 /* Reset the PHY */
1077 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1078
Jon Loeliger89875e92006-10-10 17:03:43 -05001079 /* Errata E0, E1 */
1080 {29, 0x001b, NULL},
1081 {30, 0x418f, NULL},
1082 {29, 0x0016, NULL},
1083 {30, 0xa2da, NULL},
Andy Fleming09f3e092006-09-13 10:34:18 -05001084
Andy Fleming7507d562007-05-08 17:23:02 -05001085 /* Configure the PHY */
Jon Loeliger89875e92006-10-10 17:03:43 -05001086 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1087 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1088 {MIIM_88E1011_PHY_SCR, MIIM_88E1011_PHY_MDI_X_AUTO,
1089 NULL},
1090 {MIIM_88E1145_PHY_EXT_CR, 0, &m88e1145_setmode},
1091 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1092 {MIIM_CONTROL, MIIM_CONTROL_INIT, NULL},
1093 {miim_end,}
1094 },
1095 (struct phy_cmd[]){ /* startup */
1096 /* Status is read once to clear old link state */
1097 {MIIM_STATUS, miim_read, NULL},
1098 /* Auto-negotiate */
1099 {MIIM_STATUS, miim_read, &mii_parse_sr},
1100 {MIIM_88E1111_PHY_LED_CONTROL,
1101 MIIM_88E1111_PHY_LED_DIRECT, NULL},
1102 /* Read the Status */
1103 {MIIM_88E1011_PHY_STATUS, miim_read,
1104 &mii_parse_88E1011_psr},
1105 {miim_end,}
1106 },
1107 (struct phy_cmd[]){ /* shutdown */
1108 {miim_end,}
1109 },
Andy Fleming09f3e092006-09-13 10:34:18 -05001110};
1111
wdenk97d80fc2004-06-09 00:34:46 +00001112struct phy_info phy_info_cis8204 = {
1113 0x3f11,
1114 "Cicada Cis8204",
1115 6,
Jon Loeliger89875e92006-10-10 17:03:43 -05001116 (struct phy_cmd[]){ /* config */
1117 /* Override PHY config settings */
1118 {MIIM_CIS8201_AUX_CONSTAT,
1119 MIIM_CIS8201_AUXCONSTAT_INIT, NULL},
1120 /* Configure some basic stuff */
1121 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1122 {MIIM_CIS8204_SLED_CON, MIIM_CIS8204_SLEDCON_INIT,
1123 &mii_cis8204_fixled},
1124 {MIIM_CIS8204_EPHY_CON, MIIM_CIS8204_EPHYCON_INIT,
1125 &mii_cis8204_setmode},
1126 {miim_end,}
1127 },
1128 (struct phy_cmd[]){ /* startup */
1129 /* Read the Status (2x to make sure link is right) */
1130 {MIIM_STATUS, miim_read, NULL},
1131 /* Auto-negotiate */
1132 {MIIM_STATUS, miim_read, &mii_parse_sr},
1133 /* Read the status */
1134 {MIIM_CIS8201_AUX_CONSTAT, miim_read,
1135 &mii_parse_cis8201},
1136 {miim_end,}
1137 },
1138 (struct phy_cmd[]){ /* shutdown */
1139 {miim_end,}
1140 },
wdenk97d80fc2004-06-09 00:34:46 +00001141};
1142
1143/* Cicada 8201 */
1144struct phy_info phy_info_cis8201 = {
1145 0xfc41,
1146 "CIS8201",
1147 4,
Jon Loeliger89875e92006-10-10 17:03:43 -05001148 (struct phy_cmd[]){ /* config */
1149 /* Override PHY config settings */
1150 {MIIM_CIS8201_AUX_CONSTAT,
1151 MIIM_CIS8201_AUXCONSTAT_INIT, NULL},
1152 /* Set up the interface mode */
1153 {MIIM_CIS8201_EXT_CON1, MIIM_CIS8201_EXTCON1_INIT,
1154 NULL},
1155 /* Configure some basic stuff */
1156 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1157 {miim_end,}
1158 },
1159 (struct phy_cmd[]){ /* startup */
1160 /* Read the Status (2x to make sure link is right) */
1161 {MIIM_STATUS, miim_read, NULL},
1162 /* Auto-negotiate */
1163 {MIIM_STATUS, miim_read, &mii_parse_sr},
1164 /* Read the status */
1165 {MIIM_CIS8201_AUX_CONSTAT, miim_read,
1166 &mii_parse_cis8201},
1167 {miim_end,}
1168 },
1169 (struct phy_cmd[]){ /* shutdown */
1170 {miim_end,}
1171 },
wdenk97d80fc2004-06-09 00:34:46 +00001172};
Jon Loeligerdebb7352006-04-26 17:58:56 -05001173struct phy_info phy_info_VSC8244 = {
Jon Loeliger89875e92006-10-10 17:03:43 -05001174 0x3f1b,
1175 "Vitesse VSC8244",
1176 6,
1177 (struct phy_cmd[]){ /* config */
1178 /* Override PHY config settings */
1179 /* Configure some basic stuff */
1180 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1181 {miim_end,}
1182 },
1183 (struct phy_cmd[]){ /* startup */
1184 /* Read the Status (2x to make sure link is right) */
1185 {MIIM_STATUS, miim_read, NULL},
1186 /* Auto-negotiate */
1187 {MIIM_STATUS, miim_read, &mii_parse_sr},
1188 /* Read the status */
1189 {MIIM_VSC8244_AUX_CONSTAT, miim_read,
1190 &mii_parse_vsc8244},
1191 {miim_end,}
1192 },
1193 (struct phy_cmd[]){ /* shutdown */
1194 {miim_end,}
1195 },
Jon Loeligerdebb7352006-04-26 17:58:56 -05001196};
wdenk97d80fc2004-06-09 00:34:46 +00001197
wdenk97d80fc2004-06-09 00:34:46 +00001198struct phy_info phy_info_dm9161 = {
1199 0x0181b88,
1200 "Davicom DM9161E",
1201 4,
Jon Loeliger89875e92006-10-10 17:03:43 -05001202 (struct phy_cmd[]){ /* config */
1203 {MIIM_CONTROL, MIIM_DM9161_CR_STOP, NULL},
1204 /* Do not bypass the scrambler/descrambler */
1205 {MIIM_DM9161_SCR, MIIM_DM9161_SCR_INIT, NULL},
1206 /* Clear 10BTCSR to default */
1207 {MIIM_DM9161_10BTCSR, MIIM_DM9161_10BTCSR_INIT,
1208 NULL},
1209 /* Configure some basic stuff */
1210 {MIIM_CONTROL, MIIM_CR_INIT, NULL},
1211 /* Restart Auto Negotiation */
1212 {MIIM_CONTROL, MIIM_DM9161_CR_RSTAN, NULL},
1213 {miim_end,}
1214 },
1215 (struct phy_cmd[]){ /* startup */
1216 /* Status is read once to clear old link state */
1217 {MIIM_STATUS, miim_read, NULL},
1218 /* Auto-negotiate */
1219 {MIIM_STATUS, miim_read, &mii_parse_sr},
1220 /* Read the status */
1221 {MIIM_DM9161_SCSR, miim_read,
1222 &mii_parse_dm9161_scsr},
1223 {miim_end,}
1224 },
1225 (struct phy_cmd[]){ /* shutdown */
1226 {miim_end,}
1227 },
wdenk97d80fc2004-06-09 00:34:46 +00001228};
David Updegraffaf1c2b82007-04-20 14:34:48 -05001229/* a generic flavor. */
1230struct phy_info phy_info_generic = {
1231 0,
1232 "Unknown/Generic PHY",
1233 32,
1234 (struct phy_cmd[]) { /* config */
1235 {PHY_BMCR, PHY_BMCR_RESET, NULL},
1236 {PHY_BMCR, PHY_BMCR_AUTON|PHY_BMCR_RST_NEG, NULL},
1237 {miim_end,}
1238 },
1239 (struct phy_cmd[]) { /* startup */
1240 {PHY_BMSR, miim_read, NULL},
1241 {PHY_BMSR, miim_read, &mii_parse_sr},
1242 {PHY_BMSR, miim_read, &mii_parse_link},
1243 {miim_end,}
1244 },
1245 (struct phy_cmd[]) { /* shutdown */
1246 {miim_end,}
1247 }
1248};
1249
wdenk97d80fc2004-06-09 00:34:46 +00001250
wdenk3dd7f0f2005-04-04 23:43:44 +00001251uint mii_parse_lxt971_sr2(uint mii_reg, struct tsec_private *priv)
1252{
wdenk3c2b3d42005-04-05 23:32:21 +00001253 unsigned int speed;
1254 if (priv->link) {
1255 speed = mii_reg & MIIM_LXT971_SR2_SPEED_MASK;
wdenk3dd7f0f2005-04-04 23:43:44 +00001256
wdenk3c2b3d42005-04-05 23:32:21 +00001257 switch (speed) {
1258 case MIIM_LXT971_SR2_10HDX:
1259 priv->speed = 10;
1260 priv->duplexity = 0;
1261 break;
1262 case MIIM_LXT971_SR2_10FDX:
1263 priv->speed = 10;
1264 priv->duplexity = 1;
1265 break;
1266 case MIIM_LXT971_SR2_100HDX:
1267 priv->speed = 100;
1268 priv->duplexity = 0;
urwithsughosh@gmail.comcd2d1602007-09-10 14:54:56 -04001269 break;
wdenk3c2b3d42005-04-05 23:32:21 +00001270 default:
1271 priv->speed = 100;
1272 priv->duplexity = 1;
wdenk3c2b3d42005-04-05 23:32:21 +00001273 }
1274 } else {
1275 priv->speed = 0;
1276 priv->duplexity = 0;
1277 }
wdenk3dd7f0f2005-04-04 23:43:44 +00001278
wdenk3c2b3d42005-04-05 23:32:21 +00001279 return 0;
wdenk3dd7f0f2005-04-04 23:43:44 +00001280}
1281
wdenk9d46ea42005-03-14 23:56:42 +00001282static struct phy_info phy_info_lxt971 = {
1283 0x0001378e,
1284 "LXT971",
1285 4,
Jon Loeliger89875e92006-10-10 17:03:43 -05001286 (struct phy_cmd[]){ /* config */
1287 {MIIM_CR, MIIM_CR_INIT, mii_cr_init}, /* autonegotiate */
1288 {miim_end,}
1289 },
1290 (struct phy_cmd[]){ /* startup - enable interrupts */
1291 /* { 0x12, 0x00f2, NULL }, */
1292 {MIIM_STATUS, miim_read, NULL},
1293 {MIIM_STATUS, miim_read, &mii_parse_sr},
1294 {MIIM_LXT971_SR2, miim_read, &mii_parse_lxt971_sr2},
1295 {miim_end,}
1296 },
1297 (struct phy_cmd[]){ /* shutdown - disable interrupts */
1298 {miim_end,}
1299 },
wdenk9d46ea42005-03-14 23:56:42 +00001300};
1301
Wolfgang Denkbe5048f2006-03-12 22:50:55 +01001302/* Parse the DP83865's link and auto-neg status register for speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -05001303 * information
1304 */
Wolfgang Denkbe5048f2006-03-12 22:50:55 +01001305uint mii_parse_dp83865_lanr(uint mii_reg, struct tsec_private *priv)
1306{
1307 switch (mii_reg & MIIM_DP83865_SPD_MASK) {
1308
1309 case MIIM_DP83865_SPD_1000:
1310 priv->speed = 1000;
1311 break;
1312
1313 case MIIM_DP83865_SPD_100:
1314 priv->speed = 100;
1315 break;
1316
1317 default:
1318 priv->speed = 10;
1319 break;
1320
1321 }
1322
1323 if (mii_reg & MIIM_DP83865_DPX_FULL)
1324 priv->duplexity = 1;
1325 else
1326 priv->duplexity = 0;
1327
1328 return 0;
1329}
1330
1331struct phy_info phy_info_dp83865 = {
1332 0x20005c7,
1333 "NatSemi DP83865",
1334 4,
Jon Loeliger89875e92006-10-10 17:03:43 -05001335 (struct phy_cmd[]){ /* config */
1336 {MIIM_CONTROL, MIIM_DP83865_CR_INIT, NULL},
1337 {miim_end,}
1338 },
1339 (struct phy_cmd[]){ /* startup */
1340 /* Status is read once to clear old link state */
1341 {MIIM_STATUS, miim_read, NULL},
1342 /* Auto-negotiate */
1343 {MIIM_STATUS, miim_read, &mii_parse_sr},
1344 /* Read the link and auto-neg status */
1345 {MIIM_DP83865_LANR, miim_read,
1346 &mii_parse_dp83865_lanr},
1347 {miim_end,}
1348 },
1349 (struct phy_cmd[]){ /* shutdown */
1350 {miim_end,}
1351 },
Wolfgang Denkbe5048f2006-03-12 22:50:55 +01001352};
1353
wdenk97d80fc2004-06-09 00:34:46 +00001354struct phy_info *phy_info[] = {
wdenk97d80fc2004-06-09 00:34:46 +00001355 &phy_info_cis8204,
Timur Tabi2ad6b512006-10-31 18:44:42 -06001356 &phy_info_cis8201,
Paul Gortmaker91e25762007-01-16 11:38:14 -05001357 &phy_info_BCM5461S,
Joe Hammanc3243cf2007-04-30 16:47:28 -05001358 &phy_info_BCM5464S,
wdenk97d80fc2004-06-09 00:34:46 +00001359 &phy_info_M88E1011S,
wdenk9d46ea42005-03-14 23:56:42 +00001360 &phy_info_M88E1111S,
Andy Fleming09f3e092006-09-13 10:34:18 -05001361 &phy_info_M88E1145,
Wolfgang Denk5728be32007-08-06 01:01:49 +02001362 &phy_info_M88E1149S,
wdenk97d80fc2004-06-09 00:34:46 +00001363 &phy_info_dm9161,
wdenk9d46ea42005-03-14 23:56:42 +00001364 &phy_info_lxt971,
Jon Loeligerdebb7352006-04-26 17:58:56 -05001365 &phy_info_VSC8244,
Wolfgang Denkbe5048f2006-03-12 22:50:55 +01001366 &phy_info_dp83865,
David Updegraffaf1c2b82007-04-20 14:34:48 -05001367 &phy_info_generic,
wdenk97d80fc2004-06-09 00:34:46 +00001368 NULL
1369};
1370
wdenk97d80fc2004-06-09 00:34:46 +00001371/* Grab the identifier of the device's PHY, and search through
wdenk9d46ea42005-03-14 23:56:42 +00001372 * all of the known PHYs to see if one matches. If so, return
Jon Loeliger89875e92006-10-10 17:03:43 -05001373 * it, if not, return NULL
1374 */
1375struct phy_info *get_phy_info(struct eth_device *dev)
wdenk97d80fc2004-06-09 00:34:46 +00001376{
1377 struct tsec_private *priv = (struct tsec_private *)dev->priv;
1378 uint phy_reg, phy_ID;
1379 int i;
1380 struct phy_info *theInfo = NULL;
1381
1382 /* Grab the bits from PHYIR1, and put them in the upper half */
1383 phy_reg = read_phy_reg(priv, MIIM_PHYIR1);
1384 phy_ID = (phy_reg & 0xffff) << 16;
1385
1386 /* Grab the bits from PHYIR2, and put them in the lower half */
1387 phy_reg = read_phy_reg(priv, MIIM_PHYIR2);
1388 phy_ID |= (phy_reg & 0xffff);
1389
1390 /* loop through all the known PHY types, and find one that */
1391 /* matches the ID we read from the PHY. */
Jon Loeliger89875e92006-10-10 17:03:43 -05001392 for (i = 0; phy_info[i]; i++) {
Andy Fleming2a3cee42007-05-09 00:54:20 -05001393 if (phy_info[i]->id == (phy_ID >> phy_info[i]->shift)) {
wdenk97d80fc2004-06-09 00:34:46 +00001394 theInfo = phy_info[i];
Andy Fleming2a3cee42007-05-09 00:54:20 -05001395 break;
1396 }
wdenk97d80fc2004-06-09 00:34:46 +00001397 }
1398
Jon Loeliger89875e92006-10-10 17:03:43 -05001399 if (theInfo == NULL) {
wdenk97d80fc2004-06-09 00:34:46 +00001400 printf("%s: PHY id %x is not supported!\n", dev->name, phy_ID);
1401 return NULL;
1402 } else {
Stefan Roese5810dc32005-09-21 18:20:22 +02001403 debug("%s: PHY is %s (%x)\n", dev->name, theInfo->name, phy_ID);
wdenk97d80fc2004-06-09 00:34:46 +00001404 }
1405
1406 return theInfo;
1407}
1408
wdenk97d80fc2004-06-09 00:34:46 +00001409/* Execute the given series of commands on the given device's
Jon Loeliger89875e92006-10-10 17:03:43 -05001410 * PHY, running functions as necessary
1411 */
wdenk97d80fc2004-06-09 00:34:46 +00001412void phy_run_commands(struct tsec_private *priv, struct phy_cmd *cmd)
1413{
1414 int i;
1415 uint result;
1416 volatile tsec_t *phyregs = priv->phyregs;
1417
1418 phyregs->miimcfg = MIIMCFG_RESET;
1419
1420 phyregs->miimcfg = MIIMCFG_INIT_VALUE;
1421
Jon Loeliger89875e92006-10-10 17:03:43 -05001422 while (phyregs->miimind & MIIMIND_BUSY) ;
wdenk97d80fc2004-06-09 00:34:46 +00001423
Jon Loeliger89875e92006-10-10 17:03:43 -05001424 for (i = 0; cmd->mii_reg != miim_end; i++) {
1425 if (cmd->mii_data == miim_read) {
wdenk97d80fc2004-06-09 00:34:46 +00001426 result = read_phy_reg(priv, cmd->mii_reg);
1427
Jon Loeliger89875e92006-10-10 17:03:43 -05001428 if (cmd->funct != NULL)
1429 (*(cmd->funct)) (result, priv);
wdenk97d80fc2004-06-09 00:34:46 +00001430
1431 } else {
Jon Loeliger89875e92006-10-10 17:03:43 -05001432 if (cmd->funct != NULL)
1433 result = (*(cmd->funct)) (cmd->mii_reg, priv);
wdenk97d80fc2004-06-09 00:34:46 +00001434 else
1435 result = cmd->mii_data;
1436
1437 write_phy_reg(priv, cmd->mii_reg, result);
1438
1439 }
1440 cmd++;
1441 }
1442}
1443
wdenk97d80fc2004-06-09 00:34:46 +00001444/* Relocate the function pointers in the phy cmd lists */
1445static void relocate_cmds(void)
1446{
1447 struct phy_cmd **cmdlistptr;
1448 struct phy_cmd *cmd;
Jon Loeliger89875e92006-10-10 17:03:43 -05001449 int i, j, k;
wdenk97d80fc2004-06-09 00:34:46 +00001450
Jon Loeliger89875e92006-10-10 17:03:43 -05001451 for (i = 0; phy_info[i]; i++) {
wdenk97d80fc2004-06-09 00:34:46 +00001452 /* First thing's first: relocate the pointers to the
1453 * PHY command structures (the structs were done) */
Jon Loeliger89875e92006-10-10 17:03:43 -05001454 phy_info[i] = (struct phy_info *)((uint) phy_info[i]
1455 + gd->reloc_off);
wdenk97d80fc2004-06-09 00:34:46 +00001456 phy_info[i]->name += gd->reloc_off;
1457 phy_info[i]->config =
Jon Loeliger89875e92006-10-10 17:03:43 -05001458 (struct phy_cmd *)((uint) phy_info[i]->config
1459 + gd->reloc_off);
wdenk97d80fc2004-06-09 00:34:46 +00001460 phy_info[i]->startup =
Jon Loeliger89875e92006-10-10 17:03:43 -05001461 (struct phy_cmd *)((uint) phy_info[i]->startup
1462 + gd->reloc_off);
wdenk97d80fc2004-06-09 00:34:46 +00001463 phy_info[i]->shutdown =
Jon Loeliger89875e92006-10-10 17:03:43 -05001464 (struct phy_cmd *)((uint) phy_info[i]->shutdown
1465 + gd->reloc_off);
wdenk97d80fc2004-06-09 00:34:46 +00001466
1467 cmdlistptr = &phy_info[i]->config;
Jon Loeliger89875e92006-10-10 17:03:43 -05001468 j = 0;
1469 for (; cmdlistptr <= &phy_info[i]->shutdown; cmdlistptr++) {
1470 k = 0;
1471 for (cmd = *cmdlistptr;
1472 cmd->mii_reg != miim_end;
1473 cmd++) {
wdenk97d80fc2004-06-09 00:34:46 +00001474 /* Only relocate non-NULL pointers */
Jon Loeliger89875e92006-10-10 17:03:43 -05001475 if (cmd->funct)
wdenk97d80fc2004-06-09 00:34:46 +00001476 cmd->funct += gd->reloc_off;
1477
1478 k++;
1479 }
1480 j++;
1481 }
1482 }
1483
1484 relocated = 1;
1485}
1486
Jon Loeligercb51c0b2007-07-09 17:39:42 -05001487#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) \
Marian Balakowicz63ff0042005-10-28 22:30:33 +02001488 && !defined(BITBANGMII)
wdenk97d80fc2004-06-09 00:34:46 +00001489
Jon Loeliger89875e92006-10-10 17:03:43 -05001490struct tsec_private *get_priv_for_phy(unsigned char phyaddr)
wdenk97d80fc2004-06-09 00:34:46 +00001491{
1492 int i;
1493
Jon Loeliger89875e92006-10-10 17:03:43 -05001494 for (i = 0; i < MAXCONTROLLERS; i++) {
1495 if (privlist[i]->phyaddr == phyaddr)
wdenk97d80fc2004-06-09 00:34:46 +00001496 return privlist[i];
1497 }
1498
1499 return NULL;
1500}
1501
wdenk7abf0c52004-04-18 21:45:42 +00001502/*
1503 * Read a MII PHY register.
1504 *
1505 * Returns:
wdenk97d80fc2004-06-09 00:34:46 +00001506 * 0 on success
wdenk7abf0c52004-04-18 21:45:42 +00001507 */
Marian Balakowicz63ff0042005-10-28 22:30:33 +02001508static int tsec_miiphy_read(char *devname, unsigned char addr,
Jon Loeliger89875e92006-10-10 17:03:43 -05001509 unsigned char reg, unsigned short *value)
wdenk7abf0c52004-04-18 21:45:42 +00001510{
wdenk97d80fc2004-06-09 00:34:46 +00001511 unsigned short ret;
1512 struct tsec_private *priv = get_priv_for_phy(addr);
wdenk7abf0c52004-04-18 21:45:42 +00001513
Jon Loeliger89875e92006-10-10 17:03:43 -05001514 if (NULL == priv) {
wdenk97d80fc2004-06-09 00:34:46 +00001515 printf("Can't read PHY at address %d\n", addr);
1516 return -1;
1517 }
1518
1519 ret = (unsigned short)read_phy_reg(priv, reg);
1520 *value = ret;
wdenk7abf0c52004-04-18 21:45:42 +00001521
1522 return 0;
1523}
1524
1525/*
1526 * Write a MII PHY register.
1527 *
1528 * Returns:
wdenk97d80fc2004-06-09 00:34:46 +00001529 * 0 on success
wdenk7abf0c52004-04-18 21:45:42 +00001530 */
Marian Balakowicz63ff0042005-10-28 22:30:33 +02001531static int tsec_miiphy_write(char *devname, unsigned char addr,
Jon Loeliger89875e92006-10-10 17:03:43 -05001532 unsigned char reg, unsigned short value)
wdenk7abf0c52004-04-18 21:45:42 +00001533{
wdenk97d80fc2004-06-09 00:34:46 +00001534 struct tsec_private *priv = get_priv_for_phy(addr);
wdenk7abf0c52004-04-18 21:45:42 +00001535
Jon Loeliger89875e92006-10-10 17:03:43 -05001536 if (NULL == priv) {
wdenk97d80fc2004-06-09 00:34:46 +00001537 printf("Can't write PHY at address %d\n", addr);
1538 return -1;
1539 }
1540
1541 write_phy_reg(priv, reg, value);
wdenk7abf0c52004-04-18 21:45:42 +00001542
1543 return 0;
1544}
wdenk97d80fc2004-06-09 00:34:46 +00001545
Jon Loeligercb51c0b2007-07-09 17:39:42 -05001546#endif
wdenk97d80fc2004-06-09 00:34:46 +00001547
David Updegraff53a5c422007-06-11 10:41:07 -05001548#ifdef CONFIG_MCAST_TFTP
1549
1550/* CREDITS: linux gianfar driver, slightly adjusted... thanx. */
1551
1552/* Set the appropriate hash bit for the given addr */
1553
1554/* The algorithm works like so:
1555 * 1) Take the Destination Address (ie the multicast address), and
1556 * do a CRC on it (little endian), and reverse the bits of the
1557 * result.
1558 * 2) Use the 8 most significant bits as a hash into a 256-entry
1559 * table. The table is controlled through 8 32-bit registers:
1560 * gaddr0-7. gaddr0's MSB is entry 0, and gaddr7's LSB is
1561 * gaddr7. This means that the 3 most significant bits in the
1562 * hash index which gaddr register to use, and the 5 other bits
1563 * indicate which bit (assuming an IBM numbering scheme, which
1564 * for PowerPC (tm) is usually the case) in the tregister holds
1565 * the entry. */
1566static int
1567tsec_mcast_addr (struct eth_device *dev, u8 mcast_mac, u8 set)
1568{
1569 struct tsec_private *priv = privlist[1];
1570 volatile tsec_t *regs = priv->regs;
1571 volatile u32 *reg_array, value;
1572 u8 result, whichbit, whichreg;
1573
1574 result = (u8)((ether_crc(MAC_ADDR_LEN,mcast_mac) >> 24) & 0xff);
1575 whichbit = result & 0x1f; /* the 5 LSB = which bit to set */
1576 whichreg = result >> 5; /* the 3 MSB = which reg to set it in */
1577 value = (1 << (31-whichbit));
1578
1579 reg_array = &(regs->hash.gaddr0);
1580
1581 if (set) {
1582 reg_array[whichreg] |= value;
1583 } else {
1584 reg_array[whichreg] &= ~value;
1585 }
1586 return 0;
1587}
1588#endif /* Multicast TFTP ? */
1589
wdenk42d1f032003-10-15 23:53:47 +00001590#endif /* CONFIG_TSEC_ENET */