blob: 770517b87e468db5ee453f6ed0c70fdb99706959 [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
Jon Loeliger89875e92006-10-10 17:03:43 -0500316 if (NULL == curphy) {
wdenk97d80fc2004-06-09 00:34:46 +0000317 printf("%s: No PHY found\n", dev->name);
wdenk42d1f032003-10-15 23:53:47 +0000318
wdenk97d80fc2004-06-09 00:34:46 +0000319 return 0;
wdenk42d1f032003-10-15 23:53:47 +0000320 }
321
wdenk97d80fc2004-06-09 00:34:46 +0000322 priv->phyinfo = curphy;
wdenk42d1f032003-10-15 23:53:47 +0000323
wdenk97d80fc2004-06-09 00:34:46 +0000324 phy_run_commands(priv, priv->phyinfo->config);
wdenk42d1f032003-10-15 23:53:47 +0000325
wdenk97d80fc2004-06-09 00:34:46 +0000326 return 1;
wdenk42d1f032003-10-15 23:53:47 +0000327}
328
Jon Loeliger89875e92006-10-10 17:03:43 -0500329/*
330 * Returns which value to write to the control register.
331 * For 10/100, the value is slightly different
332 */
333uint mii_cr_init(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000334{
Jon Loeliger89875e92006-10-10 17:03:43 -0500335 if (priv->flags & TSEC_GIGABIT)
wdenk97d80fc2004-06-09 00:34:46 +0000336 return MIIM_CONTROL_INIT;
337 else
338 return MIIM_CR_INIT;
339}
340
wdenk97d80fc2004-06-09 00:34:46 +0000341/* Parse the status register for link, and then do
Jon Loeliger89875e92006-10-10 17:03:43 -0500342 * auto-negotiation
343 */
344uint mii_parse_sr(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000345{
Stefan Roese5810dc32005-09-21 18:20:22 +0200346 /*
Jon Loeliger89875e92006-10-10 17:03:43 -0500347 * Wait if PHY is capable of autonegotiation and autonegotiation
348 * is not complete.
Stefan Roese5810dc32005-09-21 18:20:22 +0200349 */
350 mii_reg = read_phy_reg(priv, MIIM_STATUS);
Jon Loeliger89875e92006-10-10 17:03:43 -0500351 if ((mii_reg & PHY_BMSR_AUTN_ABLE)
352 && !(mii_reg & PHY_BMSR_AUTN_COMP)) {
Stefan Roese5810dc32005-09-21 18:20:22 +0200353 int i = 0;
wdenk97d80fc2004-06-09 00:34:46 +0000354
Jon Loeliger89875e92006-10-10 17:03:43 -0500355 puts("Waiting for PHY auto negotiation to complete");
356 while (!((mii_reg & PHY_BMSR_AUTN_COMP)
357 && (mii_reg & MIIM_STATUS_LINK))) {
Stefan Roese5810dc32005-09-21 18:20:22 +0200358 /*
359 * Timeout reached ?
360 */
361 if (i > PHY_AUTONEGOTIATE_TIMEOUT) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500362 puts(" TIMEOUT !\n");
Stefan Roese5810dc32005-09-21 18:20:22 +0200363 priv->link = 0;
Jin Zhengxiong-R64188fcfb9a52006-06-27 18:12:23 +0800364 return 0;
Stefan Roese5810dc32005-09-21 18:20:22 +0200365 }
wdenk97d80fc2004-06-09 00:34:46 +0000366
Stefan Roese5810dc32005-09-21 18:20:22 +0200367 if ((i++ % 1000) == 0) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500368 putc('.');
Stefan Roese5810dc32005-09-21 18:20:22 +0200369 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500370 udelay(1000); /* 1 ms */
wdenk97d80fc2004-06-09 00:34:46 +0000371 mii_reg = read_phy_reg(priv, MIIM_STATUS);
Stefan Roese5810dc32005-09-21 18:20:22 +0200372 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500373 puts(" done\n");
Stefan Roese5810dc32005-09-21 18:20:22 +0200374 priv->link = 1;
Jon Loeliger89875e92006-10-10 17:03:43 -0500375 udelay(500000); /* another 500 ms (results in faster booting) */
Stefan Roese5810dc32005-09-21 18:20:22 +0200376 } else {
377 priv->link = 1;
wdenk97d80fc2004-06-09 00:34:46 +0000378 }
379
380 return 0;
381}
382
wdenk97d80fc2004-06-09 00:34:46 +0000383/* Parse the 88E1011's status register for speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -0500384 * information
385 */
386uint mii_parse_88E1011_psr(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000387{
388 uint speed;
389
Stefan Roese5810dc32005-09-21 18:20:22 +0200390 mii_reg = read_phy_reg(priv, MIIM_88E1011_PHY_STATUS);
391
392 if (!((mii_reg & MIIM_88E1011_PHYSTAT_SPDDONE) &&
393 (mii_reg & MIIM_88E1011_PHYSTAT_LINK))) {
394 int i = 0;
395
Jon Loeliger89875e92006-10-10 17:03:43 -0500396 puts("Waiting for PHY realtime link");
Stefan Roese5810dc32005-09-21 18:20:22 +0200397 while (!((mii_reg & MIIM_88E1011_PHYSTAT_SPDDONE) &&
398 (mii_reg & MIIM_88E1011_PHYSTAT_LINK))) {
399 /*
400 * Timeout reached ?
401 */
402 if (i > PHY_AUTONEGOTIATE_TIMEOUT) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500403 puts(" TIMEOUT !\n");
Stefan Roese5810dc32005-09-21 18:20:22 +0200404 priv->link = 0;
405 break;
406 }
407
408 if ((i++ % 1000) == 0) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500409 putc('.');
Stefan Roese5810dc32005-09-21 18:20:22 +0200410 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500411 udelay(1000); /* 1 ms */
Stefan Roese5810dc32005-09-21 18:20:22 +0200412 mii_reg = read_phy_reg(priv, MIIM_88E1011_PHY_STATUS);
413 }
Jon Loeliger89875e92006-10-10 17:03:43 -0500414 puts(" done\n");
415 udelay(500000); /* another 500 ms (results in faster booting) */
Stefan Roese5810dc32005-09-21 18:20:22 +0200416 }
417
Jon Loeliger89875e92006-10-10 17:03:43 -0500418 if (mii_reg & MIIM_88E1011_PHYSTAT_DUPLEX)
wdenk97d80fc2004-06-09 00:34:46 +0000419 priv->duplexity = 1;
420 else
421 priv->duplexity = 0;
422
Jon Loeliger89875e92006-10-10 17:03:43 -0500423 speed = (mii_reg & MIIM_88E1011_PHYSTAT_SPEED);
wdenk97d80fc2004-06-09 00:34:46 +0000424
Jon Loeliger89875e92006-10-10 17:03:43 -0500425 switch (speed) {
426 case MIIM_88E1011_PHYSTAT_GBIT:
427 priv->speed = 1000;
428 break;
429 case MIIM_88E1011_PHYSTAT_100:
430 priv->speed = 100;
431 break;
432 default:
433 priv->speed = 10;
wdenk97d80fc2004-06-09 00:34:46 +0000434 }
435
436 return 0;
437}
438
wdenk97d80fc2004-06-09 00:34:46 +0000439/* Parse the cis8201's status register for speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -0500440 * information
441 */
442uint mii_parse_cis8201(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000443{
444 uint speed;
445
Jon Loeliger89875e92006-10-10 17:03:43 -0500446 if (mii_reg & MIIM_CIS8201_AUXCONSTAT_DUPLEX)
wdenk97d80fc2004-06-09 00:34:46 +0000447 priv->duplexity = 1;
448 else
449 priv->duplexity = 0;
450
451 speed = mii_reg & MIIM_CIS8201_AUXCONSTAT_SPEED;
Jon Loeliger89875e92006-10-10 17:03:43 -0500452 switch (speed) {
453 case MIIM_CIS8201_AUXCONSTAT_GBIT:
454 priv->speed = 1000;
455 break;
456 case MIIM_CIS8201_AUXCONSTAT_100:
457 priv->speed = 100;
458 break;
459 default:
460 priv->speed = 10;
461 break;
wdenk97d80fc2004-06-09 00:34:46 +0000462 }
463
464 return 0;
465}
Jon Loeliger89875e92006-10-10 17:03:43 -0500466
Jon Loeligerdebb7352006-04-26 17:58:56 -0500467/* Parse the vsc8244's status register for speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -0500468 * information
469 */
470uint mii_parse_vsc8244(uint mii_reg, struct tsec_private * priv)
Jon Loeligerdebb7352006-04-26 17:58:56 -0500471{
Jon Loeliger89875e92006-10-10 17:03:43 -0500472 uint speed;
473
474 if (mii_reg & MIIM_VSC8244_AUXCONSTAT_DUPLEX)
475 priv->duplexity = 1;
476 else
477 priv->duplexity = 0;
478
479 speed = mii_reg & MIIM_VSC8244_AUXCONSTAT_SPEED;
480 switch (speed) {
481 case MIIM_VSC8244_AUXCONSTAT_GBIT:
482 priv->speed = 1000;
483 break;
484 case MIIM_VSC8244_AUXCONSTAT_100:
485 priv->speed = 100;
486 break;
487 default:
488 priv->speed = 10;
489 break;
490 }
491
492 return 0;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500493}
wdenk97d80fc2004-06-09 00:34:46 +0000494
wdenk97d80fc2004-06-09 00:34:46 +0000495/* Parse the DM9161's status register for speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -0500496 * information
497 */
498uint mii_parse_dm9161_scsr(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000499{
Jon Loeliger89875e92006-10-10 17:03:43 -0500500 if (mii_reg & (MIIM_DM9161_SCSR_100F | MIIM_DM9161_SCSR_100H))
wdenk97d80fc2004-06-09 00:34:46 +0000501 priv->speed = 100;
502 else
503 priv->speed = 10;
504
Jon Loeliger89875e92006-10-10 17:03:43 -0500505 if (mii_reg & (MIIM_DM9161_SCSR_100F | MIIM_DM9161_SCSR_10F))
wdenk97d80fc2004-06-09 00:34:46 +0000506 priv->duplexity = 1;
507 else
508 priv->duplexity = 0;
509
510 return 0;
511}
512
Jon Loeliger89875e92006-10-10 17:03:43 -0500513/*
514 * Hack to write all 4 PHYs with the LED values
515 */
516uint mii_cis8204_fixled(uint mii_reg, struct tsec_private * priv)
wdenk97d80fc2004-06-09 00:34:46 +0000517{
518 uint phyid;
519 volatile tsec_t *regbase = priv->phyregs;
Jon Loeliger89875e92006-10-10 17:03:43 -0500520 int timeout = 1000000;
wdenk97d80fc2004-06-09 00:34:46 +0000521
Jon Loeliger89875e92006-10-10 17:03:43 -0500522 for (phyid = 0; phyid < 4; phyid++) {
wdenk97d80fc2004-06-09 00:34:46 +0000523 regbase->miimadd = (phyid << 8) | mii_reg;
524 regbase->miimcon = MIIM_CIS8204_SLEDCON_INIT;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500525 asm("sync");
wdenk97d80fc2004-06-09 00:34:46 +0000526
Jon Loeliger89875e92006-10-10 17:03:43 -0500527 timeout = 1000000;
528 while ((regbase->miimind & MIIMIND_BUSY) && timeout--) ;
wdenk97d80fc2004-06-09 00:34:46 +0000529 }
530
531 return MIIM_CIS8204_SLEDCON_INIT;
532}
533
Jon Loeliger89875e92006-10-10 17:03:43 -0500534uint mii_cis8204_setmode(uint mii_reg, struct tsec_private * priv)
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500535{
536 if (priv->flags & TSEC_REDUCED)
537 return MIIM_CIS8204_EPHYCON_INIT | MIIM_CIS8204_EPHYCON_RGMII;
538 else
539 return MIIM_CIS8204_EPHYCON_INIT;
540}
wdenk97d80fc2004-06-09 00:34:46 +0000541
542/* Initialized required registers to appropriate values, zeroing
543 * those we don't care about (unless zero is bad, in which case,
Jon Loeliger89875e92006-10-10 17:03:43 -0500544 * choose a more appropriate value)
545 */
546static void init_registers(volatile tsec_t * regs)
wdenk42d1f032003-10-15 23:53:47 +0000547{
548 /* Clear IEVENT */
549 regs->ievent = IEVENT_INIT_CLEAR;
550
551 regs->imask = IMASK_INIT_CLEAR;
552
553 regs->hash.iaddr0 = 0;
554 regs->hash.iaddr1 = 0;
555 regs->hash.iaddr2 = 0;
556 regs->hash.iaddr3 = 0;
557 regs->hash.iaddr4 = 0;
558 regs->hash.iaddr5 = 0;
559 regs->hash.iaddr6 = 0;
560 regs->hash.iaddr7 = 0;
561
562 regs->hash.gaddr0 = 0;
563 regs->hash.gaddr1 = 0;
564 regs->hash.gaddr2 = 0;
565 regs->hash.gaddr3 = 0;
566 regs->hash.gaddr4 = 0;
567 regs->hash.gaddr5 = 0;
568 regs->hash.gaddr6 = 0;
569 regs->hash.gaddr7 = 0;
570
571 regs->rctrl = 0x00000000;
572
573 /* Init RMON mib registers */
574 memset((void *)&(regs->rmon), 0, sizeof(rmon_mib_t));
575
576 regs->rmon.cam1 = 0xffffffff;
577 regs->rmon.cam2 = 0xffffffff;
578
579 regs->mrblr = MRBLR_INIT_SETTINGS;
580
581 regs->minflr = MINFLR_INIT_SETTINGS;
582
583 regs->attr = ATTR_INIT_SETTINGS;
584 regs->attreli = ATTRELI_INIT_SETTINGS;
585
586}
587
wdenk97d80fc2004-06-09 00:34:46 +0000588/* Configure maccfg2 based on negotiated speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -0500589 * reported by PHY handling code
590 */
wdenk97d80fc2004-06-09 00:34:46 +0000591static void adjust_link(struct eth_device *dev)
592{
593 struct tsec_private *priv = (struct tsec_private *)dev->priv;
594 volatile tsec_t *regs = priv->regs;
595
Jon Loeliger89875e92006-10-10 17:03:43 -0500596 if (priv->link) {
597 if (priv->duplexity != 0)
wdenk97d80fc2004-06-09 00:34:46 +0000598 regs->maccfg2 |= MACCFG2_FULL_DUPLEX;
599 else
600 regs->maccfg2 &= ~(MACCFG2_FULL_DUPLEX);
601
Jon Loeliger89875e92006-10-10 17:03:43 -0500602 switch (priv->speed) {
603 case 1000:
604 regs->maccfg2 = ((regs->maccfg2 & ~(MACCFG2_IF))
605 | MACCFG2_GMII);
606 break;
607 case 100:
608 case 10:
609 regs->maccfg2 = ((regs->maccfg2 & ~(MACCFG2_IF))
610 | MACCFG2_MII);
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500611
Jon Loeliger89875e92006-10-10 17:03:43 -0500612 /* If We're in reduced mode, we need
613 * to say whether we're 10 or 100 MB.
614 */
615 if ((priv->speed == 100)
616 && (priv->flags & TSEC_REDUCED))
617 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 */
664 phy_run_commands(priv, priv->phyinfo->startup);
665 adjust_link(dev);
666
wdenk42d1f032003-10-15 23:53:47 +0000667 /* Enable Transmit and Receive */
668 regs->maccfg1 |= (MACCFG1_RX_EN | MACCFG1_TX_EN);
669
670 /* Tell the DMA it is clear to go */
671 regs->dmactrl |= DMACTRL_INIT_SETTINGS;
672 regs->tstat = TSTAT_CLEAR_THALT;
673 regs->dmactrl &= ~(DMACTRL_GRS | DMACTRL_GTS);
674}
675
wdenk9d46ea42005-03-14 23:56:42 +0000676/* This returns the status bits of the device. The return value
wdenk42d1f032003-10-15 23:53:47 +0000677 * is never checked, and this is what the 8260 driver did, so we
wdenk9d46ea42005-03-14 23:56:42 +0000678 * do the same. Presumably, this would be zero if there were no
Jon Loeliger89875e92006-10-10 17:03:43 -0500679 * errors
680 */
681static int tsec_send(struct eth_device *dev, volatile void *packet, int length)
wdenk42d1f032003-10-15 23:53:47 +0000682{
683 int i;
684 int result = 0;
wdenk97d80fc2004-06-09 00:34:46 +0000685 struct tsec_private *priv = (struct tsec_private *)dev->priv;
686 volatile tsec_t *regs = priv->regs;
wdenk42d1f032003-10-15 23:53:47 +0000687
688 /* Find an empty buffer descriptor */
Jon Loeliger89875e92006-10-10 17:03:43 -0500689 for (i = 0; rtx.txbd[txIdx].status & TXBD_READY; i++) {
wdenk42d1f032003-10-15 23:53:47 +0000690 if (i >= TOUT_LOOP) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500691 debug("%s: tsec: tx buffers full\n", dev->name);
wdenk42d1f032003-10-15 23:53:47 +0000692 return result;
693 }
694 }
695
Jon Loeliger89875e92006-10-10 17:03:43 -0500696 rtx.txbd[txIdx].bufPtr = (uint) packet;
wdenk42d1f032003-10-15 23:53:47 +0000697 rtx.txbd[txIdx].length = length;
Jon Loeliger89875e92006-10-10 17:03:43 -0500698 rtx.txbd[txIdx].status |=
699 (TXBD_READY | TXBD_LAST | TXBD_CRC | TXBD_INTERRUPT);
wdenk42d1f032003-10-15 23:53:47 +0000700
701 /* Tell the DMA to go */
702 regs->tstat = TSTAT_CLEAR_THALT;
703
704 /* Wait for buffer to be transmitted */
Jon Loeliger89875e92006-10-10 17:03:43 -0500705 for (i = 0; rtx.txbd[txIdx].status & TXBD_READY; i++) {
wdenk42d1f032003-10-15 23:53:47 +0000706 if (i >= TOUT_LOOP) {
Jon Loeliger89875e92006-10-10 17:03:43 -0500707 debug("%s: tsec: tx error\n", dev->name);
wdenk42d1f032003-10-15 23:53:47 +0000708 return result;
709 }
710 }
711
712 txIdx = (txIdx + 1) % TX_BUF_CNT;
713 result = rtx.txbd[txIdx].status & TXBD_STATS;
714
715 return result;
716}
717
Jon Loeliger89875e92006-10-10 17:03:43 -0500718static int tsec_recv(struct eth_device *dev)
wdenk42d1f032003-10-15 23:53:47 +0000719{
720 int length;
wdenk97d80fc2004-06-09 00:34:46 +0000721 struct tsec_private *priv = (struct tsec_private *)dev->priv;
722 volatile tsec_t *regs = priv->regs;
wdenk42d1f032003-10-15 23:53:47 +0000723
Jon Loeliger89875e92006-10-10 17:03:43 -0500724 while (!(rtx.rxbd[rxIdx].status & RXBD_EMPTY)) {
wdenk42d1f032003-10-15 23:53:47 +0000725
726 length = rtx.rxbd[rxIdx].length;
727
728 /* Send the packet up if there were no errors */
729 if (!(rtx.rxbd[rxIdx].status & RXBD_STATS)) {
730 NetReceive(NetRxPackets[rxIdx], length - 4);
wdenk97d80fc2004-06-09 00:34:46 +0000731 } else {
732 printf("Got error %x\n",
Jon Loeliger89875e92006-10-10 17:03:43 -0500733 (rtx.rxbd[rxIdx].status & RXBD_STATS));
wdenk42d1f032003-10-15 23:53:47 +0000734 }
735
736 rtx.rxbd[rxIdx].length = 0;
737
738 /* Set the wrap bit if this is the last element in the list */
Jon Loeliger89875e92006-10-10 17:03:43 -0500739 rtx.rxbd[rxIdx].status =
740 RXBD_EMPTY | (((rxIdx + 1) == PKTBUFSRX) ? RXBD_WRAP : 0);
wdenk42d1f032003-10-15 23:53:47 +0000741
742 rxIdx = (rxIdx + 1) % PKTBUFSRX;
743 }
744
Jon Loeliger89875e92006-10-10 17:03:43 -0500745 if (regs->ievent & IEVENT_BSY) {
wdenk42d1f032003-10-15 23:53:47 +0000746 regs->ievent = IEVENT_BSY;
747 regs->rstat = RSTAT_CLEAR_RHALT;
748 }
749
750 return -1;
751
752}
753
wdenk97d80fc2004-06-09 00:34:46 +0000754/* Stop the interface */
Jon Loeliger89875e92006-10-10 17:03:43 -0500755static void tsec_halt(struct eth_device *dev)
wdenk42d1f032003-10-15 23:53:47 +0000756{
wdenk97d80fc2004-06-09 00:34:46 +0000757 struct tsec_private *priv = (struct tsec_private *)dev->priv;
758 volatile tsec_t *regs = priv->regs;
wdenk42d1f032003-10-15 23:53:47 +0000759
760 regs->dmactrl &= ~(DMACTRL_GRS | DMACTRL_GTS);
761 regs->dmactrl |= (DMACTRL_GRS | DMACTRL_GTS);
762
Jon Loeliger89875e92006-10-10 17:03:43 -0500763 while (!(regs->ievent & (IEVENT_GRSC | IEVENT_GTSC))) ;
wdenk42d1f032003-10-15 23:53:47 +0000764
765 regs->maccfg1 &= ~(MACCFG1_TX_EN | MACCFG1_RX_EN);
766
wdenk97d80fc2004-06-09 00:34:46 +0000767 /* Shut down the PHY, as needed */
768 phy_run_commands(priv, priv->phyinfo->shutdown);
wdenk42d1f032003-10-15 23:53:47 +0000769}
wdenk7abf0c52004-04-18 21:45:42 +0000770
wdenk97d80fc2004-06-09 00:34:46 +0000771struct phy_info phy_info_M88E1011S = {
772 0x01410c6,
773 "Marvell 88E1011S",
774 4,
Jon Loeliger89875e92006-10-10 17:03:43 -0500775 (struct phy_cmd[]){ /* config */
776 /* Reset and configure the PHY */
777 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
778 {0x1d, 0x1f, NULL},
779 {0x1e, 0x200c, NULL},
780 {0x1d, 0x5, NULL},
781 {0x1e, 0x0, NULL},
782 {0x1e, 0x100, NULL},
783 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
784 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
785 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
786 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
787 {miim_end,}
788 },
789 (struct phy_cmd[]){ /* startup */
790 /* Status is read once to clear old link state */
791 {MIIM_STATUS, miim_read, NULL},
792 /* Auto-negotiate */
793 {MIIM_STATUS, miim_read, &mii_parse_sr},
794 /* Read the status */
795 {MIIM_88E1011_PHY_STATUS, miim_read,
796 &mii_parse_88E1011_psr},
797 {miim_end,}
798 },
799 (struct phy_cmd[]){ /* shutdown */
800 {miim_end,}
801 },
wdenk97d80fc2004-06-09 00:34:46 +0000802};
803
wdenk9d46ea42005-03-14 23:56:42 +0000804struct phy_info phy_info_M88E1111S = {
805 0x01410cc,
806 "Marvell 88E1111S",
807 4,
Jon Loeliger89875e92006-10-10 17:03:43 -0500808 (struct phy_cmd[]){ /* config */
809 /* Reset and configure the PHY */
810 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
811 {0x1d, 0x1f, NULL},
812 {0x1e, 0x200c, NULL},
813 {0x1d, 0x5, NULL},
814 {0x1e, 0x0, NULL},
815 {0x1e, 0x100, NULL},
816 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
817 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
818 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
819 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
820 {miim_end,}
821 },
822 (struct phy_cmd[]){ /* startup */
823 /* Status is read once to clear old link state */
824 {MIIM_STATUS, miim_read, NULL},
825 /* Auto-negotiate */
826 {MIIM_STATUS, miim_read, &mii_parse_sr},
827 /* Read the status */
828 {MIIM_88E1011_PHY_STATUS, miim_read,
829 &mii_parse_88E1011_psr},
830 {miim_end,}
831 },
832 (struct phy_cmd[]){ /* shutdown */
833 {miim_end,}
834 },
wdenk9d46ea42005-03-14 23:56:42 +0000835};
836
Andy Fleming09f3e092006-09-13 10:34:18 -0500837static unsigned int m88e1145_setmode(uint mii_reg, struct tsec_private *priv)
838{
Andy Fleming09f3e092006-09-13 10:34:18 -0500839 uint mii_data = read_phy_reg(priv, mii_reg);
840
Andy Fleming09f3e092006-09-13 10:34:18 -0500841 /* Setting MIIM_88E1145_PHY_EXT_CR */
842 if (priv->flags & TSEC_REDUCED)
843 return mii_data |
Jon Loeliger89875e92006-10-10 17:03:43 -0500844 MIIM_M88E1145_RGMII_RX_DELAY | MIIM_M88E1145_RGMII_TX_DELAY;
Andy Fleming09f3e092006-09-13 10:34:18 -0500845 else
846 return mii_data;
847}
848
849static struct phy_info phy_info_M88E1145 = {
850 0x01410cd,
851 "Marvell 88E1145",
852 4,
Jon Loeliger89875e92006-10-10 17:03:43 -0500853 (struct phy_cmd[]){ /* config */
854 /* Errata E0, E1 */
855 {29, 0x001b, NULL},
856 {30, 0x418f, NULL},
857 {29, 0x0016, NULL},
858 {30, 0xa2da, NULL},
Andy Fleming09f3e092006-09-13 10:34:18 -0500859
Jon Loeliger89875e92006-10-10 17:03:43 -0500860 /* Reset and configure the PHY */
861 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
862 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
863 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
864 {MIIM_88E1011_PHY_SCR, MIIM_88E1011_PHY_MDI_X_AUTO,
865 NULL},
866 {MIIM_88E1145_PHY_EXT_CR, 0, &m88e1145_setmode},
867 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
868 {MIIM_CONTROL, MIIM_CONTROL_INIT, NULL},
869 {miim_end,}
870 },
871 (struct phy_cmd[]){ /* startup */
872 /* Status is read once to clear old link state */
873 {MIIM_STATUS, miim_read, NULL},
874 /* Auto-negotiate */
875 {MIIM_STATUS, miim_read, &mii_parse_sr},
876 {MIIM_88E1111_PHY_LED_CONTROL,
877 MIIM_88E1111_PHY_LED_DIRECT, NULL},
878 /* Read the Status */
879 {MIIM_88E1011_PHY_STATUS, miim_read,
880 &mii_parse_88E1011_psr},
881 {miim_end,}
882 },
883 (struct phy_cmd[]){ /* shutdown */
884 {miim_end,}
885 },
Andy Fleming09f3e092006-09-13 10:34:18 -0500886};
887
wdenk97d80fc2004-06-09 00:34:46 +0000888struct phy_info phy_info_cis8204 = {
889 0x3f11,
890 "Cicada Cis8204",
891 6,
Jon Loeliger89875e92006-10-10 17:03:43 -0500892 (struct phy_cmd[]){ /* config */
893 /* Override PHY config settings */
894 {MIIM_CIS8201_AUX_CONSTAT,
895 MIIM_CIS8201_AUXCONSTAT_INIT, NULL},
896 /* Configure some basic stuff */
897 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
898 {MIIM_CIS8204_SLED_CON, MIIM_CIS8204_SLEDCON_INIT,
899 &mii_cis8204_fixled},
900 {MIIM_CIS8204_EPHY_CON, MIIM_CIS8204_EPHYCON_INIT,
901 &mii_cis8204_setmode},
902 {miim_end,}
903 },
904 (struct phy_cmd[]){ /* startup */
905 /* Read the Status (2x to make sure link is right) */
906 {MIIM_STATUS, miim_read, NULL},
907 /* Auto-negotiate */
908 {MIIM_STATUS, miim_read, &mii_parse_sr},
909 /* Read the status */
910 {MIIM_CIS8201_AUX_CONSTAT, miim_read,
911 &mii_parse_cis8201},
912 {miim_end,}
913 },
914 (struct phy_cmd[]){ /* shutdown */
915 {miim_end,}
916 },
wdenk97d80fc2004-06-09 00:34:46 +0000917};
918
919/* Cicada 8201 */
920struct phy_info phy_info_cis8201 = {
921 0xfc41,
922 "CIS8201",
923 4,
Jon Loeliger89875e92006-10-10 17:03:43 -0500924 (struct phy_cmd[]){ /* config */
925 /* Override PHY config settings */
926 {MIIM_CIS8201_AUX_CONSTAT,
927 MIIM_CIS8201_AUXCONSTAT_INIT, NULL},
928 /* Set up the interface mode */
929 {MIIM_CIS8201_EXT_CON1, MIIM_CIS8201_EXTCON1_INIT,
930 NULL},
931 /* Configure some basic stuff */
932 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
933 {miim_end,}
934 },
935 (struct phy_cmd[]){ /* startup */
936 /* Read the Status (2x to make sure link is right) */
937 {MIIM_STATUS, miim_read, NULL},
938 /* Auto-negotiate */
939 {MIIM_STATUS, miim_read, &mii_parse_sr},
940 /* Read the status */
941 {MIIM_CIS8201_AUX_CONSTAT, miim_read,
942 &mii_parse_cis8201},
943 {miim_end,}
944 },
945 (struct phy_cmd[]){ /* shutdown */
946 {miim_end,}
947 },
wdenk97d80fc2004-06-09 00:34:46 +0000948};
Jon Loeligerdebb7352006-04-26 17:58:56 -0500949struct phy_info phy_info_VSC8244 = {
Jon Loeliger89875e92006-10-10 17:03:43 -0500950 0x3f1b,
951 "Vitesse VSC8244",
952 6,
953 (struct phy_cmd[]){ /* config */
954 /* Override PHY config settings */
955 /* Configure some basic stuff */
956 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
957 {miim_end,}
958 },
959 (struct phy_cmd[]){ /* startup */
960 /* Read the Status (2x to make sure link is right) */
961 {MIIM_STATUS, miim_read, NULL},
962 /* Auto-negotiate */
963 {MIIM_STATUS, miim_read, &mii_parse_sr},
964 /* Read the status */
965 {MIIM_VSC8244_AUX_CONSTAT, miim_read,
966 &mii_parse_vsc8244},
967 {miim_end,}
968 },
969 (struct phy_cmd[]){ /* shutdown */
970 {miim_end,}
971 },
Jon Loeligerdebb7352006-04-26 17:58:56 -0500972};
wdenk97d80fc2004-06-09 00:34:46 +0000973
wdenk97d80fc2004-06-09 00:34:46 +0000974struct phy_info phy_info_dm9161 = {
975 0x0181b88,
976 "Davicom DM9161E",
977 4,
Jon Loeliger89875e92006-10-10 17:03:43 -0500978 (struct phy_cmd[]){ /* config */
979 {MIIM_CONTROL, MIIM_DM9161_CR_STOP, NULL},
980 /* Do not bypass the scrambler/descrambler */
981 {MIIM_DM9161_SCR, MIIM_DM9161_SCR_INIT, NULL},
982 /* Clear 10BTCSR to default */
983 {MIIM_DM9161_10BTCSR, MIIM_DM9161_10BTCSR_INIT,
984 NULL},
985 /* Configure some basic stuff */
986 {MIIM_CONTROL, MIIM_CR_INIT, NULL},
987 /* Restart Auto Negotiation */
988 {MIIM_CONTROL, MIIM_DM9161_CR_RSTAN, NULL},
989 {miim_end,}
990 },
991 (struct phy_cmd[]){ /* startup */
992 /* Status is read once to clear old link state */
993 {MIIM_STATUS, miim_read, NULL},
994 /* Auto-negotiate */
995 {MIIM_STATUS, miim_read, &mii_parse_sr},
996 /* Read the status */
997 {MIIM_DM9161_SCSR, miim_read,
998 &mii_parse_dm9161_scsr},
999 {miim_end,}
1000 },
1001 (struct phy_cmd[]){ /* shutdown */
1002 {miim_end,}
1003 },
wdenk97d80fc2004-06-09 00:34:46 +00001004};
1005
wdenk3dd7f0f2005-04-04 23:43:44 +00001006uint mii_parse_lxt971_sr2(uint mii_reg, struct tsec_private *priv)
1007{
wdenk3c2b3d42005-04-05 23:32:21 +00001008 unsigned int speed;
1009 if (priv->link) {
1010 speed = mii_reg & MIIM_LXT971_SR2_SPEED_MASK;
wdenk3dd7f0f2005-04-04 23:43:44 +00001011
wdenk3c2b3d42005-04-05 23:32:21 +00001012 switch (speed) {
1013 case MIIM_LXT971_SR2_10HDX:
1014 priv->speed = 10;
1015 priv->duplexity = 0;
1016 break;
1017 case MIIM_LXT971_SR2_10FDX:
1018 priv->speed = 10;
1019 priv->duplexity = 1;
1020 break;
1021 case MIIM_LXT971_SR2_100HDX:
1022 priv->speed = 100;
1023 priv->duplexity = 0;
1024 default:
1025 priv->speed = 100;
1026 priv->duplexity = 1;
1027 break;
1028 }
1029 } else {
1030 priv->speed = 0;
1031 priv->duplexity = 0;
1032 }
wdenk3dd7f0f2005-04-04 23:43:44 +00001033
wdenk3c2b3d42005-04-05 23:32:21 +00001034 return 0;
wdenk3dd7f0f2005-04-04 23:43:44 +00001035}
1036
wdenk9d46ea42005-03-14 23:56:42 +00001037static struct phy_info phy_info_lxt971 = {
1038 0x0001378e,
1039 "LXT971",
1040 4,
Jon Loeliger89875e92006-10-10 17:03:43 -05001041 (struct phy_cmd[]){ /* config */
1042 {MIIM_CR, MIIM_CR_INIT, mii_cr_init}, /* autonegotiate */
1043 {miim_end,}
1044 },
1045 (struct phy_cmd[]){ /* startup - enable interrupts */
1046 /* { 0x12, 0x00f2, NULL }, */
1047 {MIIM_STATUS, miim_read, NULL},
1048 {MIIM_STATUS, miim_read, &mii_parse_sr},
1049 {MIIM_LXT971_SR2, miim_read, &mii_parse_lxt971_sr2},
1050 {miim_end,}
1051 },
1052 (struct phy_cmd[]){ /* shutdown - disable interrupts */
1053 {miim_end,}
1054 },
wdenk9d46ea42005-03-14 23:56:42 +00001055};
1056
Wolfgang Denkbe5048f2006-03-12 22:50:55 +01001057/* Parse the DP83865's link and auto-neg status register for speed and duplex
Jon Loeliger89875e92006-10-10 17:03:43 -05001058 * information
1059 */
Wolfgang Denkbe5048f2006-03-12 22:50:55 +01001060uint mii_parse_dp83865_lanr(uint mii_reg, struct tsec_private *priv)
1061{
1062 switch (mii_reg & MIIM_DP83865_SPD_MASK) {
1063
1064 case MIIM_DP83865_SPD_1000:
1065 priv->speed = 1000;
1066 break;
1067
1068 case MIIM_DP83865_SPD_100:
1069 priv->speed = 100;
1070 break;
1071
1072 default:
1073 priv->speed = 10;
1074 break;
1075
1076 }
1077
1078 if (mii_reg & MIIM_DP83865_DPX_FULL)
1079 priv->duplexity = 1;
1080 else
1081 priv->duplexity = 0;
1082
1083 return 0;
1084}
1085
1086struct phy_info phy_info_dp83865 = {
1087 0x20005c7,
1088 "NatSemi DP83865",
1089 4,
Jon Loeliger89875e92006-10-10 17:03:43 -05001090 (struct phy_cmd[]){ /* config */
1091 {MIIM_CONTROL, MIIM_DP83865_CR_INIT, NULL},
1092 {miim_end,}
1093 },
1094 (struct phy_cmd[]){ /* startup */
1095 /* Status is read once to clear old link state */
1096 {MIIM_STATUS, miim_read, NULL},
1097 /* Auto-negotiate */
1098 {MIIM_STATUS, miim_read, &mii_parse_sr},
1099 /* Read the link and auto-neg status */
1100 {MIIM_DP83865_LANR, miim_read,
1101 &mii_parse_dp83865_lanr},
1102 {miim_end,}
1103 },
1104 (struct phy_cmd[]){ /* shutdown */
1105 {miim_end,}
1106 },
Wolfgang Denkbe5048f2006-03-12 22:50:55 +01001107};
1108
wdenk97d80fc2004-06-09 00:34:46 +00001109struct phy_info *phy_info[] = {
1110#if 0
1111 &phy_info_cis8201,
1112#endif
1113 &phy_info_cis8204,
1114 &phy_info_M88E1011S,
wdenk9d46ea42005-03-14 23:56:42 +00001115 &phy_info_M88E1111S,
Andy Fleming09f3e092006-09-13 10:34:18 -05001116 &phy_info_M88E1145,
wdenk97d80fc2004-06-09 00:34:46 +00001117 &phy_info_dm9161,
wdenk9d46ea42005-03-14 23:56:42 +00001118 &phy_info_lxt971,
Jon Loeligerdebb7352006-04-26 17:58:56 -05001119 &phy_info_VSC8244,
Wolfgang Denkbe5048f2006-03-12 22:50:55 +01001120 &phy_info_dp83865,
wdenk97d80fc2004-06-09 00:34:46 +00001121 NULL
1122};
1123
wdenk97d80fc2004-06-09 00:34:46 +00001124/* Grab the identifier of the device's PHY, and search through
wdenk9d46ea42005-03-14 23:56:42 +00001125 * all of the known PHYs to see if one matches. If so, return
Jon Loeliger89875e92006-10-10 17:03:43 -05001126 * it, if not, return NULL
1127 */
1128struct phy_info *get_phy_info(struct eth_device *dev)
wdenk97d80fc2004-06-09 00:34:46 +00001129{
1130 struct tsec_private *priv = (struct tsec_private *)dev->priv;
1131 uint phy_reg, phy_ID;
1132 int i;
1133 struct phy_info *theInfo = NULL;
1134
1135 /* Grab the bits from PHYIR1, and put them in the upper half */
1136 phy_reg = read_phy_reg(priv, MIIM_PHYIR1);
1137 phy_ID = (phy_reg & 0xffff) << 16;
1138
1139 /* Grab the bits from PHYIR2, and put them in the lower half */
1140 phy_reg = read_phy_reg(priv, MIIM_PHYIR2);
1141 phy_ID |= (phy_reg & 0xffff);
1142
1143 /* loop through all the known PHY types, and find one that */
1144 /* matches the ID we read from the PHY. */
Jon Loeliger89875e92006-10-10 17:03:43 -05001145 for (i = 0; phy_info[i]; i++) {
1146 if (phy_info[i]->id == (phy_ID >> phy_info[i]->shift))
wdenk97d80fc2004-06-09 00:34:46 +00001147 theInfo = phy_info[i];
1148 }
1149
Jon Loeliger89875e92006-10-10 17:03:43 -05001150 if (theInfo == NULL) {
wdenk97d80fc2004-06-09 00:34:46 +00001151 printf("%s: PHY id %x is not supported!\n", dev->name, phy_ID);
1152 return NULL;
1153 } else {
Stefan Roese5810dc32005-09-21 18:20:22 +02001154 debug("%s: PHY is %s (%x)\n", dev->name, theInfo->name, phy_ID);
wdenk97d80fc2004-06-09 00:34:46 +00001155 }
1156
1157 return theInfo;
1158}
1159
wdenk97d80fc2004-06-09 00:34:46 +00001160/* Execute the given series of commands on the given device's
Jon Loeliger89875e92006-10-10 17:03:43 -05001161 * PHY, running functions as necessary
1162 */
wdenk97d80fc2004-06-09 00:34:46 +00001163void phy_run_commands(struct tsec_private *priv, struct phy_cmd *cmd)
1164{
1165 int i;
1166 uint result;
1167 volatile tsec_t *phyregs = priv->phyregs;
1168
1169 phyregs->miimcfg = MIIMCFG_RESET;
1170
1171 phyregs->miimcfg = MIIMCFG_INIT_VALUE;
1172
Jon Loeliger89875e92006-10-10 17:03:43 -05001173 while (phyregs->miimind & MIIMIND_BUSY) ;
wdenk97d80fc2004-06-09 00:34:46 +00001174
Jon Loeliger89875e92006-10-10 17:03:43 -05001175 for (i = 0; cmd->mii_reg != miim_end; i++) {
1176 if (cmd->mii_data == miim_read) {
wdenk97d80fc2004-06-09 00:34:46 +00001177 result = read_phy_reg(priv, cmd->mii_reg);
1178
Jon Loeliger89875e92006-10-10 17:03:43 -05001179 if (cmd->funct != NULL)
1180 (*(cmd->funct)) (result, priv);
wdenk97d80fc2004-06-09 00:34:46 +00001181
1182 } else {
Jon Loeliger89875e92006-10-10 17:03:43 -05001183 if (cmd->funct != NULL)
1184 result = (*(cmd->funct)) (cmd->mii_reg, priv);
wdenk97d80fc2004-06-09 00:34:46 +00001185 else
1186 result = cmd->mii_data;
1187
1188 write_phy_reg(priv, cmd->mii_reg, result);
1189
1190 }
1191 cmd++;
1192 }
1193}
1194
wdenk97d80fc2004-06-09 00:34:46 +00001195/* Relocate the function pointers in the phy cmd lists */
1196static void relocate_cmds(void)
1197{
1198 struct phy_cmd **cmdlistptr;
1199 struct phy_cmd *cmd;
Jon Loeliger89875e92006-10-10 17:03:43 -05001200 int i, j, k;
wdenk97d80fc2004-06-09 00:34:46 +00001201
Jon Loeliger89875e92006-10-10 17:03:43 -05001202 for (i = 0; phy_info[i]; i++) {
wdenk97d80fc2004-06-09 00:34:46 +00001203 /* First thing's first: relocate the pointers to the
1204 * PHY command structures (the structs were done) */
Jon Loeliger89875e92006-10-10 17:03:43 -05001205 phy_info[i] = (struct phy_info *)((uint) phy_info[i]
1206 + gd->reloc_off);
wdenk97d80fc2004-06-09 00:34:46 +00001207 phy_info[i]->name += gd->reloc_off;
1208 phy_info[i]->config =
Jon Loeliger89875e92006-10-10 17:03:43 -05001209 (struct phy_cmd *)((uint) phy_info[i]->config
1210 + gd->reloc_off);
wdenk97d80fc2004-06-09 00:34:46 +00001211 phy_info[i]->startup =
Jon Loeliger89875e92006-10-10 17:03:43 -05001212 (struct phy_cmd *)((uint) phy_info[i]->startup
1213 + gd->reloc_off);
wdenk97d80fc2004-06-09 00:34:46 +00001214 phy_info[i]->shutdown =
Jon Loeliger89875e92006-10-10 17:03:43 -05001215 (struct phy_cmd *)((uint) phy_info[i]->shutdown
1216 + gd->reloc_off);
wdenk97d80fc2004-06-09 00:34:46 +00001217
1218 cmdlistptr = &phy_info[i]->config;
Jon Loeliger89875e92006-10-10 17:03:43 -05001219 j = 0;
1220 for (; cmdlistptr <= &phy_info[i]->shutdown; cmdlistptr++) {
1221 k = 0;
1222 for (cmd = *cmdlistptr;
1223 cmd->mii_reg != miim_end;
1224 cmd++) {
wdenk97d80fc2004-06-09 00:34:46 +00001225 /* Only relocate non-NULL pointers */
Jon Loeliger89875e92006-10-10 17:03:43 -05001226 if (cmd->funct)
wdenk97d80fc2004-06-09 00:34:46 +00001227 cmd->funct += gd->reloc_off;
1228
1229 k++;
1230 }
1231 j++;
1232 }
1233 }
1234
1235 relocated = 1;
1236}
1237
Marian Balakowicz63ff0042005-10-28 22:30:33 +02001238#if defined(CONFIG_MII) || (CONFIG_COMMANDS & CFG_CMD_MII) \
1239 && !defined(BITBANGMII)
wdenk97d80fc2004-06-09 00:34:46 +00001240
Jon Loeliger89875e92006-10-10 17:03:43 -05001241struct tsec_private *get_priv_for_phy(unsigned char phyaddr)
wdenk97d80fc2004-06-09 00:34:46 +00001242{
1243 int i;
1244
Jon Loeliger89875e92006-10-10 17:03:43 -05001245 for (i = 0; i < MAXCONTROLLERS; i++) {
1246 if (privlist[i]->phyaddr == phyaddr)
wdenk97d80fc2004-06-09 00:34:46 +00001247 return privlist[i];
1248 }
1249
1250 return NULL;
1251}
1252
wdenk7abf0c52004-04-18 21:45:42 +00001253/*
1254 * Read a MII PHY register.
1255 *
1256 * Returns:
wdenk97d80fc2004-06-09 00:34:46 +00001257 * 0 on success
wdenk7abf0c52004-04-18 21:45:42 +00001258 */
Marian Balakowicz63ff0042005-10-28 22:30:33 +02001259static int tsec_miiphy_read(char *devname, unsigned char addr,
Jon Loeliger89875e92006-10-10 17:03:43 -05001260 unsigned char reg, unsigned short *value)
wdenk7abf0c52004-04-18 21:45:42 +00001261{
wdenk97d80fc2004-06-09 00:34:46 +00001262 unsigned short ret;
1263 struct tsec_private *priv = get_priv_for_phy(addr);
wdenk7abf0c52004-04-18 21:45:42 +00001264
Jon Loeliger89875e92006-10-10 17:03:43 -05001265 if (NULL == priv) {
wdenk97d80fc2004-06-09 00:34:46 +00001266 printf("Can't read PHY at address %d\n", addr);
1267 return -1;
1268 }
1269
1270 ret = (unsigned short)read_phy_reg(priv, reg);
1271 *value = ret;
wdenk7abf0c52004-04-18 21:45:42 +00001272
1273 return 0;
1274}
1275
1276/*
1277 * Write a MII PHY register.
1278 *
1279 * Returns:
wdenk97d80fc2004-06-09 00:34:46 +00001280 * 0 on success
wdenk7abf0c52004-04-18 21:45:42 +00001281 */
Marian Balakowicz63ff0042005-10-28 22:30:33 +02001282static int tsec_miiphy_write(char *devname, unsigned char addr,
Jon Loeliger89875e92006-10-10 17:03:43 -05001283 unsigned char reg, unsigned short value)
wdenk7abf0c52004-04-18 21:45:42 +00001284{
wdenk97d80fc2004-06-09 00:34:46 +00001285 struct tsec_private *priv = get_priv_for_phy(addr);
wdenk7abf0c52004-04-18 21:45:42 +00001286
Jon Loeliger89875e92006-10-10 17:03:43 -05001287 if (NULL == priv) {
wdenk97d80fc2004-06-09 00:34:46 +00001288 printf("Can't write PHY at address %d\n", addr);
1289 return -1;
1290 }
1291
1292 write_phy_reg(priv, reg, value);
wdenk7abf0c52004-04-18 21:45:42 +00001293
1294 return 0;
1295}
wdenk97d80fc2004-06-09 00:34:46 +00001296
Marian Balakowicz63ff0042005-10-28 22:30:33 +02001297#endif /* defined(CONFIG_MII) || (CONFIG_COMMANDS & CFG_CMD_MII)
1298 && !defined(BITBANGMII) */
wdenk97d80fc2004-06-09 00:34:46 +00001299
wdenk42d1f032003-10-15 23:53:47 +00001300#endif /* CONFIG_TSEC_ENET */