diff options
author | Jean-Jacques Hiblot <jjhiblot@ti.com> | 2018-02-27 17:05:49 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-03-13 21:59:29 -0400 |
commit | 3f0996291b1e630e9185adc7d2b10db92b15dee6 (patch) | |
tree | 3453bac696b9a818c60b03ac6ed0ee1ef2623b05 /configs | |
parent | a7b704a0b62a58cd5be1d2d3666e3fa845dc4923 (diff) | |
download | u-boot-3f0996291b1e630e9185adc7d2b10db92b15dee6.tar.gz u-boot-3f0996291b1e630e9185adc7d2b10db92b15dee6.tar.xz u-boot-3f0996291b1e630e9185adc7d2b10db92b15dee6.zip |
configs: dra7xx_evm: Enable support for the HS200 mmc mode in the SPL
Beside enabling the support for HS200 in mmc core, enabling the HS200
support in the SPL requires multi-dtb support in the SPL because pinctrl
and IOdelays vary across SOCs.
Also we need to make sure that the pinctrl properties arenot removed from
the dts by setting CONFIG_OF_SPL_REMOVE_PROPS to remove only clocks and
interrupts properties.
Signed-off-by: Jean-Jacques Hiblot <jjhiblot@ti.com>
Diffstat (limited to 'configs')
-rw-r--r-- | configs/dra7xx_evm_defconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configs/dra7xx_evm_defconfig b/configs/dra7xx_evm_defconfig index 1cc614f1c3..2b83a0cb55 100644 --- a/configs/dra7xx_evm_defconfig +++ b/configs/dra7xx_evm_defconfig @@ -34,6 +34,8 @@ CONFIG_CMD_SPL=y CONFIG_OF_CONTROL=y CONFIG_SPL_OF_CONTROL=y CONFIG_OF_LIST="dra7-evm dra72-evm dra72-evm-revc dra71-evm dra76-evm" +CONFIG_SPL_MULTI_DTB_FIT=y +CONFIG_OF_SPL_REMOVE_PROPS="clocks clock-names interrupt-parent" CONFIG_ENV_IS_IN_MMC=y CONFIG_DM=y CONFIG_SPL_DM=y @@ -52,6 +54,7 @@ CONFIG_DM_MMC=y CONFIG_MMC_IO_VOLTAGE=y CONFIG_MMC_UHS_SUPPORT=y CONFIG_MMC_HS200_SUPPORT=y +CONFIG_SPL_MMC_HS200_SUPPORT=y CONFIG_MMC_OMAP_HS=y CONFIG_DM_SPI_FLASH=y CONFIG_SPI_FLASH=y |