blob: c4f24c64b63db4754aa1ea93fcd85ffbc7c1db5a [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 Pop0176d432008-03-26 18:52:33 +0100291#if defined(CONFIG_AT91CAP9) || defined(CONFIG_AT91SAM9260)
Stelian Popa8a78f22008-03-26 20:52:28 +0100292 at91sam9_eth_initialize(bis);
Stelian Pop20b197c2008-01-20 19:49:21 +0000293#endif
wdenkc6097192002-11-03 00:24:07 +0000294
295 if (!eth_devices) {
296 puts ("No ethernet found.\n");
Heiko Schocherfad63402007-07-13 09:54:17 +0200297 show_boot_progress (-64);
wdenkc6097192002-11-03 00:24:07 +0000298 } else {
299 struct eth_device *dev = eth_devices;
300 char *ethprime = getenv ("ethprime");
301
Heiko Schocherfad63402007-07-13 09:54:17 +0200302 show_boot_progress (65);
wdenkc6097192002-11-03 00:24:07 +0000303 do {
304 if (eth_number)
305 puts (", ");
306
307 printf("%s", dev->name);
308
309 if (ethprime && strcmp (dev->name, ethprime) == 0) {
310 eth_current = dev;
311 puts (" [PRIME]");
312 }
313
314 sprintf(enetvar, eth_number ? "eth%daddr" : "ethaddr", eth_number);
315 tmp = getenv (enetvar);
316
317 for (i=0; i<6; i++) {
318 env_enetaddr[i] = tmp ? simple_strtoul(tmp, &end, 16) : 0;
319 if (tmp)
320 tmp = (*end) ? end+1 : end;
321 }
322
323 if (memcmp(env_enetaddr, "\0\0\0\0\0\0", 6)) {
324 if (memcmp(dev->enetaddr, "\0\0\0\0\0\0", 6) &&
325 memcmp(dev->enetaddr, env_enetaddr, 6))
326 {
wdenkbaac6072004-05-08 20:33:20 +0000327 printf ("\nWarning: %s MAC addresses don't match:\n",
328 dev->name);
329 printf ("Address in SROM is "
wdenkc6097192002-11-03 00:24:07 +0000330 "%02X:%02X:%02X:%02X:%02X:%02X\n",
331 dev->enetaddr[0], dev->enetaddr[1],
332 dev->enetaddr[2], dev->enetaddr[3],
333 dev->enetaddr[4], dev->enetaddr[5]);
wdenkbaac6072004-05-08 20:33:20 +0000334 printf ("Address in environment is "
wdenkc6097192002-11-03 00:24:07 +0000335 "%02X:%02X:%02X:%02X:%02X:%02X\n",
336 env_enetaddr[0], env_enetaddr[1],
337 env_enetaddr[2], env_enetaddr[3],
338 env_enetaddr[4], env_enetaddr[5]);
339 }
340
341 memcpy(dev->enetaddr, env_enetaddr, 6);
342 }
343
344 eth_number++;
345 dev = dev->next;
346 } while(dev != eth_devices);
347
wdenka3d991b2004-04-15 21:48:45 +0000348#ifdef CONFIG_NET_MULTI
349 /* update current ethernet name */
350 if (eth_current) {
351 char *act = getenv("ethact");
352 if (act == NULL || strcmp(act, eth_current->name) != 0)
353 setenv("ethact", eth_current->name);
354 } else
355 setenv("ethact", NULL);
356#endif
357
wdenkc6097192002-11-03 00:24:07 +0000358 putc ('\n');
359 }
360
361 return eth_number;
362}
363
364void eth_set_enetaddr(int num, char *addr) {
365 struct eth_device *dev;
366 unsigned char enetaddr[6];
367 char *end;
368 int i;
369
wdenkd4ca31c2004-01-02 14:00:00 +0000370 debug ("eth_set_enetaddr(num=%d, addr=%s)\n", num, addr);
371
wdenkc6097192002-11-03 00:24:07 +0000372 if (!eth_devices)
373 return;
374
375 for (i=0; i<6; i++) {
376 enetaddr[i] = addr ? simple_strtoul(addr, &end, 16) : 0;
377 if (addr)
378 addr = (*end) ? end+1 : end;
379 }
380
381 dev = eth_devices;
382 while(num-- > 0) {
383 dev = dev->next;
384
385 if (dev == eth_devices)
386 return;
387 }
388
wdenkd4ca31c2004-01-02 14:00:00 +0000389 debug ( "Setting new HW address on %s\n"
390 "New Address is %02X:%02X:%02X:%02X:%02X:%02X\n",
391 dev->name,
Wolfgang Denka188b582005-09-25 17:05:57 +0200392 enetaddr[0], enetaddr[1],
393 enetaddr[2], enetaddr[3],
394 enetaddr[4], enetaddr[5]);
wdenkc6097192002-11-03 00:24:07 +0000395
396 memcpy(dev->enetaddr, enetaddr, 6);
397}
David Updegraff53a5c422007-06-11 10:41:07 -0500398#ifdef CONFIG_MCAST_TFTP
399/* Multicast.
400 * mcast_addr: multicast ipaddr from which multicast Mac is made
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200401 * join: 1=join, 0=leave.
David Updegraff53a5c422007-06-11 10:41:07 -0500402 */
403int eth_mcast_join( IPaddr_t mcast_ip, u8 join)
404{
405 u8 mcast_mac[6];
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200406 if (!eth_current || !eth_current->mcast)
David Updegraff53a5c422007-06-11 10:41:07 -0500407 return -1;
408 mcast_mac[5] = htonl(mcast_ip) & 0xff;
409 mcast_mac[4] = (htonl(mcast_ip)>>8) & 0xff;
410 mcast_mac[3] = (htonl(mcast_ip)>>16) & 0x7f;
411 mcast_mac[2] = 0x5e;
412 mcast_mac[1] = 0x0;
413 mcast_mac[0] = 0x1;
414 return eth_current->mcast(eth_current, mcast_mac, join);
415}
416
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200417/* the 'way' for ethernet-CRC-32. Spliced in from Linux lib/crc32.c
418 * and this is the ethernet-crc method needed for TSEC -- and perhaps
David Updegraff53a5c422007-06-11 10:41:07 -0500419 * some other adapter -- hash tables
420 */
421#define CRCPOLY_LE 0xedb88320
422u32 ether_crc (size_t len, unsigned char const *p)
423{
424 int i;
425 u32 crc;
426 crc = ~0;
427 while (len--) {
428 crc ^= *p++;
429 for (i = 0; i < 8; i++)
430 crc = (crc >> 1) ^ ((crc & 1) ? CRCPOLY_LE : 0);
431 }
432 /* an reverse the bits, cuz of way they arrive -- last-first */
433 crc = (crc >> 16) | (crc << 16);
434 crc = (crc >> 8 & 0x00ff00ff) | (crc << 8 & 0xff00ff00);
435 crc = (crc >> 4 & 0x0f0f0f0f) | (crc << 4 & 0xf0f0f0f0);
436 crc = (crc >> 2 & 0x33333333) | (crc << 2 & 0xcccccccc);
437 crc = (crc >> 1 & 0x55555555) | (crc << 1 & 0xaaaaaaaa);
438 return crc;
439}
440
441#endif
442
wdenkc6097192002-11-03 00:24:07 +0000443
444int eth_init(bd_t *bis)
445{
446 struct eth_device* old_current;
447
Stefan Roese6bc11382008-03-04 17:40:41 +0100448 if (!eth_current) {
449 puts ("No ethernet found.\n");
Upakul Barkakaty505be872007-11-29 12:16:13 +0530450 return -1;
Stefan Roese6bc11382008-03-04 17:40:41 +0100451 }
wdenkc6097192002-11-03 00:24:07 +0000452
453 old_current = eth_current;
454 do {
wdenkd4ca31c2004-01-02 14:00:00 +0000455 debug ("Trying %s\n", eth_current->name);
wdenkc6097192002-11-03 00:24:07 +0000456
Ben Warren422b1a02008-01-09 18:15:53 -0500457 if (eth_current->init(eth_current,bis) >= 0) {
wdenkc6097192002-11-03 00:24:07 +0000458 eth_current->state = ETH_STATE_ACTIVE;
459
Upakul Barkakaty505be872007-11-29 12:16:13 +0530460 return 0;
wdenkc6097192002-11-03 00:24:07 +0000461 }
wdenkd4ca31c2004-01-02 14:00:00 +0000462 debug ("FAIL\n");
wdenkc6097192002-11-03 00:24:07 +0000463
464 eth_try_another(0);
465 } while (old_current != eth_current);
466
Upakul Barkakaty505be872007-11-29 12:16:13 +0530467 return -1;
wdenkc6097192002-11-03 00:24:07 +0000468}
469
470void eth_halt(void)
471{
472 if (!eth_current)
473 return;
474
475 eth_current->halt(eth_current);
476
477 eth_current->state = ETH_STATE_PASSIVE;
478}
479
480int eth_send(volatile void *packet, int length)
481{
482 if (!eth_current)
483 return -1;
484
485 return eth_current->send(eth_current, packet, length);
486}
487
488int eth_rx(void)
489{
490 if (!eth_current)
491 return -1;
492
493 return eth_current->recv(eth_current);
494}
495
Rafal Jaworowskif85b6072007-12-27 18:19:02 +0100496#ifdef CONFIG_API
497static void eth_save_packet(volatile void *packet, int length)
498{
499 volatile char *p = packet;
500 int i;
501
502 if ((eth_rcv_last+1) % PKTBUFSRX == eth_rcv_current)
503 return;
504
505 if (PKTSIZE < length)
506 return;
507
508 for (i = 0; i < length; i++)
509 eth_rcv_bufs[eth_rcv_last].data[i] = p[i];
510
511 eth_rcv_bufs[eth_rcv_last].length = length;
512 eth_rcv_last = (eth_rcv_last + 1) % PKTBUFSRX;
513}
514
515int eth_receive(volatile void *packet, int length)
516{
517 volatile char *p = packet;
518 void *pp = push_packet;
519 int i;
520
521 if (eth_rcv_current == eth_rcv_last) {
522 push_packet = eth_save_packet;
523 eth_rx();
524 push_packet = pp;
525
526 if (eth_rcv_current == eth_rcv_last)
527 return -1;
528 }
529
530 if (length < eth_rcv_bufs[eth_rcv_current].length)
531 return -1;
532
533 length = eth_rcv_bufs[eth_rcv_current].length;
534
535 for (i = 0; i < length; i++)
536 p[i] = eth_rcv_bufs[eth_rcv_current].data[i];
537
538 eth_rcv_current = (eth_rcv_current + 1) % PKTBUFSRX;
539 return length;
540}
541#endif /* CONFIG_API */
542
wdenkc6097192002-11-03 00:24:07 +0000543void eth_try_another(int first_restart)
544{
545 static struct eth_device *first_failed = NULL;
Matthias Fuchse1692572008-01-17 07:45:05 +0100546 char *ethrotate;
547
548 /*
549 * Do not rotate between network interfaces when
550 * 'ethrotate' variable is set to 'no'.
551 */
552 if (((ethrotate = getenv ("ethrotate")) != NULL) &&
553 (strcmp(ethrotate, "no") == 0))
554 return;
wdenkc6097192002-11-03 00:24:07 +0000555
556 if (!eth_current)
557 return;
558
wdenkbaac6072004-05-08 20:33:20 +0000559 if (first_restart) {
wdenkc6097192002-11-03 00:24:07 +0000560 first_failed = eth_current;
561 }
562
563 eth_current = eth_current->next;
564
wdenka3d991b2004-04-15 21:48:45 +0000565#ifdef CONFIG_NET_MULTI
566 /* update current ethernet name */
567 {
568 char *act = getenv("ethact");
569 if (act == NULL || strcmp(act, eth_current->name) != 0)
570 setenv("ethact", eth_current->name);
571 }
572#endif
573
wdenkbaac6072004-05-08 20:33:20 +0000574 if (first_failed == eth_current) {
wdenkc6097192002-11-03 00:24:07 +0000575 NetRestartWrap = 1;
576 }
577}
578
wdenka3d991b2004-04-15 21:48:45 +0000579#ifdef CONFIG_NET_MULTI
580void eth_set_current(void)
581{
582 char *act;
583 struct eth_device* old_current;
584
585 if (!eth_current) /* XXX no current */
586 return;
587
588 act = getenv("ethact");
589 if (act != NULL) {
590 old_current = eth_current;
591 do {
592 if (strcmp(eth_current->name, act) == 0)
593 return;
594 eth_current = eth_current->next;
595 } while (old_current != eth_current);
596 }
597
598 setenv("ethact", eth_current->name);
599}
600#endif
601
wdenk5bb226e2003-11-17 21:14:37 +0000602char *eth_get_name (void)
603{
604 return (eth_current ? eth_current->name : "unknown");
605}
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500606#elif defined(CONFIG_CMD_NET) && !defined(CONFIG_NET_MULTI)
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200607
608extern int at91rm9200_miiphy_initialize(bd_t *bis);
609extern int emac4xx_miiphy_initialize(bd_t *bis);
610extern int mcf52x2_miiphy_initialize(bd_t *bis);
611extern int ns7520_miiphy_initialize(bd_t *bis);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200612extern int dm644x_eth_miiphy_initialize(bd_t *bis);
613
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200614
615int eth_initialize(bd_t *bis)
616{
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500617#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Marian Balakowiczd9785c12005-11-30 18:06:04 +0100618 miiphy_init();
619#endif
620
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200621#if defined(CONFIG_AT91RM9200)
622 at91rm9200_miiphy_initialize(bis);
623#endif
624#if defined(CONFIG_4xx) && !defined(CONFIG_IOP480) \
625 && !defined(CONFIG_AP1000) && !defined(CONFIG_405)
626 emac4xx_miiphy_initialize(bis);
627#endif
628#if defined(CONFIG_MCF52x2)
629 mcf52x2_miiphy_initialize(bis);
630#endif
631#if defined(CONFIG_NETARM)
632 ns7520_miiphy_initialize(bis);
633#endif
Sergey Kubushync74b2102007-08-10 20:26:18 +0200634#if defined(CONFIG_DRIVER_TI_EMAC)
635 dm644x_eth_miiphy_initialize(bis);
636#endif
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200637 return 0;
638}
wdenkc6097192002-11-03 00:24:07 +0000639#endif