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