blob: f707971753a0c2889516c80f709674bc522513a8 [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
31#ifdef CFG_GT_6426x
32extern int gt6426x_eth_initialize(bd_t *bis);
33#endif
34
wdenk5da7f2f2004-01-03 00:43:19 +000035extern int au1x00_enet_initialize(bd_t*);
36extern int dc21x4x_initialize(bd_t*);
wdenk4e112c12003-06-03 23:54:09 +000037extern int e1000_initialize(bd_t*);
wdenkc6097192002-11-03 00:24:07 +000038extern int eepro100_initialize(bd_t*);
wdenk452cfd62002-11-19 11:04:11 +000039extern int eth_3com_initialize(bd_t*);
wdenkc6097192002-11-03 00:24:07 +000040extern int fec_initialize(bd_t*);
wdenk4fc95692003-02-28 00:49:47 +000041extern int inca_switch_initialize(bd_t*);
wdenk21136db2003-07-16 21:53:01 +000042extern int mpc5xxx_fec_initialize(bd_t*);
Rafal Jaworowskid3a02c32007-07-27 14:43:59 +020043extern int mpc512x_fec_initialize(bd_t*);
wdenk337f5652004-10-28 00:09:35 +000044extern int mpc8220_fec_initialize(bd_t*);
wdenk5da7f2f2004-01-03 00:43:19 +000045extern int mv6436x_eth_initialize(bd_t *);
46extern int mv6446x_eth_initialize(bd_t *);
47extern int natsemi_initialize(bd_t*);
48extern int ns8382x_initialize(bd_t*);
49extern int pcnet_initialize(bd_t*);
50extern int plb2800_eth_initialize(bd_t*);
51extern int ppc_4xx_eth_initialize(bd_t *);
52extern int rtl8139_initialize(bd_t*);
wdenka6270482004-04-18 22:03:42 +000053extern int rtl8169_initialize(bd_t*);
wdenk5da7f2f2004-01-03 00:43:19 +000054extern int scc_initialize(bd_t*);
wdenkeb20ad32003-09-05 23:19:14 +000055extern int skge_initialize(bd_t*);
roy zang72526f72006-11-02 19:08:55 +080056extern int tsi108_eth_initialize(bd_t*);
Roy Zang99762232007-11-05 17:39:24 +080057extern int uli526x_initialize(bd_t *);
Jon Loeliger77a4f6e2005-07-25 14:05:07 -050058extern int tsec_initialize(bd_t*, int, char *);
Wolfgang Denk4646d2a2006-05-30 15:56:48 +020059extern int npe_initialize(bd_t *);
Dave Liue732e9c2006-11-03 12:11:15 -060060extern int uec_initialize(int);
Aubrey Li570dc1e2007-04-05 18:30:25 +080061extern int bfin_EMAC_initialize(bd_t *);
Haavard Skinnemoen58f4c262006-12-17 17:14:30 +010062extern int atstk1000_eth_initialize(bd_t *);
Haavard Skinnemoenb62a4312007-04-14 17:11:49 +020063extern int atngw100_eth_initialize(bd_t *);
TsiChung Liewf6afe722007-06-18 13:50:13 -050064extern int mcffec_initialize(bd_t*);
wdenkc6097192002-11-03 00:24:07 +000065
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +010066#ifdef CONFIG_API
67extern void (*push_packet)(volatile void *, int);
68
69static struct {
70 uchar data[PKTSIZE];
71 int length;
72} eth_rcv_bufs[PKTBUFSRX];
73
74static unsigned int eth_rcv_current = 0, eth_rcv_last = 0;
75#endif
76
wdenkc6097192002-11-03 00:24:07 +000077static struct eth_device *eth_devices, *eth_current;
78
79struct eth_device *eth_get_dev(void)
80{
81 return eth_current;
82}
83
Marian Balakowiczaab8c492005-10-28 22:30:33 +020084struct eth_device *eth_get_dev_by_name(char *devname)
85{
86 struct eth_device *dev, *target_dev;
87
88 if (!eth_devices)
89 return NULL;
90
91 dev = eth_devices;
92 target_dev = NULL;
93 do {
94 if (strcmp(devname, dev->name) == 0) {
95 target_dev = dev;
96 break;
97 }
98 dev = dev->next;
99 } while (dev != eth_devices);
100
101 return target_dev;
102}
103
wdenkc6097192002-11-03 00:24:07 +0000104int eth_get_dev_index (void)
105{
106 struct eth_device *dev;
107 int num = 0;
108
109 if (!eth_devices) {
110 return (-1);
111 }
112
113 for (dev = eth_devices; dev; dev = dev->next) {
114 if (dev == eth_current)
115 break;
116 ++num;
117 }
118
119 if (dev) {
120 return (num);
121 }
122
123 return (0);
124}
125
126int eth_register(struct eth_device* dev)
127{
128 struct eth_device *d;
129
130 if (!eth_devices) {
131 eth_current = eth_devices = dev;
wdenk145d2c12004-04-15 21:48:45 +0000132#ifdef CONFIG_NET_MULTI
133 /* update current ethernet name */
134 {
135 char *act = getenv("ethact");
136 if (act == NULL || strcmp(act, eth_current->name) != 0)
137 setenv("ethact", eth_current->name);
138 }
139#endif
wdenkc6097192002-11-03 00:24:07 +0000140 } else {
141 for (d=eth_devices; d->next!=eth_devices; d=d->next);
142 d->next = dev;
143 }
144
145 dev->state = ETH_STATE_INIT;
146 dev->next = eth_devices;
147
148 return 0;
149}
150
151int eth_initialize(bd_t *bis)
152{
Shinya Kuribayashidb7101e2007-11-19 20:27:04 +0900153 char enetvar[32];
154 unsigned char env_enetaddr[6];
wdenkc6097192002-11-03 00:24:07 +0000155 int i, eth_number = 0;
156 char *tmp, *end;
157
158 eth_devices = NULL;
159 eth_current = NULL;
160
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200161 show_boot_progress (64);
Jon Loeliger54f35c22007-07-09 17:45:14 -0500162#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Marian Balakowiczcbdd1c82005-11-30 18:06:04 +0100163 miiphy_init();
164#endif
165
Stefan Roese45993ea2006-11-29 15:42:37 +0100166#if defined(CONFIG_DB64360) || defined(CONFIG_CPCI750)
wdenk5da7f2f2004-01-03 00:43:19 +0000167 mv6436x_eth_initialize(bis);
168#endif
Stefan Roese45993ea2006-11-29 15:42:37 +0100169#if defined(CONFIG_DB64460) || defined(CONFIG_P3Mx)
wdenk5da7f2f2004-01-03 00:43:19 +0000170 mv6446x_eth_initialize(bis);
171#endif
Wolfgang Denk56811f62005-10-09 01:04:33 +0200172#if defined(CONFIG_4xx) && !defined(CONFIG_IOP480) && !defined(CONFIG_AP1000)
wdenk57b2d802003-06-27 21:31:46 +0000173 ppc_4xx_eth_initialize(bis);
wdenk77934442003-06-05 19:37:36 +0000174#endif
wdenk4fc95692003-02-28 00:49:47 +0000175#ifdef CONFIG_INCA_IP_SWITCH
176 inca_switch_initialize(bis);
177#endif
wdenkb02744a2003-04-05 00:53:31 +0000178#ifdef CONFIG_PLB2800_ETHER
179 plb2800_eth_initialize(bis);
180#endif
wdenk63a10be2004-05-08 20:33:20 +0000181#ifdef SCC_ENET
182 scc_initialize(bis);
183#endif
wdenk63a10be2004-05-08 20:33:20 +0000184#if defined(CONFIG_MPC5xxx_FEC)
185 mpc5xxx_fec_initialize(bis);
186#endif
Rafal Jaworowskid3a02c32007-07-27 14:43:59 +0200187#if defined(CONFIG_MPC512x_FEC)
188 mpc512x_fec_initialize (bis);
189#endif
wdenk5c71a7a2005-05-16 15:23:22 +0000190#if defined(CONFIG_MPC8220_FEC)
wdenk337f5652004-10-28 00:09:35 +0000191 mpc8220_fec_initialize(bis);
192#endif
wdenk63a10be2004-05-08 20:33:20 +0000193#if defined(CONFIG_SK98)
194 skge_initialize(bis);
195#endif
Kim Phillips177e58f2007-05-16 16:52:19 -0500196#if defined(CONFIG_TSEC1)
197 tsec_initialize(bis, 0, CONFIG_TSEC1_NAME);
wdenk13eb2212004-07-09 23:27:13 +0000198#endif
Kim Phillips177e58f2007-05-16 16:52:19 -0500199#if defined(CONFIG_TSEC2)
200 tsec_initialize(bis, 1, CONFIG_TSEC2_NAME);
wdenk13eb2212004-07-09 23:27:13 +0000201#endif
202#if defined(CONFIG_MPC85XX_FEC)
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500203 tsec_initialize(bis, 2, CONFIG_MPC85XX_FEC_NAME);
204#else
Kim Phillips177e58f2007-05-16 16:52:19 -0500205# if defined(CONFIG_TSEC3)
206 tsec_initialize(bis, 2, CONFIG_TSEC3_NAME);
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500207# endif
Kim Phillips177e58f2007-05-16 16:52:19 -0500208# if defined(CONFIG_TSEC4)
209 tsec_initialize(bis, 3, CONFIG_TSEC4_NAME);
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500210# endif
wdenk63a10be2004-05-08 20:33:20 +0000211#endif
Dave Liue732e9c2006-11-03 12:11:15 -0600212#if defined(CONFIG_UEC_ETH1)
213 uec_initialize(0);
214#endif
215#if defined(CONFIG_UEC_ETH2)
216 uec_initialize(1);
217#endif
Joakim Tjernlund4e483202007-12-06 16:43:40 +0100218#if defined(CONFIG_UEC_ETH3)
219 uec_initialize(2);
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
Haavard Skinnemoen58f4c262006-12-17 17:14:30 +0100270#if defined(CONFIG_ATSTK1000)
271 atstk1000_eth_initialize(bis);
272#endif
Haavard Skinnemoenb62a4312007-04-14 17:11:49 +0200273#if defined(CONFIG_ATNGW100)
274 atngw100_eth_initialize(bis);
275#endif
TsiChungLiew507bd712007-07-05 23:29:21 -0500276#if defined(CONFIG_MCFFEC)
277 mcffec_initialize(bis);
278#endif
wdenkc6097192002-11-03 00:24:07 +0000279
280 if (!eth_devices) {
281 puts ("No ethernet found.\n");
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200282 show_boot_progress (-64);
wdenkc6097192002-11-03 00:24:07 +0000283 } else {
284 struct eth_device *dev = eth_devices;
285 char *ethprime = getenv ("ethprime");
286
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200287 show_boot_progress (65);
wdenkc6097192002-11-03 00:24:07 +0000288 do {
289 if (eth_number)
290 puts (", ");
291
292 printf("%s", dev->name);
293
294 if (ethprime && strcmp (dev->name, ethprime) == 0) {
295 eth_current = dev;
296 puts (" [PRIME]");
297 }
298
299 sprintf(enetvar, eth_number ? "eth%daddr" : "ethaddr", eth_number);
300 tmp = getenv (enetvar);
301
302 for (i=0; i<6; i++) {
303 env_enetaddr[i] = tmp ? simple_strtoul(tmp, &end, 16) : 0;
304 if (tmp)
305 tmp = (*end) ? end+1 : end;
306 }
307
308 if (memcmp(env_enetaddr, "\0\0\0\0\0\0", 6)) {
309 if (memcmp(dev->enetaddr, "\0\0\0\0\0\0", 6) &&
310 memcmp(dev->enetaddr, env_enetaddr, 6))
311 {
wdenk63a10be2004-05-08 20:33:20 +0000312 printf ("\nWarning: %s MAC addresses don't match:\n",
313 dev->name);
314 printf ("Address in SROM is "
wdenkc6097192002-11-03 00:24:07 +0000315 "%02X:%02X:%02X:%02X:%02X:%02X\n",
316 dev->enetaddr[0], dev->enetaddr[1],
317 dev->enetaddr[2], dev->enetaddr[3],
318 dev->enetaddr[4], dev->enetaddr[5]);
wdenk63a10be2004-05-08 20:33:20 +0000319 printf ("Address in environment is "
wdenkc6097192002-11-03 00:24:07 +0000320 "%02X:%02X:%02X:%02X:%02X:%02X\n",
321 env_enetaddr[0], env_enetaddr[1],
322 env_enetaddr[2], env_enetaddr[3],
323 env_enetaddr[4], env_enetaddr[5]);
324 }
325
326 memcpy(dev->enetaddr, env_enetaddr, 6);
327 }
328
329 eth_number++;
330 dev = dev->next;
331 } while(dev != eth_devices);
332
wdenk145d2c12004-04-15 21:48:45 +0000333#ifdef CONFIG_NET_MULTI
334 /* update current ethernet name */
335 if (eth_current) {
336 char *act = getenv("ethact");
337 if (act == NULL || strcmp(act, eth_current->name) != 0)
338 setenv("ethact", eth_current->name);
339 } else
340 setenv("ethact", NULL);
341#endif
342
wdenkc6097192002-11-03 00:24:07 +0000343 putc ('\n');
344 }
345
346 return eth_number;
347}
348
349void eth_set_enetaddr(int num, char *addr) {
350 struct eth_device *dev;
351 unsigned char enetaddr[6];
352 char *end;
353 int i;
354
wdenk1ebf41e2004-01-02 14:00:00 +0000355 debug ("eth_set_enetaddr(num=%d, addr=%s)\n", num, addr);
356
wdenkc6097192002-11-03 00:24:07 +0000357 if (!eth_devices)
358 return;
359
360 for (i=0; i<6; i++) {
361 enetaddr[i] = addr ? simple_strtoul(addr, &end, 16) : 0;
362 if (addr)
363 addr = (*end) ? end+1 : end;
364 }
365
366 dev = eth_devices;
367 while(num-- > 0) {
368 dev = dev->next;
369
370 if (dev == eth_devices)
371 return;
372 }
373
wdenk1ebf41e2004-01-02 14:00:00 +0000374 debug ( "Setting new HW address on %s\n"
375 "New Address is %02X:%02X:%02X:%02X:%02X:%02X\n",
376 dev->name,
Wolfgang Denkb6ea6302005-09-25 17:05:57 +0200377 enetaddr[0], enetaddr[1],
378 enetaddr[2], enetaddr[3],
379 enetaddr[4], enetaddr[5]);
wdenkc6097192002-11-03 00:24:07 +0000380
381 memcpy(dev->enetaddr, enetaddr, 6);
382}
David Updegraff7280da72007-06-11 10:41:07 -0500383#ifdef CONFIG_MCAST_TFTP
384/* Multicast.
385 * mcast_addr: multicast ipaddr from which multicast Mac is made
Wolfgang Denk627f5c32007-08-14 09:47:27 +0200386 * join: 1=join, 0=leave.
David Updegraff7280da72007-06-11 10:41:07 -0500387 */
388int eth_mcast_join( IPaddr_t mcast_ip, u8 join)
389{
390 u8 mcast_mac[6];
Wolfgang Denk627f5c32007-08-14 09:47:27 +0200391 if (!eth_current || !eth_current->mcast)
David Updegraff7280da72007-06-11 10:41:07 -0500392 return -1;
393 mcast_mac[5] = htonl(mcast_ip) & 0xff;
394 mcast_mac[4] = (htonl(mcast_ip)>>8) & 0xff;
395 mcast_mac[3] = (htonl(mcast_ip)>>16) & 0x7f;
396 mcast_mac[2] = 0x5e;
397 mcast_mac[1] = 0x0;
398 mcast_mac[0] = 0x1;
399 return eth_current->mcast(eth_current, mcast_mac, join);
400}
401
Wolfgang Denk627f5c32007-08-14 09:47:27 +0200402/* the 'way' for ethernet-CRC-32. Spliced in from Linux lib/crc32.c
403 * and this is the ethernet-crc method needed for TSEC -- and perhaps
David Updegraff7280da72007-06-11 10:41:07 -0500404 * some other adapter -- hash tables
405 */
406#define CRCPOLY_LE 0xedb88320
407u32 ether_crc (size_t len, unsigned char const *p)
408{
409 int i;
410 u32 crc;
411 crc = ~0;
412 while (len--) {
413 crc ^= *p++;
414 for (i = 0; i < 8; i++)
415 crc = (crc >> 1) ^ ((crc & 1) ? CRCPOLY_LE : 0);
416 }
417 /* an reverse the bits, cuz of way they arrive -- last-first */
418 crc = (crc >> 16) | (crc << 16);
419 crc = (crc >> 8 & 0x00ff00ff) | (crc << 8 & 0xff00ff00);
420 crc = (crc >> 4 & 0x0f0f0f0f) | (crc << 4 & 0xf0f0f0f0);
421 crc = (crc >> 2 & 0x33333333) | (crc << 2 & 0xcccccccc);
422 crc = (crc >> 1 & 0x55555555) | (crc << 1 & 0xaaaaaaaa);
423 return crc;
424}
wdenkc6097192002-11-03 00:24:07 +0000425
David Updegraff7280da72007-06-11 10:41:07 -0500426#endif
427
wdenkc6097192002-11-03 00:24:07 +0000428
429int eth_init(bd_t *bis)
430{
431 struct eth_device* old_current;
432
433 if (!eth_current)
Upakul Barkakatyaed33582007-11-29 12:16:13 +0530434 return -1;
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;
529
530 if (!eth_current)
531 return;
532
wdenk63a10be2004-05-08 20:33:20 +0000533 if (first_restart) {
wdenkc6097192002-11-03 00:24:07 +0000534 first_failed = eth_current;
535 }
536
537 eth_current = eth_current->next;
538
wdenk145d2c12004-04-15 21:48:45 +0000539#ifdef CONFIG_NET_MULTI
540 /* update current ethernet name */
541 {
542 char *act = getenv("ethact");
543 if (act == NULL || strcmp(act, eth_current->name) != 0)
544 setenv("ethact", eth_current->name);
545 }
546#endif
547
wdenk63a10be2004-05-08 20:33:20 +0000548 if (first_failed == eth_current) {
wdenkc6097192002-11-03 00:24:07 +0000549 NetRestartWrap = 1;
550 }
551}
552
wdenk145d2c12004-04-15 21:48:45 +0000553#ifdef CONFIG_NET_MULTI
554void eth_set_current(void)
555{
556 char *act;
557 struct eth_device* old_current;
558
559 if (!eth_current) /* XXX no current */
560 return;
561
562 act = getenv("ethact");
563 if (act != NULL) {
564 old_current = eth_current;
565 do {
566 if (strcmp(eth_current->name, act) == 0)
567 return;
568 eth_current = eth_current->next;
569 } while (old_current != eth_current);
570 }
571
572 setenv("ethact", eth_current->name);
573}
574#endif
575
wdenkc6abb7e2003-11-17 21:14:37 +0000576char *eth_get_name (void)
577{
578 return (eth_current ? eth_current->name : "unknown");
579}
Jon Loeliger54f35c22007-07-09 17:45:14 -0500580#elif defined(CONFIG_CMD_NET) && !defined(CONFIG_NET_MULTI)
Marian Balakowiczaab8c492005-10-28 22:30:33 +0200581
582extern int at91rm9200_miiphy_initialize(bd_t *bis);
583extern int emac4xx_miiphy_initialize(bd_t *bis);
584extern int mcf52x2_miiphy_initialize(bd_t *bis);
585extern int ns7520_miiphy_initialize(bd_t *bis);
Sergey Kubushyne8f39122007-08-10 20:26:18 +0200586extern int dm644x_eth_miiphy_initialize(bd_t *bis);
587
Marian Balakowiczaab8c492005-10-28 22:30:33 +0200588
589int eth_initialize(bd_t *bis)
590{
Jon Loeliger54f35c22007-07-09 17:45:14 -0500591#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Marian Balakowiczcbdd1c82005-11-30 18:06:04 +0100592 miiphy_init();
593#endif
594
Marian Balakowiczaab8c492005-10-28 22:30:33 +0200595#if defined(CONFIG_AT91RM9200)
596 at91rm9200_miiphy_initialize(bis);
597#endif
598#if defined(CONFIG_4xx) && !defined(CONFIG_IOP480) \
599 && !defined(CONFIG_AP1000) && !defined(CONFIG_405)
600 emac4xx_miiphy_initialize(bis);
601#endif
602#if defined(CONFIG_MCF52x2)
603 mcf52x2_miiphy_initialize(bis);
604#endif
605#if defined(CONFIG_NETARM)
606 ns7520_miiphy_initialize(bis);
607#endif
Sergey Kubushyne8f39122007-08-10 20:26:18 +0200608#if defined(CONFIG_DRIVER_TI_EMAC)
609 dm644x_eth_miiphy_initialize(bis);
610#endif
Marian Balakowiczaab8c492005-10-28 22:30:33 +0200611 return 0;
612}
wdenkc6097192002-11-03 00:24:07 +0000613#endif