[PATCH] ARM: rockchip: bootm: move image to 4k alignment

Sascha Hauer s.hauer at pengutronix.de
Wed May 3 05:26:19 PDT 2023


The new barebox must be 4k aligned which is not always the case when
we skip over the SDRAM initialisation binary. memmove to a suitable
place.

Signed-off-by: Sascha Hauer <s.hauer at pengutronix.de>
---
 arch/arm/mach-rockchip/bootm.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/arch/arm/mach-rockchip/bootm.c b/arch/arm/mach-rockchip/bootm.c
index 4317fdefd6..6f4aa27808 100644
--- a/arch/arm/mach-rockchip/bootm.c
+++ b/arch/arm/mach-rockchip/bootm.c
@@ -88,7 +88,8 @@ static int do_bootm_rkns_barebox_image(struct image_data *data)
 				file_type_to_string(filetype));
 
 		if (filetype == filetype_arm_barebox) {
-			barebox = buf + entry_start;
+			memmove(buf, buf + entry_start, image_size - entry_start);
+			barebox = buf;
 			goto found;
 		}
 	}
-- 
2.39.2




More information about the barebox mailing list