All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/3] arm: mvebu: clearfog: Enable BLK and DM support
@ 2019-05-03  6:42 Stefan Roese
  2019-05-03  6:42 ` [U-Boot] [PATCH 2/3] arm: mvebu: db-88f6720: Enable CONFIG_BLK Stefan Roese
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Stefan Roese @ 2019-05-03  6:42 UTC (permalink / raw)
  To: u-boot

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>
---
 configs/clearfog_defconfig | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/configs/clearfog_defconfig b/configs/clearfog_defconfig
index 05b19b31c0..6e6fd2c78e 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,11 +41,12 @@ 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_DM_MMC=y
 CONFIG_MMC_SDHCI=y
 CONFIG_MMC_SDHCI_SDMA=y
 CONFIG_MMC_SDHCI_MV=y
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [U-Boot] [PATCH 2/3] arm: mvebu: db-88f6720: Enable CONFIG_BLK
  2019-05-03  6:42 [U-Boot] [PATCH 1/3] arm: mvebu: clearfog: Enable BLK and DM support Stefan Roese
@ 2019-05-03  6:42 ` Stefan Roese
  2019-05-09  9:55   ` Stefan Roese
  2019-05-03  6:42 ` [U-Boot] [PATCH 3/3] arm: mvebu: db-88f6820-gp: Enabel BLK and DM support Stefan Roese
  2019-05-09  9:54 ` [U-Boot] [PATCH 1/3] arm: mvebu: clearfog: Enable " Stefan Roese
  2 siblings, 1 reply; 7+ messages in thread
From: Stefan Roese @ 2019-05-03  6:42 UTC (permalink / raw)
  To: u-boot

This patch enables CONFIG_BLK to remove this compile warning:

===================== 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 <sr@denx.de>
---
 configs/db-88f6720_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/configs/db-88f6720_defconfig b/configs/db-88f6720_defconfig
index 25421407e2..c1a430cf3b 100644
--- a/configs/db-88f6720_defconfig
+++ b/configs/db-88f6720_defconfig
@@ -44,6 +44,7 @@ CONFIG_USE_ENV_SPI_MAX_HZ=y
 CONFIG_ENV_SPI_MAX_HZ=50000000
 CONFIG_NET_RANDOM_ETHADDR=y
 CONFIG_SPL_OF_TRANSLATE=y
+CONFIG_BLK=y
 CONFIG_MISC=y
 # CONFIG_MMC is not set
 CONFIG_SPI_FLASH=y
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [U-Boot] [PATCH 3/3] arm: mvebu: db-88f6820-gp: Enabel BLK and DM support
  2019-05-03  6:42 [U-Boot] [PATCH 1/3] arm: mvebu: clearfog: Enable BLK and DM support Stefan Roese
  2019-05-03  6:42 ` [U-Boot] [PATCH 2/3] arm: mvebu: db-88f6720: Enable CONFIG_BLK Stefan Roese
@ 2019-05-03  6:42 ` Stefan Roese
  2019-05-05  7:21   ` Chris Packham
  2019-05-09  9:55   ` Stefan Roese
  2019-05-09  9:54 ` [U-Boot] [PATCH 1/3] arm: mvebu: clearfog: Enable " Stefan Roese
  2 siblings, 2 replies; 7+ messages in thread
From: Stefan Roese @ 2019-05-03  6:42 UTC (permalink / raw)
  To: u-boot

This patch enables CONFIG_BLK and some DM enabled drivers on
db-88f6820-gp 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>
---
 configs/db-88f6820-gp_defconfig | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/configs/db-88f6820-gp_defconfig b/configs/db-88f6820-gp_defconfig
index 6ee3151861..b8f036e317 100644
--- a/configs/db-88f6820-gp_defconfig
+++ b/configs/db-88f6820-gp_defconfig
@@ -13,6 +13,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_BOOTDELAY=3
 CONFIG_SYS_CONSOLE_INFO_QUIET=y
 # CONFIG_DISPLAY_BOARDINFO is not set
@@ -47,7 +48,8 @@ CONFIG_ENV_IS_IN_SPI_FLASH=y
 CONFIG_USE_ENV_SPI_MAX_HZ=y
 CONFIG_ENV_SPI_MAX_HZ=50000000
 CONFIG_SPL_OF_TRANSLATE=y
