diff options
Diffstat (limited to 'include/configs/da830evm.h')
| -rw-r--r-- | include/configs/da830evm.h | 25 | 
1 files changed, 23 insertions, 2 deletions
| diff --git a/include/configs/da830evm.h b/include/configs/da830evm.h index 198892ba5..00e92a685 100644 --- a/include/configs/da830evm.h +++ b/include/configs/da830evm.h @@ -36,6 +36,7 @@  #define CONFIG_MACH_DAVINCI_DA830_EVM  #define CONFIG_ARM926EJS		/* arm926ejs CPU core */  #define CONFIG_SOC_DA8XX		/* TI DA8xx SoC */ +#define CONFIG_SOC_DA830		/* TI DA830 SoC */  #define CONFIG_SYS_CLK_FREQ		clk_get(DAVINCI_ARM_CLKID)  #define CONFIG_SYS_OSCIN_FREQ		24000000  #define CONFIG_SYS_TIMERBASE		DAVINCI_TIMER0_BASE @@ -226,6 +227,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 +267,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 |