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 e1000_initialize(bd_t*);
35 extern int eepro100_initialize(bd_t*);
36 extern int natsemi_initialize(bd_t*);
37 extern int ns8382x_initialize(bd_t*);
38 extern int dc21x4x_initialize(bd_t*);
39 extern int eth_3com_initialize(bd_t*);
40 extern int pcnet_initialize(bd_t*);
41 extern int fec_initialize(bd_t*);
42 extern int scc_initialize(bd_t*);
43 extern int inca_switch_initialize(bd_t*);
44 extern int ppc_4xx_eth_initialize(bd_t *);
45 extern int plb2800_eth_initialize(bd_t*);
46 extern int mpc5xxx_fec_initialize(bd_t*);
47 extern int skge_initialize(bd_t*);
48 extern int tsec_initialize(bd_t*);
49 extern int au1x00_enet_initialize(bd_t*);
51 static struct eth_device *eth_devices, *eth_current;
53 struct eth_device *eth_get_dev(void)
58 int eth_get_dev_index (void)
60 struct eth_device *dev;
67 for (dev = eth_devices; dev; dev = dev->next) {
68 if (dev == eth_current)
80 int eth_register(struct eth_device* dev)
85 eth_current = eth_devices = dev;
87 for (d=eth_devices; d->next!=eth_devices; d=d->next);
91 dev->state = ETH_STATE_INIT;
92 dev->next = eth_devices;
97 int eth_initialize(bd_t *bis)
99 unsigned char enetvar[32], env_enetaddr[6];
100 int i, eth_number = 0;
106 #if defined(CONFIG_405GP) || defined(CONFIG_440) || defined(CONFIG_405EP)
107 ppc_4xx_eth_initialize(bis);
109 #ifdef CONFIG_INCA_IP_SWITCH
110 inca_switch_initialize(bis);
112 #ifdef CONFIG_PLB2800_ETHER
113 plb2800_eth_initialize(bis);
116 e1000_initialize(bis);
118 #ifdef CONFIG_EEPRO100
119 eepro100_initialize(bis);
122 dc21x4x_initialize(bis);
125 eth_3com_initialize(bis);
128 pcnet_initialize(bis);
131 gt6426x_eth_initialize(bis);
133 #ifdef CONFIG_NATSEMI
134 natsemi_initialize(bis);
136 #ifdef CONFIG_NS8382X
137 ns8382x_initialize(bis);
142 #if defined(FEC_ENET) || defined(CONFIG_ETHER_ON_FCC)
145 #if defined(CONFIG_MPC5XXX_FEC)
146 mpc5xxx_fec_initialize(bis);
148 #if defined(CONFIG_SK98)
149 skge_initialize(bis);
151 #ifdef CONFIG_TSEC_ENET
152 tsec_initialize(bis);
154 #if defined(CONFIG_AU1X00)
155 au1x00_enet_initialize(bis);
159 puts ("No ethernet found.\n");
161 struct eth_device *dev = eth_devices;
162 char *ethprime = getenv ("ethprime");
168 printf("%s", dev->name);
170 if (ethprime && strcmp (dev->name, ethprime) == 0) {
175 sprintf(enetvar, eth_number ? "eth%daddr" : "ethaddr", eth_number);
176 tmp = getenv (enetvar);
178 for (i=0; i<6; i++) {
179 env_enetaddr[i] = tmp ? simple_strtoul(tmp, &end, 16) : 0;
181 tmp = (*end) ? end+1 : end;
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))
188 printf("\nWarning: %s MAC addresses don't match:\n", dev->name);
189 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]);
201 memcpy(dev->enetaddr, env_enetaddr, 6);
206 } while(dev != eth_devices);
214 void eth_set_enetaddr(int num, char *addr) {
215 struct eth_device *dev;
216 unsigned char enetaddr[6];
220 debug ("eth_set_enetaddr(num=%d, addr=%s)\n", num, addr);
225 for (i=0; i<6; i++) {
226 enetaddr[i] = addr ? simple_strtoul(addr, &end, 16) : 0;
228 addr = (*end) ? end+1 : end;
235 if (dev == eth_devices)
239 debug ( "Setting new HW address on %s\n"
240 "New Address is %02X:%02X:%02X:%02X:%02X:%02X\n",
242 dev->enetaddr[0], dev->enetaddr[1],
243 dev->enetaddr[2], dev->enetaddr[3],
244 dev->enetaddr[4], dev->enetaddr[5]);
246 memcpy(dev->enetaddr, enetaddr, 6);
249 int eth_init(bd_t *bis)
251 struct eth_device* old_current;
256 old_current = eth_current;
258 debug ("Trying %s\n", eth_current->name);
260 if (eth_current->init(eth_current, bis)) {
261 eth_current->state = ETH_STATE_ACTIVE;
268 } while (old_current != eth_current);
278 eth_current->halt(eth_current);
280 eth_current->state = ETH_STATE_PASSIVE;
283 int eth_send(volatile void *packet, int length)
288 return eth_current->send(eth_current, packet, length);
296 return eth_current->recv(eth_current);
299 void eth_try_another(int first_restart)
301 static struct eth_device *first_failed = NULL;
308 first_failed = eth_current;
311 eth_current = eth_current->next;
313 if (first_failed == eth_current)
319 char *eth_get_name (void)
321 return (eth_current ? eth_current->name : "unknown");