blob: 21d14961cb20e04b95ccb739184ae39a43db41fd [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
wdenkd4ca31c2004-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 Balakowiczd9785c12005-11-30 18:06:04 +010027#include <miiphy.h>
wdenkc6097192002-11-03 00:24:07 +000028
Jon Loeliger643d1ab2007-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
wdenk3a473b22004-01-03 00:43:19 +000035extern int au1x00_enet_initialize(bd_t*);
36extern int dc21x4x_initialize(bd_t*);
wdenk682011f2003-06-03 23:54:09 +000037extern int e1000_initialize(bd_t*);
wdenkc6097192002-11-03 00:24:07 +000038extern int eepro100_initialize(bd_t*);
wdenk3a473b22004-01-03 00:43:19 +000039extern int eth_3com_initialize(bd_t*);
40extern int fec_initialize(bd_t*);
41extern int inca_switch_initialize(bd_t*);
42extern int mpc5xxx_fec_initialize(bd_t*);
Rafal Jaworowski8993e542007-07-27 14:43:59 +020043extern int mpc512x_fec_initialize(bd_t*);
wdenk983fda82004-10-28 00:09:35 +000044extern int mpc8220_fec_initialize(bd_t*);
wdenk3a473b22004-01-03 00:43:19 +000045extern int mv6436x_eth_initialize(bd_t *);
46extern int mv6446x_eth_initialize(bd_t *);
wdenkc6097192002-11-03 00:24:07 +000047extern int natsemi_initialize(bd_t*);
48extern int ns8382x_initialize(bd_t*);
wdenkc6097192002-11-03 00:24:07 +000049extern int pcnet_initialize(bd_t*);
wdenk3e386912003-04-05 00:53:31 +000050extern int plb2800_eth_initialize(bd_t*);
wdenk3a473b22004-01-03 00:43:19 +000051extern int ppc_4xx_eth_initialize(bd_t *);
52extern int rtl8139_initialize(bd_t*);
wdenka8bd82d2004-04-18 22:03:42 +000053extern int rtl8169_initialize(bd_t*);
wdenk3a473b22004-01-03 00:43:19 +000054extern int scc_initialize(bd_t*);
wdenk7152b1d2003-09-05 23:19:14 +000055extern int skge_initialize(bd_t*);
roy zangd1927ce2006-11-02 19:08:55 +080056extern int tsi108_eth_initialize(bd_t*);
Roy Zang1f103102007-11-05 17:39:24 +080057extern int uli526x_initialize(bd_t *);
Jon Loeligerd9b94f22005-07-25 14:05:07 -050058extern int tsec_initialize(bd_t*, int, char *);
Wolfgang Denkba94a1b2006-05-30 15:56:48 +020059extern int npe_initialize(bd_t *);
Dave Liu7737d5c2006-11-03 12:11:15 -060060extern int uec_initialize(int);
Aubrey Li9fd437b2007-04-05 18:30:25 +080061extern int bfin_EMAC_initialize(bd_t *);
Haavard Skinnemoen9a24f472006-12-17 17:14:30 +010062extern int atstk1000_eth_initialize(bd_t *);
Daniel Hellstromc2b7da52008-03-28 20:22:53 +010063extern int greth_initialize(bd_t *);
Haavard Skinnemoen6b443942007-04-14 17:11:49 +020064extern int atngw100_eth_initialize(bd_t *);
TsiChung Liew8e585f02007-06-18 13:50:13 -050065extern int mcffec_initialize(bd_t*);
TsiChungLiew777d1ab2008-01-15 14:00:25 -060066extern int mcdmafec_initialize(bd_t*);
Stelian Popa8a78f22008-03-26 20:52:28 +010067extern int at91sam9_eth_initialize(bd_t *);
wdenkc6097192002-11-03 00:24:07 +000068
Rafal Jaworowskif85b6072007-12-27 18:19:02 +010069#ifdef CONFIG_API
70extern void (*push_packet)(volatile void *, int);
71
72static struct {
73 uchar data[PKTSIZE];
74 int length;
75} eth_rcv_bufs[PKTBUFSRX];
76
77static unsigned int eth_rcv_current = 0, eth_rcv_last = 0;
78#endif
79
wdenkc6097192002-11-03 00:24:07 +000080static struct eth_device *eth_devices, *eth_current;
81
82struct eth_device *eth_get_dev(void)
83{
84 return eth_current;
85}
86
Marian Balakowicz63ff0042005-10-28 22:30:33 +020087struct eth_device *eth_get_dev_by_name(char *devname)
88{
89 struct eth_device *dev, *target_dev;
90
91 if (!eth_devices)
92 return NULL;
93
94 dev = eth_devices;
95 target_dev = NULL;
96 do {
97 if (strcmp(devname, dev->name) == 0) {
98 target_dev = dev;
99 break;
100 }
101 dev = dev->next;
102 } while (dev != eth_devices);
103
104 return target_dev;
105}
106
wdenkc6097192002-11-03 00:24:07 +0000107int eth_get_dev_index (void)
108{
109 struct eth_device *dev;
110 int num = 0;
111
112 if (!eth_devices) {
113 return (-1);
114 }
115
116 for (dev = eth_devices; dev; dev = dev->next) {
117 if (dev == eth_current)
118 break;
119 ++num;
120 }
121
122 if (dev) {
123 return (num);
124 }
125
126 return (0);
127}
128
129int eth_register(struct eth_device* dev)
130{
131 struct eth_device *d;
132
133 if (!eth_devices) {
134 eth_current = eth_devices = dev;
wdenka3d991b2004-04-15 21:48:45 +0000135#ifdef CONFIG_NET_MULTI
136 /* update current ethernet name */
137 {
138 char *act = getenv("ethact");
139 if (act == NULL || strcmp(act, eth_current->name) != 0)
140 setenv("ethact", eth_current->name);
141 }
142#endif
wdenkc6097192002-11-03 00:24:07 +0000143 } else {
144 for (d=eth_devices; d->next!=eth_devices; d=d->next);
145 d->next = dev;
146 }
147
148 dev->state = ETH_STATE_INIT;
149 dev->next = eth_devices;
150
151 return 0;
152}
153
154int eth_initialize(bd_t *bis)
155{
Shinya Kuribayashi5ca2d092007-11-19 20:27:04 +0900156 char enetvar[32];
157 unsigned char env_enetaddr[6];
wdenkc6097192002-11-03 00:24:07 +0000158 int i, eth_number = 0;
159 char *tmp, *end;
160
161 eth_devices = NULL;
162 eth_current = NULL;
163
Heiko Schocherfad63402007-07-13 09:54:17 +0200164 show_boot_progress (64);
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500165#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Marian Balakowiczd9785c12005-11-30 18:06:04 +0100166 miiphy_init();
167#endif
168
Stefan Roese1eac2a72006-11-29 15:42:37 +0100169#if defined(CONFIG_DB64360) || defined(CONFIG_CPCI750)
wdenk3a473b22004-01-03 00:43:19 +0000170 mv6436x_eth_initialize(bis);
171#endif
Stefan Roese1eac2a72006-11-29 15:42:37 +0100172#if defined(CONFIG_DB64460) || defined(CONFIG_P3Mx)
wdenk3a473b22004-01-03 00:43:19 +0000173 mv6446x_eth_initialize(bis);
174#endif
Wolfgang Denk7521af12005-10-09 01:04:33 +0200175#if defined(CONFIG_4xx) && !defined(CONFIG_IOP480) && !defined(CONFIG_AP1000)
wdenk8bde7f72003-06-27 21:31:46 +0000176 ppc_4xx_eth_initialize(bis);
wdenka3ed3992003-06-05 19:37:36 +0000177#endif
wdenk6069ff22003-02-28 00:49:47 +0000178#ifdef CONFIG_INCA_IP_SWITCH
179 inca_switch_initialize(bis);
180#endif
wdenk3e386912003-04-05 00:53:31 +0000181#ifdef CONFIG_PLB2800_ETHER
182 plb2800_eth_initialize(bis);
183#endif
wdenkbaac6072004-05-08 20:33:20 +0000184#ifdef SCC_ENET
185 scc_initialize(bis);
186#endif
wdenkbaac6072004-05-08 20:33:20 +0000187#if defined(CONFIG_MPC5xxx_FEC)
188 mpc5xxx_fec_initialize(bis);
189#endif
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200190#if defined(CONFIG_MPC512x_FEC)
191 mpc512x_fec_initialize (bis);
192#endif
wdenk7680c142005-05-16 15:23:22 +0000193#if defined(CONFIG_MPC8220_FEC)
wdenk983fda82004-10-28 00:09:35 +0000194 mpc8220_fec_initialize(bis);
195#endif
wdenkbaac6072004-05-08 20:33:20 +0000196#if defined(CONFIG_SK98)
197 skge_initialize(bis);
198#endif
Kim Phillips255a35772007-05-16 16:52:19 -0500199#if defined(CONFIG_TSEC1)
200 tsec_initialize(bis, 0, CONFIG_TSEC1_NAME);
wdenk0ac6f8b2004-07-09 23:27:13 +0000201#endif
Kim Phillips255a35772007-05-16 16:52:19 -0500202#if defined(CONFIG_TSEC2)
203 tsec_initialize(bis, 1, CONFIG_TSEC2_NAME);
wdenk0ac6f8b2004-07-09 23:27:13 +0000204#endif
205#if defined(CONFIG_MPC85XX_FEC)
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500206 tsec_initialize(bis, 2, CONFIG_MPC85XX_FEC_NAME);
207#else
Kim Phillips255a35772007-05-16 16:52:19 -0500208# if defined(CONFIG_TSEC3)
209 tsec_initialize(bis, 2, CONFIG_TSEC3_NAME);
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500210# endif
Kim Phillips255a35772007-05-16 16:52:19 -0500211# if defined(CONFIG_TSEC4)
212 tsec_initialize(bis, 3, CONFIG_TSEC4_NAME);
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500213# endif
wdenkbaac6072004-05-08 20:33:20 +0000214#endif
Dave Liu7737d5c2006-11-03 12:11:15 -0600215#if defined(CONFIG_UEC_ETH1)
216 uec_initialize(0);
217#endif
218#if defined(CONFIG_UEC_ETH2)
219 uec_initialize(1);
220#endif
Joakim Tjernlundccf21c32007-12-06 16:43:40 +0100221#if defined(CONFIG_UEC_ETH3)
222 uec_initialize(2);
223#endif
David Saada24656652008-01-15 10:40:24 +0200224#if defined(CONFIG_UEC_ETH4)
225 uec_initialize(3);
226#endif
Jon Loeligerdebb7352006-04-26 17:58:56 -0500227
Stefan Roesed96f41e2005-11-30 13:06:40 +0100228#if defined(FEC_ENET) || defined(CONFIG_ETHER_ON_FCC)
229 fec_initialize(bis);
230#endif
wdenkbaac6072004-05-08 20:33:20 +0000231#if defined(CONFIG_AU1X00)
232 au1x00_enet_initialize(bis);
233#endif
Wolfgang Denkba94a1b2006-05-30 15:56:48 +0200234#if defined(CONFIG_IXP4XX_NPE)
235 npe_initialize(bis);
236#endif
wdenk682011f2003-06-03 23:54:09 +0000237#ifdef CONFIG_E1000
238 e1000_initialize(bis);
239#endif
wdenkc6097192002-11-03 00:24:07 +0000240#ifdef CONFIG_EEPRO100
241 eepro100_initialize(bis);
242#endif
243#ifdef CONFIG_TULIP
244 dc21x4x_initialize(bis);
245#endif
wdenkc7de8292002-11-19 11:04:11 +0000246#ifdef CONFIG_3COM
247 eth_3com_initialize(bis);
248#endif
wdenkc6097192002-11-03 00:24:07 +0000249#ifdef CONFIG_PCNET
250 pcnet_initialize(bis);
251#endif
252#ifdef CFG_GT_6426x
253 gt6426x_eth_initialize(bis);
254#endif
255#ifdef CONFIG_NATSEMI
256 natsemi_initialize(bis);
257#endif
258#ifdef CONFIG_NS8382X
259 ns8382x_initialize(bis);
260#endif
roy zangd1927ce2006-11-02 19:08:55 +0800261#if defined(CONFIG_TSI108_ETH)
262 tsi108_eth_initialize(bis);
263#endif
Roy Zang1f103102007-11-05 17:39:24 +0800264#if defined(CONFIG_ULI526X)
265 uli526x_initialize(bis);
266#endif
wdenk63f34912004-01-02 15:01:32 +0000267#if defined(CONFIG_RTL8139)
268 rtl8139_initialize(bis);
269#endif
wdenka8bd82d2004-04-18 22:03:42 +0000270#if defined(CONFIG_RTL8169)
271 rtl8169_initialize(bis);
272#endif
Aubrey Li9fd437b2007-04-05 18:30:25 +0800273#if defined(CONFIG_BF537)
274 bfin_EMAC_initialize(bis);
275#endif
Haavard Skinnemoen9a24f472006-12-17 17:14:30 +0100276#if defined(CONFIG_ATSTK1000)
277 atstk1000_eth_initialize(bis);
278#endif
Daniel Hellstromc2b7da52008-03-28 20:22:53 +0100279#if defined(CONFIG_GRETH)
280 greth_initialize(bis);
281#endif
Haavard Skinnemoen6b443942007-04-14 17:11:49 +0200282#if defined(CONFIG_ATNGW100)
283 atngw100_eth_initialize(bis);
284#endif
TsiChungLiew2870e982007-07-05 23:29:21 -0500285#if defined(CONFIG_MCFFEC)
286 mcffec_initialize(bis);
287#endif
TsiChungLiew777d1ab2008-01-15 14:00:25 -0600288#if defined(CONFIG_FSLDMAFEC)
289 mcdmafec_initialize(bis);
290#endif
Stelian Pop8e429b32008-05-08 18:52:23 +0200291#if defined(CONFIG_AT91CAP9) || defined(CONFIG_AT91SAM9260) || \
292 defined(CONFIG_AT91SAM9263)
Stelian Popa8a78f22008-03-26 20:52:28 +0100293 at91sam9_eth_initialize(bis);
Stelian Pop20b197c2008-01-20 19:49:21 +0000294#endif
wdenkc6097192002-11-03 00:24:07 +0000295
296 if (!eth_devices) {
297 puts ("No ethernet found.\n");
Heiko Schocherfad63402007-07-13 09:54:17 +0200298 show_boot_progress (-64);
wdenkc6097192002-11-03 00:24:07 +0000299 } else {
300 struct eth_device *dev = eth_devices;
301 char *ethprime = getenv ("ethprime");
302
Heiko Schocherfad63402007-07-13 09:54:17 +0200303 show_boot_progress (65);
wdenkc6097192002-11-03 00:24:07 +0000304 do {
305 if (eth_number)
306 puts (", ");
307
308 printf("%s", dev->name);
309
310 if (ethprime && strcmp (dev->name, ethprime) == 0) {
311 eth_current = dev;
312 puts (" [PRIME]");
313 }
314
315 sprintf(enetvar, eth_number ? "eth%daddr" : "ethaddr", eth_number);
316 tmp = getenv (enetvar);
317
318 for (i=0; i<6; i++) {
319 env_enetaddr[i] = tmp ? simple_strtoul(tmp, &end, 16) : 0;
320 if (tmp)
321 tmp = (*end) ? end+1 : end;
322 }
323
324 if (memcmp(env_enetaddr, "\0\0\0\0\0\0", 6)) {
325 if (memcmp(dev->enetaddr, "\0\0\0\0\0\0", 6) &&
326 memcmp(dev->enetaddr, env_enetaddr, 6))
327 {
wdenkbaac6072004-05-08 20:33:20 +0000328 printf ("\nWarning: %s MAC addresses don't match:\n",
329 dev->name);
330 printf ("Address in SROM is "
wdenkc6097192002-11-03 00:24:07 +0000331 "%02X:%02X:%02X:%02X:%02X:%02X\n",
332 dev->enetaddr[0], dev->enetaddr[1],
333 dev->enetaddr[2], dev->enetaddr[3],
334 dev->enetaddr[4], dev->enetaddr[5]);
wdenkbaac6072004-05-08 20:33:20 +0000335 printf ("Address in environment is "
wdenkc6097192002-11-03 00:24:07 +0000336 "%02X:%02X:%02X:%02X:%02X:%02X\n",
337 env_enetaddr[0], env_enetaddr[1],
338 env_enetaddr[2], env_enetaddr[3],
339 env_enetaddr[4], env_enetaddr[5]);
340 }
341
342 memcpy(dev->enetaddr, env_enetaddr, 6);
343 }
344
345 eth_number++;
346 dev = dev->next;
347 } while(dev != eth_devices);
348
wdenka3d991b2004-04-15 21:48:45 +0000349#ifdef CONFIG_NET_MULTI
350 /* update current ethernet name */
351 if (eth_current) {
352 char *act = getenv("ethact");
353 if (act == NULL || strcmp(act, eth_current->name) != 0)
354 setenv("ethact", eth_current->name);
355 } else
356 setenv("ethact", NULL);
357#endif
358
wdenkc6097192002-11-03 00:24:07 +0000359 putc ('\n');
360 }
361
362 return eth_number;
363}
364
365void eth_set_enetaddr(int num, char *addr) {
366 struct eth_device *dev;
367 unsigned char enetaddr[6];
368 char *end;
369 int i;
370
wdenkd4ca31c2004-01-02 14:00:00 +0000371 debug ("eth_set_enetaddr(num=%d, addr=%s)\n", num, addr);
372
wdenkc6097192002-11-03 00:24:07 +0000373 if (!eth_devices)
374 return;
375
376 for (i=0; i<6; i++) {
377 enetaddr[i] = addr ? simple_strtoul(addr, &end, 16) : 0;
378 if (addr)
379 addr = (*end) ? end+1 : end;
380 }
381
382 dev = eth_devices;
383 while(num-- > 0) {
384 dev = dev->next;
385
386 if (dev == eth_devices)
387 return;
388 }
389
wdenkd4ca31c2004-01-02 14:00:00 +0000390 debug ( "Setting new HW address on %s\n"
391 "New Address is %02X:%02X:%02X:%02X:%02X:%02X\n",
392 dev->name,
Wolfgang Denka188b582005-09-25 17:05:57 +0200393 enetaddr[0], enetaddr[1],
394 enetaddr[2], enetaddr[3],
395 enetaddr[4], enetaddr[5]);
wdenkc6097192002-11-03 00:24:07 +0000396
397 memcpy(dev->enetaddr, enetaddr, 6);
398}
David Updegraff53a5c422007-06-11 10:41:07 -0500399#ifdef CONFIG_MCAST_TFTP
400/* Multicast.
401 * mcast_addr: multicast ipaddr from which multicast Mac is made
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200402 * join: 1=join, 0=leave.
David Updegraff53a5c422007-06-11 10:41:07 -0500403 */
404int eth_mcast_join( IPaddr_t mcast_ip, u8 join)
405{
406 u8 mcast_mac[6];
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200407 if (!eth_current || !eth_current->mcast)
David Updegraff53a5c422007-06-11 10:41:07 -0500408 return -1;
409 mcast_mac[5] = htonl(mcast_ip) & 0xff;
410 mcast_mac[4] = (htonl(mcast_ip)>>8) & 0xff;
411 mcast_mac[3] = (htonl(mcast_ip)>>16) & 0x7f;
412 mcast_mac[2] = 0x5e;
413 mcast_mac[1] = 0x0;
414 mcast_mac[0] = 0x1;
415 return eth_current->mcast(eth_current, mcast_mac, join);
416}
417
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200418/* the 'way' for ethernet-CRC-32. Spliced in from Linux lib/crc32.c
419 * and this is the ethernet-crc method needed for TSEC -- and perhaps
David Updegraff53a5c422007-06-11 10:41:07 -0500420 * some other adapter -- hash tables
421 */
422#define CRCPOLY_LE 0xedb88320
423u32 ether_crc (size_t len, unsigned char const *p)
424{
425 int i;
426 u32 crc;
427 crc = ~0;
428 while (len--) {
429 crc ^= *p++;
430 for (i = 0; i < 8; i++)
431 crc = (crc >> 1) ^ ((crc & 1) ? CRCPOLY_LE : 0);
432 }
433 /* an reverse the bits, cuz of way they arrive -- last-first */
434 crc = (crc >> 16) | (crc << 16);
435 crc = (crc >> 8 & 0x00ff00ff) | (crc << 8 & 0xff00ff00);
436 crc = (crc >> 4 & 0x0f0f0f0f) | (crc << 4 & 0xf0f0f0f0);
437 crc = (crc >> 2 & 0x33333333) | (crc << 2 & 0xcccccccc);
438 crc = (crc >> 1 & 0x55555555) | (crc << 1 & 0xaaaaaaaa);
439 return crc;
440}
441
442#endif
443
wdenkc6097192002-11-03 00:24:07 +0000444
445int eth_init(bd_t *bis)
446{
447 struct eth_device* old_current;
448
Stefan Roese6bc11382008-03-04 17:40:41 +0100449 if (!eth_current) {
450 puts ("No ethernet found.\n");
Upakul Barkakaty505be872007-11-29 12:16:13 +0530451 return -1;
Stefan Roese6bc11382008-03-04 17:40:41 +0100452 }
wdenkc6097192002-11-03 00:24:07 +0000453
454 old_current = eth_current;
455 do {
wdenkd4ca31c2004-01-02 14:00:00 +0000456 debug ("Trying %s\n", eth_current->name);
wdenkc6097192002-11-03 00:24:07 +0000457
Ben Warren422b1a02008-01-09 18:15:53 -0500458 if (eth_current->init(eth_current,bis) >= 0) {
wdenkc6097192002-11-03 00:24:07 +0000459 eth_current->state = ETH_STATE_ACTIVE;
460
Upakul Barkakaty505be872007-11-29 12:16:13 +0530461 return 0;
wdenkc6097192002-11-03 00:24:07 +0000462 }
wdenkd4ca31c2004-01-02 14:00:00 +0000463 debug ("FAIL\n");
wdenkc6097192002-11-03 00:24:07 +0000464
465 eth_try_another(0);
466 } while (old_current != eth_current);
467
Upakul Barkakaty505be872007-11-29 12:16:13 +0530468 return -1;
wdenkc6097192002-11-03 00:24:07 +0000469}
470
471void eth_halt(void)
472{
473 if (!eth_current)
474 return;
475
476 eth_current->halt(eth_current);
477
478 eth_current->state = ETH_STATE_PASSIVE;
479}
480
481int eth_send(volatile void *packet, int length)
482{
483 if (!eth_current)
484 return -1;
485
486 return eth_current->send(eth_current, packet, length);
487}
488
489int eth_rx(void)
490{
491 if (!eth_current)
492 return -1;
493
494 return eth_current->recv(eth_current);
495}
496
Rafal Jaworowskif85b6072007-12-27 18:19:02 +0100497#ifdef CONFIG_API
498static void eth_save_packet(volatile void *packet, int length)
499{
500 volatile char *p = packet;
501 int i;
502
503 if ((eth_rcv_last+1) % PKTBUFSRX == eth_rcv_current)
504 return;
505
506 if (PKTSIZE < length)
507 return;
508
509 for (i = 0; i < length; i++)
510 eth_rcv_bufs[eth_rcv_last].data[i] = p[i];
511
512 eth_rcv_bufs[eth_rcv_last].length = length;
513 eth_rcv_last = (eth_rcv_last + 1) % PKTBUFSRX;
514}
515
516int eth_receive(volatile void *packet, int length)
517{
518 volatile char *p = packet;
519 void *pp = push_packet;
520 int i;
521
522 if (eth_rcv_current == eth_rcv_last) {
523 push_packet = eth_save_packet;
524 eth_rx();
525 push_packet = pp;
526
527 if (eth_rcv_current == eth_rcv_last)
528 return -1;
529 }
530
531 if (length < eth_rcv_bufs[eth_rcv_current].length)
532 return -1;
533
534 length = eth_rcv_bufs[eth_rcv_current].length;
535
536 for (i = 0; i < length; i++)
537 p[i] = eth_rcv_bufs[eth_rcv_current].data[i];
538
539 eth_rcv_current = (eth_rcv_current + 1) % PKTBUFSRX;
540 return length;
541}
542#endif /* CONFIG_API */
543
wdenkc6097192002-11-03 00:24:07 +0000544void eth_try_another(int first_restart)
545{
546 static struct eth_device *first_failed = NULL;
Matthias Fuchse1692572008-01-17 07:45:05 +0100547 char *ethrotate;
548
549 /*
550 * Do not rotate between network interfaces when
551 * 'ethrotate' variable is set to 'no'.
552 */
553 if (((ethrotate = getenv ("ethrotate")) != NULL) &&
554 (strcmp(ethrotate, "no") == 0))
555 return;
wdenkc6097192002-11-03 00:24:07 +0000556
557 if (!eth_current)
558 return;
559
wdenkbaac6072004-05-08 20:33:20 +0000560 if (first_restart) {
wdenkc6097192002-11-03 00:24:07 +0000561 first_failed = eth_current;
562 }
563
564 eth_current = eth_current->next;
565
wdenka3d991b2004-04-15 21:48:45 +0000566#ifdef CONFIG_NET_MULTI
567 /* update current ethernet name */
568 {
569 char *act = getenv("ethact");
570 if (act == NULL || strcmp(act, eth_current->name) != 0)
571 setenv("ethact", eth_current->name);
572 }
573#endif
574
wdenkbaac6072004-05-08 20:33:20 +0000575 if (first_failed == eth_current) {
wdenkc6097192002-11-03 00:24:07 +0000576 NetRestartWrap = 1;
577 }
578}
579
wdenka3d991b2004-04-15 21:48:45 +0000580#ifdef CONFIG_NET_MULTI
581void eth_set_current(void)
582{
583 char *act;
584 struct eth_device* old_current;
585
586 if (!eth_current) /* XXX no current */
587 return;
588
589 act = getenv("ethact");
590 if (act != NULL) {
591 old_current = eth_current;
592 do {
593 if (strcmp(eth_current->name, act) == 0)
594 return;
595 eth_current = eth_current->next;
596 } while (old_current != eth_current);
597 }
598
599 setenv("ethact", eth_current->name);
600}
601#endif
602
wdenk5bb226e2003-11-17 21:14:37 +0000603char *eth_get_name (void)
604{
605 return (eth_current ? eth_current->name : "unknown");
606}
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500607#elif defined(CONFIG_CMD_NET) && !defined(CONFIG_NET_MULTI)
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200608
609extern int at91rm9200_miiphy_initialize(bd_t *bis);
610extern int emac4xx_miiphy_initialize(bd_t *bis);
611extern int mcf52x2_miiphy_initialize(bd_t *bis);
612extern int ns7520_miiphy_initialize(bd_t *bis);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200613extern int dm644x_eth_miiphy_initialize(bd_t *bis);
614
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200615
616int eth_initialize(bd_t *bis)
617{
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500618#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Marian Balakowiczd9785c12005-11-30 18:06:04 +0100619 miiphy_init();
620#endif
621
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200622#if defined(CONFIG_AT91RM9200)
623 at91rm9200_miiphy_initialize(bis);
624#endif
625#if defined(CONFIG_4xx) && !defined(CONFIG_IOP480) \
626 && !defined(CONFIG_AP1000) && !defined(CONFIG_405)
627 emac4xx_miiphy_initialize(bis);
628#endif
629#if defined(CONFIG_MCF52x2)
630 mcf52x2_miiphy_initialize(bis);
631#endif
632#if defined(CONFIG_NETARM)
633 ns7520_miiphy_initialize(bis);
634#endif
Sergey Kubushync74b2102007-08-10 20:26:18 +0200635#if defined(CONFIG_DRIVER_TI_EMAC)
636 dm644x_eth_miiphy_initialize(bis);
637#endif
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200638 return 0;
639}
wdenkc6097192002-11-03 00:24:07 +0000640#endif