]> git.sur5r.net Git - u-boot/blob - net/eth.c
Merge branch 'master' of git://www.denx.de/git/u-boot-coldfire
[u-boot] / net / eth.c
1 /*
2  * (C) Copyright 2001-2004
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>
27 #include <miiphy.h>
28
29 #if defined(CONFIG_CMD_NET) && defined(CONFIG_NET_MULTI)
30
31 #ifdef CFG_GT_6426x
32 extern int gt6426x_eth_initialize(bd_t *bis);
33 #endif
34
35 extern int au1x00_enet_initialize(bd_t*);
36 extern int dc21x4x_initialize(bd_t*);
37 extern int e1000_initialize(bd_t*);
38 extern int eepro100_initialize(bd_t*);
39 extern int eth_3com_initialize(bd_t*);
40 extern int fec_initialize(bd_t*);
41 extern int inca_switch_initialize(bd_t*);
42 extern int mpc5xxx_fec_initialize(bd_t*);
43 extern int mpc512x_fec_initialize(bd_t*);
44 extern int mpc8220_fec_initialize(bd_t*);
45 extern int mv6436x_eth_initialize(bd_t *);
46 extern int mv6446x_eth_initialize(bd_t *);
47 extern int natsemi_initialize(bd_t*);
48 extern int ns8382x_initialize(bd_t*);
49 extern int pcnet_initialize(bd_t*);
50 extern int plb2800_eth_initialize(bd_t*);
51 extern int ppc_4xx_eth_initialize(bd_t *);
52 extern int rtl8139_initialize(bd_t*);
53 extern int rtl8169_initialize(bd_t*);
54 extern int scc_initialize(bd_t*);
55 extern int skge_initialize(bd_t*);
56 extern int tsi108_eth_initialize(bd_t*);
57 extern int uli526x_initialize(bd_t *);
58 extern int tsec_initialize(bd_t*, int, char *);
59 extern int npe_initialize(bd_t *);
60 extern int uec_initialize(int);
61 extern int bfin_EMAC_initialize(bd_t *);
62 extern int atstk1000_eth_initialize(bd_t *);
63 extern int mcffec_initialize(bd_t*);
64 extern int mcdmafec_initialize(bd_t*);
65
66 #ifdef CONFIG_API
67 extern void (*push_packet)(volatile void *, int);
68
69 static struct {
70         uchar data[PKTSIZE];
71         int length;
72 } eth_rcv_bufs[PKTBUFSRX];
73
74 static unsigned int eth_rcv_current = 0, eth_rcv_last = 0;
75 #endif
76
77 static struct eth_device *eth_devices, *eth_current;
78
79 struct eth_device *eth_get_dev(void)
80 {
81         return eth_current;
82 }
83
84 struct eth_device *eth_get_dev_by_name(char *devname)
85 {
86         struct eth_device *dev, *target_dev;
87
88         if (!eth_devices)
89                 return NULL;
90
91         dev = eth_devices;
92         target_dev = NULL;
93         do {
94                 if (strcmp(devname, dev->name) == 0) {
95                         target_dev = dev;
96                         break;
97                 }
98                 dev = dev->next;
99         } while (dev != eth_devices);
100
101         return target_dev;
102 }
103
104 int eth_get_dev_index (void)
105 {
106         struct eth_device *dev;
107         int num = 0;
108
109         if (!eth_devices) {
110                 return (-1);
111         }
112
113         for (dev = eth_devices; dev; dev = dev->next) {
114                 if (dev == eth_current)
115                         break;
116                 ++num;
117         }
118
119         if (dev) {
120                 return (num);
121         }
122
123         return (0);
124 }
125
126 int eth_register(struct eth_device* dev)
127 {
128         struct eth_device *d;
129
130         if (!eth_devices) {
131                 eth_current = eth_devices = dev;
132 #ifdef CONFIG_NET_MULTI
133                 /* update current ethernet name */
134                 {
135                         char *act = getenv("ethact");
136                         if (act == NULL || strcmp(act, eth_current->name) != 0)
137                                 setenv("ethact", eth_current->name);
138                 }
139 #endif
140         } else {
141                 for (d=eth_devices; d->next!=eth_devices; d=d->next);
142                 d->next = dev;
143         }
144
145         dev->state = ETH_STATE_INIT;
146         dev->next  = eth_devices;
147
148         return 0;
149 }
150
151 int eth_initialize(bd_t *bis)
152 {
153         char enetvar[32];
154         unsigned char env_enetaddr[6];
155         int i, eth_number = 0;
156         char *tmp, *end;
157
158         eth_devices = NULL;
159         eth_current = NULL;
160
161         show_boot_progress (64);
162 #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
163         miiphy_init();
164 #endif
165
166 #if defined(CONFIG_DB64360) || defined(CONFIG_CPCI750)
167         mv6436x_eth_initialize(bis);
168 #endif
169 #if defined(CONFIG_DB64460) || defined(CONFIG_P3Mx)
170         mv6446x_eth_initialize(bis);
171 #endif
172 #if defined(CONFIG_4xx) && !defined(CONFIG_IOP480) && !defined(CONFIG_AP1000)
173         ppc_4xx_eth_initialize(bis);
174 #endif
175 #ifdef CONFIG_INCA_IP_SWITCH
176         inca_switch_initialize(bis);
177 #endif
178 #ifdef CONFIG_PLB2800_ETHER
179         plb2800_eth_initialize(bis);
180 #endif
181 #ifdef SCC_ENET
182         scc_initialize(bis);
183 #endif
184 #if defined(CONFIG_MPC5xxx_FEC)
185         mpc5xxx_fec_initialize(bis);
186 #endif
187 #if defined(CONFIG_MPC512x_FEC)
188         mpc512x_fec_initialize (bis);
189 #endif
190 #if defined(CONFIG_MPC8220_FEC)
191         mpc8220_fec_initialize(bis);
192 #endif
193 #if defined(CONFIG_SK98)
194         skge_initialize(bis);
195 #endif
196 #if defined(CONFIG_TSEC1)
197         tsec_initialize(bis, 0, CONFIG_TSEC1_NAME);
198 #endif
199 #if defined(CONFIG_TSEC2)
200         tsec_initialize(bis, 1, CONFIG_TSEC2_NAME);
201 #endif
202 #if defined(CONFIG_MPC85XX_FEC)
203         tsec_initialize(bis, 2, CONFIG_MPC85XX_FEC_NAME);
204 #else
205 #    if defined(CONFIG_TSEC3)
206         tsec_initialize(bis, 2, CONFIG_TSEC3_NAME);
207 #    endif
208 #    if defined(CONFIG_TSEC4)
209         tsec_initialize(bis, 3, CONFIG_TSEC4_NAME);
210 #    endif
211 #endif
212 #if defined(CONFIG_UEC_ETH1)
213         uec_initialize(0);
214 #endif
215 #if defined(CONFIG_UEC_ETH2)
216         uec_initialize(1);
217 #endif
218 #if defined(CONFIG_UEC_ETH3)
219         uec_initialize(2);
220 #endif
221 #if defined(CONFIG_UEC_ETH4)
222         uec_initialize(3);
223 #endif
224
225 #if defined(FEC_ENET) || defined(CONFIG_ETHER_ON_FCC)
226         fec_initialize(bis);
227 #endif
228 #if defined(CONFIG_AU1X00)
229         au1x00_enet_initialize(bis);
230 #endif
231 #if defined(CONFIG_IXP4XX_NPE)
232         npe_initialize(bis);
233 #endif
234 #ifdef CONFIG_E1000
235         e1000_initialize(bis);
236 #endif
237 #ifdef CONFIG_EEPRO100
238         eepro100_initialize(bis);
239 #endif
240 #ifdef CONFIG_TULIP
241         dc21x4x_initialize(bis);
242 #endif
243 #ifdef CONFIG_3COM
244         eth_3com_initialize(bis);
245 #endif
246 #ifdef CONFIG_PCNET
247         pcnet_initialize(bis);
248 #endif
249 #ifdef CFG_GT_6426x
250         gt6426x_eth_initialize(bis);
251 #endif
252 #ifdef CONFIG_NATSEMI
253         natsemi_initialize(bis);
254 #endif
255 #ifdef CONFIG_NS8382X
256         ns8382x_initialize(bis);
257 #endif
258 #if defined(CONFIG_TSI108_ETH)
259         tsi108_eth_initialize(bis);
260 #endif
261 #if defined(CONFIG_ULI526X)
262         uli526x_initialize(bis);
263 #endif
264 #if defined(CONFIG_RTL8139)
265         rtl8139_initialize(bis);
266 #endif
267 #if defined(CONFIG_RTL8169)
268         rtl8169_initialize(bis);
269 #endif
270 #if defined(CONFIG_BF537)
271         bfin_EMAC_initialize(bis);
272 #endif
273 #if defined(CONFIG_ATSTK1000)
274         atstk1000_eth_initialize(bis);
275 #endif
276 #if defined(CONFIG_MCFFEC)
277         mcffec_initialize(bis);
278 #endif
279 #if defined(CONFIG_FSLDMAFEC)
280         mcdmafec_initialize(bis);
281 #endif
282
283         if (!eth_devices) {
284                 puts ("No ethernet found.\n");
285                 show_boot_progress (-64);
286         } else {
287                 struct eth_device *dev = eth_devices;
288                 char *ethprime = getenv ("ethprime");
289
290                 show_boot_progress (65);
291                 do {
292                         if (eth_number)
293                                 puts (", ");
294
295                         printf("%s", dev->name);
296
297                         if (ethprime && strcmp (dev->name, ethprime) == 0) {
298                                 eth_current = dev;
299                                 puts (" [PRIME]");
300                         }
301
302                         sprintf(enetvar, eth_number ? "eth%daddr" : "ethaddr", eth_number);
303                         tmp = getenv (enetvar);
304
305                         for (i=0; i<6; i++) {
306                                 env_enetaddr[i] = tmp ? simple_strtoul(tmp, &end, 16) : 0;
307                                 if (tmp)
308                                         tmp = (*end) ? end+1 : end;
309                         }
310
311                         if (memcmp(env_enetaddr, "\0\0\0\0\0\0", 6)) {
312                                 if (memcmp(dev->enetaddr, "\0\0\0\0\0\0", 6) &&
313                                     memcmp(dev->enetaddr, env_enetaddr, 6))
314                                 {
315                                         printf ("\nWarning: %s MAC addresses don't match:\n",
316                                                 dev->name);
317                                         printf ("Address in SROM is         "
318                                                "%02X:%02X:%02X:%02X:%02X:%02X\n",
319                                                dev->enetaddr[0], dev->enetaddr[1],
320                                                dev->enetaddr[2], dev->enetaddr[3],
321                                                dev->enetaddr[4], dev->enetaddr[5]);
322                                         printf ("Address in environment is  "
323                                                "%02X:%02X:%02X:%02X:%02X:%02X\n",
324                                                env_enetaddr[0], env_enetaddr[1],
325                                                env_enetaddr[2], env_enetaddr[3],
326                                                env_enetaddr[4], env_enetaddr[5]);
327                                 }
328
329                                 memcpy(dev->enetaddr, env_enetaddr, 6);
330                         }
331
332                         eth_number++;
333                         dev = dev->next;
334                 } while(dev != eth_devices);
335
336 #ifdef CONFIG_NET_MULTI
337                 /* update current ethernet name */
338                 if (eth_current) {
339                         char *act = getenv("ethact");
340                         if (act == NULL || strcmp(act, eth_current->name) != 0)
341                                 setenv("ethact", eth_current->name);
342                 } else
343                         setenv("ethact", NULL);
344 #endif
345
346                 putc ('\n');
347         }
348
349         return eth_number;
350 }
351
352 void eth_set_enetaddr(int num, char *addr) {
353         struct eth_device *dev;
354         unsigned char enetaddr[6];
355         char *end;
356         int i;
357
358         debug ("eth_set_enetaddr(num=%d, addr=%s)\n", num, addr);
359
360         if (!eth_devices)
361                 return;
362
363         for (i=0; i<6; i++) {
364                 enetaddr[i] = addr ? simple_strtoul(addr, &end, 16) : 0;
365                 if (addr)
366                         addr = (*end) ? end+1 : end;
367         }
368
369         dev = eth_devices;
370         while(num-- > 0) {
371                 dev = dev->next;
372
373                 if (dev == eth_devices)
374                         return;
375         }
376
377         debug ( "Setting new HW address on %s\n"
378                 "New Address is             %02X:%02X:%02X:%02X:%02X:%02X\n",
379                 dev->name,
380                 enetaddr[0], enetaddr[1],
381                 enetaddr[2], enetaddr[3],
382                 enetaddr[4], enetaddr[5]);
383
384         memcpy(dev->enetaddr, enetaddr, 6);
385 }
386 #ifdef CONFIG_MCAST_TFTP
387 /* Multicast.
388  * mcast_addr: multicast ipaddr from which multicast Mac is made
389  * join: 1=join, 0=leave.
390  */
391 int eth_mcast_join( IPaddr_t mcast_ip, u8 join)
392 {
393  u8 mcast_mac[6];
394         if (!eth_current || !eth_current->mcast)
395                 return -1;
396         mcast_mac[5] = htonl(mcast_ip) & 0xff;
397         mcast_mac[4] = (htonl(mcast_ip)>>8) & 0xff;
398         mcast_mac[3] = (htonl(mcast_ip)>>16) & 0x7f;
399         mcast_mac[2] = 0x5e;
400         mcast_mac[1] = 0x0;
401         mcast_mac[0] = 0x1;
402         return eth_current->mcast(eth_current, mcast_mac, join);
403 }
404
405 /* the 'way' for ethernet-CRC-32. Spliced in from Linux lib/crc32.c
406  * and this is the ethernet-crc method needed for TSEC -- and perhaps
407  * some other adapter -- hash tables
408  */
409 #define CRCPOLY_LE 0xedb88320
410 u32 ether_crc (size_t len, unsigned char const *p)
411 {
412         int i;
413         u32 crc;
414         crc = ~0;
415         while (len--) {
416                 crc ^= *p++;
417                 for (i = 0; i < 8; i++)
418                         crc = (crc >> 1) ^ ((crc & 1) ? CRCPOLY_LE : 0);
419         }
420         /* an reverse the bits, cuz of way they arrive -- last-first */
421         crc = (crc >> 16) | (crc << 16);
422         crc = (crc >> 8 & 0x00ff00ff) | (crc << 8 & 0xff00ff00);
423         crc = (crc >> 4 & 0x0f0f0f0f) | (crc << 4 & 0xf0f0f0f0);
424         crc = (crc >> 2 & 0x33333333) | (crc << 2 & 0xcccccccc);
425         crc = (crc >> 1 & 0x55555555) | (crc << 1 & 0xaaaaaaaa);
426         return crc;
427 }
428
429 #endif
430
431
432 int eth_init(bd_t *bis)
433 {
434         struct eth_device* old_current;
435
436         if (!eth_current)
437                 return -1;
438
439         old_current = eth_current;
440         do {
441                 debug ("Trying %s\n", eth_current->name);
442
443                 if (eth_current->init(eth_current,bis) >= 0) {
444                         eth_current->state = ETH_STATE_ACTIVE;
445
446                         return 0;
447                 }
448                 debug  ("FAIL\n");
449
450                 eth_try_another(0);
451         } while (old_current != eth_current);
452
453         return -1;
454 }
455
456 void eth_halt(void)
457 {
458         if (!eth_current)
459                 return;
460
461         eth_current->halt(eth_current);
462
463         eth_current->state = ETH_STATE_PASSIVE;
464 }
465
466 int eth_send(volatile void *packet, int length)
467 {
468         if (!eth_current)
469                 return -1;
470
471         return eth_current->send(eth_current, packet, length);
472 }
473
474 int eth_rx(void)
475 {
476         if (!eth_current)
477                 return -1;
478
479         return eth_current->recv(eth_current);
480 }
481
482 #ifdef CONFIG_API
483 static void eth_save_packet(volatile void *packet, int length)
484 {
485         volatile char *p = packet;
486         int i;
487
488         if ((eth_rcv_last+1) % PKTBUFSRX == eth_rcv_current)
489                 return;
490
491         if (PKTSIZE < length)
492                 return;
493
494         for (i = 0; i < length; i++)
495                 eth_rcv_bufs[eth_rcv_last].data[i] = p[i];
496
497         eth_rcv_bufs[eth_rcv_last].length = length;
498         eth_rcv_last = (eth_rcv_last + 1) % PKTBUFSRX;
499 }
500
501 int eth_receive(volatile void *packet, int length)
502 {
503         volatile char *p = packet;
504         void *pp = push_packet;
505         int i;
506
507         if (eth_rcv_current == eth_rcv_last) {
508                 push_packet = eth_save_packet;
509                 eth_rx();
510                 push_packet = pp;
511
512                 if (eth_rcv_current == eth_rcv_last)
513                         return -1;
514         }
515
516         if (length < eth_rcv_bufs[eth_rcv_current].length)
517                 return -1;
518
519         length = eth_rcv_bufs[eth_rcv_current].length;
520
521         for (i = 0; i < length; i++)
522                 p[i] = eth_rcv_bufs[eth_rcv_current].data[i];
523
524         eth_rcv_current = (eth_rcv_current + 1) % PKTBUFSRX;
525         return length;
526 }
527 #endif /* CONFIG_API */
528
529 void eth_try_another(int first_restart)
530 {
531         static struct eth_device *first_failed = NULL;
532         char *ethrotate;
533
534         /*
535          * Do not rotate between network interfaces when
536          * 'ethrotate' variable is set to 'no'.
537          */
538         if (((ethrotate = getenv ("ethrotate")) != NULL) &&
539             (strcmp(ethrotate, "no") == 0))
540                 return;
541
542         if (!eth_current)
543                 return;
544
545         if (first_restart) {
546                 first_failed = eth_current;
547         }
548
549         eth_current = eth_current->next;
550
551 #ifdef CONFIG_NET_MULTI
552         /* update current ethernet name */
553         {
554                 char *act = getenv("ethact");
555                 if (act == NULL || strcmp(act, eth_current->name) != 0)
556                         setenv("ethact", eth_current->name);
557         }
558 #endif
559
560         if (first_failed == eth_current) {
561                 NetRestartWrap = 1;
562         }
563 }
564
565 #ifdef CONFIG_NET_MULTI
566 void eth_set_current(void)
567 {
568         char *act;
569         struct eth_device* old_current;
570
571         if (!eth_current)       /* XXX no current */
572                 return;
573
574         act = getenv("ethact");
575         if (act != NULL) {
576                 old_current = eth_current;
577                 do {
578                         if (strcmp(eth_current->name, act) == 0)
579                                 return;
580                         eth_current = eth_current->next;
581                 } while (old_current != eth_current);
582         }
583
584         setenv("ethact", eth_current->name);
585 }
586 #endif
587
588 char *eth_get_name (void)
589 {
590         return (eth_current ? eth_current->name : "unknown");
591 }
592 #elif defined(CONFIG_CMD_NET) && !defined(CONFIG_NET_MULTI)
593
594 extern int at91rm9200_miiphy_initialize(bd_t *bis);
595 extern int emac4xx_miiphy_initialize(bd_t *bis);
596 extern int mcf52x2_miiphy_initialize(bd_t *bis);
597 extern int ns7520_miiphy_initialize(bd_t *bis);
598 extern int dm644x_eth_miiphy_initialize(bd_t *bis);
599
600
601 int eth_initialize(bd_t *bis)
602 {
603 #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
604         miiphy_init();
605 #endif
606
607 #if defined(CONFIG_AT91RM9200)
608         at91rm9200_miiphy_initialize(bis);
609 #endif
610 #if defined(CONFIG_4xx) && !defined(CONFIG_IOP480) \
611         && !defined(CONFIG_AP1000) && !defined(CONFIG_405)
612         emac4xx_miiphy_initialize(bis);
613 #endif
614 #if defined(CONFIG_MCF52x2)
615         mcf52x2_miiphy_initialize(bis);
616 #endif
617 #if defined(CONFIG_NETARM)
618         ns7520_miiphy_initialize(bis);
619 #endif
620 #if defined(CONFIG_DRIVER_TI_EMAC)
621         dm644x_eth_miiphy_initialize(bis);
622 #endif
623         return 0;
624 }
625 #endif