diff options
author | Alexandru Gagniuc | 2021-12-30 10:39:59 -0600 |
---|---|---|
committer | Tom Rini | 2022-01-21 14:01:35 -0500 |
commit | 22eb1526d4a619fc0095947b54f87317a55e911f (patch) | |
tree | bc730838362cfd18fe7f2e013702517ec27d20c0 /configs/riotboard_defconfig | |
parent | 434075393d7c41457662d996418e5acd0f3da0cb (diff) |
spl: Convert SYS_MMCSD_RAW_MODE_KERNEL_SECTOR to Kconfig
Falcon mode is very useful in improving boot speed. A question that
Falcon mode asks is "Where do I look for the kernel". With MMC boot
media, the correct answer is CONFIG_SYS_MMCSD_RAW_MODE_KERNEL_SECTOR.
The scope of this patch is to move this to Kconfig.
It is possible for a system to support Falcon mode from NOR but not
MMC. In that case, mmc_load_image_raw_os() would not be used. To
address this, conditionally compile mmc_load_image_raw_os() when
SPL_FALCON_BOOT_MMCSD, instead of SPL_OS_BOOT.
Signed-off-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
[trini: Move spl_start_uboot to its own guard in spl_mmc.c, rerun migration]
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'configs/riotboard_defconfig')
-rw-r--r-- | configs/riotboard_defconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configs/riotboard_defconfig b/configs/riotboard_defconfig index 3c277ed65a0..d59eead076b 100644 --- a/configs/riotboard_defconfig +++ b/configs/riotboard_defconfig @@ -30,6 +30,8 @@ CONFIG_BOARD_EARLY_INIT_F=y CONFIG_SPL_RAW_IMAGE_SUPPORT=y CONFIG_SPL_FS_EXT4=y CONFIG_SPL_OS_BOOT=y +CONFIG_SPL_FALCON_BOOT_MMCSD=y +CONFIG_SYS_MMCSD_RAW_MODE_KERNEL_SECTOR=0x0 CONFIG_CMD_GPIO=y CONFIG_CMD_I2C=y CONFIG_CMD_MMC=y |