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