diff options
author | Stefan Roese <sr@denx.de> | 2019-05-03 08:42:17 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2019-05-09 07:34:38 +0200 |
commit | 170aca203058fe93960e4f49f2b1d7cf7a9bc9dc (patch) | |
tree | 4fb49bfa3949685938f45acb4553e262c8a6cd55 /configs/clearfog_defconfig | |
parent | 504bf790da08db9b4a443566cf6ef577f9c7996a (diff) | |
download | u-boot-170aca203058fe93960e4f49f2b1d7cf7a9bc9dc.tar.gz u-boot-170aca203058fe93960e4f49f2b1d7cf7a9bc9dc.tar.xz u-boot-170aca203058fe93960e4f49f2b1d7cf7a9bc9dc.zip |
arm: mvebu: clearfog: Enable BLK and DM support
This patch enables CONFIG_BLK and some DM enabled drivers on clearfog
to remove these compile warnings:
===================== WARNING ======================
This board does not use CONFIG_DM_MMC. Please update
the board to use CONFIG_DM_MMC before the v2019.04 release.
Failure to update by the deadline may result in board removal.
See doc/driver-model/MIGRATION.txt for more info.
====================================================
===================== WARNING ======================
This board does not use CONFIG_DM_USB. Please update
the board to use CONFIG_DM_USB before the v2019.07 release.
Failure to update by the deadline may result in board removal.
See doc/driver-model/MIGRATION.txt for more info.
====================================================
===================== WARNING ======================
This board does use CONFIG_LIBATA but has CONFIG_AHCI not
enabled. Please update the storage controller driver to use
CONFIG_AHCI before the v2019.07 release.
Failure to update by the deadline may result in board removal.
See doc/driver-model/MIGRATION.txt for more info.
====================================================
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'configs/clearfog_defconfig')
-rw-r--r-- | configs/clearfog_defconfig | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configs/clearfog_defconfig b/configs/clearfog_defconfig index ee3fb149e4..1806d95015 100644 --- a/configs/clearfog_defconfig +++ b/configs/clearfog_defconfig @@ -15,6 +15,7 @@ CONFIG_SPL=y CONFIG_DEBUG_UART_BASE=0xd0012000 CONFIG_DEBUG_UART_CLOCK=250000000 CONFIG_DEBUG_UART=y +CONFIG_AHCI=y CONFIG_DISTRO_DEFAULTS=y CONFIG_BOOTDELAY=3 CONFIG_SYS_CONSOLE_INFO_QUIET=y @@ -40,12 +41,13 @@ CONFIG_DEFAULT_DEVICE_TREE="armada-388-clearfog" CONFIG_ENV_IS_IN_MMC=y CONFIG_NET_RANDOM_ETHADDR=y CONFIG_SPL_OF_TRANSLATE=y -CONFIG_SCSI_AHCI=y +CONFIG_AHCI_MVEBU=y CONFIG_DM_GPIO=y CONFIG_DM_PCA953X=y CONFIG_DM_I2C=y CONFIG_SYS_I2C_MVTWSI=y CONFIG_SUPPORT_EMMC_BOOT=y +CONFIG_DM_MMC=y CONFIG_MMC_SDHCI=y CONFIG_MMC_SDHCI_SDMA=y CONFIG_MMC_SDHCI_MV=y |