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