From e7d4f4552510424392879b3e0c4acf462286bda2 Mon Sep 17 00:00:00 2001 From: Stefan Roese Date: Mon, 20 May 2019 09:53:31 +0200 Subject: arm: mvebu: helios4: Enable CONFIG_BLK and CONFIG_DM_MMC This patch enables CONFIG_BLK and CONFIG_DM_MMC on helios4 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. ==================================================== Signed-off-by: Stefan Roese Cc: Dennis Gilmore --- configs/helios4_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/helios4_defconfig b/configs/helios4_defconfig index 62c2979a515..3b1737b3857 100644 --- a/configs/helios4_defconfig +++ b/configs/helios4_defconfig @@ -44,6 +44,7 @@ CONFIG_DM_I2C=y CONFIG_I2C_SET_DEFAULT_BUS_NUM=y CONFIG_I2C_DEFAULT_BUS_NUMBER=0x1 CONFIG_SYS_I2C_MVTWSI=y +CONFIG_DM_MMC=y CONFIG_MMC_SDHCI=y CONFIG_MMC_SDHCI_SDMA=y CONFIG_MMC_SDHCI_MV=y -- cgit v1.2.3 From 0a60da960fead40a73e306ac5e6b5e399329a5d1 Mon Sep 17 00:00:00 2001 From: Mario Six Date: Mon, 20 May 2019 14:08:14 +0200 Subject: arm: mvebu: controlcenterdc: Update config Several drivers used by the ControlCenterDC board were converted to DM upstream. But the board had not been using these drivers yet. Update the board's config file to reflect these changes and use the DM version of these drivers. No further device tree updates are necessary, since the devices in question are already present in the device tree. This especially fixes the three compile warnings about CONFIG_DM_MMC, CONFIG_DM_USB, and CONFIG_AHCI for the ControlCenterDC board. Signed-off-by: Mario Six Signed-off-by: Stefan Roese --- configs/controlcenterdc_defconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configs/controlcenterdc_defconfig b/configs/controlcenterdc_defconfig index 7b94f22d9ec..326668d7426 100644 --- a/configs/controlcenterdc_defconfig +++ b/configs/controlcenterdc_defconfig @@ -12,6 +12,7 @@ CONFIG_DEBUG_UART_CLOCK=250000000 CONFIG_SPL_SPI_FLASH_SUPPORT=y CONFIG_SPL_SPI_SUPPORT=y CONFIG_DEBUG_UART=y +CONFIG_AHCI=y CONFIG_FIT=y CONFIG_FIT_SIGNATURE=y CONFIG_FIT_VERBOSE=y @@ -55,6 +56,7 @@ CONFIG_DM_I2C=y CONFIG_SYS_I2C_MVTWSI=y CONFIG_LED=y CONFIG_LED_GPIO=y +CONFIG_DM_MMC=y CONFIG_MMC_SDHCI=y CONFIG_MMC_SDHCI_MV=y CONFIG_SPI_FLASH=y -- cgit v1.2.3