-CONFIG_SCSI_AHCI=y
+CONFIG_AHCI_MVEBU=y
+CONFIG_DM_MMC=y
 CONFIG_MMC_SDHCI=y
 CONFIG_MMC_SDHCI_SDMA=y
 CONFIG_MMC_SDHCI_MV=y
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [U-Boot] [PATCH 3/3] arm: mvebu: db-88f6820-gp: Enabel BLK and DM support
  2019-05-03  6:42 ` [U-Boot] [PATCH 3/3] arm: mvebu: db-88f6820-gp: Enabel BLK and DM support Stefan Roese
@ 2019-05-05  7:21   ` Chris Packham
  2019-05-09  9:55   ` Stefan Roese
  1 sibling, 0 replies; 7+ messages in thread
From: Chris Packham @ 2019-05-05  7:21 UTC (permalink / raw)
  To: u-boot

On Fri, 3 May 2019, 6:43 PM Stefan Roese, <sr@denx.de> wrote:

> This patch enables CONFIG_BLK and some DM enabled drivers on
> db-88f6820-gp 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>
>

Typo in subject line. Other than that

Reviewed-by: Chris Packham <judge.packham@gmail.com>

---
>  configs/db-88f6820-gp_defconfig | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/configs/db-88f6820-gp_defconfig
> b/configs/db-88f6820-gp_defconfig
> index 6ee3151861..b8f036e317 100644
> --- a/configs/db-88f6820-gp_defconfig
> +++ b/configs/db-88f6820-gp_defconfig
> @@ -13,6 +13,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_BOOTDELAY=3
>  CONFIG_SYS_CONSOLE_INFO_QUIET=y
>  # CONFIG_DISPLAY_BOARDINFO is not set
> @@ -47,7 +48,8 @@ CONFIG_ENV_IS_IN_SPI_FLASH=y
>  CONFIG_USE_ENV_SPI_MAX_HZ=y
>  CONFIG_ENV_SPI_MAX_HZ=50000000
>  CONFIG_SPL_OF_TRANSLATE=y
> -CONFIG_SCSI_AHCI=y
> +CONFIG_AHCI_MVEBU=y
> +CONFIG_DM_MMC=y
>  CONFIG_MMC_SDHCI=y
>  CONFIG_MMC_SDHCI_SDMA=y
>  CONFIG_MMC_SDHCI_MV=y
> --
> 2.21.0
>
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> https://lists.denx.de/listinfo/u-boot
>

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [U-Boot] [PATCH 1/3] arm: mvebu: clearfog: Enable BLK and DM support
  2019-05-03  6:42 [U-Boot] [PATCH 1/3] arm: mvebu: clearfog: Enable BLK and DM support Stefan Roese
  2019-05-03  6:42 ` [U-Boot] [PATCH 2/3] arm: mvebu: db-88f6720: Enable CONFIG_BLK Stefan Roese
  2019-05-03  6:42 ` [U-Boot] [PATCH 3/3] arm: mvebu: db-88f6820-gp: Enabel BLK and DM support Stefan Roese
@ 2019-05-09  9:54 ` Stefan Roese
  2 siblings, 0 replies; 7+ messages in thread
From: Stefan Roese @ 2019-05-09  9:54 UTC (permalink / raw)
  To: u-boot

On 03.05.19 08:42, Stefan Roese wrote:
> 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>

Applied to u-boot-marvell/master.

Thanks,
Stefan

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [U-Boot] [PATCH 2/3] arm: mvebu: db-88f6720: Enable CONFIG_BLK
  2019-05-03  6:42 ` [U-Boot] [PATCH 2/3] arm: mvebu: db-88f6720: Enable CONFIG_BLK Stefan Roese
@ 2019-05-09  9:55   ` Stefan Roese
  0 siblings, 0 replies; 7+ messages in thread
From: Stefan Roese @ 2019-05-09  9:55 UTC (permalink / raw)
  To: u-boot

On 03.05.19 08:42, Stefan Roese wrote:
> This patch enables CONFIG_BLK to remove this compile warning:
> 
> ===================== 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 <sr@denx.de>

Applied to u-boot-marvell/master.

Thanks,
Stefan

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [U-Boot] [PATCH 3/3] arm: mvebu: db-88f6820-gp: Enabel BLK and DM support
  2019-05-03  6:42 ` [U-Boot] [PATCH 3/3] arm: mvebu: db-88f6820-gp: Enabel BLK and DM support Stefan Roese
  2019-05-05  7:21   ` Chris Packham
@ 2019-05-09  9:55   ` Stefan Roese
  1 sibling, 0 replies; 7+ messages in thread
From: Stefan Roese @ 2019-05-09  9:55 UTC (permalink / raw)
  To: u-boot

On 03.05.19 08:42, Stefan Roese wrote:
> This patch enables CONFIG_BLK and some DM enabled drivers on
> db-88f6820-gp 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>

Applied to u-boot-marvell/master. (after fixing the typo in the subject)

Thanks,
Stefan

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2019-05-09  9:55 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-03  6:42 [U-Boot] [PATCH 1/3] arm: mvebu: clearfog: Enable BLK and DM support Stefan Roese
2019-05-03  6:42 ` [U-Boot] [PATCH 2/3] arm: mvebu: db-88f6720: Enable CONFIG_BLK Stefan Roese
2019-05-09  9:55   ` Stefan Roese
2019-05-03  6:42 ` [U-Boot] [PATCH 3/3] arm: mvebu: db-88f6820-gp: Enabel BLK and DM support Stefan Roese
2019-05-05  7:21   ` Chris Packham
2019-05-09  9:55   ` Stefan Roese
2019-05-09  9:54 ` [U-Boot] [PATCH 1/3] arm: mvebu: clearfog: Enable " Stefan Roese

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.