diff options
author | Lokesh Vutla <lokeshvutla@ti.com> | 2017-02-10 15:07:20 (GMT) |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-03-21 11:15:57 (GMT) |
commit | 0a3f407a7f4246790775c172cbe5e1097b137bf9 (patch) | |
tree | 1e4ebde095dab1c4b80e95e49f3cf940dbc5b4c5 /include | |
parent | 881e7bccfbe3372e137dc36f4f7a224114308901 (diff) | |
download | u-boot-fsl-qoriq-0a3f407a7f4246790775c172cbe5e1097b137bf9.tar.xz |
configs: dra7xx_evm: Enable SPL_DM
Enable SPL_DM on all DRA7 based platforms.
Reviewed-by: Tom Rini <trini@konsulko.com>
Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/dra7xx_evm.h | 5 | ||||
-rw-r--r-- | include/configs/ti_omap5_common.h | 8 |
2 files changed, 1 insertions, 12 deletions
diff --git a/include/configs/dra7xx_evm.h b/include/configs/dra7xx_evm.h index d509afd..7d6f7ff 100644 --- a/include/configs/dra7xx_evm.h +++ b/include/configs/dra7xx_evm.h @@ -122,11 +122,6 @@ #define CONFIG_SF_DEFAULT_MODE SPI_MODE_0 #define CONFIG_QSPI_QUAD_SUPPORT -#ifdef CONFIG_SPL_BUILD -#undef CONFIG_DM_SPI -#undef CONFIG_DM_SPI_FLASH -#endif - /* * Default to using SPI for environment, etc. * 0x000000 - 0x040000 : QSPI.SPL (256KiB) diff --git a/include/configs/ti_omap5_common.h b/include/configs/ti_omap5_common.h index 7fb1bb6..97bd874 100644 --- a/include/configs/ti_omap5_common.h +++ b/include/configs/ti_omap5_common.h @@ -42,7 +42,7 @@ * Hardware drivers */ #define CONFIG_SYS_NS16550_CLK 48000000 -#if defined(CONFIG_SPL_BUILD) || !defined(CONFIG_DM_SERIAL) +#if !defined(CONFIG_DM_SERIAL) #define CONFIG_SYS_NS16550_SERIAL #define CONFIG_SYS_NS16550_REG_SIZE (-4) #endif @@ -160,14 +160,8 @@ #define CONFIG_SPL_NAND_AM33XX_BCH /* ELM support */ #endif -/* - * Disable MMC DM for SPL build and can be re-enabled after adding - * DM support in SPL - */ #ifdef CONFIG_SPL_BUILD -#undef CONFIG_DM_MMC #undef CONFIG_TIMER -#undef CONFIG_DM_ETH #endif #endif /* __CONFIG_TI_OMAP5_COMMON_H */ |