blob: 4e4f47243123e12fc643f2e18e509f31b2f44479 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glassc6011d22016-01-17 14:52:00 -07002/*
3 * (C) Copyright 2001-2015
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * Joe Hershberger, National Instruments
Simon Glassc6011d22016-01-17 14:52:00 -07006 */
7
8#include <common.h>
9#include <dm.h>
Simon Glass5e6201b2019-08-01 09:46:51 -060010#include <env.h>
Simon Glassc6011d22016-01-17 14:52:00 -070011#include <environment.h>
12#include <net.h>
13#include <dm/device-internal.h>
14#include <dm/uclass-internal.h>
15#include "eth_internal.h"
16
Simon Glass004b8912016-01-30 15:45:14 -070017DECLARE_GLOBAL_DATA_PTR;
18
Simon Glassc6011d22016-01-17 14:52:00 -070019/**
20 * struct eth_device_priv - private structure for each Ethernet device
21 *
22 * @state: The state of the Ethernet MAC driver (defined by enum eth_state_t)
23 */
24struct eth_device_priv {
25 enum eth_state_t state;
26};
27
28/**
29 * struct eth_uclass_priv - The structure attached to the uclass itself
30 *
31 * @current: The Ethernet device that the network functions are using
32 */
33struct eth_uclass_priv {
34 struct udevice *current;
35};
36
37/* eth_errno - This stores the most recent failure code from DM functions */
38static int eth_errno;
39
40static struct eth_uclass_priv *eth_get_uclass_priv(void)
41{
42 struct uclass *uc;
43
44 uclass_get(UCLASS_ETH, &uc);
45 assert(uc);
46 return uc->priv;
47}
48
49void eth_set_current_to_next(void)
50{
51 struct eth_uclass_priv *uc_priv;
52
53 uc_priv = eth_get_uclass_priv();
54 if (uc_priv->current)
55 uclass_next_device(&uc_priv->current);
56 if (!uc_priv->current)
57 uclass_first_device(UCLASS_ETH, &uc_priv->current);
58}
59
60/*
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.
65 */
66struct udevice *eth_get_dev(void)
67{
68 struct eth_uclass_priv *uc_priv;
69
70 uc_priv = eth_get_uclass_priv();
71 if (!uc_priv->current)
72 eth_errno = uclass_first_device(UCLASS_ETH,
73 &uc_priv->current);
74 return uc_priv->current;
75}
76
77/*
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.
81 */
82void eth_set_dev(struct udevice *dev)
83{
84 if (dev && !device_active(dev)) {
85 eth_errno = device_probe(dev);
86 if (eth_errno)
87 dev = NULL;
88 }
89
90 eth_get_uclass_priv()->current = dev;
91}
92
93/*
94 * Find the udevice that either has the name passed in as devname or has an
95 * alias named devname.
96 */
97struct udevice *eth_get_dev_by_name(const char *devname)
98{
99 int seq = -1;
100 char *endp = NULL;
101 const char *startp = NULL;
102 struct udevice *it;
103 struct uclass *uc;
104 int len = strlen("eth");
105
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);
110 }
111
112 uclass_get(UCLASS_ETH, &uc);
113 uclass_foreach_dev(it, uc) {
114 /*
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().
121 */
122 if (device_probe(it))
123 continue;
124 /* Check for the name or the sequence number to match */
125 if (strcmp(it->name, devname) == 0 ||
126 (endp > startp && it->seq == seq))
127 return it;
128 }
129
130 return NULL;
131}
132
133unsigned char *eth_get_ethaddr(void)
134{
135 struct eth_pdata *pdata;
136
137 if (eth_get_dev()) {
138 pdata = eth_get_dev()->platdata;
139 return pdata->enetaddr;
140 }
141
142 return NULL;
143}
144
145/* Set active state without calling start on the driver */
146int eth_init_state_only(void)
147{
148 struct udevice *current;
149 struct eth_device_priv *priv;
150
151 current = eth_get_dev();
152 if (!current || !device_active(current))
153 return -EINVAL;
154
155 priv = current->uclass_priv;
156 priv->state = ETH_STATE_ACTIVE;
157
158 return 0;
159}
160
161/* Set passive state without calling stop on the driver */
162void eth_halt_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;
170
171 priv = current->uclass_priv;
172 priv->state = ETH_STATE_PASSIVE;
173}
174
175int eth_get_dev_index(void)
176{
177 if (eth_get_dev())
178 return eth_get_dev()->seq;
179 return -1;
180}
181
182static int eth_write_hwaddr(struct udevice *dev)
183{
xypron.glpk@gmx.de0211e392017-05-16 05:07:01 +0200184 struct eth_pdata *pdata;
Simon Glassc6011d22016-01-17 14:52:00 -0700185 int ret = 0;
186
187 if (!dev || !device_active(dev))
188 return -EINVAL;
189
190 /* seq is valid since the device is active */
191 if (eth_get_ops(dev)->write_hwaddr && !eth_mac_skip(dev->seq)) {
xypron.glpk@gmx.de0211e392017-05-16 05:07:01 +0200192 pdata = dev->platdata;
Simon Glassc6011d22016-01-17 14:52:00 -0700193 if (!is_valid_ethaddr(pdata->enetaddr)) {
194 printf("\nError: %s address %pM illegal value\n",
195 dev->name, pdata->enetaddr);
196 return -EINVAL;
197 }
198
199 /*
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.
202 */
203 ret = eth_get_ops(dev)->write_hwaddr(dev);
204 if (ret == -ENOSYS)
205 ret = 0;
206 if (ret)
207 printf("\nWarning: %s failed to set MAC address\n",
208 dev->name);
209 }
210
211 return ret;
212}
213
214static int on_ethaddr(const char *name, const char *value, enum env_op op,
215 int flags)
216{
217 int index;
218 int retval;
219 struct udevice *dev;
220
221 /* look for an index after "eth" */
222 index = simple_strtoul(name + 3, NULL, 10);
223
224 retval = uclass_find_device_by_seq(UCLASS_ETH, index, false, &dev);
225 if (!retval) {
226 struct eth_pdata *pdata = dev->platdata;
227 switch (op) {
228 case env_op_create:
229 case env_op_overwrite:
230 eth_parse_enetaddr(value, pdata->enetaddr);
Hannes Schmelzer3071f072016-09-02 14:48:17 +0200231 eth_write_hwaddr(dev);
Simon Glassc6011d22016-01-17 14:52:00 -0700232 break;
233 case env_op_delete:
oliver@schinagl.nl496904b2016-11-25 16:30:19 +0100234 memset(pdata->enetaddr, 0, ARP_HLEN);
Simon Glassc6011d22016-01-17 14:52:00 -0700235 }
236 }
237
238 return 0;
239}
240U_BOOT_ENV_CALLBACK(ethaddr, on_ethaddr);
241
242int eth_init(void)
243{
Simon Glass64b723f2017-08-03 12:22:12 -0600244 char *ethact = env_get("ethact");
245 char *ethrotate = env_get("ethrotate");
Simon Glassc6011d22016-01-17 14:52:00 -0700246 struct udevice *current = NULL;
247 struct udevice *old_current;
248 int ret = -ENODEV;
249
250 /*
251 * When 'ethrotate' variable is set to 'no' and 'ethact' variable
252 * is already set to an ethernet device, we should stick to 'ethact'.
253 */
254 if ((ethrotate != NULL) && (strcmp(ethrotate, "no") == 0)) {
255 if (ethact) {
256 current = eth_get_dev_by_name(ethact);
257 if (!current)
258 return -EINVAL;
259 }
260 }
261
262 if (!current) {
263 current = eth_get_dev();
264 if (!current) {
265 printf("No ethernet found.\n");
266 return -ENODEV;
267 }
268 }
269
270 old_current = current;
271 do {
272 if (current) {
273 debug("Trying %s\n", current->name);
274
275 if (device_active(current)) {
276 ret = eth_get_ops(current)->start(current);
277 if (ret >= 0) {
278 struct eth_device_priv *priv =
279 current->uclass_priv;
280
281 priv->state = ETH_STATE_ACTIVE;
282 return 0;
283 }
284 } else {
285 ret = eth_errno;
286 }
287
288 debug("FAIL\n");
289 } else {
290 debug("PROBE FAIL\n");
291 }
292
293 /*
294 * If ethrotate is enabled, this will change "current",
295 * otherwise we will drop out of this while loop immediately
296 */
297 eth_try_another(0);
298 /* This will ensure the new "current" attempted to probe */
299 current = eth_get_dev();
300 } while (old_current != current);
301
302 return ret;
303}
304
305void eth_halt(void)
306{
307 struct udevice *current;
308 struct eth_device_priv *priv;
309
310 current = eth_get_dev();
Joe Hershberger3c91d152018-07-02 14:47:46 -0500311 if (!current || !eth_is_active(current))
Simon Glassc6011d22016-01-17 14:52:00 -0700312 return;
313
314 eth_get_ops(current)->stop(current);
315 priv = current->uclass_priv;
Jean-Jacques Hiblotd21faa52018-08-09 16:17:41 +0200316 if (priv)
317 priv->state = ETH_STATE_PASSIVE;
Simon Glassc6011d22016-01-17 14:52:00 -0700318}
319
320int eth_is_active(struct udevice *dev)
321{
322 struct eth_device_priv *priv;
323
324 if (!dev || !device_active(dev))
325 return 0;
326
327 priv = dev_get_uclass_priv(dev);
328 return priv->state == ETH_STATE_ACTIVE;
329}
330
331int eth_send(void *packet, int length)
332{
333 struct udevice *current;
334 int ret;
335
336 current = eth_get_dev();
337 if (!current)
338 return -ENODEV;
339
Alexander Graf71511492018-03-15 15:07:09 +0100340 if (!eth_is_active(current))
Simon Glassc6011d22016-01-17 14:52:00 -0700341 return -EINVAL;
342
343 ret = eth_get_ops(current)->send(current, packet, length);
344 if (ret < 0) {
345 /* We cannot completely return the error at present */
346 debug("%s: send() returned error %d\n", __func__, ret);
347 }
348 return ret;
349}
350
351int eth_rx(void)
352{
353 struct udevice *current;
354 uchar *packet;
355 int flags;
356 int ret;
357 int i;
358
359 current = eth_get_dev();
360 if (!current)
361 return -ENODEV;
362
Alexander Graf71511492018-03-15 15:07:09 +0100363 if (!eth_is_active(current))
Simon Glassc6011d22016-01-17 14:52:00 -0700364 return -EINVAL;
365
366 /* Process up to 32 packets at one time */
367 flags = ETH_RECV_CHECK_DEVICE;
368 for (i = 0; i < 32; i++) {
369 ret = eth_get_ops(current)->recv(current, flags, &packet);
370 flags = 0;
371 if (ret > 0)
372 net_process_received_packet(packet, ret);
373 if (ret >= 0 && eth_get_ops(current)->free_pkt)
374 eth_get_ops(current)->free_pkt(current, packet, ret);
375 if (ret <= 0)
376 break;
377 }
378 if (ret == -EAGAIN)
379 ret = 0;
380 if (ret < 0) {
381 /* We cannot completely return the error at present */
382 debug("%s: recv() returned error %d\n", __func__, ret);
383 }
384 return ret;
385}
386
387int eth_initialize(void)
388{
389 int num_devices = 0;
390 struct udevice *dev;
391
392 eth_common_init();
393
394 /*
395 * Devices need to write the hwaddr even if not started so that Linux
396 * will have access to the hwaddr that u-boot stored for the device.
397 * This is accomplished by attempting to probe each device and calling
398 * their write_hwaddr() operation.
399 */
Mario Six865c3872018-04-27 14:52:56 +0200400 uclass_first_device_check(UCLASS_ETH, &dev);
Simon Glassc6011d22016-01-17 14:52:00 -0700401 if (!dev) {
402 printf("No ethernet found.\n");
403 bootstage_error(BOOTSTAGE_ID_NET_ETH_START);
404 } else {
Simon Glass64b723f2017-08-03 12:22:12 -0600405 char *ethprime = env_get("ethprime");
Simon Glassc6011d22016-01-17 14:52:00 -0700406 struct udevice *prime_dev = NULL;
407
408 if (ethprime)
409 prime_dev = eth_get_dev_by_name(ethprime);
410 if (prime_dev) {
411 eth_set_dev(prime_dev);
412 eth_current_changed();
413 } else {
414 eth_set_dev(NULL);
415 }
416
417 bootstage_mark(BOOTSTAGE_ID_NET_ETH_INIT);
418 do {
419 if (num_devices)
420 printf(", ");
421
422 printf("eth%d: %s", dev->seq, dev->name);
423
424 if (ethprime && dev == prime_dev)
425 printf(" [PRIME]");
426
427 eth_write_hwaddr(dev);
428
Mario Six865c3872018-04-27 14:52:56 +0200429 uclass_next_device_check(&dev);
Simon Glassc6011d22016-01-17 14:52:00 -0700430 num_devices++;
431 } while (dev);
432
433 putc('\n');
434 }
435
436 return num_devices;
437}
438
439static int eth_post_bind(struct udevice *dev)
440{
441 if (strchr(dev->name, ' ')) {
442 printf("\nError: eth device name \"%s\" has a space!\n",
443 dev->name);
444 return -EINVAL;
445 }
446
447 return 0;
448}
449
450static int eth_pre_unbind(struct udevice *dev)
451{
452 /* Don't hang onto a pointer that is going away */
453 if (dev == eth_get_uclass_priv()->current)
454 eth_set_dev(NULL);
455
456 return 0;
457}
458
Thierry Reding8fe08532019-05-20 17:59:57 +0200459static bool eth_dev_get_mac_address(struct udevice *dev, u8 mac[ARP_HLEN])
460{
461#if IS_ENABLED(CONFIG_OF_CONTROL)
462 const uint8_t *p;
463
464 p = dev_read_u8_array_ptr(dev, "mac-address", ARP_HLEN);
465 if (!p)
466 p = dev_read_u8_array_ptr(dev, "local-mac-address", ARP_HLEN);
467
468 if (!p)
469 return false;
470
471 memcpy(mac, p, ARP_HLEN);
472
473 return true;
474#else
475 return false;
476#endif
477}
478
Simon Glassc6011d22016-01-17 14:52:00 -0700479static int eth_post_probe(struct udevice *dev)
480{
481 struct eth_device_priv *priv = dev->uclass_priv;
482 struct eth_pdata *pdata = dev->platdata;
oliver@schinagl.nl496904b2016-11-25 16:30:19 +0100483 unsigned char env_enetaddr[ARP_HLEN];
Simon Glassc6011d22016-01-17 14:52:00 -0700484
485#if defined(CONFIG_NEEDS_MANUAL_RELOC)
486 struct eth_ops *ops = eth_get_ops(dev);
487 static int reloc_done;
488
489 if (!reloc_done) {
490 if (ops->start)
491 ops->start += gd->reloc_off;
492 if (ops->send)
493 ops->send += gd->reloc_off;
494 if (ops->recv)
495 ops->recv += gd->reloc_off;
496 if (ops->free_pkt)
497 ops->free_pkt += gd->reloc_off;
498 if (ops->stop)
499 ops->stop += gd->reloc_off;
Simon Glassc6011d22016-01-17 14:52:00 -0700500 if (ops->mcast)
501 ops->mcast += gd->reloc_off;
Simon Glassc6011d22016-01-17 14:52:00 -0700502 if (ops->write_hwaddr)
503 ops->write_hwaddr += gd->reloc_off;
504 if (ops->read_rom_hwaddr)
505 ops->read_rom_hwaddr += gd->reloc_off;
506
507 reloc_done++;
508 }
509#endif
510
511 priv->state = ETH_STATE_INIT;
512
Thierry Reding8fe08532019-05-20 17:59:57 +0200513 /* Check if the device has a valid MAC address in device tree */
514 if (!eth_dev_get_mac_address(dev, pdata->enetaddr) ||
515 !is_valid_ethaddr(pdata->enetaddr)) {
516 /* Check if the device has a MAC address in ROM */
517 if (eth_get_ops(dev)->read_rom_hwaddr)
518 eth_get_ops(dev)->read_rom_hwaddr(dev);
519 }
Simon Glassc6011d22016-01-17 14:52:00 -0700520
Simon Glass399a9ce2017-08-03 12:22:14 -0600521 eth_env_get_enetaddr_by_index("eth", dev->seq, env_enetaddr);
Simon Glassc6011d22016-01-17 14:52:00 -0700522 if (!is_zero_ethaddr(env_enetaddr)) {
523 if (!is_zero_ethaddr(pdata->enetaddr) &&
oliver@schinagl.nl496904b2016-11-25 16:30:19 +0100524 memcmp(pdata->enetaddr, env_enetaddr, ARP_HLEN)) {
Simon Glassc6011d22016-01-17 14:52:00 -0700525 printf("\nWarning: %s MAC addresses don't match:\n",
526 dev->name);
oliver@schinagl.nl54e89f02016-11-25 16:30:23 +0100527 printf("Address in ROM is %pM\n",
Simon Glassc6011d22016-01-17 14:52:00 -0700528 pdata->enetaddr);
529 printf("Address in environment is %pM\n",
530 env_enetaddr);
531 }
532
533 /* Override the ROM MAC address */
oliver@schinagl.nl496904b2016-11-25 16:30:19 +0100534 memcpy(pdata->enetaddr, env_enetaddr, ARP_HLEN);
Simon Glassc6011d22016-01-17 14:52:00 -0700535 } else if (is_valid_ethaddr(pdata->enetaddr)) {
Simon Glass8551d552017-08-03 12:22:11 -0600536 eth_env_set_enetaddr_by_index("eth", dev->seq, pdata->enetaddr);
Simon Glassc6011d22016-01-17 14:52:00 -0700537 printf("\nWarning: %s using MAC address from ROM\n",
538 dev->name);
Siva Durga Prasad Paladugue0b7bc72016-11-02 12:52:13 +0100539 } else if (is_zero_ethaddr(pdata->enetaddr) ||
540 !is_valid_ethaddr(pdata->enetaddr)) {
Simon Glassc6011d22016-01-17 14:52:00 -0700541#ifdef CONFIG_NET_RANDOM_ETHADDR
542 net_random_ethaddr(pdata->enetaddr);
543 printf("\nWarning: %s (eth%d) using random MAC address - %pM\n",
544 dev->name, dev->seq, pdata->enetaddr);
545#else
546 printf("\nError: %s address not set.\n",
547 dev->name);
548 return -EINVAL;
549#endif
550 }
551
Thierry Reding13064872019-05-20 17:59:56 +0200552 eth_write_hwaddr(dev);
553
Simon Glassc6011d22016-01-17 14:52:00 -0700554 return 0;
555}
556
557static int eth_pre_remove(struct udevice *dev)
558{
559 struct eth_pdata *pdata = dev->platdata;
560
561 eth_get_ops(dev)->stop(dev);
562
563 /* clear the MAC address */
oliver@schinagl.nl496904b2016-11-25 16:30:19 +0100564 memset(pdata->enetaddr, 0, ARP_HLEN);
Simon Glassc6011d22016-01-17 14:52:00 -0700565
566 return 0;
567}
568
569UCLASS_DRIVER(eth) = {
570 .name = "eth",
571 .id = UCLASS_ETH,
572 .post_bind = eth_post_bind,
573 .pre_unbind = eth_pre_unbind,
574 .post_probe = eth_post_probe,
575 .pre_remove = eth_pre_remove,
576 .priv_auto_alloc_size = sizeof(struct eth_uclass_priv),
577 .per_device_auto_alloc_size = sizeof(struct eth_device_priv),
578 .flags = DM_UC_FLAG_SEQ_ALIAS,
579};