]> git.baikalelectronics.ru Git - uboot.git/commitdiff
spl: Add function prototype for spl_mmc_get_uboot_raw_sector
authorTom Rini <trini@konsulko.com>
Thu, 9 Mar 2023 16:22:08 +0000 (11:22 -0500)
committerTom Rini <trini@konsulko.com>
Wed, 22 Mar 2023 19:22:48 +0000 (15:22 -0400)
We did not add a prototype for spl_mmc_get_uboot_raw_sector to
include/spl.h before, so add and document one now. Correct the incorrect
prototype in board/advantech/imx8mp_rsb3720a1/imx8mp_rsb3720a1.c and
ensure that we have spl.h where we define a non-weak
spl_mmc_get_uboot_raw_sector as well.

Signed-off-by: Tom Rini <trini@konsulko.com>
arch/arm/mach-imx/image-container.c
board/advantech/imx8mp_rsb3720a1/imx8mp_rsb3720a1.c
include/spl.h

index 06ee608c4a46e3493e31dda7adcff3eaf5515e52..5b059a64292ec9062d01566b6290cd324d40a2b5 100644 (file)
@@ -10,6 +10,7 @@
 #include <asm/io.h>
 #include <mmc.h>
 #include <spi_flash.h>
+#include <spl.h>
 #include <nand.h>
 #include <asm/mach-imx/image.h>
 #include <asm/arch/sys_proto.h>
index 34109c69ddbdf1001bf87f8869d7fd965e99b343..09e63e052100271cf68b7d2762dfaa3d58a20597 100644 (file)
@@ -208,7 +208,8 @@ int board_late_init(void)
 
 #ifdef CONFIG_SPL_MMC
 #define UBOOT_RAW_SECTOR_OFFSET 0x40
-unsigned long spl_mmc_get_uboot_raw_sector(struct mmc *mmc)
+unsigned long spl_mmc_get_uboot_raw_sector(struct mmc *mmc,
+                                          unsigned long raw_sector)
 {
        u32 boot_dev = spl_boot_device();
 
index bad12fb01f48e4433551dafc4166fd0dfde4f1a7..7e0f5ac63b062de7971bb24f67b2925e8e33b867 100644 (file)
@@ -466,6 +466,19 @@ int spl_mmc_emmc_boot_partition(struct mmc *mmc);
 
 void spl_set_bd(void);
 
+/**
+ * spl_mmc_get_uboot_raw_sector() - Provide raw sector of the start of U-Boot
+ *
+ * This is a weak function which by default will provide the raw sector that is
+ * where the start of the U-Boot image has been written to.
+ *
+ * @mmc: struct mmc that describes the devie where U-Boot resides
+ * @raw_sect: The raw sector number where U-Boot is by default.
+ * Return: The raw sector location that U-Boot resides at
+ */
+unsigned long spl_mmc_get_uboot_raw_sector(struct mmc *mmc,
+                                          unsigned long raw_sect);
+
 /**
  * spl_set_header_raw_uboot() - Set up a standard SPL image structure
  *