]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
arm: mvebu: Fix description of MVEBU_SPL_BOOT_DEVICE_(SPI|MMC) options
authorPali Rohár <pali@kernel.org>
Tue, 10 Jan 2023 22:13:01 +0000 (23:13 +0100)
committerStefan Roese <sr@denx.de>
Wed, 1 Mar 2023 05:39:18 +0000 (06:39 +0100)
MVEBU_SPL_BOOT_DEVICE_SPI is for NOR flash. Either serial or parallel. Not
for general serial/SPI devices. The correct name should be BOOT_DEVICE_NOR
but name SPI is already used in mkimage config format which we do not want
to change for compatibility reasons.

MVEBU_SPL_BOOT_DEVICE_MMC is for MMC and SD compatible devices. Not for
SDIO devices. In most cases used for eMMC or SD card.

Signed-off-by: Pali Rohár <pali@kernel.org>
arch/arm/mach-mvebu/Kconfig

index 6ff4e9e69ef921d3563e3a5569e842eb664fce06..cdb1776a66c13d113b6aeea57259f57f72d8a288 100644 (file)
@@ -331,7 +331,7 @@ choice
        depends on SPL
 
 config MVEBU_SPL_BOOT_DEVICE_SPI
-       bool "SPI NOR flash"
+       bool "NOR flash (SPI or parallel)"
        imply ENV_IS_IN_SPI_FLASH
        imply SPL_DM_SPI
        imply SPL_SPI_FLASH_SUPPORT
@@ -345,7 +345,7 @@ config MVEBU_SPL_BOOT_DEVICE_NAND
        select SPL_BOOTROM_SUPPORT
 
 config MVEBU_SPL_BOOT_DEVICE_MMC
-       bool "SDIO/MMC card"
+       bool "eMMC or SD card"
        imply ENV_IS_IN_MMC
        # GPIO needed for eMMC/SD card presence detection
        imply SPL_DM_GPIO