diff options
author | Vishwanathrao Badarkhe, Manish <manishv.b@ti.com> | 2013-05-22 03:38:48 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-06-10 08:43:11 -0400 |
commit | 03e08d7cf6f0c41acb03d3b2c82f39a827a11a10 (patch) | |
tree | 9f685f64522bbf2794360dfd134d4fadaee7010f /include/configs | |
parent | e9090fa45a3d537edac0a7eecae75c9a4e75ec86 (diff) | |
download | u-boot-imx-03e08d7cf6f0c41acb03d3b2c82f39a827a11a10.zip u-boot-imx-03e08d7cf6f0c41acb03d3b2c82f39a827a11a10.tar.gz u-boot-imx-03e08d7cf6f0c41acb03d3b2c82f39a827a11a10.tar.bz2 |
da830: add MMC support
Add MMC support for da830 boards in order to perform
mmc operations(read,write and erase).
Signed-off-by: Vishwanathrao Badarkhe, Manish <manishv.b@ti.com>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/da830evm.h | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/include/configs/da830evm.h b/include/configs/da830evm.h index 198892b..28995a0 100644 --- a/include/configs/da830evm.h +++ b/include/configs/da830evm.h @@ -226,6 +226,28 @@ #define CONFIG_CMD_SAVEENV #endif +/* SD/MMC configuration */ +#ifndef CONFIG_USE_NAND +#define CONFIG_MMC +#define CONFIG_DAVINCI_MMC_SD1 +#define CONFIG_GENERIC_MMC +#define CONFIG_DAVINCI_MMC +#endif + +/* + * Enable MMC commands only when + * MMC support is present + */ +#if defined(CONFIG_MMC) || defined(CONFIG_USB_DA8XX) +#define CONFIG_DOS_PARTITION /* include support for FAT/storage */ +#define CONFIG_CMD_FAT /* include support for FAT cmd */ +#endif + +#ifdef CONFIG_MMC +#define CONFIG_CMD_MMC +#define CONFIG_CMD_EXT2 +#endif + #if !defined(CONFIG_USE_NAND) && \ !defined(CONFIG_USE_NOR) && \ !defined(CONFIG_USE_SPIFLASH) @@ -244,8 +266,6 @@ #define CONFIG_USB_STORAGE /* MSC class support */ #define CONFIG_CMD_STORAGE /* inclue support for usb-storage cmd */ -#define CONFIG_CMD_FAT /* inclue support for FAT/storage */ -#define CONFIG_DOS_PARTITION /* inclue support for FAT/storage */ #ifdef CONFIG_USB_KEYBOARD /* HID class support */ #define CONFIG_SYS_USB_EVENT_POLL |