diff options
author | Ajay Bhargav <[ajay.bhargav@einfochips.com]> | 2011-09-13 22:22:04 +0530 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-09-30 22:00:53 +0200 |
commit | aa0ecfeb9d60d82e095daa0d6271f77b2c25d3fb (patch) | |
tree | 5d5cf625b2f94bfce0f473b0a31dcad1317e5ba2 /include/configs | |
parent | 79788bb19ac0c68cef77bd92d3365bdf2989339d (diff) | |
download | u-boot-imx-aa0ecfeb9d60d82e095daa0d6271f77b2c25d3fb.zip u-boot-imx-aa0ecfeb9d60d82e095daa0d6271f77b2c25d3fb.tar.gz u-boot-imx-aa0ecfeb9d60d82e095daa0d6271f77b2c25d3fb.tar.bz2 |
Armada100: Enable Ethernet support for GplugD
This patch enables ethernet support for Marvell GplugD board. Network
related commands works.
Signed-off-by: Ajay Bhargav <ajay.bhargav@einfochips.com>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/gplugd.h | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/include/configs/gplugd.h b/include/configs/gplugd.h index cc14f49..3ad2de5 100644 --- a/include/configs/gplugd.h +++ b/include/configs/gplugd.h @@ -62,8 +62,20 @@ #define CONFIG_CMD_I2C #define CONFIG_CMD_AUTOSCRIPT #undef CONFIG_CMD_FPGA -#undef CONFIG_CMD_NET -#undef CONFIG_CMD_NFS + +/* Disable DCACHE */ +#define CONFIG_SYS_DCACHE_OFF + +/* Network configuration */ +#ifdef CONFIG_CMD_NET +#define CONFIG_CMD_PING +#define CONFIG_NET_MULTI +#define CONFIG_ARMADA100_FEC + +/* DHCP Support */ +#define CONFIG_CMD_DHCP +#define CONFIG_BOOTP_DHCP_REQUEST_DELAY 50000 +#endif /* CONFIG_CMD_NET */ /* * mv-common.h should be defined after CMD configs since it used them |