summaryrefslogtreecommitdiffstats
path: root/lib_arm
diff options
context:
space:
mode:
authorLuigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>2009-10-10 12:42:21 +0200
committerBen Warren <biggerbadderben@gmail.com>2009-10-10 23:16:53 -0700
commit310cecb8ccdbc8a9be580e75b2fd362179d78535 (patch)
tree8aafcce0beeec078bb6c36cfdc9e27481b394938 /lib_arm
parent4ba31ab33ac824635fcb49ac609070a9ebcab7f0 (diff)
downloadblackbird-obmc-uboot-310cecb8ccdbc8a9be580e75b2fd362179d78535.tar.gz
blackbird-obmc-uboot-310cecb8ccdbc8a9be580e75b2fd362179d78535.zip
Add bb_miiphy_init call before any ethernet bring-up code.
Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com> Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
Diffstat (limited to 'lib_arm')
-rw-r--r--lib_arm/board.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib_arm/board.c b/lib_arm/board.c
index a0e56d5ae8..5e3d7f65b1 100644
--- a/lib_arm/board.c
+++ b/lib_arm/board.c
@@ -50,6 +50,10 @@
#include <onenand_uboot.h>
#include <mmc.h>
+#ifdef CONFIG_BITBANGMII
+#include <miiphy.h>
+#endif
+
#ifdef CONFIG_DRIVER_SMC91111
#include "../drivers/net/smc91111.h"
#endif
@@ -417,6 +421,9 @@ extern void davinci_eth_set_mac_addr (const u_int8_t *addr);
mmc_initialize (gd->bd);
#endif
+#ifdef CONFIG_BITBANGMII
+ bb_miiphy_init();
+#endif
#if defined(CONFIG_CMD_NET)
#if defined(CONFIG_NET_MULTI)
puts ("Net: ");
OpenPOWER on IntegriCloud