[PATCH v3 8/8] arm: mach-k3: j7200: Skip fit processing when resuming
Thomas Richard
thomas.richard at bootlin.com
Mon Jan 8 17:56:28 CET 2024
No need to process fit image during resume.
All needed parts are already available in DRAM.
Based on the work of Gregory CLEMENT <gregory.clement at bootlin.com>
Signed-off-by: Thomas Richard <thomas.richard at bootlin.com>
Signed-off-by: Gregory CLEMENT <gregory.clement at bootlin.com>
---
(no changes since v1)
arch/arm/mach-k3/sysfw-loader.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/arch/arm/mach-k3/sysfw-loader.c b/arch/arm/mach-k3/sysfw-loader.c
index e6d452e590..89daf9b7f8 100644
--- a/arch/arm/mach-k3/sysfw-loader.c
+++ b/arch/arm/mach-k3/sysfw-loader.c
@@ -100,6 +100,11 @@ struct legacy_img_hdr *spl_get_load_buffer(ssize_t offset, size_t size)
panic("SYSFW load address not defined!");
}
+__weak int board_is_resuming(void)
+{
+ return 0;
+}
+
/*
* Populate SPL hook to skip the default SPL loader FIT post-processing steps
* during SYSFW loading and return to the calling function so we can perform
@@ -107,7 +112,7 @@ struct legacy_img_hdr *spl_get_load_buffer(ssize_t offset, size_t size)
*/
bool spl_load_simple_fit_skip_processing(void)
{
- return !sysfw_loaded;
+ return board_is_resuming() ? true : !sysfw_loaded;
}
static int fit_get_data_by_name(const void *fit, int images, const char *name,
--
2.39.2
More information about the U-Boot
mailing list