From 389091a8d659bc622cc1382657ae5dabd1c10e8f Mon Sep 17 00:00:00 2001 From: "Tien Hock, Loh" Date: Mon, 14 Oct 2019 14:48:24 +0800 Subject: [PATCH] plat: intel: Fix UEFI decompression issue UEFI decompression will fail if the payload size is too large and the load address is too low. This patch moves the payload to a higher address to fix the issue Signed-off-by: Tien Hock, Loh Change-Id: I36087fbd2237b62891c59dbe2d34336bddfaa396 --- plat/intel/soc/common/include/platform_def.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plat/intel/soc/common/include/platform_def.h b/plat/intel/soc/common/include/platform_def.h index 06f3a1b0d..8d04479df 100644 --- a/plat/intel/soc/common/include/platform_def.h +++ b/plat/intel/soc/common/include/platform_def.h @@ -29,7 +29,7 @@ #define L2_RESET_DONE_STATUS 0x1228E5E7 /* Define next boot image name and offset */ -#define PLAT_NS_IMAGE_OFFSET 0x50000 +#define PLAT_NS_IMAGE_OFFSET 0x10000000 #define PLAT_HANDOFF_OFFSET 0xFFE3F000 /******************************************************************************* -- GitLab