blob: 72fed698916f2303121a9c1d69ad7592b49ef8c3 [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
wdenk1ebf41e2004-01-02 14:00:00 +00002 * (C) Copyright 2001-2004
wdenkc6097192002-11-03 00:24:07 +00003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24#include <common.h>
25#include <command.h>
26#include <net.h>
Marian Balakowiczcbdd1c82005-11-30 18:06:04 +010027#include <miiphy.h>
wdenkc6097192002-11-03 00:24:07 +000028
Jon Loeliger54f35c22007-07-09 17:45:14 -050029#if defined(CONFIG_CMD_NET) && defined(CONFIG_NET_MULTI)
wdenkc6097192002-11-03 00:24:07 +000030
Ben Warrend448a492008-06-23 22:57:27 -070031/*
32 * CPU and board-specific Ethernet initializations. Aliased function
33 * signals caller to move on
34 */
35static int __def_eth_init(bd_t *bis)
36{
37 return -1;
38}
39int cpu_eth_init(bd_t *bis) __attribute((weak, alias("__def_eth_init")));
40int board_eth_init(bd_t *bis) __attribute((weak, alias("__def_eth_init")));
41
wdenkc6097192002-11-03 00:24:07 +000042extern int fec_initialize(bd_t*);
wdenk337f5652004-10-28 00:09:35 +000043extern int mpc8220_fec_initialize(bd_t*);
wdenk5da7f2f2004-01-03 00:43:19 +000044extern int mv6436x_eth_initialize(bd_t *);
45extern int mv6446x_eth_initialize(bd_t *);
wdenk5da7f2f2004-01-03 00:43:19 +000046extern int ppc_4xx_eth_initialize(bd_t *);
wdenk5da7f2f2004-01-03 00:43:19 +000047extern int scc_initialize(bd_t*);
Dave Liue732e9c2006-11-03 12:11:15 -060048extern int uec_initialize(int);
wdenkc6097192002-11-03 00:24:07 +000049
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +010050#ifdef CONFIG_API
51extern void (*push_packet)(volatile void *, int);
52
53static struct {
54 uchar data[PKTSIZE];
55 int length;
56} eth_rcv_bufs[PKTBUFSRX];
57
58static unsigned int eth_rcv_current = 0, eth_rcv_last = 0;
59#endif
60
wdenkc6097192002-11-03 00:24:07 +000061static struct eth_device *eth_devices, *eth_current;
62
63struct eth_device *eth_get_dev(void)
64{
65 return eth_current;
66}
67
Marian Balakowiczaab8c492005-10-28 22:30:33 +020068struct eth_device *eth_get_dev_by_name(char *devname)
69{
70 struct eth_device *dev, *target_dev;
71
72 if (!eth_devices)
73 return NULL;
74
75 dev = eth_devices;
76 target_dev = NULL;
77 do {
78 if (strcmp(devname, dev->name) == 0) {
79 target_dev = dev;
80 break;
81 }
82 dev = dev->next;
83 } while (dev != eth_devices);
84
85 return target_dev;
86}
87
wdenkc6097192002-11-03 00:24:07 +000088int eth_get_dev_index (void)
89{
90 struct eth_device *dev;
91 int num = 0;
92
93 if (!eth_devices) {
94 return (-1);
95 }
96
97 for (dev = eth_devices; dev; dev = dev->next) {
98 if (dev == eth_current)
99 break;
100 ++num;
101 }
102
103 if (dev) {
104 return (num);
105 }
106
107 return (0);
108}
109
110int eth_register(struct eth_device* dev)
111{
112 struct eth_device *d;
113
114 if (!eth_devices) {
115 eth_current = eth_devices = dev;
wdenk145d2c12004-04-15 21:48:45 +0000116#ifdef CONFIG_NET_MULTI
117 /* update current ethernet name */
118 {
119 char *act = getenv("ethact");
120 if (act == NULL || strcmp(act, eth_current->name) != 0)
121 setenv("ethact", eth_current->name);
122 }
123#endif
wdenkc6097192002-11-03 00:24:07 +0000124 } else {
125 for (d=eth_devices; d->next!=eth_devices; d=d->next);
126 d->next = dev;
127 }
128
129 dev->state = ETH_STATE_INIT;
130 dev->next = eth_devices;
131
132 return 0;
133}
134
135int eth_initialize(bd_t *bis)
136{
Shinya Kuribayashidb7101e2007-11-19 20:27:04 +0900137 char enetvar[32];
138 unsigned char env_enetaddr[6];
wdenkc6097192002-11-03 00:24:07 +0000139 int i, eth_number = 0;
140 char *tmp, *end;
141
142 eth_devices = NULL;
143 eth_current = NULL;
144
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200145 show_boot_progress (64);
Jon Loeliger54f35c22007-07-09 17:45:14 -0500146#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Marian Balakowiczcbdd1c82005-11-30 18:06:04 +0100147 miiphy_init();
148#endif
Ben Warrend448a492008-06-23 22:57:27 -0700149 /* Try board-specific initialization first. If it fails or isn't
150 * present, try the cpu-specific initialization */
151 if (board_eth_init(bis) < 0)
152 cpu_eth_init(bis);
Marian Balakowiczcbdd1c82005-11-30 18:06:04 +0100153
Stefan Roese45993ea2006-11-29 15:42:37 +0100154#if defined(CONFIG_DB64360) || defined(CONFIG_CPCI750)
wdenk5da7f2f2004-01-03 00:43:19 +0000155 mv6436x_eth_initialize(bis);
156#endif
Stefan Roese45993ea2006-11-29 15:42:37 +0100157#if defined(CONFIG_DB64460) || defined(CONFIG_P3Mx)
wdenk5da7f2f2004-01-03 00:43:19 +0000158 mv6446x_eth_initialize(bis);
159#endif
Wolfgang Denk56811f62005-10-09 01:04:33 +0200160#if defined(CONFIG_4xx) && !defined(CONFIG_IOP480) && !defined(CONFIG_AP1000)
wdenk57b2d802003-06-27 21:31:46 +0000161 ppc_4xx_eth_initialize(bis);
wdenk77934442003-06-05 19:37:36 +0000162#endif
wdenk63a10be2004-05-08 20:33:20 +0000163#ifdef SCC_ENET
164 scc_initialize(bis);
165#endif
wdenk5c71a7a2005-05-16 15:23:22 +0000166#if defined(CONFIG_MPC8220_FEC)
wdenk337f5652004-10-28 00:09:35 +0000167 mpc8220_fec_initialize(bis);
168#endif
Dave Liue732e9c2006-11-03 12:11:15 -0600169#if defined(CONFIG_UEC_ETH1)
170 uec_initialize(0);
171#endif
172#if defined(CONFIG_UEC_ETH2)
173 uec_initialize(1);
174#endif
Joakim Tjernlund4e483202007-12-06 16:43:40 +0100175#if defined(CONFIG_UEC_ETH3)
176 uec_initialize(2);
177#endif
David Saadaf3978832008-01-15 10:40:24 +0200178#if defined(CONFIG_UEC_ETH4)
179 uec_initialize(3);
180#endif
richardretanubune5167f12008-09-29 18:28:23 -0400181#if defined(CONFIG_UEC_ETH5)
182 uec_initialize(4);
183#endif
184#if defined(CONFIG_UEC_ETH6)
185 uec_initialize(5);
186#endif
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500187
Stefan Roese09554022005-11-30 13:06:40 +0100188#if defined(FEC_ENET) || defined(CONFIG_ETHER_ON_FCC)
189 fec_initialize(bis);
190#endif
wdenkc6097192002-11-03 00:24:07 +0000191 if (!eth_devices) {
192 puts ("No ethernet found.\n");
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200193 show_boot_progress (-64);
wdenkc6097192002-11-03 00:24:07 +0000194 } else {
195 struct eth_device *dev = eth_devices;
196 char *ethprime = getenv ("ethprime");
197
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200198 show_boot_progress (65);
wdenkc6097192002-11-03 00:24:07 +0000199 do {
200 if (eth_number)
201 puts (", ");
202
203 printf("%s", dev->name);
204
205 if (ethprime && strcmp (dev->name, ethprime) == 0) {
206 eth_current = dev;
207 puts (" [PRIME]");
208 }
209
210 sprintf(enetvar, eth_number ? "eth%daddr" : "ethaddr", eth_number);
211 tmp = getenv (enetvar);
212
213 for (i=0; i<6; i++) {
214 env_enetaddr[i] = tmp ? simple_strtoul(tmp, &end, 16) : 0;
215 if (tmp)
216 tmp = (*end) ? end+1 : end;
217 }
218
219 if (memcmp(env_enetaddr, "\0\0\0\0\0\0", 6)) {
220 if (memcmp(dev->enetaddr, "\0\0\0\0\0\0", 6) &&
221 memcmp(dev->enetaddr, env_enetaddr, 6))
222 {
wdenk63a10be2004-05-08 20:33:20 +0000223 printf ("\nWarning: %s MAC addresses don't match:\n",
224 dev->name);
225 printf ("Address in SROM is "
wdenkc6097192002-11-03 00:24:07 +0000226 "%02X:%02X:%02X:%02X:%02X:%02X\n",
227 dev->enetaddr[0], dev->enetaddr[1],
228 dev->enetaddr[2], dev->enetaddr[3],
229 dev->enetaddr[4], dev->enetaddr[5]);
wdenk63a10be2004-05-08 20:33:20 +0000230 printf ("Address in environment is "
wdenkc6097192002-11-03 00:24:07 +0000231 "%02X:%02X:%02X:%02X:%02X:%02X\n",
232 env_enetaddr[0], env_enetaddr[1],
233 env_enetaddr[2], env_enetaddr[3],
234 env_enetaddr[4], env_enetaddr[5]);
235 }
236
237 memcpy(dev->enetaddr, env_enetaddr, 6);
238 }
239
240 eth_number++;
241 dev = dev->next;
242 } while(dev != eth_devices);
243
wdenk145d2c12004-04-15 21:48:45 +0000244#ifdef CONFIG_NET_MULTI
245 /* update current ethernet name */
246 if (eth_current) {
247 char *act = getenv("ethact");
248 if (act == NULL || strcmp(act, eth_current->name) != 0)
249 setenv("ethact", eth_current->name);
250 } else
251 setenv("ethact", NULL);
252#endif
253
wdenkc6097192002-11-03 00:24:07 +0000254 putc ('\n');
255 }
256
257 return eth_number;
258}
259
260void eth_set_enetaddr(int num, char *addr) {
261 struct eth_device *dev;
262 unsigned char enetaddr[6];
263 char *end;
264 int i;
265
wdenk1ebf41e2004-01-02 14:00:00 +0000266 debug ("eth_set_enetaddr(num=%d, addr=%s)\n", num, addr);
267
wdenkc6097192002-11-03 00:24:07 +0000268 if (!eth_devices)
269 return;
270
271 for (i=0; i<6; i++) {
272 enetaddr[i] = addr ? simple_strtoul(addr, &end, 16) : 0;
273 if (addr)
274 addr = (*end) ? end+1 : end;
275 }
276
277 dev = eth_devices;
278 while(num-- > 0) {
279 dev = dev->next;
280
281 if (dev == eth_devices)
282 return;
283 }
284
wdenk1ebf41e2004-01-02 14:00:00 +0000285 debug ( "Setting new HW address on %s\n"
286 "New Address is %02X:%02X:%02X:%02X:%02X:%02X\n",
287 dev->name,
Wolfgang Denkb6ea6302005-09-25 17:05:57 +0200288 enetaddr[0], enetaddr[1],
289 enetaddr[2], enetaddr[3],
290 enetaddr[4], enetaddr[5]);
wdenkc6097192002-11-03 00:24:07 +0000291
292 memcpy(dev->enetaddr, enetaddr, 6);
293}
David Updegraff7280da72007-06-11 10:41:07 -0500294#ifdef CONFIG_MCAST_TFTP
295/* Multicast.
296 * mcast_addr: multicast ipaddr from which multicast Mac is made
Wolfgang Denk627f5c32007-08-14 09:47:27 +0200297 * join: 1=join, 0=leave.
David Updegraff7280da72007-06-11 10:41:07 -0500298 */
299int eth_mcast_join( IPaddr_t mcast_ip, u8 join)
300{
301 u8 mcast_mac[6];
Wolfgang Denk627f5c32007-08-14 09:47:27 +0200302 if (!eth_current || !eth_current->mcast)
David Updegraff7280da72007-06-11 10:41:07 -0500303 return -1;
304 mcast_mac[5] = htonl(mcast_ip) & 0xff;
305 mcast_mac[4] = (htonl(mcast_ip)>>8) & 0xff;
306 mcast_mac[3] = (htonl(mcast_ip)>>16) & 0x7f;
307 mcast_mac[2] = 0x5e;
308 mcast_mac[1] = 0x0;
309 mcast_mac[0] = 0x1;
310 return eth_current->mcast(eth_current, mcast_mac, join);
311}
312
Wolfgang Denk627f5c32007-08-14 09:47:27 +0200313/* the 'way' for ethernet-CRC-32. Spliced in from Linux lib/crc32.c
314 * and this is the ethernet-crc method needed for TSEC -- and perhaps
David Updegraff7280da72007-06-11 10:41:07 -0500315 * some other adapter -- hash tables
316 */
317#define CRCPOLY_LE 0xedb88320
318u32 ether_crc (size_t len, unsigned char const *p)
319{
320 int i;
321 u32 crc;
322 crc = ~0;
323 while (len--) {
324 crc ^= *p++;
325 for (i = 0; i < 8; i++)
326 crc = (crc >> 1) ^ ((crc & 1) ? CRCPOLY_LE : 0);
327 }
328 /* an reverse the bits, cuz of way they arrive -- last-first */
329 crc = (crc >> 16) | (crc << 16);
330 crc = (crc >> 8 & 0x00ff00ff) | (crc << 8 & 0xff00ff00);
331 crc = (crc >> 4 & 0x0f0f0f0f) | (crc << 4 & 0xf0f0f0f0);
332 crc = (crc >> 2 & 0x33333333) | (crc << 2 & 0xcccccccc);
333 crc = (crc >> 1 & 0x55555555) | (crc << 1 & 0xaaaaaaaa);
334 return crc;
335}
wdenkc6097192002-11-03 00:24:07 +0000336
David Updegraff7280da72007-06-11 10:41:07 -0500337#endif
338
wdenkc6097192002-11-03 00:24:07 +0000339
340int eth_init(bd_t *bis)
341{
342 struct eth_device* old_current;
343
Stefan Roese11da2be2008-03-04 17:40:41 +0100344 if (!eth_current) {
345 puts ("No ethernet found.\n");
Upakul Barkakatyaed33582007-11-29 12:16:13 +0530346 return -1;
Stefan Roese11da2be2008-03-04 17:40:41 +0100347 }
wdenkc6097192002-11-03 00:24:07 +0000348
349 old_current = eth_current;
350 do {
wdenk1ebf41e2004-01-02 14:00:00 +0000351 debug ("Trying %s\n", eth_current->name);
wdenkc6097192002-11-03 00:24:07 +0000352
Ben Warrende9fcb52008-01-09 18:15:53 -0500353 if (eth_current->init(eth_current,bis) >= 0) {
wdenkc6097192002-11-03 00:24:07 +0000354 eth_current->state = ETH_STATE_ACTIVE;
355
Upakul Barkakatyaed33582007-11-29 12:16:13 +0530356 return 0;
wdenkc6097192002-11-03 00:24:07 +0000357 }
wdenk1ebf41e2004-01-02 14:00:00 +0000358 debug ("FAIL\n");
wdenkc6097192002-11-03 00:24:07 +0000359
360 eth_try_another(0);
361 } while (old_current != eth_current);
362
Upakul Barkakatyaed33582007-11-29 12:16:13 +0530363 return -1;
wdenkc6097192002-11-03 00:24:07 +0000364}
365
366void eth_halt(void)
367{
368 if (!eth_current)
369 return;
370
371 eth_current->halt(eth_current);
372
373 eth_current->state = ETH_STATE_PASSIVE;
374}
375
376int eth_send(volatile void *packet, int length)
377{
378 if (!eth_current)
379 return -1;
380
381 return eth_current->send(eth_current, packet, length);
382}
383
384int eth_rx(void)
385{
386 if (!eth_current)
387 return -1;
388
389 return eth_current->recv(eth_current);
390}
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +0100391
392#ifdef CONFIG_API
393static void eth_save_packet(volatile void *packet, int length)
394{
395 volatile char *p = packet;
396 int i;
397
398 if ((eth_rcv_last+1) % PKTBUFSRX == eth_rcv_current)
399 return;
400
401 if (PKTSIZE < length)
402 return;
403
404 for (i = 0; i < length; i++)
405 eth_rcv_bufs[eth_rcv_last].data[i] = p[i];
406
407 eth_rcv_bufs[eth_rcv_last].length = length;
408 eth_rcv_last = (eth_rcv_last + 1) % PKTBUFSRX;
409}
410
411int eth_receive(volatile void *packet, int length)
412{
413 volatile char *p = packet;
414 void *pp = push_packet;
415 int i;
416
417 if (eth_rcv_current == eth_rcv_last) {
418 push_packet = eth_save_packet;
419 eth_rx();
420 push_packet = pp;
421
422 if (eth_rcv_current == eth_rcv_last)
423 return -1;
424 }
425
426 if (length < eth_rcv_bufs[eth_rcv_current].length)
427 return -1;
428
429 length = eth_rcv_bufs[eth_rcv_current].length;
430
431 for (i = 0; i < length; i++)
432 p[i] = eth_rcv_bufs[eth_rcv_current].data[i];
433
434 eth_rcv_current = (eth_rcv_current + 1) % PKTBUFSRX;
435 return length;
436}
437#endif /* CONFIG_API */
wdenkc6097192002-11-03 00:24:07 +0000438
439void eth_try_another(int first_restart)
440{
441 static struct eth_device *first_failed = NULL;
Matthias Fuchs204f0ec2008-01-17 07:45:05 +0100442 char *ethrotate;
443
444 /*
445 * Do not rotate between network interfaces when
446 * 'ethrotate' variable is set to 'no'.
447 */
448 if (((ethrotate = getenv ("ethrotate")) != NULL) &&
449 (strcmp(ethrotate, "no") == 0))
450 return;
wdenkc6097192002-11-03 00:24:07 +0000451
452 if (!eth_current)
453 return;
454
wdenk63a10be2004-05-08 20:33:20 +0000455 if (first_restart) {
wdenkc6097192002-11-03 00:24:07 +0000456 first_failed = eth_current;
457 }
458
459 eth_current = eth_current->next;
460
wdenk145d2c12004-04-15 21:48:45 +0000461#ifdef CONFIG_NET_MULTI
462 /* update current ethernet name */
463 {
464 char *act = getenv("ethact");
465 if (act == NULL || strcmp(act, eth_current->name) != 0)
466 setenv("ethact", eth_current->name);
467 }
468#endif
469
wdenk63a10be2004-05-08 20:33:20 +0000470 if (first_failed == eth_current) {
wdenkc6097192002-11-03 00:24:07 +0000471 NetRestartWrap = 1;
472 }
473}
474
wdenk145d2c12004-04-15 21:48:45 +0000475#ifdef CONFIG_NET_MULTI
476void eth_set_current(void)
477{
478 char *act;
479 struct eth_device* old_current;
480
481 if (!eth_current) /* XXX no current */
482 return;
483
484 act = getenv("ethact");
485 if (act != NULL) {
486 old_current = eth_current;
487 do {
488 if (strcmp(eth_current->name, act) == 0)
489 return;
490 eth_current = eth_current->next;
491 } while (old_current != eth_current);
492 }
493
494 setenv("ethact", eth_current->name);
495}
496#endif
497
wdenkc6abb7e2003-11-17 21:14:37 +0000498char *eth_get_name (void)
499{
500 return (eth_current ? eth_current->name : "unknown");
501}
Jon Loeliger54f35c22007-07-09 17:45:14 -0500502#elif defined(CONFIG_CMD_NET) && !defined(CONFIG_NET_MULTI)
Marian Balakowiczaab8c492005-10-28 22:30:33 +0200503
504extern int at91rm9200_miiphy_initialize(bd_t *bis);
505extern int emac4xx_miiphy_initialize(bd_t *bis);
506extern int mcf52x2_miiphy_initialize(bd_t *bis);
507extern int ns7520_miiphy_initialize(bd_t *bis);
Jean-Christophe PLAGNIOL-VILLARDbcf268b2008-08-31 04:45:42 +0200508extern int davinci_eth_miiphy_initialize(bd_t *bis);
Sergey Kubushyne8f39122007-08-10 20:26:18 +0200509
Marian Balakowiczaab8c492005-10-28 22:30:33 +0200510
511int eth_initialize(bd_t *bis)
512{
Jon Loeliger54f35c22007-07-09 17:45:14 -0500513#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Marian Balakowiczcbdd1c82005-11-30 18:06:04 +0100514 miiphy_init();
515#endif
516
Marian Balakowiczaab8c492005-10-28 22:30:33 +0200517#if defined(CONFIG_AT91RM9200)
518 at91rm9200_miiphy_initialize(bis);
519#endif
520#if defined(CONFIG_4xx) && !defined(CONFIG_IOP480) \
521 && !defined(CONFIG_AP1000) && !defined(CONFIG_405)
522 emac4xx_miiphy_initialize(bis);
523#endif
524#if defined(CONFIG_MCF52x2)
525 mcf52x2_miiphy_initialize(bis);
526#endif
Wolfgang Denk81490f42008-07-13 23:07:35 +0200527#if defined(CONFIG_DRIVER_NS7520_ETHERNET)
Marian Balakowiczaab8c492005-10-28 22:30:33 +0200528 ns7520_miiphy_initialize(bis);
529#endif
Sergey Kubushyne8f39122007-08-10 20:26:18 +0200530#if defined(CONFIG_DRIVER_TI_EMAC)
Sandeep Paulraj4b26f052008-08-31 00:39:46 +0200531 davinci_eth_miiphy_initialize(bis);
Sergey Kubushyne8f39122007-08-10 20:26:18 +0200532#endif
Marian Balakowiczaab8c492005-10-28 22:30:33 +0200533 return 0;
534}
wdenkc6097192002-11-03 00:24:07 +0000535#endif