blob: 65e8c77b1077341db961de4160ac1ccb6106b0e1 [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
Detlev Zundelaba4b692010-03-31 17:56:08 +02002 * (C) Copyright 2001-2010
wdenkc6097192002-11-03 00:24:07 +00003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenkc6097192002-11-03 00:24:07 +00006 */
7
8#include <common.h>
9#include <command.h>
10#include <net.h>
Marian Balakowiczd9785c12005-11-30 18:06:04 +010011#include <miiphy.h>
Andy Fleming5f184712011-04-08 02:10:27 -050012#include <phy.h>
Pavel Machek75d9a452014-07-13 10:27:02 +020013#include <asm/errno.h>
wdenkc6097192002-11-03 00:24:07 +000014
Mike Frysinger3f6e6992009-01-29 19:43:44 -050015void eth_parse_enetaddr(const char *addr, uchar *enetaddr)
16{
17 char *end;
18 int i;
19
20 for (i = 0; i < 6; ++i) {
21 enetaddr[i] = addr ? simple_strtoul(addr, &end, 16) : 0;
22 if (addr)
23 addr = (*end) ? end + 1 : end;
24 }
25}
26
27int eth_getenv_enetaddr(char *name, uchar *enetaddr)
28{
29 eth_parse_enetaddr(getenv(name), enetaddr);
30 return is_valid_ether_addr(enetaddr);
31}
32
33int eth_setenv_enetaddr(char *name, const uchar *enetaddr)
34{
35 char buf[20];
36
37 sprintf(buf, "%pM", enetaddr);
38
39 return setenv(name, buf);
40}
Mike Frysinger86848a72009-07-15 21:31:28 -040041
Simon Glass7616e782011-06-13 16:13:10 -070042int eth_getenv_enetaddr_by_index(const char *base_name, int index,
43 uchar *enetaddr)
Mike Frysinger86848a72009-07-15 21:31:28 -040044{
45 char enetvar[32];
Simon Glass7616e782011-06-13 16:13:10 -070046 sprintf(enetvar, index ? "%s%daddr" : "%saddr", base_name, index);
Mike Frysinger86848a72009-07-15 21:31:28 -040047 return eth_getenv_enetaddr(enetvar, enetaddr);
48}
Mike Frysinger3f6e6992009-01-29 19:43:44 -050049
Joe Hershberger154177e2012-07-10 16:23:22 -050050static inline int eth_setenv_enetaddr_by_index(const char *base_name, int index,
Rob Herringc88ef3c2012-04-14 18:06:49 +000051 uchar *enetaddr)
52{
53 char enetvar[32];
54 sprintf(enetvar, index ? "%s%daddr" : "%saddr", base_name, index);
55 return eth_setenv_enetaddr(enetvar, enetaddr);
56}
57
58
Ben Warrenecee9322010-04-26 11:11:46 -070059static int eth_mac_skip(int index)
60{
61 char enetvar[15];
62 char *skip_state;
63 sprintf(enetvar, index ? "eth%dmacskip" : "ethmacskip", index);
64 return ((skip_state = getenv(enetvar)) != NULL);
65}
66
Ben Warrendd354792008-06-23 22:57:27 -070067/*
68 * CPU and board-specific Ethernet initializations. Aliased function
69 * signals caller to move on
70 */
71static int __def_eth_init(bd_t *bis)
72{
73 return -1;
74}
Peter Tyserf9a109b2009-04-20 11:08:46 -050075int cpu_eth_init(bd_t *bis) __attribute__((weak, alias("__def_eth_init")));
76int board_eth_init(bd_t *bis) __attribute__((weak, alias("__def_eth_init")));
Ben Warrendd354792008-06-23 22:57:27 -070077
Rafal Jaworowskif85b6072007-12-27 18:19:02 +010078#ifdef CONFIG_API
Rafal Jaworowskif85b6072007-12-27 18:19:02 +010079static struct {
80 uchar data[PKTSIZE];
81 int length;
82} eth_rcv_bufs[PKTBUFSRX];
83
Joe Hershberger66c73852012-05-15 08:59:07 +000084static unsigned int eth_rcv_current, eth_rcv_last;
Rafal Jaworowskif85b6072007-12-27 18:19:02 +010085#endif
86
Joe Hershbergerf8be7d62012-08-03 10:59:08 +000087static struct eth_device *eth_devices;
88struct eth_device *eth_current;
wdenkc6097192002-11-03 00:24:07 +000089
Ben Warrend7fb9bc2010-07-29 12:56:11 -070090struct eth_device *eth_get_dev_by_name(const char *devname)
Marian Balakowicz63ff0042005-10-28 22:30:33 +020091{
92 struct eth_device *dev, *target_dev;
93
Helmut Raiger7e7f9032011-08-22 00:17:17 +000094 BUG_ON(devname == NULL);
95
Marian Balakowicz63ff0042005-10-28 22:30:33 +020096 if (!eth_devices)
97 return NULL;
98
99 dev = eth_devices;
100 target_dev = NULL;
101 do {
102 if (strcmp(devname, dev->name) == 0) {
103 target_dev = dev;
104 break;
105 }
106 dev = dev->next;
107 } while (dev != eth_devices);
108
109 return target_dev;
110}
111
Andy Fleming9e569862009-02-11 15:07:24 -0600112struct eth_device *eth_get_dev_by_index(int index)
113{
114 struct eth_device *dev, *target_dev;
Andy Fleming9e569862009-02-11 15:07:24 -0600115
116 if (!eth_devices)
117 return NULL;
118
119 dev = eth_devices;
120 target_dev = NULL;
121 do {
Michael Wallefea7dca2011-10-27 11:31:35 +0000122 if (dev->index == index) {
Andy Fleming9e569862009-02-11 15:07:24 -0600123 target_dev = dev;
124 break;
125 }
126 dev = dev->next;
Andy Fleming9e569862009-02-11 15:07:24 -0600127 } while (dev != eth_devices);
128
129 return target_dev;
130}
131
Joe Hershberger66c73852012-05-15 08:59:07 +0000132int eth_get_dev_index(void)
wdenkc6097192002-11-03 00:24:07 +0000133{
Joe Hershberger66c73852012-05-15 08:59:07 +0000134 if (!eth_current)
Michael Wallefea7dca2011-10-27 11:31:35 +0000135 return -1;
wdenkc6097192002-11-03 00:24:07 +0000136
Michael Wallefea7dca2011-10-27 11:31:35 +0000137 return eth_current->index;
wdenkc6097192002-11-03 00:24:07 +0000138}
139
Simon Glass89d48362011-02-16 11:14:33 -0800140static void eth_current_changed(void)
wdenkc6097192002-11-03 00:24:07 +0000141{
Mike Frysingere2a53452011-10-02 10:01:27 +0000142 char *act = getenv("ethact");
143 /* update current ethernet name */
144 if (eth_current) {
145 if (act == NULL || strcmp(act, eth_current->name) != 0)
146 setenv("ethact", eth_current->name);
Simon Glass89d48362011-02-16 11:14:33 -0800147 }
Mike Frysingere2a53452011-10-02 10:01:27 +0000148 /*
149 * remove the variable completely if there is no active
150 * interface
151 */
152 else if (act != NULL)
153 setenv("ethact", NULL);
Simon Glass89d48362011-02-16 11:14:33 -0800154}
155
Simon Glass7616e782011-06-13 16:13:10 -0700156int eth_write_hwaddr(struct eth_device *dev, const char *base_name,
157 int eth_number)
158{
159 unsigned char env_enetaddr[6];
160 int ret = 0;
161
Eric Miao69376642012-01-18 22:56:33 +0000162 eth_getenv_enetaddr_by_index(base_name, eth_number, env_enetaddr);
Simon Glass7616e782011-06-13 16:13:10 -0700163
Joe Hershberger4c7c65a2015-03-22 17:09:01 -0500164 if (!is_zero_ether_addr(env_enetaddr)) {
165 if (!is_zero_ether_addr(dev->enetaddr) &&
166 memcmp(dev->enetaddr, env_enetaddr, 6)) {
Simon Glass7616e782011-06-13 16:13:10 -0700167 printf("\nWarning: %s MAC addresses don't match:\n",
168 dev->name);
169 printf("Address in SROM is %pM\n",
170 dev->enetaddr);
171 printf("Address in environment is %pM\n",
172 env_enetaddr);
173 }
174
175 memcpy(dev->enetaddr, env_enetaddr, 6);
Rob Herringc88ef3c2012-04-14 18:06:49 +0000176 } else if (is_valid_ether_addr(dev->enetaddr)) {
177 eth_setenv_enetaddr_by_index(base_name, eth_number,
178 dev->enetaddr);
179 printf("\nWarning: %s using MAC address from net device\n",
180 dev->name);
Joe Hershberger4c7c65a2015-03-22 17:09:01 -0500181 } else if (is_zero_ether_addr(dev->enetaddr)) {
Pavel Machek75d9a452014-07-13 10:27:02 +0200182 printf("\nError: %s address not set.\n",
183 dev->name);
184 return -EINVAL;
Simon Glass7616e782011-06-13 16:13:10 -0700185 }
186
Pavel Machek75d9a452014-07-13 10:27:02 +0200187 if (dev->write_hwaddr && !eth_mac_skip(eth_number)) {
188 if (!is_valid_ether_addr(dev->enetaddr)) {
189 printf("\nError: %s address %pM illegal value\n",
190 dev->name, dev->enetaddr);
191 return -EINVAL;
192 }
Benoît Thébaudeau460f9492012-08-10 07:56:21 +0000193
Simon Glass7616e782011-06-13 16:13:10 -0700194 ret = dev->write_hwaddr(dev);
Pavel Machek75d9a452014-07-13 10:27:02 +0200195 if (ret)
196 printf("\nWarning: %s failed to set MAC address\n", dev->name);
Benoît Thébaudeau460f9492012-08-10 07:56:21 +0000197 }
Simon Glass7616e782011-06-13 16:13:10 -0700198
199 return ret;
200}
201
Simon Glass89d48362011-02-16 11:14:33 -0800202int eth_register(struct eth_device *dev)
203{
204 struct eth_device *d;
Joe Hershberger66c73852012-05-15 08:59:07 +0000205 static int index;
Michal Simek58c583b2011-08-29 23:30:13 +0000206
Mike Frysingerf6add132011-11-10 14:11:04 +0000207 assert(strlen(dev->name) < sizeof(dev->name));
Michal Simek58c583b2011-08-29 23:30:13 +0000208
Simon Glass89d48362011-02-16 11:14:33 -0800209 if (!eth_devices) {
210 eth_current = eth_devices = dev;
211 eth_current_changed();
wdenkc6097192002-11-03 00:24:07 +0000212 } else {
Joe Hershberger66c73852012-05-15 08:59:07 +0000213 for (d = eth_devices; d->next != eth_devices; d = d->next)
Detlev Zundelaba4b692010-03-31 17:56:08 +0200214 ;
wdenkc6097192002-11-03 00:24:07 +0000215 d->next = dev;
216 }
217
218 dev->state = ETH_STATE_INIT;
219 dev->next = eth_devices;
Michael Wallefea7dca2011-10-27 11:31:35 +0000220 dev->index = index++;
wdenkc6097192002-11-03 00:24:07 +0000221
222 return 0;
223}
224
Vincent Palatine7e982d2012-01-09 08:32:36 +0000225int eth_unregister(struct eth_device *dev)
226{
227 struct eth_device *cur;
228
229 /* No device */
230 if (!eth_devices)
231 return -1;
232
233 for (cur = eth_devices; cur->next != eth_devices && cur->next != dev;
234 cur = cur->next)
235 ;
236
237 /* Device not found */
238 if (cur->next != dev)
239 return -1;
240
241 cur->next = dev->next;
242
243 if (eth_devices == dev)
244 eth_devices = dev->next == eth_devices ? NULL : dev->next;
245
246 if (eth_current == dev) {
247 eth_current = eth_devices;
248 eth_current_changed();
249 }
250
251 return 0;
252}
253
Mike Frysingerde301222012-04-04 18:53:41 +0000254static void eth_env_init(bd_t *bis)
255{
256 const char *s;
257
258 if ((s = getenv("bootfile")) != NULL)
259 copy_filename(BootFile, s, sizeof(BootFile));
260}
261
wdenkc6097192002-11-03 00:24:07 +0000262int eth_initialize(bd_t *bis)
263{
Michael Wallefea7dca2011-10-27 11:31:35 +0000264 int num_devices = 0;
wdenkc6097192002-11-03 00:24:07 +0000265 eth_devices = NULL;
266 eth_current = NULL;
267
Simon Glass770605e2012-02-13 13:51:18 +0000268 bootstage_mark(BOOTSTAGE_ID_NET_ETH_START);
Alexey Brodkin27ee59a2014-01-10 19:58:11 +0400269#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) || defined(CONFIG_PHYLIB)
Marian Balakowiczd9785c12005-11-30 18:06:04 +0100270 miiphy_init();
271#endif
Andy Fleming5f184712011-04-08 02:10:27 -0500272
273#ifdef CONFIG_PHYLIB
274 phy_init();
275#endif
276
Mike Frysingerde301222012-04-04 18:53:41 +0000277 eth_env_init(bis);
278
Ben Warren8ad25bf2010-08-31 23:05:04 -0700279 /*
280 * If board-specific initialization exists, call it.
281 * If not, call a CPU-specific one
282 */
283 if (board_eth_init != __def_eth_init) {
284 if (board_eth_init(bis) < 0)
285 printf("Board Net Initialization Failed\n");
286 } else if (cpu_eth_init != __def_eth_init) {
287 if (cpu_eth_init(bis) < 0)
288 printf("CPU Net Initialization Failed\n");
289 } else
290 printf("Net Initialization Skipped\n");
Marian Balakowiczd9785c12005-11-30 18:06:04 +0100291
wdenkc6097192002-11-03 00:24:07 +0000292 if (!eth_devices) {
Joe Hershberger66c73852012-05-15 08:59:07 +0000293 puts("No ethernet found.\n");
Simon Glass770605e2012-02-13 13:51:18 +0000294 bootstage_error(BOOTSTAGE_ID_NET_ETH_START);
wdenkc6097192002-11-03 00:24:07 +0000295 } else {
296 struct eth_device *dev = eth_devices;
Joe Hershberger66c73852012-05-15 08:59:07 +0000297 char *ethprime = getenv("ethprime");
wdenkc6097192002-11-03 00:24:07 +0000298
Simon Glass770605e2012-02-13 13:51:18 +0000299 bootstage_mark(BOOTSTAGE_ID_NET_ETH_INIT);
wdenkc6097192002-11-03 00:24:07 +0000300 do {
Michael Wallefea7dca2011-10-27 11:31:35 +0000301 if (dev->index)
Joe Hershberger66c73852012-05-15 08:59:07 +0000302 puts(", ");
wdenkc6097192002-11-03 00:24:07 +0000303
304 printf("%s", dev->name);
305
Joe Hershberger66c73852012-05-15 08:59:07 +0000306 if (ethprime && strcmp(dev->name, ethprime) == 0) {
wdenkc6097192002-11-03 00:24:07 +0000307 eth_current = dev;
Joe Hershberger66c73852012-05-15 08:59:07 +0000308 puts(" [PRIME]");
wdenkc6097192002-11-03 00:24:07 +0000309 }
310
Mike Frysinger1384f3b2010-06-09 22:10:48 -0400311 if (strchr(dev->name, ' '))
Joe Hershberger66c73852012-05-15 08:59:07 +0000312 puts("\nWarning: eth device name has a space!"
313 "\n");
Mike Frysinger1384f3b2010-06-09 22:10:48 -0400314
Pavel Machek75d9a452014-07-13 10:27:02 +0200315 eth_write_hwaddr(dev, "eth", dev->index);
wdenkc6097192002-11-03 00:24:07 +0000316
wdenkc6097192002-11-03 00:24:07 +0000317 dev = dev->next;
Michael Wallefea7dca2011-10-27 11:31:35 +0000318 num_devices++;
Joe Hershberger66c73852012-05-15 08:59:07 +0000319 } while (dev != eth_devices);
wdenkc6097192002-11-03 00:24:07 +0000320
Simon Glass89d48362011-02-16 11:14:33 -0800321 eth_current_changed();
Joe Hershberger66c73852012-05-15 08:59:07 +0000322 putc('\n');
wdenkc6097192002-11-03 00:24:07 +0000323 }
324
Michael Wallefea7dca2011-10-27 11:31:35 +0000325 return num_devices;
wdenkc6097192002-11-03 00:24:07 +0000326}
327
David Updegraff53a5c422007-06-11 10:41:07 -0500328#ifdef CONFIG_MCAST_TFTP
329/* Multicast.
330 * mcast_addr: multicast ipaddr from which multicast Mac is made
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200331 * join: 1=join, 0=leave.
David Updegraff53a5c422007-06-11 10:41:07 -0500332 */
Joe Hershberger66c73852012-05-15 08:59:07 +0000333int eth_mcast_join(IPaddr_t mcast_ip, u8 join)
David Updegraff53a5c422007-06-11 10:41:07 -0500334{
Joe Hershberger66c73852012-05-15 08:59:07 +0000335 u8 mcast_mac[6];
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200336 if (!eth_current || !eth_current->mcast)
David Updegraff53a5c422007-06-11 10:41:07 -0500337 return -1;
338 mcast_mac[5] = htonl(mcast_ip) & 0xff;
339 mcast_mac[4] = (htonl(mcast_ip)>>8) & 0xff;
340 mcast_mac[3] = (htonl(mcast_ip)>>16) & 0x7f;
341 mcast_mac[2] = 0x5e;
342 mcast_mac[1] = 0x0;
343 mcast_mac[0] = 0x1;
344 return eth_current->mcast(eth_current, mcast_mac, join);
345}
346
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200347/* the 'way' for ethernet-CRC-32. Spliced in from Linux lib/crc32.c
348 * and this is the ethernet-crc method needed for TSEC -- and perhaps
David Updegraff53a5c422007-06-11 10:41:07 -0500349 * some other adapter -- hash tables
350 */
351#define CRCPOLY_LE 0xedb88320
Joe Hershberger66c73852012-05-15 08:59:07 +0000352u32 ether_crc(size_t len, unsigned char const *p)
David Updegraff53a5c422007-06-11 10:41:07 -0500353{
354 int i;
355 u32 crc;
356 crc = ~0;
357 while (len--) {
358 crc ^= *p++;
359 for (i = 0; i < 8; i++)
360 crc = (crc >> 1) ^ ((crc & 1) ? CRCPOLY_LE : 0);
361 }
362 /* an reverse the bits, cuz of way they arrive -- last-first */
363 crc = (crc >> 16) | (crc << 16);
364 crc = (crc >> 8 & 0x00ff00ff) | (crc << 8 & 0xff00ff00);
365 crc = (crc >> 4 & 0x0f0f0f0f) | (crc << 4 & 0xf0f0f0f0);
366 crc = (crc >> 2 & 0x33333333) | (crc << 2 & 0xcccccccc);
367 crc = (crc >> 1 & 0x55555555) | (crc << 1 & 0xaaaaaaaa);
368 return crc;
369}
370
371#endif
372
wdenkc6097192002-11-03 00:24:07 +0000373
374int eth_init(bd_t *bis)
375{
Mike Frysinger86848a72009-07-15 21:31:28 -0400376 struct eth_device *old_current, *dev;
wdenkc6097192002-11-03 00:24:07 +0000377
Stefan Roese6bc11382008-03-04 17:40:41 +0100378 if (!eth_current) {
Joe Hershberger66c73852012-05-15 08:59:07 +0000379 puts("No ethernet found.\n");
Upakul Barkakaty505be872007-11-29 12:16:13 +0530380 return -1;
Stefan Roese6bc11382008-03-04 17:40:41 +0100381 }
wdenkc6097192002-11-03 00:24:07 +0000382
Mike Frysinger86848a72009-07-15 21:31:28 -0400383 /* Sync environment with network devices */
Mike Frysinger86848a72009-07-15 21:31:28 -0400384 dev = eth_devices;
385 do {
386 uchar env_enetaddr[6];
387
Michael Wallefea7dca2011-10-27 11:31:35 +0000388 if (eth_getenv_enetaddr_by_index("eth", dev->index,
Simon Glass7616e782011-06-13 16:13:10 -0700389 env_enetaddr))
Mike Frysinger86848a72009-07-15 21:31:28 -0400390 memcpy(dev->enetaddr, env_enetaddr, 6);
391
Mike Frysinger86848a72009-07-15 21:31:28 -0400392 dev = dev->next;
393 } while (dev != eth_devices);
394
wdenkc6097192002-11-03 00:24:07 +0000395 old_current = eth_current;
396 do {
Robin Getz0ebf04c2009-07-23 03:01:03 -0400397 debug("Trying %s\n", eth_current->name);
wdenkc6097192002-11-03 00:24:07 +0000398
Joe Hershberger66c73852012-05-15 08:59:07 +0000399 if (eth_current->init(eth_current, bis) >= 0) {
wdenkc6097192002-11-03 00:24:07 +0000400 eth_current->state = ETH_STATE_ACTIVE;
401
Upakul Barkakaty505be872007-11-29 12:16:13 +0530402 return 0;
wdenkc6097192002-11-03 00:24:07 +0000403 }
Robin Getz0ebf04c2009-07-23 03:01:03 -0400404 debug("FAIL\n");
wdenkc6097192002-11-03 00:24:07 +0000405
406 eth_try_another(0);
407 } while (old_current != eth_current);
408
Upakul Barkakaty505be872007-11-29 12:16:13 +0530409 return -1;
wdenkc6097192002-11-03 00:24:07 +0000410}
411
412void eth_halt(void)
413{
414 if (!eth_current)
415 return;
416
417 eth_current->halt(eth_current);
418
419 eth_current->state = ETH_STATE_PASSIVE;
420}
421
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000422int eth_send(void *packet, int length)
wdenkc6097192002-11-03 00:24:07 +0000423{
424 if (!eth_current)
425 return -1;
426
427 return eth_current->send(eth_current, packet, length);
428}
429
430int eth_rx(void)
431{
432 if (!eth_current)
433 return -1;
434
435 return eth_current->recv(eth_current);
436}
437
Rafal Jaworowskif85b6072007-12-27 18:19:02 +0100438#ifdef CONFIG_API
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000439static void eth_save_packet(void *packet, int length)
Rafal Jaworowskif85b6072007-12-27 18:19:02 +0100440{
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000441 char *p = packet;
Rafal Jaworowskif85b6072007-12-27 18:19:02 +0100442 int i;
443
444 if ((eth_rcv_last+1) % PKTBUFSRX == eth_rcv_current)
445 return;
446
447 if (PKTSIZE < length)
448 return;
449
450 for (i = 0; i < length; i++)
451 eth_rcv_bufs[eth_rcv_last].data[i] = p[i];
452
453 eth_rcv_bufs[eth_rcv_last].length = length;
454 eth_rcv_last = (eth_rcv_last + 1) % PKTBUFSRX;
455}
456
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000457int eth_receive(void *packet, int length)
Rafal Jaworowskif85b6072007-12-27 18:19:02 +0100458{
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000459 char *p = packet;
Rafal Jaworowskif85b6072007-12-27 18:19:02 +0100460 void *pp = push_packet;
461 int i;
462
463 if (eth_rcv_current == eth_rcv_last) {
464 push_packet = eth_save_packet;
465 eth_rx();
466 push_packet = pp;
467
468 if (eth_rcv_current == eth_rcv_last)
469 return -1;
470 }
471
Michael Walle46c07bc2012-06-22 11:24:28 +0000472 length = min(eth_rcv_bufs[eth_rcv_current].length, length);
Rafal Jaworowskif85b6072007-12-27 18:19:02 +0100473
474 for (i = 0; i < length; i++)
475 p[i] = eth_rcv_bufs[eth_rcv_current].data[i];
476
477 eth_rcv_current = (eth_rcv_current + 1) % PKTBUFSRX;
478 return length;
479}
480#endif /* CONFIG_API */
481
wdenkc6097192002-11-03 00:24:07 +0000482void eth_try_another(int first_restart)
483{
Joe Hershberger66c73852012-05-15 08:59:07 +0000484 static struct eth_device *first_failed;
Remy Bohmerc650e1b2011-02-19 20:15:14 +0100485 char *ethrotate;
Matthias Fuchse1692572008-01-17 07:45:05 +0100486
487 /*
488 * Do not rotate between network interfaces when
489 * 'ethrotate' variable is set to 'no'.
490 */
Joe Hershberger66c73852012-05-15 08:59:07 +0000491 ethrotate = getenv("ethrotate");
492 if ((ethrotate != NULL) && (strcmp(ethrotate, "no") == 0))
Matthias Fuchse1692572008-01-17 07:45:05 +0100493 return;
wdenkc6097192002-11-03 00:24:07 +0000494
495 if (!eth_current)
496 return;
497
Joe Hershberger66c73852012-05-15 08:59:07 +0000498 if (first_restart)
wdenkc6097192002-11-03 00:24:07 +0000499 first_failed = eth_current;
wdenkc6097192002-11-03 00:24:07 +0000500
501 eth_current = eth_current->next;
502
Simon Glass89d48362011-02-16 11:14:33 -0800503 eth_current_changed();
wdenka3d991b2004-04-15 21:48:45 +0000504
Joe Hershberger66c73852012-05-15 08:59:07 +0000505 if (first_failed == eth_current)
wdenkc6097192002-11-03 00:24:07 +0000506 NetRestartWrap = 1;
wdenkc6097192002-11-03 00:24:07 +0000507}
508
wdenka3d991b2004-04-15 21:48:45 +0000509void eth_set_current(void)
510{
Joe Hershberger66c73852012-05-15 08:59:07 +0000511 static char *act;
512 static int env_changed_id;
513 struct eth_device *old_current;
Heiko Schocher2f70c492009-02-10 09:38:52 +0100514 int env_id;
wdenka3d991b2004-04-15 21:48:45 +0000515
516 if (!eth_current) /* XXX no current */
517 return;
518
Heiko Schocher2f70c492009-02-10 09:38:52 +0100519 env_id = get_env_id();
520 if ((act == NULL) || (env_changed_id != env_id)) {
521 act = getenv("ethact");
522 env_changed_id = env_id;
523 }
wdenka3d991b2004-04-15 21:48:45 +0000524 if (act != NULL) {
525 old_current = eth_current;
526 do {
527 if (strcmp(eth_current->name, act) == 0)
528 return;
529 eth_current = eth_current->next;
530 } while (old_current != eth_current);
531 }
532
Simon Glass89d48362011-02-16 11:14:33 -0800533 eth_current_changed();
wdenka3d991b2004-04-15 21:48:45 +0000534}
wdenka3d991b2004-04-15 21:48:45 +0000535
Joe Hershberger66c73852012-05-15 08:59:07 +0000536char *eth_get_name(void)
wdenk5bb226e2003-11-17 21:14:37 +0000537{
Joe Hershberger66c73852012-05-15 08:59:07 +0000538 return eth_current ? eth_current->name : "unknown";
wdenk5bb226e2003-11-17 21:14:37 +0000539}