Commit 6257e9d3 authored by Sandrine Bailleux's avatar Sandrine Bailleux
Browse files

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
parent 0897d02c
...@@ -34,6 +34,7 @@ ...@@ -34,6 +34,7 @@
#include <platform.h> #include <platform.h>
.globl plat_report_exception .globl plat_report_exception
.globl platform_mem_init
/* --------------------------------------------- /* ---------------------------------------------
* void plat_report_exception(unsigned int type) * void plat_report_exception(unsigned int type)
...@@ -83,3 +84,14 @@ func platform_is_primary_cpu ...@@ -83,3 +84,14 @@ func platform_is_primary_cpu
cmp x0, #PRIMARY_CPU cmp x0, #PRIMARY_CPU
cset x0, eq cset x0, eq
ret 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
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment