blob: eabbf631b3978f1b177f57fb2e56427bc9f6301a [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
2 * (C) Copyright 2001, 2002
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
31extern int gt6426x_eth_initialize(bd_t *bis);
32#endif
33
wdenk682011f2003-06-03 23:54:09 +000034extern int e1000_initialize(bd_t*);
wdenkc6097192002-11-03 00:24:07 +000035extern int eepro100_initialize(bd_t*);
36extern int natsemi_initialize(bd_t*);
37extern int ns8382x_initialize(bd_t*);
38extern int dc21x4x_initialize(bd_t*);
wdenkc7de8292002-11-19 11:04:11 +000039extern int eth_3com_initialize(bd_t*);
wdenkc6097192002-11-03 00:24:07 +000040extern int pcnet_initialize(bd_t*);
41extern int fec_initialize(bd_t*);
42extern int scc_initialize(bd_t*);
wdenk6069ff22003-02-28 00:49:47 +000043extern int inca_switch_initialize(bd_t*);
wdenka3ed3992003-06-05 19:37:36 +000044extern int ppc_4xx_eth_initialize(bd_t *);
wdenk3e386912003-04-05 00:53:31 +000045extern int plb2800_eth_initialize(bd_t*);
wdenk945af8d2003-07-16 21:53:01 +000046extern int mpc5xxx_fec_initialize(bd_t*);
wdenk7152b1d2003-09-05 23:19:14 +000047extern int skge_initialize(bd_t*);
wdenk42d1f032003-10-15 23:53:47 +000048extern int tsec_initialize(bd_t*);
wdenk5da627a2003-10-09 20:09:04 +000049extern int au1x00_enet_initialize(bd_t*);
wdenkc6097192002-11-03 00:24:07 +000050
51static struct eth_device *eth_devices, *eth_current;
52
53struct eth_device *eth_get_dev(void)
54{
55 return eth_current;
56}
57
58int eth_get_dev_index (void)
59{
60 struct eth_device *dev;
61 int num = 0;
62
63 if (!eth_devices) {
64 return (-1);
65 }
66
67 for (dev = eth_devices; dev; dev = dev->next) {
68 if (dev == eth_current)
69 break;
70 ++num;
71 }
72
73 if (dev) {
74 return (num);
75 }
76
77 return (0);
78}
79
80int eth_register(struct eth_device* dev)
81{
82 struct eth_device *d;
83
84 if (!eth_devices) {
85 eth_current = eth_devices = dev;
86 } else {
87 for (d=eth_devices; d->next!=eth_devices; d=d->next);
88 d->next = dev;
89 }
90
91 dev->state = ETH_STATE_INIT;
92 dev->next = eth_devices;
93
94 return 0;
95}
96
97int eth_initialize(bd_t *bis)
98{
99 unsigned char enetvar[32], env_enetaddr[6];
100 int i, eth_number = 0;
101 char *tmp, *end;
102
103 eth_devices = NULL;
104 eth_current = NULL;
105
wdenk71f95112003-06-15 22:40:42 +0000106#if defined(CONFIG_405GP) || defined(CONFIG_440) || defined(CONFIG_405EP)
wdenk8bde7f72003-06-27 21:31:46 +0000107 ppc_4xx_eth_initialize(bis);
wdenka3ed3992003-06-05 19:37:36 +0000108#endif
wdenk6069ff22003-02-28 00:49:47 +0000109#ifdef CONFIG_INCA_IP_SWITCH
110 inca_switch_initialize(bis);
111#endif
wdenk3e386912003-04-05 00:53:31 +0000112#ifdef CONFIG_PLB2800_ETHER
113 plb2800_eth_initialize(bis);
114#endif
wdenk682011f2003-06-03 23:54:09 +0000115#ifdef CONFIG_E1000
116 e1000_initialize(bis);
117#endif
wdenkc6097192002-11-03 00:24:07 +0000118#ifdef CONFIG_EEPRO100
119 eepro100_initialize(bis);
120#endif
121#ifdef CONFIG_TULIP
122 dc21x4x_initialize(bis);
123#endif
wdenkc7de8292002-11-19 11:04:11 +0000124#ifdef CONFIG_3COM
125 eth_3com_initialize(bis);
126#endif
wdenkc6097192002-11-03 00:24:07 +0000127#ifdef CONFIG_PCNET
128 pcnet_initialize(bis);
129#endif
130#ifdef CFG_GT_6426x
131 gt6426x_eth_initialize(bis);
132#endif
133#ifdef CONFIG_NATSEMI
134 natsemi_initialize(bis);
135#endif
136#ifdef CONFIG_NS8382X
137 ns8382x_initialize(bis);
138#endif
139#ifdef SCC_ENET
140 scc_initialize(bis);
141#endif
wdenkaacf9a42003-01-17 16:27:01 +0000142#if defined(FEC_ENET) || defined(CONFIG_ETHER_ON_FCC)
wdenkc6097192002-11-03 00:24:07 +0000143 fec_initialize(bis);
144#endif
wdenk945af8d2003-07-16 21:53:01 +0000145#if defined(CONFIG_MPC5XXX_FEC)
146 mpc5xxx_fec_initialize(bis);
147#endif
wdenk7152b1d2003-09-05 23:19:14 +0000148#if defined(CONFIG_SK98)
149 skge_initialize(bis);
150#endif
wdenk42d1f032003-10-15 23:53:47 +0000151#ifdef CONFIG_TSEC_ENET
152 tsec_initialize(bis);
153#endif
wdenk5da627a2003-10-09 20:09:04 +0000154#if defined(CONFIG_AU1X00)
155 au1x00_enet_initialize(bis);
156#endif
wdenkc6097192002-11-03 00:24:07 +0000157
158 if (!eth_devices) {
159 puts ("No ethernet found.\n");
160 } else {
161 struct eth_device *dev = eth_devices;
162 char *ethprime = getenv ("ethprime");
163
164 do {
165 if (eth_number)
166 puts (", ");
167
168 printf("%s", dev->name);
169
170 if (ethprime && strcmp (dev->name, ethprime) == 0) {
171 eth_current = dev;
172 puts (" [PRIME]");
173 }
174
175 sprintf(enetvar, eth_number ? "eth%daddr" : "ethaddr", eth_number);
176 tmp = getenv (enetvar);
177
178 for (i=0; i<6; i++) {
179 env_enetaddr[i] = tmp ? simple_strtoul(tmp, &end, 16) : 0;
180 if (tmp)
181 tmp = (*end) ? end+1 : end;
182 }
183
184 if (memcmp(env_enetaddr, "\0\0\0\0\0\0", 6)) {
185 if (memcmp(dev->enetaddr, "\0\0\0\0\0\0", 6) &&
186 memcmp(dev->enetaddr, env_enetaddr, 6))
187 {
wdenk6069ff22003-02-28 00:49:47 +0000188 printf("\nWarning: %s MAC addresses don't match:\n", dev->name);
wdenkc6097192002-11-03 00:24:07 +0000189 printf("Address in SROM is "
190 "%02X:%02X:%02X:%02X:%02X:%02X\n",
191 dev->enetaddr[0], dev->enetaddr[1],
192 dev->enetaddr[2], dev->enetaddr[3],
193 dev->enetaddr[4], dev->enetaddr[5]);
194 printf("Address in environment is "
195 "%02X:%02X:%02X:%02X:%02X:%02X\n",
196 env_enetaddr[0], env_enetaddr[1],
197 env_enetaddr[2], env_enetaddr[3],
198 env_enetaddr[4], env_enetaddr[5]);
199 }
200
201 memcpy(dev->enetaddr, env_enetaddr, 6);
202 }
203
204 eth_number++;
205 dev = dev->next;
206 } while(dev != eth_devices);
207
208 putc ('\n');
209 }
210
211 return eth_number;
212}
213
214void eth_set_enetaddr(int num, char *addr) {
215 struct eth_device *dev;
216 unsigned char enetaddr[6];
217 char *end;
218 int i;
219
220#ifdef DEBUG
221 printf("eth_set_enetaddr(num=%d, addr=%s)\n", num, addr);
222#endif
223 if (!eth_devices)
224 return;
225
226 for (i=0; i<6; i++) {
227 enetaddr[i] = addr ? simple_strtoul(addr, &end, 16) : 0;
228 if (addr)
229 addr = (*end) ? end+1 : end;
230 }
231
232 dev = eth_devices;
233 while(num-- > 0) {
234 dev = dev->next;
235
236 if (dev == eth_devices)
237 return;
238 }
239
240#ifdef DEBUG
241 printf("Setting new HW address on %s\n", dev->name);
242 printf("New Address is "
243 "%02X:%02X:%02X:%02X:%02X:%02X\n",
244 dev->enetaddr[0], dev->enetaddr[1],
245 dev->enetaddr[2], dev->enetaddr[3],
246 dev->enetaddr[4], dev->enetaddr[5]);
247#endif
248
249 memcpy(dev->enetaddr, enetaddr, 6);
250}
251
252int eth_init(bd_t *bis)
253{
254 struct eth_device* old_current;
255
256 if (!eth_current)
257 return 0;
258
259 old_current = eth_current;
260 do {
261#ifdef DEBUG
262 printf("Trying %s\n", eth_current->name);
263#endif
264
265 if (eth_current->init(eth_current, bis)) {
266 eth_current->state = ETH_STATE_ACTIVE;
267
wdenkc6097192002-11-03 00:24:07 +0000268 return 1;
269 }
270
271#ifdef DEBUG
272 puts ("FAIL\n");
273#endif
274
275 eth_try_another(0);
276 } while (old_current != eth_current);
277
278 return 0;
279}
280
281void eth_halt(void)
282{
283 if (!eth_current)
284 return;
285
286 eth_current->halt(eth_current);
287
288 eth_current->state = ETH_STATE_PASSIVE;
289}
290
291int eth_send(volatile void *packet, int length)
292{
293 if (!eth_current)
294 return -1;
295
296 return eth_current->send(eth_current, packet, length);
297}
298
299int eth_rx(void)
300{
301 if (!eth_current)
302 return -1;
303
304 return eth_current->recv(eth_current);
305}
306
307void eth_try_another(int first_restart)
308{
309 static struct eth_device *first_failed = NULL;
310
311 if (!eth_current)
312 return;
313
314 if (first_restart)
315 {
316 first_failed = eth_current;
317 }
318
319 eth_current = eth_current->next;
320
321 if (first_failed == eth_current)
322 {
323 NetRestartWrap = 1;
324 }
325}
326
wdenk5bb226e2003-11-17 21:14:37 +0000327char *eth_get_name (void)
328{
329 return (eth_current ? eth_current->name : "unknown");
330}
wdenkc6097192002-11-03 00:24:07 +0000331#endif