blob: c0111234940fbc58159927342e2ed4fcf21587dd [file] [log] [blame]
wdenk9c53f402003-10-15 23:53:47 +00001/*
wdenka445ddf2004-06-09 00:34:46 +00002 * Freescale Three Speed Ethernet Controller driver
wdenk9c53f402003-10-15 23:53:47 +00003 *
4 * This software may be used and distributed according to the
5 * terms of the GNU Public License, Version 2, incorporated
6 * herein by reference.
7 *
Andy Fleming2fffa052007-04-23 02:24:28 -05008 * Copyright 2004, 2007 Freescale Semiconductor, Inc.
wdenk9c53f402003-10-15 23:53:47 +00009 * (C) Copyright 2003, Motorola, Inc.
wdenk9c53f402003-10-15 23:53:47 +000010 * author Andy Fleming
11 *
12 */
13
14#include <config.h>
wdenk9c53f402003-10-15 23:53:47 +000015#include <common.h>
16#include <malloc.h>
17#include <net.h>
18#include <command.h>
19
20#if defined(CONFIG_TSEC_ENET)
21#include "tsec.h"
Marian Balakowiczaab8c492005-10-28 22:30:33 +020022#include "miiphy.h"
wdenk9c53f402003-10-15 23:53:47 +000023
Wolfgang Denk6405a152006-03-31 18:32:53 +020024DECLARE_GLOBAL_DATA_PTR;
25
Marian Balakowiczaab8c492005-10-28 22:30:33 +020026#define TX_BUF_CNT 2
wdenk9c53f402003-10-15 23:53:47 +000027
Jon Loeligerb7ced082006-10-10 17:03:43 -050028static uint rxIdx; /* index of the current RX buffer */
29static uint txIdx; /* index of the current TX buffer */
wdenk9c53f402003-10-15 23:53:47 +000030
31typedef volatile struct rtxbd {
32 txbd8_t txbd[TX_BUF_CNT];
33 rxbd8_t rxbd[PKTBUFSRX];
Jon Loeligerb7ced082006-10-10 17:03:43 -050034} RTXBD;
wdenk9c53f402003-10-15 23:53:47 +000035
wdenka445ddf2004-06-09 00:34:46 +000036struct tsec_info_struct {
37 unsigned int phyaddr;
Jon Loeliger77a4f6e2005-07-25 14:05:07 -050038 u32 flags;
wdenka445ddf2004-06-09 00:34:46 +000039 unsigned int phyregidx;
40};
41
wdenka445ddf2004-06-09 00:34:46 +000042/* The tsec_info structure contains 3 values which the
43 * driver uses to determine how to operate a given ethernet
Andy Fleming239e75f2006-09-13 10:34:18 -050044 * device. The information needed is:
wdenka445ddf2004-06-09 00:34:46 +000045 * phyaddr - The address of the PHY which is attached to
wdenkbfad55d2005-03-14 23:56:42 +000046 * the given device.
wdenka445ddf2004-06-09 00:34:46 +000047 *
Jon Loeliger77a4f6e2005-07-25 14:05:07 -050048 * flags - This variable indicates whether the device
49 * supports gigabit speed ethernet, and whether it should be
50 * in reduced mode.
wdenka445ddf2004-06-09 00:34:46 +000051 *
52 * phyregidx - This variable specifies which ethernet device
wdenkbfad55d2005-03-14 23:56:42 +000053 * controls the MII Management registers which are connected
Andy Fleming239e75f2006-09-13 10:34:18 -050054 * to the PHY. For now, only TSEC1 (index 0) has
wdenkbfad55d2005-03-14 23:56:42 +000055 * access to the PHYs, so all of the entries have "0".
wdenka445ddf2004-06-09 00:34:46 +000056 *
57 * The values specified in the table are taken from the board's
58 * config file in include/configs/. When implementing a new
59 * board with ethernet capability, it is necessary to define:
Andy Fleming239e75f2006-09-13 10:34:18 -050060 * TSECn_PHY_ADDR
61 * TSECn_PHYIDX
wdenka445ddf2004-06-09 00:34:46 +000062 *
Andy Fleming239e75f2006-09-13 10:34:18 -050063 * for n = 1,2,3, etc. And for FEC:
wdenka445ddf2004-06-09 00:34:46 +000064 * FEC_PHY_ADDR
65 * FEC_PHYIDX
66 */
67static struct tsec_info_struct tsec_info[] = {
Kim Phillips177e58f2007-05-16 16:52:19 -050068#if defined(CONFIG_TSEC1)
69#if defined(CONFIG_MPC8544DS) || defined(CONFIG_MPC8641HPCN)
Wolfgang Denk58c495b2007-05-05 18:23:11 +020070 {TSEC1_PHY_ADDR, TSEC_GIGABIT | TSEC_REDUCED, TSEC1_PHYIDX},
Andy Fleming2fffa052007-04-23 02:24:28 -050071#else
Jon Loeliger77a4f6e2005-07-25 14:05:07 -050072 {TSEC1_PHY_ADDR, TSEC_GIGABIT, TSEC1_PHYIDX},
Andy Fleming2fffa052007-04-23 02:24:28 -050073#endif
Zach Sadeckif5dd2992007-07-31 12:27:25 -050074#else
Jon Loeligerb7ced082006-10-10 17:03:43 -050075 {0, 0, 0},
wdenka445ddf2004-06-09 00:34:46 +000076#endif
Kim Phillips177e58f2007-05-16 16:52:19 -050077#if defined(CONFIG_TSEC2)
78#if defined(CONFIG_MPC8641HPCN)
Jon Loeligerb7ced082006-10-10 17:03:43 -050079 {TSEC2_PHY_ADDR, TSEC_GIGABIT | TSEC_REDUCED, TSEC2_PHYIDX},
wdenkbfad55d2005-03-14 23:56:42 +000080#else
Kim Phillips177e58f2007-05-16 16:52:19 -050081 {TSEC2_PHY_ADDR, TSEC_GIGABIT, TSEC2_PHYIDX},
82#endif
Zach Sadeckif5dd2992007-07-31 12:27:25 -050083#else
Jon Loeligerb7ced082006-10-10 17:03:43 -050084 {0, 0, 0},
wdenka445ddf2004-06-09 00:34:46 +000085#endif
86#ifdef CONFIG_MPC85XX_FEC
87 {FEC_PHY_ADDR, 0, FEC_PHYIDX},
wdenkbfad55d2005-03-14 23:56:42 +000088#else
Kim Phillips177e58f2007-05-16 16:52:19 -050089#if defined(CONFIG_TSEC3)
Jon Loeliger77a4f6e2005-07-25 14:05:07 -050090 {TSEC3_PHY_ADDR, TSEC_GIGABIT | TSEC_REDUCED, TSEC3_PHYIDX},
Jon Loeliger5c8aa972006-04-26 17:58:56 -050091#else
Jon Loeligerb7ced082006-10-10 17:03:43 -050092 {0, 0, 0},
Jon Loeliger5c8aa972006-04-26 17:58:56 -050093#endif
Kim Phillips177e58f2007-05-16 16:52:19 -050094#if defined(CONFIG_TSEC4)
Andy Fleming239e75f2006-09-13 10:34:18 -050095 {TSEC4_PHY_ADDR, TSEC_GIGABIT | TSEC_REDUCED, TSEC4_PHYIDX},
Jon Loeliger5c8aa972006-04-26 17:58:56 -050096#else
Jon Loeligerb7ced082006-10-10 17:03:43 -050097 {0, 0, 0},
Jon Loeliger5c8aa972006-04-26 17:58:56 -050098#endif
wdenka445ddf2004-06-09 00:34:46 +000099#endif
100};
101
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500102#define MAXCONTROLLERS (4)
wdenka445ddf2004-06-09 00:34:46 +0000103
104static int relocated = 0;
105
106static struct tsec_private *privlist[MAXCONTROLLERS];
107
wdenk9c53f402003-10-15 23:53:47 +0000108#ifdef __GNUC__
109static RTXBD rtx __attribute__ ((aligned(8)));
110#else
111#error "rtx must be 64-bit aligned"
112#endif
113
Jon Loeligerb7ced082006-10-10 17:03:43 -0500114static int tsec_send(struct eth_device *dev,
115 volatile void *packet, int length);
116static int tsec_recv(struct eth_device *dev);
117static int tsec_init(struct eth_device *dev, bd_t * bd);
118static void tsec_halt(struct eth_device *dev);
119static void init_registers(volatile tsec_t * regs);
wdenka445ddf2004-06-09 00:34:46 +0000120static void startup_tsec(struct eth_device *dev);
121static int init_phy(struct eth_device *dev);
122void write_phy_reg(struct tsec_private *priv, uint regnum, uint value);
123uint read_phy_reg(struct tsec_private *priv, uint regnum);
Jon Loeligerb7ced082006-10-10 17:03:43 -0500124struct phy_info *get_phy_info(struct eth_device *dev);
wdenka445ddf2004-06-09 00:34:46 +0000125void phy_run_commands(struct tsec_private *priv, struct phy_cmd *cmd);
126static void adjust_link(struct eth_device *dev);
127static void relocate_cmds(void);
Marian Balakowiczaab8c492005-10-28 22:30:33 +0200128static int tsec_miiphy_write(char *devname, unsigned char addr,
Jon Loeligerb7ced082006-10-10 17:03:43 -0500129 unsigned char reg, unsigned short value);
Marian Balakowiczaab8c492005-10-28 22:30:33 +0200130static int tsec_miiphy_read(char *devname, unsigned char addr,
Jon Loeligerb7ced082006-10-10 17:03:43 -0500131 unsigned char reg, unsigned short *value);
wdenk78924a72004-04-18 21:45:42 +0000132
wdenka445ddf2004-06-09 00:34:46 +0000133/* Initialize device structure. Returns success if PHY
134 * initialization succeeded (i.e. if it recognizes the PHY)
135 */
Jon Loeligerb7ced082006-10-10 17:03:43 -0500136int tsec_initialize(bd_t * bis, int index, char *devname)
wdenk9c53f402003-10-15 23:53:47 +0000137{
Jon Loeligerb7ced082006-10-10 17:03:43 -0500138 struct eth_device *dev;
wdenk9c53f402003-10-15 23:53:47 +0000139 int i;
wdenka445ddf2004-06-09 00:34:46 +0000140 struct tsec_private *priv;
wdenk9c53f402003-10-15 23:53:47 +0000141
Jon Loeligerb7ced082006-10-10 17:03:43 -0500142 dev = (struct eth_device *)malloc(sizeof *dev);
wdenk9c53f402003-10-15 23:53:47 +0000143
Jon Loeligerb7ced082006-10-10 17:03:43 -0500144 if (NULL == dev)
wdenk9c53f402003-10-15 23:53:47 +0000145 return 0;
146
147 memset(dev, 0, sizeof *dev);
148
Jon Loeligerb7ced082006-10-10 17:03:43 -0500149 priv = (struct tsec_private *)malloc(sizeof(*priv));
wdenka445ddf2004-06-09 00:34:46 +0000150
Jon Loeligerb7ced082006-10-10 17:03:43 -0500151 if (NULL == priv)
wdenka445ddf2004-06-09 00:34:46 +0000152 return 0;
153
154 privlist[index] = priv;
Jon Loeligerb7ced082006-10-10 17:03:43 -0500155 priv->regs = (volatile tsec_t *)(TSEC_BASE_ADDR + index * TSEC_SIZE);
wdenka445ddf2004-06-09 00:34:46 +0000156 priv->phyregs = (volatile tsec_t *)(TSEC_BASE_ADDR +
Jon Loeligerb7ced082006-10-10 17:03:43 -0500157 tsec_info[index].phyregidx *
158 TSEC_SIZE);
wdenka445ddf2004-06-09 00:34:46 +0000159
160 priv->phyaddr = tsec_info[index].phyaddr;
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500161 priv->flags = tsec_info[index].flags;
wdenka445ddf2004-06-09 00:34:46 +0000162
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500163 sprintf(dev->name, devname);
wdenk9c53f402003-10-15 23:53:47 +0000164 dev->iobase = 0;
Jon Loeligerb7ced082006-10-10 17:03:43 -0500165 dev->priv = priv;
166 dev->init = tsec_init;
167 dev->halt = tsec_halt;
168 dev->send = tsec_send;
169 dev->recv = tsec_recv;
wdenk9c53f402003-10-15 23:53:47 +0000170
171 /* Tell u-boot to get the addr from the env */
Jon Loeligerb7ced082006-10-10 17:03:43 -0500172 for (i = 0; i < 6; i++)
wdenk9c53f402003-10-15 23:53:47 +0000173 dev->enetaddr[i] = 0;
174
175 eth_register(dev);
176
wdenka445ddf2004-06-09 00:34:46 +0000177 /* Reset the MAC */
178 priv->regs->maccfg1 |= MACCFG1_SOFT_RESET;
179 priv->regs->maccfg1 &= ~(MACCFG1_SOFT_RESET);
wdenk78924a72004-04-18 21:45:42 +0000180
Jon Loeliger82ecaad2007-07-09 17:39:42 -0500181#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) \
Marian Balakowiczaab8c492005-10-28 22:30:33 +0200182 && !defined(BITBANGMII)
183 miiphy_register(dev->name, tsec_miiphy_read, tsec_miiphy_write);
184#endif
185
wdenka445ddf2004-06-09 00:34:46 +0000186 /* Try to initialize PHY here, and return */
187 return init_phy(dev);
wdenk9c53f402003-10-15 23:53:47 +0000188}
189
wdenk9c53f402003-10-15 23:53:47 +0000190/* Initializes data structures and registers for the controller,
wdenkbfad55d2005-03-14 23:56:42 +0000191 * and brings the interface up. Returns the link status, meaning
wdenka445ddf2004-06-09 00:34:46 +0000192 * that it returns success if the link is up, failure otherwise.
Jon Loeligerb7ced082006-10-10 17:03:43 -0500193 * This allows u-boot to find the first active controller.
194 */
195int tsec_init(struct eth_device *dev, bd_t * bd)
wdenk9c53f402003-10-15 23:53:47 +0000196{
wdenk9c53f402003-10-15 23:53:47 +0000197 uint tempval;
198 char tmpbuf[MAC_ADDR_LEN];
199 int i;
wdenka445ddf2004-06-09 00:34:46 +0000200 struct tsec_private *priv = (struct tsec_private *)dev->priv;
201 volatile tsec_t *regs = priv->regs;
wdenk9c53f402003-10-15 23:53:47 +0000202
203 /* Make sure the controller is stopped */
204 tsec_halt(dev);
205
wdenka445ddf2004-06-09 00:34:46 +0000206 /* Init MACCFG2. Defaults to GMII */
wdenk9c53f402003-10-15 23:53:47 +0000207 regs->maccfg2 = MACCFG2_INIT_SETTINGS;
208
209 /* Init ECNTRL */
210 regs->ecntrl = ECNTRL_INIT_SETTINGS;
211
212 /* Copy the station address into the address registers.
213 * Backwards, because little endian MACS are dumb */
Jon Loeligerb7ced082006-10-10 17:03:43 -0500214 for (i = 0; i < MAC_ADDR_LEN; i++) {
wdenka445ddf2004-06-09 00:34:46 +0000215 tmpbuf[MAC_ADDR_LEN - 1 - i] = dev->enetaddr[i];
wdenk9c53f402003-10-15 23:53:47 +0000216 }
Jon Loeligerb7ced082006-10-10 17:03:43 -0500217 regs->macstnaddr1 = *((uint *) (tmpbuf));
wdenk9c53f402003-10-15 23:53:47 +0000218
Jon Loeligerb7ced082006-10-10 17:03:43 -0500219 tempval = *((uint *) (tmpbuf + 4));
wdenk9c53f402003-10-15 23:53:47 +0000220
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200221 regs->macstnaddr2 = tempval;
wdenk9c53f402003-10-15 23:53:47 +0000222
wdenk9c53f402003-10-15 23:53:47 +0000223 /* reset the indices to zero */
224 rxIdx = 0;
225 txIdx = 0;
226
227 /* Clear out (for the most part) the other registers */
228 init_registers(regs);
229
230 /* Ready the device for tx/rx */
wdenka445ddf2004-06-09 00:34:46 +0000231 startup_tsec(dev);
wdenk9c53f402003-10-15 23:53:47 +0000232
wdenka445ddf2004-06-09 00:34:46 +0000233 /* If there's no link, fail */
234 return priv->link;
235
236}
wdenk9c53f402003-10-15 23:53:47 +0000237
wdenka445ddf2004-06-09 00:34:46 +0000238/* Write value to the device's PHY through the registers
239 * specified in priv, modifying the register specified in regnum.
240 * It will wait for the write to be done (or for a timeout to
241 * expire) before exiting
242 */
243void write_phy_reg(struct tsec_private *priv, uint regnum, uint value)
244{
245 volatile tsec_t *regbase = priv->phyregs;
246 uint phyid = priv->phyaddr;
Jon Loeligerb7ced082006-10-10 17:03:43 -0500247 int timeout = 1000000;
wdenka445ddf2004-06-09 00:34:46 +0000248
249 regbase->miimadd = (phyid << 8) | regnum;
250 regbase->miimcon = value;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500251 asm("sync");
wdenka445ddf2004-06-09 00:34:46 +0000252
Jon Loeligerb7ced082006-10-10 17:03:43 -0500253 timeout = 1000000;
254 while ((regbase->miimind & MIIMIND_BUSY) && timeout--) ;
wdenk9c53f402003-10-15 23:53:47 +0000255}
256
wdenka445ddf2004-06-09 00:34:46 +0000257/* Reads register regnum on the device's PHY through the
wdenkbfad55d2005-03-14 23:56:42 +0000258 * registers specified in priv. It lowers and raises the read
wdenka445ddf2004-06-09 00:34:46 +0000259 * command, and waits for the data to become valid (miimind
260 * notvalid bit cleared), and the bus to cease activity (miimind
261 * busy bit cleared), and then returns the value
262 */
263uint read_phy_reg(struct tsec_private *priv, uint regnum)
wdenk9c53f402003-10-15 23:53:47 +0000264{
265 uint value;
wdenka445ddf2004-06-09 00:34:46 +0000266 volatile tsec_t *regbase = priv->phyregs;
267 uint phyid = priv->phyaddr;
wdenk9c53f402003-10-15 23:53:47 +0000268
wdenka445ddf2004-06-09 00:34:46 +0000269 /* Put the address of the phy, and the register
270 * number into MIIMADD */
271 regbase->miimadd = (phyid << 8) | regnum;
wdenk9c53f402003-10-15 23:53:47 +0000272
273 /* Clear the command register, and wait */
274 regbase->miimcom = 0;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500275 asm("sync");
wdenk9c53f402003-10-15 23:53:47 +0000276
277 /* Initiate a read command, and wait */
278 regbase->miimcom = MIIM_READ_COMMAND;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500279 asm("sync");
wdenk9c53f402003-10-15 23:53:47 +0000280
281 /* Wait for the the indication that the read is done */
Jon Loeligerb7ced082006-10-10 17:03:43 -0500282 while ((regbase->miimind & (MIIMIND_NOTVALID | MIIMIND_BUSY))) ;
wdenk9c53f402003-10-15 23:53:47 +0000283
284 /* Grab the value read from the PHY */
285 value = regbase->miimstat;
286
287 return value;
288}
289
wdenka445ddf2004-06-09 00:34:46 +0000290/* Discover which PHY is attached to the device, and configure it
291 * properly. If the PHY is not recognized, then return 0
292 * (failure). Otherwise, return 1
293 */
294static int init_phy(struct eth_device *dev)
wdenk9c53f402003-10-15 23:53:47 +0000295{
wdenka445ddf2004-06-09 00:34:46 +0000296 struct tsec_private *priv = (struct tsec_private *)dev->priv;
297 struct phy_info *curphy;
Jon Loeligerb7ced082006-10-10 17:03:43 -0500298 volatile tsec_t *regs = (volatile tsec_t *)(TSEC_BASE_ADDR);
wdenk9c53f402003-10-15 23:53:47 +0000299
300 /* Assign a Physical address to the TBI */
Joe Hamman4290d4c2007-08-09 09:08:18 -0500301 regs->tbipa = CFG_TBIPA_VALUE;
Jon Loeligerb7ced082006-10-10 17:03:43 -0500302 regs = (volatile tsec_t *)(TSEC_BASE_ADDR + TSEC_SIZE);
Joe Hamman4290d4c2007-08-09 09:08:18 -0500303 regs->tbipa = CFG_TBIPA_VALUE;
Jon Loeligerb7ced082006-10-10 17:03:43 -0500304 asm("sync");
wdenkf41ff3b2005-04-04 23:43:44 +0000305
306 /* Reset MII (due to new addresses) */
307 priv->phyregs->miimcfg = MIIMCFG_RESET;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500308 asm("sync");
wdenkf41ff3b2005-04-04 23:43:44 +0000309 priv->phyregs->miimcfg = MIIMCFG_INIT_VALUE;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500310 asm("sync");
Jon Loeligerb7ced082006-10-10 17:03:43 -0500311 while (priv->phyregs->miimind & MIIMIND_BUSY) ;
wdenk9c53f402003-10-15 23:53:47 +0000312
Jon Loeligerb7ced082006-10-10 17:03:43 -0500313 if (0 == relocated)
wdenka445ddf2004-06-09 00:34:46 +0000314 relocate_cmds();
wdenk9c53f402003-10-15 23:53:47 +0000315
wdenka445ddf2004-06-09 00:34:46 +0000316 /* Get the cmd structure corresponding to the attached
317 * PHY */
318 curphy = get_phy_info(dev);
wdenk9c53f402003-10-15 23:53:47 +0000319
Ben Warrenf11eefb2006-10-26 14:38:25 -0400320 if (curphy == NULL) {
321 priv->phyinfo = NULL;
wdenka445ddf2004-06-09 00:34:46 +0000322 printf("%s: No PHY found\n", dev->name);
wdenk9c53f402003-10-15 23:53:47 +0000323
wdenka445ddf2004-06-09 00:34:46 +0000324 return 0;
325 }
wdenk9c53f402003-10-15 23:53:47 +0000326
wdenka445ddf2004-06-09 00:34:46 +0000327 priv->phyinfo = curphy;
wdenk9c53f402003-10-15 23:53:47 +0000328
wdenka445ddf2004-06-09 00:34:46 +0000329 phy_run_commands(priv, priv->phyinfo->config);
wdenk9c53f402003-10-15 23:53:47 +0000330
wdenka445ddf2004-06-09 00:34:46 +0000331 return 1;
332}
wdenk9c53f402003-10-15 23:53:47 +0000333
Jon Loeligerb7ced082006-10-10 17:03:43 -0500334/*
335 * Returns which value to write to the control register.
336 * For 10/100, the value is slightly different
337 */
338uint mii_cr_init(uint mii_reg, struct tsec_private * priv)
wdenka445ddf2004-06-09 00:34:46 +0000339{
Jon Loeligerb7ced082006-10-10 17:03:43 -0500340 if (priv->flags & TSEC_GIGABIT)
wdenka445ddf2004-06-09 00:34:46 +0000341 return MIIM_CONTROL_INIT;
wdenk9c53f402003-10-15 23:53:47 +0000342 else
wdenka445ddf2004-06-09 00:34:46 +0000343 return MIIM_CR_INIT;
344}
wdenk9c53f402003-10-15 23:53:47 +0000345
wdenka445ddf2004-06-09 00:34:46 +0000346/* Parse the status register for link, and then do
Jon Loeligerb7ced082006-10-10 17:03:43 -0500347 * auto-negotiation
348 */
349uint mii_parse_sr(uint mii_reg, struct tsec_private * priv)
wdenka445ddf2004-06-09 00:34:46 +0000350{
Stefan Roesec0dc34f2005-09-21 18:20:22 +0200351 /*
Jon Loeligerb7ced082006-10-10 17:03:43 -0500352 * Wait if PHY is capable of autonegotiation and autonegotiation
353 * is not complete.
Stefan Roesec0dc34f2005-09-21 18:20:22 +0200354 */
355 mii_reg = read_phy_reg(priv, MIIM_STATUS);
Jon Loeligerb7ced082006-10-10 17:03:43 -0500356 if ((mii_reg & PHY_BMSR_AUTN_ABLE)
357 && !(mii_reg & PHY_BMSR_AUTN_COMP)) {
Stefan Roesec0dc34f2005-09-21 18:20:22 +0200358 int i = 0;
wdenk9c53f402003-10-15 23:53:47 +0000359
Jon Loeligerb7ced082006-10-10 17:03:43 -0500360 puts("Waiting for PHY auto negotiation to complete");
361 while (!((mii_reg & PHY_BMSR_AUTN_COMP)
362 && (mii_reg & MIIM_STATUS_LINK))) {
Stefan Roesec0dc34f2005-09-21 18:20:22 +0200363 /*
364 * Timeout reached ?
365 */
366 if (i > PHY_AUTONEGOTIATE_TIMEOUT) {
Jon Loeligerb7ced082006-10-10 17:03:43 -0500367 puts(" TIMEOUT !\n");
Stefan Roesec0dc34f2005-09-21 18:20:22 +0200368 priv->link = 0;
Jin Zhengxiong-R64188487d2232006-06-27 18:12:23 +0800369 return 0;
Stefan Roesec0dc34f2005-09-21 18:20:22 +0200370 }
wdenk9c53f402003-10-15 23:53:47 +0000371
Stefan Roesec0dc34f2005-09-21 18:20:22 +0200372 if ((i++ % 1000) == 0) {
Jon Loeligerb7ced082006-10-10 17:03:43 -0500373 putc('.');
Stefan Roesec0dc34f2005-09-21 18:20:22 +0200374 }
Jon Loeligerb7ced082006-10-10 17:03:43 -0500375 udelay(1000); /* 1 ms */
wdenka445ddf2004-06-09 00:34:46 +0000376 mii_reg = read_phy_reg(priv, MIIM_STATUS);
Stefan Roesec0dc34f2005-09-21 18:20:22 +0200377 }
Jon Loeligerb7ced082006-10-10 17:03:43 -0500378 puts(" done\n");
Stefan Roesec0dc34f2005-09-21 18:20:22 +0200379 priv->link = 1;
Jon Loeligerb7ced082006-10-10 17:03:43 -0500380 udelay(500000); /* another 500 ms (results in faster booting) */
Stefan Roesec0dc34f2005-09-21 18:20:22 +0200381 } else {
382 priv->link = 1;
wdenk9c53f402003-10-15 23:53:47 +0000383 }
384
wdenka445ddf2004-06-09 00:34:46 +0000385 return 0;
386}
387
David Updegraff0451b012007-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 Gortmaker2bd9f1b2007-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}
wdenka445ddf2004-06-09 00:34:46 +0000513/* Parse the 88E1011's status register for speed and duplex
Jon Loeligerb7ced082006-10-10 17:03:43 -0500514 * information
515 */
516uint mii_parse_88E1011_psr(uint mii_reg, struct tsec_private * priv)
wdenka445ddf2004-06-09 00:34:46 +0000517{
518 uint speed;
wdenk9c53f402003-10-15 23:53:47 +0000519
Stefan Roesec0dc34f2005-09-21 18:20:22 +0200520 mii_reg = read_phy_reg(priv, MIIM_88E1011_PHY_STATUS);
521
522 if (!((mii_reg & MIIM_88E1011_PHYSTAT_SPDDONE) &&
523 (mii_reg & MIIM_88E1011_PHYSTAT_LINK))) {
524 int i = 0;
525
Jon Loeligerb7ced082006-10-10 17:03:43 -0500526 puts("Waiting for PHY realtime link");
Stefan Roesec0dc34f2005-09-21 18:20:22 +0200527 while (!((mii_reg & MIIM_88E1011_PHYSTAT_SPDDONE) &&
528 (mii_reg & MIIM_88E1011_PHYSTAT_LINK))) {
529 /*
530 * Timeout reached ?
531 */
532 if (i > PHY_AUTONEGOTIATE_TIMEOUT) {
Jon Loeligerb7ced082006-10-10 17:03:43 -0500533 puts(" TIMEOUT !\n");
Stefan Roesec0dc34f2005-09-21 18:20:22 +0200534 priv->link = 0;
535 break;
536 }
537
538 if ((i++ % 1000) == 0) {
Jon Loeligerb7ced082006-10-10 17:03:43 -0500539 putc('.');
Stefan Roesec0dc34f2005-09-21 18:20:22 +0200540 }
Jon Loeligerb7ced082006-10-10 17:03:43 -0500541 udelay(1000); /* 1 ms */
Stefan Roesec0dc34f2005-09-21 18:20:22 +0200542 mii_reg = read_phy_reg(priv, MIIM_88E1011_PHY_STATUS);
543 }
Jon Loeligerb7ced082006-10-10 17:03:43 -0500544 puts(" done\n");
545 udelay(500000); /* another 500 ms (results in faster booting) */
Stefan Roesec0dc34f2005-09-21 18:20:22 +0200546 }
547
Jon Loeligerb7ced082006-10-10 17:03:43 -0500548 if (mii_reg & MIIM_88E1011_PHYSTAT_DUPLEX)
wdenka445ddf2004-06-09 00:34:46 +0000549 priv->duplexity = 1;
550 else
551 priv->duplexity = 0;
552
Jon Loeligerb7ced082006-10-10 17:03:43 -0500553 speed = (mii_reg & MIIM_88E1011_PHYSTAT_SPEED);
wdenka445ddf2004-06-09 00:34:46 +0000554
Jon Loeligerb7ced082006-10-10 17:03:43 -0500555 switch (speed) {
556 case MIIM_88E1011_PHYSTAT_GBIT:
557 priv->speed = 1000;
558 break;
559 case MIIM_88E1011_PHYSTAT_100:
560 priv->speed = 100;
561 break;
562 default:
563 priv->speed = 10;
wdenk9c53f402003-10-15 23:53:47 +0000564 }
565
wdenka445ddf2004-06-09 00:34:46 +0000566 return 0;
567}
568
wdenka445ddf2004-06-09 00:34:46 +0000569/* Parse the cis8201's status register for speed and duplex
Jon Loeligerb7ced082006-10-10 17:03:43 -0500570 * information
571 */
572uint mii_parse_cis8201(uint mii_reg, struct tsec_private * priv)
wdenka445ddf2004-06-09 00:34:46 +0000573{
574 uint speed;
575
Jon Loeligerb7ced082006-10-10 17:03:43 -0500576 if (mii_reg & MIIM_CIS8201_AUXCONSTAT_DUPLEX)
wdenka445ddf2004-06-09 00:34:46 +0000577 priv->duplexity = 1;
578 else
579 priv->duplexity = 0;
580
581 speed = mii_reg & MIIM_CIS8201_AUXCONSTAT_SPEED;
Jon Loeligerb7ced082006-10-10 17:03:43 -0500582 switch (speed) {
583 case MIIM_CIS8201_AUXCONSTAT_GBIT:
584 priv->speed = 1000;
585 break;
586 case MIIM_CIS8201_AUXCONSTAT_100:
587 priv->speed = 100;
588 break;
589 default:
590 priv->speed = 10;
591 break;
wdenk9c53f402003-10-15 23:53:47 +0000592 }
593
wdenka445ddf2004-06-09 00:34:46 +0000594 return 0;
595}
Jon Loeligerb7ced082006-10-10 17:03:43 -0500596
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500597/* Parse the vsc8244's status register for speed and duplex
Jon Loeligerb7ced082006-10-10 17:03:43 -0500598 * information
599 */
600uint mii_parse_vsc8244(uint mii_reg, struct tsec_private * priv)
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500601{
Jon Loeligerb7ced082006-10-10 17:03:43 -0500602 uint speed;
wdenk9c53f402003-10-15 23:53:47 +0000603
Jon Loeligerb7ced082006-10-10 17:03:43 -0500604 if (mii_reg & MIIM_VSC8244_AUXCONSTAT_DUPLEX)
605 priv->duplexity = 1;
606 else
607 priv->duplexity = 0;
608
609 speed = mii_reg & MIIM_VSC8244_AUXCONSTAT_SPEED;
610 switch (speed) {
611 case MIIM_VSC8244_AUXCONSTAT_GBIT:
612 priv->speed = 1000;
613 break;
614 case MIIM_VSC8244_AUXCONSTAT_100:
615 priv->speed = 100;
616 break;
617 default:
618 priv->speed = 10;
619 break;
620 }
621
622 return 0;
623}
wdenka445ddf2004-06-09 00:34:46 +0000624
625/* Parse the DM9161's status register for speed and duplex
Jon Loeligerb7ced082006-10-10 17:03:43 -0500626 * information
627 */
628uint mii_parse_dm9161_scsr(uint mii_reg, struct tsec_private * priv)
wdenka445ddf2004-06-09 00:34:46 +0000629{
Jon Loeligerb7ced082006-10-10 17:03:43 -0500630 if (mii_reg & (MIIM_DM9161_SCSR_100F | MIIM_DM9161_SCSR_100H))
wdenka445ddf2004-06-09 00:34:46 +0000631 priv->speed = 100;
632 else
633 priv->speed = 10;
634
Jon Loeligerb7ced082006-10-10 17:03:43 -0500635 if (mii_reg & (MIIM_DM9161_SCSR_100F | MIIM_DM9161_SCSR_10F))
wdenka445ddf2004-06-09 00:34:46 +0000636 priv->duplexity = 1;
637 else
638 priv->duplexity = 0;
639
640 return 0;
641}
642
Jon Loeligerb7ced082006-10-10 17:03:43 -0500643/*
644 * Hack to write all 4 PHYs with the LED values
645 */
646uint mii_cis8204_fixled(uint mii_reg, struct tsec_private * priv)
wdenka445ddf2004-06-09 00:34:46 +0000647{
648 uint phyid;
649 volatile tsec_t *regbase = priv->phyregs;
Jon Loeligerb7ced082006-10-10 17:03:43 -0500650 int timeout = 1000000;
wdenka445ddf2004-06-09 00:34:46 +0000651
Jon Loeligerb7ced082006-10-10 17:03:43 -0500652 for (phyid = 0; phyid < 4; phyid++) {
wdenka445ddf2004-06-09 00:34:46 +0000653 regbase->miimadd = (phyid << 8) | mii_reg;
654 regbase->miimcon = MIIM_CIS8204_SLEDCON_INIT;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500655 asm("sync");
wdenka445ddf2004-06-09 00:34:46 +0000656
Jon Loeligerb7ced082006-10-10 17:03:43 -0500657 timeout = 1000000;
658 while ((regbase->miimind & MIIMIND_BUSY) && timeout--) ;
wdenk9c53f402003-10-15 23:53:47 +0000659 }
wdenk9c53f402003-10-15 23:53:47 +0000660
wdenka445ddf2004-06-09 00:34:46 +0000661 return MIIM_CIS8204_SLEDCON_INIT;
wdenk9c53f402003-10-15 23:53:47 +0000662}
663
Jon Loeligerb7ced082006-10-10 17:03:43 -0500664uint mii_cis8204_setmode(uint mii_reg, struct tsec_private * priv)
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500665{
666 if (priv->flags & TSEC_REDUCED)
667 return MIIM_CIS8204_EPHYCON_INIT | MIIM_CIS8204_EPHYCON_RGMII;
668 else
669 return MIIM_CIS8204_EPHYCON_INIT;
670}
wdenk9c53f402003-10-15 23:53:47 +0000671
wdenka445ddf2004-06-09 00:34:46 +0000672/* Initialized required registers to appropriate values, zeroing
673 * those we don't care about (unless zero is bad, in which case,
Jon Loeligerb7ced082006-10-10 17:03:43 -0500674 * choose a more appropriate value)
675 */
676static void init_registers(volatile tsec_t * regs)
wdenk9c53f402003-10-15 23:53:47 +0000677{
678 /* Clear IEVENT */
679 regs->ievent = IEVENT_INIT_CLEAR;
680
681 regs->imask = IMASK_INIT_CLEAR;
682
683 regs->hash.iaddr0 = 0;
684 regs->hash.iaddr1 = 0;
685 regs->hash.iaddr2 = 0;
686 regs->hash.iaddr3 = 0;
687 regs->hash.iaddr4 = 0;
688 regs->hash.iaddr5 = 0;
689 regs->hash.iaddr6 = 0;
690 regs->hash.iaddr7 = 0;
691
692 regs->hash.gaddr0 = 0;
693 regs->hash.gaddr1 = 0;
694 regs->hash.gaddr2 = 0;
695 regs->hash.gaddr3 = 0;
696 regs->hash.gaddr4 = 0;
697 regs->hash.gaddr5 = 0;
698 regs->hash.gaddr6 = 0;
699 regs->hash.gaddr7 = 0;
700
701 regs->rctrl = 0x00000000;
702
703 /* Init RMON mib registers */
704 memset((void *)&(regs->rmon), 0, sizeof(rmon_mib_t));
705
706 regs->rmon.cam1 = 0xffffffff;
707 regs->rmon.cam2 = 0xffffffff;
708
709 regs->mrblr = MRBLR_INIT_SETTINGS;
710
711 regs->minflr = MINFLR_INIT_SETTINGS;
712
713 regs->attr = ATTR_INIT_SETTINGS;
714 regs->attreli = ATTRELI_INIT_SETTINGS;
715
wdenka445ddf2004-06-09 00:34:46 +0000716}
717
wdenka445ddf2004-06-09 00:34:46 +0000718/* Configure maccfg2 based on negotiated speed and duplex
Jon Loeligerb7ced082006-10-10 17:03:43 -0500719 * reported by PHY handling code
720 */
wdenka445ddf2004-06-09 00:34:46 +0000721static void adjust_link(struct eth_device *dev)
722{
723 struct tsec_private *priv = (struct tsec_private *)dev->priv;
724 volatile tsec_t *regs = priv->regs;
725
Jon Loeligerb7ced082006-10-10 17:03:43 -0500726 if (priv->link) {
727 if (priv->duplexity != 0)
wdenka445ddf2004-06-09 00:34:46 +0000728 regs->maccfg2 |= MACCFG2_FULL_DUPLEX;
729 else
730 regs->maccfg2 &= ~(MACCFG2_FULL_DUPLEX);
731
Jon Loeligerb7ced082006-10-10 17:03:43 -0500732 switch (priv->speed) {
733 case 1000:
734 regs->maccfg2 = ((regs->maccfg2 & ~(MACCFG2_IF))
735 | MACCFG2_GMII);
736 break;
737 case 100:
738 case 10:
739 regs->maccfg2 = ((regs->maccfg2 & ~(MACCFG2_IF))
740 | MACCFG2_MII);
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500741
Nick Spenceec9670b2006-09-07 07:39:46 -0700742 /* Set R100 bit in all modes although
743 * it is only used in RGMII mode
Jon Loeligerb7ced082006-10-10 17:03:43 -0500744 */
Nick Spenceec9670b2006-09-07 07:39:46 -0700745 if (priv->speed == 100)
Jon Loeligerb7ced082006-10-10 17:03:43 -0500746 regs->ecntrl |= ECNTRL_R100;
747 else
748 regs->ecntrl &= ~(ECNTRL_R100);
749 break;
750 default:
751 printf("%s: Speed was bad\n", dev->name);
752 break;
wdenka445ddf2004-06-09 00:34:46 +0000753 }
754
755 printf("Speed: %d, %s duplex\n", priv->speed,
Jon Loeligerb7ced082006-10-10 17:03:43 -0500756 (priv->duplexity) ? "full" : "half");
wdenka445ddf2004-06-09 00:34:46 +0000757
758 } else {
759 printf("%s: No link.\n", dev->name);
760 }
wdenk9c53f402003-10-15 23:53:47 +0000761}
762
wdenka445ddf2004-06-09 00:34:46 +0000763/* Set up the buffers and their descriptors, and bring up the
Jon Loeligerb7ced082006-10-10 17:03:43 -0500764 * interface
765 */
wdenka445ddf2004-06-09 00:34:46 +0000766static void startup_tsec(struct eth_device *dev)
wdenk9c53f402003-10-15 23:53:47 +0000767{
768 int i;
wdenka445ddf2004-06-09 00:34:46 +0000769 struct tsec_private *priv = (struct tsec_private *)dev->priv;
770 volatile tsec_t *regs = priv->regs;
wdenk9c53f402003-10-15 23:53:47 +0000771
772 /* Point to the buffer descriptors */
773 regs->tbase = (unsigned int)(&rtx.txbd[txIdx]);
774 regs->rbase = (unsigned int)(&rtx.rxbd[rxIdx]);
775
776 /* Initialize the Rx Buffer descriptors */
777 for (i = 0; i < PKTBUFSRX; i++) {
778 rtx.rxbd[i].status = RXBD_EMPTY;
779 rtx.rxbd[i].length = 0;
Jon Loeligerb7ced082006-10-10 17:03:43 -0500780 rtx.rxbd[i].bufPtr = (uint) NetRxPackets[i];
wdenk9c53f402003-10-15 23:53:47 +0000781 }
Jon Loeligerb7ced082006-10-10 17:03:43 -0500782 rtx.rxbd[PKTBUFSRX - 1].status |= RXBD_WRAP;
wdenk9c53f402003-10-15 23:53:47 +0000783
784 /* Initialize the TX Buffer Descriptors */
Jon Loeligerb7ced082006-10-10 17:03:43 -0500785 for (i = 0; i < TX_BUF_CNT; i++) {
wdenk9c53f402003-10-15 23:53:47 +0000786 rtx.txbd[i].status = 0;
787 rtx.txbd[i].length = 0;
788 rtx.txbd[i].bufPtr = 0;
789 }
Jon Loeligerb7ced082006-10-10 17:03:43 -0500790 rtx.txbd[TX_BUF_CNT - 1].status |= TXBD_WRAP;
wdenk9c53f402003-10-15 23:53:47 +0000791
wdenka445ddf2004-06-09 00:34:46 +0000792 /* Start up the PHY */
Ben Warrenf11eefb2006-10-26 14:38:25 -0400793 if(priv->phyinfo)
794 phy_run_commands(priv, priv->phyinfo->startup);
David Updegraff0451b012007-04-20 14:34:48 -0500795
wdenka445ddf2004-06-09 00:34:46 +0000796 adjust_link(dev);
797
wdenk9c53f402003-10-15 23:53:47 +0000798 /* Enable Transmit and Receive */
799 regs->maccfg1 |= (MACCFG1_RX_EN | MACCFG1_TX_EN);
800
801 /* Tell the DMA it is clear to go */
802 regs->dmactrl |= DMACTRL_INIT_SETTINGS;
803 regs->tstat = TSTAT_CLEAR_THALT;
804 regs->dmactrl &= ~(DMACTRL_GRS | DMACTRL_GTS);
805}
806
wdenkbfad55d2005-03-14 23:56:42 +0000807/* This returns the status bits of the device. The return value
wdenk9c53f402003-10-15 23:53:47 +0000808 * is never checked, and this is what the 8260 driver did, so we
wdenkbfad55d2005-03-14 23:56:42 +0000809 * do the same. Presumably, this would be zero if there were no
Jon Loeligerb7ced082006-10-10 17:03:43 -0500810 * errors
811 */
812static int tsec_send(struct eth_device *dev, volatile void *packet, int length)
wdenk9c53f402003-10-15 23:53:47 +0000813{
814 int i;
815 int result = 0;
wdenka445ddf2004-06-09 00:34:46 +0000816 struct tsec_private *priv = (struct tsec_private *)dev->priv;
817 volatile tsec_t *regs = priv->regs;
wdenk9c53f402003-10-15 23:53:47 +0000818
819 /* Find an empty buffer descriptor */
Jon Loeligerb7ced082006-10-10 17:03:43 -0500820 for (i = 0; rtx.txbd[txIdx].status & TXBD_READY; i++) {
wdenk9c53f402003-10-15 23:53:47 +0000821 if (i >= TOUT_LOOP) {
Jon Loeligerb7ced082006-10-10 17:03:43 -0500822 debug("%s: tsec: tx buffers full\n", dev->name);
wdenk9c53f402003-10-15 23:53:47 +0000823 return result;
824 }
825 }
826
Jon Loeligerb7ced082006-10-10 17:03:43 -0500827 rtx.txbd[txIdx].bufPtr = (uint) packet;
wdenk9c53f402003-10-15 23:53:47 +0000828 rtx.txbd[txIdx].length = length;
Jon Loeligerb7ced082006-10-10 17:03:43 -0500829 rtx.txbd[txIdx].status |=
830 (TXBD_READY | TXBD_LAST | TXBD_CRC | TXBD_INTERRUPT);
wdenk9c53f402003-10-15 23:53:47 +0000831
832 /* Tell the DMA to go */
833 regs->tstat = TSTAT_CLEAR_THALT;
834
835 /* Wait for buffer to be transmitted */
Jon Loeligerb7ced082006-10-10 17:03:43 -0500836 for (i = 0; rtx.txbd[txIdx].status & TXBD_READY; i++) {
wdenk9c53f402003-10-15 23:53:47 +0000837 if (i >= TOUT_LOOP) {
Jon Loeligerb7ced082006-10-10 17:03:43 -0500838 debug("%s: tsec: tx error\n", dev->name);
wdenk9c53f402003-10-15 23:53:47 +0000839 return result;
840 }
841 }
842
843 txIdx = (txIdx + 1) % TX_BUF_CNT;
844 result = rtx.txbd[txIdx].status & TXBD_STATS;
845
846 return result;
847}
848
Jon Loeligerb7ced082006-10-10 17:03:43 -0500849static int tsec_recv(struct eth_device *dev)
wdenk9c53f402003-10-15 23:53:47 +0000850{
851 int length;
wdenka445ddf2004-06-09 00:34:46 +0000852 struct tsec_private *priv = (struct tsec_private *)dev->priv;
853 volatile tsec_t *regs = priv->regs;
wdenk9c53f402003-10-15 23:53:47 +0000854
Jon Loeligerb7ced082006-10-10 17:03:43 -0500855 while (!(rtx.rxbd[rxIdx].status & RXBD_EMPTY)) {
wdenk9c53f402003-10-15 23:53:47 +0000856
857 length = rtx.rxbd[rxIdx].length;
858
859 /* Send the packet up if there were no errors */
860 if (!(rtx.rxbd[rxIdx].status & RXBD_STATS)) {
861 NetReceive(NetRxPackets[rxIdx], length - 4);
wdenka445ddf2004-06-09 00:34:46 +0000862 } else {
863 printf("Got error %x\n",
Jon Loeligerb7ced082006-10-10 17:03:43 -0500864 (rtx.rxbd[rxIdx].status & RXBD_STATS));
wdenk9c53f402003-10-15 23:53:47 +0000865 }
866
867 rtx.rxbd[rxIdx].length = 0;
868
869 /* Set the wrap bit if this is the last element in the list */
Jon Loeligerb7ced082006-10-10 17:03:43 -0500870 rtx.rxbd[rxIdx].status =
871 RXBD_EMPTY | (((rxIdx + 1) == PKTBUFSRX) ? RXBD_WRAP : 0);
wdenk9c53f402003-10-15 23:53:47 +0000872
873 rxIdx = (rxIdx + 1) % PKTBUFSRX;
874 }
875
Jon Loeligerb7ced082006-10-10 17:03:43 -0500876 if (regs->ievent & IEVENT_BSY) {
wdenk9c53f402003-10-15 23:53:47 +0000877 regs->ievent = IEVENT_BSY;
878 regs->rstat = RSTAT_CLEAR_RHALT;
879 }
880
881 return -1;
882
883}
884
wdenka445ddf2004-06-09 00:34:46 +0000885/* Stop the interface */
Jon Loeligerb7ced082006-10-10 17:03:43 -0500886static void tsec_halt(struct eth_device *dev)
wdenk9c53f402003-10-15 23:53:47 +0000887{
wdenka445ddf2004-06-09 00:34:46 +0000888 struct tsec_private *priv = (struct tsec_private *)dev->priv;
889 volatile tsec_t *regs = priv->regs;
wdenk9c53f402003-10-15 23:53:47 +0000890
891 regs->dmactrl &= ~(DMACTRL_GRS | DMACTRL_GTS);
892 regs->dmactrl |= (DMACTRL_GRS | DMACTRL_GTS);
893
Jon Loeligerb7ced082006-10-10 17:03:43 -0500894 while (!(regs->ievent & (IEVENT_GRSC | IEVENT_GTSC))) ;
wdenk9c53f402003-10-15 23:53:47 +0000895
896 regs->maccfg1 &= ~(MACCFG1_TX_EN | MACCFG1_RX_EN);
897
wdenka445ddf2004-06-09 00:34:46 +0000898 /* Shut down the PHY, as needed */
Ben Warrenf11eefb2006-10-26 14:38:25 -0400899 if(priv->phyinfo)
900 phy_run_commands(priv, priv->phyinfo->shutdown);
wdenka445ddf2004-06-09 00:34:46 +0000901}
902
Andy Flemingbee67002007-08-03 04:05:25 -0500903struct phy_info phy_info_M88E1149S = {
Wolfgang Denk15e87572007-08-06 01:01:49 +0200904 0x1410ca,
905 "Marvell 88E1149S",
906 4,
907 (struct phy_cmd[]){ /* config */
908 /* Reset and configure the PHY */
909 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
910 {0x1d, 0x1f, NULL},
911 {0x1e, 0x200c, NULL},
912 {0x1d, 0x5, NULL},
913 {0x1e, 0x0, NULL},
914 {0x1e, 0x100, NULL},
915 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
916 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
917 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
918 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
919 {miim_end,}
920 },
921 (struct phy_cmd[]){ /* startup */
922 /* Status is read once to clear old link state */
923 {MIIM_STATUS, miim_read, NULL},
924 /* Auto-negotiate */
925 {MIIM_STATUS, miim_read, &mii_parse_sr},
926 /* Read the status */
927 {MIIM_88E1011_PHY_STATUS, miim_read,
928 &mii_parse_88E1011_psr},
929 {miim_end,}
930 },
931 (struct phy_cmd[]){ /* shutdown */
932 {miim_end,}
933 },
Andy Flemingbee67002007-08-03 04:05:25 -0500934};
935
Paul Gortmaker2bd9f1b2007-01-16 11:38:14 -0500936/* The 5411 id is 0x206070, the 5421 is 0x2060e0 */
937struct phy_info phy_info_BCM5461S = {
938 0x02060c1, /* 5461 ID */
939 "Broadcom BCM5461S",
940 0, /* not clear to me what minor revisions we can shift away */
941 (struct phy_cmd[]) { /* config */
942 /* Reset and configure the PHY */
943 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
944 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
945 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
946 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
947 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
948 {miim_end,}
949 },
950 (struct phy_cmd[]) { /* startup */
951 /* Status is read once to clear old link state */
952 {MIIM_STATUS, miim_read, NULL},
953 /* Auto-negotiate */
954 {MIIM_STATUS, miim_read, &mii_parse_sr},
955 /* Read the status */
956 {MIIM_BCM54xx_AUXSTATUS, miim_read, &mii_parse_BCM54xx_sr},
957 {miim_end,}
958 },
959 (struct phy_cmd[]) { /* shutdown */
960 {miim_end,}
961 },
962};
963
Joe Hammaned7ad4e2007-04-30 16:47:28 -0500964struct phy_info phy_info_BCM5464S = {
965 0x02060b1, /* 5464 ID */
966 "Broadcom BCM5464S",
967 0, /* not clear to me what minor revisions we can shift away */
968 (struct phy_cmd[]) { /* config */
969 /* Reset and configure the PHY */
970 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
971 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
972 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
973 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
974 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
975 {miim_end,}
976 },
977 (struct phy_cmd[]) { /* startup */
978 /* Status is read once to clear old link state */
979 {MIIM_STATUS, miim_read, NULL},
980 /* Auto-negotiate */
981 {MIIM_STATUS, miim_read, &mii_parse_sr},
982 /* Read the status */
983 {MIIM_BCM54xx_AUXSTATUS, miim_read, &mii_parse_BCM54xx_sr},
984 {miim_end,}
985 },
986 (struct phy_cmd[]) { /* shutdown */
987 {miim_end,}
988 },
989};
990
wdenka445ddf2004-06-09 00:34:46 +0000991struct phy_info phy_info_M88E1011S = {
992 0x01410c6,
993 "Marvell 88E1011S",
994 4,
Jon Loeligerb7ced082006-10-10 17:03:43 -0500995 (struct phy_cmd[]){ /* config */
996 /* Reset and configure the PHY */
997 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
998 {0x1d, 0x1f, NULL},
999 {0x1e, 0x200c, NULL},
1000 {0x1d, 0x5, NULL},
1001 {0x1e, 0x0, NULL},
1002 {0x1e, 0x100, NULL},
1003 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1004 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1005 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1006 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1007 {miim_end,}
1008 },
1009 (struct phy_cmd[]){ /* startup */
1010 /* Status is read once to clear old link state */
1011 {MIIM_STATUS, miim_read, NULL},
1012 /* Auto-negotiate */
1013 {MIIM_STATUS, miim_read, &mii_parse_sr},
1014 /* Read the status */
1015 {MIIM_88E1011_PHY_STATUS, miim_read,
1016 &mii_parse_88E1011_psr},
1017 {miim_end,}
1018 },
1019 (struct phy_cmd[]){ /* shutdown */
1020 {miim_end,}
1021 },
wdenka445ddf2004-06-09 00:34:46 +00001022};
1023
wdenkbfad55d2005-03-14 23:56:42 +00001024struct phy_info phy_info_M88E1111S = {
1025 0x01410cc,
1026 "Marvell 88E1111S",
1027 4,
Jon Loeligerb7ced082006-10-10 17:03:43 -05001028 (struct phy_cmd[]){ /* config */
1029 /* Reset and configure the PHY */
1030 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
Nick Spenceec9670b2006-09-07 07:39:46 -07001031 {0x14, 0x0cd2, NULL}, /* Delay RGMII TX and RX */
Jon Loeligerb7ced082006-10-10 17:03:43 -05001032 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1033 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1034 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1035 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1036 {miim_end,}
1037 },
1038 (struct phy_cmd[]){ /* startup */
1039 /* Status is read once to clear old link state */
1040 {MIIM_STATUS, miim_read, NULL},
1041 /* Auto-negotiate */
1042 {MIIM_STATUS, miim_read, &mii_parse_sr},
1043 /* Read the status */
1044 {MIIM_88E1011_PHY_STATUS, miim_read,
1045 &mii_parse_88E1011_psr},
1046 {miim_end,}
1047 },
1048 (struct phy_cmd[]){ /* shutdown */
1049 {miim_end,}
1050 },
wdenkbfad55d2005-03-14 23:56:42 +00001051};
1052
Andy Fleming239e75f2006-09-13 10:34:18 -05001053static unsigned int m88e1145_setmode(uint mii_reg, struct tsec_private *priv)
1054{
Andy Fleming239e75f2006-09-13 10:34:18 -05001055 uint mii_data = read_phy_reg(priv, mii_reg);
1056
Andy Fleming239e75f2006-09-13 10:34:18 -05001057 /* Setting MIIM_88E1145_PHY_EXT_CR */
1058 if (priv->flags & TSEC_REDUCED)
1059 return mii_data |
Jon Loeligerb7ced082006-10-10 17:03:43 -05001060 MIIM_M88E1145_RGMII_RX_DELAY | MIIM_M88E1145_RGMII_TX_DELAY;
Andy Fleming239e75f2006-09-13 10:34:18 -05001061 else
1062 return mii_data;
1063}
1064
1065static struct phy_info phy_info_M88E1145 = {
1066 0x01410cd,
1067 "Marvell 88E1145",
1068 4,
Jon Loeligerb7ced082006-10-10 17:03:43 -05001069 (struct phy_cmd[]){ /* config */
Andy Fleming180d03a2007-05-08 17:23:02 -05001070 /* Reset the PHY */
1071 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1072
Jon Loeligerb7ced082006-10-10 17:03:43 -05001073 /* Errata E0, E1 */
1074 {29, 0x001b, NULL},
1075 {30, 0x418f, NULL},
1076 {29, 0x0016, NULL},
1077 {30, 0xa2da, NULL},
Andy Fleming239e75f2006-09-13 10:34:18 -05001078
Andy Fleming180d03a2007-05-08 17:23:02 -05001079 /* Configure the PHY */
Jon Loeligerb7ced082006-10-10 17:03:43 -05001080 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1081 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1082 {MIIM_88E1011_PHY_SCR, MIIM_88E1011_PHY_MDI_X_AUTO,
1083 NULL},
1084 {MIIM_88E1145_PHY_EXT_CR, 0, &m88e1145_setmode},
1085 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1086 {MIIM_CONTROL, MIIM_CONTROL_INIT, NULL},
1087 {miim_end,}
1088 },
1089 (struct phy_cmd[]){ /* startup */
1090 /* Status is read once to clear old link state */
1091 {MIIM_STATUS, miim_read, NULL},
1092 /* Auto-negotiate */
1093 {MIIM_STATUS, miim_read, &mii_parse_sr},
1094 {MIIM_88E1111_PHY_LED_CONTROL,
1095 MIIM_88E1111_PHY_LED_DIRECT, NULL},
1096 /* Read the Status */
1097 {MIIM_88E1011_PHY_STATUS, miim_read,
1098 &mii_parse_88E1011_psr},
1099 {miim_end,}
1100 },
1101 (struct phy_cmd[]){ /* shutdown */
1102 {miim_end,}
1103 },
Andy Fleming239e75f2006-09-13 10:34:18 -05001104};
1105
wdenka445ddf2004-06-09 00:34:46 +00001106struct phy_info phy_info_cis8204 = {
1107 0x3f11,
1108 "Cicada Cis8204",
1109 6,
Jon Loeligerb7ced082006-10-10 17:03:43 -05001110 (struct phy_cmd[]){ /* config */
1111 /* Override PHY config settings */
1112 {MIIM_CIS8201_AUX_CONSTAT,
1113 MIIM_CIS8201_AUXCONSTAT_INIT, NULL},
1114 /* Configure some basic stuff */
1115 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1116 {MIIM_CIS8204_SLED_CON, MIIM_CIS8204_SLEDCON_INIT,
1117 &mii_cis8204_fixled},
1118 {MIIM_CIS8204_EPHY_CON, MIIM_CIS8204_EPHYCON_INIT,
1119 &mii_cis8204_setmode},
1120 {miim_end,}
1121 },
1122 (struct phy_cmd[]){ /* startup */
1123 /* Read the Status (2x to make sure link is right) */
1124 {MIIM_STATUS, miim_read, NULL},
1125 /* Auto-negotiate */
1126 {MIIM_STATUS, miim_read, &mii_parse_sr},
1127 /* Read the status */
1128 {MIIM_CIS8201_AUX_CONSTAT, miim_read,
1129 &mii_parse_cis8201},
1130 {miim_end,}
1131 },
1132 (struct phy_cmd[]){ /* shutdown */
1133 {miim_end,}
1134 },
wdenka445ddf2004-06-09 00:34:46 +00001135};
1136
1137/* Cicada 8201 */
1138struct phy_info phy_info_cis8201 = {
1139 0xfc41,
1140 "CIS8201",
1141 4,
Jon Loeligerb7ced082006-10-10 17:03:43 -05001142 (struct phy_cmd[]){ /* config */
1143 /* Override PHY config settings */
1144 {MIIM_CIS8201_AUX_CONSTAT,
1145 MIIM_CIS8201_AUXCONSTAT_INIT, NULL},
1146 /* Set up the interface mode */
1147 {MIIM_CIS8201_EXT_CON1, MIIM_CIS8201_EXTCON1_INIT,
1148 NULL},
1149 /* Configure some basic stuff */
1150 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1151 {miim_end,}
1152 },
1153 (struct phy_cmd[]){ /* startup */
1154 /* Read the Status (2x to make sure link is right) */
1155 {MIIM_STATUS, miim_read, NULL},
1156 /* Auto-negotiate */
1157 {MIIM_STATUS, miim_read, &mii_parse_sr},
1158 /* Read the status */
1159 {MIIM_CIS8201_AUX_CONSTAT, miim_read,
1160 &mii_parse_cis8201},
1161 {miim_end,}
1162 },
1163 (struct phy_cmd[]){ /* shutdown */
1164 {miim_end,}
1165 },
wdenka445ddf2004-06-09 00:34:46 +00001166};
Jon Loeliger5c8aa972006-04-26 17:58:56 -05001167struct phy_info phy_info_VSC8244 = {
Jon Loeligerb7ced082006-10-10 17:03:43 -05001168 0x3f1b,
1169 "Vitesse VSC8244",
1170 6,
1171 (struct phy_cmd[]){ /* config */
1172 /* Override PHY config settings */
1173 /* Configure some basic stuff */
1174 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1175 {miim_end,}
1176 },
1177 (struct phy_cmd[]){ /* startup */
1178 /* Read the Status (2x to make sure link is right) */
1179 {MIIM_STATUS, miim_read, NULL},
1180 /* Auto-negotiate */
1181 {MIIM_STATUS, miim_read, &mii_parse_sr},
1182 /* Read the status */
1183 {MIIM_VSC8244_AUX_CONSTAT, miim_read,
1184 &mii_parse_vsc8244},
1185 {miim_end,}
1186 },
1187 (struct phy_cmd[]){ /* shutdown */
1188 {miim_end,}
1189 },
Jon Loeliger5c8aa972006-04-26 17:58:56 -05001190};
wdenka445ddf2004-06-09 00:34:46 +00001191
wdenka445ddf2004-06-09 00:34:46 +00001192struct phy_info phy_info_dm9161 = {
1193 0x0181b88,
1194 "Davicom DM9161E",
1195 4,
Jon Loeligerb7ced082006-10-10 17:03:43 -05001196 (struct phy_cmd[]){ /* config */
1197 {MIIM_CONTROL, MIIM_DM9161_CR_STOP, NULL},
1198 /* Do not bypass the scrambler/descrambler */
1199 {MIIM_DM9161_SCR, MIIM_DM9161_SCR_INIT, NULL},
1200 /* Clear 10BTCSR to default */
1201 {MIIM_DM9161_10BTCSR, MIIM_DM9161_10BTCSR_INIT,
1202 NULL},
1203 /* Configure some basic stuff */
1204 {MIIM_CONTROL, MIIM_CR_INIT, NULL},
1205 /* Restart Auto Negotiation */
1206 {MIIM_CONTROL, MIIM_DM9161_CR_RSTAN, NULL},
1207 {miim_end,}
1208 },
1209 (struct phy_cmd[]){ /* startup */
1210 /* Status is read once to clear old link state */
1211 {MIIM_STATUS, miim_read, NULL},
1212 /* Auto-negotiate */
1213 {MIIM_STATUS, miim_read, &mii_parse_sr},
1214 /* Read the status */
1215 {MIIM_DM9161_SCSR, miim_read,
1216 &mii_parse_dm9161_scsr},
1217 {miim_end,}
1218 },
1219 (struct phy_cmd[]){ /* shutdown */
1220 {miim_end,}
1221 },
wdenka445ddf2004-06-09 00:34:46 +00001222};
David Updegraff0451b012007-04-20 14:34:48 -05001223/* a generic flavor. */
1224struct phy_info phy_info_generic = {
1225 0,
1226 "Unknown/Generic PHY",
1227 32,
1228 (struct phy_cmd[]) { /* config */
1229 {PHY_BMCR, PHY_BMCR_RESET, NULL},
1230 {PHY_BMCR, PHY_BMCR_AUTON|PHY_BMCR_RST_NEG, NULL},
1231 {miim_end,}
1232 },
1233 (struct phy_cmd[]) { /* startup */
1234 {PHY_BMSR, miim_read, NULL},
1235 {PHY_BMSR, miim_read, &mii_parse_sr},
1236 {PHY_BMSR, miim_read, &mii_parse_link},
1237 {miim_end,}
1238 },
1239 (struct phy_cmd[]) { /* shutdown */
1240 {miim_end,}
1241 }
1242};
1243
wdenka445ddf2004-06-09 00:34:46 +00001244
wdenkf41ff3b2005-04-04 23:43:44 +00001245uint mii_parse_lxt971_sr2(uint mii_reg, struct tsec_private *priv)
1246{
wdenke085e5b2005-04-05 23:32:21 +00001247 unsigned int speed;
1248 if (priv->link) {
1249 speed = mii_reg & MIIM_LXT971_SR2_SPEED_MASK;
wdenkf41ff3b2005-04-04 23:43:44 +00001250
wdenke085e5b2005-04-05 23:32:21 +00001251 switch (speed) {
1252 case MIIM_LXT971_SR2_10HDX:
1253 priv->speed = 10;
1254 priv->duplexity = 0;
1255 break;
1256 case MIIM_LXT971_SR2_10FDX:
1257 priv->speed = 10;
1258 priv->duplexity = 1;
1259 break;
1260 case MIIM_LXT971_SR2_100HDX:
1261 priv->speed = 100;
1262 priv->duplexity = 0;
1263 default:
1264 priv->speed = 100;
1265 priv->duplexity = 1;
1266 break;
1267 }
1268 } else {
1269 priv->speed = 0;
1270 priv->duplexity = 0;
1271 }
wdenkf41ff3b2005-04-04 23:43:44 +00001272
wdenke085e5b2005-04-05 23:32:21 +00001273 return 0;
wdenkf41ff3b2005-04-04 23:43:44 +00001274}
1275
wdenkbfad55d2005-03-14 23:56:42 +00001276static struct phy_info phy_info_lxt971 = {
1277 0x0001378e,
1278 "LXT971",
1279 4,
Jon Loeligerb7ced082006-10-10 17:03:43 -05001280 (struct phy_cmd[]){ /* config */
1281 {MIIM_CR, MIIM_CR_INIT, mii_cr_init}, /* autonegotiate */
1282 {miim_end,}
1283 },
1284 (struct phy_cmd[]){ /* startup - enable interrupts */
1285 /* { 0x12, 0x00f2, NULL }, */
1286 {MIIM_STATUS, miim_read, NULL},
1287 {MIIM_STATUS, miim_read, &mii_parse_sr},
1288 {MIIM_LXT971_SR2, miim_read, &mii_parse_lxt971_sr2},
1289 {miim_end,}
1290 },
1291 (struct phy_cmd[]){ /* shutdown - disable interrupts */
1292 {miim_end,}
1293 },
wdenkbfad55d2005-03-14 23:56:42 +00001294};
1295
Wolfgang Denkf0c4e462006-03-12 22:50:55 +01001296/* Parse the DP83865's link and auto-neg status register for speed and duplex
Jon Loeligerb7ced082006-10-10 17:03:43 -05001297 * information
1298 */
Wolfgang Denkf0c4e462006-03-12 22:50:55 +01001299uint mii_parse_dp83865_lanr(uint mii_reg, struct tsec_private *priv)
1300{
1301 switch (mii_reg & MIIM_DP83865_SPD_MASK) {
1302
1303 case MIIM_DP83865_SPD_1000:
1304 priv->speed = 1000;
1305 break;
1306
1307 case MIIM_DP83865_SPD_100:
1308 priv->speed = 100;
1309 break;
1310
1311 default:
1312 priv->speed = 10;
1313 break;
1314
1315 }
1316
1317 if (mii_reg & MIIM_DP83865_DPX_FULL)
1318 priv->duplexity = 1;
1319 else
1320 priv->duplexity = 0;
1321
1322 return 0;
1323}
1324
1325struct phy_info phy_info_dp83865 = {
1326 0x20005c7,
1327 "NatSemi DP83865",
1328 4,
Jon Loeligerb7ced082006-10-10 17:03:43 -05001329 (struct phy_cmd[]){ /* config */
1330 {MIIM_CONTROL, MIIM_DP83865_CR_INIT, NULL},
1331 {miim_end,}
1332 },
1333 (struct phy_cmd[]){ /* startup */
1334 /* Status is read once to clear old link state */
1335 {MIIM_STATUS, miim_read, NULL},
1336 /* Auto-negotiate */
1337 {MIIM_STATUS, miim_read, &mii_parse_sr},
1338 /* Read the link and auto-neg status */
1339 {MIIM_DP83865_LANR, miim_read,
1340 &mii_parse_dp83865_lanr},
1341 {miim_end,}
1342 },
1343 (struct phy_cmd[]){ /* shutdown */
1344 {miim_end,}
1345 },
Wolfgang Denkf0c4e462006-03-12 22:50:55 +01001346};
1347
wdenka445ddf2004-06-09 00:34:46 +00001348struct phy_info *phy_info[] = {
wdenka445ddf2004-06-09 00:34:46 +00001349 &phy_info_cis8204,
Timur Tabi054838e2006-10-31 18:44:42 -06001350 &phy_info_cis8201,
Paul Gortmaker2bd9f1b2007-01-16 11:38:14 -05001351 &phy_info_BCM5461S,
Joe Hammaned7ad4e2007-04-30 16:47:28 -05001352 &phy_info_BCM5464S,
wdenka445ddf2004-06-09 00:34:46 +00001353 &phy_info_M88E1011S,
wdenkbfad55d2005-03-14 23:56:42 +00001354 &phy_info_M88E1111S,
Andy Fleming239e75f2006-09-13 10:34:18 -05001355 &phy_info_M88E1145,
Wolfgang Denk15e87572007-08-06 01:01:49 +02001356 &phy_info_M88E1149S,
wdenka445ddf2004-06-09 00:34:46 +00001357 &phy_info_dm9161,
wdenkbfad55d2005-03-14 23:56:42 +00001358 &phy_info_lxt971,
Jon Loeliger5c8aa972006-04-26 17:58:56 -05001359 &phy_info_VSC8244,
Wolfgang Denkf0c4e462006-03-12 22:50:55 +01001360 &phy_info_dp83865,
David Updegraff0451b012007-04-20 14:34:48 -05001361 &phy_info_generic,
wdenka445ddf2004-06-09 00:34:46 +00001362 NULL
1363};
1364
wdenka445ddf2004-06-09 00:34:46 +00001365/* Grab the identifier of the device's PHY, and search through
wdenkbfad55d2005-03-14 23:56:42 +00001366 * all of the known PHYs to see if one matches. If so, return
Jon Loeligerb7ced082006-10-10 17:03:43 -05001367 * it, if not, return NULL
1368 */
1369struct phy_info *get_phy_info(struct eth_device *dev)
wdenka445ddf2004-06-09 00:34:46 +00001370{
1371 struct tsec_private *priv = (struct tsec_private *)dev->priv;
1372 uint phy_reg, phy_ID;
1373 int i;
1374 struct phy_info *theInfo = NULL;
1375
1376 /* Grab the bits from PHYIR1, and put them in the upper half */
1377 phy_reg = read_phy_reg(priv, MIIM_PHYIR1);
1378 phy_ID = (phy_reg & 0xffff) << 16;
1379
1380 /* Grab the bits from PHYIR2, and put them in the lower half */
1381 phy_reg = read_phy_reg(priv, MIIM_PHYIR2);
1382 phy_ID |= (phy_reg & 0xffff);
1383
1384 /* loop through all the known PHY types, and find one that */
1385 /* matches the ID we read from the PHY. */
Jon Loeligerb7ced082006-10-10 17:03:43 -05001386 for (i = 0; phy_info[i]; i++) {
Andy Flemingb2d14f42007-05-09 00:54:20 -05001387 if (phy_info[i]->id == (phy_ID >> phy_info[i]->shift)) {
wdenka445ddf2004-06-09 00:34:46 +00001388 theInfo = phy_info[i];
Andy Flemingb2d14f42007-05-09 00:54:20 -05001389 break;
1390 }
wdenka445ddf2004-06-09 00:34:46 +00001391 }
1392
Jon Loeligerb7ced082006-10-10 17:03:43 -05001393 if (theInfo == NULL) {
wdenka445ddf2004-06-09 00:34:46 +00001394 printf("%s: PHY id %x is not supported!\n", dev->name, phy_ID);
1395 return NULL;
1396 } else {
Stefan Roesec0dc34f2005-09-21 18:20:22 +02001397 debug("%s: PHY is %s (%x)\n", dev->name, theInfo->name, phy_ID);
wdenka445ddf2004-06-09 00:34:46 +00001398 }
1399
1400 return theInfo;
1401}
1402
wdenka445ddf2004-06-09 00:34:46 +00001403/* Execute the given series of commands on the given device's
Jon Loeligerb7ced082006-10-10 17:03:43 -05001404 * PHY, running functions as necessary
1405 */
wdenka445ddf2004-06-09 00:34:46 +00001406void phy_run_commands(struct tsec_private *priv, struct phy_cmd *cmd)
1407{
1408 int i;
1409 uint result;
1410 volatile tsec_t *phyregs = priv->phyregs;
1411
1412 phyregs->miimcfg = MIIMCFG_RESET;
1413
1414 phyregs->miimcfg = MIIMCFG_INIT_VALUE;
1415
Jon Loeligerb7ced082006-10-10 17:03:43 -05001416 while (phyregs->miimind & MIIMIND_BUSY) ;
wdenka445ddf2004-06-09 00:34:46 +00001417
Jon Loeligerb7ced082006-10-10 17:03:43 -05001418 for (i = 0; cmd->mii_reg != miim_end; i++) {
1419 if (cmd->mii_data == miim_read) {
wdenka445ddf2004-06-09 00:34:46 +00001420 result = read_phy_reg(priv, cmd->mii_reg);
1421
Jon Loeligerb7ced082006-10-10 17:03:43 -05001422 if (cmd->funct != NULL)
1423 (*(cmd->funct)) (result, priv);
wdenka445ddf2004-06-09 00:34:46 +00001424
1425 } else {
Jon Loeligerb7ced082006-10-10 17:03:43 -05001426 if (cmd->funct != NULL)
1427 result = (*(cmd->funct)) (cmd->mii_reg, priv);
wdenka445ddf2004-06-09 00:34:46 +00001428 else
1429 result = cmd->mii_data;
1430
1431 write_phy_reg(priv, cmd->mii_reg, result);
1432
1433 }
1434 cmd++;
1435 }
1436}
1437
wdenka445ddf2004-06-09 00:34:46 +00001438/* Relocate the function pointers in the phy cmd lists */
1439static void relocate_cmds(void)
1440{
1441 struct phy_cmd **cmdlistptr;
1442 struct phy_cmd *cmd;
Jon Loeligerb7ced082006-10-10 17:03:43 -05001443 int i, j, k;
wdenka445ddf2004-06-09 00:34:46 +00001444
Jon Loeligerb7ced082006-10-10 17:03:43 -05001445 for (i = 0; phy_info[i]; i++) {
wdenka445ddf2004-06-09 00:34:46 +00001446 /* First thing's first: relocate the pointers to the
1447 * PHY command structures (the structs were done) */
Jon Loeligerb7ced082006-10-10 17:03:43 -05001448 phy_info[i] = (struct phy_info *)((uint) phy_info[i]
1449 + gd->reloc_off);
wdenka445ddf2004-06-09 00:34:46 +00001450 phy_info[i]->name += gd->reloc_off;
1451 phy_info[i]->config =
Jon Loeligerb7ced082006-10-10 17:03:43 -05001452 (struct phy_cmd *)((uint) phy_info[i]->config
1453 + gd->reloc_off);
wdenka445ddf2004-06-09 00:34:46 +00001454 phy_info[i]->startup =
Jon Loeligerb7ced082006-10-10 17:03:43 -05001455 (struct phy_cmd *)((uint) phy_info[i]->startup
1456 + gd->reloc_off);
wdenka445ddf2004-06-09 00:34:46 +00001457 phy_info[i]->shutdown =
Jon Loeligerb7ced082006-10-10 17:03:43 -05001458 (struct phy_cmd *)((uint) phy_info[i]->shutdown
1459 + gd->reloc_off);
wdenka445ddf2004-06-09 00:34:46 +00001460
1461 cmdlistptr = &phy_info[i]->config;
Jon Loeligerb7ced082006-10-10 17:03:43 -05001462 j = 0;
1463 for (; cmdlistptr <= &phy_info[i]->shutdown; cmdlistptr++) {
1464 k = 0;
1465 for (cmd = *cmdlistptr;
1466 cmd->mii_reg != miim_end;
1467 cmd++) {
wdenka445ddf2004-06-09 00:34:46 +00001468 /* Only relocate non-NULL pointers */
Jon Loeligerb7ced082006-10-10 17:03:43 -05001469 if (cmd->funct)
wdenka445ddf2004-06-09 00:34:46 +00001470 cmd->funct += gd->reloc_off;
1471
1472 k++;
1473 }
1474 j++;
1475 }
1476 }
1477
1478 relocated = 1;
wdenk78924a72004-04-18 21:45:42 +00001479}
1480
Jon Loeliger82ecaad2007-07-09 17:39:42 -05001481#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) \
Marian Balakowiczaab8c492005-10-28 22:30:33 +02001482 && !defined(BITBANGMII)
wdenka445ddf2004-06-09 00:34:46 +00001483
Jon Loeligerb7ced082006-10-10 17:03:43 -05001484struct tsec_private *get_priv_for_phy(unsigned char phyaddr)
wdenka445ddf2004-06-09 00:34:46 +00001485{
1486 int i;
1487
Jon Loeligerb7ced082006-10-10 17:03:43 -05001488 for (i = 0; i < MAXCONTROLLERS; i++) {
1489 if (privlist[i]->phyaddr == phyaddr)
wdenka445ddf2004-06-09 00:34:46 +00001490 return privlist[i];
1491 }
1492
1493 return NULL;
1494}
1495
wdenk78924a72004-04-18 21:45:42 +00001496/*
1497 * Read a MII PHY register.
1498 *
1499 * Returns:
wdenka445ddf2004-06-09 00:34:46 +00001500 * 0 on success
wdenk78924a72004-04-18 21:45:42 +00001501 */
Marian Balakowiczaab8c492005-10-28 22:30:33 +02001502static int tsec_miiphy_read(char *devname, unsigned char addr,
Jon Loeligerb7ced082006-10-10 17:03:43 -05001503 unsigned char reg, unsigned short *value)
wdenk78924a72004-04-18 21:45:42 +00001504{
wdenka445ddf2004-06-09 00:34:46 +00001505 unsigned short ret;
1506 struct tsec_private *priv = get_priv_for_phy(addr);
wdenk78924a72004-04-18 21:45:42 +00001507
Jon Loeligerb7ced082006-10-10 17:03:43 -05001508 if (NULL == priv) {
wdenka445ddf2004-06-09 00:34:46 +00001509 printf("Can't read PHY at address %d\n", addr);
1510 return -1;
1511 }
1512
1513 ret = (unsigned short)read_phy_reg(priv, reg);
1514 *value = ret;
wdenk78924a72004-04-18 21:45:42 +00001515
1516 return 0;
1517}
1518
1519/*
1520 * Write a MII PHY register.
1521 *
1522 * Returns:
wdenka445ddf2004-06-09 00:34:46 +00001523 * 0 on success
wdenk78924a72004-04-18 21:45:42 +00001524 */
Marian Balakowiczaab8c492005-10-28 22:30:33 +02001525static int tsec_miiphy_write(char *devname, unsigned char addr,
Jon Loeligerb7ced082006-10-10 17:03:43 -05001526 unsigned char reg, unsigned short value)
wdenk78924a72004-04-18 21:45:42 +00001527{
wdenka445ddf2004-06-09 00:34:46 +00001528 struct tsec_private *priv = get_priv_for_phy(addr);
1529
Jon Loeligerb7ced082006-10-10 17:03:43 -05001530 if (NULL == priv) {
wdenka445ddf2004-06-09 00:34:46 +00001531 printf("Can't write PHY at address %d\n", addr);
1532 return -1;
1533 }
wdenk78924a72004-04-18 21:45:42 +00001534
wdenka445ddf2004-06-09 00:34:46 +00001535 write_phy_reg(priv, reg, value);
wdenk78924a72004-04-18 21:45:42 +00001536
1537 return 0;
wdenk9c53f402003-10-15 23:53:47 +00001538}
wdenka445ddf2004-06-09 00:34:46 +00001539
Jon Loeliger82ecaad2007-07-09 17:39:42 -05001540#endif
wdenka445ddf2004-06-09 00:34:46 +00001541
wdenk9c53f402003-10-15 23:53:47 +00001542#endif /* CONFIG_TSEC_ENET */