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