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