From 0ba3d7a4ca04486f45d062fab54238d9a554a682 Mon Sep 17 00:00:00 2001 From: Michal Simek Date: Thu, 4 Aug 2022 09:18:06 +0200 Subject: [PATCH] fix(zynqmp): move debug bl31 based address back to OCM MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The commit 389594dfa7e6 ("fix(zynqmp): move bl31 with DEBUG=1 back to OCM") tried to move address to OCM but address was actually out of OCM and likely it was typo. Correct default address should be 0xfffe5000. If TF-A size is bigger please select location DDR which should be fine for DEBUG cases. Reported-by: Vesa Jääskeläinen Signed-off-by: Michal Simek Change-Id: I055f3a59cdca527f6029fcc2a19d76be35924d24 --- plat/xilinx/zynqmp/include/platform_def.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plat/xilinx/zynqmp/include/platform_def.h b/plat/xilinx/zynqmp/include/platform_def.h index 66bbf30a6..c2d22c20c 100644 --- a/plat/xilinx/zynqmp/include/platform_def.h +++ b/plat/xilinx/zynqmp/include/platform_def.h @@ -40,7 +40,7 @@ # define BL31_BASE U(0xfffea000) # define BL31_LIMIT U(0x100000000) #else -# define BL31_BASE U(0xfff5a000) +# define BL31_BASE U(0xfffe5000) # define BL31_LIMIT U(0x100000000) #endif #else