]>
Commit | Line | Data |
---|---|---|
c609719b | 1 | /* |
05c3e68f | 2 | * (C) Copyright 2001-2015 |
c609719b | 3 | * Wolfgang Denk, DENX Software Engineering, [email protected]. |
05c3e68f | 4 | * Joe Hershberger, National Instruments |
c609719b | 5 | * |
1a459660 | 6 | * SPDX-License-Identifier: GPL-2.0+ |
c609719b WD |
7 | */ |
8 | ||
9 | #include <common.h> | |
10 | #include <command.h> | |
05c3e68f | 11 | #include <dm.h> |
6e0d26c0 | 12 | #include <environment.h> |
c609719b | 13 | #include <net.h> |
d9785c14 | 14 | #include <miiphy.h> |
5f184715 | 15 | #include <phy.h> |
75d9a45c | 16 | #include <asm/errno.h> |
05c3e68f | 17 | #include <dm/device-internal.h> |
6e0d26c0 | 18 | #include <dm/uclass-internal.h> |
c609719b | 19 | |
d2eaec60 JH |
20 | DECLARE_GLOBAL_DATA_PTR; |
21 | ||
3f6e6993 MF |
22 | void eth_parse_enetaddr(const char *addr, uchar *enetaddr) |
23 | { | |
24 | char *end; | |
25 | int i; | |
26 | ||
27 | for (i = 0; i < 6; ++i) { | |
28 | enetaddr[i] = addr ? simple_strtoul(addr, &end, 16) : 0; | |
29 | if (addr) | |
30 | addr = (*end) ? end + 1 : end; | |
31 | } | |
32 | } | |
33 | ||
34 | int eth_getenv_enetaddr(char *name, uchar *enetaddr) | |
35 | { | |
36 | eth_parse_enetaddr(getenv(name), enetaddr); | |
0adb5b76 | 37 | return is_valid_ethaddr(enetaddr); |
3f6e6993 MF |
38 | } |
39 | ||
40 | int eth_setenv_enetaddr(char *name, const uchar *enetaddr) | |
41 | { | |
42 | char buf[20]; | |
43 | ||
44 | sprintf(buf, "%pM", enetaddr); | |
45 | ||
46 | return setenv(name, buf); | |
47 | } | |
86848a74 | 48 | |
7616e785 SG |
49 | int eth_getenv_enetaddr_by_index(const char *base_name, int index, |
50 | uchar *enetaddr) | |
86848a74 MF |
51 | { |
52 | char enetvar[32]; | |
7616e785 | 53 | sprintf(enetvar, index ? "%s%daddr" : "%saddr", base_name, index); |
86848a74 MF |
54 | return eth_getenv_enetaddr(enetvar, enetaddr); |
55 | } | |
3f6e6993 | 56 | |
154177e1 | 57 | static inline int eth_setenv_enetaddr_by_index(const char *base_name, int index, |
c88ef3c1 RH |
58 | uchar *enetaddr) |
59 | { | |
60 | char enetvar[32]; | |
61 | sprintf(enetvar, index ? "%s%daddr" : "%saddr", base_name, index); | |
62 | return eth_setenv_enetaddr(enetvar, enetaddr); | |
63 | } | |
64 | ||
ecee9324 BW |
65 | static int eth_mac_skip(int index) |
66 | { | |
67 | char enetvar[15]; | |
68 | char *skip_state; | |
ff819a3a | 69 | |
ecee9324 | 70 | sprintf(enetvar, index ? "eth%dmacskip" : "ethmacskip", index); |
ff819a3a JH |
71 | skip_state = getenv(enetvar); |
72 | return skip_state != NULL; | |
ecee9324 BW |
73 | } |
74 | ||
84eb1fba JH |
75 | static void eth_current_changed(void); |
76 | ||
3bc42700 SG |
77 | /* |
78 | * CPU and board-specific Ethernet initializations. Aliased function | |
79 | * signals caller to move on | |
80 | */ | |
81 | static int __def_eth_init(bd_t *bis) | |
82 | { | |
83 | return -1; | |
84 | } | |
85 | int cpu_eth_init(bd_t *bis) __attribute__((weak, alias("__def_eth_init"))); | |
86 | int board_eth_init(bd_t *bis) __attribute__((weak, alias("__def_eth_init"))); | |
87 | ||
88 | static void eth_common_init(void) | |
89 | { | |
90 | bootstage_mark(BOOTSTAGE_ID_NET_ETH_START); | |
91 | #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) || defined(CONFIG_PHYLIB) | |
92 | miiphy_init(); | |
93 | #endif | |
94 | ||
95 | #ifdef CONFIG_PHYLIB | |
96 | phy_init(); | |
97 | #endif | |
98 | ||
3bc42700 SG |
99 | /* |
100 | * If board-specific initialization exists, call it. | |
101 | * If not, call a CPU-specific one | |
102 | */ | |
103 | if (board_eth_init != __def_eth_init) { | |
104 | if (board_eth_init(gd->bd) < 0) | |
105 | printf("Board Net Initialization Failed\n"); | |
106 | } else if (cpu_eth_init != __def_eth_init) { | |
107 | if (cpu_eth_init(gd->bd) < 0) | |
108 | printf("CPU Net Initialization Failed\n"); | |
109 | } else { | |
d8f79afa | 110 | #ifndef CONFIG_DM_ETH |
3bc42700 | 111 | printf("Net Initialization Skipped\n"); |
d8f79afa | 112 | #endif |
3bc42700 SG |
113 | } |
114 | } | |
115 | ||
05c3e68f JH |
116 | #ifdef CONFIG_DM_ETH |
117 | /** | |
118 | * struct eth_device_priv - private structure for each Ethernet device | |
119 | * | |
120 | * @state: The state of the Ethernet MAC driver (defined by enum eth_state_t) | |
121 | */ | |
122 | struct eth_device_priv { | |
123 | enum eth_state_t state; | |
124 | }; | |
125 | ||
126 | /** | |
127 | * struct eth_uclass_priv - The structure attached to the uclass itself | |
128 | * | |
129 | * @current: The Ethernet device that the network functions are using | |
130 | */ | |
131 | struct eth_uclass_priv { | |
132 | struct udevice *current; | |
133 | }; | |
134 | ||
60304592 JH |
135 | /* eth_errno - This stores the most recent failure code from DM functions */ |
136 | static int eth_errno; | |
137 | ||
05c3e68f JH |
138 | static struct eth_uclass_priv *eth_get_uclass_priv(void) |
139 | { | |
140 | struct uclass *uc; | |
141 | ||
142 | uclass_get(UCLASS_ETH, &uc); | |
143 | assert(uc); | |
144 | return uc->priv; | |
145 | } | |
146 | ||
147 | static void eth_set_current_to_next(void) | |
148 | { | |
149 | struct eth_uclass_priv *uc_priv; | |
150 | ||
151 | uc_priv = eth_get_uclass_priv(); | |
152 | if (uc_priv->current) | |
153 | uclass_next_device(&uc_priv->current); | |
154 | if (!uc_priv->current) | |
155 | uclass_first_device(UCLASS_ETH, &uc_priv->current); | |
156 | } | |
157 | ||
60304592 JH |
158 | /* |
159 | * Typically this will simply return the active device. | |
160 | * In the case where the most recent active device was unset, this will attempt | |
161 | * to return the first device. If that device doesn't exist or fails to probe, | |
162 | * this function will return NULL. | |
163 | */ | |
05c3e68f JH |
164 | struct udevice *eth_get_dev(void) |
165 | { | |
166 | struct eth_uclass_priv *uc_priv; | |
167 | ||
168 | uc_priv = eth_get_uclass_priv(); | |
169 | if (!uc_priv->current) | |
60304592 | 170 | eth_errno = uclass_first_device(UCLASS_ETH, |
05c3e68f JH |
171 | &uc_priv->current); |
172 | return uc_priv->current; | |
173 | } | |
174 | ||
60304592 JH |
175 | /* |
176 | * Typically this will just store a device pointer. | |
177 | * In case it was not probed, we will attempt to do so. | |
178 | * dev may be NULL to unset the active device. | |
179 | */ | |
05c3e68f JH |
180 | static void eth_set_dev(struct udevice *dev) |
181 | { | |
60304592 JH |
182 | if (dev && !device_active(dev)) |
183 | eth_errno = device_probe(dev); | |
05c3e68f JH |
184 | eth_get_uclass_priv()->current = dev; |
185 | } | |
186 | ||
e58780dc JH |
187 | /* |
188 | * Find the udevice that either has the name passed in as devname or has an | |
189 | * alias named devname. | |
190 | */ | |
191 | struct udevice *eth_get_dev_by_name(const char *devname) | |
192 | { | |
193 | int seq = -1; | |
194 | char *endp = NULL; | |
195 | const char *startp = NULL; | |
196 | struct udevice *it; | |
197 | struct uclass *uc; | |
e408c421 | 198 | int len = strlen("eth"); |
e58780dc JH |
199 | |
200 | /* Must be longer than 3 to be an alias */ | |
e408c421 BM |
201 | if (!strncmp(devname, "eth", len) && strlen(devname) > len) { |
202 | startp = devname + len; | |
e58780dc JH |
203 | seq = simple_strtoul(startp, &endp, 10); |
204 | } | |
205 | ||
206 | uclass_get(UCLASS_ETH, &uc); | |
207 | uclass_foreach_dev(it, uc) { | |
60304592 JH |
208 | /* |
209 | * We need the seq to be valid, so try to probe it. | |
210 | * If the probe fails, the seq will not match since it will be | |
211 | * -1 instead of what we are looking for. | |
212 | * We don't care about errors from probe here. Either they won't | |
213 | * match an alias or it will match a literal name and we'll pick | |
214 | * up the error when we try to probe again in eth_set_dev(). | |
215 | */ | |
e58780dc JH |
216 | device_probe(it); |
217 | /* | |
218 | * Check for the name or the sequence number to match | |
219 | */ | |
220 | if (strcmp(it->name, devname) == 0 || | |
221 | (endp > startp && it->seq == seq)) | |
222 | return it; | |
223 | } | |
224 | ||
225 | return NULL; | |
226 | } | |
227 | ||
05c3e68f JH |
228 | unsigned char *eth_get_ethaddr(void) |
229 | { | |
230 | struct eth_pdata *pdata; | |
231 | ||
232 | if (eth_get_dev()) { | |
233 | pdata = eth_get_dev()->platdata; | |
234 | return pdata->enetaddr; | |
235 | } | |
236 | ||
237 | return NULL; | |
238 | } | |
239 | ||
240 | /* Set active state without calling start on the driver */ | |
241 | int eth_init_state_only(void) | |
242 | { | |
243 | struct udevice *current; | |
244 | struct eth_device_priv *priv; | |
245 | ||
246 | current = eth_get_dev(); | |
247 | if (!current || !device_active(current)) | |
248 | return -EINVAL; | |
249 | ||
250 | priv = current->uclass_priv; | |
251 | priv->state = ETH_STATE_ACTIVE; | |
252 | ||
253 | return 0; | |
254 | } | |
255 | ||
256 | /* Set passive state without calling stop on the driver */ | |
257 | void eth_halt_state_only(void) | |
258 | { | |
259 | struct udevice *current; | |
260 | struct eth_device_priv *priv; | |
261 | ||
262 | current = eth_get_dev(); | |
263 | if (!current || !device_active(current)) | |
264 | return; | |
265 | ||
266 | priv = current->uclass_priv; | |
267 | priv->state = ETH_STATE_PASSIVE; | |
268 | } | |
269 | ||
270 | int eth_get_dev_index(void) | |
271 | { | |
272 | if (eth_get_dev()) | |
273 | return eth_get_dev()->seq; | |
274 | return -1; | |
275 | } | |
276 | ||
f566c994 JH |
277 | static int eth_write_hwaddr(struct udevice *dev) |
278 | { | |
279 | struct eth_pdata *pdata = dev->platdata; | |
280 | int ret = 0; | |
281 | ||
282 | if (!dev || !device_active(dev)) | |
283 | return -EINVAL; | |
284 | ||
285 | /* seq is valid since the device is active */ | |
286 | if (eth_get_ops(dev)->write_hwaddr && !eth_mac_skip(dev->seq)) { | |
287 | if (!is_valid_ethaddr(pdata->enetaddr)) { | |
288 | printf("\nError: %s address %pM illegal value\n", | |
289 | dev->name, pdata->enetaddr); | |
290 | return -EINVAL; | |
291 | } | |
292 | ||
b86f795a SG |
293 | /* |
294 | * Drivers are allowed to decide not to implement this at | |
295 | * run-time. E.g. Some devices may use it and some may not. | |
296 | */ | |
f566c994 | 297 | ret = eth_get_ops(dev)->write_hwaddr(dev); |
b86f795a SG |
298 | if (ret == -ENOSYS) |
299 | ret = 0; | |
f566c994 JH |
300 | if (ret) |
301 | printf("\nWarning: %s failed to set MAC address\n", | |
302 | dev->name); | |
303 | } | |
304 | ||
305 | return ret; | |
306 | } | |
307 | ||
6e0d26c0 JH |
308 | static int on_ethaddr(const char *name, const char *value, enum env_op op, |
309 | int flags) | |
310 | { | |
311 | int index; | |
312 | int retval; | |
313 | struct udevice *dev; | |
314 | ||
315 | /* look for an index after "eth" */ | |
316 | index = simple_strtoul(name + 3, NULL, 10); | |
317 | ||
318 | retval = uclass_find_device_by_seq(UCLASS_ETH, index, false, &dev); | |
319 | if (!retval) { | |
320 | struct eth_pdata *pdata = dev->platdata; | |
321 | switch (op) { | |
322 | case env_op_create: | |
323 | case env_op_overwrite: | |
324 | eth_parse_enetaddr(value, pdata->enetaddr); | |
325 | break; | |
326 | case env_op_delete: | |
327 | memset(pdata->enetaddr, 0, 6); | |
328 | } | |
329 | } | |
330 | ||
331 | return 0; | |
332 | } | |
333 | U_BOOT_ENV_CALLBACK(ethaddr, on_ethaddr); | |
334 | ||
05c3e68f JH |
335 | int eth_init(void) |
336 | { | |
337 | struct udevice *current; | |
338 | struct udevice *old_current; | |
60304592 | 339 | int ret = -ENODEV; |
05c3e68f JH |
340 | |
341 | current = eth_get_dev(); | |
342 | if (!current) { | |
343 | printf("No ethernet found.\n"); | |
344 | return -ENODEV; | |
345 | } | |
346 | ||
347 | old_current = current; | |
348 | do { | |
349 | debug("Trying %s\n", current->name); | |
350 | ||
351 | if (device_active(current)) { | |
60304592 JH |
352 | ret = eth_get_ops(current)->start(current); |
353 | if (ret >= 0) { | |
05c3e68f JH |
354 | struct eth_device_priv *priv = |
355 | current->uclass_priv; | |
356 | ||
357 | priv->state = ETH_STATE_ACTIVE; | |
358 | return 0; | |
359 | } | |
ff819a3a | 360 | } else { |
60304592 | 361 | ret = eth_errno; |
ff819a3a | 362 | } |
60304592 | 363 | |
05c3e68f JH |
364 | debug("FAIL\n"); |
365 | ||
60304592 JH |
366 | /* |
367 | * If ethrotate is enabled, this will change "current", | |
368 | * otherwise we will drop out of this while loop immediately | |
369 | */ | |
05c3e68f | 370 | eth_try_another(0); |
60304592 | 371 | /* This will ensure the new "current" attempted to probe */ |
05c3e68f JH |
372 | current = eth_get_dev(); |
373 | } while (old_current != current); | |
374 | ||
60304592 | 375 | return ret; |
05c3e68f JH |
376 | } |
377 | ||
378 | void eth_halt(void) | |
379 | { | |
380 | struct udevice *current; | |
381 | struct eth_device_priv *priv; | |
382 | ||
383 | current = eth_get_dev(); | |
384 | if (!current || !device_active(current)) | |
385 | return; | |
386 | ||
387 | eth_get_ops(current)->stop(current); | |
388 | priv = current->uclass_priv; | |
389 | priv->state = ETH_STATE_PASSIVE; | |
390 | } | |
391 | ||
392 | int eth_send(void *packet, int length) | |
393 | { | |
394 | struct udevice *current; | |
60304592 | 395 | int ret; |
05c3e68f JH |
396 | |
397 | current = eth_get_dev(); | |
398 | if (!current) | |
399 | return -ENODEV; | |
400 | ||
401 | if (!device_active(current)) | |
402 | return -EINVAL; | |
403 | ||
60304592 JH |
404 | ret = eth_get_ops(current)->send(current, packet, length); |
405 | if (ret < 0) { | |
406 | /* We cannot completely return the error at present */ | |
407 | debug("%s: send() returned error %d\n", __func__, ret); | |
408 | } | |
409 | return ret; | |
05c3e68f JH |
410 | } |
411 | ||
412 | int eth_rx(void) | |
413 | { | |
414 | struct udevice *current; | |
17591405 | 415 | uchar *packet; |
a1ca92ea | 416 | int flags; |
17591405 JH |
417 | int ret; |
418 | int i; | |
05c3e68f JH |
419 | |
420 | current = eth_get_dev(); | |
421 | if (!current) | |
422 | return -ENODEV; | |
423 | ||
424 | if (!device_active(current)) | |
425 | return -EINVAL; | |
426 | ||
17591405 | 427 | /* Process up to 32 packets at one time */ |
a1ca92ea | 428 | flags = ETH_RECV_CHECK_DEVICE; |
17591405 | 429 | for (i = 0; i < 32; i++) { |
a1ca92ea SG |
430 | ret = eth_get_ops(current)->recv(current, flags, &packet); |
431 | flags = 0; | |
17591405 JH |
432 | if (ret > 0) |
433 | net_process_received_packet(packet, ret); | |
63c9729a JH |
434 | if (ret >= 0 && eth_get_ops(current)->free_pkt) |
435 | eth_get_ops(current)->free_pkt(current, packet, ret); | |
436 | if (ret <= 0) | |
17591405 JH |
437 | break; |
438 | } | |
439 | if (ret == -EAGAIN) | |
440 | ret = 0; | |
60304592 JH |
441 | if (ret < 0) { |
442 | /* We cannot completely return the error at present */ | |
443 | debug("%s: recv() returned error %d\n", __func__, ret); | |
444 | } | |
17591405 | 445 | return ret; |
05c3e68f JH |
446 | } |
447 | ||
05c3e68f JH |
448 | int eth_initialize(void) |
449 | { | |
450 | int num_devices = 0; | |
451 | struct udevice *dev; | |
452 | ||
3bc42700 | 453 | eth_common_init(); |
05c3e68f JH |
454 | |
455 | /* | |
456 | * Devices need to write the hwaddr even if not started so that Linux | |
457 | * will have access to the hwaddr that u-boot stored for the device. | |
458 | * This is accomplished by attempting to probe each device and calling | |
459 | * their write_hwaddr() operation. | |
460 | */ | |
461 | uclass_first_device(UCLASS_ETH, &dev); | |
462 | if (!dev) { | |
463 | printf("No ethernet found.\n"); | |
464 | bootstage_error(BOOTSTAGE_ID_NET_ETH_START); | |
465 | } else { | |
6536b9bb JH |
466 | char *ethprime = getenv("ethprime"); |
467 | struct udevice *prime_dev = NULL; | |
468 | ||
469 | if (ethprime) | |
470 | prime_dev = eth_get_dev_by_name(ethprime); | |
471 | if (prime_dev) { | |
472 | eth_set_dev(prime_dev); | |
473 | eth_current_changed(); | |
474 | } else { | |
475 | eth_set_dev(NULL); | |
476 | } | |
477 | ||
05c3e68f JH |
478 | bootstage_mark(BOOTSTAGE_ID_NET_ETH_INIT); |
479 | do { | |
480 | if (num_devices) | |
481 | printf(", "); | |
482 | ||
483 | printf("eth%d: %s", dev->seq, dev->name); | |
484 | ||
6536b9bb JH |
485 | if (ethprime && dev == prime_dev) |
486 | printf(" [PRIME]"); | |
487 | ||
05c3e68f JH |
488 | eth_write_hwaddr(dev); |
489 | ||
490 | uclass_next_device(&dev); | |
491 | num_devices++; | |
492 | } while (dev); | |
493 | ||
494 | putc('\n'); | |
495 | } | |
496 | ||
497 | return num_devices; | |
498 | } | |
499 | ||
500 | static int eth_post_bind(struct udevice *dev) | |
501 | { | |
502 | if (strchr(dev->name, ' ')) { | |
503 | printf("\nError: eth device name \"%s\" has a space!\n", | |
504 | dev->name); | |
505 | return -EINVAL; | |
506 | } | |
507 | ||
508 | return 0; | |
509 | } | |
510 | ||
511 | static int eth_pre_unbind(struct udevice *dev) | |
512 | { | |
513 | /* Don't hang onto a pointer that is going away */ | |
514 | if (dev == eth_get_uclass_priv()->current) | |
515 | eth_set_dev(NULL); | |
516 | ||
517 | return 0; | |
518 | } | |
519 | ||
520 | static int eth_post_probe(struct udevice *dev) | |
521 | { | |
522 | struct eth_device_priv *priv = dev->uclass_priv; | |
523 | struct eth_pdata *pdata = dev->platdata; | |
524 | unsigned char env_enetaddr[6]; | |
525 | ||
526 | priv->state = ETH_STATE_INIT; | |
527 | ||
528 | /* Check if the device has a MAC address in ROM */ | |
529 | if (eth_get_ops(dev)->read_rom_hwaddr) | |
530 | eth_get_ops(dev)->read_rom_hwaddr(dev); | |
531 | ||
532 | eth_getenv_enetaddr_by_index("eth", dev->seq, env_enetaddr); | |
0adb5b76 JH |
533 | if (!is_zero_ethaddr(env_enetaddr)) { |
534 | if (!is_zero_ethaddr(pdata->enetaddr) && | |
05c3e68f JH |
535 | memcmp(pdata->enetaddr, env_enetaddr, 6)) { |
536 | printf("\nWarning: %s MAC addresses don't match:\n", | |
537 | dev->name); | |
538 | printf("Address in SROM is %pM\n", | |
539 | pdata->enetaddr); | |
540 | printf("Address in environment is %pM\n", | |
541 | env_enetaddr); | |
542 | } | |
543 | ||
544 | /* Override the ROM MAC address */ | |
545 | memcpy(pdata->enetaddr, env_enetaddr, 6); | |
0adb5b76 | 546 | } else if (is_valid_ethaddr(pdata->enetaddr)) { |
05c3e68f JH |
547 | eth_setenv_enetaddr_by_index("eth", dev->seq, pdata->enetaddr); |
548 | printf("\nWarning: %s using MAC address from ROM\n", | |
549 | dev->name); | |
0adb5b76 | 550 | } else if (is_zero_ethaddr(pdata->enetaddr)) { |
bef1014b JH |
551 | #ifdef CONFIG_NET_RANDOM_ETHADDR |
552 | net_random_ethaddr(pdata->enetaddr); | |
553 | printf("\nWarning: %s (eth%d) using random MAC address - %pM\n", | |
554 | dev->name, dev->seq, pdata->enetaddr); | |
555 | #else | |
05c3e68f JH |
556 | printf("\nError: %s address not set.\n", |
557 | dev->name); | |
558 | return -EINVAL; | |
bef1014b | 559 | #endif |
05c3e68f JH |
560 | } |
561 | ||
562 | return 0; | |
563 | } | |
564 | ||
565 | static int eth_pre_remove(struct udevice *dev) | |
566 | { | |
567 | eth_get_ops(dev)->stop(dev); | |
568 | ||
569 | return 0; | |
570 | } | |
571 | ||
572 | UCLASS_DRIVER(eth) = { | |
573 | .name = "eth", | |
574 | .id = UCLASS_ETH, | |
575 | .post_bind = eth_post_bind, | |
576 | .pre_unbind = eth_pre_unbind, | |
577 | .post_probe = eth_post_probe, | |
578 | .pre_remove = eth_pre_remove, | |
579 | .priv_auto_alloc_size = sizeof(struct eth_uclass_priv), | |
580 | .per_device_auto_alloc_size = sizeof(struct eth_device_priv), | |
e58780dc | 581 | .flags = DM_UC_FLAG_SEQ_ALIAS, |
05c3e68f JH |
582 | }; |
583 | #endif | |
584 | ||
585 | #ifndef CONFIG_DM_ETH | |
dd35479a | 586 | |
f85b6071 | 587 | #ifdef CONFIG_API |
f85b6071 RJ |
588 | static struct { |
589 | uchar data[PKTSIZE]; | |
590 | int length; | |
591 | } eth_rcv_bufs[PKTBUFSRX]; | |
592 | ||
66c7385a | 593 | static unsigned int eth_rcv_current, eth_rcv_last; |
f85b6071 RJ |
594 | #endif |
595 | ||
f8be7d65 JH |
596 | static struct eth_device *eth_devices; |
597 | struct eth_device *eth_current; | |
c609719b | 598 | |
84eb1fba JH |
599 | static void eth_set_current_to_next(void) |
600 | { | |
601 | eth_current = eth_current->next; | |
602 | } | |
603 | ||
e58780dc JH |
604 | static void eth_set_dev(struct eth_device *dev) |
605 | { | |
606 | eth_current = dev; | |
607 | } | |
608 | ||
d7fb9bcf | 609 | struct eth_device *eth_get_dev_by_name(const char *devname) |
63ff004c MB |
610 | { |
611 | struct eth_device *dev, *target_dev; | |
612 | ||
7e7f903f HR |
613 | BUG_ON(devname == NULL); |
614 | ||
63ff004c MB |
615 | if (!eth_devices) |
616 | return NULL; | |
617 | ||
618 | dev = eth_devices; | |
619 | target_dev = NULL; | |
620 | do { | |
621 | if (strcmp(devname, dev->name) == 0) { | |
622 | target_dev = dev; | |
623 | break; | |
624 | } | |
625 | dev = dev->next; | |
626 | } while (dev != eth_devices); | |
627 | ||
628 | return target_dev; | |
629 | } | |
630 | ||
9e56986a AF |
631 | struct eth_device *eth_get_dev_by_index(int index) |
632 | { | |
633 | struct eth_device *dev, *target_dev; | |
9e56986a AF |
634 | |
635 | if (!eth_devices) | |
636 | return NULL; | |
637 | ||
638 | dev = eth_devices; | |
639 | target_dev = NULL; | |
640 | do { | |
fea7dcae | 641 | if (dev->index == index) { |
9e56986a AF |
642 | target_dev = dev; |
643 | break; | |
644 | } | |
645 | dev = dev->next; | |
9e56986a AF |
646 | } while (dev != eth_devices); |
647 | ||
648 | return target_dev; | |
649 | } | |
650 | ||
66c7385a | 651 | int eth_get_dev_index(void) |
c609719b | 652 | { |
66c7385a | 653 | if (!eth_current) |
fea7dcae | 654 | return -1; |
c609719b | 655 | |
fea7dcae | 656 | return eth_current->index; |
c609719b WD |
657 | } |
658 | ||
6e0d26c0 JH |
659 | static int on_ethaddr(const char *name, const char *value, enum env_op op, |
660 | int flags) | |
661 | { | |
662 | int index; | |
663 | struct eth_device *dev; | |
664 | ||
665 | if (!eth_devices) | |
666 | return 0; | |
667 | ||
668 | /* look for an index after "eth" */ | |
669 | index = simple_strtoul(name + 3, NULL, 10); | |
670 | ||
671 | dev = eth_devices; | |
672 | do { | |
673 | if (dev->index == index) { | |
674 | switch (op) { | |
675 | case env_op_create: | |
676 | case env_op_overwrite: | |
677 | eth_parse_enetaddr(value, dev->enetaddr); | |
678 | break; | |
679 | case env_op_delete: | |
680 | memset(dev->enetaddr, 0, 6); | |
681 | } | |
682 | } | |
683 | } while (dev != eth_devices); | |
684 | ||
685 | return 0; | |
686 | } | |
687 | U_BOOT_ENV_CALLBACK(ethaddr, on_ethaddr); | |
688 | ||
7616e785 SG |
689 | int eth_write_hwaddr(struct eth_device *dev, const char *base_name, |
690 | int eth_number) | |
691 | { | |
692 | unsigned char env_enetaddr[6]; | |
693 | int ret = 0; | |
694 | ||
69376644 | 695 | eth_getenv_enetaddr_by_index(base_name, eth_number, env_enetaddr); |
7616e785 | 696 | |
0adb5b76 JH |
697 | if (!is_zero_ethaddr(env_enetaddr)) { |
698 | if (!is_zero_ethaddr(dev->enetaddr) && | |
4c7c65af | 699 | memcmp(dev->enetaddr, env_enetaddr, 6)) { |
7616e785 | 700 | printf("\nWarning: %s MAC addresses don't match:\n", |
ff819a3a | 701 | dev->name); |
7616e785 | 702 | printf("Address in SROM is %pM\n", |
ff819a3a | 703 | dev->enetaddr); |
7616e785 | 704 | printf("Address in environment is %pM\n", |
ff819a3a | 705 | env_enetaddr); |
7616e785 SG |
706 | } |
707 | ||
708 | memcpy(dev->enetaddr, env_enetaddr, 6); | |
0adb5b76 | 709 | } else if (is_valid_ethaddr(dev->enetaddr)) { |
c88ef3c1 RH |
710 | eth_setenv_enetaddr_by_index(base_name, eth_number, |
711 | dev->enetaddr); | |
712 | printf("\nWarning: %s using MAC address from net device\n", | |
ff819a3a | 713 | dev->name); |
0adb5b76 | 714 | } else if (is_zero_ethaddr(dev->enetaddr)) { |
bef1014b JH |
715 | #ifdef CONFIG_NET_RANDOM_ETHADDR |
716 | net_random_ethaddr(dev->enetaddr); | |
717 | printf("\nWarning: %s (eth%d) using random MAC address - %pM\n", | |
718 | dev->name, eth_number, dev->enetaddr); | |
719 | #else | |
75d9a45c PM |
720 | printf("\nError: %s address not set.\n", |
721 | dev->name); | |
722 | return -EINVAL; | |
bef1014b | 723 | #endif |
7616e785 SG |
724 | } |
725 | ||
75d9a45c | 726 | if (dev->write_hwaddr && !eth_mac_skip(eth_number)) { |
0adb5b76 | 727 | if (!is_valid_ethaddr(dev->enetaddr)) { |
75d9a45c | 728 | printf("\nError: %s address %pM illegal value\n", |
ff819a3a | 729 | dev->name, dev->enetaddr); |
75d9a45c PM |
730 | return -EINVAL; |
731 | } | |
460f949f | 732 | |
7616e785 | 733 | ret = dev->write_hwaddr(dev); |
75d9a45c | 734 | if (ret) |
ff819a3a JH |
735 | printf("\nWarning: %s failed to set MAC address\n", |
736 | dev->name); | |
460f949f | 737 | } |
7616e785 SG |
738 | |
739 | return ret; | |
740 | } | |
741 | ||
89d48367 SG |
742 | int eth_register(struct eth_device *dev) |
743 | { | |
744 | struct eth_device *d; | |
66c7385a | 745 | static int index; |
58c583b6 | 746 | |
f6add132 | 747 | assert(strlen(dev->name) < sizeof(dev->name)); |
58c583b6 | 748 | |
89d48367 | 749 | if (!eth_devices) { |
ff819a3a JH |
750 | eth_devices = dev; |
751 | eth_current = dev; | |
89d48367 | 752 | eth_current_changed(); |
c609719b | 753 | } else { |
66c7385a | 754 | for (d = eth_devices; d->next != eth_devices; d = d->next) |
aba4b69d | 755 | ; |
c609719b WD |
756 | d->next = dev; |
757 | } | |
758 | ||
759 | dev->state = ETH_STATE_INIT; | |
760 | dev->next = eth_devices; | |
fea7dcae | 761 | dev->index = index++; |
c609719b WD |
762 | |
763 | return 0; | |
764 | } | |
765 | ||
e7e982d6 VP |
766 | int eth_unregister(struct eth_device *dev) |
767 | { | |
768 | struct eth_device *cur; | |
769 | ||
770 | /* No device */ | |
771 | if (!eth_devices) | |
05324a48 | 772 | return -ENODEV; |
e7e982d6 VP |
773 | |
774 | for (cur = eth_devices; cur->next != eth_devices && cur->next != dev; | |
775 | cur = cur->next) | |
776 | ; | |
777 | ||
778 | /* Device not found */ | |
779 | if (cur->next != dev) | |
05324a48 | 780 | return -ENODEV; |
e7e982d6 VP |
781 | |
782 | cur->next = dev->next; | |
783 | ||
784 | if (eth_devices == dev) | |
785 | eth_devices = dev->next == eth_devices ? NULL : dev->next; | |
786 | ||
787 | if (eth_current == dev) { | |
788 | eth_current = eth_devices; | |
789 | eth_current_changed(); | |
790 | } | |
791 | ||
792 | return 0; | |
793 | } | |
794 | ||
d2eaec60 | 795 | int eth_initialize(void) |
c609719b | 796 | { |
fea7dcae | 797 | int num_devices = 0; |
3bc42700 | 798 | |
c609719b WD |
799 | eth_devices = NULL; |
800 | eth_current = NULL; | |
3bc42700 | 801 | eth_common_init(); |
d9785c14 | 802 | |
c609719b | 803 | if (!eth_devices) { |
66c7385a | 804 | puts("No ethernet found.\n"); |
770605e4 | 805 | bootstage_error(BOOTSTAGE_ID_NET_ETH_START); |
c609719b WD |
806 | } else { |
807 | struct eth_device *dev = eth_devices; | |
66c7385a | 808 | char *ethprime = getenv("ethprime"); |
c609719b | 809 | |
770605e4 | 810 | bootstage_mark(BOOTSTAGE_ID_NET_ETH_INIT); |
c609719b | 811 | do { |
fea7dcae | 812 | if (dev->index) |
66c7385a | 813 | puts(", "); |
c609719b WD |
814 | |
815 | printf("%s", dev->name); | |
816 | ||
66c7385a | 817 | if (ethprime && strcmp(dev->name, ethprime) == 0) { |
c609719b | 818 | eth_current = dev; |
66c7385a | 819 | puts(" [PRIME]"); |
c609719b WD |
820 | } |
821 | ||
1384f3bb | 822 | if (strchr(dev->name, ' ')) |
66c7385a JH |
823 | puts("\nWarning: eth device name has a space!" |
824 | "\n"); | |
1384f3bb | 825 | |
75d9a45c | 826 | eth_write_hwaddr(dev, "eth", dev->index); |
c609719b | 827 | |
c609719b | 828 | dev = dev->next; |
fea7dcae | 829 | num_devices++; |
66c7385a | 830 | } while (dev != eth_devices); |
c609719b | 831 | |
89d48367 | 832 | eth_current_changed(); |
66c7385a | 833 | putc('\n'); |
c609719b WD |
834 | } |
835 | ||
fea7dcae | 836 | return num_devices; |
c609719b WD |
837 | } |
838 | ||
53a5c424 DU |
839 | #ifdef CONFIG_MCAST_TFTP |
840 | /* Multicast. | |
841 | * mcast_addr: multicast ipaddr from which multicast Mac is made | |
85eb5caf | 842 | * join: 1=join, 0=leave. |
53a5c424 | 843 | */ |
049a95a7 | 844 | int eth_mcast_join(struct in_addr mcast_ip, int join) |
53a5c424 | 845 | { |
66c7385a | 846 | u8 mcast_mac[6]; |
85eb5caf | 847 | if (!eth_current || !eth_current->mcast) |
53a5c424 | 848 | return -1; |
049a95a7 JH |
849 | mcast_mac[5] = htonl(mcast_ip.s_addr) & 0xff; |
850 | mcast_mac[4] = (htonl(mcast_ip.s_addr)>>8) & 0xff; | |
851 | mcast_mac[3] = (htonl(mcast_ip.s_addr)>>16) & 0x7f; | |
53a5c424 DU |
852 | mcast_mac[2] = 0x5e; |
853 | mcast_mac[1] = 0x0; | |
854 | mcast_mac[0] = 0x1; | |
855 | return eth_current->mcast(eth_current, mcast_mac, join); | |
856 | } | |
857 | ||
85eb5caf WD |
858 | /* the 'way' for ethernet-CRC-32. Spliced in from Linux lib/crc32.c |
859 | * and this is the ethernet-crc method needed for TSEC -- and perhaps | |
53a5c424 DU |
860 | * some other adapter -- hash tables |
861 | */ | |
862 | #define CRCPOLY_LE 0xedb88320 | |
66c7385a | 863 | u32 ether_crc(size_t len, unsigned char const *p) |
53a5c424 DU |
864 | { |
865 | int i; | |
866 | u32 crc; | |
867 | crc = ~0; | |
868 | while (len--) { | |
869 | crc ^= *p++; | |
870 | for (i = 0; i < 8; i++) | |
871 | crc = (crc >> 1) ^ ((crc & 1) ? CRCPOLY_LE : 0); | |
872 | } | |
873 | /* an reverse the bits, cuz of way they arrive -- last-first */ | |
874 | crc = (crc >> 16) | (crc << 16); | |
875 | crc = (crc >> 8 & 0x00ff00ff) | (crc << 8 & 0xff00ff00); | |
876 | crc = (crc >> 4 & 0x0f0f0f0f) | (crc << 4 & 0xf0f0f0f0); | |
877 | crc = (crc >> 2 & 0x33333333) | (crc << 2 & 0xcccccccc); | |
878 | crc = (crc >> 1 & 0x55555555) | (crc << 1 & 0xaaaaaaaa); | |
879 | return crc; | |
880 | } | |
881 | ||
882 | #endif | |
883 | ||
c609719b | 884 | |
d2eaec60 | 885 | int eth_init(void) |
c609719b | 886 | { |
6e0d26c0 | 887 | struct eth_device *old_current; |
c609719b | 888 | |
6bc11388 | 889 | if (!eth_current) { |
66c7385a | 890 | puts("No ethernet found.\n"); |
05324a48 | 891 | return -ENODEV; |
6bc11388 | 892 | } |
c609719b WD |
893 | |
894 | old_current = eth_current; | |
895 | do { | |
0ebf04c6 | 896 | debug("Trying %s\n", eth_current->name); |
c609719b | 897 | |
d2eaec60 | 898 | if (eth_current->init(eth_current, gd->bd) >= 0) { |
c609719b WD |
899 | eth_current->state = ETH_STATE_ACTIVE; |
900 | ||
505be87a | 901 | return 0; |
c609719b | 902 | } |
0ebf04c6 | 903 | debug("FAIL\n"); |
c609719b WD |
904 | |
905 | eth_try_another(0); | |
906 | } while (old_current != eth_current); | |
907 | ||
05324a48 | 908 | return -ETIMEDOUT; |
c609719b WD |
909 | } |
910 | ||
911 | void eth_halt(void) | |
912 | { | |
913 | if (!eth_current) | |
914 | return; | |
915 | ||
916 | eth_current->halt(eth_current); | |
917 | ||
918 | eth_current->state = ETH_STATE_PASSIVE; | |
919 | } | |
920 | ||
db288a96 | 921 | int eth_send(void *packet, int length) |
c609719b WD |
922 | { |
923 | if (!eth_current) | |
05324a48 | 924 | return -ENODEV; |
c609719b WD |
925 | |
926 | return eth_current->send(eth_current, packet, length); | |
927 | } | |
928 | ||
929 | int eth_rx(void) | |
930 | { | |
931 | if (!eth_current) | |
05324a48 | 932 | return -ENODEV; |
c609719b WD |
933 | |
934 | return eth_current->recv(eth_current); | |
935 | } | |
05c3e68f | 936 | #endif /* ifndef CONFIG_DM_ETH */ |
c609719b | 937 | |
f85b6071 | 938 | #ifdef CONFIG_API |
db288a96 | 939 | static void eth_save_packet(void *packet, int length) |
f85b6071 | 940 | { |
db288a96 | 941 | char *p = packet; |
f85b6071 RJ |
942 | int i; |
943 | ||
944 | if ((eth_rcv_last+1) % PKTBUFSRX == eth_rcv_current) | |
945 | return; | |
946 | ||
947 | if (PKTSIZE < length) | |
948 | return; | |
949 | ||
950 | for (i = 0; i < length; i++) | |
951 | eth_rcv_bufs[eth_rcv_last].data[i] = p[i]; | |
952 | ||
953 | eth_rcv_bufs[eth_rcv_last].length = length; | |
954 | eth_rcv_last = (eth_rcv_last + 1) % PKTBUFSRX; | |
955 | } | |
956 | ||
db288a96 | 957 | int eth_receive(void *packet, int length) |
f85b6071 | 958 | { |
db288a96 | 959 | char *p = packet; |
f85b6071 RJ |
960 | void *pp = push_packet; |
961 | int i; | |
962 | ||
963 | if (eth_rcv_current == eth_rcv_last) { | |
964 | push_packet = eth_save_packet; | |
965 | eth_rx(); | |
966 | push_packet = pp; | |
967 | ||
968 | if (eth_rcv_current == eth_rcv_last) | |
969 | return -1; | |
970 | } | |
971 | ||
46c07bcf | 972 | length = min(eth_rcv_bufs[eth_rcv_current].length, length); |
f85b6071 RJ |
973 | |
974 | for (i = 0; i < length; i++) | |
975 | p[i] = eth_rcv_bufs[eth_rcv_current].data[i]; | |
976 | ||
977 | eth_rcv_current = (eth_rcv_current + 1) % PKTBUFSRX; | |
978 | return length; | |
979 | } | |
980 | #endif /* CONFIG_API */ | |
981 | ||
84eb1fba JH |
982 | static void eth_current_changed(void) |
983 | { | |
984 | char *act = getenv("ethact"); | |
985 | /* update current ethernet name */ | |
986 | if (eth_get_dev()) { | |
987 | if (act == NULL || strcmp(act, eth_get_name()) != 0) | |
988 | setenv("ethact", eth_get_name()); | |
989 | } | |
990 | /* | |
991 | * remove the variable completely if there is no active | |
992 | * interface | |
993 | */ | |
994 | else if (act != NULL) | |
995 | setenv("ethact", NULL); | |
996 | } | |
997 | ||
c609719b WD |
998 | void eth_try_another(int first_restart) |
999 | { | |
05c3e68f | 1000 | static void *first_failed; |
c650e1be | 1001 | char *ethrotate; |
e1692577 MF |
1002 | |
1003 | /* | |
1004 | * Do not rotate between network interfaces when | |
1005 | * 'ethrotate' variable is set to 'no'. | |
1006 | */ | |
66c7385a JH |
1007 | ethrotate = getenv("ethrotate"); |
1008 | if ((ethrotate != NULL) && (strcmp(ethrotate, "no") == 0)) | |
e1692577 | 1009 | return; |
c609719b | 1010 | |
84eb1fba | 1011 | if (!eth_get_dev()) |
c609719b WD |
1012 | return; |
1013 | ||
66c7385a | 1014 | if (first_restart) |
84eb1fba | 1015 | first_failed = eth_get_dev(); |
c609719b | 1016 | |
84eb1fba | 1017 | eth_set_current_to_next(); |
c609719b | 1018 | |
89d48367 | 1019 | eth_current_changed(); |
a3d991bd | 1020 | |
84eb1fba | 1021 | if (first_failed == eth_get_dev()) |
bc0571fc | 1022 | net_restart_wrap = 1; |
c609719b WD |
1023 | } |
1024 | ||
a3d991bd WD |
1025 | void eth_set_current(void) |
1026 | { | |
66c7385a JH |
1027 | static char *act; |
1028 | static int env_changed_id; | |
2f70c49e | 1029 | int env_id; |
a3d991bd | 1030 | |
2f70c49e HS |
1031 | env_id = get_env_id(); |
1032 | if ((act == NULL) || (env_changed_id != env_id)) { | |
1033 | act = getenv("ethact"); | |
1034 | env_changed_id = env_id; | |
1035 | } | |
6536b9bb JH |
1036 | |
1037 | if (act == NULL) { | |
1038 | char *ethprime = getenv("ethprime"); | |
1039 | void *dev = NULL; | |
1040 | ||
1041 | if (ethprime) | |
1042 | dev = eth_get_dev_by_name(ethprime); | |
1043 | if (dev) | |
1044 | eth_set_dev(dev); | |
1045 | else | |
1046 | eth_set_dev(NULL); | |
1047 | } else { | |
e58780dc | 1048 | eth_set_dev(eth_get_dev_by_name(act)); |
6536b9bb | 1049 | } |
a3d991bd | 1050 | |
89d48367 | 1051 | eth_current_changed(); |
a3d991bd | 1052 | } |
a3d991bd | 1053 | |
84eb1fba | 1054 | const char *eth_get_name(void) |
5bb226e8 | 1055 | { |
84eb1fba | 1056 | return eth_get_dev() ? eth_get_dev()->name : "unknown"; |
5bb226e8 | 1057 | } |