blob: ec2ef1a365fc7547598613dd7a4d11c06da5b312 [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
wdenk5da7f2f2004-01-03 00:43:19 +000042extern int mv6436x_eth_initialize(bd_t *);
43extern int mv6446x_eth_initialize(bd_t *);
wdenkc6097192002-11-03 00:24:07 +000044
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +010045#ifdef CONFIG_API
46extern void (*push_packet)(volatile void *, int);
47
48static struct {
49 uchar data[PKTSIZE];
50 int length;
51} eth_rcv_bufs[PKTBUFSRX];
52
53static unsigned int eth_rcv_current = 0, eth_rcv_last = 0;
54#endif
55
wdenkc6097192002-11-03 00:24:07 +000056static struct eth_device *eth_devices, *eth_current;
57
58struct eth_device *eth_get_dev(void)
59{
60 return eth_current;
61}
62
Marian Balakowiczaab8c492005-10-28 22:30:33 +020063struct eth_device *eth_get_dev_by_name(char *devname)
64{
65 struct eth_device *dev, *target_dev;
66
67 if (!eth_devices)
68 return NULL;
69
70 dev = eth_devices;
71 target_dev = NULL;
72 do {
73 if (strcmp(devname, dev->name) == 0) {
74 target_dev = dev;
75 break;
76 }
77 dev = dev->next;
78 } while (dev != eth_devices);
79
80 return target_dev;
81}
82
Andy Fleminge7fd34b2009-02-11 15:07:24 -060083struct eth_device *eth_get_dev_by_index(int index)
84{
85 struct eth_device *dev, *target_dev;
86 int idx = 0;
87
88 if (!eth_devices)
89 return NULL;
90
91 dev = eth_devices;
92 target_dev = NULL;
93 do {
94 if (idx == index) {
95 target_dev = dev;
96 break;
97 }
98 dev = dev->next;
99 idx++;
100 } while (dev != eth_devices);
101
102 return target_dev;
103}
104
wdenkc6097192002-11-03 00:24:07 +0000105int eth_get_dev_index (void)
106{
107 struct eth_device *dev;
108 int num = 0;
109
110 if (!eth_devices) {
111 return (-1);
112 }
113
114 for (dev = eth_devices; dev; dev = dev->next) {
115 if (dev == eth_current)
116 break;
117 ++num;
118 }
119
120 if (dev) {
121 return (num);
122 }
123
124 return (0);
125}
126
127int eth_register(struct eth_device* dev)
128{
129 struct eth_device *d;
130
131 if (!eth_devices) {
132 eth_current = eth_devices = dev;
wdenk145d2c12004-04-15 21:48:45 +0000133#ifdef CONFIG_NET_MULTI
134 /* update current ethernet name */
135 {
136 char *act = getenv("ethact");
137 if (act == NULL || strcmp(act, eth_current->name) != 0)
138 setenv("ethact", eth_current->name);
139 }
140#endif
wdenkc6097192002-11-03 00:24:07 +0000141 } else {
142 for (d=eth_devices; d->next!=eth_devices; d=d->next);
143 d->next = dev;
144 }
145
146 dev->state = ETH_STATE_INIT;
147 dev->next = eth_devices;
148
149 return 0;
150}
151
152int eth_initialize(bd_t *bis)
153{
Shinya Kuribayashidb7101e2007-11-19 20:27:04 +0900154 char enetvar[32];
155 unsigned char env_enetaddr[6];
wdenkc6097192002-11-03 00:24:07 +0000156 int i, eth_number = 0;
157 char *tmp, *end;
158
159 eth_devices = NULL;
160 eth_current = NULL;
161
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200162 show_boot_progress (64);
Jon Loeliger54f35c22007-07-09 17:45:14 -0500163#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Marian Balakowiczcbdd1c82005-11-30 18:06:04 +0100164 miiphy_init();
165#endif
Ben Warrend448a492008-06-23 22:57:27 -0700166 /* Try board-specific initialization first. If it fails or isn't
167 * present, try the cpu-specific initialization */
168 if (board_eth_init(bis) < 0)
169 cpu_eth_init(bis);
Marian Balakowiczcbdd1c82005-11-30 18:06:04 +0100170
Stefan Roese45993ea2006-11-29 15:42:37 +0100171#if defined(CONFIG_DB64360) || defined(CONFIG_CPCI750)
wdenk5da7f2f2004-01-03 00:43:19 +0000172 mv6436x_eth_initialize(bis);
173#endif
Stefan Roese45993ea2006-11-29 15:42:37 +0100174#if defined(CONFIG_DB64460) || defined(CONFIG_P3Mx)
wdenk5da7f2f2004-01-03 00:43:19 +0000175 mv6446x_eth_initialize(bis);
176#endif
wdenkc6097192002-11-03 00:24:07 +0000177 if (!eth_devices) {
178 puts ("No ethernet found.\n");
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200179 show_boot_progress (-64);
wdenkc6097192002-11-03 00:24:07 +0000180 } else {
181 struct eth_device *dev = eth_devices;
182 char *ethprime = getenv ("ethprime");
183
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200184 show_boot_progress (65);
wdenkc6097192002-11-03 00:24:07 +0000185 do {
186 if (eth_number)
187 puts (", ");
188
189 printf("%s", dev->name);
190
191 if (ethprime && strcmp (dev->name, ethprime) == 0) {
192 eth_current = dev;
193 puts (" [PRIME]");
194 }
195
196 sprintf(enetvar, eth_number ? "eth%daddr" : "ethaddr", eth_number);
197 tmp = getenv (enetvar);
198
199 for (i=0; i<6; i++) {
200 env_enetaddr[i] = tmp ? simple_strtoul(tmp, &end, 16) : 0;
201 if (tmp)
202 tmp = (*end) ? end+1 : end;
203 }
204
205 if (memcmp(env_enetaddr, "\0\0\0\0\0\0", 6)) {
206 if (memcmp(dev->enetaddr, "\0\0\0\0\0\0", 6) &&
207 memcmp(dev->enetaddr, env_enetaddr, 6))
208 {
wdenk63a10be2004-05-08 20:33:20 +0000209 printf ("\nWarning: %s MAC addresses don't match:\n",
210 dev->name);
211 printf ("Address in SROM is "
wdenkc6097192002-11-03 00:24:07 +0000212 "%02X:%02X:%02X:%02X:%02X:%02X\n",
213 dev->enetaddr[0], dev->enetaddr[1],
214 dev->enetaddr[2], dev->enetaddr[3],
215 dev->enetaddr[4], dev->enetaddr[5]);
wdenk63a10be2004-05-08 20:33:20 +0000216 printf ("Address in environment is "
wdenkc6097192002-11-03 00:24:07 +0000217 "%02X:%02X:%02X:%02X:%02X:%02X\n",
218 env_enetaddr[0], env_enetaddr[1],
219 env_enetaddr[2], env_enetaddr[3],
220 env_enetaddr[4], env_enetaddr[5]);
221 }
222
223 memcpy(dev->enetaddr, env_enetaddr, 6);
224 }
225
226 eth_number++;
227 dev = dev->next;
228 } while(dev != eth_devices);
229
wdenk145d2c12004-04-15 21:48:45 +0000230#ifdef CONFIG_NET_MULTI
231 /* update current ethernet name */
232 if (eth_current) {
233 char *act = getenv("ethact");
234 if (act == NULL || strcmp(act, eth_current->name) != 0)
235 setenv("ethact", eth_current->name);
236 } else
237 setenv("ethact", NULL);
238#endif
239
wdenkc6097192002-11-03 00:24:07 +0000240 putc ('\n');
241 }
242
243 return eth_number;
244}
245
246void eth_set_enetaddr(int num, char *addr) {
247 struct eth_device *dev;
248 unsigned char enetaddr[6];
249 char *end;
250 int i;
251
wdenk1ebf41e2004-01-02 14:00:00 +0000252 debug ("eth_set_enetaddr(num=%d, addr=%s)\n", num, addr);
253
wdenkc6097192002-11-03 00:24:07 +0000254 if (!eth_devices)
255 return;
256
257 for (i=0; i<6; i++) {
258 enetaddr[i] = addr ? simple_strtoul(addr, &end, 16) : 0;
259 if (addr)
260 addr = (*end) ? end+1 : end;
261 }
262
263 dev = eth_devices;
264 while(num-- > 0) {
265 dev = dev->next;
266
267 if (dev == eth_devices)
268 return;
269 }
270
wdenk1ebf41e2004-01-02 14:00:00 +0000271 debug ( "Setting new HW address on %s\n"
272 "New Address is %02X:%02X:%02X:%02X:%02X:%02X\n",
273 dev->name,
Wolfgang Denkb6ea6302005-09-25 17:05:57 +0200274 enetaddr[0], enetaddr[1],
275 enetaddr[2], enetaddr[3],
276 enetaddr[4], enetaddr[5]);
wdenkc6097192002-11-03 00:24:07 +0000277
278 memcpy(dev->enetaddr, enetaddr, 6);
279}
David Updegraff7280da72007-06-11 10:41:07 -0500280#ifdef CONFIG_MCAST_TFTP
281/* Multicast.
282 * mcast_addr: multicast ipaddr from which multicast Mac is made
Wolfgang Denk627f5c32007-08-14 09:47:27 +0200283 * join: 1=join, 0=leave.
David Updegraff7280da72007-06-11 10:41:07 -0500284 */
285int eth_mcast_join( IPaddr_t mcast_ip, u8 join)
286{
287 u8 mcast_mac[6];
Wolfgang Denk627f5c32007-08-14 09:47:27 +0200288 if (!eth_current || !eth_current->mcast)
David Updegraff7280da72007-06-11 10:41:07 -0500289 return -1;
290 mcast_mac[5] = htonl(mcast_ip) & 0xff;
291 mcast_mac[4] = (htonl(mcast_ip)>>8) & 0xff;
292 mcast_mac[3] = (htonl(mcast_ip)>>16) & 0x7f;
293 mcast_mac[2] = 0x5e;
294 mcast_mac[1] = 0x0;
295 mcast_mac[0] = 0x1;
296 return eth_current->mcast(eth_current, mcast_mac, join);
297}
298
Wolfgang Denk627f5c32007-08-14 09:47:27 +0200299/* the 'way' for ethernet-CRC-32. Spliced in from Linux lib/crc32.c
300 * and this is the ethernet-crc method needed for TSEC -- and perhaps
David Updegraff7280da72007-06-11 10:41:07 -0500301 * some other adapter -- hash tables
302 */
303#define CRCPOLY_LE 0xedb88320
304u32 ether_crc (size_t len, unsigned char const *p)
305{
306 int i;
307 u32 crc;
308 crc = ~0;
309 while (len--) {
310 crc ^= *p++;
311 for (i = 0; i < 8; i++)
312 crc = (crc >> 1) ^ ((crc & 1) ? CRCPOLY_LE : 0);
313 }
314 /* an reverse the bits, cuz of way they arrive -- last-first */
315 crc = (crc >> 16) | (crc << 16);
316 crc = (crc >> 8 & 0x00ff00ff) | (crc << 8 & 0xff00ff00);
317 crc = (crc >> 4 & 0x0f0f0f0f) | (crc << 4 & 0xf0f0f0f0);
318 crc = (crc >> 2 & 0x33333333) | (crc << 2 & 0xcccccccc);
319 crc = (crc >> 1 & 0x55555555) | (crc << 1 & 0xaaaaaaaa);
320 return crc;
321}
wdenkc6097192002-11-03 00:24:07 +0000322
David Updegraff7280da72007-06-11 10:41:07 -0500323#endif
324
wdenkc6097192002-11-03 00:24:07 +0000325
326int eth_init(bd_t *bis)
327{
328 struct eth_device* old_current;
329
Stefan Roese11da2be2008-03-04 17:40:41 +0100330 if (!eth_current) {
331 puts ("No ethernet found.\n");
Upakul Barkakatyaed33582007-11-29 12:16:13 +0530332 return -1;
Stefan Roese11da2be2008-03-04 17:40:41 +0100333 }
wdenkc6097192002-11-03 00:24:07 +0000334
335 old_current = eth_current;
336 do {
wdenk1ebf41e2004-01-02 14:00:00 +0000337 debug ("Trying %s\n", eth_current->name);
wdenkc6097192002-11-03 00:24:07 +0000338
Ben Warrende9fcb52008-01-09 18:15:53 -0500339 if (eth_current->init(eth_current,bis) >= 0) {
wdenkc6097192002-11-03 00:24:07 +0000340 eth_current->state = ETH_STATE_ACTIVE;
341
Upakul Barkakatyaed33582007-11-29 12:16:13 +0530342 return 0;
wdenkc6097192002-11-03 00:24:07 +0000343 }
wdenk1ebf41e2004-01-02 14:00:00 +0000344 debug ("FAIL\n");
wdenkc6097192002-11-03 00:24:07 +0000345
346 eth_try_another(0);
347 } while (old_current != eth_current);
348
Upakul Barkakatyaed33582007-11-29 12:16:13 +0530349 return -1;
wdenkc6097192002-11-03 00:24:07 +0000350}
351
352void eth_halt(void)
353{
354 if (!eth_current)
355 return;
356
357 eth_current->halt(eth_current);
358
359 eth_current->state = ETH_STATE_PASSIVE;
360}
361
362int eth_send(volatile void *packet, int length)
363{
364 if (!eth_current)
365 return -1;
366
367 return eth_current->send(eth_current, packet, length);
368}
369
370int eth_rx(void)
371{
372 if (!eth_current)
373 return -1;
374
375 return eth_current->recv(eth_current);
376}
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +0100377
378#ifdef CONFIG_API
379static void eth_save_packet(volatile void *packet, int length)
380{
381 volatile char *p = packet;
382 int i;
383
384 if ((eth_rcv_last+1) % PKTBUFSRX == eth_rcv_current)
385 return;
386
387 if (PKTSIZE < length)
388 return;
389
390 for (i = 0; i < length; i++)
391 eth_rcv_bufs[eth_rcv_last].data[i] = p[i];
392
393 eth_rcv_bufs[eth_rcv_last].length = length;
394 eth_rcv_last = (eth_rcv_last + 1) % PKTBUFSRX;
395}
396
397int eth_receive(volatile void *packet, int length)
398{
399 volatile char *p = packet;
400 void *pp = push_packet;
401 int i;
402
403 if (eth_rcv_current == eth_rcv_last) {
404 push_packet = eth_save_packet;
405 eth_rx();
406 push_packet = pp;
407
408 if (eth_rcv_current == eth_rcv_last)
409 return -1;
410 }
411
412 if (length < eth_rcv_bufs[eth_rcv_current].length)
413 return -1;
414
415 length = eth_rcv_bufs[eth_rcv_current].length;
416
417 for (i = 0; i < length; i++)
418 p[i] = eth_rcv_bufs[eth_rcv_current].data[i];
419
420 eth_rcv_current = (eth_rcv_current + 1) % PKTBUFSRX;
421 return length;
422}
423#endif /* CONFIG_API */
wdenkc6097192002-11-03 00:24:07 +0000424
425void eth_try_another(int first_restart)
426{
427 static struct eth_device *first_failed = NULL;
Matthias Fuchs204f0ec2008-01-17 07:45:05 +0100428 char *ethrotate;
429
430 /*
431 * Do not rotate between network interfaces when
432 * 'ethrotate' variable is set to 'no'.
433 */
434 if (((ethrotate = getenv ("ethrotate")) != NULL) &&
435 (strcmp(ethrotate, "no") == 0))
436 return;
wdenkc6097192002-11-03 00:24:07 +0000437
438 if (!eth_current)
439 return;
440
wdenk63a10be2004-05-08 20:33:20 +0000441 if (first_restart) {
wdenkc6097192002-11-03 00:24:07 +0000442 first_failed = eth_current;
443 }
444
445 eth_current = eth_current->next;
446
wdenk145d2c12004-04-15 21:48:45 +0000447#ifdef CONFIG_NET_MULTI
448 /* update current ethernet name */
449 {
450 char *act = getenv("ethact");
451 if (act == NULL || strcmp(act, eth_current->name) != 0)
452 setenv("ethact", eth_current->name);
453 }
454#endif
455
wdenk63a10be2004-05-08 20:33:20 +0000456 if (first_failed == eth_current) {
wdenkc6097192002-11-03 00:24:07 +0000457 NetRestartWrap = 1;
458 }
459}
460
wdenk145d2c12004-04-15 21:48:45 +0000461#ifdef CONFIG_NET_MULTI
462void eth_set_current(void)
463{
464 char *act;
465 struct eth_device* old_current;
466
467 if (!eth_current) /* XXX no current */
468 return;
469
470 act = getenv("ethact");
471 if (act != NULL) {
472 old_current = eth_current;
473 do {
474 if (strcmp(eth_current->name, act) == 0)
475 return;
476 eth_current = eth_current->next;
477 } while (old_current != eth_current);
478 }
479
480 setenv("ethact", eth_current->name);
481}
482#endif
483
wdenkc6abb7e2003-11-17 21:14:37 +0000484char *eth_get_name (void)
485{
486 return (eth_current ? eth_current->name : "unknown");
487}
Jon Loeliger54f35c22007-07-09 17:45:14 -0500488#elif defined(CONFIG_CMD_NET) && !defined(CONFIG_NET_MULTI)
Marian Balakowiczaab8c492005-10-28 22:30:33 +0200489
490extern int at91rm9200_miiphy_initialize(bd_t *bis);
491extern int emac4xx_miiphy_initialize(bd_t *bis);
492extern int mcf52x2_miiphy_initialize(bd_t *bis);
493extern int ns7520_miiphy_initialize(bd_t *bis);
Jean-Christophe PLAGNIOL-VILLARDbcf268b2008-08-31 04:45:42 +0200494extern int davinci_eth_miiphy_initialize(bd_t *bis);
Sergey Kubushyne8f39122007-08-10 20:26:18 +0200495
Marian Balakowiczaab8c492005-10-28 22:30:33 +0200496
497int eth_initialize(bd_t *bis)
498{
Jon Loeliger54f35c22007-07-09 17:45:14 -0500499#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Marian Balakowiczcbdd1c82005-11-30 18:06:04 +0100500 miiphy_init();
501#endif
502
Marian Balakowiczaab8c492005-10-28 22:30:33 +0200503#if defined(CONFIG_AT91RM9200)
504 at91rm9200_miiphy_initialize(bis);
505#endif
Ben Warren3a918a62008-10-27 23:50:15 -0700506#if defined(CONFIG_PPC4xx_EMAC)
Marian Balakowiczaab8c492005-10-28 22:30:33 +0200507 emac4xx_miiphy_initialize(bis);
508#endif
509#if defined(CONFIG_MCF52x2)
510 mcf52x2_miiphy_initialize(bis);
511#endif
Wolfgang Denk81490f42008-07-13 23:07:35 +0200512#if defined(CONFIG_DRIVER_NS7520_ETHERNET)
Marian Balakowiczaab8c492005-10-28 22:30:33 +0200513 ns7520_miiphy_initialize(bis);
514#endif
Sergey Kubushyne8f39122007-08-10 20:26:18 +0200515#if defined(CONFIG_DRIVER_TI_EMAC)
Sandeep Paulraj4b26f052008-08-31 00:39:46 +0200516 davinci_eth_miiphy_initialize(bis);
Sergey Kubushyne8f39122007-08-10 20:26:18 +0200517#endif
Marian Balakowiczaab8c492005-10-28 22:30:33 +0200518 return 0;
519}
wdenkc6097192002-11-03 00:24:07 +0000520#endif