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