1 // SPDX-License-Identifier: GPL-2.0+
3 * (C) Copyright 2001-2015
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * Joe Hershberger, National Instruments
12 #include <dm/device-internal.h>
13 #include <dm/uclass-internal.h>
15 #include "eth_internal.h"
17 DECLARE_GLOBAL_DATA_PTR;
20 * struct eth_device_priv - private structure for each Ethernet device
22 * @state: The state of the Ethernet MAC driver (defined by enum eth_state_t)
24 struct eth_device_priv {
25 enum eth_state_t state;
29 * struct eth_uclass_priv - The structure attached to the uclass itself
31 * @current: The Ethernet device that the network functions are using
33 struct eth_uclass_priv {
34 struct udevice *current;
37 /* eth_errno - This stores the most recent failure code from DM functions */
40 static struct eth_uclass_priv *eth_get_uclass_priv(void)
44 uclass_get(UCLASS_ETH, &uc);
49 void eth_set_current_to_next(void)
51 struct eth_uclass_priv *uc_priv;
53 uc_priv = eth_get_uclass_priv();
55 uclass_next_device(&uc_priv->current);
56 if (!uc_priv->current)
57 uclass_first_device(UCLASS_ETH, &uc_priv->current);
61 * Typically this will simply return the active device.
62 * In the case where the most recent active device was unset, this will attempt
63 * to return the first device. If that device doesn't exist or fails to probe,
64 * this function will return NULL.
66 struct udevice *eth_get_dev(void)
68 struct eth_uclass_priv *uc_priv;
70 uc_priv = eth_get_uclass_priv();
71 if (!uc_priv->current)
72 eth_errno = uclass_first_device(UCLASS_ETH,
74 return uc_priv->current;
78 * Typically this will just store a device pointer.
79 * In case it was not probed, we will attempt to do so.
80 * dev may be NULL to unset the active device.
82 void eth_set_dev(struct udevice *dev)
84 if (dev && !device_active(dev)) {
85 eth_errno = device_probe(dev);
90 eth_get_uclass_priv()->current = dev;
94 * Find the udevice that either has the name passed in as devname or has an
95 * alias named devname.
97 struct udevice *eth_get_dev_by_name(const char *devname)
101 const char *startp = NULL;
104 int len = strlen("eth");
106 /* Must be longer than 3 to be an alias */
107 if (!strncmp(devname, "eth", len) && strlen(devname) > len) {
108 startp = devname + len;
109 seq = simple_strtoul(startp, &endp, 10);
112 uclass_get(UCLASS_ETH, &uc);
113 uclass_foreach_dev(it, uc) {
115 * We need the seq to be valid, so try to probe it.
116 * If the probe fails, the seq will not match since it will be
117 * -1 instead of what we are looking for.
118 * We don't care about errors from probe here. Either they won't
119 * match an alias or it will match a literal name and we'll pick
120 * up the error when we try to probe again in eth_set_dev().
122 if (device_probe(it))
124 /* Check for the name or the sequence number to match */
125 if (strcmp(it->name, devname) == 0 ||
126 (endp > startp && it->seq == seq))
133 unsigned char *eth_get_ethaddr(void)
135 struct eth_pdata *pdata;
138 pdata = eth_get_dev()->platdata;
139 return pdata->enetaddr;
145 /* Set active state without calling start on the driver */
146 int eth_init_state_only(void)
148 struct udevice *current;
149 struct eth_device_priv *priv;
151 current = eth_get_dev();
152 if (!current || !device_active(current))
155 priv = current->uclass_priv;
156 priv->state = ETH_STATE_ACTIVE;
161 /* Set passive state without calling stop on the driver */
162 void eth_halt_state_only(void)
164 struct udevice *current;
165 struct eth_device_priv *priv;
167 current = eth_get_dev();
168 if (!current || !device_active(current))
171 priv = current->uclass_priv;
172 priv->state = ETH_STATE_PASSIVE;
175 int eth_get_dev_index(void)
178 return eth_get_dev()->seq;
182 static int eth_write_hwaddr(struct udevice *dev)
184 struct eth_pdata *pdata;
187 if (!dev || !device_active(dev))
190 /* seq is valid since the device is active */
191 if (eth_get_ops(dev)->write_hwaddr && !eth_mac_skip(dev->seq)) {
192 pdata = dev->platdata;
193 if (!is_valid_ethaddr(pdata->enetaddr)) {
194 printf("\nError: %s address %pM illegal value\n",
195 dev->name, pdata->enetaddr);
200 * Drivers are allowed to decide not to implement this at
201 * run-time. E.g. Some devices may use it and some may not.
203 ret = eth_get_ops(dev)->write_hwaddr(dev);
207 printf("\nWarning: %s failed to set MAC address\n",
214 static int on_ethaddr(const char *name, const char *value, enum env_op op,
221 /* look for an index after "eth" */
222 index = simple_strtoul(name + 3, NULL, 10);
224 retval = uclass_find_device_by_seq(UCLASS_ETH, index, false, &dev);
226 struct eth_pdata *pdata = dev->platdata;
229 case env_op_overwrite:
230 string_to_enetaddr(value, pdata->enetaddr);
231 eth_write_hwaddr(dev);
234 memset(pdata->enetaddr, 0, ARP_HLEN);
240 U_BOOT_ENV_CALLBACK(ethaddr, on_ethaddr);
244 char *ethact = env_get("ethact");
245 char *ethrotate = env_get("ethrotate");
246 struct udevice *current = NULL;
247 struct udevice *old_current;
251 * When 'ethrotate' variable is set to 'no' and 'ethact' variable
252 * is already set to an ethernet device, we should stick to 'ethact'.
254 if ((ethrotate != NULL) && (strcmp(ethrotate, "no") == 0)) {
256 current = eth_get_dev_by_name(ethact);
263 current = eth_get_dev();
265 printf("No ethernet found.\n");
270 old_current = current;
273 debug("Trying %s\n", current->name);
275 if (device_active(current)) {
276 ret = eth_get_ops(current)->start(current);
278 struct eth_device_priv *priv =
279 current->uclass_priv;
281 priv->state = ETH_STATE_ACTIVE;
290 debug("PROBE FAIL\n");
294 * If ethrotate is enabled, this will change "current",
295 * otherwise we will drop out of this while loop immediately
298 /* This will ensure the new "current" attempted to probe */
299 current = eth_get_dev();
300 } while (old_current != current);
307 struct udevice *current;
308 struct eth_device_priv *priv;
310 current = eth_get_dev();
311 if (!current || !eth_is_active(current))
314 eth_get_ops(current)->stop(current);
315 priv = current->uclass_priv;
317 priv->state = ETH_STATE_PASSIVE;
320 int eth_is_active(struct udevice *dev)
322 struct eth_device_priv *priv;
324 if (!dev || !device_active(dev))
327 priv = dev_get_uclass_priv(dev);
328 return priv->state == ETH_STATE_ACTIVE;
331 int eth_send(void *packet, int length)
333 struct udevice *current;
336 current = eth_get_dev();
340 if (!eth_is_active(current))
343 ret = eth_get_ops(current)->send(current, packet, length);
345 /* We cannot completely return the error at present */
346 debug("%s: send() returned error %d\n", __func__, ret);
348 #if defined(CONFIG_CMD_PCAP)
350 pcap_post(packet, length, true);
357 struct udevice *current;
363 current = eth_get_dev();
367 if (!eth_is_active(current))
370 /* Process up to 32 packets at one time */
371 flags = ETH_RECV_CHECK_DEVICE;
372 for (i = 0; i < 32; i++) {
373 ret = eth_get_ops(current)->recv(current, flags, &packet);
376 net_process_received_packet(packet, ret);
377 if (ret >= 0 && eth_get_ops(current)->free_pkt)
378 eth_get_ops(current)->free_pkt(current, packet, ret);
385 /* We cannot completely return the error at present */
386 debug("%s: recv() returned error %d\n", __func__, ret);
391 int eth_initialize(void)
399 * Devices need to write the hwaddr even if not started so that Linux
400 * will have access to the hwaddr that u-boot stored for the device.
401 * This is accomplished by attempting to probe each device and calling
402 * their write_hwaddr() operation.
404 uclass_first_device_check(UCLASS_ETH, &dev);
406 printf("No ethernet found.\n");
407 bootstage_error(BOOTSTAGE_ID_NET_ETH_START);
409 char *ethprime = env_get("ethprime");
410 struct udevice *prime_dev = NULL;
413 prime_dev = eth_get_dev_by_name(ethprime);
415 eth_set_dev(prime_dev);
416 eth_current_changed();
421 bootstage_mark(BOOTSTAGE_ID_NET_ETH_INIT);
423 if (dev->seq != -1) {
427 printf("eth%d: %s", dev->seq, dev->name);
429 if (ethprime && dev == prime_dev)
433 eth_write_hwaddr(dev);
437 uclass_next_device_check(&dev);
441 printf("No ethernet found.\n");
448 static int eth_post_bind(struct udevice *dev)
450 if (strchr(dev->name, ' ')) {
451 printf("\nError: eth device name \"%s\" has a space!\n",
459 static int eth_pre_unbind(struct udevice *dev)
461 /* Don't hang onto a pointer that is going away */
462 if (dev == eth_get_uclass_priv()->current)
468 static bool eth_dev_get_mac_address(struct udevice *dev, u8 mac[ARP_HLEN])
470 #if IS_ENABLED(CONFIG_OF_CONTROL)
473 p = dev_read_u8_array_ptr(dev, "mac-address", ARP_HLEN);
475 p = dev_read_u8_array_ptr(dev, "local-mac-address", ARP_HLEN);
480 memcpy(mac, p, ARP_HLEN);
488 static int eth_post_probe(struct udevice *dev)
490 struct eth_device_priv *priv = dev->uclass_priv;
491 struct eth_pdata *pdata = dev->platdata;
492 unsigned char env_enetaddr[ARP_HLEN];
494 #if defined(CONFIG_NEEDS_MANUAL_RELOC)
495 struct eth_ops *ops = eth_get_ops(dev);
496 static int reloc_done;
500 ops->start += gd->reloc_off;
502 ops->send += gd->reloc_off;
504 ops->recv += gd->reloc_off;
506 ops->free_pkt += gd->reloc_off;
508 ops->stop += gd->reloc_off;
510 ops->mcast += gd->reloc_off;
511 if (ops->write_hwaddr)
512 ops->write_hwaddr += gd->reloc_off;
513 if (ops->read_rom_hwaddr)
514 ops->read_rom_hwaddr += gd->reloc_off;
520 priv->state = ETH_STATE_INIT;
522 /* Check if the device has a valid MAC address in device tree */
523 if (!eth_dev_get_mac_address(dev, pdata->enetaddr) ||
524 !is_valid_ethaddr(pdata->enetaddr)) {
525 /* Check if the device has a MAC address in ROM */
526 if (eth_get_ops(dev)->read_rom_hwaddr)
527 eth_get_ops(dev)->read_rom_hwaddr(dev);
530 eth_env_get_enetaddr_by_index("eth", dev->seq, env_enetaddr);
531 if (!is_zero_ethaddr(env_enetaddr)) {
532 if (!is_zero_ethaddr(pdata->enetaddr) &&
533 memcmp(pdata->enetaddr, env_enetaddr, ARP_HLEN)) {
534 printf("\nWarning: %s MAC addresses don't match:\n",
536 printf("Address in ROM is %pM\n",
538 printf("Address in environment is %pM\n",
542 /* Override the ROM MAC address */
543 memcpy(pdata->enetaddr, env_enetaddr, ARP_HLEN);
544 } else if (is_valid_ethaddr(pdata->enetaddr)) {
545 eth_env_set_enetaddr_by_index("eth", dev->seq, pdata->enetaddr);
546 printf("\nWarning: %s using MAC address from ROM\n",
548 } else if (is_zero_ethaddr(pdata->enetaddr) ||
549 !is_valid_ethaddr(pdata->enetaddr)) {
550 #ifdef CONFIG_NET_RANDOM_ETHADDR
551 net_random_ethaddr(pdata->enetaddr);
552 printf("\nWarning: %s (eth%d) using random MAC address - %pM\n",
553 dev->name, dev->seq, pdata->enetaddr);
555 printf("\nError: %s address not set.\n",
561 eth_write_hwaddr(dev);
566 static int eth_pre_remove(struct udevice *dev)
568 struct eth_pdata *pdata = dev->platdata;
570 eth_get_ops(dev)->stop(dev);
572 /* clear the MAC address */
573 memset(pdata->enetaddr, 0, ARP_HLEN);
578 UCLASS_DRIVER(eth) = {
581 .post_bind = eth_post_bind,
582 .pre_unbind = eth_pre_unbind,
583 .post_probe = eth_post_probe,
584 .pre_remove = eth_pre_remove,
585 .priv_auto_alloc_size = sizeof(struct eth_uclass_priv),
586 .per_device_auto_alloc_size = sizeof(struct eth_device_priv),
587 .flags = DM_UC_FLAG_SEQ_ALIAS,