blob: eab51045a4ea46468cbb2fa174eec0b0d8d2691e [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
wdenkd4ca31c2004-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 Balakowiczd9785c12005-11-30 18:06:04 +010027#include <miiphy.h>
wdenkc6097192002-11-03 00:24:07 +000028
Jon Loeliger643d1ab2007-07-09 17:45:14 -050029#if defined(CONFIG_CMD_NET) && defined(CONFIG_NET_MULTI)
wdenkc6097192002-11-03 00:24:07 +000030
Ben Warrendd354792008-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
wdenk3a473b22004-01-03 00:43:19 +000042extern int mv6436x_eth_initialize(bd_t *);
43extern int mv6446x_eth_initialize(bd_t *);
wdenk3a473b22004-01-03 00:43:19 +000044extern int ppc_4xx_eth_initialize(bd_t *);
wdenkc6097192002-11-03 00:24:07 +000045
Rafal Jaworowskif85b6072007-12-27 18:19:02 +010046#ifdef CONFIG_API
47extern void (*push_packet)(volatile void *, int);
48
49static struct {
50 uchar data[PKTSIZE];
51 int length;
52} eth_rcv_bufs[PKTBUFSRX];
53
54static unsigned int eth_rcv_current = 0, eth_rcv_last = 0;
55#endif
56
wdenkc6097192002-11-03 00:24:07 +000057static struct eth_device *eth_devices, *eth_current;
58
59struct eth_device *eth_get_dev(void)
60{
61 return eth_current;
62}
63
Marian Balakowicz63ff0042005-10-28 22:30:33 +020064struct eth_device *eth_get_dev_by_name(char *devname)
65{
66 struct eth_device *dev, *target_dev;
67
68 if (!eth_devices)
69 return NULL;
70
71 dev = eth_devices;
72 target_dev = NULL;
73 do {
74 if (strcmp(devname, dev->name) == 0) {
75 target_dev = dev;
76 break;
77 }
78 dev = dev->next;
79 } while (dev != eth_devices);
80
81 return target_dev;
82}
83
wdenkc6097192002-11-03 00:24:07 +000084int eth_get_dev_index (void)
85{
86 struct eth_device *dev;
87 int num = 0;
88
89 if (!eth_devices) {
90 return (-1);
91 }
92
93 for (dev = eth_devices; dev; dev = dev->next) {
94 if (dev == eth_current)
95 break;
96 ++num;
97 }
98
99 if (dev) {
100 return (num);
101 }
102
103 return (0);
104}
105
106int eth_register(struct eth_device* dev)
107{
108 struct eth_device *d;
109
110 if (!eth_devices) {
111 eth_current = eth_devices = dev;
wdenka3d991b2004-04-15 21:48:45 +0000112#ifdef CONFIG_NET_MULTI
113 /* update current ethernet name */
114 {
115 char *act = getenv("ethact");
116 if (act == NULL || strcmp(act, eth_current->name) != 0)
117 setenv("ethact", eth_current->name);
118 }
119#endif
wdenkc6097192002-11-03 00:24:07 +0000120 } else {
121 for (d=eth_devices; d->next!=eth_devices; d=d->next);
122 d->next = dev;
123 }
124
125 dev->state = ETH_STATE_INIT;
126 dev->next = eth_devices;
127
128 return 0;
129}
130
131int eth_initialize(bd_t *bis)
132{
Shinya Kuribayashi5ca2d092007-11-19 20:27:04 +0900133 char enetvar[32];
134 unsigned char env_enetaddr[6];
wdenkc6097192002-11-03 00:24:07 +0000135 int i, eth_number = 0;
136 char *tmp, *end;
137
138 eth_devices = NULL;
139 eth_current = NULL;
140
Heiko Schocherfad63402007-07-13 09:54:17 +0200141 show_boot_progress (64);
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500142#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Marian Balakowiczd9785c12005-11-30 18:06:04 +0100143 miiphy_init();
144#endif
Ben Warrendd354792008-06-23 22:57:27 -0700145 /* Try board-specific initialization first. If it fails or isn't
146 * present, try the cpu-specific initialization */
147 if (board_eth_init(bis) < 0)
148 cpu_eth_init(bis);
Marian Balakowiczd9785c12005-11-30 18:06:04 +0100149
Stefan Roese1eac2a72006-11-29 15:42:37 +0100150#if defined(CONFIG_DB64360) || defined(CONFIG_CPCI750)
wdenk3a473b22004-01-03 00:43:19 +0000151 mv6436x_eth_initialize(bis);
152#endif
Stefan Roese1eac2a72006-11-29 15:42:37 +0100153#if defined(CONFIG_DB64460) || defined(CONFIG_P3Mx)
wdenk3a473b22004-01-03 00:43:19 +0000154 mv6446x_eth_initialize(bis);
155#endif
Ben Warren96e21f82008-10-27 23:50:15 -0700156#if defined(CONFIG_PPC4xx_EMAC)
wdenk8bde7f72003-06-27 21:31:46 +0000157 ppc_4xx_eth_initialize(bis);
wdenka3ed3992003-06-05 19:37:36 +0000158#endif
wdenkc6097192002-11-03 00:24:07 +0000159 if (!eth_devices) {
160 puts ("No ethernet found.\n");
Heiko Schocherfad63402007-07-13 09:54:17 +0200161 show_boot_progress (-64);
wdenkc6097192002-11-03 00:24:07 +0000162 } else {
163 struct eth_device *dev = eth_devices;
164 char *ethprime = getenv ("ethprime");
165
Heiko Schocherfad63402007-07-13 09:54:17 +0200166 show_boot_progress (65);
wdenkc6097192002-11-03 00:24:07 +0000167 do {
168 if (eth_number)
169 puts (", ");
170
171 printf("%s", dev->name);
172
173 if (ethprime && strcmp (dev->name, ethprime) == 0) {
174 eth_current = dev;
175 puts (" [PRIME]");
176 }
177
178 sprintf(enetvar, eth_number ? "eth%daddr" : "ethaddr", eth_number);
179 tmp = getenv (enetvar);
180
181 for (i=0; i<6; i++) {
182 env_enetaddr[i] = tmp ? simple_strtoul(tmp, &end, 16) : 0;
183 if (tmp)
184 tmp = (*end) ? end+1 : end;
185 }
186
187 if (memcmp(env_enetaddr, "\0\0\0\0\0\0", 6)) {
188 if (memcmp(dev->enetaddr, "\0\0\0\0\0\0", 6) &&
189 memcmp(dev->enetaddr, env_enetaddr, 6))
190 {
wdenkbaac6072004-05-08 20:33:20 +0000191 printf ("\nWarning: %s MAC addresses don't match:\n",
192 dev->name);
193 printf ("Address in SROM is "
wdenkc6097192002-11-03 00:24:07 +0000194 "%02X:%02X:%02X:%02X:%02X:%02X\n",
195 dev->enetaddr[0], dev->enetaddr[1],
196 dev->enetaddr[2], dev->enetaddr[3],
197 dev->enetaddr[4], dev->enetaddr[5]);
wdenkbaac6072004-05-08 20:33:20 +0000198 printf ("Address in environment is "
wdenkc6097192002-11-03 00:24:07 +0000199 "%02X:%02X:%02X:%02X:%02X:%02X\n",
200 env_enetaddr[0], env_enetaddr[1],
201 env_enetaddr[2], env_enetaddr[3],
202 env_enetaddr[4], env_enetaddr[5]);
203 }
204
205 memcpy(dev->enetaddr, env_enetaddr, 6);
206 }
207
208 eth_number++;
209 dev = dev->next;
210 } while(dev != eth_devices);
211
wdenka3d991b2004-04-15 21:48:45 +0000212#ifdef CONFIG_NET_MULTI
213 /* update current ethernet name */
214 if (eth_current) {
215 char *act = getenv("ethact");
216 if (act == NULL || strcmp(act, eth_current->name) != 0)
217 setenv("ethact", eth_current->name);
218 } else
219 setenv("ethact", NULL);
220#endif
221
wdenkc6097192002-11-03 00:24:07 +0000222 putc ('\n');
223 }
224
225 return eth_number;
226}
227
228void eth_set_enetaddr(int num, char *addr) {
229 struct eth_device *dev;
230 unsigned char enetaddr[6];
231 char *end;
232 int i;
233
wdenkd4ca31c2004-01-02 14:00:00 +0000234 debug ("eth_set_enetaddr(num=%d, addr=%s)\n", num, addr);
235
wdenkc6097192002-11-03 00:24:07 +0000236 if (!eth_devices)
237 return;
238
239 for (i=0; i<6; i++) {
240 enetaddr[i] = addr ? simple_strtoul(addr, &end, 16) : 0;
241 if (addr)
242 addr = (*end) ? end+1 : end;
243 }
244
245 dev = eth_devices;
246 while(num-- > 0) {
247 dev = dev->next;
248
249 if (dev == eth_devices)
250 return;
251 }
252
wdenkd4ca31c2004-01-02 14:00:00 +0000253 debug ( "Setting new HW address on %s\n"
254 "New Address is %02X:%02X:%02X:%02X:%02X:%02X\n",
255 dev->name,
Wolfgang Denka188b582005-09-25 17:05:57 +0200256 enetaddr[0], enetaddr[1],
257 enetaddr[2], enetaddr[3],
258 enetaddr[4], enetaddr[5]);
wdenkc6097192002-11-03 00:24:07 +0000259
260 memcpy(dev->enetaddr, enetaddr, 6);
261}
David Updegraff53a5c422007-06-11 10:41:07 -0500262#ifdef CONFIG_MCAST_TFTP
263/* Multicast.
264 * mcast_addr: multicast ipaddr from which multicast Mac is made
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200265 * join: 1=join, 0=leave.
David Updegraff53a5c422007-06-11 10:41:07 -0500266 */
267int eth_mcast_join( IPaddr_t mcast_ip, u8 join)
268{
269 u8 mcast_mac[6];
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200270 if (!eth_current || !eth_current->mcast)
David Updegraff53a5c422007-06-11 10:41:07 -0500271 return -1;
272 mcast_mac[5] = htonl(mcast_ip) & 0xff;
273 mcast_mac[4] = (htonl(mcast_ip)>>8) & 0xff;
274 mcast_mac[3] = (htonl(mcast_ip)>>16) & 0x7f;
275 mcast_mac[2] = 0x5e;
276 mcast_mac[1] = 0x0;
277 mcast_mac[0] = 0x1;
278 return eth_current->mcast(eth_current, mcast_mac, join);
279}
280
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200281/* the 'way' for ethernet-CRC-32. Spliced in from Linux lib/crc32.c
282 * and this is the ethernet-crc method needed for TSEC -- and perhaps
David Updegraff53a5c422007-06-11 10:41:07 -0500283 * some other adapter -- hash tables
284 */
285#define CRCPOLY_LE 0xedb88320
286u32 ether_crc (size_t len, unsigned char const *p)
287{
288 int i;
289 u32 crc;
290 crc = ~0;
291 while (len--) {
292 crc ^= *p++;
293 for (i = 0; i < 8; i++)
294 crc = (crc >> 1) ^ ((crc & 1) ? CRCPOLY_LE : 0);
295 }
296 /* an reverse the bits, cuz of way they arrive -- last-first */
297 crc = (crc >> 16) | (crc << 16);
298 crc = (crc >> 8 & 0x00ff00ff) | (crc << 8 & 0xff00ff00);
299 crc = (crc >> 4 & 0x0f0f0f0f) | (crc << 4 & 0xf0f0f0f0);
300 crc = (crc >> 2 & 0x33333333) | (crc << 2 & 0xcccccccc);
301 crc = (crc >> 1 & 0x55555555) | (crc << 1 & 0xaaaaaaaa);
302 return crc;
303}
304
305#endif
306
wdenkc6097192002-11-03 00:24:07 +0000307
308int eth_init(bd_t *bis)
309{
310 struct eth_device* old_current;
311
Stefan Roese6bc11382008-03-04 17:40:41 +0100312 if (!eth_current) {
313 puts ("No ethernet found.\n");
Upakul Barkakaty505be872007-11-29 12:16:13 +0530314 return -1;
Stefan Roese6bc11382008-03-04 17:40:41 +0100315 }
wdenkc6097192002-11-03 00:24:07 +0000316
317 old_current = eth_current;
318 do {
wdenkd4ca31c2004-01-02 14:00:00 +0000319 debug ("Trying %s\n", eth_current->name);
wdenkc6097192002-11-03 00:24:07 +0000320
Ben Warren422b1a02008-01-09 18:15:53 -0500321 if (eth_current->init(eth_current,bis) >= 0) {
wdenkc6097192002-11-03 00:24:07 +0000322 eth_current->state = ETH_STATE_ACTIVE;
323
Upakul Barkakaty505be872007-11-29 12:16:13 +0530324 return 0;
wdenkc6097192002-11-03 00:24:07 +0000325 }
wdenkd4ca31c2004-01-02 14:00:00 +0000326 debug ("FAIL\n");
wdenkc6097192002-11-03 00:24:07 +0000327
328 eth_try_another(0);
329 } while (old_current != eth_current);
330
Upakul Barkakaty505be872007-11-29 12:16:13 +0530331 return -1;
wdenkc6097192002-11-03 00:24:07 +0000332}
333
334void eth_halt(void)
335{
336 if (!eth_current)
337 return;
338
339 eth_current->halt(eth_current);
340
341 eth_current->state = ETH_STATE_PASSIVE;
342}
343
344int eth_send(volatile void *packet, int length)
345{
346 if (!eth_current)
347 return -1;
348
349 return eth_current->send(eth_current, packet, length);
350}
351
352int eth_rx(void)
353{
354 if (!eth_current)
355 return -1;
356
357 return eth_current->recv(eth_current);
358}
359
Rafal Jaworowskif85b6072007-12-27 18:19:02 +0100360#ifdef CONFIG_API
361static void eth_save_packet(volatile void *packet, int length)
362{
363 volatile char *p = packet;
364 int i;
365
366 if ((eth_rcv_last+1) % PKTBUFSRX == eth_rcv_current)
367 return;
368
369 if (PKTSIZE < length)
370 return;
371
372 for (i = 0; i < length; i++)
373 eth_rcv_bufs[eth_rcv_last].data[i] = p[i];
374
375 eth_rcv_bufs[eth_rcv_last].length = length;
376 eth_rcv_last = (eth_rcv_last + 1) % PKTBUFSRX;
377}
378
379int eth_receive(volatile void *packet, int length)
380{
381 volatile char *p = packet;
382 void *pp = push_packet;
383 int i;
384
385 if (eth_rcv_current == eth_rcv_last) {
386 push_packet = eth_save_packet;
387 eth_rx();
388 push_packet = pp;
389
390 if (eth_rcv_current == eth_rcv_last)
391 return -1;
392 }
393
394 if (length < eth_rcv_bufs[eth_rcv_current].length)
395 return -1;
396
397 length = eth_rcv_bufs[eth_rcv_current].length;
398
399 for (i = 0; i < length; i++)
400 p[i] = eth_rcv_bufs[eth_rcv_current].data[i];
401
402 eth_rcv_current = (eth_rcv_current + 1) % PKTBUFSRX;
403 return length;
404}
405#endif /* CONFIG_API */
406
wdenkc6097192002-11-03 00:24:07 +0000407void eth_try_another(int first_restart)
408{
409 static struct eth_device *first_failed = NULL;
Matthias Fuchse1692572008-01-17 07:45:05 +0100410 char *ethrotate;
411
412 /*
413 * Do not rotate between network interfaces when
414 * 'ethrotate' variable is set to 'no'.
415 */
416 if (((ethrotate = getenv ("ethrotate")) != NULL) &&
417 (strcmp(ethrotate, "no") == 0))
418 return;
wdenkc6097192002-11-03 00:24:07 +0000419
420 if (!eth_current)
421 return;
422
wdenkbaac6072004-05-08 20:33:20 +0000423 if (first_restart) {
wdenkc6097192002-11-03 00:24:07 +0000424 first_failed = eth_current;
425 }
426
427 eth_current = eth_current->next;
428
wdenka3d991b2004-04-15 21:48:45 +0000429#ifdef CONFIG_NET_MULTI
430 /* update current ethernet name */
431 {
432 char *act = getenv("ethact");
433 if (act == NULL || strcmp(act, eth_current->name) != 0)
434 setenv("ethact", eth_current->name);
435 }
436#endif
437
wdenkbaac6072004-05-08 20:33:20 +0000438 if (first_failed == eth_current) {
wdenkc6097192002-11-03 00:24:07 +0000439 NetRestartWrap = 1;
440 }
441}
442
wdenka3d991b2004-04-15 21:48:45 +0000443#ifdef CONFIG_NET_MULTI
444void eth_set_current(void)
445{
446 char *act;
447 struct eth_device* old_current;
448
449 if (!eth_current) /* XXX no current */
450 return;
451
452 act = getenv("ethact");
453 if (act != NULL) {
454 old_current = eth_current;
455 do {
456 if (strcmp(eth_current->name, act) == 0)
457 return;
458 eth_current = eth_current->next;
459 } while (old_current != eth_current);
460 }
461
462 setenv("ethact", eth_current->name);
463}
464#endif
465
wdenk5bb226e2003-11-17 21:14:37 +0000466char *eth_get_name (void)
467{
468 return (eth_current ? eth_current->name : "unknown");
469}
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500470#elif defined(CONFIG_CMD_NET) && !defined(CONFIG_NET_MULTI)
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200471
472extern int at91rm9200_miiphy_initialize(bd_t *bis);
473extern int emac4xx_miiphy_initialize(bd_t *bis);
474extern int mcf52x2_miiphy_initialize(bd_t *bis);
475extern int ns7520_miiphy_initialize(bd_t *bis);
Jean-Christophe PLAGNIOL-VILLARDd6e04252008-08-31 04:45:42 +0200476extern int davinci_eth_miiphy_initialize(bd_t *bis);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200477
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200478
479int eth_initialize(bd_t *bis)
480{
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500481#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Marian Balakowiczd9785c12005-11-30 18:06:04 +0100482 miiphy_init();
483#endif
484
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200485#if defined(CONFIG_AT91RM9200)
486 at91rm9200_miiphy_initialize(bis);
487#endif
Ben Warren96e21f82008-10-27 23:50:15 -0700488#if defined(CONFIG_PPC4xx_EMAC)
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200489 emac4xx_miiphy_initialize(bis);
490#endif
491#if defined(CONFIG_MCF52x2)
492 mcf52x2_miiphy_initialize(bis);
493#endif
Wolfgang Denk25dbe982008-07-13 23:07:35 +0200494#if defined(CONFIG_DRIVER_NS7520_ETHERNET)
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200495 ns7520_miiphy_initialize(bis);
496#endif
Sergey Kubushync74b2102007-08-10 20:26:18 +0200497#if defined(CONFIG_DRIVER_TI_EMAC)
Sandeep Paulrajfcaac582008-08-31 00:39:46 +0200498 davinci_eth_miiphy_initialize(bis);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200499#endif
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200500 return 0;
501}
wdenkc6097192002-11-03 00:24:07 +0000502#endif