diff mbox series

[2/6] spl: Add function prototype for spl_mmc_get_uboot_raw_sector

Message ID 20230309162212.2096573-2-trini@konsulko.com
State Accepted
Commit 16d82d7bfac87bd3f670bf2388dff6354f8f0eac
Delegated to: Tom Rini
Headers show
Series [1/6] arm: Correct cpu_reset function prototype on some platforms | expand

Commit Message

Tom Rini March 9, 2023, 4:22 p.m. UTC
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                 |  1 +
 board/advantech/imx8mp_rsb3720a1/imx8mp_rsb3720a1.c |  3 ++-
 include/spl.h                                       | 13 +++++++++++++
 3 files changed, 16 insertions(+), 1 deletion(-)

Comments

Tom Rini March 23, 2023, 1:18 a.m. UTC | #1
On Thu, Mar 09, 2023 at 11:22:08AM -0500, Tom Rini wrote:

> 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>

Applied to u-boot/next, thanks!
diff mbox series

Patch

diff --git a/arch/arm/mach-imx/image-container.c b/arch/arm/mach-imx/image-container.c
index 06ee608c4a46..5b059a64292e 100644
--- a/arch/arm/mach-imx/image-container.c
+++ b/arch/arm/mach-imx/image-container.c
@@ -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>
diff --git a/board/advantech/imx8mp_rsb3720a1/imx8mp_rsb3720a1.c b/board/advantech/imx8mp_rsb3720a1/imx8mp_rsb3720a1.c
index 34109c69ddbd..09e63e052100 100644
--- a/board/advantech/imx8mp_rsb3720a1/imx8mp_rsb3720a1.c
+++ b/board/advantech/imx8mp_rsb3720a1/imx8mp_rsb3720a1.c
@@ -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();
 
diff --git a/include/spl.h b/include/spl.h
index 827bd25c8839..a6cec91f1845 100644
--- a/include/spl.h
+++ b/include/spl.h
@@ -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
  *