summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBartlomiej Sieka <tur@semihalf.com>2007-01-23 14:11:22 +0100
committerBartlomiej Sieka <tur@semihalf.com>2007-01-23 14:11:22 +0100
commit0ed47bb119cd2c4c16edb2548789148f9e6dc9de (patch)
treee29e557e984cc24a3afd74f4e25153fa3aab3382
parent363d1d8f9c99b63daef81f5985cab3fc00edde5c (diff)
downloadblackbird-obmc-uboot-0ed47bb119cd2c4c16edb2548789148f9e6dc9de.tar.gz
blackbird-obmc-uboot-0ed47bb119cd2c4c16edb2548789148f9e6dc9de.zip
[iDMR] Using MII-related commands on iDRM board doesn't work now (e.g.,
"mii device" results in "Unexpected exception"). Fixing this properly requires some clean-up in the FEC drivers infrastructure for ColdFire, so this commit disables MII commads for now.
-rw-r--r--include/configs/idmr.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/include/configs/idmr.h b/include/configs/idmr.h
index 48915b32e3..8143f0d3fe 100644
--- a/include/configs/idmr.h
+++ b/include/configs/idmr.h
@@ -83,8 +83,7 @@
*/
#define CONFIG_COMMANDS ((CONFIG_CMD_DFL | \
CFG_CMD_PING | \
- CFG_CMD_NET | \
- CFG_CMD_MII) & \
+ CFG_CMD_NET) & \
~(CFG_CMD_LOADS | \
CFG_CMD_LOADB))
@@ -194,4 +193,9 @@
/* Port configuration */
#define CFG_FECI2C 0xF0
+
+#if (CONFIG_COMMANDS & CFG_CMD_MII)
+#error MII commands don't work on iDMR board and sholud not be enabled.
+#endif /* (CONFIG_COMMANDS & CFG_CMD_MII) */
+
#endif /* _IDMR_H */
OpenPOWER on IntegriCloud