diff options
| author | Mugunthan V N <mugunthanvnm@ti.com> | 2013-07-08 16:04:43 +0530 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-07-26 16:39:11 -0400 | 
| commit | c9be62caba2c727e62b681add94a4814ea1e6651 (patch) | |
| tree | 83b076f0a3dea82bddeceac8bf63c28cc79c8dd9 | |
| parent | dec7f748356735efd3e2af269d8d0a21a44cf984 (diff) | |
| download | olio-uboot-2014.01-c9be62caba2c727e62b681add94a4814ea1e6651.tar.xz olio-uboot-2014.01-c9be62caba2c727e62b681add94a4814ea1e6651.zip | |
ARM: DRA7xx: Enable CPSW Ethernet support
Enabling CPSW Ethernet support in DRA7xx EVM.
Signed-off-by: Mugunthan V N <mugunthanvnm@ti.com>
| -rw-r--r-- | include/configs/dra7xx_evm.h | 19 | 
1 files changed, 19 insertions, 0 deletions
| diff --git a/include/configs/dra7xx_evm.h b/include/configs/dra7xx_evm.h index 70b204f64..51be73d5d 100644 --- a/include/configs/dra7xx_evm.h +++ b/include/configs/dra7xx_evm.h @@ -28,4 +28,23 @@  #define CONSOLEDEV		"ttyO0" +/* CPSW Ethernet */ +#define CONFIG_CMD_NET +#define CONFIG_CMD_DHCP +#define CONFIG_CMD_PING +#define CONFIG_CMD_MII +#define CONFIG_DRIVER_TI_CPSW +#define CONFIG_MII +#define CONFIG_BOOTP_DEFAULT +#define CONFIG_BOOTP_DNS +#define CONFIG_BOOTP_DNS2 +#define CONFIG_BOOTP_SEND_HOSTNAME +#define CONFIG_BOOTP_GATEWAY +#define CONFIG_BOOTP_SUBNETMASK +#define CONFIG_NET_RETRY_COUNT         10 +#define CONFIG_NET_MULTI +#define CONFIG_PHY_GIGE +#define CONFIG_PHYLIB +#define CONFIG_PHY_ADDR			2 +  #endif /* __CONFIG_DRA7XX_EVM_H */ |