blob: 50bea796ac0f1f11368eb21528c68a87fb7434f4 [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
wdenk1ebf41e2004-01-02 14:00:00 +00002 * (C) Copyright 2001-2004
wdenkc6097192002-11-03 00:24:07 +00003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24#include <common.h>
25#include <command.h>
26#include <net.h>
Marian Balakowiczcbdd1c82005-11-30 18:06:04 +010027#include <miiphy.h>
wdenkc6097192002-11-03 00:24:07 +000028
Jon Loeliger54f35c22007-07-09 17:45:14 -050029#if defined(CONFIG_CMD_NET) && defined(CONFIG_NET_MULTI)
wdenkc6097192002-11-03 00:24:07 +000030
Ben Warrend448a492008-06-23 22:57:27 -070031/*
32 * CPU and board-specific Ethernet initializations. Aliased function
33 * signals caller to move on
34 */
35static int __def_eth_init(bd_t *bis)
36{
37 return -1;
38}
39int cpu_eth_init(bd_t *bis) __attribute((weak, alias("__def_eth_init")));
40int board_eth_init(bd_t *bis) __attribute((weak, alias("__def_eth_init")));
41
wdenkc6097192002-11-03 00:24:07 +000042#ifdef CFG_GT_6426x
43extern int gt6426x_eth_initialize(bd_t *bis);
44#endif
45
wdenk5da7f2f2004-01-03 00:43:19 +000046extern int au1x00_enet_initialize(bd_t*);
47extern int dc21x4x_initialize(bd_t*);
wdenk4e112c12003-06-03 23:54:09 +000048extern int e1000_initialize(bd_t*);
wdenkc6097192002-11-03 00:24:07 +000049extern int eepro100_initialize(bd_t*);
wdenk452cfd62002-11-19 11:04:11 +000050extern int eth_3com_initialize(bd_t*);
wdenkc6097192002-11-03 00:24:07 +000051extern int fec_initialize(bd_t*);
wdenk4fc95692003-02-28 00:49:47 +000052extern int inca_switch_initialize(bd_t*);
wdenk21136db2003-07-16 21:53:01 +000053extern int mpc5xxx_fec_initialize(bd_t*);
Rafal Jaworowskid3a02c32007-07-27 14:43:59 +020054extern int mpc512x_fec_initialize(bd_t*);
wdenk337f5652004-10-28 00:09:35 +000055extern int mpc8220_fec_initialize(bd_t*);
wdenk5da7f2f2004-01-03 00:43:19 +000056extern int mv6436x_eth_initialize(bd_t *);
57extern int mv6446x_eth_initialize(bd_t *);
58extern int natsemi_initialize(bd_t*);
59extern int ns8382x_initialize(bd_t*);
60extern int pcnet_initialize(bd_t*);
61extern int plb2800_eth_initialize(bd_t*);
62extern int ppc_4xx_eth_initialize(bd_t *);
63extern int rtl8139_initialize(bd_t*);
wdenka6270482004-04-18 22:03:42 +000064extern int rtl8169_initialize(bd_t*);
wdenk5da7f2f2004-01-03 00:43:19 +000065extern int scc_initialize(bd_t*);
wdenkeb20ad32003-09-05 23:19:14 +000066extern int skge_initialize(bd_t*);
roy zang72526f72006-11-02 19:08:55 +080067extern int tsi108_eth_initialize(bd_t*);
Roy Zang99762232007-11-05 17:39:24 +080068extern int uli526x_initialize(bd_t *);
Wolfgang Denk4646d2a2006-05-30 15:56:48 +020069extern int npe_initialize(bd_t *);
Dave Liue732e9c2006-11-03 12:11:15 -060070extern int uec_initialize(int);
Aubrey Li570dc1e2007-04-05 18:30:25 +080071extern int bfin_EMAC_initialize(bd_t *);
Daniel Hellstromf1431792008-03-28 20:22:53 +010072extern int greth_initialize(bd_t *);
Stelian Popeea44aa2008-03-26 20:52:28 +010073extern int at91sam9_eth_initialize(bd_t *);
wdenkc6097192002-11-03 00:24:07 +000074
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +010075#ifdef CONFIG_API
76extern void (*push_packet)(volatile void *, int);
77
78static struct {
79 uchar data[PKTSIZE];
80 int length;
81} eth_rcv_bufs[PKTBUFSRX];
82
83static unsigned int eth_rcv_current = 0, eth_rcv_last = 0;
84#endif
85
wdenkc6097192002-11-03 00:24:07 +000086static struct eth_device *eth_devices, *eth_current;
87
88struct eth_device *eth_get_dev(void)
89{
90 return eth_current;
91}
92
Marian Balakowiczaab8c492005-10-28 22:30:33 +020093struct eth_device *eth_get_dev_by_name(char *devname)
94{
95 struct eth_device *dev, *target_dev;
96
97 if (!eth_devices)
98 return NULL;
99
100 dev = eth_devices;
101 target_dev = NULL;
102 do {
103 if (strcmp(devname, dev->name) == 0) {
104 target_dev = dev;
105 break;
106 }
107 dev = dev->next;
108 } while (dev != eth_devices);
109
110 return target_dev;
111}
112
wdenkc6097192002-11-03 00:24:07 +0000113int eth_get_dev_index (void)
114{
115 struct eth_device *dev;
116 int num = 0;
117
118 if (!eth_devices) {
119 return (-1);
120 }
121
122 for (dev = eth_devices; dev; dev = dev->next) {
123 if (dev == eth_current)
124 break;
125 ++num;
126 }
127
128 if (dev) {
129 return (num);
130 }
131
132 return (0);
133}
134
135int eth_register(struct eth_device* dev)
136{
137 struct eth_device *d;
138
139 if (!eth_devices) {
140 eth_current = eth_devices = dev;
wdenk145d2c12004-04-15 21:48:45 +0000141#ifdef CONFIG_NET_MULTI
142 /* update current ethernet name */
143 {
144 char *act = getenv("ethact");
145 if (act == NULL || strcmp(act, eth_current->name) != 0)
146 setenv("ethact", eth_current->name);
147 }
148#endif
wdenkc6097192002-11-03 00:24:07 +0000149 } else {
150 for (d=eth_devices; d->next!=eth_devices; d=d->next);
151 d->next = dev;
152 }
153
154 dev->state = ETH_STATE_INIT;
155 dev->next = eth_devices;
156
157 return 0;
158}
159
160int eth_initialize(bd_t *bis)
161{
Shinya Kuribayashidb7101e2007-11-19 20:27:04 +0900162 char enetvar[32];
163 unsigned char env_enetaddr[6];
wdenkc6097192002-11-03 00:24:07 +0000164 int i, eth_number = 0;
165 char *tmp, *end;
166
167 eth_devices = NULL;
168 eth_current = NULL;
169
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200170 show_boot_progress (64);
Jon Loeliger54f35c22007-07-09 17:45:14 -0500171#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Marian Balakowiczcbdd1c82005-11-30 18:06:04 +0100172 miiphy_init();
173#endif
Ben Warrend448a492008-06-23 22:57:27 -0700174 /* Try board-specific initialization first. If it fails or isn't
175 * present, try the cpu-specific initialization */
176 if (board_eth_init(bis) < 0)
177 cpu_eth_init(bis);
Marian Balakowiczcbdd1c82005-11-30 18:06:04 +0100178
Stefan Roese45993ea2006-11-29 15:42:37 +0100179#if defined(CONFIG_DB64360) || defined(CONFIG_CPCI750)
wdenk5da7f2f2004-01-03 00:43:19 +0000180 mv6436x_eth_initialize(bis);
181#endif
Stefan Roese45993ea2006-11-29 15:42:37 +0100182#if defined(CONFIG_DB64460) || defined(CONFIG_P3Mx)
wdenk5da7f2f2004-01-03 00:43:19 +0000183 mv6446x_eth_initialize(bis);
184#endif
Wolfgang Denk56811f62005-10-09 01:04:33 +0200185#if defined(CONFIG_4xx) && !defined(CONFIG_IOP480) && !defined(CONFIG_AP1000)
wdenk57b2d802003-06-27 21:31:46 +0000186 ppc_4xx_eth_initialize(bis);
wdenk77934442003-06-05 19:37:36 +0000187#endif
wdenk4fc95692003-02-28 00:49:47 +0000188#ifdef CONFIG_INCA_IP_SWITCH
189 inca_switch_initialize(bis);
190#endif
wdenkb02744a2003-04-05 00:53:31 +0000191#ifdef CONFIG_PLB2800_ETHER
192 plb2800_eth_initialize(bis);
193#endif
wdenk63a10be2004-05-08 20:33:20 +0000194#ifdef SCC_ENET
195 scc_initialize(bis);
196#endif
wdenk63a10be2004-05-08 20:33:20 +0000197#if defined(CONFIG_MPC5xxx_FEC)
198 mpc5xxx_fec_initialize(bis);
199#endif
Rafal Jaworowskid3a02c32007-07-27 14:43:59 +0200200#if defined(CONFIG_MPC512x_FEC)
201 mpc512x_fec_initialize (bis);
202#endif
wdenk5c71a7a2005-05-16 15:23:22 +0000203#if defined(CONFIG_MPC8220_FEC)
wdenk337f5652004-10-28 00:09:35 +0000204 mpc8220_fec_initialize(bis);
205#endif
wdenk63a10be2004-05-08 20:33:20 +0000206#if defined(CONFIG_SK98)
207 skge_initialize(bis);
208#endif
Dave Liue732e9c2006-11-03 12:11:15 -0600209#if defined(CONFIG_UEC_ETH1)
210 uec_initialize(0);
211#endif
212#if defined(CONFIG_UEC_ETH2)
213 uec_initialize(1);
214#endif
Joakim Tjernlund4e483202007-12-06 16:43:40 +0100215#if defined(CONFIG_UEC_ETH3)
216 uec_initialize(2);
217#endif
David Saadaf3978832008-01-15 10:40:24 +0200218#if defined(CONFIG_UEC_ETH4)
219 uec_initialize(3);
220#endif
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500221
Stefan Roese09554022005-11-30 13:06:40 +0100222#if defined(FEC_ENET) || defined(CONFIG_ETHER_ON_FCC)
223 fec_initialize(bis);
224#endif
wdenk63a10be2004-05-08 20:33:20 +0000225#if defined(CONFIG_AU1X00)
226 au1x00_enet_initialize(bis);
227#endif
Wolfgang Denk4646d2a2006-05-30 15:56:48 +0200228#if defined(CONFIG_IXP4XX_NPE)
229 npe_initialize(bis);
230#endif
wdenk4e112c12003-06-03 23:54:09 +0000231#ifdef CONFIG_E1000
232 e1000_initialize(bis);
233#endif
wdenkc6097192002-11-03 00:24:07 +0000234#ifdef CONFIG_EEPRO100
235 eepro100_initialize(bis);
236#endif
237#ifdef CONFIG_TULIP
238 dc21x4x_initialize(bis);
239#endif
wdenk452cfd62002-11-19 11:04:11 +0000240#ifdef CONFIG_3COM
241 eth_3com_initialize(bis);
242#endif
wdenkc6097192002-11-03 00:24:07 +0000243#ifdef CONFIG_PCNET
244 pcnet_initialize(bis);
245#endif
246#ifdef CFG_GT_6426x
247 gt6426x_eth_initialize(bis);
248#endif
249#ifdef CONFIG_NATSEMI
250 natsemi_initialize(bis);
251#endif
252#ifdef CONFIG_NS8382X
253 ns8382x_initialize(bis);
254#endif
roy zang72526f72006-11-02 19:08:55 +0800255#if defined(CONFIG_TSI108_ETH)
256 tsi108_eth_initialize(bis);
257#endif
Roy Zang99762232007-11-05 17:39:24 +0800258#if defined(CONFIG_ULI526X)
259 uli526x_initialize(bis);
260#endif
wdenk0260cd62004-01-02 15:01:32 +0000261#if defined(CONFIG_RTL8139)
262 rtl8139_initialize(bis);
263#endif
wdenka6270482004-04-18 22:03:42 +0000264#if defined(CONFIG_RTL8169)
265 rtl8169_initialize(bis);
266#endif
Aubrey Li570dc1e2007-04-05 18:30:25 +0800267#if defined(CONFIG_BF537)
268 bfin_EMAC_initialize(bis);
269#endif
Daniel Hellstromf1431792008-03-28 20:22:53 +0100270#if defined(CONFIG_GRETH)
271 greth_initialize(bis);
272#endif
Stelian Pop69c925f2008-05-08 18:52:23 +0200273#if defined(CONFIG_AT91CAP9) || defined(CONFIG_AT91SAM9260) || \
274 defined(CONFIG_AT91SAM9263)
Stelian Popeea44aa2008-03-26 20:52:28 +0100275 at91sam9_eth_initialize(bis);
Stelian Pop6c939742008-01-20 19:49:21 +0000276#endif
wdenkc6097192002-11-03 00:24:07 +0000277
278 if (!eth_devices) {
279 puts ("No ethernet found.\n");
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200280 show_boot_progress (-64);
wdenkc6097192002-11-03 00:24:07 +0000281 } else {
282 struct eth_device *dev = eth_devices;
283 char *ethprime = getenv ("ethprime");
284
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200285 show_boot_progress (65);
wdenkc6097192002-11-03 00:24:07 +0000286 do {
287 if (eth_number)
288 puts (", ");
289
290 printf("%s", dev->name);
291
292 if (ethprime && strcmp (dev->name, ethprime) == 0) {
293 eth_current = dev;
294 puts (" [PRIME]");
295 }
296
297 sprintf(enetvar, eth_number ? "eth%daddr" : "ethaddr", eth_number);
298 tmp = getenv (enetvar);
299
300 for (i=0; i<6; i++) {
301 env_enetaddr[i] = tmp ? simple_strtoul(tmp, &end, 16) : 0;
302 if (tmp)
303 tmp = (*end) ? end+1 : end;
304 }
305
306 if (memcmp(env_enetaddr, "\0\0\0\0\0\0", 6)) {
307 if (memcmp(dev->enetaddr, "\0\0\0\0\0\0", 6) &&
308 memcmp(dev->enetaddr, env_enetaddr, 6))
309 {
wdenk63a10be2004-05-08 20:33:20 +0000310 printf ("\nWarning: %s MAC addresses don't match:\n",
311 dev->name);
312 printf ("Address in SROM is "
wdenkc6097192002-11-03 00:24:07 +0000313 "%02X:%02X:%02X:%02X:%02X:%02X\n",
314 dev->enetaddr[0], dev->enetaddr[1],
315 dev->enetaddr[2], dev->enetaddr[3],
316 dev->enetaddr[4], dev->enetaddr[5]);
wdenk63a10be2004-05-08 20:33:20 +0000317 printf ("Address in environment is "
wdenkc6097192002-11-03 00:24:07 +0000318 "%02X:%02X:%02X:%02X:%02X:%02X\n",
319 env_enetaddr[0], env_enetaddr[1],
320 env_enetaddr[2], env_enetaddr[3],
321 env_enetaddr[4], env_enetaddr[5]);
322 }
323
324 memcpy(dev->enetaddr, env_enetaddr, 6);
325 }
326
327 eth_number++;
328 dev = dev->next;
329 } while(dev != eth_devices);
330
wdenk145d2c12004-04-15 21:48:45 +0000331#ifdef CONFIG_NET_MULTI
332 /* update current ethernet name */
333 if (eth_current) {
334 char *act = getenv("ethact");
335 if (act == NULL || strcmp(act, eth_current->name) != 0)
336 setenv("ethact", eth_current->name);
337 } else
338 setenv("ethact", NULL);
339#endif
340
wdenkc6097192002-11-03 00:24:07 +0000341 putc ('\n');
342 }
343
344 return eth_number;
345}
346
347void eth_set_enetaddr(int num, char *addr) {
348 struct eth_device *dev;
349 unsigned char enetaddr[6];
350 char *end;
351 int i;
352
wdenk1ebf41e2004-01-02 14:00:00 +0000353 debug ("eth_set_enetaddr(num=%d, addr=%s)\n", num, addr);
354
wdenkc6097192002-11-03 00:24:07 +0000355 if (!eth_devices)
356 return;
357
358 for (i=0; i<6; i++) {
359 enetaddr[i] = addr ? simple_strtoul(addr, &end, 16) : 0;
360 if (addr)
361 addr = (*end) ? end+1 : end;
362 }
363
364 dev = eth_devices;
365 while(num-- > 0) {
366 dev = dev->next;
367
368 if (dev == eth_devices)
369 return;
370 }
371
wdenk1ebf41e2004-01-02 14:00:00 +0000372 debug ( "Setting new HW address on %s\n"
373 "New Address is %02X:%02X:%02X:%02X:%02X:%02X\n",
374 dev->name,
Wolfgang Denkb6ea6302005-09-25 17:05:57 +0200375 enetaddr[0], enetaddr[1],
376 enetaddr[2], enetaddr[3],
377 enetaddr[4], enetaddr[5]);
wdenkc6097192002-11-03 00:24:07 +0000378
379 memcpy(dev->enetaddr, enetaddr, 6);
380}
David Updegraff7280da72007-06-11 10:41:07 -0500381#ifdef CONFIG_MCAST_TFTP
382/* Multicast.
383 * mcast_addr: multicast ipaddr from which multicast Mac is made
Wolfgang Denk627f5c32007-08-14 09:47:27 +0200384 * join: 1=join, 0=leave.
David Updegraff7280da72007-06-11 10:41:07 -0500385 */
386int eth_mcast_join( IPaddr_t mcast_ip, u8 join)
387{
388 u8 mcast_mac[6];
Wolfgang Denk627f5c32007-08-14 09:47:27 +0200389 if (!eth_current || !eth_current->mcast)
David Updegraff7280da72007-06-11 10:41:07 -0500390 return -1;
391 mcast_mac[5] = htonl(mcast_ip) & 0xff;
392 mcast_mac[4] = (htonl(mcast_ip)>>8) & 0xff;
393 mcast_mac[3] = (htonl(mcast_ip)>>16) & 0x7f;
394 mcast_mac[2] = 0x5e;
395 mcast_mac[1] = 0x0;
396 mcast_mac[0] = 0x1;
397 return eth_current->mcast(eth_current, mcast_mac, join);
398}
399
Wolfgang Denk627f5c32007-08-14 09:47:27 +0200400/* the 'way' for ethernet-CRC-32. Spliced in from Linux lib/crc32.c
401 * and this is the ethernet-crc method needed for TSEC -- and perhaps
David Updegraff7280da72007-06-11 10:41:07 -0500402 * some other adapter -- hash tables
403 */
404#define CRCPOLY_LE 0xedb88320
405u32 ether_crc (size_t len, unsigned char const *p)
406{
407 int i;
408 u32 crc;
409 crc = ~0;
410 while (len--) {
411 crc ^= *p++;
412 for (i = 0; i < 8; i++)
413 crc = (crc >> 1) ^ ((crc & 1) ? CRCPOLY_LE : 0);
414 }
415 /* an reverse the bits, cuz of way they arrive -- last-first */
416 crc = (crc >> 16) | (crc << 16);
417 crc = (crc >> 8 & 0x00ff00ff) | (crc << 8 & 0xff00ff00);
418 crc = (crc >> 4 & 0x0f0f0f0f) | (crc << 4 & 0xf0f0f0f0);
419 crc = (crc >> 2 & 0x33333333) | (crc << 2 & 0xcccccccc);
420 crc = (crc >> 1 & 0x55555555) | (crc << 1 & 0xaaaaaaaa);
421 return crc;
422}
wdenkc6097192002-11-03 00:24:07 +0000423
David Updegraff7280da72007-06-11 10:41:07 -0500424#endif
425
wdenkc6097192002-11-03 00:24:07 +0000426
427int eth_init(bd_t *bis)
428{
429 struct eth_device* old_current;
430
Stefan Roese11da2be2008-03-04 17:40:41 +0100431 if (!eth_current) {
432 puts ("No ethernet found.\n");
Upakul Barkakatyaed33582007-11-29 12:16:13 +0530433 return -1;
Stefan Roese11da2be2008-03-04 17:40:41 +0100434 }
wdenkc6097192002-11-03 00:24:07 +0000435
436 old_current = eth_current;
437 do {
wdenk1ebf41e2004-01-02 14:00:00 +0000438 debug ("Trying %s\n", eth_current->name);
wdenkc6097192002-11-03 00:24:07 +0000439
Ben Warrende9fcb52008-01-09 18:15:53 -0500440 if (eth_current->init(eth_current,bis) >= 0) {
wdenkc6097192002-11-03 00:24:07 +0000441 eth_current->state = ETH_STATE_ACTIVE;
442
Upakul Barkakatyaed33582007-11-29 12:16:13 +0530443 return 0;
wdenkc6097192002-11-03 00:24:07 +0000444 }
wdenk1ebf41e2004-01-02 14:00:00 +0000445 debug ("FAIL\n");
wdenkc6097192002-11-03 00:24:07 +0000446
447 eth_try_another(0);
448 } while (old_current != eth_current);
449
Upakul Barkakatyaed33582007-11-29 12:16:13 +0530450 return -1;
wdenkc6097192002-11-03 00:24:07 +0000451}
452
453void eth_halt(void)
454{
455 if (!eth_current)
456 return;
457
458 eth_current->halt(eth_current);
459
460 eth_current->state = ETH_STATE_PASSIVE;
461}
462
463int eth_send(volatile void *packet, int length)
464{
465 if (!eth_current)
466 return -1;
467
468 return eth_current->send(eth_current, packet, length);
469}
470
471int eth_rx(void)
472{
473 if (!eth_current)
474 return -1;
475
476 return eth_current->recv(eth_current);
477}
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +0100478
479#ifdef CONFIG_API
480static void eth_save_packet(volatile void *packet, int length)
481{
482 volatile char *p = packet;
483 int i;
484
485 if ((eth_rcv_last+1) % PKTBUFSRX == eth_rcv_current)
486 return;
487
488 if (PKTSIZE < length)
489 return;
490
491 for (i = 0; i < length; i++)
492 eth_rcv_bufs[eth_rcv_last].data[i] = p[i];
493
494 eth_rcv_bufs[eth_rcv_last].length = length;
495 eth_rcv_last = (eth_rcv_last + 1) % PKTBUFSRX;
496}
497
498int eth_receive(volatile void *packet, int length)
499{
500 volatile char *p = packet;
501 void *pp = push_packet;
502 int i;
503
504 if (eth_rcv_current == eth_rcv_last) {
505 push_packet = eth_save_packet;
506 eth_rx();
507 push_packet = pp;
508
509 if (eth_rcv_current == eth_rcv_last)
510 return -1;
511 }
512
513 if (length < eth_rcv_bufs[eth_rcv_current].length)
514 return -1;
515
516 length = eth_rcv_bufs[eth_rcv_current].length;
517
518 for (i = 0; i < length; i++)
519 p[i] = eth_rcv_bufs[eth_rcv_current].data[i];
520
521 eth_rcv_current = (eth_rcv_current + 1) % PKTBUFSRX;
522 return length;
523}
524#endif /* CONFIG_API */
wdenkc6097192002-11-03 00:24:07 +0000525
526void eth_try_another(int first_restart)
527{
528 static struct eth_device *first_failed = NULL;
Matthias Fuchs204f0ec2008-01-17 07:45:05 +0100529 char *ethrotate;
530
531 /*
532 * Do not rotate between network interfaces when
533 * 'ethrotate' variable is set to 'no'.
534 */
535 if (((ethrotate = getenv ("ethrotate")) != NULL) &&
536 (strcmp(ethrotate, "no") == 0))
537 return;
wdenkc6097192002-11-03 00:24:07 +0000538
539 if (!eth_current)
540 return;
541
wdenk63a10be2004-05-08 20:33:20 +0000542 if (first_restart) {
wdenkc6097192002-11-03 00:24:07 +0000543 first_failed = eth_current;
544 }
545
546 eth_current = eth_current->next;
547
wdenk145d2c12004-04-15 21:48:45 +0000548#ifdef CONFIG_NET_MULTI
549 /* update current ethernet name */
550 {
551 char *act = getenv("ethact");
552 if (act == NULL || strcmp(act, eth_current->name) != 0)
553 setenv("ethact", eth_current->name);
554 }
555#endif
556
wdenk63a10be2004-05-08 20:33:20 +0000557 if (first_failed == eth_current) {
wdenkc6097192002-11-03 00:24:07 +0000558 NetRestartWrap = 1;
559 }
560}
561
wdenk145d2c12004-04-15 21:48:45 +0000562#ifdef CONFIG_NET_MULTI
563void eth_set_current(void)
564{
565 char *act;
566 struct eth_device* old_current;
567
568 if (!eth_current) /* XXX no current */
569 return;
570
571 act = getenv("ethact");
572 if (act != NULL) {
573 old_current = eth_current;
574 do {
575 if (strcmp(eth_current->name, act) == 0)
576 return;
577 eth_current = eth_current->next;
578 } while (old_current != eth_current);
579 }
580
581 setenv("ethact", eth_current->name);
582}
583#endif
584
wdenkc6abb7e2003-11-17 21:14:37 +0000585char *eth_get_name (void)
586{
587 return (eth_current ? eth_current->name : "unknown");
588}
Jon Loeliger54f35c22007-07-09 17:45:14 -0500589#elif defined(CONFIG_CMD_NET) && !defined(CONFIG_NET_MULTI)
Marian Balakowiczaab8c492005-10-28 22:30:33 +0200590
591extern int at91rm9200_miiphy_initialize(bd_t *bis);
592extern int emac4xx_miiphy_initialize(bd_t *bis);
593extern int mcf52x2_miiphy_initialize(bd_t *bis);
594extern int ns7520_miiphy_initialize(bd_t *bis);
Sergey Kubushyne8f39122007-08-10 20:26:18 +0200595extern int dm644x_eth_miiphy_initialize(bd_t *bis);
596
Marian Balakowiczaab8c492005-10-28 22:30:33 +0200597
598int eth_initialize(bd_t *bis)
599{
Jon Loeliger54f35c22007-07-09 17:45:14 -0500600#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Marian Balakowiczcbdd1c82005-11-30 18:06:04 +0100601 miiphy_init();
602#endif
603
Marian Balakowiczaab8c492005-10-28 22:30:33 +0200604#if defined(CONFIG_AT91RM9200)
605 at91rm9200_miiphy_initialize(bis);
606#endif
607#if defined(CONFIG_4xx) && !defined(CONFIG_IOP480) \
608 && !defined(CONFIG_AP1000) && !defined(CONFIG_405)
609 emac4xx_miiphy_initialize(bis);
610#endif
611#if defined(CONFIG_MCF52x2)
612 mcf52x2_miiphy_initialize(bis);
613#endif
Wolfgang Denk81490f42008-07-13 23:07:35 +0200614#if defined(CONFIG_DRIVER_NS7520_ETHERNET)
Marian Balakowiczaab8c492005-10-28 22:30:33 +0200615 ns7520_miiphy_initialize(bis);
616#endif
Sergey Kubushyne8f39122007-08-10 20:26:18 +0200617#if defined(CONFIG_DRIVER_TI_EMAC)
618 dm644x_eth_miiphy_initialize(bis);
619#endif
Marian Balakowiczaab8c492005-10-28 22:30:33 +0200620 return 0;
621}
wdenkc6097192002-11-03 00:24:07 +0000622#endif