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