blob: 907eb118fffd6c5b76c03a93bebfd9309cbe8060 [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -05002 * (C) Copyright 2001-2015
wdenkc6097192002-11-03 00:24:07 +00003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -05004 * Joe Hershberger, National Instruments
wdenkc6097192002-11-03 00:24:07 +00005 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
wdenkc6097192002-11-03 00:24:07 +00007 */
8
9#include <common.h>
10#include <command.h>
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -050011#include <dm.h>
Joe Hershberger7e0b0152015-05-20 14:27:26 -050012#include <environment.h>
wdenkc6097192002-11-03 00:24:07 +000013#include <net.h>
Marian Balakowiczcbdd1c82005-11-30 18:06:04 +010014#include <miiphy.h>
Andy Flemingaecf6fc2011-04-08 02:10:27 -050015#include <phy.h>
Pavel Machek222981f2014-07-13 10:27:02 +020016#include <asm/errno.h>
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -050017#include <dm/device-internal.h>
Joe Hershberger7e0b0152015-05-20 14:27:26 -050018#include <dm/uclass-internal.h>
Simon Glass0a9bde12016-01-17 14:51:57 -070019#include "eth_internal.h"
wdenkc6097192002-11-03 00:24:07 +000020
Joe Hershberger3dbe17e2015-03-22 17:09:06 -050021DECLARE_GLOBAL_DATA_PTR;
22
Simon Glassb6121f22015-04-05 16:07:37 -060023/*
24 * CPU and board-specific Ethernet initializations. Aliased function
25 * signals caller to move on
26 */
27static int __def_eth_init(bd_t *bis)
28{
29 return -1;
30}
31int cpu_eth_init(bd_t *bis) __attribute__((weak, alias("__def_eth_init")));
32int board_eth_init(bd_t *bis) __attribute__((weak, alias("__def_eth_init")));
33
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -050034#ifdef CONFIG_DM_ETH
35/**
36 * struct eth_device_priv - private structure for each Ethernet device
37 *
38 * @state: The state of the Ethernet MAC driver (defined by enum eth_state_t)
39 */
40struct eth_device_priv {
41 enum eth_state_t state;
42};
43
44/**
45 * struct eth_uclass_priv - The structure attached to the uclass itself
46 *
47 * @current: The Ethernet device that the network functions are using
48 */
49struct eth_uclass_priv {
50 struct udevice *current;
51};
52
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -050053/* eth_errno - This stores the most recent failure code from DM functions */
54static int eth_errno;
55
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -050056static struct eth_uclass_priv *eth_get_uclass_priv(void)
57{
58 struct uclass *uc;
59
60 uclass_get(UCLASS_ETH, &uc);
61 assert(uc);
62 return uc->priv;
63}
64
Simon Glassd9582c32016-01-17 14:51:59 -070065void eth_set_current_to_next(void)
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -050066{
67 struct eth_uclass_priv *uc_priv;
68
69 uc_priv = eth_get_uclass_priv();
70 if (uc_priv->current)
71 uclass_next_device(&uc_priv->current);
72 if (!uc_priv->current)
73 uclass_first_device(UCLASS_ETH, &uc_priv->current);
74}
75
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -050076/*
77 * Typically this will simply return the active device.
78 * In the case where the most recent active device was unset, this will attempt
79 * to return the first device. If that device doesn't exist or fails to probe,
80 * this function will return NULL.
81 */
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -050082struct udevice *eth_get_dev(void)
83{
84 struct eth_uclass_priv *uc_priv;
85
86 uc_priv = eth_get_uclass_priv();
87 if (!uc_priv->current)
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -050088 eth_errno = uclass_first_device(UCLASS_ETH,
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -050089 &uc_priv->current);
90 return uc_priv->current;
91}
92
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -050093/*
94 * Typically this will just store a device pointer.
95 * In case it was not probed, we will attempt to do so.
96 * dev may be NULL to unset the active device.
97 */
Simon Glassd9582c32016-01-17 14:51:59 -070098void eth_set_dev(struct udevice *dev)
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -050099{
Bin Mengcecd3942015-10-07 21:45:44 -0700100 if (dev && !device_active(dev)) {
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500101 eth_errno = device_probe(dev);
Bin Mengcecd3942015-10-07 21:45:44 -0700102 if (eth_errno)
103 dev = NULL;
104 }
105
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -0500106 eth_get_uclass_priv()->current = dev;
107}
108
Joe Hershberger279d2f62015-03-22 17:09:16 -0500109/*
110 * Find the udevice that either has the name passed in as devname or has an
111 * alias named devname.
112 */
113struct udevice *eth_get_dev_by_name(const char *devname)
114{
115 int seq = -1;
116 char *endp = NULL;
117 const char *startp = NULL;
118 struct udevice *it;
119 struct uclass *uc;
Bin Meng9ac7bbf2015-08-27 22:25:54 -0700120 int len = strlen("eth");
Joe Hershberger279d2f62015-03-22 17:09:16 -0500121
122 /* Must be longer than 3 to be an alias */
Bin Meng9ac7bbf2015-08-27 22:25:54 -0700123 if (!strncmp(devname, "eth", len) && strlen(devname) > len) {
124 startp = devname + len;
Joe Hershberger279d2f62015-03-22 17:09:16 -0500125 seq = simple_strtoul(startp, &endp, 10);
126 }
127
128 uclass_get(UCLASS_ETH, &uc);
129 uclass_foreach_dev(it, uc) {
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500130 /*
131 * We need the seq to be valid, so try to probe it.
132 * If the probe fails, the seq will not match since it will be
133 * -1 instead of what we are looking for.
134 * We don't care about errors from probe here. Either they won't
135 * match an alias or it will match a literal name and we'll pick
136 * up the error when we try to probe again in eth_set_dev().
137 */
Bin Mengcecd3942015-10-07 21:45:44 -0700138 if (device_probe(it))
139 continue;
140 /* Check for the name or the sequence number to match */
Joe Hershberger279d2f62015-03-22 17:09:16 -0500141 if (strcmp(it->name, devname) == 0 ||
142 (endp > startp && it->seq == seq))
143 return it;
144 }
145
146 return NULL;
147}
148
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -0500149unsigned char *eth_get_ethaddr(void)
150{
151 struct eth_pdata *pdata;
152
153 if (eth_get_dev()) {
154 pdata = eth_get_dev()->platdata;
155 return pdata->enetaddr;
156 }
157
158 return NULL;
159}
160
161/* Set active state without calling start on the driver */
162int eth_init_state_only(void)
163{
164 struct udevice *current;
165 struct eth_device_priv *priv;
166
167 current = eth_get_dev();
168 if (!current || !device_active(current))
169 return -EINVAL;
170
171 priv = current->uclass_priv;
172 priv->state = ETH_STATE_ACTIVE;
173
174 return 0;
175}
176
177/* Set passive state without calling stop on the driver */
178void eth_halt_state_only(void)
179{
180 struct udevice *current;
181 struct eth_device_priv *priv;
182
183 current = eth_get_dev();
184 if (!current || !device_active(current))
185 return;
186
187 priv = current->uclass_priv;
188 priv->state = ETH_STATE_PASSIVE;
189}
190
191int eth_get_dev_index(void)
192{
193 if (eth_get_dev())
194 return eth_get_dev()->seq;
195 return -1;
196}
197
Joe Hershbergere84319a2015-03-24 02:41:49 -0500198static int eth_write_hwaddr(struct udevice *dev)
199{
200 struct eth_pdata *pdata = dev->platdata;
201 int ret = 0;
202
203 if (!dev || !device_active(dev))
204 return -EINVAL;
205
206 /* seq is valid since the device is active */
207 if (eth_get_ops(dev)->write_hwaddr && !eth_mac_skip(dev->seq)) {
208 if (!is_valid_ethaddr(pdata->enetaddr)) {
209 printf("\nError: %s address %pM illegal value\n",
210 dev->name, pdata->enetaddr);
211 return -EINVAL;
212 }
213
Simon Glassc91b2b72015-07-06 16:47:55 -0600214 /*
215 * Drivers are allowed to decide not to implement this at
216 * run-time. E.g. Some devices may use it and some may not.
217 */
Joe Hershbergere84319a2015-03-24 02:41:49 -0500218 ret = eth_get_ops(dev)->write_hwaddr(dev);
Simon Glassc91b2b72015-07-06 16:47:55 -0600219 if (ret == -ENOSYS)
220 ret = 0;
Joe Hershbergere84319a2015-03-24 02:41:49 -0500221 if (ret)
222 printf("\nWarning: %s failed to set MAC address\n",
223 dev->name);
224 }
225
226 return ret;
227}
228
Joe Hershberger7e0b0152015-05-20 14:27:26 -0500229static int on_ethaddr(const char *name, const char *value, enum env_op op,
230 int flags)
231{
232 int index;
233 int retval;
234 struct udevice *dev;
235
236 /* look for an index after "eth" */
237 index = simple_strtoul(name + 3, NULL, 10);
238
239 retval = uclass_find_device_by_seq(UCLASS_ETH, index, false, &dev);
240 if (!retval) {
241 struct eth_pdata *pdata = dev->platdata;
242 switch (op) {
243 case env_op_create:
244 case env_op_overwrite:
245 eth_parse_enetaddr(value, pdata->enetaddr);
246 break;
247 case env_op_delete:
248 memset(pdata->enetaddr, 0, 6);
249 }
250 }
251
252 return 0;
253}
254U_BOOT_ENV_CALLBACK(ethaddr, on_ethaddr);
255
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -0500256int eth_init(void)
257{
Bin Meng1e6c9fc2015-12-21 22:43:39 -0800258 char *ethact = getenv("ethact");
259 char *ethrotate = getenv("ethrotate");
260 struct udevice *current = NULL;
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -0500261 struct udevice *old_current;
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500262 int ret = -ENODEV;
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -0500263
Bin Meng1e6c9fc2015-12-21 22:43:39 -0800264 /*
265 * When 'ethrotate' variable is set to 'no' and 'ethact' variable
266 * is already set to an ethernet device, we should stick to 'ethact'.
267 */
268 if ((ethrotate != NULL) && (strcmp(ethrotate, "no") == 0)) {
269 if (ethact) {
270 current = eth_get_dev_by_name(ethact);
271 if (!current)
272 return -EINVAL;
273 }
274 }
275
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -0500276 if (!current) {
Bin Meng1e6c9fc2015-12-21 22:43:39 -0800277 current = eth_get_dev();
278 if (!current) {
279 printf("No ethernet found.\n");
280 return -ENODEV;
281 }
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -0500282 }
283
284 old_current = current;
285 do {
Bin Mengcecd3942015-10-07 21:45:44 -0700286 if (current) {
287 debug("Trying %s\n", current->name);
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -0500288
Bin Mengcecd3942015-10-07 21:45:44 -0700289 if (device_active(current)) {
290 ret = eth_get_ops(current)->start(current);
291 if (ret >= 0) {
292 struct eth_device_priv *priv =
293 current->uclass_priv;
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -0500294
Bin Mengcecd3942015-10-07 21:45:44 -0700295 priv->state = ETH_STATE_ACTIVE;
296 return 0;
297 }
298 } else {
299 ret = eth_errno;
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -0500300 }
Bin Mengcecd3942015-10-07 21:45:44 -0700301
302 debug("FAIL\n");
Joe Hershbergerc10c0b12015-04-08 01:41:19 -0500303 } else {
Bin Mengcecd3942015-10-07 21:45:44 -0700304 debug("PROBE FAIL\n");
Joe Hershbergerc10c0b12015-04-08 01:41:19 -0500305 }
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500306
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500307 /*
308 * If ethrotate is enabled, this will change "current",
309 * otherwise we will drop out of this while loop immediately
310 */
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -0500311 eth_try_another(0);
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500312 /* This will ensure the new "current" attempted to probe */
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -0500313 current = eth_get_dev();
314 } while (old_current != current);
315
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500316 return ret;
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -0500317}
318
319void eth_halt(void)
320{
321 struct udevice *current;
322 struct eth_device_priv *priv;
323
324 current = eth_get_dev();
325 if (!current || !device_active(current))
326 return;
327
328 eth_get_ops(current)->stop(current);
329 priv = current->uclass_priv;
330 priv->state = ETH_STATE_PASSIVE;
331}
332
Bernhard Nortmann8de9d122015-09-14 15:29:43 +0200333int eth_is_active(struct udevice *dev)
334{
335 struct eth_device_priv *priv;
336
337 if (!dev || !device_active(dev))
338 return 0;
339
340 priv = dev_get_uclass_priv(dev);
341 return priv->state == ETH_STATE_ACTIVE;
342}
343
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -0500344int eth_send(void *packet, int length)
345{
346 struct udevice *current;
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500347 int ret;
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -0500348
349 current = eth_get_dev();
350 if (!current)
351 return -ENODEV;
352
353 if (!device_active(current))
354 return -EINVAL;
355
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500356 ret = eth_get_ops(current)->send(current, packet, length);
357 if (ret < 0) {
358 /* We cannot completely return the error at present */
359 debug("%s: send() returned error %d\n", __func__, ret);
360 }
361 return ret;
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -0500362}
363
364int eth_rx(void)
365{
366 struct udevice *current;
Joe Hershberger8207c542015-03-22 17:09:12 -0500367 uchar *packet;
Simon Glassdc6eda32015-07-06 16:47:49 -0600368 int flags;
Joe Hershberger8207c542015-03-22 17:09:12 -0500369 int ret;
370 int i;
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -0500371
372 current = eth_get_dev();
373 if (!current)
374 return -ENODEV;
375
376 if (!device_active(current))
377 return -EINVAL;
378
Joe Hershberger8207c542015-03-22 17:09:12 -0500379 /* Process up to 32 packets at one time */
Simon Glassdc6eda32015-07-06 16:47:49 -0600380 flags = ETH_RECV_CHECK_DEVICE;
Joe Hershberger8207c542015-03-22 17:09:12 -0500381 for (i = 0; i < 32; i++) {
Simon Glassdc6eda32015-07-06 16:47:49 -0600382 ret = eth_get_ops(current)->recv(current, flags, &packet);
383 flags = 0;
Joe Hershberger8207c542015-03-22 17:09:12 -0500384 if (ret > 0)
385 net_process_received_packet(packet, ret);
Joe Hershbergera892dc12015-04-03 20:09:46 -0500386 if (ret >= 0 && eth_get_ops(current)->free_pkt)
387 eth_get_ops(current)->free_pkt(current, packet, ret);
388 if (ret <= 0)
Joe Hershberger8207c542015-03-22 17:09:12 -0500389 break;
390 }
391 if (ret == -EAGAIN)
392 ret = 0;
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500393 if (ret < 0) {
394 /* We cannot completely return the error at present */
395 debug("%s: recv() returned error %d\n", __func__, ret);
396 }
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -0500397 return ret;
398}
399
400int eth_initialize(void)
401{
402 int num_devices = 0;
403 struct udevice *dev;
404
Simon Glassb6121f22015-04-05 16:07:37 -0600405 eth_common_init();
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -0500406
407 /*
408 * Devices need to write the hwaddr even if not started so that Linux
409 * will have access to the hwaddr that u-boot stored for the device.
410 * This is accomplished by attempting to probe each device and calling
411 * their write_hwaddr() operation.
412 */
413 uclass_first_device(UCLASS_ETH, &dev);
414 if (!dev) {
415 printf("No ethernet found.\n");
416 bootstage_error(BOOTSTAGE_ID_NET_ETH_START);
417 } else {
Joe Hershbergeraa52edd2015-03-22 17:09:17 -0500418 char *ethprime = getenv("ethprime");
419 struct udevice *prime_dev = NULL;
420
421 if (ethprime)
422 prime_dev = eth_get_dev_by_name(ethprime);
423 if (prime_dev) {
424 eth_set_dev(prime_dev);
425 eth_current_changed();
426 } else {
427 eth_set_dev(NULL);
428 }
429
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -0500430 bootstage_mark(BOOTSTAGE_ID_NET_ETH_INIT);
431 do {
432 if (num_devices)
433 printf(", ");
434
435 printf("eth%d: %s", dev->seq, dev->name);
436
Joe Hershbergeraa52edd2015-03-22 17:09:17 -0500437 if (ethprime && dev == prime_dev)
438 printf(" [PRIME]");
439
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -0500440 eth_write_hwaddr(dev);
441
442 uclass_next_device(&dev);
443 num_devices++;
444 } while (dev);
445
446 putc('\n');
447 }
448
449 return num_devices;
450}
451
452static int eth_post_bind(struct udevice *dev)
453{
454 if (strchr(dev->name, ' ')) {
455 printf("\nError: eth device name \"%s\" has a space!\n",
456 dev->name);
457 return -EINVAL;
458 }
459
460 return 0;
461}
462
463static int eth_pre_unbind(struct udevice *dev)
464{
465 /* Don't hang onto a pointer that is going away */
466 if (dev == eth_get_uclass_priv()->current)
467 eth_set_dev(NULL);
468
469 return 0;
470}
471
472static int eth_post_probe(struct udevice *dev)
473{
474 struct eth_device_priv *priv = dev->uclass_priv;
475 struct eth_pdata *pdata = dev->platdata;
476 unsigned char env_enetaddr[6];
477
Michal Simekb5291092015-12-08 16:45:30 +0100478#if defined(CONFIG_NEEDS_MANUAL_RELOC)
479 struct eth_ops *ops = eth_get_ops(dev);
480 static int reloc_done;
481
482 if (!reloc_done) {
483 if (ops->start)
484 ops->start += gd->reloc_off;
485 if (ops->send)
486 ops->send += gd->reloc_off;
487 if (ops->recv)
488 ops->recv += gd->reloc_off;
489 if (ops->free_pkt)
490 ops->free_pkt += gd->reloc_off;
491 if (ops->stop)
492 ops->stop += gd->reloc_off;
493#ifdef CONFIG_MCAST_TFTP
494 if (ops->mcast)
495 ops->mcast += gd->reloc_off;
496#endif
497 if (ops->write_hwaddr)
498 ops->write_hwaddr += gd->reloc_off;
499 if (ops->read_rom_hwaddr)
500 ops->read_rom_hwaddr += gd->reloc_off;
501
502 reloc_done++;
503 }
504#endif
505
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -0500506 priv->state = ETH_STATE_INIT;
507
508 /* Check if the device has a MAC address in ROM */
509 if (eth_get_ops(dev)->read_rom_hwaddr)
510 eth_get_ops(dev)->read_rom_hwaddr(dev);
511
512 eth_getenv_enetaddr_by_index("eth", dev->seq, env_enetaddr);
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500513 if (!is_zero_ethaddr(env_enetaddr)) {
514 if (!is_zero_ethaddr(pdata->enetaddr) &&
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -0500515 memcmp(pdata->enetaddr, env_enetaddr, 6)) {
516 printf("\nWarning: %s MAC addresses don't match:\n",
517 dev->name);
518 printf("Address in SROM is %pM\n",
519 pdata->enetaddr);
520 printf("Address in environment is %pM\n",
521 env_enetaddr);
522 }
523
524 /* Override the ROM MAC address */
525 memcpy(pdata->enetaddr, env_enetaddr, 6);
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500526 } else if (is_valid_ethaddr(pdata->enetaddr)) {
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -0500527 eth_setenv_enetaddr_by_index("eth", dev->seq, pdata->enetaddr);
528 printf("\nWarning: %s using MAC address from ROM\n",
529 dev->name);
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500530 } else if (is_zero_ethaddr(pdata->enetaddr)) {
Joe Hershberger2dc2b5d2015-05-04 14:55:13 -0500531#ifdef CONFIG_NET_RANDOM_ETHADDR
532 net_random_ethaddr(pdata->enetaddr);
533 printf("\nWarning: %s (eth%d) using random MAC address - %pM\n",
534 dev->name, dev->seq, pdata->enetaddr);
535#else
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -0500536 printf("\nError: %s address not set.\n",
537 dev->name);
538 return -EINVAL;
Joe Hershberger2dc2b5d2015-05-04 14:55:13 -0500539#endif
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -0500540 }
541
542 return 0;
543}
544
545static int eth_pre_remove(struct udevice *dev)
546{
Bin Menge59ecbc2015-10-07 21:45:42 -0700547 struct eth_pdata *pdata = dev->platdata;
548
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -0500549 eth_get_ops(dev)->stop(dev);
550
Bin Menge59ecbc2015-10-07 21:45:42 -0700551 /* clear the MAC address */
552 memset(pdata->enetaddr, 0, 6);
553
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -0500554 return 0;
555}
556
557UCLASS_DRIVER(eth) = {
558 .name = "eth",
559 .id = UCLASS_ETH,
560 .post_bind = eth_post_bind,
561 .pre_unbind = eth_pre_unbind,
562 .post_probe = eth_post_probe,
563 .pre_remove = eth_pre_remove,
564 .priv_auto_alloc_size = sizeof(struct eth_uclass_priv),
565 .per_device_auto_alloc_size = sizeof(struct eth_device_priv),
Joe Hershberger279d2f62015-03-22 17:09:16 -0500566 .flags = DM_UC_FLAG_SEQ_ALIAS,
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -0500567};
Bernhard Nortmann8de9d122015-09-14 15:29:43 +0200568#endif /* #ifdef CONFIG_DM_ETH */
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -0500569
570#ifndef CONFIG_DM_ETH
Ben Warrend448a492008-06-23 22:57:27 -0700571
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +0100572#ifdef CONFIG_API
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +0100573static struct {
574 uchar data[PKTSIZE];
575 int length;
576} eth_rcv_bufs[PKTBUFSRX];
577
Joe Hershberger5956ded2012-05-15 08:59:07 +0000578static unsigned int eth_rcv_current, eth_rcv_last;
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +0100579#endif
580
Joe Hershberger9f374062012-08-03 10:59:08 +0000581static struct eth_device *eth_devices;
582struct eth_device *eth_current;
wdenkc6097192002-11-03 00:24:07 +0000583
Simon Glassd9582c32016-01-17 14:51:59 -0700584void eth_set_current_to_next(void)
Joe Hershbergere1e8a8c2015-03-22 17:09:03 -0500585{
586 eth_current = eth_current->next;
587}
588
Simon Glassd9582c32016-01-17 14:51:59 -0700589void eth_set_dev(struct eth_device *dev)
Joe Hershberger279d2f62015-03-22 17:09:16 -0500590{
591 eth_current = dev;
592}
593
Ben Warren97824d62010-07-29 12:56:11 -0700594struct eth_device *eth_get_dev_by_name(const char *devname)
Marian Balakowiczaab8c492005-10-28 22:30:33 +0200595{
596 struct eth_device *dev, *target_dev;
597
Helmut Raiger153bf3a2011-08-22 00:17:17 +0000598 BUG_ON(devname == NULL);
599
Marian Balakowiczaab8c492005-10-28 22:30:33 +0200600 if (!eth_devices)
601 return NULL;
602
603 dev = eth_devices;
604 target_dev = NULL;
605 do {
606 if (strcmp(devname, dev->name) == 0) {
607 target_dev = dev;
608 break;
609 }
610 dev = dev->next;
611 } while (dev != eth_devices);
612
613 return target_dev;
614}
615
Andy Fleminge7fd34b2009-02-11 15:07:24 -0600616struct eth_device *eth_get_dev_by_index(int index)
617{
618 struct eth_device *dev, *target_dev;
Andy Fleminge7fd34b2009-02-11 15:07:24 -0600619
620 if (!eth_devices)
621 return NULL;
622
623 dev = eth_devices;
624 target_dev = NULL;
625 do {
Michael Walle391da4c2011-10-27 11:31:35 +0000626 if (dev->index == index) {
Andy Fleminge7fd34b2009-02-11 15:07:24 -0600627 target_dev = dev;
628 break;
629 }
630 dev = dev->next;
Andy Fleminge7fd34b2009-02-11 15:07:24 -0600631 } while (dev != eth_devices);
632
633 return target_dev;
634}
635
Joe Hershberger5956ded2012-05-15 08:59:07 +0000636int eth_get_dev_index(void)
wdenkc6097192002-11-03 00:24:07 +0000637{
Joe Hershberger5956ded2012-05-15 08:59:07 +0000638 if (!eth_current)
Michael Walle391da4c2011-10-27 11:31:35 +0000639 return -1;
wdenkc6097192002-11-03 00:24:07 +0000640
Michael Walle391da4c2011-10-27 11:31:35 +0000641 return eth_current->index;
wdenkc6097192002-11-03 00:24:07 +0000642}
643
Joe Hershberger7e0b0152015-05-20 14:27:26 -0500644static int on_ethaddr(const char *name, const char *value, enum env_op op,
645 int flags)
646{
647 int index;
648 struct eth_device *dev;
649
650 if (!eth_devices)
651 return 0;
652
653 /* look for an index after "eth" */
654 index = simple_strtoul(name + 3, NULL, 10);
655
656 dev = eth_devices;
657 do {
658 if (dev->index == index) {
659 switch (op) {
660 case env_op_create:
661 case env_op_overwrite:
662 eth_parse_enetaddr(value, dev->enetaddr);
663 break;
664 case env_op_delete:
665 memset(dev->enetaddr, 0, 6);
666 }
667 }
Gong Qianyua4f23972015-08-31 11:34:43 +0800668 dev = dev->next;
Joe Hershberger7e0b0152015-05-20 14:27:26 -0500669 } while (dev != eth_devices);
670
671 return 0;
672}
673U_BOOT_ENV_CALLBACK(ethaddr, on_ethaddr);
674
Simon Glass62b36c92011-06-13 16:13:10 -0700675int eth_write_hwaddr(struct eth_device *dev, const char *base_name,
676 int eth_number)
677{
678 unsigned char env_enetaddr[6];
679 int ret = 0;
680
Eric Miaoae97ef62012-01-18 22:56:33 +0000681 eth_getenv_enetaddr_by_index(base_name, eth_number, env_enetaddr);
Simon Glass62b36c92011-06-13 16:13:10 -0700682
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500683 if (!is_zero_ethaddr(env_enetaddr)) {
684 if (!is_zero_ethaddr(dev->enetaddr) &&
Joe Hershbergerca044ad2015-03-22 17:09:01 -0500685 memcmp(dev->enetaddr, env_enetaddr, 6)) {
Simon Glass62b36c92011-06-13 16:13:10 -0700686 printf("\nWarning: %s MAC addresses don't match:\n",
Joe Hershbergerc10c0b12015-04-08 01:41:19 -0500687 dev->name);
Simon Glass62b36c92011-06-13 16:13:10 -0700688 printf("Address in SROM is %pM\n",
Joe Hershbergerc10c0b12015-04-08 01:41:19 -0500689 dev->enetaddr);
Simon Glass62b36c92011-06-13 16:13:10 -0700690 printf("Address in environment is %pM\n",
Joe Hershbergerc10c0b12015-04-08 01:41:19 -0500691 env_enetaddr);
Simon Glass62b36c92011-06-13 16:13:10 -0700692 }
693
694 memcpy(dev->enetaddr, env_enetaddr, 6);
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500695 } else if (is_valid_ethaddr(dev->enetaddr)) {
Rob Herringc2938c02012-04-14 18:06:49 +0000696 eth_setenv_enetaddr_by_index(base_name, eth_number,
697 dev->enetaddr);
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500698 } else if (is_zero_ethaddr(dev->enetaddr)) {
Joe Hershberger2dc2b5d2015-05-04 14:55:13 -0500699#ifdef CONFIG_NET_RANDOM_ETHADDR
700 net_random_ethaddr(dev->enetaddr);
701 printf("\nWarning: %s (eth%d) using random MAC address - %pM\n",
702 dev->name, eth_number, dev->enetaddr);
703#else
Pavel Machek222981f2014-07-13 10:27:02 +0200704 printf("\nError: %s address not set.\n",
705 dev->name);
706 return -EINVAL;
Joe Hershberger2dc2b5d2015-05-04 14:55:13 -0500707#endif
Simon Glass62b36c92011-06-13 16:13:10 -0700708 }
709
Pavel Machek222981f2014-07-13 10:27:02 +0200710 if (dev->write_hwaddr && !eth_mac_skip(eth_number)) {
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500711 if (!is_valid_ethaddr(dev->enetaddr)) {
Pavel Machek222981f2014-07-13 10:27:02 +0200712 printf("\nError: %s address %pM illegal value\n",
Joe Hershbergerc10c0b12015-04-08 01:41:19 -0500713 dev->name, dev->enetaddr);
Pavel Machek222981f2014-07-13 10:27:02 +0200714 return -EINVAL;
715 }
Benoît Thébaudeau050219e2012-08-10 07:56:21 +0000716
Simon Glass62b36c92011-06-13 16:13:10 -0700717 ret = dev->write_hwaddr(dev);
Pavel Machek222981f2014-07-13 10:27:02 +0200718 if (ret)
Joe Hershbergerc10c0b12015-04-08 01:41:19 -0500719 printf("\nWarning: %s failed to set MAC address\n",
720 dev->name);
Benoît Thébaudeau050219e2012-08-10 07:56:21 +0000721 }
Simon Glass62b36c92011-06-13 16:13:10 -0700722
723 return ret;
724}
725
Simon Glass1e9961d2011-02-16 11:14:33 -0800726int eth_register(struct eth_device *dev)
727{
728 struct eth_device *d;
Joe Hershberger5956ded2012-05-15 08:59:07 +0000729 static int index;
Michal Simek5b4945b2011-08-29 23:30:13 +0000730
Mike Frysinger6b300dc2011-11-10 14:11:04 +0000731 assert(strlen(dev->name) < sizeof(dev->name));
Michal Simek5b4945b2011-08-29 23:30:13 +0000732
Simon Glass1e9961d2011-02-16 11:14:33 -0800733 if (!eth_devices) {
Joe Hershbergerc10c0b12015-04-08 01:41:19 -0500734 eth_devices = dev;
735 eth_current = dev;
Simon Glass1e9961d2011-02-16 11:14:33 -0800736 eth_current_changed();
wdenkc6097192002-11-03 00:24:07 +0000737 } else {
Joe Hershberger5956ded2012-05-15 08:59:07 +0000738 for (d = eth_devices; d->next != eth_devices; d = d->next)
Detlev Zundeld46bcd32010-03-31 17:56:08 +0200739 ;
wdenkc6097192002-11-03 00:24:07 +0000740 d->next = dev;
741 }
742
743 dev->state = ETH_STATE_INIT;
744 dev->next = eth_devices;
Michael Walle391da4c2011-10-27 11:31:35 +0000745 dev->index = index++;
wdenkc6097192002-11-03 00:24:07 +0000746
747 return 0;
748}
749
Vincent Palatin451be502012-01-09 08:32:36 +0000750int eth_unregister(struct eth_device *dev)
751{
752 struct eth_device *cur;
753
754 /* No device */
755 if (!eth_devices)
Joe Hershbergerd0ce3412015-03-22 17:09:04 -0500756 return -ENODEV;
Vincent Palatin451be502012-01-09 08:32:36 +0000757
758 for (cur = eth_devices; cur->next != eth_devices && cur->next != dev;
759 cur = cur->next)
760 ;
761
762 /* Device not found */
763 if (cur->next != dev)
Joe Hershbergerd0ce3412015-03-22 17:09:04 -0500764 return -ENODEV;
Vincent Palatin451be502012-01-09 08:32:36 +0000765
766 cur->next = dev->next;
767
768 if (eth_devices == dev)
769 eth_devices = dev->next == eth_devices ? NULL : dev->next;
770
771 if (eth_current == dev) {
772 eth_current = eth_devices;
773 eth_current_changed();
774 }
775
776 return 0;
777}
778
Joe Hershberger3dbe17e2015-03-22 17:09:06 -0500779int eth_initialize(void)
wdenkc6097192002-11-03 00:24:07 +0000780{
Michael Walle391da4c2011-10-27 11:31:35 +0000781 int num_devices = 0;
Simon Glassb6121f22015-04-05 16:07:37 -0600782
wdenkc6097192002-11-03 00:24:07 +0000783 eth_devices = NULL;
784 eth_current = NULL;
Simon Glassb6121f22015-04-05 16:07:37 -0600785 eth_common_init();
Simon Glass0a9bde12016-01-17 14:51:57 -0700786 /*
787 * If board-specific initialization exists, call it.
788 * If not, call a CPU-specific one
789 */
790 if (board_eth_init != __def_eth_init) {
791 if (board_eth_init(gd->bd) < 0)
792 printf("Board Net Initialization Failed\n");
793 } else if (cpu_eth_init != __def_eth_init) {
794 if (cpu_eth_init(gd->bd) < 0)
795 printf("CPU Net Initialization Failed\n");
796 } else {
797 printf("Net Initialization Skipped\n");
798 }
Marian Balakowiczcbdd1c82005-11-30 18:06:04 +0100799
wdenkc6097192002-11-03 00:24:07 +0000800 if (!eth_devices) {
Joe Hershberger5956ded2012-05-15 08:59:07 +0000801 puts("No ethernet found.\n");
Simon Glass0169e6b2012-02-13 13:51:18 +0000802 bootstage_error(BOOTSTAGE_ID_NET_ETH_START);
wdenkc6097192002-11-03 00:24:07 +0000803 } else {
804 struct eth_device *dev = eth_devices;
Joe Hershberger5956ded2012-05-15 08:59:07 +0000805 char *ethprime = getenv("ethprime");
wdenkc6097192002-11-03 00:24:07 +0000806
Simon Glass0169e6b2012-02-13 13:51:18 +0000807 bootstage_mark(BOOTSTAGE_ID_NET_ETH_INIT);
wdenkc6097192002-11-03 00:24:07 +0000808 do {
Michael Walle391da4c2011-10-27 11:31:35 +0000809 if (dev->index)
Joe Hershberger5956ded2012-05-15 08:59:07 +0000810 puts(", ");
wdenkc6097192002-11-03 00:24:07 +0000811
812 printf("%s", dev->name);
813
Joe Hershberger5956ded2012-05-15 08:59:07 +0000814 if (ethprime && strcmp(dev->name, ethprime) == 0) {
wdenkc6097192002-11-03 00:24:07 +0000815 eth_current = dev;
Joe Hershberger5956ded2012-05-15 08:59:07 +0000816 puts(" [PRIME]");
wdenkc6097192002-11-03 00:24:07 +0000817 }
818
Mike Frysinger2843ed92010-06-09 22:10:48 -0400819 if (strchr(dev->name, ' '))
Joe Hershberger5956ded2012-05-15 08:59:07 +0000820 puts("\nWarning: eth device name has a space!"
821 "\n");
Mike Frysinger2843ed92010-06-09 22:10:48 -0400822
Pavel Machek222981f2014-07-13 10:27:02 +0200823 eth_write_hwaddr(dev, "eth", dev->index);
wdenkc6097192002-11-03 00:24:07 +0000824
wdenkc6097192002-11-03 00:24:07 +0000825 dev = dev->next;
Michael Walle391da4c2011-10-27 11:31:35 +0000826 num_devices++;
Joe Hershberger5956ded2012-05-15 08:59:07 +0000827 } while (dev != eth_devices);
wdenkc6097192002-11-03 00:24:07 +0000828
Simon Glass1e9961d2011-02-16 11:14:33 -0800829 eth_current_changed();
Joe Hershberger5956ded2012-05-15 08:59:07 +0000830 putc('\n');
wdenkc6097192002-11-03 00:24:07 +0000831 }
832
Michael Walle391da4c2011-10-27 11:31:35 +0000833 return num_devices;
wdenkc6097192002-11-03 00:24:07 +0000834}
835
David Updegraff7280da72007-06-11 10:41:07 -0500836#ifdef CONFIG_MCAST_TFTP
837/* Multicast.
838 * mcast_addr: multicast ipaddr from which multicast Mac is made
Wolfgang Denk627f5c32007-08-14 09:47:27 +0200839 * join: 1=join, 0=leave.
David Updegraff7280da72007-06-11 10:41:07 -0500840 */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500841int eth_mcast_join(struct in_addr mcast_ip, int join)
David Updegraff7280da72007-06-11 10:41:07 -0500842{
Joe Hershberger5956ded2012-05-15 08:59:07 +0000843 u8 mcast_mac[6];
Wolfgang Denk627f5c32007-08-14 09:47:27 +0200844 if (!eth_current || !eth_current->mcast)
David Updegraff7280da72007-06-11 10:41:07 -0500845 return -1;
Joe Hershberger5874dec2015-04-08 01:41:01 -0500846 mcast_mac[5] = htonl(mcast_ip.s_addr) & 0xff;
847 mcast_mac[4] = (htonl(mcast_ip.s_addr)>>8) & 0xff;
848 mcast_mac[3] = (htonl(mcast_ip.s_addr)>>16) & 0x7f;
David Updegraff7280da72007-06-11 10:41:07 -0500849 mcast_mac[2] = 0x5e;
850 mcast_mac[1] = 0x0;
851 mcast_mac[0] = 0x1;
852 return eth_current->mcast(eth_current, mcast_mac, join);
853}
854
Wolfgang Denk627f5c32007-08-14 09:47:27 +0200855/* the 'way' for ethernet-CRC-32. Spliced in from Linux lib/crc32.c
856 * and this is the ethernet-crc method needed for TSEC -- and perhaps
David Updegraff7280da72007-06-11 10:41:07 -0500857 * some other adapter -- hash tables
858 */
859#define CRCPOLY_LE 0xedb88320
Joe Hershberger5956ded2012-05-15 08:59:07 +0000860u32 ether_crc(size_t len, unsigned char const *p)
David Updegraff7280da72007-06-11 10:41:07 -0500861{
862 int i;
863 u32 crc;
864 crc = ~0;
865 while (len--) {
866 crc ^= *p++;
867 for (i = 0; i < 8; i++)
868 crc = (crc >> 1) ^ ((crc & 1) ? CRCPOLY_LE : 0);
869 }
870 /* an reverse the bits, cuz of way they arrive -- last-first */
871 crc = (crc >> 16) | (crc << 16);
872 crc = (crc >> 8 & 0x00ff00ff) | (crc << 8 & 0xff00ff00);
873 crc = (crc >> 4 & 0x0f0f0f0f) | (crc << 4 & 0xf0f0f0f0);
874 crc = (crc >> 2 & 0x33333333) | (crc << 2 & 0xcccccccc);
875 crc = (crc >> 1 & 0x55555555) | (crc << 1 & 0xaaaaaaaa);
876 return crc;
877}
wdenkc6097192002-11-03 00:24:07 +0000878
David Updegraff7280da72007-06-11 10:41:07 -0500879#endif
880
wdenkc6097192002-11-03 00:24:07 +0000881
Joe Hershberger3dbe17e2015-03-22 17:09:06 -0500882int eth_init(void)
wdenkc6097192002-11-03 00:24:07 +0000883{
Joe Hershberger7e0b0152015-05-20 14:27:26 -0500884 struct eth_device *old_current;
wdenkc6097192002-11-03 00:24:07 +0000885
Stefan Roese11da2be2008-03-04 17:40:41 +0100886 if (!eth_current) {
Joe Hershberger5956ded2012-05-15 08:59:07 +0000887 puts("No ethernet found.\n");
Joe Hershbergerd0ce3412015-03-22 17:09:04 -0500888 return -ENODEV;
Stefan Roese11da2be2008-03-04 17:40:41 +0100889 }
wdenkc6097192002-11-03 00:24:07 +0000890
891 old_current = eth_current;
892 do {
Robin Getz9e0a4d62009-07-23 03:01:03 -0400893 debug("Trying %s\n", eth_current->name);
wdenkc6097192002-11-03 00:24:07 +0000894
Joe Hershberger3dbe17e2015-03-22 17:09:06 -0500895 if (eth_current->init(eth_current, gd->bd) >= 0) {
wdenkc6097192002-11-03 00:24:07 +0000896 eth_current->state = ETH_STATE_ACTIVE;
897
Upakul Barkakatyaed33582007-11-29 12:16:13 +0530898 return 0;
wdenkc6097192002-11-03 00:24:07 +0000899 }
Robin Getz9e0a4d62009-07-23 03:01:03 -0400900 debug("FAIL\n");
wdenkc6097192002-11-03 00:24:07 +0000901
902 eth_try_another(0);
903 } while (old_current != eth_current);
904
Joe Hershbergerd0ce3412015-03-22 17:09:04 -0500905 return -ETIMEDOUT;
wdenkc6097192002-11-03 00:24:07 +0000906}
907
908void eth_halt(void)
909{
910 if (!eth_current)
911 return;
912
913 eth_current->halt(eth_current);
914
915 eth_current->state = ETH_STATE_PASSIVE;
916}
917
Bernhard Nortmann8de9d122015-09-14 15:29:43 +0200918int eth_is_active(struct eth_device *dev)
919{
920 return dev && dev->state == ETH_STATE_ACTIVE;
921}
922
Joe Hershberger4b7747e2012-05-15 08:59:04 +0000923int eth_send(void *packet, int length)
wdenkc6097192002-11-03 00:24:07 +0000924{
925 if (!eth_current)
Joe Hershbergerd0ce3412015-03-22 17:09:04 -0500926 return -ENODEV;
wdenkc6097192002-11-03 00:24:07 +0000927
928 return eth_current->send(eth_current, packet, length);
929}
930
931int eth_rx(void)
932{
933 if (!eth_current)
Joe Hershbergerd0ce3412015-03-22 17:09:04 -0500934 return -ENODEV;
wdenkc6097192002-11-03 00:24:07 +0000935
936 return eth_current->recv(eth_current);
937}
Joe Hershbergerc7eceaf2015-03-22 17:09:10 -0500938#endif /* ifndef CONFIG_DM_ETH */
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +0100939
940#ifdef CONFIG_API
Joe Hershberger4b7747e2012-05-15 08:59:04 +0000941static void eth_save_packet(void *packet, int length)
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +0100942{
Joe Hershberger4b7747e2012-05-15 08:59:04 +0000943 char *p = packet;
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +0100944 int i;
945
946 if ((eth_rcv_last+1) % PKTBUFSRX == eth_rcv_current)
947 return;
948
949 if (PKTSIZE < length)
950 return;
951
952 for (i = 0; i < length; i++)
953 eth_rcv_bufs[eth_rcv_last].data[i] = p[i];
954
955 eth_rcv_bufs[eth_rcv_last].length = length;
956 eth_rcv_last = (eth_rcv_last + 1) % PKTBUFSRX;
957}
958
Joe Hershberger4b7747e2012-05-15 08:59:04 +0000959int eth_receive(void *packet, int length)
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +0100960{
Joe Hershberger4b7747e2012-05-15 08:59:04 +0000961 char *p = packet;
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +0100962 void *pp = push_packet;
963 int i;
964
965 if (eth_rcv_current == eth_rcv_last) {
966 push_packet = eth_save_packet;
967 eth_rx();
968 push_packet = pp;
969
970 if (eth_rcv_current == eth_rcv_last)
971 return -1;
972 }
973
Michael Walledf7c98a2012-06-22 11:24:28 +0000974 length = min(eth_rcv_bufs[eth_rcv_current].length, length);
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +0100975
976 for (i = 0; i < length; i++)
977 p[i] = eth_rcv_bufs[eth_rcv_current].data[i];
978
979 eth_rcv_current = (eth_rcv_current + 1) % PKTBUFSRX;
980 return length;
981}
982#endif /* CONFIG_API */