]> git.ipfire.org Git - people/ms/u-boot.git/blame - net/eth.c
Merge branch 'master' of git://git.denx.de/u-boot-ppc4xx
[people/ms/u-boot.git] / net / eth.c
CommitLineData
c609719b 1/*
d4ca31c4 2 * (C) Copyright 2001-2004
c609719b
WD
3 * 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>
d9785c14 27#include <miiphy.h>
c609719b 28
3f6e6993
MF
29void eth_parse_enetaddr(const char *addr, uchar *enetaddr)
30{
31 char *end;
32 int i;
33
34 for (i = 0; i < 6; ++i) {
35 enetaddr[i] = addr ? simple_strtoul(addr, &end, 16) : 0;
36 if (addr)
37 addr = (*end) ? end + 1 : end;
38 }
39}
40
41int eth_getenv_enetaddr(char *name, uchar *enetaddr)
42{
43 eth_parse_enetaddr(getenv(name), enetaddr);
44 return is_valid_ether_addr(enetaddr);
45}
46
47int eth_setenv_enetaddr(char *name, const uchar *enetaddr)
48{
49 char buf[20];
50
51 sprintf(buf, "%pM", enetaddr);
52
53 return setenv(name, buf);
54}
86848a74
MF
55
56int eth_getenv_enetaddr_by_index(int index, uchar *enetaddr)
57{
58 char enetvar[32];
59 sprintf(enetvar, index ? "eth%daddr" : "ethaddr", index);
60 return eth_getenv_enetaddr(enetvar, enetaddr);
61}
3f6e6993 62
6ac59c55 63#ifdef CONFIG_NET_MULTI
c609719b 64
dd35479a
BW
65/*
66 * CPU and board-specific Ethernet initializations. Aliased function
67 * signals caller to move on
68 */
69static int __def_eth_init(bd_t *bis)
70{
71 return -1;
72}
f9a109b3
PT
73int cpu_eth_init(bd_t *bis) __attribute__((weak, alias("__def_eth_init")));
74int board_eth_init(bd_t *bis) __attribute__((weak, alias("__def_eth_init")));
dd35479a 75
3a473b2a
WD
76extern int mv6436x_eth_initialize(bd_t *);
77extern int mv6446x_eth_initialize(bd_t *);
c609719b 78
f85b6071
RJ
79#ifdef CONFIG_API
80extern void (*push_packet)(volatile void *, int);
81
82static struct {
83 uchar data[PKTSIZE];
84 int length;
85} eth_rcv_bufs[PKTBUFSRX];
86
87static unsigned int eth_rcv_current = 0, eth_rcv_last = 0;
88#endif
89
c609719b
WD
90static struct eth_device *eth_devices, *eth_current;
91
92struct eth_device *eth_get_dev(void)
93{
94 return eth_current;
95}
96
63ff004c
MB
97struct eth_device *eth_get_dev_by_name(char *devname)
98{
99 struct eth_device *dev, *target_dev;
100
101 if (!eth_devices)
102 return NULL;
103
104 dev = eth_devices;
105 target_dev = NULL;
106 do {
107 if (strcmp(devname, dev->name) == 0) {
108 target_dev = dev;
109 break;
110 }
111 dev = dev->next;
112 } while (dev != eth_devices);
113
114 return target_dev;
115}
116
9e56986a
AF
117struct eth_device *eth_get_dev_by_index(int index)
118{
119 struct eth_device *dev, *target_dev;
120 int idx = 0;
121
122 if (!eth_devices)
123 return NULL;
124
125 dev = eth_devices;
126 target_dev = NULL;
127 do {
128 if (idx == index) {
129 target_dev = dev;
130 break;
131 }
132 dev = dev->next;
133 idx++;
134 } while (dev != eth_devices);
135
136 return target_dev;
137}
138
c609719b
WD
139int eth_get_dev_index (void)
140{
141 struct eth_device *dev;
142 int num = 0;
143
144 if (!eth_devices) {
145 return (-1);
146 }
147
148 for (dev = eth_devices; dev; dev = dev->next) {
149 if (dev == eth_current)
150 break;
151 ++num;
152 }
153
154 if (dev) {
155 return (num);
156 }
157
158 return (0);
159}
160
161int eth_register(struct eth_device* dev)
162{
163 struct eth_device *d;
164
165 if (!eth_devices) {
166 eth_current = eth_devices = dev;
a3d991bd
WD
167#ifdef CONFIG_NET_MULTI
168 /* update current ethernet name */
169 {
170 char *act = getenv("ethact");
171 if (act == NULL || strcmp(act, eth_current->name) != 0)
172 setenv("ethact", eth_current->name);
173 }
174#endif
c609719b
WD
175 } else {
176 for (d=eth_devices; d->next!=eth_devices; d=d->next);
177 d->next = dev;
178 }
179
180 dev->state = ETH_STATE_INIT;
181 dev->next = eth_devices;
182
183 return 0;
184}
185
186int eth_initialize(bd_t *bis)
187{
5ca2d095 188 unsigned char env_enetaddr[6];
3f6e6993 189 int eth_number = 0;
c609719b
WD
190
191 eth_devices = NULL;
192 eth_current = NULL;
193
fad63407 194 show_boot_progress (64);
643d1ab2 195#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
d9785c14
MB
196 miiphy_init();
197#endif
dd35479a
BW
198 /* Try board-specific initialization first. If it fails or isn't
199 * present, try the cpu-specific initialization */
200 if (board_eth_init(bis) < 0)
201 cpu_eth_init(bis);
d9785c14 202
1eac2a71 203#if defined(CONFIG_DB64360) || defined(CONFIG_CPCI750)
3a473b2a
WD
204 mv6436x_eth_initialize(bis);
205#endif
1eac2a71 206#if defined(CONFIG_DB64460) || defined(CONFIG_P3Mx)
3a473b2a 207 mv6446x_eth_initialize(bis);
c68a05fe 208#endif
c609719b
WD
209 if (!eth_devices) {
210 puts ("No ethernet found.\n");
fad63407 211 show_boot_progress (-64);
c609719b
WD
212 } else {
213 struct eth_device *dev = eth_devices;
214 char *ethprime = getenv ("ethprime");
215
fad63407 216 show_boot_progress (65);
c609719b
WD
217 do {
218 if (eth_number)
219 puts (", ");
220
221 printf("%s", dev->name);
222
223 if (ethprime && strcmp (dev->name, ethprime) == 0) {
224 eth_current = dev;
225 puts (" [PRIME]");
226 }
227
86848a74 228 eth_getenv_enetaddr_by_index(eth_number, env_enetaddr);
c609719b
WD
229
230 if (memcmp(env_enetaddr, "\0\0\0\0\0\0", 6)) {
231 if (memcmp(dev->enetaddr, "\0\0\0\0\0\0", 6) &&
232 memcmp(dev->enetaddr, env_enetaddr, 6))
233 {
baac607c
WD
234 printf ("\nWarning: %s MAC addresses don't match:\n",
235 dev->name);
3f6e6993
MF
236 printf ("Address in SROM is %pM\n",
237 dev->enetaddr);
238 printf ("Address in environment is %pM\n",
239 env_enetaddr);
c609719b
WD
240 }
241
242 memcpy(dev->enetaddr, env_enetaddr, 6);
243 }
244
245 eth_number++;
246 dev = dev->next;
247 } while(dev != eth_devices);
248
a3d991bd
WD
249#ifdef CONFIG_NET_MULTI
250 /* update current ethernet name */
251 if (eth_current) {
252 char *act = getenv("ethact");
253 if (act == NULL || strcmp(act, eth_current->name) != 0)
254 setenv("ethact", eth_current->name);
255 } else
256 setenv("ethact", NULL);
257#endif
258
c609719b
WD
259 putc ('\n');
260 }
261
262 return eth_number;
263}
264
53a5c424
DU
265#ifdef CONFIG_MCAST_TFTP
266/* Multicast.
267 * mcast_addr: multicast ipaddr from which multicast Mac is made
85eb5caf 268 * join: 1=join, 0=leave.
53a5c424
DU
269 */
270int eth_mcast_join( IPaddr_t mcast_ip, u8 join)
271{
272 u8 mcast_mac[6];
85eb5caf 273 if (!eth_current || !eth_current->mcast)
53a5c424
DU
274 return -1;
275 mcast_mac[5] = htonl(mcast_ip) & 0xff;
276 mcast_mac[4] = (htonl(mcast_ip)>>8) & 0xff;
277 mcast_mac[3] = (htonl(mcast_ip)>>16) & 0x7f;
278 mcast_mac[2] = 0x5e;
279 mcast_mac[1] = 0x0;
280 mcast_mac[0] = 0x1;
281 return eth_current->mcast(eth_current, mcast_mac, join);
282}
283
85eb5caf
WD
284/* the 'way' for ethernet-CRC-32. Spliced in from Linux lib/crc32.c
285 * and this is the ethernet-crc method needed for TSEC -- and perhaps
53a5c424
DU
286 * some other adapter -- hash tables
287 */
288#define CRCPOLY_LE 0xedb88320
289u32 ether_crc (size_t len, unsigned char const *p)
290{
291 int i;
292 u32 crc;
293 crc = ~0;
294 while (len--) {
295 crc ^= *p++;
296 for (i = 0; i < 8; i++)
297 crc = (crc >> 1) ^ ((crc & 1) ? CRCPOLY_LE : 0);
298 }
299 /* an reverse the bits, cuz of way they arrive -- last-first */
300 crc = (crc >> 16) | (crc << 16);
301 crc = (crc >> 8 & 0x00ff00ff) | (crc << 8 & 0xff00ff00);
302 crc = (crc >> 4 & 0x0f0f0f0f) | (crc << 4 & 0xf0f0f0f0);
303 crc = (crc >> 2 & 0x33333333) | (crc << 2 & 0xcccccccc);
304 crc = (crc >> 1 & 0x55555555) | (crc << 1 & 0xaaaaaaaa);
305 return crc;
306}
307
308#endif
309
c609719b
WD
310
311int eth_init(bd_t *bis)
312{
86848a74
MF
313 int eth_number;
314 struct eth_device *old_current, *dev;
c609719b 315
6bc11388
SR
316 if (!eth_current) {
317 puts ("No ethernet found.\n");
505be87a 318 return -1;
6bc11388 319 }
c609719b 320
86848a74
MF
321 /* Sync environment with network devices */
322 eth_number = 0;
323 dev = eth_devices;
324 do {
325 uchar env_enetaddr[6];
326
327 if (eth_getenv_enetaddr_by_index(eth_number, env_enetaddr))
328 memcpy(dev->enetaddr, env_enetaddr, 6);
329
330 ++eth_number;
331 dev = dev->next;
332 } while (dev != eth_devices);
333
c609719b
WD
334 old_current = eth_current;
335 do {
0ebf04c6 336 debug("Trying %s\n", eth_current->name);
c609719b 337
422b1a01 338 if (eth_current->init(eth_current,bis) >= 0) {
c609719b
WD
339 eth_current->state = ETH_STATE_ACTIVE;
340
505be87a 341 return 0;
c609719b 342 }
0ebf04c6 343 debug("FAIL\n");
c609719b
WD
344
345 eth_try_another(0);
346 } while (old_current != eth_current);
347
505be87a 348 return -1;
c609719b
WD
349}
350
351void eth_halt(void)
352{
353 if (!eth_current)
354 return;
355
356 eth_current->halt(eth_current);
357
358 eth_current->state = ETH_STATE_PASSIVE;
359}
360
361int eth_send(volatile void *packet, int length)
362{
363 if (!eth_current)
364 return -1;
365
366 return eth_current->send(eth_current, packet, length);
367}
368
369int eth_rx(void)
370{
371 if (!eth_current)
372 return -1;
373
374 return eth_current->recv(eth_current);
375}
376
f85b6071
RJ
377#ifdef CONFIG_API
378static void eth_save_packet(volatile void *packet, int length)
379{
380 volatile char *p = packet;
381 int i;
382
383 if ((eth_rcv_last+1) % PKTBUFSRX == eth_rcv_current)
384 return;
385
386 if (PKTSIZE < length)
387 return;
388
389 for (i = 0; i < length; i++)
390 eth_rcv_bufs[eth_rcv_last].data[i] = p[i];
391
392 eth_rcv_bufs[eth_rcv_last].length = length;
393 eth_rcv_last = (eth_rcv_last + 1) % PKTBUFSRX;
394}
395
396int eth_receive(volatile void *packet, int length)
397{
398 volatile char *p = packet;
399 void *pp = push_packet;
400 int i;
401
402 if (eth_rcv_current == eth_rcv_last) {
403 push_packet = eth_save_packet;
404 eth_rx();
405 push_packet = pp;
406
407 if (eth_rcv_current == eth_rcv_last)
408 return -1;
409 }
410
411 if (length < eth_rcv_bufs[eth_rcv_current].length)
412 return -1;
413
414 length = eth_rcv_bufs[eth_rcv_current].length;
415
416 for (i = 0; i < length; i++)
417 p[i] = eth_rcv_bufs[eth_rcv_current].data[i];
418
419 eth_rcv_current = (eth_rcv_current + 1) % PKTBUFSRX;
420 return length;
421}
422#endif /* CONFIG_API */
423
c609719b
WD
424void eth_try_another(int first_restart)
425{
426 static struct eth_device *first_failed = NULL;
e1692577
MF
427 char *ethrotate;
428
429 /*
430 * Do not rotate between network interfaces when
431 * 'ethrotate' variable is set to 'no'.
432 */
433 if (((ethrotate = getenv ("ethrotate")) != NULL) &&
434 (strcmp(ethrotate, "no") == 0))
435 return;
c609719b
WD
436
437 if (!eth_current)
438 return;
439
baac607c 440 if (first_restart) {
c609719b
WD
441 first_failed = eth_current;
442 }
443
444 eth_current = eth_current->next;
445
a3d991bd
WD
446#ifdef CONFIG_NET_MULTI
447 /* update current ethernet name */
448 {
449 char *act = getenv("ethact");
450 if (act == NULL || strcmp(act, eth_current->name) != 0)
451 setenv("ethact", eth_current->name);
452 }
453#endif
454
baac607c 455 if (first_failed == eth_current) {
c609719b
WD
456 NetRestartWrap = 1;
457 }
458}
459
a3d991bd
WD
460#ifdef CONFIG_NET_MULTI
461void eth_set_current(void)
462{
da95427c
HS
463 static char *act = NULL;
464 static int env_changed_id = 0;
a3d991bd 465 struct eth_device* old_current;
2f70c49e 466 int env_id;
a3d991bd
WD
467
468 if (!eth_current) /* XXX no current */
469 return;
470
2f70c49e
HS
471 env_id = get_env_id();
472 if ((act == NULL) || (env_changed_id != env_id)) {
473 act = getenv("ethact");
474 env_changed_id = env_id;
475 }
a3d991bd
WD
476 if (act != NULL) {
477 old_current = eth_current;
478 do {
479 if (strcmp(eth_current->name, act) == 0)
480 return;
481 eth_current = eth_current->next;
482 } while (old_current != eth_current);
483 }
484
485 setenv("ethact", eth_current->name);
486}
487#endif
488
5bb226e8
WD
489char *eth_get_name (void)
490{
491 return (eth_current ? eth_current->name : "unknown");
492}
6ac59c55
MF
493
494#else /* !CONFIG_NET_MULTI */
63ff004c 495
3bd0a877
BW
496#warning Ethernet driver is deprecated. Please update to use CONFIG_NET_MULTI
497
63ff004c 498extern int at91rm9200_miiphy_initialize(bd_t *bis);
63ff004c
MB
499extern int mcf52x2_miiphy_initialize(bd_t *bis);
500extern int ns7520_miiphy_initialize(bd_t *bis);
c74b2108 501
63ff004c
MB
502
503int eth_initialize(bd_t *bis)
504{
643d1ab2 505#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
d9785c14
MB
506 miiphy_init();
507#endif
508
63ff004c
MB
509#if defined(CONFIG_AT91RM9200)
510 at91rm9200_miiphy_initialize(bis);
511#endif
63ff004c
MB
512#if defined(CONFIG_MCF52x2)
513 mcf52x2_miiphy_initialize(bis);
514#endif
25dbe98a 515#if defined(CONFIG_DRIVER_NS7520_ETHERNET)
63ff004c
MB
516 ns7520_miiphy_initialize(bis);
517#endif
518 return 0;
519}
c609719b 520#endif