blob: 6815c153d81c743954b5eb859334bc869b13d9a8 [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 *
wdenk97d80fc2004-06-09 00:34:46 +00008 * Copyright 2004 Freescale Semiconductor.
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[] = {
Eran Libertyf046ccd2005-07-28 10:08:46 -050068#if defined(CONFIG_MPC85XX_TSEC1) || defined(CONFIG_MPC83XX_TSEC1)
Jon Loeligerd9b94f22005-07-25 14:05:07 -050069 {TSEC1_PHY_ADDR, TSEC_GIGABIT, TSEC1_PHYIDX},
Jon Loeligerdebb7352006-04-26 17:58:56 -050070#elif defined(CONFIG_MPC86XX_TSEC1)
71 {TSEC1_PHY_ADDR, TSEC_GIGABIT | TSEC_REDUCED, TSEC1_PHYIDX},
wdenk9d46ea42005-03-14 23:56:42 +000072#else
Jon Loeliger89875e92006-10-10 17:03:43 -050073 {0, 0, 0},
wdenk97d80fc2004-06-09 00:34:46 +000074#endif
Eran Libertyf046ccd2005-07-28 10:08:46 -050075#if defined(CONFIG_MPC85XX_TSEC2) || defined(CONFIG_MPC83XX_TSEC2)
Jon Loeligerd9b94f22005-07-25 14:05:07 -050076 {TSEC2_PHY_ADDR, TSEC_GIGABIT, TSEC2_PHYIDX},
Jon Loeligerdebb7352006-04-26 17:58:56 -050077#elif defined(CONFIG_MPC86XX_TSEC2)
Jon Loeliger89875e92006-10-10 17:03:43 -050078 {TSEC2_PHY_ADDR, TSEC_GIGABIT | TSEC_REDUCED, TSEC2_PHYIDX},
wdenk9d46ea42005-03-14 23:56:42 +000079#else
Jon Loeliger89875e92006-10-10 17:03:43 -050080 {0, 0, 0},
wdenk97d80fc2004-06-09 00:34:46 +000081#endif
82#ifdef CONFIG_MPC85XX_FEC
83 {FEC_PHY_ADDR, 0, FEC_PHYIDX},
wdenk9d46ea42005-03-14 23:56:42 +000084#else
Jon Loeligerdebb7352006-04-26 17:58:56 -050085#if defined(CONFIG_MPC85XX_TSEC3) || defined(CONFIG_MPC83XX_TSEC3) || defined(CONFIG_MPC86XX_TSEC3)
Jon Loeligerd9b94f22005-07-25 14:05:07 -050086 {TSEC3_PHY_ADDR, TSEC_GIGABIT | TSEC_REDUCED, TSEC3_PHYIDX},
Jon Loeligerdebb7352006-04-26 17:58:56 -050087#else
Jon Loeliger89875e92006-10-10 17:03:43 -050088 {0, 0, 0},
Jon Loeligerdebb7352006-04-26 17:58:56 -050089#endif
Jon Loeliger504b5cd2006-09-19 10:02:20 -050090#if defined(CONFIG_MPC85XX_TSEC4) || defined(CONFIG_MPC83XX_TSEC4) || defined(CONFIG_MPC86XX_TSEC4)
Andy Fleming09f3e092006-09-13 10:34:18 -050091 {TSEC4_PHY_ADDR, TSEC_GIGABIT | TSEC_REDUCED, TSEC4_PHYIDX},
Jon Loeligerdebb7352006-04-26 17:58:56 -050092#else
Jon Loeliger89875e92006-10-10 17:03:43 -050093 {0, 0, 0},
Jon Loeligerdebb7352006-04-26 17:58:56 -050094#endif
wdenk97d80fc2004-06-09 00:34:46 +000095#endif
96};
97
Jon Loeligerd9b94f22005-07-25 14:05:07 -050098#define MAXCONTROLLERS (4)
wdenk97d80fc2004-06-09 00:34:46 +000099
100static int relocated = 0;
101
102static struct tsec_private *privlist[MAXCONTROLLERS];
103
wdenk42d1f032003-10-15 23:53:47 +0000104#ifdef __GNUC__
105static RTXBD rtx __attribute__ ((aligned(8)));
106#else
107#error "rtx must be 64-bit aligned"
108#endif
109
Jon Loeliger89875e92006-10-10 17:03:43 -0500110static int tsec_send(struct eth_device *dev,
111 volatile void *packet, int length);
112static int tsec_recv(struct eth_device *dev);
113static int tsec_init(struct eth_device *dev, bd_t * bd);
114static void tsec_halt(struct eth_device *dev);
115static void init_registers(volatile tsec_t * regs);
wdenk97d80fc2004-06-09 00:34:46 +0000116static void startup_tsec(struct eth_device *dev);
117static int init_phy(struct eth_device *dev);
118void write_phy_reg(struct tsec_private *priv, uint regnum, uint value);
119uint read_phy_reg(struct tsec_private *priv, uint regnum);
Jon Loeliger89875e92006-10-10 17:03:43 -0500120struct phy_info *get_phy_info(struct eth_device *dev);
wdenk97d80fc2004-06-09 00:34:46 +0000121void phy_run_commands(struct tsec_private *priv, struct phy_cmd *cmd);
122static void adjust_link(struct eth_device *dev);
123static void relocate_cmds(void);
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200124static int tsec_miiphy_write(char *devname, unsigned char addr,
Jon Loeliger89875e92006-10-10 17:03:43 -0500125 unsigned char reg, unsigned short value);
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200126static int tsec_miiphy_read(char *devname, unsigned char addr,
Jon Loeliger89875e92006-10-10 17:03:43 -0500127 unsigned char reg, unsigned short *value);
wdenk7abf0c52004-04-18 21:45:42 +0000128
wdenk97d80fc2004-06-09 00:34:46 +0000129/* Initialize device structure. Returns success if PHY
130 * initialization succeeded (i.e. if it recognizes the PHY)
131 */
Jon Loeliger89875e92006-10-10 17:03:43 -0500132int tsec_initialize(bd_t * bis, int index, char *devname)
wdenk42d1f032003-10-15 23:53:47 +0000133{
Jon Loeliger89875e92006-10-10 17:03:43 -0500134 struct eth_device *dev;
wdenk42d1f032003-10-15 23:53:47 +0000135 int i;
wdenk97d80fc2004-06-09 00:34:46 +0000136 struct tsec_private *priv;
wdenk42d1f032003-10-15 23:53:47 +0000137
Jon Loeliger89875e92006-10-10 17:03:43 -0500138 dev = (struct eth_device *)malloc(sizeof *dev);
wdenk42d1f032003-10-15 23:53:47 +0000139
Jon Loeliger89875e92006-10-10 17:03:43 -0500140 if (NULL == dev)
wdenk42d1f032003-10-15 23:53:47 +0000141 return 0;
142
143 memset(dev, 0, sizeof *dev);
144
Jon Loeliger89875e92006-10-10 17:03:43 -0500145 priv = (struct tsec_private *)malloc(sizeof(*priv));
wdenk97d80fc2004-06-09 00:34:46 +0000146
Jon Loeliger89875e92006-10-10 17:03:43 -0500147 if (NULL == priv)
wdenk97d80fc2004-06-09 00:34:46 +0000148 return 0;
149
150 privlist[index] = priv;
Jon Loeliger89875e92006-10-10 17:03:43 -0500151 priv->regs = (volatile tsec_t *)(TSEC_BASE_ADDR + index * TSEC_SIZE);
wdenk97d80fc2004-06-09 00:34:46 +0000152 priv->phyregs = (volatile tsec_t *)(TSEC_BASE_ADDR +
Jon Loeliger89875e92006-10-10 17:03:43 -0500153 tsec_info[index].phyregidx *
154 TSEC_SIZE);
wdenk97d80fc2004-06-09 00:34:46 +0000155
156 priv->phyaddr = tsec_info[index].phyaddr;
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500157 priv->flags = tsec_info[index].flags;
wdenk97d80fc2004-06-09 00:34:46 +0000158
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500159 sprintf(dev->name, devname);
wdenk42d1f032003-10-15 23:53:47 +0000160 dev->iobase = 0;
Jon Loeliger89875e92006-10-10 17:03:43 -0500161 dev->priv = priv;
162 dev->init = tsec_init;
163 dev->halt = tsec_halt;
164 dev->send = tsec_send;
165 dev->recv = tsec_recv;
wdenk42d1f032003-10-15 23:53:47 +0000166
167 /* Tell u-boot to get the addr from the env */
Jon Loeliger89875e92006-10-10 17:03:43 -0500168 for (i = 0; i < 6; i++)
wdenk42d1f032003-10-15 23:53:47 +0000169 dev->enetaddr[i] = 0;
170
171 eth_register(dev);
172
wdenk97d80fc2004-06-09 00:34:46 +0000173 /* Reset the MAC */
174 priv->regs->maccfg1 |= MACCFG1_SOFT_RESET;
175 priv->regs->maccfg1 &= ~(MACCFG1_SOFT_RESET);
wdenk7abf0c52004-04-18 21:45:42 +0000176
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200177#if defined(CONFIG_MII) || (CONFIG_COMMANDS & CFG_CMD_MII) \
178 && !defined(BITBANGMII)
179 miiphy_register(dev->name, tsec_miiphy_read, tsec_miiphy_write);
180#endif
181
wdenk97d80fc2004-06-09 00:34:46 +0000182 /* Try to initialize PHY here, and return */
183 return init_phy(dev);
wdenk42d1f032003-10-15 23:53:47 +0000184}
185
wdenk42d1f032003-10-15 23:53:47 +0000186/* Initializes data structures and registers for the controller,
wdenk9d46ea42005-03-14 23:56:42 +0000187 * and brings the interface up. Returns the link status, meaning
wdenk97d80fc2004-06-09 00:34:46 +0000188 * that it returns success if the link is up, failure otherwise.
Jon Loeliger89875e92006-10-10 17:03:43 -0500189 * This allows u-boot to find the first active controller.
190 */
191int tsec_init(struct eth_device *dev, bd_t * bd)
wdenk42d1f032003-10-15 23:53:47 +0000192{
wdenk42d1f032003-10-15 23:53:47 +0000193 uint tempval;
194 char tmpbuf[MAC_ADDR_LEN];
195 int i;
wdenk97d80fc2004-06-09 00:34:46 +0000196 struct tsec_private *priv = (struct tsec_private *)dev->priv;
197 volatile tsec_t *regs = priv->regs;
wdenk42d1f032003-10-15 23:53:47 +0000198
199 /* Make sure the controller is stopped */
200 tsec_halt(dev);
201
wdenk97d80fc2004-06-09 00:34:46 +0000202 /* Init MACCFG2. Defaults to GMII */
wdenk42d1f032003-10-15 23:53:47 +0000203 regs->maccfg2 = MACCFG2_INIT_SETTINGS;
204
205 /* Init ECNTRL */
206 regs->ecntrl = ECNTRL_INIT_SETTINGS;
207
208 /* Copy the station address into the address registers.
209 * Backwards, because little endian MACS are dumb */
Jon Loeliger89875e92006-10-10 17:03:43 -0500210 for (i = 0; i < MAC_ADDR_LEN; i++) {
wdenk97d80fc2004-06-09 00:34:46 +0000211 tmpbuf[MAC_ADDR_LEN - 1 - i] = dev->enetaddr[i];
wdenk42d1f032003-10-15 23:53:47 +0000212 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500213 regs->macstnaddr1 = *((uint *) (tmpbuf));
wdenk42d1f032003-10-15 23:53:47 +0000214
Jon Loeliger89875e92006-10-10 17:03:43 -0500215 tempval = *((uint *) (tmpbuf + 4));
wdenk42d1f032003-10-15 23:53:47 +0000216
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200217 regs->macstnaddr2 = tempval;
wdenk42d1f032003-10-15 23:53:47 +0000218
wdenk42d1f032003-10-15 23:53:47 +0000219 /* reset the indices to zero */
220 rxIdx = 0;
221 txIdx = 0;
222
223 /* Clear out (for the most part) the other registers */
224 init_registers(regs);
225
226 /* Ready the device for tx/rx */
wdenk97d80fc2004-06-09 00:34:46 +0000227 startup_tsec(dev);
wdenk42d1f032003-10-15 23:53:47 +0000228
wdenk97d80fc2004-06-09 00:34:46 +0000229 /* If there's no link, fail */
230 return priv->link;
wdenk42d1f032003-10-15 23:53:47 +0000231
232}
233
wdenk97d80fc2004-06-09 00:34:46 +0000234/* Write value to the device's PHY through the registers
235 * specified in priv, modifying the register specified in regnum.
236 * It will wait for the write to be done (or for a timeout to
237 * expire) before exiting
238 */
239void write_phy_reg(struct tsec_private *priv, uint regnum, uint value)
240{
241 volatile tsec_t *regbase = priv->phyregs;
242 uint phyid = priv->phyaddr;
Jon Loeliger89875e92006-10-10 17:03:43 -0500243 int timeout = 1000000;
wdenk97d80fc2004-06-09 00:34:46 +0000244
245 regbase->miimadd = (phyid << 8) | regnum;
246 regbase->miimcon = value;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500247 asm("sync");
wdenk97d80fc2004-06-09 00:34:46 +0000248
Jon Loeliger89875e92006-10-10 17:03:43 -0500249 timeout = 1000000;
250 while ((regbase->miimind & MIIMIND_BUSY) && timeout--) ;
wdenk97d80fc2004-06-09 00:34:46 +0000251}
252
wdenk97d80fc2004-06-09 00:34:46 +0000253/* Reads register regnum on the device's PHY through the
wdenk9d46ea42005-03-14 23:56:42 +0000254 * registers specified in priv. It lowers and raises the read
wdenk97d80fc2004-06-09 00:34:46 +0000255 * command, and waits for the data to become valid (miimind
256 * notvalid bit cleared), and the bus to cease activity (miimind
257 * busy bit cleared), and then returns the value
258 */
259uint read_phy_reg(struct tsec_private *priv, uint regnum)
wdenk42d1f032003-10-15 23:53:47 +0000260{
261 uint value;
wdenk97d80fc2004-06-09 00:34:46 +0000262 volatile tsec_t *regbase = priv->phyregs;
263 uint phyid = priv->phyaddr;
wdenk42d1f032003-10-15 23:53:47 +0000264
wdenk97d80fc2004-06-09 00:34:46 +0000265 /* Put the address of the phy, and the register
266 * number into MIIMADD */
267 regbase->miimadd = (phyid << 8) | regnum;
wdenk42d1f032003-10-15 23:53:47 +0000268
269 /* Clear the command register, and wait */
270 regbase->miimcom = 0;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500271 asm("sync");
wdenk42d1f032003-10-15 23:53:47 +0000272
273 /* Initiate a read command, and wait */
274 regbase->miimcom = MIIM_READ_COMMAND;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500275 asm("sync");
wdenk42d1f032003-10-15 23:53:47 +0000276
277 /* Wait for the the indication that the read is done */
Jon Loeliger89875e92006-10-10 17:03:43 -0500278 while ((regbase->miimind & (MIIMIND_NOTVALID | MIIMIND_BUSY))) ;
wdenk42d1f032003-10-15 23:53:47 +0000279
280 /* Grab the value read from the PHY */
281 value = regbase->miimstat;
282
283 return value;
284}
285
wdenk97d80fc2004-06-09 00:34:46 +0000286/* Discover which PHY is attached to the device, and configure it
287 * properly. If the PHY is not recognized, then return 0
288 * (failure). Otherwise, return 1
289 */
290static int init_phy(struct eth_device *dev)
wdenk42d1f032003-10-15 23:53:47 +0000291{
wdenk97d80fc2004-06-09 00:34:46 +0000292 struct tsec_private *priv = (struct tsec_private *)dev->priv;
293 struct phy_info *curphy;
Jon Loeliger89875e92006-10-10 17:03:43 -0500294 volatile tsec_t *regs = (volatile tsec_t *)(TSEC_BASE_ADDR);
wdenk42d1f032003-10-15 23:53:47 +0000295
296 /* Assign a Physical address to the TBI */
Jon Loeliger89875e92006-10-10 17:03:43 -0500297 regs->tbipa = TBIPA_VALUE;
298 regs = (volatile tsec_t *)(TSEC_BASE_ADDR + TSEC_SIZE);
299 regs->tbipa = TBIPA_VALUE;
300 asm("sync");
wdenk3dd7f0f2005-04-04 23:43:44 +0000301
302 /* Reset MII (due to new addresses) */
303 priv->phyregs->miimcfg = MIIMCFG_RESET;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500304 asm("sync");
wdenk3dd7f0f2005-04-04 23:43:44 +0000305 priv->phyregs->miimcfg = MIIMCFG_INIT_VALUE;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500306 asm("sync");
Jon Loeliger89875e92006-10-10 17:03:43 -0500307 while (priv->phyregs->miimind & MIIMIND_BUSY) ;
wdenk42d1f032003-10-15 23:53:47 +0000308
Jon Loeliger89875e92006-10-10 17:03:43 -0500309 if (0 == relocated)
wdenk97d80fc2004-06-09 00:34:46 +0000310 relocate_cmds();
wdenk42d1f032003-10-15 23:53:47 +0000311
wdenk97d80fc2004-06-09 00:34:46 +0000312 /* Get the cmd structure corresponding to the attached
313 * PHY */
314 curphy = get_phy_info(dev);
wdenk42d1f032003-10-15 23:53:47 +0000315
Ben Warren4653f912006-10-26 14:38:25 -0400316 if (curphy == NULL) {
317 priv->phyinfo = NULL;
wdenk97d80fc2004-06-09 00:34:46 +0000318 printf("%s: No PHY found\n", dev->name);
wdenk42d1f032003-10-15 23:53:47 +0000319
wdenk97d80fc2004-06-09 00:34:46 +0000320 return 0;
wdenk42d1f032003-10-15 23:53:47 +0000321 }
322
wdenk97d80fc2004-06-09 00:34:46 +0000323 priv->phyinfo = curphy;
wdenk42d1f032003-10-15 23:53:47 +0000324
wdenk97d80fc2004-06-09 00:34:46 +0000325 phy_run_commands(priv, priv->phyinfo->config);
wdenk42d1f032003-10-15 23:53:47 +0000326
wdenk97d80fc2004-06-09 00:34:46 +0000327 return 1;
wdenk42d1f032003-10-15 23:53:47 +0000328}
329
Jon Loeliger89875e92006-10-10 17:03:43 -0500330/*
331 * Returns which value to write to the control register.
332 * For 10/100, the value is slightly different
333 */
334uint mii_cr_init(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000335{
Jon Loeliger89875e92006-10-10 17:03:43 -0500336 if (priv->flags & TSEC_GIGABIT)
wdenk97d80fc2004-06-09 00:34:46 +0000337 return MIIM_CONTROL_INIT;
338 else
339 return MIIM_CR_INIT;
340}
341
wdenk97d80fc2004-06-09 00:34:46 +0000342/* Parse the status register for link, and then do
Jon Loeliger89875e92006-10-10 17:03:43 -0500343 * auto-negotiation
344 */
345uint mii_parse_sr(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000346{
Stefan Roese5810dc32005-09-21 18:20:22 +0200347 /*
Jon Loeliger89875e92006-10-10 17:03:43 -0500348 * Wait if PHY is capable of autonegotiation and autonegotiation
349 * is not complete.
Stefan Roese5810dc32005-09-21 18:20:22 +0200350 */
351 mii_reg = read_phy_reg(priv, MIIM_STATUS);
Jon Loeliger89875e92006-10-10 17:03:43 -0500352 if ((mii_reg & PHY_BMSR_AUTN_ABLE)
353 && !(mii_reg & PHY_BMSR_AUTN_COMP)) {
Stefan Roese5810dc32005-09-21 18:20:22 +0200354 int i = 0;
wdenk97d80fc2004-06-09 00:34:46 +0000355
Jon Loeliger89875e92006-10-10 17:03:43 -0500356 puts("Waiting for PHY auto negotiation to complete");
357 while (!((mii_reg & PHY_BMSR_AUTN_COMP)
358 && (mii_reg & MIIM_STATUS_LINK))) {
Stefan Roese5810dc32005-09-21 18:20:22 +0200359 /*
360 * Timeout reached ?
361 */
362 if (i > PHY_AUTONEGOTIATE_TIMEOUT) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500363 puts(" TIMEOUT !\n");
Stefan Roese5810dc32005-09-21 18:20:22 +0200364 priv->link = 0;
Jin Zhengxiong-R64188fcfb9a52006-06-27 18:12:23 +0800365 return 0;
Stefan Roese5810dc32005-09-21 18:20:22 +0200366 }
wdenk97d80fc2004-06-09 00:34:46 +0000367
Stefan Roese5810dc32005-09-21 18:20:22 +0200368 if ((i++ % 1000) == 0) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500369 putc('.');
Stefan Roese5810dc32005-09-21 18:20:22 +0200370 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500371 udelay(1000); /* 1 ms */
wdenk97d80fc2004-06-09 00:34:46 +0000372 mii_reg = read_phy_reg(priv, MIIM_STATUS);
Stefan Roese5810dc32005-09-21 18:20:22 +0200373 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500374 puts(" done\n");
Stefan Roese5810dc32005-09-21 18:20:22 +0200375 priv->link = 1;
Jon Loeliger89875e92006-10-10 17:03:43 -0500376 udelay(500000); /* another 500 ms (results in faster booting) */
Stefan Roese5810dc32005-09-21 18:20:22 +0200377 } else {
378 priv->link = 1;
wdenk97d80fc2004-06-09 00:34:46 +0000379 }
380
381 return 0;
382}
383
wdenk97d80fc2004-06-09 00:34:46 +0000384/* Parse the 88E1011's status register for speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -0500385 * information
386 */
387uint mii_parse_88E1011_psr(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000388{
389 uint speed;
390
Stefan Roese5810dc32005-09-21 18:20:22 +0200391 mii_reg = read_phy_reg(priv, MIIM_88E1011_PHY_STATUS);
392
393 if (!((mii_reg & MIIM_88E1011_PHYSTAT_SPDDONE) &&
394 (mii_reg & MIIM_88E1011_PHYSTAT_LINK))) {
395 int i = 0;
396
Jon Loeliger89875e92006-10-10 17:03:43 -0500397 puts("Waiting for PHY realtime link");
Stefan Roese5810dc32005-09-21 18:20:22 +0200398 while (!((mii_reg & MIIM_88E1011_PHYSTAT_SPDDONE) &&
399 (mii_reg & MIIM_88E1011_PHYSTAT_LINK))) {
400 /*
401 * Timeout reached ?
402 */
403 if (i > PHY_AUTONEGOTIATE_TIMEOUT) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500404 puts(" TIMEOUT !\n");
Stefan Roese5810dc32005-09-21 18:20:22 +0200405 priv->link = 0;
406 break;
407 }
408
409 if ((i++ % 1000) == 0) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500410 putc('.');
Stefan Roese5810dc32005-09-21 18:20:22 +0200411 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500412 udelay(1000); /* 1 ms */
Stefan Roese5810dc32005-09-21 18:20:22 +0200413 mii_reg = read_phy_reg(priv, MIIM_88E1011_PHY_STATUS);
414 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500415 puts(" done\n");
416 udelay(500000); /* another 500 ms (results in faster booting) */
Stefan Roese5810dc32005-09-21 18:20:22 +0200417 }
418
Jon Loeliger89875e92006-10-10 17:03:43 -0500419 if (mii_reg & MIIM_88E1011_PHYSTAT_DUPLEX)
wdenk97d80fc2004-06-09 00:34:46 +0000420 priv->duplexity = 1;
421 else
422 priv->duplexity = 0;
423
Jon Loeliger89875e92006-10-10 17:03:43 -0500424 speed = (mii_reg & MIIM_88E1011_PHYSTAT_SPEED);
wdenk97d80fc2004-06-09 00:34:46 +0000425
Jon Loeliger89875e92006-10-10 17:03:43 -0500426 switch (speed) {
427 case MIIM_88E1011_PHYSTAT_GBIT:
428 priv->speed = 1000;
429 break;
430 case MIIM_88E1011_PHYSTAT_100:
431 priv->speed = 100;
432 break;
433 default:
434 priv->speed = 10;
wdenk97d80fc2004-06-09 00:34:46 +0000435 }
436
437 return 0;
438}
439
wdenk97d80fc2004-06-09 00:34:46 +0000440/* Parse the cis8201's status register for speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -0500441 * information
442 */
443uint mii_parse_cis8201(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000444{
445 uint speed;
446
Jon Loeliger89875e92006-10-10 17:03:43 -0500447 if (mii_reg & MIIM_CIS8201_AUXCONSTAT_DUPLEX)
wdenk97d80fc2004-06-09 00:34:46 +0000448 priv->duplexity = 1;
449 else
450 priv->duplexity = 0;
451
452 speed = mii_reg & MIIM_CIS8201_AUXCONSTAT_SPEED;
Jon Loeliger89875e92006-10-10 17:03:43 -0500453 switch (speed) {
454 case MIIM_CIS8201_AUXCONSTAT_GBIT:
455 priv->speed = 1000;
456 break;
457 case MIIM_CIS8201_AUXCONSTAT_100:
458 priv->speed = 100;
459 break;
460 default:
461 priv->speed = 10;
462 break;
wdenk97d80fc2004-06-09 00:34:46 +0000463 }
464
465 return 0;
466}
Jon Loeliger89875e92006-10-10 17:03:43 -0500467
Jon Loeligerdebb7352006-04-26 17:58:56 -0500468/* Parse the vsc8244's status register for speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -0500469 * information
470 */
471uint mii_parse_vsc8244(uint mii_reg, struct tsec_private * priv)
Jon Loeligerdebb7352006-04-26 17:58:56 -0500472{
Jon Loeliger89875e92006-10-10 17:03:43 -0500473 uint speed;
474
475 if (mii_reg & MIIM_VSC8244_AUXCONSTAT_DUPLEX)
476 priv->duplexity = 1;
477 else
478 priv->duplexity = 0;
479
480 speed = mii_reg & MIIM_VSC8244_AUXCONSTAT_SPEED;
481 switch (speed) {
482 case MIIM_VSC8244_AUXCONSTAT_GBIT:
483 priv->speed = 1000;
484 break;
485 case MIIM_VSC8244_AUXCONSTAT_100:
486 priv->speed = 100;
487 break;
488 default:
489 priv->speed = 10;
490 break;
491 }
492
493 return 0;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500494}
wdenk97d80fc2004-06-09 00:34:46 +0000495
wdenk97d80fc2004-06-09 00:34:46 +0000496/* Parse the DM9161's status register for speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -0500497 * information
498 */
499uint mii_parse_dm9161_scsr(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000500{
Jon Loeliger89875e92006-10-10 17:03:43 -0500501 if (mii_reg & (MIIM_DM9161_SCSR_100F | MIIM_DM9161_SCSR_100H))
wdenk97d80fc2004-06-09 00:34:46 +0000502 priv->speed = 100;
503 else
504 priv->speed = 10;
505
Jon Loeliger89875e92006-10-10 17:03:43 -0500506 if (mii_reg & (MIIM_DM9161_SCSR_100F | MIIM_DM9161_SCSR_10F))
wdenk97d80fc2004-06-09 00:34:46 +0000507 priv->duplexity = 1;
508 else
509 priv->duplexity = 0;
510
511 return 0;
512}
513
Jon Loeliger89875e92006-10-10 17:03:43 -0500514/*
515 * Hack to write all 4 PHYs with the LED values
516 */
517uint mii_cis8204_fixled(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000518{
519 uint phyid;
520 volatile tsec_t *regbase = priv->phyregs;
Jon Loeliger89875e92006-10-10 17:03:43 -0500521 int timeout = 1000000;
wdenk97d80fc2004-06-09 00:34:46 +0000522
Jon Loeliger89875e92006-10-10 17:03:43 -0500523 for (phyid = 0; phyid < 4; phyid++) {
wdenk97d80fc2004-06-09 00:34:46 +0000524 regbase->miimadd = (phyid << 8) | mii_reg;
525 regbase->miimcon = MIIM_CIS8204_SLEDCON_INIT;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500526 asm("sync");
wdenk97d80fc2004-06-09 00:34:46 +0000527
Jon Loeliger89875e92006-10-10 17:03:43 -0500528 timeout = 1000000;
529 while ((regbase->miimind & MIIMIND_BUSY) && timeout--) ;
wdenk97d80fc2004-06-09 00:34:46 +0000530 }
531
532 return MIIM_CIS8204_SLEDCON_INIT;
533}
534
Jon Loeliger89875e92006-10-10 17:03:43 -0500535uint mii_cis8204_setmode(uint mii_reg, struct tsec_private * priv)
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500536{
537 if (priv->flags & TSEC_REDUCED)
538 return MIIM_CIS8204_EPHYCON_INIT | MIIM_CIS8204_EPHYCON_RGMII;
539 else
540 return MIIM_CIS8204_EPHYCON_INIT;
541}
wdenk97d80fc2004-06-09 00:34:46 +0000542
543/* Initialized required registers to appropriate values, zeroing
544 * those we don't care about (unless zero is bad, in which case,
Jon Loeliger89875e92006-10-10 17:03:43 -0500545 * choose a more appropriate value)
546 */
547static void init_registers(volatile tsec_t * regs)
wdenk42d1f032003-10-15 23:53:47 +0000548{
549 /* Clear IEVENT */
550 regs->ievent = IEVENT_INIT_CLEAR;
551
552 regs->imask = IMASK_INIT_CLEAR;
553
554 regs->hash.iaddr0 = 0;
555 regs->hash.iaddr1 = 0;
556 regs->hash.iaddr2 = 0;
557 regs->hash.iaddr3 = 0;
558 regs->hash.iaddr4 = 0;
559 regs->hash.iaddr5 = 0;
560 regs->hash.iaddr6 = 0;
561 regs->hash.iaddr7 = 0;
562
563 regs->hash.gaddr0 = 0;
564 regs->hash.gaddr1 = 0;
565 regs->hash.gaddr2 = 0;
566 regs->hash.gaddr3 = 0;
567 regs->hash.gaddr4 = 0;
568 regs->hash.gaddr5 = 0;
569 regs->hash.gaddr6 = 0;
570 regs->hash.gaddr7 = 0;
571
572 regs->rctrl = 0x00000000;
573
574 /* Init RMON mib registers */
575 memset((void *)&(regs->rmon), 0, sizeof(rmon_mib_t));
576
577 regs->rmon.cam1 = 0xffffffff;
578 regs->rmon.cam2 = 0xffffffff;
579
580 regs->mrblr = MRBLR_INIT_SETTINGS;
581
582 regs->minflr = MINFLR_INIT_SETTINGS;
583
584 regs->attr = ATTR_INIT_SETTINGS;
585 regs->attreli = ATTRELI_INIT_SETTINGS;
586
587}
588
wdenk97d80fc2004-06-09 00:34:46 +0000589/* Configure maccfg2 based on negotiated speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -0500590 * reported by PHY handling code
591 */
wdenk97d80fc2004-06-09 00:34:46 +0000592static void adjust_link(struct eth_device *dev)
593{
594 struct tsec_private *priv = (struct tsec_private *)dev->priv;
595 volatile tsec_t *regs = priv->regs;
596
Jon Loeliger89875e92006-10-10 17:03:43 -0500597 if (priv->link) {
598 if (priv->duplexity != 0)
wdenk97d80fc2004-06-09 00:34:46 +0000599 regs->maccfg2 |= MACCFG2_FULL_DUPLEX;
600 else
601 regs->maccfg2 &= ~(MACCFG2_FULL_DUPLEX);
602
Jon Loeliger89875e92006-10-10 17:03:43 -0500603 switch (priv->speed) {
604 case 1000:
605 regs->maccfg2 = ((regs->maccfg2 & ~(MACCFG2_IF))
606 | MACCFG2_GMII);
607 break;
608 case 100:
609 case 10:
610 regs->maccfg2 = ((regs->maccfg2 & ~(MACCFG2_IF))
611 | MACCFG2_MII);
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500612
Nick Spencef484dc72006-09-07 07:39:46 -0700613 /* Set R100 bit in all modes although
614 * it is only used in RGMII mode
Jon Loeliger89875e92006-10-10 17:03:43 -0500615 */
Nick Spencef484dc72006-09-07 07:39:46 -0700616 if (priv->speed == 100)
Jon Loeliger89875e92006-10-10 17:03:43 -0500617 regs->ecntrl |= ECNTRL_R100;
618 else
619 regs->ecntrl &= ~(ECNTRL_R100);
620 break;
621 default:
622 printf("%s: Speed was bad\n", dev->name);
623 break;
wdenk97d80fc2004-06-09 00:34:46 +0000624 }
625
626 printf("Speed: %d, %s duplex\n", priv->speed,
Jon Loeliger89875e92006-10-10 17:03:43 -0500627 (priv->duplexity) ? "full" : "half");
wdenk97d80fc2004-06-09 00:34:46 +0000628
629 } else {
630 printf("%s: No link.\n", dev->name);
631 }
632}
633
wdenk97d80fc2004-06-09 00:34:46 +0000634/* Set up the buffers and their descriptors, and bring up the
Jon Loeliger89875e92006-10-10 17:03:43 -0500635 * interface
636 */
wdenk97d80fc2004-06-09 00:34:46 +0000637static void startup_tsec(struct eth_device *dev)
wdenk42d1f032003-10-15 23:53:47 +0000638{
639 int i;
wdenk97d80fc2004-06-09 00:34:46 +0000640 struct tsec_private *priv = (struct tsec_private *)dev->priv;
641 volatile tsec_t *regs = priv->regs;
wdenk42d1f032003-10-15 23:53:47 +0000642
643 /* Point to the buffer descriptors */
644 regs->tbase = (unsigned int)(&rtx.txbd[txIdx]);
645 regs->rbase = (unsigned int)(&rtx.rxbd[rxIdx]);
646
647 /* Initialize the Rx Buffer descriptors */
648 for (i = 0; i < PKTBUFSRX; i++) {
649 rtx.rxbd[i].status = RXBD_EMPTY;
650 rtx.rxbd[i].length = 0;
Jon Loeliger89875e92006-10-10 17:03:43 -0500651 rtx.rxbd[i].bufPtr = (uint) NetRxPackets[i];
wdenk42d1f032003-10-15 23:53:47 +0000652 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500653 rtx.rxbd[PKTBUFSRX - 1].status |= RXBD_WRAP;
wdenk42d1f032003-10-15 23:53:47 +0000654
655 /* Initialize the TX Buffer Descriptors */
Jon Loeliger89875e92006-10-10 17:03:43 -0500656 for (i = 0; i < TX_BUF_CNT; i++) {
wdenk42d1f032003-10-15 23:53:47 +0000657 rtx.txbd[i].status = 0;
658 rtx.txbd[i].length = 0;
659 rtx.txbd[i].bufPtr = 0;
660 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500661 rtx.txbd[TX_BUF_CNT - 1].status |= TXBD_WRAP;
wdenk42d1f032003-10-15 23:53:47 +0000662
wdenk97d80fc2004-06-09 00:34:46 +0000663 /* Start up the PHY */
Ben Warren4653f912006-10-26 14:38:25 -0400664 if(priv->phyinfo)
665 phy_run_commands(priv, priv->phyinfo->startup);
wdenk97d80fc2004-06-09 00:34:46 +0000666 adjust_link(dev);
667
wdenk42d1f032003-10-15 23:53:47 +0000668 /* Enable Transmit and Receive */
669 regs->maccfg1 |= (MACCFG1_RX_EN | MACCFG1_TX_EN);
670
671 /* Tell the DMA it is clear to go */
672 regs->dmactrl |= DMACTRL_INIT_SETTINGS;
673 regs->tstat = TSTAT_CLEAR_THALT;
674 regs->dmactrl &= ~(DMACTRL_GRS | DMACTRL_GTS);
675}
676
wdenk9d46ea42005-03-14 23:56:42 +0000677/* This returns the status bits of the device. The return value
wdenk42d1f032003-10-15 23:53:47 +0000678 * is never checked, and this is what the 8260 driver did, so we
wdenk9d46ea42005-03-14 23:56:42 +0000679 * do the same. Presumably, this would be zero if there were no
Jon Loeliger89875e92006-10-10 17:03:43 -0500680 * errors
681 */
682static int tsec_send(struct eth_device *dev, volatile void *packet, int length)
wdenk42d1f032003-10-15 23:53:47 +0000683{
684 int i;
685 int result = 0;
wdenk97d80fc2004-06-09 00:34:46 +0000686 struct tsec_private *priv = (struct tsec_private *)dev->priv;
687 volatile tsec_t *regs = priv->regs;
wdenk42d1f032003-10-15 23:53:47 +0000688
689 /* Find an empty buffer descriptor */
Jon Loeliger89875e92006-10-10 17:03:43 -0500690 for (i = 0; rtx.txbd[txIdx].status & TXBD_READY; i++) {
wdenk42d1f032003-10-15 23:53:47 +0000691 if (i >= TOUT_LOOP) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500692 debug("%s: tsec: tx buffers full\n", dev->name);
wdenk42d1f032003-10-15 23:53:47 +0000693 return result;
694 }
695 }
696
Jon Loeliger89875e92006-10-10 17:03:43 -0500697 rtx.txbd[txIdx].bufPtr = (uint) packet;
wdenk42d1f032003-10-15 23:53:47 +0000698 rtx.txbd[txIdx].length = length;
Jon Loeliger89875e92006-10-10 17:03:43 -0500699 rtx.txbd[txIdx].status |=
700 (TXBD_READY | TXBD_LAST | TXBD_CRC | TXBD_INTERRUPT);
wdenk42d1f032003-10-15 23:53:47 +0000701
702 /* Tell the DMA to go */
703 regs->tstat = TSTAT_CLEAR_THALT;
704
705 /* Wait for buffer to be transmitted */
Jon Loeliger89875e92006-10-10 17:03:43 -0500706 for (i = 0; rtx.txbd[txIdx].status & TXBD_READY; i++) {
wdenk42d1f032003-10-15 23:53:47 +0000707 if (i >= TOUT_LOOP) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500708 debug("%s: tsec: tx error\n", dev->name);
wdenk42d1f032003-10-15 23:53:47 +0000709 return result;
710 }
711 }
712
713 txIdx = (txIdx + 1) % TX_BUF_CNT;
714 result = rtx.txbd[txIdx].status & TXBD_STATS;
715
716 return result;
717}
718
Jon Loeliger89875e92006-10-10 17:03:43 -0500719static int tsec_recv(struct eth_device *dev)
wdenk42d1f032003-10-15 23:53:47 +0000720{
721 int length;
wdenk97d80fc2004-06-09 00:34:46 +0000722 struct tsec_private *priv = (struct tsec_private *)dev->priv;
723 volatile tsec_t *regs = priv->regs;
wdenk42d1f032003-10-15 23:53:47 +0000724
Jon Loeliger89875e92006-10-10 17:03:43 -0500725 while (!(rtx.rxbd[rxIdx].status & RXBD_EMPTY)) {
wdenk42d1f032003-10-15 23:53:47 +0000726
727 length = rtx.rxbd[rxIdx].length;
728
729 /* Send the packet up if there were no errors */
730 if (!(rtx.rxbd[rxIdx].status & RXBD_STATS)) {
731 NetReceive(NetRxPackets[rxIdx], length - 4);
wdenk97d80fc2004-06-09 00:34:46 +0000732 } else {
733 printf("Got error %x\n",
Jon Loeliger89875e92006-10-10 17:03:43 -0500734 (rtx.rxbd[rxIdx].status & RXBD_STATS));
wdenk42d1f032003-10-15 23:53:47 +0000735 }
736
737 rtx.rxbd[rxIdx].length = 0;
738
739 /* Set the wrap bit if this is the last element in the list */
Jon Loeliger89875e92006-10-10 17:03:43 -0500740 rtx.rxbd[rxIdx].status =
741 RXBD_EMPTY | (((rxIdx + 1) == PKTBUFSRX) ? RXBD_WRAP : 0);
wdenk42d1f032003-10-15 23:53:47 +0000742
743 rxIdx = (rxIdx + 1) % PKTBUFSRX;
744 }
745
Jon Loeliger89875e92006-10-10 17:03:43 -0500746 if (regs->ievent & IEVENT_BSY) {
wdenk42d1f032003-10-15 23:53:47 +0000747 regs->ievent = IEVENT_BSY;
748 regs->rstat = RSTAT_CLEAR_RHALT;
749 }
750
751 return -1;
752
753}
754
wdenk97d80fc2004-06-09 00:34:46 +0000755/* Stop the interface */
Jon Loeliger89875e92006-10-10 17:03:43 -0500756static void tsec_halt(struct eth_device *dev)
wdenk42d1f032003-10-15 23:53:47 +0000757{
wdenk97d80fc2004-06-09 00:34:46 +0000758 struct tsec_private *priv = (struct tsec_private *)dev->priv;
759 volatile tsec_t *regs = priv->regs;
wdenk42d1f032003-10-15 23:53:47 +0000760
761 regs->dmactrl &= ~(DMACTRL_GRS | DMACTRL_GTS);
762 regs->dmactrl |= (DMACTRL_GRS | DMACTRL_GTS);
763
Jon Loeliger89875e92006-10-10 17:03:43 -0500764 while (!(regs->ievent & (IEVENT_GRSC | IEVENT_GTSC))) ;
wdenk42d1f032003-10-15 23:53:47 +0000765
766 regs->maccfg1 &= ~(MACCFG1_TX_EN | MACCFG1_RX_EN);
767
wdenk97d80fc2004-06-09 00:34:46 +0000768 /* Shut down the PHY, as needed */
Ben Warren4653f912006-10-26 14:38:25 -0400769 if(priv->phyinfo)
770 phy_run_commands(priv, priv->phyinfo->shutdown);
wdenk42d1f032003-10-15 23:53:47 +0000771}
wdenk7abf0c52004-04-18 21:45:42 +0000772
wdenk97d80fc2004-06-09 00:34:46 +0000773struct phy_info phy_info_M88E1011S = {
774 0x01410c6,
775 "Marvell 88E1011S",
776 4,
Jon Loeliger89875e92006-10-10 17:03:43 -0500777 (struct phy_cmd[]){ /* config */
778 /* Reset and configure the PHY */
779 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
780 {0x1d, 0x1f, NULL},
781 {0x1e, 0x200c, NULL},
782 {0x1d, 0x5, NULL},
783 {0x1e, 0x0, NULL},
784 {0x1e, 0x100, NULL},
785 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
786 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
787 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
788 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
789 {miim_end,}
790 },
791 (struct phy_cmd[]){ /* startup */
792 /* Status is read once to clear old link state */
793 {MIIM_STATUS, miim_read, NULL},
794 /* Auto-negotiate */
795 {MIIM_STATUS, miim_read, &mii_parse_sr},
796 /* Read the status */
797 {MIIM_88E1011_PHY_STATUS, miim_read,
798 &mii_parse_88E1011_psr},
799 {miim_end,}
800 },
801 (struct phy_cmd[]){ /* shutdown */
802 {miim_end,}
803 },
wdenk97d80fc2004-06-09 00:34:46 +0000804};
805
wdenk9d46ea42005-03-14 23:56:42 +0000806struct phy_info phy_info_M88E1111S = {
807 0x01410cc,
808 "Marvell 88E1111S",
809 4,
Jon Loeliger89875e92006-10-10 17:03:43 -0500810 (struct phy_cmd[]){ /* config */
811 /* Reset and configure the PHY */
812 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
813 {0x1d, 0x1f, NULL},
814 {0x1e, 0x200c, NULL},
815 {0x1d, 0x5, NULL},
816 {0x1e, 0x0, NULL},
817 {0x1e, 0x100, NULL},
Nick Spencef484dc72006-09-07 07:39:46 -0700818 {0x14, 0x0cd2, NULL}, /* Delay RGMII TX and RX */
Jon Loeliger89875e92006-10-10 17:03:43 -0500819 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
820 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
821 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
822 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
823 {miim_end,}
824 },
825 (struct phy_cmd[]){ /* startup */
826 /* Status is read once to clear old link state */
827 {MIIM_STATUS, miim_read, NULL},
828 /* Auto-negotiate */
829 {MIIM_STATUS, miim_read, &mii_parse_sr},
830 /* Read the status */
831 {MIIM_88E1011_PHY_STATUS, miim_read,
832 &mii_parse_88E1011_psr},
833 {miim_end,}
834 },
835 (struct phy_cmd[]){ /* shutdown */
836 {miim_end,}
837 },
wdenk9d46ea42005-03-14 23:56:42 +0000838};
839
Andy Fleming09f3e092006-09-13 10:34:18 -0500840static unsigned int m88e1145_setmode(uint mii_reg, struct tsec_private *priv)
841{
Andy Fleming09f3e092006-09-13 10:34:18 -0500842 uint mii_data = read_phy_reg(priv, mii_reg);
843
Andy Fleming09f3e092006-09-13 10:34:18 -0500844 /* Setting MIIM_88E1145_PHY_EXT_CR */
845 if (priv->flags & TSEC_REDUCED)
846 return mii_data |
Jon Loeliger89875e92006-10-10 17:03:43 -0500847 MIIM_M88E1145_RGMII_RX_DELAY | MIIM_M88E1145_RGMII_TX_DELAY;
Andy Fleming09f3e092006-09-13 10:34:18 -0500848 else
849 return mii_data;
850}
851
852static struct phy_info phy_info_M88E1145 = {
853 0x01410cd,
854 "Marvell 88E1145",
855 4,
Jon Loeliger89875e92006-10-10 17:03:43 -0500856 (struct phy_cmd[]){ /* config */
857 /* Errata E0, E1 */
858 {29, 0x001b, NULL},
859 {30, 0x418f, NULL},
860 {29, 0x0016, NULL},
861 {30, 0xa2da, NULL},
Andy Fleming09f3e092006-09-13 10:34:18 -0500862
Jon Loeliger89875e92006-10-10 17:03:43 -0500863 /* Reset and configure the PHY */
864 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
865 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
866 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
867 {MIIM_88E1011_PHY_SCR, MIIM_88E1011_PHY_MDI_X_AUTO,
868 NULL},
869 {MIIM_88E1145_PHY_EXT_CR, 0, &m88e1145_setmode},
870 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
871 {MIIM_CONTROL, MIIM_CONTROL_INIT, NULL},
872 {miim_end,}
873 },
874 (struct phy_cmd[]){ /* startup */
875 /* Status is read once to clear old link state */
876 {MIIM_STATUS, miim_read, NULL},
877 /* Auto-negotiate */
878 {MIIM_STATUS, miim_read, &mii_parse_sr},
879 {MIIM_88E1111_PHY_LED_CONTROL,
880 MIIM_88E1111_PHY_LED_DIRECT, NULL},
881 /* Read the Status */
882 {MIIM_88E1011_PHY_STATUS, miim_read,
883 &mii_parse_88E1011_psr},
884 {miim_end,}
885 },
886 (struct phy_cmd[]){ /* shutdown */
887 {miim_end,}
888 },
Andy Fleming09f3e092006-09-13 10:34:18 -0500889};
890
wdenk97d80fc2004-06-09 00:34:46 +0000891struct phy_info phy_info_cis8204 = {
892 0x3f11,
893 "Cicada Cis8204",
894 6,
Jon Loeliger89875e92006-10-10 17:03:43 -0500895 (struct phy_cmd[]){ /* config */
896 /* Override PHY config settings */
897 {MIIM_CIS8201_AUX_CONSTAT,
898 MIIM_CIS8201_AUXCONSTAT_INIT, NULL},
899 /* Configure some basic stuff */
900 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
901 {MIIM_CIS8204_SLED_CON, MIIM_CIS8204_SLEDCON_INIT,
902 &mii_cis8204_fixled},
903 {MIIM_CIS8204_EPHY_CON, MIIM_CIS8204_EPHYCON_INIT,
904 &mii_cis8204_setmode},
905 {miim_end,}
906 },
907 (struct phy_cmd[]){ /* startup */
908 /* Read the Status (2x to make sure link is right) */
909 {MIIM_STATUS, miim_read, NULL},
910 /* Auto-negotiate */
911 {MIIM_STATUS, miim_read, &mii_parse_sr},
912 /* Read the status */
913 {MIIM_CIS8201_AUX_CONSTAT, miim_read,
914 &mii_parse_cis8201},
915 {miim_end,}
916 },
917 (struct phy_cmd[]){ /* shutdown */
918 {miim_end,}
919 },
wdenk97d80fc2004-06-09 00:34:46 +0000920};
921
922/* Cicada 8201 */
923struct phy_info phy_info_cis8201 = {
924 0xfc41,
925 "CIS8201",
926 4,
Jon Loeliger89875e92006-10-10 17:03:43 -0500927 (struct phy_cmd[]){ /* config */
928 /* Override PHY config settings */
929 {MIIM_CIS8201_AUX_CONSTAT,
930 MIIM_CIS8201_AUXCONSTAT_INIT, NULL},
931 /* Set up the interface mode */
932 {MIIM_CIS8201_EXT_CON1, MIIM_CIS8201_EXTCON1_INIT,
933 NULL},
934 /* Configure some basic stuff */
935 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
936 {miim_end,}
937 },
938 (struct phy_cmd[]){ /* startup */
939 /* Read the Status (2x to make sure link is right) */
940 {MIIM_STATUS, miim_read, NULL},
941 /* Auto-negotiate */
942 {MIIM_STATUS, miim_read, &mii_parse_sr},
943 /* Read the status */
944 {MIIM_CIS8201_AUX_CONSTAT, miim_read,
945 &mii_parse_cis8201},
946 {miim_end,}
947 },
948 (struct phy_cmd[]){ /* shutdown */
949 {miim_end,}
950 },
wdenk97d80fc2004-06-09 00:34:46 +0000951};
Jon Loeligerdebb7352006-04-26 17:58:56 -0500952struct phy_info phy_info_VSC8244 = {
Jon Loeliger89875e92006-10-10 17:03:43 -0500953 0x3f1b,
954 "Vitesse VSC8244",
955 6,
956 (struct phy_cmd[]){ /* config */
957 /* Override PHY config settings */
958 /* Configure some basic stuff */
959 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
960 {miim_end,}
961 },
962 (struct phy_cmd[]){ /* startup */
963 /* Read the Status (2x to make sure link is right) */
964 {MIIM_STATUS, miim_read, NULL},
965 /* Auto-negotiate */
966 {MIIM_STATUS, miim_read, &mii_parse_sr},
967 /* Read the status */
968 {MIIM_VSC8244_AUX_CONSTAT, miim_read,
969 &mii_parse_vsc8244},
970 {miim_end,}
971 },
972 (struct phy_cmd[]){ /* shutdown */
973 {miim_end,}
974 },
Jon Loeligerdebb7352006-04-26 17:58:56 -0500975};
wdenk97d80fc2004-06-09 00:34:46 +0000976
wdenk97d80fc2004-06-09 00:34:46 +0000977struct phy_info phy_info_dm9161 = {
978 0x0181b88,
979 "Davicom DM9161E",
980 4,
Jon Loeliger89875e92006-10-10 17:03:43 -0500981 (struct phy_cmd[]){ /* config */
982 {MIIM_CONTROL, MIIM_DM9161_CR_STOP, NULL},
983 /* Do not bypass the scrambler/descrambler */
984 {MIIM_DM9161_SCR, MIIM_DM9161_SCR_INIT, NULL},
985 /* Clear 10BTCSR to default */
986 {MIIM_DM9161_10BTCSR, MIIM_DM9161_10BTCSR_INIT,
987 NULL},
988 /* Configure some basic stuff */
989 {MIIM_CONTROL, MIIM_CR_INIT, NULL},
990 /* Restart Auto Negotiation */
991 {MIIM_CONTROL, MIIM_DM9161_CR_RSTAN, NULL},
992 {miim_end,}
993 },
994 (struct phy_cmd[]){ /* startup */
995 /* Status is read once to clear old link state */
996 {MIIM_STATUS, miim_read, NULL},
997 /* Auto-negotiate */
998 {MIIM_STATUS, miim_read, &mii_parse_sr},
999 /* Read the status */
1000 {MIIM_DM9161_SCSR, miim_read,
1001 &mii_parse_dm9161_scsr},
1002 {miim_end,}
1003 },
1004 (struct phy_cmd[]){ /* shutdown */
1005 {miim_end,}
1006 },
wdenk97d80fc2004-06-09 00:34:46 +00001007};
1008
wdenk3dd7f0f2005-04-04 23:43:44 +00001009uint mii_parse_lxt971_sr2(uint mii_reg, struct tsec_private *priv)
1010{
wdenk3c2b3d42005-04-05 23:32:21 +00001011 unsigned int speed;
1012 if (priv->link) {
1013 speed = mii_reg & MIIM_LXT971_SR2_SPEED_MASK;
wdenk3dd7f0f2005-04-04 23:43:44 +00001014
wdenk3c2b3d42005-04-05 23:32:21 +00001015 switch (speed) {
1016 case MIIM_LXT971_SR2_10HDX:
1017 priv->speed = 10;
1018 priv->duplexity = 0;
1019 break;
1020 case MIIM_LXT971_SR2_10FDX:
1021 priv->speed = 10;
1022 priv->duplexity = 1;
1023 break;
1024 case MIIM_LXT971_SR2_100HDX:
1025 priv->speed = 100;
1026 priv->duplexity = 0;
1027 default:
1028 priv->speed = 100;
1029 priv->duplexity = 1;
1030 break;
1031 }
1032 } else {
1033 priv->speed = 0;
1034 priv->duplexity = 0;
1035 }
wdenk3dd7f0f2005-04-04 23:43:44 +00001036
wdenk3c2b3d42005-04-05 23:32:21 +00001037 return 0;
wdenk3dd7f0f2005-04-04 23:43:44 +00001038}
1039
wdenk9d46ea42005-03-14 23:56:42 +00001040static struct phy_info phy_info_lxt971 = {
1041 0x0001378e,
1042 "LXT971",
1043 4,
Jon Loeliger89875e92006-10-10 17:03:43 -05001044 (struct phy_cmd[]){ /* config */
1045 {MIIM_CR, MIIM_CR_INIT, mii_cr_init}, /* autonegotiate */
1046 {miim_end,}
1047 },
1048 (struct phy_cmd[]){ /* startup - enable interrupts */
1049 /* { 0x12, 0x00f2, NULL }, */
1050 {MIIM_STATUS, miim_read, NULL},
1051 {MIIM_STATUS, miim_read, &mii_parse_sr},
1052 {MIIM_LXT971_SR2, miim_read, &mii_parse_lxt971_sr2},
1053 {miim_end,}
1054 },
1055 (struct phy_cmd[]){ /* shutdown - disable interrupts */
1056 {miim_end,}
1057 },
wdenk9d46ea42005-03-14 23:56:42 +00001058};
1059
Wolfgang Denkbe5048f2006-03-12 22:50:55 +01001060/* Parse the DP83865's link and auto-neg status register for speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -05001061 * information
1062 */
Wolfgang Denkbe5048f2006-03-12 22:50:55 +01001063uint mii_parse_dp83865_lanr(uint mii_reg, struct tsec_private *priv)
1064{
1065 switch (mii_reg & MIIM_DP83865_SPD_MASK) {
1066
1067 case MIIM_DP83865_SPD_1000:
1068 priv->speed = 1000;
1069 break;
1070
1071 case MIIM_DP83865_SPD_100:
1072 priv->speed = 100;
1073 break;
1074
1075 default:
1076 priv->speed = 10;
1077 break;
1078
1079 }
1080
1081 if (mii_reg & MIIM_DP83865_DPX_FULL)
1082 priv->duplexity = 1;
1083 else
1084 priv->duplexity = 0;
1085
1086 return 0;
1087}
1088
1089struct phy_info phy_info_dp83865 = {
1090 0x20005c7,
1091 "NatSemi DP83865",
1092 4,
Jon Loeliger89875e92006-10-10 17:03:43 -05001093 (struct phy_cmd[]){ /* config */
1094 {MIIM_CONTROL, MIIM_DP83865_CR_INIT, NULL},
1095 {miim_end,}
1096 },
1097 (struct phy_cmd[]){ /* startup */
1098 /* Status is read once to clear old link state */
1099 {MIIM_STATUS, miim_read, NULL},
1100 /* Auto-negotiate */
1101 {MIIM_STATUS, miim_read, &mii_parse_sr},
1102 /* Read the link and auto-neg status */
1103 {MIIM_DP83865_LANR, miim_read,
1104 &mii_parse_dp83865_lanr},
1105 {miim_end,}
1106 },
1107 (struct phy_cmd[]){ /* shutdown */
1108 {miim_end,}
1109 },
Wolfgang Denkbe5048f2006-03-12 22:50:55 +01001110};
1111
wdenk97d80fc2004-06-09 00:34:46 +00001112struct phy_info *phy_info[] = {
1113#if 0
1114 &phy_info_cis8201,
1115#endif
1116 &phy_info_cis8204,
1117 &phy_info_M88E1011S,
wdenk9d46ea42005-03-14 23:56:42 +00001118 &phy_info_M88E1111S,
Andy Fleming09f3e092006-09-13 10:34:18 -05001119 &phy_info_M88E1145,
wdenk97d80fc2004-06-09 00:34:46 +00001120 &phy_info_dm9161,
wdenk9d46ea42005-03-14 23:56:42 +00001121 &phy_info_lxt971,
Jon Loeligerdebb7352006-04-26 17:58:56 -05001122 &phy_info_VSC8244,
Wolfgang Denkbe5048f2006-03-12 22:50:55 +01001123 &phy_info_dp83865,
wdenk97d80fc2004-06-09 00:34:46 +00001124 NULL
1125};
1126
wdenk97d80fc2004-06-09 00:34:46 +00001127/* Grab the identifier of the device's PHY, and search through
wdenk9d46ea42005-03-14 23:56:42 +00001128 * all of the known PHYs to see if one matches. If so, return
Jon Loeliger89875e92006-10-10 17:03:43 -05001129 * it, if not, return NULL
1130 */
1131struct phy_info *get_phy_info(struct eth_device *dev)
wdenk97d80fc2004-06-09 00:34:46 +00001132{
1133 struct tsec_private *priv = (struct tsec_private *)dev->priv;
1134 uint phy_reg, phy_ID;
1135 int i;
1136 struct phy_info *theInfo = NULL;
1137
1138 /* Grab the bits from PHYIR1, and put them in the upper half */
1139 phy_reg = read_phy_reg(priv, MIIM_PHYIR1);
1140 phy_ID = (phy_reg & 0xffff) << 16;
1141
1142 /* Grab the bits from PHYIR2, and put them in the lower half */
1143 phy_reg = read_phy_reg(priv, MIIM_PHYIR2);
1144 phy_ID |= (phy_reg & 0xffff);
1145
1146 /* loop through all the known PHY types, and find one that */
1147 /* matches the ID we read from the PHY. */
Jon Loeliger89875e92006-10-10 17:03:43 -05001148 for (i = 0; phy_info[i]; i++) {
1149 if (phy_info[i]->id == (phy_ID >> phy_info[i]->shift))
wdenk97d80fc2004-06-09 00:34:46 +00001150 theInfo = phy_info[i];
1151 }
1152
Jon Loeliger89875e92006-10-10 17:03:43 -05001153 if (theInfo == NULL) {
wdenk97d80fc2004-06-09 00:34:46 +00001154 printf("%s: PHY id %x is not supported!\n", dev->name, phy_ID);
1155 return NULL;
1156 } else {
Stefan Roese5810dc32005-09-21 18:20:22 +02001157 debug("%s: PHY is %s (%x)\n", dev->name, theInfo->name, phy_ID);
wdenk97d80fc2004-06-09 00:34:46 +00001158 }
1159
1160 return theInfo;
1161}
1162
wdenk97d80fc2004-06-09 00:34:46 +00001163/* Execute the given series of commands on the given device's
Jon Loeliger89875e92006-10-10 17:03:43 -05001164 * PHY, running functions as necessary
1165 */
wdenk97d80fc2004-06-09 00:34:46 +00001166void phy_run_commands(struct tsec_private *priv, struct phy_cmd *cmd)
1167{
1168 int i;
1169 uint result;
1170 volatile tsec_t *phyregs = priv->phyregs;
1171
1172 phyregs->miimcfg = MIIMCFG_RESET;
1173
1174 phyregs->miimcfg = MIIMCFG_INIT_VALUE;
1175
Jon Loeliger89875e92006-10-10 17:03:43 -05001176 while (phyregs->miimind & MIIMIND_BUSY) ;
wdenk97d80fc2004-06-09 00:34:46 +00001177
Jon Loeliger89875e92006-10-10 17:03:43 -05001178 for (i = 0; cmd->mii_reg != miim_end; i++) {
1179 if (cmd->mii_data == miim_read) {
wdenk97d80fc2004-06-09 00:34:46 +00001180 result = read_phy_reg(priv, cmd->mii_reg);
1181
Jon Loeliger89875e92006-10-10 17:03:43 -05001182 if (cmd->funct != NULL)
1183 (*(cmd->funct)) (result, priv);
wdenk97d80fc2004-06-09 00:34:46 +00001184
1185 } else {
Jon Loeliger89875e92006-10-10 17:03:43 -05001186 if (cmd->funct != NULL)
1187 result = (*(cmd->funct)) (cmd->mii_reg, priv);
wdenk97d80fc2004-06-09 00:34:46 +00001188 else
1189 result = cmd->mii_data;
1190
1191 write_phy_reg(priv, cmd->mii_reg, result);
1192
1193 }
1194 cmd++;
1195 }
1196}
1197
wdenk97d80fc2004-06-09 00:34:46 +00001198/* Relocate the function pointers in the phy cmd lists */
1199static void relocate_cmds(void)
1200{
1201 struct phy_cmd **cmdlistptr;
1202 struct phy_cmd *cmd;
Jon Loeliger89875e92006-10-10 17:03:43 -05001203 int i, j, k;
wdenk97d80fc2004-06-09 00:34:46 +00001204
Jon Loeliger89875e92006-10-10 17:03:43 -05001205 for (i = 0; phy_info[i]; i++) {
wdenk97d80fc2004-06-09 00:34:46 +00001206 /* First thing's first: relocate the pointers to the
1207 * PHY command structures (the structs were done) */
Jon Loeliger89875e92006-10-10 17:03:43 -05001208 phy_info[i] = (struct phy_info *)((uint) phy_info[i]
1209 + gd->reloc_off);
wdenk97d80fc2004-06-09 00:34:46 +00001210 phy_info[i]->name += gd->reloc_off;
1211 phy_info[i]->config =
Jon Loeliger89875e92006-10-10 17:03:43 -05001212 (struct phy_cmd *)((uint) phy_info[i]->config
1213 + gd->reloc_off);
wdenk97d80fc2004-06-09 00:34:46 +00001214 phy_info[i]->startup =
Jon Loeliger89875e92006-10-10 17:03:43 -05001215 (struct phy_cmd *)((uint) phy_info[i]->startup
1216 + gd->reloc_off);
wdenk97d80fc2004-06-09 00:34:46 +00001217 phy_info[i]->shutdown =
Jon Loeliger89875e92006-10-10 17:03:43 -05001218 (struct phy_cmd *)((uint) phy_info[i]->shutdown
1219 + gd->reloc_off);
wdenk97d80fc2004-06-09 00:34:46 +00001220
1221 cmdlistptr = &phy_info[i]->config;
Jon Loeliger89875e92006-10-10 17:03:43 -05001222 j = 0;
1223 for (; cmdlistptr <= &phy_info[i]->shutdown; cmdlistptr++) {
1224 k = 0;
1225 for (cmd = *cmdlistptr;
1226 cmd->mii_reg != miim_end;
1227 cmd++) {
wdenk97d80fc2004-06-09 00:34:46 +00001228 /* Only relocate non-NULL pointers */
Jon Loeliger89875e92006-10-10 17:03:43 -05001229 if (cmd->funct)
wdenk97d80fc2004-06-09 00:34:46 +00001230 cmd->funct += gd->reloc_off;
1231
1232 k++;
1233 }
1234 j++;
1235 }
1236 }
1237
1238 relocated = 1;
1239}
1240
Marian Balakowicz63ff0042005-10-28 22:30:33 +02001241#if defined(CONFIG_MII) || (CONFIG_COMMANDS & CFG_CMD_MII) \
1242 && !defined(BITBANGMII)
wdenk97d80fc2004-06-09 00:34:46 +00001243
Jon Loeliger89875e92006-10-10 17:03:43 -05001244struct tsec_private *get_priv_for_phy(unsigned char phyaddr)
wdenk97d80fc2004-06-09 00:34:46 +00001245{
1246 int i;
1247
Jon Loeliger89875e92006-10-10 17:03:43 -05001248 for (i = 0; i < MAXCONTROLLERS; i++) {
1249 if (privlist[i]->phyaddr == phyaddr)
wdenk97d80fc2004-06-09 00:34:46 +00001250 return privlist[i];
1251 }
1252
1253 return NULL;
1254}
1255
wdenk7abf0c52004-04-18 21:45:42 +00001256/*
1257 * Read a MII PHY register.
1258 *
1259 * Returns:
wdenk97d80fc2004-06-09 00:34:46 +00001260 * 0 on success
wdenk7abf0c52004-04-18 21:45:42 +00001261 */
Marian Balakowicz63ff0042005-10-28 22:30:33 +02001262static int tsec_miiphy_read(char *devname, unsigned char addr,
Jon Loeliger89875e92006-10-10 17:03:43 -05001263 unsigned char reg, unsigned short *value)
wdenk7abf0c52004-04-18 21:45:42 +00001264{
wdenk97d80fc2004-06-09 00:34:46 +00001265 unsigned short ret;
1266 struct tsec_private *priv = get_priv_for_phy(addr);
wdenk7abf0c52004-04-18 21:45:42 +00001267
Jon Loeliger89875e92006-10-10 17:03:43 -05001268 if (NULL == priv) {
wdenk97d80fc2004-06-09 00:34:46 +00001269 printf("Can't read PHY at address %d\n", addr);
1270 return -1;
1271 }
1272
1273 ret = (unsigned short)read_phy_reg(priv, reg);
1274 *value = ret;
wdenk7abf0c52004-04-18 21:45:42 +00001275
1276 return 0;
1277}
1278
1279/*
1280 * Write a MII PHY register.
1281 *
1282 * Returns:
wdenk97d80fc2004-06-09 00:34:46 +00001283 * 0 on success
wdenk7abf0c52004-04-18 21:45:42 +00001284 */
Marian Balakowicz63ff0042005-10-28 22:30:33 +02001285static int tsec_miiphy_write(char *devname, unsigned char addr,
Jon Loeliger89875e92006-10-10 17:03:43 -05001286 unsigned char reg, unsigned short value)
wdenk7abf0c52004-04-18 21:45:42 +00001287{
wdenk97d80fc2004-06-09 00:34:46 +00001288 struct tsec_private *priv = get_priv_for_phy(addr);
wdenk7abf0c52004-04-18 21:45:42 +00001289
Jon Loeliger89875e92006-10-10 17:03:43 -05001290 if (NULL == priv) {
wdenk97d80fc2004-06-09 00:34:46 +00001291 printf("Can't write PHY at address %d\n", addr);
1292 return -1;
1293 }
1294
1295 write_phy_reg(priv, reg, value);
wdenk7abf0c52004-04-18 21:45:42 +00001296
1297 return 0;
1298}
wdenk97d80fc2004-06-09 00:34:46 +00001299
Marian Balakowicz63ff0042005-10-28 22:30:33 +02001300#endif /* defined(CONFIG_MII) || (CONFIG_COMMANDS & CFG_CMD_MII)
1301 && !defined(BITBANGMII) */
wdenk97d80fc2004-06-09 00:34:46 +00001302
wdenk42d1f032003-10-15 23:53:47 +00001303#endif /* CONFIG_TSEC_ENET */