diff options
author | Vignesh R <vigneshr@ti.com> | 2016-08-10 15:17:21 +0530 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-08-12 09:22:19 -0400 |
commit | 8f521bfc92cb20ce4de3610fd255495709fd417a (patch) | |
tree | 65c88acd81d7f96fc40c27163b365db9893ba2bd | |
parent | 257bdb3f665117a6c5b34a4fd797778f98bd5d22 (diff) | |
download | u-boot-imx-8f521bfc92cb20ce4de3610fd255495709fd417a.zip u-boot-imx-8f521bfc92cb20ce4de3610fd255495709fd417a.tar.gz u-boot-imx-8f521bfc92cb20ce4de3610fd255495709fd417a.tar.bz2 |
ARM: dra7xx_evm: Enable regulator DM support
Enable DM based regulator framework and also fixed regulator support as
some IPs like mmc use regulators for there functioning.
Signed-off-by: Vignesh R <vigneshr@ti.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | configs/dra7xx_evm_defconfig | 3 | ||||
-rw-r--r-- | configs/dra7xx_hs_evm_defconfig | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/configs/dra7xx_evm_defconfig b/configs/dra7xx_evm_defconfig index 81d2a0e..44393d7 100644 --- a/configs/dra7xx_evm_defconfig +++ b/configs/dra7xx_evm_defconfig @@ -59,3 +59,6 @@ CONFIG_SPL_LOAD_FIT=y CONFIG_OF_LIST="dra7-evm dra72-evm" CONFIG_DM_I2C=y CONFIG_PCF8575_GPIO=y +CONFIG_DM_REGULATOR=y +CONFIG_DM_REGULATOR_FIXED=y +CONFIG_CMD_REGULATOR=y diff --git a/configs/dra7xx_hs_evm_defconfig b/configs/dra7xx_hs_evm_defconfig index ab68b1c..ae08e6d 100644 --- a/configs/dra7xx_hs_evm_defconfig +++ b/configs/dra7xx_hs_evm_defconfig @@ -62,3 +62,6 @@ CONFIG_SPL_FIT_IMAGE_POST_PROCESS=y CONFIG_OF_LIST="dra7-evm dra72-evm" CONFIG_DM_I2C=y CONFIG_PCF8575_GPIO=y +CONFIG_DM_REGULATOR=y +CONFIG_DM_REGULATOR_FIXED=y +CONFIG_CMD_REGULATOR=y |