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