mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
spl: mmc: Allow to disable SYS_MMCSD_FS_BOOT_PARTITION
On some platforms is SYS_MMCSD_FS_BOOT_PARTITION unsupported. So allow to completely disable MMC FS Boot support via new option SYS_MMCSD_FS_BOOT. By default MMC FS Boot support is enabled (like it was before) except for ARCH_MVEBU where MMC FS Boot supported is unsupported due to Marvell BootROM limitations. Signed-off-by: Pali Rohár <pali@kernel.org>
This commit is contained in:
parent
2f27db2fbd
commit
718d1c749f
2 changed files with 12 additions and 9 deletions
|
@ -816,8 +816,17 @@ config SPL_MMC
|
|||
this option to build the drivers in drivers/mmc as part of an SPL
|
||||
build.
|
||||
|
||||
config SYS_MMCSD_FS_BOOT
|
||||
bool "MMC FS Boot mode"
|
||||
depends on SPL_MMC
|
||||
default y if !ARCH_MVEBU
|
||||
help
|
||||
Enable MMC FS Boot mode. Partition is selected by option
|
||||
SYS_MMCSD_FS_BOOT_PARTITION.
|
||||
|
||||
config SYS_MMCSD_FS_BOOT_PARTITION
|
||||
int "MMC Boot Partition"
|
||||
depends on SYS_MMCSD_FS_BOOT
|
||||
default 1
|
||||
help
|
||||
Partition on the MMC to load U-Boot from when the MMC is being
|
||||
|
|
|
@ -272,7 +272,7 @@ int spl_start_uboot(void)
|
|||
}
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_SYS_MMCSD_FS_BOOT_PARTITION
|
||||
#ifdef CONFIG_SYS_MMCSD_FS_BOOT
|
||||
static int spl_mmc_do_fs_boot(struct spl_image_info *spl_image,
|
||||
struct spl_boot_device *bootdev,
|
||||
struct mmc *mmc,
|
||||
|
@ -341,14 +341,6 @@ static int spl_mmc_do_fs_boot(struct spl_image_info *spl_image,
|
|||
|
||||
return err;
|
||||
}
|
||||
#else
|
||||
static int spl_mmc_do_fs_boot(struct spl_image_info *spl_image,
|
||||
struct spl_boot_device *bootdev,
|
||||
struct mmc *mmc,
|
||||
const char *filename)
|
||||
{
|
||||
return -ENOSYS;
|
||||
}
|
||||
#endif
|
||||
|
||||
u32 __weak spl_mmc_boot_mode(struct mmc *mmc, const u32 boot_device)
|
||||
|
@ -481,6 +473,7 @@ int spl_mmc_load(struct spl_image_info *spl_image,
|
|||
return err;
|
||||
#endif
|
||||
/* If RAW mode fails, try FS mode. */
|
||||
#ifdef CONFIG_SYS_MMCSD_FS_BOOT
|
||||
case MMCSD_MODE_FS:
|
||||
debug("spl: mmc boot mode: fs\n");
|
||||
|
||||
|
@ -489,6 +482,7 @@ int spl_mmc_load(struct spl_image_info *spl_image,
|
|||
return err;
|
||||
|
||||
break;
|
||||
#endif
|
||||
#ifdef CONFIG_SPL_LIBCOMMON_SUPPORT
|
||||
default:
|
||||
puts("spl: mmc: wrong boot mode\n");
|
||||
|
|
Loading…
Reference in a new issue