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