From 6257e9d39f386a76aff9ac29ef36f2aaa6fc3f1f Mon Sep 17 00:00:00 2001 From: Sandrine Bailleux Date: Tue, 27 May 2014 13:46:32 +0100 Subject: [PATCH] juno: Implement platform_mem_init() function The platform_mem_init() function doesn't do anything on Juno. We don't need to carry out any memory initialization as the Secure RAM is accessible straight away. Change-Id: Ic5f778a71279add95a75c20d0f7b2cf57968c5df --- plat/juno/aarch64/plat_helpers.S | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/plat/juno/aarch64/plat_helpers.S b/plat/juno/aarch64/plat_helpers.S index ec6607b3d..9297a607b 100644 --- a/plat/juno/aarch64/plat_helpers.S +++ b/plat/juno/aarch64/plat_helpers.S @@ -34,6 +34,7 @@ #include .globl plat_report_exception + .globl platform_mem_init /* --------------------------------------------- * void plat_report_exception(unsigned int type) @@ -83,3 +84,14 @@ func platform_is_primary_cpu cmp x0, #PRIMARY_CPU cset x0, eq ret + + + /* ----------------------------------------------------- + * void platform_mem_init(void); + * + * We don't need to carry out any memory initialization + * on Juno. The Secure RAM is accessible straight away. + * ----------------------------------------------------- + */ +func platform_mem_init + ret -- GitLab