wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1 | /* |
wdenk | d4ca31c | 2004-01-02 14:00:00 +0000 | [diff] [blame] | 2 | * (C) Copyright 2001-2004 |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 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 |
| 31 | extern int gt6426x_eth_initialize(bd_t *bis); |
| 32 | #endif |
| 33 | |
wdenk | 3a473b2 | 2004-01-03 00:43:19 +0000 | [diff] [blame] | 34 | extern int au1x00_enet_initialize(bd_t*); |
| 35 | extern int dc21x4x_initialize(bd_t*); |
wdenk | 682011f | 2003-06-03 23:54:09 +0000 | [diff] [blame] | 36 | extern int e1000_initialize(bd_t*); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 37 | extern int eepro100_initialize(bd_t*); |
wdenk | 3a473b2 | 2004-01-03 00:43:19 +0000 | [diff] [blame] | 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 *); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 44 | extern int natsemi_initialize(bd_t*); |
| 45 | extern int ns8382x_initialize(bd_t*); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 46 | extern int pcnet_initialize(bd_t*); |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 47 | extern int plb2800_eth_initialize(bd_t*); |
wdenk | 3a473b2 | 2004-01-03 00:43:19 +0000 | [diff] [blame] | 48 | extern int ppc_4xx_eth_initialize(bd_t *); |
wdenk | ba56f62 | 2004-02-06 23:19:44 +0000 | [diff] [blame] | 49 | extern int ppc_440x_eth_initialize(bd_t *); |
wdenk | 3a473b2 | 2004-01-03 00:43:19 +0000 | [diff] [blame] | 50 | extern int rtl8139_initialize(bd_t*); |
| 51 | extern int scc_initialize(bd_t*); |
wdenk | 7152b1d | 2003-09-05 23:19:14 +0000 | [diff] [blame] | 52 | extern int skge_initialize(bd_t*); |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 53 | extern int tsec_initialize(bd_t*); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 54 | |
| 55 | static struct eth_device *eth_devices, *eth_current; |
| 56 | |
| 57 | struct eth_device *eth_get_dev(void) |
| 58 | { |
| 59 | return eth_current; |
| 60 | } |
| 61 | |
| 62 | int eth_get_dev_index (void) |
| 63 | { |
| 64 | struct eth_device *dev; |
| 65 | int num = 0; |
| 66 | |
| 67 | if (!eth_devices) { |
| 68 | return (-1); |
| 69 | } |
| 70 | |
| 71 | for (dev = eth_devices; dev; dev = dev->next) { |
| 72 | if (dev == eth_current) |
| 73 | break; |
| 74 | ++num; |
| 75 | } |
| 76 | |
| 77 | if (dev) { |
| 78 | return (num); |
| 79 | } |
| 80 | |
| 81 | return (0); |
| 82 | } |
| 83 | |
| 84 | int eth_register(struct eth_device* dev) |
| 85 | { |
| 86 | struct eth_device *d; |
| 87 | |
| 88 | if (!eth_devices) { |
| 89 | eth_current = eth_devices = dev; |
wdenk | a3d991b | 2004-04-15 21:48:45 +0000 | [diff] [blame^] | 90 | #ifdef CONFIG_NET_MULTI |
| 91 | /* update current ethernet name */ |
| 92 | { |
| 93 | char *act = getenv("ethact"); |
| 94 | if (act == NULL || strcmp(act, eth_current->name) != 0) |
| 95 | setenv("ethact", eth_current->name); |
| 96 | } |
| 97 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 98 | } else { |
| 99 | for (d=eth_devices; d->next!=eth_devices; d=d->next); |
| 100 | d->next = dev; |
| 101 | } |
| 102 | |
| 103 | dev->state = ETH_STATE_INIT; |
| 104 | dev->next = eth_devices; |
| 105 | |
| 106 | return 0; |
| 107 | } |
| 108 | |
| 109 | int eth_initialize(bd_t *bis) |
| 110 | { |
| 111 | unsigned char enetvar[32], env_enetaddr[6]; |
| 112 | int i, eth_number = 0; |
| 113 | char *tmp, *end; |
| 114 | |
| 115 | eth_devices = NULL; |
| 116 | eth_current = NULL; |
| 117 | |
wdenk | 3a473b2 | 2004-01-03 00:43:19 +0000 | [diff] [blame] | 118 | #ifdef CONFIG_DB64360 |
| 119 | mv6436x_eth_initialize(bis); |
| 120 | #endif |
| 121 | #ifdef CONFIG_DB64460 |
| 122 | mv6446x_eth_initialize(bis); |
| 123 | #endif |
wdenk | ba56f62 | 2004-02-06 23:19:44 +0000 | [diff] [blame] | 124 | #if defined(CONFIG_405GP) || defined(CONFIG_405EP) || ( defined(CONFIG_440) && !defined(CONFIG_NET_MULTI) ) |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 125 | ppc_4xx_eth_initialize(bis); |
wdenk | a3ed399 | 2003-06-05 19:37:36 +0000 | [diff] [blame] | 126 | #endif |
wdenk | ba56f62 | 2004-02-06 23:19:44 +0000 | [diff] [blame] | 127 | #if defined(CONFIG_440) && defined(CONFIG_NET_MULTI) |
| 128 | ppc_440x_eth_initialize(bis); |
| 129 | #endif |
wdenk | 6069ff2 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 130 | #ifdef CONFIG_INCA_IP_SWITCH |
| 131 | inca_switch_initialize(bis); |
| 132 | #endif |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 133 | #ifdef CONFIG_PLB2800_ETHER |
| 134 | plb2800_eth_initialize(bis); |
| 135 | #endif |
wdenk | 682011f | 2003-06-03 23:54:09 +0000 | [diff] [blame] | 136 | #ifdef CONFIG_E1000 |
| 137 | e1000_initialize(bis); |
| 138 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 139 | #ifdef CONFIG_EEPRO100 |
| 140 | eepro100_initialize(bis); |
| 141 | #endif |
| 142 | #ifdef CONFIG_TULIP |
| 143 | dc21x4x_initialize(bis); |
| 144 | #endif |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 145 | #ifdef CONFIG_3COM |
| 146 | eth_3com_initialize(bis); |
| 147 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 148 | #ifdef CONFIG_PCNET |
| 149 | pcnet_initialize(bis); |
| 150 | #endif |
| 151 | #ifdef CFG_GT_6426x |
| 152 | gt6426x_eth_initialize(bis); |
| 153 | #endif |
| 154 | #ifdef CONFIG_NATSEMI |
| 155 | natsemi_initialize(bis); |
| 156 | #endif |
| 157 | #ifdef CONFIG_NS8382X |
| 158 | ns8382x_initialize(bis); |
| 159 | #endif |
| 160 | #ifdef SCC_ENET |
| 161 | scc_initialize(bis); |
| 162 | #endif |
wdenk | aacf9a4 | 2003-01-17 16:27:01 +0000 | [diff] [blame] | 163 | #if defined(FEC_ENET) || defined(CONFIG_ETHER_ON_FCC) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 164 | fec_initialize(bis); |
| 165 | #endif |
wdenk | cbd8a35 | 2004-02-24 02:00:03 +0000 | [diff] [blame] | 166 | #if defined(CONFIG_MPC5xxx_FEC) |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 167 | mpc5xxx_fec_initialize(bis); |
| 168 | #endif |
wdenk | 7152b1d | 2003-09-05 23:19:14 +0000 | [diff] [blame] | 169 | #if defined(CONFIG_SK98) |
| 170 | skge_initialize(bis); |
| 171 | #endif |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 172 | #ifdef CONFIG_TSEC_ENET |
| 173 | tsec_initialize(bis); |
| 174 | #endif |
wdenk | 5da627a | 2003-10-09 20:09:04 +0000 | [diff] [blame] | 175 | #if defined(CONFIG_AU1X00) |
| 176 | au1x00_enet_initialize(bis); |
| 177 | #endif |
wdenk | 63f3491 | 2004-01-02 15:01:32 +0000 | [diff] [blame] | 178 | #if defined(CONFIG_RTL8139) |
| 179 | rtl8139_initialize(bis); |
| 180 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 181 | |
| 182 | if (!eth_devices) { |
| 183 | puts ("No ethernet found.\n"); |
| 184 | } else { |
| 185 | struct eth_device *dev = eth_devices; |
| 186 | char *ethprime = getenv ("ethprime"); |
| 187 | |
| 188 | do { |
| 189 | if (eth_number) |
| 190 | puts (", "); |
| 191 | |
| 192 | printf("%s", dev->name); |
| 193 | |
| 194 | if (ethprime && strcmp (dev->name, ethprime) == 0) { |
| 195 | eth_current = dev; |
| 196 | puts (" [PRIME]"); |
| 197 | } |
| 198 | |
| 199 | sprintf(enetvar, eth_number ? "eth%daddr" : "ethaddr", eth_number); |
| 200 | tmp = getenv (enetvar); |
| 201 | |
| 202 | for (i=0; i<6; i++) { |
| 203 | env_enetaddr[i] = tmp ? simple_strtoul(tmp, &end, 16) : 0; |
| 204 | if (tmp) |
| 205 | tmp = (*end) ? end+1 : end; |
| 206 | } |
| 207 | |
| 208 | if (memcmp(env_enetaddr, "\0\0\0\0\0\0", 6)) { |
| 209 | if (memcmp(dev->enetaddr, "\0\0\0\0\0\0", 6) && |
| 210 | memcmp(dev->enetaddr, env_enetaddr, 6)) |
| 211 | { |
wdenk | 6069ff2 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 212 | printf("\nWarning: %s MAC addresses don't match:\n", dev->name); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 213 | printf("Address in SROM is " |
| 214 | "%02X:%02X:%02X:%02X:%02X:%02X\n", |
| 215 | dev->enetaddr[0], dev->enetaddr[1], |
| 216 | dev->enetaddr[2], dev->enetaddr[3], |
| 217 | dev->enetaddr[4], dev->enetaddr[5]); |
| 218 | printf("Address in environment is " |
| 219 | "%02X:%02X:%02X:%02X:%02X:%02X\n", |
| 220 | env_enetaddr[0], env_enetaddr[1], |
| 221 | env_enetaddr[2], env_enetaddr[3], |
| 222 | env_enetaddr[4], env_enetaddr[5]); |
| 223 | } |
| 224 | |
| 225 | memcpy(dev->enetaddr, env_enetaddr, 6); |
| 226 | } |
| 227 | |
| 228 | eth_number++; |
| 229 | dev = dev->next; |
| 230 | } while(dev != eth_devices); |
| 231 | |
wdenk | a3d991b | 2004-04-15 21:48:45 +0000 | [diff] [blame^] | 232 | #ifdef CONFIG_NET_MULTI |
| 233 | /* update current ethernet name */ |
| 234 | if (eth_current) { |
| 235 | char *act = getenv("ethact"); |
| 236 | if (act == NULL || strcmp(act, eth_current->name) != 0) |
| 237 | setenv("ethact", eth_current->name); |
| 238 | } else |
| 239 | setenv("ethact", NULL); |
| 240 | #endif |
| 241 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 242 | putc ('\n'); |
| 243 | } |
| 244 | |
| 245 | return eth_number; |
| 246 | } |
| 247 | |
| 248 | void eth_set_enetaddr(int num, char *addr) { |
| 249 | struct eth_device *dev; |
| 250 | unsigned char enetaddr[6]; |
| 251 | char *end; |
| 252 | int i; |
| 253 | |
wdenk | d4ca31c | 2004-01-02 14:00:00 +0000 | [diff] [blame] | 254 | debug ("eth_set_enetaddr(num=%d, addr=%s)\n", num, addr); |
| 255 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 256 | if (!eth_devices) |
| 257 | return; |
| 258 | |
| 259 | for (i=0; i<6; i++) { |
| 260 | enetaddr[i] = addr ? simple_strtoul(addr, &end, 16) : 0; |
| 261 | if (addr) |
| 262 | addr = (*end) ? end+1 : end; |
| 263 | } |
| 264 | |
| 265 | dev = eth_devices; |
| 266 | while(num-- > 0) { |
| 267 | dev = dev->next; |
| 268 | |
| 269 | if (dev == eth_devices) |
| 270 | return; |
| 271 | } |
| 272 | |
wdenk | d4ca31c | 2004-01-02 14:00:00 +0000 | [diff] [blame] | 273 | debug ( "Setting new HW address on %s\n" |
| 274 | "New Address is %02X:%02X:%02X:%02X:%02X:%02X\n", |
| 275 | dev->name, |
| 276 | dev->enetaddr[0], dev->enetaddr[1], |
| 277 | dev->enetaddr[2], dev->enetaddr[3], |
| 278 | dev->enetaddr[4], dev->enetaddr[5]); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 279 | |
| 280 | memcpy(dev->enetaddr, enetaddr, 6); |
| 281 | } |
| 282 | |
| 283 | int eth_init(bd_t *bis) |
| 284 | { |
| 285 | struct eth_device* old_current; |
| 286 | |
| 287 | if (!eth_current) |
| 288 | return 0; |
| 289 | |
| 290 | old_current = eth_current; |
| 291 | do { |
wdenk | d4ca31c | 2004-01-02 14:00:00 +0000 | [diff] [blame] | 292 | debug ("Trying %s\n", eth_current->name); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 293 | |
| 294 | if (eth_current->init(eth_current, bis)) { |
| 295 | eth_current->state = ETH_STATE_ACTIVE; |
| 296 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 297 | return 1; |
| 298 | } |
wdenk | d4ca31c | 2004-01-02 14:00:00 +0000 | [diff] [blame] | 299 | debug ("FAIL\n"); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 300 | |
| 301 | eth_try_another(0); |
| 302 | } while (old_current != eth_current); |
| 303 | |
| 304 | return 0; |
| 305 | } |
| 306 | |
| 307 | void eth_halt(void) |
| 308 | { |
| 309 | if (!eth_current) |
| 310 | return; |
| 311 | |
| 312 | eth_current->halt(eth_current); |
| 313 | |
| 314 | eth_current->state = ETH_STATE_PASSIVE; |
| 315 | } |
| 316 | |
| 317 | int eth_send(volatile void *packet, int length) |
| 318 | { |
| 319 | if (!eth_current) |
| 320 | return -1; |
| 321 | |
| 322 | return eth_current->send(eth_current, packet, length); |
| 323 | } |
| 324 | |
| 325 | int eth_rx(void) |
| 326 | { |
| 327 | if (!eth_current) |
| 328 | return -1; |
| 329 | |
| 330 | return eth_current->recv(eth_current); |
| 331 | } |
| 332 | |
| 333 | void eth_try_another(int first_restart) |
| 334 | { |
| 335 | static struct eth_device *first_failed = NULL; |
| 336 | |
| 337 | if (!eth_current) |
| 338 | return; |
| 339 | |
| 340 | if (first_restart) |
| 341 | { |
| 342 | first_failed = eth_current; |
| 343 | } |
| 344 | |
| 345 | eth_current = eth_current->next; |
| 346 | |
wdenk | a3d991b | 2004-04-15 21:48:45 +0000 | [diff] [blame^] | 347 | #ifdef CONFIG_NET_MULTI |
| 348 | /* update current ethernet name */ |
| 349 | { |
| 350 | char *act = getenv("ethact"); |
| 351 | if (act == NULL || strcmp(act, eth_current->name) != 0) |
| 352 | setenv("ethact", eth_current->name); |
| 353 | } |
| 354 | #endif |
| 355 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 356 | if (first_failed == eth_current) |
| 357 | { |
| 358 | NetRestartWrap = 1; |
| 359 | } |
| 360 | } |
| 361 | |
wdenk | a3d991b | 2004-04-15 21:48:45 +0000 | [diff] [blame^] | 362 | #ifdef CONFIG_NET_MULTI |
| 363 | void eth_set_current(void) |
| 364 | { |
| 365 | char *act; |
| 366 | struct eth_device* old_current; |
| 367 | |
| 368 | if (!eth_current) /* XXX no current */ |
| 369 | return; |
| 370 | |
| 371 | act = getenv("ethact"); |
| 372 | if (act != NULL) { |
| 373 | old_current = eth_current; |
| 374 | do { |
| 375 | if (strcmp(eth_current->name, act) == 0) |
| 376 | return; |
| 377 | eth_current = eth_current->next; |
| 378 | } while (old_current != eth_current); |
| 379 | } |
| 380 | |
| 381 | setenv("ethact", eth_current->name); |
| 382 | } |
| 383 | #endif |
| 384 | |
wdenk | 5bb226e | 2003-11-17 21:14:37 +0000 | [diff] [blame] | 385 | char *eth_get_name (void) |
| 386 | { |
| 387 | return (eth_current ? eth_current->name : "unknown"); |
| 388 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 389 | #endif |