Change-Id: I8a207e30a73d10fe67c0474ff11324ae99e2cec6 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/41360 Reviewed-by: Wim Vervoorn <wvervoorn@eltan.com> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
93 lines
1.8 KiB
Plaintext
93 lines
1.8 KiB
Plaintext
## SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
config COMMONLIB_STORAGE
|
|
bool
|
|
default n
|
|
|
|
if COMMONLIB_STORAGE
|
|
|
|
config COMMONLIB_STORAGE_MMC
|
|
bool "Enable MultiMediaCard (MMC) and eMMC device support"
|
|
default n
|
|
|
|
config COMMONLIB_STORAGE_SD
|
|
bool "Enable Secure Digital (SD) memory card support"
|
|
default n
|
|
|
|
config STORAGE_ERASE
|
|
bool "Support SD/MMC erase operations"
|
|
default n
|
|
help
|
|
Select to enable SD/MMC erase oprations
|
|
|
|
config STORAGE_EARLY_ERASE
|
|
bool "Enable erase operations in bootblock and verstage"
|
|
default n
|
|
depends on STORAGE_ERASE
|
|
|
|
config STORAGE_WRITE
|
|
bool "Support SD/MMC write operations"
|
|
default n
|
|
help
|
|
Select to enable SD/MMC write oprations
|
|
|
|
config STORAGE_EARLY_WRITE
|
|
bool "Enable write operations in bootblock and verstage"
|
|
default n
|
|
depends on STORAGE_WRITE
|
|
|
|
config SD_MMC_DEBUG
|
|
bool "Debug SD/MMC card/devices operations"
|
|
default n
|
|
help
|
|
Display overview of SD/MMC card/device operations
|
|
|
|
config SD_MMC_TRACE
|
|
bool "Trace SD/MMC card/device operations"
|
|
default n
|
|
help
|
|
Display details of SD/MMC card/device operations
|
|
|
|
config SDHC_DEBUG
|
|
bool "Debug SD/MMC controller settings"
|
|
default n
|
|
help
|
|
Display clock speed and bus width settings
|
|
|
|
config SDHC_TRACE
|
|
bool "Trace SD/MMC controller operations"
|
|
default n
|
|
help
|
|
Display the operations performed by the SD/MMC controller
|
|
|
|
config SDHCI_CONTROLLER
|
|
bool "Support SD host controller"
|
|
default n
|
|
|
|
if SDHCI_CONTROLLER
|
|
|
|
config SDHCI_ADMA_IN_BOOTBLOCK
|
|
bool
|
|
default n
|
|
help
|
|
Determine if bootblock is able to use ADMA2 or ADMA64
|
|
|
|
config SDHCI_ADMA_IN_ROMSTAGE
|
|
bool
|
|
default n
|
|
help
|
|
Determine if romstage is able to use ADMA2 or ADMA64
|
|
|
|
config SDHCI_ADMA_IN_VERSTAGE
|
|
bool
|
|
default n
|
|
help
|
|
Determine if verstage is able to use ADMA2 or ADMA64
|
|
|
|
config SDHCI_BOUNCE_BUFFER
|
|
bool "Use DMA bounce buffer for SD/MMC controller"
|
|
default n
|
|
|
|
endif # SDHCI_CONTROLLER
|
|
endif # COMMONLIB_STORAGE
|