blob: 7ba8f0cace90eeeb61d40eb26f0860bc844cc4f1 [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);
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200120static int tsec_miiphy_write(char *devname, unsigned char addr,
Jon Loeliger89875e92006-10-10 17:03:43 -0500121 unsigned char reg, unsigned short value);
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200122static int tsec_miiphy_read(char *devname, unsigned char addr,
Jon Loeliger89875e92006-10-10 17:03:43 -0500123 unsigned char reg, unsigned short *value);
David Updegraff53a5c422007-06-11 10:41:07 -0500124#ifdef CONFIG_MCAST_TFTP
125static int tsec_mcast_addr (struct eth_device *dev, u8 mcast_mac, u8 set);
126#endif
wdenk7abf0c52004-04-18 21:45:42 +0000127
wdenk97d80fc2004-06-09 00:34:46 +0000128/* Initialize device structure. Returns success if PHY
129 * initialization succeeded (i.e. if it recognizes the PHY)
130 */
Jon Loeliger89875e92006-10-10 17:03:43 -0500131int tsec_initialize(bd_t * bis, int index, char *devname)
wdenk42d1f032003-10-15 23:53:47 +0000132{
Jon Loeliger89875e92006-10-10 17:03:43 -0500133 struct eth_device *dev;
wdenk42d1f032003-10-15 23:53:47 +0000134 int i;
wdenk97d80fc2004-06-09 00:34:46 +0000135 struct tsec_private *priv;
wdenk42d1f032003-10-15 23:53:47 +0000136
Jon Loeliger89875e92006-10-10 17:03:43 -0500137 dev = (struct eth_device *)malloc(sizeof *dev);
wdenk42d1f032003-10-15 23:53:47 +0000138
Jon Loeliger89875e92006-10-10 17:03:43 -0500139 if (NULL == dev)
wdenk42d1f032003-10-15 23:53:47 +0000140 return 0;
141
142 memset(dev, 0, sizeof *dev);
143
Jon Loeliger89875e92006-10-10 17:03:43 -0500144 priv = (struct tsec_private *)malloc(sizeof(*priv));
wdenk97d80fc2004-06-09 00:34:46 +0000145
Jon Loeliger89875e92006-10-10 17:03:43 -0500146 if (NULL == priv)
wdenk97d80fc2004-06-09 00:34:46 +0000147 return 0;
148
149 privlist[index] = priv;
Jon Loeliger89875e92006-10-10 17:03:43 -0500150 priv->regs = (volatile tsec_t *)(TSEC_BASE_ADDR + index * TSEC_SIZE);
wdenk97d80fc2004-06-09 00:34:46 +0000151 priv->phyregs = (volatile tsec_t *)(TSEC_BASE_ADDR +
Jon Loeliger89875e92006-10-10 17:03:43 -0500152 tsec_info[index].phyregidx *
153 TSEC_SIZE);
wdenk97d80fc2004-06-09 00:34:46 +0000154
155 priv->phyaddr = tsec_info[index].phyaddr;
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500156 priv->flags = tsec_info[index].flags;
wdenk97d80fc2004-06-09 00:34:46 +0000157
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500158 sprintf(dev->name, devname);
wdenk42d1f032003-10-15 23:53:47 +0000159 dev->iobase = 0;
Jon Loeliger89875e92006-10-10 17:03:43 -0500160 dev->priv = priv;
161 dev->init = tsec_init;
162 dev->halt = tsec_halt;
163 dev->send = tsec_send;
164 dev->recv = tsec_recv;
David Updegraff53a5c422007-06-11 10:41:07 -0500165#ifdef CONFIG_MCAST_TFTP
166 dev->mcast = tsec_mcast_addr;
167#endif
wdenk42d1f032003-10-15 23:53:47 +0000168
169 /* Tell u-boot to get the addr from the env */
Jon Loeliger89875e92006-10-10 17:03:43 -0500170 for (i = 0; i < 6; i++)
wdenk42d1f032003-10-15 23:53:47 +0000171 dev->enetaddr[i] = 0;
172
173 eth_register(dev);
174
wdenk97d80fc2004-06-09 00:34:46 +0000175 /* Reset the MAC */
176 priv->regs->maccfg1 |= MACCFG1_SOFT_RESET;
177 priv->regs->maccfg1 &= ~(MACCFG1_SOFT_RESET);
wdenk7abf0c52004-04-18 21:45:42 +0000178
Jon Loeligercb51c0b2007-07-09 17:39:42 -0500179#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) \
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200180 && !defined(BITBANGMII)
181 miiphy_register(dev->name, tsec_miiphy_read, tsec_miiphy_write);
182#endif
183
wdenk97d80fc2004-06-09 00:34:46 +0000184 /* Try to initialize PHY here, and return */
185 return init_phy(dev);
wdenk42d1f032003-10-15 23:53:47 +0000186}
187
wdenk42d1f032003-10-15 23:53:47 +0000188/* Initializes data structures and registers for the controller,
wdenk9d46ea42005-03-14 23:56:42 +0000189 * and brings the interface up. Returns the link status, meaning
wdenk97d80fc2004-06-09 00:34:46 +0000190 * that it returns success if the link is up, failure otherwise.
Jon Loeliger89875e92006-10-10 17:03:43 -0500191 * This allows u-boot to find the first active controller.
192 */
193int tsec_init(struct eth_device *dev, bd_t * bd)
wdenk42d1f032003-10-15 23:53:47 +0000194{
wdenk42d1f032003-10-15 23:53:47 +0000195 uint tempval;
196 char tmpbuf[MAC_ADDR_LEN];
197 int i;
wdenk97d80fc2004-06-09 00:34:46 +0000198 struct tsec_private *priv = (struct tsec_private *)dev->priv;
199 volatile tsec_t *regs = priv->regs;
wdenk42d1f032003-10-15 23:53:47 +0000200
201 /* Make sure the controller is stopped */
202 tsec_halt(dev);
203
wdenk97d80fc2004-06-09 00:34:46 +0000204 /* Init MACCFG2. Defaults to GMII */
wdenk42d1f032003-10-15 23:53:47 +0000205 regs->maccfg2 = MACCFG2_INIT_SETTINGS;
206
207 /* Init ECNTRL */
208 regs->ecntrl = ECNTRL_INIT_SETTINGS;
209
210 /* Copy the station address into the address registers.
211 * Backwards, because little endian MACS are dumb */
Jon Loeliger89875e92006-10-10 17:03:43 -0500212 for (i = 0; i < MAC_ADDR_LEN; i++) {
wdenk97d80fc2004-06-09 00:34:46 +0000213 tmpbuf[MAC_ADDR_LEN - 1 - i] = dev->enetaddr[i];
wdenk42d1f032003-10-15 23:53:47 +0000214 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500215 regs->macstnaddr1 = *((uint *) (tmpbuf));
wdenk42d1f032003-10-15 23:53:47 +0000216
Jon Loeliger89875e92006-10-10 17:03:43 -0500217 tempval = *((uint *) (tmpbuf + 4));
wdenk42d1f032003-10-15 23:53:47 +0000218
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200219 regs->macstnaddr2 = tempval;
wdenk42d1f032003-10-15 23:53:47 +0000220
wdenk42d1f032003-10-15 23:53:47 +0000221 /* reset the indices to zero */
222 rxIdx = 0;
223 txIdx = 0;
224
225 /* Clear out (for the most part) the other registers */
226 init_registers(regs);
227
228 /* Ready the device for tx/rx */
wdenk97d80fc2004-06-09 00:34:46 +0000229 startup_tsec(dev);
wdenk42d1f032003-10-15 23:53:47 +0000230
wdenk97d80fc2004-06-09 00:34:46 +0000231 /* If there's no link, fail */
232 return priv->link;
wdenk42d1f032003-10-15 23:53:47 +0000233
234}
235
wdenk97d80fc2004-06-09 00:34:46 +0000236/* Write value to the device's PHY through the registers
237 * specified in priv, modifying the register specified in regnum.
238 * It will wait for the write to be done (or for a timeout to
239 * expire) before exiting
240 */
241void write_phy_reg(struct tsec_private *priv, uint regnum, uint value)
242{
243 volatile tsec_t *regbase = priv->phyregs;
244 uint phyid = priv->phyaddr;
Jon Loeliger89875e92006-10-10 17:03:43 -0500245 int timeout = 1000000;
wdenk97d80fc2004-06-09 00:34:46 +0000246
247 regbase->miimadd = (phyid << 8) | regnum;
248 regbase->miimcon = value;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500249 asm("sync");
wdenk97d80fc2004-06-09 00:34:46 +0000250
Jon Loeliger89875e92006-10-10 17:03:43 -0500251 timeout = 1000000;
252 while ((regbase->miimind & MIIMIND_BUSY) && timeout--) ;
wdenk97d80fc2004-06-09 00:34:46 +0000253}
254
wdenk97d80fc2004-06-09 00:34:46 +0000255/* Reads register regnum on the device's PHY through the
wdenk9d46ea42005-03-14 23:56:42 +0000256 * registers specified in priv. It lowers and raises the read
wdenk97d80fc2004-06-09 00:34:46 +0000257 * command, and waits for the data to become valid (miimind
258 * notvalid bit cleared), and the bus to cease activity (miimind
259 * busy bit cleared), and then returns the value
260 */
261uint read_phy_reg(struct tsec_private *priv, uint regnum)
wdenk42d1f032003-10-15 23:53:47 +0000262{
263 uint value;
wdenk97d80fc2004-06-09 00:34:46 +0000264 volatile tsec_t *regbase = priv->phyregs;
265 uint phyid = priv->phyaddr;
wdenk42d1f032003-10-15 23:53:47 +0000266
wdenk97d80fc2004-06-09 00:34:46 +0000267 /* Put the address of the phy, and the register
268 * number into MIIMADD */
269 regbase->miimadd = (phyid << 8) | regnum;
wdenk42d1f032003-10-15 23:53:47 +0000270
271 /* Clear the command register, and wait */
272 regbase->miimcom = 0;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500273 asm("sync");
wdenk42d1f032003-10-15 23:53:47 +0000274
275 /* Initiate a read command, and wait */
276 regbase->miimcom = MIIM_READ_COMMAND;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500277 asm("sync");
wdenk42d1f032003-10-15 23:53:47 +0000278
279 /* Wait for the the indication that the read is done */
Jon Loeliger89875e92006-10-10 17:03:43 -0500280 while ((regbase->miimind & (MIIMIND_NOTVALID | MIIMIND_BUSY))) ;
wdenk42d1f032003-10-15 23:53:47 +0000281
282 /* Grab the value read from the PHY */
283 value = regbase->miimstat;
284
285 return value;
286}
287
wdenk97d80fc2004-06-09 00:34:46 +0000288/* Discover which PHY is attached to the device, and configure it
289 * properly. If the PHY is not recognized, then return 0
290 * (failure). Otherwise, return 1
291 */
292static int init_phy(struct eth_device *dev)
wdenk42d1f032003-10-15 23:53:47 +0000293{
wdenk97d80fc2004-06-09 00:34:46 +0000294 struct tsec_private *priv = (struct tsec_private *)dev->priv;
295 struct phy_info *curphy;
Jon Loeliger89875e92006-10-10 17:03:43 -0500296 volatile tsec_t *regs = (volatile tsec_t *)(TSEC_BASE_ADDR);
wdenk42d1f032003-10-15 23:53:47 +0000297
298 /* Assign a Physical address to the TBI */
Joe Hammandcb84b72007-08-09 09:08:18 -0500299 regs->tbipa = CFG_TBIPA_VALUE;
Jon Loeliger89875e92006-10-10 17:03:43 -0500300 regs = (volatile tsec_t *)(TSEC_BASE_ADDR + TSEC_SIZE);
Joe Hammandcb84b72007-08-09 09:08:18 -0500301 regs->tbipa = CFG_TBIPA_VALUE;
Jon Loeliger89875e92006-10-10 17:03:43 -0500302 asm("sync");
wdenk3dd7f0f2005-04-04 23:43:44 +0000303
304 /* Reset MII (due to new addresses) */
305 priv->phyregs->miimcfg = MIIMCFG_RESET;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500306 asm("sync");
wdenk3dd7f0f2005-04-04 23:43:44 +0000307 priv->phyregs->miimcfg = MIIMCFG_INIT_VALUE;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500308 asm("sync");
Jon Loeliger89875e92006-10-10 17:03:43 -0500309 while (priv->phyregs->miimind & MIIMIND_BUSY) ;
wdenk42d1f032003-10-15 23:53:47 +0000310
Jon Loeliger89875e92006-10-10 17:03:43 -0500311 if (0 == relocated)
wdenk97d80fc2004-06-09 00:34:46 +0000312 relocate_cmds();
wdenk42d1f032003-10-15 23:53:47 +0000313
wdenk97d80fc2004-06-09 00:34:46 +0000314 /* Get the cmd structure corresponding to the attached
315 * PHY */
316 curphy = get_phy_info(dev);
wdenk42d1f032003-10-15 23:53:47 +0000317
Ben Warren4653f912006-10-26 14:38:25 -0400318 if (curphy == NULL) {
319 priv->phyinfo = NULL;
wdenk97d80fc2004-06-09 00:34:46 +0000320 printf("%s: No PHY found\n", dev->name);
wdenk42d1f032003-10-15 23:53:47 +0000321
wdenk97d80fc2004-06-09 00:34:46 +0000322 return 0;
wdenk42d1f032003-10-15 23:53:47 +0000323 }
324
wdenk97d80fc2004-06-09 00:34:46 +0000325 priv->phyinfo = curphy;
wdenk42d1f032003-10-15 23:53:47 +0000326
wdenk97d80fc2004-06-09 00:34:46 +0000327 phy_run_commands(priv, priv->phyinfo->config);
wdenk42d1f032003-10-15 23:53:47 +0000328
wdenk97d80fc2004-06-09 00:34:46 +0000329 return 1;
wdenk42d1f032003-10-15 23:53:47 +0000330}
331
Jon Loeliger89875e92006-10-10 17:03:43 -0500332/*
333 * Returns which value to write to the control register.
334 * For 10/100, the value is slightly different
335 */
336uint mii_cr_init(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000337{
Jon Loeliger89875e92006-10-10 17:03:43 -0500338 if (priv->flags & TSEC_GIGABIT)
wdenk97d80fc2004-06-09 00:34:46 +0000339 return MIIM_CONTROL_INIT;
340 else
341 return MIIM_CR_INIT;
342}
343
wdenk97d80fc2004-06-09 00:34:46 +0000344/* Parse the status register for link, and then do
Jon Loeliger89875e92006-10-10 17:03:43 -0500345 * auto-negotiation
346 */
347uint mii_parse_sr(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000348{
Stefan Roese5810dc32005-09-21 18:20:22 +0200349 /*
Andy Fleming7613afd2007-08-15 20:03:44 -0500350 * Wait if the link is up, and autonegotiation is in progress
351 * (ie - we're capable and it's not done)
Stefan Roese5810dc32005-09-21 18:20:22 +0200352 */
353 mii_reg = read_phy_reg(priv, MIIM_STATUS);
Andy Fleming7613afd2007-08-15 20:03:44 -0500354 if ((mii_reg & MIIM_STATUS_LINK) && (mii_reg & PHY_BMSR_AUTN_ABLE)
Jon Loeliger89875e92006-10-10 17:03:43 -0500355 && !(mii_reg & PHY_BMSR_AUTN_COMP)) {
Stefan Roese5810dc32005-09-21 18:20:22 +0200356 int i = 0;
wdenk97d80fc2004-06-09 00:34:46 +0000357
Jon Loeliger89875e92006-10-10 17:03:43 -0500358 puts("Waiting for PHY auto negotiation to complete");
Andy Fleming7613afd2007-08-15 20:03:44 -0500359 while (!(mii_reg & PHY_BMSR_AUTN_COMP)) {
Stefan Roese5810dc32005-09-21 18:20:22 +0200360 /*
361 * Timeout reached ?
362 */
363 if (i > PHY_AUTONEGOTIATE_TIMEOUT) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500364 puts(" TIMEOUT !\n");
Stefan Roese5810dc32005-09-21 18:20:22 +0200365 priv->link = 0;
Jin Zhengxiong-R64188fcfb9a52006-06-27 18:12:23 +0800366 return 0;
Stefan Roese5810dc32005-09-21 18:20:22 +0200367 }
wdenk97d80fc2004-06-09 00:34:46 +0000368
Stefan Roese5810dc32005-09-21 18:20:22 +0200369 if ((i++ % 1000) == 0) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500370 putc('.');
Stefan Roese5810dc32005-09-21 18:20:22 +0200371 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500372 udelay(1000); /* 1 ms */
wdenk97d80fc2004-06-09 00:34:46 +0000373 mii_reg = read_phy_reg(priv, MIIM_STATUS);
Stefan Roese5810dc32005-09-21 18:20:22 +0200374 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500375 puts(" done\n");
Stefan Roese5810dc32005-09-21 18:20:22 +0200376 priv->link = 1;
Jon Loeliger89875e92006-10-10 17:03:43 -0500377 udelay(500000); /* another 500 ms (results in faster booting) */
Stefan Roese5810dc32005-09-21 18:20:22 +0200378 } else {
Andy Fleming7613afd2007-08-15 20:03:44 -0500379 if (mii_reg & MIIM_STATUS_LINK)
380 priv->link = 1;
381 else
382 priv->link = 0;
wdenk97d80fc2004-06-09 00:34:46 +0000383 }
384
385 return 0;
386}
387
David Updegraffaf1c2b82007-04-20 14:34:48 -0500388/* Generic function which updates the speed and duplex. If
389 * autonegotiation is enabled, it uses the AND of the link
390 * partner's advertised capabilities and our advertised
391 * capabilities. If autonegotiation is disabled, we use the
392 * appropriate bits in the control register.
393 *
394 * Stolen from Linux's mii.c and phy_device.c
395 */
396uint mii_parse_link(uint mii_reg, struct tsec_private *priv)
397{
398 /* We're using autonegotiation */
399 if (mii_reg & PHY_BMSR_AUTN_ABLE) {
400 uint lpa = 0;
401 uint gblpa = 0;
402
403 /* Check for gigabit capability */
404 if (mii_reg & PHY_BMSR_EXT) {
405 /* We want a list of states supported by
406 * both PHYs in the link
407 */
408 gblpa = read_phy_reg(priv, PHY_1000BTSR);
409 gblpa &= read_phy_reg(priv, PHY_1000BTCR) << 2;
410 }
411
412 /* Set the baseline so we only have to set them
413 * if they're different
414 */
415 priv->speed = 10;
416 priv->duplexity = 0;
417
418 /* Check the gigabit fields */
419 if (gblpa & (PHY_1000BTSR_1000FD | PHY_1000BTSR_1000HD)) {
420 priv->speed = 1000;
421
422 if (gblpa & PHY_1000BTSR_1000FD)
423 priv->duplexity = 1;
424
425 /* We're done! */
426 return 0;
427 }
428
429 lpa = read_phy_reg(priv, PHY_ANAR);
430 lpa &= read_phy_reg(priv, PHY_ANLPAR);
431
432 if (lpa & (PHY_ANLPAR_TXFD | PHY_ANLPAR_TX)) {
433 priv->speed = 100;
434
435 if (lpa & PHY_ANLPAR_TXFD)
436 priv->duplexity = 1;
437
438 } else if (lpa & PHY_ANLPAR_10FD)
439 priv->duplexity = 1;
440 } else {
441 uint bmcr = read_phy_reg(priv, PHY_BMCR);
442
443 priv->speed = 10;
444 priv->duplexity = 0;
445
446 if (bmcr & PHY_BMCR_DPLX)
447 priv->duplexity = 1;
448
449 if (bmcr & PHY_BMCR_1000_MBPS)
450 priv->speed = 1000;
451 else if (bmcr & PHY_BMCR_100_MBPS)
452 priv->speed = 100;
453 }
454
455 return 0;
456}
457
Paul Gortmaker91e25762007-01-16 11:38:14 -0500458/*
459 * Parse the BCM54xx status register for speed and duplex information.
460 * The linux sungem_phy has this information, but in a table format.
461 */
462uint mii_parse_BCM54xx_sr(uint mii_reg, struct tsec_private *priv)
463{
464
465 switch((mii_reg & MIIM_BCM54xx_AUXSTATUS_LINKMODE_MASK) >> MIIM_BCM54xx_AUXSTATUS_LINKMODE_SHIFT){
466
467 case 1:
468 printf("Enet starting in 10BT/HD\n");
469 priv->duplexity = 0;
470 priv->speed = 10;
471 break;
472
473 case 2:
474 printf("Enet starting in 10BT/FD\n");
475 priv->duplexity = 1;
476 priv->speed = 10;
477 break;
478
479 case 3:
480 printf("Enet starting in 100BT/HD\n");
481 priv->duplexity = 0;
482 priv->speed = 100;
483 break;
484
485 case 5:
486 printf("Enet starting in 100BT/FD\n");
487 priv->duplexity = 1;
488 priv->speed = 100;
489 break;
490
491 case 6:
492 printf("Enet starting in 1000BT/HD\n");
493 priv->duplexity = 0;
494 priv->speed = 1000;
495 break;
496
497 case 7:
498 printf("Enet starting in 1000BT/FD\n");
499 priv->duplexity = 1;
500 priv->speed = 1000;
501 break;
502
503 default:
504 printf("Auto-neg error, defaulting to 10BT/HD\n");
505 priv->duplexity = 0;
506 priv->speed = 10;
507 break;
508 }
509
510 return 0;
511
512}
wdenk97d80fc2004-06-09 00:34:46 +0000513/* Parse the 88E1011's status register for speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -0500514 * information
515 */
516uint mii_parse_88E1011_psr(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000517{
518 uint speed;
519
Stefan Roese5810dc32005-09-21 18:20:22 +0200520 mii_reg = read_phy_reg(priv, MIIM_88E1011_PHY_STATUS);
521
Andy Fleming7613afd2007-08-15 20:03:44 -0500522 if ((mii_reg & MIIM_88E1011_PHYSTAT_LINK) &&
523 !(mii_reg & MIIM_88E1011_PHYSTAT_SPDDONE)) {
Stefan Roese5810dc32005-09-21 18:20:22 +0200524 int i = 0;
525
Jon Loeliger89875e92006-10-10 17:03:43 -0500526 puts("Waiting for PHY realtime link");
Andy Fleming7613afd2007-08-15 20:03:44 -0500527 while (!(mii_reg & MIIM_88E1011_PHYSTAT_SPDDONE)) {
528 /* Timeout reached ? */
Stefan Roese5810dc32005-09-21 18:20:22 +0200529 if (i > PHY_AUTONEGOTIATE_TIMEOUT) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500530 puts(" TIMEOUT !\n");
Stefan Roese5810dc32005-09-21 18:20:22 +0200531 priv->link = 0;
532 break;
533 }
534
535 if ((i++ % 1000) == 0) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500536 putc('.');
Stefan Roese5810dc32005-09-21 18:20:22 +0200537 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500538 udelay(1000); /* 1 ms */
Stefan Roese5810dc32005-09-21 18:20:22 +0200539 mii_reg = read_phy_reg(priv, MIIM_88E1011_PHY_STATUS);
540 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500541 puts(" done\n");
542 udelay(500000); /* another 500 ms (results in faster booting) */
Andy Fleming7613afd2007-08-15 20:03:44 -0500543 } else {
544 if (mii_reg & MIIM_88E1011_PHYSTAT_LINK)
545 priv->link = 1;
546 else
547 priv->link = 0;
Stefan Roese5810dc32005-09-21 18:20:22 +0200548 }
549
Jon Loeliger89875e92006-10-10 17:03:43 -0500550 if (mii_reg & MIIM_88E1011_PHYSTAT_DUPLEX)
wdenk97d80fc2004-06-09 00:34:46 +0000551 priv->duplexity = 1;
552 else
553 priv->duplexity = 0;
554
Jon Loeliger89875e92006-10-10 17:03:43 -0500555 speed = (mii_reg & MIIM_88E1011_PHYSTAT_SPEED);
wdenk97d80fc2004-06-09 00:34:46 +0000556
Jon Loeliger89875e92006-10-10 17:03:43 -0500557 switch (speed) {
558 case MIIM_88E1011_PHYSTAT_GBIT:
559 priv->speed = 1000;
560 break;
561 case MIIM_88E1011_PHYSTAT_100:
562 priv->speed = 100;
563 break;
564 default:
565 priv->speed = 10;
wdenk97d80fc2004-06-09 00:34:46 +0000566 }
567
568 return 0;
569}
570
wdenk97d80fc2004-06-09 00:34:46 +0000571/* Parse the cis8201's status register for speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -0500572 * information
573 */
574uint mii_parse_cis8201(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000575{
576 uint speed;
577
Jon Loeliger89875e92006-10-10 17:03:43 -0500578 if (mii_reg & MIIM_CIS8201_AUXCONSTAT_DUPLEX)
wdenk97d80fc2004-06-09 00:34:46 +0000579 priv->duplexity = 1;
580 else
581 priv->duplexity = 0;
582
583 speed = mii_reg & MIIM_CIS8201_AUXCONSTAT_SPEED;
Jon Loeliger89875e92006-10-10 17:03:43 -0500584 switch (speed) {
585 case MIIM_CIS8201_AUXCONSTAT_GBIT:
586 priv->speed = 1000;
587 break;
588 case MIIM_CIS8201_AUXCONSTAT_100:
589 priv->speed = 100;
590 break;
591 default:
592 priv->speed = 10;
593 break;
wdenk97d80fc2004-06-09 00:34:46 +0000594 }
595
596 return 0;
597}
Jon Loeliger89875e92006-10-10 17:03:43 -0500598
Jon Loeligerdebb7352006-04-26 17:58:56 -0500599/* Parse the vsc8244's status register for speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -0500600 * information
601 */
602uint mii_parse_vsc8244(uint mii_reg, struct tsec_private * priv)
Jon Loeligerdebb7352006-04-26 17:58:56 -0500603{
Jon Loeliger89875e92006-10-10 17:03:43 -0500604 uint speed;
605
606 if (mii_reg & MIIM_VSC8244_AUXCONSTAT_DUPLEX)
607 priv->duplexity = 1;
608 else
609 priv->duplexity = 0;
610
611 speed = mii_reg & MIIM_VSC8244_AUXCONSTAT_SPEED;
612 switch (speed) {
613 case MIIM_VSC8244_AUXCONSTAT_GBIT:
614 priv->speed = 1000;
615 break;
616 case MIIM_VSC8244_AUXCONSTAT_100:
617 priv->speed = 100;
618 break;
619 default:
620 priv->speed = 10;
621 break;
622 }
623
624 return 0;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500625}
wdenk97d80fc2004-06-09 00:34:46 +0000626
wdenk97d80fc2004-06-09 00:34:46 +0000627/* Parse the DM9161's status register for speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -0500628 * information
629 */
630uint mii_parse_dm9161_scsr(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000631{
Jon Loeliger89875e92006-10-10 17:03:43 -0500632 if (mii_reg & (MIIM_DM9161_SCSR_100F | MIIM_DM9161_SCSR_100H))
wdenk97d80fc2004-06-09 00:34:46 +0000633 priv->speed = 100;
634 else
635 priv->speed = 10;
636
Jon Loeliger89875e92006-10-10 17:03:43 -0500637 if (mii_reg & (MIIM_DM9161_SCSR_100F | MIIM_DM9161_SCSR_10F))
wdenk97d80fc2004-06-09 00:34:46 +0000638 priv->duplexity = 1;
639 else
640 priv->duplexity = 0;
641
642 return 0;
643}
644
Jon Loeliger89875e92006-10-10 17:03:43 -0500645/*
646 * Hack to write all 4 PHYs with the LED values
647 */
648uint mii_cis8204_fixled(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000649{
650 uint phyid;
651 volatile tsec_t *regbase = priv->phyregs;
Jon Loeliger89875e92006-10-10 17:03:43 -0500652 int timeout = 1000000;
wdenk97d80fc2004-06-09 00:34:46 +0000653
Jon Loeliger89875e92006-10-10 17:03:43 -0500654 for (phyid = 0; phyid < 4; phyid++) {
wdenk97d80fc2004-06-09 00:34:46 +0000655 regbase->miimadd = (phyid << 8) | mii_reg;
656 regbase->miimcon = MIIM_CIS8204_SLEDCON_INIT;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500657 asm("sync");
wdenk97d80fc2004-06-09 00:34:46 +0000658
Jon Loeliger89875e92006-10-10 17:03:43 -0500659 timeout = 1000000;
660 while ((regbase->miimind & MIIMIND_BUSY) && timeout--) ;
wdenk97d80fc2004-06-09 00:34:46 +0000661 }
662
663 return MIIM_CIS8204_SLEDCON_INIT;
664}
665
Jon Loeliger89875e92006-10-10 17:03:43 -0500666uint mii_cis8204_setmode(uint mii_reg, struct tsec_private * priv)
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500667{
668 if (priv->flags & TSEC_REDUCED)
669 return MIIM_CIS8204_EPHYCON_INIT | MIIM_CIS8204_EPHYCON_RGMII;
670 else
671 return MIIM_CIS8204_EPHYCON_INIT;
672}
wdenk97d80fc2004-06-09 00:34:46 +0000673
674/* Initialized required registers to appropriate values, zeroing
675 * those we don't care about (unless zero is bad, in which case,
Jon Loeliger89875e92006-10-10 17:03:43 -0500676 * choose a more appropriate value)
677 */
678static void init_registers(volatile tsec_t * regs)
wdenk42d1f032003-10-15 23:53:47 +0000679{
680 /* Clear IEVENT */
681 regs->ievent = IEVENT_INIT_CLEAR;
682
683 regs->imask = IMASK_INIT_CLEAR;
684
685 regs->hash.iaddr0 = 0;
686 regs->hash.iaddr1 = 0;
687 regs->hash.iaddr2 = 0;
688 regs->hash.iaddr3 = 0;
689 regs->hash.iaddr4 = 0;
690 regs->hash.iaddr5 = 0;
691 regs->hash.iaddr6 = 0;
692 regs->hash.iaddr7 = 0;
693
694 regs->hash.gaddr0 = 0;
695 regs->hash.gaddr1 = 0;
696 regs->hash.gaddr2 = 0;
697 regs->hash.gaddr3 = 0;
698 regs->hash.gaddr4 = 0;
699 regs->hash.gaddr5 = 0;
700 regs->hash.gaddr6 = 0;
701 regs->hash.gaddr7 = 0;
702
703 regs->rctrl = 0x00000000;
704
705 /* Init RMON mib registers */
706 memset((void *)&(regs->rmon), 0, sizeof(rmon_mib_t));
707
708 regs->rmon.cam1 = 0xffffffff;
709 regs->rmon.cam2 = 0xffffffff;
710
711 regs->mrblr = MRBLR_INIT_SETTINGS;
712
713 regs->minflr = MINFLR_INIT_SETTINGS;
714
715 regs->attr = ATTR_INIT_SETTINGS;
716 regs->attreli = ATTRELI_INIT_SETTINGS;
717
718}
719
wdenk97d80fc2004-06-09 00:34:46 +0000720/* Configure maccfg2 based on negotiated speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -0500721 * reported by PHY handling code
722 */
wdenk97d80fc2004-06-09 00:34:46 +0000723static void adjust_link(struct eth_device *dev)
724{
725 struct tsec_private *priv = (struct tsec_private *)dev->priv;
726 volatile tsec_t *regs = priv->regs;
727
Jon Loeliger89875e92006-10-10 17:03:43 -0500728 if (priv->link) {
729 if (priv->duplexity != 0)
wdenk97d80fc2004-06-09 00:34:46 +0000730 regs->maccfg2 |= MACCFG2_FULL_DUPLEX;
731 else
732 regs->maccfg2 &= ~(MACCFG2_FULL_DUPLEX);
733
Jon Loeliger89875e92006-10-10 17:03:43 -0500734 switch (priv->speed) {
735 case 1000:
736 regs->maccfg2 = ((regs->maccfg2 & ~(MACCFG2_IF))
737 | MACCFG2_GMII);
738 break;
739 case 100:
740 case 10:
741 regs->maccfg2 = ((regs->maccfg2 & ~(MACCFG2_IF))
742 | MACCFG2_MII);
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500743
Nick Spencef484dc72006-09-07 07:39:46 -0700744 /* Set R100 bit in all modes although
745 * it is only used in RGMII mode
Jon Loeliger89875e92006-10-10 17:03:43 -0500746 */
Nick Spencef484dc72006-09-07 07:39:46 -0700747 if (priv->speed == 100)
Jon Loeliger89875e92006-10-10 17:03:43 -0500748 regs->ecntrl |= ECNTRL_R100;
749 else
750 regs->ecntrl &= ~(ECNTRL_R100);
751 break;
752 default:
753 printf("%s: Speed was bad\n", dev->name);
754 break;
wdenk97d80fc2004-06-09 00:34:46 +0000755 }
756
757 printf("Speed: %d, %s duplex\n", priv->speed,
Jon Loeliger89875e92006-10-10 17:03:43 -0500758 (priv->duplexity) ? "full" : "half");
wdenk97d80fc2004-06-09 00:34:46 +0000759
760 } else {
761 printf("%s: No link.\n", dev->name);
762 }
763}
764
wdenk97d80fc2004-06-09 00:34:46 +0000765/* Set up the buffers and their descriptors, and bring up the
Jon Loeliger89875e92006-10-10 17:03:43 -0500766 * interface
767 */
wdenk97d80fc2004-06-09 00:34:46 +0000768static void startup_tsec(struct eth_device *dev)
wdenk42d1f032003-10-15 23:53:47 +0000769{
770 int i;
wdenk97d80fc2004-06-09 00:34:46 +0000771 struct tsec_private *priv = (struct tsec_private *)dev->priv;
772 volatile tsec_t *regs = priv->regs;
wdenk42d1f032003-10-15 23:53:47 +0000773
774 /* Point to the buffer descriptors */
775 regs->tbase = (unsigned int)(&rtx.txbd[txIdx]);
776 regs->rbase = (unsigned int)(&rtx.rxbd[rxIdx]);
777
778 /* Initialize the Rx Buffer descriptors */
779 for (i = 0; i < PKTBUFSRX; i++) {
780 rtx.rxbd[i].status = RXBD_EMPTY;
781 rtx.rxbd[i].length = 0;
Jon Loeliger89875e92006-10-10 17:03:43 -0500782 rtx.rxbd[i].bufPtr = (uint) NetRxPackets[i];
wdenk42d1f032003-10-15 23:53:47 +0000783 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500784 rtx.rxbd[PKTBUFSRX - 1].status |= RXBD_WRAP;
wdenk42d1f032003-10-15 23:53:47 +0000785
786 /* Initialize the TX Buffer Descriptors */
Jon Loeliger89875e92006-10-10 17:03:43 -0500787 for (i = 0; i < TX_BUF_CNT; i++) {
wdenk42d1f032003-10-15 23:53:47 +0000788 rtx.txbd[i].status = 0;
789 rtx.txbd[i].length = 0;
790 rtx.txbd[i].bufPtr = 0;
791 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500792 rtx.txbd[TX_BUF_CNT - 1].status |= TXBD_WRAP;
wdenk42d1f032003-10-15 23:53:47 +0000793
wdenk97d80fc2004-06-09 00:34:46 +0000794 /* Start up the PHY */
Ben Warren4653f912006-10-26 14:38:25 -0400795 if(priv->phyinfo)
796 phy_run_commands(priv, priv->phyinfo->startup);
David Updegraffaf1c2b82007-04-20 14:34:48 -0500797
wdenk97d80fc2004-06-09 00:34:46 +0000798 adjust_link(dev);
799
wdenk42d1f032003-10-15 23:53:47 +0000800 /* Enable Transmit and Receive */
801 regs->maccfg1 |= (MACCFG1_RX_EN | MACCFG1_TX_EN);
802
803 /* Tell the DMA it is clear to go */
804 regs->dmactrl |= DMACTRL_INIT_SETTINGS;
805 regs->tstat = TSTAT_CLEAR_THALT;
Dan Wilson5c7ea642007-10-19 11:33:48 -0500806 regs->rstat = RSTAT_CLEAR_RHALT;
wdenk42d1f032003-10-15 23:53:47 +0000807 regs->dmactrl &= ~(DMACTRL_GRS | DMACTRL_GTS);
808}
809
wdenk9d46ea42005-03-14 23:56:42 +0000810/* This returns the status bits of the device. The return value
wdenk42d1f032003-10-15 23:53:47 +0000811 * is never checked, and this is what the 8260 driver did, so we
wdenk9d46ea42005-03-14 23:56:42 +0000812 * do the same. Presumably, this would be zero if there were no
Jon Loeliger89875e92006-10-10 17:03:43 -0500813 * errors
814 */
815static int tsec_send(struct eth_device *dev, volatile void *packet, int length)
wdenk42d1f032003-10-15 23:53:47 +0000816{
817 int i;
818 int result = 0;
wdenk97d80fc2004-06-09 00:34:46 +0000819 struct tsec_private *priv = (struct tsec_private *)dev->priv;
820 volatile tsec_t *regs = priv->regs;
wdenk42d1f032003-10-15 23:53:47 +0000821
822 /* Find an empty buffer descriptor */
Jon Loeliger89875e92006-10-10 17:03:43 -0500823 for (i = 0; rtx.txbd[txIdx].status & TXBD_READY; i++) {
wdenk42d1f032003-10-15 23:53:47 +0000824 if (i >= TOUT_LOOP) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500825 debug("%s: tsec: tx buffers full\n", dev->name);
wdenk42d1f032003-10-15 23:53:47 +0000826 return result;
827 }
828 }
829
Jon Loeliger89875e92006-10-10 17:03:43 -0500830 rtx.txbd[txIdx].bufPtr = (uint) packet;
wdenk42d1f032003-10-15 23:53:47 +0000831 rtx.txbd[txIdx].length = length;
Jon Loeliger89875e92006-10-10 17:03:43 -0500832 rtx.txbd[txIdx].status |=
833 (TXBD_READY | TXBD_LAST | TXBD_CRC | TXBD_INTERRUPT);
wdenk42d1f032003-10-15 23:53:47 +0000834
835 /* Tell the DMA to go */
836 regs->tstat = TSTAT_CLEAR_THALT;
837
838 /* Wait for buffer to be transmitted */
Jon Loeliger89875e92006-10-10 17:03:43 -0500839 for (i = 0; rtx.txbd[txIdx].status & TXBD_READY; i++) {
wdenk42d1f032003-10-15 23:53:47 +0000840 if (i >= TOUT_LOOP) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500841 debug("%s: tsec: tx error\n", dev->name);
wdenk42d1f032003-10-15 23:53:47 +0000842 return result;
843 }
844 }
845
846 txIdx = (txIdx + 1) % TX_BUF_CNT;
847 result = rtx.txbd[txIdx].status & TXBD_STATS;
848
849 return result;
850}
851
Jon Loeliger89875e92006-10-10 17:03:43 -0500852static int tsec_recv(struct eth_device *dev)
wdenk42d1f032003-10-15 23:53:47 +0000853{
854 int length;
wdenk97d80fc2004-06-09 00:34:46 +0000855 struct tsec_private *priv = (struct tsec_private *)dev->priv;
856 volatile tsec_t *regs = priv->regs;
wdenk42d1f032003-10-15 23:53:47 +0000857
Jon Loeliger89875e92006-10-10 17:03:43 -0500858 while (!(rtx.rxbd[rxIdx].status & RXBD_EMPTY)) {
wdenk42d1f032003-10-15 23:53:47 +0000859
860 length = rtx.rxbd[rxIdx].length;
861
862 /* Send the packet up if there were no errors */
863 if (!(rtx.rxbd[rxIdx].status & RXBD_STATS)) {
864 NetReceive(NetRxPackets[rxIdx], length - 4);
wdenk97d80fc2004-06-09 00:34:46 +0000865 } else {
866 printf("Got error %x\n",
Jon Loeliger89875e92006-10-10 17:03:43 -0500867 (rtx.rxbd[rxIdx].status & RXBD_STATS));
wdenk42d1f032003-10-15 23:53:47 +0000868 }
869
870 rtx.rxbd[rxIdx].length = 0;
871
872 /* Set the wrap bit if this is the last element in the list */
Jon Loeliger89875e92006-10-10 17:03:43 -0500873 rtx.rxbd[rxIdx].status =
874 RXBD_EMPTY | (((rxIdx + 1) == PKTBUFSRX) ? RXBD_WRAP : 0);
wdenk42d1f032003-10-15 23:53:47 +0000875
876 rxIdx = (rxIdx + 1) % PKTBUFSRX;
877 }
878
Jon Loeliger89875e92006-10-10 17:03:43 -0500879 if (regs->ievent & IEVENT_BSY) {
wdenk42d1f032003-10-15 23:53:47 +0000880 regs->ievent = IEVENT_BSY;
881 regs->rstat = RSTAT_CLEAR_RHALT;
882 }
883
884 return -1;
885
886}
887
wdenk97d80fc2004-06-09 00:34:46 +0000888/* Stop the interface */
Jon Loeliger89875e92006-10-10 17:03:43 -0500889static void tsec_halt(struct eth_device *dev)
wdenk42d1f032003-10-15 23:53:47 +0000890{
wdenk97d80fc2004-06-09 00:34:46 +0000891 struct tsec_private *priv = (struct tsec_private *)dev->priv;
892 volatile tsec_t *regs = priv->regs;
wdenk42d1f032003-10-15 23:53:47 +0000893
894 regs->dmactrl &= ~(DMACTRL_GRS | DMACTRL_GTS);
895 regs->dmactrl |= (DMACTRL_GRS | DMACTRL_GTS);
896
Jon Loeliger89875e92006-10-10 17:03:43 -0500897 while (!(regs->ievent & (IEVENT_GRSC | IEVENT_GTSC))) ;
wdenk42d1f032003-10-15 23:53:47 +0000898
899 regs->maccfg1 &= ~(MACCFG1_TX_EN | MACCFG1_RX_EN);
900
wdenk97d80fc2004-06-09 00:34:46 +0000901 /* Shut down the PHY, as needed */
Ben Warren4653f912006-10-26 14:38:25 -0400902 if(priv->phyinfo)
903 phy_run_commands(priv, priv->phyinfo->shutdown);
wdenk42d1f032003-10-15 23:53:47 +0000904}
wdenk7abf0c52004-04-18 21:45:42 +0000905
Andy Flemingc7e717e2007-08-03 04:05:25 -0500906struct phy_info phy_info_M88E1149S = {
Wolfgang Denk5728be32007-08-06 01:01:49 +0200907 0x1410ca,
908 "Marvell 88E1149S",
909 4,
910 (struct phy_cmd[]){ /* config */
911 /* Reset and configure the PHY */
912 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
913 {0x1d, 0x1f, NULL},
914 {0x1e, 0x200c, NULL},
915 {0x1d, 0x5, NULL},
916 {0x1e, 0x0, NULL},
917 {0x1e, 0x100, NULL},
918 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
919 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
920 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
921 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
922 {miim_end,}
923 },
924 (struct phy_cmd[]){ /* startup */
925 /* Status is read once to clear old link state */
926 {MIIM_STATUS, miim_read, NULL},
927 /* Auto-negotiate */
928 {MIIM_STATUS, miim_read, &mii_parse_sr},
929 /* Read the status */
930 {MIIM_88E1011_PHY_STATUS, miim_read,
931 &mii_parse_88E1011_psr},
932 {miim_end,}
933 },
934 (struct phy_cmd[]){ /* shutdown */
935 {miim_end,}
936 },
Andy Flemingc7e717e2007-08-03 04:05:25 -0500937};
938
Paul Gortmaker91e25762007-01-16 11:38:14 -0500939/* The 5411 id is 0x206070, the 5421 is 0x2060e0 */
940struct phy_info phy_info_BCM5461S = {
941 0x02060c1, /* 5461 ID */
942 "Broadcom BCM5461S",
943 0, /* not clear to me what minor revisions we can shift away */
944 (struct phy_cmd[]) { /* config */
945 /* Reset and configure the PHY */
946 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
947 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
948 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
949 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
950 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
951 {miim_end,}
952 },
953 (struct phy_cmd[]) { /* startup */
954 /* Status is read once to clear old link state */
955 {MIIM_STATUS, miim_read, NULL},
956 /* Auto-negotiate */
957 {MIIM_STATUS, miim_read, &mii_parse_sr},
958 /* Read the status */
959 {MIIM_BCM54xx_AUXSTATUS, miim_read, &mii_parse_BCM54xx_sr},
960 {miim_end,}
961 },
962 (struct phy_cmd[]) { /* shutdown */
963 {miim_end,}
964 },
965};
966
Joe Hammanc3243cf2007-04-30 16:47:28 -0500967struct phy_info phy_info_BCM5464S = {
968 0x02060b1, /* 5464 ID */
969 "Broadcom BCM5464S",
970 0, /* not clear to me what minor revisions we can shift away */
971 (struct phy_cmd[]) { /* config */
972 /* Reset and configure the PHY */
973 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
974 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
975 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
976 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
977 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
978 {miim_end,}
979 },
980 (struct phy_cmd[]) { /* startup */
981 /* Status is read once to clear old link state */
982 {MIIM_STATUS, miim_read, NULL},
983 /* Auto-negotiate */
984 {MIIM_STATUS, miim_read, &mii_parse_sr},
985 /* Read the status */
986 {MIIM_BCM54xx_AUXSTATUS, miim_read, &mii_parse_BCM54xx_sr},
987 {miim_end,}
988 },
989 (struct phy_cmd[]) { /* shutdown */
990 {miim_end,}
991 },
992};
993
wdenk97d80fc2004-06-09 00:34:46 +0000994struct phy_info phy_info_M88E1011S = {
995 0x01410c6,
996 "Marvell 88E1011S",
997 4,
Jon Loeliger89875e92006-10-10 17:03:43 -0500998 (struct phy_cmd[]){ /* config */
999 /* Reset and configure the PHY */
1000 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1001 {0x1d, 0x1f, NULL},
1002 {0x1e, 0x200c, NULL},
1003 {0x1d, 0x5, NULL},
1004 {0x1e, 0x0, NULL},
1005 {0x1e, 0x100, NULL},
1006 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1007 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1008 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1009 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1010 {miim_end,}
1011 },
1012 (struct phy_cmd[]){ /* startup */
1013 /* Status is read once to clear old link state */
1014 {MIIM_STATUS, miim_read, NULL},
1015 /* Auto-negotiate */
1016 {MIIM_STATUS, miim_read, &mii_parse_sr},
1017 /* Read the status */
1018 {MIIM_88E1011_PHY_STATUS, miim_read,
1019 &mii_parse_88E1011_psr},
1020 {miim_end,}
1021 },
1022 (struct phy_cmd[]){ /* shutdown */
1023 {miim_end,}
1024 },
wdenk97d80fc2004-06-09 00:34:46 +00001025};
1026
wdenk9d46ea42005-03-14 23:56:42 +00001027struct phy_info phy_info_M88E1111S = {
1028 0x01410cc,
1029 "Marvell 88E1111S",
1030 4,
Jon Loeliger89875e92006-10-10 17:03:43 -05001031 (struct phy_cmd[]){ /* config */
1032 /* Reset and configure the PHY */
1033 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
Nick Spencef484dc72006-09-07 07:39:46 -07001034 {0x14, 0x0cd2, NULL}, /* Delay RGMII TX and RX */
Jon Loeliger89875e92006-10-10 17:03:43 -05001035 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1036 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1037 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1038 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1039 {miim_end,}
1040 },
1041 (struct phy_cmd[]){ /* startup */
1042 /* Status is read once to clear old link state */
1043 {MIIM_STATUS, miim_read, NULL},
1044 /* Auto-negotiate */
1045 {MIIM_STATUS, miim_read, &mii_parse_sr},
1046 /* Read the status */
1047 {MIIM_88E1011_PHY_STATUS, miim_read,
1048 &mii_parse_88E1011_psr},
1049 {miim_end,}
1050 },
1051 (struct phy_cmd[]){ /* shutdown */
1052 {miim_end,}
1053 },
wdenk9d46ea42005-03-14 23:56:42 +00001054};
1055
Andy Fleming09f3e092006-09-13 10:34:18 -05001056static unsigned int m88e1145_setmode(uint mii_reg, struct tsec_private *priv)
1057{
Andy Fleming09f3e092006-09-13 10:34:18 -05001058 uint mii_data = read_phy_reg(priv, mii_reg);
1059
Andy Fleming09f3e092006-09-13 10:34:18 -05001060 /* Setting MIIM_88E1145_PHY_EXT_CR */
1061 if (priv->flags & TSEC_REDUCED)
1062 return mii_data |
Jon Loeliger89875e92006-10-10 17:03:43 -05001063 MIIM_M88E1145_RGMII_RX_DELAY | MIIM_M88E1145_RGMII_TX_DELAY;
Andy Fleming09f3e092006-09-13 10:34:18 -05001064 else
1065 return mii_data;
1066}
1067
1068static struct phy_info phy_info_M88E1145 = {
1069 0x01410cd,
1070 "Marvell 88E1145",
1071 4,
Jon Loeliger89875e92006-10-10 17:03:43 -05001072 (struct phy_cmd[]){ /* config */
Andy Fleming7507d562007-05-08 17:23:02 -05001073 /* Reset the PHY */
1074 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1075
Jon Loeliger89875e92006-10-10 17:03:43 -05001076 /* Errata E0, E1 */
1077 {29, 0x001b, NULL},
1078 {30, 0x418f, NULL},
1079 {29, 0x0016, NULL},
1080 {30, 0xa2da, NULL},
Andy Fleming09f3e092006-09-13 10:34:18 -05001081
Andy Fleming7507d562007-05-08 17:23:02 -05001082 /* Configure the PHY */
Jon Loeliger89875e92006-10-10 17:03:43 -05001083 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1084 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1085 {MIIM_88E1011_PHY_SCR, MIIM_88E1011_PHY_MDI_X_AUTO,
1086 NULL},
1087 {MIIM_88E1145_PHY_EXT_CR, 0, &m88e1145_setmode},
1088 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1089 {MIIM_CONTROL, MIIM_CONTROL_INIT, NULL},
1090 {miim_end,}
1091 },
1092 (struct phy_cmd[]){ /* startup */
1093 /* Status is read once to clear old link state */
1094 {MIIM_STATUS, miim_read, NULL},
1095 /* Auto-negotiate */
1096 {MIIM_STATUS, miim_read, &mii_parse_sr},
1097 {MIIM_88E1111_PHY_LED_CONTROL,
1098 MIIM_88E1111_PHY_LED_DIRECT, NULL},
1099 /* Read the Status */
1100 {MIIM_88E1011_PHY_STATUS, miim_read,
1101 &mii_parse_88E1011_psr},
1102 {miim_end,}
1103 },
1104 (struct phy_cmd[]){ /* shutdown */
1105 {miim_end,}
1106 },
Andy Fleming09f3e092006-09-13 10:34:18 -05001107};
1108
wdenk97d80fc2004-06-09 00:34:46 +00001109struct phy_info phy_info_cis8204 = {
1110 0x3f11,
1111 "Cicada Cis8204",
1112 6,
Jon Loeliger89875e92006-10-10 17:03:43 -05001113 (struct phy_cmd[]){ /* config */
1114 /* Override PHY config settings */
1115 {MIIM_CIS8201_AUX_CONSTAT,
1116 MIIM_CIS8201_AUXCONSTAT_INIT, NULL},
1117 /* Configure some basic stuff */
1118 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1119 {MIIM_CIS8204_SLED_CON, MIIM_CIS8204_SLEDCON_INIT,
1120 &mii_cis8204_fixled},
1121 {MIIM_CIS8204_EPHY_CON, MIIM_CIS8204_EPHYCON_INIT,
1122 &mii_cis8204_setmode},
1123 {miim_end,}
1124 },
1125 (struct phy_cmd[]){ /* startup */
1126 /* Read the Status (2x to make sure link is right) */
1127 {MIIM_STATUS, miim_read, NULL},
1128 /* Auto-negotiate */
1129 {MIIM_STATUS, miim_read, &mii_parse_sr},
1130 /* Read the status */
1131 {MIIM_CIS8201_AUX_CONSTAT, miim_read,
1132 &mii_parse_cis8201},
1133 {miim_end,}
1134 },
1135 (struct phy_cmd[]){ /* shutdown */
1136 {miim_end,}
1137 },
wdenk97d80fc2004-06-09 00:34:46 +00001138};
1139
1140/* Cicada 8201 */
1141struct phy_info phy_info_cis8201 = {
1142 0xfc41,
1143 "CIS8201",
1144 4,
Jon Loeliger89875e92006-10-10 17:03:43 -05001145 (struct phy_cmd[]){ /* config */
1146 /* Override PHY config settings */
1147 {MIIM_CIS8201_AUX_CONSTAT,
1148 MIIM_CIS8201_AUXCONSTAT_INIT, NULL},
1149 /* Set up the interface mode */
1150 {MIIM_CIS8201_EXT_CON1, MIIM_CIS8201_EXTCON1_INIT,
1151 NULL},
1152 /* Configure some basic stuff */
1153 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1154 {miim_end,}
1155 },
1156 (struct phy_cmd[]){ /* startup */
1157 /* Read the Status (2x to make sure link is right) */
1158 {MIIM_STATUS, miim_read, NULL},
1159 /* Auto-negotiate */
1160 {MIIM_STATUS, miim_read, &mii_parse_sr},
1161 /* Read the status */
1162 {MIIM_CIS8201_AUX_CONSTAT, miim_read,
1163 &mii_parse_cis8201},
1164 {miim_end,}
1165 },
1166 (struct phy_cmd[]){ /* shutdown */
1167 {miim_end,}
1168 },
wdenk97d80fc2004-06-09 00:34:46 +00001169};
Jon Loeligerdebb7352006-04-26 17:58:56 -05001170struct phy_info phy_info_VSC8244 = {
Jon Loeliger89875e92006-10-10 17:03:43 -05001171 0x3f1b,
1172 "Vitesse VSC8244",
1173 6,
1174 (struct phy_cmd[]){ /* config */
1175 /* Override PHY config settings */
1176 /* Configure some basic stuff */
1177 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1178 {miim_end,}
1179 },
1180 (struct phy_cmd[]){ /* startup */
1181 /* Read the Status (2x to make sure link is right) */
1182 {MIIM_STATUS, miim_read, NULL},
1183 /* Auto-negotiate */
1184 {MIIM_STATUS, miim_read, &mii_parse_sr},
1185 /* Read the status */
1186 {MIIM_VSC8244_AUX_CONSTAT, miim_read,
1187 &mii_parse_vsc8244},
1188 {miim_end,}
1189 },
1190 (struct phy_cmd[]){ /* shutdown */
1191 {miim_end,}
1192 },
Jon Loeligerdebb7352006-04-26 17:58:56 -05001193};
wdenk97d80fc2004-06-09 00:34:46 +00001194
wdenk97d80fc2004-06-09 00:34:46 +00001195struct phy_info phy_info_dm9161 = {
1196 0x0181b88,
1197 "Davicom DM9161E",
1198 4,
Jon Loeliger89875e92006-10-10 17:03:43 -05001199 (struct phy_cmd[]){ /* config */
1200 {MIIM_CONTROL, MIIM_DM9161_CR_STOP, NULL},
1201 /* Do not bypass the scrambler/descrambler */
1202 {MIIM_DM9161_SCR, MIIM_DM9161_SCR_INIT, NULL},
1203 /* Clear 10BTCSR to default */
1204 {MIIM_DM9161_10BTCSR, MIIM_DM9161_10BTCSR_INIT,
1205 NULL},
1206 /* Configure some basic stuff */
1207 {MIIM_CONTROL, MIIM_CR_INIT, NULL},
1208 /* Restart Auto Negotiation */
1209 {MIIM_CONTROL, MIIM_DM9161_CR_RSTAN, NULL},
1210 {miim_end,}
1211 },
1212 (struct phy_cmd[]){ /* startup */
1213 /* Status is read once to clear old link state */
1214 {MIIM_STATUS, miim_read, NULL},
1215 /* Auto-negotiate */
1216 {MIIM_STATUS, miim_read, &mii_parse_sr},
1217 /* Read the status */
1218 {MIIM_DM9161_SCSR, miim_read,
1219 &mii_parse_dm9161_scsr},
1220 {miim_end,}
1221 },
1222 (struct phy_cmd[]){ /* shutdown */
1223 {miim_end,}
1224 },
wdenk97d80fc2004-06-09 00:34:46 +00001225};
David Updegraffaf1c2b82007-04-20 14:34:48 -05001226/* a generic flavor. */
1227struct phy_info phy_info_generic = {
1228 0,
1229 "Unknown/Generic PHY",
1230 32,
1231 (struct phy_cmd[]) { /* config */
1232 {PHY_BMCR, PHY_BMCR_RESET, NULL},
1233 {PHY_BMCR, PHY_BMCR_AUTON|PHY_BMCR_RST_NEG, NULL},
1234 {miim_end,}
1235 },
1236 (struct phy_cmd[]) { /* startup */
1237 {PHY_BMSR, miim_read, NULL},
1238 {PHY_BMSR, miim_read, &mii_parse_sr},
1239 {PHY_BMSR, miim_read, &mii_parse_link},
1240 {miim_end,}
1241 },
1242 (struct phy_cmd[]) { /* shutdown */
1243 {miim_end,}
1244 }
1245};
1246
wdenk97d80fc2004-06-09 00:34:46 +00001247
wdenk3dd7f0f2005-04-04 23:43:44 +00001248uint mii_parse_lxt971_sr2(uint mii_reg, struct tsec_private *priv)
1249{
wdenk3c2b3d42005-04-05 23:32:21 +00001250 unsigned int speed;
1251 if (priv->link) {
1252 speed = mii_reg & MIIM_LXT971_SR2_SPEED_MASK;
wdenk3dd7f0f2005-04-04 23:43:44 +00001253
wdenk3c2b3d42005-04-05 23:32:21 +00001254 switch (speed) {
1255 case MIIM_LXT971_SR2_10HDX:
1256 priv->speed = 10;
1257 priv->duplexity = 0;
1258 break;
1259 case MIIM_LXT971_SR2_10FDX:
1260 priv->speed = 10;
1261 priv->duplexity = 1;
1262 break;
1263 case MIIM_LXT971_SR2_100HDX:
1264 priv->speed = 100;
1265 priv->duplexity = 0;
urwithsughosh@gmail.comcd2d1602007-09-10 14:54:56 -04001266 break;
wdenk3c2b3d42005-04-05 23:32:21 +00001267 default:
1268 priv->speed = 100;
1269 priv->duplexity = 1;
wdenk3c2b3d42005-04-05 23:32:21 +00001270 }
1271 } else {
1272 priv->speed = 0;
1273 priv->duplexity = 0;
1274 }
wdenk3dd7f0f2005-04-04 23:43:44 +00001275
wdenk3c2b3d42005-04-05 23:32:21 +00001276 return 0;
wdenk3dd7f0f2005-04-04 23:43:44 +00001277}
1278
wdenk9d46ea42005-03-14 23:56:42 +00001279static struct phy_info phy_info_lxt971 = {
1280 0x0001378e,
1281 "LXT971",
1282 4,
Jon Loeliger89875e92006-10-10 17:03:43 -05001283 (struct phy_cmd[]){ /* config */
1284 {MIIM_CR, MIIM_CR_INIT, mii_cr_init}, /* autonegotiate */
1285 {miim_end,}
1286 },
1287 (struct phy_cmd[]){ /* startup - enable interrupts */
1288 /* { 0x12, 0x00f2, NULL }, */
1289 {MIIM_STATUS, miim_read, NULL},
1290 {MIIM_STATUS, miim_read, &mii_parse_sr},
1291 {MIIM_LXT971_SR2, miim_read, &mii_parse_lxt971_sr2},
1292 {miim_end,}
1293 },
1294 (struct phy_cmd[]){ /* shutdown - disable interrupts */
1295 {miim_end,}
1296 },
wdenk9d46ea42005-03-14 23:56:42 +00001297};
1298
Wolfgang Denkbe5048f2006-03-12 22:50:55 +01001299/* Parse the DP83865's link and auto-neg status register for speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -05001300 * information
1301 */
Wolfgang Denkbe5048f2006-03-12 22:50:55 +01001302uint mii_parse_dp83865_lanr(uint mii_reg, struct tsec_private *priv)
1303{
1304 switch (mii_reg & MIIM_DP83865_SPD_MASK) {
1305
1306 case MIIM_DP83865_SPD_1000:
1307 priv->speed = 1000;
1308 break;
1309
1310 case MIIM_DP83865_SPD_100:
1311 priv->speed = 100;
1312 break;
1313
1314 default:
1315 priv->speed = 10;
1316 break;
1317
1318 }
1319
1320 if (mii_reg & MIIM_DP83865_DPX_FULL)
1321 priv->duplexity = 1;
1322 else
1323 priv->duplexity = 0;
1324
1325 return 0;
1326}
1327
1328struct phy_info phy_info_dp83865 = {
1329 0x20005c7,
1330 "NatSemi DP83865",
1331 4,
Jon Loeliger89875e92006-10-10 17:03:43 -05001332 (struct phy_cmd[]){ /* config */
1333 {MIIM_CONTROL, MIIM_DP83865_CR_INIT, NULL},
1334 {miim_end,}
1335 },
1336 (struct phy_cmd[]){ /* startup */
1337 /* Status is read once to clear old link state */
1338 {MIIM_STATUS, miim_read, NULL},
1339 /* Auto-negotiate */
1340 {MIIM_STATUS, miim_read, &mii_parse_sr},
1341 /* Read the link and auto-neg status */
1342 {MIIM_DP83865_LANR, miim_read,
1343 &mii_parse_dp83865_lanr},
1344 {miim_end,}
1345 },
1346 (struct phy_cmd[]){ /* shutdown */
1347 {miim_end,}
1348 },
Wolfgang Denkbe5048f2006-03-12 22:50:55 +01001349};
1350
wdenk97d80fc2004-06-09 00:34:46 +00001351struct phy_info *phy_info[] = {
wdenk97d80fc2004-06-09 00:34:46 +00001352 &phy_info_cis8204,
Timur Tabi2ad6b512006-10-31 18:44:42 -06001353 &phy_info_cis8201,
Paul Gortmaker91e25762007-01-16 11:38:14 -05001354 &phy_info_BCM5461S,
Joe Hammanc3243cf2007-04-30 16:47:28 -05001355 &phy_info_BCM5464S,
wdenk97d80fc2004-06-09 00:34:46 +00001356 &phy_info_M88E1011S,
wdenk9d46ea42005-03-14 23:56:42 +00001357 &phy_info_M88E1111S,
Andy Fleming09f3e092006-09-13 10:34:18 -05001358 &phy_info_M88E1145,
Wolfgang Denk5728be32007-08-06 01:01:49 +02001359 &phy_info_M88E1149S,
wdenk97d80fc2004-06-09 00:34:46 +00001360 &phy_info_dm9161,
wdenk9d46ea42005-03-14 23:56:42 +00001361 &phy_info_lxt971,
Jon Loeligerdebb7352006-04-26 17:58:56 -05001362 &phy_info_VSC8244,
Wolfgang Denkbe5048f2006-03-12 22:50:55 +01001363 &phy_info_dp83865,
David Updegraffaf1c2b82007-04-20 14:34:48 -05001364 &phy_info_generic,
wdenk97d80fc2004-06-09 00:34:46 +00001365 NULL
1366};
1367
wdenk97d80fc2004-06-09 00:34:46 +00001368/* Grab the identifier of the device's PHY, and search through
wdenk9d46ea42005-03-14 23:56:42 +00001369 * all of the known PHYs to see if one matches. If so, return
Jon Loeliger89875e92006-10-10 17:03:43 -05001370 * it, if not, return NULL
1371 */
1372struct phy_info *get_phy_info(struct eth_device *dev)
wdenk97d80fc2004-06-09 00:34:46 +00001373{
1374 struct tsec_private *priv = (struct tsec_private *)dev->priv;
1375 uint phy_reg, phy_ID;
1376 int i;
1377 struct phy_info *theInfo = NULL;
1378
1379 /* Grab the bits from PHYIR1, and put them in the upper half */
1380 phy_reg = read_phy_reg(priv, MIIM_PHYIR1);
1381 phy_ID = (phy_reg & 0xffff) << 16;
1382
1383 /* Grab the bits from PHYIR2, and put them in the lower half */
1384 phy_reg = read_phy_reg(priv, MIIM_PHYIR2);
1385 phy_ID |= (phy_reg & 0xffff);
1386
1387 /* loop through all the known PHY types, and find one that */
1388 /* matches the ID we read from the PHY. */
Jon Loeliger89875e92006-10-10 17:03:43 -05001389 for (i = 0; phy_info[i]; i++) {
Andy Fleming2a3cee42007-05-09 00:54:20 -05001390 if (phy_info[i]->id == (phy_ID >> phy_info[i]->shift)) {
wdenk97d80fc2004-06-09 00:34:46 +00001391 theInfo = phy_info[i];
Andy Fleming2a3cee42007-05-09 00:54:20 -05001392 break;
1393 }
wdenk97d80fc2004-06-09 00:34:46 +00001394 }
1395
Jon Loeliger89875e92006-10-10 17:03:43 -05001396 if (theInfo == NULL) {
wdenk97d80fc2004-06-09 00:34:46 +00001397 printf("%s: PHY id %x is not supported!\n", dev->name, phy_ID);
1398 return NULL;
1399 } else {
Stefan Roese5810dc32005-09-21 18:20:22 +02001400 debug("%s: PHY is %s (%x)\n", dev->name, theInfo->name, phy_ID);
wdenk97d80fc2004-06-09 00:34:46 +00001401 }
1402
1403 return theInfo;
1404}
1405
wdenk97d80fc2004-06-09 00:34:46 +00001406/* Execute the given series of commands on the given device's
Jon Loeliger89875e92006-10-10 17:03:43 -05001407 * PHY, running functions as necessary
1408 */
wdenk97d80fc2004-06-09 00:34:46 +00001409void phy_run_commands(struct tsec_private *priv, struct phy_cmd *cmd)
1410{
1411 int i;
1412 uint result;
1413 volatile tsec_t *phyregs = priv->phyregs;
1414
1415 phyregs->miimcfg = MIIMCFG_RESET;
1416
1417 phyregs->miimcfg = MIIMCFG_INIT_VALUE;
1418
Jon Loeliger89875e92006-10-10 17:03:43 -05001419 while (phyregs->miimind & MIIMIND_BUSY) ;
wdenk97d80fc2004-06-09 00:34:46 +00001420
Jon Loeliger89875e92006-10-10 17:03:43 -05001421 for (i = 0; cmd->mii_reg != miim_end; i++) {
1422 if (cmd->mii_data == miim_read) {
wdenk97d80fc2004-06-09 00:34:46 +00001423 result = read_phy_reg(priv, cmd->mii_reg);
1424
Jon Loeliger89875e92006-10-10 17:03:43 -05001425 if (cmd->funct != NULL)
1426 (*(cmd->funct)) (result, priv);
wdenk97d80fc2004-06-09 00:34:46 +00001427
1428 } else {
Jon Loeliger89875e92006-10-10 17:03:43 -05001429 if (cmd->funct != NULL)
1430 result = (*(cmd->funct)) (cmd->mii_reg, priv);
wdenk97d80fc2004-06-09 00:34:46 +00001431 else
1432 result = cmd->mii_data;
1433
1434 write_phy_reg(priv, cmd->mii_reg, result);
1435
1436 }
1437 cmd++;
1438 }
1439}
1440
wdenk97d80fc2004-06-09 00:34:46 +00001441/* Relocate the function pointers in the phy cmd lists */
1442static void relocate_cmds(void)
1443{
1444 struct phy_cmd **cmdlistptr;
1445 struct phy_cmd *cmd;
Jon Loeliger89875e92006-10-10 17:03:43 -05001446 int i, j, k;
wdenk97d80fc2004-06-09 00:34:46 +00001447
Jon Loeliger89875e92006-10-10 17:03:43 -05001448 for (i = 0; phy_info[i]; i++) {
wdenk97d80fc2004-06-09 00:34:46 +00001449 /* First thing's first: relocate the pointers to the
1450 * PHY command structures (the structs were done) */
Jon Loeliger89875e92006-10-10 17:03:43 -05001451 phy_info[i] = (struct phy_info *)((uint) phy_info[i]
1452 + gd->reloc_off);
wdenk97d80fc2004-06-09 00:34:46 +00001453 phy_info[i]->name += gd->reloc_off;
1454 phy_info[i]->config =
Jon Loeliger89875e92006-10-10 17:03:43 -05001455 (struct phy_cmd *)((uint) phy_info[i]->config
1456 + gd->reloc_off);
wdenk97d80fc2004-06-09 00:34:46 +00001457 phy_info[i]->startup =
Jon Loeliger89875e92006-10-10 17:03:43 -05001458 (struct phy_cmd *)((uint) phy_info[i]->startup
1459 + gd->reloc_off);
wdenk97d80fc2004-06-09 00:34:46 +00001460 phy_info[i]->shutdown =
Jon Loeliger89875e92006-10-10 17:03:43 -05001461 (struct phy_cmd *)((uint) phy_info[i]->shutdown
1462 + gd->reloc_off);
wdenk97d80fc2004-06-09 00:34:46 +00001463
1464 cmdlistptr = &phy_info[i]->config;
Jon Loeliger89875e92006-10-10 17:03:43 -05001465 j = 0;
1466 for (; cmdlistptr <= &phy_info[i]->shutdown; cmdlistptr++) {
1467 k = 0;
1468 for (cmd = *cmdlistptr;
1469 cmd->mii_reg != miim_end;
1470 cmd++) {
wdenk97d80fc2004-06-09 00:34:46 +00001471 /* Only relocate non-NULL pointers */
Jon Loeliger89875e92006-10-10 17:03:43 -05001472 if (cmd->funct)
wdenk97d80fc2004-06-09 00:34:46 +00001473 cmd->funct += gd->reloc_off;
1474
1475 k++;
1476 }
1477 j++;
1478 }
1479 }
1480
1481 relocated = 1;
1482}
1483
Jon Loeligercb51c0b2007-07-09 17:39:42 -05001484#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) \
Marian Balakowicz63ff0042005-10-28 22:30:33 +02001485 && !defined(BITBANGMII)
wdenk97d80fc2004-06-09 00:34:46 +00001486
Jon Loeliger89875e92006-10-10 17:03:43 -05001487struct tsec_private *get_priv_for_phy(unsigned char phyaddr)
wdenk97d80fc2004-06-09 00:34:46 +00001488{
1489 int i;
1490
Jon Loeliger89875e92006-10-10 17:03:43 -05001491 for (i = 0; i < MAXCONTROLLERS; i++) {
1492 if (privlist[i]->phyaddr == phyaddr)
wdenk97d80fc2004-06-09 00:34:46 +00001493 return privlist[i];
1494 }
1495
1496 return NULL;
1497}
1498
wdenk7abf0c52004-04-18 21:45:42 +00001499/*
1500 * Read a MII PHY register.
1501 *
1502 * Returns:
wdenk97d80fc2004-06-09 00:34:46 +00001503 * 0 on success
wdenk7abf0c52004-04-18 21:45:42 +00001504 */
Marian Balakowicz63ff0042005-10-28 22:30:33 +02001505static int tsec_miiphy_read(char *devname, unsigned char addr,
Jon Loeliger89875e92006-10-10 17:03:43 -05001506 unsigned char reg, unsigned short *value)
wdenk7abf0c52004-04-18 21:45:42 +00001507{
wdenk97d80fc2004-06-09 00:34:46 +00001508 unsigned short ret;
1509 struct tsec_private *priv = get_priv_for_phy(addr);
wdenk7abf0c52004-04-18 21:45:42 +00001510
Jon Loeliger89875e92006-10-10 17:03:43 -05001511 if (NULL == priv) {
wdenk97d80fc2004-06-09 00:34:46 +00001512 printf("Can't read PHY at address %d\n", addr);
1513 return -1;
1514 }
1515
1516 ret = (unsigned short)read_phy_reg(priv, reg);
1517 *value = ret;
wdenk7abf0c52004-04-18 21:45:42 +00001518
1519 return 0;
1520}
1521
1522/*
1523 * Write a MII PHY register.
1524 *
1525 * Returns:
wdenk97d80fc2004-06-09 00:34:46 +00001526 * 0 on success
wdenk7abf0c52004-04-18 21:45:42 +00001527 */
Marian Balakowicz63ff0042005-10-28 22:30:33 +02001528static int tsec_miiphy_write(char *devname, unsigned char addr,
Jon Loeliger89875e92006-10-10 17:03:43 -05001529 unsigned char reg, unsigned short value)
wdenk7abf0c52004-04-18 21:45:42 +00001530{
wdenk97d80fc2004-06-09 00:34:46 +00001531 struct tsec_private *priv = get_priv_for_phy(addr);
wdenk7abf0c52004-04-18 21:45:42 +00001532
Jon Loeliger89875e92006-10-10 17:03:43 -05001533 if (NULL == priv) {
wdenk97d80fc2004-06-09 00:34:46 +00001534 printf("Can't write PHY at address %d\n", addr);
1535 return -1;
1536 }
1537
1538 write_phy_reg(priv, reg, value);
wdenk7abf0c52004-04-18 21:45:42 +00001539
1540 return 0;
1541}
wdenk97d80fc2004-06-09 00:34:46 +00001542
Jon Loeligercb51c0b2007-07-09 17:39:42 -05001543#endif
wdenk97d80fc2004-06-09 00:34:46 +00001544
David Updegraff53a5c422007-06-11 10:41:07 -05001545#ifdef CONFIG_MCAST_TFTP
1546
1547/* CREDITS: linux gianfar driver, slightly adjusted... thanx. */
1548
1549/* Set the appropriate hash bit for the given addr */
1550
1551/* The algorithm works like so:
1552 * 1) Take the Destination Address (ie the multicast address), and
1553 * do a CRC on it (little endian), and reverse the bits of the
1554 * result.
1555 * 2) Use the 8 most significant bits as a hash into a 256-entry
1556 * table. The table is controlled through 8 32-bit registers:
1557 * gaddr0-7. gaddr0's MSB is entry 0, and gaddr7's LSB is
1558 * gaddr7. This means that the 3 most significant bits in the
1559 * hash index which gaddr register to use, and the 5 other bits
1560 * indicate which bit (assuming an IBM numbering scheme, which
1561 * for PowerPC (tm) is usually the case) in the tregister holds
1562 * the entry. */
1563static int
1564tsec_mcast_addr (struct eth_device *dev, u8 mcast_mac, u8 set)
1565{
1566 struct tsec_private *priv = privlist[1];
1567 volatile tsec_t *regs = priv->regs;
1568 volatile u32 *reg_array, value;
1569 u8 result, whichbit, whichreg;
1570
1571 result = (u8)((ether_crc(MAC_ADDR_LEN,mcast_mac) >> 24) & 0xff);
1572 whichbit = result & 0x1f; /* the 5 LSB = which bit to set */
1573 whichreg = result >> 5; /* the 3 MSB = which reg to set it in */
1574 value = (1 << (31-whichbit));
1575
1576 reg_array = &(regs->hash.gaddr0);
1577
1578 if (set) {
1579 reg_array[whichreg] |= value;
1580 } else {
1581 reg_array[whichreg] &= ~value;
1582 }
1583 return 0;
1584}
1585#endif /* Multicast TFTP ? */
1586
wdenk42d1f032003-10-15 23:53:47 +00001587#endif /* CONFIG_TSEC_ENET */