summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2011-02-23 18:03:58 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2011-03-03 16:15:56 +0100
commita0c1644d849ff777c6541853c54d3696a243d08c (patch)
tree02888a47c117362d54ddf737a208e2102244604e
parent065c2b470219081f6eabb332508822e6f01498e5 (diff)
downloadbarebox-a0c1644d849ff777c6541853c54d3696a243d08c.tar.gz
barebox-a0c1644d849ff777c6541853c54d3696a243d08c.tar.xz
dm9000: read the mac address from the register if none are specified
as barebox can be run as a second stage the first stage may have init it before so re-used it Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--drivers/net/dm9000.c18
1 files changed, 12 insertions, 6 deletions
diff --git a/drivers/net/dm9000.c b/drivers/net/dm9000.c
index b0e88227c9..c8d851781d 100644
--- a/drivers/net/dm9000.c
+++ b/drivers/net/dm9000.c
@@ -169,6 +169,7 @@ struct dm9000_priv {
void __iomem *iodata;
struct mii_device miidev;
int buswidth;
+ int srom;
};
#ifdef CONFIG_DM9000_DEBUG
@@ -433,12 +434,17 @@ static u16 read_srom_word(struct dm9000_priv *priv, int offset)
static int dm9000_get_ethaddr(struct eth_device *edev, unsigned char *adr)
{
struct dm9000_priv *priv = (struct dm9000_priv *)edev->priv;
- int i;
+ int i, oft;
- for (i = 0; i < 3; i++)
- ((u16 *) adr)[i] = read_srom_word(priv, i);
+ if (priv->srom) {
+ for (i = 0; i < 3; i++)
+ ((u16 *) adr)[i] = read_srom_word(priv, i);
+ } else {
+ for (i = 0, oft = 0x10; i < 6; i++, oft++)
+ adr[i] = DM9000_ior(priv, oft);
+ }
- return 0;
+ return 0;
}
static int dm9000_set_ethaddr(struct eth_device *edev, unsigned char *adr)
@@ -491,6 +497,7 @@ static int dm9000_probe(struct device_d *dev)
priv->buswidth = pdata->buswidth;
priv->iodata = (void *)pdata->iodata;
priv->iobase = (void *)pdata->iobase;
+ priv->srom = pdata->srom;
edev->init = dm9000_init_dev;
edev->open = dm9000_eth_open;
@@ -498,8 +505,7 @@ static int dm9000_probe(struct device_d *dev)
edev->recv = dm9000_eth_rx;
edev->halt = dm9000_eth_halt;
edev->set_ethaddr = dm9000_set_ethaddr;
- if (pdata->srom)
- edev->get_ethaddr = dm9000_get_ethaddr;
+ edev->get_ethaddr = dm9000_get_ethaddr;
/* RESET device */
dm9000_reset(priv);