From: Peng Fan Date: Mon, 23 Sep 2019 02:18:40 +0000 (+0800) Subject: spl: mmc: introduce spl_mmc_get_uboot_raw_sector X-Git-Tag: v2020.01-rc1~33^2~36 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=30ecc9c323ec2db72a709da7d3f3f70373aa52ee;p=oweals%2Fu-boot.git spl: mmc: introduce spl_mmc_get_uboot_raw_sector Introduce a weak function spl_mmc_get_uboot_raw_sector, then platform could have their own implementation. Signed-off-by: Peng Fan Cc: Simon Goldschmidt Cc: Tien Fong Chee Cc: Marek Vasut Cc: Andreas Dannenberg Cc: Alex Kiernan Cc: Stefan Roese Cc: Patrick Delaunay Cc: Miquel Raynal Cc: Michal Simek --- diff --git a/common/spl/spl_mmc.c b/common/spl/spl_mmc.c index 6c6eaf4ec8..ebc566081a 100644 --- a/common/spl/spl_mmc.c +++ b/common/spl/spl_mmc.c @@ -313,6 +313,15 @@ int spl_boot_partition(const u32 boot_device) } #endif +unsigned long __weak spl_mmc_get_uboot_raw_sector(struct mmc *mmc) +{ +#ifdef CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR + return CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR; +#else + return 0; +#endif +} + int spl_mmc_load(struct spl_image_info *spl_image, struct spl_boot_device *bootdev, const char *filename, @@ -340,6 +349,8 @@ int spl_mmc_load(struct spl_image_info *spl_image, } } + raw_sect = spl_mmc_get_uboot_raw_sector(mmc); + boot_mode = spl_boot_mode(bootdev->boot_device); err = -EINVAL; switch (boot_mode) {