blob: fd21ed4edc401a2e86504c1a9b3579e676ce26c7 [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[] = {
Kim Phillips255a35772007-05-16 16:52:19 -050068#if defined(CONFIG_TSEC1)
69#if defined(CONFIG_MPC8544DS) || defined(CONFIG_MPC8641HPCN)
Wolfgang Denk2f152782007-05-05 18:23:11 +020070 {TSEC1_PHY_ADDR, TSEC_GIGABIT | TSEC_REDUCED, TSEC1_PHYIDX},
Andy Fleming81f481c2007-04-23 02:24:28 -050071#else
Jon Loeligerd9b94f22005-07-25 14:05:07 -050072 {TSEC1_PHY_ADDR, TSEC_GIGABIT, TSEC1_PHYIDX},
Andy Fleming81f481c2007-04-23 02:24:28 -050073#endif
Zach Sadeckied810642007-07-31 12:27:25 -050074#else
Jon Loeliger89875e92006-10-10 17:03:43 -050075 {0, 0, 0},
wdenk97d80fc2004-06-09 00:34:46 +000076#endif
Kim Phillips255a35772007-05-16 16:52:19 -050077#if defined(CONFIG_TSEC2)
78#if defined(CONFIG_MPC8641HPCN)
Jon Loeliger89875e92006-10-10 17:03:43 -050079 {TSEC2_PHY_ADDR, TSEC_GIGABIT | TSEC_REDUCED, TSEC2_PHYIDX},
wdenk9d46ea42005-03-14 23:56:42 +000080#else
Kim Phillips255a35772007-05-16 16:52:19 -050081 {TSEC2_PHY_ADDR, TSEC_GIGABIT, TSEC2_PHYIDX},
82#endif
Zach Sadeckied810642007-07-31 12:27:25 -050083#else
Jon Loeliger89875e92006-10-10 17:03:43 -050084 {0, 0, 0},
wdenk97d80fc2004-06-09 00:34:46 +000085#endif
86#ifdef CONFIG_MPC85XX_FEC
87 {FEC_PHY_ADDR, 0, FEC_PHYIDX},
wdenk9d46ea42005-03-14 23:56:42 +000088#else
Kim Phillips255a35772007-05-16 16:52:19 -050089#if defined(CONFIG_TSEC3)
Jon Loeligerd9b94f22005-07-25 14:05:07 -050090 {TSEC3_PHY_ADDR, TSEC_GIGABIT | TSEC_REDUCED, TSEC3_PHYIDX},
Jon Loeligerdebb7352006-04-26 17:58:56 -050091#else
Jon Loeliger89875e92006-10-10 17:03:43 -050092 {0, 0, 0},
Jon Loeligerdebb7352006-04-26 17:58:56 -050093#endif
Kim Phillips255a35772007-05-16 16:52:19 -050094#if defined(CONFIG_TSEC4)
Andy Fleming09f3e092006-09-13 10:34:18 -050095 {TSEC4_PHY_ADDR, TSEC_GIGABIT | TSEC_REDUCED, TSEC4_PHYIDX},
Jon Loeligerdebb7352006-04-26 17:58:56 -050096#else
Jon Loeliger89875e92006-10-10 17:03:43 -050097 {0, 0, 0},
Jon Loeligerdebb7352006-04-26 17:58:56 -050098#endif
wdenk97d80fc2004-06-09 00:34:46 +000099#endif
100};
101
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500102#define MAXCONTROLLERS (4)
wdenk97d80fc2004-06-09 00:34:46 +0000103
104static int relocated = 0;
105
106static struct tsec_private *privlist[MAXCONTROLLERS];
107
wdenk42d1f032003-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 Loeliger89875e92006-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);
wdenk97d80fc2004-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 Loeliger89875e92006-10-10 17:03:43 -0500124struct phy_info *get_phy_info(struct eth_device *dev);
wdenk97d80fc2004-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 Balakowicz63ff0042005-10-28 22:30:33 +0200128static int tsec_miiphy_write(char *devname, unsigned char addr,
Jon Loeliger89875e92006-10-10 17:03:43 -0500129 unsigned char reg, unsigned short value);
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200130static int tsec_miiphy_read(char *devname, unsigned char addr,
Jon Loeliger89875e92006-10-10 17:03:43 -0500131 unsigned char reg, unsigned short *value);
David Updegraff53a5c422007-06-11 10:41:07 -0500132#ifdef CONFIG_MCAST_TFTP
133static int tsec_mcast_addr (struct eth_device *dev, u8 mcast_mac, u8 set);
134#endif
wdenk7abf0c52004-04-18 21:45:42 +0000135
wdenk97d80fc2004-06-09 00:34:46 +0000136/* Initialize device structure. Returns success if PHY
137 * initialization succeeded (i.e. if it recognizes the PHY)
138 */
Jon Loeliger89875e92006-10-10 17:03:43 -0500139int tsec_initialize(bd_t * bis, int index, char *devname)
wdenk42d1f032003-10-15 23:53:47 +0000140{
Jon Loeliger89875e92006-10-10 17:03:43 -0500141 struct eth_device *dev;
wdenk42d1f032003-10-15 23:53:47 +0000142 int i;
wdenk97d80fc2004-06-09 00:34:46 +0000143 struct tsec_private *priv;
wdenk42d1f032003-10-15 23:53:47 +0000144
Jon Loeliger89875e92006-10-10 17:03:43 -0500145 dev = (struct eth_device *)malloc(sizeof *dev);
wdenk42d1f032003-10-15 23:53:47 +0000146
Jon Loeliger89875e92006-10-10 17:03:43 -0500147 if (NULL == dev)
wdenk42d1f032003-10-15 23:53:47 +0000148 return 0;
149
150 memset(dev, 0, sizeof *dev);
151
Jon Loeliger89875e92006-10-10 17:03:43 -0500152 priv = (struct tsec_private *)malloc(sizeof(*priv));
wdenk97d80fc2004-06-09 00:34:46 +0000153
Jon Loeliger89875e92006-10-10 17:03:43 -0500154 if (NULL == priv)
wdenk97d80fc2004-06-09 00:34:46 +0000155 return 0;
156
157 privlist[index] = priv;
Jon Loeliger89875e92006-10-10 17:03:43 -0500158 priv->regs = (volatile tsec_t *)(TSEC_BASE_ADDR + index * TSEC_SIZE);
wdenk97d80fc2004-06-09 00:34:46 +0000159 priv->phyregs = (volatile tsec_t *)(TSEC_BASE_ADDR +
Jon Loeliger89875e92006-10-10 17:03:43 -0500160 tsec_info[index].phyregidx *
161 TSEC_SIZE);
wdenk97d80fc2004-06-09 00:34:46 +0000162
163 priv->phyaddr = tsec_info[index].phyaddr;
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500164 priv->flags = tsec_info[index].flags;
wdenk97d80fc2004-06-09 00:34:46 +0000165
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500166 sprintf(dev->name, devname);
wdenk42d1f032003-10-15 23:53:47 +0000167 dev->iobase = 0;
Jon Loeliger89875e92006-10-10 17:03:43 -0500168 dev->priv = priv;
169 dev->init = tsec_init;
170 dev->halt = tsec_halt;
171 dev->send = tsec_send;
172 dev->recv = tsec_recv;
David Updegraff53a5c422007-06-11 10:41:07 -0500173#ifdef CONFIG_MCAST_TFTP
174 dev->mcast = tsec_mcast_addr;
175#endif
wdenk42d1f032003-10-15 23:53:47 +0000176
177 /* Tell u-boot to get the addr from the env */
Jon Loeliger89875e92006-10-10 17:03:43 -0500178 for (i = 0; i < 6; i++)
wdenk42d1f032003-10-15 23:53:47 +0000179 dev->enetaddr[i] = 0;
180
181 eth_register(dev);
182
wdenk97d80fc2004-06-09 00:34:46 +0000183 /* Reset the MAC */
184 priv->regs->maccfg1 |= MACCFG1_SOFT_RESET;
185 priv->regs->maccfg1 &= ~(MACCFG1_SOFT_RESET);
wdenk7abf0c52004-04-18 21:45:42 +0000186
Jon Loeligercb51c0b2007-07-09 17:39:42 -0500187#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) \
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200188 && !defined(BITBANGMII)
189 miiphy_register(dev->name, tsec_miiphy_read, tsec_miiphy_write);
190#endif
191
wdenk97d80fc2004-06-09 00:34:46 +0000192 /* Try to initialize PHY here, and return */
193 return init_phy(dev);
wdenk42d1f032003-10-15 23:53:47 +0000194}
195
wdenk42d1f032003-10-15 23:53:47 +0000196/* Initializes data structures and registers for the controller,
wdenk9d46ea42005-03-14 23:56:42 +0000197 * and brings the interface up. Returns the link status, meaning
wdenk97d80fc2004-06-09 00:34:46 +0000198 * that it returns success if the link is up, failure otherwise.
Jon Loeliger89875e92006-10-10 17:03:43 -0500199 * This allows u-boot to find the first active controller.
200 */
201int tsec_init(struct eth_device *dev, bd_t * bd)
wdenk42d1f032003-10-15 23:53:47 +0000202{
wdenk42d1f032003-10-15 23:53:47 +0000203 uint tempval;
204 char tmpbuf[MAC_ADDR_LEN];
205 int i;
wdenk97d80fc2004-06-09 00:34:46 +0000206 struct tsec_private *priv = (struct tsec_private *)dev->priv;
207 volatile tsec_t *regs = priv->regs;
wdenk42d1f032003-10-15 23:53:47 +0000208
209 /* Make sure the controller is stopped */
210 tsec_halt(dev);
211
wdenk97d80fc2004-06-09 00:34:46 +0000212 /* Init MACCFG2. Defaults to GMII */
wdenk42d1f032003-10-15 23:53:47 +0000213 regs->maccfg2 = MACCFG2_INIT_SETTINGS;
214
215 /* Init ECNTRL */
216 regs->ecntrl = ECNTRL_INIT_SETTINGS;
217
218 /* Copy the station address into the address registers.
219 * Backwards, because little endian MACS are dumb */
Jon Loeliger89875e92006-10-10 17:03:43 -0500220 for (i = 0; i < MAC_ADDR_LEN; i++) {
wdenk97d80fc2004-06-09 00:34:46 +0000221 tmpbuf[MAC_ADDR_LEN - 1 - i] = dev->enetaddr[i];
wdenk42d1f032003-10-15 23:53:47 +0000222 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500223 regs->macstnaddr1 = *((uint *) (tmpbuf));
wdenk42d1f032003-10-15 23:53:47 +0000224
Jon Loeliger89875e92006-10-10 17:03:43 -0500225 tempval = *((uint *) (tmpbuf + 4));
wdenk42d1f032003-10-15 23:53:47 +0000226
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200227 regs->macstnaddr2 = tempval;
wdenk42d1f032003-10-15 23:53:47 +0000228
wdenk42d1f032003-10-15 23:53:47 +0000229 /* reset the indices to zero */
230 rxIdx = 0;
231 txIdx = 0;
232
233 /* Clear out (for the most part) the other registers */
234 init_registers(regs);
235
236 /* Ready the device for tx/rx */
wdenk97d80fc2004-06-09 00:34:46 +0000237 startup_tsec(dev);
wdenk42d1f032003-10-15 23:53:47 +0000238
wdenk97d80fc2004-06-09 00:34:46 +0000239 /* If there's no link, fail */
240 return priv->link;
wdenk42d1f032003-10-15 23:53:47 +0000241
242}
243
wdenk97d80fc2004-06-09 00:34:46 +0000244/* Write value to the device's PHY through the registers
245 * specified in priv, modifying the register specified in regnum.
246 * It will wait for the write to be done (or for a timeout to
247 * expire) before exiting
248 */
249void write_phy_reg(struct tsec_private *priv, uint regnum, uint value)
250{
251 volatile tsec_t *regbase = priv->phyregs;
252 uint phyid = priv->phyaddr;
Jon Loeliger89875e92006-10-10 17:03:43 -0500253 int timeout = 1000000;
wdenk97d80fc2004-06-09 00:34:46 +0000254
255 regbase->miimadd = (phyid << 8) | regnum;
256 regbase->miimcon = value;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500257 asm("sync");
wdenk97d80fc2004-06-09 00:34:46 +0000258
Jon Loeliger89875e92006-10-10 17:03:43 -0500259 timeout = 1000000;
260 while ((regbase->miimind & MIIMIND_BUSY) && timeout--) ;
wdenk97d80fc2004-06-09 00:34:46 +0000261}
262
wdenk97d80fc2004-06-09 00:34:46 +0000263/* Reads register regnum on the device's PHY through the
wdenk9d46ea42005-03-14 23:56:42 +0000264 * registers specified in priv. It lowers and raises the read
wdenk97d80fc2004-06-09 00:34:46 +0000265 * command, and waits for the data to become valid (miimind
266 * notvalid bit cleared), and the bus to cease activity (miimind
267 * busy bit cleared), and then returns the value
268 */
269uint read_phy_reg(struct tsec_private *priv, uint regnum)
wdenk42d1f032003-10-15 23:53:47 +0000270{
271 uint value;
wdenk97d80fc2004-06-09 00:34:46 +0000272 volatile tsec_t *regbase = priv->phyregs;
273 uint phyid = priv->phyaddr;
wdenk42d1f032003-10-15 23:53:47 +0000274
wdenk97d80fc2004-06-09 00:34:46 +0000275 /* Put the address of the phy, and the register
276 * number into MIIMADD */
277 regbase->miimadd = (phyid << 8) | regnum;
wdenk42d1f032003-10-15 23:53:47 +0000278
279 /* Clear the command register, and wait */
280 regbase->miimcom = 0;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500281 asm("sync");
wdenk42d1f032003-10-15 23:53:47 +0000282
283 /* Initiate a read command, and wait */
284 regbase->miimcom = MIIM_READ_COMMAND;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500285 asm("sync");
wdenk42d1f032003-10-15 23:53:47 +0000286
287 /* Wait for the the indication that the read is done */
Jon Loeliger89875e92006-10-10 17:03:43 -0500288 while ((regbase->miimind & (MIIMIND_NOTVALID | MIIMIND_BUSY))) ;
wdenk42d1f032003-10-15 23:53:47 +0000289
290 /* Grab the value read from the PHY */
291 value = regbase->miimstat;
292
293 return value;
294}
295
wdenk97d80fc2004-06-09 00:34:46 +0000296/* Discover which PHY is attached to the device, and configure it
297 * properly. If the PHY is not recognized, then return 0
298 * (failure). Otherwise, return 1
299 */
300static int init_phy(struct eth_device *dev)
wdenk42d1f032003-10-15 23:53:47 +0000301{
wdenk97d80fc2004-06-09 00:34:46 +0000302 struct tsec_private *priv = (struct tsec_private *)dev->priv;
303 struct phy_info *curphy;
Jon Loeliger89875e92006-10-10 17:03:43 -0500304 volatile tsec_t *regs = (volatile tsec_t *)(TSEC_BASE_ADDR);
wdenk42d1f032003-10-15 23:53:47 +0000305
306 /* Assign a Physical address to the TBI */
Joe Hammandcb84b72007-08-09 09:08:18 -0500307 regs->tbipa = CFG_TBIPA_VALUE;
Jon Loeliger89875e92006-10-10 17:03:43 -0500308 regs = (volatile tsec_t *)(TSEC_BASE_ADDR + TSEC_SIZE);
Joe Hammandcb84b72007-08-09 09:08:18 -0500309 regs->tbipa = CFG_TBIPA_VALUE;
Jon Loeliger89875e92006-10-10 17:03:43 -0500310 asm("sync");
wdenk3dd7f0f2005-04-04 23:43:44 +0000311
312 /* Reset MII (due to new addresses) */
313 priv->phyregs->miimcfg = MIIMCFG_RESET;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500314 asm("sync");
wdenk3dd7f0f2005-04-04 23:43:44 +0000315 priv->phyregs->miimcfg = MIIMCFG_INIT_VALUE;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500316 asm("sync");
Jon Loeliger89875e92006-10-10 17:03:43 -0500317 while (priv->phyregs->miimind & MIIMIND_BUSY) ;
wdenk42d1f032003-10-15 23:53:47 +0000318
Jon Loeliger89875e92006-10-10 17:03:43 -0500319 if (0 == relocated)
wdenk97d80fc2004-06-09 00:34:46 +0000320 relocate_cmds();
wdenk42d1f032003-10-15 23:53:47 +0000321
wdenk97d80fc2004-06-09 00:34:46 +0000322 /* Get the cmd structure corresponding to the attached
323 * PHY */
324 curphy = get_phy_info(dev);
wdenk42d1f032003-10-15 23:53:47 +0000325
Ben Warren4653f912006-10-26 14:38:25 -0400326 if (curphy == NULL) {
327 priv->phyinfo = NULL;
wdenk97d80fc2004-06-09 00:34:46 +0000328 printf("%s: No PHY found\n", dev->name);
wdenk42d1f032003-10-15 23:53:47 +0000329
wdenk97d80fc2004-06-09 00:34:46 +0000330 return 0;
wdenk42d1f032003-10-15 23:53:47 +0000331 }
332
wdenk97d80fc2004-06-09 00:34:46 +0000333 priv->phyinfo = curphy;
wdenk42d1f032003-10-15 23:53:47 +0000334
wdenk97d80fc2004-06-09 00:34:46 +0000335 phy_run_commands(priv, priv->phyinfo->config);
wdenk42d1f032003-10-15 23:53:47 +0000336
wdenk97d80fc2004-06-09 00:34:46 +0000337 return 1;
wdenk42d1f032003-10-15 23:53:47 +0000338}
339
Jon Loeliger89875e92006-10-10 17:03:43 -0500340/*
341 * Returns which value to write to the control register.
342 * For 10/100, the value is slightly different
343 */
344uint mii_cr_init(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000345{
Jon Loeliger89875e92006-10-10 17:03:43 -0500346 if (priv->flags & TSEC_GIGABIT)
wdenk97d80fc2004-06-09 00:34:46 +0000347 return MIIM_CONTROL_INIT;
348 else
349 return MIIM_CR_INIT;
350}
351
wdenk97d80fc2004-06-09 00:34:46 +0000352/* Parse the status register for link, and then do
Jon Loeliger89875e92006-10-10 17:03:43 -0500353 * auto-negotiation
354 */
355uint mii_parse_sr(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000356{
Stefan Roese5810dc32005-09-21 18:20:22 +0200357 /*
Jon Loeliger89875e92006-10-10 17:03:43 -0500358 * Wait if PHY is capable of autonegotiation and autonegotiation
359 * is not complete.
Stefan Roese5810dc32005-09-21 18:20:22 +0200360 */
361 mii_reg = read_phy_reg(priv, MIIM_STATUS);
Jon Loeliger89875e92006-10-10 17:03:43 -0500362 if ((mii_reg & PHY_BMSR_AUTN_ABLE)
363 && !(mii_reg & PHY_BMSR_AUTN_COMP)) {
Stefan Roese5810dc32005-09-21 18:20:22 +0200364 int i = 0;
wdenk97d80fc2004-06-09 00:34:46 +0000365
Jon Loeliger89875e92006-10-10 17:03:43 -0500366 puts("Waiting for PHY auto negotiation to complete");
367 while (!((mii_reg & PHY_BMSR_AUTN_COMP)
368 && (mii_reg & MIIM_STATUS_LINK))) {
Stefan Roese5810dc32005-09-21 18:20:22 +0200369 /*
370 * Timeout reached ?
371 */
372 if (i > PHY_AUTONEGOTIATE_TIMEOUT) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500373 puts(" TIMEOUT !\n");
Stefan Roese5810dc32005-09-21 18:20:22 +0200374 priv->link = 0;
Jin Zhengxiong-R64188fcfb9a52006-06-27 18:12:23 +0800375 return 0;
Stefan Roese5810dc32005-09-21 18:20:22 +0200376 }
wdenk97d80fc2004-06-09 00:34:46 +0000377
Stefan Roese5810dc32005-09-21 18:20:22 +0200378 if ((i++ % 1000) == 0) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500379 putc('.');
Stefan Roese5810dc32005-09-21 18:20:22 +0200380 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500381 udelay(1000); /* 1 ms */
wdenk97d80fc2004-06-09 00:34:46 +0000382 mii_reg = read_phy_reg(priv, MIIM_STATUS);
Stefan Roese5810dc32005-09-21 18:20:22 +0200383 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500384 puts(" done\n");
Stefan Roese5810dc32005-09-21 18:20:22 +0200385 priv->link = 1;
Jon Loeliger89875e92006-10-10 17:03:43 -0500386 udelay(500000); /* another 500 ms (results in faster booting) */
Stefan Roese5810dc32005-09-21 18:20:22 +0200387 } else {
388 priv->link = 1;
wdenk97d80fc2004-06-09 00:34:46 +0000389 }
390
391 return 0;
392}
393
David Updegraffaf1c2b82007-04-20 14:34:48 -0500394/* Generic function which updates the speed and duplex. If
395 * autonegotiation is enabled, it uses the AND of the link
396 * partner's advertised capabilities and our advertised
397 * capabilities. If autonegotiation is disabled, we use the
398 * appropriate bits in the control register.
399 *
400 * Stolen from Linux's mii.c and phy_device.c
401 */
402uint mii_parse_link(uint mii_reg, struct tsec_private *priv)
403{
404 /* We're using autonegotiation */
405 if (mii_reg & PHY_BMSR_AUTN_ABLE) {
406 uint lpa = 0;
407 uint gblpa = 0;
408
409 /* Check for gigabit capability */
410 if (mii_reg & PHY_BMSR_EXT) {
411 /* We want a list of states supported by
412 * both PHYs in the link
413 */
414 gblpa = read_phy_reg(priv, PHY_1000BTSR);
415 gblpa &= read_phy_reg(priv, PHY_1000BTCR) << 2;
416 }
417
418 /* Set the baseline so we only have to set them
419 * if they're different
420 */
421 priv->speed = 10;
422 priv->duplexity = 0;
423
424 /* Check the gigabit fields */
425 if (gblpa & (PHY_1000BTSR_1000FD | PHY_1000BTSR_1000HD)) {
426 priv->speed = 1000;
427
428 if (gblpa & PHY_1000BTSR_1000FD)
429 priv->duplexity = 1;
430
431 /* We're done! */
432 return 0;
433 }
434
435 lpa = read_phy_reg(priv, PHY_ANAR);
436 lpa &= read_phy_reg(priv, PHY_ANLPAR);
437
438 if (lpa & (PHY_ANLPAR_TXFD | PHY_ANLPAR_TX)) {
439 priv->speed = 100;
440
441 if (lpa & PHY_ANLPAR_TXFD)
442 priv->duplexity = 1;
443
444 } else if (lpa & PHY_ANLPAR_10FD)
445 priv->duplexity = 1;
446 } else {
447 uint bmcr = read_phy_reg(priv, PHY_BMCR);
448
449 priv->speed = 10;
450 priv->duplexity = 0;
451
452 if (bmcr & PHY_BMCR_DPLX)
453 priv->duplexity = 1;
454
455 if (bmcr & PHY_BMCR_1000_MBPS)
456 priv->speed = 1000;
457 else if (bmcr & PHY_BMCR_100_MBPS)
458 priv->speed = 100;
459 }
460
461 return 0;
462}
463
Paul Gortmaker91e25762007-01-16 11:38:14 -0500464/*
465 * Parse the BCM54xx status register for speed and duplex information.
466 * The linux sungem_phy has this information, but in a table format.
467 */
468uint mii_parse_BCM54xx_sr(uint mii_reg, struct tsec_private *priv)
469{
470
471 switch((mii_reg & MIIM_BCM54xx_AUXSTATUS_LINKMODE_MASK) >> MIIM_BCM54xx_AUXSTATUS_LINKMODE_SHIFT){
472
473 case 1:
474 printf("Enet starting in 10BT/HD\n");
475 priv->duplexity = 0;
476 priv->speed = 10;
477 break;
478
479 case 2:
480 printf("Enet starting in 10BT/FD\n");
481 priv->duplexity = 1;
482 priv->speed = 10;
483 break;
484
485 case 3:
486 printf("Enet starting in 100BT/HD\n");
487 priv->duplexity = 0;
488 priv->speed = 100;
489 break;
490
491 case 5:
492 printf("Enet starting in 100BT/FD\n");
493 priv->duplexity = 1;
494 priv->speed = 100;
495 break;
496
497 case 6:
498 printf("Enet starting in 1000BT/HD\n");
499 priv->duplexity = 0;
500 priv->speed = 1000;
501 break;
502
503 case 7:
504 printf("Enet starting in 1000BT/FD\n");
505 priv->duplexity = 1;
506 priv->speed = 1000;
507 break;
508
509 default:
510 printf("Auto-neg error, defaulting to 10BT/HD\n");
511 priv->duplexity = 0;
512 priv->speed = 10;
513 break;
514 }
515
516 return 0;
517
518}
wdenk97d80fc2004-06-09 00:34:46 +0000519/* Parse the 88E1011's status register for speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -0500520 * information
521 */
522uint mii_parse_88E1011_psr(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000523{
524 uint speed;
525
Stefan Roese5810dc32005-09-21 18:20:22 +0200526 mii_reg = read_phy_reg(priv, MIIM_88E1011_PHY_STATUS);
527
528 if (!((mii_reg & MIIM_88E1011_PHYSTAT_SPDDONE) &&
529 (mii_reg & MIIM_88E1011_PHYSTAT_LINK))) {
530 int i = 0;
531
Jon Loeliger89875e92006-10-10 17:03:43 -0500532 puts("Waiting for PHY realtime link");
Stefan Roese5810dc32005-09-21 18:20:22 +0200533 while (!((mii_reg & MIIM_88E1011_PHYSTAT_SPDDONE) &&
534 (mii_reg & MIIM_88E1011_PHYSTAT_LINK))) {
535 /*
536 * Timeout reached ?
537 */
538 if (i > PHY_AUTONEGOTIATE_TIMEOUT) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500539 puts(" TIMEOUT !\n");
Stefan Roese5810dc32005-09-21 18:20:22 +0200540 priv->link = 0;
541 break;
542 }
543
544 if ((i++ % 1000) == 0) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500545 putc('.');
Stefan Roese5810dc32005-09-21 18:20:22 +0200546 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500547 udelay(1000); /* 1 ms */
Stefan Roese5810dc32005-09-21 18:20:22 +0200548 mii_reg = read_phy_reg(priv, MIIM_88E1011_PHY_STATUS);
549 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500550 puts(" done\n");
551 udelay(500000); /* another 500 ms (results in faster booting) */
Stefan Roese5810dc32005-09-21 18:20:22 +0200552 }
553
Jon Loeliger89875e92006-10-10 17:03:43 -0500554 if (mii_reg & MIIM_88E1011_PHYSTAT_DUPLEX)
wdenk97d80fc2004-06-09 00:34:46 +0000555 priv->duplexity = 1;
556 else
557 priv->duplexity = 0;
558
Jon Loeliger89875e92006-10-10 17:03:43 -0500559 speed = (mii_reg & MIIM_88E1011_PHYSTAT_SPEED);
wdenk97d80fc2004-06-09 00:34:46 +0000560
Jon Loeliger89875e92006-10-10 17:03:43 -0500561 switch (speed) {
562 case MIIM_88E1011_PHYSTAT_GBIT:
563 priv->speed = 1000;
564 break;
565 case MIIM_88E1011_PHYSTAT_100:
566 priv->speed = 100;
567 break;
568 default:
569 priv->speed = 10;
wdenk97d80fc2004-06-09 00:34:46 +0000570 }
571
572 return 0;
573}
574
wdenk97d80fc2004-06-09 00:34:46 +0000575/* Parse the cis8201's status register for speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -0500576 * information
577 */
578uint mii_parse_cis8201(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000579{
580 uint speed;
581
Jon Loeliger89875e92006-10-10 17:03:43 -0500582 if (mii_reg & MIIM_CIS8201_AUXCONSTAT_DUPLEX)
wdenk97d80fc2004-06-09 00:34:46 +0000583 priv->duplexity = 1;
584 else
585 priv->duplexity = 0;
586
587 speed = mii_reg & MIIM_CIS8201_AUXCONSTAT_SPEED;
Jon Loeliger89875e92006-10-10 17:03:43 -0500588 switch (speed) {
589 case MIIM_CIS8201_AUXCONSTAT_GBIT:
590 priv->speed = 1000;
591 break;
592 case MIIM_CIS8201_AUXCONSTAT_100:
593 priv->speed = 100;
594 break;
595 default:
596 priv->speed = 10;
597 break;
wdenk97d80fc2004-06-09 00:34:46 +0000598 }
599
600 return 0;
601}
Jon Loeliger89875e92006-10-10 17:03:43 -0500602
Jon Loeligerdebb7352006-04-26 17:58:56 -0500603/* Parse the vsc8244's status register for speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -0500604 * information
605 */
606uint mii_parse_vsc8244(uint mii_reg, struct tsec_private * priv)
Jon Loeligerdebb7352006-04-26 17:58:56 -0500607{
Jon Loeliger89875e92006-10-10 17:03:43 -0500608 uint speed;
609
610 if (mii_reg & MIIM_VSC8244_AUXCONSTAT_DUPLEX)
611 priv->duplexity = 1;
612 else
613 priv->duplexity = 0;
614
615 speed = mii_reg & MIIM_VSC8244_AUXCONSTAT_SPEED;
616 switch (speed) {
617 case MIIM_VSC8244_AUXCONSTAT_GBIT:
618 priv->speed = 1000;
619 break;
620 case MIIM_VSC8244_AUXCONSTAT_100:
621 priv->speed = 100;
622 break;
623 default:
624 priv->speed = 10;
625 break;
626 }
627
628 return 0;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500629}
wdenk97d80fc2004-06-09 00:34:46 +0000630
wdenk97d80fc2004-06-09 00:34:46 +0000631/* Parse the DM9161's status register for speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -0500632 * information
633 */
634uint mii_parse_dm9161_scsr(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000635{
Jon Loeliger89875e92006-10-10 17:03:43 -0500636 if (mii_reg & (MIIM_DM9161_SCSR_100F | MIIM_DM9161_SCSR_100H))
wdenk97d80fc2004-06-09 00:34:46 +0000637 priv->speed = 100;
638 else
639 priv->speed = 10;
640
Jon Loeliger89875e92006-10-10 17:03:43 -0500641 if (mii_reg & (MIIM_DM9161_SCSR_100F | MIIM_DM9161_SCSR_10F))
wdenk97d80fc2004-06-09 00:34:46 +0000642 priv->duplexity = 1;
643 else
644 priv->duplexity = 0;
645
646 return 0;
647}
648
Jon Loeliger89875e92006-10-10 17:03:43 -0500649/*
650 * Hack to write all 4 PHYs with the LED values
651 */
652uint mii_cis8204_fixled(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000653{
654 uint phyid;
655 volatile tsec_t *regbase = priv->phyregs;
Jon Loeliger89875e92006-10-10 17:03:43 -0500656 int timeout = 1000000;
wdenk97d80fc2004-06-09 00:34:46 +0000657
Jon Loeliger89875e92006-10-10 17:03:43 -0500658 for (phyid = 0; phyid < 4; phyid++) {
wdenk97d80fc2004-06-09 00:34:46 +0000659 regbase->miimadd = (phyid << 8) | mii_reg;
660 regbase->miimcon = MIIM_CIS8204_SLEDCON_INIT;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500661 asm("sync");
wdenk97d80fc2004-06-09 00:34:46 +0000662
Jon Loeliger89875e92006-10-10 17:03:43 -0500663 timeout = 1000000;
664 while ((regbase->miimind & MIIMIND_BUSY) && timeout--) ;
wdenk97d80fc2004-06-09 00:34:46 +0000665 }
666
667 return MIIM_CIS8204_SLEDCON_INIT;
668}
669
Jon Loeliger89875e92006-10-10 17:03:43 -0500670uint mii_cis8204_setmode(uint mii_reg, struct tsec_private * priv)
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500671{
672 if (priv->flags & TSEC_REDUCED)
673 return MIIM_CIS8204_EPHYCON_INIT | MIIM_CIS8204_EPHYCON_RGMII;
674 else
675 return MIIM_CIS8204_EPHYCON_INIT;
676}
wdenk97d80fc2004-06-09 00:34:46 +0000677
678/* Initialized required registers to appropriate values, zeroing
679 * those we don't care about (unless zero is bad, in which case,
Jon Loeliger89875e92006-10-10 17:03:43 -0500680 * choose a more appropriate value)
681 */
682static void init_registers(volatile tsec_t * regs)
wdenk42d1f032003-10-15 23:53:47 +0000683{
684 /* Clear IEVENT */
685 regs->ievent = IEVENT_INIT_CLEAR;
686
687 regs->imask = IMASK_INIT_CLEAR;
688
689 regs->hash.iaddr0 = 0;
690 regs->hash.iaddr1 = 0;
691 regs->hash.iaddr2 = 0;
692 regs->hash.iaddr3 = 0;
693 regs->hash.iaddr4 = 0;
694 regs->hash.iaddr5 = 0;
695 regs->hash.iaddr6 = 0;
696 regs->hash.iaddr7 = 0;
697
698 regs->hash.gaddr0 = 0;
699 regs->hash.gaddr1 = 0;
700 regs->hash.gaddr2 = 0;
701 regs->hash.gaddr3 = 0;
702 regs->hash.gaddr4 = 0;
703 regs->hash.gaddr5 = 0;
704 regs->hash.gaddr6 = 0;
705 regs->hash.gaddr7 = 0;
706
707 regs->rctrl = 0x00000000;
708
709 /* Init RMON mib registers */
710 memset((void *)&(regs->rmon), 0, sizeof(rmon_mib_t));
711
712 regs->rmon.cam1 = 0xffffffff;
713 regs->rmon.cam2 = 0xffffffff;
714
715 regs->mrblr = MRBLR_INIT_SETTINGS;
716
717 regs->minflr = MINFLR_INIT_SETTINGS;
718
719 regs->attr = ATTR_INIT_SETTINGS;
720 regs->attreli = ATTRELI_INIT_SETTINGS;
721
722}
723
wdenk97d80fc2004-06-09 00:34:46 +0000724/* Configure maccfg2 based on negotiated speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -0500725 * reported by PHY handling code
726 */
wdenk97d80fc2004-06-09 00:34:46 +0000727static void adjust_link(struct eth_device *dev)
728{
729 struct tsec_private *priv = (struct tsec_private *)dev->priv;
730 volatile tsec_t *regs = priv->regs;
731
Jon Loeliger89875e92006-10-10 17:03:43 -0500732 if (priv->link) {
733 if (priv->duplexity != 0)
wdenk97d80fc2004-06-09 00:34:46 +0000734 regs->maccfg2 |= MACCFG2_FULL_DUPLEX;
735 else
736 regs->maccfg2 &= ~(MACCFG2_FULL_DUPLEX);
737
Jon Loeliger89875e92006-10-10 17:03:43 -0500738 switch (priv->speed) {
739 case 1000:
740 regs->maccfg2 = ((regs->maccfg2 & ~(MACCFG2_IF))
741 | MACCFG2_GMII);
742 break;
743 case 100:
744 case 10:
745 regs->maccfg2 = ((regs->maccfg2 & ~(MACCFG2_IF))
746 | MACCFG2_MII);
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500747
Nick Spencef484dc72006-09-07 07:39:46 -0700748 /* Set R100 bit in all modes although
749 * it is only used in RGMII mode
Jon Loeliger89875e92006-10-10 17:03:43 -0500750 */
Nick Spencef484dc72006-09-07 07:39:46 -0700751 if (priv->speed == 100)
Jon Loeliger89875e92006-10-10 17:03:43 -0500752 regs->ecntrl |= ECNTRL_R100;
753 else
754 regs->ecntrl &= ~(ECNTRL_R100);
755 break;
756 default:
757 printf("%s: Speed was bad\n", dev->name);
758 break;
wdenk97d80fc2004-06-09 00:34:46 +0000759 }
760
761 printf("Speed: %d, %s duplex\n", priv->speed,
Jon Loeliger89875e92006-10-10 17:03:43 -0500762 (priv->duplexity) ? "full" : "half");
wdenk97d80fc2004-06-09 00:34:46 +0000763
764 } else {
765 printf("%s: No link.\n", dev->name);
766 }
767}
768
wdenk97d80fc2004-06-09 00:34:46 +0000769/* Set up the buffers and their descriptors, and bring up the
Jon Loeliger89875e92006-10-10 17:03:43 -0500770 * interface
771 */
wdenk97d80fc2004-06-09 00:34:46 +0000772static void startup_tsec(struct eth_device *dev)
wdenk42d1f032003-10-15 23:53:47 +0000773{
774 int i;
wdenk97d80fc2004-06-09 00:34:46 +0000775 struct tsec_private *priv = (struct tsec_private *)dev->priv;
776 volatile tsec_t *regs = priv->regs;
wdenk42d1f032003-10-15 23:53:47 +0000777
778 /* Point to the buffer descriptors */
779 regs->tbase = (unsigned int)(&rtx.txbd[txIdx]);
780 regs->rbase = (unsigned int)(&rtx.rxbd[rxIdx]);
781
782 /* Initialize the Rx Buffer descriptors */
783 for (i = 0; i < PKTBUFSRX; i++) {
784 rtx.rxbd[i].status = RXBD_EMPTY;
785 rtx.rxbd[i].length = 0;
Jon Loeliger89875e92006-10-10 17:03:43 -0500786 rtx.rxbd[i].bufPtr = (uint) NetRxPackets[i];
wdenk42d1f032003-10-15 23:53:47 +0000787 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500788 rtx.rxbd[PKTBUFSRX - 1].status |= RXBD_WRAP;
wdenk42d1f032003-10-15 23:53:47 +0000789
790 /* Initialize the TX Buffer Descriptors */
Jon Loeliger89875e92006-10-10 17:03:43 -0500791 for (i = 0; i < TX_BUF_CNT; i++) {
wdenk42d1f032003-10-15 23:53:47 +0000792 rtx.txbd[i].status = 0;
793 rtx.txbd[i].length = 0;
794 rtx.txbd[i].bufPtr = 0;
795 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500796 rtx.txbd[TX_BUF_CNT - 1].status |= TXBD_WRAP;
wdenk42d1f032003-10-15 23:53:47 +0000797
wdenk97d80fc2004-06-09 00:34:46 +0000798 /* Start up the PHY */
Ben Warren4653f912006-10-26 14:38:25 -0400799 if(priv->phyinfo)
800 phy_run_commands(priv, priv->phyinfo->startup);
David Updegraffaf1c2b82007-04-20 14:34:48 -0500801
wdenk97d80fc2004-06-09 00:34:46 +0000802 adjust_link(dev);
803
wdenk42d1f032003-10-15 23:53:47 +0000804 /* Enable Transmit and Receive */
805 regs->maccfg1 |= (MACCFG1_RX_EN | MACCFG1_TX_EN);
806
807 /* Tell the DMA it is clear to go */
808 regs->dmactrl |= DMACTRL_INIT_SETTINGS;
809 regs->tstat = TSTAT_CLEAR_THALT;
810 regs->dmactrl &= ~(DMACTRL_GRS | DMACTRL_GTS);
811}
812
wdenk9d46ea42005-03-14 23:56:42 +0000813/* This returns the status bits of the device. The return value
wdenk42d1f032003-10-15 23:53:47 +0000814 * is never checked, and this is what the 8260 driver did, so we
wdenk9d46ea42005-03-14 23:56:42 +0000815 * do the same. Presumably, this would be zero if there were no
Jon Loeliger89875e92006-10-10 17:03:43 -0500816 * errors
817 */
818static int tsec_send(struct eth_device *dev, volatile void *packet, int length)
wdenk42d1f032003-10-15 23:53:47 +0000819{
820 int i;
821 int result = 0;
wdenk97d80fc2004-06-09 00:34:46 +0000822 struct tsec_private *priv = (struct tsec_private *)dev->priv;
823 volatile tsec_t *regs = priv->regs;
wdenk42d1f032003-10-15 23:53:47 +0000824
825 /* Find an empty buffer descriptor */
Jon Loeliger89875e92006-10-10 17:03:43 -0500826 for (i = 0; rtx.txbd[txIdx].status & TXBD_READY; i++) {
wdenk42d1f032003-10-15 23:53:47 +0000827 if (i >= TOUT_LOOP) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500828 debug("%s: tsec: tx buffers full\n", dev->name);
wdenk42d1f032003-10-15 23:53:47 +0000829 return result;
830 }
831 }
832
Jon Loeliger89875e92006-10-10 17:03:43 -0500833 rtx.txbd[txIdx].bufPtr = (uint) packet;
wdenk42d1f032003-10-15 23:53:47 +0000834 rtx.txbd[txIdx].length = length;
Jon Loeliger89875e92006-10-10 17:03:43 -0500835 rtx.txbd[txIdx].status |=
836 (TXBD_READY | TXBD_LAST | TXBD_CRC | TXBD_INTERRUPT);
wdenk42d1f032003-10-15 23:53:47 +0000837
838 /* Tell the DMA to go */
839 regs->tstat = TSTAT_CLEAR_THALT;
840
841 /* Wait for buffer to be transmitted */
Jon Loeliger89875e92006-10-10 17:03:43 -0500842 for (i = 0; rtx.txbd[txIdx].status & TXBD_READY; i++) {
wdenk42d1f032003-10-15 23:53:47 +0000843 if (i >= TOUT_LOOP) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500844 debug("%s: tsec: tx error\n", dev->name);
wdenk42d1f032003-10-15 23:53:47 +0000845 return result;
846 }
847 }
848
849 txIdx = (txIdx + 1) % TX_BUF_CNT;
850 result = rtx.txbd[txIdx].status & TXBD_STATS;
851
852 return result;
853}
854
Jon Loeliger89875e92006-10-10 17:03:43 -0500855static int tsec_recv(struct eth_device *dev)
wdenk42d1f032003-10-15 23:53:47 +0000856{
857 int length;
wdenk97d80fc2004-06-09 00:34:46 +0000858 struct tsec_private *priv = (struct tsec_private *)dev->priv;
859 volatile tsec_t *regs = priv->regs;
wdenk42d1f032003-10-15 23:53:47 +0000860
Jon Loeliger89875e92006-10-10 17:03:43 -0500861 while (!(rtx.rxbd[rxIdx].status & RXBD_EMPTY)) {
wdenk42d1f032003-10-15 23:53:47 +0000862
863 length = rtx.rxbd[rxIdx].length;
864
865 /* Send the packet up if there were no errors */
866 if (!(rtx.rxbd[rxIdx].status & RXBD_STATS)) {
867 NetReceive(NetRxPackets[rxIdx], length - 4);
wdenk97d80fc2004-06-09 00:34:46 +0000868 } else {
869 printf("Got error %x\n",
Jon Loeliger89875e92006-10-10 17:03:43 -0500870 (rtx.rxbd[rxIdx].status & RXBD_STATS));
wdenk42d1f032003-10-15 23:53:47 +0000871 }
872
873 rtx.rxbd[rxIdx].length = 0;
874
875 /* Set the wrap bit if this is the last element in the list */
Jon Loeliger89875e92006-10-10 17:03:43 -0500876 rtx.rxbd[rxIdx].status =
877 RXBD_EMPTY | (((rxIdx + 1) == PKTBUFSRX) ? RXBD_WRAP : 0);
wdenk42d1f032003-10-15 23:53:47 +0000878
879 rxIdx = (rxIdx + 1) % PKTBUFSRX;
880 }
881
Jon Loeliger89875e92006-10-10 17:03:43 -0500882 if (regs->ievent & IEVENT_BSY) {
wdenk42d1f032003-10-15 23:53:47 +0000883 regs->ievent = IEVENT_BSY;
884 regs->rstat = RSTAT_CLEAR_RHALT;
885 }
886
887 return -1;
888
889}
890
wdenk97d80fc2004-06-09 00:34:46 +0000891/* Stop the interface */
Jon Loeliger89875e92006-10-10 17:03:43 -0500892static void tsec_halt(struct eth_device *dev)
wdenk42d1f032003-10-15 23:53:47 +0000893{
wdenk97d80fc2004-06-09 00:34:46 +0000894 struct tsec_private *priv = (struct tsec_private *)dev->priv;
895 volatile tsec_t *regs = priv->regs;
wdenk42d1f032003-10-15 23:53:47 +0000896
897 regs->dmactrl &= ~(DMACTRL_GRS | DMACTRL_GTS);
898 regs->dmactrl |= (DMACTRL_GRS | DMACTRL_GTS);
899
Jon Loeliger89875e92006-10-10 17:03:43 -0500900 while (!(regs->ievent & (IEVENT_GRSC | IEVENT_GTSC))) ;
wdenk42d1f032003-10-15 23:53:47 +0000901
902 regs->maccfg1 &= ~(MACCFG1_TX_EN | MACCFG1_RX_EN);
903
wdenk97d80fc2004-06-09 00:34:46 +0000904 /* Shut down the PHY, as needed */
Ben Warren4653f912006-10-26 14:38:25 -0400905 if(priv->phyinfo)
906 phy_run_commands(priv, priv->phyinfo->shutdown);
wdenk42d1f032003-10-15 23:53:47 +0000907}
wdenk7abf0c52004-04-18 21:45:42 +0000908
Andy Flemingc7e717e2007-08-03 04:05:25 -0500909struct phy_info phy_info_M88E1149S = {
Wolfgang Denk5728be32007-08-06 01:01:49 +0200910 0x1410ca,
911 "Marvell 88E1149S",
912 4,
913 (struct phy_cmd[]){ /* config */
914 /* Reset and configure the PHY */
915 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
916 {0x1d, 0x1f, NULL},
917 {0x1e, 0x200c, NULL},
918 {0x1d, 0x5, NULL},
919 {0x1e, 0x0, NULL},
920 {0x1e, 0x100, NULL},
921 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
922 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
923 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
924 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
925 {miim_end,}
926 },
927 (struct phy_cmd[]){ /* startup */
928 /* Status is read once to clear old link state */
929 {MIIM_STATUS, miim_read, NULL},
930 /* Auto-negotiate */
931 {MIIM_STATUS, miim_read, &mii_parse_sr},
932 /* Read the status */
933 {MIIM_88E1011_PHY_STATUS, miim_read,
934 &mii_parse_88E1011_psr},
935 {miim_end,}
936 },
937 (struct phy_cmd[]){ /* shutdown */
938 {miim_end,}
939 },
Andy Flemingc7e717e2007-08-03 04:05:25 -0500940};
941
Paul Gortmaker91e25762007-01-16 11:38:14 -0500942/* The 5411 id is 0x206070, the 5421 is 0x2060e0 */
943struct phy_info phy_info_BCM5461S = {
944 0x02060c1, /* 5461 ID */
945 "Broadcom BCM5461S",
946 0, /* not clear to me what minor revisions we can shift away */
947 (struct phy_cmd[]) { /* config */
948 /* Reset and configure the PHY */
949 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
950 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
951 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
952 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
953 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
954 {miim_end,}
955 },
956 (struct phy_cmd[]) { /* startup */
957 /* Status is read once to clear old link state */
958 {MIIM_STATUS, miim_read, NULL},
959 /* Auto-negotiate */
960 {MIIM_STATUS, miim_read, &mii_parse_sr},
961 /* Read the status */
962 {MIIM_BCM54xx_AUXSTATUS, miim_read, &mii_parse_BCM54xx_sr},
963 {miim_end,}
964 },
965 (struct phy_cmd[]) { /* shutdown */
966 {miim_end,}
967 },
968};
969
Joe Hammanc3243cf2007-04-30 16:47:28 -0500970struct phy_info phy_info_BCM5464S = {
971 0x02060b1, /* 5464 ID */
972 "Broadcom BCM5464S",
973 0, /* not clear to me what minor revisions we can shift away */
974 (struct phy_cmd[]) { /* config */
975 /* Reset and configure the PHY */
976 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
977 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
978 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
979 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
980 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
981 {miim_end,}
982 },
983 (struct phy_cmd[]) { /* startup */
984 /* Status is read once to clear old link state */
985 {MIIM_STATUS, miim_read, NULL},
986 /* Auto-negotiate */
987 {MIIM_STATUS, miim_read, &mii_parse_sr},
988 /* Read the status */
989 {MIIM_BCM54xx_AUXSTATUS, miim_read, &mii_parse_BCM54xx_sr},
990 {miim_end,}
991 },
992 (struct phy_cmd[]) { /* shutdown */
993 {miim_end,}
994 },
995};
996
wdenk97d80fc2004-06-09 00:34:46 +0000997struct phy_info phy_info_M88E1011S = {
998 0x01410c6,
999 "Marvell 88E1011S",
1000 4,
Jon Loeliger89875e92006-10-10 17:03:43 -05001001 (struct phy_cmd[]){ /* config */
1002 /* Reset and configure the PHY */
1003 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1004 {0x1d, 0x1f, NULL},
1005 {0x1e, 0x200c, NULL},
1006 {0x1d, 0x5, NULL},
1007 {0x1e, 0x0, NULL},
1008 {0x1e, 0x100, NULL},
1009 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1010 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1011 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1012 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1013 {miim_end,}
1014 },
1015 (struct phy_cmd[]){ /* startup */
1016 /* Status is read once to clear old link state */
1017 {MIIM_STATUS, miim_read, NULL},
1018 /* Auto-negotiate */
1019 {MIIM_STATUS, miim_read, &mii_parse_sr},
1020 /* Read the status */
1021 {MIIM_88E1011_PHY_STATUS, miim_read,
1022 &mii_parse_88E1011_psr},
1023 {miim_end,}
1024 },
1025 (struct phy_cmd[]){ /* shutdown */
1026 {miim_end,}
1027 },
wdenk97d80fc2004-06-09 00:34:46 +00001028};
1029
wdenk9d46ea42005-03-14 23:56:42 +00001030struct phy_info phy_info_M88E1111S = {
1031 0x01410cc,
1032 "Marvell 88E1111S",
1033 4,
Jon Loeliger89875e92006-10-10 17:03:43 -05001034 (struct phy_cmd[]){ /* config */
1035 /* Reset and configure the PHY */
1036 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
Nick Spencef484dc72006-09-07 07:39:46 -07001037 {0x14, 0x0cd2, NULL}, /* Delay RGMII TX and RX */
Jon Loeliger89875e92006-10-10 17:03:43 -05001038 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1039 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1040 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1041 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1042 {miim_end,}
1043 },
1044 (struct phy_cmd[]){ /* startup */
1045 /* Status is read once to clear old link state */
1046 {MIIM_STATUS, miim_read, NULL},
1047 /* Auto-negotiate */
1048 {MIIM_STATUS, miim_read, &mii_parse_sr},
1049 /* Read the status */
1050 {MIIM_88E1011_PHY_STATUS, miim_read,
1051 &mii_parse_88E1011_psr},
1052 {miim_end,}
1053 },
1054 (struct phy_cmd[]){ /* shutdown */
1055 {miim_end,}
1056 },
wdenk9d46ea42005-03-14 23:56:42 +00001057};
1058
Andy Fleming09f3e092006-09-13 10:34:18 -05001059static unsigned int m88e1145_setmode(uint mii_reg, struct tsec_private *priv)
1060{
Andy Fleming09f3e092006-09-13 10:34:18 -05001061 uint mii_data = read_phy_reg(priv, mii_reg);
1062
Andy Fleming09f3e092006-09-13 10:34:18 -05001063 /* Setting MIIM_88E1145_PHY_EXT_CR */
1064 if (priv->flags & TSEC_REDUCED)
1065 return mii_data |
Jon Loeliger89875e92006-10-10 17:03:43 -05001066 MIIM_M88E1145_RGMII_RX_DELAY | MIIM_M88E1145_RGMII_TX_DELAY;
Andy Fleming09f3e092006-09-13 10:34:18 -05001067 else
1068 return mii_data;
1069}
1070
1071static struct phy_info phy_info_M88E1145 = {
1072 0x01410cd,
1073 "Marvell 88E1145",
1074 4,
Jon Loeliger89875e92006-10-10 17:03:43 -05001075 (struct phy_cmd[]){ /* config */
Andy Fleming7507d562007-05-08 17:23:02 -05001076 /* Reset the PHY */
1077 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1078
Jon Loeliger89875e92006-10-10 17:03:43 -05001079 /* Errata E0, E1 */
1080 {29, 0x001b, NULL},
1081 {30, 0x418f, NULL},
1082 {29, 0x0016, NULL},
1083 {30, 0xa2da, NULL},
Andy Fleming09f3e092006-09-13 10:34:18 -05001084
Andy Fleming7507d562007-05-08 17:23:02 -05001085 /* Configure the PHY */
Jon Loeliger89875e92006-10-10 17:03:43 -05001086 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1087 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1088 {MIIM_88E1011_PHY_SCR, MIIM_88E1011_PHY_MDI_X_AUTO,
1089 NULL},
1090 {MIIM_88E1145_PHY_EXT_CR, 0, &m88e1145_setmode},
1091 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1092 {MIIM_CONTROL, MIIM_CONTROL_INIT, NULL},
1093 {miim_end,}
1094 },
1095 (struct phy_cmd[]){ /* startup */
1096 /* Status is read once to clear old link state */
1097 {MIIM_STATUS, miim_read, NULL},
1098 /* Auto-negotiate */
1099 {MIIM_STATUS, miim_read, &mii_parse_sr},
1100 {MIIM_88E1111_PHY_LED_CONTROL,
1101 MIIM_88E1111_PHY_LED_DIRECT, NULL},
1102 /* Read the Status */
1103 {MIIM_88E1011_PHY_STATUS, miim_read,
1104 &mii_parse_88E1011_psr},
1105 {miim_end,}
1106 },
1107 (struct phy_cmd[]){ /* shutdown */
1108 {miim_end,}
1109 },
Andy Fleming09f3e092006-09-13 10:34:18 -05001110};
1111
wdenk97d80fc2004-06-09 00:34:46 +00001112struct phy_info phy_info_cis8204 = {
1113 0x3f11,
1114 "Cicada Cis8204",
1115 6,
Jon Loeliger89875e92006-10-10 17:03:43 -05001116 (struct phy_cmd[]){ /* config */
1117 /* Override PHY config settings */
1118 {MIIM_CIS8201_AUX_CONSTAT,
1119 MIIM_CIS8201_AUXCONSTAT_INIT, NULL},
1120 /* Configure some basic stuff */
1121 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1122 {MIIM_CIS8204_SLED_CON, MIIM_CIS8204_SLEDCON_INIT,
1123 &mii_cis8204_fixled},
1124 {MIIM_CIS8204_EPHY_CON, MIIM_CIS8204_EPHYCON_INIT,
1125 &mii_cis8204_setmode},
1126 {miim_end,}
1127 },
1128 (struct phy_cmd[]){ /* startup */
1129 /* Read the Status (2x to make sure link is right) */
1130 {MIIM_STATUS, miim_read, NULL},
1131 /* Auto-negotiate */
1132 {MIIM_STATUS, miim_read, &mii_parse_sr},
1133 /* Read the status */
1134 {MIIM_CIS8201_AUX_CONSTAT, miim_read,
1135 &mii_parse_cis8201},
1136 {miim_end,}
1137 },
1138 (struct phy_cmd[]){ /* shutdown */
1139 {miim_end,}
1140 },
wdenk97d80fc2004-06-09 00:34:46 +00001141};
1142
1143/* Cicada 8201 */
1144struct phy_info phy_info_cis8201 = {
1145 0xfc41,
1146 "CIS8201",
1147 4,
Jon Loeliger89875e92006-10-10 17:03:43 -05001148 (struct phy_cmd[]){ /* config */
1149 /* Override PHY config settings */
1150 {MIIM_CIS8201_AUX_CONSTAT,
1151 MIIM_CIS8201_AUXCONSTAT_INIT, NULL},
1152 /* Set up the interface mode */
1153 {MIIM_CIS8201_EXT_CON1, MIIM_CIS8201_EXTCON1_INIT,
1154 NULL},
1155 /* Configure some basic stuff */
1156 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1157 {miim_end,}
1158 },
1159 (struct phy_cmd[]){ /* startup */
1160 /* Read the Status (2x to make sure link is right) */
1161 {MIIM_STATUS, miim_read, NULL},
1162 /* Auto-negotiate */
1163 {MIIM_STATUS, miim_read, &mii_parse_sr},
1164 /* Read the status */
1165 {MIIM_CIS8201_AUX_CONSTAT, miim_read,
1166 &mii_parse_cis8201},
1167 {miim_end,}
1168 },
1169 (struct phy_cmd[]){ /* shutdown */
1170 {miim_end,}
1171 },
wdenk97d80fc2004-06-09 00:34:46 +00001172};
Jon Loeligerdebb7352006-04-26 17:58:56 -05001173struct phy_info phy_info_VSC8244 = {
Jon Loeliger89875e92006-10-10 17:03:43 -05001174 0x3f1b,
1175 "Vitesse VSC8244",
1176 6,
1177 (struct phy_cmd[]){ /* config */
1178 /* Override PHY config settings */
1179 /* Configure some basic stuff */
1180 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1181 {miim_end,}
1182 },
1183 (struct phy_cmd[]){ /* startup */
1184 /* Read the Status (2x to make sure link is right) */
1185 {MIIM_STATUS, miim_read, NULL},
1186 /* Auto-negotiate */
1187 {MIIM_STATUS, miim_read, &mii_parse_sr},
1188 /* Read the status */
1189 {MIIM_VSC8244_AUX_CONSTAT, miim_read,
1190 &mii_parse_vsc8244},
1191 {miim_end,}
1192 },
1193 (struct phy_cmd[]){ /* shutdown */
1194 {miim_end,}
1195 },
Jon Loeligerdebb7352006-04-26 17:58:56 -05001196};
wdenk97d80fc2004-06-09 00:34:46 +00001197
wdenk97d80fc2004-06-09 00:34:46 +00001198struct phy_info phy_info_dm9161 = {
1199 0x0181b88,
1200 "Davicom DM9161E",
1201 4,
Jon Loeliger89875e92006-10-10 17:03:43 -05001202 (struct phy_cmd[]){ /* config */
1203 {MIIM_CONTROL, MIIM_DM9161_CR_STOP, NULL},
1204 /* Do not bypass the scrambler/descrambler */
1205 {MIIM_DM9161_SCR, MIIM_DM9161_SCR_INIT, NULL},
1206 /* Clear 10BTCSR to default */
1207 {MIIM_DM9161_10BTCSR, MIIM_DM9161_10BTCSR_INIT,
1208 NULL},
1209 /* Configure some basic stuff */
1210 {MIIM_CONTROL, MIIM_CR_INIT, NULL},
1211 /* Restart Auto Negotiation */
1212 {MIIM_CONTROL, MIIM_DM9161_CR_RSTAN, NULL},
1213 {miim_end,}
1214 },
1215 (struct phy_cmd[]){ /* startup */
1216 /* Status is read once to clear old link state */
1217 {MIIM_STATUS, miim_read, NULL},
1218 /* Auto-negotiate */
1219 {MIIM_STATUS, miim_read, &mii_parse_sr},
1220 /* Read the status */
1221 {MIIM_DM9161_SCSR, miim_read,
1222 &mii_parse_dm9161_scsr},
1223 {miim_end,}
1224 },
1225 (struct phy_cmd[]){ /* shutdown */
1226 {miim_end,}
1227 },
wdenk97d80fc2004-06-09 00:34:46 +00001228};
David Updegraffaf1c2b82007-04-20 14:34:48 -05001229/* a generic flavor. */
1230struct phy_info phy_info_generic = {
1231 0,
1232 "Unknown/Generic PHY",
1233 32,
1234 (struct phy_cmd[]) { /* config */
1235 {PHY_BMCR, PHY_BMCR_RESET, NULL},
1236 {PHY_BMCR, PHY_BMCR_AUTON|PHY_BMCR_RST_NEG, NULL},
1237 {miim_end,}
1238 },
1239 (struct phy_cmd[]) { /* startup */
1240 {PHY_BMSR, miim_read, NULL},
1241 {PHY_BMSR, miim_read, &mii_parse_sr},
1242 {PHY_BMSR, miim_read, &mii_parse_link},
1243 {miim_end,}
1244 },
1245 (struct phy_cmd[]) { /* shutdown */
1246 {miim_end,}
1247 }
1248};
1249
wdenk97d80fc2004-06-09 00:34:46 +00001250
wdenk3dd7f0f2005-04-04 23:43:44 +00001251uint mii_parse_lxt971_sr2(uint mii_reg, struct tsec_private *priv)
1252{
wdenk3c2b3d42005-04-05 23:32:21 +00001253 unsigned int speed;
1254 if (priv->link) {
1255 speed = mii_reg & MIIM_LXT971_SR2_SPEED_MASK;
wdenk3dd7f0f2005-04-04 23:43:44 +00001256
wdenk3c2b3d42005-04-05 23:32:21 +00001257 switch (speed) {
1258 case MIIM_LXT971_SR2_10HDX:
1259 priv->speed = 10;
1260 priv->duplexity = 0;
1261 break;
1262 case MIIM_LXT971_SR2_10FDX:
1263 priv->speed = 10;
1264 priv->duplexity = 1;
1265 break;
1266 case MIIM_LXT971_SR2_100HDX:
1267 priv->speed = 100;
1268 priv->duplexity = 0;
1269 default:
1270 priv->speed = 100;
1271 priv->duplexity = 1;
1272 break;
1273 }
1274 } else {
1275 priv->speed = 0;
1276 priv->duplexity = 0;
1277 }
wdenk3dd7f0f2005-04-04 23:43:44 +00001278
wdenk3c2b3d42005-04-05 23:32:21 +00001279 return 0;
wdenk3dd7f0f2005-04-04 23:43:44 +00001280}
1281
wdenk9d46ea42005-03-14 23:56:42 +00001282static struct phy_info phy_info_lxt971 = {
1283 0x0001378e,
1284 "LXT971",
1285 4,
Jon Loeliger89875e92006-10-10 17:03:43 -05001286 (struct phy_cmd[]){ /* config */
1287 {MIIM_CR, MIIM_CR_INIT, mii_cr_init}, /* autonegotiate */
1288 {miim_end,}
1289 },
1290 (struct phy_cmd[]){ /* startup - enable interrupts */
1291 /* { 0x12, 0x00f2, NULL }, */
1292 {MIIM_STATUS, miim_read, NULL},
1293 {MIIM_STATUS, miim_read, &mii_parse_sr},
1294 {MIIM_LXT971_SR2, miim_read, &mii_parse_lxt971_sr2},
1295 {miim_end,}
1296 },
1297 (struct phy_cmd[]){ /* shutdown - disable interrupts */
1298 {miim_end,}
1299 },
wdenk9d46ea42005-03-14 23:56:42 +00001300};
1301
Wolfgang Denkbe5048f2006-03-12 22:50:55 +01001302/* Parse the DP83865's link and auto-neg status register for speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -05001303 * information
1304 */
Wolfgang Denkbe5048f2006-03-12 22:50:55 +01001305uint mii_parse_dp83865_lanr(uint mii_reg, struct tsec_private *priv)
1306{
1307 switch (mii_reg & MIIM_DP83865_SPD_MASK) {
1308
1309 case MIIM_DP83865_SPD_1000:
1310 priv->speed = 1000;
1311 break;
1312
1313 case MIIM_DP83865_SPD_100:
1314 priv->speed = 100;
1315 break;
1316
1317 default:
1318 priv->speed = 10;
1319 break;
1320
1321 }
1322
1323 if (mii_reg & MIIM_DP83865_DPX_FULL)
1324 priv->duplexity = 1;
1325 else
1326 priv->duplexity = 0;
1327
1328 return 0;
1329}
1330
1331struct phy_info phy_info_dp83865 = {
1332 0x20005c7,
1333 "NatSemi DP83865",
1334 4,
Jon Loeliger89875e92006-10-10 17:03:43 -05001335 (struct phy_cmd[]){ /* config */
1336 {MIIM_CONTROL, MIIM_DP83865_CR_INIT, NULL},
1337 {miim_end,}
1338 },
1339 (struct phy_cmd[]){ /* startup */
1340 /* Status is read once to clear old link state */
1341 {MIIM_STATUS, miim_read, NULL},
1342 /* Auto-negotiate */
1343 {MIIM_STATUS, miim_read, &mii_parse_sr},
1344 /* Read the link and auto-neg status */
1345 {MIIM_DP83865_LANR, miim_read,
1346 &mii_parse_dp83865_lanr},
1347 {miim_end,}
1348 },
1349 (struct phy_cmd[]){ /* shutdown */
1350 {miim_end,}
1351 },
Wolfgang Denkbe5048f2006-03-12 22:50:55 +01001352};
1353
wdenk97d80fc2004-06-09 00:34:46 +00001354struct phy_info *phy_info[] = {
wdenk97d80fc2004-06-09 00:34:46 +00001355 &phy_info_cis8204,
Timur Tabi2ad6b512006-10-31 18:44:42 -06001356 &phy_info_cis8201,
Paul Gortmaker91e25762007-01-16 11:38:14 -05001357 &phy_info_BCM5461S,
Joe Hammanc3243cf2007-04-30 16:47:28 -05001358 &phy_info_BCM5464S,
wdenk97d80fc2004-06-09 00:34:46 +00001359 &phy_info_M88E1011S,
wdenk9d46ea42005-03-14 23:56:42 +00001360 &phy_info_M88E1111S,
Andy Fleming09f3e092006-09-13 10:34:18 -05001361 &phy_info_M88E1145,
Wolfgang Denk5728be32007-08-06 01:01:49 +02001362 &phy_info_M88E1149S,
wdenk97d80fc2004-06-09 00:34:46 +00001363 &phy_info_dm9161,
wdenk9d46ea42005-03-14 23:56:42 +00001364 &phy_info_lxt971,
Jon Loeligerdebb7352006-04-26 17:58:56 -05001365 &phy_info_VSC8244,
Wolfgang Denkbe5048f2006-03-12 22:50:55 +01001366 &phy_info_dp83865,
David Updegraffaf1c2b82007-04-20 14:34:48 -05001367 &phy_info_generic,
wdenk97d80fc2004-06-09 00:34:46 +00001368 NULL
1369};
1370
wdenk97d80fc2004-06-09 00:34:46 +00001371/* Grab the identifier of the device's PHY, and search through
wdenk9d46ea42005-03-14 23:56:42 +00001372 * all of the known PHYs to see if one matches. If so, return
Jon Loeliger89875e92006-10-10 17:03:43 -05001373 * it, if not, return NULL
1374 */
1375struct phy_info *get_phy_info(struct eth_device *dev)
wdenk97d80fc2004-06-09 00:34:46 +00001376{
1377 struct tsec_private *priv = (struct tsec_private *)dev->priv;
1378 uint phy_reg, phy_ID;
1379 int i;
1380 struct phy_info *theInfo = NULL;
1381
1382 /* Grab the bits from PHYIR1, and put them in the upper half */
1383 phy_reg = read_phy_reg(priv, MIIM_PHYIR1);
1384 phy_ID = (phy_reg & 0xffff) << 16;
1385
1386 /* Grab the bits from PHYIR2, and put them in the lower half */
1387 phy_reg = read_phy_reg(priv, MIIM_PHYIR2);
1388 phy_ID |= (phy_reg & 0xffff);
1389
1390 /* loop through all the known PHY types, and find one that */
1391 /* matches the ID we read from the PHY. */
Jon Loeliger89875e92006-10-10 17:03:43 -05001392 for (i = 0; phy_info[i]; i++) {
Andy Fleming2a3cee42007-05-09 00:54:20 -05001393 if (phy_info[i]->id == (phy_ID >> phy_info[i]->shift)) {
wdenk97d80fc2004-06-09 00:34:46 +00001394 theInfo = phy_info[i];
Andy Fleming2a3cee42007-05-09 00:54:20 -05001395 break;
1396 }
wdenk97d80fc2004-06-09 00:34:46 +00001397 }
1398
Jon Loeliger89875e92006-10-10 17:03:43 -05001399 if (theInfo == NULL) {
wdenk97d80fc2004-06-09 00:34:46 +00001400 printf("%s: PHY id %x is not supported!\n", dev->name, phy_ID);
1401 return NULL;
1402 } else {
Stefan Roese5810dc32005-09-21 18:20:22 +02001403 debug("%s: PHY is %s (%x)\n", dev->name, theInfo->name, phy_ID);
wdenk97d80fc2004-06-09 00:34:46 +00001404 }
1405
1406 return theInfo;
1407}
1408
wdenk97d80fc2004-06-09 00:34:46 +00001409/* Execute the given series of commands on the given device's
Jon Loeliger89875e92006-10-10 17:03:43 -05001410 * PHY, running functions as necessary
1411 */
wdenk97d80fc2004-06-09 00:34:46 +00001412void phy_run_commands(struct tsec_private *priv, struct phy_cmd *cmd)
1413{
1414 int i;
1415 uint result;
1416 volatile tsec_t *phyregs = priv->phyregs;
1417
1418 phyregs->miimcfg = MIIMCFG_RESET;
1419
1420 phyregs->miimcfg = MIIMCFG_INIT_VALUE;
1421
Jon Loeliger89875e92006-10-10 17:03:43 -05001422 while (phyregs->miimind & MIIMIND_BUSY) ;
wdenk97d80fc2004-06-09 00:34:46 +00001423
Jon Loeliger89875e92006-10-10 17:03:43 -05001424 for (i = 0; cmd->mii_reg != miim_end; i++) {
1425 if (cmd->mii_data == miim_read) {
wdenk97d80fc2004-06-09 00:34:46 +00001426 result = read_phy_reg(priv, cmd->mii_reg);
1427
Jon Loeliger89875e92006-10-10 17:03:43 -05001428 if (cmd->funct != NULL)
1429 (*(cmd->funct)) (result, priv);
wdenk97d80fc2004-06-09 00:34:46 +00001430
1431 } else {
Jon Loeliger89875e92006-10-10 17:03:43 -05001432 if (cmd->funct != NULL)
1433 result = (*(cmd->funct)) (cmd->mii_reg, priv);
wdenk97d80fc2004-06-09 00:34:46 +00001434 else
1435 result = cmd->mii_data;
1436
1437 write_phy_reg(priv, cmd->mii_reg, result);
1438
1439 }
1440 cmd++;
1441 }
1442}
1443
wdenk97d80fc2004-06-09 00:34:46 +00001444/* Relocate the function pointers in the phy cmd lists */
1445static void relocate_cmds(void)
1446{
1447 struct phy_cmd **cmdlistptr;
1448 struct phy_cmd *cmd;
Jon Loeliger89875e92006-10-10 17:03:43 -05001449 int i, j, k;
wdenk97d80fc2004-06-09 00:34:46 +00001450
Jon Loeliger89875e92006-10-10 17:03:43 -05001451 for (i = 0; phy_info[i]; i++) {
wdenk97d80fc2004-06-09 00:34:46 +00001452 /* First thing's first: relocate the pointers to the
1453 * PHY command structures (the structs were done) */
Jon Loeliger89875e92006-10-10 17:03:43 -05001454 phy_info[i] = (struct phy_info *)((uint) phy_info[i]
1455 + gd->reloc_off);
wdenk97d80fc2004-06-09 00:34:46 +00001456 phy_info[i]->name += gd->reloc_off;
1457 phy_info[i]->config =
Jon Loeliger89875e92006-10-10 17:03:43 -05001458 (struct phy_cmd *)((uint) phy_info[i]->config
1459 + gd->reloc_off);
wdenk97d80fc2004-06-09 00:34:46 +00001460 phy_info[i]->startup =
Jon Loeliger89875e92006-10-10 17:03:43 -05001461 (struct phy_cmd *)((uint) phy_info[i]->startup
1462 + gd->reloc_off);
wdenk97d80fc2004-06-09 00:34:46 +00001463 phy_info[i]->shutdown =
Jon Loeliger89875e92006-10-10 17:03:43 -05001464 (struct phy_cmd *)((uint) phy_info[i]->shutdown
1465 + gd->reloc_off);
wdenk97d80fc2004-06-09 00:34:46 +00001466
1467 cmdlistptr = &phy_info[i]->config;
Jon Loeliger89875e92006-10-10 17:03:43 -05001468 j = 0;
1469 for (; cmdlistptr <= &phy_info[i]->shutdown; cmdlistptr++) {
1470 k = 0;
1471 for (cmd = *cmdlistptr;
1472 cmd->mii_reg != miim_end;
1473 cmd++) {
wdenk97d80fc2004-06-09 00:34:46 +00001474 /* Only relocate non-NULL pointers */
Jon Loeliger89875e92006-10-10 17:03:43 -05001475 if (cmd->funct)
wdenk97d80fc2004-06-09 00:34:46 +00001476 cmd->funct += gd->reloc_off;
1477
1478 k++;
1479 }
1480 j++;
1481 }
1482 }
1483
1484 relocated = 1;
1485}
1486
Jon Loeligercb51c0b2007-07-09 17:39:42 -05001487#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) \
Marian Balakowicz63ff0042005-10-28 22:30:33 +02001488 && !defined(BITBANGMII)
wdenk97d80fc2004-06-09 00:34:46 +00001489
Jon Loeliger89875e92006-10-10 17:03:43 -05001490struct tsec_private *get_priv_for_phy(unsigned char phyaddr)
wdenk97d80fc2004-06-09 00:34:46 +00001491{
1492 int i;
1493
Jon Loeliger89875e92006-10-10 17:03:43 -05001494 for (i = 0; i < MAXCONTROLLERS; i++) {
1495 if (privlist[i]->phyaddr == phyaddr)
wdenk97d80fc2004-06-09 00:34:46 +00001496 return privlist[i];
1497 }
1498
1499 return NULL;
1500}
1501
wdenk7abf0c52004-04-18 21:45:42 +00001502/*
1503 * Read a MII PHY register.
1504 *
1505 * Returns:
wdenk97d80fc2004-06-09 00:34:46 +00001506 * 0 on success
wdenk7abf0c52004-04-18 21:45:42 +00001507 */
Marian Balakowicz63ff0042005-10-28 22:30:33 +02001508static int tsec_miiphy_read(char *devname, unsigned char addr,
Jon Loeliger89875e92006-10-10 17:03:43 -05001509 unsigned char reg, unsigned short *value)
wdenk7abf0c52004-04-18 21:45:42 +00001510{
wdenk97d80fc2004-06-09 00:34:46 +00001511 unsigned short ret;
1512 struct tsec_private *priv = get_priv_for_phy(addr);
wdenk7abf0c52004-04-18 21:45:42 +00001513
Jon Loeliger89875e92006-10-10 17:03:43 -05001514 if (NULL == priv) {
wdenk97d80fc2004-06-09 00:34:46 +00001515 printf("Can't read PHY at address %d\n", addr);
1516 return -1;
1517 }
1518
1519 ret = (unsigned short)read_phy_reg(priv, reg);
1520 *value = ret;
wdenk7abf0c52004-04-18 21:45:42 +00001521
1522 return 0;
1523}
1524
1525/*
1526 * Write a MII PHY register.
1527 *
1528 * Returns:
wdenk97d80fc2004-06-09 00:34:46 +00001529 * 0 on success
wdenk7abf0c52004-04-18 21:45:42 +00001530 */
Marian Balakowicz63ff0042005-10-28 22:30:33 +02001531static int tsec_miiphy_write(char *devname, unsigned char addr,
Jon Loeliger89875e92006-10-10 17:03:43 -05001532 unsigned char reg, unsigned short value)
wdenk7abf0c52004-04-18 21:45:42 +00001533{
wdenk97d80fc2004-06-09 00:34:46 +00001534 struct tsec_private *priv = get_priv_for_phy(addr);
wdenk7abf0c52004-04-18 21:45:42 +00001535
Jon Loeliger89875e92006-10-10 17:03:43 -05001536 if (NULL == priv) {
wdenk97d80fc2004-06-09 00:34:46 +00001537 printf("Can't write PHY at address %d\n", addr);
1538 return -1;
1539 }
1540
1541 write_phy_reg(priv, reg, value);
wdenk7abf0c52004-04-18 21:45:42 +00001542
1543 return 0;
1544}
wdenk97d80fc2004-06-09 00:34:46 +00001545
Jon Loeligercb51c0b2007-07-09 17:39:42 -05001546#endif
wdenk97d80fc2004-06-09 00:34:46 +00001547
David Updegraff53a5c422007-06-11 10:41:07 -05001548#ifdef CONFIG_MCAST_TFTP
1549
1550/* CREDITS: linux gianfar driver, slightly adjusted... thanx. */
1551
1552/* Set the appropriate hash bit for the given addr */
1553
1554/* The algorithm works like so:
1555 * 1) Take the Destination Address (ie the multicast address), and
1556 * do a CRC on it (little endian), and reverse the bits of the
1557 * result.
1558 * 2) Use the 8 most significant bits as a hash into a 256-entry
1559 * table. The table is controlled through 8 32-bit registers:
1560 * gaddr0-7. gaddr0's MSB is entry 0, and gaddr7's LSB is
1561 * gaddr7. This means that the 3 most significant bits in the
1562 * hash index which gaddr register to use, and the 5 other bits
1563 * indicate which bit (assuming an IBM numbering scheme, which
1564 * for PowerPC (tm) is usually the case) in the tregister holds
1565 * the entry. */
1566static int
1567tsec_mcast_addr (struct eth_device *dev, u8 mcast_mac, u8 set)
1568{
1569 struct tsec_private *priv = privlist[1];
1570 volatile tsec_t *regs = priv->regs;
1571 volatile u32 *reg_array, value;
1572 u8 result, whichbit, whichreg;
1573
1574 result = (u8)((ether_crc(MAC_ADDR_LEN,mcast_mac) >> 24) & 0xff);
1575 whichbit = result & 0x1f; /* the 5 LSB = which bit to set */
1576 whichreg = result >> 5; /* the 3 MSB = which reg to set it in */
1577 value = (1 << (31-whichbit));
1578
1579 reg_array = &(regs->hash.gaddr0);
1580
1581 if (set) {
1582 reg_array[whichreg] |= value;
1583 } else {
1584 reg_array[whichreg] &= ~value;
1585 }
1586 return 0;
1587}
1588#endif /* Multicast TFTP ? */
1589
wdenk42d1f032003-10-15 23:53:47 +00001590#endif /* CONFIG_TSEC_ENET */