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