]> git.sur5r.net Git - u-boot/blob - net/eth.c
7059123b4ee5a1ea51dc447cdf8141b0e6516358
[u-boot] / 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
28 #if (CONFIG_COMMANDS & CFG_CMD_NET) && defined(CONFIG_NET_MULTI)
29
30 #ifdef CFG_GT_6426x
31 extern int gt6426x_eth_initialize(bd_t *bis);
32 #endif
33
34 extern int au1x00_enet_initialize(bd_t*);
35 extern int dc21x4x_initialize(bd_t*);
36 extern int e1000_initialize(bd_t*);
37 extern int eepro100_initialize(bd_t*);
38 extern int eth_3com_initialize(bd_t*);
39 extern int fec_initialize(bd_t*);
40 extern int inca_switch_initialize(bd_t*);
41 extern int mpc5xxx_fec_initialize(bd_t*);
42 extern int mv6436x_eth_initialize(bd_t *);
43 extern int mv6446x_eth_initialize(bd_t *);
44 extern int natsemi_initialize(bd_t*);
45 extern int ns8382x_initialize(bd_t*);
46 extern int pcnet_initialize(bd_t*);
47 extern int plb2800_eth_initialize(bd_t*);
48 extern int ppc_4xx_eth_initialize(bd_t *);
49 extern int ppc_440x_eth_initialize(bd_t *);
50 extern int rtl8139_initialize(bd_t*);
51 extern int rtl8169_initialize(bd_t*);
52 extern int scc_initialize(bd_t*);
53 extern int skge_initialize(bd_t*);
54 extern int tsec_initialize(bd_t*, int);
55
56 static struct eth_device *eth_devices, *eth_current;
57
58 struct eth_device *eth_get_dev(void)
59 {
60         return eth_current;
61 }
62
63 int eth_get_dev_index (void)
64 {
65         struct eth_device *dev;
66         int num = 0;
67
68         if (!eth_devices) {
69                 return (-1);
70         }
71
72         for (dev = eth_devices; dev; dev = dev->next) {
73                 if (dev == eth_current)
74                         break;
75                 ++num;
76         }
77
78         if (dev) {
79                 return (num);
80         }
81
82         return (0);
83 }
84
85 int eth_register(struct eth_device* dev)
86 {
87         struct eth_device *d;
88
89         if (!eth_devices) {
90                 eth_current = eth_devices = dev;
91 #ifdef CONFIG_NET_MULTI
92                 /* update current ethernet name */
93                 {
94                         char *act = getenv("ethact");
95                         if (act == NULL || strcmp(act, eth_current->name) != 0)
96                                 setenv("ethact", eth_current->name);
97                 }
98 #endif
99         } else {
100                 for (d=eth_devices; d->next!=eth_devices; d=d->next);
101                 d->next = dev;
102         }
103
104         dev->state = ETH_STATE_INIT;
105         dev->next  = eth_devices;
106
107         return 0;
108 }
109
110 int eth_initialize(bd_t *bis)
111 {
112         unsigned char enetvar[32], env_enetaddr[6];
113         int i, eth_number = 0;
114         char *tmp, *end;
115
116         eth_devices = NULL;
117         eth_current = NULL;
118
119 #ifdef CONFIG_DB64360
120         mv6436x_eth_initialize(bis);
121 #endif
122 #ifdef CONFIG_DB64460
123         mv6446x_eth_initialize(bis);
124 #endif
125 #if defined(CONFIG_405GP) || defined(CONFIG_405EP) || \
126   ( defined(CONFIG_440) && !defined(CONFIG_NET_MULTI) )
127         ppc_4xx_eth_initialize(bis);
128 #endif
129 #if defined(CONFIG_440) && defined(CONFIG_NET_MULTI)
130         ppc_440x_eth_initialize(bis);
131 #endif
132 #ifdef CONFIG_INCA_IP_SWITCH
133         inca_switch_initialize(bis);
134 #endif
135 #ifdef CONFIG_PLB2800_ETHER
136         plb2800_eth_initialize(bis);
137 #endif
138 #ifdef SCC_ENET
139         scc_initialize(bis);
140 #endif
141 #if defined(FEC_ENET) || defined(CONFIG_ETHER_ON_FCC)
142         fec_initialize(bis);
143 #endif
144 #if defined(CONFIG_MPC5xxx_FEC)
145         mpc5xxx_fec_initialize(bis);
146 #endif
147 #if defined(CONFIG_SK98)
148         skge_initialize(bis);
149 #endif
150 #if defined(CONFIG_MPC85XX_TSEC1)
151         tsec_initialize(bis, 0);
152 #endif
153 #if defined(CONFIG_MPC85XX_TSEC2)
154         tsec_initialize(bis, 1);
155 #endif
156 #if defined(CONFIG_MPC85XX_FEC)
157         tsec_initialize(bis, 2);
158 #endif
159 #if defined(CONFIG_AU1X00)
160         au1x00_enet_initialize(bis);
161 #endif
162 #ifdef CONFIG_E1000
163         e1000_initialize(bis);
164 #endif
165 #ifdef CONFIG_EEPRO100
166         eepro100_initialize(bis);
167 #endif
168 #ifdef CONFIG_TULIP
169         dc21x4x_initialize(bis);
170 #endif
171 #ifdef CONFIG_3COM
172         eth_3com_initialize(bis);
173 #endif
174 #ifdef CONFIG_PCNET
175         pcnet_initialize(bis);
176 #endif
177 #ifdef CFG_GT_6426x
178         gt6426x_eth_initialize(bis);
179 #endif
180 #ifdef CONFIG_NATSEMI
181         natsemi_initialize(bis);
182 #endif
183 #ifdef CONFIG_NS8382X
184         ns8382x_initialize(bis);
185 #endif
186 #if defined(CONFIG_RTL8139)
187         rtl8139_initialize(bis);
188 #endif
189 #if defined(CONFIG_RTL8169)
190         rtl8169_initialize(bis);
191 #endif
192
193         if (!eth_devices) {
194                 puts ("No ethernet found.\n");
195         } else {
196                 struct eth_device *dev = eth_devices;
197                 char *ethprime = getenv ("ethprime");
198
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                 dev->enetaddr[0], dev->enetaddr[1],
289                 dev->enetaddr[2], dev->enetaddr[3],
290                 dev->enetaddr[4], dev->enetaddr[5]);
291
292         memcpy(dev->enetaddr, enetaddr, 6);
293 }
294
295 int eth_init(bd_t *bis)
296 {
297         struct eth_device* old_current;
298
299         if (!eth_current)
300                 return 0;
301
302         old_current = eth_current;
303         do {
304                 debug ("Trying %s\n", eth_current->name);
305
306                 if (eth_current->init(eth_current, bis)) {
307                         eth_current->state = ETH_STATE_ACTIVE;
308
309                         return 1;
310                 }
311                 debug  ("FAIL\n");
312
313                 eth_try_another(0);
314         } while (old_current != eth_current);
315
316         return 0;
317 }
318
319 void eth_halt(void)
320 {
321         if (!eth_current)
322                 return;
323
324         eth_current->halt(eth_current);
325
326         eth_current->state = ETH_STATE_PASSIVE;
327 }
328
329 int eth_send(volatile void *packet, int length)
330 {
331         if (!eth_current)
332                 return -1;
333
334         return eth_current->send(eth_current, packet, length);
335 }
336
337 int eth_rx(void)
338 {
339         if (!eth_current)
340                 return -1;
341
342         return eth_current->recv(eth_current);
343 }
344
345 void eth_try_another(int first_restart)
346 {
347         static struct eth_device *first_failed = NULL;
348
349         if (!eth_current)
350                 return;
351
352         if (first_restart) {
353                 first_failed = eth_current;
354         }
355
356         eth_current = eth_current->next;
357
358 #ifdef CONFIG_NET_MULTI
359         /* update current ethernet name */
360         {
361                 char *act = getenv("ethact");
362                 if (act == NULL || strcmp(act, eth_current->name) != 0)
363                         setenv("ethact", eth_current->name);
364         }
365 #endif
366
367         if (first_failed == eth_current) {
368                 NetRestartWrap = 1;
369         }
370 }
371
372 #ifdef CONFIG_NET_MULTI
373 void eth_set_current(void)
374 {
375         char *act;
376         struct eth_device* old_current;
377
378         if (!eth_current)       /* XXX no current */
379                 return;
380
381         act = getenv("ethact");
382         if (act != NULL) {
383                 old_current = eth_current;
384                 do {
385                         if (strcmp(eth_current->name, act) == 0)
386                                 return;
387                         eth_current = eth_current->next;
388                 } while (old_current != eth_current);
389         }
390
391         setenv("ethact", eth_current->name);
392 }
393 #endif
394
395 char *eth_get_name (void)
396 {
397         return (eth_current ? eth_current->name : "unknown");
398 }
399 #endif