9
0
Fork 0
barebox/net/eth.c

151 lines
3.5 KiB
C
Raw Normal View History

2002-11-03 00:24:07 +00:00
/*
* (C) Copyright 2001-2004
2002-11-03 00:24:07 +00:00
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*/
#include <common.h>
#include <command.h>
#include <net.h>
#include <miiphy.h>
2002-11-03 00:24:07 +00:00
static struct eth_device *eth_current;
void eth_set_current(struct eth_device *eth)
{
eth_current = eth;
}
struct eth_device * eth_get_current(void)
{
return eth_current;
}
int eth_init(bd_t *bis)
{
if (!eth_current)
return 0;
eth_current->open(eth_current, bis);
return 1;
}
void eth_halt(void)
{
if (!eth_current)
return;
eth_current->halt(eth_current);
eth_current->state = ETH_STATE_PASSIVE;
}
int eth_send(volatile void *packet, int length)
{
if (!eth_current)
return -1;
return eth_current->send(eth_current, packet, length);
}
int eth_rx(void)
{
if (!eth_current)
return -1;
return eth_current->recv(eth_current);
}
2005-10-28 20:30:33 +00:00
extern int at91rm9200_miiphy_initialize(bd_t *bis);
extern int emac4xx_miiphy_initialize(bd_t *bis);
extern int mcf52x2_miiphy_initialize(bd_t *bis);
extern int ns7520_miiphy_initialize(bd_t *bis);
int eth_initialize(bd_t *bis)
{
unsigned char ethaddr_tmp[20];
unsigned char *ethaddr;
char *e = NULL;
int i;
if (!eth_current) {
printf("%s: no eth device set\n", __FUNCTION__);
return -1;
}
if (eth_current->init(eth_current, bis)) {
printf("failed to initialize network device\n");
return -1;
}
if (!eth_current->get_mac_address) {
printf("no get_mac_address found for current eth device\n");
return -1;
}
ethaddr = eth_current->enetaddr;
/* Try to get a MAC address from the eeprom set 'ethaddr' to it.
* If this fails we rely on 'ethaddr' being set by the user.
*/
if (eth_current->get_mac_address(eth_current, ethaddr) == 0) {
sprintf (ethaddr_tmp, "%02X:%02X:%02X:%02X:%02X:%02X",
ethaddr[0], ethaddr[1], ethaddr[2], ethaddr[3], ethaddr[4], ethaddr[5]);
printf("got MAC address from EEPROM: %s\n",ethaddr_tmp);
setenv ("ethaddr", ethaddr_tmp);
} else {
ethaddr = getenv ("ethaddr");
if (!ethaddr){
printf("could not get MAC address from device and ethaddr not set\n");
return -1;
}
printf("got MAC address from Environment: %s\n",ethaddr);
for(i = 0; i < 6; i++) {
eth_current->enetaddr[i] = ethaddr ? simple_strtoul (ethaddr, &e, 16) : 0;
if (ethaddr) {
ethaddr = (*e) ? e + 1 : e;
}
eth_current->set_mac_address(eth_current, eth_current->enetaddr);
}
}
#if defined(CONFIG_MII) || (CONFIG_COMMANDS & CFG_CMD_MII)
miiphy_init();
#endif
#if defined(CONFIG_DRIVER_NET_AT91_ETHER)
2005-10-28 20:30:33 +00:00
at91rm9200_miiphy_initialize(bis);
#endif
#if defined(CONFIG_4xx) && !defined(CONFIG_IOP480) \
&& !defined(CONFIG_AP1000) && !defined(CONFIG_405)
emac4xx_miiphy_initialize(bis);
#endif
#if defined(CONFIG_MCF52x2)
mcf52x2_miiphy_initialize(bis);
#endif
#if defined(CONFIG_NETARM)
ns7520_miiphy_initialize(bis);
#endif
return 0;
}