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