summaryrefslogtreecommitdiff
path: root/drivers/net/smc911x.h
diff options
context:
space:
mode:
authorOlof Johansson <olof@lixom.net>2009-09-29 10:21:29 -0400
committerTom Rix <Tom.Rix@windriver.com>2009-10-04 10:51:31 -0500
commit4eb3af078267e103fb957cb831497cf7670fb3f4 (patch)
tree35abb7ed9ea90ddd4509c536b2ea12ceee12c53e /drivers/net/smc911x.h
parent54737ba17a8444175fa94d758b83f120bbea3351 (diff)
downloadu-boot-imx-4eb3af078267e103fb957cb831497cf7670fb3f4.zip
u-boot-imx-4eb3af078267e103fb957cb831497cf7670fb3f4.tar.gz
u-boot-imx-4eb3af078267e103fb957cb831497cf7670fb3f4.tar.bz2
SMC911X: Add chip auto detection
Refactor the smc911x driver to allow for detecting when the chip is missing. I.e. the detect_chip() function is called earlier and will abort gracefully when the Chip ID read returns all 1's. Signed-off-by: Olof Johansson <olof@lixom.net> Acked-by: Dirk Behme <dirk.behme@googlemail.com> Acked-by: Ben Warren <biggerbadderben@gmail.com>
Diffstat (limited to 'drivers/net/smc911x.h')
-rw-r--r--drivers/net/smc911x.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/net/smc911x.h b/drivers/net/smc911x.h
index 053e330..d5bca63 100644
--- a/drivers/net/smc911x.h
+++ b/drivers/net/smc911x.h
@@ -441,7 +441,10 @@ static int smc911x_detect_chip(struct eth_device *dev)
unsigned long val, i;
val = smc911x_reg_read(dev, BYTE_TEST);
- if (val != 0x87654321) {
+ if (val == 0xffffffff) {
+ /* Special case -- no chip present */
+ return -1;
+ } else if (val != 0x87654321) {
printf(DRIVERNAME ": Invalid chip endian 0x%08lx\n", val);
return -1;
}
@@ -455,7 +458,7 @@ static int smc911x_detect_chip(struct eth_device *dev)
return -1;
}
- printf(DRIVERNAME ": detected %s controller\n", chip_ids[i].name);
+ dev->priv = (void *)&chip_ids[i];
return 0;
}