diff options
author | Tom Rini <trini@konsulko.com> | 2022-06-20 08:07:42 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-07-05 17:04:40 -0400 |
commit | d8e8461709a4a996d8b65178a99c59024e9da5ac (patch) | |
tree | 4099d06f7a5a2f6cb2f60937463b39fef5602130 /boot | |
parent | f4cd75e96a461e1b138c3af85a4085e2772e4f7c (diff) | |
download | u-boot-d8e8461709a4a996d8b65178a99c59024e9da5ac.tar.gz u-boot-d8e8461709a4a996d8b65178a99c59024e9da5ac.tar.bz2 u-boot-d8e8461709a4a996d8b65178a99c59024e9da5ac.zip |
Convert CONFIG_FSL_FIXED_MMC_LOCATION et al to Kconfig
This converts the following to Kconfig:
CONFIG_FSL_FIXED_MMC_LOCATION
CONFIG_ESDHC_HC_BLK_ADDR
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'boot')
-rw-r--r-- | boot/Kconfig | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/boot/Kconfig b/boot/Kconfig index 38fc71c6f7..945ef1ca13 100644 --- a/boot/Kconfig +++ b/boot/Kconfig @@ -575,6 +575,19 @@ config SPIFLASH endchoice +config FSL_FIXED_MMC_LOCATION + bool "PBL MMC is at a fixed location" + depends on SDCARD && !RAMBOOT_PBL + +config ESDHC_HC_BLK_ADDR + def_bool y + depends on FSL_FIXED_MMC_LOCATION && (ARCH_BSC9131 || ARCH_BSC9132 || ARCH_P1010) + help + In High Capacity SD Cards (> 2 GBytes), the 32-bit source address and + code length of these soc specify the memory address in block address + format. Block length is fixed to 512 bytes as per the SD High + Capacity specification. + config SYS_FSL_PBL_PBI string "PBI(pre-boot instructions) commands for the PBL image" depends on RAMBOOT_PBL |