2 * (C) Copyright 2001-2004
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * See file CREDITS for list of people who contributed to this
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.
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.
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,
28 #if (CONFIG_COMMANDS & CFG_CMD_NET) && defined(CONFIG_NET_MULTI)
31 extern int gt6426x_eth_initialize(bd_t *bis);
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 scc_initialize(bd_t*);
52 extern int skge_initialize(bd_t*);
53 extern int tsec_initialize(bd_t*);
55 static struct eth_device *eth_devices, *eth_current;
57 struct eth_device *eth_get_dev(void)
62 int eth_get_dev_index (void)
64 struct eth_device *dev;
71 for (dev = eth_devices; dev; dev = dev->next) {
72 if (dev == eth_current)
84 int eth_register(struct eth_device* dev)
89 eth_current = eth_devices = dev;
91 for (d=eth_devices; d->next!=eth_devices; d=d->next);
95 dev->state = ETH_STATE_INIT;
96 dev->next = eth_devices;
101 int eth_initialize(bd_t *bis)
103 unsigned char enetvar[32], env_enetaddr[6];
104 int i, eth_number = 0;
110 #ifdef CONFIG_DB64360
111 mv6436x_eth_initialize(bis);
113 #ifdef CONFIG_DB64460
114 mv6446x_eth_initialize(bis);
116 #if defined(CONFIG_405GP) || defined(CONFIG_405EP) || ( defined(CONFIG_440) && !defined(CONFIG_NET_MULTI) )
117 ppc_4xx_eth_initialize(bis);
119 #if defined(CONFIG_440) && defined(CONFIG_NET_MULTI)
120 ppc_440x_eth_initialize(bis);
122 #ifdef CONFIG_INCA_IP_SWITCH
123 inca_switch_initialize(bis);
125 #ifdef CONFIG_PLB2800_ETHER
126 plb2800_eth_initialize(bis);
129 e1000_initialize(bis);
131 #ifdef CONFIG_EEPRO100
132 eepro100_initialize(bis);
135 dc21x4x_initialize(bis);
138 eth_3com_initialize(bis);
141 pcnet_initialize(bis);
144 gt6426x_eth_initialize(bis);
146 #ifdef CONFIG_NATSEMI
147 natsemi_initialize(bis);
149 #ifdef CONFIG_NS8382X
150 ns8382x_initialize(bis);
155 #if defined(FEC_ENET) || defined(CONFIG_ETHER_ON_FCC)
158 #if defined(CONFIG_MPC5XXX_FEC)
159 mpc5xxx_fec_initialize(bis);
161 #if defined(CONFIG_SK98)
162 skge_initialize(bis);
164 #ifdef CONFIG_TSEC_ENET
165 tsec_initialize(bis);
167 #if defined(CONFIG_AU1X00)
168 au1x00_enet_initialize(bis);
170 #if defined(CONFIG_RTL8139)
171 rtl8139_initialize(bis);
175 puts ("No ethernet found.\n");
177 struct eth_device *dev = eth_devices;
178 char *ethprime = getenv ("ethprime");
184 printf("%s", dev->name);
186 if (ethprime && strcmp (dev->name, ethprime) == 0) {
191 sprintf(enetvar, eth_number ? "eth%daddr" : "ethaddr", eth_number);
192 tmp = getenv (enetvar);
194 for (i=0; i<6; i++) {
195 env_enetaddr[i] = tmp ? simple_strtoul(tmp, &end, 16) : 0;
197 tmp = (*end) ? end+1 : end;
200 if (memcmp(env_enetaddr, "\0\0\0\0\0\0", 6)) {
201 if (memcmp(dev->enetaddr, "\0\0\0\0\0\0", 6) &&
202 memcmp(dev->enetaddr, env_enetaddr, 6))
204 printf("\nWarning: %s MAC addresses don't match:\n", dev->name);
205 printf("Address in SROM is "
206 "%02X:%02X:%02X:%02X:%02X:%02X\n",
207 dev->enetaddr[0], dev->enetaddr[1],
208 dev->enetaddr[2], dev->enetaddr[3],
209 dev->enetaddr[4], dev->enetaddr[5]);
210 printf("Address in environment is "
211 "%02X:%02X:%02X:%02X:%02X:%02X\n",
212 env_enetaddr[0], env_enetaddr[1],
213 env_enetaddr[2], env_enetaddr[3],
214 env_enetaddr[4], env_enetaddr[5]);
217 memcpy(dev->enetaddr, env_enetaddr, 6);
222 } while(dev != eth_devices);
230 void eth_set_enetaddr(int num, char *addr) {
231 struct eth_device *dev;
232 unsigned char enetaddr[6];
236 debug ("eth_set_enetaddr(num=%d, addr=%s)\n", num, addr);
241 for (i=0; i<6; i++) {
242 enetaddr[i] = addr ? simple_strtoul(addr, &end, 16) : 0;
244 addr = (*end) ? end+1 : end;
251 if (dev == eth_devices)
255 debug ( "Setting new HW address on %s\n"
256 "New Address is %02X:%02X:%02X:%02X:%02X:%02X\n",
258 dev->enetaddr[0], dev->enetaddr[1],
259 dev->enetaddr[2], dev->enetaddr[3],
260 dev->enetaddr[4], dev->enetaddr[5]);
262 memcpy(dev->enetaddr, enetaddr, 6);
265 int eth_init(bd_t *bis)
267 struct eth_device* old_current;
272 old_current = eth_current;
274 debug ("Trying %s\n", eth_current->name);
276 if (eth_current->init(eth_current, bis)) {
277 eth_current->state = ETH_STATE_ACTIVE;
284 } while (old_current != eth_current);
294 eth_current->halt(eth_current);
296 eth_current->state = ETH_STATE_PASSIVE;
299 int eth_send(volatile void *packet, int length)
304 return eth_current->send(eth_current, packet, length);
312 return eth_current->recv(eth_current);
315 void eth_try_another(int first_restart)
317 static struct eth_device *first_failed = NULL;
324 first_failed = eth_current;
327 eth_current = eth_current->next;
329 if (first_failed == eth_current)
335 char *eth_get_name (void)
337 return (eth_current ? eth_current->name : "unknown");