blob: 0fb3ca229cbbcbee9559eb31ce54c69e6ebbfe71 [file] [log] [blame]
wdenk42d1f032003-10-15 23:53:47 +00001/*
2 * tsec.c
wdenk97d80fc2004-06-09 00:34:46 +00003 * Freescale Three Speed Ethernet Controller driver
wdenk42d1f032003-10-15 23:53:47 +00004 *
5 * This software may be used and distributed according to the
6 * terms of the GNU Public License, Version 2, incorporated
7 * herein by reference.
8 *
wdenk97d80fc2004-06-09 00:34:46 +00009 * Copyright 2004 Freescale Semiconductor.
wdenk42d1f032003-10-15 23:53:47 +000010 * (C) Copyright 2003, Motorola, Inc.
wdenk42d1f032003-10-15 23:53:47 +000011 * author Andy Fleming
12 *
13 */
14
15#include <config.h>
16#include <mpc85xx.h>
Jon Loeligerdebb7352006-04-26 17:58:56 -050017#include <mpc86xx.h>
wdenk42d1f032003-10-15 23:53:47 +000018#include <common.h>
19#include <malloc.h>
20#include <net.h>
21#include <command.h>
22
23#if defined(CONFIG_TSEC_ENET)
24#include "tsec.h"
Marian Balakowicz63ff0042005-10-28 22:30:33 +020025#include "miiphy.h"
wdenk42d1f032003-10-15 23:53:47 +000026
Wolfgang Denkd87080b2006-03-31 18:32:53 +020027DECLARE_GLOBAL_DATA_PTR;
28
Marian Balakowicz63ff0042005-10-28 22:30:33 +020029#define TX_BUF_CNT 2
wdenk42d1f032003-10-15 23:53:47 +000030
wdenk42d1f032003-10-15 23:53:47 +000031static uint rxIdx; /* index of the current RX buffer */
32static uint txIdx; /* index of the current TX buffer */
33
34typedef volatile struct rtxbd {
35 txbd8_t txbd[TX_BUF_CNT];
36 rxbd8_t rxbd[PKTBUFSRX];
37} RTXBD;
38
wdenk97d80fc2004-06-09 00:34:46 +000039struct tsec_info_struct {
40 unsigned int phyaddr;
Jon Loeligerd9b94f22005-07-25 14:05:07 -050041 u32 flags;
wdenk97d80fc2004-06-09 00:34:46 +000042 unsigned int phyregidx;
43};
44
45
46/* The tsec_info structure contains 3 values which the
47 * driver uses to determine how to operate a given ethernet
Andy Fleming09f3e092006-09-13 10:34:18 -050048 * device. The information needed is:
wdenk97d80fc2004-06-09 00:34:46 +000049 * phyaddr - The address of the PHY which is attached to
wdenk9d46ea42005-03-14 23:56:42 +000050 * the given device.
wdenk97d80fc2004-06-09 00:34:46 +000051 *
Jon Loeligerd9b94f22005-07-25 14:05:07 -050052 * flags - This variable indicates whether the device
53 * supports gigabit speed ethernet, and whether it should be
54 * in reduced mode.
wdenk97d80fc2004-06-09 00:34:46 +000055 *
56 * phyregidx - This variable specifies which ethernet device
wdenk9d46ea42005-03-14 23:56:42 +000057 * controls the MII Management registers which are connected
Andy Fleming09f3e092006-09-13 10:34:18 -050058 * to the PHY. For now, only TSEC1 (index 0) has
wdenk9d46ea42005-03-14 23:56:42 +000059 * access to the PHYs, so all of the entries have "0".
wdenk97d80fc2004-06-09 00:34:46 +000060 *
61 * The values specified in the table are taken from the board's
62 * config file in include/configs/. When implementing a new
63 * board with ethernet capability, it is necessary to define:
Andy Fleming09f3e092006-09-13 10:34:18 -050064 * TSECn_PHY_ADDR
65 * TSECn_PHYIDX
wdenk97d80fc2004-06-09 00:34:46 +000066 *
Andy Fleming09f3e092006-09-13 10:34:18 -050067 * for n = 1,2,3, etc. And for FEC:
wdenk97d80fc2004-06-09 00:34:46 +000068 * FEC_PHY_ADDR
69 * FEC_PHYIDX
70 */
71static struct tsec_info_struct tsec_info[] = {
Eran Libertyf046ccd2005-07-28 10:08:46 -050072#if defined(CONFIG_MPC85XX_TSEC1) || defined(CONFIG_MPC83XX_TSEC1)
Jon Loeligerd9b94f22005-07-25 14:05:07 -050073 {TSEC1_PHY_ADDR, TSEC_GIGABIT, TSEC1_PHYIDX},
Jon Loeligerdebb7352006-04-26 17:58:56 -050074#elif defined(CONFIG_MPC86XX_TSEC1)
75 {TSEC1_PHY_ADDR, TSEC_GIGABIT | TSEC_REDUCED, TSEC1_PHYIDX},
wdenk9d46ea42005-03-14 23:56:42 +000076#else
77 { 0, 0, 0},
wdenk97d80fc2004-06-09 00:34:46 +000078#endif
Eran Libertyf046ccd2005-07-28 10:08:46 -050079#if defined(CONFIG_MPC85XX_TSEC2) || defined(CONFIG_MPC83XX_TSEC2)
Jon Loeligerd9b94f22005-07-25 14:05:07 -050080 {TSEC2_PHY_ADDR, TSEC_GIGABIT, TSEC2_PHYIDX},
Jon Loeligerdebb7352006-04-26 17:58:56 -050081#elif defined(CONFIG_MPC86XX_TSEC2)
82 {TSEC2_PHY_ADDR, TSEC_GIGABIT | TSEC_REDUCED, TSEC2_PHYIDX},
wdenk9d46ea42005-03-14 23:56:42 +000083#else
84 { 0, 0, 0},
wdenk97d80fc2004-06-09 00:34:46 +000085#endif
86#ifdef CONFIG_MPC85XX_FEC
87 {FEC_PHY_ADDR, 0, FEC_PHYIDX},
wdenk9d46ea42005-03-14 23:56:42 +000088#else
Jon Loeligerdebb7352006-04-26 17:58:56 -050089#if defined(CONFIG_MPC85XX_TSEC3) || defined(CONFIG_MPC83XX_TSEC3) || defined(CONFIG_MPC86XX_TSEC3)
Jon Loeligerd9b94f22005-07-25 14:05:07 -050090 {TSEC3_PHY_ADDR, TSEC_GIGABIT | TSEC_REDUCED, TSEC3_PHYIDX},
Jon Loeligerdebb7352006-04-26 17:58:56 -050091#else
wdenk9d46ea42005-03-14 23:56:42 +000092 { 0, 0, 0},
Jon Loeligerdebb7352006-04-26 17:58:56 -050093#endif
Jon Loeliger504b5cd2006-09-19 10:02:20 -050094#if defined(CONFIG_MPC85XX_TSEC4) || defined(CONFIG_MPC83XX_TSEC4) || defined(CONFIG_MPC86XX_TSEC4)
Andy Fleming09f3e092006-09-13 10:34:18 -050095 {TSEC4_PHY_ADDR, TSEC_GIGABIT | TSEC_REDUCED, TSEC4_PHYIDX},
Jon Loeligerdebb7352006-04-26 17:58:56 -050096#else
Jon Loeligerd9b94f22005-07-25 14:05:07 -050097 { 0, 0, 0},
Jon Loeligerdebb7352006-04-26 17:58:56 -050098#endif
wdenk97d80fc2004-06-09 00:34:46 +000099#endif
100};
101
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500102#define MAXCONTROLLERS (4)
wdenk97d80fc2004-06-09 00:34:46 +0000103
104static int relocated = 0;
105
106static struct tsec_private *privlist[MAXCONTROLLERS];
107
wdenk42d1f032003-10-15 23:53:47 +0000108#ifdef __GNUC__
109static RTXBD rtx __attribute__ ((aligned(8)));
110#else
111#error "rtx must be 64-bit aligned"
112#endif
113
114static int tsec_send(struct eth_device* dev, volatile void *packet, int length);
115static int tsec_recv(struct eth_device* dev);
116static int tsec_init(struct eth_device* dev, bd_t * bd);
117static void tsec_halt(struct eth_device* dev);
wdenk97d80fc2004-06-09 00:34:46 +0000118static void init_registers(volatile tsec_t *regs);
119static void startup_tsec(struct eth_device *dev);
120static int init_phy(struct eth_device *dev);
121void write_phy_reg(struct tsec_private *priv, uint regnum, uint value);
122uint read_phy_reg(struct tsec_private *priv, uint regnum);
123struct phy_info * get_phy_info(struct eth_device *dev);
124void phy_run_commands(struct tsec_private *priv, struct phy_cmd *cmd);
125static void adjust_link(struct eth_device *dev);
126static void relocate_cmds(void);
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200127static int tsec_miiphy_write(char *devname, unsigned char addr,
128 unsigned char reg, unsigned short value);
129static int tsec_miiphy_read(char *devname, unsigned char addr,
130 unsigned char reg, unsigned short *value);
wdenk7abf0c52004-04-18 21:45:42 +0000131
wdenk97d80fc2004-06-09 00:34:46 +0000132/* Initialize device structure. Returns success if PHY
133 * initialization succeeded (i.e. if it recognizes the PHY)
134 */
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500135int tsec_initialize(bd_t *bis, int index, char *devname)
wdenk42d1f032003-10-15 23:53:47 +0000136{
137 struct eth_device* dev;
138 int i;
wdenk97d80fc2004-06-09 00:34:46 +0000139 struct tsec_private *priv;
wdenk42d1f032003-10-15 23:53:47 +0000140
141 dev = (struct eth_device*) malloc(sizeof *dev);
142
wdenk97d80fc2004-06-09 00:34:46 +0000143 if(NULL == dev)
wdenk42d1f032003-10-15 23:53:47 +0000144 return 0;
145
146 memset(dev, 0, sizeof *dev);
147
wdenk97d80fc2004-06-09 00:34:46 +0000148 priv = (struct tsec_private *) malloc(sizeof(*priv));
149
150 if(NULL == priv)
151 return 0;
152
153 privlist[index] = priv;
154 priv->regs = (volatile tsec_t *)(TSEC_BASE_ADDR + index*TSEC_SIZE);
155 priv->phyregs = (volatile tsec_t *)(TSEC_BASE_ADDR +
156 tsec_info[index].phyregidx*TSEC_SIZE);
157
158 priv->phyaddr = tsec_info[index].phyaddr;
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500159 priv->flags = tsec_info[index].flags;
wdenk97d80fc2004-06-09 00:34:46 +0000160
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500161 sprintf(dev->name, devname);
wdenk42d1f032003-10-15 23:53:47 +0000162 dev->iobase = 0;
wdenk97d80fc2004-06-09 00:34:46 +0000163 dev->priv = priv;
wdenk42d1f032003-10-15 23:53:47 +0000164 dev->init = tsec_init;
165 dev->halt = tsec_halt;
166 dev->send = tsec_send;
167 dev->recv = tsec_recv;
168
169 /* Tell u-boot to get the addr from the env */
170 for(i=0;i<6;i++)
171 dev->enetaddr[i] = 0;
172
173 eth_register(dev);
174
wdenk7abf0c52004-04-18 21:45:42 +0000175
wdenk97d80fc2004-06-09 00:34:46 +0000176 /* Reset the MAC */
177 priv->regs->maccfg1 |= MACCFG1_SOFT_RESET;
178 priv->regs->maccfg1 &= ~(MACCFG1_SOFT_RESET);
wdenk7abf0c52004-04-18 21:45:42 +0000179
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200180#if defined(CONFIG_MII) || (CONFIG_COMMANDS & CFG_CMD_MII) \
181 && !defined(BITBANGMII)
182 miiphy_register(dev->name, tsec_miiphy_read, tsec_miiphy_write);
183#endif
184
wdenk97d80fc2004-06-09 00:34:46 +0000185 /* Try to initialize PHY here, and return */
186 return init_phy(dev);
wdenk42d1f032003-10-15 23:53:47 +0000187}
188
189
190/* Initializes data structures and registers for the controller,
wdenk9d46ea42005-03-14 23:56:42 +0000191 * and brings the interface up. Returns the link status, meaning
wdenk97d80fc2004-06-09 00:34:46 +0000192 * that it returns success if the link is up, failure otherwise.
193 * This allows u-boot to find the first active controller. */
wdenk42d1f032003-10-15 23:53:47 +0000194int tsec_init(struct eth_device* dev, bd_t * bd)
195{
wdenk42d1f032003-10-15 23:53:47 +0000196 uint tempval;
197 char tmpbuf[MAC_ADDR_LEN];
198 int i;
wdenk97d80fc2004-06-09 00:34:46 +0000199 struct tsec_private *priv = (struct tsec_private *)dev->priv;
200 volatile tsec_t *regs = priv->regs;
wdenk42d1f032003-10-15 23:53:47 +0000201
202 /* Make sure the controller is stopped */
203 tsec_halt(dev);
204
wdenk97d80fc2004-06-09 00:34:46 +0000205 /* Init MACCFG2. Defaults to GMII */
wdenk42d1f032003-10-15 23:53:47 +0000206 regs->maccfg2 = MACCFG2_INIT_SETTINGS;
207
208 /* Init ECNTRL */
209 regs->ecntrl = ECNTRL_INIT_SETTINGS;
210
211 /* Copy the station address into the address registers.
212 * Backwards, because little endian MACS are dumb */
213 for(i=0;i<MAC_ADDR_LEN;i++) {
wdenk97d80fc2004-06-09 00:34:46 +0000214 tmpbuf[MAC_ADDR_LEN - 1 - i] = dev->enetaddr[i];
wdenk42d1f032003-10-15 23:53:47 +0000215 }
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200216 regs->macstnaddr1 = *((uint *)(tmpbuf));
wdenk42d1f032003-10-15 23:53:47 +0000217
218 tempval = *((uint *)(tmpbuf +4));
219
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200220 regs->macstnaddr2 = tempval;
wdenk42d1f032003-10-15 23:53:47 +0000221
wdenk42d1f032003-10-15 23:53:47 +0000222 /* reset the indices to zero */
223 rxIdx = 0;
224 txIdx = 0;
225
226 /* Clear out (for the most part) the other registers */
227 init_registers(regs);
228
229 /* Ready the device for tx/rx */
wdenk97d80fc2004-06-09 00:34:46 +0000230 startup_tsec(dev);
wdenk42d1f032003-10-15 23:53:47 +0000231
wdenk97d80fc2004-06-09 00:34:46 +0000232 /* If there's no link, fail */
233 return priv->link;
wdenk42d1f032003-10-15 23:53:47 +0000234
235}
236
237
wdenk97d80fc2004-06-09 00:34:46 +0000238/* Write value to the device's PHY through the registers
239 * specified in priv, modifying the register specified in regnum.
240 * It will wait for the write to be done (or for a timeout to
241 * expire) before exiting
242 */
243void write_phy_reg(struct tsec_private *priv, uint regnum, uint value)
244{
245 volatile tsec_t *regbase = priv->phyregs;
246 uint phyid = priv->phyaddr;
247 int timeout=1000000;
248
249 regbase->miimadd = (phyid << 8) | regnum;
250 regbase->miimcon = value;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500251 asm("sync");
wdenk97d80fc2004-06-09 00:34:46 +0000252
253 timeout=1000000;
254 while((regbase->miimind & MIIMIND_BUSY) && timeout--);
255}
256
257
258/* Reads register regnum on the device's PHY through the
wdenk9d46ea42005-03-14 23:56:42 +0000259 * registers specified in priv. It lowers and raises the read
wdenk97d80fc2004-06-09 00:34:46 +0000260 * command, and waits for the data to become valid (miimind
261 * notvalid bit cleared), and the bus to cease activity (miimind
262 * busy bit cleared), and then returns the value
263 */
264uint read_phy_reg(struct tsec_private *priv, uint regnum)
wdenk42d1f032003-10-15 23:53:47 +0000265{
266 uint value;
wdenk97d80fc2004-06-09 00:34:46 +0000267 volatile tsec_t *regbase = priv->phyregs;
268 uint phyid = priv->phyaddr;
wdenk42d1f032003-10-15 23:53:47 +0000269
wdenk97d80fc2004-06-09 00:34:46 +0000270 /* Put the address of the phy, and the register
271 * number into MIIMADD */
272 regbase->miimadd = (phyid << 8) | regnum;
wdenk42d1f032003-10-15 23:53:47 +0000273
274 /* Clear the command register, and wait */
275 regbase->miimcom = 0;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500276 asm("sync");
wdenk42d1f032003-10-15 23:53:47 +0000277
278 /* Initiate a read command, and wait */
279 regbase->miimcom = MIIM_READ_COMMAND;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500280 asm("sync");
wdenk42d1f032003-10-15 23:53:47 +0000281
282 /* Wait for the the indication that the read is done */
283 while((regbase->miimind & (MIIMIND_NOTVALID | MIIMIND_BUSY)));
284
285 /* Grab the value read from the PHY */
286 value = regbase->miimstat;
287
288 return value;
289}
290
wdenk97d80fc2004-06-09 00:34:46 +0000291
292/* Discover which PHY is attached to the device, and configure it
293 * properly. If the PHY is not recognized, then return 0
294 * (failure). Otherwise, return 1
295 */
296static int init_phy(struct eth_device *dev)
wdenk42d1f032003-10-15 23:53:47 +0000297{
wdenk97d80fc2004-06-09 00:34:46 +0000298 struct tsec_private *priv = (struct tsec_private *)dev->priv;
299 struct phy_info *curphy;
wdenk42d1f032003-10-15 23:53:47 +0000300
301 /* Assign a Physical address to the TBI */
wdenk3c2b3d42005-04-05 23:32:21 +0000302
wdenk3dd7f0f2005-04-04 23:43:44 +0000303 {
304 volatile tsec_t *regs = (volatile tsec_t *)(TSEC_BASE_ADDR);
305 regs->tbipa = TBIPA_VALUE;
306 regs = (volatile tsec_t *)(TSEC_BASE_ADDR + TSEC_SIZE);
307 regs->tbipa = TBIPA_VALUE;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500308 asm("sync");
wdenk3dd7f0f2005-04-04 23:43:44 +0000309 }
310
311 /* Reset MII (due to new addresses) */
312 priv->phyregs->miimcfg = MIIMCFG_RESET;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500313 asm("sync");
wdenk3dd7f0f2005-04-04 23:43:44 +0000314 priv->phyregs->miimcfg = MIIMCFG_INIT_VALUE;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500315 asm("sync");
wdenk3dd7f0f2005-04-04 23:43:44 +0000316 while(priv->phyregs->miimind & MIIMIND_BUSY);
wdenk42d1f032003-10-15 23:53:47 +0000317
wdenk97d80fc2004-06-09 00:34:46 +0000318 if(0 == relocated)
319 relocate_cmds();
wdenk42d1f032003-10-15 23:53:47 +0000320
wdenk97d80fc2004-06-09 00:34:46 +0000321 /* Get the cmd structure corresponding to the attached
322 * PHY */
323 curphy = get_phy_info(dev);
wdenk42d1f032003-10-15 23:53:47 +0000324
wdenk97d80fc2004-06-09 00:34:46 +0000325 if(NULL == curphy) {
326 printf("%s: No PHY found\n", dev->name);
wdenk42d1f032003-10-15 23:53:47 +0000327
wdenk97d80fc2004-06-09 00:34:46 +0000328 return 0;
wdenk42d1f032003-10-15 23:53:47 +0000329 }
330
wdenk97d80fc2004-06-09 00:34:46 +0000331 priv->phyinfo = curphy;
wdenk42d1f032003-10-15 23:53:47 +0000332
wdenk97d80fc2004-06-09 00:34:46 +0000333 phy_run_commands(priv, priv->phyinfo->config);
wdenk42d1f032003-10-15 23:53:47 +0000334
wdenk97d80fc2004-06-09 00:34:46 +0000335 return 1;
wdenk42d1f032003-10-15 23:53:47 +0000336}
337
338
wdenk97d80fc2004-06-09 00:34:46 +0000339/* Returns which value to write to the control register. */
340/* For 10/100, the value is slightly different */
341uint mii_cr_init(uint mii_reg, struct tsec_private *priv)
342{
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500343 if(priv->flags & TSEC_GIGABIT)
wdenk97d80fc2004-06-09 00:34:46 +0000344 return MIIM_CONTROL_INIT;
345 else
346 return MIIM_CR_INIT;
347}
348
349
350/* Parse the status register for link, and then do
351 * auto-negotiation */
352uint mii_parse_sr(uint mii_reg, struct tsec_private *priv)
353{
Stefan Roese5810dc32005-09-21 18:20:22 +0200354 /*
355 * Wait if PHY is capable of autonegotiation and autonegotiation is not complete
356 */
357 mii_reg = read_phy_reg(priv, MIIM_STATUS);
358 if ((mii_reg & PHY_BMSR_AUTN_ABLE) && !(mii_reg & PHY_BMSR_AUTN_COMP)) {
359 int i = 0;
wdenk97d80fc2004-06-09 00:34:46 +0000360
Stefan Roese5810dc32005-09-21 18:20:22 +0200361 puts ("Waiting for PHY auto negotiation to complete");
362 while (!((mii_reg & PHY_BMSR_AUTN_COMP) && (mii_reg & MIIM_STATUS_LINK))) {
363 /*
364 * Timeout reached ?
365 */
366 if (i > PHY_AUTONEGOTIATE_TIMEOUT) {
367 puts (" TIMEOUT !\n");
368 priv->link = 0;
Jin Zhengxiong-R64188fcfb9a52006-06-27 18:12:23 +0800369 return 0;
Stefan Roese5810dc32005-09-21 18:20:22 +0200370 }
wdenk97d80fc2004-06-09 00:34:46 +0000371
Stefan Roese5810dc32005-09-21 18:20:22 +0200372 if ((i++ % 1000) == 0) {
373 putc ('.');
374 }
375 udelay (1000); /* 1 ms */
wdenk97d80fc2004-06-09 00:34:46 +0000376 mii_reg = read_phy_reg(priv, MIIM_STATUS);
Stefan Roese5810dc32005-09-21 18:20:22 +0200377 }
378 puts (" done\n");
379 priv->link = 1;
380 udelay (500000); /* another 500 ms (results in faster booting) */
381 } else {
382 priv->link = 1;
wdenk97d80fc2004-06-09 00:34:46 +0000383 }
384
385 return 0;
386}
387
388
389/* Parse the 88E1011's status register for speed and duplex
390 * information */
391uint mii_parse_88E1011_psr(uint mii_reg, struct tsec_private *priv)
392{
393 uint speed;
394
Stefan Roese5810dc32005-09-21 18:20:22 +0200395 mii_reg = read_phy_reg(priv, MIIM_88E1011_PHY_STATUS);
396
397 if (!((mii_reg & MIIM_88E1011_PHYSTAT_SPDDONE) &&
398 (mii_reg & MIIM_88E1011_PHYSTAT_LINK))) {
399 int i = 0;
400
401 puts ("Waiting for PHY realtime link");
402 while (!((mii_reg & MIIM_88E1011_PHYSTAT_SPDDONE) &&
403 (mii_reg & MIIM_88E1011_PHYSTAT_LINK))) {
404 /*
405 * Timeout reached ?
406 */
407 if (i > PHY_AUTONEGOTIATE_TIMEOUT) {
408 puts (" TIMEOUT !\n");
409 priv->link = 0;
410 break;
411 }
412
413 if ((i++ % 1000) == 0) {
414 putc ('.');
415 }
416 udelay (1000); /* 1 ms */
417 mii_reg = read_phy_reg(priv, MIIM_88E1011_PHY_STATUS);
418 }
419 puts (" done\n");
420 udelay (500000); /* another 500 ms (results in faster booting) */
421 }
422
wdenk97d80fc2004-06-09 00:34:46 +0000423 if(mii_reg & MIIM_88E1011_PHYSTAT_DUPLEX)
424 priv->duplexity = 1;
425 else
426 priv->duplexity = 0;
427
428 speed = (mii_reg &MIIM_88E1011_PHYSTAT_SPEED);
429
430 switch(speed) {
431 case MIIM_88E1011_PHYSTAT_GBIT:
432 priv->speed = 1000;
433 break;
434 case MIIM_88E1011_PHYSTAT_100:
435 priv->speed = 100;
436 break;
437 default:
438 priv->speed = 10;
439 }
440
441 return 0;
442}
443
444
445/* Parse the cis8201's status register for speed and duplex
446 * information */
447uint mii_parse_cis8201(uint mii_reg, struct tsec_private *priv)
448{
449 uint speed;
450
451 if(mii_reg & MIIM_CIS8201_AUXCONSTAT_DUPLEX)
452 priv->duplexity = 1;
453 else
454 priv->duplexity = 0;
455
456 speed = mii_reg & MIIM_CIS8201_AUXCONSTAT_SPEED;
457 switch(speed) {
458 case MIIM_CIS8201_AUXCONSTAT_GBIT:
459 priv->speed = 1000;
460 break;
461 case MIIM_CIS8201_AUXCONSTAT_100:
462 priv->speed = 100;
463 break;
464 default:
465 priv->speed = 10;
466 break;
467 }
468
469 return 0;
470}
Jon Loeligerdebb7352006-04-26 17:58:56 -0500471/* Parse the vsc8244's status register for speed and duplex
472 * information */
473uint mii_parse_vsc8244(uint mii_reg, struct tsec_private *priv)
474{
475 uint speed;
476
477 if(mii_reg & MIIM_VSC8244_AUXCONSTAT_DUPLEX)
478 priv->duplexity = 1;
479 else
480 priv->duplexity = 0;
481
482 speed = mii_reg & MIIM_VSC8244_AUXCONSTAT_SPEED;
483 switch(speed) {
484 case MIIM_VSC8244_AUXCONSTAT_GBIT:
485 priv->speed = 1000;
486 break;
487 case MIIM_VSC8244_AUXCONSTAT_100:
488 priv->speed = 100;
489 break;
490 default:
491 priv->speed = 10;
492 break;
493 }
494
495 return 0;
496}
wdenk97d80fc2004-06-09 00:34:46 +0000497
498
499/* Parse the DM9161's status register for speed and duplex
500 * information */
501uint mii_parse_dm9161_scsr(uint mii_reg, struct tsec_private *priv)
502{
503 if(mii_reg & (MIIM_DM9161_SCSR_100F | MIIM_DM9161_SCSR_100H))
504 priv->speed = 100;
505 else
506 priv->speed = 10;
507
508 if(mii_reg & (MIIM_DM9161_SCSR_100F | MIIM_DM9161_SCSR_10F))
509 priv->duplexity = 1;
510 else
511 priv->duplexity = 0;
512
513 return 0;
514}
515
516
517/* Hack to write all 4 PHYs with the LED values */
518uint mii_cis8204_fixled(uint mii_reg, struct tsec_private *priv)
519{
520 uint phyid;
521 volatile tsec_t *regbase = priv->phyregs;
522 int timeout=1000000;
523
524 for(phyid=0;phyid<4;phyid++) {
525 regbase->miimadd = (phyid << 8) | mii_reg;
526 regbase->miimcon = MIIM_CIS8204_SLEDCON_INIT;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500527 asm("sync");
wdenk97d80fc2004-06-09 00:34:46 +0000528
529 timeout=1000000;
530 while((regbase->miimind & MIIMIND_BUSY) && timeout--);
531 }
532
533 return MIIM_CIS8204_SLEDCON_INIT;
534}
535
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500536uint mii_cis8204_setmode(uint mii_reg, struct tsec_private *priv)
537{
538 if (priv->flags & TSEC_REDUCED)
539 return MIIM_CIS8204_EPHYCON_INIT | MIIM_CIS8204_EPHYCON_RGMII;
540 else
541 return MIIM_CIS8204_EPHYCON_INIT;
542}
wdenk97d80fc2004-06-09 00:34:46 +0000543
544/* Initialized required registers to appropriate values, zeroing
545 * those we don't care about (unless zero is bad, in which case,
546 * choose a more appropriate value) */
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
590/* Configure maccfg2 based on negotiated speed and duplex
591 * reported by PHY handling code */
592static 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
597 if(priv->link) {
598 if(priv->duplexity != 0)
599 regs->maccfg2 |= MACCFG2_FULL_DUPLEX;
600 else
601 regs->maccfg2 &= ~(MACCFG2_FULL_DUPLEX);
602
603 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
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500613 /* If We're in reduced mode, we need
614 * to say whether we're 10 or 100 MB.
615 */
616 if ((priv->speed == 100)
617 && (priv->flags & TSEC_REDUCED))
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500618 regs->ecntrl |= ECNTRL_R100;
619 else
620 regs->ecntrl &= ~(ECNTRL_R100);
wdenk97d80fc2004-06-09 00:34:46 +0000621 break;
622 default:
623 printf("%s: Speed was bad\n", dev->name);
624 break;
625 }
626
627 printf("Speed: %d, %s duplex\n", priv->speed,
628 (priv->duplexity) ? "full" : "half");
629
630 } else {
631 printf("%s: No link.\n", dev->name);
632 }
633}
634
635
636/* Set up the buffers and their descriptors, and bring up the
637 * interface */
638static void startup_tsec(struct eth_device *dev)
wdenk42d1f032003-10-15 23:53:47 +0000639{
640 int i;
wdenk97d80fc2004-06-09 00:34:46 +0000641 struct tsec_private *priv = (struct tsec_private *)dev->priv;
642 volatile tsec_t *regs = priv->regs;
wdenk42d1f032003-10-15 23:53:47 +0000643
644 /* Point to the buffer descriptors */
645 regs->tbase = (unsigned int)(&rtx.txbd[txIdx]);
646 regs->rbase = (unsigned int)(&rtx.rxbd[rxIdx]);
647
648 /* Initialize the Rx Buffer descriptors */
649 for (i = 0; i < PKTBUFSRX; i++) {
650 rtx.rxbd[i].status = RXBD_EMPTY;
651 rtx.rxbd[i].length = 0;
652 rtx.rxbd[i].bufPtr = (uint)NetRxPackets[i];
653 }
654 rtx.rxbd[PKTBUFSRX -1].status |= RXBD_WRAP;
655
656 /* Initialize the TX Buffer Descriptors */
657 for(i=0; i<TX_BUF_CNT; i++) {
658 rtx.txbd[i].status = 0;
659 rtx.txbd[i].length = 0;
660 rtx.txbd[i].bufPtr = 0;
661 }
662 rtx.txbd[TX_BUF_CNT -1].status |= TXBD_WRAP;
663
wdenk97d80fc2004-06-09 00:34:46 +0000664 /* Start up the PHY */
665 phy_run_commands(priv, priv->phyinfo->startup);
666 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
wdenk42d1f032003-10-15 23:53:47 +0000680 * errors */
681static int tsec_send(struct eth_device* dev, volatile void *packet, int length)
682{
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 */
689 for(i=0; rtx.txbd[txIdx].status & TXBD_READY; i++) {
690 if (i >= TOUT_LOOP) {
wdenk8b07a112004-07-10 21:45:47 +0000691 debug ("%s: tsec: tx buffers full\n", dev->name);
wdenk42d1f032003-10-15 23:53:47 +0000692 return result;
693 }
694 }
695
696 rtx.txbd[txIdx].bufPtr = (uint)packet;
697 rtx.txbd[txIdx].length = length;
698 rtx.txbd[txIdx].status |= (TXBD_READY | TXBD_LAST | TXBD_CRC | TXBD_INTERRUPT);
699
700 /* Tell the DMA to go */
701 regs->tstat = TSTAT_CLEAR_THALT;
702
703 /* Wait for buffer to be transmitted */
704 for(i=0; rtx.txbd[txIdx].status & TXBD_READY; i++) {
705 if (i >= TOUT_LOOP) {
wdenk8b07a112004-07-10 21:45:47 +0000706 debug ("%s: tsec: tx error\n", dev->name);
wdenk42d1f032003-10-15 23:53:47 +0000707 return result;
708 }
709 }
710
711 txIdx = (txIdx + 1) % TX_BUF_CNT;
712 result = rtx.txbd[txIdx].status & TXBD_STATS;
713
714 return result;
715}
716
717static int tsec_recv(struct eth_device* dev)
718{
719 int length;
wdenk97d80fc2004-06-09 00:34:46 +0000720 struct tsec_private *priv = (struct tsec_private *)dev->priv;
721 volatile tsec_t *regs = priv->regs;
wdenk42d1f032003-10-15 23:53:47 +0000722
723 while(!(rtx.rxbd[rxIdx].status & RXBD_EMPTY)) {
724
725 length = rtx.rxbd[rxIdx].length;
726
727 /* Send the packet up if there were no errors */
728 if (!(rtx.rxbd[rxIdx].status & RXBD_STATS)) {
729 NetReceive(NetRxPackets[rxIdx], length - 4);
wdenk97d80fc2004-06-09 00:34:46 +0000730 } else {
731 printf("Got error %x\n",
732 (rtx.rxbd[rxIdx].status & RXBD_STATS));
wdenk42d1f032003-10-15 23:53:47 +0000733 }
734
735 rtx.rxbd[rxIdx].length = 0;
736
737 /* Set the wrap bit if this is the last element in the list */
738 rtx.rxbd[rxIdx].status = RXBD_EMPTY | (((rxIdx + 1) == PKTBUFSRX) ? RXBD_WRAP : 0);
739
740 rxIdx = (rxIdx + 1) % PKTBUFSRX;
741 }
742
743 if(regs->ievent&IEVENT_BSY) {
744 regs->ievent = IEVENT_BSY;
745 regs->rstat = RSTAT_CLEAR_RHALT;
746 }
747
748 return -1;
749
750}
751
752
wdenk97d80fc2004-06-09 00:34:46 +0000753/* Stop the interface */
wdenk42d1f032003-10-15 23:53:47 +0000754static void tsec_halt(struct eth_device* dev)
755{
wdenk97d80fc2004-06-09 00:34:46 +0000756 struct tsec_private *priv = (struct tsec_private *)dev->priv;
757 volatile tsec_t *regs = priv->regs;
wdenk42d1f032003-10-15 23:53:47 +0000758
759 regs->dmactrl &= ~(DMACTRL_GRS | DMACTRL_GTS);
760 regs->dmactrl |= (DMACTRL_GRS | DMACTRL_GTS);
761
762 while(!(regs->ievent & (IEVENT_GRSC | IEVENT_GTSC)));
763
764 regs->maccfg1 &= ~(MACCFG1_TX_EN | MACCFG1_RX_EN);
765
wdenk97d80fc2004-06-09 00:34:46 +0000766 /* Shut down the PHY, as needed */
767 phy_run_commands(priv, priv->phyinfo->shutdown);
wdenk42d1f032003-10-15 23:53:47 +0000768}
wdenk7abf0c52004-04-18 21:45:42 +0000769
wdenk97d80fc2004-06-09 00:34:46 +0000770
771struct phy_info phy_info_M88E1011S = {
772 0x01410c6,
773 "Marvell 88E1011S",
774 4,
775 (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, &mii_parse_88E1011_psr},
796 {miim_end,}
797 },
798 (struct phy_cmd[]) { /* shutdown */
799 {miim_end,}
800 },
801};
802
wdenk9d46ea42005-03-14 23:56:42 +0000803struct phy_info phy_info_M88E1111S = {
804 0x01410cc,
805 "Marvell 88E1111S",
806 4,
807 (struct phy_cmd[]) { /* config */
808 /* Reset and configure the PHY */
809 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
810 {0x1d, 0x1f, NULL},
811 {0x1e, 0x200c, NULL},
812 {0x1d, 0x5, NULL},
813 {0x1e, 0x0, NULL},
814 {0x1e, 0x100, NULL},
815 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
816 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
817 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
818 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
819 {miim_end,}
820 },
821 (struct phy_cmd[]) { /* startup */
822 /* Status is read once to clear old link state */
823 {MIIM_STATUS, miim_read, NULL},
824 /* Auto-negotiate */
825 {MIIM_STATUS, miim_read, &mii_parse_sr},
826 /* Read the status */
827 {MIIM_88E1011_PHY_STATUS, miim_read, &mii_parse_88E1011_psr},
828 {miim_end,}
829 },
830 (struct phy_cmd[]) { /* shutdown */
831 {miim_end,}
832 },
833};
834
Andy Fleming09f3e092006-09-13 10:34:18 -0500835static unsigned int m88e1145_setmode(uint mii_reg, struct tsec_private *priv)
836{
837 unsigned int temp;
838 uint mii_data = read_phy_reg(priv, mii_reg);
839
840
841 /* Setting MIIM_88E1145_PHY_EXT_CR */
842 if (priv->flags & TSEC_REDUCED)
843 return mii_data |
844 MIIM_M88E1145_RGMII_RX_DELAY |
845 MIIM_M88E1145_RGMII_TX_DELAY;
846 else
847 return mii_data;
848}
849
850static struct phy_info phy_info_M88E1145 = {
851 0x01410cd,
852 "Marvell 88E1145",
853 4,
854 (struct phy_cmd[]) { /* config */
855 /* Errata E0, E1 */
856 {29, 0x001b, NULL},
857 {30, 0x418f, NULL},
858 {29, 0x0016, NULL},
859 {30, 0xa2da, NULL},
860
861 /* Reset and configure the PHY */
862 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
863 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
864 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
865 {MIIM_88E1011_PHY_SCR, MIIM_88E1011_PHY_MDI_X_AUTO, 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, MIIM_88E1111_PHY_LED_DIRECT, NULL},
877 /* Read the Status */
878 {MIIM_88E1011_PHY_STATUS, miim_read, &mii_parse_88E1011_psr},
879 {miim_end,}
880 },
881 (struct phy_cmd[]) { /* shutdown */
882 {miim_end,}
883 },
884};
885
886
wdenk97d80fc2004-06-09 00:34:46 +0000887struct phy_info phy_info_cis8204 = {
888 0x3f11,
889 "Cicada Cis8204",
890 6,
891 (struct phy_cmd[]) { /* config */
892 /* Override PHY config settings */
893 {MIIM_CIS8201_AUX_CONSTAT, MIIM_CIS8201_AUXCONSTAT_INIT, NULL},
894 /* Configure some basic stuff */
895 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
896 {MIIM_CIS8204_SLED_CON, MIIM_CIS8204_SLEDCON_INIT, &mii_cis8204_fixled},
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500897 {MIIM_CIS8204_EPHY_CON, MIIM_CIS8204_EPHYCON_INIT, &mii_cis8204_setmode},
wdenk97d80fc2004-06-09 00:34:46 +0000898 {miim_end,}
899 },
900 (struct phy_cmd[]) { /* startup */
901 /* Read the Status (2x to make sure link is right) */
902 {MIIM_STATUS, miim_read, NULL},
903 /* Auto-negotiate */
904 {MIIM_STATUS, miim_read, &mii_parse_sr},
905 /* Read the status */
906 {MIIM_CIS8201_AUX_CONSTAT, miim_read, &mii_parse_cis8201},
907 {miim_end,}
908 },
909 (struct phy_cmd[]) { /* shutdown */
910 {miim_end,}
911 },
912};
913
914/* Cicada 8201 */
915struct phy_info phy_info_cis8201 = {
916 0xfc41,
917 "CIS8201",
918 4,
919 (struct phy_cmd[]) { /* config */
920 /* Override PHY config settings */
921 {MIIM_CIS8201_AUX_CONSTAT, MIIM_CIS8201_AUXCONSTAT_INIT, NULL},
922 /* Set up the interface mode */
923 {MIIM_CIS8201_EXT_CON1, MIIM_CIS8201_EXTCON1_INIT, NULL},
924 /* Configure some basic stuff */
925 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
926 {miim_end,}
927 },
928 (struct phy_cmd[]) { /* startup */
929 /* Read the Status (2x to make sure link is right) */
930 {MIIM_STATUS, miim_read, NULL},
931 /* Auto-negotiate */
932 {MIIM_STATUS, miim_read, &mii_parse_sr},
933 /* Read the status */
934 {MIIM_CIS8201_AUX_CONSTAT, miim_read, &mii_parse_cis8201},
935 {miim_end,}
936 },
937 (struct phy_cmd[]) { /* shutdown */
938 {miim_end,}
939 },
940};
Jon Loeligerdebb7352006-04-26 17:58:56 -0500941struct phy_info phy_info_VSC8244 = {
942 0x3f1b,
943 "Vitesse VSC8244",
944 6,
945 (struct phy_cmd[]) { /* config */
946 /* Override PHY config settings */
947 /* Configure some basic stuff */
948 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
949 {miim_end,}
950 },
951 (struct phy_cmd[]) { /* startup */
952 /* Read the Status (2x to make sure link is right) */
953 {MIIM_STATUS, miim_read, NULL},
954 /* Auto-negotiate */
955 {MIIM_STATUS, miim_read, &mii_parse_sr},
956 /* Read the status */
957 {MIIM_VSC8244_AUX_CONSTAT, miim_read, &mii_parse_vsc8244},
958 {miim_end,}
959 },
960 (struct phy_cmd[]) { /* shutdown */
961 {miim_end,}
962 },
963};
wdenk97d80fc2004-06-09 00:34:46 +0000964
965
966struct phy_info phy_info_dm9161 = {
967 0x0181b88,
968 "Davicom DM9161E",
969 4,
970 (struct phy_cmd[]) { /* config */
971 {MIIM_CONTROL, MIIM_DM9161_CR_STOP, NULL},
972 /* Do not bypass the scrambler/descrambler */
973 {MIIM_DM9161_SCR, MIIM_DM9161_SCR_INIT, NULL},
974 /* Clear 10BTCSR to default */
975 {MIIM_DM9161_10BTCSR, MIIM_DM9161_10BTCSR_INIT, NULL},
976 /* Configure some basic stuff */
977 {MIIM_CONTROL, MIIM_CR_INIT, NULL},
978 /* Restart Auto Negotiation */
979 {MIIM_CONTROL, MIIM_DM9161_CR_RSTAN, NULL},
980 {miim_end,}
981 },
982 (struct phy_cmd[]) { /* startup */
983 /* Status is read once to clear old link state */
984 {MIIM_STATUS, miim_read, NULL},
985 /* Auto-negotiate */
986 {MIIM_STATUS, miim_read, &mii_parse_sr},
987 /* Read the status */
988 {MIIM_DM9161_SCSR, miim_read, &mii_parse_dm9161_scsr},
989 {miim_end,}
990 },
991 (struct phy_cmd[]) { /* shutdown */
992 {miim_end,}
993 },
994};
995
wdenk3dd7f0f2005-04-04 23:43:44 +0000996uint mii_parse_lxt971_sr2(uint mii_reg, struct tsec_private *priv)
997{
wdenk3c2b3d42005-04-05 23:32:21 +0000998 unsigned int speed;
999 if (priv->link) {
1000 speed = mii_reg & MIIM_LXT971_SR2_SPEED_MASK;
wdenk3dd7f0f2005-04-04 23:43:44 +00001001
wdenk3c2b3d42005-04-05 23:32:21 +00001002 switch (speed) {
1003 case MIIM_LXT971_SR2_10HDX:
1004 priv->speed = 10;
1005 priv->duplexity = 0;
1006 break;
1007 case MIIM_LXT971_SR2_10FDX:
1008 priv->speed = 10;
1009 priv->duplexity = 1;
1010 break;
1011 case MIIM_LXT971_SR2_100HDX:
1012 priv->speed = 100;
1013 priv->duplexity = 0;
1014 default:
1015 priv->speed = 100;
1016 priv->duplexity = 1;
1017 break;
1018 }
1019 } else {
1020 priv->speed = 0;
1021 priv->duplexity = 0;
1022 }
wdenk3dd7f0f2005-04-04 23:43:44 +00001023
wdenk3c2b3d42005-04-05 23:32:21 +00001024 return 0;
wdenk3dd7f0f2005-04-04 23:43:44 +00001025}
1026
wdenk9d46ea42005-03-14 23:56:42 +00001027static struct phy_info phy_info_lxt971 = {
1028 0x0001378e,
1029 "LXT971",
1030 4,
1031 (struct phy_cmd []) { /* config */
wdenk3dd7f0f2005-04-04 23:43:44 +00001032 { MIIM_CR, MIIM_CR_INIT, mii_cr_init }, /* autonegotiate */
wdenk9d46ea42005-03-14 23:56:42 +00001033 { miim_end, }
1034 },
1035 (struct phy_cmd []) { /* startup - enable interrupts */
1036 /* { 0x12, 0x00f2, NULL }, */
wdenk9d46ea42005-03-14 23:56:42 +00001037 { MIIM_STATUS, miim_read, NULL },
wdenk3dd7f0f2005-04-04 23:43:44 +00001038 { MIIM_STATUS, miim_read, &mii_parse_sr },
1039 { MIIM_LXT971_SR2, miim_read, &mii_parse_lxt971_sr2 },
wdenk9d46ea42005-03-14 23:56:42 +00001040 { miim_end, }
1041 },
1042 (struct phy_cmd []) { /* shutdown - disable interrupts */
1043 { miim_end, }
1044 },
1045};
1046
Wolfgang Denkbe5048f2006-03-12 22:50:55 +01001047/* Parse the DP83865's link and auto-neg status register for speed and duplex
1048 * information */
1049uint mii_parse_dp83865_lanr(uint mii_reg, struct tsec_private *priv)
1050{
1051 switch (mii_reg & MIIM_DP83865_SPD_MASK) {
1052
1053 case MIIM_DP83865_SPD_1000:
1054 priv->speed = 1000;
1055 break;
1056
1057 case MIIM_DP83865_SPD_100:
1058 priv->speed = 100;
1059 break;
1060
1061 default:
1062 priv->speed = 10;
1063 break;
1064
1065 }
1066
1067 if (mii_reg & MIIM_DP83865_DPX_FULL)
1068 priv->duplexity = 1;
1069 else
1070 priv->duplexity = 0;
1071
1072 return 0;
1073}
1074
1075struct phy_info phy_info_dp83865 = {
1076 0x20005c7,
1077 "NatSemi DP83865",
1078 4,
1079 (struct phy_cmd[]) { /* config */
1080 {MIIM_CONTROL, MIIM_DP83865_CR_INIT, NULL},
1081 {miim_end,}
1082 },
1083 (struct phy_cmd[]) { /* startup */
1084 /* Status is read once to clear old link state */
1085 {MIIM_STATUS, miim_read, NULL},
1086 /* Auto-negotiate */
1087 {MIIM_STATUS, miim_read, &mii_parse_sr},
1088 /* Read the link and auto-neg status */
1089 {MIIM_DP83865_LANR, miim_read, &mii_parse_dp83865_lanr},
1090 {miim_end,}
1091 },
1092 (struct phy_cmd[]) { /* shutdown */
1093 {miim_end,}
1094 },
1095};
1096
wdenk97d80fc2004-06-09 00:34:46 +00001097struct phy_info *phy_info[] = {
1098#if 0
1099 &phy_info_cis8201,
1100#endif
1101 &phy_info_cis8204,
1102 &phy_info_M88E1011S,
wdenk9d46ea42005-03-14 23:56:42 +00001103 &phy_info_M88E1111S,
Andy Fleming09f3e092006-09-13 10:34:18 -05001104 &phy_info_M88E1145,
wdenk97d80fc2004-06-09 00:34:46 +00001105 &phy_info_dm9161,
wdenk9d46ea42005-03-14 23:56:42 +00001106 &phy_info_lxt971,
Jon Loeligerdebb7352006-04-26 17:58:56 -05001107 &phy_info_VSC8244,
Wolfgang Denkbe5048f2006-03-12 22:50:55 +01001108 &phy_info_dp83865,
wdenk97d80fc2004-06-09 00:34:46 +00001109 NULL
1110};
1111
1112
1113/* Grab the identifier of the device's PHY, and search through
wdenk9d46ea42005-03-14 23:56:42 +00001114 * all of the known PHYs to see if one matches. If so, return
wdenk97d80fc2004-06-09 00:34:46 +00001115 * it, if not, return NULL */
1116struct phy_info * get_phy_info(struct eth_device *dev)
1117{
1118 struct tsec_private *priv = (struct tsec_private *)dev->priv;
1119 uint phy_reg, phy_ID;
1120 int i;
1121 struct phy_info *theInfo = NULL;
1122
1123 /* Grab the bits from PHYIR1, and put them in the upper half */
1124 phy_reg = read_phy_reg(priv, MIIM_PHYIR1);
1125 phy_ID = (phy_reg & 0xffff) << 16;
1126
1127 /* Grab the bits from PHYIR2, and put them in the lower half */
1128 phy_reg = read_phy_reg(priv, MIIM_PHYIR2);
1129 phy_ID |= (phy_reg & 0xffff);
1130
1131 /* loop through all the known PHY types, and find one that */
1132 /* matches the ID we read from the PHY. */
1133 for(i=0; phy_info[i]; i++) {
1134 if(phy_info[i]->id == (phy_ID >> phy_info[i]->shift))
1135 theInfo = phy_info[i];
1136 }
1137
1138 if(theInfo == NULL)
1139 {
1140 printf("%s: PHY id %x is not supported!\n", dev->name, phy_ID);
1141 return NULL;
1142 } else {
Stefan Roese5810dc32005-09-21 18:20:22 +02001143 debug("%s: PHY is %s (%x)\n", dev->name, theInfo->name, phy_ID);
wdenk97d80fc2004-06-09 00:34:46 +00001144 }
1145
1146 return theInfo;
1147}
1148
1149
1150/* Execute the given series of commands on the given device's
1151 * PHY, running functions as necessary*/
1152void phy_run_commands(struct tsec_private *priv, struct phy_cmd *cmd)
1153{
1154 int i;
1155 uint result;
1156 volatile tsec_t *phyregs = priv->phyregs;
1157
1158 phyregs->miimcfg = MIIMCFG_RESET;
1159
1160 phyregs->miimcfg = MIIMCFG_INIT_VALUE;
1161
1162 while(phyregs->miimind & MIIMIND_BUSY);
1163
1164 for(i=0;cmd->mii_reg != miim_end;i++) {
1165 if(cmd->mii_data == miim_read) {
1166 result = read_phy_reg(priv, cmd->mii_reg);
1167
1168 if(cmd->funct != NULL)
1169 (*(cmd->funct))(result, priv);
1170
1171 } else {
1172 if(cmd->funct != NULL)
1173 result = (*(cmd->funct))(cmd->mii_reg, priv);
1174 else
1175 result = cmd->mii_data;
1176
1177 write_phy_reg(priv, cmd->mii_reg, result);
1178
1179 }
1180 cmd++;
1181 }
1182}
1183
1184
1185/* Relocate the function pointers in the phy cmd lists */
1186static void relocate_cmds(void)
1187{
1188 struct phy_cmd **cmdlistptr;
1189 struct phy_cmd *cmd;
1190 int i,j,k;
wdenk97d80fc2004-06-09 00:34:46 +00001191
1192 for(i=0; phy_info[i]; i++) {
1193 /* First thing's first: relocate the pointers to the
1194 * PHY command structures (the structs were done) */
1195 phy_info[i] = (struct phy_info *) ((uint)phy_info[i]
1196 + gd->reloc_off);
1197 phy_info[i]->name += gd->reloc_off;
1198 phy_info[i]->config =
1199 (struct phy_cmd *)((uint)phy_info[i]->config
1200 + gd->reloc_off);
1201 phy_info[i]->startup =
1202 (struct phy_cmd *)((uint)phy_info[i]->startup
1203 + gd->reloc_off);
1204 phy_info[i]->shutdown =
1205 (struct phy_cmd *)((uint)phy_info[i]->shutdown
1206 + gd->reloc_off);
1207
1208 cmdlistptr = &phy_info[i]->config;
1209 j=0;
1210 for(;cmdlistptr <= &phy_info[i]->shutdown;cmdlistptr++) {
1211 k=0;
1212 for(cmd=*cmdlistptr;cmd->mii_reg != miim_end;cmd++) {
1213 /* Only relocate non-NULL pointers */
1214 if(cmd->funct)
1215 cmd->funct += gd->reloc_off;
1216
1217 k++;
1218 }
1219 j++;
1220 }
1221 }
1222
1223 relocated = 1;
1224}
1225
1226
Marian Balakowicz63ff0042005-10-28 22:30:33 +02001227#if defined(CONFIG_MII) || (CONFIG_COMMANDS & CFG_CMD_MII) \
1228 && !defined(BITBANGMII)
wdenk97d80fc2004-06-09 00:34:46 +00001229
1230struct tsec_private * get_priv_for_phy(unsigned char phyaddr)
1231{
1232 int i;
1233
1234 for(i=0;i<MAXCONTROLLERS;i++) {
1235 if(privlist[i]->phyaddr == phyaddr)
1236 return privlist[i];
1237 }
1238
1239 return NULL;
1240}
1241
wdenk7abf0c52004-04-18 21:45:42 +00001242/*
1243 * Read a MII PHY register.
1244 *
1245 * Returns:
wdenk97d80fc2004-06-09 00:34:46 +00001246 * 0 on success
wdenk7abf0c52004-04-18 21:45:42 +00001247 */
Marian Balakowicz63ff0042005-10-28 22:30:33 +02001248static int tsec_miiphy_read(char *devname, unsigned char addr,
1249 unsigned char reg, unsigned short *value)
wdenk7abf0c52004-04-18 21:45:42 +00001250{
wdenk97d80fc2004-06-09 00:34:46 +00001251 unsigned short ret;
1252 struct tsec_private *priv = get_priv_for_phy(addr);
wdenk7abf0c52004-04-18 21:45:42 +00001253
wdenk97d80fc2004-06-09 00:34:46 +00001254 if(NULL == priv) {
1255 printf("Can't read PHY at address %d\n", addr);
1256 return -1;
1257 }
1258
1259 ret = (unsigned short)read_phy_reg(priv, reg);
1260 *value = ret;
wdenk7abf0c52004-04-18 21:45:42 +00001261
1262 return 0;
1263}
1264
1265/*
1266 * Write a MII PHY register.
1267 *
1268 * Returns:
wdenk97d80fc2004-06-09 00:34:46 +00001269 * 0 on success
wdenk7abf0c52004-04-18 21:45:42 +00001270 */
Marian Balakowicz63ff0042005-10-28 22:30:33 +02001271static int tsec_miiphy_write(char *devname, unsigned char addr,
1272 unsigned char reg, unsigned short value)
wdenk7abf0c52004-04-18 21:45:42 +00001273{
wdenk97d80fc2004-06-09 00:34:46 +00001274 struct tsec_private *priv = get_priv_for_phy(addr);
wdenk7abf0c52004-04-18 21:45:42 +00001275
wdenk97d80fc2004-06-09 00:34:46 +00001276 if(NULL == priv) {
1277 printf("Can't write PHY at address %d\n", addr);
1278 return -1;
1279 }
1280
1281 write_phy_reg(priv, reg, value);
wdenk7abf0c52004-04-18 21:45:42 +00001282
1283 return 0;
1284}
wdenk97d80fc2004-06-09 00:34:46 +00001285
Marian Balakowicz63ff0042005-10-28 22:30:33 +02001286#endif /* defined(CONFIG_MII) || (CONFIG_COMMANDS & CFG_CMD_MII)
1287 && !defined(BITBANGMII) */
wdenk97d80fc2004-06-09 00:34:46 +00001288
wdenk42d1f032003-10-15 23:53:47 +00001289#endif /* CONFIG_TSEC_ENET */