[U-Boot] [PATCH 3/9] bloblist: Reserve an aligned base

Simon Glass sjg at chromium.org
Mon Oct 14 22:00:09 UTC 2019


Make sure that the bloblist starts on an aligned boundary. This protects
against one of the earlier allocations causing the alignment to be lost.

Signed-off-by: Simon Glass <sjg at chromium.org>
---

 common/board_f.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/common/board_f.c b/common/board_f.c
index 591f18f391e..4852a3b0d84 100644
--- a/common/board_f.c
+++ b/common/board_f.c
@@ -588,6 +588,7 @@ static int reserve_stacks(void)
 static int reserve_bloblist(void)
 {
 #ifdef CONFIG_BLOBLIST
+	gd->start_addr_sp &= ~0xf;
 	gd->start_addr_sp -= CONFIG_BLOBLIST_SIZE;
 	gd->new_bloblist = map_sysmem(gd->start_addr_sp, CONFIG_BLOBLIST_SIZE);
 #endif
-- 
2.23.0.700.g56cf767bdb-goog



More information about the U-Boot mailing list